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