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