# # network.py - network configuration install data # # Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Red Hat, Inc. # 2008, 2009 # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # Author(s): Matt Wilson # Erik Troan # Mike Fulbright # Brent Fox # David Cantrell # import string import shutil import isys import iutil import socket import struct import os import time import dbus import tempfile from flags import flags from simpleconfig import IfcfgFile import urlgrabber.grabber import gettext _ = lambda x: gettext.ldgettext("anaconda", x) import logging log = logging.getLogger("anaconda") sysconfigDir = "/etc/sysconfig" netscriptsDir = "%s/network-scripts" % (sysconfigDir) networkConfFile = "%s/network" % (sysconfigDir) ifcfgLogFile = "/tmp/ifcfg.log" CONNECTION_TIMEOUT = 45 # Setup special logging for ifcfg NM interface from pyanaconda import anaconda_log logger = logging.getLogger("ifcfg") logger.setLevel(logging.DEBUG) anaconda_log.logger.addFileHandler(ifcfgLogFile, logger, logging.DEBUG) if os.access("/dev/tty3", os.W_OK): anaconda_log.logger.addFileHandler("/dev/tty3", logger, anaconda_log.DEFAULT_TTY_LEVEL, anaconda_log.TTY_FORMAT, autoLevel=True) anaconda_log.logger.forwardToSyslog(logger) ifcfglog = logging.getLogger("ifcfg") class IPError(Exception): pass class IPMissing(Exception): pass def sanityCheckHostname(hostname): if len(hostname) < 1: return None if len(hostname) > 255: return _("Hostname must be 255 or fewer characters in length.") validStart = string.ascii_letters + string.digits validAll = validStart + ".-" if string.find(validStart, hostname[0]) == -1: return _("Hostname must start with a valid character in the ranges " "'a-z', 'A-Z', or '0-9'") for i in range(1, len(hostname)): if string.find(validAll, hostname[i]) == -1: return _("Hostnames can only contain the characters 'a-z', 'A-Z', '0-9', '-', or '.'") return None # Try to determine what the hostname should be for this system def getDefaultHostname(anaconda): resetResolver() hn = None # First address (we prefer ipv4) of last device (as it used to be) wins for dev in getActiveNetDevs(): addrs = (isys.getIPAddresses(dev, version=4) + isys.getIPAddresses(dev, version=6)) for ipaddr in addrs: try: hinfo = socket.gethostbyaddr(ipaddr) except Exception as e: log.debug("Exception caught trying to get host name of %s: %s" % (ipaddr, e)) else: if len(hinfo) == 3: hn = hinfo[0] break if hn and hn != 'localhost' and hn != 'localhost.localdomain': return hn try: hn = anaconda.network.hostname except: hn = None if not hn or hn == '(none)' or hn == 'localhost' or hn == 'localhost.localdomain': hn = socket.gethostname() if not hn or hn == '(none)' or hn == 'localhost': hn = 'localhost.localdomain' return hn # sanity check an IP string. def sanityCheckIPString(ip_string): if ip_string.strip() == "": raise IPMissing, _("IP address is missing.") if ip_string.find(':') == -1 and ip_string.find('.') > 0: family = socket.AF_INET errstr = _("IPv4 addresses must contain four numbers between 0 and 255, separated by periods.") elif ip_string.find(':') > 0 and ip_string.find('.') == -1: family = socket.AF_INET6 errstr = _("'%s' is not a valid IPv6 address.") % ip_string else: raise IPError, _("'%s' is an invalid IP address.") % ip_string try: socket.inet_pton(family, ip_string) except socket.error: raise IPError, errstr def hasActiveNetDev(): try: bus = dbus.SystemBus() nm = bus.get_object(isys.NM_SERVICE, isys.NM_MANAGER_PATH) props = dbus.Interface(nm, isys.DBUS_PROPS_IFACE) state = props.Get(isys.NM_SERVICE, "State") if int(state) == isys.NM_STATE_CONNECTED: return True else: return False except: return False # Return a list of device names (e.g., eth0) for all active devices. # Returning a list here even though we will almost always have one # device. NM uses lists throughout its D-Bus communication, so trying # to follow suit here. Also, if this uses a list now, we can think # about multihomed hosts during installation later. def getActiveNetDevs(): active_devs = set() bus = dbus.SystemBus() nm = bus.get_object(isys.NM_SERVICE, isys.NM_MANAGER_PATH) nm_props_iface = dbus.Interface(nm, isys.DBUS_PROPS_IFACE) active_connections = nm_props_iface.Get(isys.NM_MANAGER_IFACE, "ActiveConnections") for connection in active_connections: active_connection = bus.get_object(isys.NM_SERVICE, connection) active_connection_props_iface = dbus.Interface(active_connection, isys.DBUS_PROPS_IFACE) devices = active_connection_props_iface.Get(isys.NM_ACTIVE_CONNECTION_IFACE, 'Devices') for device_path in devices: device = bus.get_object(isys.NM_SERVICE, device_path) device_props_iface = dbus.Interface(device, isys.DBUS_PROPS_IFACE) interface_name = device_props_iface.Get(isys.NM_DEVICE_IFACE, 'Interface') active_devs.add(interface_name) ret = list(active_devs) ret.sort() return ret def logIfcfgFile(path, message=""): content = "" if os.access(path, os.R_OK): f = open(path, 'r') content = f.read() f.close() ifcfglog.debug("%s%s:\n%s" % (message, path, content)) def logIfcfgFiles(message=""): devprops = isys.getDeviceProperties(dev=None) for device in devprops: path = "%s/ifcfg-%s" % (netscriptsDir, device) logIfcfgFile(path, message) class NetworkDevice(IfcfgFile): def __init__(self, dir, iface): IfcfgFile.__init__(self, dir, iface) self.description = "" if iface.startswith('ctc'): self.info["TYPE"] = "CTC" self.wepkey = "" self._dirty = False def clear(self): IfcfgFile.clear(self) if self.iface.startswith('ctc'): self.info["TYPE"] = "CTC" self.wepkey = "" def __str__(self): s = "" keys = self.info.keys() if iutil.isS390() and ("HWADDR" in keys): keys.remove("HWADDR") # make sure we include autoneg in the ethtool line if 'ETHTOOL_OPTS' in keys: eopts = self.get('ETHTOOL_OPTS') if "autoneg" not in eopts: self.set(('ETHTOOL_OPTS', "autoneg off %s" % eopts)) for key in keys: if self.info[key] is not None: s = s + key + '="' + self.info[key] + '"\n' return s def loadIfcfgFile(self): ifcfglog.debug("%s:\n%s" % (self.path, self.fileContent())) ifcfglog.debug("NetworkDevice %s:\n%s" % (self.iface, self.__str__())) ifcfglog.debug("loadIfcfgFile %s from %s" % (self.iface, self.path)) self.clear() IfcfgFile.read(self) self._dirty = False ifcfglog.debug("NetworkDevice %s:\n%s" % (self.iface, self.__str__())) def writeIfcfgFile(self): # Write out the file only if there is a key whose # value has been changed since last load of ifcfg file. ifcfglog.debug("%s:\n%s" % (self.path, self.fileContent())) ifcfglog.debug("NetworkDevice %s:\n%s" % (self.iface, self.__str__())) ifcfglog.debug("writeIfcfgFile %s to %s%s" % (self.iface, self.path, ("" if self._dirty else " not needed"))) if self._dirty: IfcfgFile.write(self) self._dirty = False # We can't read the file right now racing with ifcfg-rh update #ifcfglog.debug("%s:\n%s" % (device.path, device.fileContent())) def set(self, *args): # If we are changing value of a key set _dirty flag # informing that ifcfg file needs to be synced. s = " ".join(["%s=%s" % key_val for key_val in args]) ifcfglog.debug("NetworkDevice %s set: %s" % (self.iface, s)) for (key, data) in args: if self.get(key) != data: break else: return IfcfgFile.set(self, *args) self._dirty = True @property def keyfilePath(self): return os.path.join(self.dir, "keys-%s" % self.iface) def writeWepkeyFile(self, dir=None, overwrite=True): if not self.wepkey: return False if not dir: keyfile = self.keyfilePath else: keyfile = os.path.join(dir, os.path.basename(self.keyfilePath)) if not overwrite and os.path.isfile(keyfile): return False fd, newifcfg = tempfile.mkstemp(prefix="keys-%s" % self.iface, text=False) os.write(fd, "KEY1=%s\n" % self.wepkey) os.close(fd) os.chmod(newifcfg, 0644) try: os.remove(keyfile) except OSError as e: if e.errno != 2: raise shutil.move(newifcfg, keyfile) def fileContent(self): f = open(self.path, 'r') content = f.read() f.close() return content def usedByFCoE(self, anaconda): import storage for d in anaconda.storage.devices: if (isinstance(d, storage.devices.NetworkStorageDevice) and d.nic == self.iface): return True return False def usedByRootOnISCSI(self, anaconda): import storage rootdev = anaconda.storage.rootDevice for d in anaconda.storage.devices: if (isinstance(d, storage.devices.NetworkStorageDevice) and d.host_address and rootdev.dependsOn(d)): if self.iface == ifaceForHostIP(d.host_address): return True return False def usedByISCSI(self, anaconda): import storage for d in anaconda.storage.devices: if (isinstance(d, storage.devices.NetworkStorageDevice) and d.host_address): if self.iface == ifaceForHostIP(d.host_address): return True return False class Network: def __init__(self): self.hostname = socket.gethostname() self.overrideDHCPhostname = False self.update() # We want wireless devices to be nm controlled by default self.controlWireless() # Set all devices to be controlled by NM by default. # We can filter out storage devices only after # we have device tree populated. So we do it before # running nm-c-e and before writing ifcfg files to system. self.setNMControlledDevices(self.netdevices.keys()) def update(self): ifcfglog.debug("Network.update() called") self.netdevices = {} self.ksdevice = None if flags.imageInstall: return # populate self.netdevices devhash = isys.getDeviceProperties(dev=None) for iface in devhash.keys(): device = NetworkDevice(netscriptsDir, iface) if os.access(device.path, os.R_OK): device.loadIfcfgFile() else: log.info("Network.update(): %s file not found" % device.path) continue # TODORV - the last iface in loop wins, might be ok, # not worthy of special juggling if device.get('HOSTNAME'): self.hostname = device.get('HOSTNAME') device.description = isys.getNetDevDesc(iface) self.netdevices[iface] = device ksdevice = flags.cmdline.get('ksdevice', None) if ksdevice: if ksdevice == 'bootif': bootif_mac = flags.cmdline.get("BOOTIF")[3:].replace("-", ":").upper() for dev in self.netdevices: mac = self.netdevices[dev].get('HWADDR').upper() if ksdevice == 'link' and isys.getLinkStatus(dev): self.ksdevice = dev break elif ksdevice == 'bootif': if bootif_mac == mac: self.ksdevice = dev break elif ksdevice == dev: self.ksdevice = dev break elif ':' in ksdevice: if ksdevice.upper() == mac: self.ksdevice = dev break def getDevice(self, device): return self.netdevices[device] def getKSDevice(self): if self.ksdevice is None: return None try: return self.netdevices[self.ksdevice] except: return None def setHostname(self, hn): self.hostname = hn log.info("setting installation environment hostname to %s" % hn) iutil.execWithRedirect("hostname", ["-v", hn ], stdout="/dev/tty5", stderr="/dev/tty5") def unsetDNS(self, devname): """Unset all DNS* ifcfg parameters.""" i = 1 dev = self.netdevices[devname] while True: if dev.get("DNS%d" % i): dev.unset("DNS%d" %i) else: break i += 1 def setDNS(self, ns, device): dns = ns.split(',') i = 1 for addr in dns: addr = addr.strip() dnslabel = "DNS%d" % (i,) self.netdevices[device].set((dnslabel, addr)) i += 1 def setGateway(self, gw, device): if ':' in gw: self.netdevices[device].set(('IPV6_DEFAULTGW', gw)) else: self.netdevices[device].set(('GATEWAY', gw)) @property def gateway(self): """GATEWAY - last device in list wins""" for dev in reversed(self.netdevices.values()): if dev.get('GATEWAY'): return dev.get('GATEWAY') return "" @property def ipv6_defaultgw(self): """IPV6_DEFAULTGW - last device in list wins""" for dev in reversed(self.netdevices.values()): if dev.get('IPV6_DEFAULTGW'): return dev.get('IPV6_DEFAULTGW') return "" def lookupHostname(self): # can't look things up if they don't exist! if not self.hostname or self.hostname == "localhost.localdomain": return None if not hasActiveNetDev(): log.warning("no network devices were available to look up host name") return None try: (family, socktype, proto, canonname, sockaddr) = \ socket.getaddrinfo(self.hostname, None, socket.AF_INET)[0] (ip, port) = sockaddr except: try: (family, socktype, proto, canonname, sockaddr) = \ socket.getaddrinfo(self.hostname, None, socket.AF_INET6)[0] (ip, port, flowinfo, scopeid) = sockaddr except: return None return ip # Note that the file is written-out only if there is a value # that has changed. def writeIfcfgFiles(self): for device in self.netdevices.values(): device.writeIfcfgFile() # devices == None => set for all def setNMControlledDevices(self, devices=None): for devname, device in self.netdevices.items(): if devices and devname not in devices: device.set(('NM_CONTROLLED', 'no')) else: device.set(('NM_CONTROLLED', 'yes')) # devices == None => set for all def updateActiveDevices(self, devices=None): for devname, device in self.netdevices.items(): if devices and devname not in devices: device.set(('ONBOOT', 'no')) else: device.set(('ONBOOT', 'yes')) def presetDefaultConfiguration(self, devices=None): for devname, device in self.netdevices.items(): if not devices or devname in devices: device.set(('BOOTPROTO', 'dhcp')) def getOnbootControlledIfaces(self): ifaces = [] for iface, device in self.netdevices.items(): if (device.get('ONBOOT') == "yes" and device.get('NM_CONTROLLED') == "yes"): ifaces.append(iface) return ifaces def updateIfcfgsSSID(self, devssids): for devname, device in self.netdevices.items(): if devname in devssids.keys() and devssids[devname]: device.set(('ESSID', devssids[devname][0])) device.writeIfcfgFile() def getSSIDs(self): return getSSIDs(self.netdevices.keys()) def selectPreferredSSIDs(self, dev_ssids): for iface, device in self.netdevices.items(): preferred = device.get('ESSID') if preferred and preferred in dev_ssids[iface]: dev_ssids[iface] = [preferred] def controlWireless(self): for devname, device in self.netdevices.items(): if isys.isWirelessDevice(devname): device.set(('NM_CONTROLLED', 'yes')) def writeKS(self, f): devNames = self.netdevices.keys() devNames.sort() if len(devNames) == 0: return for devName in devNames: dev = self.netdevices[devName] line = "network" # ipv4 and ipv6 if dev.get("ONBOOT"): line += " --onboot %s" % dev.get("ONBOOT") line += " --device %s" % dev.iface if dev.get('MTU') and dev.get('MTU') != "0": line += " --mtu=%s" % dev.get('MTU') # ipv4 if not dev.get('BOOTPROTO'): line += " --noipv4" else: if dev.get('BOOTPROTO').lower() == 'dhcp': line += " --bootproto dhcp" if dev.get('DHCPCLASS'): line += " --dhcpclass %s" % dev.get('DHCPCLASS') elif dev.get('IPADDR'): line += " --bootproto static --ip %s" % dev.get('IPADDR') netmask = dev.get('NETMASK') prefix = dev.get('PREFIX') if not netmask and prefix: netmask = isys.prefix2netmask(int(prefix)) if netmask: line += " --netmask %s" % netmask # note that --gateway is common for ipv4 and ipv6 if dev.get('GATEWAY'): line += " --gateway %s" % dev.get('GATEWAY') # ipv6 if (not dev.get('IPV6INIT') or dev.get('IPV6INIT') == "no"): line += " --noipv6" else: if dev.get('IPV6_AUTOCONF') == "yes": line += " --ipv6 auto" else: if dev.get('IPV6ADDR'): line += " --ipv6 %s" % dev.get('IPV6ADDR') if dev.get('IPV6_DEFAULTGW'): line += " --gateway %s" % dev.get('IPV6_DEFAULTGW') if dev.get('DHCPV6') == "yes": line += " --ipv6 dhcp" # ipv4 and ipv6 dnsline = '' for key in dev.info.keys(): if key.upper().startswith('DNS'): if dnsline == '': dnsline = dev.get(key) else: dnsline += "," + dev.get(key) if dnsline: line += " --nameserver %s" % dnsline if dev.get("ETHTOOL_OPTS"): line += " --ethtool %s" % dev.get("ETHTOOL_OPTS") if dev.get("ESSID"): line += " --essid %s" % dev.get("ESSID") # hostname if (self.overrideDHCPhostname or dev.get('BOOTPROTO').lower() != "dhcp"): if (self.hostname and self.hostname != "localhost.localdomain"): line += " --hostname %s" % self.hostname line += "\n" f.write(line) def hasNameServers(self, hash): if hash.keys() == []: return False for key in hash.keys(): if key.upper().startswith('DNS'): return True return False def hasWirelessDev(self): for dev in self.netdevices: if isys.isWirelessDevice(dev): return True return False def _copyFileToPath(self, file, instPath='', overwrite=False): if not os.path.isfile(file): return False destfile = os.path.join(instPath, file.lstrip('/')) if (os.path.isfile(destfile) and not overwrite): return False if not os.path.isdir(os.path.dirname(destfile)): iutil.mkdirChain(os.path.dirname(destfile)) shutil.copy(file, destfile) return True def copyConfigToPath(self, instPath=''): if flags.imageInstall and instPath: # for image installs we only want to write out # /etc/sysconfig/network destfile = os.path.normpath(instPath + networkConfFile) if not os.path.isdir(os.path.dirname(destfile)): iutil.mkdirChain(os.path.dirname(destfile)) shutil.move("/tmp/sysconfig-network", destfile) return # /etc/sysconfig/network-scripts/ifcfg-DEVICE # /etc/sysconfig/network-scripts/keys-DEVICE # /etc/dhcp/dhclient-DEVICE.conf # TODORV: do we really don't want overwrite on live cd? for devName, device in self.netdevices.items(): self._copyFileToPath(device.path, instPath) self._copyFileToPath(device.keyfilePath, instPath) dhclientfile = os.path.join("/etc/dhcp/dhclient-%s.conf" % devName) self._copyFileToPath(dhclientfile, instPath) # /etc/sysconfig/network self._copyFileToPath(networkConfFile, instPath, overwrite=flags.livecdInstall) # /etc/resolv.conf self._copyFileToPath("/etc/resolv.conf", instPath, overwrite=flags.livecdInstall) # /etc/udev/rules.d/70-persistent-net.rules self._copyFileToPath("/etc/udev/rules.d/70-persistent-net.rules", instPath, overwrite=flags.livecdInstall) def disableNMForStorageDevices(self, anaconda, instPath=''): for devName, device in self.netdevices.items(): if (device.usedByFCoE(anaconda) or device.usedByRootOnISCSI(anaconda)): dev = NetworkDevice(instPath + netscriptsDir, devName) if os.access(dev.path, os.R_OK): dev.loadIfcfgFile() dev.set(('NM_CONTROLLED', 'no')) dev.writeIfcfgFile() log.info("network device %s used by storage will not be " "controlled by NM" % device.path) else: log.warning("disableNMForStorageDevices: %s file not found" % device.path) def write(self): ifcfglog.debug("Network.write() called") # /etc/sysconfig/network if flags.imageInstall: # don't write files into host's /etc/sysconfig on image installs newnetwork = "/tmp/sysconfig-network" else: newnetwork = "%s.new" % (networkConfFile) f = open(newnetwork, "w") f.write("NETWORKING=yes\n") f.write("HOSTNAME=") # use instclass hostname if set(kickstart) to override if self.hostname: f.write(self.hostname + "\n") else: f.write("localhost.localdomain\n") if self.gateway: f.write("GATEWAY=%s\n" % self.gateway) if self.ipv6_defaultgw: f.write("IPV6_DEFAULTGW=%s\n" % self.ipv6_defaultgw) f.close() if flags.imageInstall: # for image installs, all we want to write out is the contents of # /etc/sysconfig/network ifcfglog.debug("not writing per-device configs for image install") return else: shutil.move(newnetwork, networkConfFile) devices = self.netdevices.values() # /etc/sysconfig/network-scripts/ifcfg-* # /etc/sysconfig/network-scripts/keys-* for dev in devices: bootproto = dev.get('BOOTPROTO').lower() # write out the hostname as DHCP_HOSTNAME if given (#81613) if (bootproto == 'dhcp' and self.hostname and self.overrideDHCPhostname): dev.set(('DHCP_HOSTNAME', self.hostname)) dev.writeIfcfgFile() if dev.wepkey: dev.writeWepkeyFile(dir=netscriptsDir, overwrite=False) # /etc/resolv.conf is managed by NM def waitForDevicesActivation(self, devices): waited_devs_props = {} bus = dbus.SystemBus() nm = bus.get_object(isys.NM_SERVICE, isys.NM_MANAGER_PATH) device_paths = nm.get_dbus_method("GetDevices")() for device_path in device_paths: device = bus.get_object(isys.NM_SERVICE, device_path) device_props_iface = dbus.Interface(device, isys.DBUS_PROPS_IFACE) iface = str(device_props_iface.Get(isys.NM_DEVICE_IFACE, "Interface")) if iface in devices: waited_devs_props[iface] = device_props_iface i = 0 while True: for dev, device_props_iface in waited_devs_props.items(): state = device_props_iface.Get(isys.NM_DEVICE_IFACE, "State") if state == isys.NM_DEVICE_STATE_ACTIVATED: waited_devs_props.pop(dev) if len(waited_devs_props) == 0 or i >= CONNECTION_TIMEOUT: break i += 1 time.sleep(1) return waited_devs_props.keys() # write out current configuration state and wait for NetworkManager # to bring the device up, watch NM state and return to the caller # once we have a state def waitForConnection(self): bus = dbus.SystemBus() nm = bus.get_object(isys.NM_SERVICE, isys.NM_MANAGER_PATH) props = dbus.Interface(nm, isys.DBUS_PROPS_IFACE) i = 0 while i < CONNECTION_TIMEOUT: state = props.Get(isys.NM_SERVICE, "State") if int(state) == isys.NM_STATE_CONNECTED: return True i += 1 time.sleep(1) state = props.Get(isys.NM_SERVICE, "State") if int(state) == isys.NM_STATE_CONNECTED: return True return False # write out current configuration state and wait for NetworkManager # to bring the device up, watch NM state and return to the caller # once we have a state def bringUp(self): self.write() if self.waitForConnection(): resetResolver() return True else: return False # get a kernel cmdline string for dracut needed for access to host host def dracutSetupString(self, networkStorageDevice): netargs="" if networkStorageDevice.nic: # Storage bound to a specific nic (ie FCoE) nic = networkStorageDevice.nic else: # Storage bound through ip, find out which interface leads to host nic = ifaceForHostIP(networkStorageDevice.host_address) if not nic: return "" if nic not in self.netdevices.keys(): log.error('Unknown network interface: %s' % nic) return "" dev = self.netdevices[nic] if networkStorageDevice.host_address: if self.hostname: hostname = self.hostname else: hostname = "" # if using ipv6 if ':' in networkStorageDevice.host_address: if dev.get('DHCPV6C') == "yes": # XXX combination with autoconf not yet clear, # support for dhcpv6 is not yet implemented in NM/ifcfg-rh netargs += "ip=%s:dhcp6" % nic elif dev.get('IPV6_AUTOCONF') == "yes": netargs += "ip=%s:auto6" % nic elif dev.get('IPV6ADDR'): ipaddr = "[%s]" % dev.get('IPV6ADDR') if dev.get('IPV6_DEFAULTGW'): gateway = "[%s]" % dev.get('IPV6_DEFAULTGW') else: gateway = "" netargs += "ip=%s::%s:%s:%s:%s:none" % (ipaddr, gateway, dev.get('PREFIX'), hostname, nic) else: if dev.get('bootproto').lower() == 'dhcp': netargs += "ip=%s:dhcp" % nic else: if dev.get('GATEWAY'): gateway = dev.get('GATEWAY') else: gateway = "" netmask = dev.get('netmask') prefix = dev.get('prefix') if not netmask and prefix: netmask = isys.prefix2netmask(int(prefix)) netargs += "ip=%s::%s:%s:%s:%s:none" % (dev.get('ipaddr'), gateway, netmask, hostname, nic) hwaddr = dev.get("HWADDR") if hwaddr: if netargs != "": netargs += " " netargs += "ifname=%s:%s" % (nic, hwaddr.lower()) nettype = dev.get("NETTYPE") subchannels = dev.get("SUBCHANNELS") if iutil.isS390() and nettype and subchannels: if netargs != "": netargs += " " netargs += "rd_ZNET=%s,%s" % (nettype, subchannels) options = dev.get("OPTIONS").strip("'\"") if options: options = filter(lambda x: x != '', options.split(' ')) netargs += ",%s" % (','.join(options)) return netargs def getSSIDs(devices_to_scan=None): rv = {} bus = dbus.SystemBus() nm = bus.get_object(isys.NM_SERVICE, isys.NM_MANAGER_PATH) device_paths = nm.get_dbus_method("GetDevices")() for device_path in device_paths: device = bus.get_object(isys.NM_SERVICE, device_path) device_props_iface = dbus.Interface(device, isys.DBUS_PROPS_IFACE) # interface name, eg. "eth0", "wlan0" dev = str(device_props_iface.Get(isys.NM_DEVICE_IFACE, "Interface")) if (isys.isWirelessDevice(dev) and (not devices_to_scan or dev in devices_to_scan)): i = 0 log.info("scanning APs for %s" % dev) while i < 5: ap_paths = device.GetAccessPoints(dbus_interface='org.freedesktop.NetworkManager.Device.Wireless') if ap_paths: break time.sleep(0.5) i += 0.5 ssids = [] for ap_path in ap_paths: ap = bus.get_object(isys.NM_SERVICE, ap_path) ap_props = dbus.Interface(ap, isys.DBUS_PROPS_IFACE) ssid_bytearray = ap_props.Get(isys.NM_ACCESS_POINT_IFACE, "Ssid") ssid = "".join((str(b) for b in ssid_bytearray)) ssids.append(ssid) log.info("APs found for %s: %s" % (dev, str(ssids))) # XXX there can be duplicates in a list, but maybe # we want to keep them when/if we differentiate on something # more then just ssids; for now, remove them rv[dev]=list(set(ssids)) return rv def ifaceForHostIP(host): route = iutil.execWithCapture("ip", [ "route", "get", "to", host ]) if not route: log.error("Could not get interface for route to %s" % host) return "" routeInfo = route.split() if routeInfo[0] != host or len(routeInfo) < 5 or \ "dev" not in routeInfo or routeInfo.index("dev") > 3: log.error('Unexpected "ip route get to %s" reply: %s' % (host, routeInfo)) return "" return routeInfo[routeInfo.index("dev") + 1] def resetResolver(): isys.resetResolv() urlgrabber.grabber.reset_curl_obj()