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