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>
36 #include "dynamic-string.h"
40 #include "mac-learning.h"
43 #include "ofp-print.h"
45 #include "ofproto/netflow.h"
46 #include "ofproto/ofproto.h"
48 #include "poll-loop.h"
49 #include "port-array.h"
50 #include "proc-net-compat.h"
54 #include "socket-util.h"
60 #include "vconn-ssl.h"
61 #include "vswitchd/vswitch-idl.h"
62 #include "xenserver.h"
65 #define THIS_MODULE VLM_bridge
74 /* These members are always valid. */
75 struct port *port; /* Containing port. */
76 size_t port_ifidx; /* Index within containing port. */
77 char *name; /* Host network device name. */
78 tag_type tag; /* Tag associated with this interface. */
79 long long delay_expires; /* Time after which 'enabled' may change. */
81 /* These members are valid only after bridge_reconfigure() causes them to
83 int dp_ifidx; /* Index within kernel datapath. */
84 struct netdev *netdev; /* Network device. */
85 bool enabled; /* May be chosen for flows? */
87 /* This member is only valid *during* bridge_reconfigure(). */
88 const struct ovsrec_interface *cfg;
91 #define BOND_MASK 0xff
93 int iface_idx; /* Index of assigned iface, or -1 if none. */
94 uint64_t tx_bytes; /* Count of bytes recently transmitted. */
95 tag_type iface_tag; /* Tag associated with iface_idx. */
98 #define MAX_MIRRORS 32
99 typedef uint32_t mirror_mask_t;
100 #define MIRROR_MASK_C(X) UINT32_C(X)
101 BUILD_ASSERT_DECL(sizeof(mirror_mask_t) * CHAR_BIT >= MAX_MIRRORS);
103 struct bridge *bridge;
107 /* Selection criteria. */
108 struct svec src_ports;
109 struct svec dst_ports;
114 struct port *out_port;
118 #define FLOOD_PORT ((struct port *) 1) /* The 'flood' output port. */
120 struct bridge *bridge;
122 int vlan; /* -1=trunk port, else a 12-bit VLAN ID. */
123 unsigned long *trunks; /* Bitmap of trunked VLANs, if 'vlan' == -1. */
126 /* An ordinary bridge port has 1 interface.
127 * A bridge port for bonding has at least 2 interfaces. */
128 struct iface **ifaces;
129 size_t n_ifaces, allocated_ifaces;
132 struct bond_entry *bond_hash; /* An array of (BOND_MASK + 1) elements. */
133 int active_iface; /* Ifidx on which bcasts accepted, or -1. */
134 tag_type active_iface_tag; /* Tag for bcast flows. */
135 tag_type no_ifaces_tag; /* Tag for flows when all ifaces disabled. */
136 int updelay, downdelay; /* Delay before iface goes up/down, in ms. */
137 bool bond_compat_is_stale; /* Need to call port_update_bond_compat()? */
138 bool bond_fake_iface; /* Fake a bond interface for legacy compat? */
140 /* Port mirroring info. */
141 mirror_mask_t src_mirrors; /* Mirrors triggered when packet received. */
142 mirror_mask_t dst_mirrors; /* Mirrors triggered when packet sent. */
143 bool is_mirror_output_port; /* Does port mirroring send frames here? */
145 /* This member is only valid *during* bridge_reconfigure(). */
146 const struct ovsrec_port *cfg;
149 #define DP_MAX_PORTS 255
151 struct list node; /* Node in global list of bridges. */
152 char *name; /* User-specified arbitrary name. */
153 struct mac_learning *ml; /* MAC learning table. */
154 bool sent_config_request; /* Successfully sent config request? */
155 uint8_t default_ea[ETH_ADDR_LEN]; /* Default MAC. */
157 /* Support for remote controllers. */
158 char *controller; /* NULL if there is no remote controller;
159 * "discover" to do controller discovery;
160 * otherwise a vconn name. */
162 /* OpenFlow switch processing. */
163 struct ofproto *ofproto; /* OpenFlow switch. */
165 /* Kernel datapath information. */
166 struct dpif *dpif; /* Datapath. */
167 struct port_array ifaces; /* Indexed by kernel datapath port number. */
171 size_t n_ports, allocated_ports;
174 bool has_bonded_ports;
175 long long int bond_next_rebalance;
180 /* Flow statistics gathering. */
181 time_t next_stats_request;
183 /* Port mirroring. */
184 struct mirror *mirrors[MAX_MIRRORS];
186 /* This member is only valid *during* bridge_reconfigure(). */
187 const struct ovsrec_bridge *cfg;
190 /* List of all bridges. */
191 static struct list all_bridges = LIST_INITIALIZER(&all_bridges);
193 /* Maximum number of datapaths. */
194 enum { DP_MAX = 256 };
196 static struct bridge *bridge_create(const char *name);
197 static void bridge_destroy(struct bridge *);
198 static struct bridge *bridge_lookup(const char *name);
199 static unixctl_cb_func bridge_unixctl_dump_flows;
200 static int bridge_run_one(struct bridge *);
201 static void bridge_reconfigure_one(const struct ovsrec_open_vswitch *,
203 static void bridge_reconfigure_controller(const struct ovsrec_open_vswitch *,
205 static void bridge_get_all_ifaces(const struct bridge *, struct shash *ifaces);
206 static void bridge_fetch_dp_ifaces(struct bridge *);
207 static void bridge_flush(struct bridge *);
208 static void bridge_pick_local_hw_addr(struct bridge *,
209 uint8_t ea[ETH_ADDR_LEN],
210 struct iface **hw_addr_iface);
211 static uint64_t bridge_pick_datapath_id(struct bridge *,
212 const uint8_t bridge_ea[ETH_ADDR_LEN],
213 struct iface *hw_addr_iface);
214 static struct iface *bridge_get_local_iface(struct bridge *);
215 static uint64_t dpid_from_hash(const void *, size_t nbytes);
217 static unixctl_cb_func bridge_unixctl_fdb_show;
219 static void bond_init(void);
220 static void bond_run(struct bridge *);
221 static void bond_wait(struct bridge *);
222 static void bond_rebalance_port(struct port *);
223 static void bond_send_learning_packets(struct port *);
224 static void bond_enable_slave(struct iface *iface, bool enable);
226 static struct port *port_create(struct bridge *, const char *name);
227 static void port_reconfigure(struct port *, const struct ovsrec_port *);
228 static void port_destroy(struct port *);
229 static struct port *port_lookup(const struct bridge *, const char *name);
230 static struct iface *port_lookup_iface(const struct port *, const char *name);
231 static struct port *port_from_dp_ifidx(const struct bridge *,
233 static void port_update_bond_compat(struct port *);
234 static void port_update_vlan_compat(struct port *);
235 static void port_update_bonding(struct port *);
238 static void mirror_create(struct bridge *, const char *name);
239 static void mirror_destroy(struct mirror *);
240 static void mirror_reconfigure(struct bridge *);
241 static void mirror_reconfigure_one(struct mirror *);
242 static bool vlan_is_mirrored(const struct mirror *, int vlan);
244 static bool vlan_is_mirrored(const struct mirror *m UNUSED, int vlan UNUSED)
250 static struct iface *iface_create(struct port *, const char *name);
251 static void iface_destroy(struct iface *);
252 static struct iface *iface_lookup(const struct bridge *, const char *name);
253 static struct iface *iface_from_dp_ifidx(const struct bridge *,
255 static bool iface_is_internal(const struct bridge *, const char *name);
256 static void iface_set_mac(struct iface *);
258 /* Hooks into ofproto processing. */
259 static struct ofhooks bridge_ofhooks;
261 /* Public functions. */
263 /* Adds the name of each interface used by a bridge, including local and
264 * internal ports, to 'svec'. */
266 bridge_get_ifaces(struct svec *svec)
268 struct bridge *br, *next;
271 LIST_FOR_EACH_SAFE (br, next, struct bridge, node, &all_bridges) {
272 for (i = 0; i < br->n_ports; i++) {
273 struct port *port = br->ports[i];
275 for (j = 0; j < port->n_ifaces; j++) {
276 struct iface *iface = port->ifaces[j];
277 if (iface->dp_ifidx < 0) {
278 VLOG_ERR("%s interface not in datapath %s, ignoring",
279 iface->name, dpif_name(br->dpif));
281 if (iface->dp_ifidx != ODPP_LOCAL) {
282 svec_add(svec, iface->name);
291 bridge_init(const struct ovsrec_open_vswitch *cfg)
293 struct svec bridge_names;
294 struct svec dpif_names;
297 unixctl_command_register("fdb/show", bridge_unixctl_fdb_show, NULL);
299 svec_init(&bridge_names);
300 for (i = 0; i < cfg->n_bridges; i++) {
301 svec_add(&bridge_names, cfg->bridges[i]->name);
303 svec_sort(&bridge_names);
305 svec_init(&dpif_names);
306 dp_enumerate(&dpif_names);
307 for (i = 0; i < dpif_names.n; i++) {
308 const char *dpif_name = dpif_names.names[i];
312 retval = dpif_open(dpif_name, &dpif);
314 struct svec all_names;
317 svec_init(&all_names);
318 dpif_get_all_names(dpif, &all_names);
319 for (j = 0; j < all_names.n; j++) {
320 if (svec_contains(&bridge_names, all_names.names[j])) {
326 svec_destroy(&all_names);
330 svec_destroy(&dpif_names);
332 unixctl_command_register("bridge/dump-flows", bridge_unixctl_dump_flows,
336 bridge_reconfigure(cfg);
341 config_string_change(const char *value, char **valuep)
343 if (value && (!*valuep || strcmp(value, *valuep))) {
345 *valuep = xstrdup(value);
353 bridge_configure_ssl(const struct ovsrec_ssl *ssl)
355 /* XXX SSL should be configurable on a per-bridge basis.
356 * XXX should be possible to de-configure SSL. */
357 static char *private_key_file;
358 static char *certificate_file;
359 static char *cacert_file;
363 /* XXX We can't un-set SSL settings. */
367 if (config_string_change(ssl->private_key, &private_key_file)) {
368 vconn_ssl_set_private_key_file(private_key_file);
371 if (config_string_change(ssl->certificate, &certificate_file)) {
372 vconn_ssl_set_certificate_file(certificate_file);
375 /* We assume that even if the filename hasn't changed, if the CA cert
376 * file has been removed, that we want to move back into
377 * boot-strapping mode. This opens a small security hole, because
378 * the old certificate will still be trusted until vSwitch is
379 * restarted. We may want to address this in vconn's SSL library. */
380 if (config_string_change(ssl->ca_cert, &cacert_file)
381 || (cacert_file && stat(cacert_file, &s) && errno == ENOENT)) {
382 vconn_ssl_set_ca_cert_file(cacert_file, ssl->bootstrap_ca_cert);
387 /* Attempt to create the network device 'iface_name' through the netdev
390 set_up_iface(const struct ovsrec_interface *iface_cfg, bool create)
392 struct shash_node *node;
393 struct shash options;
397 /* If a type is not explicitly declared, then assume it's an existing
398 * "system" device. */
399 if (iface_cfg->type[0] == '\0' || !strcmp(iface_cfg->type, "system")) {
403 shash_init(&options);
404 for (i = 0; i < iface_cfg->n_options; i++) {
405 shash_add(&options, iface_cfg->key_options[i],
406 xstrdup(iface_cfg->value_options[i]));
410 error = netdev_create(iface_cfg->name, iface_cfg->type, &options);
412 /* xxx Check to make sure that the type hasn't changed. */
413 error = netdev_reconfigure(iface_cfg->name, &options);
416 SHASH_FOR_EACH (node, &options) {
419 shash_destroy(&options);
425 create_iface(const struct ovsrec_interface *iface_cfg)
427 return set_up_iface(iface_cfg, true);
431 reconfigure_iface(const struct ovsrec_interface *iface_cfg)
433 return set_up_iface(iface_cfg, false);
437 destroy_iface(const char *iface_name)
439 netdev_destroy(iface_name);
443 /* iterate_and_prune_ifaces() callback function that opens the network device
444 * for 'iface', if it is not already open, and retrieves the interface's MAC
445 * address and carrier status. */
447 init_iface_netdev(struct bridge *br UNUSED, struct iface *iface,
452 } else if (!netdev_open(iface->name, NETDEV_ETH_TYPE_NONE,
454 netdev_get_carrier(iface->netdev, &iface->enabled);
457 /* If the network device can't be opened, then we're not going to try
458 * to do anything with this interface. */
464 check_iface_dp_ifidx(struct bridge *br, struct iface *iface, void *aux UNUSED)
466 if (iface->dp_ifidx >= 0) {
467 VLOG_DBG("%s has interface %s on port %d",
469 iface->name, iface->dp_ifidx);
472 VLOG_ERR("%s interface not in %s, dropping",
473 iface->name, dpif_name(br->dpif));
479 set_iface_properties(struct bridge *br UNUSED, struct iface *iface,
482 /* Set policing attributes. */
483 netdev_set_policing(iface->netdev,
484 iface->cfg->ingress_policing_rate,
485 iface->cfg->ingress_policing_burst);
487 /* Set MAC address of internal interfaces other than the local
489 if (iface->dp_ifidx != ODPP_LOCAL
490 && iface_is_internal(br, iface->name)) {
491 iface_set_mac(iface);
497 /* Calls 'cb' for each interfaces in 'br', passing along the 'aux' argument.
498 * Deletes from 'br' all the interfaces for which 'cb' returns false, and then
499 * deletes from 'br' any ports that no longer have any interfaces. */
501 iterate_and_prune_ifaces(struct bridge *br,
502 bool (*cb)(struct bridge *, struct iface *,
508 for (i = 0; i < br->n_ports; ) {
509 struct port *port = br->ports[i];
510 for (j = 0; j < port->n_ifaces; ) {
511 struct iface *iface = port->ifaces[j];
512 if (cb(br, iface, aux)) {
515 iface_destroy(iface);
519 if (port->n_ifaces) {
522 VLOG_ERR("%s port has no interfaces, dropping", port->name);
529 bridge_reconfigure(const struct ovsrec_open_vswitch *ovs_cfg)
531 struct shash old_br, new_br;
532 struct shash_node *node;
533 struct bridge *br, *next;
536 COVERAGE_INC(bridge_reconfigure);
538 /* Collect old and new bridges. */
541 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
542 shash_add(&old_br, br->name, br);
544 for (i = 0; i < ovs_cfg->n_bridges; i++) {
545 const struct ovsrec_bridge *br_cfg = ovs_cfg->bridges[i];
546 if (!shash_add_once(&new_br, br_cfg->name, br_cfg)) {
547 VLOG_WARN("more than one bridge named %s", br_cfg->name);
551 /* Get rid of deleted bridges and add new bridges. */
552 LIST_FOR_EACH_SAFE (br, next, struct bridge, node, &all_bridges) {
553 struct ovsrec_bridge *br_cfg = shash_find_data(&new_br, br->name);
560 SHASH_FOR_EACH (node, &new_br) {
561 const char *br_name = node->name;
562 const struct ovsrec_bridge *br_cfg = node->data;
563 if (!shash_find_data(&old_br, br_name)) {
564 br = bridge_create(br_name);
570 shash_destroy(&old_br);
571 shash_destroy(&new_br);
575 bridge_configure_ssl(ovs_cfg->ssl);
578 /* Reconfigure all bridges. */
579 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
580 bridge_reconfigure_one(ovs_cfg, br);
583 /* Add and delete ports on all datapaths.
585 * The kernel will reject any attempt to add a given port to a datapath if
586 * that port already belongs to a different datapath, so we must do all
587 * port deletions before any port additions. */
588 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
589 struct odp_port *dpif_ports;
591 struct shash want_ifaces;
593 dpif_port_list(br->dpif, &dpif_ports, &n_dpif_ports);
594 bridge_get_all_ifaces(br, &want_ifaces);
595 for (i = 0; i < n_dpif_ports; i++) {
596 const struct odp_port *p = &dpif_ports[i];
597 if (!shash_find(&want_ifaces, p->devname)
598 && strcmp(p->devname, br->name)) {
599 int retval = dpif_port_del(br->dpif, p->port);
601 VLOG_ERR("failed to remove %s interface from %s: %s",
602 p->devname, dpif_name(br->dpif),
605 destroy_iface(p->devname);
608 shash_destroy(&want_ifaces);
611 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
612 struct odp_port *dpif_ports;
614 struct shash cur_ifaces, want_ifaces;
615 struct shash_node *node;
617 /* Get the set of interfaces currently in this datapath. */
618 dpif_port_list(br->dpif, &dpif_ports, &n_dpif_ports);
619 shash_init(&cur_ifaces);
620 for (i = 0; i < n_dpif_ports; i++) {
621 const char *name = dpif_ports[i].devname;
622 if (!shash_find(&cur_ifaces, name)) {
623 shash_add(&cur_ifaces, name, NULL);
628 /* Get the set of interfaces we want on this datapath. */
629 bridge_get_all_ifaces(br, &want_ifaces);
631 SHASH_FOR_EACH (node, &want_ifaces) {
632 const char *if_name = node->name;
633 struct iface *iface = node->data;
635 if (shash_find(&cur_ifaces, if_name)) {
636 /* Already exists, just reconfigure it. */
638 reconfigure_iface(iface->cfg);
641 /* Need to add to datapath. */
645 /* Attempt to create the network interface in case it
646 * doesn't exist yet. */
647 error = iface ? create_iface(iface->cfg) : 0;
649 VLOG_WARN("could not create iface %s: %s\n", if_name,
654 /* Add to datapath. */
655 internal = !iface || iface_is_internal(br, if_name);
656 error = dpif_port_add(br->dpif, if_name,
657 internal ? ODP_PORT_INTERNAL : 0, NULL);
658 if (error == EFBIG) {
659 VLOG_ERR("ran out of valid port numbers on %s",
660 dpif_name(br->dpif));
663 VLOG_ERR("failed to add %s interface to %s: %s",
664 if_name, dpif_name(br->dpif), strerror(error));
668 shash_destroy(&cur_ifaces);
669 shash_destroy(&want_ifaces);
671 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
674 struct iface *local_iface;
675 struct iface *hw_addr_iface;
677 bridge_fetch_dp_ifaces(br);
678 iterate_and_prune_ifaces(br, init_iface_netdev, NULL);
680 iterate_and_prune_ifaces(br, check_iface_dp_ifidx, NULL);
682 /* Pick local port hardware address, datapath ID. */
683 bridge_pick_local_hw_addr(br, ea, &hw_addr_iface);
684 local_iface = bridge_get_local_iface(br);
686 int error = netdev_set_etheraddr(local_iface->netdev, ea);
688 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
689 VLOG_ERR_RL(&rl, "bridge %s: failed to set bridge "
690 "Ethernet address: %s",
691 br->name, strerror(error));
695 dpid = bridge_pick_datapath_id(br, ea, hw_addr_iface);
696 ofproto_set_datapath_id(br->ofproto, dpid);
698 /* Set NetFlow configuration on this bridge. */
699 if (br->cfg->netflow) {
700 struct ovsrec_netflow *nf_cfg = br->cfg->netflow;
701 struct netflow_options opts;
703 memset(&opts, 0, sizeof opts);
705 dpif_get_netflow_ids(br->dpif, &opts.engine_type, &opts.engine_id);
706 if (nf_cfg->engine_type) {
707 opts.engine_type = nf_cfg->engine_type;
709 if (nf_cfg->engine_id) {
710 opts.engine_id = nf_cfg->engine_id;
713 opts.active_timeout = nf_cfg->active_timeout;
714 if (!opts.active_timeout) {
715 opts.active_timeout = -1;
716 } else if (opts.active_timeout < 0) {
717 opts.active_timeout = 0;
720 opts.add_id_to_iface = nf_cfg->add_id_to_interface;
721 if (opts.add_id_to_iface) {
722 if (opts.engine_id > 0x7f) {
723 VLOG_WARN("bridge %s: netflow port mangling may conflict "
724 "with another vswitch, choose an engine id less "
725 "than 128", br->name);
727 if (br->n_ports > 508) {
728 VLOG_WARN("bridge %s: netflow port mangling will conflict "
729 "with another port when more than 508 ports are "
734 opts.collectors.n = nf_cfg->n_targets;
735 opts.collectors.names = nf_cfg->targets;
736 if (ofproto_set_netflow(br->ofproto, &opts)) {
737 VLOG_ERR("bridge %s: problem setting netflow collectors",
741 ofproto_set_netflow(br->ofproto, NULL);
744 /* Update the controller and related settings. It would be more
745 * straightforward to call this from bridge_reconfigure_one(), but we
746 * can't do it there for two reasons. First, and most importantly, at
747 * that point we don't know the dp_ifidx of any interfaces that have
748 * been added to the bridge (because we haven't actually added them to
749 * the datapath). Second, at that point we haven't set the datapath ID
750 * yet; when a controller is configured, resetting the datapath ID will
751 * immediately disconnect from the controller, so it's better to set
752 * the datapath ID before the controller. */
753 bridge_reconfigure_controller(ovs_cfg, br);
755 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
756 for (i = 0; i < br->n_ports; i++) {
757 struct port *port = br->ports[i];
759 port_update_vlan_compat(port);
760 port_update_bonding(port);
763 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
764 iterate_and_prune_ifaces(br, set_iface_properties, NULL);
769 bridge_pick_local_hw_addr(struct bridge *br, uint8_t ea[ETH_ADDR_LEN],
770 struct iface **hw_addr_iface)
775 *hw_addr_iface = NULL;
777 /* Did the user request a particular MAC? */
778 if (br->cfg->hwaddr && eth_addr_from_string(br->cfg->hwaddr, ea)) {
779 if (eth_addr_is_multicast(ea)) {
780 VLOG_ERR("bridge %s: cannot set MAC address to multicast "
781 "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
782 } else if (eth_addr_is_zero(ea)) {
783 VLOG_ERR("bridge %s: cannot set MAC address to zero", br->name);
789 /* Otherwise choose the minimum MAC address among all of the interfaces.
790 * (Xen uses FE:FF:FF:FF:FF:FF for virtual interfaces so this will get the
791 * MAC of the physical interface in such an environment.) */
792 memset(ea, 0xff, sizeof ea);
793 for (i = 0; i < br->n_ports; i++) {
794 struct port *port = br->ports[i];
795 uint8_t iface_ea[ETH_ADDR_LEN];
798 /* Mirror output ports don't participate. */
799 if (port->is_mirror_output_port) {
803 /* Choose the MAC address to represent the port. */
804 if (port->cfg->mac && eth_addr_from_string(port->cfg->mac, iface_ea)) {
805 /* Find the interface with this Ethernet address (if any) so that
806 * we can provide the correct devname to the caller. */
808 for (j = 0; j < port->n_ifaces; j++) {
809 struct iface *candidate = port->ifaces[j];
810 uint8_t candidate_ea[ETH_ADDR_LEN];
811 if (!netdev_get_etheraddr(candidate->netdev, candidate_ea)
812 && eth_addr_equals(iface_ea, candidate_ea)) {
817 /* Choose the interface whose MAC address will represent the port.
818 * The Linux kernel bonding code always chooses the MAC address of
819 * the first slave added to a bond, and the Fedora networking
820 * scripts always add slaves to a bond in alphabetical order, so
821 * for compatibility we choose the interface with the name that is
822 * first in alphabetical order. */
823 iface = port->ifaces[0];
824 for (j = 1; j < port->n_ifaces; j++) {
825 struct iface *candidate = port->ifaces[j];
826 if (strcmp(candidate->name, iface->name) < 0) {
831 /* The local port doesn't count (since we're trying to choose its
832 * MAC address anyway). Other internal ports don't count because
833 * we really want a physical MAC if we can get it, and internal
834 * ports typically have randomly generated MACs. */
835 if (iface->dp_ifidx == ODPP_LOCAL
836 || !strcmp(iface->cfg->type, "internal")) {
841 error = netdev_get_etheraddr(iface->netdev, iface_ea);
843 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
844 VLOG_ERR_RL(&rl, "failed to obtain Ethernet address of %s: %s",
845 iface->name, strerror(error));
850 /* Compare against our current choice. */
851 if (!eth_addr_is_multicast(iface_ea) &&
852 !eth_addr_is_reserved(iface_ea) &&
853 !eth_addr_is_zero(iface_ea) &&
854 memcmp(iface_ea, ea, ETH_ADDR_LEN) < 0)
856 memcpy(ea, iface_ea, ETH_ADDR_LEN);
857 *hw_addr_iface = iface;
860 if (eth_addr_is_multicast(ea) || eth_addr_is_vif(ea)) {
861 memcpy(ea, br->default_ea, ETH_ADDR_LEN);
862 *hw_addr_iface = NULL;
863 VLOG_WARN("bridge %s: using default bridge Ethernet "
864 "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
866 VLOG_DBG("bridge %s: using bridge Ethernet address "ETH_ADDR_FMT,
867 br->name, ETH_ADDR_ARGS(ea));
871 /* Choose and returns the datapath ID for bridge 'br' given that the bridge
872 * Ethernet address is 'bridge_ea'. If 'bridge_ea' is the Ethernet address of
873 * an interface on 'br', then that interface must be passed in as
874 * 'hw_addr_iface'; if 'bridge_ea' was derived some other way, then
875 * 'hw_addr_iface' must be passed in as a null pointer. */
877 bridge_pick_datapath_id(struct bridge *br,
878 const uint8_t bridge_ea[ETH_ADDR_LEN],
879 struct iface *hw_addr_iface)
882 * The procedure for choosing a bridge MAC address will, in the most
883 * ordinary case, also choose a unique MAC that we can use as a datapath
884 * ID. In some special cases, though, multiple bridges will end up with
885 * the same MAC address. This is OK for the bridges, but it will confuse
886 * the OpenFlow controller, because each datapath needs a unique datapath
889 * Datapath IDs must be unique. It is also very desirable that they be
890 * stable from one run to the next, so that policy set on a datapath
895 if (br->cfg->datapath_id
896 && dpid_from_string(br->cfg->datapath_id, &dpid)) {
902 if (!netdev_get_vlan_vid(hw_addr_iface->netdev, &vlan)) {
904 * A bridge whose MAC address is taken from a VLAN network device
905 * (that is, a network device created with vconfig(8) or similar
906 * tool) will have the same MAC address as a bridge on the VLAN
907 * device's physical network device.
909 * Handle this case by hashing the physical network device MAC
910 * along with the VLAN identifier.
912 uint8_t buf[ETH_ADDR_LEN + 2];
913 memcpy(buf, bridge_ea, ETH_ADDR_LEN);
914 buf[ETH_ADDR_LEN] = vlan >> 8;
915 buf[ETH_ADDR_LEN + 1] = vlan;
916 return dpid_from_hash(buf, sizeof buf);
919 * Assume that this bridge's MAC address is unique, since it
920 * doesn't fit any of the cases we handle specially.
925 * A purely internal bridge, that is, one that has no non-virtual
926 * network devices on it at all, is more difficult because it has no
927 * natural unique identifier at all.
929 * When the host is a XenServer, we handle this case by hashing the
930 * host's UUID with the name of the bridge. Names of bridges are
931 * persistent across XenServer reboots, although they can be reused if
932 * an internal network is destroyed and then a new one is later
933 * created, so this is fairly effective.
935 * When the host is not a XenServer, we punt by using a random MAC
936 * address on each run.
938 const char *host_uuid = xenserver_get_host_uuid();
940 char *combined = xasprintf("%s,%s", host_uuid, br->name);
941 dpid = dpid_from_hash(combined, strlen(combined));
947 return eth_addr_to_uint64(bridge_ea);
951 dpid_from_hash(const void *data, size_t n)
953 uint8_t hash[SHA1_DIGEST_SIZE];
955 BUILD_ASSERT_DECL(sizeof hash >= ETH_ADDR_LEN);
956 sha1_bytes(data, n, hash);
957 eth_addr_mark_random(hash);
958 return eth_addr_to_uint64(hash);
964 struct bridge *br, *next;
968 LIST_FOR_EACH_SAFE (br, next, struct bridge, node, &all_bridges) {
969 int error = bridge_run_one(br);
971 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
972 VLOG_ERR_RL(&rl, "bridge %s: datapath was destroyed externally, "
973 "forcing reconfiguration", br->name);
987 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
988 ofproto_wait(br->ofproto);
989 if (br->controller) {
993 mac_learning_wait(br->ml);
998 /* Forces 'br' to revalidate all of its flows. This is appropriate when 'br''s
999 * configuration changes. */
1001 bridge_flush(struct bridge *br)
1003 COVERAGE_INC(bridge_flush);
1005 mac_learning_flush(br->ml);
1008 /* Returns the 'br' interface for the ODPP_LOCAL port, or null if 'br' has no
1009 * such interface. */
1010 static struct iface *
1011 bridge_get_local_iface(struct bridge *br)
1015 for (i = 0; i < br->n_ports; i++) {
1016 struct port *port = br->ports[i];
1017 for (j = 0; j < port->n_ifaces; j++) {
1018 struct iface *iface = port->ifaces[j];
1019 if (iface->dp_ifidx == ODPP_LOCAL) {
1028 /* Bridge unixctl user interface functions. */
1030 bridge_unixctl_fdb_show(struct unixctl_conn *conn,
1031 const char *args, void *aux UNUSED)
1033 struct ds ds = DS_EMPTY_INITIALIZER;
1034 const struct bridge *br;
1035 const struct mac_entry *e;
1037 br = bridge_lookup(args);
1039 unixctl_command_reply(conn, 501, "no such bridge");
1043 ds_put_cstr(&ds, " port VLAN MAC Age\n");
1044 LIST_FOR_EACH (e, struct mac_entry, lru_node, &br->ml->lrus) {
1045 if (e->port < 0 || e->port >= br->n_ports) {
1048 ds_put_format(&ds, "%5d %4d "ETH_ADDR_FMT" %3d\n",
1049 br->ports[e->port]->ifaces[0]->dp_ifidx,
1050 e->vlan, ETH_ADDR_ARGS(e->mac), mac_entry_age(e));
1052 unixctl_command_reply(conn, 200, ds_cstr(&ds));
1056 /* Bridge reconfiguration functions. */
1058 static struct bridge *
1059 bridge_create(const char *name)
1064 assert(!bridge_lookup(name));
1065 br = xzalloc(sizeof *br);
1067 error = dpif_create_and_open(name, &br->dpif);
1072 dpif_flow_flush(br->dpif);
1074 error = ofproto_create(name, &bridge_ofhooks, br, &br->ofproto);
1076 VLOG_ERR("failed to create switch %s: %s", name, strerror(error));
1077 dpif_delete(br->dpif);
1078 dpif_close(br->dpif);
1083 br->name = xstrdup(name);
1084 br->ml = mac_learning_create();
1085 br->sent_config_request = false;
1086 eth_addr_random(br->default_ea);
1088 port_array_init(&br->ifaces);
1091 br->bond_next_rebalance = time_msec() + 10000;
1093 list_push_back(&all_bridges, &br->node);
1095 VLOG_INFO("created bridge %s on %s", br->name, dpif_name(br->dpif));
1101 bridge_destroy(struct bridge *br)
1106 while (br->n_ports > 0) {
1107 port_destroy(br->ports[br->n_ports - 1]);
1109 list_remove(&br->node);
1110 error = dpif_delete(br->dpif);
1111 if (error && error != ENOENT) {
1112 VLOG_ERR("failed to delete %s: %s",
1113 dpif_name(br->dpif), strerror(error));
1115 dpif_close(br->dpif);
1116 ofproto_destroy(br->ofproto);
1117 free(br->controller);
1118 mac_learning_destroy(br->ml);
1119 port_array_destroy(&br->ifaces);
1126 static struct bridge *
1127 bridge_lookup(const char *name)
1131 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
1132 if (!strcmp(br->name, name)) {
1140 bridge_exists(const char *name)
1142 return bridge_lookup(name) ? true : false;
1146 bridge_get_datapathid(const char *name)
1148 struct bridge *br = bridge_lookup(name);
1149 return br ? ofproto_get_datapath_id(br->ofproto) : 0;
1152 /* Handle requests for a listing of all flows known by the OpenFlow
1153 * stack, including those normally hidden. */
1155 bridge_unixctl_dump_flows(struct unixctl_conn *conn,
1156 const char *args, void *aux UNUSED)
1161 br = bridge_lookup(args);
1163 unixctl_command_reply(conn, 501, "Unknown bridge");
1168 ofproto_get_all_flows(br->ofproto, &results);
1170 unixctl_command_reply(conn, 200, ds_cstr(&results));
1171 ds_destroy(&results);
1175 bridge_run_one(struct bridge *br)
1179 error = ofproto_run1(br->ofproto);
1184 mac_learning_run(br->ml, ofproto_get_revalidate_set(br->ofproto));
1187 error = ofproto_run2(br->ofproto, br->flush);
1193 static const struct ovsrec_controller *
1194 bridge_get_controller(const struct ovsrec_open_vswitch *ovs_cfg,
1195 const struct bridge *br)
1197 const struct ovsrec_controller *controller;
1199 controller = (br->cfg->controller ? br->cfg->controller
1200 : ovs_cfg->controller ? ovs_cfg->controller
1203 if (controller && !strcmp(controller->target, "none")) {
1211 check_duplicate_ifaces(struct bridge *br, struct iface *iface, void *ifaces_)
1213 struct svec *ifaces = ifaces_;
1214 if (!svec_contains(ifaces, iface->name)) {
1215 svec_add(ifaces, iface->name);
1219 VLOG_ERR("bridge %s: %s interface is on multiple ports, "
1221 br->name, iface->name, iface->port->name);
1227 bridge_reconfigure_one(const struct ovsrec_open_vswitch *ovs_cfg,
1230 struct shash old_ports, new_ports;
1232 struct svec listeners, old_listeners;
1233 struct svec snoops, old_snoops;
1234 struct shash_node *node;
1238 /* Collect old ports. */
1239 shash_init(&old_ports);
1240 for (i = 0; i < br->n_ports; i++) {
1241 shash_add(&old_ports, br->ports[i]->name, br->ports[i]);
1244 /* Collect new ports. */
1245 shash_init(&new_ports);
1246 for (i = 0; i < br->cfg->n_ports; i++) {
1247 const char *name = br->cfg->ports[i]->name;
1248 if (!shash_add_once(&new_ports, name, br->cfg->ports[i])) {
1249 VLOG_WARN("bridge %s: %s specified twice as bridge port",
1253 if (bridge_get_controller(ovs_cfg, br)) {
1254 char local_name[IF_NAMESIZE];
1257 error = dpif_port_get_name(br->dpif, ODPP_LOCAL,
1258 local_name, sizeof local_name);
1260 shash_add_once(&new_ports, local_name, NULL);
1264 dpid_from_string(ovs_cfg->management_id, &mgmt_id);
1265 ofproto_set_mgmt_id(br->ofproto, mgmt_id);
1267 /* Get rid of deleted ports and add new ports. */
1268 SHASH_FOR_EACH (node, &old_ports) {
1269 if (!shash_find(&new_ports, node->name)) {
1270 port_destroy(node->data);
1273 SHASH_FOR_EACH (node, &new_ports) {
1274 struct port *port = shash_find_data(&old_ports, node->name);
1276 port = port_create(br, node->name);
1278 port_reconfigure(port, node->data);
1280 shash_destroy(&old_ports);
1281 shash_destroy(&new_ports);
1283 /* Check and delete duplicate interfaces. */
1285 iterate_and_prune_ifaces(br, check_duplicate_ifaces, &ifaces);
1286 svec_destroy(&ifaces);
1288 /* Delete all flows if we're switching from connected to standalone or vice
1289 * versa. (XXX Should we delete all flows if we are switching from one
1290 * controller to another?) */
1293 /* Configure OpenFlow management listeners. */
1294 svec_init(&listeners);
1295 cfg_get_all_strings(&listeners, "bridge.%s.openflow.listeners", br->name);
1297 svec_add_nocopy(&listeners, xasprintf("punix:%s/%s.mgmt",
1298 ovs_rundir, br->name));
1299 } else if (listeners.n == 1 && !strcmp(listeners.names[0], "none")) {
1300 svec_clear(&listeners);
1302 svec_sort_unique(&listeners);
1304 svec_init(&old_listeners);
1305 ofproto_get_listeners(br->ofproto, &old_listeners);
1306 svec_sort_unique(&old_listeners);
1308 if (!svec_equal(&listeners, &old_listeners)) {
1309 ofproto_set_listeners(br->ofproto, &listeners);
1311 svec_destroy(&listeners);
1312 svec_destroy(&old_listeners);
1314 /* Configure OpenFlow controller connection snooping. */
1316 cfg_get_all_strings(&snoops, "bridge.%s.openflow.snoops", br->name);
1318 svec_add_nocopy(&snoops, xasprintf("punix:%s/%s.snoop",
1319 ovs_rundir, br->name));
1320 } else if (snoops.n == 1 && !strcmp(snoops.names[0], "none")) {
1321 svec_clear(&snoops);
1323 svec_sort_unique(&snoops);
1325 svec_init(&old_snoops);
1326 ofproto_get_snoops(br->ofproto, &old_snoops);
1327 svec_sort_unique(&old_snoops);
1329 if (!svec_equal(&snoops, &old_snoops)) {
1330 ofproto_set_snoops(br->ofproto, &snoops);
1332 svec_destroy(&snoops);
1333 svec_destroy(&old_snoops);
1335 /* Default listener. */
1336 svec_init(&listeners);
1337 svec_add_nocopy(&listeners, xasprintf("punix:%s/%s.mgmt",
1338 ovs_rundir, br->name));
1339 svec_init(&old_listeners);
1340 ofproto_get_listeners(br->ofproto, &old_listeners);
1341 if (!svec_equal(&listeners, &old_listeners)) {
1342 ofproto_set_listeners(br->ofproto, &listeners);
1344 svec_destroy(&listeners);
1345 svec_destroy(&old_listeners);
1347 /* Default snoop. */
1349 svec_add_nocopy(&snoops, xasprintf("punix:%s/%s.snoop",
1350 ovs_rundir, br->name));
1351 svec_init(&old_snoops);
1352 ofproto_get_snoops(br->ofproto, &old_snoops);
1353 if (!svec_equal(&snoops, &old_snoops)) {
1354 ofproto_set_snoops(br->ofproto, &snoops);
1356 svec_destroy(&snoops);
1357 svec_destroy(&old_snoops);
1361 mirror_reconfigure(br);
1366 bridge_reconfigure_controller(const struct ovsrec_open_vswitch *ovs_cfg,
1369 char *pfx = xasprintf("bridge.%s.controller", br->name);
1370 const struct ovsrec_controller *c;
1372 c = bridge_get_controller(ovs_cfg, br);
1373 if ((br->controller != NULL) != (c != NULL)) {
1374 ofproto_flush_flows(br->ofproto);
1376 free(br->controller);
1377 br->controller = c ? xstrdup(c->target) : NULL;
1380 int max_backoff, probe;
1381 int rate_limit, burst_limit;
1383 if (!strcmp(c->target, "discover")) {
1384 ofproto_set_discovery(br->ofproto, true,
1385 c->discover_accept_regex,
1386 c->discover_update_resolv_conf);
1388 struct iface *local_iface;
1392 in_band = (!c->connection_mode
1393 || !strcmp(c->connection_mode, "out-of-band"));
1394 ofproto_set_discovery(br->ofproto, false, NULL, NULL);
1395 ofproto_set_in_band(br->ofproto, in_band);
1397 local_iface = bridge_get_local_iface(br);
1398 if (local_iface && c->local_ip && inet_aton(c->local_ip, &ip)) {
1399 struct netdev *netdev = local_iface->netdev;
1400 struct in_addr ip, mask, gateway;
1402 if (!c->local_netmask || !inet_aton(c->local_netmask, &mask)) {
1405 if (!c->local_gateway
1406 || !inet_aton(c->local_gateway, &gateway)) {
1410 netdev_turn_flags_on(netdev, NETDEV_UP, true);
1412 mask.s_addr = guess_netmask(ip.s_addr);
1414 if (!netdev_set_in4(netdev, ip, mask)) {
1415 VLOG_INFO("bridge %s: configured IP address "IP_FMT", "
1417 br->name, IP_ARGS(&ip.s_addr),
1418 IP_ARGS(&mask.s_addr));
1421 if (gateway.s_addr) {
1422 if (!netdev_add_router(netdev, gateway)) {
1423 VLOG_INFO("bridge %s: configured gateway "IP_FMT,
1424 br->name, IP_ARGS(&gateway.s_addr));
1430 ofproto_set_failure(br->ofproto,
1432 || !strcmp(c->fail_mode, "standalone")
1433 || !strcmp(c->fail_mode, "open")));
1435 probe = c->inactivity_probe ? *c->inactivity_probe / 1000 : 5;
1436 ofproto_set_probe_interval(br->ofproto, probe);
1438 max_backoff = c->max_backoff ? *c->max_backoff / 1000 : 8;
1439 ofproto_set_max_backoff(br->ofproto, max_backoff);
1441 rate_limit = c->controller_rate_limit ? *c->controller_rate_limit : 0;
1442 burst_limit = c->controller_burst_limit ? *c->controller_burst_limit : 0;
1443 ofproto_set_rate_limit(br->ofproto, rate_limit, burst_limit);
1445 ofproto_set_remote_execution(br->ofproto, NULL, NULL); /* XXX */
1447 union ofp_action action;
1450 /* Set up a flow that matches every packet and directs them to
1451 * OFPP_NORMAL (which goes to us). */
1452 memset(&action, 0, sizeof action);
1453 action.type = htons(OFPAT_OUTPUT);
1454 action.output.len = htons(sizeof action);
1455 action.output.port = htons(OFPP_NORMAL);
1456 memset(&flow, 0, sizeof flow);
1457 ofproto_add_flow(br->ofproto, &flow, OFPFW_ALL, 0,
1460 ofproto_set_in_band(br->ofproto, false);
1461 ofproto_set_max_backoff(br->ofproto, 1);
1462 ofproto_set_probe_interval(br->ofproto, 5);
1463 ofproto_set_failure(br->ofproto, false);
1467 ofproto_set_controller(br->ofproto, br->controller);
1471 bridge_get_all_ifaces(const struct bridge *br, struct shash *ifaces)
1476 for (i = 0; i < br->n_ports; i++) {
1477 struct port *port = br->ports[i];
1478 for (j = 0; j < port->n_ifaces; j++) {
1479 struct iface *iface = port->ifaces[j];
1480 shash_add_once(ifaces, iface->name, iface);
1482 if (port->n_ifaces > 1 && port->cfg->bond_fake_iface) {
1483 shash_add_once(ifaces, port->name, NULL);
1488 /* For robustness, in case the administrator moves around datapath ports behind
1489 * our back, we re-check all the datapath port numbers here.
1491 * This function will set the 'dp_ifidx' members of interfaces that have
1492 * disappeared to -1, so only call this function from a context where those
1493 * 'struct iface's will be removed from the bridge. Otherwise, the -1
1494 * 'dp_ifidx'es will cause trouble later when we try to send them to the
1495 * datapath, which doesn't support UINT16_MAX+1 ports. */
1497 bridge_fetch_dp_ifaces(struct bridge *br)
1499 struct odp_port *dpif_ports;
1500 size_t n_dpif_ports;
1503 /* Reset all interface numbers. */
1504 for (i = 0; i < br->n_ports; i++) {
1505 struct port *port = br->ports[i];
1506 for (j = 0; j < port->n_ifaces; j++) {
1507 struct iface *iface = port->ifaces[j];
1508 iface->dp_ifidx = -1;
1511 port_array_clear(&br->ifaces);
1513 dpif_port_list(br->dpif, &dpif_ports, &n_dpif_ports);
1514 for (i = 0; i < n_dpif_ports; i++) {
1515 struct odp_port *p = &dpif_ports[i];
1516 struct iface *iface = iface_lookup(br, p->devname);
1518 if (iface->dp_ifidx >= 0) {
1519 VLOG_WARN("%s reported interface %s twice",
1520 dpif_name(br->dpif), p->devname);
1521 } else if (iface_from_dp_ifidx(br, p->port)) {
1522 VLOG_WARN("%s reported interface %"PRIu16" twice",
1523 dpif_name(br->dpif), p->port);
1525 port_array_set(&br->ifaces, p->port, iface);
1526 iface->dp_ifidx = p->port;
1533 /* Bridge packet processing functions. */
1536 bond_hash(const uint8_t mac[ETH_ADDR_LEN])
1538 return hash_bytes(mac, ETH_ADDR_LEN, 0) & BOND_MASK;
1541 static struct bond_entry *
1542 lookup_bond_entry(const struct port *port, const uint8_t mac[ETH_ADDR_LEN])
1544 return &port->bond_hash[bond_hash(mac)];
1548 bond_choose_iface(const struct port *port)
1550 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
1551 size_t i, best_down_slave = -1;
1552 long long next_delay_expiration = LLONG_MAX;
1554 for (i = 0; i < port->n_ifaces; i++) {
1555 struct iface *iface = port->ifaces[i];
1557 if (iface->enabled) {
1559 } else if (iface->delay_expires < next_delay_expiration) {
1560 best_down_slave = i;
1561 next_delay_expiration = iface->delay_expires;
1565 if (best_down_slave != -1) {
1566 struct iface *iface = port->ifaces[best_down_slave];
1568 VLOG_INFO_RL(&rl, "interface %s: skipping remaining %lli ms updelay "
1569 "since no other interface is up", iface->name,
1570 iface->delay_expires - time_msec());
1571 bond_enable_slave(iface, true);
1574 return best_down_slave;
1578 choose_output_iface(const struct port *port, const uint8_t *dl_src,
1579 uint16_t *dp_ifidx, tag_type *tags)
1581 struct iface *iface;
1583 assert(port->n_ifaces);
1584 if (port->n_ifaces == 1) {
1585 iface = port->ifaces[0];
1587 struct bond_entry *e = lookup_bond_entry(port, dl_src);
1588 if (e->iface_idx < 0 || e->iface_idx >= port->n_ifaces
1589 || !port->ifaces[e->iface_idx]->enabled) {
1590 /* XXX select interface properly. The current interface selection
1591 * is only good for testing the rebalancing code. */
1592 e->iface_idx = bond_choose_iface(port);
1593 if (e->iface_idx < 0) {
1594 *tags |= port->no_ifaces_tag;
1597 e->iface_tag = tag_create_random();
1598 ((struct port *) port)->bond_compat_is_stale = true;
1600 *tags |= e->iface_tag;
1601 iface = port->ifaces[e->iface_idx];
1603 *dp_ifidx = iface->dp_ifidx;
1604 *tags |= iface->tag; /* Currently only used for bonding. */
1609 bond_link_status_update(struct iface *iface, bool carrier)
1611 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
1612 struct port *port = iface->port;
1614 if ((carrier == iface->enabled) == (iface->delay_expires == LLONG_MAX)) {
1615 /* Nothing to do. */
1618 VLOG_INFO_RL(&rl, "interface %s: carrier %s",
1619 iface->name, carrier ? "detected" : "dropped");
1620 if (carrier == iface->enabled) {
1621 iface->delay_expires = LLONG_MAX;
1622 VLOG_INFO_RL(&rl, "interface %s: will not be %s",
1623 iface->name, carrier ? "disabled" : "enabled");
1624 } else if (carrier && port->active_iface < 0) {
1625 bond_enable_slave(iface, true);
1626 if (port->updelay) {
1627 VLOG_INFO_RL(&rl, "interface %s: skipping %d ms updelay since no "
1628 "other interface is up", iface->name, port->updelay);
1631 int delay = carrier ? port->updelay : port->downdelay;
1632 iface->delay_expires = time_msec() + delay;
1635 "interface %s: will be %s if it stays %s for %d ms",
1637 carrier ? "enabled" : "disabled",
1638 carrier ? "up" : "down",
1645 bond_choose_active_iface(struct port *port)
1647 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
1649 port->active_iface = bond_choose_iface(port);
1650 port->active_iface_tag = tag_create_random();
1651 if (port->active_iface >= 0) {
1652 VLOG_INFO_RL(&rl, "port %s: active interface is now %s",
1653 port->name, port->ifaces[port->active_iface]->name);
1655 VLOG_WARN_RL(&rl, "port %s: all ports disabled, no active interface",
1661 bond_enable_slave(struct iface *iface, bool enable)
1663 struct port *port = iface->port;
1664 struct bridge *br = port->bridge;
1666 /* This acts as a recursion check. If the act of disabling a slave
1667 * causes a different slave to be enabled, the flag will allow us to
1668 * skip redundant work when we reenter this function. It must be
1669 * cleared on exit to keep things safe with multiple bonds. */
1670 static bool moving_active_iface = false;
1672 iface->delay_expires = LLONG_MAX;
1673 if (enable == iface->enabled) {
1677 iface->enabled = enable;
1678 if (!iface->enabled) {
1679 VLOG_WARN("interface %s: disabled", iface->name);
1680 ofproto_revalidate(br->ofproto, iface->tag);
1681 if (iface->port_ifidx == port->active_iface) {
1682 ofproto_revalidate(br->ofproto,
1683 port->active_iface_tag);
1685 /* Disabling a slave can lead to another slave being immediately
1686 * enabled if there will be no active slaves but one is waiting
1687 * on an updelay. In this case we do not need to run most of the
1688 * code for the newly enabled slave since there was no period
1689 * without an active slave and it is redundant with the disabling
1691 moving_active_iface = true;
1692 bond_choose_active_iface(port);
1694 bond_send_learning_packets(port);
1696 VLOG_WARN("interface %s: enabled", iface->name);
1697 if (port->active_iface < 0 && !moving_active_iface) {
1698 ofproto_revalidate(br->ofproto, port->no_ifaces_tag);
1699 bond_choose_active_iface(port);
1700 bond_send_learning_packets(port);
1702 iface->tag = tag_create_random();
1705 moving_active_iface = false;
1706 port->bond_compat_is_stale = true;
1710 bond_run(struct bridge *br)
1714 for (i = 0; i < br->n_ports; i++) {
1715 struct port *port = br->ports[i];
1717 if (port->n_ifaces >= 2) {
1718 for (j = 0; j < port->n_ifaces; j++) {
1719 struct iface *iface = port->ifaces[j];
1720 if (time_msec() >= iface->delay_expires) {
1721 bond_enable_slave(iface, !iface->enabled);
1726 if (port->bond_compat_is_stale) {
1727 port->bond_compat_is_stale = false;
1728 port_update_bond_compat(port);
1734 bond_wait(struct bridge *br)
1738 for (i = 0; i < br->n_ports; i++) {
1739 struct port *port = br->ports[i];
1740 if (port->n_ifaces < 2) {
1743 for (j = 0; j < port->n_ifaces; j++) {
1744 struct iface *iface = port->ifaces[j];
1745 if (iface->delay_expires != LLONG_MAX) {
1746 poll_timer_wait(iface->delay_expires - time_msec());
1753 set_dst(struct dst *p, const flow_t *flow,
1754 const struct port *in_port, const struct port *out_port,
1757 p->vlan = (out_port->vlan >= 0 ? OFP_VLAN_NONE
1758 : in_port->vlan >= 0 ? in_port->vlan
1759 : ntohs(flow->dl_vlan));
1760 return choose_output_iface(out_port, flow->dl_src, &p->dp_ifidx, tags);
1764 swap_dst(struct dst *p, struct dst *q)
1766 struct dst tmp = *p;
1771 /* Moves all the dsts with vlan == 'vlan' to the front of the 'n_dsts' in
1772 * 'dsts'. (This may help performance by reducing the number of VLAN changes
1773 * that we push to the datapath. We could in fact fully sort the array by
1774 * vlan, but in most cases there are at most two different vlan tags so that's
1775 * possibly overkill.) */
1777 partition_dsts(struct dst *dsts, size_t n_dsts, int vlan)
1779 struct dst *first = dsts;
1780 struct dst *last = dsts + n_dsts;
1782 while (first != last) {
1784 * - All dsts < first have vlan == 'vlan'.
1785 * - All dsts >= last have vlan != 'vlan'.
1786 * - first < last. */
1787 while (first->vlan == vlan) {
1788 if (++first == last) {
1793 /* Same invariants, plus one additional:
1794 * - first->vlan != vlan.
1796 while (last[-1].vlan != vlan) {
1797 if (--last == first) {
1802 /* Same invariants, plus one additional:
1803 * - last[-1].vlan == vlan.*/
1804 swap_dst(first++, --last);
1809 mirror_mask_ffs(mirror_mask_t mask)
1811 BUILD_ASSERT_DECL(sizeof(unsigned int) >= sizeof(mask));
1816 dst_is_duplicate(const struct dst *dsts, size_t n_dsts,
1817 const struct dst *test)
1820 for (i = 0; i < n_dsts; i++) {
1821 if (dsts[i].vlan == test->vlan && dsts[i].dp_ifidx == test->dp_ifidx) {
1829 port_trunks_vlan(const struct port *port, uint16_t vlan)
1831 return port->vlan < 0 && bitmap_is_set(port->trunks, vlan);
1835 port_includes_vlan(const struct port *port, uint16_t vlan)
1837 return vlan == port->vlan || port_trunks_vlan(port, vlan);
1841 compose_dsts(const struct bridge *br, const flow_t *flow, uint16_t vlan,
1842 const struct port *in_port, const struct port *out_port,
1843 struct dst dsts[], tag_type *tags, uint16_t *nf_output_iface)
1845 mirror_mask_t mirrors = in_port->src_mirrors;
1846 struct dst *dst = dsts;
1849 if (out_port == FLOOD_PORT) {
1850 /* XXX use ODP_FLOOD if no vlans or bonding. */
1851 /* XXX even better, define each VLAN as a datapath port group */
1852 for (i = 0; i < br->n_ports; i++) {
1853 struct port *port = br->ports[i];
1854 if (port != in_port && port_includes_vlan(port, vlan)
1855 && !port->is_mirror_output_port
1856 && set_dst(dst, flow, in_port, port, tags)) {
1857 mirrors |= port->dst_mirrors;
1861 *nf_output_iface = NF_OUT_FLOOD;
1862 } else if (out_port && set_dst(dst, flow, in_port, out_port, tags)) {
1863 *nf_output_iface = dst->dp_ifidx;
1864 mirrors |= out_port->dst_mirrors;
1869 struct mirror *m = br->mirrors[mirror_mask_ffs(mirrors) - 1];
1870 if (!m->n_vlans || vlan_is_mirrored(m, vlan)) {
1872 if (set_dst(dst, flow, in_port, m->out_port, tags)
1873 && !dst_is_duplicate(dsts, dst - dsts, dst)) {
1877 for (i = 0; i < br->n_ports; i++) {
1878 struct port *port = br->ports[i];
1879 if (port_includes_vlan(port, m->out_vlan)
1880 && set_dst(dst, flow, in_port, port, tags))
1884 if (port->vlan < 0) {
1885 dst->vlan = m->out_vlan;
1887 if (dst_is_duplicate(dsts, dst - dsts, dst)) {
1891 /* Use the vlan tag on the original flow instead of
1892 * the one passed in the vlan parameter. This ensures
1893 * that we compare the vlan from before any implicit
1894 * tagging tags place. This is necessary because
1895 * dst->vlan is the final vlan, after removing implicit
1897 flow_vlan = ntohs(flow->dl_vlan);
1898 if (flow_vlan == 0) {
1899 flow_vlan = OFP_VLAN_NONE;
1901 if (port == in_port && dst->vlan == flow_vlan) {
1902 /* Don't send out input port on same VLAN. */
1910 mirrors &= mirrors - 1;
1913 partition_dsts(dsts, dst - dsts, ntohs(flow->dl_vlan));
1918 print_dsts(const struct dst *dsts, size_t n)
1920 for (; n--; dsts++) {
1921 printf(">p%"PRIu16, dsts->dp_ifidx);
1922 if (dsts->vlan != OFP_VLAN_NONE) {
1923 printf("v%"PRIu16, dsts->vlan);
1929 compose_actions(struct bridge *br, const flow_t *flow, uint16_t vlan,
1930 const struct port *in_port, const struct port *out_port,
1931 tag_type *tags, struct odp_actions *actions,
1932 uint16_t *nf_output_iface)
1934 struct dst dsts[DP_MAX_PORTS * (MAX_MIRRORS + 1)];
1936 const struct dst *p;
1939 n_dsts = compose_dsts(br, flow, vlan, in_port, out_port, dsts, tags,
1942 cur_vlan = ntohs(flow->dl_vlan);
1943 for (p = dsts; p < &dsts[n_dsts]; p++) {
1944 union odp_action *a;
1945 if (p->vlan != cur_vlan) {
1946 if (p->vlan == OFP_VLAN_NONE) {
1947 odp_actions_add(actions, ODPAT_STRIP_VLAN);
1949 a = odp_actions_add(actions, ODPAT_SET_VLAN_VID);
1950 a->vlan_vid.vlan_vid = htons(p->vlan);
1954 a = odp_actions_add(actions, ODPAT_OUTPUT);
1955 a->output.port = p->dp_ifidx;
1959 /* Returns the effective vlan of a packet, taking into account both the
1960 * 802.1Q header and implicitly tagged ports. A value of 0 indicates that
1961 * the packet is untagged and -1 indicates it has an invalid header and
1962 * should be dropped. */
1963 static int flow_get_vlan(struct bridge *br, const flow_t *flow,
1964 struct port *in_port, bool have_packet)
1966 /* Note that dl_vlan of 0 and of OFP_VLAN_NONE both mean that the packet
1967 * belongs to VLAN 0, so we should treat both cases identically. (In the
1968 * former case, the packet has an 802.1Q header that specifies VLAN 0,
1969 * presumably to allow a priority to be specified. In the latter case, the
1970 * packet does not have any 802.1Q header.) */
1971 int vlan = ntohs(flow->dl_vlan);
1972 if (vlan == OFP_VLAN_NONE) {
1975 if (in_port->vlan >= 0) {
1977 /* XXX support double tagging? */
1979 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1980 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %"PRIu16" tagged "
1981 "packet received on port %s configured with "
1982 "implicit VLAN %"PRIu16,
1983 br->name, ntohs(flow->dl_vlan),
1984 in_port->name, in_port->vlan);
1988 vlan = in_port->vlan;
1990 if (!port_includes_vlan(in_port, vlan)) {
1992 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1993 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %d tagged "
1994 "packet received on port %s not configured for "
1996 br->name, vlan, in_port->name, vlan);
2006 update_learning_table(struct bridge *br, const flow_t *flow, int vlan,
2007 struct port *in_port)
2009 tag_type rev_tag = mac_learning_learn(br->ml, flow->dl_src,
2010 vlan, in_port->port_idx);
2012 /* The log messages here could actually be useful in debugging,
2013 * so keep the rate limit relatively high. */
2014 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30,
2016 VLOG_DBG_RL(&rl, "bridge %s: learned that "ETH_ADDR_FMT" is "
2017 "on port %s in VLAN %d",
2018 br->name, ETH_ADDR_ARGS(flow->dl_src),
2019 in_port->name, vlan);
2020 ofproto_revalidate(br->ofproto, rev_tag);
2025 is_bcast_arp_reply(const flow_t *flow)
2027 return (flow->dl_type == htons(ETH_TYPE_ARP)
2028 && flow->nw_proto == ARP_OP_REPLY
2029 && eth_addr_is_broadcast(flow->dl_dst));
2032 /* If the composed actions may be applied to any packet in the given 'flow',
2033 * returns true. Otherwise, the actions should only be applied to 'packet', or
2034 * not at all, if 'packet' was NULL. */
2036 process_flow(struct bridge *br, const flow_t *flow,
2037 const struct ofpbuf *packet, struct odp_actions *actions,
2038 tag_type *tags, uint16_t *nf_output_iface)
2040 struct iface *in_iface;
2041 struct port *in_port;
2042 struct port *out_port = NULL; /* By default, drop the packet/flow. */
2046 /* Find the interface and port structure for the received packet. */
2047 in_iface = iface_from_dp_ifidx(br, flow->in_port);
2049 /* No interface? Something fishy... */
2050 if (packet != NULL) {
2051 /* Odd. A few possible reasons here:
2053 * - We deleted an interface but there are still a few packets
2054 * queued up from it.
2056 * - Someone externally added an interface (e.g. with "ovs-dpctl
2057 * add-if") that we don't know about.
2059 * - Packet arrived on the local port but the local port is not
2060 * one of our bridge ports.
2062 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2064 VLOG_WARN_RL(&rl, "bridge %s: received packet on unknown "
2065 "interface %"PRIu16, br->name, flow->in_port);
2068 /* Return without adding any actions, to drop packets on this flow. */
2071 in_port = in_iface->port;
2072 vlan = flow_get_vlan(br, flow, in_port, !!packet);
2077 /* Drop frames for reserved multicast addresses. */
2078 if (eth_addr_is_reserved(flow->dl_dst)) {
2082 /* Drop frames on ports reserved for mirroring. */
2083 if (in_port->is_mirror_output_port) {
2084 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2085 VLOG_WARN_RL(&rl, "bridge %s: dropping packet received on port %s, "
2086 "which is reserved exclusively for mirroring",
2087 br->name, in_port->name);
2091 /* Packets received on bonds need special attention to avoid duplicates. */
2092 if (in_port->n_ifaces > 1) {
2095 if (eth_addr_is_multicast(flow->dl_dst)) {
2096 *tags |= in_port->active_iface_tag;
2097 if (in_port->active_iface != in_iface->port_ifidx) {
2098 /* Drop all multicast packets on inactive slaves. */
2103 /* Drop all packets for which we have learned a different input
2104 * port, because we probably sent the packet on one slave and got
2105 * it back on the other. Broadcast ARP replies are an exception
2106 * to this rule: the host has moved to another switch. */
2107 src_idx = mac_learning_lookup(br->ml, flow->dl_src, vlan);
2108 if (src_idx != -1 && src_idx != in_port->port_idx &&
2109 !is_bcast_arp_reply(flow)) {
2115 out_port = FLOOD_PORT;
2116 /* Learn source MAC (but don't try to learn from revalidation). */
2118 update_learning_table(br, flow, vlan, in_port);
2121 /* Determine output port. */
2122 out_port_idx = mac_learning_lookup_tag(br->ml, flow->dl_dst, vlan,
2124 if (out_port_idx >= 0 && out_port_idx < br->n_ports) {
2125 out_port = br->ports[out_port_idx];
2126 } else if (!packet && !eth_addr_is_multicast(flow->dl_dst)) {
2127 /* If we are revalidating but don't have a learning entry then
2128 * eject the flow. Installing a flow that floods packets opens
2129 * up a window of time where we could learn from a packet reflected
2130 * on a bond and blackhole packets before the learning table is
2131 * updated to reflect the correct port. */
2135 /* Don't send packets out their input ports. */
2136 if (in_port == out_port) {
2141 compose_actions(br, flow, vlan, in_port, out_port, tags, actions,
2147 /* Careful: 'opp' is in host byte order and opp->port_no is an OFP port
2150 bridge_port_changed_ofhook_cb(enum ofp_port_reason reason,
2151 const struct ofp_phy_port *opp,
2154 struct bridge *br = br_;
2155 struct iface *iface;
2158 iface = iface_from_dp_ifidx(br, ofp_port_to_odp_port(opp->port_no));
2164 if (reason == OFPPR_DELETE) {
2165 VLOG_WARN("bridge %s: interface %s deleted unexpectedly",
2166 br->name, iface->name);
2167 iface_destroy(iface);
2168 if (!port->n_ifaces) {
2169 VLOG_WARN("bridge %s: port %s has no interfaces, dropping",
2170 br->name, port->name);
2176 if (port->n_ifaces > 1) {
2177 bool up = !(opp->state & OFPPS_LINK_DOWN);
2178 bond_link_status_update(iface, up);
2179 port_update_bond_compat(port);
2185 bridge_normal_ofhook_cb(const flow_t *flow, const struct ofpbuf *packet,
2186 struct odp_actions *actions, tag_type *tags,
2187 uint16_t *nf_output_iface, void *br_)
2189 struct bridge *br = br_;
2191 COVERAGE_INC(bridge_process_flow);
2192 return process_flow(br, flow, packet, actions, tags, nf_output_iface);
2196 bridge_account_flow_ofhook_cb(const flow_t *flow,
2197 const union odp_action *actions,
2198 size_t n_actions, unsigned long long int n_bytes,
2201 struct bridge *br = br_;
2202 struct port *in_port;
2203 const union odp_action *a;
2205 /* Feed information from the active flows back into the learning table
2206 * to ensure that table is always in sync with what is actually flowing
2207 * through the datapath. */
2208 in_port = port_from_dp_ifidx(br, flow->in_port);
2210 int vlan = flow_get_vlan(br, flow, in_port, false);
2212 update_learning_table(br, flow, vlan, in_port);
2216 if (!br->has_bonded_ports) {
2220 for (a = actions; a < &actions[n_actions]; a++) {
2221 if (a->type == ODPAT_OUTPUT) {
2222 struct port *out_port = port_from_dp_ifidx(br, a->output.port);
2223 if (out_port && out_port->n_ifaces >= 2) {
2224 struct bond_entry *e = lookup_bond_entry(out_port,
2226 e->tx_bytes += n_bytes;
2233 bridge_account_checkpoint_ofhook_cb(void *br_)
2235 struct bridge *br = br_;
2238 if (!br->has_bonded_ports) {
2242 /* The current ofproto implementation calls this callback at least once a
2243 * second, so this timer implementation is sufficient. */
2244 if (time_msec() < br->bond_next_rebalance) {
2247 br->bond_next_rebalance = time_msec() + 10000;
2249 for (i = 0; i < br->n_ports; i++) {
2250 struct port *port = br->ports[i];
2251 if (port->n_ifaces > 1) {
2252 bond_rebalance_port(port);
2257 static struct ofhooks bridge_ofhooks = {
2258 bridge_port_changed_ofhook_cb,
2259 bridge_normal_ofhook_cb,
2260 bridge_account_flow_ofhook_cb,
2261 bridge_account_checkpoint_ofhook_cb,
2264 /* Bonding functions. */
2266 /* Statistics for a single interface on a bonded port, used for load-based
2267 * bond rebalancing. */
2268 struct slave_balance {
2269 struct iface *iface; /* The interface. */
2270 uint64_t tx_bytes; /* Sum of hashes[*]->tx_bytes. */
2272 /* All the "bond_entry"s that are assigned to this interface, in order of
2273 * increasing tx_bytes. */
2274 struct bond_entry **hashes;
2278 /* Sorts pointers to pointers to bond_entries in ascending order by the
2279 * interface to which they are assigned, and within a single interface in
2280 * ascending order of bytes transmitted. */
2282 compare_bond_entries(const void *a_, const void *b_)
2284 const struct bond_entry *const *ap = a_;
2285 const struct bond_entry *const *bp = b_;
2286 const struct bond_entry *a = *ap;
2287 const struct bond_entry *b = *bp;
2288 if (a->iface_idx != b->iface_idx) {
2289 return a->iface_idx > b->iface_idx ? 1 : -1;
2290 } else if (a->tx_bytes != b->tx_bytes) {
2291 return a->tx_bytes > b->tx_bytes ? 1 : -1;
2297 /* Sorts slave_balances so that enabled ports come first, and otherwise in
2298 * *descending* order by number of bytes transmitted. */
2300 compare_slave_balance(const void *a_, const void *b_)
2302 const struct slave_balance *a = a_;
2303 const struct slave_balance *b = b_;
2304 if (a->iface->enabled != b->iface->enabled) {
2305 return a->iface->enabled ? -1 : 1;
2306 } else if (a->tx_bytes != b->tx_bytes) {
2307 return a->tx_bytes > b->tx_bytes ? -1 : 1;
2314 swap_bals(struct slave_balance *a, struct slave_balance *b)
2316 struct slave_balance tmp = *a;
2321 /* Restores the 'n_bals' slave_balance structures in 'bals' to sorted order
2322 * given that 'p' (and only 'p') might be in the wrong location.
2324 * This function invalidates 'p', since it might now be in a different memory
2327 resort_bals(struct slave_balance *p,
2328 struct slave_balance bals[], size_t n_bals)
2331 for (; p > bals && p->tx_bytes > p[-1].tx_bytes; p--) {
2332 swap_bals(p, p - 1);
2334 for (; p < &bals[n_bals - 1] && p->tx_bytes < p[1].tx_bytes; p++) {
2335 swap_bals(p, p + 1);
2341 log_bals(const struct slave_balance *bals, size_t n_bals, struct port *port)
2343 if (VLOG_IS_DBG_ENABLED()) {
2344 struct ds ds = DS_EMPTY_INITIALIZER;
2345 const struct slave_balance *b;
2347 for (b = bals; b < bals + n_bals; b++) {
2351 ds_put_char(&ds, ',');
2353 ds_put_format(&ds, " %s %"PRIu64"kB",
2354 b->iface->name, b->tx_bytes / 1024);
2356 if (!b->iface->enabled) {
2357 ds_put_cstr(&ds, " (disabled)");
2359 if (b->n_hashes > 0) {
2360 ds_put_cstr(&ds, " (");
2361 for (i = 0; i < b->n_hashes; i++) {
2362 const struct bond_entry *e = b->hashes[i];
2364 ds_put_cstr(&ds, " + ");
2366 ds_put_format(&ds, "h%td: %"PRIu64"kB",
2367 e - port->bond_hash, e->tx_bytes / 1024);
2369 ds_put_cstr(&ds, ")");
2372 VLOG_DBG("bond %s:%s", port->name, ds_cstr(&ds));
2377 /* Shifts 'hash' from 'from' to 'to' within 'port'. */
2379 bond_shift_load(struct slave_balance *from, struct slave_balance *to,
2382 struct bond_entry *hash = from->hashes[hash_idx];
2383 struct port *port = from->iface->port;
2384 uint64_t delta = hash->tx_bytes;
2386 VLOG_INFO("bond %s: shift %"PRIu64"kB of load (with hash %td) "
2387 "from %s to %s (now carrying %"PRIu64"kB and "
2388 "%"PRIu64"kB load, respectively)",
2389 port->name, delta / 1024, hash - port->bond_hash,
2390 from->iface->name, to->iface->name,
2391 (from->tx_bytes - delta) / 1024,
2392 (to->tx_bytes + delta) / 1024);
2394 /* Delete element from from->hashes.
2396 * We don't bother to add the element to to->hashes because not only would
2397 * it require more work, the only purpose it would be to allow that hash to
2398 * be migrated to another slave in this rebalancing run, and there is no
2399 * point in doing that. */
2400 if (hash_idx == 0) {
2403 memmove(from->hashes + hash_idx, from->hashes + hash_idx + 1,
2404 (from->n_hashes - (hash_idx + 1)) * sizeof *from->hashes);
2408 /* Shift load away from 'from' to 'to'. */
2409 from->tx_bytes -= delta;
2410 to->tx_bytes += delta;
2412 /* Arrange for flows to be revalidated. */
2413 ofproto_revalidate(port->bridge->ofproto, hash->iface_tag);
2414 hash->iface_idx = to->iface->port_ifidx;
2415 hash->iface_tag = tag_create_random();
2419 bond_rebalance_port(struct port *port)
2421 struct slave_balance bals[DP_MAX_PORTS];
2423 struct bond_entry *hashes[BOND_MASK + 1];
2424 struct slave_balance *b, *from, *to;
2425 struct bond_entry *e;
2428 /* Sets up 'bals' to describe each of the port's interfaces, sorted in
2429 * descending order of tx_bytes, so that bals[0] represents the most
2430 * heavily loaded slave and bals[n_bals - 1] represents the least heavily
2433 * The code is a bit tricky: to avoid dynamically allocating a 'hashes'
2434 * array for each slave_balance structure, we sort our local array of
2435 * hashes in order by slave, so that all of the hashes for a given slave
2436 * become contiguous in memory, and then we point each 'hashes' members of
2437 * a slave_balance structure to the start of a contiguous group. */
2438 n_bals = port->n_ifaces;
2439 for (b = bals; b < &bals[n_bals]; b++) {
2440 b->iface = port->ifaces[b - bals];
2445 for (i = 0; i <= BOND_MASK; i++) {
2446 hashes[i] = &port->bond_hash[i];
2448 qsort(hashes, BOND_MASK + 1, sizeof *hashes, compare_bond_entries);
2449 for (i = 0; i <= BOND_MASK; i++) {
2451 if (e->iface_idx >= 0 && e->iface_idx < port->n_ifaces) {
2452 b = &bals[e->iface_idx];
2453 b->tx_bytes += e->tx_bytes;
2455 b->hashes = &hashes[i];
2460 qsort(bals, n_bals, sizeof *bals, compare_slave_balance);
2461 log_bals(bals, n_bals, port);
2463 /* Discard slaves that aren't enabled (which were sorted to the back of the
2464 * array earlier). */
2465 while (!bals[n_bals - 1].iface->enabled) {
2472 /* Shift load from the most-loaded slaves to the least-loaded slaves. */
2473 to = &bals[n_bals - 1];
2474 for (from = bals; from < to; ) {
2475 uint64_t overload = from->tx_bytes - to->tx_bytes;
2476 if (overload < to->tx_bytes >> 5 || overload < 100000) {
2477 /* The extra load on 'from' (and all less-loaded slaves), compared
2478 * to that of 'to' (the least-loaded slave), is less than ~3%, or
2479 * it is less than ~1Mbps. No point in rebalancing. */
2481 } else if (from->n_hashes == 1) {
2482 /* 'from' only carries a single MAC hash, so we can't shift any
2483 * load away from it, even though we want to. */
2486 /* 'from' is carrying significantly more load than 'to', and that
2487 * load is split across at least two different hashes. Pick a hash
2488 * to migrate to 'to' (the least-loaded slave), given that doing so
2489 * must decrease the ratio of the load on the two slaves by at
2492 * The sort order we use means that we prefer to shift away the
2493 * smallest hashes instead of the biggest ones. There is little
2494 * reason behind this decision; we could use the opposite sort
2495 * order to shift away big hashes ahead of small ones. */
2499 for (i = 0; i < from->n_hashes; i++) {
2500 double old_ratio, new_ratio;
2501 uint64_t delta = from->hashes[i]->tx_bytes;
2503 if (delta == 0 || from->tx_bytes - delta == 0) {
2504 /* Pointless move. */
2508 order_swapped = from->tx_bytes - delta < to->tx_bytes + delta;
2510 if (to->tx_bytes == 0) {
2511 /* Nothing on the new slave, move it. */
2515 old_ratio = (double)from->tx_bytes / to->tx_bytes;
2516 new_ratio = (double)(from->tx_bytes - delta) /
2517 (to->tx_bytes + delta);
2519 if (new_ratio == 0) {
2520 /* Should already be covered but check to prevent division
2525 if (new_ratio < 1) {
2526 new_ratio = 1 / new_ratio;
2529 if (old_ratio - new_ratio > 0.1) {
2530 /* Would decrease the ratio, move it. */
2534 if (i < from->n_hashes) {
2535 bond_shift_load(from, to, i);
2536 port->bond_compat_is_stale = true;
2538 /* If the result of the migration changed the relative order of
2539 * 'from' and 'to' swap them back to maintain invariants. */
2540 if (order_swapped) {
2541 swap_bals(from, to);
2544 /* Re-sort 'bals'. Note that this may make 'from' and 'to'
2545 * point to different slave_balance structures. It is only
2546 * valid to do these two operations in a row at all because we
2547 * know that 'from' will not move past 'to' and vice versa. */
2548 resort_bals(from, bals, n_bals);
2549 resort_bals(to, bals, n_bals);
2556 /* Implement exponentially weighted moving average. A weight of 1/2 causes
2557 * historical data to decay to <1% in 7 rebalancing runs. */
2558 for (e = &port->bond_hash[0]; e <= &port->bond_hash[BOND_MASK]; e++) {
2564 bond_send_learning_packets(struct port *port)
2566 struct bridge *br = port->bridge;
2567 struct mac_entry *e;
2568 struct ofpbuf packet;
2569 int error, n_packets, n_errors;
2571 if (!port->n_ifaces || port->active_iface < 0) {
2575 ofpbuf_init(&packet, 128);
2576 error = n_packets = n_errors = 0;
2577 LIST_FOR_EACH (e, struct mac_entry, lru_node, &br->ml->lrus) {
2578 union ofp_action actions[2], *a;
2584 if (e->port == port->port_idx
2585 || !choose_output_iface(port, e->mac, &dp_ifidx, &tags)) {
2589 /* Compose actions. */
2590 memset(actions, 0, sizeof actions);
2593 a->vlan_vid.type = htons(OFPAT_SET_VLAN_VID);
2594 a->vlan_vid.len = htons(sizeof *a);
2595 a->vlan_vid.vlan_vid = htons(e->vlan);
2598 a->output.type = htons(OFPAT_OUTPUT);
2599 a->output.len = htons(sizeof *a);
2600 a->output.port = htons(odp_port_to_ofp_port(dp_ifidx));
2605 compose_benign_packet(&packet, "Open vSwitch Bond Failover", 0xf177,
2607 flow_extract(&packet, ODPP_NONE, &flow);
2608 retval = ofproto_send_packet(br->ofproto, &flow, actions, a - actions,
2615 ofpbuf_uninit(&packet);
2618 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2619 VLOG_WARN_RL(&rl, "bond %s: %d errors sending %d gratuitous learning "
2620 "packets, last error was: %s",
2621 port->name, n_errors, n_packets, strerror(error));
2623 VLOG_DBG("bond %s: sent %d gratuitous learning packets",
2624 port->name, n_packets);
2628 /* Bonding unixctl user interface functions. */
2631 bond_unixctl_list(struct unixctl_conn *conn,
2632 const char *args UNUSED, void *aux UNUSED)
2634 struct ds ds = DS_EMPTY_INITIALIZER;
2635 const struct bridge *br;
2637 ds_put_cstr(&ds, "bridge\tbond\tslaves\n");
2639 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
2642 for (i = 0; i < br->n_ports; i++) {
2643 const struct port *port = br->ports[i];
2644 if (port->n_ifaces > 1) {
2647 ds_put_format(&ds, "%s\t%s\t", br->name, port->name);
2648 for (j = 0; j < port->n_ifaces; j++) {
2649 const struct iface *iface = port->ifaces[j];
2651 ds_put_cstr(&ds, ", ");
2653 ds_put_cstr(&ds, iface->name);
2655 ds_put_char(&ds, '\n');
2659 unixctl_command_reply(conn, 200, ds_cstr(&ds));
2663 static struct port *
2664 bond_find(const char *name)
2666 const struct bridge *br;
2668 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
2671 for (i = 0; i < br->n_ports; i++) {
2672 struct port *port = br->ports[i];
2673 if (!strcmp(port->name, name) && port->n_ifaces > 1) {
2682 bond_unixctl_show(struct unixctl_conn *conn,
2683 const char *args, void *aux UNUSED)
2685 struct ds ds = DS_EMPTY_INITIALIZER;
2686 const struct port *port;
2689 port = bond_find(args);
2691 unixctl_command_reply(conn, 501, "no such bond");
2695 ds_put_format(&ds, "updelay: %d ms\n", port->updelay);
2696 ds_put_format(&ds, "downdelay: %d ms\n", port->downdelay);
2697 ds_put_format(&ds, "next rebalance: %lld ms\n",
2698 port->bridge->bond_next_rebalance - time_msec());
2699 for (j = 0; j < port->n_ifaces; j++) {
2700 const struct iface *iface = port->ifaces[j];
2701 struct bond_entry *be;
2704 ds_put_format(&ds, "slave %s: %s\n",
2705 iface->name, iface->enabled ? "enabled" : "disabled");
2706 if (j == port->active_iface) {
2707 ds_put_cstr(&ds, "\tactive slave\n");
2709 if (iface->delay_expires != LLONG_MAX) {
2710 ds_put_format(&ds, "\t%s expires in %lld ms\n",
2711 iface->enabled ? "downdelay" : "updelay",
2712 iface->delay_expires - time_msec());
2716 for (be = port->bond_hash; be <= &port->bond_hash[BOND_MASK]; be++) {
2717 int hash = be - port->bond_hash;
2718 struct mac_entry *me;
2720 if (be->iface_idx != j) {
2724 ds_put_format(&ds, "\thash %d: %"PRIu64" kB load\n",
2725 hash, be->tx_bytes / 1024);
2728 LIST_FOR_EACH (me, struct mac_entry, lru_node,
2729 &port->bridge->ml->lrus) {
2732 if (bond_hash(me->mac) == hash
2733 && me->port != port->port_idx
2734 && choose_output_iface(port, me->mac, &dp_ifidx, &tags)
2735 && dp_ifidx == iface->dp_ifidx)
2737 ds_put_format(&ds, "\t\t"ETH_ADDR_FMT"\n",
2738 ETH_ADDR_ARGS(me->mac));
2743 unixctl_command_reply(conn, 200, ds_cstr(&ds));
2748 bond_unixctl_migrate(struct unixctl_conn *conn, const char *args_,
2751 char *args = (char *) args_;
2752 char *save_ptr = NULL;
2753 char *bond_s, *hash_s, *slave_s;
2754 uint8_t mac[ETH_ADDR_LEN];
2756 struct iface *iface;
2757 struct bond_entry *entry;
2760 bond_s = strtok_r(args, " ", &save_ptr);
2761 hash_s = strtok_r(NULL, " ", &save_ptr);
2762 slave_s = strtok_r(NULL, " ", &save_ptr);
2764 unixctl_command_reply(conn, 501,
2765 "usage: bond/migrate BOND HASH SLAVE");
2769 port = bond_find(bond_s);
2771 unixctl_command_reply(conn, 501, "no such bond");
2775 if (sscanf(hash_s, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
2776 == ETH_ADDR_SCAN_COUNT) {
2777 hash = bond_hash(mac);
2778 } else if (strspn(hash_s, "0123456789") == strlen(hash_s)) {
2779 hash = atoi(hash_s) & BOND_MASK;
2781 unixctl_command_reply(conn, 501, "bad hash");
2785 iface = port_lookup_iface(port, slave_s);
2787 unixctl_command_reply(conn, 501, "no such slave");
2791 if (!iface->enabled) {
2792 unixctl_command_reply(conn, 501, "cannot migrate to disabled slave");
2796 entry = &port->bond_hash[hash];
2797 ofproto_revalidate(port->bridge->ofproto, entry->iface_tag);
2798 entry->iface_idx = iface->port_ifidx;
2799 entry->iface_tag = tag_create_random();
2800 port->bond_compat_is_stale = true;
2801 unixctl_command_reply(conn, 200, "migrated");
2805 bond_unixctl_set_active_slave(struct unixctl_conn *conn, const char *args_,
2808 char *args = (char *) args_;
2809 char *save_ptr = NULL;
2810 char *bond_s, *slave_s;
2812 struct iface *iface;
2814 bond_s = strtok_r(args, " ", &save_ptr);
2815 slave_s = strtok_r(NULL, " ", &save_ptr);
2817 unixctl_command_reply(conn, 501,
2818 "usage: bond/set-active-slave BOND SLAVE");
2822 port = bond_find(bond_s);
2824 unixctl_command_reply(conn, 501, "no such bond");
2828 iface = port_lookup_iface(port, slave_s);
2830 unixctl_command_reply(conn, 501, "no such slave");
2834 if (!iface->enabled) {
2835 unixctl_command_reply(conn, 501, "cannot make disabled slave active");
2839 if (port->active_iface != iface->port_ifidx) {
2840 ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
2841 port->active_iface = iface->port_ifidx;
2842 port->active_iface_tag = tag_create_random();
2843 VLOG_INFO("port %s: active interface is now %s",
2844 port->name, iface->name);
2845 bond_send_learning_packets(port);
2846 unixctl_command_reply(conn, 200, "done");
2848 unixctl_command_reply(conn, 200, "no change");
2853 enable_slave(struct unixctl_conn *conn, const char *args_, bool enable)
2855 char *args = (char *) args_;
2856 char *save_ptr = NULL;
2857 char *bond_s, *slave_s;
2859 struct iface *iface;
2861 bond_s = strtok_r(args, " ", &save_ptr);
2862 slave_s = strtok_r(NULL, " ", &save_ptr);
2864 unixctl_command_reply(conn, 501,
2865 "usage: bond/enable/disable-slave BOND SLAVE");
2869 port = bond_find(bond_s);
2871 unixctl_command_reply(conn, 501, "no such bond");
2875 iface = port_lookup_iface(port, slave_s);
2877 unixctl_command_reply(conn, 501, "no such slave");
2881 bond_enable_slave(iface, enable);
2882 unixctl_command_reply(conn, 501, enable ? "enabled" : "disabled");
2886 bond_unixctl_enable_slave(struct unixctl_conn *conn, const char *args,
2889 enable_slave(conn, args, true);
2893 bond_unixctl_disable_slave(struct unixctl_conn *conn, const char *args,
2896 enable_slave(conn, args, false);
2900 bond_unixctl_hash(struct unixctl_conn *conn, const char *args,
2903 uint8_t mac[ETH_ADDR_LEN];
2907 if (sscanf(args, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
2908 == ETH_ADDR_SCAN_COUNT) {
2909 hash = bond_hash(mac);
2911 hash_cstr = xasprintf("%u", hash);
2912 unixctl_command_reply(conn, 200, hash_cstr);
2915 unixctl_command_reply(conn, 501, "invalid mac");
2922 unixctl_command_register("bond/list", bond_unixctl_list, NULL);
2923 unixctl_command_register("bond/show", bond_unixctl_show, NULL);
2924 unixctl_command_register("bond/migrate", bond_unixctl_migrate, NULL);
2925 unixctl_command_register("bond/set-active-slave",
2926 bond_unixctl_set_active_slave, NULL);
2927 unixctl_command_register("bond/enable-slave", bond_unixctl_enable_slave,
2929 unixctl_command_register("bond/disable-slave", bond_unixctl_disable_slave,
2931 unixctl_command_register("bond/hash", bond_unixctl_hash, NULL);
2934 /* Port functions. */
2936 static struct port *
2937 port_create(struct bridge *br, const char *name)
2941 port = xzalloc(sizeof *port);
2943 port->port_idx = br->n_ports;
2945 port->trunks = NULL;
2946 port->name = xstrdup(name);
2947 port->active_iface = -1;
2949 if (br->n_ports >= br->allocated_ports) {
2950 br->ports = x2nrealloc(br->ports, &br->allocated_ports,
2953 br->ports[br->n_ports++] = port;
2955 VLOG_INFO("created port %s on bridge %s", port->name, br->name);
2962 port_reconfigure(struct port *port, const struct ovsrec_port *cfg)
2964 struct shash old_ifaces, new_ifaces;
2965 struct shash_node *node;
2966 unsigned long *trunks;
2972 /* Collect old and new interfaces. */
2973 shash_init(&old_ifaces);
2974 shash_init(&new_ifaces);
2975 for (i = 0; i < port->n_ifaces; i++) {
2976 shash_add(&old_ifaces, port->ifaces[i]->name, port->ifaces[i]);
2978 for (i = 0; i < cfg->n_interfaces; i++) {
2979 const char *name = cfg->interfaces[i]->name;
2980 if (!shash_add_once(&new_ifaces, name, cfg->interfaces[i])) {
2981 VLOG_WARN("port %s: %s specified twice as port interface",
2985 port->updelay = cfg->bond_updelay;
2986 if (port->updelay < 0) {
2989 port->updelay = cfg->bond_downdelay;
2990 if (port->downdelay < 0) {
2991 port->downdelay = 0;
2994 /* Get rid of deleted interfaces and add new interfaces. */
2995 SHASH_FOR_EACH (node, &old_ifaces) {
2996 if (!shash_find(&new_ifaces, node->name)) {
2997 iface_destroy(node->data);
3000 SHASH_FOR_EACH (node, &new_ifaces) {
3001 const struct ovsrec_interface *if_cfg = node->data;
3002 const char *if_name = node->name;
3003 struct iface *iface;
3005 iface = shash_find_data(&old_ifaces, if_name);
3007 iface = iface_create(port, if_name);
3009 iface->cfg = if_cfg;
3015 if (port->n_ifaces < 2) {
3017 if (vlan >= 0 && vlan <= 4095) {
3018 VLOG_DBG("port %s: assigning VLAN tag %d", port->name, vlan);
3023 /* It's possible that bonded, VLAN-tagged ports make sense. Maybe
3024 * they even work as-is. But they have not been tested. */
3025 VLOG_WARN("port %s: VLAN tags not supported on bonded ports",
3029 if (port->vlan != vlan) {
3031 bridge_flush(port->bridge);
3034 /* Get trunked VLANs. */
3040 trunks = bitmap_allocate(4096);
3042 for (i = 0; i < cfg->n_trunks; i++) {
3043 int trunk = cfg->trunks[i];
3045 bitmap_set1(trunks, trunk);
3051 VLOG_ERR("port %s: invalid values for %zu trunk VLANs",
3052 port->name, cfg->n_trunks);
3054 if (n_errors == cfg->n_trunks) {
3056 VLOG_ERR("port %s: no valid trunks, trunking all VLANs",
3059 bitmap_set_multiple(trunks, 0, 4096, 1);
3062 if (cfg->n_trunks) {
3063 VLOG_ERR("port %s: ignoring trunks in favor of implicit vlan",
3068 ? port->trunks != NULL
3069 : port->trunks == NULL || !bitmap_equal(trunks, port->trunks, 4096)) {
3070 bridge_flush(port->bridge);
3072 bitmap_free(port->trunks);
3073 port->trunks = trunks;
3075 shash_destroy(&old_ifaces);
3076 shash_destroy(&new_ifaces);
3080 port_destroy(struct port *port)
3083 struct bridge *br = port->bridge;
3086 proc_net_compat_update_vlan(port->name, NULL, 0);
3087 proc_net_compat_update_bond(port->name, NULL);
3090 for (i = 0; i < MAX_MIRRORS; i++) {
3091 struct mirror *m = br->mirrors[i];
3092 if (m && m->out_port == port) {
3098 while (port->n_ifaces > 0) {
3099 iface_destroy(port->ifaces[port->n_ifaces - 1]);
3102 del = br->ports[port->port_idx] = br->ports[--br->n_ports];
3103 del->port_idx = port->port_idx;
3106 bitmap_free(port->trunks);
3113 static struct port *
3114 port_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
3116 struct iface *iface = iface_from_dp_ifidx(br, dp_ifidx);
3117 return iface ? iface->port : NULL;
3120 static struct port *
3121 port_lookup(const struct bridge *br, const char *name)
3125 for (i = 0; i < br->n_ports; i++) {
3126 struct port *port = br->ports[i];
3127 if (!strcmp(port->name, name)) {
3134 static struct iface *
3135 port_lookup_iface(const struct port *port, const char *name)
3139 for (j = 0; j < port->n_ifaces; j++) {
3140 struct iface *iface = port->ifaces[j];
3141 if (!strcmp(iface->name, name)) {
3149 port_update_bonding(struct port *port)
3151 if (port->n_ifaces < 2) {
3152 /* Not a bonded port. */
3153 if (port->bond_hash) {
3154 free(port->bond_hash);
3155 port->bond_hash = NULL;
3156 port->bond_compat_is_stale = true;
3157 port->bond_fake_iface = false;
3160 if (!port->bond_hash) {
3163 port->bond_hash = xcalloc(BOND_MASK + 1, sizeof *port->bond_hash);
3164 for (i = 0; i <= BOND_MASK; i++) {
3165 struct bond_entry *e = &port->bond_hash[i];
3169 port->no_ifaces_tag = tag_create_random();
3170 bond_choose_active_iface(port);
3172 port->bond_compat_is_stale = true;
3173 port->bond_fake_iface = port->cfg->bond_fake_iface;
3178 port_update_bond_compat(struct port *port)
3180 struct compat_bond_hash compat_hashes[BOND_MASK + 1];
3181 struct compat_bond bond;
3184 if (port->n_ifaces < 2) {
3185 proc_net_compat_update_bond(port->name, NULL);
3190 bond.updelay = port->updelay;
3191 bond.downdelay = port->downdelay;
3194 bond.hashes = compat_hashes;
3195 if (port->bond_hash) {
3196 const struct bond_entry *e;
3197 for (e = port->bond_hash; e <= &port->bond_hash[BOND_MASK]; e++) {
3198 if (e->iface_idx >= 0 && e->iface_idx < port->n_ifaces) {
3199 struct compat_bond_hash *cbh = &bond.hashes[bond.n_hashes++];
3200 cbh->hash = e - port->bond_hash;
3201 cbh->netdev_name = port->ifaces[e->iface_idx]->name;
3206 bond.n_slaves = port->n_ifaces;
3207 bond.slaves = xmalloc(port->n_ifaces * sizeof *bond.slaves);
3208 for (i = 0; i < port->n_ifaces; i++) {
3209 struct iface *iface = port->ifaces[i];
3210 struct compat_bond_slave *slave = &bond.slaves[i];
3211 slave->name = iface->name;
3213 /* We need to make the same determination as the Linux bonding
3214 * code to determine whether a slave should be consider "up".
3215 * The Linux function bond_miimon_inspect() supports four
3216 * BOND_LINK_* states:
3218 * - BOND_LINK_UP: carrier detected, updelay has passed.
3219 * - BOND_LINK_FAIL: carrier lost, downdelay in progress.
3220 * - BOND_LINK_DOWN: carrier lost, downdelay has passed.
3221 * - BOND_LINK_BACK: carrier detected, updelay in progress.
3223 * The function bond_info_show_slave() only considers BOND_LINK_UP
3224 * to be "up" and anything else to be "down".
3226 slave->up = iface->enabled && iface->delay_expires == LLONG_MAX;
3230 netdev_get_etheraddr(iface->netdev, slave->mac);
3233 if (port->bond_fake_iface) {
3234 struct netdev *bond_netdev;
3236 if (!netdev_open(port->name, NETDEV_ETH_TYPE_NONE, &bond_netdev)) {
3238 netdev_turn_flags_on(bond_netdev, NETDEV_UP, true);
3240 netdev_turn_flags_off(bond_netdev, NETDEV_UP, true);
3242 netdev_close(bond_netdev);
3246 proc_net_compat_update_bond(port->name, &bond);
3251 port_update_vlan_compat(struct port *port)
3253 struct bridge *br = port->bridge;
3254 char *vlandev_name = NULL;
3256 if (port->vlan > 0) {
3257 /* Figure out the name that the VLAN device should actually have, if it
3258 * existed. This takes some work because the VLAN device would not
3259 * have port->name in its name; rather, it would have the trunk port's
3260 * name, and 'port' would be attached to a bridge that also had the
3261 * VLAN device one of its ports. So we need to find a trunk port that
3262 * includes port->vlan.
3264 * There might be more than one candidate. This doesn't happen on
3265 * XenServer, so if it happens we just pick the first choice in
3266 * alphabetical order instead of creating multiple VLAN devices. */
3268 for (i = 0; i < br->n_ports; i++) {
3269 struct port *p = br->ports[i];
3270 if (port_trunks_vlan(p, port->vlan)
3272 && (!vlandev_name || strcmp(p->name, vlandev_name) <= 0))
3274 uint8_t ea[ETH_ADDR_LEN];
3275 netdev_get_etheraddr(p->ifaces[0]->netdev, ea);
3276 if (!eth_addr_is_multicast(ea) &&
3277 !eth_addr_is_reserved(ea) &&
3278 !eth_addr_is_zero(ea)) {
3279 vlandev_name = p->name;
3284 proc_net_compat_update_vlan(port->name, vlandev_name, port->vlan);
3287 /* Interface functions. */
3289 static struct iface *
3290 iface_create(struct port *port, const char *name)
3292 struct iface *iface;
3294 iface = xzalloc(sizeof *iface);
3296 iface->port_ifidx = port->n_ifaces;
3297 iface->name = xstrdup(name);
3298 iface->dp_ifidx = -1;
3299 iface->tag = tag_create_random();
3300 iface->delay_expires = LLONG_MAX;
3301 iface->netdev = NULL;
3303 if (port->n_ifaces >= port->allocated_ifaces) {
3304 port->ifaces = x2nrealloc(port->ifaces, &port->allocated_ifaces,
3305 sizeof *port->ifaces);
3307 port->ifaces[port->n_ifaces++] = iface;
3308 if (port->n_ifaces > 1) {
3309 port->bridge->has_bonded_ports = true;
3312 VLOG_DBG("attached network device %s to port %s", iface->name, port->name);
3314 bridge_flush(port->bridge);
3320 iface_destroy(struct iface *iface)
3323 struct port *port = iface->port;
3324 struct bridge *br = port->bridge;
3325 bool del_active = port->active_iface == iface->port_ifidx;
3328 if (iface->dp_ifidx >= 0) {
3329 port_array_set(&br->ifaces, iface->dp_ifidx, NULL);
3332 del = port->ifaces[iface->port_ifidx] = port->ifaces[--port->n_ifaces];
3333 del->port_ifidx = iface->port_ifidx;
3335 netdev_close(iface->netdev);
3340 ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
3341 bond_choose_active_iface(port);
3342 bond_send_learning_packets(port);
3345 bridge_flush(port->bridge);
3349 static struct iface *
3350 iface_lookup(const struct bridge *br, const char *name)
3354 for (i = 0; i < br->n_ports; i++) {
3355 struct port *port = br->ports[i];
3356 for (j = 0; j < port->n_ifaces; j++) {
3357 struct iface *iface = port->ifaces[j];
3358 if (!strcmp(iface->name, name)) {
3366 static struct iface *
3367 iface_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
3369 return port_array_get(&br->ifaces, dp_ifidx);
3372 /* Returns true if 'iface' is the name of an "internal" interface on bridge
3373 * 'br', that is, an interface that is entirely simulated within the datapath.
3374 * The local port (ODPP_LOCAL) is always an internal interface. Other local
3375 * interfaces are created by setting "iface.<iface>.internal = true".
3377 * In addition, we have a kluge-y feature that creates an internal port with
3378 * the name of a bonded port if "bonding.<bondname>.fake-iface = true" is set.
3379 * This feature needs to go away in the long term. Until then, this is one
3380 * reason why this function takes a name instead of a struct iface: the fake
3381 * interfaces created this way do not have a struct iface. */
3383 iface_is_internal(const struct bridge *br, const char *if_name)
3385 /* XXX wastes time */
3386 struct iface *iface;
3389 if (!strcmp(if_name, br->name)) {
3393 iface = iface_lookup(br, if_name);
3394 if (iface && !strcmp(iface->cfg->type, "internal")) {
3398 port = port_lookup(br, if_name);
3399 if (port->n_ifaces > 1 && port->cfg->bond_fake_iface) {
3405 /* Set Ethernet address of 'iface', if one is specified in the configuration
3408 iface_set_mac(struct iface *iface)
3410 uint8_t ea[ETH_ADDR_LEN];
3412 if (iface->cfg->mac && eth_addr_from_string(iface->cfg->mac, ea)) {
3413 if (eth_addr_is_multicast(ea)) {
3414 VLOG_ERR("interface %s: cannot set MAC to multicast address",
3416 } else if (iface->dp_ifidx == ODPP_LOCAL) {
3417 VLOG_ERR("ignoring iface.%s.mac; use bridge.%s.mac instead",
3418 iface->name, iface->name);
3420 int error = netdev_set_etheraddr(iface->netdev, ea);
3422 VLOG_ERR("interface %s: setting MAC failed (%s)",
3423 iface->name, strerror(error));
3429 /* Port mirroring. */
3433 mirror_reconfigure(struct bridge *br UNUSED)
3435 struct svec old_mirrors, new_mirrors;
3436 size_t i, n_rspan_vlans;
3437 unsigned long *rspan_vlans;
3439 /* Collect old and new mirrors. */
3440 svec_init(&old_mirrors);
3441 svec_init(&new_mirrors);
3442 cfg_get_subsections(&new_mirrors, "mirror.%s", br->name);
3443 for (i = 0; i < MAX_MIRRORS; i++) {
3444 if (br->mirrors[i]) {
3445 svec_add(&old_mirrors, br->mirrors[i]->name);
3449 /* Get rid of deleted mirrors and add new mirrors. */
3450 svec_sort(&old_mirrors);
3451 assert(svec_is_unique(&old_mirrors));
3452 svec_sort(&new_mirrors);
3453 assert(svec_is_unique(&new_mirrors));
3454 for (i = 0; i < MAX_MIRRORS; i++) {
3455 struct mirror *m = br->mirrors[i];
3456 if (m && !svec_contains(&new_mirrors, m->name)) {
3460 for (i = 0; i < new_mirrors.n; i++) {
3461 const char *name = new_mirrors.names[i];
3462 if (!svec_contains(&old_mirrors, name)) {
3463 mirror_create(br, name);
3466 svec_destroy(&old_mirrors);
3467 svec_destroy(&new_mirrors);
3469 /* Reconfigure all mirrors. */
3470 for (i = 0; i < MAX_MIRRORS; i++) {
3471 if (br->mirrors[i]) {
3472 mirror_reconfigure_one(br->mirrors[i]);
3476 /* Update port reserved status. */
3477 for (i = 0; i < br->n_ports; i++) {
3478 br->ports[i]->is_mirror_output_port = false;
3480 for (i = 0; i < MAX_MIRRORS; i++) {
3481 struct mirror *m = br->mirrors[i];
3482 if (m && m->out_port) {
3483 m->out_port->is_mirror_output_port = true;
3487 /* Update learning disabled vlans (for RSPAN). */
3489 n_rspan_vlans = cfg_count("vlan.%s.disable-learning", br->name);
3490 if (n_rspan_vlans) {
3491 rspan_vlans = bitmap_allocate(4096);
3493 for (i = 0; i < n_rspan_vlans; i++) {
3494 int vlan = cfg_get_vlan(i, "vlan.%s.disable-learning", br->name);
3496 bitmap_set1(rspan_vlans, vlan);
3497 VLOG_INFO("bridge %s: disabling learning on vlan %d\n",
3500 VLOG_ERR("bridge %s: invalid value '%s' for learning disabled "
3502 cfg_get_string(i, "vlan.%s.disable-learning", br->name));
3506 if (mac_learning_set_disabled_vlans(br->ml, rspan_vlans)) {
3512 mirror_create(struct bridge *br, const char *name)
3517 for (i = 0; ; i++) {
3518 if (i >= MAX_MIRRORS) {
3519 VLOG_WARN("bridge %s: maximum of %d port mirrors reached, "
3520 "cannot create %s", br->name, MAX_MIRRORS, name);
3523 if (!br->mirrors[i]) {
3528 VLOG_INFO("created port mirror %s on bridge %s", name, br->name);
3531 br->mirrors[i] = m = xzalloc(sizeof *m);
3534 m->name = xstrdup(name);
3535 svec_init(&m->src_ports);
3536 svec_init(&m->dst_ports);
3544 mirror_destroy(struct mirror *m)
3547 struct bridge *br = m->bridge;
3550 for (i = 0; i < br->n_ports; i++) {
3551 br->ports[i]->src_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
3552 br->ports[i]->dst_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
3555 svec_destroy(&m->src_ports);
3556 svec_destroy(&m->dst_ports);
3559 m->bridge->mirrors[m->idx] = NULL;
3567 prune_ports(struct mirror *m, struct svec *ports)
3572 svec_sort_unique(ports);
3575 for (i = 0; i < ports->n; i++) {
3576 const char *name = ports->names[i];
3577 if (port_lookup(m->bridge, name)) {
3578 svec_add(&tmp, name);
3580 VLOG_WARN("mirror.%s.%s: cannot match on nonexistent port %s",
3581 m->bridge->name, m->name, name);
3584 svec_swap(ports, &tmp);
3589 prune_vlans(struct mirror *m, struct svec *vlan_strings, int **vlans)
3593 /* This isn't perfect: it won't combine "0" and "00", and the textual sort
3594 * order won't give us numeric sort order. But that's good enough for what
3595 * we need right now. */
3596 svec_sort_unique(vlan_strings);
3598 *vlans = xmalloc(sizeof *vlans * vlan_strings->n);
3600 for (i = 0; i < vlan_strings->n; i++) {
3601 const char *name = vlan_strings->names[i];
3603 if (!str_to_int(name, 10, &vlan) || vlan < 0 || vlan > 4095) {
3604 VLOG_WARN("mirror.%s.%s.select.vlan: ignoring invalid VLAN %s",
3605 m->bridge->name, m->name, name);
3607 (*vlans)[n_vlans++] = vlan;
3614 vlan_is_mirrored(const struct mirror *m, int vlan)
3618 for (i = 0; i < m->n_vlans; i++) {
3619 if (m->vlans[i] == vlan) {
3627 port_trunks_any_mirrored_vlan(const struct mirror *m, const struct port *p)
3631 for (i = 0; i < m->n_vlans; i++) {
3632 if (port_trunks_vlan(p, m->vlans[i])) {
3640 mirror_reconfigure_one(struct mirror *m UNUSED)
3642 char *pfx = xasprintf("mirror.%s.%s", m->bridge->name, m->name);
3643 struct svec src_ports, dst_ports, ports;
3644 struct svec vlan_strings;
3645 mirror_mask_t mirror_bit;
3646 const char *out_port_name;
3647 struct port *out_port;
3652 bool mirror_all_ports;
3653 bool any_ports_specified;
3655 /* Get output port. */
3656 out_port_name = cfg_get_key(0, "mirror.%s.%s.output.port",
3657 m->bridge->name, m->name);
3658 if (out_port_name) {
3659 out_port = port_lookup(m->bridge, out_port_name);
3661 VLOG_ERR("%s.output.port: bridge %s does not have a port "
3662 "named %s", pfx, m->bridge->name, out_port_name);
3669 if (cfg_has("%s.output.vlan", pfx)) {
3670 VLOG_ERR("%s.output.port and %s.output.vlan both specified; "
3671 "ignoring %s.output.vlan", pfx, pfx, pfx);
3673 } else if (cfg_has("%s.output.vlan", pfx)) {
3675 out_vlan = cfg_get_vlan(0, "%s.output.vlan", pfx);
3677 VLOG_ERR("%s: neither %s.output.port nor %s.output.vlan specified, "
3678 "but exactly one is required; disabling port mirror %s",
3679 pfx, pfx, pfx, pfx);
3685 /* Get all the ports, and drop duplicates and ports that don't exist. */
3686 svec_init(&src_ports);
3687 svec_init(&dst_ports);
3689 cfg_get_all_keys(&src_ports, "%s.select.src-port", pfx);
3690 cfg_get_all_keys(&dst_ports, "%s.select.dst-port", pfx);
3691 cfg_get_all_keys(&ports, "%s.select.port", pfx);
3692 any_ports_specified = src_ports.n || dst_ports.n || ports.n;
3693 svec_append(&src_ports, &ports);
3694 svec_append(&dst_ports, &ports);
3695 svec_destroy(&ports);
3696 prune_ports(m, &src_ports);
3697 prune_ports(m, &dst_ports);
3698 if (any_ports_specified && !src_ports.n && !dst_ports.n) {
3699 VLOG_ERR("%s: none of the specified ports exist; "
3700 "disabling port mirror %s", pfx, pfx);
3705 /* Get all the vlans, and drop duplicate and invalid vlans. */
3706 svec_init(&vlan_strings);
3707 cfg_get_all_keys(&vlan_strings, "%s.select.vlan", pfx);
3708 n_vlans = prune_vlans(m, &vlan_strings, &vlans);
3709 svec_destroy(&vlan_strings);
3711 /* Update mirror data. */
3712 if (!svec_equal(&m->src_ports, &src_ports)
3713 || !svec_equal(&m->dst_ports, &dst_ports)
3714 || m->n_vlans != n_vlans
3715 || memcmp(m->vlans, vlans, sizeof *vlans * n_vlans)
3716 || m->out_port != out_port
3717 || m->out_vlan != out_vlan) {
3718 bridge_flush(m->bridge);
3720 svec_swap(&m->src_ports, &src_ports);
3721 svec_swap(&m->dst_ports, &dst_ports);
3724 m->n_vlans = n_vlans;
3725 m->out_port = out_port;
3726 m->out_vlan = out_vlan;
3728 /* If no selection criteria have been given, mirror for all ports. */
3729 mirror_all_ports = (!m->src_ports.n) && (!m->dst_ports.n) && (!m->n_vlans);
3732 mirror_bit = MIRROR_MASK_C(1) << m->idx;
3733 for (i = 0; i < m->bridge->n_ports; i++) {
3734 struct port *port = m->bridge->ports[i];
3736 if (mirror_all_ports
3737 || svec_contains(&m->src_ports, port->name)
3740 ? port_trunks_any_mirrored_vlan(m, port)
3741 : vlan_is_mirrored(m, port->vlan)))) {
3742 port->src_mirrors |= mirror_bit;
3744 port->src_mirrors &= ~mirror_bit;
3747 if (mirror_all_ports || svec_contains(&m->dst_ports, port->name)) {
3748 port->dst_mirrors |= mirror_bit;
3750 port->dst_mirrors &= ~mirror_bit;
3756 svec_destroy(&src_ports);
3757 svec_destroy(&dst_ports);