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