bridge: Remove unwanted ports at time of ofproto creation.
[sliver-openvswitch.git] / vswitchd / bridge.c
1 /* Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks
2  *
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:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
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.
14  */
15
16 #include <config.h>
17 #include "bridge.h"
18 #include <assert.h>
19 #include <errno.h>
20 #include <inttypes.h>
21 #include <stdlib.h>
22 #include "bitmap.h"
23 #include "bond.h"
24 #include "cfm.h"
25 #include "coverage.h"
26 #include "daemon.h"
27 #include "dirs.h"
28 #include "dynamic-string.h"
29 #include "hash.h"
30 #include "hmap.h"
31 #include "hmapx.h"
32 #include "jsonrpc.h"
33 #include "lacp.h"
34 #include "list.h"
35 #include "netdev.h"
36 #include "ofp-print.h"
37 #include "ofpbuf.h"
38 #include "ofproto/ofproto.h"
39 #include "poll-loop.h"
40 #include "sha1.h"
41 #include "shash.h"
42 #include "socket-util.h"
43 #include "stream-ssl.h"
44 #include "sset.h"
45 #include "system-stats.h"
46 #include "timeval.h"
47 #include "util.h"
48 #include "unixctl.h"
49 #include "vswitchd/vswitch-idl.h"
50 #include "xenserver.h"
51 #include "vlog.h"
52 #include "sflow_api.h"
53 #include "vlan-bitmap.h"
54
55 VLOG_DEFINE_THIS_MODULE(bridge);
56
57 COVERAGE_DEFINE(bridge_reconfigure);
58
59 struct iface {
60     /* These members are always valid. */
61     struct list port_elem;      /* Element in struct port's "ifaces" list. */
62     struct hmap_node name_node; /* In struct bridge's "iface_by_name" hmap. */
63     struct port *port;          /* Containing port. */
64     char *name;                 /* Host network device name. */
65     tag_type tag;               /* Tag associated with this interface. */
66
67     /* These members are valid only after bridge_reconfigure() causes them to
68      * be initialized. */
69     struct hmap_node ofp_port_node; /* In struct bridge's "ifaces" hmap. */
70     int ofp_port;               /* OpenFlow port number, -1 if unknown. */
71     struct netdev *netdev;      /* Network device. */
72     const char *type;           /* Usually same as cfg->type. */
73     const struct ovsrec_interface *cfg;
74 };
75
76 struct mirror {
77     struct uuid uuid;           /* UUID of this "mirror" record in database. */
78     struct hmap_node hmap_node; /* In struct bridge's "mirrors" hmap. */
79     struct bridge *bridge;
80     char *name;
81 };
82
83 struct port {
84     struct bridge *bridge;
85     struct hmap_node hmap_node; /* Element in struct bridge's "ports" hmap. */
86     char *name;
87
88     const struct ovsrec_port *cfg;
89
90     /* An ordinary bridge port has 1 interface.
91      * A bridge port for bonding has at least 2 interfaces. */
92     struct list ifaces;         /* List of "struct iface"s. */
93 };
94
95 struct bridge {
96     struct hmap_node node;      /* In 'all_bridges'. */
97     char *name;                 /* User-specified arbitrary name. */
98     char *type;                 /* Datapath type. */
99     uint8_t ea[ETH_ADDR_LEN];   /* Bridge Ethernet Address. */
100     uint8_t default_ea[ETH_ADDR_LEN]; /* Default MAC. */
101     const struct ovsrec_bridge *cfg;
102
103     /* OpenFlow switch processing. */
104     struct ofproto *ofproto;    /* OpenFlow switch. */
105
106     /* Bridge ports. */
107     struct hmap ports;          /* "struct port"s indexed by name. */
108     struct hmap ifaces;         /* "struct iface"s indexed by ofp_port. */
109     struct hmap iface_by_name;  /* "struct iface"s indexed by name. */
110
111     /* Port mirroring. */
112     struct hmap mirrors;        /* "struct mirror" indexed by UUID. */
113
114     /* Synthetic local port if necessary. */
115     struct ovsrec_port synth_local_port;
116     struct ovsrec_interface synth_local_iface;
117     struct ovsrec_interface *synth_local_ifacep;
118 };
119
120 /* All bridges, indexed by name. */
121 static struct hmap all_bridges = HMAP_INITIALIZER(&all_bridges);
122
123 /* OVSDB IDL used to obtain configuration. */
124 static struct ovsdb_idl *idl;
125
126 /* Each time this timer expires, the bridge fetches systems and interface
127  * statistics and pushes them into the database. */
128 #define STATS_INTERVAL (5 * 1000) /* In milliseconds. */
129 static long long int stats_timer = LLONG_MIN;
130
131 /* Stores the time after which rate limited statistics may be written to the
132  * database.  Only updated when changes to the database require rate limiting.
133  */
134 #define DB_LIMIT_INTERVAL (1 * 1000) /* In milliseconds. */
135 static long long int db_limiter = LLONG_MIN;
136
137 static void add_del_bridges(const struct ovsrec_open_vswitch *);
138 static void bridge_del_ofprotos(void);
139 static bool bridge_add_ofprotos(struct bridge *);
140 static void bridge_create(const struct ovsrec_bridge *);
141 static void bridge_destroy(struct bridge *);
142 static struct bridge *bridge_lookup(const char *name);
143 static unixctl_cb_func bridge_unixctl_dump_flows;
144 static unixctl_cb_func bridge_unixctl_reconnect;
145 static size_t bridge_get_controllers(const struct bridge *br,
146                                      struct ovsrec_controller ***controllersp);
147 static void bridge_add_del_ports(struct bridge *);
148 static void bridge_add_ofproto_ports(struct bridge *);
149 static void bridge_del_ofproto_ports(struct bridge *);
150 static void bridge_refresh_ofp_port(struct bridge *);
151 static void bridge_configure_datapath_id(struct bridge *);
152 static void bridge_configure_flow_eviction_threshold(struct bridge *);
153 static void bridge_configure_netflow(struct bridge *);
154 static void bridge_configure_forward_bpdu(struct bridge *);
155 static void bridge_configure_sflow(struct bridge *, int *sflow_bridge_number);
156 static void bridge_configure_stp(struct bridge *);
157 static void bridge_configure_remotes(struct bridge *,
158                                      const struct sockaddr_in *managers,
159                                      size_t n_managers);
160 static void bridge_pick_local_hw_addr(struct bridge *,
161                                       uint8_t ea[ETH_ADDR_LEN],
162                                       struct iface **hw_addr_iface);
163 static uint64_t bridge_pick_datapath_id(struct bridge *,
164                                         const uint8_t bridge_ea[ETH_ADDR_LEN],
165                                         struct iface *hw_addr_iface);
166 static const char *bridge_get_other_config(const struct ovsrec_bridge *,
167                                             const char *key);
168 static const char *get_port_other_config(const struct ovsrec_port *,
169                                          const char *key,
170                                          const char *default_value);
171 static uint64_t dpid_from_hash(const void *, size_t nbytes);
172 static bool bridge_has_bond_fake_iface(const struct bridge *,
173                                        const char *name);
174 static bool port_is_bond_fake_iface(const struct port *);
175
176 static unixctl_cb_func qos_unixctl_show;
177
178 static struct port *port_create(struct bridge *, const struct ovsrec_port *);
179 static void port_add_ifaces(struct port *);
180 static void port_del_ifaces(struct port *);
181 static void port_destroy(struct port *);
182 static struct port *port_lookup(const struct bridge *, const char *name);
183 static void port_configure(struct port *);
184 static struct lacp_settings *port_configure_lacp(struct port *,
185                                                  struct lacp_settings *);
186 static void port_configure_bond(struct port *, struct bond_settings *,
187                                 uint32_t *bond_stable_ids);
188 static bool port_is_synthetic(const struct port *);
189
190 static void bridge_configure_mirrors(struct bridge *);
191 static struct mirror *mirror_create(struct bridge *,
192                                     const struct ovsrec_mirror *);
193 static void mirror_destroy(struct mirror *);
194 static bool mirror_configure(struct mirror *, const struct ovsrec_mirror *);
195
196 static void iface_configure_lacp(struct iface *, struct lacp_slave_settings *);
197 static struct iface *iface_create(struct port *port,
198                                   const struct ovsrec_interface *if_cfg);
199 static void iface_destroy(struct iface *);
200 static struct iface *iface_lookup(const struct bridge *, const char *name);
201 static struct iface *iface_find(const char *name);
202 static struct iface *iface_from_ofp_port(const struct bridge *,
203                                          uint16_t ofp_port);
204 static void iface_set_mac(struct iface *);
205 static void iface_set_ofport(const struct ovsrec_interface *, int64_t ofport);
206 static void iface_clear_db_record(const struct ovsrec_interface *if_cfg);
207 static void iface_configure_qos(struct iface *, const struct ovsrec_qos *);
208 static void iface_configure_cfm(struct iface *);
209 static void iface_refresh_cfm_stats(struct iface *);
210 static void iface_refresh_stats(struct iface *);
211 static void iface_refresh_status(struct iface *);
212 static bool iface_is_synthetic(const struct iface *);
213
214 static void shash_from_ovs_idl_map(char **keys, char **values, size_t n,
215                                    struct shash *);
216 static void shash_to_ovs_idl_map(struct shash *,
217                                  char ***keys, char ***values, size_t *n);
218 \f
219 /* Public functions. */
220
221 /* Initializes the bridge module, configuring it to obtain its configuration
222  * from an OVSDB server accessed over 'remote', which should be a string in a
223  * form acceptable to ovsdb_idl_create(). */
224 void
225 bridge_init(const char *remote)
226 {
227     /* Create connection to database. */
228     idl = ovsdb_idl_create(remote, &ovsrec_idl_class, true);
229     ovsdb_idl_set_lock(idl, "ovs_vswitchd");
230
231     ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_cur_cfg);
232     ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_statistics);
233     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_external_ids);
234     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_ovs_version);
235     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_db_version);
236     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_system_type);
237     ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_system_version);
238
239     ovsdb_idl_omit_alert(idl, &ovsrec_bridge_col_datapath_id);
240     ovsdb_idl_omit_alert(idl, &ovsrec_bridge_col_status);
241     ovsdb_idl_omit(idl, &ovsrec_bridge_col_external_ids);
242
243     ovsdb_idl_omit_alert(idl, &ovsrec_port_col_status);
244     ovsdb_idl_omit_alert(idl, &ovsrec_port_col_statistics);
245     ovsdb_idl_omit(idl, &ovsrec_port_col_external_ids);
246     ovsdb_idl_omit(idl, &ovsrec_port_col_fake_bridge);
247
248     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_admin_state);
249     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_duplex);
250     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_speed);
251     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_state);
252     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_link_resets);
253     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_mtu);
254     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_ofport);
255     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_statistics);
256     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_status);
257     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_fault);
258     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_cfm_remote_mpids);
259     ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_lacp_current);
260     ovsdb_idl_omit(idl, &ovsrec_interface_col_external_ids);
261
262     ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_is_connected);
263     ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_role);
264     ovsdb_idl_omit_alert(idl, &ovsrec_controller_col_status);
265     ovsdb_idl_omit(idl, &ovsrec_controller_col_external_ids);
266
267     ovsdb_idl_omit(idl, &ovsrec_qos_col_external_ids);
268
269     ovsdb_idl_omit(idl, &ovsrec_queue_col_external_ids);
270
271     ovsdb_idl_omit(idl, &ovsrec_mirror_col_external_ids);
272
273     ovsdb_idl_omit(idl, &ovsrec_netflow_col_external_ids);
274
275     ovsdb_idl_omit(idl, &ovsrec_sflow_col_external_ids);
276
277     ovsdb_idl_omit(idl, &ovsrec_manager_col_external_ids);
278     ovsdb_idl_omit(idl, &ovsrec_manager_col_inactivity_probe);
279     ovsdb_idl_omit(idl, &ovsrec_manager_col_is_connected);
280     ovsdb_idl_omit(idl, &ovsrec_manager_col_max_backoff);
281     ovsdb_idl_omit(idl, &ovsrec_manager_col_status);
282
283     ovsdb_idl_omit(idl, &ovsrec_ssl_col_external_ids);
284
285     /* Register unixctl commands. */
286     unixctl_command_register("qos/show", "interface", qos_unixctl_show, NULL);
287     unixctl_command_register("bridge/dump-flows", "bridge",
288                              bridge_unixctl_dump_flows, NULL);
289     unixctl_command_register("bridge/reconnect", "[bridge]",
290                              bridge_unixctl_reconnect, NULL);
291     lacp_init();
292     bond_init();
293     cfm_init();
294 }
295
296 void
297 bridge_exit(void)
298 {
299     struct bridge *br, *next_br;
300
301     HMAP_FOR_EACH_SAFE (br, next_br, node, &all_bridges) {
302         bridge_destroy(br);
303     }
304     ovsdb_idl_destroy(idl);
305 }
306
307 /* Looks at the list of managers in 'ovs_cfg' and extracts their remote IP
308  * addresses and ports into '*managersp' and '*n_managersp'.  The caller is
309  * responsible for freeing '*managersp' (with free()).
310  *
311  * You may be asking yourself "why does ovs-vswitchd care?", because
312  * ovsdb-server is responsible for connecting to the managers, and ovs-vswitchd
313  * should not be and in fact is not directly involved in that.  But
314  * ovs-vswitchd needs to make sure that ovsdb-server can reach the managers, so
315  * it has to tell in-band control where the managers are to enable that.
316  * (Thus, only managers connected in-band are collected.)
317  */
318 static void
319 collect_in_band_managers(const struct ovsrec_open_vswitch *ovs_cfg,
320                          struct sockaddr_in **managersp, size_t *n_managersp)
321 {
322     struct sockaddr_in *managers = NULL;
323     size_t n_managers = 0;
324     struct sset targets;
325     size_t i;
326
327     /* Collect all of the potential targets from the "targets" columns of the
328      * rows pointed to by "manager_options", excluding any that are
329      * out-of-band. */
330     sset_init(&targets);
331     for (i = 0; i < ovs_cfg->n_manager_options; i++) {
332         struct ovsrec_manager *m = ovs_cfg->manager_options[i];
333
334         if (m->connection_mode && !strcmp(m->connection_mode, "out-of-band")) {
335             sset_find_and_delete(&targets, m->target);
336         } else {
337             sset_add(&targets, m->target);
338         }
339     }
340
341     /* Now extract the targets' IP addresses. */
342     if (!sset_is_empty(&targets)) {
343         const char *target;
344
345         managers = xmalloc(sset_count(&targets) * sizeof *managers);
346         SSET_FOR_EACH (target, &targets) {
347             struct sockaddr_in *sin = &managers[n_managers];
348
349             if ((!strncmp(target, "tcp:", 4)
350                  && inet_parse_active(target + 4, JSONRPC_TCP_PORT, sin)) ||
351                 (!strncmp(target, "ssl:", 4)
352                  && inet_parse_active(target + 4, JSONRPC_SSL_PORT, sin))) {
353                 n_managers++;
354             }
355         }
356     }
357     sset_destroy(&targets);
358
359     *managersp = managers;
360     *n_managersp = n_managers;
361 }
362
363 static void
364 bridge_reconfigure(const struct ovsrec_open_vswitch *ovs_cfg)
365 {
366     struct sockaddr_in *managers;
367     struct bridge *br, *next;
368     int sflow_bridge_number;
369     size_t n_managers;
370
371     COVERAGE_INC(bridge_reconfigure);
372
373     /* Create and destroy "struct bridge"s, "struct port"s, and "struct
374      * iface"s according to 'ovs_cfg', with only very minimal configuration
375      * otherwise.
376      *
377      * This is purely an update to bridge data structures.  Nothing is pushed
378      * down to ofproto or lower layers. */
379     add_del_bridges(ovs_cfg);
380     HMAP_FOR_EACH (br, node, &all_bridges) {
381         bridge_add_del_ports(br);
382     }
383
384     /* Delete all datapaths and datapath ports that are no longer configured.
385      *
386      * The kernel will reject any attempt to add a given port to a datapath if
387      * that port already belongs to a different datapath, so we must do all
388      * port deletions before any port additions.  A datapath always has a
389      * "local port" so we must delete not-configured datapaths too. */
390     bridge_del_ofprotos();
391     HMAP_FOR_EACH (br, node, &all_bridges) {
392         if (br->ofproto) {
393             bridge_del_ofproto_ports(br);
394         }
395     }
396
397     /* Create datapaths and datapath ports that are missing.
398      *
399      * After this is done, we have our final set of bridges, ports, and
400      * interfaces.  Every "struct bridge" has an ofproto, every "struct port"
401      * has at least one iface, every "struct iface" has a valid ofp_port and
402      * netdev. */
403     HMAP_FOR_EACH_SAFE (br, next, node, &all_bridges) {
404         if (!br->ofproto) {
405             if (bridge_add_ofprotos(br)) {
406                 bridge_del_ofproto_ports(br);
407             } else {
408                 bridge_destroy(br);
409             }
410         }
411     }
412     HMAP_FOR_EACH (br, node, &all_bridges) {
413         bridge_refresh_ofp_port(br);
414         bridge_add_ofproto_ports(br);
415     }
416
417     /* Complete the configuration. */
418     sflow_bridge_number = 0;
419     collect_in_band_managers(ovs_cfg, &managers, &n_managers);
420     HMAP_FOR_EACH (br, node, &all_bridges) {
421         struct port *port;
422
423         /* We need the datapath ID early to allow LACP ports to use it as the
424          * default system ID. */
425         bridge_configure_datapath_id(br);
426
427         HMAP_FOR_EACH (port, hmap_node, &br->ports) {
428             struct iface *iface;
429
430             port_configure(port);
431
432             LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
433                 iface_configure_cfm(iface);
434                 iface_configure_qos(iface, port->cfg->qos);
435                 iface_set_mac(iface);
436             }
437         }
438         bridge_configure_mirrors(br);
439         bridge_configure_flow_eviction_threshold(br);
440         bridge_configure_forward_bpdu(br);
441         bridge_configure_remotes(br, managers, n_managers);
442         bridge_configure_netflow(br);
443         bridge_configure_sflow(br, &sflow_bridge_number);
444         bridge_configure_stp(br);
445     }
446     free(managers);
447
448     /* ovs-vswitchd has completed initialization, so allow the process that
449      * forked us to exit successfully. */
450     daemonize_complete();
451 }
452
453 /* Iterate over all ofprotos and delete any of them that do not have a
454  * configured bridge or that are the wrong type. */
455 static void
456 bridge_del_ofprotos(void)
457 {
458     struct sset names;
459     struct sset types;
460     const char *type;
461
462     sset_init(&names);
463     sset_init(&types);
464     ofproto_enumerate_types(&types);
465     SSET_FOR_EACH (type, &types) {
466         const char *name;
467
468         ofproto_enumerate_names(type, &names);
469         SSET_FOR_EACH (name, &names) {
470             struct bridge *br = bridge_lookup(name);
471             if (!br || strcmp(type, br->type)) {
472                 ofproto_delete(name, type);
473             }
474         }
475     }
476     sset_destroy(&names);
477     sset_destroy(&types);
478 }
479
480 static bool
481 bridge_add_ofprotos(struct bridge *br)
482 {
483     int error = ofproto_create(br->name, br->type, &br->ofproto);
484     if (error) {
485         VLOG_ERR("failed to create bridge %s: %s", br->name, strerror(error));
486         return false;
487     }
488     return true;
489 }
490
491 static void
492 port_configure(struct port *port)
493 {
494     const struct ovsrec_port *cfg = port->cfg;
495     struct bond_settings bond_settings;
496     struct lacp_settings lacp_settings;
497     struct ofproto_bundle_settings s;
498     struct iface *iface;
499
500     /* Get name. */
501     s.name = port->name;
502
503     /* Get slaves. */
504     s.n_slaves = 0;
505     s.slaves = xmalloc(list_size(&port->ifaces) * sizeof *s.slaves);
506     LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
507         s.slaves[s.n_slaves++] = iface->ofp_port;
508     }
509
510     /* Get VLAN tag. */
511     s.vlan = -1;
512     if (cfg->tag && *cfg->tag >= 0 && *cfg->tag <= 4095) {
513         s.vlan = *cfg->tag;
514     }
515
516     /* Get VLAN trunks. */
517     s.trunks = NULL;
518     if (cfg->n_trunks) {
519         s.trunks = vlan_bitmap_from_array(cfg->trunks, cfg->n_trunks);
520     }
521
522     /* Get VLAN mode. */
523     if (cfg->vlan_mode) {
524         if (!strcmp(cfg->vlan_mode, "access")) {
525             s.vlan_mode = PORT_VLAN_ACCESS;
526         } else if (!strcmp(cfg->vlan_mode, "trunk")) {
527             s.vlan_mode = PORT_VLAN_TRUNK;
528         } else if (!strcmp(cfg->vlan_mode, "native-tagged")) {
529             s.vlan_mode = PORT_VLAN_NATIVE_TAGGED;
530         } else if (!strcmp(cfg->vlan_mode, "native-untagged")) {
531             s.vlan_mode = PORT_VLAN_NATIVE_UNTAGGED;
532         } else {
533             /* This "can't happen" because ovsdb-server should prevent it. */
534             VLOG_ERR("unknown VLAN mode %s", cfg->vlan_mode);
535             s.vlan_mode = PORT_VLAN_TRUNK;
536         }
537     } else {
538         if (s.vlan >= 0) {
539             s.vlan_mode = PORT_VLAN_ACCESS;
540             if (cfg->n_trunks) {
541                 VLOG_ERR("port %s: ignoring trunks in favor of implicit vlan",
542                          port->name);
543             }
544         } else {
545             s.vlan_mode = PORT_VLAN_TRUNK;
546         }
547     }
548
549     /* Get LACP settings. */
550     s.lacp = port_configure_lacp(port, &lacp_settings);
551     if (s.lacp) {
552         size_t i = 0;
553
554         s.lacp_slaves = xmalloc(s.n_slaves * sizeof *s.lacp_slaves);
555         LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
556             iface_configure_lacp(iface, &s.lacp_slaves[i++]);
557         }
558     } else {
559         s.lacp_slaves = NULL;
560     }
561
562     /* Get bond settings. */
563     if (s.n_slaves > 1) {
564         s.bond = &bond_settings;
565         s.bond_stable_ids = xmalloc(s.n_slaves * sizeof *s.bond_stable_ids);
566         port_configure_bond(port, &bond_settings, s.bond_stable_ids);
567     } else {
568         s.bond = NULL;
569         s.bond_stable_ids = NULL;
570
571         LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
572             netdev_set_miimon_interval(iface->netdev, 0);
573         }
574     }
575
576     /* Register. */
577     ofproto_bundle_register(port->bridge->ofproto, port, &s);
578
579     /* Clean up. */
580     free(s.slaves);
581     free(s.trunks);
582     free(s.lacp_slaves);
583     free(s.bond_stable_ids);
584 }
585
586 /* Pick local port hardware address and datapath ID for 'br'. */
587 static void
588 bridge_configure_datapath_id(struct bridge *br)
589 {
590     uint8_t ea[ETH_ADDR_LEN];
591     uint64_t dpid;
592     struct iface *local_iface;
593     struct iface *hw_addr_iface;
594     char *dpid_string;
595
596     bridge_pick_local_hw_addr(br, ea, &hw_addr_iface);
597     local_iface = iface_from_ofp_port(br, OFPP_LOCAL);
598     if (local_iface) {
599         int error = netdev_set_etheraddr(local_iface->netdev, ea);
600         if (error) {
601             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
602             VLOG_ERR_RL(&rl, "bridge %s: failed to set bridge "
603                         "Ethernet address: %s",
604                         br->name, strerror(error));
605         }
606     }
607     memcpy(br->ea, ea, ETH_ADDR_LEN);
608
609     dpid = bridge_pick_datapath_id(br, ea, hw_addr_iface);
610     ofproto_set_datapath_id(br->ofproto, dpid);
611
612     dpid_string = xasprintf("%016"PRIx64, dpid);
613     ovsrec_bridge_set_datapath_id(br->cfg, dpid_string);
614     free(dpid_string);
615 }
616
617 /* Set NetFlow configuration on 'br'. */
618 static void
619 bridge_configure_netflow(struct bridge *br)
620 {
621     struct ovsrec_netflow *cfg = br->cfg->netflow;
622     struct netflow_options opts;
623
624     if (!cfg) {
625         ofproto_set_netflow(br->ofproto, NULL);
626         return;
627     }
628
629     memset(&opts, 0, sizeof opts);
630
631     /* Get default NetFlow configuration from datapath.
632      * Apply overrides from 'cfg'. */
633     ofproto_get_netflow_ids(br->ofproto, &opts.engine_type, &opts.engine_id);
634     if (cfg->engine_type) {
635         opts.engine_type = *cfg->engine_type;
636     }
637     if (cfg->engine_id) {
638         opts.engine_id = *cfg->engine_id;
639     }
640
641     /* Configure active timeout interval. */
642     opts.active_timeout = cfg->active_timeout;
643     if (!opts.active_timeout) {
644         opts.active_timeout = -1;
645     } else if (opts.active_timeout < 0) {
646         VLOG_WARN("bridge %s: active timeout interval set to negative "
647                   "value, using default instead (%d seconds)", br->name,
648                   NF_ACTIVE_TIMEOUT_DEFAULT);
649         opts.active_timeout = -1;
650     }
651
652     /* Add engine ID to interface number to disambiguate bridgs? */
653     opts.add_id_to_iface = cfg->add_id_to_interface;
654     if (opts.add_id_to_iface) {
655         if (opts.engine_id > 0x7f) {
656             VLOG_WARN("bridge %s: NetFlow port mangling may conflict with "
657                       "another vswitch, choose an engine id less than 128",
658                       br->name);
659         }
660         if (hmap_count(&br->ports) > 508) {
661             VLOG_WARN("bridge %s: NetFlow port mangling will conflict with "
662                       "another port when more than 508 ports are used",
663                       br->name);
664         }
665     }
666
667     /* Collectors. */
668     sset_init(&opts.collectors);
669     sset_add_array(&opts.collectors, cfg->targets, cfg->n_targets);
670
671     /* Configure. */
672     if (ofproto_set_netflow(br->ofproto, &opts)) {
673         VLOG_ERR("bridge %s: problem setting netflow collectors", br->name);
674     }
675     sset_destroy(&opts.collectors);
676 }
677
678 /* Set sFlow configuration on 'br'. */
679 static void
680 bridge_configure_sflow(struct bridge *br, int *sflow_bridge_number)
681 {
682     const struct ovsrec_sflow *cfg = br->cfg->sflow;
683     struct ovsrec_controller **controllers;
684     struct ofproto_sflow_options oso;
685     size_t n_controllers;
686     size_t i;
687
688     if (!cfg) {
689         ofproto_set_sflow(br->ofproto, NULL);
690         return;
691     }
692
693     memset(&oso, 0, sizeof oso);
694
695     sset_init(&oso.targets);
696     sset_add_array(&oso.targets, cfg->targets, cfg->n_targets);
697
698     oso.sampling_rate = SFL_DEFAULT_SAMPLING_RATE;
699     if (cfg->sampling) {
700         oso.sampling_rate = *cfg->sampling;
701     }
702
703     oso.polling_interval = SFL_DEFAULT_POLLING_INTERVAL;
704     if (cfg->polling) {
705         oso.polling_interval = *cfg->polling;
706     }
707
708     oso.header_len = SFL_DEFAULT_HEADER_SIZE;
709     if (cfg->header) {
710         oso.header_len = *cfg->header;
711     }
712
713     oso.sub_id = (*sflow_bridge_number)++;
714     oso.agent_device = cfg->agent;
715
716     oso.control_ip = NULL;
717     n_controllers = bridge_get_controllers(br, &controllers);
718     for (i = 0; i < n_controllers; i++) {
719         if (controllers[i]->local_ip) {
720             oso.control_ip = controllers[i]->local_ip;
721             break;
722         }
723     }
724     ofproto_set_sflow(br->ofproto, &oso);
725
726     sset_destroy(&oso.targets);
727 }
728
729 static void
730 port_configure_stp(const struct ofproto *ofproto, struct port *port,
731                    struct ofproto_port_stp_settings *port_s,
732                    int *port_num_counter, unsigned long *port_num_bitmap)
733 {
734     const char *config_str;
735     struct iface *iface;
736
737     config_str = get_port_other_config(port->cfg, "stp-enable", NULL);
738     if (config_str && !strcmp(config_str, "false")) {
739         port_s->enable = false;
740         return;
741     } else {
742         port_s->enable = true;
743     }
744
745     /* STP over bonds is not supported. */
746     if (!list_is_singleton(&port->ifaces)) {
747         VLOG_ERR("port %s: cannot enable STP on bonds, disabling",
748                  port->name);
749         port_s->enable = false;
750         return;
751     }
752
753     iface = CONTAINER_OF(list_front(&port->ifaces), struct iface, port_elem);
754
755     /* Internal ports shouldn't participate in spanning tree, so
756      * skip them. */
757     if (!strcmp(iface->type, "internal")) {
758         VLOG_DBG("port %s: disable STP on internal ports", port->name);
759         port_s->enable = false;
760         return;
761     }
762
763     /* STP on mirror output ports is not supported. */
764     if (ofproto_is_mirror_output_bundle(ofproto, port)) {
765         VLOG_DBG("port %s: disable STP on mirror ports", port->name);
766         port_s->enable = false;
767         return;
768     }
769
770     config_str = get_port_other_config(port->cfg, "stp-port-num", NULL);
771     if (config_str) {
772         unsigned long int port_num = strtoul(config_str, NULL, 0);
773         int port_idx = port_num - 1;
774
775         if (port_num < 1 || port_num > STP_MAX_PORTS) {
776             VLOG_ERR("port %s: invalid stp-port-num", port->name);
777             port_s->enable = false;
778             return;
779         }
780
781         if (bitmap_is_set(port_num_bitmap, port_idx)) {
782             VLOG_ERR("port %s: duplicate stp-port-num %lu, disabling",
783                     port->name, port_num);
784             port_s->enable = false;
785             return;
786         }
787         bitmap_set1(port_num_bitmap, port_idx);
788         port_s->port_num = port_idx;
789     } else {
790         if (*port_num_counter > STP_MAX_PORTS) {
791             VLOG_ERR("port %s: too many STP ports, disabling", port->name);
792             port_s->enable = false;
793             return;
794         }
795
796         port_s->port_num = (*port_num_counter)++;
797     }
798
799     config_str = get_port_other_config(port->cfg, "stp-path-cost", NULL);
800     if (config_str) {
801         port_s->path_cost = strtoul(config_str, NULL, 10);
802     } else {
803         uint32_t current;
804
805         if (netdev_get_features(iface->netdev, &current, NULL, NULL, NULL)) {
806             /* Couldn't get speed, so assume 100Mb/s. */
807             port_s->path_cost = 19;
808         } else {
809             unsigned int mbps;
810
811             mbps = netdev_features_to_bps(current) / 1000000;
812             port_s->path_cost = stp_convert_speed_to_cost(mbps);
813         }
814     }
815
816     config_str = get_port_other_config(port->cfg, "stp-port-priority", NULL);
817     if (config_str) {
818         port_s->priority = strtoul(config_str, NULL, 0);
819     } else {
820         port_s->priority = STP_DEFAULT_PORT_PRIORITY;
821     }
822 }
823
824 /* Set spanning tree configuration on 'br'. */
825 static void
826 bridge_configure_stp(struct bridge *br)
827 {
828     if (!br->cfg->stp_enable) {
829         ofproto_set_stp(br->ofproto, NULL);
830     } else {
831         struct ofproto_stp_settings br_s;
832         const char *config_str;
833         struct port *port;
834         int port_num_counter;
835         unsigned long *port_num_bitmap;
836
837         config_str = bridge_get_other_config(br->cfg, "stp-system-id");
838         if (config_str) {
839             uint8_t ea[ETH_ADDR_LEN];
840
841             if (eth_addr_from_string(config_str, ea)) {
842                 br_s.system_id = eth_addr_to_uint64(ea);
843             } else {
844                 br_s.system_id = eth_addr_to_uint64(br->ea);
845                 VLOG_ERR("bridge %s: invalid stp-system-id, defaulting "
846                          "to "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(br->ea));
847             }
848         } else {
849             br_s.system_id = eth_addr_to_uint64(br->ea);
850         }
851
852         config_str = bridge_get_other_config(br->cfg, "stp-priority");
853         if (config_str) {
854             br_s.priority = strtoul(config_str, NULL, 0);
855         } else {
856             br_s.priority = STP_DEFAULT_BRIDGE_PRIORITY;
857         }
858
859         config_str = bridge_get_other_config(br->cfg, "stp-hello-time");
860         if (config_str) {
861             br_s.hello_time = strtoul(config_str, NULL, 10) * 1000;
862         } else {
863             br_s.hello_time = STP_DEFAULT_HELLO_TIME;
864         }
865
866         config_str = bridge_get_other_config(br->cfg, "stp-max-age");
867         if (config_str) {
868             br_s.max_age = strtoul(config_str, NULL, 10) * 1000;
869         } else {
870             br_s.max_age = STP_DEFAULT_MAX_AGE;
871         }
872
873         config_str = bridge_get_other_config(br->cfg, "stp-forward-delay");
874         if (config_str) {
875             br_s.fwd_delay = strtoul(config_str, NULL, 10) * 1000;
876         } else {
877             br_s.fwd_delay = STP_DEFAULT_FWD_DELAY;
878         }
879
880         /* Configure STP on the bridge. */
881         if (ofproto_set_stp(br->ofproto, &br_s)) {
882             VLOG_ERR("bridge %s: could not enable STP", br->name);
883             return;
884         }
885
886         /* Users must either set the port number with the "stp-port-num"
887          * configuration on all ports or none.  If manual configuration
888          * is not done, then we allocate them sequentially. */
889         port_num_counter = 0;
890         port_num_bitmap = bitmap_allocate(STP_MAX_PORTS);
891         HMAP_FOR_EACH (port, hmap_node, &br->ports) {
892             struct ofproto_port_stp_settings port_s;
893             struct iface *iface;
894
895             port_configure_stp(br->ofproto, port, &port_s,
896                                &port_num_counter, port_num_bitmap);
897
898             /* As bonds are not supported, just apply configuration to
899              * all interfaces. */
900             LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
901                 if (ofproto_port_set_stp(br->ofproto, iface->ofp_port,
902                                          &port_s)) {
903                     VLOG_ERR("port %s: could not enable STP", port->name);
904                     continue;
905                 }
906             }
907         }
908
909         if (bitmap_scan(port_num_bitmap, 0, STP_MAX_PORTS) != STP_MAX_PORTS
910                     && port_num_counter) {
911             VLOG_ERR("bridge %s: must manually configure all STP port "
912                      "IDs or none, disabling", br->name);
913             ofproto_set_stp(br->ofproto, NULL);
914         }
915         bitmap_free(port_num_bitmap);
916     }
917 }
918
919 static bool
920 bridge_has_bond_fake_iface(const struct bridge *br, const char *name)
921 {
922     const struct port *port = port_lookup(br, name);
923     return port && port_is_bond_fake_iface(port);
924 }
925
926 static bool
927 port_is_bond_fake_iface(const struct port *port)
928 {
929     return port->cfg->bond_fake_iface && !list_is_short(&port->ifaces);
930 }
931
932 static void
933 add_del_bridges(const struct ovsrec_open_vswitch *cfg)
934 {
935     struct bridge *br, *next;
936     struct shash new_br;
937     size_t i;
938
939     /* Collect new bridges' names and types. */
940     shash_init(&new_br);
941     for (i = 0; i < cfg->n_bridges; i++) {
942         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
943         const struct ovsrec_bridge *br_cfg = cfg->bridges[i];
944
945         if (strchr(br_cfg->name, '/')) {
946             /* Prevent remote ovsdb-server users from accessing arbitrary
947              * directories, e.g. consider a bridge named "../../../etc/". */
948             VLOG_WARN_RL(&rl, "ignoring bridge with invalid name \"%s\"",
949                          br_cfg->name);
950         } else if (!shash_add_once(&new_br, br_cfg->name, br_cfg)) {
951             VLOG_WARN_RL(&rl, "bridge %s specified twice", br_cfg->name);
952         }
953     }
954
955     /* Get rid of deleted bridges or those whose types have changed.
956      * Update 'cfg' of bridges that still exist. */
957     HMAP_FOR_EACH_SAFE (br, next, node, &all_bridges) {
958         br->cfg = shash_find_data(&new_br, br->name);
959         if (!br->cfg || strcmp(br->type, ofproto_normalize_type(
960                                    br->cfg->datapath_type))) {
961             bridge_destroy(br);
962         }
963     }
964
965     /* Add new bridges. */
966     for (i = 0; i < cfg->n_bridges; i++) {
967         const struct ovsrec_bridge *br_cfg = cfg->bridges[i];
968         struct bridge *br = bridge_lookup(br_cfg->name);
969         if (!br) {
970             bridge_create(br_cfg);
971         }
972     }
973
974     shash_destroy(&new_br);
975 }
976
977 /* Delete each ofproto port on 'br' that doesn't have a corresponding "struct
978  * iface".
979  *
980  * The kernel will reject any attempt to add a given port to a datapath if that
981  * port already belongs to a different datapath, so we must do all port
982  * deletions before any port additions. */
983 static void
984 bridge_del_ofproto_ports(struct bridge *br)
985 {
986     struct ofproto_port_dump dump;
987     struct ofproto_port ofproto_port;
988
989     OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, br->ofproto) {
990         const char *name = ofproto_port.name;
991         struct iface *iface;
992         const char *type;
993         int error;
994
995         /* Ignore the local port.  We can't change it anyhow. */
996         if (!strcmp(name, br->name)) {
997             continue;
998         }
999
1000         /* Get the type that 'ofproto_port' should have (ordinarily the
1001          * type of its corresponding iface) or NULL if it should be
1002          * deleted. */
1003         iface = iface_lookup(br, name);
1004         type = (iface ? iface->type
1005                 : bridge_has_bond_fake_iface(br, name) ? "internal"
1006                 : NULL);
1007
1008         /* If it's the wrong type then delete the ofproto port. */
1009         if (type
1010             && !strcmp(ofproto_port.type, type)
1011             && (!iface || !iface->netdev
1012                 || !strcmp(netdev_get_type(iface->netdev), type))) {
1013             continue;
1014         }
1015         error = ofproto_port_del(br->ofproto, ofproto_port.ofp_port);
1016         if (error) {
1017             VLOG_WARN("bridge %s: failed to remove %s interface (%s)",
1018                       br->name, name, strerror(error));
1019         }
1020         if (iface) {
1021             netdev_close(iface->netdev);
1022             iface->netdev = NULL;
1023         }
1024     }
1025 }
1026
1027 static void
1028 iface_set_ofp_port(struct iface *iface, int ofp_port)
1029 {
1030     struct bridge *br = iface->port->bridge;
1031
1032     assert(iface->ofp_port < 0 && ofp_port >= 0);
1033     iface->ofp_port = ofp_port;
1034     hmap_insert(&br->ifaces, &iface->ofp_port_node, hash_int(ofp_port, 0));
1035     iface_set_ofport(iface->cfg, ofp_port);
1036 }
1037
1038 static void
1039 bridge_refresh_ofp_port(struct bridge *br)
1040 {
1041     struct ofproto_port_dump dump;
1042     struct ofproto_port ofproto_port;
1043     struct port *port;
1044
1045     /* Clear all the "ofp_port"es. */
1046     hmap_clear(&br->ifaces);
1047     HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1048         struct iface *iface;
1049
1050         LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
1051             iface->ofp_port = -1;
1052         }
1053     }
1054
1055     /* Obtain the correct "ofp_port"s from ofproto. */
1056     OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, br->ofproto) {
1057         struct iface *iface = iface_lookup(br, ofproto_port.name);
1058         if (iface) {
1059             if (iface->ofp_port >= 0) {
1060                 VLOG_WARN("bridge %s: interface %s reported twice",
1061                           br->name, ofproto_port.name);
1062             } else if (iface_from_ofp_port(br, ofproto_port.ofp_port)) {
1063                 VLOG_WARN("bridge %s: interface %"PRIu16" reported twice",
1064                           br->name, ofproto_port.ofp_port);
1065             } else {
1066                 iface_set_ofp_port(iface, ofproto_port.ofp_port);
1067             }
1068         }
1069     }
1070 }
1071
1072 /* Add an ofproto port for any "struct iface" that doesn't have one.
1073  * Delete any "struct iface" for which this fails.
1074  * Delete any "struct port" that thereby ends up with no ifaces. */
1075 static void
1076 bridge_add_ofproto_ports(struct bridge *br)
1077 {
1078     struct port *port, *next_port;
1079
1080     HMAP_FOR_EACH_SAFE (port, next_port, hmap_node, &br->ports) {
1081         struct iface *iface, *next_iface;
1082         struct ofproto_port ofproto_port;
1083
1084         LIST_FOR_EACH_SAFE (iface, next_iface, port_elem, &port->ifaces) {
1085             int error;
1086
1087             /* Open the netdev. */
1088             if (!iface->netdev) {
1089                 error = netdev_open(iface->name, iface->type, &iface->netdev);
1090                 if (error) {
1091                     VLOG_WARN("could not open network device %s (%s)",
1092                               iface->name, strerror(error));
1093                 }
1094             } else {
1095                 error = 0;
1096             }
1097
1098             /* Configure the netdev. */
1099             if (iface->netdev) {
1100                 struct shash args;
1101
1102                 shash_init(&args);
1103                 shash_from_ovs_idl_map(iface->cfg->key_options,
1104                                        iface->cfg->value_options,
1105                                        iface->cfg->n_options, &args);
1106                 error = netdev_set_config(iface->netdev, &args);
1107                 shash_destroy(&args);
1108
1109                 if (error) {
1110                     VLOG_WARN("could not configure network device %s (%s)",
1111                               iface->name, strerror(error));
1112                     netdev_close(iface->netdev);
1113                     iface->netdev = NULL;
1114                 }
1115             }
1116
1117             /* Add the port, if necessary. */
1118             if (iface->netdev && iface->ofp_port < 0) {
1119                 uint16_t ofp_port;
1120                 int error;
1121
1122                 error = ofproto_port_add(br->ofproto, iface->netdev,
1123                                          &ofp_port);
1124                 if (!error) {
1125                     iface_set_ofp_port(iface, ofp_port);
1126                 } else {
1127                     netdev_close(iface->netdev);
1128                     iface->netdev = NULL;
1129                 }
1130             }
1131
1132             /* Populate stats columns in new Interface rows. */
1133             if (iface->netdev && !iface->cfg->mtu) {
1134                 iface_refresh_stats(iface);
1135                 iface_refresh_status(iface);
1136             }
1137
1138             /* Delete the iface if we failed. */
1139             if (iface->netdev && iface->ofp_port >= 0) {
1140                 VLOG_DBG("bridge %s: interface %s is on port %d",
1141                          br->name, iface->name, iface->ofp_port);
1142             } else {
1143                 if (iface->netdev) {
1144                     VLOG_ERR("bridge %s: missing %s interface, dropping",
1145                              br->name, iface->name);
1146                 } else {
1147                     /* We already reported a related error, don't bother
1148                      * duplicating it. */
1149                 }
1150                 iface_clear_db_record(iface->cfg);
1151                 iface_destroy(iface);
1152             }
1153         }
1154         if (list_is_empty(&port->ifaces)) {
1155             VLOG_WARN("%s port has no interfaces, dropping", port->name);
1156             port_destroy(port);
1157             continue;
1158         }
1159
1160         /* Add bond fake iface if necessary. */
1161         if (port_is_bond_fake_iface(port)) {
1162             if (ofproto_port_query_by_name(br->ofproto, port->name,
1163                                            &ofproto_port)) {
1164                 struct netdev *netdev;
1165                 int error;
1166
1167                 error = netdev_open(port->name, "internal", &netdev);
1168                 if (!error) {
1169                     ofproto_port_add(br->ofproto, netdev, NULL);
1170                     netdev_close(netdev);
1171                 } else {
1172                     VLOG_WARN("could not open network device %s (%s)",
1173                               port->name, strerror(error));
1174                 }
1175             } else {
1176                 /* Already exists, nothing to do. */
1177                 ofproto_port_destroy(&ofproto_port);
1178             }
1179         }
1180     }
1181 }
1182
1183 static const char *
1184 get_ovsrec_key_value(const struct ovsdb_idl_row *row,
1185                      const struct ovsdb_idl_column *column,
1186                      const char *key)
1187 {
1188     const struct ovsdb_datum *datum;
1189     union ovsdb_atom atom;
1190     unsigned int idx;
1191
1192     datum = ovsdb_idl_get(row, column, OVSDB_TYPE_STRING, OVSDB_TYPE_STRING);
1193     atom.string = (char *) key;
1194     idx = ovsdb_datum_find_key(datum, &atom, OVSDB_TYPE_STRING);
1195     return idx == UINT_MAX ? NULL : datum->values[idx].string;
1196 }
1197
1198 static const char *
1199 bridge_get_other_config(const struct ovsrec_bridge *br_cfg, const char *key)
1200 {
1201     return get_ovsrec_key_value(&br_cfg->header_,
1202                                 &ovsrec_bridge_col_other_config, key);
1203 }
1204
1205 /* Set Flow eviction threshold */
1206 static void
1207 bridge_configure_flow_eviction_threshold(struct bridge *br)
1208 {
1209     const char *threshold_str;
1210     unsigned threshold;
1211
1212     threshold_str = bridge_get_other_config(br->cfg, "flow-eviction-threshold");
1213     if (threshold_str) {
1214         threshold = strtoul(threshold_str, NULL, 10);
1215     } else {
1216         threshold = OFPROTO_FLOW_EVICTON_THRESHOLD_DEFAULT;
1217     }
1218     ofproto_set_flow_eviction_threshold(br->ofproto, threshold);
1219 }
1220
1221 /* Set forward BPDU option. */
1222 static void
1223 bridge_configure_forward_bpdu(struct bridge *br)
1224 {
1225     const char *forward_bpdu_str;
1226     bool forward_bpdu = false;
1227
1228     forward_bpdu_str = bridge_get_other_config(br->cfg, "forward-bpdu");
1229     if (forward_bpdu_str && !strcmp(forward_bpdu_str, "true")) {
1230         forward_bpdu = true;
1231     }
1232     ofproto_set_forward_bpdu(br->ofproto, forward_bpdu);
1233 }
1234
1235 static void
1236 bridge_pick_local_hw_addr(struct bridge *br, uint8_t ea[ETH_ADDR_LEN],
1237                           struct iface **hw_addr_iface)
1238 {
1239     struct hmapx mirror_output_ports;
1240     const char *hwaddr;
1241     struct port *port;
1242     bool found_addr = false;
1243     int error;
1244     int i;
1245
1246     *hw_addr_iface = NULL;
1247
1248     /* Did the user request a particular MAC? */
1249     hwaddr = bridge_get_other_config(br->cfg, "hwaddr");
1250     if (hwaddr && eth_addr_from_string(hwaddr, ea)) {
1251         if (eth_addr_is_multicast(ea)) {
1252             VLOG_ERR("bridge %s: cannot set MAC address to multicast "
1253                      "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
1254         } else if (eth_addr_is_zero(ea)) {
1255             VLOG_ERR("bridge %s: cannot set MAC address to zero", br->name);
1256         } else {
1257             return;
1258         }
1259     }
1260
1261     /* Mirror output ports don't participate in picking the local hardware
1262      * address.  ofproto can't help us find out whether a given port is a
1263      * mirror output because we haven't configured mirrors yet, so we need to
1264      * accumulate them ourselves. */
1265     hmapx_init(&mirror_output_ports);
1266     for (i = 0; i < br->cfg->n_mirrors; i++) {
1267         struct ovsrec_mirror *m = br->cfg->mirrors[i];
1268         if (m->output_port) {
1269             hmapx_add(&mirror_output_ports, m->output_port);
1270         }
1271     }
1272
1273     /* Otherwise choose the minimum non-local MAC address among all of the
1274      * interfaces. */
1275     HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1276         uint8_t iface_ea[ETH_ADDR_LEN];
1277         struct iface *candidate;
1278         struct iface *iface;
1279
1280         /* Mirror output ports don't participate. */
1281         if (hmapx_contains(&mirror_output_ports, port->cfg)) {
1282             continue;
1283         }
1284
1285         /* Choose the MAC address to represent the port. */
1286         iface = NULL;
1287         if (port->cfg->mac && eth_addr_from_string(port->cfg->mac, iface_ea)) {
1288             /* Find the interface with this Ethernet address (if any) so that
1289              * we can provide the correct devname to the caller. */
1290             LIST_FOR_EACH (candidate, port_elem, &port->ifaces) {
1291                 uint8_t candidate_ea[ETH_ADDR_LEN];
1292                 if (!netdev_get_etheraddr(candidate->netdev, candidate_ea)
1293                     && eth_addr_equals(iface_ea, candidate_ea)) {
1294                     iface = candidate;
1295                 }
1296             }
1297         } else {
1298             /* Choose the interface whose MAC address will represent the port.
1299              * The Linux kernel bonding code always chooses the MAC address of
1300              * the first slave added to a bond, and the Fedora networking
1301              * scripts always add slaves to a bond in alphabetical order, so
1302              * for compatibility we choose the interface with the name that is
1303              * first in alphabetical order. */
1304             LIST_FOR_EACH (candidate, port_elem, &port->ifaces) {
1305                 if (!iface || strcmp(candidate->name, iface->name) < 0) {
1306                     iface = candidate;
1307                 }
1308             }
1309
1310             /* The local port doesn't count (since we're trying to choose its
1311              * MAC address anyway). */
1312             if (iface->ofp_port == OFPP_LOCAL) {
1313                 continue;
1314             }
1315
1316             /* Grab MAC. */
1317             error = netdev_get_etheraddr(iface->netdev, iface_ea);
1318             if (error) {
1319                 continue;
1320             }
1321         }
1322
1323         /* Compare against our current choice. */
1324         if (!eth_addr_is_multicast(iface_ea) &&
1325             !eth_addr_is_local(iface_ea) &&
1326             !eth_addr_is_reserved(iface_ea) &&
1327             !eth_addr_is_zero(iface_ea) &&
1328             (!found_addr || eth_addr_compare_3way(iface_ea, ea) < 0))
1329         {
1330             memcpy(ea, iface_ea, ETH_ADDR_LEN);
1331             *hw_addr_iface = iface;
1332             found_addr = true;
1333         }
1334     }
1335     if (found_addr) {
1336         VLOG_DBG("bridge %s: using bridge Ethernet address "ETH_ADDR_FMT,
1337                  br->name, ETH_ADDR_ARGS(ea));
1338     } else {
1339         memcpy(ea, br->default_ea, ETH_ADDR_LEN);
1340         *hw_addr_iface = NULL;
1341         VLOG_WARN("bridge %s: using default bridge Ethernet "
1342                   "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
1343     }
1344
1345     hmapx_destroy(&mirror_output_ports);
1346 }
1347
1348 /* Choose and returns the datapath ID for bridge 'br' given that the bridge
1349  * Ethernet address is 'bridge_ea'.  If 'bridge_ea' is the Ethernet address of
1350  * an interface on 'br', then that interface must be passed in as
1351  * 'hw_addr_iface'; if 'bridge_ea' was derived some other way, then
1352  * 'hw_addr_iface' must be passed in as a null pointer. */
1353 static uint64_t
1354 bridge_pick_datapath_id(struct bridge *br,
1355                         const uint8_t bridge_ea[ETH_ADDR_LEN],
1356                         struct iface *hw_addr_iface)
1357 {
1358     /*
1359      * The procedure for choosing a bridge MAC address will, in the most
1360      * ordinary case, also choose a unique MAC that we can use as a datapath
1361      * ID.  In some special cases, though, multiple bridges will end up with
1362      * the same MAC address.  This is OK for the bridges, but it will confuse
1363      * the OpenFlow controller, because each datapath needs a unique datapath
1364      * ID.
1365      *
1366      * Datapath IDs must be unique.  It is also very desirable that they be
1367      * stable from one run to the next, so that policy set on a datapath
1368      * "sticks".
1369      */
1370     const char *datapath_id;
1371     uint64_t dpid;
1372
1373     datapath_id = bridge_get_other_config(br->cfg, "datapath-id");
1374     if (datapath_id && dpid_from_string(datapath_id, &dpid)) {
1375         return dpid;
1376     }
1377
1378     if (hw_addr_iface) {
1379         int vlan;
1380         if (!netdev_get_vlan_vid(hw_addr_iface->netdev, &vlan)) {
1381             /*
1382              * A bridge whose MAC address is taken from a VLAN network device
1383              * (that is, a network device created with vconfig(8) or similar
1384              * tool) will have the same MAC address as a bridge on the VLAN
1385              * device's physical network device.
1386              *
1387              * Handle this case by hashing the physical network device MAC
1388              * along with the VLAN identifier.
1389              */
1390             uint8_t buf[ETH_ADDR_LEN + 2];
1391             memcpy(buf, bridge_ea, ETH_ADDR_LEN);
1392             buf[ETH_ADDR_LEN] = vlan >> 8;
1393             buf[ETH_ADDR_LEN + 1] = vlan;
1394             return dpid_from_hash(buf, sizeof buf);
1395         } else {
1396             /*
1397              * Assume that this bridge's MAC address is unique, since it
1398              * doesn't fit any of the cases we handle specially.
1399              */
1400         }
1401     } else {
1402         /*
1403          * A purely internal bridge, that is, one that has no non-virtual
1404          * network devices on it at all, is more difficult because it has no
1405          * natural unique identifier at all.
1406          *
1407          * When the host is a XenServer, we handle this case by hashing the
1408          * host's UUID with the name of the bridge.  Names of bridges are
1409          * persistent across XenServer reboots, although they can be reused if
1410          * an internal network is destroyed and then a new one is later
1411          * created, so this is fairly effective.
1412          *
1413          * When the host is not a XenServer, we punt by using a random MAC
1414          * address on each run.
1415          */
1416         const char *host_uuid = xenserver_get_host_uuid();
1417         if (host_uuid) {
1418             char *combined = xasprintf("%s,%s", host_uuid, br->name);
1419             dpid = dpid_from_hash(combined, strlen(combined));
1420             free(combined);
1421             return dpid;
1422         }
1423     }
1424
1425     return eth_addr_to_uint64(bridge_ea);
1426 }
1427
1428 static uint64_t
1429 dpid_from_hash(const void *data, size_t n)
1430 {
1431     uint8_t hash[SHA1_DIGEST_SIZE];
1432
1433     BUILD_ASSERT_DECL(sizeof hash >= ETH_ADDR_LEN);
1434     sha1_bytes(data, n, hash);
1435     eth_addr_mark_random(hash);
1436     return eth_addr_to_uint64(hash);
1437 }
1438
1439 static void
1440 iface_refresh_status(struct iface *iface)
1441 {
1442     struct shash sh;
1443
1444     enum netdev_flags flags;
1445     uint32_t current;
1446     int64_t bps;
1447     int mtu;
1448     int64_t mtu_64;
1449     int error;
1450
1451     if (iface_is_synthetic(iface)) {
1452         return;
1453     }
1454
1455     shash_init(&sh);
1456
1457     if (!netdev_get_status(iface->netdev, &sh)) {
1458         size_t n;
1459         char **keys, **values;
1460
1461         shash_to_ovs_idl_map(&sh, &keys, &values, &n);
1462         ovsrec_interface_set_status(iface->cfg, keys, values, n);
1463
1464         free(keys);
1465         free(values);
1466     } else {
1467         ovsrec_interface_set_status(iface->cfg, NULL, NULL, 0);
1468     }
1469
1470     shash_destroy_free_data(&sh);
1471
1472     error = netdev_get_flags(iface->netdev, &flags);
1473     if (!error) {
1474         ovsrec_interface_set_admin_state(iface->cfg, flags & NETDEV_UP ? "up" : "down");
1475     }
1476     else {
1477         ovsrec_interface_set_admin_state(iface->cfg, NULL);
1478     }
1479
1480     error = netdev_get_features(iface->netdev, &current, NULL, NULL, NULL);
1481     if (!error) {
1482         ovsrec_interface_set_duplex(iface->cfg,
1483                                     netdev_features_is_full_duplex(current)
1484                                     ? "full" : "half");
1485         /* warning: uint64_t -> int64_t conversion */
1486         bps = netdev_features_to_bps(current);
1487         ovsrec_interface_set_link_speed(iface->cfg, &bps, 1);
1488     }
1489     else {
1490         ovsrec_interface_set_duplex(iface->cfg, NULL);
1491         ovsrec_interface_set_link_speed(iface->cfg, NULL, 0);
1492     }
1493
1494     error = netdev_get_mtu(iface->netdev, &mtu);
1495     if (!error) {
1496         mtu_64 = mtu;
1497         ovsrec_interface_set_mtu(iface->cfg, &mtu_64, 1);
1498     }
1499     else {
1500         ovsrec_interface_set_mtu(iface->cfg, NULL, 0);
1501     }
1502 }
1503
1504 /* Writes 'iface''s CFM statistics to the database. */
1505 static void
1506 iface_refresh_cfm_stats(struct iface *iface)
1507 {
1508     const struct ovsrec_interface *cfg = iface->cfg;
1509     int fault, error;
1510     const uint64_t *rmps;
1511     size_t n_rmps;
1512
1513     if (iface_is_synthetic(iface)) {
1514         return;
1515     }
1516
1517     fault = ofproto_port_get_cfm_fault(iface->port->bridge->ofproto,
1518                                        iface->ofp_port);
1519     if (fault >= 0) {
1520         bool fault_bool = fault;
1521         ovsrec_interface_set_cfm_fault(cfg, &fault_bool, 1);
1522     } else {
1523         ovsrec_interface_set_cfm_fault(cfg, NULL, 0);
1524     }
1525
1526     error = ofproto_port_get_cfm_remote_mpids(iface->port->bridge->ofproto,
1527                                               iface->ofp_port, &rmps, &n_rmps);
1528     if (error >= 0) {
1529         ovsrec_interface_set_cfm_remote_mpids(cfg, (const int64_t *)rmps,
1530                                               n_rmps);
1531     } else {
1532         ovsrec_interface_set_cfm_remote_mpids(cfg, NULL, 0);
1533     }
1534 }
1535
1536 static void
1537 iface_refresh_stats(struct iface *iface)
1538 {
1539 #define IFACE_STATS                             \
1540     IFACE_STAT(rx_packets,      "rx_packets")   \
1541     IFACE_STAT(tx_packets,      "tx_packets")   \
1542     IFACE_STAT(rx_bytes,        "rx_bytes")     \
1543     IFACE_STAT(tx_bytes,        "tx_bytes")     \
1544     IFACE_STAT(rx_dropped,      "rx_dropped")   \
1545     IFACE_STAT(tx_dropped,      "tx_dropped")   \
1546     IFACE_STAT(rx_errors,       "rx_errors")    \
1547     IFACE_STAT(tx_errors,       "tx_errors")    \
1548     IFACE_STAT(rx_frame_errors, "rx_frame_err") \
1549     IFACE_STAT(rx_over_errors,  "rx_over_err")  \
1550     IFACE_STAT(rx_crc_errors,   "rx_crc_err")   \
1551     IFACE_STAT(collisions,      "collisions")
1552
1553 #define IFACE_STAT(MEMBER, NAME) NAME,
1554     static char *keys[] = { IFACE_STATS };
1555 #undef IFACE_STAT
1556     int64_t values[ARRAY_SIZE(keys)];
1557     int i;
1558
1559     struct netdev_stats stats;
1560
1561     if (iface_is_synthetic(iface)) {
1562         return;
1563     }
1564
1565     /* Intentionally ignore return value, since errors will set 'stats' to
1566      * all-1s, and we will deal with that correctly below. */
1567     netdev_get_stats(iface->netdev, &stats);
1568
1569     /* Copy statistics into values[] array. */
1570     i = 0;
1571 #define IFACE_STAT(MEMBER, NAME) values[i++] = stats.MEMBER;
1572     IFACE_STATS;
1573 #undef IFACE_STAT
1574     assert(i == ARRAY_SIZE(keys));
1575
1576     ovsrec_interface_set_statistics(iface->cfg, keys, values, ARRAY_SIZE(keys));
1577 #undef IFACE_STATS
1578 }
1579
1580 static void
1581 br_refresh_stp_status(struct bridge *br)
1582 {
1583     struct ofproto *ofproto = br->ofproto;
1584     struct ofproto_stp_status status;
1585     char *keys[3], *values[3];
1586     size_t i;
1587
1588     if (ofproto_get_stp_status(ofproto, &status)) {
1589         return;
1590     }
1591
1592     if (!status.enabled) {
1593         ovsrec_bridge_set_status(br->cfg, NULL, NULL, 0);
1594         return;
1595     }
1596
1597     keys[0] = "stp_bridge_id",
1598     values[0] = xasprintf(STP_ID_FMT, STP_ID_ARGS(status.bridge_id));
1599     keys[1] = "stp_designated_root",
1600     values[1] = xasprintf(STP_ID_FMT, STP_ID_ARGS(status.designated_root));
1601     keys[2] = "stp_root_path_cost",
1602     values[2] = xasprintf("%d", status.root_path_cost);
1603
1604     ovsrec_bridge_set_status(br->cfg, keys, values, ARRAY_SIZE(values));
1605
1606     for (i = 0; i < ARRAY_SIZE(values); i++) {
1607         free(values[i]);
1608     }
1609 }
1610
1611 static void
1612 port_refresh_stp_status(struct port *port)
1613 {
1614     struct ofproto *ofproto = port->bridge->ofproto;
1615     struct iface *iface;
1616     struct ofproto_port_stp_status status;
1617     char *keys[4];
1618     char *str_values[4];
1619     int64_t int_values[3];
1620     size_t i;
1621
1622     if (port_is_synthetic(port)) {
1623         return;
1624     }
1625
1626     /* STP doesn't currently support bonds. */
1627     if (!list_is_singleton(&port->ifaces)) {
1628         ovsrec_port_set_status(port->cfg, NULL, NULL, 0);
1629         return;
1630     }
1631
1632     iface = CONTAINER_OF(list_front(&port->ifaces), struct iface, port_elem);
1633
1634     if (ofproto_port_get_stp_status(ofproto, iface->ofp_port, &status)) {
1635         return;
1636     }
1637
1638     if (!status.enabled) {
1639         ovsrec_port_set_status(port->cfg, NULL, NULL, 0);
1640         ovsrec_port_set_statistics(port->cfg, NULL, NULL, 0);
1641         return;
1642     }
1643
1644     /* Set Status column. */
1645     keys[0] = "stp_port_id";
1646     str_values[0] = xasprintf(STP_PORT_ID_FMT, status.port_id);
1647     keys[1] = "stp_state";
1648     str_values[1] = xstrdup(stp_state_name(status.state));
1649     keys[2] = "stp_sec_in_state";
1650     str_values[2] = xasprintf("%u", status.sec_in_state);
1651     keys[3] = "stp_role";
1652     str_values[3] = xstrdup(stp_role_name(status.role));
1653
1654     ovsrec_port_set_status(port->cfg, keys, str_values,
1655                            ARRAY_SIZE(str_values));
1656
1657     for (i = 0; i < ARRAY_SIZE(str_values); i++) {
1658         free(str_values[i]);
1659     }
1660
1661     /* Set Statistics column. */
1662     keys[0] = "stp_tx_count";
1663     int_values[0] = status.tx_count;
1664     keys[1] = "stp_rx_count";
1665     int_values[1] = status.rx_count;
1666     keys[2] = "stp_error_count";
1667     int_values[2] = status.error_count;
1668
1669     ovsrec_port_set_statistics(port->cfg, keys, int_values,
1670                                ARRAY_SIZE(int_values));
1671 }
1672
1673 static bool
1674 enable_system_stats(const struct ovsrec_open_vswitch *cfg)
1675 {
1676     const char *enable;
1677
1678     /* Use other-config:enable-system-stats by preference. */
1679     enable = get_ovsrec_key_value(&cfg->header_,
1680                                   &ovsrec_open_vswitch_col_other_config,
1681                                   "enable-statistics");
1682     if (enable) {
1683         return !strcmp(enable, "true");
1684     }
1685
1686     /* Disable by default. */
1687     return false;
1688 }
1689
1690 static void
1691 refresh_system_stats(const struct ovsrec_open_vswitch *cfg)
1692 {
1693     struct ovsdb_datum datum;
1694     struct shash stats;
1695
1696     shash_init(&stats);
1697     if (enable_system_stats(cfg)) {
1698         get_system_stats(&stats);
1699     }
1700
1701     ovsdb_datum_from_shash(&datum, &stats);
1702     ovsdb_idl_txn_write(&cfg->header_, &ovsrec_open_vswitch_col_statistics,
1703                         &datum);
1704 }
1705
1706 static inline const char *
1707 nx_role_to_str(enum nx_role role)
1708 {
1709     switch (role) {
1710     case NX_ROLE_OTHER:
1711         return "other";
1712     case NX_ROLE_MASTER:
1713         return "master";
1714     case NX_ROLE_SLAVE:
1715         return "slave";
1716     default:
1717         return "*** INVALID ROLE ***";
1718     }
1719 }
1720
1721 static void
1722 refresh_controller_status(void)
1723 {
1724     struct bridge *br;
1725     struct shash info;
1726     const struct ovsrec_controller *cfg;
1727
1728     shash_init(&info);
1729
1730     /* Accumulate status for controllers on all bridges. */
1731     HMAP_FOR_EACH (br, node, &all_bridges) {
1732         ofproto_get_ofproto_controller_info(br->ofproto, &info);
1733     }
1734
1735     /* Update each controller in the database with current status. */
1736     OVSREC_CONTROLLER_FOR_EACH(cfg, idl) {
1737         struct ofproto_controller_info *cinfo =
1738             shash_find_data(&info, cfg->target);
1739
1740         if (cinfo) {
1741             ovsrec_controller_set_is_connected(cfg, cinfo->is_connected);
1742             ovsrec_controller_set_role(cfg, nx_role_to_str(cinfo->role));
1743             ovsrec_controller_set_status(cfg, (char **) cinfo->pairs.keys,
1744                                          (char **) cinfo->pairs.values,
1745                                          cinfo->pairs.n);
1746         } else {
1747             ovsrec_controller_set_is_connected(cfg, false);
1748             ovsrec_controller_set_role(cfg, NULL);
1749             ovsrec_controller_set_status(cfg, NULL, NULL, 0);
1750         }
1751     }
1752
1753     ofproto_free_ofproto_controller_info(&info);
1754 }
1755
1756 static void
1757 refresh_cfm_stats(void)
1758 {
1759     static struct ovsdb_idl_txn *txn = NULL;
1760
1761     if (!txn) {
1762         struct bridge *br;
1763
1764         txn = ovsdb_idl_txn_create(idl);
1765
1766         HMAP_FOR_EACH (br, node, &all_bridges) {
1767             struct iface *iface;
1768
1769             HMAP_FOR_EACH (iface, name_node, &br->iface_by_name) {
1770                 iface_refresh_cfm_stats(iface);
1771             }
1772         }
1773     }
1774
1775     if (ovsdb_idl_txn_commit(txn) != TXN_INCOMPLETE) {
1776         ovsdb_idl_txn_destroy(txn);
1777         txn = NULL;
1778     }
1779 }
1780
1781 /* Performs periodic activity required by bridges that needs to be done with
1782  * the least possible latency.
1783  *
1784  * It makes sense to call this function a couple of times per poll loop, to
1785  * provide a significant performance boost on some benchmarks with ofprotos
1786  * that use the ofproto-dpif implementation. */
1787 void
1788 bridge_run_fast(void)
1789 {
1790     struct bridge *br;
1791
1792     HMAP_FOR_EACH (br, node, &all_bridges) {
1793         ofproto_run_fast(br->ofproto);
1794     }
1795 }
1796
1797 void
1798 bridge_run(void)
1799 {
1800     const struct ovsrec_open_vswitch *cfg;
1801
1802     bool database_changed;
1803     struct bridge *br;
1804
1805     /* (Re)configure if necessary. */
1806     database_changed = ovsdb_idl_run(idl);
1807     if (ovsdb_idl_is_lock_contended(idl)) {
1808         static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
1809         struct bridge *br, *next_br;
1810
1811         VLOG_ERR_RL(&rl, "another ovs-vswitchd process is running, "
1812                     "disabling this process until it goes away");
1813
1814         HMAP_FOR_EACH_SAFE (br, next_br, node, &all_bridges) {
1815             bridge_destroy(br);
1816         }
1817         return;
1818     } else if (!ovsdb_idl_has_lock(idl)) {
1819         return;
1820     }
1821     cfg = ovsrec_open_vswitch_first(idl);
1822
1823     /* Let each bridge do the work that it needs to do. */
1824     HMAP_FOR_EACH (br, node, &all_bridges) {
1825         ofproto_run(br->ofproto);
1826     }
1827
1828     /* Re-configure SSL.  We do this on every trip through the main loop,
1829      * instead of just when the database changes, because the contents of the
1830      * key and certificate files can change without the database changing.
1831      *
1832      * We do this before bridge_reconfigure() because that function might
1833      * initiate SSL connections and thus requires SSL to be configured. */
1834     if (cfg && cfg->ssl) {
1835         const struct ovsrec_ssl *ssl = cfg->ssl;
1836
1837         stream_ssl_set_key_and_cert(ssl->private_key, ssl->certificate);
1838         stream_ssl_set_ca_cert_file(ssl->ca_cert, ssl->bootstrap_ca_cert);
1839     }
1840
1841     if (database_changed) {
1842         if (cfg) {
1843             struct ovsdb_idl_txn *txn = ovsdb_idl_txn_create(idl);
1844
1845             bridge_reconfigure(cfg);
1846
1847             ovsrec_open_vswitch_set_cur_cfg(cfg, cfg->next_cfg);
1848             ovsdb_idl_txn_commit(txn);
1849             ovsdb_idl_txn_destroy(txn); /* XXX */
1850         } else {
1851             /* We still need to reconfigure to avoid dangling pointers to
1852              * now-destroyed ovsrec structures inside bridge data. */
1853             static const struct ovsrec_open_vswitch null_cfg;
1854
1855             bridge_reconfigure(&null_cfg);
1856         }
1857     }
1858
1859     /* Refresh system and interface stats if necessary. */
1860     if (time_msec() >= stats_timer) {
1861         if (cfg) {
1862             struct ovsdb_idl_txn *txn;
1863
1864             txn = ovsdb_idl_txn_create(idl);
1865             HMAP_FOR_EACH (br, node, &all_bridges) {
1866                 struct port *port;
1867
1868                 HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1869                     struct iface *iface;
1870
1871                     LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
1872                         iface_refresh_stats(iface);
1873                         iface_refresh_status(iface);
1874                     }
1875                 }
1876             }
1877             refresh_system_stats(cfg);
1878             refresh_controller_status();
1879             ovsdb_idl_txn_commit(txn);
1880             ovsdb_idl_txn_destroy(txn); /* XXX */
1881         }
1882
1883         stats_timer = time_msec() + STATS_INTERVAL;
1884     }
1885
1886     if (time_msec() >= db_limiter) {
1887         struct ovsdb_idl_txn *txn;
1888
1889         txn = ovsdb_idl_txn_create(idl);
1890         HMAP_FOR_EACH (br, node, &all_bridges) {
1891             struct iface *iface;
1892             struct port *port;
1893
1894             br_refresh_stp_status(br);
1895
1896             HMAP_FOR_EACH (port, hmap_node, &br->ports) {
1897                 port_refresh_stp_status(port);
1898             }
1899
1900             HMAP_FOR_EACH (iface, name_node, &br->iface_by_name) {
1901                 const char *link_state;
1902                 int64_t link_resets;
1903                 int current;
1904
1905                 if (iface_is_synthetic(iface)) {
1906                     continue;
1907                 }
1908
1909                 current = ofproto_port_is_lacp_current(br->ofproto,
1910                                                        iface->ofp_port);
1911                 if (current >= 0) {
1912                     bool bl = current;
1913                     ovsrec_interface_set_lacp_current(iface->cfg, &bl, 1);
1914                 } else {
1915                     ovsrec_interface_set_lacp_current(iface->cfg, NULL, 0);
1916                 }
1917
1918                 link_state = netdev_get_carrier(iface->netdev) ? "up" : "down";
1919                 ovsrec_interface_set_link_state(iface->cfg, link_state);
1920
1921                 link_resets = netdev_get_carrier_resets(iface->netdev);
1922                 ovsrec_interface_set_link_resets(iface->cfg, &link_resets, 1);
1923             }
1924         }
1925
1926         if (ovsdb_idl_txn_commit(txn) != TXN_UNCHANGED) {
1927             db_limiter = time_msec() + DB_LIMIT_INTERVAL;
1928         }
1929         ovsdb_idl_txn_destroy(txn);
1930     }
1931
1932     refresh_cfm_stats();
1933 }
1934
1935 void
1936 bridge_wait(void)
1937 {
1938     ovsdb_idl_wait(idl);
1939     if (!hmap_is_empty(&all_bridges)) {
1940         struct bridge *br;
1941
1942         HMAP_FOR_EACH (br, node, &all_bridges) {
1943             ofproto_wait(br->ofproto);
1944         }
1945         poll_timer_wait_until(stats_timer);
1946
1947         if (db_limiter > time_msec()) {
1948             poll_timer_wait_until(db_limiter);
1949         }
1950     }
1951 }
1952 \f
1953 /* QoS unixctl user interface functions. */
1954
1955 struct qos_unixctl_show_cbdata {
1956     struct ds *ds;
1957     struct iface *iface;
1958 };
1959
1960 static void
1961 qos_unixctl_show_cb(unsigned int queue_id,
1962                     const struct shash *details,
1963                     void *aux)
1964 {
1965     struct qos_unixctl_show_cbdata *data = aux;
1966     struct ds *ds = data->ds;
1967     struct iface *iface = data->iface;
1968     struct netdev_queue_stats stats;
1969     struct shash_node *node;
1970     int error;
1971
1972     ds_put_cstr(ds, "\n");
1973     if (queue_id) {
1974         ds_put_format(ds, "Queue %u:\n", queue_id);
1975     } else {
1976         ds_put_cstr(ds, "Default:\n");
1977     }
1978
1979     SHASH_FOR_EACH (node, details) {
1980         ds_put_format(ds, "\t%s: %s\n", node->name, (char *)node->data);
1981     }
1982
1983     error = netdev_get_queue_stats(iface->netdev, queue_id, &stats);
1984     if (!error) {
1985         if (stats.tx_packets != UINT64_MAX) {
1986             ds_put_format(ds, "\ttx_packets: %"PRIu64"\n", stats.tx_packets);
1987         }
1988
1989         if (stats.tx_bytes != UINT64_MAX) {
1990             ds_put_format(ds, "\ttx_bytes: %"PRIu64"\n", stats.tx_bytes);
1991         }
1992
1993         if (stats.tx_errors != UINT64_MAX) {
1994             ds_put_format(ds, "\ttx_errors: %"PRIu64"\n", stats.tx_errors);
1995         }
1996     } else {
1997         ds_put_format(ds, "\tFailed to get statistics for queue %u: %s",
1998                       queue_id, strerror(error));
1999     }
2000 }
2001
2002 static void
2003 qos_unixctl_show(struct unixctl_conn *conn,
2004                  const char *args, void *aux OVS_UNUSED)
2005 {
2006     struct ds ds = DS_EMPTY_INITIALIZER;
2007     struct shash sh = SHASH_INITIALIZER(&sh);
2008     struct iface *iface;
2009     const char *type;
2010     struct shash_node *node;
2011     struct qos_unixctl_show_cbdata data;
2012     int error;
2013
2014     iface = iface_find(args);
2015     if (!iface) {
2016         unixctl_command_reply(conn, 501, "no such interface");
2017         return;
2018     }
2019
2020     netdev_get_qos(iface->netdev, &type, &sh);
2021
2022     if (*type != '\0') {
2023         ds_put_format(&ds, "QoS: %s %s\n", iface->name, type);
2024
2025         SHASH_FOR_EACH (node, &sh) {
2026             ds_put_format(&ds, "%s: %s\n", node->name, (char *)node->data);
2027         }
2028
2029         data.ds = &ds;
2030         data.iface = iface;
2031         error = netdev_dump_queues(iface->netdev, qos_unixctl_show_cb, &data);
2032
2033         if (error) {
2034             ds_put_format(&ds, "failed to dump queues: %s", strerror(error));
2035         }
2036         unixctl_command_reply(conn, 200, ds_cstr(&ds));
2037     } else {
2038         ds_put_format(&ds, "QoS not configured on %s\n", iface->name);
2039         unixctl_command_reply(conn, 501, ds_cstr(&ds));
2040     }
2041
2042     shash_destroy_free_data(&sh);
2043     ds_destroy(&ds);
2044 }
2045 \f
2046 /* Bridge reconfiguration functions. */
2047 static void
2048 bridge_create(const struct ovsrec_bridge *br_cfg)
2049 {
2050     struct bridge *br;
2051
2052     assert(!bridge_lookup(br_cfg->name));
2053     br = xzalloc(sizeof *br);
2054
2055     br->name = xstrdup(br_cfg->name);
2056     br->type = xstrdup(ofproto_normalize_type(br_cfg->datapath_type));
2057     br->cfg = br_cfg;
2058
2059     /* Derive the default Ethernet address from the bridge's UUID.  This should
2060      * be unique and it will be stable between ovs-vswitchd runs.  */
2061     memcpy(br->default_ea, &br_cfg->header_.uuid, ETH_ADDR_LEN);
2062     eth_addr_mark_random(br->default_ea);
2063
2064     hmap_init(&br->ports);
2065     hmap_init(&br->ifaces);
2066     hmap_init(&br->iface_by_name);
2067     hmap_init(&br->mirrors);
2068
2069     hmap_insert(&all_bridges, &br->node, hash_string(br->name, 0));
2070 }
2071
2072 static void
2073 bridge_destroy(struct bridge *br)
2074 {
2075     if (br) {
2076         struct mirror *mirror, *next_mirror;
2077         struct port *port, *next_port;
2078
2079         HMAP_FOR_EACH_SAFE (port, next_port, hmap_node, &br->ports) {
2080             port_destroy(port);
2081         }
2082         HMAP_FOR_EACH_SAFE (mirror, next_mirror, hmap_node, &br->mirrors) {
2083             mirror_destroy(mirror);
2084         }
2085         hmap_remove(&all_bridges, &br->node);
2086         ofproto_destroy(br->ofproto);
2087         hmap_destroy(&br->ifaces);
2088         hmap_destroy(&br->ports);
2089         hmap_destroy(&br->iface_by_name);
2090         hmap_destroy(&br->mirrors);
2091         free(br->name);
2092         free(br->type);
2093         free(br);
2094     }
2095 }
2096
2097 static struct bridge *
2098 bridge_lookup(const char *name)
2099 {
2100     struct bridge *br;
2101
2102     HMAP_FOR_EACH_WITH_HASH (br, node, hash_string(name, 0), &all_bridges) {
2103         if (!strcmp(br->name, name)) {
2104             return br;
2105         }
2106     }
2107     return NULL;
2108 }
2109
2110 /* Handle requests for a listing of all flows known by the OpenFlow
2111  * stack, including those normally hidden. */
2112 static void
2113 bridge_unixctl_dump_flows(struct unixctl_conn *conn,
2114                           const char *args, void *aux OVS_UNUSED)
2115 {
2116     struct bridge *br;
2117     struct ds results;
2118
2119     br = bridge_lookup(args);
2120     if (!br) {
2121         unixctl_command_reply(conn, 501, "Unknown bridge");
2122         return;
2123     }
2124
2125     ds_init(&results);
2126     ofproto_get_all_flows(br->ofproto, &results);
2127
2128     unixctl_command_reply(conn, 200, ds_cstr(&results));
2129     ds_destroy(&results);
2130 }
2131
2132 /* "bridge/reconnect [BRIDGE]": makes BRIDGE drop all of its controller
2133  * connections and reconnect.  If BRIDGE is not specified, then all bridges
2134  * drop their controller connections and reconnect. */
2135 static void
2136 bridge_unixctl_reconnect(struct unixctl_conn *conn,
2137                          const char *args, void *aux OVS_UNUSED)
2138 {
2139     struct bridge *br;
2140     if (args[0] != '\0') {
2141         br = bridge_lookup(args);
2142         if (!br) {
2143             unixctl_command_reply(conn, 501, "Unknown bridge");
2144             return;
2145         }
2146         ofproto_reconnect_controllers(br->ofproto);
2147     } else {
2148         HMAP_FOR_EACH (br, node, &all_bridges) {
2149             ofproto_reconnect_controllers(br->ofproto);
2150         }
2151     }
2152     unixctl_command_reply(conn, 200, NULL);
2153 }
2154
2155 static size_t
2156 bridge_get_controllers(const struct bridge *br,
2157                        struct ovsrec_controller ***controllersp)
2158 {
2159     struct ovsrec_controller **controllers;
2160     size_t n_controllers;
2161
2162     controllers = br->cfg->controller;
2163     n_controllers = br->cfg->n_controller;
2164
2165     if (n_controllers == 1 && !strcmp(controllers[0]->target, "none")) {
2166         controllers = NULL;
2167         n_controllers = 0;
2168     }
2169
2170     if (controllersp) {
2171         *controllersp = controllers;
2172     }
2173     return n_controllers;
2174 }
2175
2176 /* Adds and deletes "struct port"s and "struct iface"s under 'br' to match
2177  * those configured in 'br->cfg'. */
2178 static void
2179 bridge_add_del_ports(struct bridge *br)
2180 {
2181     struct port *port, *next;
2182     struct shash_node *node;
2183     struct shash new_ports;
2184     size_t i;
2185
2186     /* Collect new ports. */
2187     shash_init(&new_ports);
2188     for (i = 0; i < br->cfg->n_ports; i++) {
2189         const char *name = br->cfg->ports[i]->name;
2190         if (!shash_add_once(&new_ports, name, br->cfg->ports[i])) {
2191             VLOG_WARN("bridge %s: %s specified twice as bridge port",
2192                       br->name, name);
2193         }
2194     }
2195     if (bridge_get_controllers(br, NULL)
2196         && !shash_find(&new_ports, br->name)) {
2197         VLOG_WARN("bridge %s: no port named %s, synthesizing one",
2198                   br->name, br->name);
2199
2200         br->synth_local_port.interfaces = &br->synth_local_ifacep;
2201         br->synth_local_port.n_interfaces = 1;
2202         br->synth_local_port.name = br->name;
2203
2204         br->synth_local_iface.name = br->name;
2205         br->synth_local_iface.type = "internal";
2206
2207         br->synth_local_ifacep = &br->synth_local_iface;
2208
2209         shash_add(&new_ports, br->name, &br->synth_local_port);
2210     }
2211
2212     /* Get rid of deleted ports.
2213      * Get rid of deleted interfaces on ports that still exist.
2214      * Update 'cfg' of ports that still exist. */
2215     HMAP_FOR_EACH_SAFE (port, next, hmap_node, &br->ports) {
2216         port->cfg = shash_find_data(&new_ports, port->name);
2217         if (!port->cfg) {
2218             port_destroy(port);
2219         } else {
2220             port_del_ifaces(port);
2221         }
2222     }
2223
2224     /* Create new ports.
2225      * Add new interfaces to existing ports. */
2226     SHASH_FOR_EACH (node, &new_ports) {
2227         struct port *port = port_lookup(br, node->name);
2228         if (!port) {
2229             struct ovsrec_port *cfg = node->data;
2230             port = port_create(br, cfg);
2231         }
2232         port_add_ifaces(port);
2233         if (list_is_empty(&port->ifaces)) {
2234             VLOG_WARN("bridge %s: port %s has no interfaces, dropping",
2235                       br->name, port->name);
2236             port_destroy(port);
2237         }
2238     }
2239     shash_destroy(&new_ports);
2240 }
2241
2242 /* Initializes 'oc' appropriately as a management service controller for
2243  * 'br'.
2244  *
2245  * The caller must free oc->target when it is no longer needed. */
2246 static void
2247 bridge_ofproto_controller_for_mgmt(const struct bridge *br,
2248                                    struct ofproto_controller *oc)
2249 {
2250     oc->target = xasprintf("punix:%s/%s.mgmt", ovs_rundir(), br->name);
2251     oc->max_backoff = 0;
2252     oc->probe_interval = 60;
2253     oc->band = OFPROTO_OUT_OF_BAND;
2254     oc->rate_limit = 0;
2255     oc->burst_limit = 0;
2256 }
2257
2258 /* Converts ovsrec_controller 'c' into an ofproto_controller in 'oc'.  */
2259 static void
2260 bridge_ofproto_controller_from_ovsrec(const struct ovsrec_controller *c,
2261                                       struct ofproto_controller *oc)
2262 {
2263     oc->target = c->target;
2264     oc->max_backoff = c->max_backoff ? *c->max_backoff / 1000 : 8;
2265     oc->probe_interval = c->inactivity_probe ? *c->inactivity_probe / 1000 : 5;
2266     oc->band = (!c->connection_mode || !strcmp(c->connection_mode, "in-band")
2267                 ? OFPROTO_IN_BAND : OFPROTO_OUT_OF_BAND);
2268     oc->rate_limit = c->controller_rate_limit ? *c->controller_rate_limit : 0;
2269     oc->burst_limit = (c->controller_burst_limit
2270                        ? *c->controller_burst_limit : 0);
2271 }
2272
2273 /* Configures the IP stack for 'br''s local interface properly according to the
2274  * configuration in 'c'.  */
2275 static void
2276 bridge_configure_local_iface_netdev(struct bridge *br,
2277                                     struct ovsrec_controller *c)
2278 {
2279     struct netdev *netdev;
2280     struct in_addr mask, gateway;
2281
2282     struct iface *local_iface;
2283     struct in_addr ip;
2284
2285     /* If there's no local interface or no IP address, give up. */
2286     local_iface = iface_from_ofp_port(br, OFPP_LOCAL);
2287     if (!local_iface || !c->local_ip || !inet_aton(c->local_ip, &ip)) {
2288         return;
2289     }
2290
2291     /* Bring up the local interface. */
2292     netdev = local_iface->netdev;
2293     netdev_turn_flags_on(netdev, NETDEV_UP, true);
2294
2295     /* Configure the IP address and netmask. */
2296     if (!c->local_netmask
2297         || !inet_aton(c->local_netmask, &mask)
2298         || !mask.s_addr) {
2299         mask.s_addr = guess_netmask(ip.s_addr);
2300     }
2301     if (!netdev_set_in4(netdev, ip, mask)) {
2302         VLOG_INFO("bridge %s: configured IP address "IP_FMT", netmask "IP_FMT,
2303                   br->name, IP_ARGS(&ip.s_addr), IP_ARGS(&mask.s_addr));
2304     }
2305
2306     /* Configure the default gateway. */
2307     if (c->local_gateway
2308         && inet_aton(c->local_gateway, &gateway)
2309         && gateway.s_addr) {
2310         if (!netdev_add_router(netdev, gateway)) {
2311             VLOG_INFO("bridge %s: configured gateway "IP_FMT,
2312                       br->name, IP_ARGS(&gateway.s_addr));
2313         }
2314     }
2315 }
2316
2317 /* Returns true if 'a' and 'b' are the same except that any number of slashes
2318  * in either string are treated as equal to any number of slashes in the other,
2319  * e.g. "x///y" is equal to "x/y". */
2320 static bool
2321 equal_pathnames(const char *a, const char *b)
2322 {
2323     while (*a == *b) {
2324         if (*a == '/') {
2325             a += strspn(a, "/");
2326             b += strspn(b, "/");
2327         } else if (*a == '\0') {
2328             return true;
2329         } else {
2330             a++;
2331             b++;
2332         }
2333     }
2334     return false;
2335 }
2336
2337 static void
2338 bridge_configure_remotes(struct bridge *br,
2339                          const struct sockaddr_in *managers, size_t n_managers)
2340 {
2341     const char *disable_ib_str, *queue_id_str;
2342     bool disable_in_band = false;
2343     int queue_id;
2344
2345     struct ovsrec_controller **controllers;
2346     size_t n_controllers;
2347
2348     enum ofproto_fail_mode fail_mode;
2349
2350     struct ofproto_controller *ocs;
2351     size_t n_ocs;
2352     size_t i;
2353
2354     /* Check if we should disable in-band control on this bridge. */
2355     disable_ib_str = bridge_get_other_config(br->cfg, "disable-in-band");
2356     if (disable_ib_str && !strcmp(disable_ib_str, "true")) {
2357         disable_in_band = true;
2358     }
2359
2360     /* Set OpenFlow queue ID for in-band control. */
2361     queue_id_str = bridge_get_other_config(br->cfg, "in-band-queue");
2362     queue_id = queue_id_str ? strtol(queue_id_str, NULL, 10) : -1;
2363     ofproto_set_in_band_queue(br->ofproto, queue_id);
2364
2365     if (disable_in_band) {
2366         ofproto_set_extra_in_band_remotes(br->ofproto, NULL, 0);
2367     } else {
2368         ofproto_set_extra_in_band_remotes(br->ofproto, managers, n_managers);
2369     }
2370
2371     n_controllers = bridge_get_controllers(br, &controllers);
2372
2373     ocs = xmalloc((n_controllers + 1) * sizeof *ocs);
2374     n_ocs = 0;
2375
2376     bridge_ofproto_controller_for_mgmt(br, &ocs[n_ocs++]);
2377     for (i = 0; i < n_controllers; i++) {
2378         struct ovsrec_controller *c = controllers[i];
2379
2380         if (!strncmp(c->target, "punix:", 6)
2381             || !strncmp(c->target, "unix:", 5)) {
2382             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2383             char *whitelist;
2384
2385             whitelist = xasprintf("unix:%s/%s.controller",
2386                                   ovs_rundir(), br->name);
2387             if (!equal_pathnames(c->target, whitelist)) {
2388                 /* Prevent remote ovsdb-server users from accessing arbitrary
2389                  * Unix domain sockets and overwriting arbitrary local
2390                  * files. */
2391                 VLOG_ERR_RL(&rl, "bridge %s: Not adding Unix domain socket "
2392                             "controller \"%s\" due to possibility for remote "
2393                             "exploit.  Instead, specify whitelisted \"%s\" or "
2394                             "connect to \"unix:%s/%s.mgmt\" (which is always "
2395                             "available without special configuration).",
2396                             br->name, c->target, whitelist,
2397                             ovs_rundir(), br->name);
2398                 free(whitelist);
2399                 continue;
2400             }
2401
2402             free(whitelist);
2403         }
2404
2405         bridge_configure_local_iface_netdev(br, c);
2406         bridge_ofproto_controller_from_ovsrec(c, &ocs[n_ocs]);
2407         if (disable_in_band) {
2408             ocs[n_ocs].band = OFPROTO_OUT_OF_BAND;
2409         }
2410         n_ocs++;
2411     }
2412
2413     ofproto_set_controllers(br->ofproto, ocs, n_ocs);
2414     free(ocs[0].target); /* From bridge_ofproto_controller_for_mgmt(). */
2415     free(ocs);
2416
2417     /* Set the fail-mode. */
2418     fail_mode = !br->cfg->fail_mode
2419                 || !strcmp(br->cfg->fail_mode, "standalone")
2420                     ? OFPROTO_FAIL_STANDALONE
2421                     : OFPROTO_FAIL_SECURE;
2422     ofproto_set_fail_mode(br->ofproto, fail_mode);
2423
2424     /* Configure OpenFlow controller connection snooping. */
2425     if (!ofproto_has_snoops(br->ofproto)) {
2426         struct sset snoops;
2427
2428         sset_init(&snoops);
2429         sset_add_and_free(&snoops, xasprintf("punix:%s/%s.snoop",
2430                                              ovs_rundir(), br->name));
2431         ofproto_set_snoops(br->ofproto, &snoops);
2432         sset_destroy(&snoops);
2433     }
2434 }
2435 \f
2436 /* Port functions. */
2437
2438 static struct port *
2439 port_create(struct bridge *br, const struct ovsrec_port *cfg)
2440 {
2441     struct port *port;
2442
2443     port = xzalloc(sizeof *port);
2444     port->bridge = br;
2445     port->name = xstrdup(cfg->name);
2446     port->cfg = cfg;
2447     list_init(&port->ifaces);
2448
2449     hmap_insert(&br->ports, &port->hmap_node, hash_string(port->name, 0));
2450
2451     VLOG_INFO("created port %s on bridge %s", port->name, br->name);
2452
2453     return port;
2454 }
2455
2456 static const char *
2457 get_port_other_config(const struct ovsrec_port *port, const char *key,
2458                       const char *default_value)
2459 {
2460     const char *value;
2461
2462     value = get_ovsrec_key_value(&port->header_, &ovsrec_port_col_other_config,
2463                                  key);
2464     return value ? value : default_value;
2465 }
2466
2467 static const char *
2468 get_interface_other_config(const struct ovsrec_interface *iface,
2469                            const char *key, const char *default_value)
2470 {
2471     const char *value;
2472
2473     value = get_ovsrec_key_value(&iface->header_,
2474                                  &ovsrec_interface_col_other_config, key);
2475     return value ? value : default_value;
2476 }
2477
2478 /* Deletes interfaces from 'port' that are no longer configured for it. */
2479 static void
2480 port_del_ifaces(struct port *port)
2481 {
2482     struct iface *iface, *next;
2483     struct sset new_ifaces;
2484     size_t i;
2485
2486     /* Collect list of new interfaces. */
2487     sset_init(&new_ifaces);
2488     for (i = 0; i < port->cfg->n_interfaces; i++) {
2489         const char *name = port->cfg->interfaces[i]->name;
2490         const char *type = port->cfg->interfaces[i]->name;
2491         if (strcmp(type, "null")) {
2492             sset_add(&new_ifaces, name);
2493         }
2494     }
2495
2496     /* Get rid of deleted interfaces. */
2497     LIST_FOR_EACH_SAFE (iface, next, port_elem, &port->ifaces) {
2498         if (!sset_contains(&new_ifaces, iface->name)) {
2499             iface_destroy(iface);
2500         }
2501     }
2502
2503     sset_destroy(&new_ifaces);
2504 }
2505
2506 /* Adds new interfaces to 'port' and updates 'type' and 'cfg' members of
2507  * existing ones. */
2508 static void
2509 port_add_ifaces(struct port *port)
2510 {
2511     struct shash new_ifaces;
2512     struct shash_node *node;
2513     size_t i;
2514
2515     /* Collect new ifaces. */
2516     shash_init(&new_ifaces);
2517     for (i = 0; i < port->cfg->n_interfaces; i++) {
2518         const struct ovsrec_interface *cfg = port->cfg->interfaces[i];
2519         if (strcmp(cfg->type, "null")
2520             && !shash_add_once(&new_ifaces, cfg->name, cfg)) {
2521             VLOG_WARN("port %s: %s specified twice as port interface",
2522                       port->name, cfg->name);
2523             iface_clear_db_record(cfg);
2524         }
2525     }
2526
2527     /* Create new interfaces.
2528      * Update interface types and 'cfg' members. */
2529     SHASH_FOR_EACH (node, &new_ifaces) {
2530         const struct ovsrec_interface *cfg = node->data;
2531         const char *iface_name = node->name;
2532         struct iface *iface;
2533
2534         iface = iface_lookup(port->bridge, iface_name);
2535         if (!iface) {
2536             iface = iface_create(port, cfg);
2537         } else {
2538             iface->cfg = cfg;
2539         }
2540
2541         /* Determine interface type.  The local port always has type
2542          * "internal".  Other ports take their type from the database and
2543          * default to "system" if none is specified. */
2544         iface->type = (!strcmp(iface_name, port->bridge->name) ? "internal"
2545                        : cfg->type[0] ? cfg->type
2546                        : "system");
2547     }
2548     shash_destroy(&new_ifaces);
2549 }
2550
2551 static void
2552 port_destroy(struct port *port)
2553 {
2554     if (port) {
2555         struct bridge *br = port->bridge;
2556         struct iface *iface, *next;
2557
2558         if (br->ofproto) {
2559             ofproto_bundle_unregister(br->ofproto, port);
2560         }
2561
2562         LIST_FOR_EACH_SAFE (iface, next, port_elem, &port->ifaces) {
2563             iface_destroy(iface);
2564         }
2565
2566         hmap_remove(&br->ports, &port->hmap_node);
2567
2568         VLOG_INFO("destroyed port %s on bridge %s", port->name, br->name);
2569
2570         free(port->name);
2571         free(port);
2572     }
2573 }
2574
2575 static struct port *
2576 port_lookup(const struct bridge *br, const char *name)
2577 {
2578     struct port *port;
2579
2580     HMAP_FOR_EACH_WITH_HASH (port, hmap_node, hash_string(name, 0),
2581                              &br->ports) {
2582         if (!strcmp(port->name, name)) {
2583             return port;
2584         }
2585     }
2586     return NULL;
2587 }
2588
2589 static bool
2590 enable_lacp(struct port *port, bool *activep)
2591 {
2592     if (!port->cfg->lacp) {
2593         /* XXX when LACP implementation has been sufficiently tested, enable by
2594          * default and make active on bonded ports. */
2595         return false;
2596     } else if (!strcmp(port->cfg->lacp, "off")) {
2597         return false;
2598     } else if (!strcmp(port->cfg->lacp, "active")) {
2599         *activep = true;
2600         return true;
2601     } else if (!strcmp(port->cfg->lacp, "passive")) {
2602         *activep = false;
2603         return true;
2604     } else {
2605         VLOG_WARN("port %s: unknown LACP mode %s",
2606                   port->name, port->cfg->lacp);
2607         return false;
2608     }
2609 }
2610
2611 static struct lacp_settings *
2612 port_configure_lacp(struct port *port, struct lacp_settings *s)
2613 {
2614     const char *lacp_time, *system_id;
2615     long long int custom_time;
2616     int priority;
2617
2618     if (!enable_lacp(port, &s->active)) {
2619         return NULL;
2620     }
2621
2622     s->name = port->name;
2623
2624     system_id = get_port_other_config(port->cfg, "lacp-system-id", NULL);
2625     if (!system_id
2626         || sscanf(system_id, ETH_ADDR_SCAN_FMT,
2627                   ETH_ADDR_SCAN_ARGS(s->id)) != ETH_ADDR_SCAN_COUNT) {
2628         memcpy(s->id, port->bridge->ea, ETH_ADDR_LEN);
2629     }
2630
2631     /* Prefer bondable links if unspecified. */
2632     priority = atoi(get_port_other_config(port->cfg, "lacp-system-priority",
2633                                           "0"));
2634     s->priority = (priority > 0 && priority <= UINT16_MAX
2635                    ? priority
2636                    : UINT16_MAX - !list_is_short(&port->ifaces));
2637
2638     s->heartbeat = !strcmp(get_port_other_config(port->cfg,
2639                                                  "lacp-heartbeat",
2640                                                  "false"), "true");
2641
2642
2643     lacp_time = get_port_other_config(port->cfg, "lacp-time", "slow");
2644     custom_time = atoi(lacp_time);
2645     if (!strcmp(lacp_time, "fast")) {
2646         s->lacp_time = LACP_TIME_FAST;
2647     } else if (!strcmp(lacp_time, "slow")) {
2648         s->lacp_time = LACP_TIME_SLOW;
2649     } else if (custom_time > 0) {
2650         s->lacp_time = LACP_TIME_CUSTOM;
2651         s->custom_time = custom_time;
2652     } else {
2653         s->lacp_time = LACP_TIME_SLOW;
2654     }
2655
2656     return s;
2657 }
2658
2659 static void
2660 iface_configure_lacp(struct iface *iface, struct lacp_slave_settings *s)
2661 {
2662     int priority, portid, key;
2663
2664     portid = atoi(get_interface_other_config(iface->cfg, "lacp-port-id", "0"));
2665     priority = atoi(get_interface_other_config(iface->cfg,
2666                                                "lacp-port-priority", "0"));
2667     key = atoi(get_interface_other_config(iface->cfg, "lacp-aggregation-key",
2668                                           "0"));
2669
2670     if (portid <= 0 || portid > UINT16_MAX) {
2671         portid = iface->ofp_port;
2672     }
2673
2674     if (priority <= 0 || priority > UINT16_MAX) {
2675         priority = UINT16_MAX;
2676     }
2677
2678     if (key < 0 || key > UINT16_MAX) {
2679         key = 0;
2680     }
2681
2682     s->name = iface->name;
2683     s->id = portid;
2684     s->priority = priority;
2685     s->key = key;
2686 }
2687
2688 static void
2689 port_configure_bond(struct port *port, struct bond_settings *s,
2690                     uint32_t *bond_stable_ids)
2691 {
2692     const char *detect_s;
2693     struct iface *iface;
2694     int miimon_interval;
2695     size_t i;
2696
2697     s->name = port->name;
2698     s->balance = BM_SLB;
2699     if (port->cfg->bond_mode
2700         && !bond_mode_from_string(&s->balance, port->cfg->bond_mode)) {
2701         VLOG_WARN("port %s: unknown bond_mode %s, defaulting to %s",
2702                   port->name, port->cfg->bond_mode,
2703                   bond_mode_to_string(s->balance));
2704     }
2705     if (s->balance == BM_SLB && port->bridge->cfg->n_flood_vlans) {
2706         VLOG_WARN("port %s: SLB bonds are incompatible with flood_vlans, "
2707                   "please use another bond type or disable flood_vlans",
2708                   port->name);
2709     }
2710
2711     miimon_interval = atoi(get_port_other_config(port->cfg,
2712                                                  "bond-miimon-interval", "0"));
2713     if (miimon_interval <= 0) {
2714         miimon_interval = 200;
2715     }
2716
2717     detect_s = get_port_other_config(port->cfg, "bond-detect-mode", "carrier");
2718     if (!strcmp(detect_s, "carrier")) {
2719         miimon_interval = 0;
2720     } else if (strcmp(detect_s, "miimon")) {
2721         VLOG_WARN("port %s: unsupported bond-detect-mode %s, "
2722                   "defaulting to carrier", port->name, detect_s);
2723         miimon_interval = 0;
2724     }
2725
2726     s->up_delay = MAX(0, port->cfg->bond_updelay);
2727     s->down_delay = MAX(0, port->cfg->bond_downdelay);
2728     s->basis = atoi(get_port_other_config(port->cfg, "bond-hash-basis", "0"));
2729     s->rebalance_interval = atoi(
2730         get_port_other_config(port->cfg, "bond-rebalance-interval", "10000"));
2731     if (s->rebalance_interval < 1000) {
2732         s->rebalance_interval = 1000;
2733     }
2734
2735     s->fake_iface = port->cfg->bond_fake_iface;
2736
2737     i = 0;
2738     LIST_FOR_EACH (iface, port_elem, &port->ifaces) {
2739         long long stable_id;
2740
2741         stable_id = atoll(get_interface_other_config(iface->cfg,
2742                                                      "bond-stable-id", "0"));
2743         if (stable_id <= 0 || stable_id >= UINT32_MAX) {
2744             stable_id = iface->ofp_port;
2745         }
2746         bond_stable_ids[i++] = stable_id;
2747
2748         netdev_set_miimon_interval(iface->netdev, miimon_interval);
2749     }
2750 }
2751
2752 /* Returns true if 'port' is synthetic, that is, if we constructed it locally
2753  * instead of obtaining it from the database. */
2754 static bool
2755 port_is_synthetic(const struct port *port)
2756 {
2757     return ovsdb_idl_row_is_synthetic(&port->cfg->header_);
2758 }
2759 \f
2760 /* Interface functions. */
2761
2762 static struct iface *
2763 iface_create(struct port *port, const struct ovsrec_interface *if_cfg)
2764 {
2765     struct bridge *br = port->bridge;
2766     struct iface *iface;
2767     char *name = if_cfg->name;
2768
2769     iface = xzalloc(sizeof *iface);
2770     iface->port = port;
2771     iface->name = xstrdup(name);
2772     iface->ofp_port = -1;
2773     iface->tag = tag_create_random();
2774     iface->netdev = NULL;
2775     iface->cfg = if_cfg;
2776
2777     hmap_insert(&br->iface_by_name, &iface->name_node, hash_string(name, 0));
2778
2779     list_push_back(&port->ifaces, &iface->port_elem);
2780
2781     VLOG_DBG("attached network device %s to port %s", iface->name, port->name);
2782
2783     return iface;
2784 }
2785
2786 static void
2787 iface_destroy(struct iface *iface)
2788 {
2789     if (iface) {
2790         struct port *port = iface->port;
2791         struct bridge *br = port->bridge;
2792
2793         if (br->ofproto && iface->ofp_port >= 0) {
2794             ofproto_port_unregister(br->ofproto, iface->ofp_port);
2795         }
2796
2797         if (iface->ofp_port >= 0) {
2798             hmap_remove(&br->ifaces, &iface->ofp_port_node);
2799         }
2800
2801         list_remove(&iface->port_elem);
2802         hmap_remove(&br->iface_by_name, &iface->name_node);
2803
2804         netdev_close(iface->netdev);
2805
2806         free(iface->name);
2807         free(iface);
2808     }
2809 }
2810
2811 static struct iface *
2812 iface_lookup(const struct bridge *br, const char *name)
2813 {
2814     struct iface *iface;
2815
2816     HMAP_FOR_EACH_WITH_HASH (iface, name_node, hash_string(name, 0),
2817                              &br->iface_by_name) {
2818         if (!strcmp(iface->name, name)) {
2819             return iface;
2820         }
2821     }
2822
2823     return NULL;
2824 }
2825
2826 static struct iface *
2827 iface_find(const char *name)
2828 {
2829     const struct bridge *br;
2830
2831     HMAP_FOR_EACH (br, node, &all_bridges) {
2832         struct iface *iface = iface_lookup(br, name);
2833
2834         if (iface) {
2835             return iface;
2836         }
2837     }
2838     return NULL;
2839 }
2840
2841 static struct iface *
2842 iface_from_ofp_port(const struct bridge *br, uint16_t ofp_port)
2843 {
2844     struct iface *iface;
2845
2846     HMAP_FOR_EACH_IN_BUCKET (iface, ofp_port_node,
2847                              hash_int(ofp_port, 0), &br->ifaces) {
2848         if (iface->ofp_port == ofp_port) {
2849             return iface;
2850         }
2851     }
2852     return NULL;
2853 }
2854
2855 /* Set Ethernet address of 'iface', if one is specified in the configuration
2856  * file. */
2857 static void
2858 iface_set_mac(struct iface *iface)
2859 {
2860     uint8_t ea[ETH_ADDR_LEN];
2861
2862     if (!strcmp(iface->type, "internal")
2863         && iface->cfg->mac && eth_addr_from_string(iface->cfg->mac, ea)) {
2864         if (iface->ofp_port == OFPP_LOCAL) {
2865             VLOG_ERR("interface %s: ignoring mac in Interface record "
2866                      "(use Bridge record to set local port's mac)",
2867                      iface->name);
2868         } else if (eth_addr_is_multicast(ea)) {
2869             VLOG_ERR("interface %s: cannot set MAC to multicast address",
2870                      iface->name);
2871         } else {
2872             int error = netdev_set_etheraddr(iface->netdev, ea);
2873             if (error) {
2874                 VLOG_ERR("interface %s: setting MAC failed (%s)",
2875                          iface->name, strerror(error));
2876             }
2877         }
2878     }
2879 }
2880
2881 /* Sets the ofport column of 'if_cfg' to 'ofport'. */
2882 static void
2883 iface_set_ofport(const struct ovsrec_interface *if_cfg, int64_t ofport)
2884 {
2885     if (if_cfg && !ovsdb_idl_row_is_synthetic(&if_cfg->header_)) {
2886         ovsrec_interface_set_ofport(if_cfg, &ofport, 1);
2887     }
2888 }
2889
2890 /* Clears all of the fields in 'if_cfg' that indicate interface status, and
2891  * sets the "ofport" field to -1.
2892  *
2893  * This is appropriate when 'if_cfg''s interface cannot be created or is
2894  * otherwise invalid. */
2895 static void
2896 iface_clear_db_record(const struct ovsrec_interface *if_cfg)
2897 {
2898     if (!ovsdb_idl_row_is_synthetic(&if_cfg->header_)) {
2899         iface_set_ofport(if_cfg, -1);
2900         ovsrec_interface_set_status(if_cfg, NULL, NULL, 0);
2901         ovsrec_interface_set_admin_state(if_cfg, NULL);
2902         ovsrec_interface_set_duplex(if_cfg, NULL);
2903         ovsrec_interface_set_link_speed(if_cfg, NULL, 0);
2904         ovsrec_interface_set_link_state(if_cfg, NULL);
2905         ovsrec_interface_set_mtu(if_cfg, NULL, 0);
2906         ovsrec_interface_set_cfm_fault(if_cfg, NULL, 0);
2907         ovsrec_interface_set_cfm_remote_mpids(if_cfg, NULL, 0);
2908         ovsrec_interface_set_lacp_current(if_cfg, NULL, 0);
2909         ovsrec_interface_set_statistics(if_cfg, NULL, NULL, 0);
2910     }
2911 }
2912
2913 /* Adds the 'n' key-value pairs in 'keys' in 'values' to 'shash'.
2914  *
2915  * The value strings in '*shash' are taken directly from values[], not copied,
2916  * so the caller should not modify or free them. */
2917 static void
2918 shash_from_ovs_idl_map(char **keys, char **values, size_t n,
2919                        struct shash *shash)
2920 {
2921     size_t i;
2922
2923     shash_init(shash);
2924     for (i = 0; i < n; i++) {
2925         shash_add(shash, keys[i], values[i]);
2926     }
2927 }
2928
2929 /* Creates 'keys' and 'values' arrays from 'shash'.
2930  *
2931  * Sets 'keys' and 'values' to heap allocated arrays representing the key-value
2932  * pairs in 'shash'.  The caller takes ownership of 'keys' and 'values'.  They
2933  * are populated with with strings taken directly from 'shash' and thus have
2934  * the same ownership of the key-value pairs in shash.
2935  */
2936 static void
2937 shash_to_ovs_idl_map(struct shash *shash,
2938                      char ***keys, char ***values, size_t *n)
2939 {
2940     size_t i, count;
2941     char **k, **v;
2942     struct shash_node *sn;
2943
2944     count = shash_count(shash);
2945
2946     k = xmalloc(count * sizeof *k);
2947     v = xmalloc(count * sizeof *v);
2948
2949     i = 0;
2950     SHASH_FOR_EACH(sn, shash) {
2951         k[i] = sn->name;
2952         v[i] = sn->data;
2953         i++;
2954     }
2955
2956     *n      = count;
2957     *keys   = k;
2958     *values = v;
2959 }
2960
2961 struct iface_delete_queues_cbdata {
2962     struct netdev *netdev;
2963     const struct ovsdb_datum *queues;
2964 };
2965
2966 static bool
2967 queue_ids_include(const struct ovsdb_datum *queues, int64_t target)
2968 {
2969     union ovsdb_atom atom;
2970
2971     atom.integer = target;
2972     return ovsdb_datum_find_key(queues, &atom, OVSDB_TYPE_INTEGER) != UINT_MAX;
2973 }
2974
2975 static void
2976 iface_delete_queues(unsigned int queue_id,
2977                     const struct shash *details OVS_UNUSED, void *cbdata_)
2978 {
2979     struct iface_delete_queues_cbdata *cbdata = cbdata_;
2980
2981     if (!queue_ids_include(cbdata->queues, queue_id)) {
2982         netdev_delete_queue(cbdata->netdev, queue_id);
2983     }
2984 }
2985
2986 static void
2987 iface_configure_qos(struct iface *iface, const struct ovsrec_qos *qos)
2988 {
2989     if (!qos || qos->type[0] == '\0' || qos->n_queues < 1) {
2990         netdev_set_qos(iface->netdev, NULL, NULL);
2991     } else {
2992         struct iface_delete_queues_cbdata cbdata;
2993         struct shash details;
2994         bool queue_zero;
2995         size_t i;
2996
2997         /* Configure top-level Qos for 'iface'. */
2998         shash_from_ovs_idl_map(qos->key_other_config, qos->value_other_config,
2999                                qos->n_other_config, &details);
3000         netdev_set_qos(iface->netdev, qos->type, &details);
3001         shash_destroy(&details);
3002
3003         /* Deconfigure queues that were deleted. */
3004         cbdata.netdev = iface->netdev;
3005         cbdata.queues = ovsrec_qos_get_queues(qos, OVSDB_TYPE_INTEGER,
3006                                               OVSDB_TYPE_UUID);
3007         netdev_dump_queues(iface->netdev, iface_delete_queues, &cbdata);
3008
3009         /* Configure queues for 'iface'. */
3010         queue_zero = false;
3011         for (i = 0; i < qos->n_queues; i++) {
3012             const struct ovsrec_queue *queue = qos->value_queues[i];
3013             unsigned int queue_id = qos->key_queues[i];
3014
3015             if (queue_id == 0) {
3016                 queue_zero = true;
3017             }
3018
3019             shash_from_ovs_idl_map(queue->key_other_config,
3020                                    queue->value_other_config,
3021                                    queue->n_other_config, &details);
3022             netdev_set_queue(iface->netdev, queue_id, &details);
3023             shash_destroy(&details);
3024         }
3025         if (!queue_zero) {
3026             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
3027             VLOG_WARN_RL(&rl, "interface %s: QoS configured without a default "
3028                          "queue (queue 0).  Using default configuration.",
3029                          iface->name);
3030
3031             shash_init(&details);
3032             netdev_set_queue(iface->netdev, 0, &details);
3033             shash_destroy(&details);
3034         }
3035     }
3036
3037     netdev_set_policing(iface->netdev,
3038                         iface->cfg->ingress_policing_rate,
3039                         iface->cfg->ingress_policing_burst);
3040 }
3041
3042 static void
3043 iface_configure_cfm(struct iface *iface)
3044 {
3045     const struct ovsrec_interface *cfg = iface->cfg;
3046     const char *extended_str, *opstate_str;
3047     struct cfm_settings s;
3048
3049     if (!cfg->n_cfm_mpid) {
3050         ofproto_port_clear_cfm(iface->port->bridge->ofproto, iface->ofp_port);
3051         return;
3052     }
3053
3054     s.mpid = *cfg->cfm_mpid;
3055     s.interval = atoi(get_interface_other_config(iface->cfg, "cfm_interval",
3056                                                  "0"));
3057     if (s.interval <= 0) {
3058         s.interval = 1000;
3059     }
3060
3061     extended_str = get_interface_other_config(iface->cfg, "cfm_extended",
3062                                               "false");
3063     s.extended = !strcasecmp("true", extended_str);
3064
3065     opstate_str = get_interface_other_config(iface->cfg, "cfm_opstate", "up");
3066     s.opup = !strcasecmp("up", opstate_str);
3067
3068     ofproto_port_set_cfm(iface->port->bridge->ofproto, iface->ofp_port, &s);
3069 }
3070
3071 /* Returns true if 'iface' is synthetic, that is, if we constructed it locally
3072  * instead of obtaining it from the database. */
3073 static bool
3074 iface_is_synthetic(const struct iface *iface)
3075 {
3076     return ovsdb_idl_row_is_synthetic(&iface->cfg->header_);
3077 }
3078 \f
3079 /* Port mirroring. */
3080
3081 static struct mirror *
3082 mirror_find_by_uuid(struct bridge *br, const struct uuid *uuid)
3083 {
3084     struct mirror *m;
3085
3086     HMAP_FOR_EACH_IN_BUCKET (m, hmap_node, uuid_hash(uuid), &br->mirrors) {
3087         if (uuid_equals(uuid, &m->uuid)) {
3088             return m;
3089         }
3090     }
3091     return NULL;
3092 }
3093
3094 static void
3095 bridge_configure_mirrors(struct bridge *br)
3096 {
3097     const struct ovsdb_datum *mc;
3098     unsigned long *flood_vlans;
3099     struct mirror *m, *next;
3100     size_t i;
3101
3102     /* Get rid of deleted mirrors. */
3103     mc = ovsrec_bridge_get_mirrors(br->cfg, OVSDB_TYPE_UUID);
3104     HMAP_FOR_EACH_SAFE (m, next, hmap_node, &br->mirrors) {
3105         union ovsdb_atom atom;
3106
3107         atom.uuid = m->uuid;
3108         if (ovsdb_datum_find_key(mc, &atom, OVSDB_TYPE_UUID) == UINT_MAX) {
3109             mirror_destroy(m);
3110         }
3111     }
3112
3113     /* Add new mirrors and reconfigure existing ones. */
3114     for (i = 0; i < br->cfg->n_mirrors; i++) {
3115         const struct ovsrec_mirror *cfg = br->cfg->mirrors[i];
3116         struct mirror *m = mirror_find_by_uuid(br, &cfg->header_.uuid);
3117         if (!m) {
3118             m = mirror_create(br, cfg);
3119         }
3120         if (!mirror_configure(m, cfg)) {
3121             mirror_destroy(m);
3122         }
3123     }
3124
3125     /* Update flooded vlans (for RSPAN). */
3126     flood_vlans = vlan_bitmap_from_array(br->cfg->flood_vlans,
3127                                          br->cfg->n_flood_vlans);
3128     ofproto_set_flood_vlans(br->ofproto, flood_vlans);
3129     bitmap_free(flood_vlans);
3130 }
3131
3132 static struct mirror *
3133 mirror_create(struct bridge *br, const struct ovsrec_mirror *cfg)
3134 {
3135     struct mirror *m;
3136
3137     m = xzalloc(sizeof *m);
3138     m->uuid = cfg->header_.uuid;
3139     hmap_insert(&br->mirrors, &m->hmap_node, uuid_hash(&m->uuid));
3140     m->bridge = br;
3141     m->name = xstrdup(cfg->name);
3142
3143     return m;
3144 }
3145
3146 static void
3147 mirror_destroy(struct mirror *m)
3148 {
3149     if (m) {
3150         struct bridge *br = m->bridge;
3151
3152         if (br->ofproto) {
3153             ofproto_mirror_unregister(br->ofproto, m);
3154         }
3155
3156         hmap_remove(&br->mirrors, &m->hmap_node);
3157         free(m->name);
3158         free(m);
3159     }
3160 }
3161
3162 static void
3163 mirror_collect_ports(struct mirror *m,
3164                      struct ovsrec_port **in_ports, int n_in_ports,
3165                      void ***out_portsp, size_t *n_out_portsp)
3166 {
3167     void **out_ports = xmalloc(n_in_ports * sizeof *out_ports);
3168     size_t n_out_ports = 0;
3169     size_t i;
3170
3171     for (i = 0; i < n_in_ports; i++) {
3172         const char *name = in_ports[i]->name;
3173         struct port *port = port_lookup(m->bridge, name);
3174         if (port) {
3175             out_ports[n_out_ports++] = port;
3176         } else {
3177             VLOG_WARN("bridge %s: mirror %s cannot match on nonexistent "
3178                       "port %s", m->bridge->name, m->name, name);
3179         }
3180     }
3181     *out_portsp = out_ports;
3182     *n_out_portsp = n_out_ports;
3183 }
3184
3185 static bool
3186 mirror_configure(struct mirror *m, const struct ovsrec_mirror *cfg)
3187 {
3188     struct ofproto_mirror_settings s;
3189
3190     /* Set name. */
3191     if (strcmp(cfg->name, m->name)) {
3192         free(m->name);
3193         m->name = xstrdup(cfg->name);
3194     }
3195     s.name = m->name;
3196
3197     /* Get output port or VLAN. */
3198     if (cfg->output_port) {
3199         s.out_bundle = port_lookup(m->bridge, cfg->output_port->name);
3200         if (!s.out_bundle) {
3201             VLOG_ERR("bridge %s: mirror %s outputs to port not on bridge",
3202                      m->bridge->name, m->name);
3203             return false;
3204         }
3205         s.out_vlan = UINT16_MAX;
3206
3207         if (cfg->output_vlan) {
3208             VLOG_ERR("bridge %s: mirror %s specifies both output port and "
3209                      "output vlan; ignoring output vlan",
3210                      m->bridge->name, m->name);
3211         }
3212     } else if (cfg->output_vlan) {
3213         /* The database should prevent invalid VLAN values. */
3214         s.out_bundle = NULL;
3215         s.out_vlan = *cfg->output_vlan;
3216     } else {
3217         VLOG_ERR("bridge %s: mirror %s does not specify output; ignoring",
3218                  m->bridge->name, m->name);
3219         return false;
3220     }
3221
3222     /* Get port selection. */
3223     if (cfg->select_all) {
3224         size_t n_ports = hmap_count(&m->bridge->ports);
3225         void **ports = xmalloc(n_ports * sizeof *ports);
3226         struct port *port;
3227         size_t i;
3228
3229         i = 0;
3230         HMAP_FOR_EACH (port, hmap_node, &m->bridge->ports) {
3231             ports[i++] = port;
3232         }
3233
3234         s.srcs = ports;
3235         s.n_srcs = n_ports;
3236
3237         s.dsts = ports;
3238         s.n_dsts = n_ports;
3239     } else {
3240         /* Get ports, dropping ports that don't exist.
3241          * The IDL ensures that there are no duplicates. */
3242         mirror_collect_ports(m, cfg->select_src_port, cfg->n_select_src_port,
3243                              &s.srcs, &s.n_srcs);
3244         mirror_collect_ports(m, cfg->select_dst_port, cfg->n_select_dst_port,
3245                              &s.dsts, &s.n_dsts);
3246     }
3247
3248     /* Get VLAN selection. */
3249     s.src_vlans = vlan_bitmap_from_array(cfg->select_vlan, cfg->n_select_vlan);
3250
3251     /* Configure. */
3252     ofproto_mirror_register(m->bridge->ofproto, m, &s);
3253
3254     /* Clean up. */
3255     if (s.srcs != s.dsts) {
3256         free(s.dsts);
3257     }
3258     free(s.srcs);
3259     free(s.src_vlans);
3260
3261     return true;
3262 }