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