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