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