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