]> git.proxmox.com Git - ovs.git/blame - vswitchd/bridge.c
ovs-openflowd: Fix support for multiple controllers.
[ovs.git] / vswitchd / bridge.c
CommitLineData
2c30e5d1 1/* Copyright (c) 2008, 2009, 2010 Nicira Networks
c93b1d6a 2 *
a14bc59f
BP
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:
064af421 6 *
a14bc59f 7 * http://www.apache.org/licenses/LICENSE-2.0
064af421 8 *
a14bc59f
BP
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.
064af421
BP
14 */
15
16#include <config.h>
17#include "bridge.h"
18#include <assert.h>
19#include <errno.h>
20#include <arpa/inet.h>
21#include <ctype.h>
22#include <inttypes.h>
9d82ec47 23#include <sys/socket.h>
064af421
BP
24#include <net/if.h>
25#include <openflow/openflow.h>
26#include <signal.h>
27#include <stdlib.h>
28#include <strings.h>
29#include <sys/stat.h>
30#include <sys/socket.h>
7e40e21d 31#include <sys/types.h>
064af421
BP
32#include <unistd.h>
33#include "bitmap.h"
064af421
BP
34#include "coverage.h"
35#include "dirs.h"
36#include "dpif.h"
37#include "dynamic-string.h"
38#include "flow.h"
39#include "hash.h"
cd11000b 40#include "jsonrpc.h"
064af421
BP
41#include "list.h"
42#include "mac-learning.h"
43#include "netdev.h"
44#include "odp-util.h"
45#include "ofp-print.h"
46#include "ofpbuf.h"
d65349ea 47#include "ofproto/netflow.h"
8cd4882f 48#include "ofproto/ofproto.h"
dd0d105c 49#include "ovsdb-data.h"
da285df4 50#include "packets.h"
064af421
BP
51#include "poll-loop.h"
52#include "port-array.h"
53#include "proc-net-compat.h"
54#include "process.h"
76343538 55#include "sha1.h"
6c88d577 56#include "shash.h"
064af421 57#include "socket-util.h"
fe55ad15 58#include "stream-ssl.h"
064af421
BP
59#include "svec.h"
60#include "timeval.h"
61#include "util.h"
da285df4 62#include "unixctl.h"
064af421 63#include "vconn.h"
b36682d8 64#include "vswitchd/vswitch-idl.h"
064af421 65#include "xenserver.h"
5136ce49 66#include "vlog.h"
064af421 67#include "xtoxll.h"
72b06300 68#include "sflow_api.h"
064af421 69
5136ce49 70VLOG_DEFINE_THIS_MODULE(bridge)
064af421
BP
71
72struct dst {
73 uint16_t vlan;
74 uint16_t dp_ifidx;
75};
76
064af421 77struct iface {
0c6aea3f 78 /* These members are always valid. */
064af421
BP
79 struct port *port; /* Containing port. */
80 size_t port_ifidx; /* Index within containing port. */
064af421 81 char *name; /* Host network device name. */
064af421 82 tag_type tag; /* Tag associated with this interface. */
064af421 83 long long delay_expires; /* Time after which 'enabled' may change. */
064af421 84
0c6aea3f 85 /* These members are valid only after bridge_reconfigure() causes them to
1e0b752d 86 * be initialized. */
0c6aea3f
BP
87 int dp_ifidx; /* Index within kernel datapath. */
88 struct netdev *netdev; /* Network device. */
064af421 89 bool enabled; /* May be chosen for flows? */
76343538 90 const struct ovsrec_interface *cfg;
064af421
BP
91};
92
93#define BOND_MASK 0xff
94struct bond_entry {
95 int iface_idx; /* Index of assigned iface, or -1 if none. */
96 uint64_t tx_bytes; /* Count of bytes recently transmitted. */
97 tag_type iface_tag; /* Tag associated with iface_idx. */
98};
99
100#define MAX_MIRRORS 32
101typedef uint32_t mirror_mask_t;
102#define MIRROR_MASK_C(X) UINT32_C(X)
103BUILD_ASSERT_DECL(sizeof(mirror_mask_t) * CHAR_BIT >= MAX_MIRRORS);
104struct mirror {
105 struct bridge *bridge;
106 size_t idx;
107 char *name;
dd0d105c 108 struct uuid uuid; /* UUID of this "mirror" record in database. */
064af421
BP
109
110 /* Selection criteria. */
37e7f427
BP
111 struct shash src_ports; /* Name is port name; data is always NULL. */
112 struct shash dst_ports; /* Name is port name; data is always NULL. */
064af421
BP
113 int *vlans;
114 size_t n_vlans;
115
116 /* Output. */
117 struct port *out_port;
118 int out_vlan;
119};
120
121#define FLOOD_PORT ((struct port *) 1) /* The 'flood' output port. */
122struct port {
123 struct bridge *bridge;
124 size_t port_idx;
125 int vlan; /* -1=trunk port, else a 12-bit VLAN ID. */
3e9c481c
BP
126 unsigned long *trunks; /* Bitmap of trunked VLANs, if 'vlan' == -1.
127 * NULL if all VLANs are trunked. */
1e0b752d 128 const struct ovsrec_port *cfg;
064af421
BP
129 char *name;
130
131 /* An ordinary bridge port has 1 interface.
132 * A bridge port for bonding has at least 2 interfaces. */
133 struct iface **ifaces;
134 size_t n_ifaces, allocated_ifaces;
135
136 /* Bonding info. */
137 struct bond_entry *bond_hash; /* An array of (BOND_MASK + 1) elements. */
138 int active_iface; /* Ifidx on which bcasts accepted, or -1. */
139 tag_type active_iface_tag; /* Tag for bcast flows. */
140 tag_type no_ifaces_tag; /* Tag for flows when all ifaces disabled. */
141 int updelay, downdelay; /* Delay before iface goes up/down, in ms. */
85c74638 142 bool bond_compat_is_stale; /* Need to call port_update_bond_compat()? */
76343538 143 bool bond_fake_iface; /* Fake a bond interface for legacy compat? */
8722022c 144 long bond_next_fake_iface_update; /* Next update to fake bond stats. */
c8143c88
BP
145 int bond_rebalance_interval; /* Interval between rebalances, in ms. */
146 long long int bond_next_rebalance; /* Next rebalancing time. */
064af421
BP
147
148 /* Port mirroring info. */
149 mirror_mask_t src_mirrors; /* Mirrors triggered when packet received. */
150 mirror_mask_t dst_mirrors; /* Mirrors triggered when packet sent. */
151 bool is_mirror_output_port; /* Does port mirroring send frames here? */
064af421
BP
152};
153
154#define DP_MAX_PORTS 255
155struct bridge {
156 struct list node; /* Node in global list of bridges. */
157 char *name; /* User-specified arbitrary name. */
93dfc067 158 struct mac_learning *ml; /* MAC learning table. */
064af421 159 uint8_t default_ea[ETH_ADDR_LEN]; /* Default MAC. */
1e0b752d 160 const struct ovsrec_bridge *cfg;
064af421 161
064af421
BP
162 /* OpenFlow switch processing. */
163 struct ofproto *ofproto; /* OpenFlow switch. */
164
165 /* Kernel datapath information. */
c228a364 166 struct dpif *dpif; /* Datapath. */
064af421
BP
167 struct port_array ifaces; /* Indexed by kernel datapath port number. */
168
169 /* Bridge ports. */
170 struct port **ports;
171 size_t n_ports, allocated_ports;
4a1ee6ae 172 struct shash iface_by_name; /* "struct iface"s indexed by name. */
836fad5e 173 struct shash port_by_name; /* "struct port"s indexed by name. */
064af421
BP
174
175 /* Bonding. */
176 bool has_bonded_ports;
064af421
BP
177
178 /* Flow tracking. */
179 bool flush;
180
064af421
BP
181 /* Port mirroring. */
182 struct mirror *mirrors[MAX_MIRRORS];
064af421
BP
183};
184
185/* List of all bridges. */
186static struct list all_bridges = LIST_INITIALIZER(&all_bridges);
187
c5187f17
BP
188/* OVSDB IDL used to obtain configuration. */
189static struct ovsdb_idl *idl;
190
018f1525
BP
191/* Each time this timer expires, the bridge fetches statistics for every
192 * interface and pushes them into the database. */
193#define IFACE_STATS_INTERVAL (5 * 1000) /* In milliseconds. */
194static long long int iface_stats_timer = LLONG_MIN;
195
1a6f1e2a 196static struct bridge *bridge_create(const struct ovsrec_bridge *br_cfg);
064af421
BP
197static void bridge_destroy(struct bridge *);
198static struct bridge *bridge_lookup(const char *name);
8ca79daa 199static unixctl_cb_func bridge_unixctl_dump_flows;
fa05809b 200static unixctl_cb_func bridge_unixctl_reconnect;
064af421 201static int bridge_run_one(struct bridge *);
1a048029 202static size_t bridge_get_controllers(const struct bridge *br,
76ce9432 203 struct ovsrec_controller ***controllersp);
1a048029
JP
204static void bridge_reconfigure_one(struct bridge *);
205static void bridge_reconfigure_remotes(struct bridge *,
11bbff1b
BP
206 const struct sockaddr_in *managers,
207 size_t n_managers);
76343538 208static void bridge_get_all_ifaces(const struct bridge *, struct shash *ifaces);
064af421
BP
209static void bridge_fetch_dp_ifaces(struct bridge *);
210static void bridge_flush(struct bridge *);
211static void bridge_pick_local_hw_addr(struct bridge *,
212 uint8_t ea[ETH_ADDR_LEN],
07c318f4 213 struct iface **hw_addr_iface);
064af421
BP
214static uint64_t bridge_pick_datapath_id(struct bridge *,
215 const uint8_t bridge_ea[ETH_ADDR_LEN],
07c318f4
BP
216 struct iface *hw_addr_iface);
217static struct iface *bridge_get_local_iface(struct bridge *);
064af421
BP
218static uint64_t dpid_from_hash(const void *, size_t nbytes);
219
8ca79daa 220static unixctl_cb_func bridge_unixctl_fdb_show;
8c4c1387 221
da285df4 222static void bond_init(void);
064af421
BP
223static void bond_run(struct bridge *);
224static void bond_wait(struct bridge *);
225static void bond_rebalance_port(struct port *);
2303f3b2 226static void bond_send_learning_packets(struct port *);
8b2a2f4a 227static void bond_enable_slave(struct iface *iface, bool enable);
064af421 228
76343538
BP
229static struct port *port_create(struct bridge *, const char *name);
230static void port_reconfigure(struct port *, const struct ovsrec_port *);
4a1ee6ae 231static void port_del_ifaces(struct port *, const struct ovsrec_port *);
064af421
BP
232static void port_destroy(struct port *);
233static struct port *port_lookup(const struct bridge *, const char *name);
da285df4 234static struct iface *port_lookup_iface(const struct port *, const char *name);
064af421
BP
235static struct port *port_from_dp_ifidx(const struct bridge *,
236 uint16_t dp_ifidx);
237static void port_update_bond_compat(struct port *);
238static void port_update_vlan_compat(struct port *);
0c6aea3f 239static void port_update_bonding(struct port *);
064af421 240
dd0d105c 241static void mirror_create(struct bridge *, struct ovsrec_mirror *);
064af421
BP
242static void mirror_destroy(struct mirror *);
243static void mirror_reconfigure(struct bridge *);
37e7f427 244static void mirror_reconfigure_one(struct mirror *, struct ovsrec_mirror *);
064af421
BP
245static bool vlan_is_mirrored(const struct mirror *, int vlan);
246
a740f0de
JG
247static struct iface *iface_create(struct port *port,
248 const struct ovsrec_interface *if_cfg);
064af421
BP
249static void iface_destroy(struct iface *);
250static struct iface *iface_lookup(const struct bridge *, const char *name);
251static struct iface *iface_from_dp_ifidx(const struct bridge *,
252 uint16_t dp_ifidx);
557d8e6c 253static bool iface_is_internal(const struct bridge *, const char *name);
52df17e7 254static void iface_set_mac(struct iface *);
c1c9c9c4 255static void iface_update_qos(struct iface *, const struct ovsrec_qos *);
064af421
BP
256
257/* Hooks into ofproto processing. */
258static struct ofhooks bridge_ofhooks;
259\f
260/* Public functions. */
261
c5187f17
BP
262/* Initializes the bridge module, configuring it to obtain its configuration
263 * from an OVSDB server accessed over 'remote', which should be a string in a
264 * form acceptable to ovsdb_idl_create(). */
064af421 265void
c5187f17
BP
266bridge_init(const char *remote)
267{
268 /* Create connection to database. */
269 idl = ovsdb_idl_create(remote, &ovsrec_idl_class);
270
271 /* Register unixctl commands. */
272 unixctl_command_register("fdb/show", bridge_unixctl_fdb_show, NULL);
273 unixctl_command_register("bridge/dump-flows", bridge_unixctl_dump_flows,
274 NULL);
fa05809b
BP
275 unixctl_command_register("bridge/reconnect", bridge_unixctl_reconnect,
276 NULL);
c5187f17
BP
277 bond_init();
278}
279
280/* Performs configuration that is only necessary once at ovs-vswitchd startup,
281 * but for which the ovs-vswitchd configuration 'cfg' is required. */
282static void
283bridge_configure_once(const struct ovsrec_open_vswitch *cfg)
064af421 284{
c5187f17 285 static bool already_configured_once;
76343538 286 struct svec bridge_names;
1a6f1e2a 287 struct svec dpif_names, dpif_types;
d3d22744 288 size_t i;
da285df4 289
c5187f17
BP
290 /* Only do this once per ovs-vswitchd run. */
291 if (already_configured_once) {
292 return;
293 }
294 already_configured_once = true;
8c4c1387 295
018f1525
BP
296 iface_stats_timer = time_msec() + IFACE_STATS_INTERVAL;
297
c5187f17 298 /* Get all the configured bridges' names from 'cfg' into 'bridge_names'. */
76343538
BP
299 svec_init(&bridge_names);
300 for (i = 0; i < cfg->n_bridges; i++) {
301 svec_add(&bridge_names, cfg->bridges[i]->name);
302 }
303 svec_sort(&bridge_names);
304
c5187f17
BP
305 /* Iterate over all system dpifs and delete any of them that do not appear
306 * in 'cfg'. */
d2a34569 307 svec_init(&dpif_names);
1a6f1e2a
JG
308 svec_init(&dpif_types);
309 dp_enumerate_types(&dpif_types);
310 for (i = 0; i < dpif_types.n; i++) {
c228a364 311 struct dpif *dpif;
d3d22744 312 int retval;
1a6f1e2a 313 size_t j;
064af421 314
1a6f1e2a 315 dp_enumerate_names(dpif_types.names[i], &dpif_names);
d3d22744 316
c5187f17 317 /* For each dpif... */
1a6f1e2a
JG
318 for (j = 0; j < dpif_names.n; j++) {
319 retval = dpif_open(dpif_names.names[j], dpif_types.names[i], &dpif);
320 if (!retval) {
321 struct svec all_names;
322 size_t k;
323
c5187f17 324 /* ...check whether any of its names is in 'bridge_names'. */
1a6f1e2a
JG
325 svec_init(&all_names);
326 dpif_get_all_names(dpif, &all_names);
327 for (k = 0; k < all_names.n; k++) {
328 if (svec_contains(&bridge_names, all_names.names[k])) {
329 goto found;
330 }
d3d22744 331 }
c5187f17
BP
332
333 /* No. Delete the dpif. */
1a6f1e2a 334 dpif_delete(dpif);
c5187f17 335
1a6f1e2a
JG
336 found:
337 svec_destroy(&all_names);
338 dpif_close(dpif);
064af421 339 }
064af421
BP
340 }
341 }
7128cd6b 342 svec_destroy(&bridge_names);
d0c9d304 343 svec_destroy(&dpif_names);
1a6f1e2a 344 svec_destroy(&dpif_types);
064af421
BP
345}
346
6c88d577
JP
347/* Attempt to create the network device 'iface_name' through the netdev
348 * library. */
349static int
149f577a
JG
350set_up_iface(const struct ovsrec_interface *iface_cfg, struct iface *iface,
351 bool create)
6c88d577 352{
76343538 353 struct shash options;
149f577a 354 int error = 0;
6c88d577
JP
355 size_t i;
356
76343538
BP
357 shash_init(&options);
358 for (i = 0; i < iface_cfg->n_options; i++) {
359 shash_add(&options, iface_cfg->key_options[i],
360 xstrdup(iface_cfg->value_options[i]));
6c88d577
JP
361 }
362
363 if (create) {
149f577a
JG
364 struct netdev_options netdev_options;
365
366 memset(&netdev_options, 0, sizeof netdev_options);
367 netdev_options.name = iface_cfg->name;
d4c2000b
JP
368 if (!strcmp(iface_cfg->type, "internal")) {
369 /* An "internal" config type maps to a netdev "system" type. */
370 netdev_options.type = "system";
371 } else {
372 netdev_options.type = iface_cfg->type;
373 }
149f577a
JG
374 netdev_options.args = &options;
375 netdev_options.ethertype = NETDEV_ETH_TYPE_NONE;
149f577a
JG
376
377 error = netdev_open(&netdev_options, &iface->netdev);
378
379 if (iface->netdev) {
380 netdev_get_carrier(iface->netdev, &iface->enabled);
381 }
382 } else if (iface->netdev) {
383 const char *netdev_type = netdev_get_type(iface->netdev);
384 const char *iface_type = iface_cfg->type && strlen(iface_cfg->type)
385 ? iface_cfg->type : NULL;
386
d4c2000b
JP
387 /* An "internal" config type maps to a netdev "system" type. */
388 if (iface_type && !strcmp(iface_type, "internal")) {
389 iface_type = "system";
390 }
391
149f577a
JG
392 if (!iface_type || !strcmp(netdev_type, iface_type)) {
393 error = netdev_reconfigure(iface->netdev, &options);
394 } else {
395 VLOG_WARN("%s: attempting change device type from %s to %s",
396 iface_cfg->name, netdev_type, iface_type);
397 error = EINVAL;
398 }
6c88d577 399 }
506051fc 400 shash_destroy_free_data(&options);
6c88d577
JP
401
402 return error;
403}
404
6c88d577 405static int
149f577a 406reconfigure_iface(const struct ovsrec_interface *iface_cfg, struct iface *iface)
6c88d577 407{
149f577a 408 return set_up_iface(iface_cfg, iface, false);
6c88d577
JP
409}
410
0c6aea3f 411static bool
c69ee87c
BP
412check_iface_netdev(struct bridge *br OVS_UNUSED, struct iface *iface,
413 void *aux OVS_UNUSED)
0c6aea3f 414{
149f577a
JG
415 if (!iface->netdev) {
416 int error = set_up_iface(iface->cfg, iface, true);
417 if (error) {
418 VLOG_WARN("could not open netdev on %s, dropping: %s", iface->name,
419 strerror(error));
420 return false;
421 }
0c6aea3f 422 }
149f577a
JG
423
424 return true;
0c6aea3f
BP
425}
426
6ae39834 427static bool
67a4917b
BP
428check_iface_dp_ifidx(struct bridge *br, struct iface *iface,
429 void *aux OVS_UNUSED)
6ae39834 430{
6ae39834 431 if (iface->dp_ifidx >= 0) {
6ae39834
BP
432 VLOG_DBG("%s has interface %s on port %d",
433 dpif_name(br->dpif),
434 iface->name, iface->dp_ifidx);
435 return true;
436 } else {
437 VLOG_ERR("%s interface not in %s, dropping",
438 iface->name, dpif_name(br->dpif));
439 return false;
440 }
441}
442
795fe1fb 443static bool
67a4917b
BP
444set_iface_properties(struct bridge *br OVS_UNUSED, struct iface *iface,
445 void *aux OVS_UNUSED)
795fe1fb 446{
4d678233 447 /* Set policing attributes. */
76343538
BP
448 netdev_set_policing(iface->netdev,
449 iface->cfg->ingress_policing_rate,
450 iface->cfg->ingress_policing_burst);
4d678233
BP
451
452 /* Set MAC address of internal interfaces other than the local
453 * interface. */
454 if (iface->dp_ifidx != ODPP_LOCAL
455 && iface_is_internal(br, iface->name)) {
456 iface_set_mac(iface);
457 }
458
795fe1fb
BP
459 return true;
460}
461
6ae39834
BP
462/* Calls 'cb' for each interfaces in 'br', passing along the 'aux' argument.
463 * Deletes from 'br' all the interfaces for which 'cb' returns false, and then
464 * deletes from 'br' any ports that no longer have any interfaces. */
465static void
466iterate_and_prune_ifaces(struct bridge *br,
467 bool (*cb)(struct bridge *, struct iface *,
468 void *aux),
469 void *aux)
470{
471 size_t i, j;
472
473 for (i = 0; i < br->n_ports; ) {
474 struct port *port = br->ports[i];
475 for (j = 0; j < port->n_ifaces; ) {
476 struct iface *iface = port->ifaces[j];
477 if (cb(br, iface, aux)) {
478 j++;
479 } else {
480 iface_destroy(iface);
481 }
482 }
483
484 if (port->n_ifaces) {
485 i++;
486 } else {
487 VLOG_ERR("%s port has no interfaces, dropping", port->name);
488 port_destroy(port);
489 }
490 }
491}
492
cd11000b
BP
493/* Looks at the list of managers in 'ovs_cfg' and extracts their remote IP
494 * addresses and ports into '*managersp' and '*n_managersp'. The caller is
495 * responsible for freeing '*managersp' (with free()).
496 *
497 * You may be asking yourself "why does ovs-vswitchd care?", because
498 * ovsdb-server is responsible for connecting to the managers, and ovs-vswitchd
499 * should not be and in fact is not directly involved in that. But
500 * ovs-vswitchd needs to make sure that ovsdb-server can reach the managers, so
501 * it has to tell in-band control where the managers are to enable that.
502 */
503static void
504collect_managers(const struct ovsrec_open_vswitch *ovs_cfg,
505 struct sockaddr_in **managersp, size_t *n_managersp)
506{
507 struct sockaddr_in *managers = NULL;
508 size_t n_managers = 0;
509
510 if (ovs_cfg->n_managers > 0) {
511 size_t i;
512
513 managers = xmalloc(ovs_cfg->n_managers * sizeof *managers);
514 for (i = 0; i < ovs_cfg->n_managers; i++) {
515 const char *name = ovs_cfg->managers[i];
516 struct sockaddr_in *sin = &managers[i];
517
518 if ((!strncmp(name, "tcp:", 4)
519 && inet_parse_active(name + 4, JSONRPC_TCP_PORT, sin)) ||
520 (!strncmp(name, "ssl:", 4)
521 && inet_parse_active(name + 4, JSONRPC_SSL_PORT, sin))) {
522 n_managers++;
523 }
524 }
525 }
526
527 *managersp = managers;
528 *n_managersp = n_managers;
529}
530
c5187f17 531static void
76343538 532bridge_reconfigure(const struct ovsrec_open_vswitch *ovs_cfg)
064af421 533{
76343538
BP
534 struct shash old_br, new_br;
535 struct shash_node *node;
064af421 536 struct bridge *br, *next;
cd11000b
BP
537 struct sockaddr_in *managers;
538 size_t n_managers;
6ae39834 539 size_t i;
72b06300 540 int sflow_bridge_number;
064af421
BP
541
542 COVERAGE_INC(bridge_reconfigure);
543
cd11000b
BP
544 collect_managers(ovs_cfg, &managers, &n_managers);
545
632d136c 546 /* Collect old and new bridges. */
76343538
BP
547 shash_init(&old_br);
548 shash_init(&new_br);
064af421 549 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
76343538
BP
550 shash_add(&old_br, br->name, br);
551 }
552 for (i = 0; i < ovs_cfg->n_bridges; i++) {
553 const struct ovsrec_bridge *br_cfg = ovs_cfg->bridges[i];
554 if (!shash_add_once(&new_br, br_cfg->name, br_cfg)) {
555 VLOG_WARN("more than one bridge named %s", br_cfg->name);
556 }
064af421 557 }
064af421
BP
558
559 /* Get rid of deleted bridges and add new bridges. */
064af421 560 LIST_FOR_EACH_SAFE (br, next, struct bridge, node, &all_bridges) {
76343538
BP
561 struct ovsrec_bridge *br_cfg = shash_find_data(&new_br, br->name);
562 if (br_cfg) {
563 br->cfg = br_cfg;
564 } else {
064af421
BP
565 bridge_destroy(br);
566 }
567 }
76343538
BP
568 SHASH_FOR_EACH (node, &new_br) {
569 const char *br_name = node->name;
570 const struct ovsrec_bridge *br_cfg = node->data;
1a6f1e2a
JG
571 br = shash_find_data(&old_br, br_name);
572 if (br) {
573 /* If the bridge datapath type has changed, we need to tear it
574 * down and recreate. */
575 if (strcmp(br->cfg->datapath_type, br_cfg->datapath_type)) {
576 bridge_destroy(br);
577 bridge_create(br_cfg);
fa33d64a 578 }
1a6f1e2a
JG
579 } else {
580 bridge_create(br_cfg);
064af421
BP
581 }
582 }
76343538
BP
583 shash_destroy(&old_br);
584 shash_destroy(&new_br);
064af421 585
064af421
BP
586 /* Reconfigure all bridges. */
587 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
1a048029 588 bridge_reconfigure_one(br);
064af421
BP
589 }
590
591 /* Add and delete ports on all datapaths.
592 *
593 * The kernel will reject any attempt to add a given port to a datapath if
594 * that port already belongs to a different datapath, so we must do all
595 * port deletions before any port additions. */
596 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
597 struct odp_port *dpif_ports;
598 size_t n_dpif_ports;
76343538 599 struct shash want_ifaces;
064af421 600
c228a364 601 dpif_port_list(br->dpif, &dpif_ports, &n_dpif_ports);
064af421
BP
602 bridge_get_all_ifaces(br, &want_ifaces);
603 for (i = 0; i < n_dpif_ports; i++) {
604 const struct odp_port *p = &dpif_ports[i];
76343538 605 if (!shash_find(&want_ifaces, p->devname)
064af421 606 && strcmp(p->devname, br->name)) {
c228a364 607 int retval = dpif_port_del(br->dpif, p->port);
064af421 608 if (retval) {
b29ba128 609 VLOG_ERR("failed to remove %s interface from %s: %s",
c228a364 610 p->devname, dpif_name(br->dpif),
b29ba128 611 strerror(retval));
064af421
BP
612 }
613 }
614 }
76343538 615 shash_destroy(&want_ifaces);
064af421
BP
616 free(dpif_ports);
617 }
618 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
619 struct odp_port *dpif_ports;
620 size_t n_dpif_ports;
76343538
BP
621 struct shash cur_ifaces, want_ifaces;
622 struct shash_node *node;
064af421 623
76343538 624 /* Get the set of interfaces currently in this datapath. */
c228a364 625 dpif_port_list(br->dpif, &dpif_ports, &n_dpif_ports);
76343538 626 shash_init(&cur_ifaces);
064af421 627 for (i = 0; i < n_dpif_ports; i++) {
76343538 628 const char *name = dpif_ports[i].devname;
efdd9088 629 shash_add_once(&cur_ifaces, name, NULL);
064af421
BP
630 }
631 free(dpif_ports);
064af421 632
76343538
BP
633 /* Get the set of interfaces we want on this datapath. */
634 bridge_get_all_ifaces(br, &want_ifaces);
6c88d577 635
76343538
BP
636 SHASH_FOR_EACH (node, &want_ifaces) {
637 const char *if_name = node->name;
638 struct iface *iface = node->data;
35c979bf 639
76343538
BP
640 if (shash_find(&cur_ifaces, if_name)) {
641 /* Already exists, just reconfigure it. */
642 if (iface) {
149f577a 643 reconfigure_iface(iface->cfg, iface);
76343538
BP
644 }
645 } else {
646 /* Need to add to datapath. */
647 bool internal;
648 int error;
649
76343538 650 /* Add to datapath. */
a740f0de 651 internal = iface_is_internal(br, if_name);
76343538
BP
652 error = dpif_port_add(br->dpif, if_name,
653 internal ? ODP_PORT_INTERNAL : 0, NULL);
654 if (error == EFBIG) {
655 VLOG_ERR("ran out of valid port numbers on %s",
656 dpif_name(br->dpif));
657 break;
658 } else if (error) {
659 VLOG_ERR("failed to add %s interface to %s: %s",
660 if_name, dpif_name(br->dpif), strerror(error));
661 }
064af421
BP
662 }
663 }
76343538
BP
664 shash_destroy(&cur_ifaces);
665 shash_destroy(&want_ifaces);
064af421 666 }
72b06300 667 sflow_bridge_number = 0;
064af421
BP
668 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
669 uint8_t ea[8];
670 uint64_t dpid;
07c318f4
BP
671 struct iface *local_iface;
672 struct iface *hw_addr_iface;
093e47f4 673 char *dpid_string;
064af421 674
064af421 675 bridge_fetch_dp_ifaces(br);
064af421 676
149f577a 677 iterate_and_prune_ifaces(br, check_iface_netdev, NULL);
07c318f4 678 iterate_and_prune_ifaces(br, check_iface_dp_ifidx, NULL);
064af421
BP
679
680 /* Pick local port hardware address, datapath ID. */
07c318f4
BP
681 bridge_pick_local_hw_addr(br, ea, &hw_addr_iface);
682 local_iface = bridge_get_local_iface(br);
064af421 683 if (local_iface) {
07c318f4 684 int error = netdev_set_etheraddr(local_iface->netdev, ea);
064af421
BP
685 if (error) {
686 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
687 VLOG_ERR_RL(&rl, "bridge %s: failed to set bridge "
688 "Ethernet address: %s",
689 br->name, strerror(error));
690 }
691 }
692
07c318f4 693 dpid = bridge_pick_datapath_id(br, ea, hw_addr_iface);
064af421
BP
694 ofproto_set_datapath_id(br->ofproto, dpid);
695
fc09119a 696 dpid_string = xasprintf("%016"PRIx64, dpid);
093e47f4
BP
697 ovsrec_bridge_set_datapath_id(br->cfg, dpid_string);
698 free(dpid_string);
699
064af421 700 /* Set NetFlow configuration on this bridge. */
76343538
BP
701 if (br->cfg->netflow) {
702 struct ovsrec_netflow *nf_cfg = br->cfg->netflow;
703 struct netflow_options opts;
704
705 memset(&opts, 0, sizeof opts);
706
707 dpif_get_netflow_ids(br->dpif, &opts.engine_type, &opts.engine_id);
708 if (nf_cfg->engine_type) {
cd746526 709 opts.engine_type = *nf_cfg->engine_type;
76343538
BP
710 }
711 if (nf_cfg->engine_id) {
cd746526 712 opts.engine_id = *nf_cfg->engine_id;
76343538
BP
713 }
714
715 opts.active_timeout = nf_cfg->active_timeout;
716 if (!opts.active_timeout) {
717 opts.active_timeout = -1;
718 } else if (opts.active_timeout < 0) {
e9e2856e
JG
719 VLOG_WARN("bridge %s: active timeout interval set to negative "
720 "value, using default instead (%d seconds)", br->name,
721 NF_ACTIVE_TIMEOUT_DEFAULT);
722 opts.active_timeout = -1;
76343538
BP
723 }
724
725 opts.add_id_to_iface = nf_cfg->add_id_to_interface;
726 if (opts.add_id_to_iface) {
727 if (opts.engine_id > 0x7f) {
728 VLOG_WARN("bridge %s: netflow port mangling may conflict "
729 "with another vswitch, choose an engine id less "
730 "than 128", br->name);
731 }
732 if (br->n_ports > 508) {
733 VLOG_WARN("bridge %s: netflow port mangling will conflict "
734 "with another port when more than 508 ports are "
735 "used", br->name);
736 }
737 }
738
739 opts.collectors.n = nf_cfg->n_targets;
740 opts.collectors.names = nf_cfg->targets;
741 if (ofproto_set_netflow(br->ofproto, &opts)) {
742 VLOG_ERR("bridge %s: problem setting netflow collectors",
743 br->name);
744 }
745 } else {
746 ofproto_set_netflow(br->ofproto, NULL);
747 }
064af421 748
a4af0040
JP
749 /* Set sFlow configuration on this bridge. */
750 if (br->cfg->sflow) {
d49d354b 751 const struct ovsrec_sflow *sflow_cfg = br->cfg->sflow;
76ce9432 752 struct ovsrec_controller **controllers;
72b06300 753 struct ofproto_sflow_options oso;
76ce9432
BP
754 size_t n_controllers;
755 size_t i;
72b06300 756
a4af0040
JP
757 memset(&oso, 0, sizeof oso);
758
759 oso.targets.n = sflow_cfg->n_targets;
760 oso.targets.names = sflow_cfg->targets;
72b06300
BP
761
762 oso.sampling_rate = SFL_DEFAULT_SAMPLING_RATE;
a4af0040
JP
763 if (sflow_cfg->sampling) {
764 oso.sampling_rate = *sflow_cfg->sampling;
72b06300
BP
765 }
766
767 oso.polling_interval = SFL_DEFAULT_POLLING_INTERVAL;
a4af0040
JP
768 if (sflow_cfg->polling) {
769 oso.polling_interval = *sflow_cfg->polling;
72b06300
BP
770 }
771
772 oso.header_len = SFL_DEFAULT_HEADER_SIZE;
a4af0040
JP
773 if (sflow_cfg->header) {
774 oso.header_len = *sflow_cfg->header;
72b06300
BP
775 }
776
777 oso.sub_id = sflow_bridge_number++;
a4af0040
JP
778 oso.agent_device = sflow_cfg->agent;
779
76ce9432 780 oso.control_ip = NULL;
1a048029 781 n_controllers = bridge_get_controllers(br, &controllers);
76ce9432
BP
782 for (i = 0; i < n_controllers; i++) {
783 if (controllers[i]->local_ip) {
784 oso.control_ip = controllers[i]->local_ip;
785 break;
786 }
787 }
72b06300
BP
788 ofproto_set_sflow(br->ofproto, &oso);
789
7b99db05 790 /* Do not destroy oso.targets because it is owned by sflow_cfg. */
72b06300
BP
791 } else {
792 ofproto_set_sflow(br->ofproto, NULL);
793 }
794
064af421
BP
795 /* Update the controller and related settings. It would be more
796 * straightforward to call this from bridge_reconfigure_one(), but we
797 * can't do it there for two reasons. First, and most importantly, at
798 * that point we don't know the dp_ifidx of any interfaces that have
799 * been added to the bridge (because we haven't actually added them to
800 * the datapath). Second, at that point we haven't set the datapath ID
801 * yet; when a controller is configured, resetting the datapath ID will
802 * immediately disconnect from the controller, so it's better to set
803 * the datapath ID before the controller. */
1a048029 804 bridge_reconfigure_remotes(br, managers, n_managers);
064af421
BP
805 }
806 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
807 for (i = 0; i < br->n_ports; i++) {
808 struct port *port = br->ports[i];
c1c9c9c4 809 int j;
52df17e7 810
064af421 811 port_update_vlan_compat(port);
0c6aea3f 812 port_update_bonding(port);
c1c9c9c4
BP
813
814 for (j = 0; j < port->n_ifaces; j++) {
815 iface_update_qos(port->ifaces[j], port->cfg->qos);
816 }
064af421
BP
817 }
818 }
819 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
4d678233 820 iterate_and_prune_ifaces(br, set_iface_properties, NULL);
064af421 821 }
093e47f4 822
cd11000b 823 free(managers);
093e47f4
BP
824}
825
826static const char *
af6278e1
BP
827get_ovsrec_key_value(const struct ovsdb_idl_row *row,
828 const struct ovsdb_idl_column *column,
829 const char *key)
093e47f4 830{
af6278e1
BP
831 const struct ovsdb_datum *datum;
832 union ovsdb_atom atom;
833 unsigned int idx;
093e47f4 834
af6278e1
BP
835 datum = ovsdb_idl_get(row, column, OVSDB_TYPE_STRING, OVSDB_TYPE_STRING);
836 atom.string = (char *) key;
837 idx = ovsdb_datum_find_key(datum, &atom, OVSDB_TYPE_STRING);
838 return idx == UINT_MAX ? NULL : datum->values[idx].string;
064af421
BP
839}
840
c8143c88
BP
841static const char *
842bridge_get_other_config(const struct ovsrec_bridge *br_cfg, const char *key)
843{
af6278e1
BP
844 return get_ovsrec_key_value(&br_cfg->header_,
845 &ovsrec_bridge_col_other_config, key);
c8143c88
BP
846}
847
064af421
BP
848static void
849bridge_pick_local_hw_addr(struct bridge *br, uint8_t ea[ETH_ADDR_LEN],
07c318f4 850 struct iface **hw_addr_iface)
064af421 851{
093e47f4 852 const char *hwaddr;
064af421
BP
853 size_t i, j;
854 int error;
855
07c318f4 856 *hw_addr_iface = NULL;
064af421
BP
857
858 /* Did the user request a particular MAC? */
093e47f4
BP
859 hwaddr = bridge_get_other_config(br->cfg, "hwaddr");
860 if (hwaddr && eth_addr_from_string(hwaddr, ea)) {
064af421
BP
861 if (eth_addr_is_multicast(ea)) {
862 VLOG_ERR("bridge %s: cannot set MAC address to multicast "
863 "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
864 } else if (eth_addr_is_zero(ea)) {
865 VLOG_ERR("bridge %s: cannot set MAC address to zero", br->name);
866 } else {
867 return;
868 }
869 }
870
141f4942
BP
871 /* Otherwise choose the minimum non-local MAC address among all of the
872 * interfaces. */
064af421
BP
873 memset(ea, 0xff, sizeof ea);
874 for (i = 0; i < br->n_ports; i++) {
875 struct port *port = br->ports[i];
58b7527e 876 uint8_t iface_ea[ETH_ADDR_LEN];
58b7527e
BP
877 struct iface *iface;
878
879 /* Mirror output ports don't participate. */
064af421
BP
880 if (port->is_mirror_output_port) {
881 continue;
882 }
58b7527e
BP
883
884 /* Choose the MAC address to represent the port. */
76343538 885 if (port->cfg->mac && eth_addr_from_string(port->cfg->mac, iface_ea)) {
ba09980a
BP
886 /* Find the interface with this Ethernet address (if any) so that
887 * we can provide the correct devname to the caller. */
888 iface = NULL;
889 for (j = 0; j < port->n_ifaces; j++) {
890 struct iface *candidate = port->ifaces[j];
891 uint8_t candidate_ea[ETH_ADDR_LEN];
8fef8c71 892 if (!netdev_get_etheraddr(candidate->netdev, candidate_ea)
ba09980a
BP
893 && eth_addr_equals(iface_ea, candidate_ea)) {
894 iface = candidate;
895 }
896 }
58b7527e
BP
897 } else {
898 /* Choose the interface whose MAC address will represent the port.
899 * The Linux kernel bonding code always chooses the MAC address of
900 * the first slave added to a bond, and the Fedora networking
901 * scripts always add slaves to a bond in alphabetical order, so
902 * for compatibility we choose the interface with the name that is
903 * first in alphabetical order. */
904 iface = port->ifaces[0];
905 for (j = 1; j < port->n_ifaces; j++) {
906 struct iface *candidate = port->ifaces[j];
907 if (strcmp(candidate->name, iface->name) < 0) {
908 iface = candidate;
909 }
910 }
911
912 /* The local port doesn't count (since we're trying to choose its
141f4942
BP
913 * MAC address anyway). */
914 if (iface->dp_ifidx == ODPP_LOCAL) {
064af421
BP
915 continue;
916 }
58b7527e
BP
917
918 /* Grab MAC. */
07c318f4 919 error = netdev_get_etheraddr(iface->netdev, iface_ea);
58b7527e 920 if (error) {
064af421
BP
921 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
922 VLOG_ERR_RL(&rl, "failed to obtain Ethernet address of %s: %s",
923 iface->name, strerror(error));
58b7527e 924 continue;
064af421
BP
925 }
926 }
58b7527e
BP
927
928 /* Compare against our current choice. */
929 if (!eth_addr_is_multicast(iface_ea) &&
141f4942 930 !eth_addr_is_local(iface_ea) &&
58b7527e
BP
931 !eth_addr_is_reserved(iface_ea) &&
932 !eth_addr_is_zero(iface_ea) &&
933 memcmp(iface_ea, ea, ETH_ADDR_LEN) < 0)
934 {
0babc06f 935 memcpy(ea, iface_ea, ETH_ADDR_LEN);
8fef8c71 936 *hw_addr_iface = iface;
58b7527e 937 }
064af421 938 }
141f4942 939 if (eth_addr_is_multicast(ea)) {
064af421 940 memcpy(ea, br->default_ea, ETH_ADDR_LEN);
07c318f4 941 *hw_addr_iface = NULL;
064af421
BP
942 VLOG_WARN("bridge %s: using default bridge Ethernet "
943 "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
944 } else {
945 VLOG_DBG("bridge %s: using bridge Ethernet address "ETH_ADDR_FMT,
946 br->name, ETH_ADDR_ARGS(ea));
947 }
948}
949
950/* Choose and returns the datapath ID for bridge 'br' given that the bridge
951 * Ethernet address is 'bridge_ea'. If 'bridge_ea' is the Ethernet address of
07c318f4
BP
952 * an interface on 'br', then that interface must be passed in as
953 * 'hw_addr_iface'; if 'bridge_ea' was derived some other way, then
954 * 'hw_addr_iface' must be passed in as a null pointer. */
064af421
BP
955static uint64_t
956bridge_pick_datapath_id(struct bridge *br,
957 const uint8_t bridge_ea[ETH_ADDR_LEN],
07c318f4 958 struct iface *hw_addr_iface)
064af421
BP
959{
960 /*
961 * The procedure for choosing a bridge MAC address will, in the most
962 * ordinary case, also choose a unique MAC that we can use as a datapath
963 * ID. In some special cases, though, multiple bridges will end up with
964 * the same MAC address. This is OK for the bridges, but it will confuse
965 * the OpenFlow controller, because each datapath needs a unique datapath
966 * ID.
967 *
968 * Datapath IDs must be unique. It is also very desirable that they be
969 * stable from one run to the next, so that policy set on a datapath
970 * "sticks".
971 */
093e47f4 972 const char *datapath_id;
064af421
BP
973 uint64_t dpid;
974
093e47f4
BP
975 datapath_id = bridge_get_other_config(br->cfg, "datapath-id");
976 if (datapath_id && dpid_from_string(datapath_id, &dpid)) {
064af421
BP
977 return dpid;
978 }
979
07c318f4 980 if (hw_addr_iface) {
064af421 981 int vlan;
b2f17b15 982 if (!netdev_get_vlan_vid(hw_addr_iface->netdev, &vlan)) {
064af421
BP
983 /*
984 * A bridge whose MAC address is taken from a VLAN network device
985 * (that is, a network device created with vconfig(8) or similar
986 * tool) will have the same MAC address as a bridge on the VLAN
987 * device's physical network device.
988 *
989 * Handle this case by hashing the physical network device MAC
990 * along with the VLAN identifier.
991 */
992 uint8_t buf[ETH_ADDR_LEN + 2];
993 memcpy(buf, bridge_ea, ETH_ADDR_LEN);
994 buf[ETH_ADDR_LEN] = vlan >> 8;
995 buf[ETH_ADDR_LEN + 1] = vlan;
996 return dpid_from_hash(buf, sizeof buf);
997 } else {
998 /*
999 * Assume that this bridge's MAC address is unique, since it
1000 * doesn't fit any of the cases we handle specially.
1001 */
1002 }
1003 } else {
1004 /*
1005 * A purely internal bridge, that is, one that has no non-virtual
1006 * network devices on it at all, is more difficult because it has no
1007 * natural unique identifier at all.
1008 *
1009 * When the host is a XenServer, we handle this case by hashing the
1010 * host's UUID with the name of the bridge. Names of bridges are
1011 * persistent across XenServer reboots, although they can be reused if
1012 * an internal network is destroyed and then a new one is later
1013 * created, so this is fairly effective.
1014 *
1015 * When the host is not a XenServer, we punt by using a random MAC
1016 * address on each run.
1017 */
1018 const char *host_uuid = xenserver_get_host_uuid();
1019 if (host_uuid) {
1020 char *combined = xasprintf("%s,%s", host_uuid, br->name);
1021 dpid = dpid_from_hash(combined, strlen(combined));
1022 free(combined);
1023 return dpid;
1024 }
1025 }
1026
1027 return eth_addr_to_uint64(bridge_ea);
1028}
1029
1030static uint64_t
1031dpid_from_hash(const void *data, size_t n)
1032{
5eccf359 1033 uint8_t hash[SHA1_DIGEST_SIZE];
064af421
BP
1034
1035 BUILD_ASSERT_DECL(sizeof hash >= ETH_ADDR_LEN);
5eccf359 1036 sha1_bytes(data, n, hash);
064af421
BP
1037 eth_addr_mark_random(hash);
1038 return eth_addr_to_uint64(hash);
1039}
1040
018f1525
BP
1041static void
1042iface_refresh_stats(struct iface *iface)
1043{
1044 struct iface_stat {
1045 char *name;
1046 int offset;
1047 };
1048 static const struct iface_stat iface_stats[] = {
1049 { "rx_packets", offsetof(struct netdev_stats, rx_packets) },
1050 { "tx_packets", offsetof(struct netdev_stats, tx_packets) },
1051 { "rx_bytes", offsetof(struct netdev_stats, rx_bytes) },
1052 { "tx_bytes", offsetof(struct netdev_stats, tx_bytes) },
1053 { "rx_dropped", offsetof(struct netdev_stats, rx_dropped) },
1054 { "tx_dropped", offsetof(struct netdev_stats, tx_dropped) },
1055 { "rx_errors", offsetof(struct netdev_stats, rx_errors) },
1056 { "tx_errors", offsetof(struct netdev_stats, tx_errors) },
1057 { "rx_frame_err", offsetof(struct netdev_stats, rx_frame_errors) },
1058 { "rx_over_err", offsetof(struct netdev_stats, rx_over_errors) },
1059 { "rx_crc_err", offsetof(struct netdev_stats, rx_crc_errors) },
1060 { "collisions", offsetof(struct netdev_stats, collisions) },
1061 };
1062 enum { N_STATS = ARRAY_SIZE(iface_stats) };
1063 const struct iface_stat *s;
1064
1065 char *keys[N_STATS];
1066 int64_t values[N_STATS];
1067 int n;
1068
1069 struct netdev_stats stats;
1070
1071 /* Intentionally ignore return value, since errors will set 'stats' to
1072 * all-1s, and we will deal with that correctly below. */
1073 netdev_get_stats(iface->netdev, &stats);
1074
1075 n = 0;
1076 for (s = iface_stats; s < &iface_stats[N_STATS]; s++) {
1077 uint64_t value = *(uint64_t *) (((char *) &stats) + s->offset);
1078 if (value != UINT64_MAX) {
1079 keys[n] = s->name;
1080 values[n] = value;
1081 n++;
1082 }
1083 }
1084
1085 ovsrec_interface_set_statistics(iface->cfg, keys, values, n);
1086}
1087
c5187f17 1088void
064af421
BP
1089bridge_run(void)
1090{
d54ff998
BP
1091 const struct ovsrec_open_vswitch *cfg;
1092
c5187f17 1093 bool datapath_destroyed;
d54ff998 1094 bool database_changed;
c5187f17 1095 struct bridge *br;
064af421 1096
c5187f17
BP
1097 /* Let each bridge do the work that it needs to do. */
1098 datapath_destroyed = false;
1099 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
064af421
BP
1100 int error = bridge_run_one(br);
1101 if (error) {
1102 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1103 VLOG_ERR_RL(&rl, "bridge %s: datapath was destroyed externally, "
1104 "forcing reconfiguration", br->name);
c5187f17
BP
1105 datapath_destroyed = true;
1106 }
1107 }
1108
1109 /* (Re)configure if necessary. */
d54ff998
BP
1110 database_changed = ovsdb_idl_run(idl);
1111 cfg = ovsrec_open_vswitch_first(idl);
1112 if (database_changed || datapath_destroyed) {
c5187f17
BP
1113 if (cfg) {
1114 struct ovsdb_idl_txn *txn = ovsdb_idl_txn_create(idl);
1115
1116 bridge_configure_once(cfg);
1117 bridge_reconfigure(cfg);
1118
1119 ovsrec_open_vswitch_set_cur_cfg(cfg, cfg->next_cfg);
1120 ovsdb_idl_txn_commit(txn);
1121 ovsdb_idl_txn_destroy(txn); /* XXX */
1e0b752d
BP
1122 } else {
1123 /* We still need to reconfigure to avoid dangling pointers to
1124 * now-destroyed ovsrec structures inside bridge data. */
1125 static const struct ovsrec_open_vswitch null_cfg;
1126
1127 bridge_reconfigure(&null_cfg);
064af421
BP
1128 }
1129 }
018f1525 1130
d54ff998
BP
1131#ifdef HAVE_OPENSSL
1132 /* Re-configure SSL. We do this on every trip through the main loop,
1133 * instead of just when the database changes, because the contents of the
1134 * key and certificate files can change without the database changing. */
1135 if (cfg && cfg->ssl) {
1136 const struct ovsrec_ssl *ssl = cfg->ssl;
1137
1138 stream_ssl_set_key_and_cert(ssl->private_key, ssl->certificate);
1139 stream_ssl_set_ca_cert_file(ssl->ca_cert, ssl->bootstrap_ca_cert);
1140 }
1141#endif
1142
018f1525
BP
1143 /* Refresh interface stats if necessary. */
1144 if (time_msec() >= iface_stats_timer) {
1145 struct ovsdb_idl_txn *txn;
1146
1147 txn = ovsdb_idl_txn_create(idl);
1148 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
1149 size_t i;
1150
1151 for (i = 0; i < br->n_ports; i++) {
1152 struct port *port = br->ports[i];
1153 size_t j;
1154
1155 for (j = 0; j < port->n_ifaces; j++) {
1156 struct iface *iface = port->ifaces[j];
1157 iface_refresh_stats(iface);
1158 }
1159 }
1160 }
1161 ovsdb_idl_txn_commit(txn);
1162 ovsdb_idl_txn_destroy(txn); /* XXX */
1163
1164 iface_stats_timer = time_msec() + IFACE_STATS_INTERVAL;
1165 }
064af421
BP
1166}
1167
1168void
1169bridge_wait(void)
1170{
1171 struct bridge *br;
1172
1173 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
1174 ofproto_wait(br->ofproto);
76ce9432 1175 if (ofproto_has_controller(br->ofproto)) {
064af421
BP
1176 continue;
1177 }
1178
93dfc067 1179 mac_learning_wait(br->ml);
064af421 1180 bond_wait(br);
064af421 1181 }
c5187f17 1182 ovsdb_idl_wait(idl);
018f1525 1183 poll_timer_wait_until(iface_stats_timer);
064af421
BP
1184}
1185
1186/* Forces 'br' to revalidate all of its flows. This is appropriate when 'br''s
1187 * configuration changes. */
1188static void
1189bridge_flush(struct bridge *br)
1190{
1191 COVERAGE_INC(bridge_flush);
1192 br->flush = true;
93dfc067 1193 mac_learning_flush(br->ml);
064af421 1194}
07c318f4
BP
1195
1196/* Returns the 'br' interface for the ODPP_LOCAL port, or null if 'br' has no
1197 * such interface. */
1198static struct iface *
1199bridge_get_local_iface(struct bridge *br)
1200{
1201 size_t i, j;
1202
1203 for (i = 0; i < br->n_ports; i++) {
1204 struct port *port = br->ports[i];
1205 for (j = 0; j < port->n_ifaces; j++) {
1206 struct iface *iface = port->ifaces[j];
1207 if (iface->dp_ifidx == ODPP_LOCAL) {
1208 return iface;
1209 }
1210 }
1211 }
1212
1213 return NULL;
1214}
064af421 1215\f
8c4c1387
BP
1216/* Bridge unixctl user interface functions. */
1217static void
8ca79daa 1218bridge_unixctl_fdb_show(struct unixctl_conn *conn,
c69ee87c 1219 const char *args, void *aux OVS_UNUSED)
8c4c1387
BP
1220{
1221 struct ds ds = DS_EMPTY_INITIALIZER;
1222 const struct bridge *br;
93dfc067 1223 const struct mac_entry *e;
8c4c1387
BP
1224
1225 br = bridge_lookup(args);
1226 if (!br) {
1227 unixctl_command_reply(conn, 501, "no such bridge");
1228 return;
1229 }
1230
1231 ds_put_cstr(&ds, " port VLAN MAC Age\n");
93dfc067
JG
1232 LIST_FOR_EACH (e, struct mac_entry, lru_node, &br->ml->lrus) {
1233 if (e->port < 0 || e->port >= br->n_ports) {
1234 continue;
8c4c1387 1235 }
93dfc067
JG
1236 ds_put_format(&ds, "%5d %4d "ETH_ADDR_FMT" %3d\n",
1237 br->ports[e->port]->ifaces[0]->dp_ifidx,
1238 e->vlan, ETH_ADDR_ARGS(e->mac), mac_entry_age(e));
8c4c1387
BP
1239 }
1240 unixctl_command_reply(conn, 200, ds_cstr(&ds));
1241 ds_destroy(&ds);
1242}
1243\f
064af421 1244/* Bridge reconfiguration functions. */
064af421 1245static struct bridge *
1a6f1e2a 1246bridge_create(const struct ovsrec_bridge *br_cfg)
064af421
BP
1247{
1248 struct bridge *br;
1249 int error;
1250
1a6f1e2a 1251 assert(!bridge_lookup(br_cfg->name));
ec6fde61 1252 br = xzalloc(sizeof *br);
064af421 1253
1a6f1e2a
JG
1254 error = dpif_create_and_open(br_cfg->name, br_cfg->datapath_type,
1255 &br->dpif);
efacbce6 1256 if (error) {
064af421
BP
1257 free(br);
1258 return NULL;
1259 }
efacbce6 1260 dpif_flow_flush(br->dpif);
064af421 1261
1a6f1e2a
JG
1262 error = ofproto_create(br_cfg->name, br_cfg->datapath_type, &bridge_ofhooks,
1263 br, &br->ofproto);
064af421 1264 if (error) {
1a6f1e2a
JG
1265 VLOG_ERR("failed to create switch %s: %s", br_cfg->name,
1266 strerror(error));
c228a364
BP
1267 dpif_delete(br->dpif);
1268 dpif_close(br->dpif);
064af421
BP
1269 free(br);
1270 return NULL;
1271 }
1272
1a6f1e2a
JG
1273 br->name = xstrdup(br_cfg->name);
1274 br->cfg = br_cfg;
064af421 1275 br->ml = mac_learning_create();
70150daf 1276 eth_addr_nicira_random(br->default_ea);
064af421
BP
1277
1278 port_array_init(&br->ifaces);
1279
836fad5e 1280 shash_init(&br->port_by_name);
4a1ee6ae
BP
1281 shash_init(&br->iface_by_name);
1282
064af421 1283 br->flush = false;
064af421
BP
1284
1285 list_push_back(&all_bridges, &br->node);
1286
c228a364 1287 VLOG_INFO("created bridge %s on %s", br->name, dpif_name(br->dpif));
064af421
BP
1288
1289 return br;
1290}
1291
1292static void
1293bridge_destroy(struct bridge *br)
1294{
1295 if (br) {
1296 int error;
1297
1298 while (br->n_ports > 0) {
1299 port_destroy(br->ports[br->n_ports - 1]);
1300 }
1301 list_remove(&br->node);
c228a364 1302 error = dpif_delete(br->dpif);
064af421 1303 if (error && error != ENOENT) {
b29ba128 1304 VLOG_ERR("failed to delete %s: %s",
c228a364 1305 dpif_name(br->dpif), strerror(error));
064af421 1306 }
c228a364 1307 dpif_close(br->dpif);
064af421 1308 ofproto_destroy(br->ofproto);
064af421
BP
1309 mac_learning_destroy(br->ml);
1310 port_array_destroy(&br->ifaces);
836fad5e 1311 shash_destroy(&br->port_by_name);
4a1ee6ae 1312 shash_destroy(&br->iface_by_name);
064af421
BP
1313 free(br->ports);
1314 free(br->name);
1315 free(br);
1316 }
1317}
1318
1319static struct bridge *
1320bridge_lookup(const char *name)
1321{
1322 struct bridge *br;
1323
1324 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
1325 if (!strcmp(br->name, name)) {
1326 return br;
1327 }
1328 }
1329 return NULL;
1330}
1331
4f2cad2c
JP
1332/* Handle requests for a listing of all flows known by the OpenFlow
1333 * stack, including those normally hidden. */
1334static void
8ca79daa 1335bridge_unixctl_dump_flows(struct unixctl_conn *conn,
c69ee87c 1336 const char *args, void *aux OVS_UNUSED)
4f2cad2c
JP
1337{
1338 struct bridge *br;
1339 struct ds results;
1340
1341 br = bridge_lookup(args);
1342 if (!br) {
1343 unixctl_command_reply(conn, 501, "Unknown bridge");
1344 return;
1345 }
1346
1347 ds_init(&results);
1348 ofproto_get_all_flows(br->ofproto, &results);
1349
1350 unixctl_command_reply(conn, 200, ds_cstr(&results));
1351 ds_destroy(&results);
1352}
1353
fa05809b
BP
1354/* "bridge/reconnect [BRIDGE]": makes BRIDGE drop all of its controller
1355 * connections and reconnect. If BRIDGE is not specified, then all bridges
1356 * drop their controller connections and reconnect. */
1357static void
1358bridge_unixctl_reconnect(struct unixctl_conn *conn,
1359 const char *args, void *aux OVS_UNUSED)
1360{
1361 struct bridge *br;
1362 if (args[0] != '\0') {
1363 br = bridge_lookup(args);
1364 if (!br) {
1365 unixctl_command_reply(conn, 501, "Unknown bridge");
1366 return;
1367 }
1368 ofproto_reconnect_controllers(br->ofproto);
1369 } else {
1370 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
1371 ofproto_reconnect_controllers(br->ofproto);
1372 }
1373 }
1374 unixctl_command_reply(conn, 200, NULL);
1375}
1376
064af421
BP
1377static int
1378bridge_run_one(struct bridge *br)
1379{
1380 int error;
1381
1382 error = ofproto_run1(br->ofproto);
1383 if (error) {
1384 return error;
1385 }
1386
93dfc067 1387 mac_learning_run(br->ml, ofproto_get_revalidate_set(br->ofproto));
064af421 1388 bond_run(br);
064af421
BP
1389
1390 error = ofproto_run2(br->ofproto, br->flush);
1391 br->flush = false;
1392
1393 return error;
1394}
1395
76ce9432 1396static size_t
1a048029 1397bridge_get_controllers(const struct bridge *br,
76ce9432 1398 struct ovsrec_controller ***controllersp)
064af421 1399{
76ce9432
BP
1400 struct ovsrec_controller **controllers;
1401 size_t n_controllers;
064af421 1402
1a048029
JP
1403 controllers = br->cfg->controller;
1404 n_controllers = br->cfg->n_controller;
76343538 1405
76ce9432
BP
1406 if (n_controllers == 1 && !strcmp(controllers[0]->target, "none")) {
1407 controllers = NULL;
1408 n_controllers = 0;
064af421 1409 }
76343538 1410
76ce9432
BP
1411 if (controllersp) {
1412 *controllersp = controllers;
1413 }
1414 return n_controllers;
064af421
BP
1415}
1416
1417static void
1a048029 1418bridge_reconfigure_one(struct bridge *br)
064af421 1419{
76343538 1420 struct shash old_ports, new_ports;
064af421
BP
1421 struct svec listeners, old_listeners;
1422 struct svec snoops, old_snoops;
76343538 1423 struct shash_node *node;
31681a5d 1424 enum ofproto_fail_mode fail_mode;
6ae39834 1425 size_t i;
064af421
BP
1426
1427 /* Collect old ports. */
76343538 1428 shash_init(&old_ports);
064af421 1429 for (i = 0; i < br->n_ports; i++) {
76343538 1430 shash_add(&old_ports, br->ports[i]->name, br->ports[i]);
064af421 1431 }
064af421
BP
1432
1433 /* Collect new ports. */
76343538
BP
1434 shash_init(&new_ports);
1435 for (i = 0; i < br->cfg->n_ports; i++) {
1436 const char *name = br->cfg->ports[i]->name;
1437 if (!shash_add_once(&new_ports, name, br->cfg->ports[i])) {
1438 VLOG_WARN("bridge %s: %s specified twice as bridge port",
1439 br->name, name);
1440 }
1441 }
e073f944
BP
1442
1443 /* If we have a controller, then we need a local port. Complain if the
1444 * user didn't specify one.
1445 *
1446 * XXX perhaps we should synthesize a port ourselves in this case. */
1a048029 1447 if (bridge_get_controllers(br, NULL)) {
72865317
BP
1448 char local_name[IF_NAMESIZE];
1449 int error;
1450
1451 error = dpif_port_get_name(br->dpif, ODPP_LOCAL,
1452 local_name, sizeof local_name);
e073f944
BP
1453 if (!error && !shash_find(&new_ports, local_name)) {
1454 VLOG_WARN("bridge %s: controller specified but no local port "
1455 "(port named %s) defined",
1456 br->name, local_name);
72865317 1457 }
064af421 1458 }
064af421 1459
4a1ee6ae
BP
1460 /* Get rid of deleted ports.
1461 * Get rid of deleted interfaces on ports that still exist. */
76343538 1462 SHASH_FOR_EACH (node, &old_ports) {
4a1ee6ae
BP
1463 struct port *port = node->data;
1464 const struct ovsrec_port *port_cfg;
1465
1466 port_cfg = shash_find_data(&new_ports, node->name);
1467 if (!port_cfg) {
1468 port_destroy(port);
1469 } else {
1470 port_del_ifaces(port, port_cfg);
064af421
BP
1471 }
1472 }
4a1ee6ae
BP
1473
1474 /* Create new ports.
1475 * Add new interfaces to existing ports.
1476 * Reconfigure existing ports. */
76343538
BP
1477 SHASH_FOR_EACH (node, &new_ports) {
1478 struct port *port = shash_find_data(&old_ports, node->name);
1479 if (!port) {
1480 port = port_create(br, node->name);
064af421 1481 }
ceb4559f 1482
76343538 1483 port_reconfigure(port, node->data);
ceb4559f
JG
1484 if (!port->n_ifaces) {
1485 VLOG_WARN("bridge %s: port %s has no interfaces, dropping",
1486 br->name, port->name);
1487 port_destroy(port);
1488 }
064af421 1489 }
76343538
BP
1490 shash_destroy(&old_ports);
1491 shash_destroy(&new_ports);
064af421 1492
31681a5d
JP
1493 /* Set the fail-mode */
1494 fail_mode = !br->cfg->fail_mode
1495 || !strcmp(br->cfg->fail_mode, "standalone")
1496 ? OFPROTO_FAIL_STANDALONE
1497 : OFPROTO_FAIL_SECURE;
abdfe474
JP
1498 if ((ofproto_get_fail_mode(br->ofproto) != fail_mode)
1499 && !ofproto_has_controller(br->ofproto)) {
1500 ofproto_flush_flows(br->ofproto);
1501 }
31681a5d
JP
1502 ofproto_set_fail_mode(br->ofproto, fail_mode);
1503
064af421
BP
1504 /* Delete all flows if we're switching from connected to standalone or vice
1505 * versa. (XXX Should we delete all flows if we are switching from one
1506 * controller to another?) */
1507
5a243150 1508 /* Configure OpenFlow management listener. */
76343538
BP
1509 svec_init(&listeners);
1510 svec_add_nocopy(&listeners, xasprintf("punix:%s/%s.mgmt",
1511 ovs_rundir, br->name));
1512 svec_init(&old_listeners);
1513 ofproto_get_listeners(br->ofproto, &old_listeners);
1514 if (!svec_equal(&listeners, &old_listeners)) {
1515 ofproto_set_listeners(br->ofproto, &listeners);
1516 }
1517 svec_destroy(&listeners);
1518 svec_destroy(&old_listeners);
064af421 1519
5a243150 1520 /* Configure OpenFlow controller connection snooping. */
76343538
BP
1521 svec_init(&snoops);
1522 svec_add_nocopy(&snoops, xasprintf("punix:%s/%s.snoop",
1523 ovs_rundir, br->name));
1524 svec_init(&old_snoops);
1525 ofproto_get_snoops(br->ofproto, &old_snoops);
1526 if (!svec_equal(&snoops, &old_snoops)) {
1527 ofproto_set_snoops(br->ofproto, &snoops);
1528 }
1529 svec_destroy(&snoops);
1530 svec_destroy(&old_snoops);
76343538 1531
064af421
BP
1532 mirror_reconfigure(br);
1533}
1534
1535static void
1a048029 1536bridge_reconfigure_remotes(struct bridge *br,
11bbff1b
BP
1537 const struct sockaddr_in *managers,
1538 size_t n_managers)
064af421 1539{
76ce9432
BP
1540 struct ovsrec_controller **controllers;
1541 size_t n_controllers;
064af421 1542
cd11000b
BP
1543 ofproto_set_extra_in_band_remotes(br->ofproto, managers, n_managers);
1544
1a048029 1545 n_controllers = bridge_get_controllers(br, &controllers);
76ce9432 1546 if (ofproto_has_controller(br->ofproto) != (n_controllers != 0)) {
064af421
BP
1547 ofproto_flush_flows(br->ofproto);
1548 }
064af421 1549
76ce9432 1550 if (!n_controllers) {
064af421
BP
1551 union ofp_action action;
1552 flow_t flow;
1553
76ce9432
BP
1554 /* Clear out controllers. */
1555 ofproto_set_controllers(br->ofproto, NULL, 0);
1556
abdfe474
JP
1557 /* If there are no controllers and the bridge is in standalone
1558 * mode, set up a flow that matches every packet and directs
1559 * them to OFPP_NORMAL (which goes to us). Otherwise, the
1560 * switch is in secure mode and we won't pass any traffic until
1561 * a controller has been defined and it tells us to do so. */
1562 if (ofproto_get_fail_mode(br->ofproto) == OFPROTO_FAIL_STANDALONE) {
1563 memset(&action, 0, sizeof action);
1564 action.type = htons(OFPAT_OUTPUT);
1565 action.output.len = htons(sizeof action);
1566 action.output.port = htons(OFPP_NORMAL);
1567 memset(&flow, 0, sizeof flow);
1568 ofproto_add_flow(br->ofproto, &flow, OVSFW_ALL, 0, &action, 1, 0);
1569 }
76ce9432
BP
1570 } else {
1571 struct ofproto_controller *ocs;
1572 size_t i;
1573
1574 ocs = xmalloc(n_controllers * sizeof *ocs);
1575 for (i = 0; i < n_controllers; i++) {
1576 struct ovsrec_controller *c = controllers[i];
1577 struct ofproto_controller *oc = &ocs[i];
1578
1579 if (strcmp(c->target, "discover")) {
1580 struct iface *local_iface;
1581 struct in_addr ip;
1582
1583 local_iface = bridge_get_local_iface(br);
1584 if (local_iface && c->local_ip
1585 && inet_aton(c->local_ip, &ip)) {
1586 struct netdev *netdev = local_iface->netdev;
1587 struct in_addr mask, gateway;
1588
1589 if (!c->local_netmask
1590 || !inet_aton(c->local_netmask, &mask)) {
1591 mask.s_addr = 0;
1592 }
1593 if (!c->local_gateway
1594 || !inet_aton(c->local_gateway, &gateway)) {
1595 gateway.s_addr = 0;
1596 }
064af421 1597
76ce9432
BP
1598 netdev_turn_flags_on(netdev, NETDEV_UP, true);
1599 if (!mask.s_addr) {
1600 mask.s_addr = guess_netmask(ip.s_addr);
1601 }
1602 if (!netdev_set_in4(netdev, ip, mask)) {
1603 VLOG_INFO("bridge %s: configured IP address "IP_FMT", "
1604 "netmask "IP_FMT,
1605 br->name, IP_ARGS(&ip.s_addr),
1606 IP_ARGS(&mask.s_addr));
1607 }
1608
1609 if (gateway.s_addr) {
1610 if (!netdev_add_router(netdev, gateway)) {
1611 VLOG_INFO("bridge %s: configured gateway "IP_FMT,
1612 br->name, IP_ARGS(&gateway.s_addr));
1613 }
1614 }
1615 }
1616 }
1617
1618 oc->target = c->target;
1619 oc->max_backoff = c->max_backoff ? *c->max_backoff / 1000 : 8;
1620 oc->probe_interval = (c->inactivity_probe
1621 ? *c->inactivity_probe / 1000 : 5);
76ce9432
BP
1622 oc->band = (!c->connection_mode
1623 || !strcmp(c->connection_mode, "in-band")
1624 ? OFPROTO_IN_BAND
1625 : OFPROTO_OUT_OF_BAND);
1626 oc->accept_re = c->discover_accept_regex;
1627 oc->update_resolv_conf = c->discover_update_resolv_conf;
1628 oc->rate_limit = (c->controller_rate_limit
1629 ? *c->controller_rate_limit : 0);
1630 oc->burst_limit = (c->controller_burst_limit
1631 ? *c->controller_burst_limit : 0);
1632 }
1633 ofproto_set_controllers(br->ofproto, ocs, n_controllers);
1634 free(ocs);
064af421 1635 }
064af421
BP
1636}
1637
1638static void
76343538 1639bridge_get_all_ifaces(const struct bridge *br, struct shash *ifaces)
064af421
BP
1640{
1641 size_t i, j;
1642
76343538 1643 shash_init(ifaces);
064af421
BP
1644 for (i = 0; i < br->n_ports; i++) {
1645 struct port *port = br->ports[i];
1646 for (j = 0; j < port->n_ifaces; j++) {
1647 struct iface *iface = port->ifaces[j];
76343538 1648 shash_add_once(ifaces, iface->name, iface);
064af421 1649 }
76343538
BP
1650 if (port->n_ifaces > 1 && port->cfg->bond_fake_iface) {
1651 shash_add_once(ifaces, port->name, NULL);
35c979bf 1652 }
064af421 1653 }
064af421
BP
1654}
1655
1656/* For robustness, in case the administrator moves around datapath ports behind
1657 * our back, we re-check all the datapath port numbers here.
1658 *
1659 * This function will set the 'dp_ifidx' members of interfaces that have
1660 * disappeared to -1, so only call this function from a context where those
1661 * 'struct iface's will be removed from the bridge. Otherwise, the -1
1662 * 'dp_ifidx'es will cause trouble later when we try to send them to the
1663 * datapath, which doesn't support UINT16_MAX+1 ports. */
1664static void
1665bridge_fetch_dp_ifaces(struct bridge *br)
1666{
1667 struct odp_port *dpif_ports;
1668 size_t n_dpif_ports;
1669 size_t i, j;
1670
1671 /* Reset all interface numbers. */
1672 for (i = 0; i < br->n_ports; i++) {
1673 struct port *port = br->ports[i];
1674 for (j = 0; j < port->n_ifaces; j++) {
1675 struct iface *iface = port->ifaces[j];
1676 iface->dp_ifidx = -1;
1677 }
1678 }
1679 port_array_clear(&br->ifaces);
1680
c228a364 1681 dpif_port_list(br->dpif, &dpif_ports, &n_dpif_ports);
064af421
BP
1682 for (i = 0; i < n_dpif_ports; i++) {
1683 struct odp_port *p = &dpif_ports[i];
1684 struct iface *iface = iface_lookup(br, p->devname);
1685 if (iface) {
1686 if (iface->dp_ifidx >= 0) {
b29ba128 1687 VLOG_WARN("%s reported interface %s twice",
c228a364 1688 dpif_name(br->dpif), p->devname);
064af421 1689 } else if (iface_from_dp_ifidx(br, p->port)) {
b29ba128 1690 VLOG_WARN("%s reported interface %"PRIu16" twice",
c228a364 1691 dpif_name(br->dpif), p->port);
064af421
BP
1692 } else {
1693 port_array_set(&br->ifaces, p->port, iface);
1694 iface->dp_ifidx = p->port;
1695 }
093e47f4
BP
1696
1697 if (iface->cfg) {
1698 int64_t ofport = (iface->dp_ifidx >= 0
1699 ? odp_port_to_ofp_port(iface->dp_ifidx)
1700 : -1);
1701 ovsrec_interface_set_ofport(iface->cfg, &ofport, 1);
1702 }
064af421
BP
1703 }
1704 }
1705 free(dpif_ports);
1706}
1707\f
1708/* Bridge packet processing functions. */
1709
da285df4
BP
1710static int
1711bond_hash(const uint8_t mac[ETH_ADDR_LEN])
1712{
1713 return hash_bytes(mac, ETH_ADDR_LEN, 0) & BOND_MASK;
1714}
1715
064af421
BP
1716static struct bond_entry *
1717lookup_bond_entry(const struct port *port, const uint8_t mac[ETH_ADDR_LEN])
1718{
da285df4 1719 return &port->bond_hash[bond_hash(mac)];
064af421
BP
1720}
1721
1722static int
1723bond_choose_iface(const struct port *port)
1724{
8b2a2f4a
JG
1725 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
1726 size_t i, best_down_slave = -1;
1727 long long next_delay_expiration = LLONG_MAX;
1728
064af421 1729 for (i = 0; i < port->n_ifaces; i++) {
8b2a2f4a
JG
1730 struct iface *iface = port->ifaces[i];
1731
1732 if (iface->enabled) {
064af421 1733 return i;
8b2a2f4a
JG
1734 } else if (iface->delay_expires < next_delay_expiration) {
1735 best_down_slave = i;
1736 next_delay_expiration = iface->delay_expires;
064af421
BP
1737 }
1738 }
8b2a2f4a
JG
1739
1740 if (best_down_slave != -1) {
1741 struct iface *iface = port->ifaces[best_down_slave];
1742
1743 VLOG_INFO_RL(&rl, "interface %s: skipping remaining %lli ms updelay "
1744 "since no other interface is up", iface->name,
1745 iface->delay_expires - time_msec());
1746 bond_enable_slave(iface, true);
1747 }
1748
1749 return best_down_slave;
064af421
BP
1750}
1751
1752static bool
2303f3b2 1753choose_output_iface(const struct port *port, const uint8_t *dl_src,
064af421
BP
1754 uint16_t *dp_ifidx, tag_type *tags)
1755{
1756 struct iface *iface;
1757
1758 assert(port->n_ifaces);
1759 if (port->n_ifaces == 1) {
1760 iface = port->ifaces[0];
1761 } else {
2303f3b2 1762 struct bond_entry *e = lookup_bond_entry(port, dl_src);
064af421
BP
1763 if (e->iface_idx < 0 || e->iface_idx >= port->n_ifaces
1764 || !port->ifaces[e->iface_idx]->enabled) {
1765 /* XXX select interface properly. The current interface selection
1766 * is only good for testing the rebalancing code. */
1767 e->iface_idx = bond_choose_iface(port);
1768 if (e->iface_idx < 0) {
1769 *tags |= port->no_ifaces_tag;
1770 return false;
1771 }
1772 e->iface_tag = tag_create_random();
85c74638 1773 ((struct port *) port)->bond_compat_is_stale = true;
064af421
BP
1774 }
1775 *tags |= e->iface_tag;
1776 iface = port->ifaces[e->iface_idx];
1777 }
1778 *dp_ifidx = iface->dp_ifidx;
1779 *tags |= iface->tag; /* Currently only used for bonding. */
1780 return true;
1781}
1782
1783static void
1784bond_link_status_update(struct iface *iface, bool carrier)
1785{
1786 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
1787 struct port *port = iface->port;
1788
1789 if ((carrier == iface->enabled) == (iface->delay_expires == LLONG_MAX)) {
1790 /* Nothing to do. */
1791 return;
1792 }
1793 VLOG_INFO_RL(&rl, "interface %s: carrier %s",
1794 iface->name, carrier ? "detected" : "dropped");
1795 if (carrier == iface->enabled) {
1796 iface->delay_expires = LLONG_MAX;
1797 VLOG_INFO_RL(&rl, "interface %s: will not be %s",
1798 iface->name, carrier ? "disabled" : "enabled");
8b2a2f4a
JG
1799 } else if (carrier && port->active_iface < 0) {
1800 bond_enable_slave(iface, true);
1801 if (port->updelay) {
1802 VLOG_INFO_RL(&rl, "interface %s: skipping %d ms updelay since no "
1803 "other interface is up", iface->name, port->updelay);
1804 }
064af421
BP
1805 } else {
1806 int delay = carrier ? port->updelay : port->downdelay;
1807 iface->delay_expires = time_msec() + delay;
1808 if (delay) {
1809 VLOG_INFO_RL(&rl,
1810 "interface %s: will be %s if it stays %s for %d ms",
1811 iface->name,
1812 carrier ? "enabled" : "disabled",
1813 carrier ? "up" : "down",
1814 delay);
1815 }
1816 }
1817}
1818
1819static void
1820bond_choose_active_iface(struct port *port)
1821{
1822 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
1823
1824 port->active_iface = bond_choose_iface(port);
1825 port->active_iface_tag = tag_create_random();
1826 if (port->active_iface >= 0) {
1827 VLOG_INFO_RL(&rl, "port %s: active interface is now %s",
1828 port->name, port->ifaces[port->active_iface]->name);
1829 } else {
1830 VLOG_WARN_RL(&rl, "port %s: all ports disabled, no active interface",
1831 port->name);
1832 }
1833}
1834
da285df4
BP
1835static void
1836bond_enable_slave(struct iface *iface, bool enable)
1837{
1838 struct port *port = iface->port;
1839 struct bridge *br = port->bridge;
1840
8b2a2f4a
JG
1841 /* This acts as a recursion check. If the act of disabling a slave
1842 * causes a different slave to be enabled, the flag will allow us to
1843 * skip redundant work when we reenter this function. It must be
1844 * cleared on exit to keep things safe with multiple bonds. */
1845 static bool moving_active_iface = false;
1846
da285df4
BP
1847 iface->delay_expires = LLONG_MAX;
1848 if (enable == iface->enabled) {
1849 return;
1850 }
1851
1852 iface->enabled = enable;
1853 if (!iface->enabled) {
17ea75b2 1854 VLOG_WARN("interface %s: disabled", iface->name);
da285df4
BP
1855 ofproto_revalidate(br->ofproto, iface->tag);
1856 if (iface->port_ifidx == port->active_iface) {
1857 ofproto_revalidate(br->ofproto,
1858 port->active_iface_tag);
8b2a2f4a
JG
1859
1860 /* Disabling a slave can lead to another slave being immediately
1861 * enabled if there will be no active slaves but one is waiting
1862 * on an updelay. In this case we do not need to run most of the
1863 * code for the newly enabled slave since there was no period
1864 * without an active slave and it is redundant with the disabling
1865 * path. */
1866 moving_active_iface = true;
da285df4
BP
1867 bond_choose_active_iface(port);
1868 }
1869 bond_send_learning_packets(port);
1870 } else {
17ea75b2 1871 VLOG_WARN("interface %s: enabled", iface->name);
8b2a2f4a 1872 if (port->active_iface < 0 && !moving_active_iface) {
da285df4
BP
1873 ofproto_revalidate(br->ofproto, port->no_ifaces_tag);
1874 bond_choose_active_iface(port);
1875 bond_send_learning_packets(port);
1876 }
1877 iface->tag = tag_create_random();
1878 }
8b2a2f4a
JG
1879
1880 moving_active_iface = false;
1881 port->bond_compat_is_stale = true;
da285df4
BP
1882}
1883
8722022c
BP
1884/* Attempts to make the sum of the bond slaves' statistics appear on the fake
1885 * bond interface. */
1886static void
1887bond_update_fake_iface_stats(struct port *port)
1888{
1889 struct netdev_stats bond_stats;
1890 struct netdev *bond_dev;
1891 size_t i;
1892
1893 memset(&bond_stats, 0, sizeof bond_stats);
1894
1895 for (i = 0; i < port->n_ifaces; i++) {
1896 struct netdev_stats slave_stats;
1897
1898 if (!netdev_get_stats(port->ifaces[i]->netdev, &slave_stats)) {
f4b6076a
JG
1899 /* XXX: We swap the stats here because they are swapped back when
1900 * reported by the internal device. The reason for this is
1901 * internal devices normally represent packets going into the system
1902 * but when used as fake bond device they represent packets leaving
1903 * the system. We really should do this in the internal device
1904 * itself because changing it here reverses the counts from the
1905 * perspective of the switch. However, the internal device doesn't
1906 * know what type of device it represents so we have to do it here
1907 * for now. */
1908 bond_stats.tx_packets += slave_stats.rx_packets;
1909 bond_stats.tx_bytes += slave_stats.rx_bytes;
1910 bond_stats.rx_packets += slave_stats.tx_packets;
1911 bond_stats.rx_bytes += slave_stats.tx_bytes;
8722022c
BP
1912 }
1913 }
1914
1915 if (!netdev_open_default(port->name, &bond_dev)) {
1916 netdev_set_stats(bond_dev, &bond_stats);
1917 netdev_close(bond_dev);
1918 }
1919}
1920
064af421
BP
1921static void
1922bond_run(struct bridge *br)
1923{
1924 size_t i, j;
1925
1926 for (i = 0; i < br->n_ports; i++) {
1927 struct port *port = br->ports[i];
85c74638 1928
8b2a2f4a
JG
1929 if (port->n_ifaces >= 2) {
1930 for (j = 0; j < port->n_ifaces; j++) {
1931 struct iface *iface = port->ifaces[j];
1932 if (time_msec() >= iface->delay_expires) {
1933 bond_enable_slave(iface, !iface->enabled);
1934 }
1935 }
8722022c
BP
1936
1937 if (port->bond_fake_iface
1938 && time_msec() >= port->bond_next_fake_iface_update) {
1939 bond_update_fake_iface_stats(port);
1940 port->bond_next_fake_iface_update = time_msec() + 1000;
1941 }
8b2a2f4a
JG
1942 }
1943
85c74638
BP
1944 if (port->bond_compat_is_stale) {
1945 port->bond_compat_is_stale = false;
1946 port_update_bond_compat(port);
1947 }
064af421
BP
1948 }
1949}
1950
1951static void
1952bond_wait(struct bridge *br)
1953{
1954 size_t i, j;
1955
1956 for (i = 0; i < br->n_ports; i++) {
1957 struct port *port = br->ports[i];
1958 if (port->n_ifaces < 2) {
1959 continue;
1960 }
1961 for (j = 0; j < port->n_ifaces; j++) {
1962 struct iface *iface = port->ifaces[j];
1963 if (iface->delay_expires != LLONG_MAX) {
7cf8b266 1964 poll_timer_wait_until(iface->delay_expires);
064af421
BP
1965 }
1966 }
8722022c 1967 if (port->bond_fake_iface) {
7cf8b266 1968 poll_timer_wait_until(port->bond_next_fake_iface_update);
8722022c 1969 }
064af421
BP
1970 }
1971}
1972
1973static bool
1974set_dst(struct dst *p, const flow_t *flow,
1975 const struct port *in_port, const struct port *out_port,
1976 tag_type *tags)
1977{
064af421
BP
1978 p->vlan = (out_port->vlan >= 0 ? OFP_VLAN_NONE
1979 : in_port->vlan >= 0 ? in_port->vlan
1980 : ntohs(flow->dl_vlan));
2303f3b2 1981 return choose_output_iface(out_port, flow->dl_src, &p->dp_ifidx, tags);
064af421
BP
1982}
1983
1984static void
1985swap_dst(struct dst *p, struct dst *q)
1986{
1987 struct dst tmp = *p;
1988 *p = *q;
1989 *q = tmp;
1990}
1991
1992/* Moves all the dsts with vlan == 'vlan' to the front of the 'n_dsts' in
1993 * 'dsts'. (This may help performance by reducing the number of VLAN changes
1994 * that we push to the datapath. We could in fact fully sort the array by
1995 * vlan, but in most cases there are at most two different vlan tags so that's
1996 * possibly overkill.) */
1997static void
1998partition_dsts(struct dst *dsts, size_t n_dsts, int vlan)
1999{
2000 struct dst *first = dsts;
2001 struct dst *last = dsts + n_dsts;
2002
2003 while (first != last) {
2004 /* Invariants:
2005 * - All dsts < first have vlan == 'vlan'.
2006 * - All dsts >= last have vlan != 'vlan'.
2007 * - first < last. */
2008 while (first->vlan == vlan) {
2009 if (++first == last) {
2010 return;
2011 }
2012 }
2013
2014 /* Same invariants, plus one additional:
2015 * - first->vlan != vlan.
2016 */
2017 while (last[-1].vlan != vlan) {
2018 if (--last == first) {
2019 return;
2020 }
2021 }
2022
2023 /* Same invariants, plus one additional:
2024 * - last[-1].vlan == vlan.*/
2025 swap_dst(first++, --last);
2026 }
2027}
2028
2029static int
2030mirror_mask_ffs(mirror_mask_t mask)
2031{
2032 BUILD_ASSERT_DECL(sizeof(unsigned int) >= sizeof(mask));
2033 return ffs(mask);
2034}
2035
2036static bool
2037dst_is_duplicate(const struct dst *dsts, size_t n_dsts,
2038 const struct dst *test)
2039{
2040 size_t i;
2041 for (i = 0; i < n_dsts; i++) {
2042 if (dsts[i].vlan == test->vlan && dsts[i].dp_ifidx == test->dp_ifidx) {
2043 return true;
2044 }
2045 }
2046 return false;
2047}
2048
2049static bool
2050port_trunks_vlan(const struct port *port, uint16_t vlan)
2051{
3e9c481c
BP
2052 return (port->vlan < 0
2053 && (!port->trunks || bitmap_is_set(port->trunks, vlan)));
064af421
BP
2054}
2055
2056static bool
2057port_includes_vlan(const struct port *port, uint16_t vlan)
2058{
2059 return vlan == port->vlan || port_trunks_vlan(port, vlan);
2060}
2061
2062static size_t
2063compose_dsts(const struct bridge *br, const flow_t *flow, uint16_t vlan,
2064 const struct port *in_port, const struct port *out_port,
6a07af36 2065 struct dst dsts[], tag_type *tags, uint16_t *nf_output_iface)
064af421
BP
2066{
2067 mirror_mask_t mirrors = in_port->src_mirrors;
2068 struct dst *dst = dsts;
2069 size_t i;
2070
064af421
BP
2071 if (out_port == FLOOD_PORT) {
2072 /* XXX use ODP_FLOOD if no vlans or bonding. */
2073 /* XXX even better, define each VLAN as a datapath port group */
2074 for (i = 0; i < br->n_ports; i++) {
2075 struct port *port = br->ports[i];
2076 if (port != in_port && port_includes_vlan(port, vlan)
2077 && !port->is_mirror_output_port
2078 && set_dst(dst, flow, in_port, port, tags)) {
2079 mirrors |= port->dst_mirrors;
2080 dst++;
2081 }
2082 }
6a07af36 2083 *nf_output_iface = NF_OUT_FLOOD;
064af421 2084 } else if (out_port && set_dst(dst, flow, in_port, out_port, tags)) {
6a07af36 2085 *nf_output_iface = dst->dp_ifidx;
064af421
BP
2086 mirrors |= out_port->dst_mirrors;
2087 dst++;
2088 }
2089
2090 while (mirrors) {
2091 struct mirror *m = br->mirrors[mirror_mask_ffs(mirrors) - 1];
2092 if (!m->n_vlans || vlan_is_mirrored(m, vlan)) {
2093 if (m->out_port) {
2094 if (set_dst(dst, flow, in_port, m->out_port, tags)
2095 && !dst_is_duplicate(dsts, dst - dsts, dst)) {
2096 dst++;
2097 }
2098 } else {
2099 for (i = 0; i < br->n_ports; i++) {
2100 struct port *port = br->ports[i];
2101 if (port_includes_vlan(port, m->out_vlan)
274de4d2 2102 && set_dst(dst, flow, in_port, port, tags))
064af421 2103 {
43aa5f47
JG
2104 int flow_vlan;
2105
064af421
BP
2106 if (port->vlan < 0) {
2107 dst->vlan = m->out_vlan;
2108 }
274de4d2
BP
2109 if (dst_is_duplicate(dsts, dst - dsts, dst)) {
2110 continue;
2111 }
43aa5f47
JG
2112
2113 /* Use the vlan tag on the original flow instead of
2114 * the one passed in the vlan parameter. This ensures
2115 * that we compare the vlan from before any implicit
2116 * tagging tags place. This is necessary because
2117 * dst->vlan is the final vlan, after removing implicit
2118 * tags. */
2119 flow_vlan = ntohs(flow->dl_vlan);
2120 if (flow_vlan == 0) {
2121 flow_vlan = OFP_VLAN_NONE;
2122 }
2123 if (port == in_port && dst->vlan == flow_vlan) {
064af421
BP
2124 /* Don't send out input port on same VLAN. */
2125 continue;
2126 }
2127 dst++;
2128 }
2129 }
2130 }
2131 }
2132 mirrors &= mirrors - 1;
2133 }
2134
2135 partition_dsts(dsts, dst - dsts, ntohs(flow->dl_vlan));
2136 return dst - dsts;
2137}
2138
67a4917b 2139static void OVS_UNUSED
064af421
BP
2140print_dsts(const struct dst *dsts, size_t n)
2141{
2142 for (; n--; dsts++) {
2143 printf(">p%"PRIu16, dsts->dp_ifidx);
2144 if (dsts->vlan != OFP_VLAN_NONE) {
2145 printf("v%"PRIu16, dsts->vlan);
2146 }
2147 }
2148}
2149
2150static void
2151compose_actions(struct bridge *br, const flow_t *flow, uint16_t vlan,
2152 const struct port *in_port, const struct port *out_port,
6a07af36
JG
2153 tag_type *tags, struct odp_actions *actions,
2154 uint16_t *nf_output_iface)
064af421
BP
2155{
2156 struct dst dsts[DP_MAX_PORTS * (MAX_MIRRORS + 1)];
2157 size_t n_dsts;
2158 const struct dst *p;
2159 uint16_t cur_vlan;
2160
6a07af36
JG
2161 n_dsts = compose_dsts(br, flow, vlan, in_port, out_port, dsts, tags,
2162 nf_output_iface);
064af421
BP
2163
2164 cur_vlan = ntohs(flow->dl_vlan);
2165 for (p = dsts; p < &dsts[n_dsts]; p++) {
2166 union odp_action *a;
2167 if (p->vlan != cur_vlan) {
2168 if (p->vlan == OFP_VLAN_NONE) {
2169 odp_actions_add(actions, ODPAT_STRIP_VLAN);
2170 } else {
2171 a = odp_actions_add(actions, ODPAT_SET_VLAN_VID);
2172 a->vlan_vid.vlan_vid = htons(p->vlan);
2173 }
2174 cur_vlan = p->vlan;
2175 }
2176 a = odp_actions_add(actions, ODPAT_OUTPUT);
2177 a->output.port = p->dp_ifidx;
2178 }
2179}
2180
e96a4d80
JG
2181/* Returns the effective vlan of a packet, taking into account both the
2182 * 802.1Q header and implicitly tagged ports. A value of 0 indicates that
2183 * the packet is untagged and -1 indicates it has an invalid header and
2184 * should be dropped. */
2185static int flow_get_vlan(struct bridge *br, const flow_t *flow,
2186 struct port *in_port, bool have_packet)
2187{
2188 /* Note that dl_vlan of 0 and of OFP_VLAN_NONE both mean that the packet
2189 * belongs to VLAN 0, so we should treat both cases identically. (In the
2190 * former case, the packet has an 802.1Q header that specifies VLAN 0,
2191 * presumably to allow a priority to be specified. In the latter case, the
2192 * packet does not have any 802.1Q header.) */
2193 int vlan = ntohs(flow->dl_vlan);
2194 if (vlan == OFP_VLAN_NONE) {
2195 vlan = 0;
2196 }
2197 if (in_port->vlan >= 0) {
2198 if (vlan) {
2199 /* XXX support double tagging? */
2200 if (have_packet) {
2201 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2202 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %"PRIu16" tagged "
2203 "packet received on port %s configured with "
2204 "implicit VLAN %"PRIu16,
2205 br->name, ntohs(flow->dl_vlan),
2206 in_port->name, in_port->vlan);
2207 }
2208 return -1;
2209 }
2210 vlan = in_port->vlan;
2211 } else {
2212 if (!port_includes_vlan(in_port, vlan)) {
2213 if (have_packet) {
2214 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2215 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %d tagged "
2216 "packet received on port %s not configured for "
2217 "trunking VLAN %d",
2218 br->name, vlan, in_port->name, vlan);
2219 }
2220 return -1;
2221 }
2222 }
2223
2224 return vlan;
2225}
2226
7febb910
JG
2227/* A VM broadcasts a gratuitous ARP to indicate that it has resumed after
2228 * migration. Older Citrix-patched Linux DomU used gratuitous ARP replies to
2229 * indicate this; newer upstream kernels use gratuitous ARP requests. */
2230static bool
2231is_gratuitous_arp(const flow_t *flow)
2232{
2233 return (flow->dl_type == htons(ETH_TYPE_ARP)
2234 && eth_addr_is_broadcast(flow->dl_dst)
2235 && (flow->nw_proto == ARP_OP_REPLY
2236 || (flow->nw_proto == ARP_OP_REQUEST
2237 && flow->nw_src == flow->nw_dst)));
2238}
2239
e96a4d80
JG
2240static void
2241update_learning_table(struct bridge *br, const flow_t *flow, int vlan,
2242 struct port *in_port)
2243{
7febb910
JG
2244 enum grat_arp_lock_type lock_type;
2245 tag_type rev_tag;
2246
2247 /* We don't want to learn from gratuitous ARP packets that are reflected
2248 * back over bond slaves so we lock the learning table. */
2249 lock_type = !is_gratuitous_arp(flow) ? GRAT_ARP_LOCK_NONE :
2250 (in_port->n_ifaces == 1) ? GRAT_ARP_LOCK_SET :
2251 GRAT_ARP_LOCK_CHECK;
2252
2253 rev_tag = mac_learning_learn(br->ml, flow->dl_src, vlan, in_port->port_idx,
2254 lock_type);
e96a4d80
JG
2255 if (rev_tag) {
2256 /* The log messages here could actually be useful in debugging,
2257 * so keep the rate limit relatively high. */
2258 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30,
2259 300);
2260 VLOG_DBG_RL(&rl, "bridge %s: learned that "ETH_ADDR_FMT" is "
2261 "on port %s in VLAN %d",
2262 br->name, ETH_ADDR_ARGS(flow->dl_src),
2263 in_port->name, vlan);
2264 ofproto_revalidate(br->ofproto, rev_tag);
2265 }
2266}
2267
14a34d00
BP
2268/* Determines whether packets in 'flow' within 'br' should be forwarded or
2269 * dropped. Returns true if they may be forwarded, false if they should be
2270 * dropped.
2271 *
2272 * If 'have_packet' is true, it indicates that the caller is processing a
2273 * received packet. If 'have_packet' is false, then the caller is just
2274 * revalidating an existing flow because configuration has changed. Either
2275 * way, 'have_packet' only affects logging (there is no point in logging errors
2276 * during revalidation).
2277 *
2278 * Sets '*in_portp' to the input port. This will be a null pointer if
2279 * flow->in_port does not designate a known input port (in which case
2280 * is_admissible() returns false).
2281 *
2282 * When returning true, sets '*vlanp' to the effective VLAN of the input
2283 * packet, as returned by flow_get_vlan().
2284 *
2285 * May also add tags to '*tags', although the current implementation only does
2286 * so in one special case.
2287 */
064af421 2288static bool
14a34d00
BP
2289is_admissible(struct bridge *br, const flow_t *flow, bool have_packet,
2290 tag_type *tags, int *vlanp, struct port **in_portp)
064af421
BP
2291{
2292 struct iface *in_iface;
2293 struct port *in_port;
064af421
BP
2294 int vlan;
2295
2296 /* Find the interface and port structure for the received packet. */
2297 in_iface = iface_from_dp_ifidx(br, flow->in_port);
2298 if (!in_iface) {
2299 /* No interface? Something fishy... */
14a34d00 2300 if (have_packet) {
064af421
BP
2301 /* Odd. A few possible reasons here:
2302 *
2303 * - We deleted an interface but there are still a few packets
2304 * queued up from it.
2305 *
2306 * - Someone externally added an interface (e.g. with "ovs-dpctl
2307 * add-if") that we don't know about.
2308 *
2309 * - Packet arrived on the local port but the local port is not
2310 * one of our bridge ports.
2311 */
2312 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2313
2314 VLOG_WARN_RL(&rl, "bridge %s: received packet on unknown "
2315 "interface %"PRIu16, br->name, flow->in_port);
2316 }
2317
14a34d00
BP
2318 *in_portp = NULL;
2319 return false;
064af421 2320 }
14a34d00
BP
2321 *in_portp = in_port = in_iface->port;
2322 *vlanp = vlan = flow_get_vlan(br, flow, in_port, have_packet);
e96a4d80 2323 if (vlan < 0) {
14a34d00 2324 return false;
064af421
BP
2325 }
2326
064af421
BP
2327 /* Drop frames for reserved multicast addresses. */
2328 if (eth_addr_is_reserved(flow->dl_dst)) {
14a34d00 2329 return false;
064af421
BP
2330 }
2331
2332 /* Drop frames on ports reserved for mirroring. */
2333 if (in_port->is_mirror_output_port) {
14a34d00 2334 if (have_packet) {
f925807d
BP
2335 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2336 VLOG_WARN_RL(&rl, "bridge %s: dropping packet received on port "
2337 "%s, which is reserved exclusively for mirroring",
2338 br->name, in_port->name);
2339 }
14a34d00 2340 return false;
064af421
BP
2341 }
2342
3a55ef14
JG
2343 /* Packets received on bonds need special attention to avoid duplicates. */
2344 if (in_port->n_ifaces > 1) {
2345 int src_idx;
7febb910 2346 bool is_grat_arp_locked;
3a55ef14
JG
2347
2348 if (eth_addr_is_multicast(flow->dl_dst)) {
2349 *tags |= in_port->active_iface_tag;
2350 if (in_port->active_iface != in_iface->port_ifidx) {
2351 /* Drop all multicast packets on inactive slaves. */
14a34d00 2352 return false;
c93b1d6a 2353 }
064af421 2354 }
3a55ef14
JG
2355
2356 /* Drop all packets for which we have learned a different input
2357 * port, because we probably sent the packet on one slave and got
5d0ae138 2358 * it back on the other. Gratuitous ARP packets are an exception
7febb910
JG
2359 * to this rule: the host has moved to another switch. The exception
2360 * to the exception is if we locked the learning table to avoid
2361 * reflections on bond slaves. If this is the case, just drop the
2362 * packet now. */
2363 src_idx = mac_learning_lookup(br->ml, flow->dl_src, vlan,
2364 &is_grat_arp_locked);
3a55ef14 2365 if (src_idx != -1 && src_idx != in_port->port_idx &&
7febb910 2366 (!is_gratuitous_arp(flow) || is_grat_arp_locked)) {
14a34d00 2367 return false;
3a55ef14 2368 }
064af421
BP
2369 }
2370
14a34d00
BP
2371 return true;
2372}
2373
2374/* If the composed actions may be applied to any packet in the given 'flow',
2375 * returns true. Otherwise, the actions should only be applied to 'packet', or
2376 * not at all, if 'packet' was NULL. */
2377static bool
2378process_flow(struct bridge *br, const flow_t *flow,
2379 const struct ofpbuf *packet, struct odp_actions *actions,
2380 tag_type *tags, uint16_t *nf_output_iface)
2381{
2382 struct port *in_port;
2383 struct port *out_port;
2384 int vlan;
2385 int out_port_idx;
2386
2387 /* Check whether we should drop packets in this flow. */
2388 if (!is_admissible(br, flow, packet != NULL, tags, &vlan, &in_port)) {
2389 out_port = NULL;
2390 goto done;
2391 }
2392
93dfc067
JG
2393 /* Learn source MAC (but don't try to learn from revalidation). */
2394 if (packet) {
e96a4d80 2395 update_learning_table(br, flow, vlan, in_port);
93dfc067
JG
2396 }
2397
2398 /* Determine output port. */
7febb910
JG
2399 out_port_idx = mac_learning_lookup_tag(br->ml, flow->dl_dst, vlan, tags,
2400 NULL);
93dfc067
JG
2401 if (out_port_idx >= 0 && out_port_idx < br->n_ports) {
2402 out_port = br->ports[out_port_idx];
e96a4d80 2403 } else if (!packet && !eth_addr_is_multicast(flow->dl_dst)) {
93dfc067 2404 /* If we are revalidating but don't have a learning entry then
e96a4d80
JG
2405 * eject the flow. Installing a flow that floods packets opens
2406 * up a window of time where we could learn from a packet reflected
2407 * on a bond and blackhole packets before the learning table is
2408 * updated to reflect the correct port. */
93dfc067 2409 return false;
1609aa03
BP
2410 } else {
2411 out_port = FLOOD_PORT;
064af421
BP
2412 }
2413
ba54bf4f
BP
2414 /* Don't send packets out their input ports. */
2415 if (in_port == out_port) {
064af421
BP
2416 out_port = NULL;
2417 }
2418
2419done:
14a34d00
BP
2420 if (in_port) {
2421 compose_actions(br, flow, vlan, in_port, out_port, tags, actions,
2422 nf_output_iface);
2423 }
064af421 2424
69d60f9f 2425 return true;
064af421
BP
2426}
2427
2428/* Careful: 'opp' is in host byte order and opp->port_no is an OFP port
2429 * number. */
2430static void
2431bridge_port_changed_ofhook_cb(enum ofp_port_reason reason,
2432 const struct ofp_phy_port *opp,
2433 void *br_)
2434{
2435 struct bridge *br = br_;
2436 struct iface *iface;
2437 struct port *port;
2438
2439 iface = iface_from_dp_ifidx(br, ofp_port_to_odp_port(opp->port_no));
2440 if (!iface) {
2441 return;
2442 }
2443 port = iface->port;
2444
2445 if (reason == OFPPR_DELETE) {
2446 VLOG_WARN("bridge %s: interface %s deleted unexpectedly",
2447 br->name, iface->name);
2448 iface_destroy(iface);
2449 if (!port->n_ifaces) {
2450 VLOG_WARN("bridge %s: port %s has no interfaces, dropping",
2451 br->name, port->name);
2452 port_destroy(port);
2453 }
2454
2455 bridge_flush(br);
2456 } else {
064af421
BP
2457 if (port->n_ifaces > 1) {
2458 bool up = !(opp->state & OFPPS_LINK_DOWN);
2459 bond_link_status_update(iface, up);
2460 port_update_bond_compat(port);
2461 }
2462 }
2463}
2464
2465static bool
2466bridge_normal_ofhook_cb(const flow_t *flow, const struct ofpbuf *packet,
6a07af36
JG
2467 struct odp_actions *actions, tag_type *tags,
2468 uint16_t *nf_output_iface, void *br_)
064af421
BP
2469{
2470 struct bridge *br = br_;
2471
064af421 2472 COVERAGE_INC(bridge_process_flow);
26d79bf2 2473
6a07af36 2474 return process_flow(br, flow, packet, actions, tags, nf_output_iface);
064af421
BP
2475}
2476
2477static void
26d79bf2 2478bridge_account_flow_ofhook_cb(const flow_t *flow, tag_type tags,
064af421
BP
2479 const union odp_action *actions,
2480 size_t n_actions, unsigned long long int n_bytes,
2481 void *br_)
2482{
2483 struct bridge *br = br_;
2484 const union odp_action *a;
db0e2ad1 2485 struct port *in_port;
26d79bf2 2486 tag_type dummy = 0;
db0e2ad1 2487 int vlan;
064af421 2488
26d79bf2
BP
2489 /* Feed information from the active flows back into the learning table to
2490 * ensure that table is always in sync with what is actually flowing
2491 * through the datapath.
2492 *
2493 * We test that 'tags' is nonzero to ensure that only flows that include an
2494 * OFPP_NORMAL action are used for learning. This works because
2495 * bridge_normal_ofhook_cb() always sets a nonzero tag value. */
2496 if (tags && is_admissible(br, flow, false, &dummy, &vlan, &in_port)) {
db0e2ad1 2497 update_learning_table(br, flow, vlan, in_port);
e96a4d80
JG
2498 }
2499
26d79bf2 2500 /* Account for bond slave utilization. */
064af421
BP
2501 if (!br->has_bonded_ports) {
2502 return;
2503 }
064af421
BP
2504 for (a = actions; a < &actions[n_actions]; a++) {
2505 if (a->type == ODPAT_OUTPUT) {
e96a4d80
JG
2506 struct port *out_port = port_from_dp_ifidx(br, a->output.port);
2507 if (out_port && out_port->n_ifaces >= 2) {
2508 struct bond_entry *e = lookup_bond_entry(out_port,
2509 flow->dl_src);
064af421
BP
2510 e->tx_bytes += n_bytes;
2511 }
2512 }
2513 }
2514}
2515
2516static void
2517bridge_account_checkpoint_ofhook_cb(void *br_)
2518{
2519 struct bridge *br = br_;
c8143c88 2520 long long int now;
064af421
BP
2521 size_t i;
2522
2523 if (!br->has_bonded_ports) {
2524 return;
2525 }
2526
c8143c88 2527 now = time_msec();
064af421
BP
2528 for (i = 0; i < br->n_ports; i++) {
2529 struct port *port = br->ports[i];
c8143c88
BP
2530 if (port->n_ifaces > 1 && now >= port->bond_next_rebalance) {
2531 port->bond_next_rebalance = now + port->bond_rebalance_interval;
064af421
BP
2532 bond_rebalance_port(port);
2533 }
2534 }
2535}
2536
2537static struct ofhooks bridge_ofhooks = {
2538 bridge_port_changed_ofhook_cb,
2539 bridge_normal_ofhook_cb,
2540 bridge_account_flow_ofhook_cb,
2541 bridge_account_checkpoint_ofhook_cb,
2542};
2543\f
2303f3b2
BP
2544/* Bonding functions. */
2545
064af421
BP
2546/* Statistics for a single interface on a bonded port, used for load-based
2547 * bond rebalancing. */
2548struct slave_balance {
2549 struct iface *iface; /* The interface. */
2550 uint64_t tx_bytes; /* Sum of hashes[*]->tx_bytes. */
2551
2552 /* All the "bond_entry"s that are assigned to this interface, in order of
2553 * increasing tx_bytes. */
2554 struct bond_entry **hashes;
2555 size_t n_hashes;
2556};
2557
2558/* Sorts pointers to pointers to bond_entries in ascending order by the
2559 * interface to which they are assigned, and within a single interface in
2560 * ascending order of bytes transmitted. */
2561static int
2562compare_bond_entries(const void *a_, const void *b_)
2563{
2564 const struct bond_entry *const *ap = a_;
2565 const struct bond_entry *const *bp = b_;
2566 const struct bond_entry *a = *ap;
2567 const struct bond_entry *b = *bp;
2568 if (a->iface_idx != b->iface_idx) {
2569 return a->iface_idx > b->iface_idx ? 1 : -1;
2570 } else if (a->tx_bytes != b->tx_bytes) {
2571 return a->tx_bytes > b->tx_bytes ? 1 : -1;
2572 } else {
2573 return 0;
2574 }
2575}
2576
2577/* Sorts slave_balances so that enabled ports come first, and otherwise in
2578 * *descending* order by number of bytes transmitted. */
2579static int
2580compare_slave_balance(const void *a_, const void *b_)
2581{
2582 const struct slave_balance *a = a_;
2583 const struct slave_balance *b = b_;
2584 if (a->iface->enabled != b->iface->enabled) {
2585 return a->iface->enabled ? -1 : 1;
2586 } else if (a->tx_bytes != b->tx_bytes) {
2587 return a->tx_bytes > b->tx_bytes ? -1 : 1;
2588 } else {
2589 return 0;
2590 }
2591}
2592
2593static void
2594swap_bals(struct slave_balance *a, struct slave_balance *b)
2595{
2596 struct slave_balance tmp = *a;
2597 *a = *b;
2598 *b = tmp;
2599}
2600
2601/* Restores the 'n_bals' slave_balance structures in 'bals' to sorted order
2602 * given that 'p' (and only 'p') might be in the wrong location.
2603 *
2604 * This function invalidates 'p', since it might now be in a different memory
2605 * location. */
2606static void
2607resort_bals(struct slave_balance *p,
2608 struct slave_balance bals[], size_t n_bals)
2609{
2610 if (n_bals > 1) {
2611 for (; p > bals && p->tx_bytes > p[-1].tx_bytes; p--) {
2612 swap_bals(p, p - 1);
2613 }
2614 for (; p < &bals[n_bals - 1] && p->tx_bytes < p[1].tx_bytes; p++) {
2615 swap_bals(p, p + 1);
2616 }
2617 }
2618}
2619
2620static void
2621log_bals(const struct slave_balance *bals, size_t n_bals, struct port *port)
2622{
2623 if (VLOG_IS_DBG_ENABLED()) {
2624 struct ds ds = DS_EMPTY_INITIALIZER;
2625 const struct slave_balance *b;
2626
2627 for (b = bals; b < bals + n_bals; b++) {
2628 size_t i;
2629
2630 if (b > bals) {
2631 ds_put_char(&ds, ',');
2632 }
2633 ds_put_format(&ds, " %s %"PRIu64"kB",
2634 b->iface->name, b->tx_bytes / 1024);
2635
2636 if (!b->iface->enabled) {
2637 ds_put_cstr(&ds, " (disabled)");
2638 }
2639 if (b->n_hashes > 0) {
2640 ds_put_cstr(&ds, " (");
2641 for (i = 0; i < b->n_hashes; i++) {
2642 const struct bond_entry *e = b->hashes[i];
2643 if (i > 0) {
2644 ds_put_cstr(&ds, " + ");
2645 }
2646 ds_put_format(&ds, "h%td: %"PRIu64"kB",
2647 e - port->bond_hash, e->tx_bytes / 1024);
2648 }
2649 ds_put_cstr(&ds, ")");
2650 }
2651 }
2652 VLOG_DBG("bond %s:%s", port->name, ds_cstr(&ds));
2653 ds_destroy(&ds);
2654 }
2655}
2656
2657/* Shifts 'hash' from 'from' to 'to' within 'port'. */
2658static void
2659bond_shift_load(struct slave_balance *from, struct slave_balance *to,
5422a9e1 2660 int hash_idx)
064af421 2661{
5422a9e1 2662 struct bond_entry *hash = from->hashes[hash_idx];
064af421
BP
2663 struct port *port = from->iface->port;
2664 uint64_t delta = hash->tx_bytes;
2665
2666 VLOG_INFO("bond %s: shift %"PRIu64"kB of load (with hash %td) "
2667 "from %s to %s (now carrying %"PRIu64"kB and "
2668 "%"PRIu64"kB load, respectively)",
2669 port->name, delta / 1024, hash - port->bond_hash,
2670 from->iface->name, to->iface->name,
2671 (from->tx_bytes - delta) / 1024,
2672 (to->tx_bytes + delta) / 1024);
2673
2674 /* Delete element from from->hashes.
2675 *
2676 * We don't bother to add the element to to->hashes because not only would
2677 * it require more work, the only purpose it would be to allow that hash to
2678 * be migrated to another slave in this rebalancing run, and there is no
2679 * point in doing that. */
5422a9e1 2680 if (hash_idx == 0) {
064af421
BP
2681 from->hashes++;
2682 } else {
5422a9e1
JG
2683 memmove(from->hashes + hash_idx, from->hashes + hash_idx + 1,
2684 (from->n_hashes - (hash_idx + 1)) * sizeof *from->hashes);
064af421
BP
2685 }
2686 from->n_hashes--;
2687
2688 /* Shift load away from 'from' to 'to'. */
2689 from->tx_bytes -= delta;
2690 to->tx_bytes += delta;
2691
2692 /* Arrange for flows to be revalidated. */
2693 ofproto_revalidate(port->bridge->ofproto, hash->iface_tag);
2694 hash->iface_idx = to->iface->port_ifidx;
2695 hash->iface_tag = tag_create_random();
064af421
BP
2696}
2697
2698static void
2699bond_rebalance_port(struct port *port)
2700{
2701 struct slave_balance bals[DP_MAX_PORTS];
2702 size_t n_bals;
2703 struct bond_entry *hashes[BOND_MASK + 1];
2704 struct slave_balance *b, *from, *to;
2705 struct bond_entry *e;
2706 size_t i;
2707
2708 /* Sets up 'bals' to describe each of the port's interfaces, sorted in
2709 * descending order of tx_bytes, so that bals[0] represents the most
2710 * heavily loaded slave and bals[n_bals - 1] represents the least heavily
2711 * loaded slave.
2712 *
2713 * The code is a bit tricky: to avoid dynamically allocating a 'hashes'
2714 * array for each slave_balance structure, we sort our local array of
2715 * hashes in order by slave, so that all of the hashes for a given slave
2716 * become contiguous in memory, and then we point each 'hashes' members of
2717 * a slave_balance structure to the start of a contiguous group. */
2718 n_bals = port->n_ifaces;
2719 for (b = bals; b < &bals[n_bals]; b++) {
2720 b->iface = port->ifaces[b - bals];
2721 b->tx_bytes = 0;
2722 b->hashes = NULL;
2723 b->n_hashes = 0;
2724 }
2725 for (i = 0; i <= BOND_MASK; i++) {
2726 hashes[i] = &port->bond_hash[i];
2727 }
2728 qsort(hashes, BOND_MASK + 1, sizeof *hashes, compare_bond_entries);
2729 for (i = 0; i <= BOND_MASK; i++) {
2730 e = hashes[i];
2731 if (e->iface_idx >= 0 && e->iface_idx < port->n_ifaces) {
2732 b = &bals[e->iface_idx];
2733 b->tx_bytes += e->tx_bytes;
2734 if (!b->hashes) {
2735 b->hashes = &hashes[i];
2736 }
2737 b->n_hashes++;
2738 }
2739 }
2740 qsort(bals, n_bals, sizeof *bals, compare_slave_balance);
2741 log_bals(bals, n_bals, port);
2742
2743 /* Discard slaves that aren't enabled (which were sorted to the back of the
2744 * array earlier). */
2745 while (!bals[n_bals - 1].iface->enabled) {
2746 n_bals--;
2747 if (!n_bals) {
2748 return;
2749 }
2750 }
2751
2752 /* Shift load from the most-loaded slaves to the least-loaded slaves. */
2753 to = &bals[n_bals - 1];
2754 for (from = bals; from < to; ) {
2755 uint64_t overload = from->tx_bytes - to->tx_bytes;
2756 if (overload < to->tx_bytes >> 5 || overload < 100000) {
2757 /* The extra load on 'from' (and all less-loaded slaves), compared
2758 * to that of 'to' (the least-loaded slave), is less than ~3%, or
2759 * it is less than ~1Mbps. No point in rebalancing. */
2760 break;
2761 } else if (from->n_hashes == 1) {
2762 /* 'from' only carries a single MAC hash, so we can't shift any
2763 * load away from it, even though we want to. */
2764 from++;
2765 } else {
2766 /* 'from' is carrying significantly more load than 'to', and that
2767 * load is split across at least two different hashes. Pick a hash
2768 * to migrate to 'to' (the least-loaded slave), given that doing so
5422a9e1
JG
2769 * must decrease the ratio of the load on the two slaves by at
2770 * least 0.1.
064af421
BP
2771 *
2772 * The sort order we use means that we prefer to shift away the
2773 * smallest hashes instead of the biggest ones. There is little
2774 * reason behind this decision; we could use the opposite sort
2775 * order to shift away big hashes ahead of small ones. */
2776 size_t i;
5422a9e1 2777 bool order_swapped;
064af421
BP
2778
2779 for (i = 0; i < from->n_hashes; i++) {
5422a9e1 2780 double old_ratio, new_ratio;
064af421 2781 uint64_t delta = from->hashes[i]->tx_bytes;
5422a9e1
JG
2782
2783 if (delta == 0 || from->tx_bytes - delta == 0) {
2784 /* Pointless move. */
2785 continue;
2786 }
2787
2788 order_swapped = from->tx_bytes - delta < to->tx_bytes + delta;
2789
2790 if (to->tx_bytes == 0) {
2791 /* Nothing on the new slave, move it. */
2792 break;
2793 }
2794
2795 old_ratio = (double)from->tx_bytes / to->tx_bytes;
2796 new_ratio = (double)(from->tx_bytes - delta) /
2797 (to->tx_bytes + delta);
2798
2799 if (new_ratio == 0) {
2800 /* Should already be covered but check to prevent division
2801 * by zero. */
2802 continue;
2803 }
2804
2805 if (new_ratio < 1) {
2806 new_ratio = 1 / new_ratio;
2807 }
2808
2809 if (old_ratio - new_ratio > 0.1) {
2810 /* Would decrease the ratio, move it. */
064af421
BP
2811 break;
2812 }
2813 }
2814 if (i < from->n_hashes) {
5422a9e1
JG
2815 bond_shift_load(from, to, i);
2816 port->bond_compat_is_stale = true;
2817
2818 /* If the result of the migration changed the relative order of
2819 * 'from' and 'to' swap them back to maintain invariants. */
2820 if (order_swapped) {
2821 swap_bals(from, to);
2822 }
064af421
BP
2823
2824 /* Re-sort 'bals'. Note that this may make 'from' and 'to'
2825 * point to different slave_balance structures. It is only
2826 * valid to do these two operations in a row at all because we
2827 * know that 'from' will not move past 'to' and vice versa. */
2828 resort_bals(from, bals, n_bals);
2829 resort_bals(to, bals, n_bals);
2830 } else {
2831 from++;
2832 }
2833 }
2834 }
2835
2836 /* Implement exponentially weighted moving average. A weight of 1/2 causes
2837 * historical data to decay to <1% in 7 rebalancing runs. */
2838 for (e = &port->bond_hash[0]; e <= &port->bond_hash[BOND_MASK]; e++) {
2839 e->tx_bytes /= 2;
2840 }
2841}
2303f3b2
BP
2842
2843static void
2844bond_send_learning_packets(struct port *port)
2845{
2846 struct bridge *br = port->bridge;
2847 struct mac_entry *e;
2848 struct ofpbuf packet;
2849 int error, n_packets, n_errors;
2850
93dfc067 2851 if (!port->n_ifaces || port->active_iface < 0) {
2303f3b2
BP
2852 return;
2853 }
2854
2855 ofpbuf_init(&packet, 128);
2856 error = n_packets = n_errors = 0;
2857 LIST_FOR_EACH (e, struct mac_entry, lru_node, &br->ml->lrus) {
2303f3b2 2858 union ofp_action actions[2], *a;
2303f3b2
BP
2859 uint16_t dp_ifidx;
2860 tag_type tags = 0;
2861 flow_t flow;
2862 int retval;
2863
2864 if (e->port == port->port_idx
2865 || !choose_output_iface(port, e->mac, &dp_ifidx, &tags)) {
2866 continue;
2867 }
2868
2303f3b2
BP
2869 /* Compose actions. */
2870 memset(actions, 0, sizeof actions);
2871 a = actions;
2872 if (e->vlan) {
2873 a->vlan_vid.type = htons(OFPAT_SET_VLAN_VID);
2874 a->vlan_vid.len = htons(sizeof *a);
2875 a->vlan_vid.vlan_vid = htons(e->vlan);
2876 a++;
2877 }
2878 a->output.type = htons(OFPAT_OUTPUT);
2879 a->output.len = htons(sizeof *a);
2880 a->output.port = htons(odp_port_to_ofp_port(dp_ifidx));
2881 a++;
2882
2883 /* Send packet. */
2884 n_packets++;
b9e8b45a
BP
2885 compose_benign_packet(&packet, "Open vSwitch Bond Failover", 0xf177,
2886 e->mac);
659586ef 2887 flow_extract(&packet, 0, ODPP_NONE, &flow);
2303f3b2
BP
2888 retval = ofproto_send_packet(br->ofproto, &flow, actions, a - actions,
2889 &packet);
2890 if (retval) {
2891 error = retval;
2892 n_errors++;
2893 }
2894 }
2895 ofpbuf_uninit(&packet);
2896
2897 if (n_errors) {
2898 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2899 VLOG_WARN_RL(&rl, "bond %s: %d errors sending %d gratuitous learning "
2900 "packets, last error was: %s",
2901 port->name, n_errors, n_packets, strerror(error));
2902 } else {
2903 VLOG_DBG("bond %s: sent %d gratuitous learning packets",
2904 port->name, n_packets);
2905 }
2906}
064af421 2907\f
da285df4
BP
2908/* Bonding unixctl user interface functions. */
2909
2910static void
8ca79daa 2911bond_unixctl_list(struct unixctl_conn *conn,
c69ee87c 2912 const char *args OVS_UNUSED, void *aux OVS_UNUSED)
da285df4
BP
2913{
2914 struct ds ds = DS_EMPTY_INITIALIZER;
2915 const struct bridge *br;
2916
2917 ds_put_cstr(&ds, "bridge\tbond\tslaves\n");
2918
2919 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
2920 size_t i;
2921
2922 for (i = 0; i < br->n_ports; i++) {
2923 const struct port *port = br->ports[i];
2924 if (port->n_ifaces > 1) {
2925 size_t j;
2926
2927 ds_put_format(&ds, "%s\t%s\t", br->name, port->name);
2928 for (j = 0; j < port->n_ifaces; j++) {
2929 const struct iface *iface = port->ifaces[j];
2930 if (j) {
2931 ds_put_cstr(&ds, ", ");
2932 }
2933 ds_put_cstr(&ds, iface->name);
2934 }
2935 ds_put_char(&ds, '\n');
2936 }
2937 }
2938 }
2939 unixctl_command_reply(conn, 200, ds_cstr(&ds));
2940 ds_destroy(&ds);
2941}
2942
2943static struct port *
2944bond_find(const char *name)
2945{
2946 const struct bridge *br;
2947
2948 LIST_FOR_EACH (br, struct bridge, node, &all_bridges) {
2949 size_t i;
2950
2951 for (i = 0; i < br->n_ports; i++) {
2952 struct port *port = br->ports[i];
2953 if (!strcmp(port->name, name) && port->n_ifaces > 1) {
2954 return port;
2955 }
2956 }
2957 }
2958 return NULL;
2959}
2960
2961static void
8ca79daa 2962bond_unixctl_show(struct unixctl_conn *conn,
c69ee87c 2963 const char *args, void *aux OVS_UNUSED)
da285df4
BP
2964{
2965 struct ds ds = DS_EMPTY_INITIALIZER;
2966 const struct port *port;
2967 size_t j;
2968
2969 port = bond_find(args);
2970 if (!port) {
2971 unixctl_command_reply(conn, 501, "no such bond");
2972 return;
2973 }
2974
2975 ds_put_format(&ds, "updelay: %d ms\n", port->updelay);
2976 ds_put_format(&ds, "downdelay: %d ms\n", port->downdelay);
2977 ds_put_format(&ds, "next rebalance: %lld ms\n",
c8143c88 2978 port->bond_next_rebalance - time_msec());
da285df4
BP
2979 for (j = 0; j < port->n_ifaces; j++) {
2980 const struct iface *iface = port->ifaces[j];
2981 struct bond_entry *be;
2982
2983 /* Basic info. */
2984 ds_put_format(&ds, "slave %s: %s\n",
2985 iface->name, iface->enabled ? "enabled" : "disabled");
2986 if (j == port->active_iface) {
2987 ds_put_cstr(&ds, "\tactive slave\n");
2988 }
2989 if (iface->delay_expires != LLONG_MAX) {
2990 ds_put_format(&ds, "\t%s expires in %lld ms\n",
2991 iface->enabled ? "downdelay" : "updelay",
2992 iface->delay_expires - time_msec());
2993 }
2994
2995 /* Hashes. */
2996 for (be = port->bond_hash; be <= &port->bond_hash[BOND_MASK]; be++) {
2997 int hash = be - port->bond_hash;
2998 struct mac_entry *me;
2999
3000 if (be->iface_idx != j) {
3001 continue;
3002 }
3003
2886875a 3004 ds_put_format(&ds, "\thash %d: %"PRIu64" kB load\n",
da285df4
BP
3005 hash, be->tx_bytes / 1024);
3006
3007 /* MACs. */
da285df4
BP
3008 LIST_FOR_EACH (me, struct mac_entry, lru_node,
3009 &port->bridge->ml->lrus) {
3010 uint16_t dp_ifidx;
3011 tag_type tags = 0;
3012 if (bond_hash(me->mac) == hash
3013 && me->port != port->port_idx
3014 && choose_output_iface(port, me->mac, &dp_ifidx, &tags)
3015 && dp_ifidx == iface->dp_ifidx)
3016 {
3017 ds_put_format(&ds, "\t\t"ETH_ADDR_FMT"\n",
3018 ETH_ADDR_ARGS(me->mac));
3019 }
3020 }
3021 }
3022 }
3023 unixctl_command_reply(conn, 200, ds_cstr(&ds));
3024 ds_destroy(&ds);
3025}
3026
3027static void
8ca79daa 3028bond_unixctl_migrate(struct unixctl_conn *conn, const char *args_,
c69ee87c 3029 void *aux OVS_UNUSED)
da285df4
BP
3030{
3031 char *args = (char *) args_;
3032 char *save_ptr = NULL;
3033 char *bond_s, *hash_s, *slave_s;
3034 uint8_t mac[ETH_ADDR_LEN];
3035 struct port *port;
3036 struct iface *iface;
3037 struct bond_entry *entry;
3038 int hash;
3039
3040 bond_s = strtok_r(args, " ", &save_ptr);
3041 hash_s = strtok_r(NULL, " ", &save_ptr);
3042 slave_s = strtok_r(NULL, " ", &save_ptr);
3043 if (!slave_s) {
3044 unixctl_command_reply(conn, 501,
3045 "usage: bond/migrate BOND HASH SLAVE");
3046 return;
3047 }
3048
3049 port = bond_find(bond_s);
3050 if (!port) {
3051 unixctl_command_reply(conn, 501, "no such bond");
3052 return;
3053 }
3054
eaa71334
BP
3055 if (sscanf(hash_s, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
3056 == ETH_ADDR_SCAN_COUNT) {
da285df4
BP
3057 hash = bond_hash(mac);
3058 } else if (strspn(hash_s, "0123456789") == strlen(hash_s)) {
3059 hash = atoi(hash_s) & BOND_MASK;
3060 } else {
3061 unixctl_command_reply(conn, 501, "bad hash");
3062 return;
3063 }
3064
3065 iface = port_lookup_iface(port, slave_s);
3066 if (!iface) {
3067 unixctl_command_reply(conn, 501, "no such slave");
3068 return;
3069 }
3070
3071 if (!iface->enabled) {
3072 unixctl_command_reply(conn, 501, "cannot migrate to disabled slave");
3073 return;
3074 }
3075
3076 entry = &port->bond_hash[hash];
3077 ofproto_revalidate(port->bridge->ofproto, entry->iface_tag);
3078 entry->iface_idx = iface->port_ifidx;
3079 entry->iface_tag = tag_create_random();
85c74638 3080 port->bond_compat_is_stale = true;
da285df4
BP
3081 unixctl_command_reply(conn, 200, "migrated");
3082}
3083
3084static void
8ca79daa 3085bond_unixctl_set_active_slave(struct unixctl_conn *conn, const char *args_,
c69ee87c 3086 void *aux OVS_UNUSED)
da285df4
BP
3087{
3088 char *args = (char *) args_;
3089 char *save_ptr = NULL;
3090 char *bond_s, *slave_s;
3091 struct port *port;
3092 struct iface *iface;
3093
3094 bond_s = strtok_r(args, " ", &save_ptr);
3095 slave_s = strtok_r(NULL, " ", &save_ptr);
3096 if (!slave_s) {
3097 unixctl_command_reply(conn, 501,
3098 "usage: bond/set-active-slave BOND SLAVE");
3099 return;
3100 }
3101
3102 port = bond_find(bond_s);
3103 if (!port) {
3104 unixctl_command_reply(conn, 501, "no such bond");
3105 return;
3106 }
3107
3108 iface = port_lookup_iface(port, slave_s);
3109 if (!iface) {
3110 unixctl_command_reply(conn, 501, "no such slave");
3111 return;
3112 }
3113
3114 if (!iface->enabled) {
3115 unixctl_command_reply(conn, 501, "cannot make disabled slave active");
3116 return;
3117 }
3118
3119 if (port->active_iface != iface->port_ifidx) {
3120 ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
3121 port->active_iface = iface->port_ifidx;
3122 port->active_iface_tag = tag_create_random();
3123 VLOG_INFO("port %s: active interface is now %s",
3124 port->name, iface->name);
3125 bond_send_learning_packets(port);
3126 unixctl_command_reply(conn, 200, "done");
3127 } else {
3128 unixctl_command_reply(conn, 200, "no change");
3129 }
3130}
3131
3132static void
3133enable_slave(struct unixctl_conn *conn, const char *args_, bool enable)
3134{
3135 char *args = (char *) args_;
3136 char *save_ptr = NULL;
3137 char *bond_s, *slave_s;
3138 struct port *port;
3139 struct iface *iface;
3140
3141 bond_s = strtok_r(args, " ", &save_ptr);
3142 slave_s = strtok_r(NULL, " ", &save_ptr);
3143 if (!slave_s) {
3144 unixctl_command_reply(conn, 501,
3145 "usage: bond/enable/disable-slave BOND SLAVE");
3146 return;
3147 }
3148
3149 port = bond_find(bond_s);
3150 if (!port) {
3151 unixctl_command_reply(conn, 501, "no such bond");
3152 return;
3153 }
3154
3155 iface = port_lookup_iface(port, slave_s);
3156 if (!iface) {
3157 unixctl_command_reply(conn, 501, "no such slave");
3158 return;
3159 }
3160
3161 bond_enable_slave(iface, enable);
3162 unixctl_command_reply(conn, 501, enable ? "enabled" : "disabled");
3163}
3164
3165static void
8ca79daa 3166bond_unixctl_enable_slave(struct unixctl_conn *conn, const char *args,
c69ee87c 3167 void *aux OVS_UNUSED)
da285df4
BP
3168{
3169 enable_slave(conn, args, true);
3170}
3171
3172static void
8ca79daa 3173bond_unixctl_disable_slave(struct unixctl_conn *conn, const char *args,
c69ee87c 3174 void *aux OVS_UNUSED)
da285df4
BP
3175{
3176 enable_slave(conn, args, false);
3177}
3178
e0644b61 3179static void
8ca79daa 3180bond_unixctl_hash(struct unixctl_conn *conn, const char *args,
c69ee87c 3181 void *aux OVS_UNUSED)
e0644b61
IC
3182{
3183 uint8_t mac[ETH_ADDR_LEN];
3184 uint8_t hash;
3185 char *hash_cstr;
3186
3187 if (sscanf(args, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
3188 == ETH_ADDR_SCAN_COUNT) {
3189 hash = bond_hash(mac);
3190
3191 hash_cstr = xasprintf("%u", hash);
3192 unixctl_command_reply(conn, 200, hash_cstr);
3193 free(hash_cstr);
3194 } else {
3195 unixctl_command_reply(conn, 501, "invalid mac");
3196 }
3197}
3198
da285df4
BP
3199static void
3200bond_init(void)
3201{
8ca79daa
BP
3202 unixctl_command_register("bond/list", bond_unixctl_list, NULL);
3203 unixctl_command_register("bond/show", bond_unixctl_show, NULL);
3204 unixctl_command_register("bond/migrate", bond_unixctl_migrate, NULL);
da285df4 3205 unixctl_command_register("bond/set-active-slave",
8ca79daa
BP
3206 bond_unixctl_set_active_slave, NULL);
3207 unixctl_command_register("bond/enable-slave", bond_unixctl_enable_slave,
3208 NULL);
3209 unixctl_command_register("bond/disable-slave", bond_unixctl_disable_slave,
3210 NULL);
3211 unixctl_command_register("bond/hash", bond_unixctl_hash, NULL);
da285df4
BP
3212}
3213\f
064af421
BP
3214/* Port functions. */
3215
76343538 3216static struct port *
064af421
BP
3217port_create(struct bridge *br, const char *name)
3218{
3219 struct port *port;
3220
ec6fde61 3221 port = xzalloc(sizeof *port);
064af421
BP
3222 port->bridge = br;
3223 port->port_idx = br->n_ports;
3224 port->vlan = -1;
3225 port->trunks = NULL;
3226 port->name = xstrdup(name);
3227 port->active_iface = -1;
064af421
BP
3228
3229 if (br->n_ports >= br->allocated_ports) {
3230 br->ports = x2nrealloc(br->ports, &br->allocated_ports,
3231 sizeof *br->ports);
3232 }
3233 br->ports[br->n_ports++] = port;
836fad5e 3234 shash_add_assert(&br->port_by_name, port->name, port);
064af421
BP
3235
3236 VLOG_INFO("created port %s on bridge %s", port->name, br->name);
3237 bridge_flush(br);
76343538
BP
3238
3239 return port;
064af421
BP
3240}
3241
c8143c88
BP
3242static const char *
3243get_port_other_config(const struct ovsrec_port *port, const char *key,
3244 const char *default_value)
3245{
af6278e1
BP
3246 const char *value;
3247
3248 value = get_ovsrec_key_value(&port->header_, &ovsrec_port_col_other_config,
3249 key);
c8143c88
BP
3250 return value ? value : default_value;
3251}
3252
4a1ee6ae
BP
3253static void
3254port_del_ifaces(struct port *port, const struct ovsrec_port *cfg)
3255{
3256 struct shash new_ifaces;
3257 size_t i;
3258
3259 /* Collect list of new interfaces. */
3260 shash_init(&new_ifaces);
3261 for (i = 0; i < cfg->n_interfaces; i++) {
3262 const char *name = cfg->interfaces[i]->name;
3263 shash_add_once(&new_ifaces, name, NULL);
3264 }
3265
3266 /* Get rid of deleted interfaces. */
3267 for (i = 0; i < port->n_ifaces; ) {
3268 if (!shash_find(&new_ifaces, cfg->interfaces[i]->name)) {
3269 iface_destroy(port->ifaces[i]);
3270 } else {
3271 i++;
3272 }
3273 }
3274
3275 shash_destroy(&new_ifaces);
3276}
3277
064af421 3278static void
76343538 3279port_reconfigure(struct port *port, const struct ovsrec_port *cfg)
064af421 3280{
4a1ee6ae 3281 struct shash new_ifaces;
c8143c88 3282 long long int next_rebalance;
064af421
BP
3283 unsigned long *trunks;
3284 int vlan;
3285 size_t i;
3286
76343538
BP
3287 port->cfg = cfg;
3288
4a1ee6ae 3289 /* Update settings. */
76343538
BP
3290 port->updelay = cfg->bond_updelay;
3291 if (port->updelay < 0) {
3292 port->updelay = 0;
3293 }
3294 port->updelay = cfg->bond_downdelay;
3295 if (port->downdelay < 0) {
3296 port->downdelay = 0;
064af421 3297 }
c8143c88
BP
3298 port->bond_rebalance_interval = atoi(
3299 get_port_other_config(cfg, "bond-rebalance-interval", "10000"));
3300 if (port->bond_rebalance_interval < 1000) {
3301 port->bond_rebalance_interval = 1000;
3302 }
3303 next_rebalance = time_msec() + port->bond_rebalance_interval;
3304 if (port->bond_next_rebalance > next_rebalance) {
3305 port->bond_next_rebalance = next_rebalance;
3306 }
064af421 3307
4a1ee6ae
BP
3308 /* Add new interfaces and update 'cfg' member of existing ones. */
3309 shash_init(&new_ifaces);
3310 for (i = 0; i < cfg->n_interfaces; i++) {
3311 const struct ovsrec_interface *if_cfg = cfg->interfaces[i];
76343538
BP
3312 struct iface *iface;
3313
4a1ee6ae
BP
3314 if (!shash_add_once(&new_ifaces, if_cfg->name, NULL)) {
3315 VLOG_WARN("port %s: %s specified twice as port interface",
3316 port->name, if_cfg->name);
3317 continue;
3318 }
3319
3320 iface = iface_lookup(port->bridge, if_cfg->name);
3321 if (iface) {
3322 if (iface->port != port) {
3323 VLOG_ERR("bridge %s: %s interface is on multiple ports, "
3324 "removing from %s",
3325 port->bridge->name, if_cfg->name, iface->port->name);
3326 continue;
3327 }
149f577a 3328 iface->cfg = if_cfg;
4a1ee6ae
BP
3329 } else {
3330 iface_create(port, if_cfg);
064af421
BP
3331 }
3332 }
4a1ee6ae 3333 shash_destroy(&new_ifaces);
064af421
BP
3334
3335 /* Get VLAN tag. */
3336 vlan = -1;
76343538
BP
3337 if (cfg->tag) {
3338 if (port->n_ifaces < 2) {
3339 vlan = *cfg->tag;
064af421
BP
3340 if (vlan >= 0 && vlan <= 4095) {
3341 VLOG_DBG("port %s: assigning VLAN tag %d", port->name, vlan);
76343538
BP
3342 } else {
3343 vlan = -1;
064af421
BP
3344 }
3345 } else {
3346 /* It's possible that bonded, VLAN-tagged ports make sense. Maybe
3347 * they even work as-is. But they have not been tested. */
3348 VLOG_WARN("port %s: VLAN tags not supported on bonded ports",
3349 port->name);
3350 }
3351 }
3352 if (port->vlan != vlan) {
3353 port->vlan = vlan;
3354 bridge_flush(port->bridge);
3355 }
3356
3357 /* Get trunked VLANs. */
3358 trunks = NULL;
3e9c481c 3359 if (vlan < 0 && cfg->n_trunks) {
76343538 3360 size_t n_errors;
064af421
BP
3361 size_t i;
3362
3363 trunks = bitmap_allocate(4096);
064af421 3364 n_errors = 0;
76343538
BP
3365 for (i = 0; i < cfg->n_trunks; i++) {
3366 int trunk = cfg->trunks[i];
064af421
BP
3367 if (trunk >= 0) {
3368 bitmap_set1(trunks, trunk);
3369 } else {
3370 n_errors++;
3371 }
3372 }
3373 if (n_errors) {
3374 VLOG_ERR("port %s: invalid values for %zu trunk VLANs",
76343538 3375 port->name, cfg->n_trunks);
064af421 3376 }
76343538 3377 if (n_errors == cfg->n_trunks) {
3e9c481c 3378 VLOG_ERR("port %s: no valid trunks, trunking all VLANs",
76343538 3379 port->name);
3e9c481c
BP
3380 bitmap_free(trunks);
3381 trunks = NULL;
064af421 3382 }
3e9c481c
BP
3383 } else if (vlan >= 0 && cfg->n_trunks) {
3384 VLOG_ERR("port %s: ignoring trunks in favor of implicit vlan",
3385 port->name);
064af421
BP
3386 }
3387 if (trunks == NULL
3388 ? port->trunks != NULL
3389 : port->trunks == NULL || !bitmap_equal(trunks, port->trunks, 4096)) {
3390 bridge_flush(port->bridge);
3391 }
3392 bitmap_free(port->trunks);
3393 port->trunks = trunks;
064af421
BP
3394}
3395
3396static void
3397port_destroy(struct port *port)
3398{
3399 if (port) {
3400 struct bridge *br = port->bridge;
3401 struct port *del;
37e7f427 3402 int i;
064af421
BP
3403
3404 proc_net_compat_update_vlan(port->name, NULL, 0);
85c74638 3405 proc_net_compat_update_bond(port->name, NULL);
064af421
BP
3406
3407 for (i = 0; i < MAX_MIRRORS; i++) {
3408 struct mirror *m = br->mirrors[i];
3409 if (m && m->out_port == port) {
3410 mirror_destroy(m);
3411 }
3412 }
3413
3414 while (port->n_ifaces > 0) {
3415 iface_destroy(port->ifaces[port->n_ifaces - 1]);
3416 }
3417
836fad5e
BP
3418 shash_find_and_delete_assert(&br->port_by_name, port->name);
3419
064af421
BP
3420 del = br->ports[port->port_idx] = br->ports[--br->n_ports];
3421 del->port_idx = port->port_idx;
3422
3423 free(port->ifaces);
3424 bitmap_free(port->trunks);
3425 free(port->name);
3426 free(port);
3427 bridge_flush(br);
3428 }
3429}
3430
3431static struct port *
3432port_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
3433{
3434 struct iface *iface = iface_from_dp_ifidx(br, dp_ifidx);
3435 return iface ? iface->port : NULL;
3436}
3437
3438static struct port *
3439port_lookup(const struct bridge *br, const char *name)
3440{
836fad5e 3441 return shash_find_data(&br->port_by_name, name);
064af421
BP
3442}
3443
da285df4
BP
3444static struct iface *
3445port_lookup_iface(const struct port *port, const char *name)
3446{
4a1ee6ae
BP
3447 struct iface *iface = iface_lookup(port->bridge, name);
3448 return iface && iface->port == port ? iface : NULL;
da285df4
BP
3449}
3450
064af421
BP
3451static void
3452port_update_bonding(struct port *port)
3453{
3454 if (port->n_ifaces < 2) {
3455 /* Not a bonded port. */
3456 if (port->bond_hash) {
3457 free(port->bond_hash);
3458 port->bond_hash = NULL;
85c74638 3459 port->bond_compat_is_stale = true;
76343538 3460 port->bond_fake_iface = false;
064af421
BP
3461 }
3462 } else {
3463 if (!port->bond_hash) {
3464 size_t i;
3465
3466 port->bond_hash = xcalloc(BOND_MASK + 1, sizeof *port->bond_hash);
3467 for (i = 0; i <= BOND_MASK; i++) {
3468 struct bond_entry *e = &port->bond_hash[i];
3469 e->iface_idx = -1;
3470 e->tx_bytes = 0;
3471 }
3472 port->no_ifaces_tag = tag_create_random();
3473 bond_choose_active_iface(port);
c8143c88
BP
3474 port->bond_next_rebalance
3475 = time_msec() + port->bond_rebalance_interval;
8722022c
BP
3476
3477 if (port->cfg->bond_fake_iface) {
3478 port->bond_next_fake_iface_update = time_msec();
3479 }
064af421 3480 }
85c74638 3481 port->bond_compat_is_stale = true;
76343538 3482 port->bond_fake_iface = port->cfg->bond_fake_iface;
064af421
BP
3483 }
3484}
3485
3486static void
3487port_update_bond_compat(struct port *port)
3488{
2aebae83 3489 struct compat_bond_hash compat_hashes[BOND_MASK + 1];
064af421
BP
3490 struct compat_bond bond;
3491 size_t i;
3492
3493 if (port->n_ifaces < 2) {
85c74638 3494 proc_net_compat_update_bond(port->name, NULL);
064af421
BP
3495 return;
3496 }
3497
3498 bond.up = false;
3499 bond.updelay = port->updelay;
3500 bond.downdelay = port->downdelay;
2aebae83
BP
3501
3502 bond.n_hashes = 0;
3503 bond.hashes = compat_hashes;
3504 if (port->bond_hash) {
3505 const struct bond_entry *e;
3506 for (e = port->bond_hash; e <= &port->bond_hash[BOND_MASK]; e++) {
3507 if (e->iface_idx >= 0 && e->iface_idx < port->n_ifaces) {
3508 struct compat_bond_hash *cbh = &bond.hashes[bond.n_hashes++];
3509 cbh->hash = e - port->bond_hash;
3510 cbh->netdev_name = port->ifaces[e->iface_idx]->name;
3511 }
3512 }
3513 }
3514
064af421
BP
3515 bond.n_slaves = port->n_ifaces;
3516 bond.slaves = xmalloc(port->n_ifaces * sizeof *bond.slaves);
3517 for (i = 0; i < port->n_ifaces; i++) {
3518 struct iface *iface = port->ifaces[i];
3519 struct compat_bond_slave *slave = &bond.slaves[i];
3520 slave->name = iface->name;
6643c03b
JP
3521
3522 /* We need to make the same determination as the Linux bonding
3523 * code to determine whether a slave should be consider "up".
3524 * The Linux function bond_miimon_inspect() supports four
3525 * BOND_LINK_* states:
3526 *
3527 * - BOND_LINK_UP: carrier detected, updelay has passed.
3528 * - BOND_LINK_FAIL: carrier lost, downdelay in progress.
3529 * - BOND_LINK_DOWN: carrier lost, downdelay has passed.
3530 * - BOND_LINK_BACK: carrier detected, updelay in progress.
3531 *
3532 * The function bond_info_show_slave() only considers BOND_LINK_UP
3533 * to be "up" and anything else to be "down".
3534 */
3535 slave->up = iface->enabled && iface->delay_expires == LLONG_MAX;
064af421
BP
3536 if (slave->up) {
3537 bond.up = true;
3538 }
96b9b7a9 3539 netdev_get_etheraddr(iface->netdev, slave->mac);
064af421 3540 }
2aebae83 3541
76343538 3542 if (port->bond_fake_iface) {
c6303ea1
JG
3543 struct netdev *bond_netdev;
3544
149f577a 3545 if (!netdev_open_default(port->name, &bond_netdev)) {
c6303ea1
JG
3546 if (bond.up) {
3547 netdev_turn_flags_on(bond_netdev, NETDEV_UP, true);
3548 } else {
3549 netdev_turn_flags_off(bond_netdev, NETDEV_UP, true);
3550 }
3551 netdev_close(bond_netdev);
3552 }
3553 }
3554
064af421
BP
3555 proc_net_compat_update_bond(port->name, &bond);
3556 free(bond.slaves);
3557}
3558
3559static void
3560port_update_vlan_compat(struct port *port)
3561{
3562 struct bridge *br = port->bridge;
3563 char *vlandev_name = NULL;
3564
3565 if (port->vlan > 0) {
3566 /* Figure out the name that the VLAN device should actually have, if it
3567 * existed. This takes some work because the VLAN device would not
3568 * have port->name in its name; rather, it would have the trunk port's
3569 * name, and 'port' would be attached to a bridge that also had the
3570 * VLAN device one of its ports. So we need to find a trunk port that
3571 * includes port->vlan.
3572 *
3573 * There might be more than one candidate. This doesn't happen on
3574 * XenServer, so if it happens we just pick the first choice in
3575 * alphabetical order instead of creating multiple VLAN devices. */
3576 size_t i;
3577 for (i = 0; i < br->n_ports; i++) {
3578 struct port *p = br->ports[i];
3579 if (port_trunks_vlan(p, port->vlan)
3580 && p->n_ifaces
3581 && (!vlandev_name || strcmp(p->name, vlandev_name) <= 0))
3582 {
96b9b7a9
BP
3583 uint8_t ea[ETH_ADDR_LEN];
3584 netdev_get_etheraddr(p->ifaces[0]->netdev, ea);
064af421
BP
3585 if (!eth_addr_is_multicast(ea) &&
3586 !eth_addr_is_reserved(ea) &&
3587 !eth_addr_is_zero(ea)) {
3588 vlandev_name = p->name;
3589 }
3590 }
3591 }
3592 }
3593 proc_net_compat_update_vlan(port->name, vlandev_name, port->vlan);
3594}
3595\f
3596/* Interface functions. */
3597
76343538 3598static struct iface *
a740f0de 3599iface_create(struct port *port, const struct ovsrec_interface *if_cfg)
064af421 3600{
4a1ee6ae 3601 struct bridge *br = port->bridge;
064af421 3602 struct iface *iface;
a740f0de
JG
3603 char *name = if_cfg->name;
3604 int error;
064af421 3605
ec6fde61 3606 iface = xzalloc(sizeof *iface);
064af421
BP
3607 iface->port = port;
3608 iface->port_ifidx = port->n_ifaces;
3609 iface->name = xstrdup(name);
3610 iface->dp_ifidx = -1;
3611 iface->tag = tag_create_random();
064af421 3612 iface->delay_expires = LLONG_MAX;
0c6aea3f 3613 iface->netdev = NULL;
149f577a 3614 iface->cfg = if_cfg;
064af421 3615
2457b24f
JG
3616 shash_add_assert(&br->iface_by_name, iface->name, iface);
3617
ceb4559f 3618 /* Attempt to create the network interface in case it doesn't exist yet. */
4a1ee6ae 3619 if (!iface_is_internal(br, iface->name)) {
ceb4559f
JG
3620 error = set_up_iface(if_cfg, iface, true);
3621 if (error) {
3622 VLOG_WARN("could not create iface %s: %s", iface->name,
3623 strerror(error));
3624
2457b24f 3625 shash_find_and_delete_assert(&br->iface_by_name, iface->name);
ceb4559f
JG
3626 free(iface->name);
3627 free(iface);
3628 return NULL;
3629 }
3630 }
3631
064af421
BP
3632 if (port->n_ifaces >= port->allocated_ifaces) {
3633 port->ifaces = x2nrealloc(port->ifaces, &port->allocated_ifaces,
3634 sizeof *port->ifaces);
3635 }
3636 port->ifaces[port->n_ifaces++] = iface;
3637 if (port->n_ifaces > 1) {
4a1ee6ae 3638 br->has_bonded_ports = true;
064af421
BP
3639 }
3640
3641 VLOG_DBG("attached network device %s to port %s", iface->name, port->name);
3642
4a1ee6ae 3643 bridge_flush(br);
76343538
BP
3644
3645 return iface;
064af421
BP
3646}
3647
3648static void
3649iface_destroy(struct iface *iface)
3650{
3651 if (iface) {
3652 struct port *port = iface->port;
3653 struct bridge *br = port->bridge;
3654 bool del_active = port->active_iface == iface->port_ifidx;
3655 struct iface *del;
3656
4a1ee6ae
BP
3657 shash_find_and_delete_assert(&br->iface_by_name, iface->name);
3658
064af421
BP
3659 if (iface->dp_ifidx >= 0) {
3660 port_array_set(&br->ifaces, iface->dp_ifidx, NULL);
3661 }
3662
3663 del = port->ifaces[iface->port_ifidx] = port->ifaces[--port->n_ifaces];
3664 del->port_ifidx = iface->port_ifidx;
3665
0c6aea3f 3666 netdev_close(iface->netdev);
064af421
BP
3667
3668 if (del_active) {
3669 ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
3670 bond_choose_active_iface(port);
2303f3b2 3671 bond_send_learning_packets(port);
064af421
BP
3672 }
3673
a740f0de
JG
3674 free(iface->name);
3675 free(iface);
3676
064af421
BP
3677 bridge_flush(port->bridge);
3678 }
3679}
3680
3681static struct iface *
3682iface_lookup(const struct bridge *br, const char *name)
3683{
4a1ee6ae 3684 return shash_find_data(&br->iface_by_name, name);
064af421
BP
3685}
3686
3687static struct iface *
3688iface_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
3689{
3690 return port_array_get(&br->ifaces, dp_ifidx);
3691}
557d8e6c
BP
3692
3693/* Returns true if 'iface' is the name of an "internal" interface on bridge
3694 * 'br', that is, an interface that is entirely simulated within the datapath.
3695 * The local port (ODPP_LOCAL) is always an internal interface. Other local
3696 * interfaces are created by setting "iface.<iface>.internal = true".
3697 *
3698 * In addition, we have a kluge-y feature that creates an internal port with
3699 * the name of a bonded port if "bonding.<bondname>.fake-iface = true" is set.
3700 * This feature needs to go away in the long term. Until then, this is one
3701 * reason why this function takes a name instead of a struct iface: the fake
3702 * interfaces created this way do not have a struct iface. */
3703static bool
76343538 3704iface_is_internal(const struct bridge *br, const char *if_name)
557d8e6c 3705{
76343538
BP
3706 struct iface *iface;
3707 struct port *port;
3708
3709 if (!strcmp(if_name, br->name)) {
557d8e6c
BP
3710 return true;
3711 }
3712
76343538
BP
3713 iface = iface_lookup(br, if_name);
3714 if (iface && !strcmp(iface->cfg->type, "internal")) {
3715 return true;
557d8e6c
BP
3716 }
3717
76343538 3718 port = port_lookup(br, if_name);
2c30e5d1 3719 if (port && port->n_ifaces > 1 && port->cfg->bond_fake_iface) {
76343538
BP
3720 return true;
3721 }
557d8e6c
BP
3722 return false;
3723}
52df17e7
BP
3724
3725/* Set Ethernet address of 'iface', if one is specified in the configuration
3726 * file. */
3727static void
3728iface_set_mac(struct iface *iface)
3729{
76343538 3730 uint8_t ea[ETH_ADDR_LEN];
52df17e7 3731
76343538 3732 if (iface->cfg->mac && eth_addr_from_string(iface->cfg->mac, ea)) {
52df17e7
BP
3733 if (eth_addr_is_multicast(ea)) {
3734 VLOG_ERR("interface %s: cannot set MAC to multicast address",
3735 iface->name);
3736 } else if (iface->dp_ifidx == ODPP_LOCAL) {
3737 VLOG_ERR("ignoring iface.%s.mac; use bridge.%s.mac instead",
3738 iface->name, iface->name);
3739 } else {
4d678233 3740 int error = netdev_set_etheraddr(iface->netdev, ea);
52df17e7
BP
3741 if (error) {
3742 VLOG_ERR("interface %s: setting MAC failed (%s)",
3743 iface->name, strerror(error));
3744 }
3745 }
3746 }
3747}
c1c9c9c4
BP
3748
3749static void
3750shash_from_ovs_idl_map(char **keys, char **values, size_t n,
3751 struct shash *shash)
3752{
3753 size_t i;
3754
3755 shash_init(shash);
3756 for (i = 0; i < n; i++) {
3757 shash_add(shash, keys[i], values[i]);
3758 }
3759}
3760
3761struct iface_delete_queues_cbdata {
3762 struct netdev *netdev;
44fca7f9 3763 const struct ovsdb_datum *queues;
c1c9c9c4
BP
3764};
3765
3766static bool
44fca7f9 3767queue_ids_include(const struct ovsdb_datum *queues, int64_t target)
c1c9c9c4 3768{
44fca7f9 3769 union ovsdb_atom atom;
c1c9c9c4 3770
44fca7f9
BP
3771 atom.integer = target;
3772 return ovsdb_datum_find_key(queues, &atom, OVSDB_TYPE_INTEGER) != UINT_MAX;
c1c9c9c4
BP
3773}
3774
3775static void
3776iface_delete_queues(unsigned int queue_id,
3777 const struct shash *details OVS_UNUSED, void *cbdata_)
3778{
3779 struct iface_delete_queues_cbdata *cbdata = cbdata_;
3780
44fca7f9 3781 if (!queue_ids_include(cbdata->queues, queue_id)) {
c1c9c9c4
BP
3782 netdev_delete_queue(cbdata->netdev, queue_id);
3783 }
3784}
3785
3786static void
3787iface_update_qos(struct iface *iface, const struct ovsrec_qos *qos)
3788{
3789 if (!qos || qos->type[0] == '\0') {
3790 netdev_set_qos(iface->netdev, NULL, NULL);
3791 } else {
3792 struct iface_delete_queues_cbdata cbdata;
3793 struct shash details;
3794 size_t i;
3795
3796 /* Configure top-level Qos for 'iface'. */
3797 shash_from_ovs_idl_map(qos->key_other_config, qos->value_other_config,
3798 qos->n_other_config, &details);
3799 netdev_set_qos(iface->netdev, qos->type, &details);
3800 shash_destroy(&details);
3801
3802 /* Deconfigure queues that were deleted. */
3803 cbdata.netdev = iface->netdev;
44fca7f9
BP
3804 cbdata.queues = ovsrec_qos_get_queues(qos, OVSDB_TYPE_INTEGER,
3805 OVSDB_TYPE_UUID);
c1c9c9c4
BP
3806 netdev_dump_queues(iface->netdev, iface_delete_queues, &cbdata);
3807
3808 /* Configure queues for 'iface'. */
3809 for (i = 0; i < qos->n_queues; i++) {
3810 const struct ovsrec_queue *queue = qos->value_queues[i];
3811 unsigned int queue_id = qos->key_queues[i];
3812
3813 shash_from_ovs_idl_map(queue->key_other_config,
3814 queue->value_other_config,
3815 queue->n_other_config, &details);
3816 netdev_set_queue(iface->netdev, queue_id, &details);
3817 shash_destroy(&details);
3818 }
3819 }
3820}
064af421
BP
3821\f
3822/* Port mirroring. */
3823
dd0d105c
BP
3824static struct mirror *
3825mirror_find_by_uuid(struct bridge *br, const struct uuid *uuid)
3826{
3827 int i;
3828
3829 for (i = 0; i < MAX_MIRRORS; i++) {
3830 struct mirror *m = br->mirrors[i];
3831 if (m && uuid_equals(uuid, &m->uuid)) {
3832 return m;
3833 }
3834 }
3835 return NULL;
3836}
3837
064af421 3838static void
37e7f427 3839mirror_reconfigure(struct bridge *br)
064af421 3840{
f2d7fd66 3841 unsigned long *rspan_vlans;
37e7f427 3842 int i;
064af421 3843
dd0d105c 3844 /* Get rid of deleted mirrors. */
064af421 3845 for (i = 0; i < MAX_MIRRORS; i++) {
dd0d105c
BP
3846 struct mirror *m = br->mirrors[i];
3847 if (m) {
3848 const struct ovsdb_datum *mc;
3849 union ovsdb_atom atom;
3850
3851 mc = ovsrec_bridge_get_mirrors(br->cfg, OVSDB_TYPE_UUID);
3852 atom.uuid = br->mirrors[i]->uuid;
3853 if (ovsdb_datum_find_key(mc, &atom, OVSDB_TYPE_UUID) == UINT_MAX) {
3854 mirror_destroy(m);
3855 }
064af421
BP
3856 }
3857 }
3858
dd0d105c 3859 /* Add new mirrors and reconfigure existing ones. */
37e7f427
BP
3860 for (i = 0; i < br->cfg->n_mirrors; i++) {
3861 struct ovsrec_mirror *cfg = br->cfg->mirrors[i];
dd0d105c
BP
3862 struct mirror *m = mirror_find_by_uuid(br, &cfg->header_.uuid);
3863 if (m) {
3864 mirror_reconfigure_one(m, cfg);
3865 } else {
3866 mirror_create(br, cfg);
064af421
BP
3867 }
3868 }
3869
3870 /* Update port reserved status. */
3871 for (i = 0; i < br->n_ports; i++) {
3872 br->ports[i]->is_mirror_output_port = false;
3873 }
3874 for (i = 0; i < MAX_MIRRORS; i++) {
3875 struct mirror *m = br->mirrors[i];
3876 if (m && m->out_port) {
3877 m->out_port->is_mirror_output_port = true;
3878 }
3879 }
f2d7fd66 3880
8f30d09a 3881 /* Update flooded vlans (for RSPAN). */
f2d7fd66 3882 rspan_vlans = NULL;
37e7f427 3883 if (br->cfg->n_flood_vlans) {
f2d7fd66
JG
3884 rspan_vlans = bitmap_allocate(4096);
3885
37e7f427
BP
3886 for (i = 0; i < br->cfg->n_flood_vlans; i++) {
3887 int64_t vlan = br->cfg->flood_vlans[i];
3888 if (vlan >= 0 && vlan < 4096) {
f2d7fd66 3889 bitmap_set1(rspan_vlans, vlan);
37e7f427 3890 VLOG_INFO("bridge %s: disabling learning on vlan %"PRId64,
42061b2a 3891 br->name, vlan);
f2d7fd66 3892 } else {
37e7f427
BP
3893 VLOG_ERR("bridge %s: invalid value %"PRId64 "for flood VLAN",
3894 br->name, vlan);
f2d7fd66
JG
3895 }
3896 }
3897 }
8f30d09a 3898 if (mac_learning_set_flood_vlans(br->ml, rspan_vlans)) {
f2d7fd66
JG
3899 bridge_flush(br);
3900 }
064af421
BP
3901}
3902
dd0d105c
BP
3903static void
3904mirror_create(struct bridge *br, struct ovsrec_mirror *cfg)
064af421
BP
3905{
3906 struct mirror *m;
3907 size_t i;
3908
3909 for (i = 0; ; i++) {
3910 if (i >= MAX_MIRRORS) {
3911 VLOG_WARN("bridge %s: maximum of %d port mirrors reached, "
dd0d105c
BP
3912 "cannot create %s", br->name, MAX_MIRRORS, cfg->name);
3913 return;
064af421
BP
3914 }
3915 if (!br->mirrors[i]) {
3916 break;
3917 }
3918 }
3919
dd0d105c 3920 VLOG_INFO("created port mirror %s on bridge %s", cfg->name, br->name);
064af421
BP
3921 bridge_flush(br);
3922
ec6fde61 3923 br->mirrors[i] = m = xzalloc(sizeof *m);
064af421
BP
3924 m->bridge = br;
3925 m->idx = i;
dd0d105c 3926 m->name = xstrdup(cfg->name);
37e7f427
BP
3927 shash_init(&m->src_ports);
3928 shash_init(&m->dst_ports);
064af421
BP
3929 m->vlans = NULL;
3930 m->n_vlans = 0;
3931 m->out_vlan = -1;
3932 m->out_port = NULL;
37e7f427 3933
dd0d105c 3934 mirror_reconfigure_one(m, cfg);
064af421
BP
3935}
3936
3937static void
3938mirror_destroy(struct mirror *m)
3939{
3940 if (m) {
3941 struct bridge *br = m->bridge;
3942 size_t i;
3943
3944 for (i = 0; i < br->n_ports; i++) {
3945 br->ports[i]->src_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
3946 br->ports[i]->dst_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
3947 }
3948
37e7f427
BP
3949 shash_destroy(&m->src_ports);
3950 shash_destroy(&m->dst_ports);
064af421
BP
3951 free(m->vlans);
3952
3953 m->bridge->mirrors[m->idx] = NULL;
786880a5 3954 free(m->name);
064af421
BP
3955 free(m);
3956
3957 bridge_flush(br);
3958 }
3959}
3960
3961static void
37e7f427
BP
3962mirror_collect_ports(struct mirror *m, struct ovsrec_port **ports, int n_ports,
3963 struct shash *names)
064af421 3964{
064af421
BP
3965 size_t i;
3966
37e7f427
BP
3967 for (i = 0; i < n_ports; i++) {
3968 const char *name = ports[i]->name;
064af421 3969 if (port_lookup(m->bridge, name)) {
37e7f427 3970 shash_add_once(names, name, NULL);
064af421 3971 } else {
37e7f427
BP
3972 VLOG_WARN("bridge %s: mirror %s cannot match on nonexistent "
3973 "port %s", m->bridge->name, m->name, name);
064af421
BP
3974 }
3975 }
064af421
BP
3976}
3977
3978static size_t
37e7f427
BP
3979mirror_collect_vlans(struct mirror *m, const struct ovsrec_mirror *cfg,
3980 int **vlans)
064af421 3981{
37e7f427
BP
3982 size_t n_vlans;
3983 size_t i;
064af421 3984
0b523ea7 3985 *vlans = xmalloc(sizeof **vlans * cfg->n_select_vlan);
064af421 3986 n_vlans = 0;
37e7f427
BP
3987 for (i = 0; i < cfg->n_select_vlan; i++) {
3988 int64_t vlan = cfg->select_vlan[i];
3989 if (vlan < 0 || vlan > 4095) {
3990 VLOG_WARN("bridge %s: mirror %s selects invalid VLAN %"PRId64,
3991 m->bridge->name, m->name, vlan);
064af421
BP
3992 } else {
3993 (*vlans)[n_vlans++] = vlan;
3994 }
3995 }
3996 return n_vlans;
3997}
3998
3999static bool
4000vlan_is_mirrored(const struct mirror *m, int vlan)
4001{
4002 size_t i;
4003
4004 for (i = 0; i < m->n_vlans; i++) {
4005 if (m->vlans[i] == vlan) {
4006 return true;
4007 }
4008 }
4009 return false;
4010}
4011
4012static bool
4013port_trunks_any_mirrored_vlan(const struct mirror *m, const struct port *p)
4014{
4015 size_t i;
4016
4017 for (i = 0; i < m->n_vlans; i++) {
4018 if (port_trunks_vlan(p, m->vlans[i])) {
4019 return true;
4020 }
4021 }
4022 return false;
4023}
4024
4025static void
37e7f427 4026mirror_reconfigure_one(struct mirror *m, struct ovsrec_mirror *cfg)
064af421 4027{
37e7f427 4028 struct shash src_ports, dst_ports;
064af421 4029 mirror_mask_t mirror_bit;
064af421
BP
4030 struct port *out_port;
4031 int out_vlan;
4032 size_t n_vlans;
4033 int *vlans;
4034 size_t i;
064af421 4035
dd0d105c
BP
4036 /* Set name. */
4037 if (strcmp(cfg->name, m->name)) {
4038 free(m->name);
4039 m->name = xstrdup(cfg->name);
4040 }
4041
064af421 4042 /* Get output port. */
37e7f427
BP
4043 if (cfg->output_port) {
4044 out_port = port_lookup(m->bridge, cfg->output_port->name);
064af421 4045 if (!out_port) {
37e7f427
BP
4046 VLOG_ERR("bridge %s: mirror %s outputs to port not on bridge",
4047 m->bridge->name, m->name);
064af421 4048 mirror_destroy(m);
064af421
BP
4049 return;
4050 }
4051 out_vlan = -1;
4052
37e7f427
BP
4053 if (cfg->output_vlan) {
4054 VLOG_ERR("bridge %s: mirror %s specifies both output port and "
4055 "output vlan; ignoring output vlan",
4056 m->bridge->name, m->name);
064af421 4057 }
37e7f427 4058 } else if (cfg->output_vlan) {
064af421 4059 out_port = NULL;
37e7f427 4060 out_vlan = *cfg->output_vlan;
064af421 4061 } else {
37e7f427
BP
4062 VLOG_ERR("bridge %s: mirror %s does not specify output; ignoring",
4063 m->bridge->name, m->name);
064af421 4064 mirror_destroy(m);
064af421
BP
4065 return;
4066 }
4067
37e7f427
BP
4068 shash_init(&src_ports);
4069 shash_init(&dst_ports);
939ff267
BP
4070 if (cfg->select_all) {
4071 for (i = 0; i < m->bridge->n_ports; i++) {
4072 const char *name = m->bridge->ports[i]->name;
4073 shash_add_once(&src_ports, name, NULL);
4074 shash_add_once(&dst_ports, name, NULL);
4075 }
4076 vlans = NULL;
4077 n_vlans = 0;
4078 } else {
4079 /* Get ports, and drop duplicates and ports that don't exist. */
4080 mirror_collect_ports(m, cfg->select_src_port, cfg->n_select_src_port,
4081 &src_ports);
4082 mirror_collect_ports(m, cfg->select_dst_port, cfg->n_select_dst_port,
4083 &dst_ports);
064af421 4084
939ff267
BP
4085 /* Get all the vlans, and drop duplicate and invalid vlans. */
4086 n_vlans = mirror_collect_vlans(m, cfg, &vlans);
37e7f427 4087 }
064af421
BP
4088
4089 /* Update mirror data. */
37e7f427
BP
4090 if (!shash_equal_keys(&m->src_ports, &src_ports)
4091 || !shash_equal_keys(&m->dst_ports, &dst_ports)
064af421
BP
4092 || m->n_vlans != n_vlans
4093 || memcmp(m->vlans, vlans, sizeof *vlans * n_vlans)
4094 || m->out_port != out_port
4095 || m->out_vlan != out_vlan) {
4096 bridge_flush(m->bridge);
4097 }
37e7f427
BP
4098 shash_swap(&m->src_ports, &src_ports);
4099 shash_swap(&m->dst_ports, &dst_ports);
064af421
BP
4100 free(m->vlans);
4101 m->vlans = vlans;
4102 m->n_vlans = n_vlans;
4103 m->out_port = out_port;
4104 m->out_vlan = out_vlan;
4105
064af421
BP
4106 /* Update ports. */
4107 mirror_bit = MIRROR_MASK_C(1) << m->idx;
4108 for (i = 0; i < m->bridge->n_ports; i++) {
4109 struct port *port = m->bridge->ports[i];
4110
939ff267 4111 if (shash_find(&m->src_ports, port->name)
064af421
BP
4112 || (m->n_vlans
4113 && (!port->vlan
4114 ? port_trunks_any_mirrored_vlan(m, port)
4115 : vlan_is_mirrored(m, port->vlan)))) {
4116 port->src_mirrors |= mirror_bit;
4117 } else {
4118 port->src_mirrors &= ~mirror_bit;
4119 }
4120
939ff267 4121 if (shash_find(&m->dst_ports, port->name)) {
064af421
BP
4122 port->dst_mirrors |= mirror_bit;
4123 } else {
4124 port->dst_mirrors &= ~mirror_bit;
4125 }
4126 }
4127
4128 /* Clean up. */
37e7f427
BP
4129 shash_destroy(&src_ports);
4130 shash_destroy(&dst_ports);
064af421 4131}