1 /* Copyright (c) 2008, 2009, 2010, 2011, 2012 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.
28 #include "dynamic-string.h"
35 #include "mac-learning.h"
36 #include "meta-flow.h"
38 #include "ofp-print.h"
40 #include "ofproto/ofproto.h"
41 #include "poll-loop.h"
44 #include "socket-util.h"
46 #include "stream-ssl.h"
48 #include "system-stats.h"
53 #include "lib/vswitch-idl.h"
54 #include "xenserver.h"
56 #include "sflow_api.h"
57 #include "vlan-bitmap.h"
59 VLOG_DEFINE_THIS_MODULE(bridge);
61 COVERAGE_DEFINE(bridge_reconfigure);
63 /* Configuration of an uninstantiated iface. */
65 struct hmap_node hmap_node; /* Node in bridge's if_cfg_todo. */
66 const struct ovsrec_interface *cfg; /* Interface record. */
67 const struct ovsrec_port *parent; /* Parent port record. */
70 /* OpenFlow port slated for removal from ofproto. */
72 struct list list_node; /* Node in bridge's ofpp_garbage. */
73 uint16_t ofp_port; /* Port to be deleted. */
77 /* These members are always valid. */
78 struct list port_elem; /* Element in struct port's "ifaces" list. */
79 struct hmap_node name_node; /* In struct bridge's "iface_by_name" hmap. */
80 struct port *port; /* Containing port. */
81 char *name; /* Host network device name. */
83 /* These members are valid only after bridge_reconfigure() causes them to
85 struct hmap_node ofp_port_node; /* In struct bridge's "ifaces" hmap. */
86 int ofp_port; /* OpenFlow port number, -1 if unknown. */
87 struct netdev *netdev; /* Network device. */
88 const char *type; /* Usually same as cfg->type. */
89 const struct ovsrec_interface *cfg;
90 bool need_refresh; /* Refresh iface after create. */
94 struct uuid uuid; /* UUID of this "mirror" record in database. */
95 struct hmap_node hmap_node; /* In struct bridge's "mirrors" hmap. */
96 struct bridge *bridge;
98 const struct ovsrec_mirror *cfg;
102 struct hmap_node hmap_node; /* Element in struct bridge's "ports" hmap. */
103 struct bridge *bridge;
106 const struct ovsrec_port *cfg;
108 /* An ordinary bridge port has 1 interface.
109 * A bridge port for bonding has at least 2 interfaces. */
110 struct list ifaces; /* List of "struct iface"s. */
114 struct hmap_node node; /* In 'all_bridges'. */
115 char *name; /* User-specified arbitrary name. */
116 char *type; /* Datapath type. */
117 uint8_t ea[ETH_ADDR_LEN]; /* Bridge Ethernet Address. */
118 uint8_t default_ea[ETH_ADDR_LEN]; /* Default MAC. */
119 const struct ovsrec_bridge *cfg;
121 /* OpenFlow switch processing. */
122 struct ofproto *ofproto; /* OpenFlow switch. */
125 struct hmap ports; /* "struct port"s indexed by name. */
126 struct hmap ifaces; /* "struct iface"s indexed by ofp_port. */
127 struct hmap iface_by_name; /* "struct iface"s indexed by name. */
129 struct list ofpp_garbage; /* "struct ofpp_garbage" slated for removal. */
130 struct hmap if_cfg_todo; /* "struct if_cfg"s slated for creation.
131 Indexed on 'cfg->name'. */
133 /* Port mirroring. */
134 struct hmap mirrors; /* "struct mirror" indexed by UUID. */
136 /* Synthetic local port if necessary. */
137 struct ovsrec_port synth_local_port;
138 struct ovsrec_interface synth_local_iface;
139 struct ovsrec_interface *synth_local_ifacep;
142 /* All bridges, indexed by name. */
143 static struct hmap all_bridges = HMAP_INITIALIZER(&all_bridges);
145 /* OVSDB IDL used to obtain configuration. */
146 static struct ovsdb_idl *idl;
148 /* Most recently processed IDL sequence number. */
149 static unsigned int idl_seqno;
151 /* Each time this timer expires, the bridge fetches systems and interface
152 * statistics and pushes them into the database. */
153 #define STATS_INTERVAL (5 * 1000) /* In milliseconds. */
154 static long long int stats_timer = LLONG_MIN;
156 /* Stores the time after which rate limited statistics may be written to the
157 * database. Only updated when changes to the database require rate limiting.
159 #define DB_LIMIT_INTERVAL (1 * 1000) /* In milliseconds. */
160 static long long int db_limiter = LLONG_MIN;
162 /* In some datapaths, creating and destroying OpenFlow ports can be extremely
163 * expensive. This can cause bridge_reconfigure() to take a long time during
164 * which no other work can be done. To deal with this problem, we limit port
165 * adds and deletions to a window of OFP_PORT_ACTION_WINDOW milliseconds per
166 * call to bridge_reconfigure(). If there is more work to do after the limit
167 * is reached, 'need_reconfigure', is flagged and it's done on the next loop.
168 * This allows the rest of the code to catch up on important things like
169 * forwarding packets. */
170 #define OFP_PORT_ACTION_WINDOW 10
171 static bool reconfiguring = false;
173 static void add_del_bridges(const struct ovsrec_open_vswitch *);
174 static void bridge_update_ofprotos(void);
175 static void bridge_create(const struct ovsrec_bridge *);
176 static void bridge_destroy(struct bridge *);
177 static struct bridge *bridge_lookup(const char *name);
178 static unixctl_cb_func bridge_unixctl_dump_flows;
179 static unixctl_cb_func bridge_unixctl_reconnect;
180 static size_t bridge_get_controllers(const struct bridge *br,
181 struct ovsrec_controller ***controllersp);
182 static void bridge_add_del_ports(struct bridge *,
183 const unsigned long int *splinter_vlans);
184 static void bridge_refresh_ofp_port(struct bridge *);
185 static void bridge_configure_datapath_id(struct bridge *);
186 static void bridge_configure_flow_eviction_threshold(struct bridge *);
187 static void bridge_configure_netflow(struct bridge *);
188 static void bridge_configure_forward_bpdu(struct bridge *);
189 static void bridge_configure_mac_idle_time(struct bridge *);
190 static void bridge_configure_sflow(struct bridge *, int *sflow_bridge_number);
191 static void bridge_configure_stp(struct bridge *);
192 static void bridge_configure_tables(struct bridge *);
193 static void bridge_configure_remotes(struct bridge *,
194 const struct sockaddr_in *managers,
196 static void bridge_pick_local_hw_addr(struct bridge *,
197 uint8_t ea[ETH_ADDR_LEN],
198 struct iface **hw_addr_iface);
199 static uint64_t bridge_pick_datapath_id(struct bridge *,
200 const uint8_t bridge_ea[ETH_ADDR_LEN],
201 struct iface *hw_addr_iface);
202 static void bridge_queue_if_cfg(struct bridge *,
203 const struct ovsrec_interface *,
204 const struct ovsrec_port *);
205 static uint64_t dpid_from_hash(const void *, size_t nbytes);
206 static bool bridge_has_bond_fake_iface(const struct bridge *,
208 static bool port_is_bond_fake_iface(const struct port *);
210 static unixctl_cb_func qos_unixctl_show;
212 static struct port *port_create(struct bridge *, const struct ovsrec_port *);
213 static void port_del_ifaces(struct port *);
214 static void port_destroy(struct port *);
215 static struct port *port_lookup(const struct bridge *, const char *name);
216 static void port_configure(struct port *);
217 static struct lacp_settings *port_configure_lacp(struct port *,
218 struct lacp_settings *);
219 static void port_configure_bond(struct port *, struct bond_settings *,
220 uint32_t *bond_stable_ids);
221 static bool port_is_synthetic(const struct port *);
223 static void bridge_configure_mirrors(struct bridge *);
224 static struct mirror *mirror_create(struct bridge *,
225 const struct ovsrec_mirror *);
226 static void mirror_destroy(struct mirror *);
227 static bool mirror_configure(struct mirror *);
228 static void mirror_refresh_stats(struct mirror *);
230 static void iface_configure_lacp(struct iface *, struct lacp_slave_settings *);
231 static void iface_create(struct bridge *, struct if_cfg *, int ofp_port);
232 static void iface_refresh_type(struct iface *);
233 static void iface_destroy(struct iface *);
234 static struct iface *iface_lookup(const struct bridge *, const char *name);
235 static struct iface *iface_find(const char *name);
236 static struct if_cfg *if_cfg_lookup(const struct bridge *, const char *name);
237 static struct iface *iface_from_ofp_port(const struct bridge *,
239 static void iface_set_mac(struct iface *);
240 static void iface_set_ofport(const struct ovsrec_interface *, int64_t ofport);
241 static void iface_clear_db_record(const struct ovsrec_interface *if_cfg);
242 static void iface_configure_qos(struct iface *, const struct ovsrec_qos *);
243 static void iface_configure_cfm(struct iface *);
244 static void iface_refresh_cfm_stats(struct iface *);
245 static void iface_refresh_stats(struct iface *);
246 static void iface_refresh_status(struct iface *);
247 static bool iface_is_synthetic(const struct iface *);
248 static void shash_from_ovs_idl_map(char **keys, char **values, size_t n,
250 static void shash_to_ovs_idl_map(struct shash *,
251 char ***keys, char ***values, size_t *n);
253 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
255 * This is deprecated. It is only for compatibility with broken device drivers
256 * in old versions of Linux that do not properly support VLANs when VLAN
257 * devices are not used. When broken device drivers are no longer in
258 * widespread use, we will delete these interfaces. */
260 /* True if VLAN splinters are enabled on any interface, false otherwise.*/
261 static bool vlan_splinters_enabled_anywhere;
263 static bool vlan_splinters_is_enabled(const struct ovsrec_interface *);
264 static unsigned long int *collect_splinter_vlans(
265 const struct ovsrec_open_vswitch *);
266 static void configure_splinter_port(struct port *);
267 static void add_vlan_splinter_ports(struct bridge *,
268 const unsigned long int *splinter_vlans,
269 struct shash *ports);
271 /* Public functions. */
273 /* Initializes the bridge module, configuring it to obtain its configuration
274 * from an OVSDB server accessed over 'remote', which should be a string in a
275 * form acceptable to ovsdb_idl_create(). */
277 bridge_init(const char *remote)
279 /* Create connection to database. */
280 idl = ovsdb_idl_create(remote, &ovsrec_idl_class, true);
281 idl_seqno = ovsdb_idl_get_seqno(idl);
282 ovsdb_idl_set_lock(idl, "ovs_vswitchd");
284 ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_cur_cfg);
285 ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_statistics);
286 ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_external_ids);
287 ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_ovs_version);
288 ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_db_version);
289 ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_system_type);
290 ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_system_version);
292 ovsdb_idl_omit_alert(idl, &ovsrec_bridge_col_datapath_id);
293 ovsdb_idl_omit_alert(idl, &ovsrec_bridge_col_status);
294 ovsdb_idl_omit(idl, &ovsrec_bridge_col_external_ids);
296 ovsdb_idl_omit_alert(idl, &ovsrec_port_col_status);
297 ovsdb_idl_omit_alert(idl, &ovsrec_port_col_statistics);
298 ovsdb_idl_omit(idl, &ovsrec_port_col_external_ids);
299 ovsdb_idl_omit(idl, &ovsrec_port_col_fake_bridge);
301 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_admin_state);
302 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_duplex);
303 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_speed);
304 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_state);
305 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_resets);
306 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_mtu);
307 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_ofport);
308 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_statistics);
309 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_status);
310 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_fault);
311 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_fault_status);
312 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_remote_mpids);
313 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_health);
314 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_lacp_current);
315 ovsdb_idl_omit(idl, &ovsrec_interface_col_external_ids);
317 ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_is_connected);
318 ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_role);
319 ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_status);
320 ovsdb_idl_omit(idl, &ovsrec_controller_col_external_ids);
322 ovsdb_idl_omit(idl, &ovsrec_qos_col_external_ids);
324 ovsdb_idl_omit(idl, &ovsrec_queue_col_external_ids);
326 ovsdb_idl_omit(idl, &ovsrec_mirror_col_external_ids);
327 ovsdb_idl_omit_alert(idl, &ovsrec_mirror_col_statistics);
329 ovsdb_idl_omit(idl, &ovsrec_netflow_col_external_ids);
331 ovsdb_idl_omit(idl, &ovsrec_sflow_col_external_ids);
333 ovsdb_idl_omit(idl, &ovsrec_manager_col_external_ids);
334 ovsdb_idl_omit(idl, &ovsrec_manager_col_inactivity_probe);
335 ovsdb_idl_omit(idl, &ovsrec_manager_col_is_connected);
336 ovsdb_idl_omit(idl, &ovsrec_manager_col_max_backoff);
337 ovsdb_idl_omit(idl, &ovsrec_manager_col_status);
339 ovsdb_idl_omit(idl, &ovsrec_ssl_col_external_ids);
341 /* Register unixctl commands. */
342 unixctl_command_register("qos/show", "interface", 1, 1,
343 qos_unixctl_show, NULL);
344 unixctl_command_register("bridge/dump-flows", "bridge", 1, 1,
345 bridge_unixctl_dump_flows, NULL);
346 unixctl_command_register("bridge/reconnect", "[bridge]", 0, 1,
347 bridge_unixctl_reconnect, NULL);
357 struct bridge *br, *next_br;
359 HMAP_FOR_EACH_SAFE (br, next_br, node, &all_bridges) {
362 ovsdb_idl_destroy(idl);
365 /* Looks at the list of managers in 'ovs_cfg' and extracts their remote IP
366 * addresses and ports into '*managersp' and '*n_managersp'. The caller is
367 * responsible for freeing '*managersp' (with free()).
369 * You may be asking yourself "why does ovs-vswitchd care?", because
370 * ovsdb-server is responsible for connecting to the managers, and ovs-vswitchd
371 * should not be and in fact is not directly involved in that. But
372 * ovs-vswitchd needs to make sure that ovsdb-server can reach the managers, so
373 * it has to tell in-band control where the managers are to enable that.
374 * (Thus, only managers connected in-band are collected.)
377 collect_in_band_managers(const struct ovsrec_open_vswitch *ovs_cfg,
378 struct sockaddr_in **managersp, size_t *n_managersp)
380 struct sockaddr_in *managers = NULL;
381 size_t n_managers = 0;
385 /* Collect all of the potential targets from the "targets" columns of the
386 * rows pointed to by "manager_options", excluding any that are
389 for (i = 0; i < ovs_cfg->n_manager_options; i++) {
390 struct ovsrec_manager *m = ovs_cfg->manager_options[i];
392 if (m->connection_mode && !strcmp(m->connection_mode, "out-of-band")) {
393 sset_find_and_delete(&targets, m->target);
395 sset_add(&targets, m->target);
399 /* Now extract the targets' IP addresses. */
400 if (!sset_is_empty(&targets)) {
403 managers = xmalloc(sset_count(&targets) * sizeof *managers);
404 SSET_FOR_EACH (target, &targets) {
405 struct sockaddr_in *sin = &managers[n_managers];
407 if (stream_parse_target_with_default_ports(target,
415 sset_destroy(&targets);
417 *managersp = managers;
418 *n_managersp = n_managers;
422 bridge_reconfigure(const struct ovsrec_open_vswitch *ovs_cfg)
424 unsigned long int *splinter_vlans;
427 COVERAGE_INC(bridge_reconfigure);
429 assert(!reconfiguring);
430 reconfiguring = true;
432 /* Destroy "struct bridge"s, "struct port"s, and "struct iface"s according
433 * to 'ovs_cfg' while update the "if_cfg_queue", with only very minimal
434 * configuration otherwise.
436 * This is mostly an update to bridge data structures. Nothing is pushed
437 * down to ofproto or lower layers. */
438 add_del_bridges(ovs_cfg);
439 splinter_vlans = collect_splinter_vlans(ovs_cfg);
440 HMAP_FOR_EACH (br, node, &all_bridges) {
441 bridge_add_del_ports(br, splinter_vlans);
443 free(splinter_vlans);
445 /* Delete datapaths that are no longer configured, and create ones which
446 * don't exist but should. */
447 bridge_update_ofprotos();
449 /* Make sure each "struct iface" has a correct ofp_port in its ofproto. */
450 HMAP_FOR_EACH (br, node, &all_bridges) {
451 bridge_refresh_ofp_port(br);
454 /* Clear database records for "if_cfg"s which haven't been instantiated. */
455 HMAP_FOR_EACH (br, node, &all_bridges) {
456 struct if_cfg *if_cfg;
458 HMAP_FOR_EACH (if_cfg, hmap_node, &br->if_cfg_todo) {
459 iface_clear_db_record(if_cfg->cfg);
465 bridge_reconfigure_ofp(void)
467 long long int deadline;
471 deadline = time_msec() + OFP_PORT_ACTION_WINDOW;
473 /* The kernel will reject any attempt to add a given port to a datapath if
474 * that port already belongs to a different datapath, so we must do all
475 * port deletions before any port additions. */
476 HMAP_FOR_EACH (br, node, &all_bridges) {
477 struct ofpp_garbage *garbage, *next;
479 LIST_FOR_EACH_SAFE (garbage, next, list_node, &br->ofpp_garbage) {
480 ofproto_port_del(br->ofproto, garbage->ofp_port);
481 list_remove(&garbage->list_node);
485 if (time_msec() >= deadline) {
491 HMAP_FOR_EACH (br, node, &all_bridges) {
492 struct if_cfg *if_cfg, *next;
494 HMAP_FOR_EACH_SAFE (if_cfg, next, hmap_node, &br->if_cfg_todo) {
495 iface_create(br, if_cfg, -1);
497 if (time_msec() >= deadline) {
507 bridge_reconfigure_continue(const struct ovsrec_open_vswitch *ovs_cfg)
509 struct sockaddr_in *managers;
510 int sflow_bridge_number;
515 assert(reconfiguring);
516 done = bridge_reconfigure_ofp();
518 /* Complete the configuration. */
519 sflow_bridge_number = 0;
520 collect_in_band_managers(ovs_cfg, &managers, &n_managers);
521 HMAP_FOR_EACH (br, node, &all_bridges) {
524 /* We need the datapath ID early to allow LACP ports to use it as the
525 * default system ID. */
526 bridge_configure_datapath_id(br);
528 HMAP_FOR_EACH (port, hmap_node, &br->ports) {
531 port_configure(port);
533 LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
534 iface_configure_cfm(iface);
535 iface_configure_qos(iface, port->cfg->qos);
536 iface_set_mac(iface);
539 bridge_configure_mirrors(br);
540 bridge_configure_flow_eviction_threshold(br);
541 bridge_configure_forward_bpdu(br);
542 bridge_configure_mac_idle_time(br);
543 bridge_configure_remotes(br, managers, n_managers);
544 bridge_configure_netflow(br);
545 bridge_configure_sflow(br, &sflow_bridge_number);
546 bridge_configure_stp(br);
547 bridge_configure_tables(br);
552 /* ovs-vswitchd has completed initialization, so allow the process that
553 * forked us to exit successfully. */
554 daemonize_complete();
555 reconfiguring = false;
561 /* Delete ofprotos which aren't configured or have the wrong type. Create
562 * ofprotos which don't exist but need to. */
564 bridge_update_ofprotos(void)
566 struct bridge *br, *next;
571 /* Delete ofprotos with no bridge or with the wrong type. */
574 ofproto_enumerate_types(&types);
575 SSET_FOR_EACH (type, &types) {
578 ofproto_enumerate_names(type, &names);
579 SSET_FOR_EACH (name, &names) {
580 br = bridge_lookup(name);
581 if (!br || strcmp(type, br->type)) {
582 ofproto_delete(name, type);
586 sset_destroy(&names);
587 sset_destroy(&types);
589 /* Add ofprotos for bridges which don't have one yet. */
590 HMAP_FOR_EACH_SAFE (br, next, node, &all_bridges) {
598 /* Remove ports from any datapath with the same name as 'br'. If we
599 * don't do this, creating 'br''s ofproto will fail because a port with
600 * the same name as its local port already exists. */
601 HMAP_FOR_EACH (br2, node, &all_bridges) {
602 struct ofproto_port ofproto_port;
608 if (!ofproto_port_query_by_name(br2->ofproto, br->name,
610 error = ofproto_port_del(br2->ofproto, ofproto_port.ofp_port);
612 VLOG_ERR("failed to delete port %s: %s", ofproto_port.name,
615 ofproto_port_destroy(&ofproto_port);
619 error = ofproto_create(br->name, br->type, &br->ofproto);
621 VLOG_ERR("failed to create bridge %s: %s", br->name,
629 port_configure(struct port *port)
631 const struct ovsrec_port *cfg = port->cfg;
632 struct bond_settings bond_settings;
633 struct lacp_settings lacp_settings;
634 struct ofproto_bundle_settings s;
637 if (cfg->vlan_mode && !strcmp(cfg->vlan_mode, "splinter")) {
638 configure_splinter_port(port);
647 s.slaves = xmalloc(list_size(&port->ifaces) * sizeof *s.slaves);
648 LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
649 s.slaves[s.n_slaves++] = iface->ofp_port;
654 if (cfg->tag && *cfg->tag >= 0 && *cfg->tag <= 4095) {
658 /* Get VLAN trunks. */
661 s.trunks = vlan_bitmap_from_array(cfg->trunks, cfg->n_trunks);
665 if (cfg->vlan_mode) {
666 if (!strcmp(cfg->vlan_mode, "access")) {
667 s.vlan_mode = PORT_VLAN_ACCESS;
668 } else if (!strcmp(cfg->vlan_mode, "trunk")) {
669 s.vlan_mode = PORT_VLAN_TRUNK;
670 } else if (!strcmp(cfg->vlan_mode, "native-tagged")) {
671 s.vlan_mode = PORT_VLAN_NATIVE_TAGGED;
672 } else if (!strcmp(cfg->vlan_mode, "native-untagged")) {
673 s.vlan_mode = PORT_VLAN_NATIVE_UNTAGGED;
675 /* This "can't happen" because ovsdb-server should prevent it. */
676 VLOG_ERR("unknown VLAN mode %s", cfg->vlan_mode);
677 s.vlan_mode = PORT_VLAN_TRUNK;
681 s.vlan_mode = PORT_VLAN_ACCESS;
683 VLOG_ERR("port %s: ignoring trunks in favor of implicit vlan",
687 s.vlan_mode = PORT_VLAN_TRUNK;
690 s.use_priority_tags = !strcmp("true", ovsrec_port_get_other_config_value(
691 cfg, "priority-tags", ""));
693 /* Get LACP settings. */
694 s.lacp = port_configure_lacp(port, &lacp_settings);
698 s.lacp_slaves = xmalloc(s.n_slaves * sizeof *s.lacp_slaves);
699 LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
700 iface_configure_lacp(iface, &s.lacp_slaves[i++]);
703 s.lacp_slaves = NULL;
706 /* Get bond settings. */
707 if (s.n_slaves > 1) {
708 s.bond = &bond_settings;
709 s.bond_stable_ids = xmalloc(s.n_slaves * sizeof *s.bond_stable_ids);
710 port_configure_bond(port, &bond_settings, s.bond_stable_ids);
713 s.bond_stable_ids = NULL;
715 LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
716 netdev_set_miimon_interval(iface->netdev, 0);
721 ofproto_bundle_register(port->bridge->ofproto, port, &s);
727 free(s.bond_stable_ids);
730 /* Pick local port hardware address and datapath ID for 'br'. */
732 bridge_configure_datapath_id(struct bridge *br)
734 uint8_t ea[ETH_ADDR_LEN];
736 struct iface *local_iface;
737 struct iface *hw_addr_iface;
740 bridge_pick_local_hw_addr(br, ea, &hw_addr_iface);
741 local_iface = iface_from_ofp_port(br, OFPP_LOCAL);
743 int error = netdev_set_etheraddr(local_iface->netdev, ea);
745 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
746 VLOG_ERR_RL(&rl, "bridge %s: failed to set bridge "
747 "Ethernet address: %s",
748 br->name, strerror(error));
751 memcpy(br->ea, ea, ETH_ADDR_LEN);
753 dpid = bridge_pick_datapath_id(br, ea, hw_addr_iface);
754 ofproto_set_datapath_id(br->ofproto, dpid);
756 dpid_string = xasprintf("%016"PRIx64, dpid);
757 ovsrec_bridge_set_datapath_id(br->cfg, dpid_string);
761 /* Set NetFlow configuration on 'br'. */
763 bridge_configure_netflow(struct bridge *br)
765 struct ovsrec_netflow *cfg = br->cfg->netflow;
766 struct netflow_options opts;
769 ofproto_set_netflow(br->ofproto, NULL);
773 memset(&opts, 0, sizeof opts);
775 /* Get default NetFlow configuration from datapath.
776 * Apply overrides from 'cfg'. */
777 ofproto_get_netflow_ids(br->ofproto, &opts.engine_type, &opts.engine_id);
778 if (cfg->engine_type) {
779 opts.engine_type = *cfg->engine_type;
781 if (cfg->engine_id) {
782 opts.engine_id = *cfg->engine_id;
785 /* Configure active timeout interval. */
786 opts.active_timeout = cfg->active_timeout;
787 if (!opts.active_timeout) {
788 opts.active_timeout = -1;
789 } else if (opts.active_timeout < 0) {
790 VLOG_WARN("bridge %s: active timeout interval set to negative "
791 "value, using default instead (%d seconds)", br->name,
792 NF_ACTIVE_TIMEOUT_DEFAULT);
793 opts.active_timeout = -1;
796 /* Add engine ID to interface number to disambiguate bridgs? */
797 opts.add_id_to_iface = cfg->add_id_to_interface;
798 if (opts.add_id_to_iface) {
799 if (opts.engine_id > 0x7f) {
800 VLOG_WARN("bridge %s: NetFlow port mangling may conflict with "
801 "another vswitch, choose an engine id less than 128",
804 if (hmap_count(&br->ports) > 508) {
805 VLOG_WARN("bridge %s: NetFlow port mangling will conflict with "
806 "another port when more than 508 ports are used",
812 sset_init(&opts.collectors);
813 sset_add_array(&opts.collectors, cfg->targets, cfg->n_targets);
816 if (ofproto_set_netflow(br->ofproto, &opts)) {
817 VLOG_ERR("bridge %s: problem setting netflow collectors", br->name);
819 sset_destroy(&opts.collectors);
822 /* Set sFlow configuration on 'br'. */
824 bridge_configure_sflow(struct bridge *br, int *sflow_bridge_number)
826 const struct ovsrec_sflow *cfg = br->cfg->sflow;
827 struct ovsrec_controller **controllers;
828 struct ofproto_sflow_options oso;
829 size_t n_controllers;
833 ofproto_set_sflow(br->ofproto, NULL);
837 memset(&oso, 0, sizeof oso);
839 sset_init(&oso.targets);
840 sset_add_array(&oso.targets, cfg->targets, cfg->n_targets);
842 oso.sampling_rate = SFL_DEFAULT_SAMPLING_RATE;
844 oso.sampling_rate = *cfg->sampling;
847 oso.polling_interval = SFL_DEFAULT_POLLING_INTERVAL;
849 oso.polling_interval = *cfg->polling;
852 oso.header_len = SFL_DEFAULT_HEADER_SIZE;
854 oso.header_len = *cfg->header;
857 oso.sub_id = (*sflow_bridge_number)++;
858 oso.agent_device = cfg->agent;
860 oso.control_ip = NULL;
861 n_controllers = bridge_get_controllers(br, &controllers);
862 for (i = 0; i < n_controllers; i++) {
863 if (controllers[i]->local_ip) {
864 oso.control_ip = controllers[i]->local_ip;
868 ofproto_set_sflow(br->ofproto, &oso);
870 sset_destroy(&oso.targets);
874 port_configure_stp(const struct ofproto *ofproto, struct port *port,
875 struct ofproto_port_stp_settings *port_s,
876 int *port_num_counter, unsigned long *port_num_bitmap)
878 const char *config_str;
881 config_str = ovsrec_port_get_other_config_value(port->cfg, "stp-enable",
883 if (config_str && !strcmp(config_str, "false")) {
884 port_s->enable = false;
887 port_s->enable = true;
890 /* STP over bonds is not supported. */
891 if (!list_is_singleton(&port->ifaces)) {
892 VLOG_ERR("port %s: cannot enable STP on bonds, disabling",
894 port_s->enable = false;
898 iface = CONTAINER_OF(list_front(&port->ifaces), struct iface, port_elem);
900 /* Internal ports shouldn't participate in spanning tree, so
902 if (!strcmp(iface->type, "internal")) {
903 VLOG_DBG("port %s: disable STP on internal ports", port->name);
904 port_s->enable = false;
908 /* STP on mirror output ports is not supported. */
909 if (ofproto_is_mirror_output_bundle(ofproto, port)) {
910 VLOG_DBG("port %s: disable STP on mirror ports", port->name);
911 port_s->enable = false;
915 config_str = ovsrec_port_get_other_config_value(port->cfg, "stp-port-num",
918 unsigned long int port_num = strtoul(config_str, NULL, 0);
919 int port_idx = port_num - 1;
921 if (port_num < 1 || port_num > STP_MAX_PORTS) {
922 VLOG_ERR("port %s: invalid stp-port-num", port->name);
923 port_s->enable = false;
927 if (bitmap_is_set(port_num_bitmap, port_idx)) {
928 VLOG_ERR("port %s: duplicate stp-port-num %lu, disabling",
929 port->name, port_num);
930 port_s->enable = false;
933 bitmap_set1(port_num_bitmap, port_idx);
934 port_s->port_num = port_idx;
936 if (*port_num_counter > STP_MAX_PORTS) {
937 VLOG_ERR("port %s: too many STP ports, disabling", port->name);
938 port_s->enable = false;
942 port_s->port_num = (*port_num_counter)++;
945 config_str = ovsrec_port_get_other_config_value(port->cfg, "stp-path-cost",
948 port_s->path_cost = strtoul(config_str, NULL, 10);
950 enum netdev_features current;
952 if (netdev_get_features(iface->netdev, ¤t, NULL, NULL, NULL)) {
953 /* Couldn't get speed, so assume 100Mb/s. */
954 port_s->path_cost = 19;
958 mbps = netdev_features_to_bps(current) / 1000000;
959 port_s->path_cost = stp_convert_speed_to_cost(mbps);
963 config_str = ovsrec_port_get_other_config_value(port->cfg,
967 port_s->priority = strtoul(config_str, NULL, 0);
969 port_s->priority = STP_DEFAULT_PORT_PRIORITY;
973 /* Set spanning tree configuration on 'br'. */
975 bridge_configure_stp(struct bridge *br)
977 if (!br->cfg->stp_enable) {
978 ofproto_set_stp(br->ofproto, NULL);
980 struct ofproto_stp_settings br_s;
981 const char *config_str;
983 int port_num_counter;
984 unsigned long *port_num_bitmap;
986 config_str = ovsrec_bridge_get_other_config_value(br->cfg,
990 uint8_t ea[ETH_ADDR_LEN];
992 if (eth_addr_from_string(config_str, ea)) {
993 br_s.system_id = eth_addr_to_uint64(ea);
995 br_s.system_id = eth_addr_to_uint64(br->ea);
996 VLOG_ERR("bridge %s: invalid stp-system-id, defaulting "
997 "to "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(br->ea));
1000 br_s.system_id = eth_addr_to_uint64(br->ea);
1003 config_str = ovsrec_bridge_get_other_config_value(br->cfg,
1007 br_s.priority = strtoul(config_str, NULL, 0);
1009 br_s.priority = STP_DEFAULT_BRIDGE_PRIORITY;
1012 config_str = ovsrec_bridge_get_other_config_value(br->cfg,
1016 br_s.hello_time = strtoul(config_str, NULL, 10) * 1000;
1018 br_s.hello_time = STP_DEFAULT_HELLO_TIME;
1021 config_str = ovsrec_bridge_get_other_config_value(br->cfg,
1025 br_s.max_age = strtoul(config_str, NULL, 10) * 1000;
1027 br_s.max_age = STP_DEFAULT_MAX_AGE;
1030 config_str = ovsrec_bridge_get_other_config_value(br->cfg,
1031 "stp-forward-delay",
1034 br_s.fwd_delay = strtoul(config_str, NULL, 10) * 1000;
1036 br_s.fwd_delay = STP_DEFAULT_FWD_DELAY;
1039 /* Configure STP on the bridge. */
1040 if (ofproto_set_stp(br->ofproto, &br_s)) {
1041 VLOG_ERR("bridge %s: could not enable STP", br->name);
1045 /* Users must either set the port number with the "stp-port-num"
1046 * configuration on all ports or none. If manual configuration
1047 * is not done, then we allocate them sequentially. */
1048 port_num_counter = 0;
1049 port_num_bitmap = bitmap_allocate(STP_MAX_PORTS);
1050 HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1051 struct ofproto_port_stp_settings port_s;
1052 struct iface *iface;
1054 port_configure_stp(br->ofproto, port, &port_s,
1055 &port_num_counter, port_num_bitmap);
1057 /* As bonds are not supported, just apply configuration to
1058 * all interfaces. */
1059 LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
1060 if (ofproto_port_set_stp(br->ofproto, iface->ofp_port,
1062 VLOG_ERR("port %s: could not enable STP", port->name);
1068 if (bitmap_scan(port_num_bitmap, 0, STP_MAX_PORTS) != STP_MAX_PORTS
1069 && port_num_counter) {
1070 VLOG_ERR("bridge %s: must manually configure all STP port "
1071 "IDs or none, disabling", br->name);
1072 ofproto_set_stp(br->ofproto, NULL);
1074 bitmap_free(port_num_bitmap);
1079 bridge_has_bond_fake_iface(const struct bridge *br, const char *name)
1081 const struct port *port = port_lookup(br, name);
1082 return port && port_is_bond_fake_iface(port);
1086 port_is_bond_fake_iface(const struct port *port)
1088 return port->cfg->bond_fake_iface && !list_is_short(&port->ifaces);
1092 add_del_bridges(const struct ovsrec_open_vswitch *cfg)
1094 struct bridge *br, *next;
1095 struct shash new_br;
1098 /* Collect new bridges' names and types. */
1099 shash_init(&new_br);
1100 for (i = 0; i < cfg->n_bridges; i++) {
1101 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1102 const struct ovsrec_bridge *br_cfg = cfg->bridges[i];
1104 if (strchr(br_cfg->name, '/')) {
1105 /* Prevent remote ovsdb-server users from accessing arbitrary
1106 * directories, e.g. consider a bridge named "../../../etc/". */
1107 VLOG_WARN_RL(&rl, "ignoring bridge with invalid name \"%s\"",
1109 } else if (!shash_add_once(&new_br, br_cfg->name, br_cfg)) {
1110 VLOG_WARN_RL(&rl, "bridge %s specified twice", br_cfg->name);
1114 /* Get rid of deleted bridges or those whose types have changed.
1115 * Update 'cfg' of bridges that still exist. */
1116 HMAP_FOR_EACH_SAFE (br, next, node, &all_bridges) {
1117 br->cfg = shash_find_data(&new_br, br->name);
1118 if (!br->cfg || strcmp(br->type, ofproto_normalize_type(
1119 br->cfg->datapath_type))) {
1124 /* Add new bridges. */
1125 for (i = 0; i < cfg->n_bridges; i++) {
1126 const struct ovsrec_bridge *br_cfg = cfg->bridges[i];
1127 struct bridge *br = bridge_lookup(br_cfg->name);
1129 bridge_create(br_cfg);
1133 shash_destroy(&new_br);
1137 iface_set_ofp_port(struct iface *iface, int ofp_port)
1139 struct bridge *br = iface->port->bridge;
1141 assert(iface->ofp_port < 0 && ofp_port >= 0);
1142 iface->ofp_port = ofp_port;
1143 hmap_insert(&br->ifaces, &iface->ofp_port_node, hash_int(ofp_port, 0));
1144 iface_set_ofport(iface->cfg, ofp_port);
1148 bridge_ofproto_port_del(struct bridge *br, struct ofproto_port ofproto_port)
1150 int error = ofproto_port_del(br->ofproto, ofproto_port.ofp_port);
1152 VLOG_WARN("bridge %s: failed to remove %s interface (%s)",
1153 br->name, ofproto_port.name, strerror(error));
1155 VLOG_INFO("bridge %s: removed interface %s (%d)", br->name,
1156 ofproto_port.name, ofproto_port.ofp_port);
1160 /* Update bridges "if_cfg"s, "struct port"s, and "struct iface"s to be
1161 * consistent with the ofp_ports in "br->ofproto". */
1163 bridge_refresh_ofp_port(struct bridge *br)
1165 struct ofproto_port_dump dump;
1166 struct ofproto_port ofproto_port;
1167 struct port *port, *port_next;
1169 /* Clear each "struct iface"s ofp_port so we can get its correct value. */
1170 hmap_clear(&br->ifaces);
1171 HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1172 struct iface *iface;
1174 LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
1175 iface->ofp_port = -1;
1179 /* Obtain the correct "ofp_port"s from ofproto. Find any if_cfg's which
1180 * already exist in the datapath and promote them to full fledged "struct
1181 * iface"s. Mark ports in the datapath which don't belong as garbage. */
1182 OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, br->ofproto) {
1183 struct iface *iface = iface_lookup(br, ofproto_port.name);
1185 if (iface->ofp_port >= 0) {
1186 VLOG_WARN("bridge %s: interface %s reported twice",
1187 br->name, ofproto_port.name);
1188 } else if (iface_from_ofp_port(br, ofproto_port.ofp_port)) {
1189 VLOG_WARN("bridge %s: interface %"PRIu16" reported twice",
1190 br->name, ofproto_port.ofp_port);
1191 } else if (!strcmp(ofproto_port.type, iface->type)) {
1192 iface_set_ofp_port(iface, ofproto_port.ofp_port);
1194 /* Port has incorrect type so delete it later. */
1197 struct if_cfg *if_cfg = if_cfg_lookup(br, ofproto_port.name);
1200 iface_create(br, if_cfg, ofproto_port.ofp_port);
1201 } else if (bridge_has_bond_fake_iface(br, ofproto_port.name)
1202 && strcmp(ofproto_port.type, "internal")) {
1203 /* Bond fake iface with the wrong type. */
1204 bridge_ofproto_port_del(br, ofproto_port);
1206 struct ofpp_garbage *garbage = xmalloc(sizeof *garbage);
1207 garbage->ofp_port = ofproto_port.ofp_port;
1208 list_push_front(&br->ofpp_garbage, &garbage->list_node);
1213 /* Some ifaces may not have "ofp_port"s in ofproto and therefore don't
1214 * deserve to have "struct iface"s. Demote these to "if_cfg"s so that
1215 * later they can be added to ofproto. */
1216 HMAP_FOR_EACH_SAFE (port, port_next, hmap_node, &br->ports) {
1217 struct iface *iface, *iface_next;
1219 LIST_FOR_EACH_SAFE (iface, iface_next, port_elem, &port->ifaces) {
1220 if (iface->ofp_port < 0) {
1221 bridge_queue_if_cfg(br, iface->cfg, port->cfg);
1222 iface_destroy(iface);
1226 if (list_is_empty(&port->ifaces)) {
1232 /* Creates a new iface on 'br' based on 'if_cfg'. The new iface has OpenFlow
1233 * port number 'ofp_port'. If ofp_port is negative, an OpenFlow port is
1234 * automatically allocated for the iface. Takes ownership of and
1235 * deallocates 'if_cfg'. */
1237 iface_create(struct bridge *br, struct if_cfg *if_cfg, int ofp_port)
1239 struct ofproto_port ofproto_port;
1240 struct iface *iface;
1244 assert(!iface_lookup(br, if_cfg->cfg->name));
1246 port = port_lookup(br, if_cfg->parent->name);
1248 port = port_create(br, if_cfg->parent);
1251 iface = xzalloc(sizeof *iface);
1253 iface->name = xstrdup(if_cfg->cfg->name);
1254 iface->ofp_port = -1;
1255 iface->netdev = NULL;
1256 iface->cfg = if_cfg->cfg;
1257 iface->need_refresh = true;
1258 hmap_insert(&br->iface_by_name, &iface->name_node,
1259 hash_string(iface->name, 0));
1260 list_push_back(&port->ifaces, &iface->port_elem);
1261 iface_refresh_type(iface);
1262 if (ofp_port >= 0) {
1263 iface_set_ofp_port(iface, ofp_port);
1266 hmap_remove(&br->if_cfg_todo, &if_cfg->hmap_node);
1270 error = netdev_open(iface->name, iface->type, &iface->netdev);
1272 VLOG_WARN("could not open network device %s (%s)", iface->name,
1277 && port->cfg->vlan_mode
1278 && !strcmp(port->cfg->vlan_mode, "splinter")) {
1279 netdev_turn_flags_on(iface->netdev, NETDEV_UP, true);
1282 /* Configure the netdev. */
1283 if (iface->netdev) {
1287 shash_from_ovs_idl_map(iface->cfg->key_options,
1288 iface->cfg->value_options,
1289 iface->cfg->n_options, &args);
1290 error = netdev_set_config(iface->netdev, &args);
1291 shash_destroy(&args);
1294 VLOG_WARN("could not configure network device %s (%s)",
1295 iface->name, strerror(error));
1296 netdev_close(iface->netdev);
1297 iface->netdev = NULL;
1301 /* Add the port, if necessary. */
1302 if (iface->netdev && iface->ofp_port < 0) {
1303 uint16_t new_ofp_port;
1306 error = ofproto_port_add(br->ofproto, iface->netdev, &new_ofp_port);
1308 VLOG_INFO("bridge %s: added interface %s (%d)", br->name,
1309 iface->name, new_ofp_port);
1310 iface_set_ofp_port(iface, new_ofp_port);
1312 netdev_close(iface->netdev);
1313 iface->netdev = NULL;
1317 /* Populate stats columns in new Interface rows. */
1318 if (iface->netdev && iface->need_refresh) {
1319 iface_refresh_stats(iface);
1320 iface_refresh_status(iface);
1321 iface->need_refresh = false;
1324 /* Delete the iface if we failed. */
1325 if (iface->netdev && iface->ofp_port >= 0) {
1326 VLOG_DBG("bridge %s: interface %s is on port %d",
1327 br->name, iface->name, iface->ofp_port);
1329 if (iface->netdev) {
1330 VLOG_ERR("bridge %s: missing %s interface, dropping",
1331 br->name, iface->name);
1333 /* We already reported a related error, don't bother
1334 * duplicating it. */
1336 if (!ofproto_port_query_by_name(br->ofproto, port->name,
1338 VLOG_INFO("bridge %s: removed interface %s (%d)",
1339 br->name, port->name, ofproto_port.ofp_port);
1340 bridge_ofproto_port_del(br, ofproto_port);
1341 ofproto_port_destroy(&ofproto_port);
1343 iface_clear_db_record(iface->cfg);
1344 iface_destroy(iface);
1347 if (list_is_empty(&port->ifaces)) {
1352 /* Add bond fake iface if necessary. */
1353 if (port_is_bond_fake_iface(port)) {
1354 if (ofproto_port_query_by_name(br->ofproto, port->name,
1356 struct netdev *netdev;
1359 error = netdev_open(port->name, "internal", &netdev);
1361 ofproto_port_add(br->ofproto, netdev, NULL);
1362 netdev_close(netdev);
1364 VLOG_WARN("could not open network device %s (%s)",
1365 port->name, strerror(error));
1368 /* Already exists, nothing to do. */
1369 ofproto_port_destroy(&ofproto_port);
1374 /* Set Flow eviction threshold */
1376 bridge_configure_flow_eviction_threshold(struct bridge *br)
1378 const char *threshold_str;
1382 ovsrec_bridge_get_other_config_value(br->cfg,
1383 "flow-eviction-threshold",
1385 if (threshold_str) {
1386 threshold = strtoul(threshold_str, NULL, 10);
1388 threshold = OFPROTO_FLOW_EVICTON_THRESHOLD_DEFAULT;
1390 ofproto_set_flow_eviction_threshold(br->ofproto, threshold);
1393 /* Set forward BPDU option. */
1395 bridge_configure_forward_bpdu(struct bridge *br)
1397 const char *forward_bpdu_str;
1398 bool forward_bpdu = false;
1400 forward_bpdu_str = ovsrec_bridge_get_other_config_value(br->cfg,
1403 if (forward_bpdu_str && !strcmp(forward_bpdu_str, "true")) {
1404 forward_bpdu = true;
1406 ofproto_set_forward_bpdu(br->ofproto, forward_bpdu);
1409 /* Set MAC aging time for 'br'. */
1411 bridge_configure_mac_idle_time(struct bridge *br)
1413 const char *idle_time_str;
1416 idle_time_str = ovsrec_bridge_get_other_config_value(br->cfg,
1419 idle_time = (idle_time_str && atoi(idle_time_str)
1420 ? atoi(idle_time_str)
1421 : MAC_ENTRY_DEFAULT_IDLE_TIME);
1422 ofproto_set_mac_idle_time(br->ofproto, idle_time);
1426 bridge_pick_local_hw_addr(struct bridge *br, uint8_t ea[ETH_ADDR_LEN],
1427 struct iface **hw_addr_iface)
1429 struct hmapx mirror_output_ports;
1432 bool found_addr = false;
1436 *hw_addr_iface = NULL;
1438 /* Did the user request a particular MAC? */
1439 hwaddr = ovsrec_bridge_get_other_config_value(br->cfg, "hwaddr", NULL);
1440 if (hwaddr && eth_addr_from_string(hwaddr, ea)) {
1441 if (eth_addr_is_multicast(ea)) {
1442 VLOG_ERR("bridge %s: cannot set MAC address to multicast "
1443 "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
1444 } else if (eth_addr_is_zero(ea)) {
1445 VLOG_ERR("bridge %s: cannot set MAC address to zero", br->name);
1451 /* Mirror output ports don't participate in picking the local hardware
1452 * address. ofproto can't help us find out whether a given port is a
1453 * mirror output because we haven't configured mirrors yet, so we need to
1454 * accumulate them ourselves. */
1455 hmapx_init(&mirror_output_ports);
1456 for (i = 0; i < br->cfg->n_mirrors; i++) {
1457 struct ovsrec_mirror *m = br->cfg->mirrors[i];
1458 if (m->output_port) {
1459 hmapx_add(&mirror_output_ports, m->output_port);
1463 /* Otherwise choose the minimum non-local MAC address among all of the
1465 HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1466 uint8_t iface_ea[ETH_ADDR_LEN];
1467 struct iface *candidate;
1468 struct iface *iface;
1470 /* Mirror output ports don't participate. */
1471 if (hmapx_contains(&mirror_output_ports, port->cfg)) {
1475 /* Choose the MAC address to represent the port. */
1477 if (port->cfg->mac && eth_addr_from_string(port->cfg->mac, iface_ea)) {
1478 /* Find the interface with this Ethernet address (if any) so that
1479 * we can provide the correct devname to the caller. */
1480 LIST_FOR_EACH (candidate, port_elem, &port->ifaces) {
1481 uint8_t candidate_ea[ETH_ADDR_LEN];
1482 if (!netdev_get_etheraddr(candidate->netdev, candidate_ea)
1483 && eth_addr_equals(iface_ea, candidate_ea)) {
1488 /* Choose the interface whose MAC address will represent the port.
1489 * The Linux kernel bonding code always chooses the MAC address of
1490 * the first slave added to a bond, and the Fedora networking
1491 * scripts always add slaves to a bond in alphabetical order, so
1492 * for compatibility we choose the interface with the name that is
1493 * first in alphabetical order. */
1494 LIST_FOR_EACH (candidate, port_elem, &port->ifaces) {
1495 if (!iface || strcmp(candidate->name, iface->name) < 0) {
1500 /* The local port doesn't count (since we're trying to choose its
1501 * MAC address anyway). */
1502 if (iface->ofp_port == OFPP_LOCAL) {
1507 error = netdev_get_etheraddr(iface->netdev, iface_ea);
1513 /* Compare against our current choice. */
1514 if (!eth_addr_is_multicast(iface_ea) &&
1515 !eth_addr_is_local(iface_ea) &&
1516 !eth_addr_is_reserved(iface_ea) &&
1517 !eth_addr_is_zero(iface_ea) &&
1518 (!found_addr || eth_addr_compare_3way(iface_ea, ea) < 0))
1520 memcpy(ea, iface_ea, ETH_ADDR_LEN);
1521 *hw_addr_iface = iface;
1526 VLOG_DBG("bridge %s: using bridge Ethernet address "ETH_ADDR_FMT,
1527 br->name, ETH_ADDR_ARGS(ea));
1529 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10);
1530 memcpy(ea, br->default_ea, ETH_ADDR_LEN);
1531 *hw_addr_iface = NULL;
1532 VLOG_WARN_RL(&rl, "bridge %s: using default bridge Ethernet "
1533 "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
1536 hmapx_destroy(&mirror_output_ports);
1539 /* Choose and returns the datapath ID for bridge 'br' given that the bridge
1540 * Ethernet address is 'bridge_ea'. If 'bridge_ea' is the Ethernet address of
1541 * an interface on 'br', then that interface must be passed in as
1542 * 'hw_addr_iface'; if 'bridge_ea' was derived some other way, then
1543 * 'hw_addr_iface' must be passed in as a null pointer. */
1545 bridge_pick_datapath_id(struct bridge *br,
1546 const uint8_t bridge_ea[ETH_ADDR_LEN],
1547 struct iface *hw_addr_iface)
1550 * The procedure for choosing a bridge MAC address will, in the most
1551 * ordinary case, also choose a unique MAC that we can use as a datapath
1552 * ID. In some special cases, though, multiple bridges will end up with
1553 * the same MAC address. This is OK for the bridges, but it will confuse
1554 * the OpenFlow controller, because each datapath needs a unique datapath
1557 * Datapath IDs must be unique. It is also very desirable that they be
1558 * stable from one run to the next, so that policy set on a datapath
1561 const char *datapath_id;
1564 datapath_id = ovsrec_bridge_get_other_config_value(br->cfg, "datapath-id",
1566 if (datapath_id && dpid_from_string(datapath_id, &dpid)) {
1570 if (!hw_addr_iface) {
1572 * A purely internal bridge, that is, one that has no non-virtual
1573 * network devices on it at all, is difficult because it has no
1574 * natural unique identifier at all.
1576 * When the host is a XenServer, we handle this case by hashing the
1577 * host's UUID with the name of the bridge. Names of bridges are
1578 * persistent across XenServer reboots, although they can be reused if
1579 * an internal network is destroyed and then a new one is later
1580 * created, so this is fairly effective.
1582 * When the host is not a XenServer, we punt by using a random MAC
1583 * address on each run.
1585 const char *host_uuid = xenserver_get_host_uuid();
1587 char *combined = xasprintf("%s,%s", host_uuid, br->name);
1588 dpid = dpid_from_hash(combined, strlen(combined));
1594 return eth_addr_to_uint64(bridge_ea);
1598 dpid_from_hash(const void *data, size_t n)
1600 uint8_t hash[SHA1_DIGEST_SIZE];
1602 BUILD_ASSERT_DECL(sizeof hash >= ETH_ADDR_LEN);
1603 sha1_bytes(data, n, hash);
1604 eth_addr_mark_random(hash);
1605 return eth_addr_to_uint64(hash);
1609 iface_refresh_status(struct iface *iface)
1613 enum netdev_features current;
1614 enum netdev_flags flags;
1620 if (iface_is_synthetic(iface)) {
1626 if (!netdev_get_drv_info(iface->netdev, &sh)) {
1628 char **keys, **values;
1630 shash_to_ovs_idl_map(&sh, &keys, &values, &n);
1631 ovsrec_interface_set_status(iface->cfg, keys, values, n);
1636 ovsrec_interface_set_status(iface->cfg, NULL, NULL, 0);
1639 shash_destroy_free_data(&sh);
1641 error = netdev_get_flags(iface->netdev, &flags);
1643 ovsrec_interface_set_admin_state(iface->cfg,
1644 flags & NETDEV_UP ? "up" : "down");
1647 ovsrec_interface_set_admin_state(iface->cfg, NULL);
1650 error = netdev_get_features(iface->netdev, ¤t, NULL, NULL, NULL);
1652 ovsrec_interface_set_duplex(iface->cfg,
1653 netdev_features_is_full_duplex(current)
1655 /* warning: uint64_t -> int64_t conversion */
1656 bps = netdev_features_to_bps(current);
1657 ovsrec_interface_set_link_speed(iface->cfg, &bps, 1);
1660 ovsrec_interface_set_duplex(iface->cfg, NULL);
1661 ovsrec_interface_set_link_speed(iface->cfg, NULL, 0);
1664 error = netdev_get_mtu(iface->netdev, &mtu);
1667 ovsrec_interface_set_mtu(iface->cfg, &mtu_64, 1);
1670 ovsrec_interface_set_mtu(iface->cfg, NULL, 0);
1674 /* Writes 'iface''s CFM statistics to the database. */
1676 iface_refresh_cfm_stats(struct iface *iface)
1678 const struct ovsrec_interface *cfg = iface->cfg;
1680 const uint64_t *rmps;
1684 if (iface_is_synthetic(iface)) {
1688 fault = ofproto_port_get_cfm_fault(iface->port->bridge->ofproto,
1691 const char *reasons[CFM_FAULT_N_REASONS];
1692 bool fault_bool = fault;
1696 for (i = 0; i < CFM_FAULT_N_REASONS; i++) {
1697 int reason = 1 << i;
1698 if (fault & reason) {
1699 reasons[j++] = cfm_fault_reason_to_str(reason);
1703 ovsrec_interface_set_cfm_fault(cfg, &fault_bool, 1);
1704 ovsrec_interface_set_cfm_fault_status(cfg, (char **) reasons, j);
1706 ovsrec_interface_set_cfm_fault(cfg, NULL, 0);
1707 ovsrec_interface_set_cfm_fault_status(cfg, NULL, 0);
1710 error = ofproto_port_get_cfm_remote_mpids(iface->port->bridge->ofproto,
1711 iface->ofp_port, &rmps, &n_rmps);
1713 ovsrec_interface_set_cfm_remote_mpids(cfg, (const int64_t *)rmps,
1716 ovsrec_interface_set_cfm_remote_mpids(cfg, NULL, 0);
1719 health = ofproto_port_get_cfm_health(iface->port->bridge->ofproto,
1722 int64_t cfm_health = health;
1723 ovsrec_interface_set_cfm_health(cfg, &cfm_health, 1);
1725 ovsrec_interface_set_cfm_health(cfg, NULL, 0);
1730 iface_refresh_stats(struct iface *iface)
1732 #define IFACE_STATS \
1733 IFACE_STAT(rx_packets, "rx_packets") \
1734 IFACE_STAT(tx_packets, "tx_packets") \
1735 IFACE_STAT(rx_bytes, "rx_bytes") \
1736 IFACE_STAT(tx_bytes, "tx_bytes") \
1737 IFACE_STAT(rx_dropped, "rx_dropped") \
1738 IFACE_STAT(tx_dropped, "tx_dropped") \
1739 IFACE_STAT(rx_errors, "rx_errors") \
1740 IFACE_STAT(tx_errors, "tx_errors") \
1741 IFACE_STAT(rx_frame_errors, "rx_frame_err") \
1742 IFACE_STAT(rx_over_errors, "rx_over_err") \
1743 IFACE_STAT(rx_crc_errors, "rx_crc_err") \
1744 IFACE_STAT(collisions, "collisions")
1746 #define IFACE_STAT(MEMBER, NAME) NAME,
1747 static char *keys[] = { IFACE_STATS };
1749 int64_t values[ARRAY_SIZE(keys)];
1752 struct netdev_stats stats;
1754 if (iface_is_synthetic(iface)) {
1758 /* Intentionally ignore return value, since errors will set 'stats' to
1759 * all-1s, and we will deal with that correctly below. */
1760 netdev_get_stats(iface->netdev, &stats);
1762 /* Copy statistics into values[] array. */
1764 #define IFACE_STAT(MEMBER, NAME) values[i++] = stats.MEMBER;
1767 assert(i == ARRAY_SIZE(keys));
1769 ovsrec_interface_set_statistics(iface->cfg, keys, values,
1775 br_refresh_stp_status(struct bridge *br)
1777 struct ofproto *ofproto = br->ofproto;
1778 struct ofproto_stp_status status;
1779 char *keys[3], *values[3];
1782 if (ofproto_get_stp_status(ofproto, &status)) {
1786 if (!status.enabled) {
1787 ovsrec_bridge_set_status(br->cfg, NULL, NULL, 0);
1791 keys[0] = "stp_bridge_id",
1792 values[0] = xasprintf(STP_ID_FMT, STP_ID_ARGS(status.bridge_id));
1793 keys[1] = "stp_designated_root",
1794 values[1] = xasprintf(STP_ID_FMT, STP_ID_ARGS(status.designated_root));
1795 keys[2] = "stp_root_path_cost",
1796 values[2] = xasprintf("%d", status.root_path_cost);
1798 ovsrec_bridge_set_status(br->cfg, keys, values, ARRAY_SIZE(values));
1800 for (i = 0; i < ARRAY_SIZE(values); i++) {
1806 port_refresh_stp_status(struct port *port)
1808 struct ofproto *ofproto = port->bridge->ofproto;
1809 struct iface *iface;
1810 struct ofproto_port_stp_status status;
1812 char *str_values[4];
1813 int64_t int_values[3];
1816 if (port_is_synthetic(port)) {
1820 /* STP doesn't currently support bonds. */
1821 if (!list_is_singleton(&port->ifaces)) {
1822 ovsrec_port_set_status(port->cfg, NULL, NULL, 0);
1826 iface = CONTAINER_OF(list_front(&port->ifaces), struct iface, port_elem);
1828 if (ofproto_port_get_stp_status(ofproto, iface->ofp_port, &status)) {
1832 if (!status.enabled) {
1833 ovsrec_port_set_status(port->cfg, NULL, NULL, 0);
1834 ovsrec_port_set_statistics(port->cfg, NULL, NULL, 0);
1838 /* Set Status column. */
1839 keys[0] = "stp_port_id";
1840 str_values[0] = xasprintf(STP_PORT_ID_FMT, status.port_id);
1841 keys[1] = "stp_state";
1842 str_values[1] = xstrdup(stp_state_name(status.state));
1843 keys[2] = "stp_sec_in_state";
1844 str_values[2] = xasprintf("%u", status.sec_in_state);
1845 keys[3] = "stp_role";
1846 str_values[3] = xstrdup(stp_role_name(status.role));
1848 ovsrec_port_set_status(port->cfg, keys, str_values,
1849 ARRAY_SIZE(str_values));
1851 for (i = 0; i < ARRAY_SIZE(str_values); i++) {
1852 free(str_values[i]);
1855 /* Set Statistics column. */
1856 keys[0] = "stp_tx_count";
1857 int_values[0] = status.tx_count;
1858 keys[1] = "stp_rx_count";
1859 int_values[1] = status.rx_count;
1860 keys[2] = "stp_error_count";
1861 int_values[2] = status.error_count;
1863 ovsrec_port_set_statistics(port->cfg, keys, int_values,
1864 ARRAY_SIZE(int_values));
1868 enable_system_stats(const struct ovsrec_open_vswitch *cfg)
1872 /* Use other-config:enable-system-stats by preference. */
1873 enable = ovsrec_open_vswitch_get_other_config_value(cfg,
1874 "enable-statistics",
1877 return !strcmp(enable, "true");
1880 /* Disable by default. */
1885 refresh_system_stats(const struct ovsrec_open_vswitch *cfg)
1887 struct ovsdb_datum datum;
1891 if (enable_system_stats(cfg)) {
1892 get_system_stats(&stats);
1895 ovsdb_datum_from_shash(&datum, &stats);
1896 ovsdb_idl_txn_write(&cfg->header_, &ovsrec_open_vswitch_col_statistics,
1900 static inline const char *
1901 nx_role_to_str(enum nx_role role)
1906 case NX_ROLE_MASTER:
1911 return "*** INVALID ROLE ***";
1916 refresh_controller_status(void)
1920 const struct ovsrec_controller *cfg;
1924 /* Accumulate status for controllers on all bridges. */
1925 HMAP_FOR_EACH (br, node, &all_bridges) {
1926 ofproto_get_ofproto_controller_info(br->ofproto, &info);
1929 /* Update each controller in the database with current status. */
1930 OVSREC_CONTROLLER_FOR_EACH(cfg, idl) {
1931 struct ofproto_controller_info *cinfo =
1932 shash_find_data(&info, cfg->target);
1935 ovsrec_controller_set_is_connected(cfg, cinfo->is_connected);
1936 ovsrec_controller_set_role(cfg, nx_role_to_str(cinfo->role));
1937 ovsrec_controller_set_status(cfg, (char **) cinfo->pairs.keys,
1938 (char **) cinfo->pairs.values,
1941 ovsrec_controller_set_is_connected(cfg, false);
1942 ovsrec_controller_set_role(cfg, NULL);
1943 ovsrec_controller_set_status(cfg, NULL, NULL, 0);
1947 ofproto_free_ofproto_controller_info(&info);
1951 refresh_cfm_stats(void)
1953 static struct ovsdb_idl_txn *txn = NULL;
1958 txn = ovsdb_idl_txn_create(idl);
1960 HMAP_FOR_EACH (br, node, &all_bridges) {
1961 struct iface *iface;
1963 HMAP_FOR_EACH (iface, name_node, &br->iface_by_name) {
1964 iface_refresh_cfm_stats(iface);
1969 if (ovsdb_idl_txn_commit(txn) != TXN_INCOMPLETE) {
1970 ovsdb_idl_txn_destroy(txn);
1975 /* Performs periodic activity required by bridges that needs to be done with
1976 * the least possible latency.
1978 * It makes sense to call this function a couple of times per poll loop, to
1979 * provide a significant performance boost on some benchmarks with ofprotos
1980 * that use the ofproto-dpif implementation. */
1982 bridge_run_fast(void)
1986 HMAP_FOR_EACH (br, node, &all_bridges) {
1987 ofproto_run_fast(br->ofproto);
1994 static const struct ovsrec_open_vswitch null_cfg;
1995 const struct ovsrec_open_vswitch *cfg;
1996 struct ovsdb_idl_txn *reconf_txn = NULL;
1998 bool vlan_splinters_changed;
2001 /* (Re)configure if necessary. */
2002 if (!reconfiguring) {
2005 if (ovsdb_idl_is_lock_contended(idl)) {
2006 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
2007 struct bridge *br, *next_br;
2009 VLOG_ERR_RL(&rl, "another ovs-vswitchd process is running, "
2010 "disabling this process until it goes away");
2012 HMAP_FOR_EACH_SAFE (br, next_br, node, &all_bridges) {
2016 } else if (!ovsdb_idl_has_lock(idl)) {
2020 cfg = ovsrec_open_vswitch_first(idl);
2022 /* Let each bridge do the work that it needs to do. */
2023 HMAP_FOR_EACH (br, node, &all_bridges) {
2024 ofproto_run(br->ofproto);
2027 /* Re-configure SSL. We do this on every trip through the main loop,
2028 * instead of just when the database changes, because the contents of the
2029 * key and certificate files can change without the database changing.
2031 * We do this before bridge_reconfigure() because that function might
2032 * initiate SSL connections and thus requires SSL to be configured. */
2033 if (cfg && cfg->ssl) {
2034 const struct ovsrec_ssl *ssl = cfg->ssl;
2036 stream_ssl_set_key_and_cert(ssl->private_key, ssl->certificate);
2037 stream_ssl_set_ca_cert_file(ssl->ca_cert, ssl->bootstrap_ca_cert);
2040 if (!reconfiguring) {
2041 /* If VLAN splinters are in use, then we need to reconfigure if VLAN
2042 * usage has changed. */
2043 vlan_splinters_changed = false;
2044 if (vlan_splinters_enabled_anywhere) {
2045 HMAP_FOR_EACH (br, node, &all_bridges) {
2046 if (ofproto_has_vlan_usage_changed(br->ofproto)) {
2047 vlan_splinters_changed = true;
2053 if (ovsdb_idl_get_seqno(idl) != idl_seqno || vlan_splinters_changed) {
2054 idl_seqno = ovsdb_idl_get_seqno(idl);
2056 reconf_txn = ovsdb_idl_txn_create(idl);
2057 bridge_reconfigure(cfg);
2059 /* We still need to reconfigure to avoid dangling pointers to
2060 * now-destroyed ovsrec structures inside bridge data. */
2061 bridge_reconfigure(&null_cfg);
2066 if (reconfiguring) {
2069 reconf_txn = ovsdb_idl_txn_create(idl);
2071 if (bridge_reconfigure_continue(cfg)) {
2072 ovsrec_open_vswitch_set_cur_cfg(cfg, cfg->next_cfg);
2075 bridge_reconfigure_continue(&null_cfg);
2080 ovsdb_idl_txn_commit(reconf_txn);
2081 ovsdb_idl_txn_destroy(reconf_txn);
2085 /* Refresh system and interface stats if necessary. */
2086 if (time_msec() >= stats_timer) {
2088 struct ovsdb_idl_txn *txn;
2090 txn = ovsdb_idl_txn_create(idl);
2091 HMAP_FOR_EACH (br, node, &all_bridges) {
2095 HMAP_FOR_EACH (port, hmap_node, &br->ports) {
2096 struct iface *iface;
2098 LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
2099 iface_refresh_stats(iface);
2100 iface_refresh_status(iface);
2104 HMAP_FOR_EACH (m, hmap_node, &br->mirrors) {
2105 mirror_refresh_stats(m);
2109 refresh_system_stats(cfg);
2110 refresh_controller_status();
2111 ovsdb_idl_txn_commit(txn);
2112 ovsdb_idl_txn_destroy(txn); /* XXX */
2115 stats_timer = time_msec() + STATS_INTERVAL;
2118 if (time_msec() >= db_limiter) {
2119 struct ovsdb_idl_txn *txn;
2121 txn = ovsdb_idl_txn_create(idl);
2122 HMAP_FOR_EACH (br, node, &all_bridges) {
2123 struct iface *iface;
2126 br_refresh_stp_status(br);
2128 HMAP_FOR_EACH (port, hmap_node, &br->ports) {
2129 port_refresh_stp_status(port);
2132 HMAP_FOR_EACH (iface, name_node, &br->iface_by_name) {
2133 const char *link_state;
2134 int64_t link_resets;
2137 if (iface_is_synthetic(iface)) {
2141 current = ofproto_port_is_lacp_current(br->ofproto,
2145 ovsrec_interface_set_lacp_current(iface->cfg, &bl, 1);
2147 ovsrec_interface_set_lacp_current(iface->cfg, NULL, 0);
2150 link_state = netdev_get_carrier(iface->netdev) ? "up" : "down";
2151 ovsrec_interface_set_link_state(iface->cfg, link_state);
2153 link_resets = netdev_get_carrier_resets(iface->netdev);
2154 ovsrec_interface_set_link_resets(iface->cfg, &link_resets, 1);
2158 if (ovsdb_idl_txn_commit(txn) != TXN_UNCHANGED) {
2159 db_limiter = time_msec() + DB_LIMIT_INTERVAL;
2161 ovsdb_idl_txn_destroy(txn);
2164 refresh_cfm_stats();
2170 ovsdb_idl_wait(idl);
2172 if (reconfiguring) {
2173 poll_immediate_wake();
2176 if (!hmap_is_empty(&all_bridges)) {
2179 HMAP_FOR_EACH (br, node, &all_bridges) {
2180 ofproto_wait(br->ofproto);
2182 poll_timer_wait_until(stats_timer);
2184 if (db_limiter > time_msec()) {
2185 poll_timer_wait_until(db_limiter);
2190 /* QoS unixctl user interface functions. */
2192 struct qos_unixctl_show_cbdata {
2194 struct iface *iface;
2198 qos_unixctl_show_cb(unsigned int queue_id,
2199 const struct shash *details,
2202 struct qos_unixctl_show_cbdata *data = aux;
2203 struct ds *ds = data->ds;
2204 struct iface *iface = data->iface;
2205 struct netdev_queue_stats stats;
2206 struct shash_node *node;
2209 ds_put_cstr(ds, "\n");
2211 ds_put_format(ds, "Queue %u:\n", queue_id);
2213 ds_put_cstr(ds, "Default:\n");
2216 SHASH_FOR_EACH (node, details) {
2217 ds_put_format(ds, "\t%s: %s\n", node->name, (char *)node->data);
2220 error = netdev_get_queue_stats(iface->netdev, queue_id, &stats);
2222 if (stats.tx_packets != UINT64_MAX) {
2223 ds_put_format(ds, "\ttx_packets: %"PRIu64"\n", stats.tx_packets);
2226 if (stats.tx_bytes != UINT64_MAX) {
2227 ds_put_format(ds, "\ttx_bytes: %"PRIu64"\n", stats.tx_bytes);
2230 if (stats.tx_errors != UINT64_MAX) {
2231 ds_put_format(ds, "\ttx_errors: %"PRIu64"\n", stats.tx_errors);
2234 ds_put_format(ds, "\tFailed to get statistics for queue %u: %s",
2235 queue_id, strerror(error));
2240 qos_unixctl_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
2241 const char *argv[], void *aux OVS_UNUSED)
2243 struct ds ds = DS_EMPTY_INITIALIZER;
2244 struct shash sh = SHASH_INITIALIZER(&sh);
2245 struct iface *iface;
2247 struct shash_node *node;
2248 struct qos_unixctl_show_cbdata data;
2251 iface = iface_find(argv[1]);
2253 unixctl_command_reply_error(conn, "no such interface");
2257 netdev_get_qos(iface->netdev, &type, &sh);
2259 if (*type != '\0') {
2260 ds_put_format(&ds, "QoS: %s %s\n", iface->name, type);
2262 SHASH_FOR_EACH (node, &sh) {
2263 ds_put_format(&ds, "%s: %s\n", node->name, (char *)node->data);
2268 error = netdev_dump_queues(iface->netdev, qos_unixctl_show_cb, &data);
2271 ds_put_format(&ds, "failed to dump queues: %s", strerror(error));
2273 unixctl_command_reply(conn, ds_cstr(&ds));
2275 ds_put_format(&ds, "QoS not configured on %s\n", iface->name);
2276 unixctl_command_reply_error(conn, ds_cstr(&ds));
2279 shash_destroy_free_data(&sh);
2283 /* Bridge reconfiguration functions. */
2285 bridge_create(const struct ovsrec_bridge *br_cfg)
2289 assert(!bridge_lookup(br_cfg->name));
2290 br = xzalloc(sizeof *br);
2292 br->name = xstrdup(br_cfg->name);
2293 br->type = xstrdup(ofproto_normalize_type(br_cfg->datapath_type));
2296 /* Derive the default Ethernet address from the bridge's UUID. This should
2297 * be unique and it will be stable between ovs-vswitchd runs. */
2298 memcpy(br->default_ea, &br_cfg->header_.uuid, ETH_ADDR_LEN);
2299 eth_addr_mark_random(br->default_ea);
2301 hmap_init(&br->ports);
2302 hmap_init(&br->ifaces);
2303 hmap_init(&br->iface_by_name);
2304 hmap_init(&br->mirrors);
2306 hmap_init(&br->if_cfg_todo);
2307 list_init(&br->ofpp_garbage);
2309 hmap_insert(&all_bridges, &br->node, hash_string(br->name, 0));
2313 bridge_destroy(struct bridge *br)
2316 struct mirror *mirror, *next_mirror;
2317 struct port *port, *next_port;
2318 struct if_cfg *if_cfg, *next_if_cfg;
2319 struct ofpp_garbage *garbage, *next_garbage;
2321 HMAP_FOR_EACH_SAFE (port, next_port, hmap_node, &br->ports) {
2324 HMAP_FOR_EACH_SAFE (mirror, next_mirror, hmap_node, &br->mirrors) {
2325 mirror_destroy(mirror);
2327 HMAP_FOR_EACH_SAFE (if_cfg, next_if_cfg, hmap_node, &br->if_cfg_todo) {
2328 hmap_remove(&br->if_cfg_todo, &if_cfg->hmap_node);
2331 LIST_FOR_EACH_SAFE (garbage, next_garbage, list_node,
2332 &br->ofpp_garbage) {
2333 list_remove(&garbage->list_node);
2337 hmap_remove(&all_bridges, &br->node);
2338 ofproto_destroy(br->ofproto);
2339 hmap_destroy(&br->ifaces);
2340 hmap_destroy(&br->ports);
2341 hmap_destroy(&br->iface_by_name);
2342 hmap_destroy(&br->mirrors);
2343 hmap_destroy(&br->if_cfg_todo);
2350 static struct bridge *
2351 bridge_lookup(const char *name)
2355 HMAP_FOR_EACH_WITH_HASH (br, node, hash_string(name, 0), &all_bridges) {
2356 if (!strcmp(br->name, name)) {
2363 /* Handle requests for a listing of all flows known by the OpenFlow
2364 * stack, including those normally hidden. */
2366 bridge_unixctl_dump_flows(struct unixctl_conn *conn, int argc OVS_UNUSED,
2367 const char *argv[], void *aux OVS_UNUSED)
2372 br = bridge_lookup(argv[1]);
2374 unixctl_command_reply_error(conn, "Unknown bridge");
2379 ofproto_get_all_flows(br->ofproto, &results);
2381 unixctl_command_reply(conn, ds_cstr(&results));
2382 ds_destroy(&results);
2385 /* "bridge/reconnect [BRIDGE]": makes BRIDGE drop all of its controller
2386 * connections and reconnect. If BRIDGE is not specified, then all bridges
2387 * drop their controller connections and reconnect. */
2389 bridge_unixctl_reconnect(struct unixctl_conn *conn, int argc,
2390 const char *argv[], void *aux OVS_UNUSED)
2394 br = bridge_lookup(argv[1]);
2396 unixctl_command_reply_error(conn, "Unknown bridge");
2399 ofproto_reconnect_controllers(br->ofproto);
2401 HMAP_FOR_EACH (br, node, &all_bridges) {
2402 ofproto_reconnect_controllers(br->ofproto);
2405 unixctl_command_reply(conn, NULL);
2409 bridge_get_controllers(const struct bridge *br,
2410 struct ovsrec_controller ***controllersp)
2412 struct ovsrec_controller **controllers;
2413 size_t n_controllers;
2415 controllers = br->cfg->controller;
2416 n_controllers = br->cfg->n_controller;
2418 if (n_controllers == 1 && !strcmp(controllers[0]->target, "none")) {
2424 *controllersp = controllers;
2426 return n_controllers;
2430 bridge_queue_if_cfg(struct bridge *br,
2431 const struct ovsrec_interface *cfg,
2432 const struct ovsrec_port *parent)
2434 struct if_cfg *if_cfg = xmalloc(sizeof *if_cfg);
2437 if_cfg->parent = parent;
2438 hmap_insert(&br->if_cfg_todo, &if_cfg->hmap_node,
2439 hash_string(if_cfg->cfg->name, 0));
2442 /* Deletes "struct port"s and "struct iface"s under 'br' which aren't
2443 * consistent with 'br->cfg'. Updates 'br->if_cfg_queue' with interfaces which
2444 * 'br' needs to complete its configuration. */
2446 bridge_add_del_ports(struct bridge *br,
2447 const unsigned long int *splinter_vlans)
2449 struct shash_node *port_node;
2450 struct port *port, *next;
2451 struct shash new_ports;
2454 assert(hmap_is_empty(&br->if_cfg_todo));
2456 /* Collect new ports. */
2457 shash_init(&new_ports);
2458 for (i = 0; i < br->cfg->n_ports; i++) {
2459 const char *name = br->cfg->ports[i]->name;
2460 if (!shash_add_once(&new_ports, name, br->cfg->ports[i])) {
2461 VLOG_WARN("bridge %s: %s specified twice as bridge port",
2465 if (bridge_get_controllers(br, NULL)
2466 && !shash_find(&new_ports, br->name)) {
2467 VLOG_WARN("bridge %s: no port named %s, synthesizing one",
2468 br->name, br->name);
2470 br->synth_local_port.interfaces = &br->synth_local_ifacep;
2471 br->synth_local_port.n_interfaces = 1;
2472 br->synth_local_port.name = br->name;
2474 br->synth_local_iface.name = br->name;
2475 br->synth_local_iface.type = "internal";
2477 br->synth_local_ifacep = &br->synth_local_iface;
2479 shash_add(&new_ports, br->name, &br->synth_local_port);
2482 if (splinter_vlans) {
2483 add_vlan_splinter_ports(br, splinter_vlans, &new_ports);
2486 /* Get rid of deleted ports.
2487 * Get rid of deleted interfaces on ports that still exist. */
2488 HMAP_FOR_EACH_SAFE (port, next, hmap_node, &br->ports) {
2489 port->cfg = shash_find_data(&new_ports, port->name);
2493 port_del_ifaces(port);
2497 SHASH_FOR_EACH (port_node, &new_ports) {
2498 const struct ovsrec_port *port = port_node->data;
2501 for (i = 0; i < port->n_interfaces; i++) {
2502 const struct ovsrec_interface *cfg = port->interfaces[i];
2503 struct iface *iface = iface_lookup(br, cfg->name);
2507 iface_refresh_type(iface);
2509 bridge_queue_if_cfg(br, cfg, port);
2514 shash_destroy(&new_ports);
2517 /* Initializes 'oc' appropriately as a management service controller for
2520 * The caller must free oc->target when it is no longer needed. */
2522 bridge_ofproto_controller_for_mgmt(const struct bridge *br,
2523 struct ofproto_controller *oc)
2525 oc->target = xasprintf("punix:%s/%s.mgmt", ovs_rundir(), br->name);
2526 oc->max_backoff = 0;
2527 oc->probe_interval = 60;
2528 oc->band = OFPROTO_OUT_OF_BAND;
2530 oc->burst_limit = 0;
2531 oc->enable_async_msgs = true;
2534 /* Converts ovsrec_controller 'c' into an ofproto_controller in 'oc'. */
2536 bridge_ofproto_controller_from_ovsrec(const struct ovsrec_controller *c,
2537 struct ofproto_controller *oc)
2539 const char *config_str;
2541 oc->target = c->target;
2542 oc->max_backoff = c->max_backoff ? *c->max_backoff / 1000 : 8;
2543 oc->probe_interval = c->inactivity_probe ? *c->inactivity_probe / 1000 : 5;
2544 oc->band = (!c->connection_mode || !strcmp(c->connection_mode, "in-band")
2545 ? OFPROTO_IN_BAND : OFPROTO_OUT_OF_BAND);
2546 oc->rate_limit = c->controller_rate_limit ? *c->controller_rate_limit : 0;
2547 oc->burst_limit = (c->controller_burst_limit
2548 ? *c->controller_burst_limit : 0);
2549 oc->enable_async_msgs = (!c->enable_async_messages
2550 || *c->enable_async_messages);
2551 config_str = ovsrec_controller_get_other_config_value(c, "dscp", NULL);
2553 oc->dscp = DSCP_DEFAULT;
2555 int dscp = atoi(config_str);
2557 if (dscp >= 0 && dscp <= 63) {
2563 /* Configures the IP stack for 'br''s local interface properly according to the
2564 * configuration in 'c'. */
2566 bridge_configure_local_iface_netdev(struct bridge *br,
2567 struct ovsrec_controller *c)
2569 struct netdev *netdev;
2570 struct in_addr mask, gateway;
2572 struct iface *local_iface;
2575 /* If there's no local interface or no IP address, give up. */
2576 local_iface = iface_from_ofp_port(br, OFPP_LOCAL);
2577 if (!local_iface || !c->local_ip || !inet_aton(c->local_ip, &ip)) {
2581 /* Bring up the local interface. */
2582 netdev = local_iface->netdev;
2583 netdev_turn_flags_on(netdev, NETDEV_UP, true);
2585 /* Configure the IP address and netmask. */
2586 if (!c->local_netmask
2587 || !inet_aton(c->local_netmask, &mask)
2589 mask.s_addr = guess_netmask(ip.s_addr);
2591 if (!netdev_set_in4(netdev, ip, mask)) {
2592 VLOG_INFO("bridge %s: configured IP address "IP_FMT", netmask "IP_FMT,
2593 br->name, IP_ARGS(&ip.s_addr), IP_ARGS(&mask.s_addr));
2596 /* Configure the default gateway. */
2597 if (c->local_gateway
2598 && inet_aton(c->local_gateway, &gateway)
2599 && gateway.s_addr) {
2600 if (!netdev_add_router(netdev, gateway)) {
2601 VLOG_INFO("bridge %s: configured gateway "IP_FMT,
2602 br->name, IP_ARGS(&gateway.s_addr));
2607 /* Returns true if 'a' and 'b' are the same except that any number of slashes
2608 * in either string are treated as equal to any number of slashes in the other,
2609 * e.g. "x///y" is equal to "x/y". */
2611 equal_pathnames(const char *a, const char *b)
2615 a += strspn(a, "/");
2616 b += strspn(b, "/");
2617 } else if (*a == '\0') {
2628 bridge_configure_remotes(struct bridge *br,
2629 const struct sockaddr_in *managers, size_t n_managers)
2631 const char *disable_ib_str, *queue_id_str;
2632 bool disable_in_band = false;
2635 struct ovsrec_controller **controllers;
2636 size_t n_controllers;
2638 enum ofproto_fail_mode fail_mode;
2640 struct ofproto_controller *ocs;
2644 /* Check if we should disable in-band control on this bridge. */
2645 disable_ib_str = ovsrec_bridge_get_other_config_value(br->cfg,
2648 if (disable_ib_str && !strcmp(disable_ib_str, "true")) {
2649 disable_in_band = true;
2652 /* Set OpenFlow queue ID for in-band control. */
2653 queue_id_str = ovsrec_bridge_get_other_config_value(br->cfg,
2656 queue_id = queue_id_str ? strtol(queue_id_str, NULL, 10) : -1;
2657 ofproto_set_in_band_queue(br->ofproto, queue_id);
2659 if (disable_in_band) {
2660 ofproto_set_extra_in_band_remotes(br->ofproto, NULL, 0);
2662 ofproto_set_extra_in_band_remotes(br->ofproto, managers, n_managers);
2665 n_controllers = bridge_get_controllers(br, &controllers);
2667 ocs = xmalloc((n_controllers + 1) * sizeof *ocs);
2670 bridge_ofproto_controller_for_mgmt(br, &ocs[n_ocs++]);
2671 for (i = 0; i < n_controllers; i++) {
2672 struct ovsrec_controller *c = controllers[i];
2674 if (!strncmp(c->target, "punix:", 6)
2675 || !strncmp(c->target, "unix:", 5)) {
2676 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2679 whitelist = xasprintf("unix:%s/%s.controller",
2680 ovs_rundir(), br->name);
2681 if (!equal_pathnames(c->target, whitelist)) {
2682 /* Prevent remote ovsdb-server users from accessing arbitrary
2683 * Unix domain sockets and overwriting arbitrary local
2685 VLOG_ERR_RL(&rl, "bridge %s: Not adding Unix domain socket "
2686 "controller \"%s\" due to possibility for remote "
2687 "exploit. Instead, specify whitelisted \"%s\" or "
2688 "connect to \"unix:%s/%s.mgmt\" (which is always "
2689 "available without special configuration).",
2690 br->name, c->target, whitelist,
2691 ovs_rundir(), br->name);
2699 bridge_configure_local_iface_netdev(br, c);
2700 bridge_ofproto_controller_from_ovsrec(c, &ocs[n_ocs]);
2701 if (disable_in_band) {
2702 ocs[n_ocs].band = OFPROTO_OUT_OF_BAND;
2707 ofproto_set_controllers(br->ofproto, ocs, n_ocs);
2708 free(ocs[0].target); /* From bridge_ofproto_controller_for_mgmt(). */
2711 /* Set the fail-mode. */
2712 fail_mode = !br->cfg->fail_mode
2713 || !strcmp(br->cfg->fail_mode, "standalone")
2714 ? OFPROTO_FAIL_STANDALONE
2715 : OFPROTO_FAIL_SECURE;
2716 ofproto_set_fail_mode(br->ofproto, fail_mode);
2718 /* Configure OpenFlow controller connection snooping. */
2719 if (!ofproto_has_snoops(br->ofproto)) {
2723 sset_add_and_free(&snoops, xasprintf("punix:%s/%s.snoop",
2724 ovs_rundir(), br->name));
2725 ofproto_set_snoops(br->ofproto, &snoops);
2726 sset_destroy(&snoops);
2731 bridge_configure_tables(struct bridge *br)
2733 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2737 n_tables = ofproto_get_n_tables(br->ofproto);
2739 for (i = 0; i < n_tables; i++) {
2740 struct ofproto_table_settings s;
2743 s.max_flows = UINT_MAX;
2747 if (j < br->cfg->n_flow_tables && i == br->cfg->key_flow_tables[j]) {
2748 struct ovsrec_flow_table *cfg = br->cfg->value_flow_tables[j++];
2751 if (cfg->n_flow_limit && *cfg->flow_limit < UINT_MAX) {
2752 s.max_flows = *cfg->flow_limit;
2754 if (cfg->overflow_policy
2755 && !strcmp(cfg->overflow_policy, "evict")) {
2758 s.groups = xmalloc(cfg->n_groups * sizeof *s.groups);
2759 for (k = 0; k < cfg->n_groups; k++) {
2760 const char *string = cfg->groups[k];
2763 msg = mf_parse_subfield__(&s.groups[k], &string);
2765 VLOG_WARN_RL(&rl, "bridge %s table %d: error parsing "
2766 "'groups' (%s)", br->name, i, msg);
2768 } else if (*string) {
2769 VLOG_WARN_RL(&rl, "bridge %s table %d: 'groups' "
2770 "element '%s' contains trailing garbage",
2771 br->name, i, cfg->groups[k]);
2779 ofproto_configure_table(br->ofproto, i, &s);
2783 for (; j < br->cfg->n_flow_tables; j++) {
2784 VLOG_WARN_RL(&rl, "bridge %s: ignoring configuration for flow table "
2785 "%"PRId64" not supported by this datapath", br->name,
2786 br->cfg->key_flow_tables[j]);
2790 /* Port functions. */
2792 static struct port *
2793 port_create(struct bridge *br, const struct ovsrec_port *cfg)
2797 port = xzalloc(sizeof *port);
2799 port->name = xstrdup(cfg->name);
2801 list_init(&port->ifaces);
2803 hmap_insert(&br->ports, &port->hmap_node, hash_string(port->name, 0));
2807 /* Deletes interfaces from 'port' that are no longer configured for it. */
2809 port_del_ifaces(struct port *port)
2811 struct iface *iface, *next;
2812 struct sset new_ifaces;
2815 /* Collect list of new interfaces. */
2816 sset_init(&new_ifaces);
2817 for (i = 0; i < port->cfg->n_interfaces; i++) {
2818 const char *name = port->cfg->interfaces[i]->name;
2819 const char *type = port->cfg->interfaces[i]->type;
2820 if (strcmp(type, "null")) {
2821 sset_add(&new_ifaces, name);
2825 /* Get rid of deleted interfaces. */
2826 LIST_FOR_EACH_SAFE (iface, next, port_elem, &port->ifaces) {
2827 if (!sset_contains(&new_ifaces, iface->name)) {
2828 iface_destroy(iface);
2832 sset_destroy(&new_ifaces);
2836 port_destroy(struct port *port)
2839 struct bridge *br = port->bridge;
2840 struct iface *iface, *next;
2843 ofproto_bundle_unregister(br->ofproto, port);
2846 LIST_FOR_EACH_SAFE (iface, next, port_elem, &port->ifaces) {
2847 iface_destroy(iface);
2850 hmap_remove(&br->ports, &port->hmap_node);
2856 static struct port *
2857 port_lookup(const struct bridge *br, const char *name)
2861 HMAP_FOR_EACH_WITH_HASH (port, hmap_node, hash_string(name, 0),
2863 if (!strcmp(port->name, name)) {
2871 enable_lacp(struct port *port, bool *activep)
2873 if (!port->cfg->lacp) {
2874 /* XXX when LACP implementation has been sufficiently tested, enable by
2875 * default and make active on bonded ports. */
2877 } else if (!strcmp(port->cfg->lacp, "off")) {
2879 } else if (!strcmp(port->cfg->lacp, "active")) {
2882 } else if (!strcmp(port->cfg->lacp, "passive")) {
2886 VLOG_WARN("port %s: unknown LACP mode %s",
2887 port->name, port->cfg->lacp);
2892 static struct lacp_settings *
2893 port_configure_lacp(struct port *port, struct lacp_settings *s)
2895 const char *lacp_time, *system_id;
2898 if (!enable_lacp(port, &s->active)) {
2902 s->name = port->name;
2904 system_id = ovsrec_port_get_other_config_value(port->cfg, "lacp-system-id",
2907 if (sscanf(system_id, ETH_ADDR_SCAN_FMT,
2908 ETH_ADDR_SCAN_ARGS(s->id)) != ETH_ADDR_SCAN_COUNT) {
2909 VLOG_WARN("port %s: LACP system ID (%s) must be an Ethernet"
2910 " address.", port->name, system_id);
2914 memcpy(s->id, port->bridge->ea, ETH_ADDR_LEN);
2917 if (eth_addr_is_zero(s->id)) {
2918 VLOG_WARN("port %s: Invalid zero LACP system ID.", port->name);
2922 /* Prefer bondable links if unspecified. */
2923 priority = atoi(ovsrec_port_get_other_config_value(port->cfg,
2924 "lacp-system-priority",
2926 s->priority = (priority > 0 && priority <= UINT16_MAX
2928 : UINT16_MAX - !list_is_short(&port->ifaces));
2930 lacp_time = ovsrec_port_get_other_config_value(port->cfg, "lacp-time",
2932 s->fast = !strcasecmp(lacp_time, "fast");
2937 iface_configure_lacp(struct iface *iface, struct lacp_slave_settings *s)
2939 int priority, portid, key;
2941 portid = atoi(ovsrec_interface_get_other_config_value(iface->cfg,
2945 atoi(ovsrec_interface_get_other_config_value(iface->cfg,
2946 "lacp-port-priority",
2948 key = atoi(ovsrec_interface_get_other_config_value(iface->cfg,
2949 "lacp-aggregation-key",
2952 if (portid <= 0 || portid > UINT16_MAX) {
2953 portid = iface->ofp_port;
2956 if (priority <= 0 || priority > UINT16_MAX) {
2957 priority = UINT16_MAX;
2960 if (key < 0 || key > UINT16_MAX) {
2964 s->name = iface->name;
2966 s->priority = priority;
2971 port_configure_bond(struct port *port, struct bond_settings *s,
2972 uint32_t *bond_stable_ids)
2974 const char *detect_s;
2975 struct iface *iface;
2976 int miimon_interval;
2979 s->name = port->name;
2981 if (port->cfg->bond_mode) {
2982 if (!bond_mode_from_string(&s->balance, port->cfg->bond_mode)) {
2983 VLOG_WARN("port %s: unknown bond_mode %s, defaulting to %s",
2984 port->name, port->cfg->bond_mode,
2985 bond_mode_to_string(s->balance));
2988 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
2990 /* XXX: Post version 1.5.*, the default bond_mode changed from SLB to
2991 * active-backup. At some point we should remove this warning. */
2992 VLOG_WARN_RL(&rl, "port %s: Using the default bond_mode %s. Note that"
2993 " in previous versions, the default bond_mode was"
2994 " balance-slb", port->name,
2995 bond_mode_to_string(s->balance));
2997 if (s->balance == BM_SLB && port->bridge->cfg->n_flood_vlans) {
2998 VLOG_WARN("port %s: SLB bonds are incompatible with flood_vlans, "
2999 "please use another bond type or disable flood_vlans",
3004 atoi(ovsrec_port_get_other_config_value(port->cfg,
3005 "bond-miimon-interval", "0"));
3006 if (miimon_interval <= 0) {
3007 miimon_interval = 200;
3010 detect_s = ovsrec_port_get_other_config_value(port->cfg,
3013 if (!strcmp(detect_s, "carrier")) {
3014 miimon_interval = 0;
3015 } else if (strcmp(detect_s, "miimon")) {
3016 VLOG_WARN("port %s: unsupported bond-detect-mode %s, "
3017 "defaulting to carrier", port->name, detect_s);
3018 miimon_interval = 0;
3021 s->up_delay = MAX(0, port->cfg->bond_updelay);
3022 s->down_delay = MAX(0, port->cfg->bond_downdelay);
3023 s->basis = atoi(ovsrec_port_get_other_config_value(port->cfg,
3026 s->rebalance_interval = atoi(
3027 ovsrec_port_get_other_config_value(port->cfg,
3028 "bond-rebalance-interval",
3030 if (s->rebalance_interval && s->rebalance_interval < 1000) {
3031 s->rebalance_interval = 1000;
3034 s->fake_iface = port->cfg->bond_fake_iface;
3037 LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
3038 long long stable_id;
3041 atoll(ovsrec_interface_get_other_config_value(iface->cfg,
3044 if (stable_id <= 0 || stable_id >= UINT32_MAX) {
3045 stable_id = iface->ofp_port;
3047 bond_stable_ids[i++] = stable_id;
3049 netdev_set_miimon_interval(iface->netdev, miimon_interval);
3053 /* Returns true if 'port' is synthetic, that is, if we constructed it locally
3054 * instead of obtaining it from the database. */
3056 port_is_synthetic(const struct port *port)
3058 return ovsdb_idl_row_is_synthetic(&port->cfg->header_);
3061 /* Interface functions. */
3064 iface_refresh_type(struct iface *iface)
3066 /* Determine interface type. The local port always has type
3067 * "internal". Other ports take their type from the database and
3068 * default to "system" if none is specified. */
3069 iface->type = (!strcmp(iface->name, iface->port->bridge->name) ? "internal"
3070 : iface->cfg->type[0] ? iface->cfg->type
3075 iface_destroy(struct iface *iface)
3078 struct port *port = iface->port;
3079 struct bridge *br = port->bridge;
3081 if (br->ofproto && iface->ofp_port >= 0) {
3082 ofproto_port_unregister(br->ofproto, iface->ofp_port);
3085 if (iface->ofp_port >= 0) {
3086 hmap_remove(&br->ifaces, &iface->ofp_port_node);
3089 list_remove(&iface->port_elem);
3090 hmap_remove(&br->iface_by_name, &iface->name_node);
3092 netdev_close(iface->netdev);
3099 static struct iface *
3100 iface_lookup(const struct bridge *br, const char *name)
3102 struct iface *iface;
3104 HMAP_FOR_EACH_WITH_HASH (iface, name_node, hash_string(name, 0),
3105 &br->iface_by_name) {
3106 if (!strcmp(iface->name, name)) {
3114 static struct iface *
3115 iface_find(const char *name)
3117 const struct bridge *br;
3119 HMAP_FOR_EACH (br, node, &all_bridges) {
3120 struct iface *iface = iface_lookup(br, name);
3129 static struct if_cfg *
3130 if_cfg_lookup(const struct bridge *br, const char *name)
3132 struct if_cfg *if_cfg;
3134 HMAP_FOR_EACH_WITH_HASH (if_cfg, hmap_node, hash_string(name, 0),
3136 if (!strcmp(if_cfg->cfg->name, name)) {
3144 static struct iface *
3145 iface_from_ofp_port(const struct bridge *br, uint16_t ofp_port)
3147 struct iface *iface;
3149 HMAP_FOR_EACH_IN_BUCKET (iface, ofp_port_node,
3150 hash_int(ofp_port, 0), &br->ifaces) {
3151 if (iface->ofp_port == ofp_port) {
3158 /* Set Ethernet address of 'iface', if one is specified in the configuration
3161 iface_set_mac(struct iface *iface)
3163 uint8_t ea[ETH_ADDR_LEN];
3165 if (!strcmp(iface->type, "internal")
3166 && iface->cfg->mac && eth_addr_from_string(iface->cfg->mac, ea)) {
3167 if (iface->ofp_port == OFPP_LOCAL) {
3168 VLOG_ERR("interface %s: ignoring mac in Interface record "
3169 "(use Bridge record to set local port's mac)",
3171 } else if (eth_addr_is_multicast(ea)) {
3172 VLOG_ERR("interface %s: cannot set MAC to multicast address",
3175 int error = netdev_set_etheraddr(iface->netdev, ea);
3177 VLOG_ERR("interface %s: setting MAC failed (%s)",
3178 iface->name, strerror(error));
3184 /* Sets the ofport column of 'if_cfg' to 'ofport'. */
3186 iface_set_ofport(const struct ovsrec_interface *if_cfg, int64_t ofport)
3188 if (if_cfg && !ovsdb_idl_row_is_synthetic(&if_cfg->header_)) {
3189 ovsrec_interface_set_ofport(if_cfg, &ofport, 1);
3193 /* Clears all of the fields in 'if_cfg' that indicate interface status, and
3194 * sets the "ofport" field to -1.
3196 * This is appropriate when 'if_cfg''s interface cannot be created or is
3197 * otherwise invalid. */
3199 iface_clear_db_record(const struct ovsrec_interface *if_cfg)
3201 if (!ovsdb_idl_row_is_synthetic(&if_cfg->header_)) {
3202 iface_set_ofport(if_cfg, -1);
3203 ovsrec_interface_set_status(if_cfg, NULL, NULL, 0);
3204 ovsrec_interface_set_admin_state(if_cfg, NULL);
3205 ovsrec_interface_set_duplex(if_cfg, NULL);
3206 ovsrec_interface_set_link_speed(if_cfg, NULL, 0);
3207 ovsrec_interface_set_link_state(if_cfg, NULL);
3208 ovsrec_interface_set_mtu(if_cfg, NULL, 0);
3209 ovsrec_interface_set_cfm_fault(if_cfg, NULL, 0);
3210 ovsrec_interface_set_cfm_fault_status(if_cfg, NULL, 0);
3211 ovsrec_interface_set_cfm_remote_mpids(if_cfg, NULL, 0);
3212 ovsrec_interface_set_lacp_current(if_cfg, NULL, 0);
3213 ovsrec_interface_set_statistics(if_cfg, NULL, NULL, 0);
3217 /* Adds the 'n' key-value pairs in 'keys' in 'values' to 'shash'.
3219 * The value strings in '*shash' are taken directly from values[], not copied,
3220 * so the caller should not modify or free them. */
3222 shash_from_ovs_idl_map(char **keys, char **values, size_t n,
3223 struct shash *shash)
3228 for (i = 0; i < n; i++) {
3229 shash_add(shash, keys[i], values[i]);
3233 /* Creates 'keys' and 'values' arrays from 'shash'.
3235 * Sets 'keys' and 'values' to heap allocated arrays representing the key-value
3236 * pairs in 'shash'. The caller takes ownership of 'keys' and 'values'. They
3237 * are populated with with strings taken directly from 'shash' and thus have
3238 * the same ownership of the key-value pairs in shash.
3241 shash_to_ovs_idl_map(struct shash *shash,
3242 char ***keys, char ***values, size_t *n)
3246 struct shash_node *sn;
3248 count = shash_count(shash);
3250 k = xmalloc(count * sizeof *k);
3251 v = xmalloc(count * sizeof *v);
3254 SHASH_FOR_EACH(sn, shash) {
3265 struct iface_delete_queues_cbdata {
3266 struct netdev *netdev;
3267 const struct ovsdb_datum *queues;
3271 queue_ids_include(const struct ovsdb_datum *queues, int64_t target)
3273 union ovsdb_atom atom;
3275 atom.integer = target;
3276 return ovsdb_datum_find_key(queues, &atom, OVSDB_TYPE_INTEGER) != UINT_MAX;
3280 iface_delete_queues(unsigned int queue_id,
3281 const struct shash *details OVS_UNUSED, void *cbdata_)
3283 struct iface_delete_queues_cbdata *cbdata = cbdata_;
3285 if (!queue_ids_include(cbdata->queues, queue_id)) {
3286 netdev_delete_queue(cbdata->netdev, queue_id);
3291 iface_configure_qos(struct iface *iface, const struct ovsrec_qos *qos)
3293 struct ofpbuf queues_buf;
3295 ofpbuf_init(&queues_buf, 0);
3297 if (!qos || qos->type[0] == '\0' || qos->n_queues < 1) {
3298 netdev_set_qos(iface->netdev, NULL, NULL);
3300 struct iface_delete_queues_cbdata cbdata;
3301 struct shash details;
3305 /* Configure top-level Qos for 'iface'. */
3306 shash_from_ovs_idl_map(qos->key_other_config, qos->value_other_config,
3307 qos->n_other_config, &details);
3308 netdev_set_qos(iface->netdev, qos->type, &details);
3309 shash_destroy(&details);
3311 /* Deconfigure queues that were deleted. */
3312 cbdata.netdev = iface->netdev;
3313 cbdata.queues = ovsrec_qos_get_queues(qos, OVSDB_TYPE_INTEGER,
3315 netdev_dump_queues(iface->netdev, iface_delete_queues, &cbdata);
3317 /* Configure queues for 'iface'. */
3319 for (i = 0; i < qos->n_queues; i++) {
3320 const struct ovsrec_queue *queue = qos->value_queues[i];
3321 unsigned int queue_id = qos->key_queues[i];
3323 if (queue_id == 0) {
3327 if (queue->n_dscp == 1) {
3328 struct ofproto_port_queue *port_queue;
3330 port_queue = ofpbuf_put_uninit(&queues_buf,
3331 sizeof *port_queue);
3332 port_queue->queue = queue_id;
3333 port_queue->dscp = queue->dscp[0];
3336 shash_from_ovs_idl_map(queue->key_other_config,
3337 queue->value_other_config,
3338 queue->n_other_config, &details);
3339 netdev_set_queue(iface->netdev, queue_id, &details);
3340 shash_destroy(&details);
3343 shash_init(&details);
3344 netdev_set_queue(iface->netdev, 0, &details);
3345 shash_destroy(&details);
3349 if (iface->ofp_port >= 0) {
3350 const struct ofproto_port_queue *port_queues = queues_buf.data;
3351 size_t n_queues = queues_buf.size / sizeof *port_queues;
3353 ofproto_port_set_queues(iface->port->bridge->ofproto, iface->ofp_port,
3354 port_queues, n_queues);
3357 netdev_set_policing(iface->netdev,
3358 iface->cfg->ingress_policing_rate,
3359 iface->cfg->ingress_policing_burst);
3361 ofpbuf_uninit(&queues_buf);
3365 iface_configure_cfm(struct iface *iface)
3367 const struct ovsrec_interface *cfg = iface->cfg;
3368 const char *extended_str, *opstate_str;
3369 const char *cfm_ccm_vlan;
3370 struct cfm_settings s;
3372 if (!cfg->n_cfm_mpid) {
3373 ofproto_port_clear_cfm(iface->port->bridge->ofproto, iface->ofp_port);
3377 s.mpid = *cfg->cfm_mpid;
3378 s.interval = atoi(ovsrec_interface_get_other_config_value(iface->cfg,
3381 cfm_ccm_vlan = ovsrec_interface_get_other_config_value(iface->cfg,
3384 s.ccm_pcp = atoi(ovsrec_interface_get_other_config_value(iface->cfg,
3387 if (s.interval <= 0) {
3391 if (!strcasecmp("random", cfm_ccm_vlan)) {
3392 s.ccm_vlan = CFM_RANDOM_VLAN;
3394 s.ccm_vlan = atoi(cfm_ccm_vlan);
3395 if (s.ccm_vlan == CFM_RANDOM_VLAN) {
3400 extended_str = ovsrec_interface_get_other_config_value(iface->cfg,
3403 s.extended = !strcasecmp("true", extended_str);
3405 opstate_str = ovsrec_interface_get_other_config_value(iface->cfg,
3408 s.opup = !strcasecmp("up", opstate_str);
3410 ofproto_port_set_cfm(iface->port->bridge->ofproto, iface->ofp_port, &s);
3413 /* Returns true if 'iface' is synthetic, that is, if we constructed it locally
3414 * instead of obtaining it from the database. */
3416 iface_is_synthetic(const struct iface *iface)
3418 return ovsdb_idl_row_is_synthetic(&iface->cfg->header_);
3422 /* Port mirroring. */
3424 static struct mirror *
3425 mirror_find_by_uuid(struct bridge *br, const struct uuid *uuid)
3429 HMAP_FOR_EACH_IN_BUCKET (m, hmap_node, uuid_hash(uuid), &br->mirrors) {
3430 if (uuid_equals(uuid, &m->uuid)) {
3438 bridge_configure_mirrors(struct bridge *br)
3440 const struct ovsdb_datum *mc;
3441 unsigned long *flood_vlans;
3442 struct mirror *m, *next;
3445 /* Get rid of deleted mirrors. */
3446 mc = ovsrec_bridge_get_mirrors(br->cfg, OVSDB_TYPE_UUID);
3447 HMAP_FOR_EACH_SAFE (m, next, hmap_node, &br->mirrors) {
3448 union ovsdb_atom atom;
3450 atom.uuid = m->uuid;
3451 if (ovsdb_datum_find_key(mc, &atom, OVSDB_TYPE_UUID) == UINT_MAX) {
3456 /* Add new mirrors and reconfigure existing ones. */
3457 for (i = 0; i < br->cfg->n_mirrors; i++) {
3458 const struct ovsrec_mirror *cfg = br->cfg->mirrors[i];
3459 struct mirror *m = mirror_find_by_uuid(br, &cfg->header_.uuid);
3461 m = mirror_create(br, cfg);
3464 if (!mirror_configure(m)) {
3469 /* Update flooded vlans (for RSPAN). */
3470 flood_vlans = vlan_bitmap_from_array(br->cfg->flood_vlans,
3471 br->cfg->n_flood_vlans);
3472 ofproto_set_flood_vlans(br->ofproto, flood_vlans);
3473 bitmap_free(flood_vlans);
3476 static struct mirror *
3477 mirror_create(struct bridge *br, const struct ovsrec_mirror *cfg)
3481 m = xzalloc(sizeof *m);
3482 m->uuid = cfg->header_.uuid;
3483 hmap_insert(&br->mirrors, &m->hmap_node, uuid_hash(&m->uuid));
3485 m->name = xstrdup(cfg->name);
3491 mirror_destroy(struct mirror *m)
3494 struct bridge *br = m->bridge;
3497 ofproto_mirror_unregister(br->ofproto, m);
3500 hmap_remove(&br->mirrors, &m->hmap_node);
3507 mirror_collect_ports(struct mirror *m,
3508 struct ovsrec_port **in_ports, int n_in_ports,
3509 void ***out_portsp, size_t *n_out_portsp)
3511 void **out_ports = xmalloc(n_in_ports * sizeof *out_ports);
3512 size_t n_out_ports = 0;
3515 for (i = 0; i < n_in_ports; i++) {
3516 const char *name = in_ports[i]->name;
3517 struct port *port = port_lookup(m->bridge, name);
3519 out_ports[n_out_ports++] = port;
3521 VLOG_WARN("bridge %s: mirror %s cannot match on nonexistent "
3522 "port %s", m->bridge->name, m->name, name);
3525 *out_portsp = out_ports;
3526 *n_out_portsp = n_out_ports;
3530 mirror_configure(struct mirror *m)
3532 const struct ovsrec_mirror *cfg = m->cfg;
3533 struct ofproto_mirror_settings s;
3536 if (strcmp(cfg->name, m->name)) {
3538 m->name = xstrdup(cfg->name);
3542 /* Get output port or VLAN. */
3543 if (cfg->output_port) {
3544 s.out_bundle = port_lookup(m->bridge, cfg->output_port->name);
3545 if (!s.out_bundle) {
3546 VLOG_ERR("bridge %s: mirror %s outputs to port not on bridge",
3547 m->bridge->name, m->name);
3550 s.out_vlan = UINT16_MAX;
3552 if (cfg->output_vlan) {
3553 VLOG_ERR("bridge %s: mirror %s specifies both output port and "
3554 "output vlan; ignoring output vlan",
3555 m->bridge->name, m->name);
3557 } else if (cfg->output_vlan) {
3558 /* The database should prevent invalid VLAN values. */
3559 s.out_bundle = NULL;
3560 s.out_vlan = *cfg->output_vlan;
3562 VLOG_ERR("bridge %s: mirror %s does not specify output; ignoring",
3563 m->bridge->name, m->name);
3567 /* Get port selection. */
3568 if (cfg->select_all) {
3569 size_t n_ports = hmap_count(&m->bridge->ports);
3570 void **ports = xmalloc(n_ports * sizeof *ports);
3575 HMAP_FOR_EACH (port, hmap_node, &m->bridge->ports) {
3585 /* Get ports, dropping ports that don't exist.
3586 * The IDL ensures that there are no duplicates. */
3587 mirror_collect_ports(m, cfg->select_src_port, cfg->n_select_src_port,
3588 &s.srcs, &s.n_srcs);
3589 mirror_collect_ports(m, cfg->select_dst_port, cfg->n_select_dst_port,
3590 &s.dsts, &s.n_dsts);
3593 /* Get VLAN selection. */
3594 s.src_vlans = vlan_bitmap_from_array(cfg->select_vlan, cfg->n_select_vlan);
3597 ofproto_mirror_register(m->bridge->ofproto, m, &s);
3600 if (s.srcs != s.dsts) {
3609 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
3611 * This is deprecated. It is only for compatibility with broken device drivers
3612 * in old versions of Linux that do not properly support VLANs when VLAN
3613 * devices are not used. When broken device drivers are no longer in
3614 * widespread use, we will delete these interfaces. */
3616 static void **blocks;
3617 static size_t n_blocks, allocated_blocks;
3619 /* Adds 'block' to a list of blocks that have to be freed with free() when the
3620 * VLAN splinters are reconfigured. */
3622 register_block(void *block)
3624 if (n_blocks >= allocated_blocks) {
3625 blocks = x2nrealloc(blocks, &allocated_blocks, sizeof *blocks);
3627 blocks[n_blocks++] = block;
3630 /* Frees all of the blocks registered with register_block(). */
3632 free_registered_blocks(void)
3636 for (i = 0; i < n_blocks; i++) {
3642 /* Returns true if VLAN splinters are enabled on 'iface_cfg', false
3645 vlan_splinters_is_enabled(const struct ovsrec_interface *iface_cfg)
3649 value = ovsrec_interface_get_other_config_value(iface_cfg,
3650 "enable-vlan-splinters",
3652 return !strcmp(value, "true");
3655 /* Figures out the set of VLANs that are in use for the purpose of VLAN
3658 * If VLAN splinters are enabled on at least one interface and any VLANs are in
3659 * use, returns a 4096-bit bitmap with a 1-bit for each in-use VLAN (bits 0 and
3660 * 4095 will not be set). The caller is responsible for freeing the bitmap,
3663 * If VLANs splinters are not enabled on any interface or if no VLANs are in
3664 * use, returns NULL.
3666 * Updates 'vlan_splinters_enabled_anywhere'. */
3667 static unsigned long int *
3668 collect_splinter_vlans(const struct ovsrec_open_vswitch *ovs_cfg)
3670 unsigned long int *splinter_vlans;
3671 struct sset splinter_ifaces;
3672 const char *real_dev_name;
3673 struct shash *real_devs;
3674 struct shash_node *node;
3678 /* Free space allocated for synthesized ports and interfaces, since we're
3679 * in the process of reconstructing all of them. */
3680 free_registered_blocks();
3682 splinter_vlans = bitmap_allocate(4096);
3683 sset_init(&splinter_ifaces);
3684 vlan_splinters_enabled_anywhere = false;
3685 for (i = 0; i < ovs_cfg->n_bridges; i++) {
3686 struct ovsrec_bridge *br_cfg = ovs_cfg->bridges[i];
3689 for (j = 0; j < br_cfg->n_ports; j++) {
3690 struct ovsrec_port *port_cfg = br_cfg->ports[j];
3693 for (k = 0; k < port_cfg->n_interfaces; k++) {
3694 struct ovsrec_interface *iface_cfg = port_cfg->interfaces[k];
3696 if (vlan_splinters_is_enabled(iface_cfg)) {
3697 vlan_splinters_enabled_anywhere = true;
3698 sset_add(&splinter_ifaces, iface_cfg->name);
3699 vlan_bitmap_from_array__(port_cfg->trunks,
3705 if (port_cfg->tag && *port_cfg->tag > 0 && *port_cfg->tag < 4095) {
3706 bitmap_set1(splinter_vlans, *port_cfg->tag);
3711 if (!vlan_splinters_enabled_anywhere) {
3712 free(splinter_vlans);
3713 sset_destroy(&splinter_ifaces);
3717 HMAP_FOR_EACH (br, node, &all_bridges) {
3719 ofproto_get_vlan_usage(br->ofproto, splinter_vlans);
3723 /* Don't allow VLANs 0 or 4095 to be splintered. VLAN 0 should appear on
3724 * the real device. VLAN 4095 is reserved and Linux doesn't allow a VLAN
3725 * device to be created for it. */
3726 bitmap_set0(splinter_vlans, 0);
3727 bitmap_set0(splinter_vlans, 4095);
3729 /* Delete all VLAN devices that we don't need. */
3731 real_devs = vlandev_get_real_devs();
3732 SHASH_FOR_EACH (node, real_devs) {
3733 const struct vlan_real_dev *real_dev = node->data;
3734 const struct vlan_dev *vlan_dev;
3735 bool real_dev_has_splinters;
3737 real_dev_has_splinters = sset_contains(&splinter_ifaces,
3739 HMAP_FOR_EACH (vlan_dev, hmap_node, &real_dev->vlan_devs) {
3740 if (!real_dev_has_splinters
3741 || !bitmap_is_set(splinter_vlans, vlan_dev->vid)) {
3742 struct netdev *netdev;
3744 if (!netdev_open(vlan_dev->name, "system", &netdev)) {
3745 if (!netdev_get_in4(netdev, NULL, NULL) ||
3746 !netdev_get_in6(netdev, NULL)) {
3747 vlandev_del(vlan_dev->name);
3749 /* It has an IP address configured, so we don't own
3750 * it. Don't delete it. */
3752 netdev_close(netdev);
3759 /* Add all VLAN devices that we need. */
3760 SSET_FOR_EACH (real_dev_name, &splinter_ifaces) {
3763 BITMAP_FOR_EACH_1 (vid, 4096, splinter_vlans) {
3764 if (!vlandev_get_name(real_dev_name, vid)) {
3765 vlandev_add(real_dev_name, vid);
3772 sset_destroy(&splinter_ifaces);
3774 if (bitmap_scan(splinter_vlans, 0, 4096) >= 4096) {
3775 free(splinter_vlans);
3778 return splinter_vlans;
3781 /* Pushes the configure of VLAN splinter port 'port' (e.g. eth0.9) down to
3784 configure_splinter_port(struct port *port)
3786 struct ofproto *ofproto = port->bridge->ofproto;
3787 uint16_t realdev_ofp_port;
3788 const char *realdev_name;
3789 struct iface *vlandev, *realdev;
3791 ofproto_bundle_unregister(port->bridge->ofproto, port);
3793 vlandev = CONTAINER_OF(list_front(&port->ifaces), struct iface,
3796 realdev_name = ovsrec_port_get_other_config_value(port->cfg,
3798 realdev = iface_lookup(port->bridge, realdev_name);
3799 realdev_ofp_port = realdev ? realdev->ofp_port : 0;
3801 ofproto_port_set_realdev(ofproto, vlandev->ofp_port, realdev_ofp_port,
3805 static struct ovsrec_port *
3806 synthesize_splinter_port(const char *real_dev_name,
3807 const char *vlan_dev_name, int vid)
3809 struct ovsrec_interface *iface;
3810 struct ovsrec_port *port;
3812 iface = xzalloc(sizeof *iface);
3813 iface->name = xstrdup(vlan_dev_name);
3814 iface->type = "system";
3816 port = xzalloc(sizeof *port);
3817 port->interfaces = xmemdup(&iface, sizeof iface);
3818 port->n_interfaces = 1;
3819 port->name = xstrdup(vlan_dev_name);
3820 port->vlan_mode = "splinter";
3821 port->tag = xmalloc(sizeof *port->tag);
3823 port->key_other_config = xmalloc(sizeof *port->key_other_config);
3824 port->key_other_config[0] = "realdev";
3825 port->value_other_config = xmalloc(sizeof *port->value_other_config);
3826 port->value_other_config[0] = xstrdup(real_dev_name);
3827 port->n_other_config = 1;
3829 register_block(iface);
3830 register_block(iface->name);
3831 register_block(port);
3832 register_block(port->interfaces);
3833 register_block(port->name);
3834 register_block(port->tag);
3835 register_block(port->key_other_config);
3836 register_block(port->value_other_config);
3837 register_block(port->value_other_config[0]);
3842 /* For each interface with 'br' that has VLAN splinters enabled, adds a
3843 * corresponding ovsrec_port to 'ports' for each splinter VLAN marked with a
3844 * 1-bit in the 'splinter_vlans' bitmap. */
3846 add_vlan_splinter_ports(struct bridge *br,
3847 const unsigned long int *splinter_vlans,
3848 struct shash *ports)
3852 /* We iterate through 'br->cfg->ports' instead of 'ports' here because
3853 * we're modifying 'ports'. */
3854 for (i = 0; i < br->cfg->n_ports; i++) {
3855 const char *name = br->cfg->ports[i]->name;
3856 struct ovsrec_port *port_cfg = shash_find_data(ports, name);
3859 for (j = 0; j < port_cfg->n_interfaces; j++) {
3860 struct ovsrec_interface *iface_cfg = port_cfg->interfaces[j];
3862 if (vlan_splinters_is_enabled(iface_cfg)) {
3863 const char *real_dev_name;
3866 real_dev_name = iface_cfg->name;
3867 BITMAP_FOR_EACH_1 (vid, 4096, splinter_vlans) {
3868 const char *vlan_dev_name;
3870 vlan_dev_name = vlandev_get_name(real_dev_name, vid);
3872 && !shash_find(ports, vlan_dev_name)) {
3873 shash_add(ports, vlan_dev_name,
3874 synthesize_splinter_port(
3875 real_dev_name, vlan_dev_name, vid));
3884 mirror_refresh_stats(struct mirror *m)
3886 struct ofproto *ofproto = m->bridge->ofproto;
3887 uint64_t tx_packets, tx_bytes;
3890 size_t stat_cnt = 0;
3892 if (ofproto_mirror_get_stats(ofproto, m, &tx_packets, &tx_bytes)) {
3893 ovsrec_mirror_set_statistics(m->cfg, NULL, NULL, 0);
3897 if (tx_packets != UINT64_MAX) {
3898 keys[stat_cnt] = "tx_packets";
3899 values[stat_cnt] = tx_packets;
3902 if (tx_bytes != UINT64_MAX) {
3903 keys[stat_cnt] = "tx_bytes";
3904 values[stat_cnt] = tx_bytes;
3908 ovsrec_mirror_set_statistics(m->cfg, keys, values, stat_cnt);