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