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