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