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