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