1 /* Copyright (c) 2008, 2009, 2010, 2011 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.
18 #include "byte-order.h"
21 #include <arpa/inet.h>
24 #include <sys/socket.h>
26 #include <openflow/openflow.h>
31 #include <sys/socket.h>
32 #include <sys/types.h>
36 #include "classifier.h"
41 #include "dynamic-string.h"
47 #include "mac-learning.h"
51 #include "ofp-print.h"
53 #include "ofproto/netflow.h"
54 #include "ofproto/ofproto.h"
55 #include "ovsdb-data.h"
57 #include "poll-loop.h"
61 #include "socket-util.h"
62 #include "stream-ssl.h"
64 #include "system-stats.h"
69 #include "vswitchd/vswitch-idl.h"
70 #include "xenserver.h"
72 #include "sflow_api.h"
74 VLOG_DEFINE_THIS_MODULE(bridge);
76 COVERAGE_DEFINE(bridge_flush);
77 COVERAGE_DEFINE(bridge_process_flow);
78 COVERAGE_DEFINE(bridge_process_cfm);
79 COVERAGE_DEFINE(bridge_process_lacp);
80 COVERAGE_DEFINE(bridge_reconfigure);
81 COVERAGE_DEFINE(bridge_lacp_update);
89 struct dst builtin[32];
94 static void dst_set_init(struct dst_set *);
95 static void dst_set_add(struct dst_set *, const struct dst *);
96 static void dst_set_free(struct dst_set *);
99 LACP_CURRENT = 0x01, /* Current State. */
100 LACP_EXPIRED = 0x02, /* Expired State. */
101 LACP_DEFAULTED = 0x04, /* Partner is defaulted. */
102 LACP_ATTACHED = 0x08, /* Attached. Interface may be choosen for flows. */
106 /* These members are always valid. */
107 struct port *port; /* Containing port. */
108 size_t port_ifidx; /* Index within containing port. */
109 char *name; /* Host network device name. */
110 tag_type tag; /* Tag associated with this interface. */
111 long long delay_expires; /* Time after which 'enabled' may change. */
113 /* These members are valid only after bridge_reconfigure() causes them to
115 struct hmap_node dp_ifidx_node; /* In struct bridge's "ifaces" hmap. */
116 int dp_ifidx; /* Index within kernel datapath. */
117 struct netdev *netdev; /* Network device. */
118 bool enabled; /* May be chosen for flows? */
119 bool up; /* Is the interface up? */
120 const char *type; /* Usually same as cfg->type. */
121 struct cfm *cfm; /* Connectivity Fault Management */
122 const struct ovsrec_interface *cfg;
124 /* LACP information. */
125 enum lacp_status lacp_status; /* LACP status. */
126 uint16_t lacp_priority; /* LACP port priority. */
127 struct lacp_info lacp_actor; /* LACP actor information. */
128 struct lacp_info lacp_partner; /* LACP partner information. */
129 long long int lacp_tx; /* Next LACP message transmission time. */
130 long long int lacp_rx; /* Next LACP message receive time. */
133 #define BOND_MASK 0xff
135 int iface_idx; /* Index of assigned iface, or -1 if none. */
136 uint64_t tx_bytes; /* Count of bytes recently transmitted. */
137 tag_type iface_tag; /* Tag associated with iface_idx. */
141 BM_TCP, /* Transport Layer Load Balance. */
142 BM_SLB, /* Source Load Balance. */
143 BM_AB /* Active Backup. */
146 #define MAX_MIRRORS 32
147 typedef uint32_t mirror_mask_t;
148 #define MIRROR_MASK_C(X) UINT32_C(X)
149 BUILD_ASSERT_DECL(sizeof(mirror_mask_t) * CHAR_BIT >= MAX_MIRRORS);
151 struct bridge *bridge;
154 struct uuid uuid; /* UUID of this "mirror" record in database. */
156 /* Selection criteria. */
157 struct shash src_ports; /* Name is port name; data is always NULL. */
158 struct shash dst_ports; /* Name is port name; data is always NULL. */
163 struct port *out_port;
167 /* Flags for a port's lacp member. */
168 #define LACP_ACTIVE 0x01 /* LACP is in active mode. */
169 #define LACP_PASSIVE 0x02 /* LACP is in passive mode. */
170 #define LACP_NEGOTIATED 0x04 /* LACP has successfully negotiated. */
172 #define FLOOD_PORT ((struct port *) 1) /* The 'flood' output port. */
174 struct bridge *bridge;
176 int vlan; /* -1=trunk port, else a 12-bit VLAN ID. */
177 unsigned long *trunks; /* Bitmap of trunked VLANs, if 'vlan' == -1.
178 * NULL if all VLANs are trunked. */
179 const struct ovsrec_port *cfg;
182 /* An ordinary bridge port has 1 interface.
183 * A bridge port for bonding has at least 2 interfaces. */
184 struct iface **ifaces;
185 size_t n_ifaces, allocated_ifaces;
188 enum bond_mode bond_mode; /* Type of the bond. BM_SLB is the default. */
189 int active_iface; /* Ifidx on which bcasts accepted, or -1. */
190 tag_type active_iface_tag; /* Tag for bcast flows. */
191 tag_type no_ifaces_tag; /* Tag for flows when all ifaces disabled. */
192 int updelay, downdelay; /* Delay before iface goes up/down, in ms. */
193 bool bond_fake_iface; /* Fake a bond interface for legacy compat? */
194 bool miimon; /* Use miimon instead of carrier? */
195 long long int bond_miimon_interval; /* Miimon status refresh interval. */
196 long long int bond_miimon_next_update; /* Time of next miimon update. */
197 long long int bond_next_fake_iface_update; /* Time of next update. */
198 struct netdev_monitor *monitor; /* Tracks carrier up/down status. */
200 /* LACP information. */
201 int lacp; /* LACP status flags. 0 if LACP is off. */
202 uint16_t lacp_key; /* LACP aggregation key. */
203 uint16_t lacp_priority; /* LACP system priority. */
204 bool lacp_need_update; /* Need to update attached interfaces? */
206 /* SLB specific bonding info. */
207 struct bond_entry *bond_hash; /* An array of (BOND_MASK + 1) elements. */
208 int bond_rebalance_interval; /* Interval between rebalances, in ms. */
209 long long int bond_next_rebalance; /* Next rebalancing time. */
211 /* Port mirroring info. */
212 mirror_mask_t src_mirrors; /* Mirrors triggered when packet received. */
213 mirror_mask_t dst_mirrors; /* Mirrors triggered when packet sent. */
214 bool is_mirror_output_port; /* Does port mirroring send frames here? */
218 struct list node; /* Node in global list of bridges. */
219 char *name; /* User-specified arbitrary name. */
220 struct mac_learning *ml; /* MAC learning table. */
221 uint8_t ea[ETH_ADDR_LEN]; /* Bridge Ethernet Address. */
222 uint8_t default_ea[ETH_ADDR_LEN]; /* Default MAC. */
223 const struct ovsrec_bridge *cfg;
225 /* OpenFlow switch processing. */
226 struct ofproto *ofproto; /* OpenFlow switch. */
228 /* Kernel datapath information. */
229 struct dpif *dpif; /* Datapath. */
230 struct hmap ifaces; /* Contains "struct iface"s. */
234 size_t n_ports, allocated_ports;
235 struct shash iface_by_name; /* "struct iface"s indexed by name. */
236 struct shash port_by_name; /* "struct port"s indexed by name. */
239 bool has_bonded_ports;
244 /* Port mirroring. */
245 struct mirror *mirrors[MAX_MIRRORS];
248 /* List of all bridges. */
249 static struct list all_bridges = LIST_INITIALIZER(&all_bridges);
251 /* OVSDB IDL used to obtain configuration. */
252 static struct ovsdb_idl *idl;
254 /* Each time this timer expires, the bridge fetches systems and interface
255 * statistics and pushes them into the database. */
256 #define STATS_INTERVAL (5 * 1000) /* In milliseconds. */
257 static long long int stats_timer = LLONG_MIN;
259 static struct bridge *bridge_create(const struct ovsrec_bridge *br_cfg);
260 static void bridge_destroy(struct bridge *);
261 static struct bridge *bridge_lookup(const char *name);
262 static unixctl_cb_func bridge_unixctl_dump_flows;
263 static unixctl_cb_func bridge_unixctl_reconnect;
264 static int bridge_run_one(struct bridge *);
265 static size_t bridge_get_controllers(const struct bridge *br,
266 struct ovsrec_controller ***controllersp);
267 static void bridge_reconfigure_one(struct bridge *);
268 static void bridge_reconfigure_remotes(struct bridge *,
269 const struct sockaddr_in *managers,
271 static void bridge_get_all_ifaces(const struct bridge *, struct shash *ifaces);
272 static void bridge_fetch_dp_ifaces(struct bridge *);
273 static void bridge_flush(struct bridge *);
274 static void bridge_pick_local_hw_addr(struct bridge *,
275 uint8_t ea[ETH_ADDR_LEN],
276 struct iface **hw_addr_iface);
277 static uint64_t bridge_pick_datapath_id(struct bridge *,
278 const uint8_t bridge_ea[ETH_ADDR_LEN],
279 struct iface *hw_addr_iface);
280 static struct iface *bridge_get_local_iface(struct bridge *);
281 static uint64_t dpid_from_hash(const void *, size_t nbytes);
283 static unixctl_cb_func bridge_unixctl_fdb_show;
285 static void lacp_run(struct bridge *);
286 static void lacp_wait(struct bridge *);
287 static void lacp_process_packet(const struct ofpbuf *, struct iface *);
289 static void bond_init(void);
290 static void bond_run(struct bridge *);
291 static void bond_wait(struct bridge *);
292 static void bond_rebalance_port(struct port *);
293 static void bond_send_learning_packets(struct port *);
294 static void bond_enable_slave(struct iface *iface, bool enable);
296 static struct port *port_create(struct bridge *, const char *name);
297 static void port_reconfigure(struct port *, const struct ovsrec_port *);
298 static void port_del_ifaces(struct port *, const struct ovsrec_port *);
299 static void port_destroy(struct port *);
300 static struct port *port_lookup(const struct bridge *, const char *name);
301 static struct iface *port_lookup_iface(const struct port *, const char *name);
302 static struct port *port_from_dp_ifidx(const struct bridge *,
304 static void port_update_bonding(struct port *);
305 static void port_update_lacp(struct port *);
307 static void mirror_create(struct bridge *, struct ovsrec_mirror *);
308 static void mirror_destroy(struct mirror *);
309 static void mirror_reconfigure(struct bridge *);
310 static void mirror_reconfigure_one(struct mirror *, struct ovsrec_mirror *);
311 static bool vlan_is_mirrored(const struct mirror *, int vlan);
313 static struct iface *iface_create(struct port *port,
314 const struct ovsrec_interface *if_cfg);
315 static void iface_destroy(struct iface *);
316 static struct iface *iface_lookup(const struct bridge *, const char *name);
317 static struct iface *iface_from_dp_ifidx(const struct bridge *,
319 static void iface_set_mac(struct iface *);
320 static void iface_set_ofport(const struct ovsrec_interface *, int64_t ofport);
321 static void iface_update_qos(struct iface *, const struct ovsrec_qos *);
322 static void iface_update_cfm(struct iface *);
323 static void iface_refresh_cfm_stats(struct iface *iface);
324 static void iface_send_packet(struct iface *, struct ofpbuf *packet);
325 static uint8_t iface_get_lacp_state(const struct iface *);
326 static void iface_get_lacp_priority(struct iface *, struct lacp_info *);
327 static void iface_set_lacp_defaulted(struct iface *);
328 static void iface_set_lacp_expired(struct iface *);
330 static void shash_from_ovs_idl_map(char **keys, char **values, size_t n,
332 static void shash_to_ovs_idl_map(struct shash *,
333 char ***keys, char ***values, size_t *n);
336 /* Hooks into ofproto processing. */
337 static struct ofhooks bridge_ofhooks;
339 /* Public functions. */
341 /* Initializes the bridge module, configuring it to obtain its configuration
342 * from an OVSDB server accessed over 'remote', which should be a string in a
343 * form acceptable to ovsdb_idl_create(). */
345 bridge_init(const char *remote)
347 /* Create connection to database. */
348 idl = ovsdb_idl_create(remote, &ovsrec_idl_class, true);
350 ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_cur_cfg);
351 ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_statistics);
352 ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_external_ids);
354 ovsdb_idl_omit(idl, &ovsrec_bridge_col_external_ids);
356 ovsdb_idl_omit(idl, &ovsrec_port_col_external_ids);
357 ovsdb_idl_omit(idl, &ovsrec_port_col_fake_bridge);
359 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_ofport);
360 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_statistics);
361 ovsdb_idl_omit(idl, &ovsrec_interface_col_external_ids);
363 /* Register unixctl commands. */
364 unixctl_command_register("fdb/show", bridge_unixctl_fdb_show, NULL);
365 unixctl_command_register("bridge/dump-flows", bridge_unixctl_dump_flows,
367 unixctl_command_register("bridge/reconnect", bridge_unixctl_reconnect,
375 struct bridge *br, *next_br;
377 LIST_FOR_EACH_SAFE (br, next_br, node, &all_bridges) {
380 ovsdb_idl_destroy(idl);
383 /* Performs configuration that is only necessary once at ovs-vswitchd startup,
384 * but for which the ovs-vswitchd configuration 'cfg' is required. */
386 bridge_configure_once(const struct ovsrec_open_vswitch *cfg)
388 static bool already_configured_once;
389 struct svec bridge_names;
390 struct svec dpif_names, dpif_types;
393 /* Only do this once per ovs-vswitchd run. */
394 if (already_configured_once) {
397 already_configured_once = true;
399 stats_timer = time_msec() + STATS_INTERVAL;
401 /* Get all the configured bridges' names from 'cfg' into 'bridge_names'. */
402 svec_init(&bridge_names);
403 for (i = 0; i < cfg->n_bridges; i++) {
404 svec_add(&bridge_names, cfg->bridges[i]->name);
406 svec_sort(&bridge_names);
408 /* Iterate over all system dpifs and delete any of them that do not appear
410 svec_init(&dpif_names);
411 svec_init(&dpif_types);
412 dp_enumerate_types(&dpif_types);
413 for (i = 0; i < dpif_types.n; i++) {
416 dp_enumerate_names(dpif_types.names[i], &dpif_names);
418 /* Delete each dpif whose name is not in 'bridge_names'. */
419 for (j = 0; j < dpif_names.n; j++) {
420 if (!svec_contains(&bridge_names, dpif_names.names[j])) {
424 retval = dpif_open(dpif_names.names[j], dpif_types.names[i],
433 svec_destroy(&bridge_names);
434 svec_destroy(&dpif_names);
435 svec_destroy(&dpif_types);
438 /* Callback for iterate_and_prune_ifaces(). */
440 check_iface(struct bridge *br, struct iface *iface, void *aux OVS_UNUSED)
442 if (!iface->netdev) {
443 /* We already reported a related error, don't bother duplicating it. */
447 if (iface->dp_ifidx < 0) {
448 VLOG_ERR("%s interface not in %s, dropping",
449 iface->name, dpif_name(br->dpif));
453 VLOG_DBG("%s has interface %s on port %d", dpif_name(br->dpif),
454 iface->name, iface->dp_ifidx);
458 /* Callback for iterate_and_prune_ifaces(). */
460 set_iface_properties(struct bridge *br OVS_UNUSED, struct iface *iface,
461 void *aux OVS_UNUSED)
463 /* Set policing attributes. */
464 netdev_set_policing(iface->netdev,
465 iface->cfg->ingress_policing_rate,
466 iface->cfg->ingress_policing_burst);
468 /* Set MAC address of internal interfaces other than the local
470 if (iface->dp_ifidx != ODPP_LOCAL && !strcmp(iface->type, "internal")) {
471 iface_set_mac(iface);
477 /* Calls 'cb' for each interfaces in 'br', passing along the 'aux' argument.
478 * Deletes from 'br' all the interfaces for which 'cb' returns false, and then
479 * deletes from 'br' any ports that no longer have any interfaces. */
481 iterate_and_prune_ifaces(struct bridge *br,
482 bool (*cb)(struct bridge *, struct iface *,
488 for (i = 0; i < br->n_ports; ) {
489 struct port *port = br->ports[i];
490 for (j = 0; j < port->n_ifaces; ) {
491 struct iface *iface = port->ifaces[j];
492 if (cb(br, iface, aux)) {
495 iface_set_ofport(iface->cfg, -1);
496 iface_destroy(iface);
500 if (port->n_ifaces) {
503 VLOG_ERR("%s port has no interfaces, dropping", port->name);
509 /* Looks at the list of managers in 'ovs_cfg' and extracts their remote IP
510 * addresses and ports into '*managersp' and '*n_managersp'. The caller is
511 * responsible for freeing '*managersp' (with free()).
513 * You may be asking yourself "why does ovs-vswitchd care?", because
514 * ovsdb-server is responsible for connecting to the managers, and ovs-vswitchd
515 * should not be and in fact is not directly involved in that. But
516 * ovs-vswitchd needs to make sure that ovsdb-server can reach the managers, so
517 * it has to tell in-band control where the managers are to enable that.
518 * (Thus, only managers connected in-band are collected.)
521 collect_in_band_managers(const struct ovsrec_open_vswitch *ovs_cfg,
522 struct sockaddr_in **managersp, size_t *n_managersp)
524 struct sockaddr_in *managers = NULL;
525 size_t n_managers = 0;
526 struct shash targets;
529 /* Collect all of the potential targets from the "targets" columns of the
530 * rows pointed to by "manager_options", excluding any that are
532 shash_init(&targets);
533 for (i = 0; i < ovs_cfg->n_manager_options; i++) {
534 struct ovsrec_manager *m = ovs_cfg->manager_options[i];
536 if (m->connection_mode && !strcmp(m->connection_mode, "out-of-band")) {
537 shash_find_and_delete(&targets, m->target);
539 shash_add_once(&targets, m->target, NULL);
543 /* Now extract the targets' IP addresses. */
544 if (!shash_is_empty(&targets)) {
545 struct shash_node *node;
547 managers = xmalloc(shash_count(&targets) * sizeof *managers);
548 SHASH_FOR_EACH (node, &targets) {
549 const char *target = node->name;
550 struct sockaddr_in *sin = &managers[n_managers];
552 if ((!strncmp(target, "tcp:", 4)
553 && inet_parse_active(target + 4, JSONRPC_TCP_PORT, sin)) ||
554 (!strncmp(target, "ssl:", 4)
555 && inet_parse_active(target + 4, JSONRPC_SSL_PORT, sin))) {
560 shash_destroy(&targets);
562 *managersp = managers;
563 *n_managersp = n_managers;
567 bridge_reconfigure(const struct ovsrec_open_vswitch *ovs_cfg)
569 struct shash old_br, new_br;
570 struct shash_node *node;
571 struct bridge *br, *next;
572 struct sockaddr_in *managers;
575 int sflow_bridge_number;
577 COVERAGE_INC(bridge_reconfigure);
579 collect_in_band_managers(ovs_cfg, &managers, &n_managers);
581 /* Collect old and new bridges. */
584 LIST_FOR_EACH (br, node, &all_bridges) {
585 shash_add(&old_br, br->name, br);
587 for (i = 0; i < ovs_cfg->n_bridges; i++) {
588 const struct ovsrec_bridge *br_cfg = ovs_cfg->bridges[i];
589 if (!shash_add_once(&new_br, br_cfg->name, br_cfg)) {
590 VLOG_WARN("more than one bridge named %s", br_cfg->name);
594 /* Get rid of deleted bridges and add new bridges. */
595 LIST_FOR_EACH_SAFE (br, next, node, &all_bridges) {
596 struct ovsrec_bridge *br_cfg = shash_find_data(&new_br, br->name);
603 SHASH_FOR_EACH (node, &new_br) {
604 const char *br_name = node->name;
605 const struct ovsrec_bridge *br_cfg = node->data;
606 br = shash_find_data(&old_br, br_name);
608 /* If the bridge datapath type has changed, we need to tear it
609 * down and recreate. */
610 if (strcmp(br->cfg->datapath_type, br_cfg->datapath_type)) {
612 bridge_create(br_cfg);
615 bridge_create(br_cfg);
618 shash_destroy(&old_br);
619 shash_destroy(&new_br);
621 /* Reconfigure all bridges. */
622 LIST_FOR_EACH (br, node, &all_bridges) {
623 bridge_reconfigure_one(br);
626 /* Add and delete ports on all datapaths.
628 * The kernel will reject any attempt to add a given port to a datapath if
629 * that port already belongs to a different datapath, so we must do all
630 * port deletions before any port additions. */
631 LIST_FOR_EACH (br, node, &all_bridges) {
632 struct dpif_port_dump dump;
633 struct shash want_ifaces;
634 struct dpif_port dpif_port;
636 bridge_get_all_ifaces(br, &want_ifaces);
637 DPIF_PORT_FOR_EACH (&dpif_port, &dump, br->dpif) {
638 if (!shash_find(&want_ifaces, dpif_port.name)
639 && strcmp(dpif_port.name, br->name)) {
640 int retval = dpif_port_del(br->dpif, dpif_port.port_no);
642 VLOG_ERR("failed to remove %s interface from %s: %s",
643 dpif_port.name, dpif_name(br->dpif),
648 shash_destroy(&want_ifaces);
650 LIST_FOR_EACH (br, node, &all_bridges) {
651 struct shash cur_ifaces, want_ifaces;
652 struct dpif_port_dump dump;
653 struct dpif_port dpif_port;
655 /* Get the set of interfaces currently in this datapath. */
656 shash_init(&cur_ifaces);
657 DPIF_PORT_FOR_EACH (&dpif_port, &dump, br->dpif) {
658 struct dpif_port *port_info = xmalloc(sizeof *port_info);
659 dpif_port_clone(port_info, &dpif_port);
660 shash_add(&cur_ifaces, dpif_port.name, port_info);
663 /* Get the set of interfaces we want on this datapath. */
664 bridge_get_all_ifaces(br, &want_ifaces);
666 hmap_clear(&br->ifaces);
667 SHASH_FOR_EACH (node, &want_ifaces) {
668 const char *if_name = node->name;
669 struct iface *iface = node->data;
670 struct dpif_port *dpif_port;
674 type = iface ? iface->type : "internal";
675 dpif_port = shash_find_data(&cur_ifaces, if_name);
677 /* If we have a port or a netdev already, and it's not the type we
678 * want, then delete the port (if any) and close the netdev (if
680 if ((dpif_port && strcmp(dpif_port->type, type))
681 || (iface && iface->netdev
682 && strcmp(type, netdev_get_type(iface->netdev)))) {
684 error = ofproto_port_del(br->ofproto, dpif_port->port_no);
691 netdev_close(iface->netdev);
692 iface->netdev = NULL;
696 /* If the port doesn't exist or we don't have the netdev open,
697 * we need to do more work. */
698 if (!dpif_port || (iface && !iface->netdev)) {
699 struct netdev_options options;
700 struct netdev *netdev;
703 /* First open the network device. */
704 options.name = if_name;
706 options.args = &args;
707 options.ethertype = NETDEV_ETH_TYPE_NONE;
711 shash_from_ovs_idl_map(iface->cfg->key_options,
712 iface->cfg->value_options,
713 iface->cfg->n_options, &args);
715 error = netdev_open(&options, &netdev);
716 shash_destroy(&args);
719 VLOG_WARN("could not open network device %s (%s)",
720 if_name, strerror(error));
724 /* Then add the port if we haven't already. */
726 error = dpif_port_add(br->dpif, netdev, NULL);
728 netdev_close(netdev);
729 if (error == EFBIG) {
730 VLOG_ERR("ran out of valid port numbers on %s",
731 dpif_name(br->dpif));
734 VLOG_ERR("failed to add %s interface to %s: %s",
735 if_name, dpif_name(br->dpif),
742 /* Update 'iface'. */
744 iface->netdev = netdev;
745 iface->enabled = netdev_get_carrier(iface->netdev);
746 iface->up = iface->enabled;
748 } else if (iface && iface->netdev) {
752 shash_from_ovs_idl_map(iface->cfg->key_options,
753 iface->cfg->value_options,
754 iface->cfg->n_options, &args);
755 netdev_set_config(iface->netdev, &args);
756 shash_destroy(&args);
759 shash_destroy(&want_ifaces);
761 SHASH_FOR_EACH (node, &cur_ifaces) {
762 struct dpif_port *port_info = node->data;
763 dpif_port_destroy(port_info);
766 shash_destroy(&cur_ifaces);
768 sflow_bridge_number = 0;
769 LIST_FOR_EACH (br, node, &all_bridges) {
772 struct iface *local_iface;
773 struct iface *hw_addr_iface;
776 bridge_fetch_dp_ifaces(br);
778 iterate_and_prune_ifaces(br, check_iface, NULL);
780 /* Pick local port hardware address, datapath ID. */
781 bridge_pick_local_hw_addr(br, ea, &hw_addr_iface);
782 local_iface = bridge_get_local_iface(br);
784 int error = netdev_set_etheraddr(local_iface->netdev, ea);
786 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
787 VLOG_ERR_RL(&rl, "bridge %s: failed to set bridge "
788 "Ethernet address: %s",
789 br->name, strerror(error));
792 memcpy(br->ea, ea, ETH_ADDR_LEN);
794 dpid = bridge_pick_datapath_id(br, ea, hw_addr_iface);
795 ofproto_set_datapath_id(br->ofproto, dpid);
797 dpid_string = xasprintf("%016"PRIx64, dpid);
798 ovsrec_bridge_set_datapath_id(br->cfg, dpid_string);
801 /* Set NetFlow configuration on this bridge. */
802 if (br->cfg->netflow) {
803 struct ovsrec_netflow *nf_cfg = br->cfg->netflow;
804 struct netflow_options opts;
806 memset(&opts, 0, sizeof opts);
808 dpif_get_netflow_ids(br->dpif, &opts.engine_type, &opts.engine_id);
809 if (nf_cfg->engine_type) {
810 opts.engine_type = *nf_cfg->engine_type;
812 if (nf_cfg->engine_id) {
813 opts.engine_id = *nf_cfg->engine_id;
816 opts.active_timeout = nf_cfg->active_timeout;
817 if (!opts.active_timeout) {
818 opts.active_timeout = -1;
819 } else if (opts.active_timeout < 0) {
820 VLOG_WARN("bridge %s: active timeout interval set to negative "
821 "value, using default instead (%d seconds)", br->name,
822 NF_ACTIVE_TIMEOUT_DEFAULT);
823 opts.active_timeout = -1;
826 opts.add_id_to_iface = nf_cfg->add_id_to_interface;
827 if (opts.add_id_to_iface) {
828 if (opts.engine_id > 0x7f) {
829 VLOG_WARN("bridge %s: netflow port mangling may conflict "
830 "with another vswitch, choose an engine id less "
831 "than 128", br->name);
833 if (br->n_ports > 508) {
834 VLOG_WARN("bridge %s: netflow port mangling will conflict "
835 "with another port when more than 508 ports are "
840 opts.collectors.n = nf_cfg->n_targets;
841 opts.collectors.names = nf_cfg->targets;
842 if (ofproto_set_netflow(br->ofproto, &opts)) {
843 VLOG_ERR("bridge %s: problem setting netflow collectors",
847 ofproto_set_netflow(br->ofproto, NULL);
850 /* Set sFlow configuration on this bridge. */
851 if (br->cfg->sflow) {
852 const struct ovsrec_sflow *sflow_cfg = br->cfg->sflow;
853 struct ovsrec_controller **controllers;
854 struct ofproto_sflow_options oso;
855 size_t n_controllers;
857 memset(&oso, 0, sizeof oso);
859 oso.targets.n = sflow_cfg->n_targets;
860 oso.targets.names = sflow_cfg->targets;
862 oso.sampling_rate = SFL_DEFAULT_SAMPLING_RATE;
863 if (sflow_cfg->sampling) {
864 oso.sampling_rate = *sflow_cfg->sampling;
867 oso.polling_interval = SFL_DEFAULT_POLLING_INTERVAL;
868 if (sflow_cfg->polling) {
869 oso.polling_interval = *sflow_cfg->polling;
872 oso.header_len = SFL_DEFAULT_HEADER_SIZE;
873 if (sflow_cfg->header) {
874 oso.header_len = *sflow_cfg->header;
877 oso.sub_id = sflow_bridge_number++;
878 oso.agent_device = sflow_cfg->agent;
880 oso.control_ip = NULL;
881 n_controllers = bridge_get_controllers(br, &controllers);
882 for (i = 0; i < n_controllers; i++) {
883 if (controllers[i]->local_ip) {
884 oso.control_ip = controllers[i]->local_ip;
888 ofproto_set_sflow(br->ofproto, &oso);
890 /* Do not destroy oso.targets because it is owned by sflow_cfg. */
892 ofproto_set_sflow(br->ofproto, NULL);
895 /* Update the controller and related settings. It would be more
896 * straightforward to call this from bridge_reconfigure_one(), but we
897 * can't do it there for two reasons. First, and most importantly, at
898 * that point we don't know the dp_ifidx of any interfaces that have
899 * been added to the bridge (because we haven't actually added them to
900 * the datapath). Second, at that point we haven't set the datapath ID
901 * yet; when a controller is configured, resetting the datapath ID will
902 * immediately disconnect from the controller, so it's better to set
903 * the datapath ID before the controller. */
904 bridge_reconfigure_remotes(br, managers, n_managers);
906 LIST_FOR_EACH (br, node, &all_bridges) {
907 for (i = 0; i < br->n_ports; i++) {
908 struct port *port = br->ports[i];
911 port_update_bonding(port);
912 port_update_lacp(port);
914 for (j = 0; j < port->n_ifaces; j++) {
915 iface_update_qos(port->ifaces[j], port->cfg->qos);
919 LIST_FOR_EACH (br, node, &all_bridges) {
920 iterate_and_prune_ifaces(br, set_iface_properties, NULL);
923 LIST_FOR_EACH (br, node, &all_bridges) {
925 HMAP_FOR_EACH (iface, dp_ifidx_node, &br->ifaces) {
926 iface_update_cfm(iface);
932 /* ovs-vswitchd has completed initialization, so allow the process that
933 * forked us to exit successfully. */
934 daemonize_complete();
938 get_ovsrec_key_value(const struct ovsdb_idl_row *row,
939 const struct ovsdb_idl_column *column,
942 const struct ovsdb_datum *datum;
943 union ovsdb_atom atom;
946 datum = ovsdb_idl_get(row, column, OVSDB_TYPE_STRING, OVSDB_TYPE_STRING);
947 atom.string = (char *) key;
948 idx = ovsdb_datum_find_key(datum, &atom, OVSDB_TYPE_STRING);
949 return idx == UINT_MAX ? NULL : datum->values[idx].string;
953 bridge_get_other_config(const struct ovsrec_bridge *br_cfg, const char *key)
955 return get_ovsrec_key_value(&br_cfg->header_,
956 &ovsrec_bridge_col_other_config, key);
960 bridge_pick_local_hw_addr(struct bridge *br, uint8_t ea[ETH_ADDR_LEN],
961 struct iface **hw_addr_iface)
967 *hw_addr_iface = NULL;
969 /* Did the user request a particular MAC? */
970 hwaddr = bridge_get_other_config(br->cfg, "hwaddr");
971 if (hwaddr && eth_addr_from_string(hwaddr, ea)) {
972 if (eth_addr_is_multicast(ea)) {
973 VLOG_ERR("bridge %s: cannot set MAC address to multicast "
974 "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
975 } else if (eth_addr_is_zero(ea)) {
976 VLOG_ERR("bridge %s: cannot set MAC address to zero", br->name);
982 /* Otherwise choose the minimum non-local MAC address among all of the
984 memset(ea, 0xff, ETH_ADDR_LEN);
985 for (i = 0; i < br->n_ports; i++) {
986 struct port *port = br->ports[i];
987 uint8_t iface_ea[ETH_ADDR_LEN];
990 /* Mirror output ports don't participate. */
991 if (port->is_mirror_output_port) {
995 /* Choose the MAC address to represent the port. */
996 if (port->cfg->mac && eth_addr_from_string(port->cfg->mac, iface_ea)) {
997 /* Find the interface with this Ethernet address (if any) so that
998 * we can provide the correct devname to the caller. */
1000 for (j = 0; j < port->n_ifaces; j++) {
1001 struct iface *candidate = port->ifaces[j];
1002 uint8_t candidate_ea[ETH_ADDR_LEN];
1003 if (!netdev_get_etheraddr(candidate->netdev, candidate_ea)
1004 && eth_addr_equals(iface_ea, candidate_ea)) {
1009 /* Choose the interface whose MAC address will represent the port.
1010 * The Linux kernel bonding code always chooses the MAC address of
1011 * the first slave added to a bond, and the Fedora networking
1012 * scripts always add slaves to a bond in alphabetical order, so
1013 * for compatibility we choose the interface with the name that is
1014 * first in alphabetical order. */
1015 iface = port->ifaces[0];
1016 for (j = 1; j < port->n_ifaces; j++) {
1017 struct iface *candidate = port->ifaces[j];
1018 if (strcmp(candidate->name, iface->name) < 0) {
1023 /* The local port doesn't count (since we're trying to choose its
1024 * MAC address anyway). */
1025 if (iface->dp_ifidx == ODPP_LOCAL) {
1030 error = netdev_get_etheraddr(iface->netdev, iface_ea);
1032 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1033 VLOG_ERR_RL(&rl, "failed to obtain Ethernet address of %s: %s",
1034 iface->name, strerror(error));
1039 /* Compare against our current choice. */
1040 if (!eth_addr_is_multicast(iface_ea) &&
1041 !eth_addr_is_local(iface_ea) &&
1042 !eth_addr_is_reserved(iface_ea) &&
1043 !eth_addr_is_zero(iface_ea) &&
1044 eth_addr_compare_3way(iface_ea, ea) < 0)
1046 memcpy(ea, iface_ea, ETH_ADDR_LEN);
1047 *hw_addr_iface = iface;
1050 if (eth_addr_is_multicast(ea)) {
1051 memcpy(ea, br->default_ea, ETH_ADDR_LEN);
1052 *hw_addr_iface = NULL;
1053 VLOG_WARN("bridge %s: using default bridge Ethernet "
1054 "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
1056 VLOG_DBG("bridge %s: using bridge Ethernet address "ETH_ADDR_FMT,
1057 br->name, ETH_ADDR_ARGS(ea));
1061 /* Choose and returns the datapath ID for bridge 'br' given that the bridge
1062 * Ethernet address is 'bridge_ea'. If 'bridge_ea' is the Ethernet address of
1063 * an interface on 'br', then that interface must be passed in as
1064 * 'hw_addr_iface'; if 'bridge_ea' was derived some other way, then
1065 * 'hw_addr_iface' must be passed in as a null pointer. */
1067 bridge_pick_datapath_id(struct bridge *br,
1068 const uint8_t bridge_ea[ETH_ADDR_LEN],
1069 struct iface *hw_addr_iface)
1072 * The procedure for choosing a bridge MAC address will, in the most
1073 * ordinary case, also choose a unique MAC that we can use as a datapath
1074 * ID. In some special cases, though, multiple bridges will end up with
1075 * the same MAC address. This is OK for the bridges, but it will confuse
1076 * the OpenFlow controller, because each datapath needs a unique datapath
1079 * Datapath IDs must be unique. It is also very desirable that they be
1080 * stable from one run to the next, so that policy set on a datapath
1083 const char *datapath_id;
1086 datapath_id = bridge_get_other_config(br->cfg, "datapath-id");
1087 if (datapath_id && dpid_from_string(datapath_id, &dpid)) {
1091 if (hw_addr_iface) {
1093 if (!netdev_get_vlan_vid(hw_addr_iface->netdev, &vlan)) {
1095 * A bridge whose MAC address is taken from a VLAN network device
1096 * (that is, a network device created with vconfig(8) or similar
1097 * tool) will have the same MAC address as a bridge on the VLAN
1098 * device's physical network device.
1100 * Handle this case by hashing the physical network device MAC
1101 * along with the VLAN identifier.
1103 uint8_t buf[ETH_ADDR_LEN + 2];
1104 memcpy(buf, bridge_ea, ETH_ADDR_LEN);
1105 buf[ETH_ADDR_LEN] = vlan >> 8;
1106 buf[ETH_ADDR_LEN + 1] = vlan;
1107 return dpid_from_hash(buf, sizeof buf);
1110 * Assume that this bridge's MAC address is unique, since it
1111 * doesn't fit any of the cases we handle specially.
1116 * A purely internal bridge, that is, one that has no non-virtual
1117 * network devices on it at all, is more difficult because it has no
1118 * natural unique identifier at all.
1120 * When the host is a XenServer, we handle this case by hashing the
1121 * host's UUID with the name of the bridge. Names of bridges are
1122 * persistent across XenServer reboots, although they can be reused if
1123 * an internal network is destroyed and then a new one is later
1124 * created, so this is fairly effective.
1126 * When the host is not a XenServer, we punt by using a random MAC
1127 * address on each run.
1129 const char *host_uuid = xenserver_get_host_uuid();
1131 char *combined = xasprintf("%s,%s", host_uuid, br->name);
1132 dpid = dpid_from_hash(combined, strlen(combined));
1138 return eth_addr_to_uint64(bridge_ea);
1142 dpid_from_hash(const void *data, size_t n)
1144 uint8_t hash[SHA1_DIGEST_SIZE];
1146 BUILD_ASSERT_DECL(sizeof hash >= ETH_ADDR_LEN);
1147 sha1_bytes(data, n, hash);
1148 eth_addr_mark_random(hash);
1149 return eth_addr_to_uint64(hash);
1153 iface_refresh_status(struct iface *iface)
1157 enum netdev_flags flags;
1166 if (!netdev_get_status(iface->netdev, &sh)) {
1168 char **keys, **values;
1170 shash_to_ovs_idl_map(&sh, &keys, &values, &n);
1171 ovsrec_interface_set_status(iface->cfg, keys, values, n);
1176 ovsrec_interface_set_status(iface->cfg, NULL, NULL, 0);
1179 shash_destroy_free_data(&sh);
1181 error = netdev_get_flags(iface->netdev, &flags);
1183 ovsrec_interface_set_admin_state(iface->cfg, flags & NETDEV_UP ? "up" : "down");
1186 ovsrec_interface_set_admin_state(iface->cfg, NULL);
1189 error = netdev_get_features(iface->netdev, ¤t, NULL, NULL, NULL);
1191 ovsrec_interface_set_duplex(iface->cfg,
1192 netdev_features_is_full_duplex(current)
1194 /* warning: uint64_t -> int64_t conversion */
1195 bps = netdev_features_to_bps(current);
1196 ovsrec_interface_set_link_speed(iface->cfg, &bps, 1);
1199 ovsrec_interface_set_duplex(iface->cfg, NULL);
1200 ovsrec_interface_set_link_speed(iface->cfg, NULL, 0);
1204 ovsrec_interface_set_link_state(iface->cfg,
1205 netdev_get_carrier(iface->netdev)
1208 error = netdev_get_mtu(iface->netdev, &mtu);
1209 if (!error && mtu != INT_MAX) {
1211 ovsrec_interface_set_mtu(iface->cfg, &mtu_64, 1);
1214 ovsrec_interface_set_mtu(iface->cfg, NULL, 0);
1219 iface_refresh_cfm_stats(struct iface *iface)
1223 const struct ovsrec_monitor *mon;
1225 mon = iface->cfg->monitor;
1232 for (i = 0; i < mon->n_remote_mps; i++) {
1233 const struct ovsrec_maintenance_point *mp;
1234 const struct remote_mp *rmp;
1236 mp = mon->remote_mps[i];
1237 rmp = cfm_get_remote_mp(cfm, mp->mpid);
1239 ovsrec_maintenance_point_set_fault(mp, &rmp->fault, 1);
1242 if (hmap_is_empty(&cfm->x_remote_mps)) {
1243 ovsrec_monitor_set_unexpected_remote_mpids(mon, NULL, 0);
1246 struct remote_mp *rmp;
1247 int64_t *x_remote_mps;
1249 length = hmap_count(&cfm->x_remote_mps);
1250 x_remote_mps = xzalloc(length * sizeof *x_remote_mps);
1253 HMAP_FOR_EACH (rmp, node, &cfm->x_remote_mps) {
1254 x_remote_mps[i++] = rmp->mpid;
1257 ovsrec_monitor_set_unexpected_remote_mpids(mon, x_remote_mps, length);
1261 if (hmap_is_empty(&cfm->x_remote_maids)) {
1262 ovsrec_monitor_set_unexpected_remote_maids(mon, NULL, 0);
1265 char **x_remote_maids;
1266 struct remote_maid *rmaid;
1268 length = hmap_count(&cfm->x_remote_maids);
1269 x_remote_maids = xzalloc(length * sizeof *x_remote_maids);
1272 HMAP_FOR_EACH (rmaid, node, &cfm->x_remote_maids) {
1275 x_remote_maids[i] = xzalloc(CCM_MAID_LEN * 2 + 1);
1277 for (j = 0; j < CCM_MAID_LEN; j++) {
1278 snprintf(&x_remote_maids[i][j * 2], 3, "%02hhx",
1283 ovsrec_monitor_set_unexpected_remote_maids(mon, x_remote_maids, length);
1285 for (i = 0; i < length; i++) {
1286 free(x_remote_maids[i]);
1288 free(x_remote_maids);
1291 ovsrec_monitor_set_fault(mon, &cfm->fault, 1);
1295 iface_refresh_stats(struct iface *iface)
1301 static const struct iface_stat iface_stats[] = {
1302 { "rx_packets", offsetof(struct netdev_stats, rx_packets) },
1303 { "tx_packets", offsetof(struct netdev_stats, tx_packets) },
1304 { "rx_bytes", offsetof(struct netdev_stats, rx_bytes) },
1305 { "tx_bytes", offsetof(struct netdev_stats, tx_bytes) },
1306 { "rx_dropped", offsetof(struct netdev_stats, rx_dropped) },
1307 { "tx_dropped", offsetof(struct netdev_stats, tx_dropped) },
1308 { "rx_errors", offsetof(struct netdev_stats, rx_errors) },
1309 { "tx_errors", offsetof(struct netdev_stats, tx_errors) },
1310 { "rx_frame_err", offsetof(struct netdev_stats, rx_frame_errors) },
1311 { "rx_over_err", offsetof(struct netdev_stats, rx_over_errors) },
1312 { "rx_crc_err", offsetof(struct netdev_stats, rx_crc_errors) },
1313 { "collisions", offsetof(struct netdev_stats, collisions) },
1315 enum { N_STATS = ARRAY_SIZE(iface_stats) };
1316 const struct iface_stat *s;
1318 char *keys[N_STATS];
1319 int64_t values[N_STATS];
1322 struct netdev_stats stats;
1324 /* Intentionally ignore return value, since errors will set 'stats' to
1325 * all-1s, and we will deal with that correctly below. */
1326 netdev_get_stats(iface->netdev, &stats);
1329 for (s = iface_stats; s < &iface_stats[N_STATS]; s++) {
1330 uint64_t value = *(uint64_t *) (((char *) &stats) + s->offset);
1331 if (value != UINT64_MAX) {
1338 ovsrec_interface_set_statistics(iface->cfg, keys, values, n);
1342 refresh_system_stats(const struct ovsrec_open_vswitch *cfg)
1344 struct ovsdb_datum datum;
1348 get_system_stats(&stats);
1350 ovsdb_datum_from_shash(&datum, &stats);
1351 ovsdb_idl_txn_write(&cfg->header_, &ovsrec_open_vswitch_col_statistics,
1355 static inline const char *
1356 nx_role_to_str(enum nx_role role)
1361 case NX_ROLE_MASTER:
1366 return "*** INVALID ROLE ***";
1371 bridge_refresh_controller_status(const struct bridge *br)
1374 const struct ovsrec_controller *cfg;
1376 ofproto_get_ofproto_controller_info(br->ofproto, &info);
1378 OVSREC_CONTROLLER_FOR_EACH(cfg, idl) {
1379 struct ofproto_controller_info *cinfo =
1380 shash_find_data(&info, cfg->target);
1383 ovsrec_controller_set_is_connected(cfg, cinfo->is_connected);
1384 ovsrec_controller_set_role(cfg, nx_role_to_str(cinfo->role));
1385 ovsrec_controller_set_status(cfg, (char **) cinfo->pairs.keys,
1386 (char **) cinfo->pairs.values,
1389 ovsrec_controller_set_is_connected(cfg, false);
1390 ovsrec_controller_set_role(cfg, NULL);
1391 ovsrec_controller_set_status(cfg, NULL, NULL, 0);
1395 ofproto_free_ofproto_controller_info(&info);
1401 const struct ovsrec_open_vswitch *cfg;
1403 bool datapath_destroyed;
1404 bool database_changed;
1407 /* Let each bridge do the work that it needs to do. */
1408 datapath_destroyed = false;
1409 LIST_FOR_EACH (br, node, &all_bridges) {
1410 int error = bridge_run_one(br);
1412 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1413 VLOG_ERR_RL(&rl, "bridge %s: datapath was destroyed externally, "
1414 "forcing reconfiguration", br->name);
1415 datapath_destroyed = true;
1419 /* (Re)configure if necessary. */
1420 database_changed = ovsdb_idl_run(idl);
1421 cfg = ovsrec_open_vswitch_first(idl);
1423 /* Re-configure SSL. We do this on every trip through the main loop,
1424 * instead of just when the database changes, because the contents of the
1425 * key and certificate files can change without the database changing.
1427 * We do this before bridge_reconfigure() because that function might
1428 * initiate SSL connections and thus requires SSL to be configured. */
1429 if (cfg && cfg->ssl) {
1430 const struct ovsrec_ssl *ssl = cfg->ssl;
1432 stream_ssl_set_key_and_cert(ssl->private_key, ssl->certificate);
1433 stream_ssl_set_ca_cert_file(ssl->ca_cert, ssl->bootstrap_ca_cert);
1436 if (database_changed || datapath_destroyed) {
1438 struct ovsdb_idl_txn *txn = ovsdb_idl_txn_create(idl);
1440 bridge_configure_once(cfg);
1441 bridge_reconfigure(cfg);
1443 ovsrec_open_vswitch_set_cur_cfg(cfg, cfg->next_cfg);
1444 ovsdb_idl_txn_commit(txn);
1445 ovsdb_idl_txn_destroy(txn); /* XXX */
1447 /* We still need to reconfigure to avoid dangling pointers to
1448 * now-destroyed ovsrec structures inside bridge data. */
1449 static const struct ovsrec_open_vswitch null_cfg;
1451 bridge_reconfigure(&null_cfg);
1455 /* Refresh system and interface stats if necessary. */
1456 if (time_msec() >= stats_timer) {
1458 struct ovsdb_idl_txn *txn;
1460 txn = ovsdb_idl_txn_create(idl);
1461 LIST_FOR_EACH (br, node, &all_bridges) {
1464 for (i = 0; i < br->n_ports; i++) {
1465 struct port *port = br->ports[i];
1468 for (j = 0; j < port->n_ifaces; j++) {
1469 struct iface *iface = port->ifaces[j];
1470 iface_refresh_stats(iface);
1471 iface_refresh_cfm_stats(iface);
1472 iface_refresh_status(iface);
1475 bridge_refresh_controller_status(br);
1477 refresh_system_stats(cfg);
1478 ovsdb_idl_txn_commit(txn);
1479 ovsdb_idl_txn_destroy(txn); /* XXX */
1482 stats_timer = time_msec() + STATS_INTERVAL;
1490 struct iface *iface;
1492 LIST_FOR_EACH (br, node, &all_bridges) {
1493 ofproto_wait(br->ofproto);
1494 if (ofproto_has_primary_controller(br->ofproto)) {
1498 mac_learning_wait(br->ml);
1502 HMAP_FOR_EACH (iface, dp_ifidx_node, &br->ifaces) {
1504 cfm_wait(iface->cfm);
1508 ovsdb_idl_wait(idl);
1509 poll_timer_wait_until(stats_timer);
1512 /* Forces 'br' to revalidate all of its flows. This is appropriate when 'br''s
1513 * configuration changes. */
1515 bridge_flush(struct bridge *br)
1517 COVERAGE_INC(bridge_flush);
1519 mac_learning_flush(br->ml);
1522 /* Returns the 'br' interface for the ODPP_LOCAL port, or null if 'br' has no
1523 * such interface. */
1524 static struct iface *
1525 bridge_get_local_iface(struct bridge *br)
1529 for (i = 0; i < br->n_ports; i++) {
1530 struct port *port = br->ports[i];
1531 for (j = 0; j < port->n_ifaces; j++) {
1532 struct iface *iface = port->ifaces[j];
1533 if (iface->dp_ifidx == ODPP_LOCAL) {
1542 /* Bridge unixctl user interface functions. */
1544 bridge_unixctl_fdb_show(struct unixctl_conn *conn,
1545 const char *args, void *aux OVS_UNUSED)
1547 struct ds ds = DS_EMPTY_INITIALIZER;
1548 const struct bridge *br;
1549 const struct mac_entry *e;
1551 br = bridge_lookup(args);
1553 unixctl_command_reply(conn, 501, "no such bridge");
1557 ds_put_cstr(&ds, " port VLAN MAC Age\n");
1558 LIST_FOR_EACH (e, lru_node, &br->ml->lrus) {
1559 if (e->port < 0 || e->port >= br->n_ports) {
1562 ds_put_format(&ds, "%5d %4d "ETH_ADDR_FMT" %3d\n",
1563 br->ports[e->port]->ifaces[0]->dp_ifidx,
1564 e->vlan, ETH_ADDR_ARGS(e->mac), mac_entry_age(e));
1566 unixctl_command_reply(conn, 200, ds_cstr(&ds));
1570 /* Bridge reconfiguration functions. */
1571 static struct bridge *
1572 bridge_create(const struct ovsrec_bridge *br_cfg)
1577 assert(!bridge_lookup(br_cfg->name));
1578 br = xzalloc(sizeof *br);
1580 error = dpif_create_and_open(br_cfg->name, br_cfg->datapath_type,
1586 dpif_flow_flush(br->dpif);
1588 error = ofproto_create(br_cfg->name, br_cfg->datapath_type, &bridge_ofhooks,
1591 VLOG_ERR("failed to create switch %s: %s", br_cfg->name,
1593 dpif_delete(br->dpif);
1594 dpif_close(br->dpif);
1599 br->name = xstrdup(br_cfg->name);
1601 br->ml = mac_learning_create();
1602 eth_addr_nicira_random(br->default_ea);
1604 hmap_init(&br->ifaces);
1606 shash_init(&br->port_by_name);
1607 shash_init(&br->iface_by_name);
1611 list_push_back(&all_bridges, &br->node);
1613 VLOG_INFO("created bridge %s on %s", br->name, dpif_name(br->dpif));
1619 bridge_destroy(struct bridge *br)
1624 while (br->n_ports > 0) {
1625 port_destroy(br->ports[br->n_ports - 1]);
1627 list_remove(&br->node);
1628 error = dpif_delete(br->dpif);
1629 if (error && error != ENOENT) {
1630 VLOG_ERR("failed to delete %s: %s",
1631 dpif_name(br->dpif), strerror(error));
1633 dpif_close(br->dpif);
1634 ofproto_destroy(br->ofproto);
1635 mac_learning_destroy(br->ml);
1636 hmap_destroy(&br->ifaces);
1637 shash_destroy(&br->port_by_name);
1638 shash_destroy(&br->iface_by_name);
1645 static struct bridge *
1646 bridge_lookup(const char *name)
1650 LIST_FOR_EACH (br, node, &all_bridges) {
1651 if (!strcmp(br->name, name)) {
1658 /* Handle requests for a listing of all flows known by the OpenFlow
1659 * stack, including those normally hidden. */
1661 bridge_unixctl_dump_flows(struct unixctl_conn *conn,
1662 const char *args, void *aux OVS_UNUSED)
1667 br = bridge_lookup(args);
1669 unixctl_command_reply(conn, 501, "Unknown bridge");
1674 ofproto_get_all_flows(br->ofproto, &results);
1676 unixctl_command_reply(conn, 200, ds_cstr(&results));
1677 ds_destroy(&results);
1680 /* "bridge/reconnect [BRIDGE]": makes BRIDGE drop all of its controller
1681 * connections and reconnect. If BRIDGE is not specified, then all bridges
1682 * drop their controller connections and reconnect. */
1684 bridge_unixctl_reconnect(struct unixctl_conn *conn,
1685 const char *args, void *aux OVS_UNUSED)
1688 if (args[0] != '\0') {
1689 br = bridge_lookup(args);
1691 unixctl_command_reply(conn, 501, "Unknown bridge");
1694 ofproto_reconnect_controllers(br->ofproto);
1696 LIST_FOR_EACH (br, node, &all_bridges) {
1697 ofproto_reconnect_controllers(br->ofproto);
1700 unixctl_command_reply(conn, 200, NULL);
1704 bridge_run_one(struct bridge *br)
1707 struct iface *iface;
1709 error = ofproto_run1(br->ofproto);
1714 mac_learning_run(br->ml, ofproto_get_revalidate_set(br->ofproto));
1718 error = ofproto_run2(br->ofproto, br->flush);
1721 HMAP_FOR_EACH (iface, dp_ifidx_node, &br->ifaces) {
1722 struct ofpbuf *packet;
1728 packet = cfm_run(iface->cfm);
1730 iface_send_packet(iface, packet);
1731 ofpbuf_uninit(packet);
1740 bridge_get_controllers(const struct bridge *br,
1741 struct ovsrec_controller ***controllersp)
1743 struct ovsrec_controller **controllers;
1744 size_t n_controllers;
1746 controllers = br->cfg->controller;
1747 n_controllers = br->cfg->n_controller;
1749 if (n_controllers == 1 && !strcmp(controllers[0]->target, "none")) {
1755 *controllersp = controllers;
1757 return n_controllers;
1761 bridge_reconfigure_one(struct bridge *br)
1763 struct shash old_ports, new_ports;
1764 struct svec snoops, old_snoops;
1765 struct shash_node *node;
1766 enum ofproto_fail_mode fail_mode;
1769 /* Collect old ports. */
1770 shash_init(&old_ports);
1771 for (i = 0; i < br->n_ports; i++) {
1772 shash_add(&old_ports, br->ports[i]->name, br->ports[i]);
1775 /* Collect new ports. */
1776 shash_init(&new_ports);
1777 for (i = 0; i < br->cfg->n_ports; i++) {
1778 const char *name = br->cfg->ports[i]->name;
1779 if (!shash_add_once(&new_ports, name, br->cfg->ports[i])) {
1780 VLOG_WARN("bridge %s: %s specified twice as bridge port",
1785 /* If we have a controller, then we need a local port. Complain if the
1786 * user didn't specify one.
1788 * XXX perhaps we should synthesize a port ourselves in this case. */
1789 if (bridge_get_controllers(br, NULL)) {
1790 char local_name[IF_NAMESIZE];
1793 error = dpif_port_get_name(br->dpif, ODPP_LOCAL,
1794 local_name, sizeof local_name);
1795 if (!error && !shash_find(&new_ports, local_name)) {
1796 VLOG_WARN("bridge %s: controller specified but no local port "
1797 "(port named %s) defined",
1798 br->name, local_name);
1802 /* Get rid of deleted ports.
1803 * Get rid of deleted interfaces on ports that still exist. */
1804 SHASH_FOR_EACH (node, &old_ports) {
1805 struct port *port = node->data;
1806 const struct ovsrec_port *port_cfg;
1808 port_cfg = shash_find_data(&new_ports, node->name);
1812 port_del_ifaces(port, port_cfg);
1816 /* Create new ports.
1817 * Add new interfaces to existing ports.
1818 * Reconfigure existing ports. */
1819 SHASH_FOR_EACH (node, &new_ports) {
1820 struct port *port = shash_find_data(&old_ports, node->name);
1822 port = port_create(br, node->name);
1825 port_reconfigure(port, node->data);
1826 if (!port->n_ifaces) {
1827 VLOG_WARN("bridge %s: port %s has no interfaces, dropping",
1828 br->name, port->name);
1832 shash_destroy(&old_ports);
1833 shash_destroy(&new_ports);
1835 /* Set the fail-mode */
1836 fail_mode = !br->cfg->fail_mode
1837 || !strcmp(br->cfg->fail_mode, "standalone")
1838 ? OFPROTO_FAIL_STANDALONE
1839 : OFPROTO_FAIL_SECURE;
1840 if (ofproto_get_fail_mode(br->ofproto) != fail_mode
1841 && !ofproto_has_primary_controller(br->ofproto)) {
1842 ofproto_flush_flows(br->ofproto);
1844 ofproto_set_fail_mode(br->ofproto, fail_mode);
1846 /* Delete all flows if we're switching from connected to standalone or vice
1847 * versa. (XXX Should we delete all flows if we are switching from one
1848 * controller to another?) */
1850 /* Configure OpenFlow controller connection snooping. */
1852 svec_add_nocopy(&snoops, xasprintf("punix:%s/%s.snoop",
1853 ovs_rundir(), br->name));
1854 svec_init(&old_snoops);
1855 ofproto_get_snoops(br->ofproto, &old_snoops);
1856 if (!svec_equal(&snoops, &old_snoops)) {
1857 ofproto_set_snoops(br->ofproto, &snoops);
1859 svec_destroy(&snoops);
1860 svec_destroy(&old_snoops);
1862 mirror_reconfigure(br);
1865 /* Initializes 'oc' appropriately as a management service controller for
1868 * The caller must free oc->target when it is no longer needed. */
1870 bridge_ofproto_controller_for_mgmt(const struct bridge *br,
1871 struct ofproto_controller *oc)
1873 oc->target = xasprintf("punix:%s/%s.mgmt", ovs_rundir(), br->name);
1874 oc->max_backoff = 0;
1875 oc->probe_interval = 60;
1876 oc->band = OFPROTO_OUT_OF_BAND;
1877 oc->accept_re = NULL;
1878 oc->update_resolv_conf = false;
1880 oc->burst_limit = 0;
1883 /* Converts ovsrec_controller 'c' into an ofproto_controller in 'oc'. */
1885 bridge_ofproto_controller_from_ovsrec(const struct ovsrec_controller *c,
1886 struct ofproto_controller *oc)
1888 oc->target = c->target;
1889 oc->max_backoff = c->max_backoff ? *c->max_backoff / 1000 : 8;
1890 oc->probe_interval = c->inactivity_probe ? *c->inactivity_probe / 1000 : 5;
1891 oc->band = (!c->connection_mode || !strcmp(c->connection_mode, "in-band")
1892 ? OFPROTO_IN_BAND : OFPROTO_OUT_OF_BAND);
1893 oc->accept_re = c->discover_accept_regex;
1894 oc->update_resolv_conf = c->discover_update_resolv_conf;
1895 oc->rate_limit = c->controller_rate_limit ? *c->controller_rate_limit : 0;
1896 oc->burst_limit = (c->controller_burst_limit
1897 ? *c->controller_burst_limit : 0);
1900 /* Configures the IP stack for 'br''s local interface properly according to the
1901 * configuration in 'c'. */
1903 bridge_configure_local_iface_netdev(struct bridge *br,
1904 struct ovsrec_controller *c)
1906 struct netdev *netdev;
1907 struct in_addr mask, gateway;
1909 struct iface *local_iface;
1912 /* Controller discovery does its own TCP/IP configuration later. */
1913 if (strcmp(c->target, "discover")) {
1917 /* If there's no local interface or no IP address, give up. */
1918 local_iface = bridge_get_local_iface(br);
1919 if (!local_iface || !c->local_ip || !inet_aton(c->local_ip, &ip)) {
1923 /* Bring up the local interface. */
1924 netdev = local_iface->netdev;
1925 netdev_turn_flags_on(netdev, NETDEV_UP, true);
1927 /* Configure the IP address and netmask. */
1928 if (!c->local_netmask
1929 || !inet_aton(c->local_netmask, &mask)
1931 mask.s_addr = guess_netmask(ip.s_addr);
1933 if (!netdev_set_in4(netdev, ip, mask)) {
1934 VLOG_INFO("bridge %s: configured IP address "IP_FMT", netmask "IP_FMT,
1935 br->name, IP_ARGS(&ip.s_addr), IP_ARGS(&mask.s_addr));
1938 /* Configure the default gateway. */
1939 if (c->local_gateway
1940 && inet_aton(c->local_gateway, &gateway)
1941 && gateway.s_addr) {
1942 if (!netdev_add_router(netdev, gateway)) {
1943 VLOG_INFO("bridge %s: configured gateway "IP_FMT,
1944 br->name, IP_ARGS(&gateway.s_addr));
1950 bridge_reconfigure_remotes(struct bridge *br,
1951 const struct sockaddr_in *managers,
1954 const char *disable_ib_str, *queue_id_str;
1955 bool disable_in_band = false;
1958 struct ovsrec_controller **controllers;
1959 size_t n_controllers;
1962 struct ofproto_controller *ocs;
1966 /* Check if we should disable in-band control on this bridge. */
1967 disable_ib_str = bridge_get_other_config(br->cfg, "disable-in-band");
1968 if (disable_ib_str && !strcmp(disable_ib_str, "true")) {
1969 disable_in_band = true;
1972 /* Set OpenFlow queue ID for in-band control. */
1973 queue_id_str = bridge_get_other_config(br->cfg, "in-band-queue");
1974 queue_id = queue_id_str ? strtol(queue_id_str, NULL, 10) : -1;
1975 ofproto_set_in_band_queue(br->ofproto, queue_id);
1977 if (disable_in_band) {
1978 ofproto_set_extra_in_band_remotes(br->ofproto, NULL, 0);
1980 ofproto_set_extra_in_band_remotes(br->ofproto, managers, n_managers);
1982 had_primary = ofproto_has_primary_controller(br->ofproto);
1984 n_controllers = bridge_get_controllers(br, &controllers);
1986 ocs = xmalloc((n_controllers + 1) * sizeof *ocs);
1989 bridge_ofproto_controller_for_mgmt(br, &ocs[n_ocs++]);
1990 for (i = 0; i < n_controllers; i++) {
1991 struct ovsrec_controller *c = controllers[i];
1993 if (!strncmp(c->target, "punix:", 6)
1994 || !strncmp(c->target, "unix:", 5)) {
1995 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1997 /* Prevent remote ovsdb-server users from accessing arbitrary Unix
1998 * domain sockets and overwriting arbitrary local files. */
1999 VLOG_ERR_RL(&rl, "%s: not adding Unix domain socket controller "
2000 "\"%s\" due to possibility for remote exploit",
2001 dpif_name(br->dpif), c->target);
2005 bridge_configure_local_iface_netdev(br, c);
2006 bridge_ofproto_controller_from_ovsrec(c, &ocs[n_ocs]);
2007 if (disable_in_band) {
2008 ocs[n_ocs].band = OFPROTO_OUT_OF_BAND;
2013 ofproto_set_controllers(br->ofproto, ocs, n_ocs);
2014 free(ocs[0].target); /* From bridge_ofproto_controller_for_mgmt(). */
2017 if (had_primary != ofproto_has_primary_controller(br->ofproto)) {
2018 ofproto_flush_flows(br->ofproto);
2021 /* If there are no controllers and the bridge is in standalone
2022 * mode, set up a flow that matches every packet and directs
2023 * them to OFPP_NORMAL (which goes to us). Otherwise, the
2024 * switch is in secure mode and we won't pass any traffic until
2025 * a controller has been defined and it tells us to do so. */
2027 && ofproto_get_fail_mode(br->ofproto) == OFPROTO_FAIL_STANDALONE) {
2028 union ofp_action action;
2029 struct cls_rule rule;
2031 memset(&action, 0, sizeof action);
2032 action.type = htons(OFPAT_OUTPUT);
2033 action.output.len = htons(sizeof action);
2034 action.output.port = htons(OFPP_NORMAL);
2035 cls_rule_init_catchall(&rule, 0);
2036 ofproto_add_flow(br->ofproto, &rule, &action, 1);
2041 bridge_get_all_ifaces(const struct bridge *br, struct shash *ifaces)
2046 for (i = 0; i < br->n_ports; i++) {
2047 struct port *port = br->ports[i];
2048 for (j = 0; j < port->n_ifaces; j++) {
2049 struct iface *iface = port->ifaces[j];
2050 shash_add_once(ifaces, iface->name, iface);
2052 if (port->n_ifaces > 1 && port->cfg->bond_fake_iface) {
2053 shash_add_once(ifaces, port->name, NULL);
2058 /* For robustness, in case the administrator moves around datapath ports behind
2059 * our back, we re-check all the datapath port numbers here.
2061 * This function will set the 'dp_ifidx' members of interfaces that have
2062 * disappeared to -1, so only call this function from a context where those
2063 * 'struct iface's will be removed from the bridge. Otherwise, the -1
2064 * 'dp_ifidx'es will cause trouble later when we try to send them to the
2065 * datapath, which doesn't support UINT16_MAX+1 ports. */
2067 bridge_fetch_dp_ifaces(struct bridge *br)
2069 struct dpif_port_dump dump;
2070 struct dpif_port dpif_port;
2073 /* Reset all interface numbers. */
2074 for (i = 0; i < br->n_ports; i++) {
2075 struct port *port = br->ports[i];
2076 for (j = 0; j < port->n_ifaces; j++) {
2077 struct iface *iface = port->ifaces[j];
2078 iface->dp_ifidx = -1;
2081 hmap_clear(&br->ifaces);
2083 DPIF_PORT_FOR_EACH (&dpif_port, &dump, br->dpif) {
2084 struct iface *iface = iface_lookup(br, dpif_port.name);
2086 if (iface->dp_ifidx >= 0) {
2087 VLOG_WARN("%s reported interface %s twice",
2088 dpif_name(br->dpif), dpif_port.name);
2089 } else if (iface_from_dp_ifidx(br, dpif_port.port_no)) {
2090 VLOG_WARN("%s reported interface %"PRIu16" twice",
2091 dpif_name(br->dpif), dpif_port.port_no);
2093 iface->dp_ifidx = dpif_port.port_no;
2094 hmap_insert(&br->ifaces, &iface->dp_ifidx_node,
2095 hash_int(iface->dp_ifidx, 0));
2098 iface_set_ofport(iface->cfg,
2099 (iface->dp_ifidx >= 0
2100 ? odp_port_to_ofp_port(iface->dp_ifidx)
2106 /* Bridge packet processing functions. */
2109 bond_is_tcp_hash(const struct port *port)
2111 return port->bond_mode == BM_TCP && port->lacp & LACP_NEGOTIATED;
2115 bond_hash_src(const uint8_t mac[ETH_ADDR_LEN], uint16_t vlan)
2117 return hash_bytes(mac, ETH_ADDR_LEN, vlan) & BOND_MASK;
2120 static int bond_hash_tcp(const struct flow *flow, uint16_t vlan)
2122 struct flow hash_flow;
2124 memcpy(&hash_flow, flow, sizeof hash_flow);
2125 hash_flow.vlan_tci = 0;
2127 /* The symmetric quality of this hash function is not required, but
2128 * flow_hash_symmetric_l4 already exists, and is sufficient for our
2129 * purposes, so we use it out of convenience. */
2130 return flow_hash_symmetric_l4(&hash_flow, vlan) & BOND_MASK;
2133 static struct bond_entry *
2134 lookup_bond_entry(const struct port *port, const struct flow *flow,
2137 assert(port->bond_mode != BM_AB);
2139 if (bond_is_tcp_hash(port)) {
2140 return &port->bond_hash[bond_hash_tcp(flow, vlan)];
2142 return &port->bond_hash[bond_hash_src(flow->dl_src, vlan)];
2147 bond_choose_iface(const struct port *port)
2149 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
2150 size_t i, best_down_slave = -1;
2151 long long next_delay_expiration = LLONG_MAX;
2153 for (i = 0; i < port->n_ifaces; i++) {
2154 struct iface *iface = port->ifaces[i];
2156 if (iface->enabled) {
2158 } else if (iface->delay_expires < next_delay_expiration
2159 && (iface->lacp_status & LACP_ATTACHED
2160 || !(port->lacp & LACP_NEGOTIATED))) {
2161 best_down_slave = i;
2162 next_delay_expiration = iface->delay_expires;
2166 if (best_down_slave != -1) {
2167 struct iface *iface = port->ifaces[best_down_slave];
2169 VLOG_INFO_RL(&rl, "interface %s: skipping remaining %lli ms updelay "
2170 "since no other interface is up", iface->name,
2171 iface->delay_expires - time_msec());
2172 bond_enable_slave(iface, true);
2175 return best_down_slave;
2179 choose_output_iface(const struct port *port, const struct flow *flow,
2180 uint16_t vlan, uint16_t *dp_ifidx, tag_type *tags)
2182 struct iface *iface;
2184 assert(port->n_ifaces);
2185 if (port->n_ifaces == 1) {
2186 iface = port->ifaces[0];
2187 } else if (port->bond_mode == BM_AB) {
2188 if (port->active_iface < 0) {
2189 *tags |= port->no_ifaces_tag;
2192 iface = port->ifaces[port->active_iface];
2194 struct bond_entry *e = lookup_bond_entry(port, flow, vlan);
2195 if (e->iface_idx < 0 || e->iface_idx >= port->n_ifaces
2196 || !port->ifaces[e->iface_idx]->enabled) {
2197 /* XXX select interface properly. The current interface selection
2198 * is only good for testing the rebalancing code. */
2199 e->iface_idx = bond_choose_iface(port);
2200 if (e->iface_idx < 0) {
2201 *tags |= port->no_ifaces_tag;
2204 e->iface_tag = tag_create_random();
2206 *tags |= e->iface_tag;
2207 iface = port->ifaces[e->iface_idx];
2209 *dp_ifidx = iface->dp_ifidx;
2210 *tags |= iface->tag; /* Currently only used for bonding. */
2215 bond_link_status_update(struct iface *iface)
2217 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
2218 struct port *port = iface->port;
2219 bool up = iface->up;
2220 int updelay, downdelay;
2222 updelay = port->updelay;
2223 downdelay = port->downdelay;
2225 if (iface->port->lacp & LACP_NEGOTIATED) {
2230 if (iface->port->lacp && up) {
2231 /* The interface is up if it's attached to an aggregator and its
2232 * partner is synchronized. The only exception is defaulted links.
2233 * They are not required to have synchronized partners because they
2234 * have no partners at all. However, they will only be attached if
2235 * negotiations failed on all interfaces in the bond. */
2236 up = iface->lacp_status & LACP_ATTACHED
2237 && (iface->lacp_partner.state & LACP_STATE_SYNC
2238 || iface->lacp_status & LACP_DEFAULTED);
2242 if ((up == iface->enabled) == (iface->delay_expires == LLONG_MAX)) {
2243 /* Nothing to do. */
2246 VLOG_INFO_RL(&rl, "interface %s: link state %s",
2247 iface->name, up ? "up" : "down");
2248 if (up == iface->enabled) {
2249 iface->delay_expires = LLONG_MAX;
2250 VLOG_INFO_RL(&rl, "interface %s: will not be %s",
2251 iface->name, up ? "disabled" : "enabled");
2252 } else if (up && port->active_iface < 0) {
2253 bond_enable_slave(iface, true);
2255 VLOG_INFO_RL(&rl, "interface %s: skipping %d ms updelay since no "
2256 "other interface is up", iface->name, updelay);
2259 int delay = up ? updelay : downdelay;
2260 iface->delay_expires = time_msec() + delay;
2263 "interface %s: will be %s if it stays %s for %d ms",
2265 up ? "enabled" : "disabled",
2273 bond_choose_active_iface(struct port *port)
2275 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
2277 port->active_iface = bond_choose_iface(port);
2278 port->active_iface_tag = tag_create_random();
2279 if (port->active_iface >= 0) {
2280 VLOG_INFO_RL(&rl, "port %s: active interface is now %s",
2281 port->name, port->ifaces[port->active_iface]->name);
2283 VLOG_WARN_RL(&rl, "port %s: all ports disabled, no active interface",
2289 bond_enable_slave(struct iface *iface, bool enable)
2291 struct port *port = iface->port;
2292 struct bridge *br = port->bridge;
2294 /* This acts as a recursion check. If the act of disabling a slave
2295 * causes a different slave to be enabled, the flag will allow us to
2296 * skip redundant work when we reenter this function. It must be
2297 * cleared on exit to keep things safe with multiple bonds. */
2298 static bool moving_active_iface = false;
2300 iface->delay_expires = LLONG_MAX;
2301 if (enable == iface->enabled) {
2305 iface->enabled = enable;
2306 if (!iface->enabled) {
2307 VLOG_WARN("interface %s: disabled", iface->name);
2308 ofproto_revalidate(br->ofproto, iface->tag);
2309 if (iface->port_ifidx == port->active_iface) {
2310 ofproto_revalidate(br->ofproto,
2311 port->active_iface_tag);
2313 /* Disabling a slave can lead to another slave being immediately
2314 * enabled if there will be no active slaves but one is waiting
2315 * on an updelay. In this case we do not need to run most of the
2316 * code for the newly enabled slave since there was no period
2317 * without an active slave and it is redundant with the disabling
2319 moving_active_iface = true;
2320 bond_choose_active_iface(port);
2322 bond_send_learning_packets(port);
2324 VLOG_WARN("interface %s: enabled", iface->name);
2325 if (port->active_iface < 0 && !moving_active_iface) {
2326 ofproto_revalidate(br->ofproto, port->no_ifaces_tag);
2327 bond_choose_active_iface(port);
2328 bond_send_learning_packets(port);
2330 iface->tag = tag_create_random();
2333 moving_active_iface = false;
2336 /* Attempts to make the sum of the bond slaves' statistics appear on the fake
2337 * bond interface. */
2339 bond_update_fake_iface_stats(struct port *port)
2341 struct netdev_stats bond_stats;
2342 struct netdev *bond_dev;
2345 memset(&bond_stats, 0, sizeof bond_stats);
2347 for (i = 0; i < port->n_ifaces; i++) {
2348 struct netdev_stats slave_stats;
2350 if (!netdev_get_stats(port->ifaces[i]->netdev, &slave_stats)) {
2351 /* XXX: We swap the stats here because they are swapped back when
2352 * reported by the internal device. The reason for this is
2353 * internal devices normally represent packets going into the system
2354 * but when used as fake bond device they represent packets leaving
2355 * the system. We really should do this in the internal device
2356 * itself because changing it here reverses the counts from the
2357 * perspective of the switch. However, the internal device doesn't
2358 * know what type of device it represents so we have to do it here
2360 bond_stats.tx_packets += slave_stats.rx_packets;
2361 bond_stats.tx_bytes += slave_stats.rx_bytes;
2362 bond_stats.rx_packets += slave_stats.tx_packets;
2363 bond_stats.rx_bytes += slave_stats.tx_bytes;
2367 if (!netdev_open_default(port->name, &bond_dev)) {
2368 netdev_set_stats(bond_dev, &bond_stats);
2369 netdev_close(bond_dev);
2374 bond_link_carrier_update(struct iface *iface, bool carrier)
2376 if (carrier == iface->up) {
2380 if (iface->lacp_status & LACP_CURRENT) {
2381 iface_set_lacp_expired(iface);
2384 iface->up = carrier;
2389 bond_run(struct bridge *br)
2393 for (i = 0; i < br->n_ports; i++) {
2394 struct port *port = br->ports[i];
2396 if (port->n_ifaces >= 2) {
2399 if (port->monitor) {
2400 assert(!port->miimon);
2402 /* Track carrier going up and down on interfaces. */
2403 while (!netdev_monitor_poll(port->monitor, &devname)) {
2404 struct iface *iface;
2406 iface = port_lookup_iface(port, devname);
2408 bool up = netdev_get_carrier(iface->netdev);
2409 bond_link_carrier_update(iface, up);
2414 assert(port->miimon);
2416 if (time_msec() >= port->bond_miimon_next_update) {
2417 for (j = 0; j < port->n_ifaces; j++) {
2418 struct iface *iface = port->ifaces[j];
2419 bool up = netdev_get_miimon(iface->netdev);
2420 bond_link_carrier_update(iface, up);
2422 port->bond_miimon_next_update = time_msec() +
2423 port->bond_miimon_interval;
2427 for (j = 0; j < port->n_ifaces; j++) {
2428 bond_link_status_update(port->ifaces[j]);
2431 for (j = 0; j < port->n_ifaces; j++) {
2432 struct iface *iface = port->ifaces[j];
2433 if (time_msec() >= iface->delay_expires) {
2434 bond_enable_slave(iface, !iface->enabled);
2438 if (port->bond_fake_iface
2439 && time_msec() >= port->bond_next_fake_iface_update) {
2440 bond_update_fake_iface_stats(port);
2441 port->bond_next_fake_iface_update = time_msec() + 1000;
2448 bond_wait(struct bridge *br)
2452 for (i = 0; i < br->n_ports; i++) {
2453 struct port *port = br->ports[i];
2454 if (port->n_ifaces < 2) {
2458 if (port->monitor) {
2459 netdev_monitor_poll_wait(port->monitor);
2463 poll_timer_wait_until(port->bond_miimon_next_update);
2466 for (j = 0; j < port->n_ifaces; j++) {
2467 struct iface *iface = port->ifaces[j];
2468 if (iface->delay_expires != LLONG_MAX) {
2469 poll_timer_wait_until(iface->delay_expires);
2472 if (port->bond_fake_iface) {
2473 poll_timer_wait_until(port->bond_next_fake_iface_update);
2479 set_dst(struct dst *dst, const struct flow *flow,
2480 const struct port *in_port, const struct port *out_port,
2483 dst->vlan = (out_port->vlan >= 0 ? OFP_VLAN_NONE
2484 : in_port->vlan >= 0 ? in_port->vlan
2485 : flow->vlan_tci == 0 ? OFP_VLAN_NONE
2486 : vlan_tci_to_vid(flow->vlan_tci));
2487 return choose_output_iface(out_port, flow, dst->vlan,
2488 &dst->dp_ifidx, tags);
2492 swap_dst(struct dst *p, struct dst *q)
2494 struct dst tmp = *p;
2499 /* Moves all the dsts with vlan == 'vlan' to the front of the 'n_dsts' in
2500 * 'dsts'. (This may help performance by reducing the number of VLAN changes
2501 * that we push to the datapath. We could in fact fully sort the array by
2502 * vlan, but in most cases there are at most two different vlan tags so that's
2503 * possibly overkill.) */
2505 partition_dsts(struct dst_set *set, int vlan)
2507 struct dst *first = set->dsts;
2508 struct dst *last = set->dsts + set->n;
2510 while (first != last) {
2512 * - All dsts < first have vlan == 'vlan'.
2513 * - All dsts >= last have vlan != 'vlan'.
2514 * - first < last. */
2515 while (first->vlan == vlan) {
2516 if (++first == last) {
2521 /* Same invariants, plus one additional:
2522 * - first->vlan != vlan.
2524 while (last[-1].vlan != vlan) {
2525 if (--last == first) {
2530 /* Same invariants, plus one additional:
2531 * - last[-1].vlan == vlan.*/
2532 swap_dst(first++, --last);
2537 mirror_mask_ffs(mirror_mask_t mask)
2539 BUILD_ASSERT_DECL(sizeof(unsigned int) >= sizeof(mask));
2544 dst_set_init(struct dst_set *set)
2546 set->dsts = set->builtin;
2548 set->allocated = ARRAY_SIZE(set->builtin);
2552 dst_set_add(struct dst_set *set, const struct dst *dst)
2554 if (set->n >= set->allocated) {
2555 size_t new_allocated;
2556 struct dst *new_dsts;
2558 new_allocated = set->allocated * 2;
2559 new_dsts = xmalloc(new_allocated * sizeof *new_dsts);
2560 memcpy(new_dsts, set->dsts, set->n * sizeof *new_dsts);
2564 set->dsts = new_dsts;
2565 set->allocated = new_allocated;
2567 set->dsts[set->n++] = *dst;
2571 dst_set_free(struct dst_set *set)
2573 if (set->dsts != set->builtin) {
2579 dst_is_duplicate(const struct dst_set *set, const struct dst *test)
2582 for (i = 0; i < set->n; i++) {
2583 if (set->dsts[i].vlan == test->vlan
2584 && set->dsts[i].dp_ifidx == test->dp_ifidx) {
2592 port_trunks_vlan(const struct port *port, uint16_t vlan)
2594 return (port->vlan < 0
2595 && (!port->trunks || bitmap_is_set(port->trunks, vlan)));
2599 port_includes_vlan(const struct port *port, uint16_t vlan)
2601 return vlan == port->vlan || port_trunks_vlan(port, vlan);
2605 port_is_floodable(const struct port *port)
2609 for (i = 0; i < port->n_ifaces; i++) {
2610 if (!ofproto_port_is_floodable(port->bridge->ofproto,
2611 port->ifaces[i]->dp_ifidx)) {
2619 compose_dsts(const struct bridge *br, const struct flow *flow, uint16_t vlan,
2620 const struct port *in_port, const struct port *out_port,
2621 struct dst_set *set, tag_type *tags, uint16_t *nf_output_iface)
2623 mirror_mask_t mirrors = in_port->src_mirrors;
2628 flow_vlan = vlan_tci_to_vid(flow->vlan_tci);
2629 if (flow_vlan == 0) {
2630 flow_vlan = OFP_VLAN_NONE;
2633 if (out_port == FLOOD_PORT) {
2634 for (i = 0; i < br->n_ports; i++) {
2635 struct port *port = br->ports[i];
2637 && port_is_floodable(port)
2638 && port_includes_vlan(port, vlan)
2639 && !port->is_mirror_output_port
2640 && set_dst(&dst, flow, in_port, port, tags)) {
2641 mirrors |= port->dst_mirrors;
2642 dst_set_add(set, &dst);
2645 *nf_output_iface = NF_OUT_FLOOD;
2646 } else if (out_port && set_dst(&dst, flow, in_port, out_port, tags)) {
2647 dst_set_add(set, &dst);
2648 *nf_output_iface = dst.dp_ifidx;
2649 mirrors |= out_port->dst_mirrors;
2653 struct mirror *m = br->mirrors[mirror_mask_ffs(mirrors) - 1];
2654 if (!m->n_vlans || vlan_is_mirrored(m, vlan)) {
2656 if (set_dst(&dst, flow, in_port, m->out_port, tags)
2657 && !dst_is_duplicate(set, &dst)) {
2658 dst_set_add(set, &dst);
2661 for (i = 0; i < br->n_ports; i++) {
2662 struct port *port = br->ports[i];
2663 if (port_includes_vlan(port, m->out_vlan)
2664 && set_dst(&dst, flow, in_port, port, tags))
2666 if (port->vlan < 0) {
2667 dst.vlan = m->out_vlan;
2669 if (dst_is_duplicate(set, &dst)) {
2673 /* Use the vlan tag on the original flow instead of
2674 * the one passed in the vlan parameter. This ensures
2675 * that we compare the vlan from before any implicit
2676 * tagging tags place. This is necessary because
2677 * dst->vlan is the final vlan, after removing implicit
2679 if (port == in_port && dst.vlan == flow_vlan) {
2680 /* Don't send out input port on same VLAN. */
2683 dst_set_add(set, &dst);
2688 mirrors &= mirrors - 1;
2691 partition_dsts(set, flow_vlan);
2694 static void OVS_UNUSED
2695 print_dsts(const struct dst_set *set)
2699 for (i = 0; i < set->n; i++) {
2700 const struct dst *dst = &set->dsts[i];
2702 printf(">p%"PRIu16, dst->dp_ifidx);
2703 if (dst->vlan != OFP_VLAN_NONE) {
2704 printf("v%"PRIu16, dst->vlan);
2710 compose_actions(struct bridge *br, const struct flow *flow, uint16_t vlan,
2711 const struct port *in_port, const struct port *out_port,
2712 tag_type *tags, struct ofpbuf *actions,
2713 uint16_t *nf_output_iface)
2720 compose_dsts(br, flow, vlan, in_port, out_port, &set, tags,
2723 cur_vlan = vlan_tci_to_vid(flow->vlan_tci);
2724 if (cur_vlan == 0) {
2725 cur_vlan = OFP_VLAN_NONE;
2727 for (i = 0; i < set.n; i++) {
2728 const struct dst *dst = &set.dsts[i];
2729 if (dst->vlan != cur_vlan) {
2730 if (dst->vlan == OFP_VLAN_NONE) {
2731 nl_msg_put_flag(actions, ODP_ACTION_ATTR_STRIP_VLAN);
2734 tci = htons(dst->vlan & VLAN_VID_MASK);
2735 tci |= flow->vlan_tci & htons(VLAN_PCP_MASK);
2736 nl_msg_put_be16(actions, ODP_ACTION_ATTR_SET_DL_TCI, tci);
2738 cur_vlan = dst->vlan;
2740 nl_msg_put_u32(actions, ODP_ACTION_ATTR_OUTPUT, dst->dp_ifidx);
2745 /* Returns the effective vlan of a packet, taking into account both the
2746 * 802.1Q header and implicitly tagged ports. A value of 0 indicates that
2747 * the packet is untagged and -1 indicates it has an invalid header and
2748 * should be dropped. */
2749 static int flow_get_vlan(struct bridge *br, const struct flow *flow,
2750 struct port *in_port, bool have_packet)
2752 int vlan = vlan_tci_to_vid(flow->vlan_tci);
2753 if (in_port->vlan >= 0) {
2755 /* XXX support double tagging? */
2757 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2758 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %d tagged "
2759 "packet received on port %s configured with "
2760 "implicit VLAN %"PRIu16,
2761 br->name, vlan, in_port->name, in_port->vlan);
2765 vlan = in_port->vlan;
2767 if (!port_includes_vlan(in_port, vlan)) {
2769 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2770 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %d tagged "
2771 "packet received on port %s not configured for "
2773 br->name, vlan, in_port->name, vlan);
2782 /* A VM broadcasts a gratuitous ARP to indicate that it has resumed after
2783 * migration. Older Citrix-patched Linux DomU used gratuitous ARP replies to
2784 * indicate this; newer upstream kernels use gratuitous ARP requests. */
2786 is_gratuitous_arp(const struct flow *flow)
2788 return (flow->dl_type == htons(ETH_TYPE_ARP)
2789 && eth_addr_is_broadcast(flow->dl_dst)
2790 && (flow->nw_proto == ARP_OP_REPLY
2791 || (flow->nw_proto == ARP_OP_REQUEST
2792 && flow->nw_src == flow->nw_dst)));
2796 update_learning_table(struct bridge *br, const struct flow *flow, int vlan,
2797 struct port *in_port)
2799 enum grat_arp_lock_type lock_type;
2802 /* We don't want to learn from gratuitous ARP packets that are reflected
2803 * back over bond slaves so we lock the learning table. */
2804 lock_type = !is_gratuitous_arp(flow) ? GRAT_ARP_LOCK_NONE :
2805 (in_port->n_ifaces == 1) ? GRAT_ARP_LOCK_SET :
2806 GRAT_ARP_LOCK_CHECK;
2808 rev_tag = mac_learning_learn(br->ml, flow->dl_src, vlan, in_port->port_idx,
2811 /* The log messages here could actually be useful in debugging,
2812 * so keep the rate limit relatively high. */
2813 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30,
2815 VLOG_DBG_RL(&rl, "bridge %s: learned that "ETH_ADDR_FMT" is "
2816 "on port %s in VLAN %d",
2817 br->name, ETH_ADDR_ARGS(flow->dl_src),
2818 in_port->name, vlan);
2819 ofproto_revalidate(br->ofproto, rev_tag);
2823 /* Determines whether packets in 'flow' within 'br' should be forwarded or
2824 * dropped. Returns true if they may be forwarded, false if they should be
2827 * If 'have_packet' is true, it indicates that the caller is processing a
2828 * received packet. If 'have_packet' is false, then the caller is just
2829 * revalidating an existing flow because configuration has changed. Either
2830 * way, 'have_packet' only affects logging (there is no point in logging errors
2831 * during revalidation).
2833 * Sets '*in_portp' to the input port. This will be a null pointer if
2834 * flow->in_port does not designate a known input port (in which case
2835 * is_admissible() returns false).
2837 * When returning true, sets '*vlanp' to the effective VLAN of the input
2838 * packet, as returned by flow_get_vlan().
2840 * May also add tags to '*tags', although the current implementation only does
2841 * so in one special case.
2844 is_admissible(struct bridge *br, const struct flow *flow, bool have_packet,
2845 tag_type *tags, int *vlanp, struct port **in_portp)
2847 struct iface *in_iface;
2848 struct port *in_port;
2851 /* Find the interface and port structure for the received packet. */
2852 in_iface = iface_from_dp_ifidx(br, flow->in_port);
2854 /* No interface? Something fishy... */
2856 /* Odd. A few possible reasons here:
2858 * - We deleted an interface but there are still a few packets
2859 * queued up from it.
2861 * - Someone externally added an interface (e.g. with "ovs-dpctl
2862 * add-if") that we don't know about.
2864 * - Packet arrived on the local port but the local port is not
2865 * one of our bridge ports.
2867 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2869 VLOG_WARN_RL(&rl, "bridge %s: received packet on unknown "
2870 "interface %"PRIu16, br->name, flow->in_port);
2876 *in_portp = in_port = in_iface->port;
2877 *vlanp = vlan = flow_get_vlan(br, flow, in_port, have_packet);
2882 /* Drop frames for reserved multicast addresses. */
2883 if (eth_addr_is_reserved(flow->dl_dst)) {
2887 /* Drop frames on ports reserved for mirroring. */
2888 if (in_port->is_mirror_output_port) {
2890 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2891 VLOG_WARN_RL(&rl, "bridge %s: dropping packet received on port "
2892 "%s, which is reserved exclusively for mirroring",
2893 br->name, in_port->name);
2898 /* When using LACP, do not accept packets from disabled interfaces. */
2899 if (in_port->lacp & LACP_NEGOTIATED && !in_iface->enabled) {
2903 /* Packets received on non-LACP bonds need special attention to avoid
2905 if (in_port->n_ifaces > 1 && !(in_port->lacp & LACP_NEGOTIATED)) {
2907 bool is_grat_arp_locked;
2909 if (eth_addr_is_multicast(flow->dl_dst)) {
2910 *tags |= in_port->active_iface_tag;
2911 if (in_port->active_iface != in_iface->port_ifidx) {
2912 /* Drop all multicast packets on inactive slaves. */
2917 /* Drop all packets for which we have learned a different input
2918 * port, because we probably sent the packet on one slave and got
2919 * it back on the other. Gratuitous ARP packets are an exception
2920 * to this rule: the host has moved to another switch. The exception
2921 * to the exception is if we locked the learning table to avoid
2922 * reflections on bond slaves. If this is the case, just drop the
2924 src_idx = mac_learning_lookup(br->ml, flow->dl_src, vlan,
2925 &is_grat_arp_locked);
2926 if (src_idx != -1 && src_idx != in_port->port_idx &&
2927 (!is_gratuitous_arp(flow) || is_grat_arp_locked)) {
2935 /* If the composed actions may be applied to any packet in the given 'flow',
2936 * returns true. Otherwise, the actions should only be applied to 'packet', or
2937 * not at all, if 'packet' was NULL. */
2939 process_flow(struct bridge *br, const struct flow *flow,
2940 const struct ofpbuf *packet, struct ofpbuf *actions,
2941 tag_type *tags, uint16_t *nf_output_iface)
2943 struct port *in_port;
2944 struct port *out_port;
2948 /* Check whether we should drop packets in this flow. */
2949 if (!is_admissible(br, flow, packet != NULL, tags, &vlan, &in_port)) {
2954 /* Learn source MAC (but don't try to learn from revalidation). */
2956 update_learning_table(br, flow, vlan, in_port);
2959 /* Determine output port. */
2960 out_port_idx = mac_learning_lookup_tag(br->ml, flow->dl_dst, vlan, tags,
2962 if (out_port_idx >= 0 && out_port_idx < br->n_ports) {
2963 out_port = br->ports[out_port_idx];
2964 } else if (!packet && !eth_addr_is_multicast(flow->dl_dst)) {
2965 /* If we are revalidating but don't have a learning entry then
2966 * eject the flow. Installing a flow that floods packets opens
2967 * up a window of time where we could learn from a packet reflected
2968 * on a bond and blackhole packets before the learning table is
2969 * updated to reflect the correct port. */
2972 out_port = FLOOD_PORT;
2975 /* Don't send packets out their input ports. */
2976 if (in_port == out_port) {
2982 compose_actions(br, flow, vlan, in_port, out_port, tags, actions,
2990 bridge_normal_ofhook_cb(const struct flow *flow, const struct ofpbuf *packet,
2991 struct ofpbuf *actions, tag_type *tags,
2992 uint16_t *nf_output_iface, void *br_)
2994 struct bridge *br = br_;
2996 COVERAGE_INC(bridge_process_flow);
2997 return process_flow(br, flow, packet, actions, tags, nf_output_iface);
3001 bridge_special_ofhook_cb(const struct flow *flow,
3002 const struct ofpbuf *packet, void *br_)
3004 struct iface *iface;
3005 struct bridge *br = br_;
3007 iface = iface_from_dp_ifidx(br, flow->in_port);
3009 if (cfm_should_process_flow(flow)) {
3011 if (iface && packet && iface->cfm) {
3012 COVERAGE_INC(bridge_process_cfm);
3013 cfm_process_heartbeat(iface->cfm, packet);
3016 } else if (flow->dl_type == htons(ETH_TYPE_LACP)) {
3018 if (iface && packet) {
3019 COVERAGE_INC(bridge_process_lacp);
3020 lacp_process_packet(packet, iface);
3029 bridge_account_flow_ofhook_cb(const struct flow *flow, tag_type tags,
3030 const struct nlattr *actions,
3032 uint64_t n_bytes, void *br_)
3034 struct bridge *br = br_;
3035 const struct nlattr *a;
3036 struct port *in_port;
3041 /* Feed information from the active flows back into the learning table to
3042 * ensure that table is always in sync with what is actually flowing
3043 * through the datapath.
3045 * We test that 'tags' is nonzero to ensure that only flows that include an
3046 * OFPP_NORMAL action are used for learning. This works because
3047 * bridge_normal_ofhook_cb() always sets a nonzero tag value. */
3048 if (tags && is_admissible(br, flow, false, &dummy, &vlan, &in_port)) {
3049 update_learning_table(br, flow, vlan, in_port);
3052 /* Account for bond slave utilization. */
3053 if (!br->has_bonded_ports) {
3056 NL_ATTR_FOR_EACH_UNSAFE (a, left, actions, actions_len) {
3057 if (nl_attr_type(a) == ODP_ACTION_ATTR_OUTPUT) {
3058 struct port *out_port = port_from_dp_ifidx(br, nl_attr_get_u32(a));
3059 if (out_port && out_port->n_ifaces >= 2 &&
3060 out_port->bond_mode != BM_AB) {
3061 uint16_t vlan = (flow->vlan_tci
3062 ? vlan_tci_to_vid(flow->vlan_tci)
3064 struct bond_entry *e = lookup_bond_entry(out_port, flow, vlan);
3065 e->tx_bytes += n_bytes;
3072 bridge_account_checkpoint_ofhook_cb(void *br_)
3074 struct bridge *br = br_;
3078 if (!br->has_bonded_ports) {
3083 for (i = 0; i < br->n_ports; i++) {
3084 struct port *port = br->ports[i];
3085 if (port->n_ifaces > 1 && port->bond_mode != BM_AB
3086 && now >= port->bond_next_rebalance) {
3087 port->bond_next_rebalance = now + port->bond_rebalance_interval;
3088 bond_rebalance_port(port);
3093 static struct ofhooks bridge_ofhooks = {
3094 bridge_normal_ofhook_cb,
3095 bridge_special_ofhook_cb,
3096 bridge_account_flow_ofhook_cb,
3097 bridge_account_checkpoint_ofhook_cb,
3100 /* LACP functions. */
3103 lacp_process_packet(const struct ofpbuf *packet, struct iface *iface)
3105 const struct lacp_pdu *pdu;
3107 if (!iface->port->lacp) {
3111 pdu = parse_lacp_packet(packet);
3116 iface->lacp_status |= LACP_CURRENT;
3117 iface->lacp_status &= ~(LACP_EXPIRED | LACP_DEFAULTED);
3118 iface->lacp_rx = time_msec() + LACP_SLOW_TIME_RX;
3120 iface->lacp_actor.state = iface_get_lacp_state(iface);
3121 if (memcmp(&iface->lacp_actor, &pdu->partner, sizeof pdu->partner)) {
3125 if (memcmp(&iface->lacp_partner, &pdu->actor, sizeof pdu->actor)) {
3126 iface->port->lacp_need_update = true;
3127 iface->lacp_partner = pdu->actor;
3132 lacp_update_ifaces(struct port *port)
3136 struct lacp_info lead_pri;
3137 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10);
3139 port->lacp_need_update = false;
3140 COVERAGE_INC(bridge_lacp_update);
3146 VLOG_DBG_RL(&rl, "port %s: re-evaluating LACP link status", port->name);
3149 for (i = 0; i < port->n_ifaces; i++) {
3150 struct iface *iface = port->ifaces[i];
3151 struct lacp_info pri;
3153 iface->lacp_status |= LACP_ATTACHED;
3154 ofproto_revalidate(port->bridge->ofproto, iface->tag);
3156 /* Don't allow loopback interfaces to send traffic or lead. */
3157 if (eth_addr_equals(iface->lacp_partner.sysid,
3158 iface->lacp_actor.sysid)) {
3159 VLOG_WARN_RL(&rl, "iface %s: Loopback detected. Interface is "
3160 "connected to its own bridge", iface->name);
3161 iface->lacp_status &= ~LACP_ATTACHED;
3165 if (iface->lacp_status & LACP_DEFAULTED) {
3169 iface_get_lacp_priority(iface, &pri);
3171 if (!lead || memcmp(&pri, &lead_pri, sizeof pri) < 0) {
3178 port->lacp &= ~LACP_NEGOTIATED;
3182 port->lacp |= LACP_NEGOTIATED;
3184 for (i = 0; i < port->n_ifaces; i++) {
3185 struct iface *iface = port->ifaces[i];
3187 if (iface->lacp_status & LACP_DEFAULTED
3188 || lead->lacp_partner.key != iface->lacp_partner.key
3189 || !eth_addr_equals(lead->lacp_partner.sysid,
3190 iface->lacp_partner.sysid)) {
3191 iface->lacp_status &= ~LACP_ATTACHED;
3197 lacp_iface_may_tx(const struct iface *iface)
3199 return iface->port->lacp & LACP_ACTIVE
3200 || iface->lacp_status & (LACP_CURRENT | LACP_EXPIRED);
3204 lacp_run(struct bridge *br)
3207 struct ofpbuf packet;
3209 ofpbuf_init(&packet, ETH_HEADER_LEN + LACP_PDU_LEN);
3211 for (i = 0; i < br->n_ports; i++) {
3212 struct port *port = br->ports[i];
3218 for (j = 0; j < port->n_ifaces; j++) {
3219 struct iface *iface = port->ifaces[j];
3221 if (time_msec() > iface->lacp_rx) {
3222 if (iface->lacp_status & LACP_CURRENT) {
3223 iface_set_lacp_expired(iface);
3224 } else if (iface->lacp_status & LACP_EXPIRED) {
3225 iface_set_lacp_defaulted(iface);
3230 if (port->lacp_need_update) {
3231 lacp_update_ifaces(port);
3234 for (j = 0; j < port->n_ifaces; j++) {
3235 struct iface *iface = port->ifaces[j];
3236 uint8_t ea[ETH_ADDR_LEN];
3239 if (time_msec() < iface->lacp_tx || !lacp_iface_may_tx(iface)) {
3243 error = netdev_get_etheraddr(iface->netdev, ea);
3245 iface->lacp_actor.state = iface_get_lacp_state(iface);
3246 compose_lacp_packet(&packet, &iface->lacp_actor,
3247 &iface->lacp_partner, ea);
3248 iface_send_packet(iface, &packet);
3250 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10);
3251 VLOG_ERR_RL(&rl, "iface %s: failed to obtain Ethernet address "
3252 "(%s)", iface->name, strerror(error));
3255 iface->lacp_tx = time_msec() +
3256 (iface->lacp_partner.state & LACP_STATE_TIME
3258 : LACP_SLOW_TIME_TX);
3261 ofpbuf_uninit(&packet);
3265 lacp_wait(struct bridge *br)
3269 for (i = 0; i < br->n_ports; i++) {
3270 struct port *port = br->ports[i];
3276 for (j = 0; j < port->n_ifaces; j++) {
3277 struct iface *iface = port->ifaces[j];
3279 if (lacp_iface_may_tx(iface)) {
3280 poll_timer_wait_until(iface->lacp_tx);
3283 if (iface->lacp_status & (LACP_CURRENT | LACP_EXPIRED)) {
3284 poll_timer_wait_until(iface->lacp_rx);
3290 /* Bonding functions. */
3292 /* Statistics for a single interface on a bonded port, used for load-based
3293 * bond rebalancing. */
3294 struct slave_balance {
3295 struct iface *iface; /* The interface. */
3296 uint64_t tx_bytes; /* Sum of hashes[*]->tx_bytes. */
3298 /* All the "bond_entry"s that are assigned to this interface, in order of
3299 * increasing tx_bytes. */
3300 struct bond_entry **hashes;
3305 bond_mode_to_string(enum bond_mode bm) {
3306 static char *bm_slb = "balance-slb";
3307 static char *bm_ab = "active-backup";
3308 static char *bm_tcp = "balance-tcp";
3311 case BM_SLB: return bm_slb;
3312 case BM_AB: return bm_ab;
3313 case BM_TCP: return bm_tcp;
3320 /* Sorts pointers to pointers to bond_entries in ascending order by the
3321 * interface to which they are assigned, and within a single interface in
3322 * ascending order of bytes transmitted. */
3324 compare_bond_entries(const void *a_, const void *b_)
3326 const struct bond_entry *const *ap = a_;
3327 const struct bond_entry *const *bp = b_;
3328 const struct bond_entry *a = *ap;
3329 const struct bond_entry *b = *bp;
3330 if (a->iface_idx != b->iface_idx) {
3331 return a->iface_idx > b->iface_idx ? 1 : -1;
3332 } else if (a->tx_bytes != b->tx_bytes) {
3333 return a->tx_bytes > b->tx_bytes ? 1 : -1;
3339 /* Sorts slave_balances so that enabled ports come first, and otherwise in
3340 * *descending* order by number of bytes transmitted. */
3342 compare_slave_balance(const void *a_, const void *b_)
3344 const struct slave_balance *a = a_;
3345 const struct slave_balance *b = b_;
3346 if (a->iface->enabled != b->iface->enabled) {
3347 return a->iface->enabled ? -1 : 1;
3348 } else if (a->tx_bytes != b->tx_bytes) {
3349 return a->tx_bytes > b->tx_bytes ? -1 : 1;
3356 swap_bals(struct slave_balance *a, struct slave_balance *b)
3358 struct slave_balance tmp = *a;
3363 /* Restores the 'n_bals' slave_balance structures in 'bals' to sorted order
3364 * given that 'p' (and only 'p') might be in the wrong location.
3366 * This function invalidates 'p', since it might now be in a different memory
3369 resort_bals(struct slave_balance *p,
3370 struct slave_balance bals[], size_t n_bals)
3373 for (; p > bals && p->tx_bytes > p[-1].tx_bytes; p--) {
3374 swap_bals(p, p - 1);
3376 for (; p < &bals[n_bals - 1] && p->tx_bytes < p[1].tx_bytes; p++) {
3377 swap_bals(p, p + 1);
3383 log_bals(const struct slave_balance *bals, size_t n_bals, struct port *port)
3385 if (VLOG_IS_DBG_ENABLED()) {
3386 struct ds ds = DS_EMPTY_INITIALIZER;
3387 const struct slave_balance *b;
3389 for (b = bals; b < bals + n_bals; b++) {
3393 ds_put_char(&ds, ',');
3395 ds_put_format(&ds, " %s %"PRIu64"kB",
3396 b->iface->name, b->tx_bytes / 1024);
3398 if (!b->iface->enabled) {
3399 ds_put_cstr(&ds, " (disabled)");
3401 if (b->n_hashes > 0) {
3402 ds_put_cstr(&ds, " (");
3403 for (i = 0; i < b->n_hashes; i++) {
3404 const struct bond_entry *e = b->hashes[i];
3406 ds_put_cstr(&ds, " + ");
3408 ds_put_format(&ds, "h%td: %"PRIu64"kB",
3409 e - port->bond_hash, e->tx_bytes / 1024);
3411 ds_put_cstr(&ds, ")");
3414 VLOG_DBG("bond %s:%s", port->name, ds_cstr(&ds));
3419 /* Shifts 'hash' from 'from' to 'to' within 'port'. */
3421 bond_shift_load(struct slave_balance *from, struct slave_balance *to,
3424 struct bond_entry *hash = from->hashes[hash_idx];
3425 struct port *port = from->iface->port;
3426 uint64_t delta = hash->tx_bytes;
3428 assert(port->bond_mode != BM_AB);
3430 VLOG_INFO("bond %s: shift %"PRIu64"kB of load (with hash %td) "
3431 "from %s to %s (now carrying %"PRIu64"kB and "
3432 "%"PRIu64"kB load, respectively)",
3433 port->name, delta / 1024, hash - port->bond_hash,
3434 from->iface->name, to->iface->name,
3435 (from->tx_bytes - delta) / 1024,
3436 (to->tx_bytes + delta) / 1024);
3438 /* Delete element from from->hashes.
3440 * We don't bother to add the element to to->hashes because not only would
3441 * it require more work, the only purpose it would be to allow that hash to
3442 * be migrated to another slave in this rebalancing run, and there is no
3443 * point in doing that. */
3444 if (hash_idx == 0) {
3447 memmove(from->hashes + hash_idx, from->hashes + hash_idx + 1,
3448 (from->n_hashes - (hash_idx + 1)) * sizeof *from->hashes);
3452 /* Shift load away from 'from' to 'to'. */
3453 from->tx_bytes -= delta;
3454 to->tx_bytes += delta;
3456 /* Arrange for flows to be revalidated. */
3457 ofproto_revalidate(port->bridge->ofproto, hash->iface_tag);
3458 hash->iface_idx = to->iface->port_ifidx;
3459 hash->iface_tag = tag_create_random();
3463 bond_rebalance_port(struct port *port)
3465 struct slave_balance *bals;
3467 struct bond_entry *hashes[BOND_MASK + 1];
3468 struct slave_balance *b, *from, *to;
3469 struct bond_entry *e;
3472 assert(port->bond_mode != BM_AB);
3474 /* Sets up 'bals' to describe each of the port's interfaces, sorted in
3475 * descending order of tx_bytes, so that bals[0] represents the most
3476 * heavily loaded slave and bals[n_bals - 1] represents the least heavily
3479 * The code is a bit tricky: to avoid dynamically allocating a 'hashes'
3480 * array for each slave_balance structure, we sort our local array of
3481 * hashes in order by slave, so that all of the hashes for a given slave
3482 * become contiguous in memory, and then we point each 'hashes' members of
3483 * a slave_balance structure to the start of a contiguous group. */
3484 n_bals = port->n_ifaces;
3485 bals = xmalloc(n_bals * sizeof *bals);
3486 for (b = bals; b < &bals[n_bals]; b++) {
3487 b->iface = port->ifaces[b - bals];
3492 for (i = 0; i <= BOND_MASK; i++) {
3493 hashes[i] = &port->bond_hash[i];
3495 qsort(hashes, BOND_MASK + 1, sizeof *hashes, compare_bond_entries);
3496 for (i = 0; i <= BOND_MASK; i++) {
3498 if (e->iface_idx >= 0 && e->iface_idx < port->n_ifaces) {
3499 b = &bals[e->iface_idx];
3500 b->tx_bytes += e->tx_bytes;
3502 b->hashes = &hashes[i];
3507 qsort(bals, n_bals, sizeof *bals, compare_slave_balance);
3508 log_bals(bals, n_bals, port);
3510 /* Discard slaves that aren't enabled (which were sorted to the back of the
3511 * array earlier). */
3512 while (!bals[n_bals - 1].iface->enabled) {
3519 /* Shift load from the most-loaded slaves to the least-loaded slaves. */
3520 to = &bals[n_bals - 1];
3521 for (from = bals; from < to; ) {
3522 uint64_t overload = from->tx_bytes - to->tx_bytes;
3523 if (overload < to->tx_bytes >> 5 || overload < 100000) {
3524 /* The extra load on 'from' (and all less-loaded slaves), compared
3525 * to that of 'to' (the least-loaded slave), is less than ~3%, or
3526 * it is less than ~1Mbps. No point in rebalancing. */
3528 } else if (from->n_hashes == 1) {
3529 /* 'from' only carries a single MAC hash, so we can't shift any
3530 * load away from it, even though we want to. */
3533 /* 'from' is carrying significantly more load than 'to', and that
3534 * load is split across at least two different hashes. Pick a hash
3535 * to migrate to 'to' (the least-loaded slave), given that doing so
3536 * must decrease the ratio of the load on the two slaves by at
3539 * The sort order we use means that we prefer to shift away the
3540 * smallest hashes instead of the biggest ones. There is little
3541 * reason behind this decision; we could use the opposite sort
3542 * order to shift away big hashes ahead of small ones. */
3545 for (i = 0; i < from->n_hashes; i++) {
3546 double old_ratio, new_ratio;
3547 uint64_t delta = from->hashes[i]->tx_bytes;
3549 if (delta == 0 || from->tx_bytes - delta == 0) {
3550 /* Pointless move. */
3554 order_swapped = from->tx_bytes - delta < to->tx_bytes + delta;
3556 if (to->tx_bytes == 0) {
3557 /* Nothing on the new slave, move it. */
3561 old_ratio = (double)from->tx_bytes / to->tx_bytes;
3562 new_ratio = (double)(from->tx_bytes - delta) /
3563 (to->tx_bytes + delta);
3565 if (new_ratio == 0) {
3566 /* Should already be covered but check to prevent division
3571 if (new_ratio < 1) {
3572 new_ratio = 1 / new_ratio;
3575 if (old_ratio - new_ratio > 0.1) {
3576 /* Would decrease the ratio, move it. */
3580 if (i < from->n_hashes) {
3581 bond_shift_load(from, to, i);
3583 /* If the result of the migration changed the relative order of
3584 * 'from' and 'to' swap them back to maintain invariants. */
3585 if (order_swapped) {
3586 swap_bals(from, to);
3589 /* Re-sort 'bals'. Note that this may make 'from' and 'to'
3590 * point to different slave_balance structures. It is only
3591 * valid to do these two operations in a row at all because we
3592 * know that 'from' will not move past 'to' and vice versa. */
3593 resort_bals(from, bals, n_bals);
3594 resort_bals(to, bals, n_bals);
3601 /* Implement exponentially weighted moving average. A weight of 1/2 causes
3602 * historical data to decay to <1% in 7 rebalancing runs. */
3603 for (e = &port->bond_hash[0]; e <= &port->bond_hash[BOND_MASK]; e++) {
3612 bond_send_learning_packets(struct port *port)
3614 struct bridge *br = port->bridge;
3615 struct mac_entry *e;
3616 struct ofpbuf packet;
3617 int error, n_packets, n_errors;
3619 if (!port->n_ifaces || port->active_iface < 0 || bond_is_tcp_hash(port)) {
3623 ofpbuf_init(&packet, 128);
3624 error = n_packets = n_errors = 0;
3625 LIST_FOR_EACH (e, lru_node, &br->ml->lrus) {
3626 union ofp_action actions[2], *a;
3632 if (e->port == port->port_idx) {
3636 compose_benign_packet(&packet, "Open vSwitch Bond Failover", 0xf177,
3638 flow_extract(&packet, 0, ODPP_NONE, &flow);
3640 if (!choose_output_iface(port, &flow, e->vlan, &dp_ifidx, &tags)) {
3644 /* Compose actions. */
3645 memset(actions, 0, sizeof actions);
3648 a->vlan_vid.type = htons(OFPAT_SET_VLAN_VID);
3649 a->vlan_vid.len = htons(sizeof *a);
3650 a->vlan_vid.vlan_vid = htons(e->vlan);
3653 a->output.type = htons(OFPAT_OUTPUT);
3654 a->output.len = htons(sizeof *a);
3655 a->output.port = htons(odp_port_to_ofp_port(dp_ifidx));
3660 retval = ofproto_send_packet(br->ofproto, &flow, actions, a - actions,
3667 ofpbuf_uninit(&packet);
3670 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
3671 VLOG_WARN_RL(&rl, "bond %s: %d errors sending %d gratuitous learning "
3672 "packets, last error was: %s",
3673 port->name, n_errors, n_packets, strerror(error));
3675 VLOG_DBG("bond %s: sent %d gratuitous learning packets",
3676 port->name, n_packets);
3680 /* Bonding unixctl user interface functions. */
3683 bond_unixctl_list(struct unixctl_conn *conn,
3684 const char *args OVS_UNUSED, void *aux OVS_UNUSED)
3686 struct ds ds = DS_EMPTY_INITIALIZER;
3687 const struct bridge *br;
3689 ds_put_cstr(&ds, "bridge\tbond\ttype\tslaves\n");
3691 LIST_FOR_EACH (br, node, &all_bridges) {
3694 for (i = 0; i < br->n_ports; i++) {
3695 const struct port *port = br->ports[i];
3696 if (port->n_ifaces > 1) {
3699 ds_put_format(&ds, "%s\t%s\t%s\t", br->name, port->name,
3700 bond_mode_to_string(port->bond_mode));
3701 for (j = 0; j < port->n_ifaces; j++) {
3702 const struct iface *iface = port->ifaces[j];
3704 ds_put_cstr(&ds, ", ");
3706 ds_put_cstr(&ds, iface->name);
3708 ds_put_char(&ds, '\n');
3712 unixctl_command_reply(conn, 200, ds_cstr(&ds));
3716 static struct port *
3717 bond_find(const char *name)
3719 const struct bridge *br;
3721 LIST_FOR_EACH (br, node, &all_bridges) {
3724 for (i = 0; i < br->n_ports; i++) {
3725 struct port *port = br->ports[i];
3726 if (!strcmp(port->name, name) && port->n_ifaces > 1) {
3735 ds_put_lacp_state(struct ds *ds, uint8_t state)
3737 if (state & LACP_STATE_ACT) {
3738 ds_put_cstr(ds, "activity ");
3741 if (state & LACP_STATE_TIME) {
3742 ds_put_cstr(ds, "timeout ");
3745 if (state & LACP_STATE_AGG) {
3746 ds_put_cstr(ds, "aggregation ");
3749 if (state & LACP_STATE_SYNC) {
3750 ds_put_cstr(ds, "synchronized ");
3753 if (state & LACP_STATE_COL) {
3754 ds_put_cstr(ds, "collecting ");
3757 if (state & LACP_STATE_DIST) {
3758 ds_put_cstr(ds, "distributing ");
3761 if (state & LACP_STATE_DEF) {
3762 ds_put_cstr(ds, "defaulted ");
3765 if (state & LACP_STATE_EXP) {
3766 ds_put_cstr(ds, "expired ");
3771 bond_unixctl_show(struct unixctl_conn *conn,
3772 const char *args, void *aux OVS_UNUSED)
3774 struct ds ds = DS_EMPTY_INITIALIZER;
3775 const struct port *port;
3778 port = bond_find(args);
3780 unixctl_command_reply(conn, 501, "no such bond");
3784 ds_put_format(&ds, "bond_mode: %s\n",
3785 bond_mode_to_string(port->bond_mode));
3788 ds_put_format(&ds, "lacp: %s\n",
3789 port->lacp & LACP_ACTIVE ? "active" : "passive");
3791 ds_put_cstr(&ds, "lacp: off\n");
3794 if (port->bond_mode != BM_AB) {
3795 ds_put_format(&ds, "bond-hash-algorithm: %s\n",
3796 bond_is_tcp_hash(port) ? "balance-tcp" : "balance-slb");
3800 ds_put_format(&ds, "bond-detect-mode: %s\n",
3801 port->miimon ? "miimon" : "carrier");
3804 ds_put_format(&ds, "bond-miimon-interval: %lld\n",
3805 port->bond_miimon_interval);
3808 ds_put_format(&ds, "updelay: %d ms\n", port->updelay);
3809 ds_put_format(&ds, "downdelay: %d ms\n", port->downdelay);
3811 if (port->bond_mode != BM_AB) {
3812 ds_put_format(&ds, "next rebalance: %lld ms\n",
3813 port->bond_next_rebalance - time_msec());
3816 for (j = 0; j < port->n_ifaces; j++) {
3817 const struct iface *iface = port->ifaces[j];
3818 struct bond_entry *be;
3822 ds_put_format(&ds, "\nslave %s: %s\n",
3823 iface->name, iface->enabled ? "enabled" : "disabled");
3824 if (j == port->active_iface) {
3825 ds_put_cstr(&ds, "\tactive slave\n");
3827 if (iface->delay_expires != LLONG_MAX) {
3828 ds_put_format(&ds, "\t%s expires in %lld ms\n",
3829 iface->enabled ? "downdelay" : "updelay",
3830 iface->delay_expires - time_msec());
3834 ds_put_cstr(&ds, "\tstatus: ");
3836 if (iface->lacp_status & LACP_CURRENT) {
3837 ds_put_cstr(&ds, "current ");
3840 if (iface->lacp_status & LACP_EXPIRED) {
3841 ds_put_cstr(&ds, "expired ");
3844 if (iface->lacp_status & LACP_DEFAULTED) {
3845 ds_put_cstr(&ds, "defaulted ");
3848 if (iface->lacp_status & LACP_ATTACHED) {
3849 ds_put_cstr(&ds, "attached ");
3852 ds_put_cstr(&ds, "\n");
3854 ds_put_cstr(&ds, "\n\tactor sysid: ");
3855 ds_put_format(&ds, ETH_ADDR_FMT,
3856 ETH_ADDR_ARGS(iface->lacp_actor.sysid));
3857 ds_put_cstr(&ds, "\n");
3859 ds_put_format(&ds, "\tactor sys_priority: %u\n",
3860 ntohs(iface->lacp_actor.sys_priority));
3862 ds_put_format(&ds, "\tactor portid: %u\n",
3863 ntohs(iface->lacp_actor.portid));
3865 ds_put_format(&ds, "\tactor port_priority: %u\n",
3866 ntohs(iface->lacp_actor.port_priority));
3868 ds_put_format(&ds, "\tactor key: %u\n",
3869 ntohs(iface->lacp_actor.key));
3871 ds_put_cstr(&ds, "\tactor state: ");
3872 ds_put_lacp_state(&ds, iface_get_lacp_state(iface));
3873 ds_put_cstr(&ds, "\n\n");
3875 ds_put_cstr(&ds, "\tpartner sysid: ");
3876 ds_put_format(&ds, ETH_ADDR_FMT,
3877 ETH_ADDR_ARGS(iface->lacp_partner.sysid));
3878 ds_put_cstr(&ds, "\n");
3880 ds_put_format(&ds, "\tpartner sys_priority: %u\n",
3881 ntohs(iface->lacp_partner.sys_priority));
3883 ds_put_format(&ds, "\tpartner portid: %u\n",
3884 ntohs(iface->lacp_partner.portid));
3886 ds_put_format(&ds, "\tpartner port_priority: %u\n",
3887 ntohs(iface->lacp_partner.port_priority));
3889 ds_put_format(&ds, "\tpartner key: %u\n",
3890 ntohs(iface->lacp_partner.key));
3892 ds_put_cstr(&ds, "\tpartner state: ");
3893 ds_put_lacp_state(&ds, iface->lacp_partner.state);
3894 ds_put_cstr(&ds, "\n");
3897 if (port->bond_mode == BM_AB) {
3902 memset(&flow, 0, sizeof flow);
3903 for (be = port->bond_hash; be <= &port->bond_hash[BOND_MASK]; be++) {
3904 int hash = be - port->bond_hash;
3905 struct mac_entry *me;
3907 if (be->iface_idx != j) {
3911 ds_put_format(&ds, "\thash %d: %"PRIu64" kB load\n",
3912 hash, be->tx_bytes / 1024);
3914 if (port->bond_mode != BM_SLB) {
3919 LIST_FOR_EACH (me, lru_node, &port->bridge->ml->lrus) {
3923 memcpy(flow.dl_src, me->mac, ETH_ADDR_LEN);
3924 if (bond_hash_src(me->mac, me->vlan) == hash
3925 && me->port != port->port_idx
3926 && choose_output_iface(port, &flow, me->vlan,
3928 && dp_ifidx == iface->dp_ifidx)
3930 ds_put_format(&ds, "\t\t"ETH_ADDR_FMT"\n",
3931 ETH_ADDR_ARGS(me->mac));
3936 unixctl_command_reply(conn, 200, ds_cstr(&ds));
3941 bond_unixctl_migrate(struct unixctl_conn *conn, const char *args_,
3942 void *aux OVS_UNUSED)
3944 char *args = (char *) args_;
3945 char *save_ptr = NULL;
3946 char *bond_s, *hash_s, *slave_s;
3948 struct iface *iface;
3949 struct bond_entry *entry;
3952 bond_s = strtok_r(args, " ", &save_ptr);
3953 hash_s = strtok_r(NULL, " ", &save_ptr);
3954 slave_s = strtok_r(NULL, " ", &save_ptr);
3956 unixctl_command_reply(conn, 501,
3957 "usage: bond/migrate BOND HASH SLAVE");
3961 port = bond_find(bond_s);
3963 unixctl_command_reply(conn, 501, "no such bond");
3967 if (port->bond_mode != BM_SLB) {
3968 unixctl_command_reply(conn, 501, "not an SLB bond");
3972 if (strspn(hash_s, "0123456789") == strlen(hash_s)) {
3973 hash = atoi(hash_s) & BOND_MASK;
3975 unixctl_command_reply(conn, 501, "bad hash");
3979 iface = port_lookup_iface(port, slave_s);
3981 unixctl_command_reply(conn, 501, "no such slave");
3985 if (!iface->enabled) {
3986 unixctl_command_reply(conn, 501, "cannot migrate to disabled slave");
3990 entry = &port->bond_hash[hash];
3991 ofproto_revalidate(port->bridge->ofproto, entry->iface_tag);
3992 entry->iface_idx = iface->port_ifidx;
3993 entry->iface_tag = tag_create_random();
3994 unixctl_command_reply(conn, 200, "migrated");
3998 bond_unixctl_set_active_slave(struct unixctl_conn *conn, const char *args_,
3999 void *aux OVS_UNUSED)
4001 char *args = (char *) args_;
4002 char *save_ptr = NULL;
4003 char *bond_s, *slave_s;
4005 struct iface *iface;
4007 bond_s = strtok_r(args, " ", &save_ptr);
4008 slave_s = strtok_r(NULL, " ", &save_ptr);
4010 unixctl_command_reply(conn, 501,
4011 "usage: bond/set-active-slave BOND SLAVE");
4015 port = bond_find(bond_s);
4017 unixctl_command_reply(conn, 501, "no such bond");
4021 iface = port_lookup_iface(port, slave_s);
4023 unixctl_command_reply(conn, 501, "no such slave");
4027 if (!iface->enabled) {
4028 unixctl_command_reply(conn, 501, "cannot make disabled slave active");
4032 if (port->active_iface != iface->port_ifidx) {
4033 ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
4034 port->active_iface = iface->port_ifidx;
4035 port->active_iface_tag = tag_create_random();
4036 VLOG_INFO("port %s: active interface is now %s",
4037 port->name, iface->name);
4038 bond_send_learning_packets(port);
4039 unixctl_command_reply(conn, 200, "done");
4041 unixctl_command_reply(conn, 200, "no change");
4046 enable_slave(struct unixctl_conn *conn, const char *args_, bool enable)
4048 char *args = (char *) args_;
4049 char *save_ptr = NULL;
4050 char *bond_s, *slave_s;
4052 struct iface *iface;
4054 bond_s = strtok_r(args, " ", &save_ptr);
4055 slave_s = strtok_r(NULL, " ", &save_ptr);
4057 unixctl_command_reply(conn, 501,
4058 "usage: bond/enable/disable-slave BOND SLAVE");
4062 port = bond_find(bond_s);
4064 unixctl_command_reply(conn, 501, "no such bond");
4068 iface = port_lookup_iface(port, slave_s);
4070 unixctl_command_reply(conn, 501, "no such slave");
4074 bond_enable_slave(iface, enable);
4075 unixctl_command_reply(conn, 501, enable ? "enabled" : "disabled");
4079 bond_unixctl_enable_slave(struct unixctl_conn *conn, const char *args,
4080 void *aux OVS_UNUSED)
4082 enable_slave(conn, args, true);
4086 bond_unixctl_disable_slave(struct unixctl_conn *conn, const char *args,
4087 void *aux OVS_UNUSED)
4089 enable_slave(conn, args, false);
4093 bond_unixctl_hash(struct unixctl_conn *conn, const char *args_,
4094 void *aux OVS_UNUSED)
4096 char *args = (char *) args_;
4097 uint8_t mac[ETH_ADDR_LEN];
4101 char *mac_s, *vlan_s;
4102 char *save_ptr = NULL;
4104 mac_s = strtok_r(args, " ", &save_ptr);
4105 vlan_s = strtok_r(NULL, " ", &save_ptr);
4108 if (sscanf(vlan_s, "%u", &vlan) != 1) {
4109 unixctl_command_reply(conn, 501, "invalid vlan");
4113 vlan = OFP_VLAN_NONE;
4116 if (sscanf(mac_s, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
4117 == ETH_ADDR_SCAN_COUNT) {
4118 hash = bond_hash_src(mac, vlan);
4120 hash_cstr = xasprintf("%u", hash);
4121 unixctl_command_reply(conn, 200, hash_cstr);
4124 unixctl_command_reply(conn, 501, "invalid mac");
4131 unixctl_command_register("bond/list", bond_unixctl_list, NULL);
4132 unixctl_command_register("bond/show", bond_unixctl_show, NULL);
4133 unixctl_command_register("bond/migrate", bond_unixctl_migrate, NULL);
4134 unixctl_command_register("bond/set-active-slave",
4135 bond_unixctl_set_active_slave, NULL);
4136 unixctl_command_register("bond/enable-slave", bond_unixctl_enable_slave,
4138 unixctl_command_register("bond/disable-slave", bond_unixctl_disable_slave,
4140 unixctl_command_register("bond/hash", bond_unixctl_hash, NULL);
4143 /* Port functions. */
4145 static struct port *
4146 port_create(struct bridge *br, const char *name)
4150 port = xzalloc(sizeof *port);
4152 port->port_idx = br->n_ports;
4154 port->trunks = NULL;
4155 port->name = xstrdup(name);
4156 port->active_iface = -1;
4158 if (br->n_ports >= br->allocated_ports) {
4159 br->ports = x2nrealloc(br->ports, &br->allocated_ports,
4162 br->ports[br->n_ports++] = port;
4163 shash_add_assert(&br->port_by_name, port->name, port);
4165 VLOG_INFO("created port %s on bridge %s", port->name, br->name);
4172 get_port_other_config(const struct ovsrec_port *port, const char *key,
4173 const char *default_value)
4177 value = get_ovsrec_key_value(&port->header_, &ovsrec_port_col_other_config,
4179 return value ? value : default_value;
4183 get_interface_other_config(const struct ovsrec_interface *iface,
4184 const char *key, const char *default_value)
4188 value = get_ovsrec_key_value(&iface->header_,
4189 &ovsrec_interface_col_other_config, key);
4190 return value ? value : default_value;
4194 port_del_ifaces(struct port *port, const struct ovsrec_port *cfg)
4196 struct shash new_ifaces;
4199 /* Collect list of new interfaces. */
4200 shash_init(&new_ifaces);
4201 for (i = 0; i < cfg->n_interfaces; i++) {
4202 const char *name = cfg->interfaces[i]->name;
4203 shash_add_once(&new_ifaces, name, NULL);
4206 /* Get rid of deleted interfaces. */
4207 for (i = 0; i < port->n_ifaces; ) {
4208 if (!shash_find(&new_ifaces, cfg->interfaces[i]->name)) {
4209 iface_destroy(port->ifaces[i]);
4215 shash_destroy(&new_ifaces);
4219 port_reconfigure(struct port *port, const struct ovsrec_port *cfg)
4221 const char *detect_mode;
4222 struct shash new_ifaces;
4223 long long int next_rebalance, miimon_next_update, lacp_priority;
4224 unsigned long *trunks;
4230 /* Update settings. */
4231 port->updelay = cfg->bond_updelay;
4232 if (port->updelay < 0) {
4235 port->downdelay = cfg->bond_downdelay;
4236 if (port->downdelay < 0) {
4237 port->downdelay = 0;
4239 port->bond_rebalance_interval = atoi(
4240 get_port_other_config(cfg, "bond-rebalance-interval", "10000"));
4241 if (port->bond_rebalance_interval < 1000) {
4242 port->bond_rebalance_interval = 1000;
4244 next_rebalance = time_msec() + port->bond_rebalance_interval;
4245 if (port->bond_next_rebalance > next_rebalance) {
4246 port->bond_next_rebalance = next_rebalance;
4249 detect_mode = get_port_other_config(cfg, "bond-detect-mode",
4252 if (!strcmp(detect_mode, "carrier")) {
4253 port->miimon = false;
4254 } else if (!strcmp(detect_mode, "miimon")) {
4255 port->miimon = true;
4257 port->miimon = false;
4258 VLOG_WARN("port %s: unsupported bond-detect-mode %s, defaulting to "
4259 "carrier", port->name, detect_mode);
4262 port->bond_miimon_interval = atoi(
4263 get_port_other_config(cfg, "bond-miimon-interval", "200"));
4264 if (port->bond_miimon_interval < 100) {
4265 port->bond_miimon_interval = 100;
4267 miimon_next_update = time_msec() + port->bond_miimon_interval;
4268 if (port->bond_miimon_next_update > miimon_next_update) {
4269 port->bond_miimon_next_update = miimon_next_update;
4272 if (!port->cfg->bond_mode ||
4273 !strcmp(port->cfg->bond_mode, bond_mode_to_string(BM_SLB))) {
4274 port->bond_mode = BM_SLB;
4275 } else if (!strcmp(port->cfg->bond_mode, bond_mode_to_string(BM_AB))) {
4276 port->bond_mode = BM_AB;
4277 } else if (!strcmp(port->cfg->bond_mode, bond_mode_to_string(BM_TCP))) {
4278 port->bond_mode = BM_TCP;
4280 port->bond_mode = BM_SLB;
4281 VLOG_WARN("port %s: unknown bond_mode %s, defaulting to %s",
4282 port->name, port->cfg->bond_mode,
4283 bond_mode_to_string(port->bond_mode));
4286 /* Add new interfaces and update 'cfg' member of existing ones. */
4287 shash_init(&new_ifaces);
4288 for (i = 0; i < cfg->n_interfaces; i++) {
4289 const struct ovsrec_interface *if_cfg = cfg->interfaces[i];
4290 struct iface *iface;
4292 if (!shash_add_once(&new_ifaces, if_cfg->name, NULL)) {
4293 VLOG_WARN("port %s: %s specified twice as port interface",
4294 port->name, if_cfg->name);
4295 iface_set_ofport(if_cfg, -1);
4299 iface = iface_lookup(port->bridge, if_cfg->name);
4301 if (iface->port != port) {
4302 VLOG_ERR("bridge %s: %s interface is on multiple ports, "
4304 port->bridge->name, if_cfg->name, iface->port->name);
4307 iface->cfg = if_cfg;
4309 iface = iface_create(port, if_cfg);
4312 /* Determine interface type. The local port always has type
4313 * "internal". Other ports take their type from the database and
4314 * default to "system" if none is specified. */
4315 iface->type = (!strcmp(if_cfg->name, port->bridge->name) ? "internal"
4316 : if_cfg->type[0] ? if_cfg->type
4320 atoi(get_interface_other_config(if_cfg, "lacp-port-priority",
4323 if (lacp_priority <= 0 || lacp_priority > UINT16_MAX) {
4324 iface->lacp_priority = UINT16_MAX;
4326 iface->lacp_priority = lacp_priority;
4329 shash_destroy(&new_ifaces);
4332 atoi(get_port_other_config(cfg, "lacp-system-priority", "0"));
4334 if (lacp_priority <= 0 || lacp_priority > UINT16_MAX) {
4335 /* Prefer bondable links if unspecified. */
4336 port->lacp_priority = port->n_ifaces > 1 ? UINT16_MAX - 1 : UINT16_MAX;
4338 port->lacp_priority = lacp_priority;
4341 if (!port->cfg->lacp) {
4342 /* XXX when LACP implementation has been sufficiently tested, enable by
4343 * default and make active on bonded ports. */
4345 } else if (!strcmp(port->cfg->lacp, "off")) {
4347 } else if (!strcmp(port->cfg->lacp, "active")) {
4348 port->lacp = LACP_ACTIVE;
4349 } else if (!strcmp(port->cfg->lacp, "passive")) {
4350 port->lacp = LACP_PASSIVE;
4352 VLOG_WARN("port %s: unknown LACP mode %s",
4353 port->name, port->cfg->lacp);
4360 if (port->n_ifaces < 2) {
4362 if (vlan >= 0 && vlan <= 4095) {
4363 VLOG_DBG("port %s: assigning VLAN tag %d", port->name, vlan);
4368 /* It's possible that bonded, VLAN-tagged ports make sense. Maybe
4369 * they even work as-is. But they have not been tested. */
4370 VLOG_WARN("port %s: VLAN tags not supported on bonded ports",
4374 if (port->vlan != vlan) {
4376 bridge_flush(port->bridge);
4379 /* Get trunked VLANs. */
4381 if (vlan < 0 && cfg->n_trunks) {
4384 trunks = bitmap_allocate(4096);
4386 for (i = 0; i < cfg->n_trunks; i++) {
4387 int trunk = cfg->trunks[i];
4389 bitmap_set1(trunks, trunk);
4395 VLOG_ERR("port %s: invalid values for %zu trunk VLANs",
4396 port->name, cfg->n_trunks);
4398 if (n_errors == cfg->n_trunks) {
4399 VLOG_ERR("port %s: no valid trunks, trunking all VLANs",
4401 bitmap_free(trunks);
4404 } else if (vlan >= 0 && cfg->n_trunks) {
4405 VLOG_ERR("port %s: ignoring trunks in favor of implicit vlan",
4409 ? port->trunks != NULL
4410 : port->trunks == NULL || !bitmap_equal(trunks, port->trunks, 4096)) {
4411 bridge_flush(port->bridge);
4413 bitmap_free(port->trunks);
4414 port->trunks = trunks;
4418 port_destroy(struct port *port)
4421 struct bridge *br = port->bridge;
4425 for (i = 0; i < MAX_MIRRORS; i++) {
4426 struct mirror *m = br->mirrors[i];
4427 if (m && m->out_port == port) {
4432 while (port->n_ifaces > 0) {
4433 iface_destroy(port->ifaces[port->n_ifaces - 1]);
4436 shash_find_and_delete_assert(&br->port_by_name, port->name);
4438 del = br->ports[port->port_idx] = br->ports[--br->n_ports];
4439 del->port_idx = port->port_idx;
4441 VLOG_INFO("destroyed port %s on bridge %s", port->name, br->name);
4443 netdev_monitor_destroy(port->monitor);
4445 bitmap_free(port->trunks);
4452 static struct port *
4453 port_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
4455 struct iface *iface = iface_from_dp_ifidx(br, dp_ifidx);
4456 return iface ? iface->port : NULL;
4459 static struct port *
4460 port_lookup(const struct bridge *br, const char *name)
4462 return shash_find_data(&br->port_by_name, name);
4465 static struct iface *
4466 port_lookup_iface(const struct port *port, const char *name)
4468 struct iface *iface = iface_lookup(port->bridge, name);
4469 return iface && iface->port == port ? iface : NULL;
4473 port_update_lacp(struct port *port)
4478 if (!port->lacp || port->n_ifaces < 1) {
4479 for (i = 0; i < port->n_ifaces; i++) {
4480 iface_set_lacp_defaulted(port->ifaces[i]);
4486 for (i = 0; i < port->n_ifaces; i++) {
4487 struct iface *iface = port->ifaces[i];
4489 if (iface->dp_ifidx <= 0 || iface->dp_ifidx > UINT16_MAX) {
4494 if (iface->dp_ifidx == port->lacp_key) {
4495 key_changed = false;
4500 port->lacp_key = port->ifaces[0]->dp_ifidx;
4503 for (i = 0; i < port->n_ifaces; i++) {
4504 struct iface *iface = port->ifaces[i];
4506 iface->lacp_actor.sys_priority = htons(port->lacp_priority);
4507 memcpy(&iface->lacp_actor.sysid, port->bridge->ea, ETH_ADDR_LEN);
4509 iface->lacp_actor.port_priority = htons(iface->lacp_priority);
4510 iface->lacp_actor.portid = htons(iface->dp_ifidx);
4511 iface->lacp_actor.key = htons(port->lacp_key);
4515 port->lacp_need_update = true;
4519 port_update_bonding(struct port *port)
4521 if (port->monitor) {
4522 netdev_monitor_destroy(port->monitor);
4523 port->monitor = NULL;
4525 if (port->n_ifaces < 2) {
4526 /* Not a bonded port. */
4527 free(port->bond_hash);
4528 port->bond_hash = NULL;
4529 port->bond_fake_iface = false;
4530 port->active_iface = -1;
4531 port->no_ifaces_tag = 0;
4535 if (port->bond_mode != BM_AB && !port->bond_hash) {
4536 port->bond_hash = xcalloc(BOND_MASK + 1, sizeof *port->bond_hash);
4537 for (i = 0; i <= BOND_MASK; i++) {
4538 struct bond_entry *e = &port->bond_hash[i];
4542 port->bond_next_rebalance
4543 = time_msec() + port->bond_rebalance_interval;
4544 } else if (port->bond_mode == BM_AB) {
4545 free(port->bond_hash);
4546 port->bond_hash = NULL;
4549 if (!port->no_ifaces_tag) {
4550 port->no_ifaces_tag = tag_create_random();
4553 if (port->active_iface < 0) {
4554 bond_choose_active_iface(port);
4557 port->bond_fake_iface = port->cfg->bond_fake_iface;
4558 if (port->bond_fake_iface) {
4559 port->bond_next_fake_iface_update = time_msec();
4562 if (!port->miimon) {
4563 port->monitor = netdev_monitor_create();
4564 for (i = 0; i < port->n_ifaces; i++) {
4565 netdev_monitor_add(port->monitor, port->ifaces[i]->netdev);
4571 /* Interface functions. */
4574 iface_set_lacp_defaulted(struct iface *iface)
4576 memset(&iface->lacp_partner, 0, sizeof iface->lacp_partner);
4578 iface->lacp_status |= LACP_DEFAULTED;
4579 iface->lacp_status &= ~(LACP_CURRENT | LACP_EXPIRED);
4581 iface->port->lacp_need_update = true;
4585 iface_set_lacp_expired(struct iface *iface)
4587 iface->lacp_status &= ~LACP_CURRENT;
4588 iface->lacp_status |= LACP_EXPIRED;
4589 iface->lacp_partner.state |= LACP_STATE_TIME;
4590 iface->lacp_partner.state &= ~LACP_STATE_SYNC;
4592 iface->lacp_rx = time_msec() + LACP_FAST_TIME_RX;
4597 iface_get_lacp_state(const struct iface *iface)
4601 if (iface->port->lacp & LACP_ACTIVE) {
4602 state |= LACP_STATE_ACT;
4605 if (iface->lacp_status & LACP_ATTACHED) {
4606 state |= LACP_STATE_SYNC;
4609 if (iface->lacp_status & LACP_DEFAULTED) {
4610 state |= LACP_STATE_DEF;
4613 if (iface->lacp_status & LACP_EXPIRED) {
4614 state |= LACP_STATE_EXP;
4617 if (iface->port->n_ifaces > 1) {
4618 state |= LACP_STATE_AGG;
4621 if (iface->enabled) {
4622 state |= LACP_STATE_COL | LACP_STATE_DIST;
4628 /* Given 'iface', populates 'priority' with data representing its LACP link
4629 * priority. If two priority objects populated by this function are compared
4630 * using memcmp, the higher priority link will be less than the lower priority
4633 iface_get_lacp_priority(struct iface *iface, struct lacp_info *priority)
4635 uint16_t partner_priority, actor_priority;
4637 /* Choose the lacp_info of the higher priority system by comparing their
4638 * system priorities and mac addresses. */
4639 actor_priority = ntohs(iface->lacp_actor.sys_priority);
4640 partner_priority = ntohs(iface->lacp_partner.sys_priority);
4641 if (actor_priority < partner_priority) {
4642 *priority = iface->lacp_actor;
4643 } else if (partner_priority < actor_priority) {
4644 *priority = iface->lacp_partner;
4645 } else if (eth_addr_compare_3way(iface->lacp_actor.sysid,
4646 iface->lacp_partner.sysid) < 0) {
4647 *priority = iface->lacp_actor;
4649 *priority = iface->lacp_partner;
4652 /* Key and state are not used in priority comparisons. */
4654 priority->state = 0;
4658 iface_send_packet(struct iface *iface, struct ofpbuf *packet)
4661 union ofp_action action;
4663 memset(&action, 0, sizeof action);
4664 action.output.type = htons(OFPAT_OUTPUT);
4665 action.output.len = htons(sizeof action);
4666 action.output.port = htons(odp_port_to_ofp_port(iface->dp_ifidx));
4668 flow_extract(packet, 0, ODPP_NONE, &flow);
4670 if (ofproto_send_packet(iface->port->bridge->ofproto, &flow, &action, 1,
4672 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
4673 VLOG_WARN_RL(&rl, "interface %s: Failed to send packet.", iface->name);
4677 static struct iface *
4678 iface_create(struct port *port, const struct ovsrec_interface *if_cfg)
4680 struct bridge *br = port->bridge;
4681 struct iface *iface;
4682 char *name = if_cfg->name;
4684 iface = xzalloc(sizeof *iface);
4686 iface->port_ifidx = port->n_ifaces;
4687 iface->name = xstrdup(name);
4688 iface->dp_ifidx = -1;
4689 iface->tag = tag_create_random();
4690 iface->delay_expires = LLONG_MAX;
4691 iface->netdev = NULL;
4692 iface->cfg = if_cfg;
4693 iface_set_lacp_defaulted(iface);
4695 if (port->lacp & LACP_ACTIVE) {
4696 iface_set_lacp_expired(iface);
4699 shash_add_assert(&br->iface_by_name, iface->name, iface);
4701 if (port->n_ifaces >= port->allocated_ifaces) {
4702 port->ifaces = x2nrealloc(port->ifaces, &port->allocated_ifaces,
4703 sizeof *port->ifaces);
4705 port->ifaces[port->n_ifaces++] = iface;
4706 if (port->n_ifaces > 1) {
4707 br->has_bonded_ports = true;
4710 VLOG_DBG("attached network device %s to port %s", iface->name, port->name);
4718 iface_destroy(struct iface *iface)
4721 struct port *port = iface->port;
4722 struct bridge *br = port->bridge;
4723 bool del_active = port->active_iface == iface->port_ifidx;
4726 if (port->monitor) {
4727 netdev_monitor_remove(port->monitor, iface->netdev);
4730 shash_find_and_delete_assert(&br->iface_by_name, iface->name);
4732 if (iface->dp_ifidx >= 0) {
4733 hmap_remove(&br->ifaces, &iface->dp_ifidx_node);
4736 del = port->ifaces[iface->port_ifidx] = port->ifaces[--port->n_ifaces];
4737 del->port_ifidx = iface->port_ifidx;
4739 netdev_close(iface->netdev);
4742 ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
4743 bond_choose_active_iface(port);
4744 bond_send_learning_packets(port);
4747 cfm_destroy(iface->cfm);
4752 bridge_flush(port->bridge);
4756 static struct iface *
4757 iface_lookup(const struct bridge *br, const char *name)
4759 return shash_find_data(&br->iface_by_name, name);
4762 static struct iface *
4763 iface_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
4765 struct iface *iface;
4767 HMAP_FOR_EACH_IN_BUCKET (iface, dp_ifidx_node,
4768 hash_int(dp_ifidx, 0), &br->ifaces) {
4769 if (iface->dp_ifidx == dp_ifidx) {
4776 /* Set Ethernet address of 'iface', if one is specified in the configuration
4779 iface_set_mac(struct iface *iface)
4781 uint8_t ea[ETH_ADDR_LEN];
4783 if (iface->cfg->mac && eth_addr_from_string(iface->cfg->mac, ea)) {
4784 if (eth_addr_is_multicast(ea)) {
4785 VLOG_ERR("interface %s: cannot set MAC to multicast address",
4787 } else if (iface->dp_ifidx == ODPP_LOCAL) {
4788 VLOG_ERR("ignoring iface.%s.mac; use bridge.%s.mac instead",
4789 iface->name, iface->name);
4791 int error = netdev_set_etheraddr(iface->netdev, ea);
4793 VLOG_ERR("interface %s: setting MAC failed (%s)",
4794 iface->name, strerror(error));
4800 /* Sets the ofport column of 'if_cfg' to 'ofport'. */
4802 iface_set_ofport(const struct ovsrec_interface *if_cfg, int64_t ofport)
4805 ovsrec_interface_set_ofport(if_cfg, &ofport, 1);
4809 /* Adds the 'n' key-value pairs in 'keys' in 'values' to 'shash'.
4811 * The value strings in '*shash' are taken directly from values[], not copied,
4812 * so the caller should not modify or free them. */
4814 shash_from_ovs_idl_map(char **keys, char **values, size_t n,
4815 struct shash *shash)
4820 for (i = 0; i < n; i++) {
4821 shash_add(shash, keys[i], values[i]);
4825 /* Creates 'keys' and 'values' arrays from 'shash'.
4827 * Sets 'keys' and 'values' to heap allocated arrays representing the key-value
4828 * pairs in 'shash'. The caller takes ownership of 'keys' and 'values'. They
4829 * are populated with with strings taken directly from 'shash' and thus have
4830 * the same ownership of the key-value pairs in shash.
4833 shash_to_ovs_idl_map(struct shash *shash,
4834 char ***keys, char ***values, size_t *n)
4838 struct shash_node *sn;
4840 count = shash_count(shash);
4842 k = xmalloc(count * sizeof *k);
4843 v = xmalloc(count * sizeof *v);
4846 SHASH_FOR_EACH(sn, shash) {
4857 struct iface_delete_queues_cbdata {
4858 struct netdev *netdev;
4859 const struct ovsdb_datum *queues;
4863 queue_ids_include(const struct ovsdb_datum *queues, int64_t target)
4865 union ovsdb_atom atom;
4867 atom.integer = target;
4868 return ovsdb_datum_find_key(queues, &atom, OVSDB_TYPE_INTEGER) != UINT_MAX;
4872 iface_delete_queues(unsigned int queue_id,
4873 const struct shash *details OVS_UNUSED, void *cbdata_)
4875 struct iface_delete_queues_cbdata *cbdata = cbdata_;
4877 if (!queue_ids_include(cbdata->queues, queue_id)) {
4878 netdev_delete_queue(cbdata->netdev, queue_id);
4883 iface_update_qos(struct iface *iface, const struct ovsrec_qos *qos)
4885 if (!qos || qos->type[0] == '\0') {
4886 netdev_set_qos(iface->netdev, NULL, NULL);
4888 struct iface_delete_queues_cbdata cbdata;
4889 struct shash details;
4892 /* Configure top-level Qos for 'iface'. */
4893 shash_from_ovs_idl_map(qos->key_other_config, qos->value_other_config,
4894 qos->n_other_config, &details);
4895 netdev_set_qos(iface->netdev, qos->type, &details);
4896 shash_destroy(&details);
4898 /* Deconfigure queues that were deleted. */
4899 cbdata.netdev = iface->netdev;
4900 cbdata.queues = ovsrec_qos_get_queues(qos, OVSDB_TYPE_INTEGER,
4902 netdev_dump_queues(iface->netdev, iface_delete_queues, &cbdata);
4904 /* Configure queues for 'iface'. */
4905 for (i = 0; i < qos->n_queues; i++) {
4906 const struct ovsrec_queue *queue = qos->value_queues[i];
4907 unsigned int queue_id = qos->key_queues[i];
4909 shash_from_ovs_idl_map(queue->key_other_config,
4910 queue->value_other_config,
4911 queue->n_other_config, &details);
4912 netdev_set_queue(iface->netdev, queue_id, &details);
4913 shash_destroy(&details);
4919 iface_update_cfm(struct iface *iface)
4923 uint16_t *remote_mps;
4924 struct ovsrec_monitor *mon;
4925 uint8_t ea[ETH_ADDR_LEN], maid[CCM_MAID_LEN];
4927 mon = iface->cfg->monitor;
4930 cfm_destroy(iface->cfm);
4935 if (netdev_get_etheraddr(iface->netdev, ea)) {
4936 VLOG_WARN("interface %s: Failed to get ethernet address. "
4937 "Skipping Monitor.", iface->name);
4941 if (!cfm_generate_maid(mon->md_name, mon->ma_name, maid)) {
4942 VLOG_WARN("interface %s: Failed to generate MAID.", iface->name);
4947 iface->cfm = cfm_create();
4951 cfm->mpid = mon->mpid;
4952 cfm->interval = mon->interval ? *mon->interval : 1000;
4954 memcpy(cfm->eth_src, ea, sizeof cfm->eth_src);
4955 memcpy(cfm->maid, maid, sizeof cfm->maid);
4957 remote_mps = xzalloc(mon->n_remote_mps * sizeof *remote_mps);
4958 for(i = 0; i < mon->n_remote_mps; i++) {
4959 remote_mps[i] = mon->remote_mps[i]->mpid;
4961 cfm_update_remote_mps(cfm, remote_mps, mon->n_remote_mps);
4964 if (!cfm_configure(iface->cfm)) {
4965 cfm_destroy(iface->cfm);
4970 /* Port mirroring. */
4972 static struct mirror *
4973 mirror_find_by_uuid(struct bridge *br, const struct uuid *uuid)
4977 for (i = 0; i < MAX_MIRRORS; i++) {
4978 struct mirror *m = br->mirrors[i];
4979 if (m && uuid_equals(uuid, &m->uuid)) {
4987 mirror_reconfigure(struct bridge *br)
4989 unsigned long *rspan_vlans;
4992 /* Get rid of deleted mirrors. */
4993 for (i = 0; i < MAX_MIRRORS; i++) {
4994 struct mirror *m = br->mirrors[i];
4996 const struct ovsdb_datum *mc;
4997 union ovsdb_atom atom;
4999 mc = ovsrec_bridge_get_mirrors(br->cfg, OVSDB_TYPE_UUID);
5000 atom.uuid = br->mirrors[i]->uuid;
5001 if (ovsdb_datum_find_key(mc, &atom, OVSDB_TYPE_UUID) == UINT_MAX) {
5007 /* Add new mirrors and reconfigure existing ones. */
5008 for (i = 0; i < br->cfg->n_mirrors; i++) {
5009 struct ovsrec_mirror *cfg = br->cfg->mirrors[i];
5010 struct mirror *m = mirror_find_by_uuid(br, &cfg->header_.uuid);
5012 mirror_reconfigure_one(m, cfg);
5014 mirror_create(br, cfg);
5018 /* Update port reserved status. */
5019 for (i = 0; i < br->n_ports; i++) {
5020 br->ports[i]->is_mirror_output_port = false;
5022 for (i = 0; i < MAX_MIRRORS; i++) {
5023 struct mirror *m = br->mirrors[i];
5024 if (m && m->out_port) {
5025 m->out_port->is_mirror_output_port = true;
5029 /* Update flooded vlans (for RSPAN). */
5031 if (br->cfg->n_flood_vlans) {
5032 rspan_vlans = bitmap_allocate(4096);
5034 for (i = 0; i < br->cfg->n_flood_vlans; i++) {
5035 int64_t vlan = br->cfg->flood_vlans[i];
5036 if (vlan >= 0 && vlan < 4096) {
5037 bitmap_set1(rspan_vlans, vlan);
5038 VLOG_INFO("bridge %s: disabling learning on vlan %"PRId64,
5041 VLOG_ERR("bridge %s: invalid value %"PRId64 "for flood VLAN",
5046 if (mac_learning_set_flood_vlans(br->ml, rspan_vlans)) {
5052 mirror_create(struct bridge *br, struct ovsrec_mirror *cfg)
5057 for (i = 0; ; i++) {
5058 if (i >= MAX_MIRRORS) {
5059 VLOG_WARN("bridge %s: maximum of %d port mirrors reached, "
5060 "cannot create %s", br->name, MAX_MIRRORS, cfg->name);
5063 if (!br->mirrors[i]) {
5068 VLOG_INFO("created port mirror %s on bridge %s", cfg->name, br->name);
5071 br->mirrors[i] = m = xzalloc(sizeof *m);
5074 m->name = xstrdup(cfg->name);
5075 shash_init(&m->src_ports);
5076 shash_init(&m->dst_ports);
5082 mirror_reconfigure_one(m, cfg);
5086 mirror_destroy(struct mirror *m)
5089 struct bridge *br = m->bridge;
5092 for (i = 0; i < br->n_ports; i++) {
5093 br->ports[i]->src_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
5094 br->ports[i]->dst_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
5097 shash_destroy(&m->src_ports);
5098 shash_destroy(&m->dst_ports);
5101 m->bridge->mirrors[m->idx] = NULL;
5110 mirror_collect_ports(struct mirror *m, struct ovsrec_port **ports, int n_ports,
5111 struct shash *names)
5115 for (i = 0; i < n_ports; i++) {
5116 const char *name = ports[i]->name;
5117 if (port_lookup(m->bridge, name)) {
5118 shash_add_once(names, name, NULL);
5120 VLOG_WARN("bridge %s: mirror %s cannot match on nonexistent "
5121 "port %s", m->bridge->name, m->name, name);
5127 mirror_collect_vlans(struct mirror *m, const struct ovsrec_mirror *cfg,
5133 *vlans = xmalloc(sizeof **vlans * cfg->n_select_vlan);
5135 for (i = 0; i < cfg->n_select_vlan; i++) {
5136 int64_t vlan = cfg->select_vlan[i];
5137 if (vlan < 0 || vlan > 4095) {
5138 VLOG_WARN("bridge %s: mirror %s selects invalid VLAN %"PRId64,
5139 m->bridge->name, m->name, vlan);
5141 (*vlans)[n_vlans++] = vlan;
5148 vlan_is_mirrored(const struct mirror *m, int vlan)
5152 for (i = 0; i < m->n_vlans; i++) {
5153 if (m->vlans[i] == vlan) {
5161 port_trunks_any_mirrored_vlan(const struct mirror *m, const struct port *p)
5165 for (i = 0; i < m->n_vlans; i++) {
5166 if (port_trunks_vlan(p, m->vlans[i])) {
5174 mirror_reconfigure_one(struct mirror *m, struct ovsrec_mirror *cfg)
5176 struct shash src_ports, dst_ports;
5177 mirror_mask_t mirror_bit;
5178 struct port *out_port;
5185 if (strcmp(cfg->name, m->name)) {
5187 m->name = xstrdup(cfg->name);
5190 /* Get output port. */
5191 if (cfg->output_port) {
5192 out_port = port_lookup(m->bridge, cfg->output_port->name);
5194 VLOG_ERR("bridge %s: mirror %s outputs to port not on bridge",
5195 m->bridge->name, m->name);
5201 if (cfg->output_vlan) {
5202 VLOG_ERR("bridge %s: mirror %s specifies both output port and "
5203 "output vlan; ignoring output vlan",
5204 m->bridge->name, m->name);
5206 } else if (cfg->output_vlan) {
5208 out_vlan = *cfg->output_vlan;
5210 VLOG_ERR("bridge %s: mirror %s does not specify output; ignoring",
5211 m->bridge->name, m->name);
5216 shash_init(&src_ports);
5217 shash_init(&dst_ports);
5218 if (cfg->select_all) {
5219 for (i = 0; i < m->bridge->n_ports; i++) {
5220 const char *name = m->bridge->ports[i]->name;
5221 shash_add_once(&src_ports, name, NULL);
5222 shash_add_once(&dst_ports, name, NULL);
5227 /* Get ports, and drop duplicates and ports that don't exist. */
5228 mirror_collect_ports(m, cfg->select_src_port, cfg->n_select_src_port,
5230 mirror_collect_ports(m, cfg->select_dst_port, cfg->n_select_dst_port,
5233 /* Get all the vlans, and drop duplicate and invalid vlans. */
5234 n_vlans = mirror_collect_vlans(m, cfg, &vlans);
5237 /* Update mirror data. */
5238 if (!shash_equal_keys(&m->src_ports, &src_ports)
5239 || !shash_equal_keys(&m->dst_ports, &dst_ports)
5240 || m->n_vlans != n_vlans
5241 || memcmp(m->vlans, vlans, sizeof *vlans * n_vlans)
5242 || m->out_port != out_port
5243 || m->out_vlan != out_vlan) {
5244 bridge_flush(m->bridge);
5246 shash_swap(&m->src_ports, &src_ports);
5247 shash_swap(&m->dst_ports, &dst_ports);
5250 m->n_vlans = n_vlans;
5251 m->out_port = out_port;
5252 m->out_vlan = out_vlan;
5255 mirror_bit = MIRROR_MASK_C(1) << m->idx;
5256 for (i = 0; i < m->bridge->n_ports; i++) {
5257 struct port *port = m->bridge->ports[i];
5259 if (shash_find(&m->src_ports, port->name)
5262 ? port_trunks_any_mirrored_vlan(m, port)
5263 : vlan_is_mirrored(m, port->vlan)))) {
5264 port->src_mirrors |= mirror_bit;
5266 port->src_mirrors &= ~mirror_bit;
5269 if (shash_find(&m->dst_ports, port->name)) {
5270 port->dst_mirrors |= mirror_bit;
5272 port->dst_mirrors &= ~mirror_bit;
5277 shash_destroy(&src_ports);
5278 shash_destroy(&dst_ports);