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