1 /* Copyright (c) 2008, 2009 Nicira Networks
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
7 * http://www.apache.org/licenses/LICENSE-2.0
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
20 #include <arpa/inet.h>
24 #include <openflow/openflow.h>
29 #include <sys/socket.h>
30 #include <sys/types.h>
37 #include "dynamic-string.h"
41 #include "mac-learning.h"
44 #include "ofp-print.h"
46 #include "ofproto/netflow.h"
47 #include "ofproto/ofproto.h"
49 #include "poll-loop.h"
50 #include "port-array.h"
51 #include "proc-net-compat.h"
53 #include "socket-util.h"
60 #include "vconn-ssl.h"
61 #include "xenserver.h"
64 #define THIS_MODULE VLM_bridge
72 extern uint64_t mgmt_id;
75 /* These members are always valid. */
76 struct port *port; /* Containing port. */
77 size_t port_ifidx; /* Index within containing port. */
78 char *name; /* Host network device name. */
79 tag_type tag; /* Tag associated with this interface. */
80 long long delay_expires; /* Time after which 'enabled' may change. */
82 /* These members are valid only after bridge_reconfigure() causes them to
84 int dp_ifidx; /* Index within kernel datapath. */
85 struct netdev *netdev; /* Network device. */
86 bool enabled; /* May be chosen for flows? */
89 #define BOND_MASK 0xff
91 int iface_idx; /* Index of assigned iface, or -1 if none. */
92 uint64_t tx_bytes; /* Count of bytes recently transmitted. */
93 tag_type iface_tag; /* Tag associated with iface_idx. */
96 #define MAX_MIRRORS 32
97 typedef uint32_t mirror_mask_t;
98 #define MIRROR_MASK_C(X) UINT32_C(X)
99 BUILD_ASSERT_DECL(sizeof(mirror_mask_t) * CHAR_BIT >= MAX_MIRRORS);
101 struct bridge *bridge;
105 /* Selection criteria. */
106 struct svec src_ports;
107 struct svec dst_ports;
112 struct port *out_port;
116 #define FLOOD_PORT ((struct port *) 1) /* The 'flood' output port. */
118 struct bridge *bridge;
120 int vlan; /* -1=trunk port, else a 12-bit VLAN ID. */
121 unsigned long *trunks; /* Bitmap of trunked VLANs, if 'vlan' == -1. */
124 /* An ordinary bridge port has 1 interface.
125 * A bridge port for bonding has at least 2 interfaces. */
126 struct iface **ifaces;
127 size_t n_ifaces, allocated_ifaces;
130 struct bond_entry *bond_hash; /* An array of (BOND_MASK + 1) elements. */
131 int active_iface; /* Ifidx on which bcasts accepted, or -1. */
132 tag_type active_iface_tag; /* Tag for bcast flows. */
133 tag_type no_ifaces_tag; /* Tag for flows when all ifaces disabled. */
134 int updelay, downdelay; /* Delay before iface goes up/down, in ms. */
135 bool bond_compat_is_stale; /* Need to call port_update_bond_compat()? */
137 /* Port mirroring info. */
138 mirror_mask_t src_mirrors; /* Mirrors triggered when packet received. */
139 mirror_mask_t dst_mirrors; /* Mirrors triggered when packet sent. */
140 bool is_mirror_output_port; /* Does port mirroring send frames here? */
142 /* Spanning tree info. */
143 enum stp_state stp_state; /* Always STP_FORWARDING if STP not in use. */
144 tag_type stp_state_tag; /* Tag for STP state change. */
147 #define DP_MAX_PORTS 255
149 struct list node; /* Node in global list of bridges. */
150 char *name; /* User-specified arbitrary name. */
151 struct mac_learning *ml; /* MAC learning table. */
152 bool sent_config_request; /* Successfully sent config request? */
153 uint8_t default_ea[ETH_ADDR_LEN]; /* Default MAC. */
155 /* Support for remote controllers. */
156 char *controller; /* NULL if there is no remote controller;
157 * "discover" to do controller discovery;
158 * otherwise a vconn name. */
160 /* OpenFlow switch processing. */
161 struct ofproto *ofproto; /* OpenFlow switch. */
163 /* Kernel datapath information. */
164 struct dpif *dpif; /* Datapath. */
165 struct port_array ifaces; /* Indexed by kernel datapath port number. */
169 size_t n_ports, allocated_ports;
172 bool has_bonded_ports;
173 long long int bond_next_rebalance;
178 /* Flow statistics gathering. */
179 time_t next_stats_request;
181 /* Port mirroring. */
182 struct mirror *mirrors[MAX_MIRRORS];
186 long long int stp_last_tick;
189 /* List of all bridges. */
190 static struct list all_bridges = LIST_INITIALIZER(&all_bridges);
192 /* Maximum number of datapaths. */
193 enum { DP_MAX = 256 };
195 static struct bridge *bridge_create(const char *name);
196 static void bridge_destroy(struct bridge *);
197 static struct bridge *bridge_lookup(const char *name);
198 static void bridge_unixctl_dump_flows(struct unixctl_conn *, const char *);
199 static int bridge_run_one(struct bridge *);
200 static void bridge_reconfigure_one(struct bridge *);
201 static void bridge_reconfigure_controller(struct bridge *);
202 static void bridge_get_all_ifaces(const struct bridge *, struct svec *ifaces);
203 static void bridge_fetch_dp_ifaces(struct bridge *);
204 static void bridge_flush(struct bridge *);
205 static void bridge_pick_local_hw_addr(struct bridge *,
206 uint8_t ea[ETH_ADDR_LEN],
207 struct iface **hw_addr_iface);
208 static uint64_t bridge_pick_datapath_id(struct bridge *,
209 const uint8_t bridge_ea[ETH_ADDR_LEN],
210 struct iface *hw_addr_iface);
211 static struct iface *bridge_get_local_iface(struct bridge *);
212 static uint64_t dpid_from_hash(const void *, size_t nbytes);
214 static void bridge_unixctl_fdb_show(struct unixctl_conn *, const char *args);
216 static void bond_init(void);
217 static void bond_run(struct bridge *);
218 static void bond_wait(struct bridge *);
219 static void bond_rebalance_port(struct port *);
220 static void bond_send_learning_packets(struct port *);
221 static void bond_enable_slave(struct iface *iface, bool enable);
223 static void port_create(struct bridge *, const char *name);
224 static void port_reconfigure(struct port *);
225 static void port_destroy(struct port *);
226 static struct port *port_lookup(const struct bridge *, const char *name);
227 static struct iface *port_lookup_iface(const struct port *, const char *name);
228 static struct port *port_from_dp_ifidx(const struct bridge *,
230 static void port_update_bond_compat(struct port *);
231 static void port_update_vlan_compat(struct port *);
232 static void port_update_bonding(struct port *);
234 static void mirror_create(struct bridge *, const char *name);
235 static void mirror_destroy(struct mirror *);
236 static void mirror_reconfigure(struct bridge *);
237 static void mirror_reconfigure_one(struct mirror *);
238 static bool vlan_is_mirrored(const struct mirror *, int vlan);
240 static void brstp_reconfigure(struct bridge *);
241 static void brstp_adjust_timers(struct bridge *);
242 static void brstp_run(struct bridge *);
243 static void brstp_wait(struct bridge *);
245 static void iface_create(struct port *, const char *name);
246 static void iface_destroy(struct iface *);
247 static struct iface *iface_lookup(const struct bridge *, const char *name);
248 static struct iface *iface_from_dp_ifidx(const struct bridge *,
250 static bool iface_is_internal(const struct bridge *, const char *name);
251 static void iface_set_mac(struct iface *);
253 /* Hooks into ofproto processing. */
254 static struct ofhooks bridge_ofhooks;
256 /* Public functions. */
258 /* Adds the name of each interface used by a bridge, including local and
259 * internal ports, to 'svec'. */
261 bridge_get_ifaces(struct svec *svec)
263 struct bridge *br, *next;
266 LIST_FOR_EACH_SAFE (br, next, struct bridge, node, &all_bridges) {
267 for (i = 0; i < br->n_ports; i++) {
268 struct port *port = br->ports[i];
270 for (j = 0; j < port->n_ifaces; j++) {
271 struct iface *iface = port->ifaces[j];
272 if (iface->dp_ifidx < 0) {
273 VLOG_ERR("%s interface not in datapath %s, ignoring",
274 iface->name, dpif_name(br->dpif));
276 if (iface->dp_ifidx != ODPP_LOCAL) {
277 svec_add(svec, iface->name);
285 /* The caller must already have called cfg_read(). */
289 struct svec dpif_names;
292 unixctl_command_register("fdb/show", bridge_unixctl_fdb_show);
294 svec_init(&dpif_names);
295 dp_enumerate(&dpif_names);
296 for (i = 0; i < dpif_names.n; i++) {
297 const char *dpif_name = dpif_names.names[i];
301 retval = dpif_open(dpif_name, &dpif);
303 struct svec all_names;
306 svec_init(&all_names);
307 dpif_get_all_names(dpif, &all_names);
308 for (j = 0; j < all_names.n; j++) {
309 if (cfg_has("bridge.%s.port", all_names.names[j])) {
315 svec_destroy(&all_names);
319 svec_destroy(&dpif_names);
321 unixctl_command_register("bridge/dump-flows", bridge_unixctl_dump_flows);
324 bridge_reconfigure();
329 config_string_change(const char *key, char **valuep)
331 const char *value = cfg_get_string(0, "%s", key);
332 if (value && (!*valuep || strcmp(value, *valuep))) {
334 *valuep = xstrdup(value);
342 bridge_configure_ssl(void)
344 /* XXX SSL should be configurable on a per-bridge basis.
345 * XXX should be possible to de-configure SSL. */
346 static char *private_key_file;
347 static char *certificate_file;
348 static char *cacert_file;
351 if (config_string_change("ssl.private-key", &private_key_file)) {
352 vconn_ssl_set_private_key_file(private_key_file);
355 if (config_string_change("ssl.certificate", &certificate_file)) {
356 vconn_ssl_set_certificate_file(certificate_file);
359 /* We assume that even if the filename hasn't changed, if the CA cert
360 * file has been removed, that we want to move back into
361 * boot-strapping mode. This opens a small security hole, because
362 * the old certificate will still be trusted until vSwitch is
363 * restarted. We may want to address this in vconn's SSL library. */
364 if (config_string_change("ssl.ca-cert", &cacert_file)
365 || (cacert_file && stat(cacert_file, &s) && errno == ENOENT)) {
366 vconn_ssl_set_ca_cert_file(cacert_file,
367 cfg_get_bool(0, "ssl.bootstrap-ca-cert"));
372 /* iterate_and_prune_ifaces() callback function that opens the network device
373 * for 'iface', if it is not already open, and retrieves the interface's MAC
374 * address and carrier status. */
376 init_iface_netdev(struct bridge *br UNUSED, struct iface *iface,
381 } else if (!netdev_open(iface->name, NETDEV_ETH_TYPE_NONE,
383 netdev_get_carrier(iface->netdev, &iface->enabled);
386 /* If the network device can't be opened, then we're not going to try
387 * to do anything with this interface. */
393 check_iface_dp_ifidx(struct bridge *br, struct iface *iface, void *aux UNUSED)
395 if (iface->dp_ifidx >= 0) {
396 VLOG_DBG("%s has interface %s on port %d",
398 iface->name, iface->dp_ifidx);
401 VLOG_ERR("%s interface not in %s, dropping",
402 iface->name, dpif_name(br->dpif));
408 set_iface_properties(struct bridge *br UNUSED, struct iface *iface,
413 /* Set policing attributes. */
414 rate = cfg_get_int(0, "port.%s.ingress.policing-rate", iface->name);
415 burst = cfg_get_int(0, "port.%s.ingress.policing-burst", iface->name);
416 netdev_set_policing(iface->netdev, rate, burst);
418 /* Set MAC address of internal interfaces other than the local
420 if (iface->dp_ifidx != ODPP_LOCAL
421 && iface_is_internal(br, iface->name)) {
422 iface_set_mac(iface);
428 /* Calls 'cb' for each interfaces in 'br', passing along the 'aux' argument.
429 * Deletes from 'br' all the interfaces for which 'cb' returns false, and then
430 * deletes from 'br' any ports that no longer have any interfaces. */
432 iterate_and_prune_ifaces(struct bridge *br,
433 bool (*cb)(struct bridge *, struct iface *,
439 for (i = 0; i < br->n_ports; ) {
440 struct port *port = br->ports[i];
441 for (j = 0; j < port->n_ifaces; ) {
442 struct iface *iface = port->ifaces[j];
443 if (cb(br, iface, aux)) {
446 iface_destroy(iface);
450 if (port->n_ifaces) {
453 VLOG_ERR("%s port has no interfaces, dropping", port->name);
460 bridge_reconfigure(void)
462 struct svec old_br, new_br;
463 struct bridge *br, *next;
466 COVERAGE_INC(bridge_reconfigure);
468 /* Collect old and new bridges. */
471 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
472 svec_add(&old_br, br->name);
474 cfg_get_subsections(&new_br, "bridge");
476 /* Get rid of deleted bridges and add new bridges. */
479 assert(svec_is_unique(&old_br));
480 assert(svec_is_unique(&new_br));
481 LIST_FOR_EACH_SAFE (br, next, struct bridge, node, &all_bridges) {
482 if (!svec_contains(&new_br, br->name)) {
486 for (i = 0; i < new_br.n; i++) {
487 const char *name = new_br.names[i];
488 if (!svec_contains(&old_br, name)) {
492 svec_destroy(&old_br);
493 svec_destroy(&new_br);
497 bridge_configure_ssl();
500 /* Reconfigure all bridges. */
501 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
502 bridge_reconfigure_one(br);
505 /* Add and delete ports on all datapaths.
507 * The kernel will reject any attempt to add a given port to a datapath if
508 * that port already belongs to a different datapath, so we must do all
509 * port deletions before any port additions. */
510 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
511 struct odp_port *dpif_ports;
513 struct svec want_ifaces;
515 dpif_port_list(br->dpif, &dpif_ports, &n_dpif_ports);
516 bridge_get_all_ifaces(br, &want_ifaces);
517 for (i = 0; i < n_dpif_ports; i++) {
518 const struct odp_port *p = &dpif_ports[i];
519 if (!svec_contains(&want_ifaces, p->devname)
520 && strcmp(p->devname, br->name)) {
521 int retval = dpif_port_del(br->dpif, p->port);
523 VLOG_ERR("failed to remove %s interface from %s: %s",
524 p->devname, dpif_name(br->dpif),
529 svec_destroy(&want_ifaces);
532 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
533 struct odp_port *dpif_ports;
535 struct svec cur_ifaces, want_ifaces, add_ifaces;
537 dpif_port_list(br->dpif, &dpif_ports, &n_dpif_ports);
538 svec_init(&cur_ifaces);
539 for (i = 0; i < n_dpif_ports; i++) {
540 svec_add(&cur_ifaces, dpif_ports[i].devname);
543 svec_sort_unique(&cur_ifaces);
544 bridge_get_all_ifaces(br, &want_ifaces);
545 svec_diff(&want_ifaces, &cur_ifaces, &add_ifaces, NULL, NULL);
547 for (i = 0; i < add_ifaces.n; i++) {
548 const char *if_name = add_ifaces.names[i];
552 /* Add to datapath. */
553 internal = iface_is_internal(br, if_name);
554 error = dpif_port_add(br->dpif, if_name,
555 internal ? ODP_PORT_INTERNAL : 0, NULL);
556 if (error == EFBIG) {
557 VLOG_ERR("ran out of valid port numbers on %s",
558 dpif_name(br->dpif));
561 VLOG_ERR("failed to add %s interface to %s: %s",
562 if_name, dpif_name(br->dpif), strerror(error));
565 svec_destroy(&cur_ifaces);
566 svec_destroy(&want_ifaces);
567 svec_destroy(&add_ifaces);
569 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
572 struct iface *local_iface;
573 struct iface *hw_addr_iface;
574 struct netflow_options nf_options;
576 bridge_fetch_dp_ifaces(br);
577 iterate_and_prune_ifaces(br, init_iface_netdev, NULL);
579 iterate_and_prune_ifaces(br, check_iface_dp_ifidx, NULL);
581 /* Pick local port hardware address, datapath ID. */
582 bridge_pick_local_hw_addr(br, ea, &hw_addr_iface);
583 local_iface = bridge_get_local_iface(br);
585 int error = netdev_set_etheraddr(local_iface->netdev, ea);
587 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
588 VLOG_ERR_RL(&rl, "bridge %s: failed to set bridge "
589 "Ethernet address: %s",
590 br->name, strerror(error));
594 dpid = bridge_pick_datapath_id(br, ea, hw_addr_iface);
595 ofproto_set_datapath_id(br->ofproto, dpid);
597 /* Set NetFlow configuration on this bridge. */
598 memset(&nf_options, 0, sizeof nf_options);
599 dpif_get_netflow_ids(br->dpif, &nf_options.engine_type,
600 &nf_options.engine_id);
601 nf_options.active_timeout = -1;
603 if (cfg_has("netflow.%s.engine-type", br->name)) {
604 nf_options.engine_type = cfg_get_int(0, "netflow.%s.engine-type",
607 if (cfg_has("netflow.%s.engine-id", br->name)) {
608 nf_options.engine_id = cfg_get_int(0, "netflow.%s.engine-id",
611 if (cfg_has("netflow.%s.active-timeout", br->name)) {
612 nf_options.active_timeout = cfg_get_int(0,
613 "netflow.%s.active-timeout",
616 if (cfg_has("netflow.%s.add-id-to-iface", br->name)) {
617 nf_options.add_id_to_iface = cfg_get_bool(0,
618 "netflow.%s.add-id-to-iface",
621 if (nf_options.add_id_to_iface && nf_options.engine_id > 0x7f) {
622 VLOG_WARN("bridge %s: netflow port mangling may conflict with "
623 "another vswitch, choose an engine id less than 128",
626 if (nf_options.add_id_to_iface && br->n_ports > 508) {
627 VLOG_WARN("bridge %s: netflow port mangling will conflict with "
628 "another port when more than 508 ports are used",
631 svec_init(&nf_options.collectors);
632 cfg_get_all_keys(&nf_options.collectors, "netflow.%s.host", br->name);
633 if (ofproto_set_netflow(br->ofproto, &nf_options)) {
634 VLOG_ERR("bridge %s: problem setting netflow collectors",
637 svec_destroy(&nf_options.collectors);
639 /* Update the controller and related settings. It would be more
640 * straightforward to call this from bridge_reconfigure_one(), but we
641 * can't do it there for two reasons. First, and most importantly, at
642 * that point we don't know the dp_ifidx of any interfaces that have
643 * been added to the bridge (because we haven't actually added them to
644 * the datapath). Second, at that point we haven't set the datapath ID
645 * yet; when a controller is configured, resetting the datapath ID will
646 * immediately disconnect from the controller, so it's better to set
647 * the datapath ID before the controller. */
648 bridge_reconfigure_controller(br);
650 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
651 for (i = 0; i < br->n_ports; i++) {
652 struct port *port = br->ports[i];
654 port_update_vlan_compat(port);
655 port_update_bonding(port);
658 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
659 brstp_reconfigure(br);
660 iterate_and_prune_ifaces(br, set_iface_properties, NULL);
665 bridge_pick_local_hw_addr(struct bridge *br, uint8_t ea[ETH_ADDR_LEN],
666 struct iface **hw_addr_iface)
668 uint64_t requested_ea;
672 *hw_addr_iface = NULL;
674 /* Did the user request a particular MAC? */
675 requested_ea = cfg_get_mac(0, "bridge.%s.mac", br->name);
677 eth_addr_from_uint64(requested_ea, ea);
678 if (eth_addr_is_multicast(ea)) {
679 VLOG_ERR("bridge %s: cannot set MAC address to multicast "
680 "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
681 } else if (eth_addr_is_zero(ea)) {
682 VLOG_ERR("bridge %s: cannot set MAC address to zero", br->name);
688 /* Otherwise choose the minimum MAC address among all of the interfaces.
689 * (Xen uses FE:FF:FF:FF:FF:FF for virtual interfaces so this will get the
690 * MAC of the physical interface in such an environment.) */
691 memset(ea, 0xff, sizeof ea);
692 for (i = 0; i < br->n_ports; i++) {
693 struct port *port = br->ports[i];
694 uint8_t iface_ea[ETH_ADDR_LEN];
695 uint64_t iface_ea_u64;
698 /* Mirror output ports don't participate. */
699 if (port->is_mirror_output_port) {
703 /* Choose the MAC address to represent the port. */
704 iface_ea_u64 = cfg_get_mac(0, "port.%s.mac", port->name);
706 /* User specified explicitly. */
707 eth_addr_from_uint64(iface_ea_u64, iface_ea);
709 /* Find the interface with this Ethernet address (if any) so that
710 * we can provide the correct devname to the caller. */
712 for (j = 0; j < port->n_ifaces; j++) {
713 struct iface *candidate = port->ifaces[j];
714 uint8_t candidate_ea[ETH_ADDR_LEN];
715 if (!netdev_get_etheraddr(candidate->netdev, candidate_ea)
716 && eth_addr_equals(iface_ea, candidate_ea)) {
721 /* Choose the interface whose MAC address will represent the port.
722 * The Linux kernel bonding code always chooses the MAC address of
723 * the first slave added to a bond, and the Fedora networking
724 * scripts always add slaves to a bond in alphabetical order, so
725 * for compatibility we choose the interface with the name that is
726 * first in alphabetical order. */
727 iface = port->ifaces[0];
728 for (j = 1; j < port->n_ifaces; j++) {
729 struct iface *candidate = port->ifaces[j];
730 if (strcmp(candidate->name, iface->name) < 0) {
735 /* The local port doesn't count (since we're trying to choose its
736 * MAC address anyway). Other internal ports don't count because
737 * we really want a physical MAC if we can get it, and internal
738 * ports typically have randomly generated MACs. */
739 if (iface->dp_ifidx == ODPP_LOCAL
740 || cfg_get_bool(0, "iface.%s.internal", iface->name)) {
745 error = netdev_get_etheraddr(iface->netdev, iface_ea);
747 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
748 VLOG_ERR_RL(&rl, "failed to obtain Ethernet address of %s: %s",
749 iface->name, strerror(error));
754 /* Compare against our current choice. */
755 if (!eth_addr_is_multicast(iface_ea) &&
756 !eth_addr_is_reserved(iface_ea) &&
757 !eth_addr_is_zero(iface_ea) &&
758 memcmp(iface_ea, ea, ETH_ADDR_LEN) < 0)
760 memcpy(ea, iface_ea, ETH_ADDR_LEN);
761 *hw_addr_iface = iface;
764 if (eth_addr_is_multicast(ea) || eth_addr_is_vif(ea)) {
765 memcpy(ea, br->default_ea, ETH_ADDR_LEN);
766 *hw_addr_iface = NULL;
767 VLOG_WARN("bridge %s: using default bridge Ethernet "
768 "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
770 VLOG_DBG("bridge %s: using bridge Ethernet address "ETH_ADDR_FMT,
771 br->name, ETH_ADDR_ARGS(ea));
775 /* Choose and returns the datapath ID for bridge 'br' given that the bridge
776 * Ethernet address is 'bridge_ea'. If 'bridge_ea' is the Ethernet address of
777 * an interface on 'br', then that interface must be passed in as
778 * 'hw_addr_iface'; if 'bridge_ea' was derived some other way, then
779 * 'hw_addr_iface' must be passed in as a null pointer. */
781 bridge_pick_datapath_id(struct bridge *br,
782 const uint8_t bridge_ea[ETH_ADDR_LEN],
783 struct iface *hw_addr_iface)
786 * The procedure for choosing a bridge MAC address will, in the most
787 * ordinary case, also choose a unique MAC that we can use as a datapath
788 * ID. In some special cases, though, multiple bridges will end up with
789 * the same MAC address. This is OK for the bridges, but it will confuse
790 * the OpenFlow controller, because each datapath needs a unique datapath
793 * Datapath IDs must be unique. It is also very desirable that they be
794 * stable from one run to the next, so that policy set on a datapath
799 dpid = cfg_get_dpid(0, "bridge.%s.datapath-id", br->name);
806 if (!netdev_get_vlan_vid(hw_addr_iface->netdev, &vlan)) {
808 * A bridge whose MAC address is taken from a VLAN network device
809 * (that is, a network device created with vconfig(8) or similar
810 * tool) will have the same MAC address as a bridge on the VLAN
811 * device's physical network device.
813 * Handle this case by hashing the physical network device MAC
814 * along with the VLAN identifier.
816 uint8_t buf[ETH_ADDR_LEN + 2];
817 memcpy(buf, bridge_ea, ETH_ADDR_LEN);
818 buf[ETH_ADDR_LEN] = vlan >> 8;
819 buf[ETH_ADDR_LEN + 1] = vlan;
820 return dpid_from_hash(buf, sizeof buf);
823 * Assume that this bridge's MAC address is unique, since it
824 * doesn't fit any of the cases we handle specially.
829 * A purely internal bridge, that is, one that has no non-virtual
830 * network devices on it at all, is more difficult because it has no
831 * natural unique identifier at all.
833 * When the host is a XenServer, we handle this case by hashing the
834 * host's UUID with the name of the bridge. Names of bridges are
835 * persistent across XenServer reboots, although they can be reused if
836 * an internal network is destroyed and then a new one is later
837 * created, so this is fairly effective.
839 * When the host is not a XenServer, we punt by using a random MAC
840 * address on each run.
842 const char *host_uuid = xenserver_get_host_uuid();
844 char *combined = xasprintf("%s,%s", host_uuid, br->name);
845 dpid = dpid_from_hash(combined, strlen(combined));
851 return eth_addr_to_uint64(bridge_ea);
855 dpid_from_hash(const void *data, size_t n)
857 uint8_t hash[SHA1_DIGEST_SIZE];
859 BUILD_ASSERT_DECL(sizeof hash >= ETH_ADDR_LEN);
860 sha1_bytes(data, n, hash);
861 eth_addr_mark_random(hash);
862 return eth_addr_to_uint64(hash);
868 struct bridge *br, *next;
872 LIST_FOR_EACH_SAFE (br, next, struct bridge, node, &all_bridges) {
873 int error = bridge_run_one(br);
875 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
876 VLOG_ERR_RL(&rl, "bridge %s: datapath was destroyed externally, "
877 "forcing reconfiguration", br->name);
891 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
892 ofproto_wait(br->ofproto);
893 if (br->controller) {
897 mac_learning_wait(br->ml);
903 /* Forces 'br' to revalidate all of its flows. This is appropriate when 'br''s
904 * configuration changes. */
906 bridge_flush(struct bridge *br)
908 COVERAGE_INC(bridge_flush);
910 mac_learning_flush(br->ml);
913 /* Returns the 'br' interface for the ODPP_LOCAL port, or null if 'br' has no
915 static struct iface *
916 bridge_get_local_iface(struct bridge *br)
920 for (i = 0; i < br->n_ports; i++) {
921 struct port *port = br->ports[i];
922 for (j = 0; j < port->n_ifaces; j++) {
923 struct iface *iface = port->ifaces[j];
924 if (iface->dp_ifidx == ODPP_LOCAL) {
933 /* Bridge unixctl user interface functions. */
935 bridge_unixctl_fdb_show(struct unixctl_conn *conn, const char *args)
937 struct ds ds = DS_EMPTY_INITIALIZER;
938 const struct bridge *br;
939 const struct mac_entry *e;
941 br = bridge_lookup(args);
943 unixctl_command_reply(conn, 501, "no such bridge");
947 ds_put_cstr(&ds, " port VLAN MAC Age\n");
948 LIST_FOR_EACH (e, struct mac_entry, lru_node, &br->ml->lrus) {
949 if (e->port < 0 || e->port >= br->n_ports) {
952 ds_put_format(&ds, "%5d %4d "ETH_ADDR_FMT" %3d\n",
953 br->ports[e->port]->ifaces[0]->dp_ifidx,
954 e->vlan, ETH_ADDR_ARGS(e->mac), mac_entry_age(e));
956 unixctl_command_reply(conn, 200, ds_cstr(&ds));
960 /* Bridge reconfiguration functions. */
962 static struct bridge *
963 bridge_create(const char *name)
968 assert(!bridge_lookup(name));
969 br = xcalloc(1, sizeof *br);
971 error = dpif_create(name, &br->dpif);
972 if (error == EEXIST || error == EBUSY) {
973 error = dpif_open(name, &br->dpif);
975 VLOG_ERR("datapath %s already exists but cannot be opened: %s",
976 name, strerror(error));
980 dpif_flow_flush(br->dpif);
982 VLOG_ERR("failed to create datapath %s: %s", name, strerror(error));
987 error = ofproto_create(name, &bridge_ofhooks, br, &br->ofproto);
989 VLOG_ERR("failed to create switch %s: %s", name, strerror(error));
990 dpif_delete(br->dpif);
991 dpif_close(br->dpif);
996 br->name = xstrdup(name);
997 br->ml = mac_learning_create();
998 br->sent_config_request = false;
999 eth_addr_random(br->default_ea);
1001 port_array_init(&br->ifaces);
1004 br->bond_next_rebalance = time_msec() + 10000;
1006 list_push_back(&all_bridges, &br->node);
1008 VLOG_INFO("created bridge %s on %s", br->name, dpif_name(br->dpif));
1014 bridge_destroy(struct bridge *br)
1019 while (br->n_ports > 0) {
1020 port_destroy(br->ports[br->n_ports - 1]);
1022 list_remove(&br->node);
1023 error = dpif_delete(br->dpif);
1024 if (error && error != ENOENT) {
1025 VLOG_ERR("failed to delete %s: %s",
1026 dpif_name(br->dpif), strerror(error));
1028 dpif_close(br->dpif);
1029 ofproto_destroy(br->ofproto);
1030 free(br->controller);
1031 mac_learning_destroy(br->ml);
1032 port_array_destroy(&br->ifaces);
1039 static struct bridge *
1040 bridge_lookup(const char *name)
1044 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
1045 if (!strcmp(br->name, name)) {
1053 bridge_exists(const char *name)
1055 return bridge_lookup(name) ? true : false;
1059 bridge_get_datapathid(const char *name)
1061 struct bridge *br = bridge_lookup(name);
1062 return br ? ofproto_get_datapath_id(br->ofproto) : 0;
1065 /* Handle requests for a listing of all flows known by the OpenFlow
1066 * stack, including those normally hidden. */
1068 bridge_unixctl_dump_flows(struct unixctl_conn *conn, const char *args)
1073 br = bridge_lookup(args);
1075 unixctl_command_reply(conn, 501, "Unknown bridge");
1080 ofproto_get_all_flows(br->ofproto, &results);
1082 unixctl_command_reply(conn, 200, ds_cstr(&results));
1083 ds_destroy(&results);
1087 bridge_run_one(struct bridge *br)
1091 error = ofproto_run1(br->ofproto);
1096 mac_learning_run(br->ml, ofproto_get_revalidate_set(br->ofproto));
1100 error = ofproto_run2(br->ofproto, br->flush);
1107 bridge_get_controller(const struct bridge *br)
1109 const char *controller;
1111 controller = cfg_get_string(0, "bridge.%s.controller", br->name);
1113 controller = cfg_get_string(0, "mgmt.controller");
1115 return controller && controller[0] ? controller : NULL;
1119 check_duplicate_ifaces(struct bridge *br, struct iface *iface, void *ifaces_)
1121 struct svec *ifaces = ifaces_;
1122 if (!svec_contains(ifaces, iface->name)) {
1123 svec_add(ifaces, iface->name);
1127 VLOG_ERR("bridge %s: %s interface is on multiple ports, "
1129 br->name, iface->name, iface->port->name);
1135 bridge_reconfigure_one(struct bridge *br)
1137 struct svec old_ports, new_ports, ifaces;
1138 struct svec listeners, old_listeners;
1139 struct svec snoops, old_snoops;
1142 /* Collect old ports. */
1143 svec_init(&old_ports);
1144 for (i = 0; i < br->n_ports; i++) {
1145 svec_add(&old_ports, br->ports[i]->name);
1147 svec_sort(&old_ports);
1148 assert(svec_is_unique(&old_ports));
1150 /* Collect new ports. */
1151 svec_init(&new_ports);
1152 cfg_get_all_keys(&new_ports, "bridge.%s.port", br->name);
1153 svec_sort(&new_ports);
1154 if (bridge_get_controller(br)) {
1155 char local_name[IF_NAMESIZE];
1158 error = dpif_port_get_name(br->dpif, ODPP_LOCAL,
1159 local_name, sizeof local_name);
1160 if (!error && !svec_contains(&new_ports, local_name)) {
1161 svec_add(&new_ports, local_name);
1162 svec_sort(&new_ports);
1165 if (!svec_is_unique(&new_ports)) {
1166 VLOG_WARN("bridge %s: %s specified twice as bridge port",
1167 br->name, svec_get_duplicate(&new_ports));
1168 svec_unique(&new_ports);
1171 ofproto_set_mgmt_id(br->ofproto, mgmt_id);
1173 /* Get rid of deleted ports and add new ports. */
1174 for (i = 0; i < br->n_ports; ) {
1175 struct port *port = br->ports[i];
1176 if (!svec_contains(&new_ports, port->name)) {
1182 for (i = 0; i < new_ports.n; i++) {
1183 const char *name = new_ports.names[i];
1184 if (!svec_contains(&old_ports, name)) {
1185 port_create(br, name);
1188 svec_destroy(&old_ports);
1189 svec_destroy(&new_ports);
1191 /* Reconfigure all ports. */
1192 for (i = 0; i < br->n_ports; i++) {
1193 port_reconfigure(br->ports[i]);
1196 /* Check and delete duplicate interfaces. */
1198 iterate_and_prune_ifaces(br, check_duplicate_ifaces, &ifaces);
1199 svec_destroy(&ifaces);
1201 /* Delete all flows if we're switching from connected to standalone or vice
1202 * versa. (XXX Should we delete all flows if we are switching from one
1203 * controller to another?) */
1205 /* Configure OpenFlow management listeners. */
1206 svec_init(&listeners);
1207 cfg_get_all_strings(&listeners, "bridge.%s.openflow.listeners", br->name);
1209 svec_add_nocopy(&listeners, xasprintf("punix:%s/%s.mgmt",
1210 ovs_rundir, br->name));
1211 } else if (listeners.n == 1 && !strcmp(listeners.names[0], "none")) {
1212 svec_clear(&listeners);
1214 svec_sort_unique(&listeners);
1216 svec_init(&old_listeners);
1217 ofproto_get_listeners(br->ofproto, &old_listeners);
1218 svec_sort_unique(&old_listeners);
1220 if (!svec_equal(&listeners, &old_listeners)) {
1221 ofproto_set_listeners(br->ofproto, &listeners);
1223 svec_destroy(&listeners);
1224 svec_destroy(&old_listeners);
1226 /* Configure OpenFlow controller connection snooping. */
1228 cfg_get_all_strings(&snoops, "bridge.%s.openflow.snoops", br->name);
1230 svec_add_nocopy(&snoops, xasprintf("punix:%s/%s.snoop",
1231 ovs_rundir, br->name));
1232 } else if (snoops.n == 1 && !strcmp(snoops.names[0], "none")) {
1233 svec_clear(&snoops);
1235 svec_sort_unique(&snoops);
1237 svec_init(&old_snoops);
1238 ofproto_get_snoops(br->ofproto, &old_snoops);
1239 svec_sort_unique(&old_snoops);
1241 if (!svec_equal(&snoops, &old_snoops)) {
1242 ofproto_set_snoops(br->ofproto, &snoops);
1244 svec_destroy(&snoops);
1245 svec_destroy(&old_snoops);
1247 mirror_reconfigure(br);
1251 bridge_reconfigure_controller(struct bridge *br)
1253 char *pfx = xasprintf("bridge.%s.controller", br->name);
1254 const char *controller;
1256 controller = bridge_get_controller(br);
1257 if ((br->controller != NULL) != (controller != NULL)) {
1258 ofproto_flush_flows(br->ofproto);
1260 free(br->controller);
1261 br->controller = controller ? xstrdup(controller) : NULL;
1264 const char *fail_mode;
1265 int max_backoff, probe;
1266 int rate_limit, burst_limit;
1268 if (!strcmp(controller, "discover")) {
1269 bool update_resolv_conf = true;
1271 if (cfg_has("%s.update-resolv.conf", pfx)) {
1272 update_resolv_conf = cfg_get_bool(0, "%s.update-resolv.conf",
1275 ofproto_set_discovery(br->ofproto, true,
1276 cfg_get_string(0, "%s.accept-regex", pfx),
1277 update_resolv_conf);
1279 struct iface *local_iface;
1282 in_band = (!cfg_is_valid(CFG_BOOL | CFG_REQUIRED,
1284 || cfg_get_bool(0, "%s.in-band", pfx));
1285 ofproto_set_discovery(br->ofproto, false, NULL, NULL);
1286 ofproto_set_in_band(br->ofproto, in_band);
1288 local_iface = bridge_get_local_iface(br);
1290 && cfg_is_valid(CFG_IP | CFG_REQUIRED, "%s.ip", pfx)) {
1291 struct netdev *netdev = local_iface->netdev;
1292 struct in_addr ip, mask, gateway;
1293 ip.s_addr = cfg_get_ip(0, "%s.ip", pfx);
1294 mask.s_addr = cfg_get_ip(0, "%s.netmask", pfx);
1295 gateway.s_addr = cfg_get_ip(0, "%s.gateway", pfx);
1297 netdev_turn_flags_on(netdev, NETDEV_UP, true);
1299 mask.s_addr = guess_netmask(ip.s_addr);
1301 if (!netdev_set_in4(netdev, ip, mask)) {
1302 VLOG_INFO("bridge %s: configured IP address "IP_FMT", "
1304 br->name, IP_ARGS(&ip.s_addr),
1305 IP_ARGS(&mask.s_addr));
1308 if (gateway.s_addr) {
1309 if (!netdev_add_router(netdev, gateway)) {
1310 VLOG_INFO("bridge %s: configured gateway "IP_FMT,
1311 br->name, IP_ARGS(&gateway.s_addr));
1317 fail_mode = cfg_get_string(0, "%s.fail-mode", pfx);
1319 fail_mode = cfg_get_string(0, "mgmt.fail-mode");
1321 ofproto_set_failure(br->ofproto,
1323 || !strcmp(fail_mode, "standalone")
1324 || !strcmp(fail_mode, "open")));
1326 probe = cfg_get_int(0, "%s.inactivity-probe", pfx);
1328 probe = cfg_get_int(0, "mgmt.inactivity-probe");
1333 ofproto_set_probe_interval(br->ofproto, probe);
1335 max_backoff = cfg_get_int(0, "%s.max-backoff", pfx);
1337 max_backoff = cfg_get_int(0, "mgmt.max-backoff");
1342 ofproto_set_max_backoff(br->ofproto, max_backoff);
1344 rate_limit = cfg_get_int(0, "%s.rate-limit", pfx);
1346 rate_limit = cfg_get_int(0, "mgmt.rate-limit");
1348 burst_limit = cfg_get_int(0, "%s.burst-limit", pfx);
1350 burst_limit = cfg_get_int(0, "mgmt.burst-limit");
1352 ofproto_set_rate_limit(br->ofproto, rate_limit, burst_limit);
1354 ofproto_set_stp(br->ofproto, cfg_get_bool(0, "%s.stp", pfx));
1356 if (cfg_has("%s.commands.acl", pfx)) {
1357 struct svec command_acls;
1360 svec_init(&command_acls);
1361 cfg_get_all_strings(&command_acls, "%s.commands.acl", pfx);
1362 command_acl = svec_join(&command_acls, ",", "");
1364 ofproto_set_remote_execution(br->ofproto, command_acl,
1365 cfg_get_string(0, "%s.commands.dir",
1368 svec_destroy(&command_acls);
1371 ofproto_set_remote_execution(br->ofproto, NULL, NULL);
1374 union ofp_action action;
1377 /* Set up a flow that matches every packet and directs them to
1378 * OFPP_NORMAL (which goes to us). */
1379 memset(&action, 0, sizeof action);
1380 action.type = htons(OFPAT_OUTPUT);
1381 action.output.len = htons(sizeof action);
1382 action.output.port = htons(OFPP_NORMAL);
1383 memset(&flow, 0, sizeof flow);
1384 ofproto_add_flow(br->ofproto, &flow, OFPFW_ALL, 0,
1387 ofproto_set_in_band(br->ofproto, false);
1388 ofproto_set_max_backoff(br->ofproto, 1);
1389 ofproto_set_probe_interval(br->ofproto, 5);
1390 ofproto_set_failure(br->ofproto, false);
1391 ofproto_set_stp(br->ofproto, false);
1395 ofproto_set_controller(br->ofproto, br->controller);
1399 bridge_get_all_ifaces(const struct bridge *br, struct svec *ifaces)
1404 for (i = 0; i < br->n_ports; i++) {
1405 struct port *port = br->ports[i];
1406 for (j = 0; j < port->n_ifaces; j++) {
1407 struct iface *iface = port->ifaces[j];
1408 svec_add(ifaces, iface->name);
1410 if (port->n_ifaces > 1
1411 && cfg_get_bool(0, "bonding.%s.fake-iface", port->name)) {
1412 svec_add(ifaces, port->name);
1415 svec_sort_unique(ifaces);
1418 /* For robustness, in case the administrator moves around datapath ports behind
1419 * our back, we re-check all the datapath port numbers here.
1421 * This function will set the 'dp_ifidx' members of interfaces that have
1422 * disappeared to -1, so only call this function from a context where those
1423 * 'struct iface's will be removed from the bridge. Otherwise, the -1
1424 * 'dp_ifidx'es will cause trouble later when we try to send them to the
1425 * datapath, which doesn't support UINT16_MAX+1 ports. */
1427 bridge_fetch_dp_ifaces(struct bridge *br)
1429 struct odp_port *dpif_ports;
1430 size_t n_dpif_ports;
1433 /* Reset all interface numbers. */
1434 for (i = 0; i < br->n_ports; i++) {
1435 struct port *port = br->ports[i];
1436 for (j = 0; j < port->n_ifaces; j++) {
1437 struct iface *iface = port->ifaces[j];
1438 iface->dp_ifidx = -1;
1441 port_array_clear(&br->ifaces);
1443 dpif_port_list(br->dpif, &dpif_ports, &n_dpif_ports);
1444 for (i = 0; i < n_dpif_ports; i++) {
1445 struct odp_port *p = &dpif_ports[i];
1446 struct iface *iface = iface_lookup(br, p->devname);
1448 if (iface->dp_ifidx >= 0) {
1449 VLOG_WARN("%s reported interface %s twice",
1450 dpif_name(br->dpif), p->devname);
1451 } else if (iface_from_dp_ifidx(br, p->port)) {
1452 VLOG_WARN("%s reported interface %"PRIu16" twice",
1453 dpif_name(br->dpif), p->port);
1455 port_array_set(&br->ifaces, p->port, iface);
1456 iface->dp_ifidx = p->port;
1463 /* Bridge packet processing functions. */
1466 bond_hash(const uint8_t mac[ETH_ADDR_LEN])
1468 return hash_bytes(mac, ETH_ADDR_LEN, 0) & BOND_MASK;
1471 static struct bond_entry *
1472 lookup_bond_entry(const struct port *port, const uint8_t mac[ETH_ADDR_LEN])
1474 return &port->bond_hash[bond_hash(mac)];
1478 bond_choose_iface(const struct port *port)
1480 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
1481 size_t i, best_down_slave = -1;
1482 long long next_delay_expiration = LLONG_MAX;
1484 for (i = 0; i < port->n_ifaces; i++) {
1485 struct iface *iface = port->ifaces[i];
1487 if (iface->enabled) {
1489 } else if (iface->delay_expires < next_delay_expiration) {
1490 best_down_slave = i;
1491 next_delay_expiration = iface->delay_expires;
1495 if (best_down_slave != -1) {
1496 struct iface *iface = port->ifaces[best_down_slave];
1498 VLOG_INFO_RL(&rl, "interface %s: skipping remaining %lli ms updelay "
1499 "since no other interface is up", iface->name,
1500 iface->delay_expires - time_msec());
1501 bond_enable_slave(iface, true);
1504 return best_down_slave;
1508 choose_output_iface(const struct port *port, const uint8_t *dl_src,
1509 uint16_t *dp_ifidx, tag_type *tags)
1511 struct iface *iface;
1513 assert(port->n_ifaces);
1514 if (port->n_ifaces == 1) {
1515 iface = port->ifaces[0];
1517 struct bond_entry *e = lookup_bond_entry(port, dl_src);
1518 if (e->iface_idx < 0 || e->iface_idx >= port->n_ifaces
1519 || !port->ifaces[e->iface_idx]->enabled) {
1520 /* XXX select interface properly. The current interface selection
1521 * is only good for testing the rebalancing code. */
1522 e->iface_idx = bond_choose_iface(port);
1523 if (e->iface_idx < 0) {
1524 *tags |= port->no_ifaces_tag;
1527 e->iface_tag = tag_create_random();
1528 ((struct port *) port)->bond_compat_is_stale = true;
1530 *tags |= e->iface_tag;
1531 iface = port->ifaces[e->iface_idx];
1533 *dp_ifidx = iface->dp_ifidx;
1534 *tags |= iface->tag; /* Currently only used for bonding. */
1539 bond_link_status_update(struct iface *iface, bool carrier)
1541 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
1542 struct port *port = iface->port;
1544 if ((carrier == iface->enabled) == (iface->delay_expires == LLONG_MAX)) {
1545 /* Nothing to do. */
1548 VLOG_INFO_RL(&rl, "interface %s: carrier %s",
1549 iface->name, carrier ? "detected" : "dropped");
1550 if (carrier == iface->enabled) {
1551 iface->delay_expires = LLONG_MAX;
1552 VLOG_INFO_RL(&rl, "interface %s: will not be %s",
1553 iface->name, carrier ? "disabled" : "enabled");
1554 } else if (carrier && port->active_iface < 0) {
1555 bond_enable_slave(iface, true);
1556 if (port->updelay) {
1557 VLOG_INFO_RL(&rl, "interface %s: skipping %d ms updelay since no "
1558 "other interface is up", iface->name, port->updelay);
1561 int delay = carrier ? port->updelay : port->downdelay;
1562 iface->delay_expires = time_msec() + delay;
1565 "interface %s: will be %s if it stays %s for %d ms",
1567 carrier ? "enabled" : "disabled",
1568 carrier ? "up" : "down",
1575 bond_choose_active_iface(struct port *port)
1577 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
1579 port->active_iface = bond_choose_iface(port);
1580 port->active_iface_tag = tag_create_random();
1581 if (port->active_iface >= 0) {
1582 VLOG_INFO_RL(&rl, "port %s: active interface is now %s",
1583 port->name, port->ifaces[port->active_iface]->name);
1585 VLOG_WARN_RL(&rl, "port %s: all ports disabled, no active interface",
1591 bond_enable_slave(struct iface *iface, bool enable)
1593 struct port *port = iface->port;
1594 struct bridge *br = port->bridge;
1596 /* This acts as a recursion check. If the act of disabling a slave
1597 * causes a different slave to be enabled, the flag will allow us to
1598 * skip redundant work when we reenter this function. It must be
1599 * cleared on exit to keep things safe with multiple bonds. */
1600 static bool moving_active_iface = false;
1602 iface->delay_expires = LLONG_MAX;
1603 if (enable == iface->enabled) {
1607 iface->enabled = enable;
1608 if (!iface->enabled) {
1609 VLOG_WARN("interface %s: disabled", iface->name);
1610 ofproto_revalidate(br->ofproto, iface->tag);
1611 if (iface->port_ifidx == port->active_iface) {
1612 ofproto_revalidate(br->ofproto,
1613 port->active_iface_tag);
1615 /* Disabling a slave can lead to another slave being immediately
1616 * enabled if there will be no active slaves but one is waiting
1617 * on an updelay. In this case we do not need to run most of the
1618 * code for the newly enabled slave since there was no period
1619 * without an active slave and it is redundant with the disabling
1621 moving_active_iface = true;
1622 bond_choose_active_iface(port);
1624 bond_send_learning_packets(port);
1626 VLOG_WARN("interface %s: enabled", iface->name);
1627 if (port->active_iface < 0 && !moving_active_iface) {
1628 ofproto_revalidate(br->ofproto, port->no_ifaces_tag);
1629 bond_choose_active_iface(port);
1630 bond_send_learning_packets(port);
1632 iface->tag = tag_create_random();
1635 moving_active_iface = false;
1636 port->bond_compat_is_stale = true;
1640 bond_run(struct bridge *br)
1644 for (i = 0; i < br->n_ports; i++) {
1645 struct port *port = br->ports[i];
1647 if (port->n_ifaces >= 2) {
1648 for (j = 0; j < port->n_ifaces; j++) {
1649 struct iface *iface = port->ifaces[j];
1650 if (time_msec() >= iface->delay_expires) {
1651 bond_enable_slave(iface, !iface->enabled);
1656 if (port->bond_compat_is_stale) {
1657 port->bond_compat_is_stale = false;
1658 port_update_bond_compat(port);
1664 bond_wait(struct bridge *br)
1668 for (i = 0; i < br->n_ports; i++) {
1669 struct port *port = br->ports[i];
1670 if (port->n_ifaces < 2) {
1673 for (j = 0; j < port->n_ifaces; j++) {
1674 struct iface *iface = port->ifaces[j];
1675 if (iface->delay_expires != LLONG_MAX) {
1676 poll_timer_wait(iface->delay_expires - time_msec());
1683 set_dst(struct dst *p, const flow_t *flow,
1684 const struct port *in_port, const struct port *out_port,
1689 * XXX This uses too many tags: any broadcast flow will get one tag per
1690 * destination port, and thus a broadcast on a switch of any size is likely
1691 * to have all tag bits set. We should figure out a way to be smarter.
1693 * This is OK when STP is disabled, because stp_state_tag is 0 then. */
1694 *tags |= out_port->stp_state_tag;
1695 if (!(out_port->stp_state & (STP_DISABLED | STP_FORWARDING))) {
1699 p->vlan = (out_port->vlan >= 0 ? OFP_VLAN_NONE
1700 : in_port->vlan >= 0 ? in_port->vlan
1701 : ntohs(flow->dl_vlan));
1702 return choose_output_iface(out_port, flow->dl_src, &p->dp_ifidx, tags);
1706 swap_dst(struct dst *p, struct dst *q)
1708 struct dst tmp = *p;
1713 /* Moves all the dsts with vlan == 'vlan' to the front of the 'n_dsts' in
1714 * 'dsts'. (This may help performance by reducing the number of VLAN changes
1715 * that we push to the datapath. We could in fact fully sort the array by
1716 * vlan, but in most cases there are at most two different vlan tags so that's
1717 * possibly overkill.) */
1719 partition_dsts(struct dst *dsts, size_t n_dsts, int vlan)
1721 struct dst *first = dsts;
1722 struct dst *last = dsts + n_dsts;
1724 while (first != last) {
1726 * - All dsts < first have vlan == 'vlan'.
1727 * - All dsts >= last have vlan != 'vlan'.
1728 * - first < last. */
1729 while (first->vlan == vlan) {
1730 if (++first == last) {
1735 /* Same invariants, plus one additional:
1736 * - first->vlan != vlan.
1738 while (last[-1].vlan != vlan) {
1739 if (--last == first) {
1744 /* Same invariants, plus one additional:
1745 * - last[-1].vlan == vlan.*/
1746 swap_dst(first++, --last);
1751 mirror_mask_ffs(mirror_mask_t mask)
1753 BUILD_ASSERT_DECL(sizeof(unsigned int) >= sizeof(mask));
1758 dst_is_duplicate(const struct dst *dsts, size_t n_dsts,
1759 const struct dst *test)
1762 for (i = 0; i < n_dsts; i++) {
1763 if (dsts[i].vlan == test->vlan && dsts[i].dp_ifidx == test->dp_ifidx) {
1771 port_trunks_vlan(const struct port *port, uint16_t vlan)
1773 return port->vlan < 0 && bitmap_is_set(port->trunks, vlan);
1777 port_includes_vlan(const struct port *port, uint16_t vlan)
1779 return vlan == port->vlan || port_trunks_vlan(port, vlan);
1783 compose_dsts(const struct bridge *br, const flow_t *flow, uint16_t vlan,
1784 const struct port *in_port, const struct port *out_port,
1785 struct dst dsts[], tag_type *tags, uint16_t *nf_output_iface)
1787 mirror_mask_t mirrors = in_port->src_mirrors;
1788 struct dst *dst = dsts;
1791 *tags |= in_port->stp_state_tag;
1792 if (out_port == FLOOD_PORT) {
1793 /* XXX use ODP_FLOOD if no vlans or bonding. */
1794 /* XXX even better, define each VLAN as a datapath port group */
1795 for (i = 0; i < br->n_ports; i++) {
1796 struct port *port = br->ports[i];
1797 if (port != in_port && port_includes_vlan(port, vlan)
1798 && !port->is_mirror_output_port
1799 && set_dst(dst, flow, in_port, port, tags)) {
1800 mirrors |= port->dst_mirrors;
1804 *nf_output_iface = NF_OUT_FLOOD;
1805 } else if (out_port && set_dst(dst, flow, in_port, out_port, tags)) {
1806 *nf_output_iface = dst->dp_ifidx;
1807 mirrors |= out_port->dst_mirrors;
1812 struct mirror *m = br->mirrors[mirror_mask_ffs(mirrors) - 1];
1813 if (!m->n_vlans || vlan_is_mirrored(m, vlan)) {
1815 if (set_dst(dst, flow, in_port, m->out_port, tags)
1816 && !dst_is_duplicate(dsts, dst - dsts, dst)) {
1820 for (i = 0; i < br->n_ports; i++) {
1821 struct port *port = br->ports[i];
1822 if (port_includes_vlan(port, m->out_vlan)
1823 && set_dst(dst, flow, in_port, port, tags))
1827 if (port->vlan < 0) {
1828 dst->vlan = m->out_vlan;
1830 if (dst_is_duplicate(dsts, dst - dsts, dst)) {
1834 /* Use the vlan tag on the original flow instead of
1835 * the one passed in the vlan parameter. This ensures
1836 * that we compare the vlan from before any implicit
1837 * tagging tags place. This is necessary because
1838 * dst->vlan is the final vlan, after removing implicit
1840 flow_vlan = ntohs(flow->dl_vlan);
1841 if (flow_vlan == 0) {
1842 flow_vlan = OFP_VLAN_NONE;
1844 if (port == in_port && dst->vlan == flow_vlan) {
1845 /* Don't send out input port on same VLAN. */
1853 mirrors &= mirrors - 1;
1856 partition_dsts(dsts, dst - dsts, ntohs(flow->dl_vlan));
1861 print_dsts(const struct dst *dsts, size_t n)
1863 for (; n--; dsts++) {
1864 printf(">p%"PRIu16, dsts->dp_ifidx);
1865 if (dsts->vlan != OFP_VLAN_NONE) {
1866 printf("v%"PRIu16, dsts->vlan);
1872 compose_actions(struct bridge *br, const flow_t *flow, uint16_t vlan,
1873 const struct port *in_port, const struct port *out_port,
1874 tag_type *tags, struct odp_actions *actions,
1875 uint16_t *nf_output_iface)
1877 struct dst dsts[DP_MAX_PORTS * (MAX_MIRRORS + 1)];
1879 const struct dst *p;
1882 n_dsts = compose_dsts(br, flow, vlan, in_port, out_port, dsts, tags,
1885 cur_vlan = ntohs(flow->dl_vlan);
1886 for (p = dsts; p < &dsts[n_dsts]; p++) {
1887 union odp_action *a;
1888 if (p->vlan != cur_vlan) {
1889 if (p->vlan == OFP_VLAN_NONE) {
1890 odp_actions_add(actions, ODPAT_STRIP_VLAN);
1892 a = odp_actions_add(actions, ODPAT_SET_VLAN_VID);
1893 a->vlan_vid.vlan_vid = htons(p->vlan);
1897 a = odp_actions_add(actions, ODPAT_OUTPUT);
1898 a->output.port = p->dp_ifidx;
1902 /* Returns the effective vlan of a packet, taking into account both the
1903 * 802.1Q header and implicitly tagged ports. A value of 0 indicates that
1904 * the packet is untagged and -1 indicates it has an invalid header and
1905 * should be dropped. */
1906 static int flow_get_vlan(struct bridge *br, const flow_t *flow,
1907 struct port *in_port, bool have_packet)
1909 /* Note that dl_vlan of 0 and of OFP_VLAN_NONE both mean that the packet
1910 * belongs to VLAN 0, so we should treat both cases identically. (In the
1911 * former case, the packet has an 802.1Q header that specifies VLAN 0,
1912 * presumably to allow a priority to be specified. In the latter case, the
1913 * packet does not have any 802.1Q header.) */
1914 int vlan = ntohs(flow->dl_vlan);
1915 if (vlan == OFP_VLAN_NONE) {
1918 if (in_port->vlan >= 0) {
1920 /* XXX support double tagging? */
1922 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1923 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %"PRIu16" tagged "
1924 "packet received on port %s configured with "
1925 "implicit VLAN %"PRIu16,
1926 br->name, ntohs(flow->dl_vlan),
1927 in_port->name, in_port->vlan);
1931 vlan = in_port->vlan;
1933 if (!port_includes_vlan(in_port, vlan)) {
1935 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1936 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %d tagged "
1937 "packet received on port %s not configured for "
1939 br->name, vlan, in_port->name, vlan);
1949 update_learning_table(struct bridge *br, const flow_t *flow, int vlan,
1950 struct port *in_port)
1952 tag_type rev_tag = mac_learning_learn(br->ml, flow->dl_src,
1953 vlan, in_port->port_idx);
1955 /* The log messages here could actually be useful in debugging,
1956 * so keep the rate limit relatively high. */
1957 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30,
1959 VLOG_DBG_RL(&rl, "bridge %s: learned that "ETH_ADDR_FMT" is "
1960 "on port %s in VLAN %d",
1961 br->name, ETH_ADDR_ARGS(flow->dl_src),
1962 in_port->name, vlan);
1963 ofproto_revalidate(br->ofproto, rev_tag);
1968 is_bcast_arp_reply(const flow_t *flow)
1970 return (flow->dl_type == htons(ETH_TYPE_ARP)
1971 && flow->nw_proto == ARP_OP_REPLY
1972 && eth_addr_is_broadcast(flow->dl_dst));
1975 /* If the composed actions may be applied to any packet in the given 'flow',
1976 * returns true. Otherwise, the actions should only be applied to 'packet', or
1977 * not at all, if 'packet' was NULL. */
1979 process_flow(struct bridge *br, const flow_t *flow,
1980 const struct ofpbuf *packet, struct odp_actions *actions,
1981 tag_type *tags, uint16_t *nf_output_iface)
1983 struct iface *in_iface;
1984 struct port *in_port;
1985 struct port *out_port = NULL; /* By default, drop the packet/flow. */
1989 /* Find the interface and port structure for the received packet. */
1990 in_iface = iface_from_dp_ifidx(br, flow->in_port);
1992 /* No interface? Something fishy... */
1993 if (packet != NULL) {
1994 /* Odd. A few possible reasons here:
1996 * - We deleted an interface but there are still a few packets
1997 * queued up from it.
1999 * - Someone externally added an interface (e.g. with "ovs-dpctl
2000 * add-if") that we don't know about.
2002 * - Packet arrived on the local port but the local port is not
2003 * one of our bridge ports.
2005 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2007 VLOG_WARN_RL(&rl, "bridge %s: received packet on unknown "
2008 "interface %"PRIu16, br->name, flow->in_port);
2011 /* Return without adding any actions, to drop packets on this flow. */
2014 in_port = in_iface->port;
2015 vlan = flow_get_vlan(br, flow, in_port, !!packet);
2020 /* Drop frames for ports that STP wants entirely killed (both for
2021 * forwarding and for learning). Later, after we do learning, we'll drop
2022 * the frames that STP wants to do learning but not forwarding on. */
2023 if (in_port->stp_state & (STP_LISTENING | STP_BLOCKING)) {
2027 /* Drop frames for reserved multicast addresses. */
2028 if (eth_addr_is_reserved(flow->dl_dst)) {
2032 /* Drop frames on ports reserved for mirroring. */
2033 if (in_port->is_mirror_output_port) {
2034 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2035 VLOG_WARN_RL(&rl, "bridge %s: dropping packet received on port %s, "
2036 "which is reserved exclusively for mirroring",
2037 br->name, in_port->name);
2041 /* Packets received on bonds need special attention to avoid duplicates. */
2042 if (in_port->n_ifaces > 1) {
2045 if (eth_addr_is_multicast(flow->dl_dst)) {
2046 *tags |= in_port->active_iface_tag;
2047 if (in_port->active_iface != in_iface->port_ifidx) {
2048 /* Drop all multicast packets on inactive slaves. */
2053 /* Drop all packets for which we have learned a different input
2054 * port, because we probably sent the packet on one slave and got
2055 * it back on the other. Broadcast ARP replies are an exception
2056 * to this rule: the host has moved to another switch. */
2057 src_idx = mac_learning_lookup(br->ml, flow->dl_src, vlan);
2058 if (src_idx != -1 && src_idx != in_port->port_idx &&
2059 !is_bcast_arp_reply(flow)) {
2065 out_port = FLOOD_PORT;
2066 /* Learn source MAC (but don't try to learn from revalidation). */
2068 update_learning_table(br, flow, vlan, in_port);
2071 /* Determine output port. */
2072 out_port_idx = mac_learning_lookup_tag(br->ml, flow->dl_dst, vlan,
2074 if (out_port_idx >= 0 && out_port_idx < br->n_ports) {
2075 out_port = br->ports[out_port_idx];
2076 } else if (!packet && !eth_addr_is_multicast(flow->dl_dst)) {
2077 /* If we are revalidating but don't have a learning entry then
2078 * eject the flow. Installing a flow that floods packets opens
2079 * up a window of time where we could learn from a packet reflected
2080 * on a bond and blackhole packets before the learning table is
2081 * updated to reflect the correct port. */
2085 /* Don't send packets out their input ports. Don't forward frames that STP
2086 * wants us to discard. */
2087 if (in_port == out_port || in_port->stp_state == STP_LEARNING) {
2092 compose_actions(br, flow, vlan, in_port, out_port, tags, actions,
2098 /* Careful: 'opp' is in host byte order and opp->port_no is an OFP port
2101 bridge_port_changed_ofhook_cb(enum ofp_port_reason reason,
2102 const struct ofp_phy_port *opp,
2105 struct bridge *br = br_;
2106 struct iface *iface;
2109 iface = iface_from_dp_ifidx(br, ofp_port_to_odp_port(opp->port_no));
2115 if (reason == OFPPR_DELETE) {
2116 VLOG_WARN("bridge %s: interface %s deleted unexpectedly",
2117 br->name, iface->name);
2118 iface_destroy(iface);
2119 if (!port->n_ifaces) {
2120 VLOG_WARN("bridge %s: port %s has no interfaces, dropping",
2121 br->name, port->name);
2127 if (port->n_ifaces > 1) {
2128 bool up = !(opp->state & OFPPS_LINK_DOWN);
2129 bond_link_status_update(iface, up);
2130 port_update_bond_compat(port);
2136 bridge_normal_ofhook_cb(const flow_t *flow, const struct ofpbuf *packet,
2137 struct odp_actions *actions, tag_type *tags,
2138 uint16_t *nf_output_iface, void *br_)
2140 struct bridge *br = br_;
2143 if (flow->dl_type == htons(OFP_DL_TYPE_NOT_ETH_TYPE)
2144 && eth_addr_equals(flow->dl_dst, stp_eth_addr)) {
2145 brstp_receive(br, flow, payload);
2150 COVERAGE_INC(bridge_process_flow);
2151 return process_flow(br, flow, packet, actions, tags, nf_output_iface);
2155 bridge_account_flow_ofhook_cb(const flow_t *flow,
2156 const union odp_action *actions,
2157 size_t n_actions, unsigned long long int n_bytes,
2160 struct bridge *br = br_;
2161 struct port *in_port;
2162 const union odp_action *a;
2164 /* Feed information from the active flows back into the learning table
2165 * to ensure that table is always in sync with what is actually flowing
2166 * through the datapath. */
2167 in_port = port_from_dp_ifidx(br, flow->in_port);
2169 int vlan = flow_get_vlan(br, flow, in_port, false);
2171 update_learning_table(br, flow, vlan, in_port);
2175 if (!br->has_bonded_ports) {
2179 for (a = actions; a < &actions[n_actions]; a++) {
2180 if (a->type == ODPAT_OUTPUT) {
2181 struct port *out_port = port_from_dp_ifidx(br, a->output.port);
2182 if (out_port && out_port->n_ifaces >= 2) {
2183 struct bond_entry *e = lookup_bond_entry(out_port,
2185 e->tx_bytes += n_bytes;
2192 bridge_account_checkpoint_ofhook_cb(void *br_)
2194 struct bridge *br = br_;
2197 if (!br->has_bonded_ports) {
2201 /* The current ofproto implementation calls this callback at least once a
2202 * second, so this timer implementation is sufficient. */
2203 if (time_msec() < br->bond_next_rebalance) {
2206 br->bond_next_rebalance = time_msec() + 10000;
2208 for (i = 0; i < br->n_ports; i++) {
2209 struct port *port = br->ports[i];
2210 if (port->n_ifaces > 1) {
2211 bond_rebalance_port(port);
2216 static struct ofhooks bridge_ofhooks = {
2217 bridge_port_changed_ofhook_cb,
2218 bridge_normal_ofhook_cb,
2219 bridge_account_flow_ofhook_cb,
2220 bridge_account_checkpoint_ofhook_cb,
2223 /* Bonding functions. */
2225 /* Statistics for a single interface on a bonded port, used for load-based
2226 * bond rebalancing. */
2227 struct slave_balance {
2228 struct iface *iface; /* The interface. */
2229 uint64_t tx_bytes; /* Sum of hashes[*]->tx_bytes. */
2231 /* All the "bond_entry"s that are assigned to this interface, in order of
2232 * increasing tx_bytes. */
2233 struct bond_entry **hashes;
2237 /* Sorts pointers to pointers to bond_entries in ascending order by the
2238 * interface to which they are assigned, and within a single interface in
2239 * ascending order of bytes transmitted. */
2241 compare_bond_entries(const void *a_, const void *b_)
2243 const struct bond_entry *const *ap = a_;
2244 const struct bond_entry *const *bp = b_;
2245 const struct bond_entry *a = *ap;
2246 const struct bond_entry *b = *bp;
2247 if (a->iface_idx != b->iface_idx) {
2248 return a->iface_idx > b->iface_idx ? 1 : -1;
2249 } else if (a->tx_bytes != b->tx_bytes) {
2250 return a->tx_bytes > b->tx_bytes ? 1 : -1;
2256 /* Sorts slave_balances so that enabled ports come first, and otherwise in
2257 * *descending* order by number of bytes transmitted. */
2259 compare_slave_balance(const void *a_, const void *b_)
2261 const struct slave_balance *a = a_;
2262 const struct slave_balance *b = b_;
2263 if (a->iface->enabled != b->iface->enabled) {
2264 return a->iface->enabled ? -1 : 1;
2265 } else if (a->tx_bytes != b->tx_bytes) {
2266 return a->tx_bytes > b->tx_bytes ? -1 : 1;
2273 swap_bals(struct slave_balance *a, struct slave_balance *b)
2275 struct slave_balance tmp = *a;
2280 /* Restores the 'n_bals' slave_balance structures in 'bals' to sorted order
2281 * given that 'p' (and only 'p') might be in the wrong location.
2283 * This function invalidates 'p', since it might now be in a different memory
2286 resort_bals(struct slave_balance *p,
2287 struct slave_balance bals[], size_t n_bals)
2290 for (; p > bals && p->tx_bytes > p[-1].tx_bytes; p--) {
2291 swap_bals(p, p - 1);
2293 for (; p < &bals[n_bals - 1] && p->tx_bytes < p[1].tx_bytes; p++) {
2294 swap_bals(p, p + 1);
2300 log_bals(const struct slave_balance *bals, size_t n_bals, struct port *port)
2302 if (VLOG_IS_DBG_ENABLED()) {
2303 struct ds ds = DS_EMPTY_INITIALIZER;
2304 const struct slave_balance *b;
2306 for (b = bals; b < bals + n_bals; b++) {
2310 ds_put_char(&ds, ',');
2312 ds_put_format(&ds, " %s %"PRIu64"kB",
2313 b->iface->name, b->tx_bytes / 1024);
2315 if (!b->iface->enabled) {
2316 ds_put_cstr(&ds, " (disabled)");
2318 if (b->n_hashes > 0) {
2319 ds_put_cstr(&ds, " (");
2320 for (i = 0; i < b->n_hashes; i++) {
2321 const struct bond_entry *e = b->hashes[i];
2323 ds_put_cstr(&ds, " + ");
2325 ds_put_format(&ds, "h%td: %"PRIu64"kB",
2326 e - port->bond_hash, e->tx_bytes / 1024);
2328 ds_put_cstr(&ds, ")");
2331 VLOG_DBG("bond %s:%s", port->name, ds_cstr(&ds));
2336 /* Shifts 'hash' from 'from' to 'to' within 'port'. */
2338 bond_shift_load(struct slave_balance *from, struct slave_balance *to,
2341 struct bond_entry *hash = from->hashes[hash_idx];
2342 struct port *port = from->iface->port;
2343 uint64_t delta = hash->tx_bytes;
2345 VLOG_INFO("bond %s: shift %"PRIu64"kB of load (with hash %td) "
2346 "from %s to %s (now carrying %"PRIu64"kB and "
2347 "%"PRIu64"kB load, respectively)",
2348 port->name, delta / 1024, hash - port->bond_hash,
2349 from->iface->name, to->iface->name,
2350 (from->tx_bytes - delta) / 1024,
2351 (to->tx_bytes + delta) / 1024);
2353 /* Delete element from from->hashes.
2355 * We don't bother to add the element to to->hashes because not only would
2356 * it require more work, the only purpose it would be to allow that hash to
2357 * be migrated to another slave in this rebalancing run, and there is no
2358 * point in doing that. */
2359 if (hash_idx == 0) {
2362 memmove(from->hashes + hash_idx, from->hashes + hash_idx + 1,
2363 (from->n_hashes - (hash_idx + 1)) * sizeof *from->hashes);
2367 /* Shift load away from 'from' to 'to'. */
2368 from->tx_bytes -= delta;
2369 to->tx_bytes += delta;
2371 /* Arrange for flows to be revalidated. */
2372 ofproto_revalidate(port->bridge->ofproto, hash->iface_tag);
2373 hash->iface_idx = to->iface->port_ifidx;
2374 hash->iface_tag = tag_create_random();
2378 bond_rebalance_port(struct port *port)
2380 struct slave_balance bals[DP_MAX_PORTS];
2382 struct bond_entry *hashes[BOND_MASK + 1];
2383 struct slave_balance *b, *from, *to;
2384 struct bond_entry *e;
2387 /* Sets up 'bals' to describe each of the port's interfaces, sorted in
2388 * descending order of tx_bytes, so that bals[0] represents the most
2389 * heavily loaded slave and bals[n_bals - 1] represents the least heavily
2392 * The code is a bit tricky: to avoid dynamically allocating a 'hashes'
2393 * array for each slave_balance structure, we sort our local array of
2394 * hashes in order by slave, so that all of the hashes for a given slave
2395 * become contiguous in memory, and then we point each 'hashes' members of
2396 * a slave_balance structure to the start of a contiguous group. */
2397 n_bals = port->n_ifaces;
2398 for (b = bals; b < &bals[n_bals]; b++) {
2399 b->iface = port->ifaces[b - bals];
2404 for (i = 0; i <= BOND_MASK; i++) {
2405 hashes[i] = &port->bond_hash[i];
2407 qsort(hashes, BOND_MASK + 1, sizeof *hashes, compare_bond_entries);
2408 for (i = 0; i <= BOND_MASK; i++) {
2410 if (e->iface_idx >= 0 && e->iface_idx < port->n_ifaces) {
2411 b = &bals[e->iface_idx];
2412 b->tx_bytes += e->tx_bytes;
2414 b->hashes = &hashes[i];
2419 qsort(bals, n_bals, sizeof *bals, compare_slave_balance);
2420 log_bals(bals, n_bals, port);
2422 /* Discard slaves that aren't enabled (which were sorted to the back of the
2423 * array earlier). */
2424 while (!bals[n_bals - 1].iface->enabled) {
2431 /* Shift load from the most-loaded slaves to the least-loaded slaves. */
2432 to = &bals[n_bals - 1];
2433 for (from = bals; from < to; ) {
2434 uint64_t overload = from->tx_bytes - to->tx_bytes;
2435 if (overload < to->tx_bytes >> 5 || overload < 100000) {
2436 /* The extra load on 'from' (and all less-loaded slaves), compared
2437 * to that of 'to' (the least-loaded slave), is less than ~3%, or
2438 * it is less than ~1Mbps. No point in rebalancing. */
2440 } else if (from->n_hashes == 1) {
2441 /* 'from' only carries a single MAC hash, so we can't shift any
2442 * load away from it, even though we want to. */
2445 /* 'from' is carrying significantly more load than 'to', and that
2446 * load is split across at least two different hashes. Pick a hash
2447 * to migrate to 'to' (the least-loaded slave), given that doing so
2448 * must decrease the ratio of the load on the two slaves by at
2451 * The sort order we use means that we prefer to shift away the
2452 * smallest hashes instead of the biggest ones. There is little
2453 * reason behind this decision; we could use the opposite sort
2454 * order to shift away big hashes ahead of small ones. */
2458 for (i = 0; i < from->n_hashes; i++) {
2459 double old_ratio, new_ratio;
2460 uint64_t delta = from->hashes[i]->tx_bytes;
2462 if (delta == 0 || from->tx_bytes - delta == 0) {
2463 /* Pointless move. */
2467 order_swapped = from->tx_bytes - delta < to->tx_bytes + delta;
2469 if (to->tx_bytes == 0) {
2470 /* Nothing on the new slave, move it. */
2474 old_ratio = (double)from->tx_bytes / to->tx_bytes;
2475 new_ratio = (double)(from->tx_bytes - delta) /
2476 (to->tx_bytes + delta);
2478 if (new_ratio == 0) {
2479 /* Should already be covered but check to prevent division
2484 if (new_ratio < 1) {
2485 new_ratio = 1 / new_ratio;
2488 if (old_ratio - new_ratio > 0.1) {
2489 /* Would decrease the ratio, move it. */
2493 if (i < from->n_hashes) {
2494 bond_shift_load(from, to, i);
2495 port->bond_compat_is_stale = true;
2497 /* If the result of the migration changed the relative order of
2498 * 'from' and 'to' swap them back to maintain invariants. */
2499 if (order_swapped) {
2500 swap_bals(from, to);
2503 /* Re-sort 'bals'. Note that this may make 'from' and 'to'
2504 * point to different slave_balance structures. It is only
2505 * valid to do these two operations in a row at all because we
2506 * know that 'from' will not move past 'to' and vice versa. */
2507 resort_bals(from, bals, n_bals);
2508 resort_bals(to, bals, n_bals);
2515 /* Implement exponentially weighted moving average. A weight of 1/2 causes
2516 * historical data to decay to <1% in 7 rebalancing runs. */
2517 for (e = &port->bond_hash[0]; e <= &port->bond_hash[BOND_MASK]; e++) {
2523 bond_send_learning_packets(struct port *port)
2525 struct bridge *br = port->bridge;
2526 struct mac_entry *e;
2527 struct ofpbuf packet;
2528 int error, n_packets, n_errors;
2530 if (!port->n_ifaces || port->active_iface < 0) {
2534 ofpbuf_init(&packet, 128);
2535 error = n_packets = n_errors = 0;
2536 LIST_FOR_EACH (e, struct mac_entry, lru_node, &br->ml->lrus) {
2537 union ofp_action actions[2], *a;
2543 if (e->port == port->port_idx
2544 || !choose_output_iface(port, e->mac, &dp_ifidx, &tags)) {
2548 /* Compose actions. */
2549 memset(actions, 0, sizeof actions);
2552 a->vlan_vid.type = htons(OFPAT_SET_VLAN_VID);
2553 a->vlan_vid.len = htons(sizeof *a);
2554 a->vlan_vid.vlan_vid = htons(e->vlan);
2557 a->output.type = htons(OFPAT_OUTPUT);
2558 a->output.len = htons(sizeof *a);
2559 a->output.port = htons(odp_port_to_ofp_port(dp_ifidx));
2564 compose_benign_packet(&packet, "Open vSwitch Bond Failover", 0xf177,
2566 flow_extract(&packet, ODPP_NONE, &flow);
2567 retval = ofproto_send_packet(br->ofproto, &flow, actions, a - actions,
2574 ofpbuf_uninit(&packet);
2577 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2578 VLOG_WARN_RL(&rl, "bond %s: %d errors sending %d gratuitous learning "
2579 "packets, last error was: %s",
2580 port->name, n_errors, n_packets, strerror(error));
2582 VLOG_DBG("bond %s: sent %d gratuitous learning packets",
2583 port->name, n_packets);
2587 /* Bonding unixctl user interface functions. */
2590 bond_unixctl_list(struct unixctl_conn *conn, const char *args UNUSED)
2592 struct ds ds = DS_EMPTY_INITIALIZER;
2593 const struct bridge *br;
2595 ds_put_cstr(&ds, "bridge\tbond\tslaves\n");
2597 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
2600 for (i = 0; i < br->n_ports; i++) {
2601 const struct port *port = br->ports[i];
2602 if (port->n_ifaces > 1) {
2605 ds_put_format(&ds, "%s\t%s\t", br->name, port->name);
2606 for (j = 0; j < port->n_ifaces; j++) {
2607 const struct iface *iface = port->ifaces[j];
2609 ds_put_cstr(&ds, ", ");
2611 ds_put_cstr(&ds, iface->name);
2613 ds_put_char(&ds, '\n');
2617 unixctl_command_reply(conn, 200, ds_cstr(&ds));
2621 static struct port *
2622 bond_find(const char *name)
2624 const struct bridge *br;
2626 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
2629 for (i = 0; i < br->n_ports; i++) {
2630 struct port *port = br->ports[i];
2631 if (!strcmp(port->name, name) && port->n_ifaces > 1) {
2640 bond_unixctl_show(struct unixctl_conn *conn, const char *args)
2642 struct ds ds = DS_EMPTY_INITIALIZER;
2643 const struct port *port;
2646 port = bond_find(args);
2648 unixctl_command_reply(conn, 501, "no such bond");
2652 ds_put_format(&ds, "updelay: %d ms\n", port->updelay);
2653 ds_put_format(&ds, "downdelay: %d ms\n", port->downdelay);
2654 ds_put_format(&ds, "next rebalance: %lld ms\n",
2655 port->bridge->bond_next_rebalance - time_msec());
2656 for (j = 0; j < port->n_ifaces; j++) {
2657 const struct iface *iface = port->ifaces[j];
2658 struct bond_entry *be;
2661 ds_put_format(&ds, "slave %s: %s\n",
2662 iface->name, iface->enabled ? "enabled" : "disabled");
2663 if (j == port->active_iface) {
2664 ds_put_cstr(&ds, "\tactive slave\n");
2666 if (iface->delay_expires != LLONG_MAX) {
2667 ds_put_format(&ds, "\t%s expires in %lld ms\n",
2668 iface->enabled ? "downdelay" : "updelay",
2669 iface->delay_expires - time_msec());
2673 for (be = port->bond_hash; be <= &port->bond_hash[BOND_MASK]; be++) {
2674 int hash = be - port->bond_hash;
2675 struct mac_entry *me;
2677 if (be->iface_idx != j) {
2681 ds_put_format(&ds, "\thash %d: %"PRIu64" kB load\n",
2682 hash, be->tx_bytes / 1024);
2685 LIST_FOR_EACH (me, struct mac_entry, lru_node,
2686 &port->bridge->ml->lrus) {
2689 if (bond_hash(me->mac) == hash
2690 && me->port != port->port_idx
2691 && choose_output_iface(port, me->mac, &dp_ifidx, &tags)
2692 && dp_ifidx == iface->dp_ifidx)
2694 ds_put_format(&ds, "\t\t"ETH_ADDR_FMT"\n",
2695 ETH_ADDR_ARGS(me->mac));
2700 unixctl_command_reply(conn, 200, ds_cstr(&ds));
2705 bond_unixctl_migrate(struct unixctl_conn *conn, const char *args_)
2707 char *args = (char *) args_;
2708 char *save_ptr = NULL;
2709 char *bond_s, *hash_s, *slave_s;
2710 uint8_t mac[ETH_ADDR_LEN];
2712 struct iface *iface;
2713 struct bond_entry *entry;
2716 bond_s = strtok_r(args, " ", &save_ptr);
2717 hash_s = strtok_r(NULL, " ", &save_ptr);
2718 slave_s = strtok_r(NULL, " ", &save_ptr);
2720 unixctl_command_reply(conn, 501,
2721 "usage: bond/migrate BOND HASH SLAVE");
2725 port = bond_find(bond_s);
2727 unixctl_command_reply(conn, 501, "no such bond");
2731 if (sscanf(hash_s, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
2732 == ETH_ADDR_SCAN_COUNT) {
2733 hash = bond_hash(mac);
2734 } else if (strspn(hash_s, "0123456789") == strlen(hash_s)) {
2735 hash = atoi(hash_s) & BOND_MASK;
2737 unixctl_command_reply(conn, 501, "bad hash");
2741 iface = port_lookup_iface(port, slave_s);
2743 unixctl_command_reply(conn, 501, "no such slave");
2747 if (!iface->enabled) {
2748 unixctl_command_reply(conn, 501, "cannot migrate to disabled slave");
2752 entry = &port->bond_hash[hash];
2753 ofproto_revalidate(port->bridge->ofproto, entry->iface_tag);
2754 entry->iface_idx = iface->port_ifidx;
2755 entry->iface_tag = tag_create_random();
2756 port->bond_compat_is_stale = true;
2757 unixctl_command_reply(conn, 200, "migrated");
2761 bond_unixctl_set_active_slave(struct unixctl_conn *conn, const char *args_)
2763 char *args = (char *) args_;
2764 char *save_ptr = NULL;
2765 char *bond_s, *slave_s;
2767 struct iface *iface;
2769 bond_s = strtok_r(args, " ", &save_ptr);
2770 slave_s = strtok_r(NULL, " ", &save_ptr);
2772 unixctl_command_reply(conn, 501,
2773 "usage: bond/set-active-slave BOND SLAVE");
2777 port = bond_find(bond_s);
2779 unixctl_command_reply(conn, 501, "no such bond");
2783 iface = port_lookup_iface(port, slave_s);
2785 unixctl_command_reply(conn, 501, "no such slave");
2789 if (!iface->enabled) {
2790 unixctl_command_reply(conn, 501, "cannot make disabled slave active");
2794 if (port->active_iface != iface->port_ifidx) {
2795 ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
2796 port->active_iface = iface->port_ifidx;
2797 port->active_iface_tag = tag_create_random();
2798 VLOG_INFO("port %s: active interface is now %s",
2799 port->name, iface->name);
2800 bond_send_learning_packets(port);
2801 unixctl_command_reply(conn, 200, "done");
2803 unixctl_command_reply(conn, 200, "no change");
2808 enable_slave(struct unixctl_conn *conn, const char *args_, bool enable)
2810 char *args = (char *) args_;
2811 char *save_ptr = NULL;
2812 char *bond_s, *slave_s;
2814 struct iface *iface;
2816 bond_s = strtok_r(args, " ", &save_ptr);
2817 slave_s = strtok_r(NULL, " ", &save_ptr);
2819 unixctl_command_reply(conn, 501,
2820 "usage: bond/enable/disable-slave BOND SLAVE");
2824 port = bond_find(bond_s);
2826 unixctl_command_reply(conn, 501, "no such bond");
2830 iface = port_lookup_iface(port, slave_s);
2832 unixctl_command_reply(conn, 501, "no such slave");
2836 bond_enable_slave(iface, enable);
2837 unixctl_command_reply(conn, 501, enable ? "enabled" : "disabled");
2841 bond_unixctl_enable_slave(struct unixctl_conn *conn, const char *args)
2843 enable_slave(conn, args, true);
2847 bond_unixctl_disable_slave(struct unixctl_conn *conn, const char *args)
2849 enable_slave(conn, args, false);
2853 bond_unixctl_hash(struct unixctl_conn *conn, const char *args)
2855 uint8_t mac[ETH_ADDR_LEN];
2859 if (sscanf(args, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
2860 == ETH_ADDR_SCAN_COUNT) {
2861 hash = bond_hash(mac);
2863 hash_cstr = xasprintf("%u", hash);
2864 unixctl_command_reply(conn, 200, hash_cstr);
2867 unixctl_command_reply(conn, 501, "invalid mac");
2874 unixctl_command_register("bond/list", bond_unixctl_list);
2875 unixctl_command_register("bond/show", bond_unixctl_show);
2876 unixctl_command_register("bond/migrate", bond_unixctl_migrate);
2877 unixctl_command_register("bond/set-active-slave",
2878 bond_unixctl_set_active_slave);
2879 unixctl_command_register("bond/enable-slave", bond_unixctl_enable_slave);
2880 unixctl_command_register("bond/disable-slave", bond_unixctl_disable_slave);
2881 unixctl_command_register("bond/hash", bond_unixctl_hash);
2884 /* Port functions. */
2887 port_create(struct bridge *br, const char *name)
2891 port = xcalloc(1, sizeof *port);
2893 port->port_idx = br->n_ports;
2895 port->trunks = NULL;
2896 port->name = xstrdup(name);
2897 port->active_iface = -1;
2898 port->stp_state = STP_DISABLED;
2899 port->stp_state_tag = 0;
2901 if (br->n_ports >= br->allocated_ports) {
2902 br->ports = x2nrealloc(br->ports, &br->allocated_ports,
2905 br->ports[br->n_ports++] = port;
2907 VLOG_INFO("created port %s on bridge %s", port->name, br->name);
2912 port_reconfigure(struct port *port)
2914 bool bonded = cfg_has_section("bonding.%s", port->name);
2915 struct svec old_ifaces, new_ifaces;
2916 unsigned long *trunks;
2920 /* Collect old and new interfaces. */
2921 svec_init(&old_ifaces);
2922 svec_init(&new_ifaces);
2923 for (i = 0; i < port->n_ifaces; i++) {
2924 svec_add(&old_ifaces, port->ifaces[i]->name);
2926 svec_sort(&old_ifaces);
2928 cfg_get_all_keys(&new_ifaces, "bonding.%s.slave", port->name);
2929 if (!new_ifaces.n) {
2930 VLOG_ERR("port %s: no interfaces specified for bonded port",
2932 } else if (new_ifaces.n == 1) {
2933 VLOG_WARN("port %s: only 1 interface specified for bonded port",
2937 port->updelay = cfg_get_int(0, "bonding.%s.updelay", port->name);
2938 if (port->updelay < 0) {
2941 port->downdelay = cfg_get_int(0, "bonding.%s.downdelay", port->name);
2942 if (port->downdelay < 0) {
2943 port->downdelay = 0;
2946 svec_init(&new_ifaces);
2947 svec_add(&new_ifaces, port->name);
2950 /* Get rid of deleted interfaces and add new interfaces. */
2951 for (i = 0; i < port->n_ifaces; i++) {
2952 struct iface *iface = port->ifaces[i];
2953 if (!svec_contains(&new_ifaces, iface->name)) {
2954 iface_destroy(iface);
2959 for (i = 0; i < new_ifaces.n; i++) {
2960 const char *name = new_ifaces.names[i];
2961 if (!svec_contains(&old_ifaces, name)) {
2962 iface_create(port, name);
2968 if (cfg_has("vlan.%s.tag", port->name)) {
2970 vlan = cfg_get_vlan(0, "vlan.%s.tag", port->name);
2971 if (vlan >= 0 && vlan <= 4095) {
2972 VLOG_DBG("port %s: assigning VLAN tag %d", port->name, vlan);
2975 /* It's possible that bonded, VLAN-tagged ports make sense. Maybe
2976 * they even work as-is. But they have not been tested. */
2977 VLOG_WARN("port %s: VLAN tags not supported on bonded ports",
2981 if (port->vlan != vlan) {
2983 bridge_flush(port->bridge);
2986 /* Get trunked VLANs. */
2989 size_t n_trunks, n_errors;
2992 trunks = bitmap_allocate(4096);
2993 n_trunks = cfg_count("vlan.%s.trunks", port->name);
2995 for (i = 0; i < n_trunks; i++) {
2996 int trunk = cfg_get_vlan(i, "vlan.%s.trunks", port->name);
2998 bitmap_set1(trunks, trunk);
3004 VLOG_ERR("port %s: invalid values for %zu trunk VLANs",
3005 port->name, n_trunks);
3007 if (n_errors == n_trunks) {
3009 VLOG_ERR("port %s: no valid trunks, trunking all VLANs",
3012 bitmap_set_multiple(trunks, 0, 4096, 1);
3015 if (cfg_has("vlan.%s.trunks", port->name)) {
3016 VLOG_ERR("ignoring vlan.%s.trunks in favor of vlan.%s.vlan",
3017 port->name, port->name);
3021 ? port->trunks != NULL
3022 : port->trunks == NULL || !bitmap_equal(trunks, port->trunks, 4096)) {
3023 bridge_flush(port->bridge);
3025 bitmap_free(port->trunks);
3026 port->trunks = trunks;
3028 svec_destroy(&old_ifaces);
3029 svec_destroy(&new_ifaces);
3033 port_destroy(struct port *port)
3036 struct bridge *br = port->bridge;
3040 proc_net_compat_update_vlan(port->name, NULL, 0);
3041 proc_net_compat_update_bond(port->name, NULL);
3043 for (i = 0; i < MAX_MIRRORS; i++) {
3044 struct mirror *m = br->mirrors[i];
3045 if (m && m->out_port == port) {
3050 while (port->n_ifaces > 0) {
3051 iface_destroy(port->ifaces[port->n_ifaces - 1]);
3054 del = br->ports[port->port_idx] = br->ports[--br->n_ports];
3055 del->port_idx = port->port_idx;
3058 bitmap_free(port->trunks);
3065 static struct port *
3066 port_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
3068 struct iface *iface = iface_from_dp_ifidx(br, dp_ifidx);
3069 return iface ? iface->port : NULL;
3072 static struct port *
3073 port_lookup(const struct bridge *br, const char *name)
3077 for (i = 0; i < br->n_ports; i++) {
3078 struct port *port = br->ports[i];
3079 if (!strcmp(port->name, name)) {
3086 static struct iface *
3087 port_lookup_iface(const struct port *port, const char *name)
3091 for (j = 0; j < port->n_ifaces; j++) {
3092 struct iface *iface = port->ifaces[j];
3093 if (!strcmp(iface->name, name)) {
3101 port_update_bonding(struct port *port)
3103 if (port->n_ifaces < 2) {
3104 /* Not a bonded port. */
3105 if (port->bond_hash) {
3106 free(port->bond_hash);
3107 port->bond_hash = NULL;
3108 port->bond_compat_is_stale = true;
3111 if (!port->bond_hash) {
3114 port->bond_hash = xcalloc(BOND_MASK + 1, sizeof *port->bond_hash);
3115 for (i = 0; i <= BOND_MASK; i++) {
3116 struct bond_entry *e = &port->bond_hash[i];
3120 port->no_ifaces_tag = tag_create_random();
3121 bond_choose_active_iface(port);
3123 port->bond_compat_is_stale = true;
3128 port_update_bond_compat(struct port *port)
3130 struct compat_bond_hash compat_hashes[BOND_MASK + 1];
3131 struct compat_bond bond;
3134 if (port->n_ifaces < 2) {
3135 proc_net_compat_update_bond(port->name, NULL);
3140 bond.updelay = port->updelay;
3141 bond.downdelay = port->downdelay;
3144 bond.hashes = compat_hashes;
3145 if (port->bond_hash) {
3146 const struct bond_entry *e;
3147 for (e = port->bond_hash; e <= &port->bond_hash[BOND_MASK]; e++) {
3148 if (e->iface_idx >= 0 && e->iface_idx < port->n_ifaces) {
3149 struct compat_bond_hash *cbh = &bond.hashes[bond.n_hashes++];
3150 cbh->hash = e - port->bond_hash;
3151 cbh->netdev_name = port->ifaces[e->iface_idx]->name;
3156 bond.n_slaves = port->n_ifaces;
3157 bond.slaves = xmalloc(port->n_ifaces * sizeof *bond.slaves);
3158 for (i = 0; i < port->n_ifaces; i++) {
3159 struct iface *iface = port->ifaces[i];
3160 struct compat_bond_slave *slave = &bond.slaves[i];
3161 slave->name = iface->name;
3163 /* We need to make the same determination as the Linux bonding
3164 * code to determine whether a slave should be consider "up".
3165 * The Linux function bond_miimon_inspect() supports four
3166 * BOND_LINK_* states:
3168 * - BOND_LINK_UP: carrier detected, updelay has passed.
3169 * - BOND_LINK_FAIL: carrier lost, downdelay in progress.
3170 * - BOND_LINK_DOWN: carrier lost, downdelay has passed.
3171 * - BOND_LINK_BACK: carrier detected, updelay in progress.
3173 * The function bond_info_show_slave() only considers BOND_LINK_UP
3174 * to be "up" and anything else to be "down".
3176 slave->up = iface->enabled && iface->delay_expires == LLONG_MAX;
3180 netdev_get_etheraddr(iface->netdev, slave->mac);
3183 if (cfg_get_bool(0, "bonding.%s.fake-iface", port->name)) {
3184 struct netdev *bond_netdev;
3186 if (!netdev_open(port->name, NETDEV_ETH_TYPE_NONE, &bond_netdev)) {
3188 netdev_turn_flags_on(bond_netdev, NETDEV_UP, true);
3190 netdev_turn_flags_off(bond_netdev, NETDEV_UP, true);
3192 netdev_close(bond_netdev);
3196 proc_net_compat_update_bond(port->name, &bond);
3201 port_update_vlan_compat(struct port *port)
3203 struct bridge *br = port->bridge;
3204 char *vlandev_name = NULL;
3206 if (port->vlan > 0) {
3207 /* Figure out the name that the VLAN device should actually have, if it
3208 * existed. This takes some work because the VLAN device would not
3209 * have port->name in its name; rather, it would have the trunk port's
3210 * name, and 'port' would be attached to a bridge that also had the
3211 * VLAN device one of its ports. So we need to find a trunk port that
3212 * includes port->vlan.
3214 * There might be more than one candidate. This doesn't happen on
3215 * XenServer, so if it happens we just pick the first choice in
3216 * alphabetical order instead of creating multiple VLAN devices. */
3218 for (i = 0; i < br->n_ports; i++) {
3219 struct port *p = br->ports[i];
3220 if (port_trunks_vlan(p, port->vlan)
3222 && (!vlandev_name || strcmp(p->name, vlandev_name) <= 0))
3224 uint8_t ea[ETH_ADDR_LEN];
3225 netdev_get_etheraddr(p->ifaces[0]->netdev, ea);
3226 if (!eth_addr_is_multicast(ea) &&
3227 !eth_addr_is_reserved(ea) &&
3228 !eth_addr_is_zero(ea)) {
3229 vlandev_name = p->name;
3234 proc_net_compat_update_vlan(port->name, vlandev_name, port->vlan);
3237 /* Interface functions. */
3240 iface_create(struct port *port, const char *name)
3242 struct iface *iface;
3244 iface = xcalloc(1, sizeof *iface);
3246 iface->port_ifidx = port->n_ifaces;
3247 iface->name = xstrdup(name);
3248 iface->dp_ifidx = -1;
3249 iface->tag = tag_create_random();
3250 iface->delay_expires = LLONG_MAX;
3251 iface->netdev = NULL;
3253 if (port->n_ifaces >= port->allocated_ifaces) {
3254 port->ifaces = x2nrealloc(port->ifaces, &port->allocated_ifaces,
3255 sizeof *port->ifaces);
3257 port->ifaces[port->n_ifaces++] = iface;
3258 if (port->n_ifaces > 1) {
3259 port->bridge->has_bonded_ports = true;
3262 VLOG_DBG("attached network device %s to port %s", iface->name, port->name);
3264 bridge_flush(port->bridge);
3268 iface_destroy(struct iface *iface)
3271 struct port *port = iface->port;
3272 struct bridge *br = port->bridge;
3273 bool del_active = port->active_iface == iface->port_ifidx;
3276 if (iface->dp_ifidx >= 0) {
3277 port_array_set(&br->ifaces, iface->dp_ifidx, NULL);
3280 del = port->ifaces[iface->port_ifidx] = port->ifaces[--port->n_ifaces];
3281 del->port_ifidx = iface->port_ifidx;
3283 netdev_close(iface->netdev);
3288 ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
3289 bond_choose_active_iface(port);
3290 bond_send_learning_packets(port);
3293 bridge_flush(port->bridge);
3297 static struct iface *
3298 iface_lookup(const struct bridge *br, const char *name)
3302 for (i = 0; i < br->n_ports; i++) {
3303 struct port *port = br->ports[i];
3304 for (j = 0; j < port->n_ifaces; j++) {
3305 struct iface *iface = port->ifaces[j];
3306 if (!strcmp(iface->name, name)) {
3314 static struct iface *
3315 iface_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
3317 return port_array_get(&br->ifaces, dp_ifidx);
3320 /* Returns true if 'iface' is the name of an "internal" interface on bridge
3321 * 'br', that is, an interface that is entirely simulated within the datapath.
3322 * The local port (ODPP_LOCAL) is always an internal interface. Other local
3323 * interfaces are created by setting "iface.<iface>.internal = true".
3325 * In addition, we have a kluge-y feature that creates an internal port with
3326 * the name of a bonded port if "bonding.<bondname>.fake-iface = true" is set.
3327 * This feature needs to go away in the long term. Until then, this is one
3328 * reason why this function takes a name instead of a struct iface: the fake
3329 * interfaces created this way do not have a struct iface. */
3331 iface_is_internal(const struct bridge *br, const char *iface)
3333 if (!strcmp(iface, br->name)
3334 || cfg_get_bool(0, "iface.%s.internal", iface)) {
3338 if (cfg_get_bool(0, "bonding.%s.fake-iface", iface)) {
3339 struct port *port = port_lookup(br, iface);
3340 if (port && port->n_ifaces > 1) {
3348 /* Set Ethernet address of 'iface', if one is specified in the configuration
3351 iface_set_mac(struct iface *iface)
3353 uint64_t mac = cfg_get_mac(0, "iface.%s.mac", iface->name);
3355 static uint8_t ea[ETH_ADDR_LEN];
3357 eth_addr_from_uint64(mac, ea);
3358 if (eth_addr_is_multicast(ea)) {
3359 VLOG_ERR("interface %s: cannot set MAC to multicast address",
3361 } else if (iface->dp_ifidx == ODPP_LOCAL) {
3362 VLOG_ERR("ignoring iface.%s.mac; use bridge.%s.mac instead",
3363 iface->name, iface->name);
3365 int error = netdev_set_etheraddr(iface->netdev, ea);
3367 VLOG_ERR("interface %s: setting MAC failed (%s)",
3368 iface->name, strerror(error));
3374 /* Port mirroring. */
3377 mirror_reconfigure(struct bridge *br)
3379 struct svec old_mirrors, new_mirrors;
3380 size_t i, n_rspan_vlans;
3381 unsigned long *rspan_vlans;
3383 /* Collect old and new mirrors. */
3384 svec_init(&old_mirrors);
3385 svec_init(&new_mirrors);
3386 cfg_get_subsections(&new_mirrors, "mirror.%s", br->name);
3387 for (i = 0; i < MAX_MIRRORS; i++) {
3388 if (br->mirrors[i]) {
3389 svec_add(&old_mirrors, br->mirrors[i]->name);
3393 /* Get rid of deleted mirrors and add new mirrors. */
3394 svec_sort(&old_mirrors);
3395 assert(svec_is_unique(&old_mirrors));
3396 svec_sort(&new_mirrors);
3397 assert(svec_is_unique(&new_mirrors));
3398 for (i = 0; i < MAX_MIRRORS; i++) {
3399 struct mirror *m = br->mirrors[i];
3400 if (m && !svec_contains(&new_mirrors, m->name)) {
3404 for (i = 0; i < new_mirrors.n; i++) {
3405 const char *name = new_mirrors.names[i];
3406 if (!svec_contains(&old_mirrors, name)) {
3407 mirror_create(br, name);
3410 svec_destroy(&old_mirrors);
3411 svec_destroy(&new_mirrors);
3413 /* Reconfigure all mirrors. */
3414 for (i = 0; i < MAX_MIRRORS; i++) {
3415 if (br->mirrors[i]) {
3416 mirror_reconfigure_one(br->mirrors[i]);
3420 /* Update port reserved status. */
3421 for (i = 0; i < br->n_ports; i++) {
3422 br->ports[i]->is_mirror_output_port = false;
3424 for (i = 0; i < MAX_MIRRORS; i++) {
3425 struct mirror *m = br->mirrors[i];
3426 if (m && m->out_port) {
3427 m->out_port->is_mirror_output_port = true;
3431 /* Update learning disabled vlans (for RSPAN). */
3433 n_rspan_vlans = cfg_count("vlan.%s.disable-learning", br->name);
3434 if (n_rspan_vlans) {
3435 rspan_vlans = bitmap_allocate(4096);
3437 for (i = 0; i < n_rspan_vlans; i++) {
3438 int vlan = cfg_get_vlan(i, "vlan.%s.disable-learning", br->name);
3440 bitmap_set1(rspan_vlans, vlan);
3441 VLOG_INFO("bridge %s: disabling learning on vlan %d\n",
3444 VLOG_ERR("bridge %s: invalid value '%s' for learning disabled "
3446 cfg_get_string(i, "vlan.%s.disable-learning", br->name));
3450 if (mac_learning_set_disabled_vlans(br->ml, rspan_vlans)) {
3456 mirror_create(struct bridge *br, const char *name)
3461 for (i = 0; ; i++) {
3462 if (i >= MAX_MIRRORS) {
3463 VLOG_WARN("bridge %s: maximum of %d port mirrors reached, "
3464 "cannot create %s", br->name, MAX_MIRRORS, name);
3467 if (!br->mirrors[i]) {
3472 VLOG_INFO("created port mirror %s on bridge %s", name, br->name);
3475 br->mirrors[i] = m = xcalloc(1, sizeof *m);
3478 m->name = xstrdup(name);
3479 svec_init(&m->src_ports);
3480 svec_init(&m->dst_ports);
3488 mirror_destroy(struct mirror *m)
3491 struct bridge *br = m->bridge;
3494 for (i = 0; i < br->n_ports; i++) {
3495 br->ports[i]->src_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
3496 br->ports[i]->dst_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
3499 svec_destroy(&m->src_ports);
3500 svec_destroy(&m->dst_ports);
3503 m->bridge->mirrors[m->idx] = NULL;
3511 prune_ports(struct mirror *m, struct svec *ports)
3516 svec_sort_unique(ports);
3519 for (i = 0; i < ports->n; i++) {
3520 const char *name = ports->names[i];
3521 if (port_lookup(m->bridge, name)) {
3522 svec_add(&tmp, name);
3524 VLOG_WARN("mirror.%s.%s: cannot match on nonexistent port %s",
3525 m->bridge->name, m->name, name);
3528 svec_swap(ports, &tmp);
3533 prune_vlans(struct mirror *m, struct svec *vlan_strings, int **vlans)
3537 /* This isn't perfect: it won't combine "0" and "00", and the textual sort
3538 * order won't give us numeric sort order. But that's good enough for what
3539 * we need right now. */
3540 svec_sort_unique(vlan_strings);
3542 *vlans = xmalloc(sizeof *vlans * vlan_strings->n);
3544 for (i = 0; i < vlan_strings->n; i++) {
3545 const char *name = vlan_strings->names[i];
3547 if (!str_to_int(name, 10, &vlan) || vlan < 0 || vlan > 4095) {
3548 VLOG_WARN("mirror.%s.%s.select.vlan: ignoring invalid VLAN %s",
3549 m->bridge->name, m->name, name);
3551 (*vlans)[n_vlans++] = vlan;
3558 vlan_is_mirrored(const struct mirror *m, int vlan)
3562 for (i = 0; i < m->n_vlans; i++) {
3563 if (m->vlans[i] == vlan) {
3571 port_trunks_any_mirrored_vlan(const struct mirror *m, const struct port *p)
3575 for (i = 0; i < m->n_vlans; i++) {
3576 if (port_trunks_vlan(p, m->vlans[i])) {
3584 mirror_reconfigure_one(struct mirror *m)
3586 char *pfx = xasprintf("mirror.%s.%s", m->bridge->name, m->name);
3587 struct svec src_ports, dst_ports, ports;
3588 struct svec vlan_strings;
3589 mirror_mask_t mirror_bit;
3590 const char *out_port_name;
3591 struct port *out_port;
3596 bool mirror_all_ports;
3597 bool any_ports_specified;
3599 /* Get output port. */
3600 out_port_name = cfg_get_key(0, "mirror.%s.%s.output.port",
3601 m->bridge->name, m->name);
3602 if (out_port_name) {
3603 out_port = port_lookup(m->bridge, out_port_name);
3605 VLOG_ERR("%s.output.port: bridge %s does not have a port "
3606 "named %s", pfx, m->bridge->name, out_port_name);
3613 if (cfg_has("%s.output.vlan", pfx)) {
3614 VLOG_ERR("%s.output.port and %s.output.vlan both specified; "
3615 "ignoring %s.output.vlan", pfx, pfx, pfx);
3617 } else if (cfg_has("%s.output.vlan", pfx)) {
3619 out_vlan = cfg_get_vlan(0, "%s.output.vlan", pfx);
3621 VLOG_ERR("%s: neither %s.output.port nor %s.output.vlan specified, "
3622 "but exactly one is required; disabling port mirror %s",
3623 pfx, pfx, pfx, pfx);
3629 /* Get all the ports, and drop duplicates and ports that don't exist. */
3630 svec_init(&src_ports);
3631 svec_init(&dst_ports);
3633 cfg_get_all_keys(&src_ports, "%s.select.src-port", pfx);
3634 cfg_get_all_keys(&dst_ports, "%s.select.dst-port", pfx);
3635 cfg_get_all_keys(&ports, "%s.select.port", pfx);
3636 any_ports_specified = src_ports.n || dst_ports.n || ports.n;
3637 svec_append(&src_ports, &ports);
3638 svec_append(&dst_ports, &ports);
3639 svec_destroy(&ports);
3640 prune_ports(m, &src_ports);
3641 prune_ports(m, &dst_ports);
3642 if (any_ports_specified && !src_ports.n && !dst_ports.n) {
3643 VLOG_ERR("%s: none of the specified ports exist; "
3644 "disabling port mirror %s", pfx, pfx);
3649 /* Get all the vlans, and drop duplicate and invalid vlans. */
3650 svec_init(&vlan_strings);
3651 cfg_get_all_keys(&vlan_strings, "%s.select.vlan", pfx);
3652 n_vlans = prune_vlans(m, &vlan_strings, &vlans);
3653 svec_destroy(&vlan_strings);
3655 /* Update mirror data. */
3656 if (!svec_equal(&m->src_ports, &src_ports)
3657 || !svec_equal(&m->dst_ports, &dst_ports)
3658 || m->n_vlans != n_vlans
3659 || memcmp(m->vlans, vlans, sizeof *vlans * n_vlans)
3660 || m->out_port != out_port
3661 || m->out_vlan != out_vlan) {
3662 bridge_flush(m->bridge);
3664 svec_swap(&m->src_ports, &src_ports);
3665 svec_swap(&m->dst_ports, &dst_ports);
3668 m->n_vlans = n_vlans;
3669 m->out_port = out_port;
3670 m->out_vlan = out_vlan;
3672 /* If no selection criteria have been given, mirror for all ports. */
3673 mirror_all_ports = (!m->src_ports.n) && (!m->dst_ports.n) && (!m->n_vlans);
3676 mirror_bit = MIRROR_MASK_C(1) << m->idx;
3677 for (i = 0; i < m->bridge->n_ports; i++) {
3678 struct port *port = m->bridge->ports[i];
3680 if (mirror_all_ports
3681 || svec_contains(&m->src_ports, port->name)
3684 ? port_trunks_any_mirrored_vlan(m, port)
3685 : vlan_is_mirrored(m, port->vlan)))) {
3686 port->src_mirrors |= mirror_bit;
3688 port->src_mirrors &= ~mirror_bit;
3691 if (mirror_all_ports || svec_contains(&m->dst_ports, port->name)) {
3692 port->dst_mirrors |= mirror_bit;
3694 port->dst_mirrors &= ~mirror_bit;
3700 svec_destroy(&src_ports);
3701 svec_destroy(&dst_ports);
3705 /* Spanning tree protocol. */
3707 static void brstp_update_port_state(struct port *);
3710 brstp_send_bpdu(struct ofpbuf *pkt, int port_no, void *br_)
3712 struct bridge *br = br_;
3713 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
3714 struct iface *iface = iface_from_dp_ifidx(br, port_no);
3716 VLOG_WARN_RL(&rl, "%s: cannot send BPDU on unknown port %d",
3719 struct eth_header *eth = pkt->l2;
3721 netdev_get_etheraddr(iface->netdev, eth->eth_src);
3722 if (eth_addr_is_zero(eth->eth_src)) {
3723 VLOG_WARN_RL(&rl, "%s: cannot send BPDU on port %d "
3724 "with unknown MAC", br->name, port_no);
3726 union ofp_action action;
3729 memset(&action, 0, sizeof action);
3730 action.type = htons(OFPAT_OUTPUT);
3731 action.output.len = htons(sizeof action);
3732 action.output.port = htons(port_no);
3734 flow_extract(pkt, ODPP_NONE, &flow);
3735 ofproto_send_packet(br->ofproto, &flow, &action, 1, pkt);
3742 brstp_reconfigure(struct bridge *br)
3746 if (!cfg_get_bool(0, "stp.%s.enabled", br->name)) {
3748 stp_destroy(br->stp);
3754 uint64_t bridge_address, bridge_id;
3755 int bridge_priority;
3757 bridge_address = cfg_get_mac(0, "stp.%s.address", br->name);
3758 if (!bridge_address) {
3760 bridge_address = (stp_get_bridge_id(br->stp)
3761 & ((UINT64_C(1) << 48) - 1));
3763 uint8_t mac[ETH_ADDR_LEN];
3764 eth_addr_random(mac);
3765 bridge_address = eth_addr_to_uint64(mac);
3769 if (cfg_is_valid(CFG_INT | CFG_REQUIRED, "stp.%s.priority",
3771 bridge_priority = cfg_get_int(0, "stp.%s.priority", br->name);
3773 bridge_priority = STP_DEFAULT_BRIDGE_PRIORITY;
3776 bridge_id = bridge_address | ((uint64_t) bridge_priority << 48);
3778 br->stp = stp_create(br->name, bridge_id, brstp_send_bpdu, br);
3779 br->stp_last_tick = time_msec();
3782 if (bridge_id != stp_get_bridge_id(br->stp)) {
3783 stp_set_bridge_id(br->stp, bridge_id);
3788 for (i = 0; i < br->n_ports; i++) {
3789 struct port *p = br->ports[i];
3791 struct stp_port *sp;
3792 int path_cost, priority;
3798 dp_ifidx = p->ifaces[0]->dp_ifidx;
3799 if (dp_ifidx < 0 || dp_ifidx >= STP_MAX_PORTS) {
3803 sp = stp_get_port(br->stp, dp_ifidx);
3804 enable = (!cfg_is_valid(CFG_BOOL | CFG_REQUIRED,
3805 "stp.%s.port.%s.enabled",
3807 || cfg_get_bool(0, "stp.%s.port.%s.enabled",
3808 br->name, p->name));
3809 if (p->is_mirror_output_port) {
3812 if (enable != (stp_port_get_state(sp) != STP_DISABLED)) {
3813 bridge_flush(br); /* Might not be necessary. */
3815 stp_port_enable(sp);
3817 stp_port_disable(sp);
3821 path_cost = cfg_get_int(0, "stp.%s.port.%s.path-cost",
3823 stp_port_set_path_cost(sp, path_cost ? path_cost : 19 /* XXX */);
3825 priority = (cfg_is_valid(CFG_INT | CFG_REQUIRED,
3826 "stp.%s.port.%s.priority",
3828 ? cfg_get_int(0, "stp.%s.port.%s.priority",
3830 : STP_DEFAULT_PORT_PRIORITY);
3831 stp_port_set_priority(sp, priority);
3834 brstp_adjust_timers(br);
3836 for (i = 0; i < br->n_ports; i++) {
3837 brstp_update_port_state(br->ports[i]);
3842 brstp_update_port_state(struct port *p)
3844 struct bridge *br = p->bridge;
3845 enum stp_state state;
3847 /* Figure out new state. */
3848 state = STP_DISABLED;
3849 if (br->stp && p->n_ifaces > 0) {
3850 int dp_ifidx = p->ifaces[0]->dp_ifidx;
3851 if (dp_ifidx >= 0 && dp_ifidx < STP_MAX_PORTS) {
3852 state = stp_port_get_state(stp_get_port(br->stp, dp_ifidx));
3857 if (p->stp_state != state) {
3858 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(10, 10);
3859 VLOG_INFO_RL(&rl, "port %s: STP state changed from %s to %s",
3860 p->name, stp_state_name(p->stp_state),
3861 stp_state_name(state));
3862 if (p->stp_state == STP_DISABLED) {
3865 ofproto_revalidate(p->bridge->ofproto, p->stp_state_tag);
3867 p->stp_state = state;
3868 p->stp_state_tag = (p->stp_state == STP_DISABLED ? 0
3869 : tag_create_random());
3874 brstp_adjust_timers(struct bridge *br)
3876 int hello_time = cfg_get_int(0, "stp.%s.hello-time", br->name);
3877 int max_age = cfg_get_int(0, "stp.%s.max-age", br->name);
3878 int forward_delay = cfg_get_int(0, "stp.%s.forward-delay", br->name);
3880 stp_set_hello_time(br->stp, hello_time ? hello_time : 2000);
3881 stp_set_max_age(br->stp, max_age ? max_age : 20000);
3882 stp_set_forward_delay(br->stp, forward_delay ? forward_delay : 15000);
3886 brstp_run(struct bridge *br)
3889 long long int now = time_msec();
3890 long long int elapsed = now - br->stp_last_tick;
3891 struct stp_port *sp;
3894 stp_tick(br->stp, MIN(INT_MAX, elapsed));
3895 br->stp_last_tick = now;
3897 while (stp_get_changed_port(br->stp, &sp)) {
3898 struct port *p = port_from_dp_ifidx(br, stp_port_no(sp));
3900 brstp_update_port_state(p);
3907 brstp_wait(struct bridge *br)
3910 poll_timer_wait(1000);