1 # Copyright (c) 2008,2009 Citrix Systems, Inc.
2 # Copyright (c) 2009,2010 Nicira Networks.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU Lesser General Public License as published
6 # by the Free Software Foundation; version 2.1 only. with the special
7 # exception on linking described in file LICENSE.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU Lesser General Public License for more details.
14 from InterfaceReconfigure import *
19 # Bare Network Devices -- network devices without IP configuration
22 def netdev_down(netdev):
23 """Bring down a bare network device"""
24 if not netdev_exists(netdev):
25 log("netdev: down: device %s does not exist, ignoring" % netdev)
27 run_command(["/sbin/ifconfig", netdev, 'down'])
29 def netdev_up(netdev, mtu=None):
30 """Bring up a bare network device"""
31 if not netdev_exists(netdev):
32 raise Error("netdev: up: device %s does not exist" % netdev)
39 run_command(["/sbin/ifconfig", netdev, 'up'] + mtu)
45 def pif_currently_in_use(pif):
46 """Determine if a PIF is currently in use.
48 A PIF is determined to be currently in use if
49 - PIF.currently-attached is true
50 - Any bond master is currently attached
51 - Any VLAN master is currently attached
53 rec = db().get_pif_record(pif)
54 if rec['currently_attached']:
55 log("configure_datapath: %s is currently attached" % (pif_netdev_name(pif)))
57 for b in pif_get_bond_masters(pif):
58 if pif_currently_in_use(b):
59 log("configure_datapath: %s is in use by BOND master %s" % (pif_netdev_name(pif),pif_netdev_name(b)))
61 for v in pif_get_vlan_masters(pif):
62 if pif_currently_in_use(v):
63 log("configure_datapath: %s is in use by VLAN master %s" % (pif_netdev_name(pif),pif_netdev_name(v)))
68 # Datapath Configuration
71 def pif_datapath(pif):
72 """Return the datapath PIF associated with PIF.
73 A non-VLAN PIF is its own datapath PIF, except that a bridgeless PIF has
74 no datapath PIF at all.
75 A VLAN PIF's datapath PIF is its VLAN slave's datapath PIF.
78 return pif_datapath(pif_get_vlan_slave(pif))
80 pifrec = db().get_pif_record(pif)
81 nwrec = db().get_network_record(pifrec['network'])
82 if not nwrec['bridge']:
87 def datapath_get_physical_pifs(pif):
88 """Return the PIFs for the physical network device(s) associated with a datapath PIF.
89 For a bond master PIF, these are the bond slave PIFs.
90 For a non-VLAN, non-bond master PIF, the PIF is its own physical device PIF.
92 A VLAN PIF cannot be a datapath PIF.
94 if pif_is_tunnel(pif):
96 elif pif_is_vlan(pif):
97 # Seems like overkill...
98 raise Error("get-physical-pifs should not get passed a VLAN")
99 elif pif_is_bond(pif):
100 return pif_get_bond_slaves(pif)
104 def datapath_deconfigure_physical(netdev):
105 return ['--', '--with-iface', '--if-exists', 'del-port', netdev]
114 raise Error("strings may not contain null bytes")
128 return r'\x%02x' % ord(c)
129 return '"' + re.sub(r'["\\\000-\037]', escape, s) + '"'
131 def datapath_configure_tunnel(pif):
134 def datapath_configure_bond(pif,slaves):
135 bridge = pif_bridge_name(pif)
136 pifrec = db().get_pif_record(pif)
137 interface = pif_netdev_name(pif)
139 argv = ['--', '--fake-iface', 'add-bond', bridge, interface]
141 argv += [pif_netdev_name(slave)]
145 "mode": "balance-slb",
150 "hashing-algorithm": "src_mac",
152 # override defaults with values from other-config whose keys
154 oc = pifrec['other_config']
155 overrides = filter(lambda (key,val):
156 key.startswith("bond-"), oc.items())
157 overrides = map(lambda (key,val): (key[5:], val), overrides)
158 bond_options.update(overrides)
162 argv += ['--', 'set', 'Port', interface]
163 if pifrec['MAC'] != "":
164 argv += ['MAC=%s' % vsctl_escape(pifrec['MAC'])]
165 for (name,val) in bond_options.items():
166 if name in ['updelay', 'downdelay']:
167 # updelay and downdelay have dedicated schema columns.
168 # The value must be a nonnegative integer.
174 argv += ['bond_%s=%d' % (name, value)]
176 log("bridge %s has invalid %s '%s'" % (bridge, name, value))
177 elif name in ['miimon', 'use_carrier']:
183 if name == 'use_carrier':
188 argv += ["other-config:bond-detect-mode=%s" % value]
190 argv += ["other-config:bond-miimon-interval=%d" % value]
192 log("bridge %s has invalid %s '%s'" % (bridge, name, value))
195 elif name == "hashing-algorithm":
198 # Pass other bond options into other_config.
199 argv += ["other-config:%s=%s" % (vsctl_escape("bond-%s" % name),
203 argv += ['lacp=active']
205 if halgo == 'src_mac':
206 argv += ['bond_mode=balance-slb']
207 elif halgo == "tcpudp_ports":
208 argv += ['bond_mode=balance-tcp']
210 log("bridge %s has invalid bond-hashing-algorithm '%s'" % (bridge, halgo))
211 argv += ['bond_mode=balance-slb']
212 elif mode in ['balance-slb', 'active-backup']:
213 argv += ['lacp=off', 'bond_mode=%s' % mode]
215 log("bridge %s has invalid bond-mode '%s'" % (bridge, mode))
216 argv += ['lacp=off', 'bond_mode=balance-slb']
220 def datapath_deconfigure_bond(netdev):
221 return ['--', '--with-iface', '--if-exists', 'del-port', netdev]
223 def datapath_deconfigure_ipdev(interface):
224 return ['--', '--with-iface', '--if-exists', 'del-port', interface]
226 def datapath_modify_config(commands):
227 #log("modifying configuration:")
231 rc = run_command(['/usr/bin/ovs-vsctl'] + ['--timeout=20']
232 + [c for c in commands if not c.startswith('#')])
234 raise Error("Failed to modify vswitch configuration")
238 # Toplevel Datapath Configuration.
241 def configure_datapath(pif):
242 """Bring up the configuration for 'pif', which must not be a VLAN PIF, by:
243 - Tearing down other PIFs that use the same physical devices as 'pif'.
244 - Ensuring that 'pif' itself is set up.
245 - *Not* tearing down any PIFs that are stacked on top of 'pif' (i.e. VLANs
248 Returns a tuple containing
249 - A list containing the necessary vsctl command line arguments
250 - A list of additional devices which should be brought up after
251 the configuration is applied.
257 assert not pif_is_vlan(pif)
258 bridge = pif_bridge_name(pif)
260 physical_devices = datapath_get_physical_pifs(pif)
262 vsctl_argv += ['## configuring datapath %s' % bridge]
264 # Determine additional devices to deconfigure.
266 # Given all physical devices which are part of this PIF we need to
268 # - any additional bond which a physical device is part of.
269 # - any additional physical devices which are part of an additional bond.
271 # Any of these which are not currently in use should be brought
272 # down and deconfigured.
273 extra_down_bonds = []
274 extra_down_ports = []
275 for p in physical_devices:
276 for bond in pif_get_bond_masters(p):
278 log("configure_datapath: leaving bond %s up" % pif_netdev_name(bond))
280 if bond in extra_down_bonds:
282 if db().get_pif_record(bond)['currently_attached']:
283 log("configure_datapath: implicitly tearing down currently-attached bond %s" % pif_netdev_name(bond))
285 extra_down_bonds += [bond]
287 for s in pif_get_bond_slaves(bond):
288 if s in physical_devices:
290 if s in extra_down_ports:
292 if pif_currently_in_use(s):
294 extra_down_ports += [s]
296 log("configure_datapath: bridge - %s" % bridge)
297 log("configure_datapath: physical - %s" % [pif_netdev_name(p) for p in physical_devices])
298 log("configure_datapath: extra ports - %s" % [pif_netdev_name(p) for p in extra_down_ports])
299 log("configure_datapath: extra bonds - %s" % [pif_netdev_name(p) for p in extra_down_bonds])
301 # Need to fully deconfigure any bridge which any of the:
306 for brpif in physical_devices + extra_down_ports + extra_down_bonds:
309 b = pif_bridge_name(brpif)
313 vsctl_argv += ['# remove bridge %s' % b]
314 vsctl_argv += ['--', '--if-exists', 'del-br', b]
316 for n in extra_down_ports:
317 dev = pif_netdev_name(n)
318 vsctl_argv += ['# deconfigure sibling physical device %s' % dev]
319 vsctl_argv += datapath_deconfigure_physical(dev)
322 for n in extra_down_bonds:
323 dev = pif_netdev_name(n)
324 vsctl_argv += ['# deconfigure bond device %s' % dev]
325 vsctl_argv += datapath_deconfigure_bond(dev)
328 for p in physical_devices:
329 dev = pif_netdev_name(p)
330 vsctl_argv += ['# deconfigure physical port %s' % dev]
331 vsctl_argv += datapath_deconfigure_physical(dev)
333 vsctl_argv += ['--', '--may-exist', 'add-br', bridge]
335 if len(physical_devices) > 1:
336 vsctl_argv += ['# deconfigure bond %s' % pif_netdev_name(pif)]
337 vsctl_argv += datapath_deconfigure_bond(pif_netdev_name(pif))
338 vsctl_argv += ['# configure bond %s' % pif_netdev_name(pif)]
339 vsctl_argv += datapath_configure_bond(pif, physical_devices)
340 extra_up_ports += [pif_netdev_name(pif)]
341 elif len(physical_devices) == 1:
342 iface = pif_netdev_name(physical_devices[0])
343 vsctl_argv += ['# add physical device %s' % iface]
344 vsctl_argv += ['--', '--may-exist', 'add-port', bridge, iface]
345 elif pif_is_tunnel(pif):
346 datapath_configure_tunnel(pif)
348 vsctl_argv += ['# configure Bridge MAC']
349 vsctl_argv += ['--', 'set', 'Bridge', bridge,
350 'other-config:hwaddr=%s' % vsctl_escape(db().get_pif_record(pif)['MAC'])]
352 pool = db().get_pool_record()
353 network = db().get_network_by_bridge(bridge)
355 valid_fail_modes = ['standalone', 'secure']
358 network_rec = db().get_network_record(network)
359 fail_mode = network_rec['other_config'].get('vswitch-controller-fail-mode')
361 if (fail_mode not in valid_fail_modes) and pool:
362 fail_mode = pool['other_config'].get('vswitch-controller-fail-mode')
364 if fail_mode not in valid_fail_modes:
365 fail_mode = 'standalone'
367 vsctl_argv += ['--', 'set', 'Bridge', bridge, 'fail_mode=%s' % fail_mode]
369 vsctl_argv += set_br_external_ids(pif)
370 vsctl_argv += ['## done configuring datapath %s' % bridge]
372 return vsctl_argv,extra_up_ports
374 def deconfigure_bridge(pif):
377 bridge = pif_bridge_name(pif)
379 log("deconfigure_bridge: bridge - %s" % bridge)
381 vsctl_argv += ['# deconfigure bridge %s' % bridge]
382 vsctl_argv += ['--', '--if-exists', 'del-br', bridge]
386 def set_br_external_ids(pif):
387 pifrec = db().get_pif_record(pif)
388 dp = pif_datapath(pif)
389 dprec = db().get_pif_record(dp)
391 xs_network_uuids = []
392 for nwpif in db().get_pifs_by_device(pifrec['device']):
393 rec = db().get_pif_record(nwpif)
395 # When state is read from dbcache PIF.currently_attached
396 # is always assumed to be false... Err on the side of
397 # listing even detached networks for the time being.
398 #if nwpif != pif and not rec['currently_attached']:
399 # log("Network PIF %s not currently attached (%s)" % (rec['uuid'],pifrec['uuid']))
401 nwrec = db().get_network_record(rec['network'])
404 if pif_is_vlan(nwpif):
405 xs_network_uuids.append(uuid)
407 xs_network_uuids.insert(0, uuid)
410 vsctl_argv += ['# configure xs-network-uuids']
411 vsctl_argv += ['--', 'br-set-external-id', pif_bridge_name(pif),
412 'xs-network-uuids', ';'.join(xs_network_uuids)]
420 class DatapathVswitch(Datapath):
421 def __init__(self, pif):
422 Datapath.__init__(self, pif)
423 self._dp = pif_datapath(pif)
424 self._ipdev = pif_ipdev_name(pif)
426 if pif_is_vlan(pif) and not self._dp:
427 raise Error("Unbridged VLAN devices not implemented yet")
429 log("Configured for Vswitch datapath")
433 if not os.path.exists("/var/run/openvswitch/db.sock"):
434 # ovsdb-server is not running, so we can't update the database.
435 # Probably we are being called as part of system shutdown. Just
436 # skip the update, since the external-ids will be updated on the
441 for pif in db().get_all_pifs():
442 pifrec = db().get_pif_record(pif)
443 if not pif_is_vlan(pif) and pifrec['currently_attached']:
444 vsctl_argv += set_br_external_ids(pif)
447 datapath_modify_config(vsctl_argv)
449 def configure_ipdev(self, cfg):
450 cfg.write("TYPE=Ethernet\n")
452 def preconfigure(self, parent):
456 pifrec = db().get_pif_record(self._pif)
457 dprec = db().get_pif_record(self._dp)
460 c,e = configure_datapath(self._dp)
461 bridge = pif_bridge_name(self._pif)
465 dpname = pif_bridge_name(self._dp)
467 if pif_is_vlan(self._pif):
468 # XXX this is only needed on XS5.5, because XAPI misguidedly
469 # creates the fake bridge (via bridge ioctl) before it calls us.
470 vsctl_argv += ['--', '--if-exists', 'del-br', bridge]
472 # configure_datapath() set up the underlying datapath bridge.
473 # Stack a VLAN bridge on top of it.
474 vsctl_argv += ['--', '--may-exist', 'add-br',
475 bridge, dpname, pifrec['VLAN']]
477 vsctl_argv += set_br_external_ids(self._pif)
480 vsctl_argv += ["# deconfigure ipdev %s" % ipdev]
481 vsctl_argv += datapath_deconfigure_ipdev(ipdev)
482 vsctl_argv += ["# reconfigure ipdev %s" % ipdev]
483 vsctl_argv += ['--', 'add-port', bridge, ipdev]
486 vsctl_argv += ['# configure Interface MAC']
487 vsctl_argv += ['--', 'set', 'Interface', pif_ipdev_name(self._pif),
488 'MAC=%s' % vsctl_escape(dprec['MAC'])]
490 self._vsctl_argv = vsctl_argv
491 self._extra_ports = extra_ports
493 def bring_down_existing(self):
494 # interface-reconfigure is never explicitly called to down a
495 # bond master. However, when we are called to up a slave it
496 # is implicit that we are destroying the master. Conversely,
497 # when we are called to up a bond is is implicit that we are
498 # taking down the slaves.
500 # This is (only) important in the case where the device being
501 # implicitly taken down uses DHCP. We need to kill the
502 # dhclient process, otherwise performing the inverse operation
503 # later later will fail because ifup will refuse to start a
504 # duplicate dhclient.
505 bond_masters = pif_get_bond_masters(self._pif)
506 for master in bond_masters:
507 log("action_up: bring down bond master %s" % (pif_netdev_name(master)))
508 run_command(["/sbin/ifdown", pif_bridge_name(master)])
510 bond_slaves = pif_get_bond_slaves(self._pif)
511 for slave in bond_slaves:
512 log("action_up: bring down bond slave %s" % (pif_netdev_name(slave)))
513 run_command(["/sbin/ifdown", pif_bridge_name(slave)])
516 # Bring up physical devices. ovs-vswitchd initially enables or
517 # disables bond slaves based on whether carrier is detected
518 # when they are added, and a network device that is down
519 # always reports "no carrier".
520 physical_devices = datapath_get_physical_pifs(self._dp)
522 for p in physical_devices:
523 prec = db().get_pif_record(p)
524 oc = prec['other_config']
526 dev = pif_netdev_name(p)
528 mtu = mtu_setting(prec['network'], "PIF", oc)
532 settings, offload = ethtool_settings(oc)
534 run_command(['/sbin/ethtool', '-s', dev] + settings)
536 run_command(['/sbin/ethtool', '-K', dev] + offload)
538 datapath_modify_config(self._vsctl_argv)
541 for p in self._extra_ports:
542 log("action_up: bring up %s" % p)
545 def bring_down(self):
551 bridge = pif_bridge_name(dp)
553 #nw = db().get_pif_record(self._pif)['network']
554 #nwrec = db().get_network_record(nw)
555 #vsctl_argv += ['# deconfigure network-uuids']
556 #vsctl_argv += ['--del-entry=bridge.%s.network-uuids=%s' % (bridge,nwrec['uuid'])]
558 log("deconfigure ipdev %s on %s" % (ipdev,bridge))
559 vsctl_argv += ["# deconfigure ipdev %s" % ipdev]
560 vsctl_argv += datapath_deconfigure_ipdev(ipdev)
562 if pif_is_vlan(self._pif):
563 # Delete the VLAN bridge.
564 vsctl_argv += deconfigure_bridge(self._pif)
566 # If the VLAN's slave is attached, leave datapath setup.
567 slave = pif_get_vlan_slave(self._pif)
568 if db().get_pif_record(slave)['currently_attached']:
569 log("action_down: vlan slave is currently attached")
572 # If the VLAN's slave has other VLANs that are attached, leave datapath setup.
573 for master in pif_get_vlan_masters(slave):
574 if master != self._pif and db().get_pif_record(master)['currently_attached']:
575 log("action_down: vlan slave has other master: %s" % pif_netdev_name(master))
578 # Otherwise, take down the datapath too (fall through)
580 log("action_down: no more masters, bring down slave %s" % bridge)
582 # Stop here if this PIF has attached VLAN masters.
583 masters = [db().get_pif_record(m)['VLAN'] for m in pif_get_vlan_masters(self._pif) if db().get_pif_record(m)['currently_attached']]
585 log("Leaving datapath %s up due to currently attached VLAN masters %s" % (bridge, masters))
589 vsctl_argv += deconfigure_bridge(dp)
591 physical_devices = [pif_netdev_name(p) for p in datapath_get_physical_pifs(dp)]
593 log("action_down: bring down physical devices - %s" % physical_devices)
595 for p in physical_devices:
598 datapath_modify_config(vsctl_argv)