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