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