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