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