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