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