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