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