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"
40 #include "dynamic-string.h"
46 #include "mac-learning.h"
50 #include "ofp-print.h"
52 #include "ofproto/netflow.h"
53 #include "ofproto/ofproto.h"
54 #include "ovsdb-data.h"
56 #include "poll-loop.h"
57 #include "proc-net-compat.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_reconfigure);
81 LACP_STATUS_CURRENT, /* Partner is up to date. */
82 LACP_STATUS_EXPIRED, /* Partner is out of date. Attempt to re-sync. */
83 LACP_STATUS_DEFAULTED /* Partner information is unknown. */
92 struct dst builtin[32];
97 static void dst_set_init(struct dst_set *);
98 static void dst_set_add(struct dst_set *, const struct dst *);
99 static void dst_set_free(struct dst_set *);
102 /* These members are always valid. */
103 struct port *port; /* Containing port. */
104 size_t port_ifidx; /* Index within containing port. */
105 char *name; /* Host network device name. */
106 tag_type tag; /* Tag associated with this interface. */
107 long long delay_expires; /* Time after which 'enabled' may change. */
109 /* These members are valid only after bridge_reconfigure() causes them to
111 struct hmap_node dp_ifidx_node; /* In struct bridge's "ifaces" hmap. */
112 int dp_ifidx; /* Index within kernel datapath. */
113 struct netdev *netdev; /* Network device. */
114 bool enabled; /* May be chosen for flows? */
115 bool up; /* Is the interface up? */
116 const char *type; /* Usually same as cfg->type. */
117 struct cfm *cfm; /* Connectivity Fault Management */
118 const struct ovsrec_interface *cfg;
120 /* LACP information. */
121 enum lacp_status lacp_status; /* LACP state machine status. */
122 uint16_t lacp_priority; /* LACP port priority. */
123 struct lacp_info lacp_actor; /* LACP actor information. */
124 struct lacp_info lacp_partner; /* LACP partner information. */
125 long long int lacp_tx; /* Next LACP message transmission time. */
126 long long int lacp_rx; /* Next LACP message receive time. */
127 bool lacp_attached; /* Attached to its aggregator? LACP allows
128 this link to be chosen for flows. */
131 #define BOND_MASK 0xff
133 int iface_idx; /* Index of assigned iface, or -1 if none. */
134 uint64_t tx_bytes; /* Count of bytes recently transmitted. */
135 tag_type iface_tag; /* Tag associated with iface_idx. */
139 BM_TCP, /* Transport Layer Load Balance. */
140 BM_SLB, /* Source Load Balance. */
141 BM_AB /* Active Backup. */
144 #define MAX_MIRRORS 32
145 typedef uint32_t mirror_mask_t;
146 #define MIRROR_MASK_C(X) UINT32_C(X)
147 BUILD_ASSERT_DECL(sizeof(mirror_mask_t) * CHAR_BIT >= MAX_MIRRORS);
149 struct bridge *bridge;
152 struct uuid uuid; /* UUID of this "mirror" record in database. */
154 /* Selection criteria. */
155 struct shash src_ports; /* Name is port name; data is always NULL. */
156 struct shash dst_ports; /* Name is port name; data is always NULL. */
161 struct port *out_port;
165 /* Flags for a port's lacp member. */
166 #define LACP_ACTIVE 0x01 /* LACP is in active mode. */
167 #define LACP_PASSIVE 0x02 /* LACP is in passive mode. */
168 #define LACP_NEGOTIATED 0x04 /* LACP has successfully negotiated. */
170 #define FLOOD_PORT ((struct port *) 1) /* The 'flood' output port. */
172 struct bridge *bridge;
174 int vlan; /* -1=trunk port, else a 12-bit VLAN ID. */
175 unsigned long *trunks; /* Bitmap of trunked VLANs, if 'vlan' == -1.
176 * NULL if all VLANs are trunked. */
177 const struct ovsrec_port *cfg;
180 /* An ordinary bridge port has 1 interface.
181 * A bridge port for bonding has at least 2 interfaces. */
182 struct iface **ifaces;
183 size_t n_ifaces, allocated_ifaces;
186 enum bond_mode bond_mode; /* Type of the bond. BM_SLB is the default. */
187 int active_iface; /* Ifidx on which bcasts accepted, or -1. */
188 tag_type active_iface_tag; /* Tag for bcast flows. */
189 tag_type no_ifaces_tag; /* Tag for flows when all ifaces disabled. */
190 int updelay, downdelay; /* Delay before iface goes up/down, in ms. */
191 bool bond_compat_is_stale; /* Need to call port_update_bond_compat()? */
192 bool bond_fake_iface; /* Fake a bond interface for legacy compat? */
193 bool miimon; /* Use miimon instead of carrier? */
194 long long int bond_miimon_interval; /* Miimon status refresh interval. */
195 long long int bond_miimon_next_update; /* Time of next miimon update. */
196 long long int bond_next_fake_iface_update; /* Time of next update. */
197 struct netdev_monitor *monitor; /* Tracks carrier up/down status. */
199 /* LACP information. */
200 int lacp; /* LACP status flags. 0 if LACP is off. */
201 uint16_t lacp_key; /* LACP aggregation key. */
202 uint16_t lacp_priority; /* LACP system priority. */
203 bool lacp_need_update; /* Need to update attached interfaces? */
205 /* SLB specific bonding info. */
206 struct bond_entry *bond_hash; /* An array of (BOND_MASK + 1) elements. */
207 int bond_rebalance_interval; /* Interval between rebalances, in ms. */
208 long long int bond_next_rebalance; /* Next rebalancing time. */
210 /* Port mirroring info. */
211 mirror_mask_t src_mirrors; /* Mirrors triggered when packet received. */
212 mirror_mask_t dst_mirrors; /* Mirrors triggered when packet sent. */
213 bool is_mirror_output_port; /* Does port mirroring send frames here? */
217 struct list node; /* Node in global list of bridges. */
218 char *name; /* User-specified arbitrary name. */
219 struct mac_learning *ml; /* MAC learning table. */
220 uint8_t ea[ETH_ADDR_LEN]; /* Bridge Ethernet Address. */
221 uint8_t default_ea[ETH_ADDR_LEN]; /* Default MAC. */
222 const struct ovsrec_bridge *cfg;
224 /* OpenFlow switch processing. */
225 struct ofproto *ofproto; /* OpenFlow switch. */
227 /* Kernel datapath information. */
228 struct dpif *dpif; /* Datapath. */
229 struct hmap ifaces; /* Contains "struct iface"s. */
233 size_t n_ports, allocated_ports;
234 struct shash iface_by_name; /* "struct iface"s indexed by name. */
235 struct shash port_by_name; /* "struct port"s indexed by name. */
238 bool has_bonded_ports;
243 /* Port mirroring. */
244 struct mirror *mirrors[MAX_MIRRORS];
247 /* List of all bridges. */
248 static struct list all_bridges = LIST_INITIALIZER(&all_bridges);
250 /* OVSDB IDL used to obtain configuration. */
251 static struct ovsdb_idl *idl;
253 /* Each time this timer expires, the bridge fetches systems and interface
254 * statistics and pushes them into the database. */
255 #define STATS_INTERVAL (5 * 1000) /* In milliseconds. */
256 static long long int stats_timer = LLONG_MIN;
258 static struct bridge *bridge_create(const struct ovsrec_bridge *br_cfg);
259 static void bridge_destroy(struct bridge *);
260 static struct bridge *bridge_lookup(const char *name);
261 static unixctl_cb_func bridge_unixctl_dump_flows;
262 static unixctl_cb_func bridge_unixctl_reconnect;
263 static int bridge_run_one(struct bridge *);
264 static size_t bridge_get_controllers(const struct bridge *br,
265 struct ovsrec_controller ***controllersp);
266 static void bridge_reconfigure_one(struct bridge *);
267 static void bridge_reconfigure_remotes(struct bridge *,
268 const struct sockaddr_in *managers,
270 static void bridge_get_all_ifaces(const struct bridge *, struct shash *ifaces);
271 static void bridge_fetch_dp_ifaces(struct bridge *);
272 static void bridge_flush(struct bridge *);
273 static void bridge_pick_local_hw_addr(struct bridge *,
274 uint8_t ea[ETH_ADDR_LEN],
275 struct iface **hw_addr_iface);
276 static uint64_t bridge_pick_datapath_id(struct bridge *,
277 const uint8_t bridge_ea[ETH_ADDR_LEN],
278 struct iface *hw_addr_iface);
279 static struct iface *bridge_get_local_iface(struct bridge *);
280 static uint64_t dpid_from_hash(const void *, size_t nbytes);
282 static unixctl_cb_func bridge_unixctl_fdb_show;
284 static void lacp_run(struct bridge *);
285 static void lacp_wait(struct bridge *);
286 static void lacp_process_packet(const struct ofpbuf *, struct iface *);
288 static void bond_init(void);
289 static void bond_run(struct bridge *);
290 static void bond_wait(struct bridge *);
291 static void bond_rebalance_port(struct port *);
292 static void bond_send_learning_packets(struct port *);
293 static void bond_enable_slave(struct iface *iface, bool enable);
295 static struct port *port_create(struct bridge *, const char *name);
296 static void port_reconfigure(struct port *, const struct ovsrec_port *);
297 static void port_del_ifaces(struct port *, const struct ovsrec_port *);
298 static void port_destroy(struct port *);
299 static struct port *port_lookup(const struct bridge *, const char *name);
300 static struct iface *port_lookup_iface(const struct port *, const char *name);
301 static struct port *port_from_dp_ifidx(const struct bridge *,
303 static void port_update_bond_compat(struct port *);
304 static void port_update_vlan_compat(struct port *);
305 static void port_update_bonding(struct port *);
306 static void port_update_lacp(struct port *);
308 static void mirror_create(struct bridge *, struct ovsrec_mirror *);
309 static void mirror_destroy(struct mirror *);
310 static void mirror_reconfigure(struct bridge *);
311 static void mirror_reconfigure_one(struct mirror *, struct ovsrec_mirror *);
312 static bool vlan_is_mirrored(const struct mirror *, int vlan);
314 static struct iface *iface_create(struct port *port,
315 const struct ovsrec_interface *if_cfg);
316 static void iface_destroy(struct iface *);
317 static struct iface *iface_lookup(const struct bridge *, const char *name);
318 static struct iface *iface_from_dp_ifidx(const struct bridge *,
320 static void iface_set_mac(struct iface *);
321 static void iface_set_ofport(const struct ovsrec_interface *, int64_t ofport);
322 static void iface_update_qos(struct iface *, const struct ovsrec_qos *);
323 static void iface_update_cfm(struct iface *);
324 static void iface_refresh_cfm_stats(struct iface *iface);
325 static void iface_send_packet(struct iface *, struct ofpbuf *packet);
326 static uint8_t iface_get_lacp_state(const struct iface *);
327 static void iface_get_lacp_priority(struct iface *, struct lacp_info *);
328 static void iface_set_lacp_defaulted(struct iface *);
329 static void iface_set_lacp_expired(struct iface *);
331 static void shash_from_ovs_idl_map(char **keys, char **values, size_t n,
333 static void shash_to_ovs_idl_map(struct shash *,
334 char ***keys, char ***values, size_t *n);
337 /* Hooks into ofproto processing. */
338 static struct ofhooks bridge_ofhooks;
340 /* Public functions. */
342 /* Initializes the bridge module, configuring it to obtain its configuration
343 * from an OVSDB server accessed over 'remote', which should be a string in a
344 * form acceptable to ovsdb_idl_create(). */
346 bridge_init(const char *remote)
348 /* Create connection to database. */
349 idl = ovsdb_idl_create(remote, &ovsrec_idl_class, true);
351 ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_cur_cfg);
352 ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_statistics);
353 ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_external_ids);
355 ovsdb_idl_omit(idl, &ovsrec_bridge_col_external_ids);
357 ovsdb_idl_omit(idl, &ovsrec_port_col_external_ids);
358 ovsdb_idl_omit(idl, &ovsrec_port_col_fake_bridge);
360 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_ofport);
361 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_statistics);
362 ovsdb_idl_omit(idl, &ovsrec_interface_col_external_ids);
364 /* Register unixctl commands. */
365 unixctl_command_register("fdb/show", bridge_unixctl_fdb_show, NULL);
366 unixctl_command_register("bridge/dump-flows", bridge_unixctl_dump_flows,
368 unixctl_command_register("bridge/reconnect", bridge_unixctl_reconnect,
376 struct bridge *br, *next_br;
378 LIST_FOR_EACH_SAFE (br, next_br, node, &all_bridges) {
381 ovsdb_idl_destroy(idl);
384 /* Performs configuration that is only necessary once at ovs-vswitchd startup,
385 * but for which the ovs-vswitchd configuration 'cfg' is required. */
387 bridge_configure_once(const struct ovsrec_open_vswitch *cfg)
389 static bool already_configured_once;
390 struct svec bridge_names;
391 struct svec dpif_names, dpif_types;
394 /* Only do this once per ovs-vswitchd run. */
395 if (already_configured_once) {
398 already_configured_once = true;
400 stats_timer = time_msec() + STATS_INTERVAL;
402 /* Get all the configured bridges' names from 'cfg' into 'bridge_names'. */
403 svec_init(&bridge_names);
404 for (i = 0; i < cfg->n_bridges; i++) {
405 svec_add(&bridge_names, cfg->bridges[i]->name);
407 svec_sort(&bridge_names);
409 /* Iterate over all system dpifs and delete any of them that do not appear
411 svec_init(&dpif_names);
412 svec_init(&dpif_types);
413 dp_enumerate_types(&dpif_types);
414 for (i = 0; i < dpif_types.n; i++) {
417 dp_enumerate_names(dpif_types.names[i], &dpif_names);
419 /* Delete each dpif whose name is not in 'bridge_names'. */
420 for (j = 0; j < dpif_names.n; j++) {
421 if (!svec_contains(&bridge_names, dpif_names.names[j])) {
425 retval = dpif_open(dpif_names.names[j], dpif_types.names[i],
434 svec_destroy(&bridge_names);
435 svec_destroy(&dpif_names);
436 svec_destroy(&dpif_types);
439 /* Callback for iterate_and_prune_ifaces(). */
441 check_iface(struct bridge *br, struct iface *iface, void *aux OVS_UNUSED)
443 if (!iface->netdev) {
444 /* We already reported a related error, don't bother duplicating it. */
448 if (iface->dp_ifidx < 0) {
449 VLOG_ERR("%s interface not in %s, dropping",
450 iface->name, dpif_name(br->dpif));
454 VLOG_DBG("%s has interface %s on port %d", dpif_name(br->dpif),
455 iface->name, iface->dp_ifidx);
459 /* Callback for iterate_and_prune_ifaces(). */
461 set_iface_properties(struct bridge *br OVS_UNUSED, struct iface *iface,
462 void *aux OVS_UNUSED)
464 /* Set policing attributes. */
465 netdev_set_policing(iface->netdev,
466 iface->cfg->ingress_policing_rate,
467 iface->cfg->ingress_policing_burst);
469 /* Set MAC address of internal interfaces other than the local
471 if (iface->dp_ifidx != ODPP_LOCAL && !strcmp(iface->type, "internal")) {
472 iface_set_mac(iface);
478 /* Calls 'cb' for each interfaces in 'br', passing along the 'aux' argument.
479 * Deletes from 'br' all the interfaces for which 'cb' returns false, and then
480 * deletes from 'br' any ports that no longer have any interfaces. */
482 iterate_and_prune_ifaces(struct bridge *br,
483 bool (*cb)(struct bridge *, struct iface *,
489 for (i = 0; i < br->n_ports; ) {
490 struct port *port = br->ports[i];
491 for (j = 0; j < port->n_ifaces; ) {
492 struct iface *iface = port->ifaces[j];
493 if (cb(br, iface, aux)) {
496 iface_set_ofport(iface->cfg, -1);
497 iface_destroy(iface);
501 if (port->n_ifaces) {
504 VLOG_ERR("%s port has no interfaces, dropping", port->name);
510 /* Looks at the list of managers in 'ovs_cfg' and extracts their remote IP
511 * addresses and ports into '*managersp' and '*n_managersp'. The caller is
512 * responsible for freeing '*managersp' (with free()).
514 * You may be asking yourself "why does ovs-vswitchd care?", because
515 * ovsdb-server is responsible for connecting to the managers, and ovs-vswitchd
516 * should not be and in fact is not directly involved in that. But
517 * ovs-vswitchd needs to make sure that ovsdb-server can reach the managers, so
518 * it has to tell in-band control where the managers are to enable that.
519 * (Thus, only managers connected in-band are collected.)
522 collect_in_band_managers(const struct ovsrec_open_vswitch *ovs_cfg,
523 struct sockaddr_in **managersp, size_t *n_managersp)
525 struct sockaddr_in *managers = NULL;
526 size_t n_managers = 0;
527 struct shash targets;
530 /* Collect all of the potential targets, as the union of the "managers"
531 * column and the "targets" columns of the rows pointed to by
532 * "manager_options", excluding any that are out-of-band. */
533 shash_init(&targets);
534 for (i = 0; i < ovs_cfg->n_managers; i++) {
535 shash_add_once(&targets, ovs_cfg->managers[i], NULL);
537 for (i = 0; i < ovs_cfg->n_manager_options; i++) {
538 struct ovsrec_manager *m = ovs_cfg->manager_options[i];
540 if (m->connection_mode && !strcmp(m->connection_mode, "out-of-band")) {
541 shash_find_and_delete(&targets, m->target);
543 shash_add_once(&targets, m->target, NULL);
547 /* Now extract the targets' IP addresses. */
548 if (!shash_is_empty(&targets)) {
549 struct shash_node *node;
551 managers = xmalloc(shash_count(&targets) * sizeof *managers);
552 SHASH_FOR_EACH (node, &targets) {
553 const char *target = node->name;
554 struct sockaddr_in *sin = &managers[n_managers];
556 if ((!strncmp(target, "tcp:", 4)
557 && inet_parse_active(target + 4, JSONRPC_TCP_PORT, sin)) ||
558 (!strncmp(target, "ssl:", 4)
559 && inet_parse_active(target + 4, JSONRPC_SSL_PORT, sin))) {
564 shash_destroy(&targets);
566 *managersp = managers;
567 *n_managersp = n_managers;
571 bridge_reconfigure(const struct ovsrec_open_vswitch *ovs_cfg)
573 struct shash old_br, new_br;
574 struct shash_node *node;
575 struct bridge *br, *next;
576 struct sockaddr_in *managers;
579 int sflow_bridge_number;
581 COVERAGE_INC(bridge_reconfigure);
583 collect_in_band_managers(ovs_cfg, &managers, &n_managers);
585 /* Collect old and new bridges. */
588 LIST_FOR_EACH (br, node, &all_bridges) {
589 shash_add(&old_br, br->name, br);
591 for (i = 0; i < ovs_cfg->n_bridges; i++) {
592 const struct ovsrec_bridge *br_cfg = ovs_cfg->bridges[i];
593 if (!shash_add_once(&new_br, br_cfg->name, br_cfg)) {
594 VLOG_WARN("more than one bridge named %s", br_cfg->name);
598 /* Get rid of deleted bridges and add new bridges. */
599 LIST_FOR_EACH_SAFE (br, next, node, &all_bridges) {
600 struct ovsrec_bridge *br_cfg = shash_find_data(&new_br, br->name);
607 SHASH_FOR_EACH (node, &new_br) {
608 const char *br_name = node->name;
609 const struct ovsrec_bridge *br_cfg = node->data;
610 br = shash_find_data(&old_br, br_name);
612 /* If the bridge datapath type has changed, we need to tear it
613 * down and recreate. */
614 if (strcmp(br->cfg->datapath_type, br_cfg->datapath_type)) {
616 bridge_create(br_cfg);
619 bridge_create(br_cfg);
622 shash_destroy(&old_br);
623 shash_destroy(&new_br);
625 /* Reconfigure all bridges. */
626 LIST_FOR_EACH (br, node, &all_bridges) {
627 bridge_reconfigure_one(br);
630 /* Add and delete ports on all datapaths.
632 * The kernel will reject any attempt to add a given port to a datapath if
633 * that port already belongs to a different datapath, so we must do all
634 * port deletions before any port additions. */
635 LIST_FOR_EACH (br, node, &all_bridges) {
636 struct dpif_port_dump dump;
637 struct shash want_ifaces;
638 struct dpif_port dpif_port;
640 bridge_get_all_ifaces(br, &want_ifaces);
641 DPIF_PORT_FOR_EACH (&dpif_port, &dump, br->dpif) {
642 if (!shash_find(&want_ifaces, dpif_port.name)
643 && strcmp(dpif_port.name, br->name)) {
644 int retval = dpif_port_del(br->dpif, dpif_port.port_no);
646 VLOG_ERR("failed to remove %s interface from %s: %s",
647 dpif_port.name, dpif_name(br->dpif),
652 shash_destroy(&want_ifaces);
654 LIST_FOR_EACH (br, node, &all_bridges) {
655 struct shash cur_ifaces, want_ifaces;
656 struct dpif_port_dump dump;
657 struct dpif_port dpif_port;
659 /* Get the set of interfaces currently in this datapath. */
660 shash_init(&cur_ifaces);
661 DPIF_PORT_FOR_EACH (&dpif_port, &dump, br->dpif) {
662 struct dpif_port *port_info = xmalloc(sizeof *port_info);
663 dpif_port_clone(port_info, &dpif_port);
664 shash_add(&cur_ifaces, dpif_port.name, port_info);
667 /* Get the set of interfaces we want on this datapath. */
668 bridge_get_all_ifaces(br, &want_ifaces);
670 hmap_clear(&br->ifaces);
671 SHASH_FOR_EACH (node, &want_ifaces) {
672 const char *if_name = node->name;
673 struct iface *iface = node->data;
674 struct dpif_port *dpif_port;
678 type = iface ? iface->type : "internal";
679 dpif_port = shash_find_data(&cur_ifaces, if_name);
681 /* If we have a port or a netdev already, and it's not the type we
682 * want, then delete the port (if any) and close the netdev (if
684 if ((dpif_port && strcmp(dpif_port->type, type))
685 || (iface && iface->netdev
686 && strcmp(type, netdev_get_type(iface->netdev)))) {
688 error = ofproto_port_del(br->ofproto, dpif_port->port_no);
695 netdev_close(iface->netdev);
696 iface->netdev = NULL;
700 /* If the port doesn't exist or we don't have the netdev open,
701 * we need to do more work. */
702 if (!dpif_port || (iface && !iface->netdev)) {
703 struct netdev_options options;
704 struct netdev *netdev;
707 /* First open the network device. */
708 options.name = if_name;
710 options.args = &args;
711 options.ethertype = NETDEV_ETH_TYPE_NONE;
715 shash_from_ovs_idl_map(iface->cfg->key_options,
716 iface->cfg->value_options,
717 iface->cfg->n_options, &args);
719 error = netdev_open(&options, &netdev);
720 shash_destroy(&args);
723 VLOG_WARN("could not open network device %s (%s)",
724 if_name, strerror(error));
728 /* Then add the port if we haven't already. */
730 error = dpif_port_add(br->dpif, netdev, NULL);
732 netdev_close(netdev);
733 if (error == EFBIG) {
734 VLOG_ERR("ran out of valid port numbers on %s",
735 dpif_name(br->dpif));
738 VLOG_ERR("failed to add %s interface to %s: %s",
739 if_name, dpif_name(br->dpif),
746 /* Update 'iface'. */
748 iface->netdev = netdev;
749 iface->enabled = netdev_get_carrier(iface->netdev);
750 iface->up = iface->enabled;
752 } else if (iface && iface->netdev) {
756 shash_from_ovs_idl_map(iface->cfg->key_options,
757 iface->cfg->value_options,
758 iface->cfg->n_options, &args);
759 netdev_set_config(iface->netdev, &args);
760 shash_destroy(&args);
763 shash_destroy(&want_ifaces);
765 SHASH_FOR_EACH (node, &cur_ifaces) {
766 struct dpif_port *port_info = node->data;
767 dpif_port_destroy(port_info);
770 shash_destroy(&cur_ifaces);
772 sflow_bridge_number = 0;
773 LIST_FOR_EACH (br, node, &all_bridges) {
776 struct iface *local_iface;
777 struct iface *hw_addr_iface;
780 bridge_fetch_dp_ifaces(br);
782 iterate_and_prune_ifaces(br, check_iface, NULL);
784 /* Pick local port hardware address, datapath ID. */
785 bridge_pick_local_hw_addr(br, ea, &hw_addr_iface);
786 local_iface = bridge_get_local_iface(br);
788 int error = netdev_set_etheraddr(local_iface->netdev, ea);
790 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
791 VLOG_ERR_RL(&rl, "bridge %s: failed to set bridge "
792 "Ethernet address: %s",
793 br->name, strerror(error));
796 memcpy(br->ea, ea, ETH_ADDR_LEN);
798 dpid = bridge_pick_datapath_id(br, ea, hw_addr_iface);
799 ofproto_set_datapath_id(br->ofproto, dpid);
801 dpid_string = xasprintf("%016"PRIx64, dpid);
802 ovsrec_bridge_set_datapath_id(br->cfg, dpid_string);
805 /* Set NetFlow configuration on this bridge. */
806 if (br->cfg->netflow) {
807 struct ovsrec_netflow *nf_cfg = br->cfg->netflow;
808 struct netflow_options opts;
810 memset(&opts, 0, sizeof opts);
812 dpif_get_netflow_ids(br->dpif, &opts.engine_type, &opts.engine_id);
813 if (nf_cfg->engine_type) {
814 opts.engine_type = *nf_cfg->engine_type;
816 if (nf_cfg->engine_id) {
817 opts.engine_id = *nf_cfg->engine_id;
820 opts.active_timeout = nf_cfg->active_timeout;
821 if (!opts.active_timeout) {
822 opts.active_timeout = -1;
823 } else if (opts.active_timeout < 0) {
824 VLOG_WARN("bridge %s: active timeout interval set to negative "
825 "value, using default instead (%d seconds)", br->name,
826 NF_ACTIVE_TIMEOUT_DEFAULT);
827 opts.active_timeout = -1;
830 opts.add_id_to_iface = nf_cfg->add_id_to_interface;
831 if (opts.add_id_to_iface) {
832 if (opts.engine_id > 0x7f) {
833 VLOG_WARN("bridge %s: netflow port mangling may conflict "
834 "with another vswitch, choose an engine id less "
835 "than 128", br->name);
837 if (br->n_ports > 508) {
838 VLOG_WARN("bridge %s: netflow port mangling will conflict "
839 "with another port when more than 508 ports are "
844 opts.collectors.n = nf_cfg->n_targets;
845 opts.collectors.names = nf_cfg->targets;
846 if (ofproto_set_netflow(br->ofproto, &opts)) {
847 VLOG_ERR("bridge %s: problem setting netflow collectors",
851 ofproto_set_netflow(br->ofproto, NULL);
854 /* Set sFlow configuration on this bridge. */
855 if (br->cfg->sflow) {
856 const struct ovsrec_sflow *sflow_cfg = br->cfg->sflow;
857 struct ovsrec_controller **controllers;
858 struct ofproto_sflow_options oso;
859 size_t n_controllers;
861 memset(&oso, 0, sizeof oso);
863 oso.targets.n = sflow_cfg->n_targets;
864 oso.targets.names = sflow_cfg->targets;
866 oso.sampling_rate = SFL_DEFAULT_SAMPLING_RATE;
867 if (sflow_cfg->sampling) {
868 oso.sampling_rate = *sflow_cfg->sampling;
871 oso.polling_interval = SFL_DEFAULT_POLLING_INTERVAL;
872 if (sflow_cfg->polling) {
873 oso.polling_interval = *sflow_cfg->polling;
876 oso.header_len = SFL_DEFAULT_HEADER_SIZE;
877 if (sflow_cfg->header) {
878 oso.header_len = *sflow_cfg->header;
881 oso.sub_id = sflow_bridge_number++;
882 oso.agent_device = sflow_cfg->agent;
884 oso.control_ip = NULL;
885 n_controllers = bridge_get_controllers(br, &controllers);
886 for (i = 0; i < n_controllers; i++) {
887 if (controllers[i]->local_ip) {
888 oso.control_ip = controllers[i]->local_ip;
892 ofproto_set_sflow(br->ofproto, &oso);
894 /* Do not destroy oso.targets because it is owned by sflow_cfg. */
896 ofproto_set_sflow(br->ofproto, NULL);
899 /* Update the controller and related settings. It would be more
900 * straightforward to call this from bridge_reconfigure_one(), but we
901 * can't do it there for two reasons. First, and most importantly, at
902 * that point we don't know the dp_ifidx of any interfaces that have
903 * been added to the bridge (because we haven't actually added them to
904 * the datapath). Second, at that point we haven't set the datapath ID
905 * yet; when a controller is configured, resetting the datapath ID will
906 * immediately disconnect from the controller, so it's better to set
907 * the datapath ID before the controller. */
908 bridge_reconfigure_remotes(br, managers, n_managers);
910 LIST_FOR_EACH (br, node, &all_bridges) {
911 for (i = 0; i < br->n_ports; i++) {
912 struct port *port = br->ports[i];
915 port_update_vlan_compat(port);
916 port_update_bonding(port);
917 port_update_lacp(port);
919 for (j = 0; j < port->n_ifaces; j++) {
920 iface_update_qos(port->ifaces[j], port->cfg->qos);
924 LIST_FOR_EACH (br, node, &all_bridges) {
925 iterate_and_prune_ifaces(br, set_iface_properties, NULL);
928 LIST_FOR_EACH (br, node, &all_bridges) {
930 HMAP_FOR_EACH (iface, dp_ifidx_node, &br->ifaces) {
931 iface_update_cfm(iface);
939 get_ovsrec_key_value(const struct ovsdb_idl_row *row,
940 const struct ovsdb_idl_column *column,
943 const struct ovsdb_datum *datum;
944 union ovsdb_atom atom;
947 datum = ovsdb_idl_get(row, column, OVSDB_TYPE_STRING, OVSDB_TYPE_STRING);
948 atom.string = (char *) key;
949 idx = ovsdb_datum_find_key(datum, &atom, OVSDB_TYPE_STRING);
950 return idx == UINT_MAX ? NULL : datum->values[idx].string;
954 bridge_get_other_config(const struct ovsrec_bridge *br_cfg, const char *key)
956 return get_ovsrec_key_value(&br_cfg->header_,
957 &ovsrec_bridge_col_other_config, key);
961 bridge_pick_local_hw_addr(struct bridge *br, uint8_t ea[ETH_ADDR_LEN],
962 struct iface **hw_addr_iface)
968 *hw_addr_iface = NULL;
970 /* Did the user request a particular MAC? */
971 hwaddr = bridge_get_other_config(br->cfg, "hwaddr");
972 if (hwaddr && eth_addr_from_string(hwaddr, ea)) {
973 if (eth_addr_is_multicast(ea)) {
974 VLOG_ERR("bridge %s: cannot set MAC address to multicast "
975 "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
976 } else if (eth_addr_is_zero(ea)) {
977 VLOG_ERR("bridge %s: cannot set MAC address to zero", br->name);
983 /* Otherwise choose the minimum non-local MAC address among all of the
985 memset(ea, 0xff, sizeof ea);
986 for (i = 0; i < br->n_ports; i++) {
987 struct port *port = br->ports[i];
988 uint8_t iface_ea[ETH_ADDR_LEN];
991 /* Mirror output ports don't participate. */
992 if (port->is_mirror_output_port) {
996 /* Choose the MAC address to represent the port. */
997 if (port->cfg->mac && eth_addr_from_string(port->cfg->mac, iface_ea)) {
998 /* Find the interface with this Ethernet address (if any) so that
999 * we can provide the correct devname to the caller. */
1001 for (j = 0; j < port->n_ifaces; j++) {
1002 struct iface *candidate = port->ifaces[j];
1003 uint8_t candidate_ea[ETH_ADDR_LEN];
1004 if (!netdev_get_etheraddr(candidate->netdev, candidate_ea)
1005 && eth_addr_equals(iface_ea, candidate_ea)) {
1010 /* Choose the interface whose MAC address will represent the port.
1011 * The Linux kernel bonding code always chooses the MAC address of
1012 * the first slave added to a bond, and the Fedora networking
1013 * scripts always add slaves to a bond in alphabetical order, so
1014 * for compatibility we choose the interface with the name that is
1015 * first in alphabetical order. */
1016 iface = port->ifaces[0];
1017 for (j = 1; j < port->n_ifaces; j++) {
1018 struct iface *candidate = port->ifaces[j];
1019 if (strcmp(candidate->name, iface->name) < 0) {
1024 /* The local port doesn't count (since we're trying to choose its
1025 * MAC address anyway). */
1026 if (iface->dp_ifidx == ODPP_LOCAL) {
1031 error = netdev_get_etheraddr(iface->netdev, iface_ea);
1033 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1034 VLOG_ERR_RL(&rl, "failed to obtain Ethernet address of %s: %s",
1035 iface->name, strerror(error));
1040 /* Compare against our current choice. */
1041 if (!eth_addr_is_multicast(iface_ea) &&
1042 !eth_addr_is_local(iface_ea) &&
1043 !eth_addr_is_reserved(iface_ea) &&
1044 !eth_addr_is_zero(iface_ea) &&
1045 eth_addr_compare_3way(iface_ea, ea) < 0)
1047 memcpy(ea, iface_ea, ETH_ADDR_LEN);
1048 *hw_addr_iface = iface;
1051 if (eth_addr_is_multicast(ea)) {
1052 memcpy(ea, br->default_ea, ETH_ADDR_LEN);
1053 *hw_addr_iface = NULL;
1054 VLOG_WARN("bridge %s: using default bridge Ethernet "
1055 "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
1057 VLOG_DBG("bridge %s: using bridge Ethernet address "ETH_ADDR_FMT,
1058 br->name, ETH_ADDR_ARGS(ea));
1062 /* Choose and returns the datapath ID for bridge 'br' given that the bridge
1063 * Ethernet address is 'bridge_ea'. If 'bridge_ea' is the Ethernet address of
1064 * an interface on 'br', then that interface must be passed in as
1065 * 'hw_addr_iface'; if 'bridge_ea' was derived some other way, then
1066 * 'hw_addr_iface' must be passed in as a null pointer. */
1068 bridge_pick_datapath_id(struct bridge *br,
1069 const uint8_t bridge_ea[ETH_ADDR_LEN],
1070 struct iface *hw_addr_iface)
1073 * The procedure for choosing a bridge MAC address will, in the most
1074 * ordinary case, also choose a unique MAC that we can use as a datapath
1075 * ID. In some special cases, though, multiple bridges will end up with
1076 * the same MAC address. This is OK for the bridges, but it will confuse
1077 * the OpenFlow controller, because each datapath needs a unique datapath
1080 * Datapath IDs must be unique. It is also very desirable that they be
1081 * stable from one run to the next, so that policy set on a datapath
1084 const char *datapath_id;
1087 datapath_id = bridge_get_other_config(br->cfg, "datapath-id");
1088 if (datapath_id && dpid_from_string(datapath_id, &dpid)) {
1092 if (hw_addr_iface) {
1094 if (!netdev_get_vlan_vid(hw_addr_iface->netdev, &vlan)) {
1096 * A bridge whose MAC address is taken from a VLAN network device
1097 * (that is, a network device created with vconfig(8) or similar
1098 * tool) will have the same MAC address as a bridge on the VLAN
1099 * device's physical network device.
1101 * Handle this case by hashing the physical network device MAC
1102 * along with the VLAN identifier.
1104 uint8_t buf[ETH_ADDR_LEN + 2];
1105 memcpy(buf, bridge_ea, ETH_ADDR_LEN);
1106 buf[ETH_ADDR_LEN] = vlan >> 8;
1107 buf[ETH_ADDR_LEN + 1] = vlan;
1108 return dpid_from_hash(buf, sizeof buf);
1111 * Assume that this bridge's MAC address is unique, since it
1112 * doesn't fit any of the cases we handle specially.
1117 * A purely internal bridge, that is, one that has no non-virtual
1118 * network devices on it at all, is more difficult because it has no
1119 * natural unique identifier at all.
1121 * When the host is a XenServer, we handle this case by hashing the
1122 * host's UUID with the name of the bridge. Names of bridges are
1123 * persistent across XenServer reboots, although they can be reused if
1124 * an internal network is destroyed and then a new one is later
1125 * created, so this is fairly effective.
1127 * When the host is not a XenServer, we punt by using a random MAC
1128 * address on each run.
1130 const char *host_uuid = xenserver_get_host_uuid();
1132 char *combined = xasprintf("%s,%s", host_uuid, br->name);
1133 dpid = dpid_from_hash(combined, strlen(combined));
1139 return eth_addr_to_uint64(bridge_ea);
1143 dpid_from_hash(const void *data, size_t n)
1145 uint8_t hash[SHA1_DIGEST_SIZE];
1147 BUILD_ASSERT_DECL(sizeof hash >= ETH_ADDR_LEN);
1148 sha1_bytes(data, n, hash);
1149 eth_addr_mark_random(hash);
1150 return eth_addr_to_uint64(hash);
1154 iface_refresh_status(struct iface *iface)
1158 enum netdev_flags flags;
1167 if (!netdev_get_status(iface->netdev, &sh)) {
1169 char **keys, **values;
1171 shash_to_ovs_idl_map(&sh, &keys, &values, &n);
1172 ovsrec_interface_set_status(iface->cfg, keys, values, n);
1177 ovsrec_interface_set_status(iface->cfg, NULL, NULL, 0);
1180 shash_destroy_free_data(&sh);
1182 error = netdev_get_flags(iface->netdev, &flags);
1184 ovsrec_interface_set_admin_state(iface->cfg, flags & NETDEV_UP ? "up" : "down");
1187 ovsrec_interface_set_admin_state(iface->cfg, NULL);
1190 error = netdev_get_features(iface->netdev, ¤t, NULL, NULL, NULL);
1192 ovsrec_interface_set_duplex(iface->cfg,
1193 netdev_features_is_full_duplex(current)
1195 /* warning: uint64_t -> int64_t conversion */
1196 bps = netdev_features_to_bps(current);
1197 ovsrec_interface_set_link_speed(iface->cfg, &bps, 1);
1200 ovsrec_interface_set_duplex(iface->cfg, NULL);
1201 ovsrec_interface_set_link_speed(iface->cfg, NULL, 0);
1205 ovsrec_interface_set_link_state(iface->cfg,
1206 netdev_get_carrier(iface->netdev)
1209 error = netdev_get_mtu(iface->netdev, &mtu);
1210 if (!error && mtu != INT_MAX) {
1212 ovsrec_interface_set_mtu(iface->cfg, &mtu_64, 1);
1215 ovsrec_interface_set_mtu(iface->cfg, NULL, 0);
1220 iface_refresh_cfm_stats(struct iface *iface)
1224 const struct ovsrec_monitor *mon;
1226 mon = iface->cfg->monitor;
1233 for (i = 0; i < mon->n_remote_mps; i++) {
1234 const struct ovsrec_maintenance_point *mp;
1235 const struct remote_mp *rmp;
1237 mp = mon->remote_mps[i];
1238 rmp = cfm_get_remote_mp(cfm, mp->mpid);
1240 ovsrec_maintenance_point_set_fault(mp, &rmp->fault, 1);
1243 if (hmap_is_empty(&cfm->x_remote_mps)) {
1244 ovsrec_monitor_set_unexpected_remote_mpids(mon, NULL, 0);
1247 struct remote_mp *rmp;
1248 int64_t *x_remote_mps;
1250 length = hmap_count(&cfm->x_remote_mps);
1251 x_remote_mps = xzalloc(length * sizeof *x_remote_mps);
1254 HMAP_FOR_EACH (rmp, node, &cfm->x_remote_mps) {
1255 x_remote_mps[i++] = rmp->mpid;
1258 ovsrec_monitor_set_unexpected_remote_mpids(mon, x_remote_mps, length);
1262 if (hmap_is_empty(&cfm->x_remote_maids)) {
1263 ovsrec_monitor_set_unexpected_remote_maids(mon, NULL, 0);
1266 char **x_remote_maids;
1267 struct remote_maid *rmaid;
1269 length = hmap_count(&cfm->x_remote_maids);
1270 x_remote_maids = xzalloc(length * sizeof *x_remote_maids);
1273 HMAP_FOR_EACH (rmaid, node, &cfm->x_remote_maids) {
1276 x_remote_maids[i] = xzalloc(CCM_MAID_LEN * 2 + 1);
1278 for (j = 0; j < CCM_MAID_LEN; j++) {
1279 snprintf(&x_remote_maids[i][j * 2], 3, "%02hhx",
1284 ovsrec_monitor_set_unexpected_remote_maids(mon, x_remote_maids, length);
1286 for (i = 0; i < length; i++) {
1287 free(x_remote_maids[i]);
1289 free(x_remote_maids);
1292 ovsrec_monitor_set_fault(mon, &cfm->fault, 1);
1296 iface_refresh_stats(struct iface *iface)
1302 static const struct iface_stat iface_stats[] = {
1303 { "rx_packets", offsetof(struct netdev_stats, rx_packets) },
1304 { "tx_packets", offsetof(struct netdev_stats, tx_packets) },
1305 { "rx_bytes", offsetof(struct netdev_stats, rx_bytes) },
1306 { "tx_bytes", offsetof(struct netdev_stats, tx_bytes) },
1307 { "rx_dropped", offsetof(struct netdev_stats, rx_dropped) },
1308 { "tx_dropped", offsetof(struct netdev_stats, tx_dropped) },
1309 { "rx_errors", offsetof(struct netdev_stats, rx_errors) },
1310 { "tx_errors", offsetof(struct netdev_stats, tx_errors) },
1311 { "rx_frame_err", offsetof(struct netdev_stats, rx_frame_errors) },
1312 { "rx_over_err", offsetof(struct netdev_stats, rx_over_errors) },
1313 { "rx_crc_err", offsetof(struct netdev_stats, rx_crc_errors) },
1314 { "collisions", offsetof(struct netdev_stats, collisions) },
1316 enum { N_STATS = ARRAY_SIZE(iface_stats) };
1317 const struct iface_stat *s;
1319 char *keys[N_STATS];
1320 int64_t values[N_STATS];
1323 struct netdev_stats stats;
1325 /* Intentionally ignore return value, since errors will set 'stats' to
1326 * all-1s, and we will deal with that correctly below. */
1327 netdev_get_stats(iface->netdev, &stats);
1330 for (s = iface_stats; s < &iface_stats[N_STATS]; s++) {
1331 uint64_t value = *(uint64_t *) (((char *) &stats) + s->offset);
1332 if (value != UINT64_MAX) {
1339 ovsrec_interface_set_statistics(iface->cfg, keys, values, n);
1343 refresh_system_stats(const struct ovsrec_open_vswitch *cfg)
1345 struct ovsdb_datum datum;
1349 get_system_stats(&stats);
1351 ovsdb_datum_from_shash(&datum, &stats);
1352 ovsdb_idl_txn_write(&cfg->header_, &ovsrec_open_vswitch_col_statistics,
1356 static inline const char *
1357 nx_role_to_str(enum nx_role role)
1362 case NX_ROLE_MASTER:
1367 return "*** INVALID ROLE ***";
1372 bridge_refresh_controller_status(const struct bridge *br)
1375 const struct ovsrec_controller *cfg;
1377 ofproto_get_ofproto_controller_info(br->ofproto, &info);
1379 OVSREC_CONTROLLER_FOR_EACH(cfg, idl) {
1380 struct ofproto_controller_info *cinfo =
1381 shash_find_data(&info, cfg->target);
1384 ovsrec_controller_set_is_connected(cfg, cinfo->is_connected);
1385 ovsrec_controller_set_role(cfg, nx_role_to_str(cinfo->role));
1386 ovsrec_controller_set_status(cfg, (char **) cinfo->pairs.keys,
1387 (char **) cinfo->pairs.values,
1390 ovsrec_controller_set_is_connected(cfg, false);
1391 ovsrec_controller_set_role(cfg, NULL);
1392 ovsrec_controller_set_status(cfg, NULL, NULL, 0);
1396 ofproto_free_ofproto_controller_info(&info);
1402 const struct ovsrec_open_vswitch *cfg;
1404 bool datapath_destroyed;
1405 bool database_changed;
1408 /* Let each bridge do the work that it needs to do. */
1409 datapath_destroyed = false;
1410 LIST_FOR_EACH (br, node, &all_bridges) {
1411 int error = bridge_run_one(br);
1413 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1414 VLOG_ERR_RL(&rl, "bridge %s: datapath was destroyed externally, "
1415 "forcing reconfiguration", br->name);
1416 datapath_destroyed = true;
1420 /* (Re)configure if necessary. */
1421 database_changed = ovsdb_idl_run(idl);
1422 cfg = ovsrec_open_vswitch_first(idl);
1424 /* Re-configure SSL. We do this on every trip through the main loop,
1425 * instead of just when the database changes, because the contents of the
1426 * key and certificate files can change without the database changing.
1428 * We do this before bridge_reconfigure() because that function might
1429 * initiate SSL connections and thus requires SSL to be configured. */
1430 if (cfg && cfg->ssl) {
1431 const struct ovsrec_ssl *ssl = cfg->ssl;
1433 stream_ssl_set_key_and_cert(ssl->private_key, ssl->certificate);
1434 stream_ssl_set_ca_cert_file(ssl->ca_cert, ssl->bootstrap_ca_cert);
1437 if (database_changed || datapath_destroyed) {
1439 struct ovsdb_idl_txn *txn = ovsdb_idl_txn_create(idl);
1441 bridge_configure_once(cfg);
1442 bridge_reconfigure(cfg);
1444 ovsrec_open_vswitch_set_cur_cfg(cfg, cfg->next_cfg);
1445 ovsdb_idl_txn_commit(txn);
1446 ovsdb_idl_txn_destroy(txn); /* XXX */
1448 /* We still need to reconfigure to avoid dangling pointers to
1449 * now-destroyed ovsrec structures inside bridge data. */
1450 static const struct ovsrec_open_vswitch null_cfg;
1452 bridge_reconfigure(&null_cfg);
1456 /* Refresh system and interface stats if necessary. */
1457 if (time_msec() >= stats_timer) {
1459 struct ovsdb_idl_txn *txn;
1461 txn = ovsdb_idl_txn_create(idl);
1462 LIST_FOR_EACH (br, node, &all_bridges) {
1465 for (i = 0; i < br->n_ports; i++) {
1466 struct port *port = br->ports[i];
1469 for (j = 0; j < port->n_ifaces; j++) {
1470 struct iface *iface = port->ifaces[j];
1471 iface_refresh_stats(iface);
1472 iface_refresh_cfm_stats(iface);
1473 iface_refresh_status(iface);
1476 bridge_refresh_controller_status(br);
1478 refresh_system_stats(cfg);
1479 ovsdb_idl_txn_commit(txn);
1480 ovsdb_idl_txn_destroy(txn); /* XXX */
1483 stats_timer = time_msec() + STATS_INTERVAL;
1491 struct iface *iface;
1493 LIST_FOR_EACH (br, node, &all_bridges) {
1494 ofproto_wait(br->ofproto);
1495 if (ofproto_has_primary_controller(br->ofproto)) {
1499 mac_learning_wait(br->ml);
1503 HMAP_FOR_EACH (iface, dp_ifidx_node, &br->ifaces) {
1505 cfm_wait(iface->cfm);
1509 ovsdb_idl_wait(idl);
1510 poll_timer_wait_until(stats_timer);
1513 /* Forces 'br' to revalidate all of its flows. This is appropriate when 'br''s
1514 * configuration changes. */
1516 bridge_flush(struct bridge *br)
1518 COVERAGE_INC(bridge_flush);
1520 mac_learning_flush(br->ml);
1523 /* Returns the 'br' interface for the ODPP_LOCAL port, or null if 'br' has no
1524 * such interface. */
1525 static struct iface *
1526 bridge_get_local_iface(struct bridge *br)
1530 for (i = 0; i < br->n_ports; i++) {
1531 struct port *port = br->ports[i];
1532 for (j = 0; j < port->n_ifaces; j++) {
1533 struct iface *iface = port->ifaces[j];
1534 if (iface->dp_ifidx == ODPP_LOCAL) {
1543 /* Bridge unixctl user interface functions. */
1545 bridge_unixctl_fdb_show(struct unixctl_conn *conn,
1546 const char *args, void *aux OVS_UNUSED)
1548 struct ds ds = DS_EMPTY_INITIALIZER;
1549 const struct bridge *br;
1550 const struct mac_entry *e;
1552 br = bridge_lookup(args);
1554 unixctl_command_reply(conn, 501, "no such bridge");
1558 ds_put_cstr(&ds, " port VLAN MAC Age\n");
1559 LIST_FOR_EACH (e, lru_node, &br->ml->lrus) {
1560 if (e->port < 0 || e->port >= br->n_ports) {
1563 ds_put_format(&ds, "%5d %4d "ETH_ADDR_FMT" %3d\n",
1564 br->ports[e->port]->ifaces[0]->dp_ifidx,
1565 e->vlan, ETH_ADDR_ARGS(e->mac), mac_entry_age(e));
1567 unixctl_command_reply(conn, 200, ds_cstr(&ds));
1571 /* Bridge reconfiguration functions. */
1572 static struct bridge *
1573 bridge_create(const struct ovsrec_bridge *br_cfg)
1578 assert(!bridge_lookup(br_cfg->name));
1579 br = xzalloc(sizeof *br);
1581 error = dpif_create_and_open(br_cfg->name, br_cfg->datapath_type,
1587 dpif_flow_flush(br->dpif);
1589 error = ofproto_create(br_cfg->name, br_cfg->datapath_type, &bridge_ofhooks,
1592 VLOG_ERR("failed to create switch %s: %s", br_cfg->name,
1594 dpif_delete(br->dpif);
1595 dpif_close(br->dpif);
1600 br->name = xstrdup(br_cfg->name);
1602 br->ml = mac_learning_create();
1603 eth_addr_nicira_random(br->default_ea);
1605 hmap_init(&br->ifaces);
1607 shash_init(&br->port_by_name);
1608 shash_init(&br->iface_by_name);
1612 list_push_back(&all_bridges, &br->node);
1614 VLOG_INFO("created bridge %s on %s", br->name, dpif_name(br->dpif));
1620 bridge_destroy(struct bridge *br)
1625 while (br->n_ports > 0) {
1626 port_destroy(br->ports[br->n_ports - 1]);
1628 list_remove(&br->node);
1629 error = dpif_delete(br->dpif);
1630 if (error && error != ENOENT) {
1631 VLOG_ERR("failed to delete %s: %s",
1632 dpif_name(br->dpif), strerror(error));
1634 dpif_close(br->dpif);
1635 ofproto_destroy(br->ofproto);
1636 mac_learning_destroy(br->ml);
1637 hmap_destroy(&br->ifaces);
1638 shash_destroy(&br->port_by_name);
1639 shash_destroy(&br->iface_by_name);
1646 static struct bridge *
1647 bridge_lookup(const char *name)
1651 LIST_FOR_EACH (br, node, &all_bridges) {
1652 if (!strcmp(br->name, name)) {
1659 /* Handle requests for a listing of all flows known by the OpenFlow
1660 * stack, including those normally hidden. */
1662 bridge_unixctl_dump_flows(struct unixctl_conn *conn,
1663 const char *args, void *aux OVS_UNUSED)
1668 br = bridge_lookup(args);
1670 unixctl_command_reply(conn, 501, "Unknown bridge");
1675 ofproto_get_all_flows(br->ofproto, &results);
1677 unixctl_command_reply(conn, 200, ds_cstr(&results));
1678 ds_destroy(&results);
1681 /* "bridge/reconnect [BRIDGE]": makes BRIDGE drop all of its controller
1682 * connections and reconnect. If BRIDGE is not specified, then all bridges
1683 * drop their controller connections and reconnect. */
1685 bridge_unixctl_reconnect(struct unixctl_conn *conn,
1686 const char *args, void *aux OVS_UNUSED)
1689 if (args[0] != '\0') {
1690 br = bridge_lookup(args);
1692 unixctl_command_reply(conn, 501, "Unknown bridge");
1695 ofproto_reconnect_controllers(br->ofproto);
1697 LIST_FOR_EACH (br, node, &all_bridges) {
1698 ofproto_reconnect_controllers(br->ofproto);
1701 unixctl_command_reply(conn, 200, NULL);
1705 bridge_run_one(struct bridge *br)
1708 struct iface *iface;
1710 error = ofproto_run1(br->ofproto);
1715 mac_learning_run(br->ml, ofproto_get_revalidate_set(br->ofproto));
1719 error = ofproto_run2(br->ofproto, br->flush);
1722 HMAP_FOR_EACH (iface, dp_ifidx_node, &br->ifaces) {
1723 struct ofpbuf *packet;
1729 packet = cfm_run(iface->cfm);
1731 iface_send_packet(iface, packet);
1732 ofpbuf_uninit(packet);
1741 bridge_get_controllers(const struct bridge *br,
1742 struct ovsrec_controller ***controllersp)
1744 struct ovsrec_controller **controllers;
1745 size_t n_controllers;
1747 controllers = br->cfg->controller;
1748 n_controllers = br->cfg->n_controller;
1750 if (n_controllers == 1 && !strcmp(controllers[0]->target, "none")) {
1756 *controllersp = controllers;
1758 return n_controllers;
1762 bridge_reconfigure_one(struct bridge *br)
1764 struct shash old_ports, new_ports;
1765 struct svec snoops, old_snoops;
1766 struct shash_node *node;
1767 enum ofproto_fail_mode fail_mode;
1770 /* Collect old ports. */
1771 shash_init(&old_ports);
1772 for (i = 0; i < br->n_ports; i++) {
1773 shash_add(&old_ports, br->ports[i]->name, br->ports[i]);
1776 /* Collect new ports. */
1777 shash_init(&new_ports);
1778 for (i = 0; i < br->cfg->n_ports; i++) {
1779 const char *name = br->cfg->ports[i]->name;
1780 if (!shash_add_once(&new_ports, name, br->cfg->ports[i])) {
1781 VLOG_WARN("bridge %s: %s specified twice as bridge port",
1786 /* If we have a controller, then we need a local port. Complain if the
1787 * user didn't specify one.
1789 * XXX perhaps we should synthesize a port ourselves in this case. */
1790 if (bridge_get_controllers(br, NULL)) {
1791 char local_name[IF_NAMESIZE];
1794 error = dpif_port_get_name(br->dpif, ODPP_LOCAL,
1795 local_name, sizeof local_name);
1796 if (!error && !shash_find(&new_ports, local_name)) {
1797 VLOG_WARN("bridge %s: controller specified but no local port "
1798 "(port named %s) defined",
1799 br->name, local_name);
1803 /* Get rid of deleted ports.
1804 * Get rid of deleted interfaces on ports that still exist. */
1805 SHASH_FOR_EACH (node, &old_ports) {
1806 struct port *port = node->data;
1807 const struct ovsrec_port *port_cfg;
1809 port_cfg = shash_find_data(&new_ports, node->name);
1813 port_del_ifaces(port, port_cfg);
1817 /* Create new ports.
1818 * Add new interfaces to existing ports.
1819 * Reconfigure existing ports. */
1820 SHASH_FOR_EACH (node, &new_ports) {
1821 struct port *port = shash_find_data(&old_ports, node->name);
1823 port = port_create(br, node->name);
1826 port_reconfigure(port, node->data);
1827 if (!port->n_ifaces) {
1828 VLOG_WARN("bridge %s: port %s has no interfaces, dropping",
1829 br->name, port->name);
1833 shash_destroy(&old_ports);
1834 shash_destroy(&new_ports);
1836 /* Set the fail-mode */
1837 fail_mode = !br->cfg->fail_mode
1838 || !strcmp(br->cfg->fail_mode, "standalone")
1839 ? OFPROTO_FAIL_STANDALONE
1840 : OFPROTO_FAIL_SECURE;
1841 if (ofproto_get_fail_mode(br->ofproto) != fail_mode
1842 && !ofproto_has_primary_controller(br->ofproto)) {
1843 ofproto_flush_flows(br->ofproto);
1845 ofproto_set_fail_mode(br->ofproto, fail_mode);
1847 /* Delete all flows if we're switching from connected to standalone or vice
1848 * versa. (XXX Should we delete all flows if we are switching from one
1849 * controller to another?) */
1851 /* Configure OpenFlow controller connection snooping. */
1853 svec_add_nocopy(&snoops, xasprintf("punix:%s/%s.snoop",
1854 ovs_rundir(), br->name));
1855 svec_init(&old_snoops);
1856 ofproto_get_snoops(br->ofproto, &old_snoops);
1857 if (!svec_equal(&snoops, &old_snoops)) {
1858 ofproto_set_snoops(br->ofproto, &snoops);
1860 svec_destroy(&snoops);
1861 svec_destroy(&old_snoops);
1863 mirror_reconfigure(br);
1866 /* Initializes 'oc' appropriately as a management service controller for
1869 * The caller must free oc->target when it is no longer needed. */
1871 bridge_ofproto_controller_for_mgmt(const struct bridge *br,
1872 struct ofproto_controller *oc)
1874 oc->target = xasprintf("punix:%s/%s.mgmt", ovs_rundir(), br->name);
1875 oc->max_backoff = 0;
1876 oc->probe_interval = 60;
1877 oc->band = OFPROTO_OUT_OF_BAND;
1878 oc->accept_re = NULL;
1879 oc->update_resolv_conf = false;
1881 oc->burst_limit = 0;
1884 /* Converts ovsrec_controller 'c' into an ofproto_controller in 'oc'. */
1886 bridge_ofproto_controller_from_ovsrec(const struct ovsrec_controller *c,
1887 struct ofproto_controller *oc)
1889 oc->target = c->target;
1890 oc->max_backoff = c->max_backoff ? *c->max_backoff / 1000 : 8;
1891 oc->probe_interval = c->inactivity_probe ? *c->inactivity_probe / 1000 : 5;
1892 oc->band = (!c->connection_mode || !strcmp(c->connection_mode, "in-band")
1893 ? OFPROTO_IN_BAND : OFPROTO_OUT_OF_BAND);
1894 oc->accept_re = c->discover_accept_regex;
1895 oc->update_resolv_conf = c->discover_update_resolv_conf;
1896 oc->rate_limit = c->controller_rate_limit ? *c->controller_rate_limit : 0;
1897 oc->burst_limit = (c->controller_burst_limit
1898 ? *c->controller_burst_limit : 0);
1901 /* Configures the IP stack for 'br''s local interface properly according to the
1902 * configuration in 'c'. */
1904 bridge_configure_local_iface_netdev(struct bridge *br,
1905 struct ovsrec_controller *c)
1907 struct netdev *netdev;
1908 struct in_addr mask, gateway;
1910 struct iface *local_iface;
1913 /* Controller discovery does its own TCP/IP configuration later. */
1914 if (strcmp(c->target, "discover")) {
1918 /* If there's no local interface or no IP address, give up. */
1919 local_iface = bridge_get_local_iface(br);
1920 if (!local_iface || !c->local_ip || !inet_aton(c->local_ip, &ip)) {
1924 /* Bring up the local interface. */
1925 netdev = local_iface->netdev;
1926 netdev_turn_flags_on(netdev, NETDEV_UP, true);
1928 /* Configure the IP address and netmask. */
1929 if (!c->local_netmask
1930 || !inet_aton(c->local_netmask, &mask)
1932 mask.s_addr = guess_netmask(ip.s_addr);
1934 if (!netdev_set_in4(netdev, ip, mask)) {
1935 VLOG_INFO("bridge %s: configured IP address "IP_FMT", netmask "IP_FMT,
1936 br->name, IP_ARGS(&ip.s_addr), IP_ARGS(&mask.s_addr));
1939 /* Configure the default gateway. */
1940 if (c->local_gateway
1941 && inet_aton(c->local_gateway, &gateway)
1942 && gateway.s_addr) {
1943 if (!netdev_add_router(netdev, gateway)) {
1944 VLOG_INFO("bridge %s: configured gateway "IP_FMT,
1945 br->name, IP_ARGS(&gateway.s_addr));
1951 bridge_reconfigure_remotes(struct bridge *br,
1952 const struct sockaddr_in *managers,
1955 const char *disable_ib_str, *queue_id_str;
1956 bool disable_in_band = false;
1959 struct ovsrec_controller **controllers;
1960 size_t n_controllers;
1963 struct ofproto_controller *ocs;
1967 /* Check if we should disable in-band control on this bridge. */
1968 disable_ib_str = bridge_get_other_config(br->cfg, "disable-in-band");
1969 if (disable_ib_str && !strcmp(disable_ib_str, "true")) {
1970 disable_in_band = true;
1973 /* Set OpenFlow queue ID for in-band control. */
1974 queue_id_str = bridge_get_other_config(br->cfg, "in-band-queue");
1975 queue_id = queue_id_str ? strtol(queue_id_str, NULL, 10) : -1;
1976 ofproto_set_in_band_queue(br->ofproto, queue_id);
1978 if (disable_in_band) {
1979 ofproto_set_extra_in_band_remotes(br->ofproto, NULL, 0);
1981 ofproto_set_extra_in_band_remotes(br->ofproto, managers, n_managers);
1983 had_primary = ofproto_has_primary_controller(br->ofproto);
1985 n_controllers = bridge_get_controllers(br, &controllers);
1987 ocs = xmalloc((n_controllers + 1) * sizeof *ocs);
1990 bridge_ofproto_controller_for_mgmt(br, &ocs[n_ocs++]);
1991 for (i = 0; i < n_controllers; i++) {
1992 struct ovsrec_controller *c = controllers[i];
1994 if (!strncmp(c->target, "punix:", 6)
1995 || !strncmp(c->target, "unix:", 5)) {
1996 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1998 /* Prevent remote ovsdb-server users from accessing arbitrary Unix
1999 * domain sockets and overwriting arbitrary local files. */
2000 VLOG_ERR_RL(&rl, "%s: not adding Unix domain socket controller "
2001 "\"%s\" due to possibility for remote exploit",
2002 dpif_name(br->dpif), c->target);
2006 bridge_configure_local_iface_netdev(br, c);
2007 bridge_ofproto_controller_from_ovsrec(c, &ocs[n_ocs]);
2008 if (disable_in_band) {
2009 ocs[n_ocs].band = OFPROTO_OUT_OF_BAND;
2014 ofproto_set_controllers(br->ofproto, ocs, n_ocs);
2015 free(ocs[0].target); /* From bridge_ofproto_controller_for_mgmt(). */
2018 if (had_primary != ofproto_has_primary_controller(br->ofproto)) {
2019 ofproto_flush_flows(br->ofproto);
2022 /* If there are no controllers and the bridge is in standalone
2023 * mode, set up a flow that matches every packet and directs
2024 * them to OFPP_NORMAL (which goes to us). Otherwise, the
2025 * switch is in secure mode and we won't pass any traffic until
2026 * a controller has been defined and it tells us to do so. */
2028 && ofproto_get_fail_mode(br->ofproto) == OFPROTO_FAIL_STANDALONE) {
2029 union ofp_action action;
2030 struct cls_rule rule;
2032 memset(&action, 0, sizeof action);
2033 action.type = htons(OFPAT_OUTPUT);
2034 action.output.len = htons(sizeof action);
2035 action.output.port = htons(OFPP_NORMAL);
2036 cls_rule_init_catchall(&rule, 0);
2037 ofproto_add_flow(br->ofproto, &rule, &action, 1);
2042 bridge_get_all_ifaces(const struct bridge *br, struct shash *ifaces)
2047 for (i = 0; i < br->n_ports; i++) {
2048 struct port *port = br->ports[i];
2049 for (j = 0; j < port->n_ifaces; j++) {
2050 struct iface *iface = port->ifaces[j];
2051 shash_add_once(ifaces, iface->name, iface);
2053 if (port->n_ifaces > 1 && port->cfg->bond_fake_iface) {
2054 shash_add_once(ifaces, port->name, NULL);
2059 /* For robustness, in case the administrator moves around datapath ports behind
2060 * our back, we re-check all the datapath port numbers here.
2062 * This function will set the 'dp_ifidx' members of interfaces that have
2063 * disappeared to -1, so only call this function from a context where those
2064 * 'struct iface's will be removed from the bridge. Otherwise, the -1
2065 * 'dp_ifidx'es will cause trouble later when we try to send them to the
2066 * datapath, which doesn't support UINT16_MAX+1 ports. */
2068 bridge_fetch_dp_ifaces(struct bridge *br)
2070 struct dpif_port_dump dump;
2071 struct dpif_port dpif_port;
2074 /* Reset all interface numbers. */
2075 for (i = 0; i < br->n_ports; i++) {
2076 struct port *port = br->ports[i];
2077 for (j = 0; j < port->n_ifaces; j++) {
2078 struct iface *iface = port->ifaces[j];
2079 iface->dp_ifidx = -1;
2082 hmap_clear(&br->ifaces);
2084 DPIF_PORT_FOR_EACH (&dpif_port, &dump, br->dpif) {
2085 struct iface *iface = iface_lookup(br, dpif_port.name);
2087 if (iface->dp_ifidx >= 0) {
2088 VLOG_WARN("%s reported interface %s twice",
2089 dpif_name(br->dpif), dpif_port.name);
2090 } else if (iface_from_dp_ifidx(br, dpif_port.port_no)) {
2091 VLOG_WARN("%s reported interface %"PRIu16" twice",
2092 dpif_name(br->dpif), dpif_port.port_no);
2094 iface->dp_ifidx = dpif_port.port_no;
2095 hmap_insert(&br->ifaces, &iface->dp_ifidx_node,
2096 hash_int(iface->dp_ifidx, 0));
2099 iface_set_ofport(iface->cfg,
2100 (iface->dp_ifidx >= 0
2101 ? odp_port_to_ofp_port(iface->dp_ifidx)
2107 /* Bridge packet processing functions. */
2110 bond_is_tcp_hash(const struct port *port)
2112 return port->bond_mode == BM_TCP && port->lacp & LACP_NEGOTIATED;
2116 bond_hash_src(const uint8_t mac[ETH_ADDR_LEN], uint16_t vlan)
2118 return hash_bytes(mac, ETH_ADDR_LEN, vlan) & BOND_MASK;
2121 static int bond_hash_tcp(const struct flow *flow, uint16_t vlan)
2123 struct flow hash_flow;
2125 memcpy(&hash_flow, flow, sizeof hash_flow);
2126 hash_flow.vlan_tci = 0;
2128 /* The symmetric quality of this hash function is not required, but
2129 * flow_hash_symmetric_l4 already exists, and is sufficient for our
2130 * purposes, so we use it out of convenience. */
2131 return flow_hash_symmetric_l4(&hash_flow, vlan) & BOND_MASK;
2134 static struct bond_entry *
2135 lookup_bond_entry(const struct port *port, const struct flow *flow,
2138 assert(port->bond_mode != BM_AB);
2140 if (bond_is_tcp_hash(port)) {
2141 return &port->bond_hash[bond_hash_tcp(flow, vlan)];
2143 return &port->bond_hash[bond_hash_src(flow->dl_src, vlan)];
2148 bond_choose_iface(const struct port *port)
2150 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
2151 size_t i, best_down_slave = -1;
2152 long long next_delay_expiration = LLONG_MAX;
2154 for (i = 0; i < port->n_ifaces; i++) {
2155 struct iface *iface = port->ifaces[i];
2157 if (iface->enabled) {
2159 } else if (iface->delay_expires < next_delay_expiration
2160 && (iface->lacp_attached
2161 || !(port->lacp & LACP_NEGOTIATED))) {
2162 best_down_slave = i;
2163 next_delay_expiration = iface->delay_expires;
2167 if (best_down_slave != -1) {
2168 struct iface *iface = port->ifaces[best_down_slave];
2170 VLOG_INFO_RL(&rl, "interface %s: skipping remaining %lli ms updelay "
2171 "since no other interface is up", iface->name,
2172 iface->delay_expires - time_msec());
2173 bond_enable_slave(iface, true);
2176 return best_down_slave;
2180 choose_output_iface(const struct port *port, const struct flow *flow,
2181 uint16_t vlan, uint16_t *dp_ifidx, tag_type *tags)
2183 struct iface *iface;
2185 assert(port->n_ifaces);
2186 if (port->n_ifaces == 1) {
2187 iface = port->ifaces[0];
2188 } else if (port->bond_mode == BM_AB) {
2189 if (port->active_iface < 0) {
2190 *tags |= port->no_ifaces_tag;
2193 iface = port->ifaces[port->active_iface];
2195 struct bond_entry *e = lookup_bond_entry(port, flow, vlan);
2196 if (e->iface_idx < 0 || e->iface_idx >= port->n_ifaces
2197 || !port->ifaces[e->iface_idx]->enabled) {
2198 /* XXX select interface properly. The current interface selection
2199 * is only good for testing the rebalancing code. */
2200 e->iface_idx = bond_choose_iface(port);
2201 if (e->iface_idx < 0) {
2202 *tags |= port->no_ifaces_tag;
2205 e->iface_tag = tag_create_random();
2206 ((struct port *) port)->bond_compat_is_stale = true;
2208 *tags |= e->iface_tag;
2209 iface = port->ifaces[e->iface_idx];
2211 *dp_ifidx = iface->dp_ifidx;
2212 *tags |= iface->tag; /* Currently only used for bonding. */
2217 bond_link_status_update(struct iface *iface)
2219 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
2220 struct port *port = iface->port;
2221 bool up = iface->up;
2222 int updelay, downdelay;
2224 updelay = port->updelay;
2225 downdelay = port->downdelay;
2227 if (iface->port->lacp & LACP_NEGOTIATED) {
2232 if (iface->port->lacp && up) {
2233 /* The interface is up if it's attached to an aggregator and its
2234 * partner is synchronized. The only exception is defaulted links.
2235 * They are not required to have synchronized partners because they
2236 * have no partners at all. However, they will only be attached if
2237 * negotiations failed on all interfaces in the bond. */
2238 up = iface->lacp_attached
2239 && (iface->lacp_partner.state & LACP_STATE_SYNC
2240 || iface->lacp_status == LACP_STATUS_DEFAULTED);
2244 if ((up == iface->enabled) == (iface->delay_expires == LLONG_MAX)) {
2245 /* Nothing to do. */
2248 VLOG_INFO_RL(&rl, "interface %s: link state %s",
2249 iface->name, up ? "up" : "down");
2250 if (up == iface->enabled) {
2251 iface->delay_expires = LLONG_MAX;
2252 VLOG_INFO_RL(&rl, "interface %s: will not be %s",
2253 iface->name, up ? "disabled" : "enabled");
2254 } else if (up && port->active_iface < 0) {
2255 bond_enable_slave(iface, true);
2257 VLOG_INFO_RL(&rl, "interface %s: skipping %d ms updelay since no "
2258 "other interface is up", iface->name, updelay);
2261 int delay = up ? updelay : downdelay;
2262 iface->delay_expires = time_msec() + delay;
2265 "interface %s: will be %s if it stays %s for %d ms",
2267 up ? "enabled" : "disabled",
2275 bond_choose_active_iface(struct port *port)
2277 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
2279 port->active_iface = bond_choose_iface(port);
2280 port->active_iface_tag = tag_create_random();
2281 if (port->active_iface >= 0) {
2282 VLOG_INFO_RL(&rl, "port %s: active interface is now %s",
2283 port->name, port->ifaces[port->active_iface]->name);
2285 VLOG_WARN_RL(&rl, "port %s: all ports disabled, no active interface",
2291 bond_enable_slave(struct iface *iface, bool enable)
2293 struct port *port = iface->port;
2294 struct bridge *br = port->bridge;
2296 /* This acts as a recursion check. If the act of disabling a slave
2297 * causes a different slave to be enabled, the flag will allow us to
2298 * skip redundant work when we reenter this function. It must be
2299 * cleared on exit to keep things safe with multiple bonds. */
2300 static bool moving_active_iface = false;
2302 iface->delay_expires = LLONG_MAX;
2303 if (enable == iface->enabled) {
2307 iface->enabled = enable;
2308 if (!iface->enabled) {
2309 VLOG_WARN("interface %s: disabled", iface->name);
2310 ofproto_revalidate(br->ofproto, iface->tag);
2311 if (iface->port_ifidx == port->active_iface) {
2312 ofproto_revalidate(br->ofproto,
2313 port->active_iface_tag);
2315 /* Disabling a slave can lead to another slave being immediately
2316 * enabled if there will be no active slaves but one is waiting
2317 * on an updelay. In this case we do not need to run most of the
2318 * code for the newly enabled slave since there was no period
2319 * without an active slave and it is redundant with the disabling
2321 moving_active_iface = true;
2322 bond_choose_active_iface(port);
2324 bond_send_learning_packets(port);
2326 VLOG_WARN("interface %s: enabled", iface->name);
2327 if (port->active_iface < 0 && !moving_active_iface) {
2328 ofproto_revalidate(br->ofproto, port->no_ifaces_tag);
2329 bond_choose_active_iface(port);
2330 bond_send_learning_packets(port);
2332 iface->tag = tag_create_random();
2335 moving_active_iface = false;
2336 port->bond_compat_is_stale = true;
2339 /* Attempts to make the sum of the bond slaves' statistics appear on the fake
2340 * bond interface. */
2342 bond_update_fake_iface_stats(struct port *port)
2344 struct netdev_stats bond_stats;
2345 struct netdev *bond_dev;
2348 memset(&bond_stats, 0, sizeof bond_stats);
2350 for (i = 0; i < port->n_ifaces; i++) {
2351 struct netdev_stats slave_stats;
2353 if (!netdev_get_stats(port->ifaces[i]->netdev, &slave_stats)) {
2354 /* XXX: We swap the stats here because they are swapped back when
2355 * reported by the internal device. The reason for this is
2356 * internal devices normally represent packets going into the system
2357 * but when used as fake bond device they represent packets leaving
2358 * the system. We really should do this in the internal device
2359 * itself because changing it here reverses the counts from the
2360 * perspective of the switch. However, the internal device doesn't
2361 * know what type of device it represents so we have to do it here
2363 bond_stats.tx_packets += slave_stats.rx_packets;
2364 bond_stats.tx_bytes += slave_stats.rx_bytes;
2365 bond_stats.rx_packets += slave_stats.tx_packets;
2366 bond_stats.rx_bytes += slave_stats.tx_bytes;
2370 if (!netdev_open_default(port->name, &bond_dev)) {
2371 netdev_set_stats(bond_dev, &bond_stats);
2372 netdev_close(bond_dev);
2377 bond_link_carrier_update(struct iface *iface, bool carrier)
2379 if (carrier == iface->up) {
2383 if (iface->lacp_status == LACP_STATUS_CURRENT) {
2384 iface_set_lacp_expired(iface);
2387 iface->up = carrier;
2389 iface->port->bond_compat_is_stale = true;
2393 bond_run(struct bridge *br)
2397 for (i = 0; i < br->n_ports; i++) {
2398 struct port *port = br->ports[i];
2400 if (port->n_ifaces >= 2) {
2403 if (port->monitor) {
2404 assert(!port->miimon);
2406 /* Track carrier going up and down on interfaces. */
2407 while (!netdev_monitor_poll(port->monitor, &devname)) {
2408 struct iface *iface;
2410 iface = port_lookup_iface(port, devname);
2412 bool up = netdev_get_carrier(iface->netdev);
2413 bond_link_carrier_update(iface, up);
2418 assert(port->miimon);
2420 if (time_msec() >= port->bond_miimon_next_update) {
2421 for (j = 0; j < port->n_ifaces; j++) {
2422 struct iface *iface = port->ifaces[j];
2423 bool up = netdev_get_miimon(iface->netdev);
2424 bond_link_carrier_update(iface, up);
2426 port->bond_miimon_next_update = time_msec() +
2427 port->bond_miimon_interval;
2431 for (j = 0; j < port->n_ifaces; j++) {
2432 bond_link_status_update(port->ifaces[j]);
2435 for (j = 0; j < port->n_ifaces; j++) {
2436 struct iface *iface = port->ifaces[j];
2437 if (time_msec() >= iface->delay_expires) {
2438 bond_enable_slave(iface, !iface->enabled);
2442 if (port->bond_fake_iface
2443 && time_msec() >= port->bond_next_fake_iface_update) {
2444 bond_update_fake_iface_stats(port);
2445 port->bond_next_fake_iface_update = time_msec() + 1000;
2449 if (port->bond_compat_is_stale) {
2450 port->bond_compat_is_stale = false;
2451 port_update_bond_compat(port);
2457 bond_wait(struct bridge *br)
2461 for (i = 0; i < br->n_ports; i++) {
2462 struct port *port = br->ports[i];
2463 if (port->n_ifaces < 2) {
2467 if (port->monitor) {
2468 netdev_monitor_poll_wait(port->monitor);
2472 poll_timer_wait_until(port->bond_miimon_next_update);
2475 for (j = 0; j < port->n_ifaces; j++) {
2476 struct iface *iface = port->ifaces[j];
2477 if (iface->delay_expires != LLONG_MAX) {
2478 poll_timer_wait_until(iface->delay_expires);
2481 if (port->bond_fake_iface) {
2482 poll_timer_wait_until(port->bond_next_fake_iface_update);
2488 set_dst(struct dst *dst, const struct flow *flow,
2489 const struct port *in_port, const struct port *out_port,
2492 dst->vlan = (out_port->vlan >= 0 ? OFP_VLAN_NONE
2493 : in_port->vlan >= 0 ? in_port->vlan
2494 : flow->vlan_tci == 0 ? OFP_VLAN_NONE
2495 : vlan_tci_to_vid(flow->vlan_tci));
2496 return choose_output_iface(out_port, flow, dst->vlan,
2497 &dst->dp_ifidx, tags);
2501 swap_dst(struct dst *p, struct dst *q)
2503 struct dst tmp = *p;
2508 /* Moves all the dsts with vlan == 'vlan' to the front of the 'n_dsts' in
2509 * 'dsts'. (This may help performance by reducing the number of VLAN changes
2510 * that we push to the datapath. We could in fact fully sort the array by
2511 * vlan, but in most cases there are at most two different vlan tags so that's
2512 * possibly overkill.) */
2514 partition_dsts(struct dst_set *set, int vlan)
2516 struct dst *first = set->dsts;
2517 struct dst *last = set->dsts + set->n;
2519 while (first != last) {
2521 * - All dsts < first have vlan == 'vlan'.
2522 * - All dsts >= last have vlan != 'vlan'.
2523 * - first < last. */
2524 while (first->vlan == vlan) {
2525 if (++first == last) {
2530 /* Same invariants, plus one additional:
2531 * - first->vlan != vlan.
2533 while (last[-1].vlan != vlan) {
2534 if (--last == first) {
2539 /* Same invariants, plus one additional:
2540 * - last[-1].vlan == vlan.*/
2541 swap_dst(first++, --last);
2546 mirror_mask_ffs(mirror_mask_t mask)
2548 BUILD_ASSERT_DECL(sizeof(unsigned int) >= sizeof(mask));
2553 dst_set_init(struct dst_set *set)
2555 set->dsts = set->builtin;
2557 set->allocated = ARRAY_SIZE(set->builtin);
2561 dst_set_add(struct dst_set *set, const struct dst *dst)
2563 if (set->n >= set->allocated) {
2564 size_t new_allocated;
2565 struct dst *new_dsts;
2567 new_allocated = set->allocated * 2;
2568 new_dsts = xmalloc(new_allocated * sizeof *new_dsts);
2569 memcpy(new_dsts, set->dsts, set->n * sizeof *new_dsts);
2573 set->dsts = new_dsts;
2574 set->allocated = new_allocated;
2576 set->dsts[set->n++] = *dst;
2580 dst_set_free(struct dst_set *set)
2582 if (set->dsts != set->builtin) {
2588 dst_is_duplicate(const struct dst_set *set, const struct dst *test)
2591 for (i = 0; i < set->n; i++) {
2592 if (set->dsts[i].vlan == test->vlan
2593 && set->dsts[i].dp_ifidx == test->dp_ifidx) {
2601 port_trunks_vlan(const struct port *port, uint16_t vlan)
2603 return (port->vlan < 0
2604 && (!port->trunks || bitmap_is_set(port->trunks, vlan)));
2608 port_includes_vlan(const struct port *port, uint16_t vlan)
2610 return vlan == port->vlan || port_trunks_vlan(port, vlan);
2614 port_is_floodable(const struct port *port)
2618 for (i = 0; i < port->n_ifaces; i++) {
2619 if (!ofproto_port_is_floodable(port->bridge->ofproto,
2620 port->ifaces[i]->dp_ifidx)) {
2628 compose_dsts(const struct bridge *br, const struct flow *flow, uint16_t vlan,
2629 const struct port *in_port, const struct port *out_port,
2630 struct dst_set *set, tag_type *tags, uint16_t *nf_output_iface)
2632 mirror_mask_t mirrors = in_port->src_mirrors;
2637 flow_vlan = vlan_tci_to_vid(flow->vlan_tci);
2638 if (flow_vlan == 0) {
2639 flow_vlan = OFP_VLAN_NONE;
2642 if (out_port == FLOOD_PORT) {
2643 for (i = 0; i < br->n_ports; i++) {
2644 struct port *port = br->ports[i];
2646 && port_is_floodable(port)
2647 && port_includes_vlan(port, vlan)
2648 && !port->is_mirror_output_port
2649 && set_dst(&dst, flow, in_port, port, tags)) {
2650 mirrors |= port->dst_mirrors;
2651 dst_set_add(set, &dst);
2654 *nf_output_iface = NF_OUT_FLOOD;
2655 } else if (out_port && set_dst(&dst, flow, in_port, out_port, tags)) {
2656 dst_set_add(set, &dst);
2657 *nf_output_iface = dst.dp_ifidx;
2658 mirrors |= out_port->dst_mirrors;
2662 struct mirror *m = br->mirrors[mirror_mask_ffs(mirrors) - 1];
2663 if (!m->n_vlans || vlan_is_mirrored(m, vlan)) {
2665 if (set_dst(&dst, flow, in_port, m->out_port, tags)
2666 && !dst_is_duplicate(set, &dst)) {
2667 dst_set_add(set, &dst);
2670 for (i = 0; i < br->n_ports; i++) {
2671 struct port *port = br->ports[i];
2672 if (port_includes_vlan(port, m->out_vlan)
2673 && set_dst(&dst, flow, in_port, port, tags))
2675 if (port->vlan < 0) {
2676 dst.vlan = m->out_vlan;
2678 if (dst_is_duplicate(set, &dst)) {
2682 /* Use the vlan tag on the original flow instead of
2683 * the one passed in the vlan parameter. This ensures
2684 * that we compare the vlan from before any implicit
2685 * tagging tags place. This is necessary because
2686 * dst->vlan is the final vlan, after removing implicit
2688 if (port == in_port && dst.vlan == flow_vlan) {
2689 /* Don't send out input port on same VLAN. */
2692 dst_set_add(set, &dst);
2697 mirrors &= mirrors - 1;
2700 partition_dsts(set, flow_vlan);
2703 static void OVS_UNUSED
2704 print_dsts(const struct dst_set *set)
2708 for (i = 0; i < set->n; i++) {
2709 const struct dst *dst = &set->dsts[i];
2711 printf(">p%"PRIu16, dst->dp_ifidx);
2712 if (dst->vlan != OFP_VLAN_NONE) {
2713 printf("v%"PRIu16, dst->vlan);
2719 compose_actions(struct bridge *br, const struct flow *flow, uint16_t vlan,
2720 const struct port *in_port, const struct port *out_port,
2721 tag_type *tags, struct ofpbuf *actions,
2722 uint16_t *nf_output_iface)
2729 compose_dsts(br, flow, vlan, in_port, out_port, &set, tags,
2732 cur_vlan = vlan_tci_to_vid(flow->vlan_tci);
2733 if (cur_vlan == 0) {
2734 cur_vlan = OFP_VLAN_NONE;
2736 for (i = 0; i < set.n; i++) {
2737 const struct dst *dst = &set.dsts[i];
2738 if (dst->vlan != cur_vlan) {
2739 if (dst->vlan == OFP_VLAN_NONE) {
2740 nl_msg_put_flag(actions, ODP_ACTION_ATTR_STRIP_VLAN);
2743 tci = htons(dst->vlan & VLAN_VID_MASK);
2744 tci |= flow->vlan_tci & htons(VLAN_PCP_MASK);
2745 nl_msg_put_be16(actions, ODP_ACTION_ATTR_SET_DL_TCI, tci);
2747 cur_vlan = dst->vlan;
2749 nl_msg_put_u32(actions, ODP_ACTION_ATTR_OUTPUT, dst->dp_ifidx);
2754 /* Returns the effective vlan of a packet, taking into account both the
2755 * 802.1Q header and implicitly tagged ports. A value of 0 indicates that
2756 * the packet is untagged and -1 indicates it has an invalid header and
2757 * should be dropped. */
2758 static int flow_get_vlan(struct bridge *br, const struct flow *flow,
2759 struct port *in_port, bool have_packet)
2761 int vlan = vlan_tci_to_vid(flow->vlan_tci);
2762 if (in_port->vlan >= 0) {
2764 /* XXX support double tagging? */
2766 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2767 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %d tagged "
2768 "packet received on port %s configured with "
2769 "implicit VLAN %"PRIu16,
2770 br->name, vlan, in_port->name, in_port->vlan);
2774 vlan = in_port->vlan;
2776 if (!port_includes_vlan(in_port, vlan)) {
2778 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2779 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %d tagged "
2780 "packet received on port %s not configured for "
2782 br->name, vlan, in_port->name, vlan);
2791 /* A VM broadcasts a gratuitous ARP to indicate that it has resumed after
2792 * migration. Older Citrix-patched Linux DomU used gratuitous ARP replies to
2793 * indicate this; newer upstream kernels use gratuitous ARP requests. */
2795 is_gratuitous_arp(const struct flow *flow)
2797 return (flow->dl_type == htons(ETH_TYPE_ARP)
2798 && eth_addr_is_broadcast(flow->dl_dst)
2799 && (flow->nw_proto == ARP_OP_REPLY
2800 || (flow->nw_proto == ARP_OP_REQUEST
2801 && flow->nw_src == flow->nw_dst)));
2805 update_learning_table(struct bridge *br, const struct flow *flow, int vlan,
2806 struct port *in_port)
2808 enum grat_arp_lock_type lock_type;
2811 /* We don't want to learn from gratuitous ARP packets that are reflected
2812 * back over bond slaves so we lock the learning table. */
2813 lock_type = !is_gratuitous_arp(flow) ? GRAT_ARP_LOCK_NONE :
2814 (in_port->n_ifaces == 1) ? GRAT_ARP_LOCK_SET :
2815 GRAT_ARP_LOCK_CHECK;
2817 rev_tag = mac_learning_learn(br->ml, flow->dl_src, vlan, in_port->port_idx,
2820 /* The log messages here could actually be useful in debugging,
2821 * so keep the rate limit relatively high. */
2822 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30,
2824 VLOG_DBG_RL(&rl, "bridge %s: learned that "ETH_ADDR_FMT" is "
2825 "on port %s in VLAN %d",
2826 br->name, ETH_ADDR_ARGS(flow->dl_src),
2827 in_port->name, vlan);
2828 ofproto_revalidate(br->ofproto, rev_tag);
2832 /* Determines whether packets in 'flow' within 'br' should be forwarded or
2833 * dropped. Returns true if they may be forwarded, false if they should be
2836 * If 'have_packet' is true, it indicates that the caller is processing a
2837 * received packet. If 'have_packet' is false, then the caller is just
2838 * revalidating an existing flow because configuration has changed. Either
2839 * way, 'have_packet' only affects logging (there is no point in logging errors
2840 * during revalidation).
2842 * Sets '*in_portp' to the input port. This will be a null pointer if
2843 * flow->in_port does not designate a known input port (in which case
2844 * is_admissible() returns false).
2846 * When returning true, sets '*vlanp' to the effective VLAN of the input
2847 * packet, as returned by flow_get_vlan().
2849 * May also add tags to '*tags', although the current implementation only does
2850 * so in one special case.
2853 is_admissible(struct bridge *br, const struct flow *flow, bool have_packet,
2854 tag_type *tags, int *vlanp, struct port **in_portp)
2856 struct iface *in_iface;
2857 struct port *in_port;
2860 /* Find the interface and port structure for the received packet. */
2861 in_iface = iface_from_dp_ifidx(br, flow->in_port);
2863 /* No interface? Something fishy... */
2865 /* Odd. A few possible reasons here:
2867 * - We deleted an interface but there are still a few packets
2868 * queued up from it.
2870 * - Someone externally added an interface (e.g. with "ovs-dpctl
2871 * add-if") that we don't know about.
2873 * - Packet arrived on the local port but the local port is not
2874 * one of our bridge ports.
2876 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2878 VLOG_WARN_RL(&rl, "bridge %s: received packet on unknown "
2879 "interface %"PRIu16, br->name, flow->in_port);
2885 *in_portp = in_port = in_iface->port;
2886 *vlanp = vlan = flow_get_vlan(br, flow, in_port, have_packet);
2891 /* Drop frames for reserved multicast addresses. */
2892 if (eth_addr_is_reserved(flow->dl_dst)) {
2896 /* Drop frames on ports reserved for mirroring. */
2897 if (in_port->is_mirror_output_port) {
2899 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2900 VLOG_WARN_RL(&rl, "bridge %s: dropping packet received on port "
2901 "%s, which is reserved exclusively for mirroring",
2902 br->name, in_port->name);
2907 /* When using LACP, do not accept packets from disabled interfaces. */
2908 if (in_port->lacp & LACP_NEGOTIATED && !in_iface->enabled) {
2912 /* Packets received on non-LACP bonds need special attention to avoid
2914 if (in_port->n_ifaces > 1 && !(in_port->lacp & LACP_NEGOTIATED)) {
2916 bool is_grat_arp_locked;
2918 if (eth_addr_is_multicast(flow->dl_dst)) {
2919 *tags |= in_port->active_iface_tag;
2920 if (in_port->active_iface != in_iface->port_ifidx) {
2921 /* Drop all multicast packets on inactive slaves. */
2926 /* Drop all packets for which we have learned a different input
2927 * port, because we probably sent the packet on one slave and got
2928 * it back on the other. Gratuitous ARP packets are an exception
2929 * to this rule: the host has moved to another switch. The exception
2930 * to the exception is if we locked the learning table to avoid
2931 * reflections on bond slaves. If this is the case, just drop the
2933 src_idx = mac_learning_lookup(br->ml, flow->dl_src, vlan,
2934 &is_grat_arp_locked);
2935 if (src_idx != -1 && src_idx != in_port->port_idx &&
2936 (!is_gratuitous_arp(flow) || is_grat_arp_locked)) {
2944 /* If the composed actions may be applied to any packet in the given 'flow',
2945 * returns true. Otherwise, the actions should only be applied to 'packet', or
2946 * not at all, if 'packet' was NULL. */
2948 process_flow(struct bridge *br, const struct flow *flow,
2949 const struct ofpbuf *packet, struct ofpbuf *actions,
2950 tag_type *tags, uint16_t *nf_output_iface)
2952 struct port *in_port;
2953 struct port *out_port;
2957 /* Check whether we should drop packets in this flow. */
2958 if (!is_admissible(br, flow, packet != NULL, tags, &vlan, &in_port)) {
2963 /* Learn source MAC (but don't try to learn from revalidation). */
2965 update_learning_table(br, flow, vlan, in_port);
2968 /* Determine output port. */
2969 out_port_idx = mac_learning_lookup_tag(br->ml, flow->dl_dst, vlan, tags,
2971 if (out_port_idx >= 0 && out_port_idx < br->n_ports) {
2972 out_port = br->ports[out_port_idx];
2973 } else if (!packet && !eth_addr_is_multicast(flow->dl_dst)) {
2974 /* If we are revalidating but don't have a learning entry then
2975 * eject the flow. Installing a flow that floods packets opens
2976 * up a window of time where we could learn from a packet reflected
2977 * on a bond and blackhole packets before the learning table is
2978 * updated to reflect the correct port. */
2981 out_port = FLOOD_PORT;
2984 /* Don't send packets out their input ports. */
2985 if (in_port == out_port) {
2991 compose_actions(br, flow, vlan, in_port, out_port, tags, actions,
2999 bridge_normal_ofhook_cb(const struct flow *flow, const struct ofpbuf *packet,
3000 struct ofpbuf *actions, tag_type *tags,
3001 uint16_t *nf_output_iface, void *br_)
3003 struct iface *iface;
3004 struct bridge *br = br_;
3006 COVERAGE_INC(bridge_process_flow);
3008 iface = iface_from_dp_ifidx(br, flow->in_port);
3010 if (cfm_should_process_flow(flow)) {
3011 if (packet && iface->cfm) {
3012 cfm_process_heartbeat(iface->cfm, packet);
3015 } else if (flow->dl_type == htons(ETH_TYPE_LACP)) {
3017 lacp_process_packet(packet, iface);
3022 return process_flow(br, flow, packet, actions, tags, nf_output_iface);
3026 bridge_account_flow_ofhook_cb(const struct flow *flow, tag_type tags,
3027 const struct nlattr *actions,
3029 unsigned long long int n_bytes, void *br_)
3031 struct bridge *br = br_;
3032 const struct nlattr *a;
3033 struct port *in_port;
3038 /* Feed information from the active flows back into the learning table to
3039 * ensure that table is always in sync with what is actually flowing
3040 * through the datapath.
3042 * We test that 'tags' is nonzero to ensure that only flows that include an
3043 * OFPP_NORMAL action are used for learning. This works because
3044 * bridge_normal_ofhook_cb() always sets a nonzero tag value. */
3045 if (tags && is_admissible(br, flow, false, &dummy, &vlan, &in_port)) {
3046 update_learning_table(br, flow, vlan, in_port);
3049 /* Account for bond slave utilization. */
3050 if (!br->has_bonded_ports) {
3053 NL_ATTR_FOR_EACH_UNSAFE (a, left, actions, actions_len) {
3054 if (nl_attr_type(a) == ODP_ACTION_ATTR_OUTPUT) {
3055 struct port *out_port = port_from_dp_ifidx(br, nl_attr_get_u32(a));
3056 if (out_port && out_port->n_ifaces >= 2 &&
3057 out_port->bond_mode == BM_SLB) {
3058 uint16_t vlan = (flow->vlan_tci
3059 ? vlan_tci_to_vid(flow->vlan_tci)
3061 struct bond_entry *e = lookup_bond_entry(out_port, flow, vlan);
3062 e->tx_bytes += n_bytes;
3069 bridge_account_checkpoint_ofhook_cb(void *br_)
3071 struct bridge *br = br_;
3075 if (!br->has_bonded_ports) {
3080 for (i = 0; i < br->n_ports; i++) {
3081 struct port *port = br->ports[i];
3082 if (port->n_ifaces > 1 && port->bond_mode == BM_SLB
3083 && now >= port->bond_next_rebalance) {
3084 port->bond_next_rebalance = now + port->bond_rebalance_interval;
3085 bond_rebalance_port(port);
3090 static struct ofhooks bridge_ofhooks = {
3091 bridge_normal_ofhook_cb,
3092 bridge_account_flow_ofhook_cb,
3093 bridge_account_checkpoint_ofhook_cb,
3096 /* LACP functions. */
3099 lacp_process_packet(const struct ofpbuf *packet, struct iface *iface)
3101 const struct lacp_pdu *pdu;
3103 if (!iface->port->lacp) {
3107 pdu = parse_lacp_packet(packet);
3112 iface->lacp_status = LACP_STATUS_CURRENT;
3113 iface->lacp_rx = time_msec() + LACP_SLOW_TIME_RX;
3115 iface->lacp_actor.state = iface_get_lacp_state(iface);
3116 if (memcmp(&iface->lacp_actor, &pdu->partner, sizeof pdu->partner)) {
3120 if (memcmp(&iface->lacp_partner, &pdu->actor, sizeof pdu->actor)) {
3121 iface->port->lacp_need_update = true;
3122 iface->lacp_partner = pdu->actor;
3127 lacp_update_ifaces(struct port *port)
3131 struct lacp_info lead_pri;
3133 port->lacp_need_update = false;
3140 for (i = 0; i < port->n_ifaces; i++) {
3141 struct iface *iface = port->ifaces[i];
3142 struct lacp_info pri;
3144 iface->lacp_attached = true;
3145 ofproto_revalidate(port->bridge->ofproto, iface->tag);
3147 /* Don't allow loopback interfaces to send traffic or lead. */
3148 if (eth_addr_equals(iface->lacp_partner.sysid,
3149 iface->lacp_actor.sysid)) {
3150 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10);
3151 VLOG_WARN_RL(&rl, "iface %s: Loopback detected. Interface is "
3152 "connected to its own bridge", iface->name);
3153 iface->lacp_attached = false;
3157 if (iface->lacp_status == LACP_STATUS_DEFAULTED) {
3161 iface_get_lacp_priority(iface, &pri);
3163 if (!lead || memcmp(&pri, &lead_pri, sizeof pri) < 0) {
3170 port->lacp &= ~LACP_NEGOTIATED;
3174 port->lacp |= LACP_NEGOTIATED;
3176 for (i = 0; i < port->n_ifaces; i++) {
3177 struct iface *iface = port->ifaces[i];
3179 if (iface->lacp_status == LACP_STATUS_DEFAULTED
3180 || lead->lacp_partner.key != iface->lacp_partner.key
3181 || !eth_addr_equals(lead->lacp_partner.sysid,
3182 iface->lacp_partner.sysid)) {
3183 iface->lacp_attached = false;
3189 lacp_iface_may_tx(const struct iface *iface)
3191 return iface->port->lacp & LACP_ACTIVE
3192 || iface->lacp_status != LACP_STATUS_DEFAULTED;
3196 lacp_run(struct bridge *br)
3199 struct ofpbuf packet;
3201 ofpbuf_init(&packet, ETH_HEADER_LEN + LACP_PDU_LEN);
3203 for (i = 0; i < br->n_ports; i++) {
3204 struct port *port = br->ports[i];
3210 for (j = 0; j < port->n_ifaces; j++) {
3211 struct iface *iface = port->ifaces[j];
3213 if (time_msec() > iface->lacp_rx) {
3214 if (iface->lacp_status == LACP_STATUS_CURRENT) {
3215 iface_set_lacp_expired(iface);
3216 } else if (iface->lacp_status == LACP_STATUS_EXPIRED) {
3217 iface_set_lacp_defaulted(iface);
3222 if (port->lacp_need_update) {
3223 lacp_update_ifaces(port);
3226 for (j = 0; j < port->n_ifaces; j++) {
3227 struct iface *iface = port->ifaces[j];
3228 uint8_t ea[ETH_ADDR_LEN];
3231 if (time_msec() < iface->lacp_tx || !lacp_iface_may_tx(iface)) {
3235 error = netdev_get_etheraddr(iface->netdev, ea);
3237 iface->lacp_actor.state = iface_get_lacp_state(iface);
3238 compose_lacp_packet(&packet, &iface->lacp_actor,
3239 &iface->lacp_partner, ea);
3240 iface_send_packet(iface, &packet);
3242 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10);
3243 VLOG_ERR_RL(&rl, "iface %s: failed to obtain Ethernet address "
3244 "(%s)", iface->name, strerror(error));
3247 iface->lacp_tx = time_msec() +
3248 (iface->lacp_partner.state & LACP_STATE_TIME
3250 : LACP_SLOW_TIME_TX);
3253 ofpbuf_uninit(&packet);
3257 lacp_wait(struct bridge *br)
3261 for (i = 0; i < br->n_ports; i++) {
3262 struct port *port = br->ports[i];
3268 for (j = 0; j < port->n_ifaces; j++) {
3269 struct iface *iface = port->ifaces[j];
3271 if (lacp_iface_may_tx(iface)) {
3272 poll_timer_wait_until(iface->lacp_tx);
3275 if (iface->lacp_status != LACP_STATUS_DEFAULTED) {
3276 poll_timer_wait_until(iface->lacp_rx);
3282 /* Bonding functions. */
3284 /* Statistics for a single interface on a bonded port, used for load-based
3285 * bond rebalancing. */
3286 struct slave_balance {
3287 struct iface *iface; /* The interface. */
3288 uint64_t tx_bytes; /* Sum of hashes[*]->tx_bytes. */
3290 /* All the "bond_entry"s that are assigned to this interface, in order of
3291 * increasing tx_bytes. */
3292 struct bond_entry **hashes;
3297 bond_mode_to_string(enum bond_mode bm) {
3298 static char *bm_slb = "balance-slb";
3299 static char *bm_ab = "active-backup";
3300 static char *bm_tcp = "balance-tcp";
3303 case BM_SLB: return bm_slb;
3304 case BM_AB: return bm_ab;
3305 case BM_TCP: return bm_tcp;
3312 /* Sorts pointers to pointers to bond_entries in ascending order by the
3313 * interface to which they are assigned, and within a single interface in
3314 * ascending order of bytes transmitted. */
3316 compare_bond_entries(const void *a_, const void *b_)
3318 const struct bond_entry *const *ap = a_;
3319 const struct bond_entry *const *bp = b_;
3320 const struct bond_entry *a = *ap;
3321 const struct bond_entry *b = *bp;
3322 if (a->iface_idx != b->iface_idx) {
3323 return a->iface_idx > b->iface_idx ? 1 : -1;
3324 } else if (a->tx_bytes != b->tx_bytes) {
3325 return a->tx_bytes > b->tx_bytes ? 1 : -1;
3331 /* Sorts slave_balances so that enabled ports come first, and otherwise in
3332 * *descending* order by number of bytes transmitted. */
3334 compare_slave_balance(const void *a_, const void *b_)
3336 const struct slave_balance *a = a_;
3337 const struct slave_balance *b = b_;
3338 if (a->iface->enabled != b->iface->enabled) {
3339 return a->iface->enabled ? -1 : 1;
3340 } else if (a->tx_bytes != b->tx_bytes) {
3341 return a->tx_bytes > b->tx_bytes ? -1 : 1;
3348 swap_bals(struct slave_balance *a, struct slave_balance *b)
3350 struct slave_balance tmp = *a;
3355 /* Restores the 'n_bals' slave_balance structures in 'bals' to sorted order
3356 * given that 'p' (and only 'p') might be in the wrong location.
3358 * This function invalidates 'p', since it might now be in a different memory
3361 resort_bals(struct slave_balance *p,
3362 struct slave_balance bals[], size_t n_bals)
3365 for (; p > bals && p->tx_bytes > p[-1].tx_bytes; p--) {
3366 swap_bals(p, p - 1);
3368 for (; p < &bals[n_bals - 1] && p->tx_bytes < p[1].tx_bytes; p++) {
3369 swap_bals(p, p + 1);
3375 log_bals(const struct slave_balance *bals, size_t n_bals, struct port *port)
3377 if (VLOG_IS_DBG_ENABLED()) {
3378 struct ds ds = DS_EMPTY_INITIALIZER;
3379 const struct slave_balance *b;
3381 for (b = bals; b < bals + n_bals; b++) {
3385 ds_put_char(&ds, ',');
3387 ds_put_format(&ds, " %s %"PRIu64"kB",
3388 b->iface->name, b->tx_bytes / 1024);
3390 if (!b->iface->enabled) {
3391 ds_put_cstr(&ds, " (disabled)");
3393 if (b->n_hashes > 0) {
3394 ds_put_cstr(&ds, " (");
3395 for (i = 0; i < b->n_hashes; i++) {
3396 const struct bond_entry *e = b->hashes[i];
3398 ds_put_cstr(&ds, " + ");
3400 ds_put_format(&ds, "h%td: %"PRIu64"kB",
3401 e - port->bond_hash, e->tx_bytes / 1024);
3403 ds_put_cstr(&ds, ")");
3406 VLOG_DBG("bond %s:%s", port->name, ds_cstr(&ds));
3411 /* Shifts 'hash' from 'from' to 'to' within 'port'. */
3413 bond_shift_load(struct slave_balance *from, struct slave_balance *to,
3416 struct bond_entry *hash = from->hashes[hash_idx];
3417 struct port *port = from->iface->port;
3418 uint64_t delta = hash->tx_bytes;
3420 assert(port->bond_mode == BM_SLB);
3422 VLOG_INFO("bond %s: shift %"PRIu64"kB of load (with hash %td) "
3423 "from %s to %s (now carrying %"PRIu64"kB and "
3424 "%"PRIu64"kB load, respectively)",
3425 port->name, delta / 1024, hash - port->bond_hash,
3426 from->iface->name, to->iface->name,
3427 (from->tx_bytes - delta) / 1024,
3428 (to->tx_bytes + delta) / 1024);
3430 /* Delete element from from->hashes.
3432 * We don't bother to add the element to to->hashes because not only would
3433 * it require more work, the only purpose it would be to allow that hash to
3434 * be migrated to another slave in this rebalancing run, and there is no
3435 * point in doing that. */
3436 if (hash_idx == 0) {
3439 memmove(from->hashes + hash_idx, from->hashes + hash_idx + 1,
3440 (from->n_hashes - (hash_idx + 1)) * sizeof *from->hashes);
3444 /* Shift load away from 'from' to 'to'. */
3445 from->tx_bytes -= delta;
3446 to->tx_bytes += delta;
3448 /* Arrange for flows to be revalidated. */
3449 ofproto_revalidate(port->bridge->ofproto, hash->iface_tag);
3450 hash->iface_idx = to->iface->port_ifidx;
3451 hash->iface_tag = tag_create_random();
3455 bond_rebalance_port(struct port *port)
3457 struct slave_balance *bals;
3459 struct bond_entry *hashes[BOND_MASK + 1];
3460 struct slave_balance *b, *from, *to;
3461 struct bond_entry *e;
3464 assert(port->bond_mode != BM_AB);
3466 /* Sets up 'bals' to describe each of the port's interfaces, sorted in
3467 * descending order of tx_bytes, so that bals[0] represents the most
3468 * heavily loaded slave and bals[n_bals - 1] represents the least heavily
3471 * The code is a bit tricky: to avoid dynamically allocating a 'hashes'
3472 * array for each slave_balance structure, we sort our local array of
3473 * hashes in order by slave, so that all of the hashes for a given slave
3474 * become contiguous in memory, and then we point each 'hashes' members of
3475 * a slave_balance structure to the start of a contiguous group. */
3476 n_bals = port->n_ifaces;
3477 bals = xmalloc(n_bals * sizeof *bals);
3478 for (b = bals; b < &bals[n_bals]; b++) {
3479 b->iface = port->ifaces[b - bals];
3484 for (i = 0; i <= BOND_MASK; i++) {
3485 hashes[i] = &port->bond_hash[i];
3487 qsort(hashes, BOND_MASK + 1, sizeof *hashes, compare_bond_entries);
3488 for (i = 0; i <= BOND_MASK; i++) {
3490 if (e->iface_idx >= 0 && e->iface_idx < port->n_ifaces) {
3491 b = &bals[e->iface_idx];
3492 b->tx_bytes += e->tx_bytes;
3494 b->hashes = &hashes[i];
3499 qsort(bals, n_bals, sizeof *bals, compare_slave_balance);
3500 log_bals(bals, n_bals, port);
3502 /* Discard slaves that aren't enabled (which were sorted to the back of the
3503 * array earlier). */
3504 while (!bals[n_bals - 1].iface->enabled) {
3511 /* Shift load from the most-loaded slaves to the least-loaded slaves. */
3512 to = &bals[n_bals - 1];
3513 for (from = bals; from < to; ) {
3514 uint64_t overload = from->tx_bytes - to->tx_bytes;
3515 if (overload < to->tx_bytes >> 5 || overload < 100000) {
3516 /* The extra load on 'from' (and all less-loaded slaves), compared
3517 * to that of 'to' (the least-loaded slave), is less than ~3%, or
3518 * it is less than ~1Mbps. No point in rebalancing. */
3520 } else if (from->n_hashes == 1) {
3521 /* 'from' only carries a single MAC hash, so we can't shift any
3522 * load away from it, even though we want to. */
3525 /* 'from' is carrying significantly more load than 'to', and that
3526 * load is split across at least two different hashes. Pick a hash
3527 * to migrate to 'to' (the least-loaded slave), given that doing so
3528 * must decrease the ratio of the load on the two slaves by at
3531 * The sort order we use means that we prefer to shift away the
3532 * smallest hashes instead of the biggest ones. There is little
3533 * reason behind this decision; we could use the opposite sort
3534 * order to shift away big hashes ahead of small ones. */
3537 for (i = 0; i < from->n_hashes; i++) {
3538 double old_ratio, new_ratio;
3539 uint64_t delta = from->hashes[i]->tx_bytes;
3541 if (delta == 0 || from->tx_bytes - delta == 0) {
3542 /* Pointless move. */
3546 order_swapped = from->tx_bytes - delta < to->tx_bytes + delta;
3548 if (to->tx_bytes == 0) {
3549 /* Nothing on the new slave, move it. */
3553 old_ratio = (double)from->tx_bytes / to->tx_bytes;
3554 new_ratio = (double)(from->tx_bytes - delta) /
3555 (to->tx_bytes + delta);
3557 if (new_ratio == 0) {
3558 /* Should already be covered but check to prevent division
3563 if (new_ratio < 1) {
3564 new_ratio = 1 / new_ratio;
3567 if (old_ratio - new_ratio > 0.1) {
3568 /* Would decrease the ratio, move it. */
3572 if (i < from->n_hashes) {
3573 bond_shift_load(from, to, i);
3574 port->bond_compat_is_stale = true;
3576 /* If the result of the migration changed the relative order of
3577 * 'from' and 'to' swap them back to maintain invariants. */
3578 if (order_swapped) {
3579 swap_bals(from, to);
3582 /* Re-sort 'bals'. Note that this may make 'from' and 'to'
3583 * point to different slave_balance structures. It is only
3584 * valid to do these two operations in a row at all because we
3585 * know that 'from' will not move past 'to' and vice versa. */
3586 resort_bals(from, bals, n_bals);
3587 resort_bals(to, bals, n_bals);
3594 /* Implement exponentially weighted moving average. A weight of 1/2 causes
3595 * historical data to decay to <1% in 7 rebalancing runs. */
3596 for (e = &port->bond_hash[0]; e <= &port->bond_hash[BOND_MASK]; e++) {
3605 bond_send_learning_packets(struct port *port)
3607 struct bridge *br = port->bridge;
3608 struct mac_entry *e;
3609 struct ofpbuf packet;
3610 int error, n_packets, n_errors;
3612 if (!port->n_ifaces || port->active_iface < 0 || bond_is_tcp_hash(port)) {
3616 ofpbuf_init(&packet, 128);
3617 error = n_packets = n_errors = 0;
3618 LIST_FOR_EACH (e, lru_node, &br->ml->lrus) {
3619 union ofp_action actions[2], *a;
3625 if (e->port == port->port_idx) {
3629 compose_benign_packet(&packet, "Open vSwitch Bond Failover", 0xf177,
3631 flow_extract(&packet, 0, ODPP_NONE, &flow);
3633 if (!choose_output_iface(port, &flow, e->vlan, &dp_ifidx, &tags)) {
3637 /* Compose actions. */
3638 memset(actions, 0, sizeof actions);
3641 a->vlan_vid.type = htons(OFPAT_SET_VLAN_VID);
3642 a->vlan_vid.len = htons(sizeof *a);
3643 a->vlan_vid.vlan_vid = htons(e->vlan);
3646 a->output.type = htons(OFPAT_OUTPUT);
3647 a->output.len = htons(sizeof *a);
3648 a->output.port = htons(odp_port_to_ofp_port(dp_ifidx));
3653 retval = ofproto_send_packet(br->ofproto, &flow, actions, a - actions,
3660 ofpbuf_uninit(&packet);
3663 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
3664 VLOG_WARN_RL(&rl, "bond %s: %d errors sending %d gratuitous learning "
3665 "packets, last error was: %s",
3666 port->name, n_errors, n_packets, strerror(error));
3668 VLOG_DBG("bond %s: sent %d gratuitous learning packets",
3669 port->name, n_packets);
3673 /* Bonding unixctl user interface functions. */
3676 bond_unixctl_list(struct unixctl_conn *conn,
3677 const char *args OVS_UNUSED, void *aux OVS_UNUSED)
3679 struct ds ds = DS_EMPTY_INITIALIZER;
3680 const struct bridge *br;
3682 ds_put_cstr(&ds, "bridge\tbond\ttype\tslaves\n");
3684 LIST_FOR_EACH (br, node, &all_bridges) {
3687 for (i = 0; i < br->n_ports; i++) {
3688 const struct port *port = br->ports[i];
3689 if (port->n_ifaces > 1) {
3692 ds_put_format(&ds, "%s\t%s\t%s\t", br->name, port->name,
3693 bond_mode_to_string(port->bond_mode));
3694 for (j = 0; j < port->n_ifaces; j++) {
3695 const struct iface *iface = port->ifaces[j];
3697 ds_put_cstr(&ds, ", ");
3699 ds_put_cstr(&ds, iface->name);
3701 ds_put_char(&ds, '\n');
3705 unixctl_command_reply(conn, 200, ds_cstr(&ds));
3709 static struct port *
3710 bond_find(const char *name)
3712 const struct bridge *br;
3714 LIST_FOR_EACH (br, node, &all_bridges) {
3717 for (i = 0; i < br->n_ports; i++) {
3718 struct port *port = br->ports[i];
3719 if (!strcmp(port->name, name) && port->n_ifaces > 1) {
3728 ds_put_lacp_state(struct ds *ds, uint8_t state)
3730 if (state & LACP_STATE_ACT) {
3731 ds_put_cstr(ds, "activity ");
3734 if (state & LACP_STATE_TIME) {
3735 ds_put_cstr(ds, "timeout ");
3738 if (state & LACP_STATE_AGG) {
3739 ds_put_cstr(ds, "aggregation ");
3742 if (state & LACP_STATE_SYNC) {
3743 ds_put_cstr(ds, "synchronized ");
3746 if (state & LACP_STATE_COL) {
3747 ds_put_cstr(ds, "collecting ");
3750 if (state & LACP_STATE_DIST) {
3751 ds_put_cstr(ds, "distributing ");
3754 if (state & LACP_STATE_DEF) {
3755 ds_put_cstr(ds, "defaulted ");
3758 if (state & LACP_STATE_EXP) {
3759 ds_put_cstr(ds, "expired ");
3764 bond_unixctl_show(struct unixctl_conn *conn,
3765 const char *args, void *aux OVS_UNUSED)
3767 struct ds ds = DS_EMPTY_INITIALIZER;
3768 const struct port *port;
3771 port = bond_find(args);
3773 unixctl_command_reply(conn, 501, "no such bond");
3777 ds_put_format(&ds, "bond_mode: %s\n",
3778 bond_mode_to_string(port->bond_mode));
3781 ds_put_format(&ds, "\tlacp: %s\n",
3782 port->lacp & LACP_ACTIVE ? "active" : "passive");
3784 ds_put_cstr(&ds, "\tlacp: off\n");
3787 if (port->bond_mode != BM_AB) {
3788 ds_put_format(&ds, "bond-hash-algorithm: %s\n",
3789 bond_is_tcp_hash(port) ? "balance-tcp" : "balance-slb");
3793 ds_put_format(&ds, "bond-detect-mode: %s\n",
3794 port->miimon ? "miimon" : "carrier");
3797 ds_put_format(&ds, "bond-miimon-interval: %lld\n",
3798 port->bond_miimon_interval);
3801 ds_put_format(&ds, "updelay: %d ms\n", port->updelay);
3802 ds_put_format(&ds, "downdelay: %d ms\n", port->downdelay);
3804 if (port->bond_mode != BM_AB) {
3805 ds_put_format(&ds, "next rebalance: %lld ms\n",
3806 port->bond_next_rebalance - time_msec());
3809 for (j = 0; j < port->n_ifaces; j++) {
3810 const struct iface *iface = port->ifaces[j];
3811 struct bond_entry *be;
3815 ds_put_format(&ds, "slave %s: %s\n",
3816 iface->name, iface->enabled ? "enabled" : "disabled");
3817 if (j == port->active_iface) {
3818 ds_put_cstr(&ds, "\tactive slave\n");
3820 if (iface->delay_expires != LLONG_MAX) {
3821 ds_put_format(&ds, "\t%s expires in %lld ms\n",
3822 iface->enabled ? "downdelay" : "updelay",
3823 iface->delay_expires - time_msec());
3827 ds_put_cstr(&ds, "\tstatus: ");
3829 if (iface->lacp_status == LACP_STATUS_CURRENT) {
3830 ds_put_cstr(&ds, "current ");
3831 } else if (iface->lacp_status == LACP_STATUS_EXPIRED) {
3832 ds_put_cstr(&ds, "expired ");
3834 ds_put_cstr(&ds, "defaulted ");
3837 if (iface->lacp_attached) {
3838 ds_put_cstr(&ds, "attached ");
3841 ds_put_cstr(&ds, "\n");
3843 ds_put_cstr(&ds, "\n\tactor sysid: ");
3844 ds_put_format(&ds, ETH_ADDR_FMT,
3845 ETH_ADDR_ARGS(iface->lacp_actor.sysid));
3846 ds_put_cstr(&ds, "\n");
3848 ds_put_format(&ds, "\tactor sys_priority: %u\n",
3849 ntohs(iface->lacp_actor.sys_priority));
3851 ds_put_format(&ds, "\tactor portid: %u\n",
3852 ntohs(iface->lacp_actor.portid));
3854 ds_put_format(&ds, "\tactor port_priority: %u\n",
3855 ntohs(iface->lacp_actor.port_priority));
3857 ds_put_format(&ds, "\tactor key: %u\n",
3858 ntohs(iface->lacp_actor.key));
3860 ds_put_cstr(&ds, "\tactor state: ");
3861 ds_put_lacp_state(&ds, iface_get_lacp_state(iface));
3862 ds_put_cstr(&ds, "\n\n");
3864 ds_put_cstr(&ds, "\tpartner sysid: ");
3865 ds_put_format(&ds, ETH_ADDR_FMT,
3866 ETH_ADDR_ARGS(iface->lacp_partner.sysid));
3867 ds_put_cstr(&ds, "\n");
3869 ds_put_format(&ds, "\tpartner sys_priority: %u\n",
3870 ntohs(iface->lacp_partner.sys_priority));
3872 ds_put_format(&ds, "\tpartner portid: %u\n",
3873 ntohs(iface->lacp_partner.portid));
3875 ds_put_format(&ds, "\tpartner port_priority: %u\n",
3876 ntohs(iface->lacp_partner.port_priority));
3878 ds_put_format(&ds, "\tpartner key: %u\n",
3879 ntohs(iface->lacp_partner.key));
3881 ds_put_cstr(&ds, "\tpartner state: ");
3882 ds_put_lacp_state(&ds, iface->lacp_partner.state);
3883 ds_put_cstr(&ds, "\n\n");
3886 if (port->bond_mode == BM_AB) {
3891 memset(&flow, 0, sizeof flow);
3892 for (be = port->bond_hash; be <= &port->bond_hash[BOND_MASK]; be++) {
3893 int hash = be - port->bond_hash;
3894 struct mac_entry *me;
3896 if (be->iface_idx != j) {
3900 ds_put_format(&ds, "\thash %d: %"PRIu64" kB load\n",
3901 hash, be->tx_bytes / 1024);
3903 if (port->bond_mode != BM_SLB) {
3908 LIST_FOR_EACH (me, lru_node, &port->bridge->ml->lrus) {
3912 memcpy(flow.dl_src, me->mac, ETH_ADDR_LEN);
3913 if (bond_hash_src(me->mac, me->vlan) == hash
3914 && me->port != port->port_idx
3915 && choose_output_iface(port, &flow, me->vlan,
3917 && dp_ifidx == iface->dp_ifidx)
3919 ds_put_format(&ds, "\t\t"ETH_ADDR_FMT"\n",
3920 ETH_ADDR_ARGS(me->mac));
3925 unixctl_command_reply(conn, 200, ds_cstr(&ds));
3930 bond_unixctl_migrate(struct unixctl_conn *conn, const char *args_,
3931 void *aux OVS_UNUSED)
3933 char *args = (char *) args_;
3934 char *save_ptr = NULL;
3935 char *bond_s, *hash_s, *slave_s;
3937 struct iface *iface;
3938 struct bond_entry *entry;
3941 bond_s = strtok_r(args, " ", &save_ptr);
3942 hash_s = strtok_r(NULL, " ", &save_ptr);
3943 slave_s = strtok_r(NULL, " ", &save_ptr);
3945 unixctl_command_reply(conn, 501,
3946 "usage: bond/migrate BOND HASH SLAVE");
3950 port = bond_find(bond_s);
3952 unixctl_command_reply(conn, 501, "no such bond");
3956 if (port->bond_mode != BM_SLB) {
3957 unixctl_command_reply(conn, 501, "not an SLB bond");
3961 if (strspn(hash_s, "0123456789") == strlen(hash_s)) {
3962 hash = atoi(hash_s) & BOND_MASK;
3964 unixctl_command_reply(conn, 501, "bad hash");
3968 iface = port_lookup_iface(port, slave_s);
3970 unixctl_command_reply(conn, 501, "no such slave");
3974 if (!iface->enabled) {
3975 unixctl_command_reply(conn, 501, "cannot migrate to disabled slave");
3979 entry = &port->bond_hash[hash];
3980 ofproto_revalidate(port->bridge->ofproto, entry->iface_tag);
3981 entry->iface_idx = iface->port_ifidx;
3982 entry->iface_tag = tag_create_random();
3983 port->bond_compat_is_stale = true;
3984 unixctl_command_reply(conn, 200, "migrated");
3988 bond_unixctl_set_active_slave(struct unixctl_conn *conn, const char *args_,
3989 void *aux OVS_UNUSED)
3991 char *args = (char *) args_;
3992 char *save_ptr = NULL;
3993 char *bond_s, *slave_s;
3995 struct iface *iface;
3997 bond_s = strtok_r(args, " ", &save_ptr);
3998 slave_s = strtok_r(NULL, " ", &save_ptr);
4000 unixctl_command_reply(conn, 501,
4001 "usage: bond/set-active-slave BOND SLAVE");
4005 port = bond_find(bond_s);
4007 unixctl_command_reply(conn, 501, "no such bond");
4011 iface = port_lookup_iface(port, slave_s);
4013 unixctl_command_reply(conn, 501, "no such slave");
4017 if (!iface->enabled) {
4018 unixctl_command_reply(conn, 501, "cannot make disabled slave active");
4022 if (port->active_iface != iface->port_ifidx) {
4023 ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
4024 port->active_iface = iface->port_ifidx;
4025 port->active_iface_tag = tag_create_random();
4026 VLOG_INFO("port %s: active interface is now %s",
4027 port->name, iface->name);
4028 bond_send_learning_packets(port);
4029 unixctl_command_reply(conn, 200, "done");
4031 unixctl_command_reply(conn, 200, "no change");
4036 enable_slave(struct unixctl_conn *conn, const char *args_, bool enable)
4038 char *args = (char *) args_;
4039 char *save_ptr = NULL;
4040 char *bond_s, *slave_s;
4042 struct iface *iface;
4044 bond_s = strtok_r(args, " ", &save_ptr);
4045 slave_s = strtok_r(NULL, " ", &save_ptr);
4047 unixctl_command_reply(conn, 501,
4048 "usage: bond/enable/disable-slave BOND SLAVE");
4052 port = bond_find(bond_s);
4054 unixctl_command_reply(conn, 501, "no such bond");
4058 iface = port_lookup_iface(port, slave_s);
4060 unixctl_command_reply(conn, 501, "no such slave");
4064 bond_enable_slave(iface, enable);
4065 unixctl_command_reply(conn, 501, enable ? "enabled" : "disabled");
4069 bond_unixctl_enable_slave(struct unixctl_conn *conn, const char *args,
4070 void *aux OVS_UNUSED)
4072 enable_slave(conn, args, true);
4076 bond_unixctl_disable_slave(struct unixctl_conn *conn, const char *args,
4077 void *aux OVS_UNUSED)
4079 enable_slave(conn, args, false);
4083 bond_unixctl_hash(struct unixctl_conn *conn, const char *args_,
4084 void *aux OVS_UNUSED)
4086 char *args = (char *) args_;
4087 uint8_t mac[ETH_ADDR_LEN];
4091 char *mac_s, *vlan_s;
4092 char *save_ptr = NULL;
4094 mac_s = strtok_r(args, " ", &save_ptr);
4095 vlan_s = strtok_r(NULL, " ", &save_ptr);
4098 if (sscanf(vlan_s, "%u", &vlan) != 1) {
4099 unixctl_command_reply(conn, 501, "invalid vlan");
4103 vlan = OFP_VLAN_NONE;
4106 if (sscanf(mac_s, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
4107 == ETH_ADDR_SCAN_COUNT) {
4108 hash = bond_hash_src(mac, vlan);
4110 hash_cstr = xasprintf("%u", hash);
4111 unixctl_command_reply(conn, 200, hash_cstr);
4114 unixctl_command_reply(conn, 501, "invalid mac");
4121 unixctl_command_register("bond/list", bond_unixctl_list, NULL);
4122 unixctl_command_register("bond/show", bond_unixctl_show, NULL);
4123 unixctl_command_register("bond/migrate", bond_unixctl_migrate, NULL);
4124 unixctl_command_register("bond/set-active-slave",
4125 bond_unixctl_set_active_slave, NULL);
4126 unixctl_command_register("bond/enable-slave", bond_unixctl_enable_slave,
4128 unixctl_command_register("bond/disable-slave", bond_unixctl_disable_slave,
4130 unixctl_command_register("bond/hash", bond_unixctl_hash, NULL);
4133 /* Port functions. */
4135 static struct port *
4136 port_create(struct bridge *br, const char *name)
4140 port = xzalloc(sizeof *port);
4142 port->port_idx = br->n_ports;
4144 port->trunks = NULL;
4145 port->name = xstrdup(name);
4146 port->active_iface = -1;
4148 if (br->n_ports >= br->allocated_ports) {
4149 br->ports = x2nrealloc(br->ports, &br->allocated_ports,
4152 br->ports[br->n_ports++] = port;
4153 shash_add_assert(&br->port_by_name, port->name, port);
4155 VLOG_INFO("created port %s on bridge %s", port->name, br->name);
4162 get_port_other_config(const struct ovsrec_port *port, const char *key,
4163 const char *default_value)
4167 value = get_ovsrec_key_value(&port->header_, &ovsrec_port_col_other_config,
4169 return value ? value : default_value;
4173 get_interface_other_config(const struct ovsrec_interface *iface,
4174 const char *key, const char *default_value)
4178 value = get_ovsrec_key_value(&iface->header_,
4179 &ovsrec_interface_col_other_config, key);
4180 return value ? value : default_value;
4184 port_del_ifaces(struct port *port, const struct ovsrec_port *cfg)
4186 struct shash new_ifaces;
4189 /* Collect list of new interfaces. */
4190 shash_init(&new_ifaces);
4191 for (i = 0; i < cfg->n_interfaces; i++) {
4192 const char *name = cfg->interfaces[i]->name;
4193 shash_add_once(&new_ifaces, name, NULL);
4196 /* Get rid of deleted interfaces. */
4197 for (i = 0; i < port->n_ifaces; ) {
4198 if (!shash_find(&new_ifaces, cfg->interfaces[i]->name)) {
4199 iface_destroy(port->ifaces[i]);
4205 shash_destroy(&new_ifaces);
4209 port_reconfigure(struct port *port, const struct ovsrec_port *cfg)
4211 const char *detect_mode;
4212 struct shash new_ifaces;
4213 long long int next_rebalance, miimon_next_update, lacp_priority;
4214 unsigned long *trunks;
4220 /* Update settings. */
4221 port->updelay = cfg->bond_updelay;
4222 if (port->updelay < 0) {
4225 port->downdelay = cfg->bond_downdelay;
4226 if (port->downdelay < 0) {
4227 port->downdelay = 0;
4229 port->bond_rebalance_interval = atoi(
4230 get_port_other_config(cfg, "bond-rebalance-interval", "10000"));
4231 if (port->bond_rebalance_interval < 1000) {
4232 port->bond_rebalance_interval = 1000;
4234 next_rebalance = time_msec() + port->bond_rebalance_interval;
4235 if (port->bond_next_rebalance > next_rebalance) {
4236 port->bond_next_rebalance = next_rebalance;
4239 detect_mode = get_port_other_config(cfg, "bond-detect-mode",
4242 if (!strcmp(detect_mode, "carrier")) {
4243 port->miimon = false;
4244 } else if (!strcmp(detect_mode, "miimon")) {
4245 port->miimon = true;
4247 port->miimon = false;
4248 VLOG_WARN("port %s: unsupported bond-detect-mode %s, defaulting to "
4249 "carrier", port->name, detect_mode);
4252 port->bond_miimon_interval = atoi(
4253 get_port_other_config(cfg, "bond-miimon-interval", "200"));
4254 if (port->bond_miimon_interval < 100) {
4255 port->bond_miimon_interval = 100;
4257 miimon_next_update = time_msec() + port->bond_miimon_interval;
4258 if (port->bond_miimon_next_update > miimon_next_update) {
4259 port->bond_miimon_next_update = miimon_next_update;
4262 if (!port->cfg->bond_mode ||
4263 !strcmp(port->cfg->bond_mode, bond_mode_to_string(BM_SLB))) {
4264 port->bond_mode = BM_SLB;
4265 } else if (!strcmp(port->cfg->bond_mode, bond_mode_to_string(BM_AB))) {
4266 port->bond_mode = BM_AB;
4267 } else if (!strcmp(port->cfg->bond_mode, bond_mode_to_string(BM_TCP))) {
4268 port->bond_mode = BM_TCP;
4270 port->bond_mode = BM_SLB;
4271 VLOG_WARN("port %s: unknown bond_mode %s, defaulting to %s",
4272 port->name, port->cfg->bond_mode,
4273 bond_mode_to_string(port->bond_mode));
4276 /* Add new interfaces and update 'cfg' member of existing ones. */
4277 shash_init(&new_ifaces);
4278 for (i = 0; i < cfg->n_interfaces; i++) {
4279 const struct ovsrec_interface *if_cfg = cfg->interfaces[i];
4280 struct iface *iface;
4282 if (!shash_add_once(&new_ifaces, if_cfg->name, NULL)) {
4283 VLOG_WARN("port %s: %s specified twice as port interface",
4284 port->name, if_cfg->name);
4285 iface_set_ofport(if_cfg, -1);
4289 iface = iface_lookup(port->bridge, if_cfg->name);
4291 if (iface->port != port) {
4292 VLOG_ERR("bridge %s: %s interface is on multiple ports, "
4294 port->bridge->name, if_cfg->name, iface->port->name);
4297 iface->cfg = if_cfg;
4299 iface = iface_create(port, if_cfg);
4302 /* Determine interface type. The local port always has type
4303 * "internal". Other ports take their type from the database and
4304 * default to "system" if none is specified. */
4305 iface->type = (!strcmp(if_cfg->name, port->bridge->name) ? "internal"
4306 : if_cfg->type[0] ? if_cfg->type
4310 atoi(get_interface_other_config(if_cfg, "lacp-port-priority",
4313 if (lacp_priority <= 0 || lacp_priority > UINT16_MAX) {
4314 iface->lacp_priority = UINT16_MAX;
4316 iface->lacp_priority = lacp_priority;
4319 shash_destroy(&new_ifaces);
4322 atoi(get_port_other_config(cfg, "lacp-system-priority", "0"));
4324 if (lacp_priority <= 0 || lacp_priority > UINT16_MAX) {
4325 /* Prefer bondable links if unspecified. */
4326 port->lacp_priority = port->n_ifaces > 1 ? UINT16_MAX - 1 : UINT16_MAX;
4328 port->lacp_priority = lacp_priority;
4331 if (!port->cfg->lacp) {
4332 /* XXX when LACP implementation has been sufficiently tested, enable by
4333 * default and make active on bonded ports. */
4335 } else if (!strcmp(port->cfg->lacp, "off")) {
4337 } else if (!strcmp(port->cfg->lacp, "active")) {
4338 port->lacp = LACP_ACTIVE;
4339 } else if (!strcmp(port->cfg->lacp, "passive")) {
4340 port->lacp = LACP_PASSIVE;
4342 VLOG_WARN("port %s: unknown LACP mode %s",
4343 port->name, port->cfg->lacp);
4350 if (port->n_ifaces < 2) {
4352 if (vlan >= 0 && vlan <= 4095) {
4353 VLOG_DBG("port %s: assigning VLAN tag %d", port->name, vlan);
4358 /* It's possible that bonded, VLAN-tagged ports make sense. Maybe
4359 * they even work as-is. But they have not been tested. */
4360 VLOG_WARN("port %s: VLAN tags not supported on bonded ports",
4364 if (port->vlan != vlan) {
4366 bridge_flush(port->bridge);
4369 /* Get trunked VLANs. */
4371 if (vlan < 0 && cfg->n_trunks) {
4374 trunks = bitmap_allocate(4096);
4376 for (i = 0; i < cfg->n_trunks; i++) {
4377 int trunk = cfg->trunks[i];
4379 bitmap_set1(trunks, trunk);
4385 VLOG_ERR("port %s: invalid values for %zu trunk VLANs",
4386 port->name, cfg->n_trunks);
4388 if (n_errors == cfg->n_trunks) {
4389 VLOG_ERR("port %s: no valid trunks, trunking all VLANs",
4391 bitmap_free(trunks);
4394 } else if (vlan >= 0 && cfg->n_trunks) {
4395 VLOG_ERR("port %s: ignoring trunks in favor of implicit vlan",
4399 ? port->trunks != NULL
4400 : port->trunks == NULL || !bitmap_equal(trunks, port->trunks, 4096)) {
4401 bridge_flush(port->bridge);
4403 bitmap_free(port->trunks);
4404 port->trunks = trunks;
4408 port_destroy(struct port *port)
4411 struct bridge *br = port->bridge;
4415 proc_net_compat_update_vlan(port->name, NULL, 0);
4416 proc_net_compat_update_bond(port->name, NULL);
4418 for (i = 0; i < MAX_MIRRORS; i++) {
4419 struct mirror *m = br->mirrors[i];
4420 if (m && m->out_port == port) {
4425 while (port->n_ifaces > 0) {
4426 iface_destroy(port->ifaces[port->n_ifaces - 1]);
4429 shash_find_and_delete_assert(&br->port_by_name, port->name);
4431 del = br->ports[port->port_idx] = br->ports[--br->n_ports];
4432 del->port_idx = port->port_idx;
4434 VLOG_INFO("destroyed port %s on bridge %s", port->name, br->name);
4436 netdev_monitor_destroy(port->monitor);
4438 bitmap_free(port->trunks);
4445 static struct port *
4446 port_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
4448 struct iface *iface = iface_from_dp_ifidx(br, dp_ifidx);
4449 return iface ? iface->port : NULL;
4452 static struct port *
4453 port_lookup(const struct bridge *br, const char *name)
4455 return shash_find_data(&br->port_by_name, name);
4458 static struct iface *
4459 port_lookup_iface(const struct port *port, const char *name)
4461 struct iface *iface = iface_lookup(port->bridge, name);
4462 return iface && iface->port == port ? iface : NULL;
4466 port_update_lacp(struct port *port)
4471 if (!port->lacp || port->n_ifaces < 1) {
4476 for (i = 0; i < port->n_ifaces; i++) {
4477 struct iface *iface = port->ifaces[i];
4479 if (iface->dp_ifidx <= 0 || iface->dp_ifidx > UINT16_MAX) {
4484 if (iface->dp_ifidx == port->lacp_key) {
4485 key_changed = false;
4490 port->lacp_key = port->ifaces[0]->dp_ifidx;
4493 for (i = 0; i < port->n_ifaces; i++) {
4494 struct iface *iface = port->ifaces[i];
4496 iface->lacp_actor.sys_priority = htons(port->lacp_priority);
4497 memcpy(&iface->lacp_actor.sysid, port->bridge->ea, ETH_ADDR_LEN);
4499 iface->lacp_actor.port_priority = htons(iface->lacp_priority);
4500 iface->lacp_actor.portid = htons(iface->dp_ifidx);
4501 iface->lacp_actor.key = htons(port->lacp_key);
4505 port->lacp_need_update = true;
4509 port_update_bonding(struct port *port)
4511 if (port->monitor) {
4512 netdev_monitor_destroy(port->monitor);
4513 port->monitor = NULL;
4515 if (port->n_ifaces < 2) {
4516 /* Not a bonded port. */
4517 if (port->bond_hash) {
4518 free(port->bond_hash);
4519 port->bond_hash = NULL;
4520 port->bond_compat_is_stale = true;
4523 port->bond_fake_iface = false;
4527 if (port->bond_mode != BM_AB && !port->bond_hash) {
4528 port->bond_hash = xcalloc(BOND_MASK + 1, sizeof *port->bond_hash);
4529 for (i = 0; i <= BOND_MASK; i++) {
4530 struct bond_entry *e = &port->bond_hash[i];
4534 port->no_ifaces_tag = tag_create_random();
4535 bond_choose_active_iface(port);
4536 port->bond_next_rebalance
4537 = time_msec() + port->bond_rebalance_interval;
4539 if (port->cfg->bond_fake_iface) {
4540 port->bond_next_fake_iface_update = time_msec();
4542 } else if (port->bond_mode == BM_AB) {
4543 free(port->bond_hash);
4544 port->bond_hash = NULL;
4546 port->bond_compat_is_stale = true;
4547 port->bond_fake_iface = port->cfg->bond_fake_iface;
4549 if (!port->miimon) {
4550 port->monitor = netdev_monitor_create();
4551 for (i = 0; i < port->n_ifaces; i++) {
4552 netdev_monitor_add(port->monitor, port->ifaces[i]->netdev);
4559 port_update_bond_compat(struct port *port)
4561 struct compat_bond_hash compat_hashes[BOND_MASK + 1];
4562 struct compat_bond bond;
4565 if (port->n_ifaces < 2 || port->bond_mode != BM_SLB) {
4566 proc_net_compat_update_bond(port->name, NULL);
4571 bond.updelay = port->updelay;
4572 bond.downdelay = port->downdelay;
4575 bond.hashes = compat_hashes;
4576 if (port->bond_hash) {
4577 const struct bond_entry *e;
4578 for (e = port->bond_hash; e <= &port->bond_hash[BOND_MASK]; e++) {
4579 if (e->iface_idx >= 0 && e->iface_idx < port->n_ifaces) {
4580 struct compat_bond_hash *cbh = &bond.hashes[bond.n_hashes++];
4581 cbh->hash = e - port->bond_hash;
4582 cbh->netdev_name = port->ifaces[e->iface_idx]->name;
4587 bond.n_slaves = port->n_ifaces;
4588 bond.slaves = xmalloc(port->n_ifaces * sizeof *bond.slaves);
4589 for (i = 0; i < port->n_ifaces; i++) {
4590 struct iface *iface = port->ifaces[i];
4591 struct compat_bond_slave *slave = &bond.slaves[i];
4592 slave->name = iface->name;
4594 /* We need to make the same determination as the Linux bonding
4595 * code to determine whether a slave should be consider "up".
4596 * The Linux function bond_miimon_inspect() supports four
4597 * BOND_LINK_* states:
4599 * - BOND_LINK_UP: carrier detected, updelay has passed.
4600 * - BOND_LINK_FAIL: carrier lost, downdelay in progress.
4601 * - BOND_LINK_DOWN: carrier lost, downdelay has passed.
4602 * - BOND_LINK_BACK: carrier detected, updelay in progress.
4604 * The function bond_info_show_slave() only considers BOND_LINK_UP
4605 * to be "up" and anything else to be "down".
4607 slave->up = iface->enabled && iface->delay_expires == LLONG_MAX;
4611 netdev_get_etheraddr(iface->netdev, slave->mac);
4614 if (port->bond_fake_iface) {
4615 struct netdev *bond_netdev;
4617 if (!netdev_open_default(port->name, &bond_netdev)) {
4619 netdev_turn_flags_on(bond_netdev, NETDEV_UP, true);
4621 netdev_turn_flags_off(bond_netdev, NETDEV_UP, true);
4623 netdev_close(bond_netdev);
4627 proc_net_compat_update_bond(port->name, &bond);
4632 port_update_vlan_compat(struct port *port)
4634 struct bridge *br = port->bridge;
4635 char *vlandev_name = NULL;
4637 if (port->vlan > 0) {
4638 /* Figure out the name that the VLAN device should actually have, if it
4639 * existed. This takes some work because the VLAN device would not
4640 * have port->name in its name; rather, it would have the trunk port's
4641 * name, and 'port' would be attached to a bridge that also had the
4642 * VLAN device one of its ports. So we need to find a trunk port that
4643 * includes port->vlan.
4645 * There might be more than one candidate. This doesn't happen on
4646 * XenServer, so if it happens we just pick the first choice in
4647 * alphabetical order instead of creating multiple VLAN devices. */
4649 for (i = 0; i < br->n_ports; i++) {
4650 struct port *p = br->ports[i];
4651 if (port_trunks_vlan(p, port->vlan)
4653 && (!vlandev_name || strcmp(p->name, vlandev_name) <= 0))
4655 uint8_t ea[ETH_ADDR_LEN];
4656 netdev_get_etheraddr(p->ifaces[0]->netdev, ea);
4657 if (!eth_addr_is_multicast(ea) &&
4658 !eth_addr_is_reserved(ea) &&
4659 !eth_addr_is_zero(ea)) {
4660 vlandev_name = p->name;
4665 proc_net_compat_update_vlan(port->name, vlandev_name, port->vlan);
4668 /* Interface functions. */
4671 iface_set_lacp_defaulted(struct iface *iface)
4673 memset(&iface->lacp_partner, 0xff, sizeof iface->lacp_partner);
4674 iface->lacp_partner.state = 0;
4676 iface->lacp_status = LACP_STATUS_DEFAULTED;
4678 iface->port->lacp_need_update = true;
4682 iface_set_lacp_expired(struct iface *iface)
4684 iface->lacp_status = LACP_STATUS_EXPIRED;
4685 iface->lacp_partner.state |= LACP_STATE_TIME;
4686 iface->lacp_partner.state &= ~LACP_STATE_SYNC;
4688 iface->lacp_rx = time_msec() + LACP_FAST_TIME_RX;
4693 iface_get_lacp_state(const struct iface *iface)
4697 if (iface->port->lacp & LACP_ACTIVE) {
4698 state |= LACP_STATE_ACT;
4701 if (iface->lacp_status == LACP_STATUS_DEFAULTED) {
4702 state |= LACP_STATE_DEF;
4703 } else if (iface->lacp_attached) {
4704 state |= LACP_STATE_SYNC;
4707 if (iface->lacp_status == LACP_STATUS_EXPIRED) {
4708 state |= LACP_STATE_EXP;
4711 if (iface->port->n_ifaces > 1) {
4712 state |= LACP_STATE_AGG;
4715 if (iface->enabled) {
4716 state |= LACP_STATE_COL | LACP_STATE_DIST;
4722 /* Given 'iface', populates 'priority' with data representing its LACP link
4723 * priority. If two priority objects populated by this function are compared
4724 * using memcmp, the higher priority link will be less than the lower priority
4727 iface_get_lacp_priority(struct iface *iface, struct lacp_info *priority)
4729 uint16_t partner_priority, actor_priority;
4731 /* Choose the lacp_info of the higher priority system by comparing their
4732 * system priorities and mac addresses. */
4733 actor_priority = ntohs(iface->lacp_actor.sys_priority);
4734 partner_priority = ntohs(iface->lacp_partner.sys_priority);
4735 if (actor_priority < partner_priority) {
4736 *priority = iface->lacp_actor;
4737 } else if (partner_priority < actor_priority) {
4738 *priority = iface->lacp_partner;
4739 } else if (eth_addr_compare_3way(iface->lacp_actor.sysid,
4740 iface->lacp_partner.sysid) < 0) {
4741 *priority = iface->lacp_actor;
4743 *priority = iface->lacp_partner;
4746 /* Key and state are not used in priority comparisons. */
4748 priority->state = 0;
4752 iface_send_packet(struct iface *iface, struct ofpbuf *packet)
4755 union ofp_action action;
4757 memset(&action, 0, sizeof action);
4758 action.output.type = htons(OFPAT_OUTPUT);
4759 action.output.len = htons(sizeof action);
4760 action.output.port = htons(odp_port_to_ofp_port(iface->dp_ifidx));
4762 flow_extract(packet, 0, ODPP_NONE, &flow);
4764 if (ofproto_send_packet(iface->port->bridge->ofproto, &flow, &action, 1,
4766 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
4767 VLOG_WARN_RL(&rl, "interface %s: Failed to send packet.", iface->name);
4771 static struct iface *
4772 iface_create(struct port *port, const struct ovsrec_interface *if_cfg)
4774 struct bridge *br = port->bridge;
4775 struct iface *iface;
4776 char *name = if_cfg->name;
4778 iface = xzalloc(sizeof *iface);
4780 iface->port_ifidx = port->n_ifaces;
4781 iface->name = xstrdup(name);
4782 iface->dp_ifidx = -1;
4783 iface->tag = tag_create_random();
4784 iface->delay_expires = LLONG_MAX;
4785 iface->netdev = NULL;
4786 iface->cfg = if_cfg;
4787 iface_set_lacp_defaulted(iface);
4789 if (port->lacp & LACP_ACTIVE) {
4790 iface_set_lacp_expired(iface);
4793 shash_add_assert(&br->iface_by_name, iface->name, iface);
4795 if (port->n_ifaces >= port->allocated_ifaces) {
4796 port->ifaces = x2nrealloc(port->ifaces, &port->allocated_ifaces,
4797 sizeof *port->ifaces);
4799 port->ifaces[port->n_ifaces++] = iface;
4800 if (port->n_ifaces > 1) {
4801 br->has_bonded_ports = true;
4804 VLOG_DBG("attached network device %s to port %s", iface->name, port->name);
4812 iface_destroy(struct iface *iface)
4815 struct port *port = iface->port;
4816 struct bridge *br = port->bridge;
4817 bool del_active = port->active_iface == iface->port_ifidx;
4820 if (port->monitor) {
4821 netdev_monitor_remove(port->monitor, iface->netdev);
4824 shash_find_and_delete_assert(&br->iface_by_name, iface->name);
4826 if (iface->dp_ifidx >= 0) {
4827 hmap_remove(&br->ifaces, &iface->dp_ifidx_node);
4830 del = port->ifaces[iface->port_ifidx] = port->ifaces[--port->n_ifaces];
4831 del->port_ifidx = iface->port_ifidx;
4833 netdev_close(iface->netdev);
4836 ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
4837 bond_choose_active_iface(port);
4838 bond_send_learning_packets(port);
4841 cfm_destroy(iface->cfm);
4846 bridge_flush(port->bridge);
4850 static struct iface *
4851 iface_lookup(const struct bridge *br, const char *name)
4853 return shash_find_data(&br->iface_by_name, name);
4856 static struct iface *
4857 iface_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
4859 struct iface *iface;
4861 HMAP_FOR_EACH_IN_BUCKET (iface, dp_ifidx_node,
4862 hash_int(dp_ifidx, 0), &br->ifaces) {
4863 if (iface->dp_ifidx == dp_ifidx) {
4870 /* Set Ethernet address of 'iface', if one is specified in the configuration
4873 iface_set_mac(struct iface *iface)
4875 uint8_t ea[ETH_ADDR_LEN];
4877 if (iface->cfg->mac && eth_addr_from_string(iface->cfg->mac, ea)) {
4878 if (eth_addr_is_multicast(ea)) {
4879 VLOG_ERR("interface %s: cannot set MAC to multicast address",
4881 } else if (iface->dp_ifidx == ODPP_LOCAL) {
4882 VLOG_ERR("ignoring iface.%s.mac; use bridge.%s.mac instead",
4883 iface->name, iface->name);
4885 int error = netdev_set_etheraddr(iface->netdev, ea);
4887 VLOG_ERR("interface %s: setting MAC failed (%s)",
4888 iface->name, strerror(error));
4894 /* Sets the ofport column of 'if_cfg' to 'ofport'. */
4896 iface_set_ofport(const struct ovsrec_interface *if_cfg, int64_t ofport)
4899 ovsrec_interface_set_ofport(if_cfg, &ofport, 1);
4903 /* Adds the 'n' key-value pairs in 'keys' in 'values' to 'shash'.
4905 * The value strings in '*shash' are taken directly from values[], not copied,
4906 * so the caller should not modify or free them. */
4908 shash_from_ovs_idl_map(char **keys, char **values, size_t n,
4909 struct shash *shash)
4914 for (i = 0; i < n; i++) {
4915 shash_add(shash, keys[i], values[i]);
4919 /* Creates 'keys' and 'values' arrays from 'shash'.
4921 * Sets 'keys' and 'values' to heap allocated arrays representing the key-value
4922 * pairs in 'shash'. The caller takes ownership of 'keys' and 'values'. They
4923 * are populated with with strings taken directly from 'shash' and thus have
4924 * the same ownership of the key-value pairs in shash.
4927 shash_to_ovs_idl_map(struct shash *shash,
4928 char ***keys, char ***values, size_t *n)
4932 struct shash_node *sn;
4934 count = shash_count(shash);
4936 k = xmalloc(count * sizeof *k);
4937 v = xmalloc(count * sizeof *v);
4940 SHASH_FOR_EACH(sn, shash) {
4951 struct iface_delete_queues_cbdata {
4952 struct netdev *netdev;
4953 const struct ovsdb_datum *queues;
4957 queue_ids_include(const struct ovsdb_datum *queues, int64_t target)
4959 union ovsdb_atom atom;
4961 atom.integer = target;
4962 return ovsdb_datum_find_key(queues, &atom, OVSDB_TYPE_INTEGER) != UINT_MAX;
4966 iface_delete_queues(unsigned int queue_id,
4967 const struct shash *details OVS_UNUSED, void *cbdata_)
4969 struct iface_delete_queues_cbdata *cbdata = cbdata_;
4971 if (!queue_ids_include(cbdata->queues, queue_id)) {
4972 netdev_delete_queue(cbdata->netdev, queue_id);
4977 iface_update_qos(struct iface *iface, const struct ovsrec_qos *qos)
4979 if (!qos || qos->type[0] == '\0') {
4980 netdev_set_qos(iface->netdev, NULL, NULL);
4982 struct iface_delete_queues_cbdata cbdata;
4983 struct shash details;
4986 /* Configure top-level Qos for 'iface'. */
4987 shash_from_ovs_idl_map(qos->key_other_config, qos->value_other_config,
4988 qos->n_other_config, &details);
4989 netdev_set_qos(iface->netdev, qos->type, &details);
4990 shash_destroy(&details);
4992 /* Deconfigure queues that were deleted. */
4993 cbdata.netdev = iface->netdev;
4994 cbdata.queues = ovsrec_qos_get_queues(qos, OVSDB_TYPE_INTEGER,
4996 netdev_dump_queues(iface->netdev, iface_delete_queues, &cbdata);
4998 /* Configure queues for 'iface'. */
4999 for (i = 0; i < qos->n_queues; i++) {
5000 const struct ovsrec_queue *queue = qos->value_queues[i];
5001 unsigned int queue_id = qos->key_queues[i];
5003 shash_from_ovs_idl_map(queue->key_other_config,
5004 queue->value_other_config,
5005 queue->n_other_config, &details);
5006 netdev_set_queue(iface->netdev, queue_id, &details);
5007 shash_destroy(&details);
5013 iface_update_cfm(struct iface *iface)
5017 uint16_t *remote_mps;
5018 struct ovsrec_monitor *mon;
5019 uint8_t ea[ETH_ADDR_LEN], maid[CCM_MAID_LEN];
5021 mon = iface->cfg->monitor;
5024 cfm_destroy(iface->cfm);
5029 if (netdev_get_etheraddr(iface->netdev, ea)) {
5030 VLOG_WARN("interface %s: Failed to get ethernet address. "
5031 "Skipping Monitor.", iface->name);
5035 if (!cfm_generate_maid(mon->md_name, mon->ma_name, maid)) {
5036 VLOG_WARN("interface %s: Failed to generate MAID.", iface->name);
5041 iface->cfm = cfm_create();
5045 cfm->mpid = mon->mpid;
5046 cfm->interval = mon->interval ? *mon->interval : 1000;
5048 memcpy(cfm->eth_src, ea, sizeof cfm->eth_src);
5049 memcpy(cfm->maid, maid, sizeof cfm->maid);
5051 remote_mps = xzalloc(mon->n_remote_mps * sizeof *remote_mps);
5052 for(i = 0; i < mon->n_remote_mps; i++) {
5053 remote_mps[i] = mon->remote_mps[i]->mpid;
5055 cfm_update_remote_mps(cfm, remote_mps, mon->n_remote_mps);
5058 if (!cfm_configure(iface->cfm)) {
5059 cfm_destroy(iface->cfm);
5064 /* Port mirroring. */
5066 static struct mirror *
5067 mirror_find_by_uuid(struct bridge *br, const struct uuid *uuid)
5071 for (i = 0; i < MAX_MIRRORS; i++) {
5072 struct mirror *m = br->mirrors[i];
5073 if (m && uuid_equals(uuid, &m->uuid)) {
5081 mirror_reconfigure(struct bridge *br)
5083 unsigned long *rspan_vlans;
5086 /* Get rid of deleted mirrors. */
5087 for (i = 0; i < MAX_MIRRORS; i++) {
5088 struct mirror *m = br->mirrors[i];
5090 const struct ovsdb_datum *mc;
5091 union ovsdb_atom atom;
5093 mc = ovsrec_bridge_get_mirrors(br->cfg, OVSDB_TYPE_UUID);
5094 atom.uuid = br->mirrors[i]->uuid;
5095 if (ovsdb_datum_find_key(mc, &atom, OVSDB_TYPE_UUID) == UINT_MAX) {
5101 /* Add new mirrors and reconfigure existing ones. */
5102 for (i = 0; i < br->cfg->n_mirrors; i++) {
5103 struct ovsrec_mirror *cfg = br->cfg->mirrors[i];
5104 struct mirror *m = mirror_find_by_uuid(br, &cfg->header_.uuid);
5106 mirror_reconfigure_one(m, cfg);
5108 mirror_create(br, cfg);
5112 /* Update port reserved status. */
5113 for (i = 0; i < br->n_ports; i++) {
5114 br->ports[i]->is_mirror_output_port = false;
5116 for (i = 0; i < MAX_MIRRORS; i++) {
5117 struct mirror *m = br->mirrors[i];
5118 if (m && m->out_port) {
5119 m->out_port->is_mirror_output_port = true;
5123 /* Update flooded vlans (for RSPAN). */
5125 if (br->cfg->n_flood_vlans) {
5126 rspan_vlans = bitmap_allocate(4096);
5128 for (i = 0; i < br->cfg->n_flood_vlans; i++) {
5129 int64_t vlan = br->cfg->flood_vlans[i];
5130 if (vlan >= 0 && vlan < 4096) {
5131 bitmap_set1(rspan_vlans, vlan);
5132 VLOG_INFO("bridge %s: disabling learning on vlan %"PRId64,
5135 VLOG_ERR("bridge %s: invalid value %"PRId64 "for flood VLAN",
5140 if (mac_learning_set_flood_vlans(br->ml, rspan_vlans)) {
5146 mirror_create(struct bridge *br, struct ovsrec_mirror *cfg)
5151 for (i = 0; ; i++) {
5152 if (i >= MAX_MIRRORS) {
5153 VLOG_WARN("bridge %s: maximum of %d port mirrors reached, "
5154 "cannot create %s", br->name, MAX_MIRRORS, cfg->name);
5157 if (!br->mirrors[i]) {
5162 VLOG_INFO("created port mirror %s on bridge %s", cfg->name, br->name);
5165 br->mirrors[i] = m = xzalloc(sizeof *m);
5168 m->name = xstrdup(cfg->name);
5169 shash_init(&m->src_ports);
5170 shash_init(&m->dst_ports);
5176 mirror_reconfigure_one(m, cfg);
5180 mirror_destroy(struct mirror *m)
5183 struct bridge *br = m->bridge;
5186 for (i = 0; i < br->n_ports; i++) {
5187 br->ports[i]->src_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
5188 br->ports[i]->dst_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
5191 shash_destroy(&m->src_ports);
5192 shash_destroy(&m->dst_ports);
5195 m->bridge->mirrors[m->idx] = NULL;
5204 mirror_collect_ports(struct mirror *m, struct ovsrec_port **ports, int n_ports,
5205 struct shash *names)
5209 for (i = 0; i < n_ports; i++) {
5210 const char *name = ports[i]->name;
5211 if (port_lookup(m->bridge, name)) {
5212 shash_add_once(names, name, NULL);
5214 VLOG_WARN("bridge %s: mirror %s cannot match on nonexistent "
5215 "port %s", m->bridge->name, m->name, name);
5221 mirror_collect_vlans(struct mirror *m, const struct ovsrec_mirror *cfg,
5227 *vlans = xmalloc(sizeof **vlans * cfg->n_select_vlan);
5229 for (i = 0; i < cfg->n_select_vlan; i++) {
5230 int64_t vlan = cfg->select_vlan[i];
5231 if (vlan < 0 || vlan > 4095) {
5232 VLOG_WARN("bridge %s: mirror %s selects invalid VLAN %"PRId64,
5233 m->bridge->name, m->name, vlan);
5235 (*vlans)[n_vlans++] = vlan;
5242 vlan_is_mirrored(const struct mirror *m, int vlan)
5246 for (i = 0; i < m->n_vlans; i++) {
5247 if (m->vlans[i] == vlan) {
5255 port_trunks_any_mirrored_vlan(const struct mirror *m, const struct port *p)
5259 for (i = 0; i < m->n_vlans; i++) {
5260 if (port_trunks_vlan(p, m->vlans[i])) {
5268 mirror_reconfigure_one(struct mirror *m, struct ovsrec_mirror *cfg)
5270 struct shash src_ports, dst_ports;
5271 mirror_mask_t mirror_bit;
5272 struct port *out_port;
5279 if (strcmp(cfg->name, m->name)) {
5281 m->name = xstrdup(cfg->name);
5284 /* Get output port. */
5285 if (cfg->output_port) {
5286 out_port = port_lookup(m->bridge, cfg->output_port->name);
5288 VLOG_ERR("bridge %s: mirror %s outputs to port not on bridge",
5289 m->bridge->name, m->name);
5295 if (cfg->output_vlan) {
5296 VLOG_ERR("bridge %s: mirror %s specifies both output port and "
5297 "output vlan; ignoring output vlan",
5298 m->bridge->name, m->name);
5300 } else if (cfg->output_vlan) {
5302 out_vlan = *cfg->output_vlan;
5304 VLOG_ERR("bridge %s: mirror %s does not specify output; ignoring",
5305 m->bridge->name, m->name);
5310 shash_init(&src_ports);
5311 shash_init(&dst_ports);
5312 if (cfg->select_all) {
5313 for (i = 0; i < m->bridge->n_ports; i++) {
5314 const char *name = m->bridge->ports[i]->name;
5315 shash_add_once(&src_ports, name, NULL);
5316 shash_add_once(&dst_ports, name, NULL);
5321 /* Get ports, and drop duplicates and ports that don't exist. */
5322 mirror_collect_ports(m, cfg->select_src_port, cfg->n_select_src_port,
5324 mirror_collect_ports(m, cfg->select_dst_port, cfg->n_select_dst_port,
5327 /* Get all the vlans, and drop duplicate and invalid vlans. */
5328 n_vlans = mirror_collect_vlans(m, cfg, &vlans);
5331 /* Update mirror data. */
5332 if (!shash_equal_keys(&m->src_ports, &src_ports)
5333 || !shash_equal_keys(&m->dst_ports, &dst_ports)
5334 || m->n_vlans != n_vlans
5335 || memcmp(m->vlans, vlans, sizeof *vlans * n_vlans)
5336 || m->out_port != out_port
5337 || m->out_vlan != out_vlan) {
5338 bridge_flush(m->bridge);
5340 shash_swap(&m->src_ports, &src_ports);
5341 shash_swap(&m->dst_ports, &dst_ports);
5344 m->n_vlans = n_vlans;
5345 m->out_port = out_port;
5346 m->out_vlan = out_vlan;
5349 mirror_bit = MIRROR_MASK_C(1) << m->idx;
5350 for (i = 0; i < m->bridge->n_ports; i++) {
5351 struct port *port = m->bridge->ports[i];
5353 if (shash_find(&m->src_ports, port->name)
5356 ? port_trunks_any_mirrored_vlan(m, port)
5357 : vlan_is_mirrored(m, port->vlan)))) {
5358 port->src_mirrors |= mirror_bit;
5360 port->src_mirrors &= ~mirror_bit;
5363 if (shash_find(&m->dst_ports, port->name)) {
5364 port->dst_mirrors |= mirror_bit;
5366 port->dst_mirrors &= ~mirror_bit;
5371 shash_destroy(&src_ports);
5372 shash_destroy(&dst_ports);