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