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