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