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