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