]> git.proxmox.com Git - ovs.git/blame - vswitchd/bridge.c
ofproto: Fix behavior when special_cb not present (as with ovs-openflowd).
[ovs.git] / vswitchd / bridge.c
CommitLineData
b0ec0f27 1/* Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks
c93b1d6a 2 *
a14bc59f
BP
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
064af421 6 *
a14bc59f 7 * http://www.apache.org/licenses/LICENSE-2.0
064af421 8 *
a14bc59f
BP
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
064af421
BP
14 */
15
16#include <config.h>
17#include "bridge.h"
10a24935 18#include "byte-order.h"
064af421
BP
19#include <assert.h>
20#include <errno.h>
21#include <arpa/inet.h>
22#include <ctype.h>
23#include <inttypes.h>
9d82ec47 24#include <sys/socket.h>
064af421
BP
25#include <net/if.h>
26#include <openflow/openflow.h>
27#include <signal.h>
28#include <stdlib.h>
29#include <strings.h>
30#include <sys/stat.h>
31#include <sys/socket.h>
7e40e21d 32#include <sys/types.h>
064af421
BP
33#include <unistd.h>
34#include "bitmap.h"
b31bcf60 35#include "cfm.h"
cf3fad8a 36#include "classifier.h"
064af421 37#include "coverage.h"
a7ff9bd7 38#include "daemon.h"
064af421
BP
39#include "dirs.h"
40#include "dpif.h"
41#include "dynamic-string.h"
42#include "flow.h"
43#include "hash.h"
d9a8717a 44#include "hmap.h"
cd11000b 45#include "jsonrpc.h"
064af421
BP
46#include "list.h"
47#include "mac-learning.h"
48#include "netdev.h"
cdee00fd 49#include "netlink.h"
064af421
BP
50#include "odp-util.h"
51#include "ofp-print.h"
52#include "ofpbuf.h"
d65349ea 53#include "ofproto/netflow.h"
8cd4882f 54#include "ofproto/ofproto.h"
dd0d105c 55#include "ovsdb-data.h"
da285df4 56#include "packets.h"
064af421 57#include "poll-loop.h"
064af421 58#include "process.h"
76343538 59#include "sha1.h"
6c88d577 60#include "shash.h"
064af421 61#include "socket-util.h"
fe55ad15 62#include "stream-ssl.h"
064af421 63#include "svec.h"
ce887677 64#include "system-stats.h"
064af421
BP
65#include "timeval.h"
66#include "util.h"
da285df4 67#include "unixctl.h"
064af421 68#include "vconn.h"
b36682d8 69#include "vswitchd/vswitch-idl.h"
064af421 70#include "xenserver.h"
5136ce49 71#include "vlog.h"
72b06300 72#include "sflow_api.h"
064af421 73
d98e6007 74VLOG_DEFINE_THIS_MODULE(bridge);
064af421 75
d76f09ea
BP
76COVERAGE_DEFINE(bridge_flush);
77COVERAGE_DEFINE(bridge_process_flow);
ebe482fd
EJ
78COVERAGE_DEFINE(bridge_process_cfm);
79COVERAGE_DEFINE(bridge_process_lacp);
d76f09ea 80COVERAGE_DEFINE(bridge_reconfigure);
750d79a5 81COVERAGE_DEFINE(bridge_lacp_update);
d76f09ea 82
064af421
BP
83struct dst {
84 uint16_t vlan;
85 uint16_t dp_ifidx;
86};
87
0c62a7ad
BP
88struct dst_set {
89 struct dst builtin[32];
90 struct dst *dsts;
91 size_t n, allocated;
92};
93
94static void dst_set_init(struct dst_set *);
95static void dst_set_add(struct dst_set *, const struct dst *);
96static void dst_set_free(struct dst_set *);
97
cd482758
EJ
98enum lacp_status {
99 LACP_CURRENT = 0x01, /* Current State. */
100 LACP_EXPIRED = 0x02, /* Expired State. */
101 LACP_DEFAULTED = 0x04, /* Partner is defaulted. */
102 LACP_ATTACHED = 0x08, /* Attached. Interface may be choosen for flows. */
103};
104
064af421 105struct iface {
0c6aea3f 106 /* These members are always valid. */
064af421
BP
107 struct port *port; /* Containing port. */
108 size_t port_ifidx; /* Index within containing port. */
064af421 109 char *name; /* Host network device name. */
064af421 110 tag_type tag; /* Tag associated with this interface. */
064af421 111 long long delay_expires; /* Time after which 'enabled' may change. */
064af421 112
0c6aea3f 113 /* These members are valid only after bridge_reconfigure() causes them to
1e0b752d 114 * be initialized. */
d9a8717a 115 struct hmap_node dp_ifidx_node; /* In struct bridge's "ifaces" hmap. */
0c6aea3f
BP
116 int dp_ifidx; /* Index within kernel datapath. */
117 struct netdev *netdev; /* Network device. */
064af421 118 bool enabled; /* May be chosen for flows? */
c835c3bf 119 bool up; /* Is the interface up? */
6cefe1da 120 const char *type; /* Usually same as cfg->type. */
b31bcf60 121 struct cfm *cfm; /* Connectivity Fault Management */
76343538 122 const struct ovsrec_interface *cfg;
c25c91fd
EJ
123
124 /* LACP information. */
cd482758 125 enum lacp_status lacp_status; /* LACP status. */
c25c91fd
EJ
126 uint16_t lacp_priority; /* LACP port priority. */
127 struct lacp_info lacp_actor; /* LACP actor information. */
128 struct lacp_info lacp_partner; /* LACP partner information. */
129 long long int lacp_tx; /* Next LACP message transmission time. */
130 long long int lacp_rx; /* Next LACP message receive time. */
064af421
BP
131};
132
133#define BOND_MASK 0xff
134struct bond_entry {
135 int iface_idx; /* Index of assigned iface, or -1 if none. */
136 uint64_t tx_bytes; /* Count of bytes recently transmitted. */
137 tag_type iface_tag; /* Tag associated with iface_idx. */
138};
139
27dcaa1a 140enum bond_mode {
9f5073d8
EJ
141 BM_TCP, /* Transport Layer Load Balance. */
142 BM_SLB, /* Source Load Balance. */
27dcaa1a 143 BM_AB /* Active Backup. */
be02e7c3
EJ
144};
145
064af421
BP
146#define MAX_MIRRORS 32
147typedef uint32_t mirror_mask_t;
148#define MIRROR_MASK_C(X) UINT32_C(X)
149BUILD_ASSERT_DECL(sizeof(mirror_mask_t) * CHAR_BIT >= MAX_MIRRORS);
150struct mirror {
151 struct bridge *bridge;
152 size_t idx;
153 char *name;
dd0d105c 154 struct uuid uuid; /* UUID of this "mirror" record in database. */
064af421
BP
155
156 /* Selection criteria. */
37e7f427
BP
157 struct shash src_ports; /* Name is port name; data is always NULL. */
158 struct shash dst_ports; /* Name is port name; data is always NULL. */
064af421
BP
159 int *vlans;
160 size_t n_vlans;
161
162 /* Output. */
163 struct port *out_port;
164 int out_vlan;
165};
166
c25c91fd
EJ
167/* Flags for a port's lacp member. */
168#define LACP_ACTIVE 0x01 /* LACP is in active mode. */
169#define LACP_PASSIVE 0x02 /* LACP is in passive mode. */
170#define LACP_NEGOTIATED 0x04 /* LACP has successfully negotiated. */
171
064af421
BP
172#define FLOOD_PORT ((struct port *) 1) /* The 'flood' output port. */
173struct port {
174 struct bridge *bridge;
175 size_t port_idx;
176 int vlan; /* -1=trunk port, else a 12-bit VLAN ID. */
3e9c481c
BP
177 unsigned long *trunks; /* Bitmap of trunked VLANs, if 'vlan' == -1.
178 * NULL if all VLANs are trunked. */
1e0b752d 179 const struct ovsrec_port *cfg;
064af421
BP
180 char *name;
181
182 /* An ordinary bridge port has 1 interface.
183 * A bridge port for bonding has at least 2 interfaces. */
184 struct iface **ifaces;
185 size_t n_ifaces, allocated_ifaces;
186
187 /* Bonding info. */
27dcaa1a 188 enum bond_mode bond_mode; /* Type of the bond. BM_SLB is the default. */
064af421
BP
189 int active_iface; /* Ifidx on which bcasts accepted, or -1. */
190 tag_type active_iface_tag; /* Tag for bcast flows. */
191 tag_type no_ifaces_tag; /* Tag for flows when all ifaces disabled. */
192 int updelay, downdelay; /* Delay before iface goes up/down, in ms. */
76343538 193 bool bond_fake_iface; /* Fake a bond interface for legacy compat? */
63331829
EJ
194 bool miimon; /* Use miimon instead of carrier? */
195 long long int bond_miimon_interval; /* Miimon status refresh interval. */
196 long long int bond_miimon_next_update; /* Time of next miimon update. */
e5ae7df8 197 long long int bond_next_fake_iface_update; /* Time of next update. */
be02e7c3
EJ
198 struct netdev_monitor *monitor; /* Tracks carrier up/down status. */
199
c25c91fd
EJ
200 /* LACP information. */
201 int lacp; /* LACP status flags. 0 if LACP is off. */
202 uint16_t lacp_key; /* LACP aggregation key. */
203 uint16_t lacp_priority; /* LACP system priority. */
204 bool lacp_need_update; /* Need to update attached interfaces? */
205
be02e7c3
EJ
206 /* SLB specific bonding info. */
207 struct bond_entry *bond_hash; /* An array of (BOND_MASK + 1) elements. */
c8143c88
BP
208 int bond_rebalance_interval; /* Interval between rebalances, in ms. */
209 long long int bond_next_rebalance; /* Next rebalancing time. */
064af421
BP
210
211 /* Port mirroring info. */
212 mirror_mask_t src_mirrors; /* Mirrors triggered when packet received. */
213 mirror_mask_t dst_mirrors; /* Mirrors triggered when packet sent. */
214 bool is_mirror_output_port; /* Does port mirroring send frames here? */
064af421
BP
215};
216
064af421
BP
217struct bridge {
218 struct list node; /* Node in global list of bridges. */
219 char *name; /* User-specified arbitrary name. */
93dfc067 220 struct mac_learning *ml; /* MAC learning table. */
abe457eb 221 uint8_t ea[ETH_ADDR_LEN]; /* Bridge Ethernet Address. */
064af421 222 uint8_t default_ea[ETH_ADDR_LEN]; /* Default MAC. */
1e0b752d 223 const struct ovsrec_bridge *cfg;
064af421 224
064af421
BP
225 /* OpenFlow switch processing. */
226 struct ofproto *ofproto; /* OpenFlow switch. */
227
228 /* Kernel datapath information. */
c228a364 229 struct dpif *dpif; /* Datapath. */
d9a8717a 230 struct hmap ifaces; /* Contains "struct iface"s. */
064af421
BP
231
232 /* Bridge ports. */
233 struct port **ports;
234 size_t n_ports, allocated_ports;
4a1ee6ae 235 struct shash iface_by_name; /* "struct iface"s indexed by name. */
836fad5e 236 struct shash port_by_name; /* "struct port"s indexed by name. */
064af421
BP
237
238 /* Bonding. */
239 bool has_bonded_ports;
064af421
BP
240
241 /* Flow tracking. */
242 bool flush;
243
064af421
BP
244 /* Port mirroring. */
245 struct mirror *mirrors[MAX_MIRRORS];
064af421
BP
246};
247
248/* List of all bridges. */
249static struct list all_bridges = LIST_INITIALIZER(&all_bridges);
250
c5187f17
BP
251/* OVSDB IDL used to obtain configuration. */
252static struct ovsdb_idl *idl;
253
cd0cd65f
BP
254/* Each time this timer expires, the bridge fetches systems and interface
255 * statistics and pushes them into the database. */
256#define STATS_INTERVAL (5 * 1000) /* In milliseconds. */
257static long long int stats_timer = LLONG_MIN;
018f1525 258
1a6f1e2a 259static struct bridge *bridge_create(const struct ovsrec_bridge *br_cfg);
064af421
BP
260static void bridge_destroy(struct bridge *);
261static struct bridge *bridge_lookup(const char *name);
8ca79daa 262static unixctl_cb_func bridge_unixctl_dump_flows;
fa05809b 263static unixctl_cb_func bridge_unixctl_reconnect;
064af421 264static int bridge_run_one(struct bridge *);
1a048029 265static size_t bridge_get_controllers(const struct bridge *br,
76ce9432 266 struct ovsrec_controller ***controllersp);
1a048029
JP
267static void bridge_reconfigure_one(struct bridge *);
268static void bridge_reconfigure_remotes(struct bridge *,
11bbff1b
BP
269 const struct sockaddr_in *managers,
270 size_t n_managers);
76343538 271static void bridge_get_all_ifaces(const struct bridge *, struct shash *ifaces);
064af421
BP
272static void bridge_fetch_dp_ifaces(struct bridge *);
273static void bridge_flush(struct bridge *);
274static void bridge_pick_local_hw_addr(struct bridge *,
275 uint8_t ea[ETH_ADDR_LEN],
07c318f4 276 struct iface **hw_addr_iface);
064af421
BP
277static uint64_t bridge_pick_datapath_id(struct bridge *,
278 const uint8_t bridge_ea[ETH_ADDR_LEN],
07c318f4
BP
279 struct iface *hw_addr_iface);
280static struct iface *bridge_get_local_iface(struct bridge *);
064af421
BP
281static uint64_t dpid_from_hash(const void *, size_t nbytes);
282
8ca79daa 283static unixctl_cb_func bridge_unixctl_fdb_show;
8c4c1387 284
c25c91fd
EJ
285static void lacp_run(struct bridge *);
286static void lacp_wait(struct bridge *);
287static void lacp_process_packet(const struct ofpbuf *, struct iface *);
288
da285df4 289static void bond_init(void);
064af421
BP
290static void bond_run(struct bridge *);
291static void bond_wait(struct bridge *);
292static void bond_rebalance_port(struct port *);
2303f3b2 293static void bond_send_learning_packets(struct port *);
8b2a2f4a 294static void bond_enable_slave(struct iface *iface, bool enable);
064af421 295
76343538
BP
296static struct port *port_create(struct bridge *, const char *name);
297static void port_reconfigure(struct port *, const struct ovsrec_port *);
4a1ee6ae 298static void port_del_ifaces(struct port *, const struct ovsrec_port *);
064af421
BP
299static void port_destroy(struct port *);
300static struct port *port_lookup(const struct bridge *, const char *name);
da285df4 301static struct iface *port_lookup_iface(const struct port *, const char *name);
064af421
BP
302static struct port *port_from_dp_ifidx(const struct bridge *,
303 uint16_t dp_ifidx);
0c6aea3f 304static void port_update_bonding(struct port *);
c25c91fd 305static void port_update_lacp(struct port *);
064af421 306
dd0d105c 307static void mirror_create(struct bridge *, struct ovsrec_mirror *);
064af421
BP
308static void mirror_destroy(struct mirror *);
309static void mirror_reconfigure(struct bridge *);
37e7f427 310static void mirror_reconfigure_one(struct mirror *, struct ovsrec_mirror *);
064af421
BP
311static bool vlan_is_mirrored(const struct mirror *, int vlan);
312
d295e8e9 313static struct iface *iface_create(struct port *port,
a740f0de 314 const struct ovsrec_interface *if_cfg);
064af421
BP
315static void iface_destroy(struct iface *);
316static struct iface *iface_lookup(const struct bridge *, const char *name);
317static struct iface *iface_from_dp_ifidx(const struct bridge *,
318 uint16_t dp_ifidx);
52df17e7 319static void iface_set_mac(struct iface *);
bcd49a45 320static void iface_set_ofport(const struct ovsrec_interface *, int64_t ofport);
c1c9c9c4 321static void iface_update_qos(struct iface *, const struct ovsrec_qos *);
b31bcf60
EJ
322static void iface_update_cfm(struct iface *);
323static void iface_refresh_cfm_stats(struct iface *iface);
324static void iface_send_packet(struct iface *, struct ofpbuf *packet);
c25c91fd
EJ
325static uint8_t iface_get_lacp_state(const struct iface *);
326static void iface_get_lacp_priority(struct iface *, struct lacp_info *);
327static void iface_set_lacp_defaulted(struct iface *);
328static void iface_set_lacp_expired(struct iface *);
064af421 329
43776b8f
BP
330static void shash_from_ovs_idl_map(char **keys, char **values, size_t n,
331 struct shash *);
ea763e0e
EJ
332static void shash_to_ovs_idl_map(struct shash *,
333 char ***keys, char ***values, size_t *n);
334
43776b8f 335
064af421
BP
336/* Hooks into ofproto processing. */
337static struct ofhooks bridge_ofhooks;
338\f
339/* Public functions. */
340
c5187f17
BP
341/* Initializes the bridge module, configuring it to obtain its configuration
342 * from an OVSDB server accessed over 'remote', which should be a string in a
343 * form acceptable to ovsdb_idl_create(). */
064af421 344void
c5187f17
BP
345bridge_init(const char *remote)
346{
347 /* Create connection to database. */
ef73f86c 348 idl = ovsdb_idl_create(remote, &ovsrec_idl_class, true);
c5187f17 349
ef73f86c
BP
350 ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_cur_cfg);
351 ovsdb_idl_omit_alert(idl, &ovsrec_open_vswitch_col_statistics);
e85bbd75
BP
352 ovsdb_idl_omit(idl, &ovsrec_open_vswitch_col_external_ids);
353
354 ovsdb_idl_omit(idl, &ovsrec_bridge_col_external_ids);
355
356 ovsdb_idl_omit(idl, &ovsrec_port_col_external_ids);
357 ovsdb_idl_omit(idl, &ovsrec_port_col_fake_bridge);
358
ef73f86c
BP
359 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_ofport);
360 ovsdb_idl_omit_alert(idl, &ovsrec_interface_col_statistics);
e85bbd75
BP
361 ovsdb_idl_omit(idl, &ovsrec_interface_col_external_ids);
362
c5187f17
BP
363 /* Register unixctl commands. */
364 unixctl_command_register("fdb/show", bridge_unixctl_fdb_show, NULL);
365 unixctl_command_register("bridge/dump-flows", bridge_unixctl_dump_flows,
366 NULL);
fa05809b
BP
367 unixctl_command_register("bridge/reconnect", bridge_unixctl_reconnect,
368 NULL);
c5187f17
BP
369 bond_init();
370}
371
ee45ad81
BP
372void
373bridge_exit(void)
374{
375 struct bridge *br, *next_br;
376
377 LIST_FOR_EACH_SAFE (br, next_br, node, &all_bridges) {
378 bridge_destroy(br);
379 }
380 ovsdb_idl_destroy(idl);
381}
382
c5187f17
BP
383/* Performs configuration that is only necessary once at ovs-vswitchd startup,
384 * but for which the ovs-vswitchd configuration 'cfg' is required. */
385static void
386bridge_configure_once(const struct ovsrec_open_vswitch *cfg)
064af421 387{
c5187f17 388 static bool already_configured_once;
76343538 389 struct svec bridge_names;
1a6f1e2a 390 struct svec dpif_names, dpif_types;
d3d22744 391 size_t i;
da285df4 392
c5187f17
BP
393 /* Only do this once per ovs-vswitchd run. */
394 if (already_configured_once) {
395 return;
396 }
397 already_configured_once = true;
8c4c1387 398
cd0cd65f 399 stats_timer = time_msec() + STATS_INTERVAL;
018f1525 400
c5187f17 401 /* Get all the configured bridges' names from 'cfg' into 'bridge_names'. */
76343538
BP
402 svec_init(&bridge_names);
403 for (i = 0; i < cfg->n_bridges; i++) {
404 svec_add(&bridge_names, cfg->bridges[i]->name);
405 }
406 svec_sort(&bridge_names);
407
c5187f17
BP
408 /* Iterate over all system dpifs and delete any of them that do not appear
409 * in 'cfg'. */
d2a34569 410 svec_init(&dpif_names);
1a6f1e2a
JG
411 svec_init(&dpif_types);
412 dp_enumerate_types(&dpif_types);
413 for (i = 0; i < dpif_types.n; i++) {
1a6f1e2a 414 size_t j;
064af421 415
1a6f1e2a 416 dp_enumerate_names(dpif_types.names[i], &dpif_names);
d3d22744 417
3d8c9535 418 /* Delete each dpif whose name is not in 'bridge_names'. */
1a6f1e2a 419 for (j = 0; j < dpif_names.n; j++) {
3d8c9535
BP
420 if (!svec_contains(&bridge_names, dpif_names.names[j])) {
421 struct dpif *dpif;
422 int retval;
423
424 retval = dpif_open(dpif_names.names[j], dpif_types.names[i],
425 &dpif);
426 if (!retval) {
427 dpif_delete(dpif);
428 dpif_close(dpif);
d3d22744 429 }
064af421 430 }
064af421
BP
431 }
432 }
7128cd6b 433 svec_destroy(&bridge_names);
d0c9d304 434 svec_destroy(&dpif_names);
1a6f1e2a 435 svec_destroy(&dpif_types);
064af421
BP
436}
437
64d64dd7 438/* Callback for iterate_and_prune_ifaces(). */
0c6aea3f 439static bool
64d64dd7 440check_iface(struct bridge *br, struct iface *iface, void *aux OVS_UNUSED)
0c6aea3f 441{
149f577a 442 if (!iface->netdev) {
64d64dd7
BP
443 /* We already reported a related error, don't bother duplicating it. */
444 return false;
0c6aea3f 445 }
149f577a 446
64d64dd7 447 if (iface->dp_ifidx < 0) {
6ae39834
BP
448 VLOG_ERR("%s interface not in %s, dropping",
449 iface->name, dpif_name(br->dpif));
450 return false;
451 }
64d64dd7
BP
452
453 VLOG_DBG("%s has interface %s on port %d", dpif_name(br->dpif),
454 iface->name, iface->dp_ifidx);
455 return true;
6ae39834
BP
456}
457
64d64dd7 458/* Callback for iterate_and_prune_ifaces(). */
795fe1fb 459static bool
67a4917b
BP
460set_iface_properties(struct bridge *br OVS_UNUSED, struct iface *iface,
461 void *aux OVS_UNUSED)
795fe1fb 462{
4d678233 463 /* Set policing attributes. */
76343538
BP
464 netdev_set_policing(iface->netdev,
465 iface->cfg->ingress_policing_rate,
466 iface->cfg->ingress_policing_burst);
4d678233
BP
467
468 /* Set MAC address of internal interfaces other than the local
469 * interface. */
6cefe1da 470 if (iface->dp_ifidx != ODPP_LOCAL && !strcmp(iface->type, "internal")) {
4d678233
BP
471 iface_set_mac(iface);
472 }
473
795fe1fb
BP
474 return true;
475}
476
6ae39834
BP
477/* Calls 'cb' for each interfaces in 'br', passing along the 'aux' argument.
478 * Deletes from 'br' all the interfaces for which 'cb' returns false, and then
479 * deletes from 'br' any ports that no longer have any interfaces. */
480static void
481iterate_and_prune_ifaces(struct bridge *br,
482 bool (*cb)(struct bridge *, struct iface *,
483 void *aux),
484 void *aux)
485{
486 size_t i, j;
487
488 for (i = 0; i < br->n_ports; ) {
489 struct port *port = br->ports[i];
490 for (j = 0; j < port->n_ifaces; ) {
491 struct iface *iface = port->ifaces[j];
492 if (cb(br, iface, aux)) {
493 j++;
494 } else {
bcd49a45 495 iface_set_ofport(iface->cfg, -1);
6ae39834
BP
496 iface_destroy(iface);
497 }
498 }
499
500 if (port->n_ifaces) {
501 i++;
502 } else {
503 VLOG_ERR("%s port has no interfaces, dropping", port->name);
504 port_destroy(port);
505 }
506 }
507}
508
cd11000b
BP
509/* Looks at the list of managers in 'ovs_cfg' and extracts their remote IP
510 * addresses and ports into '*managersp' and '*n_managersp'. The caller is
511 * responsible for freeing '*managersp' (with free()).
512 *
513 * You may be asking yourself "why does ovs-vswitchd care?", because
514 * ovsdb-server is responsible for connecting to the managers, and ovs-vswitchd
515 * should not be and in fact is not directly involved in that. But
516 * ovs-vswitchd needs to make sure that ovsdb-server can reach the managers, so
517 * it has to tell in-band control where the managers are to enable that.
94db5407 518 * (Thus, only managers connected in-band are collected.)
cd11000b
BP
519 */
520static void
94db5407
BP
521collect_in_band_managers(const struct ovsrec_open_vswitch *ovs_cfg,
522 struct sockaddr_in **managersp, size_t *n_managersp)
cd11000b
BP
523{
524 struct sockaddr_in *managers = NULL;
525 size_t n_managers = 0;
94db5407
BP
526 struct shash targets;
527 size_t i;
528
529 /* Collect all of the potential targets, as the union of the "managers"
530 * column and the "targets" columns of the rows pointed to by
531 * "manager_options", excluding any that are out-of-band. */
532 shash_init(&targets);
533 for (i = 0; i < ovs_cfg->n_managers; i++) {
534 shash_add_once(&targets, ovs_cfg->managers[i], NULL);
535 }
536 for (i = 0; i < ovs_cfg->n_manager_options; i++) {
537 struct ovsrec_manager *m = ovs_cfg->manager_options[i];
538
539 if (m->connection_mode && !strcmp(m->connection_mode, "out-of-band")) {
540 shash_find_and_delete(&targets, m->target);
541 } else {
542 shash_add_once(&targets, m->target, NULL);
543 }
544 }
cd11000b 545
94db5407
BP
546 /* Now extract the targets' IP addresses. */
547 if (!shash_is_empty(&targets)) {
548 struct shash_node *node;
cd11000b 549
94db5407
BP
550 managers = xmalloc(shash_count(&targets) * sizeof *managers);
551 SHASH_FOR_EACH (node, &targets) {
552 const char *target = node->name;
553 struct sockaddr_in *sin = &managers[n_managers];
cd11000b 554
94db5407
BP
555 if ((!strncmp(target, "tcp:", 4)
556 && inet_parse_active(target + 4, JSONRPC_TCP_PORT, sin)) ||
557 (!strncmp(target, "ssl:", 4)
558 && inet_parse_active(target + 4, JSONRPC_SSL_PORT, sin))) {
cd11000b
BP
559 n_managers++;
560 }
561 }
562 }
94db5407 563 shash_destroy(&targets);
cd11000b
BP
564
565 *managersp = managers;
566 *n_managersp = n_managers;
567}
568
c5187f17 569static void
76343538 570bridge_reconfigure(const struct ovsrec_open_vswitch *ovs_cfg)
064af421 571{
76343538
BP
572 struct shash old_br, new_br;
573 struct shash_node *node;
064af421 574 struct bridge *br, *next;
cd11000b
BP
575 struct sockaddr_in *managers;
576 size_t n_managers;
6ae39834 577 size_t i;
72b06300 578 int sflow_bridge_number;
064af421
BP
579
580 COVERAGE_INC(bridge_reconfigure);
581
94db5407 582 collect_in_band_managers(ovs_cfg, &managers, &n_managers);
cd11000b 583
632d136c 584 /* Collect old and new bridges. */
76343538
BP
585 shash_init(&old_br);
586 shash_init(&new_br);
4e8e4213 587 LIST_FOR_EACH (br, node, &all_bridges) {
76343538
BP
588 shash_add(&old_br, br->name, br);
589 }
590 for (i = 0; i < ovs_cfg->n_bridges; i++) {
591 const struct ovsrec_bridge *br_cfg = ovs_cfg->bridges[i];
592 if (!shash_add_once(&new_br, br_cfg->name, br_cfg)) {
593 VLOG_WARN("more than one bridge named %s", br_cfg->name);
594 }
064af421 595 }
064af421
BP
596
597 /* Get rid of deleted bridges and add new bridges. */
4e8e4213 598 LIST_FOR_EACH_SAFE (br, next, node, &all_bridges) {
76343538
BP
599 struct ovsrec_bridge *br_cfg = shash_find_data(&new_br, br->name);
600 if (br_cfg) {
601 br->cfg = br_cfg;
602 } else {
064af421
BP
603 bridge_destroy(br);
604 }
605 }
76343538
BP
606 SHASH_FOR_EACH (node, &new_br) {
607 const char *br_name = node->name;
608 const struct ovsrec_bridge *br_cfg = node->data;
1a6f1e2a
JG
609 br = shash_find_data(&old_br, br_name);
610 if (br) {
611 /* If the bridge datapath type has changed, we need to tear it
612 * down and recreate. */
613 if (strcmp(br->cfg->datapath_type, br_cfg->datapath_type)) {
614 bridge_destroy(br);
615 bridge_create(br_cfg);
fa33d64a 616 }
1a6f1e2a
JG
617 } else {
618 bridge_create(br_cfg);
064af421
BP
619 }
620 }
76343538
BP
621 shash_destroy(&old_br);
622 shash_destroy(&new_br);
064af421 623
064af421 624 /* Reconfigure all bridges. */
4e8e4213 625 LIST_FOR_EACH (br, node, &all_bridges) {
1a048029 626 bridge_reconfigure_one(br);
064af421
BP
627 }
628
629 /* Add and delete ports on all datapaths.
630 *
631 * The kernel will reject any attempt to add a given port to a datapath if
632 * that port already belongs to a different datapath, so we must do all
633 * port deletions before any port additions. */
4e8e4213 634 LIST_FOR_EACH (br, node, &all_bridges) {
b0ec0f27 635 struct dpif_port_dump dump;
76343538 636 struct shash want_ifaces;
4c738a8d 637 struct dpif_port dpif_port;
064af421 638
064af421 639 bridge_get_all_ifaces(br, &want_ifaces);
4c738a8d
BP
640 DPIF_PORT_FOR_EACH (&dpif_port, &dump, br->dpif) {
641 if (!shash_find(&want_ifaces, dpif_port.name)
642 && strcmp(dpif_port.name, br->name)) {
643 int retval = dpif_port_del(br->dpif, dpif_port.port_no);
064af421 644 if (retval) {
b29ba128 645 VLOG_ERR("failed to remove %s interface from %s: %s",
4c738a8d 646 dpif_port.name, dpif_name(br->dpif),
b29ba128 647 strerror(retval));
064af421
BP
648 }
649 }
650 }
76343538 651 shash_destroy(&want_ifaces);
064af421 652 }
4e8e4213 653 LIST_FOR_EACH (br, node, &all_bridges) {
76343538 654 struct shash cur_ifaces, want_ifaces;
b0ec0f27 655 struct dpif_port_dump dump;
4c738a8d 656 struct dpif_port dpif_port;
064af421 657
76343538 658 /* Get the set of interfaces currently in this datapath. */
76343538 659 shash_init(&cur_ifaces);
4c738a8d 660 DPIF_PORT_FOR_EACH (&dpif_port, &dump, br->dpif) {
b0ec0f27 661 struct dpif_port *port_info = xmalloc(sizeof *port_info);
4c738a8d
BP
662 dpif_port_clone(port_info, &dpif_port);
663 shash_add(&cur_ifaces, dpif_port.name, port_info);
064af421 664 }
064af421 665
76343538
BP
666 /* Get the set of interfaces we want on this datapath. */
667 bridge_get_all_ifaces(br, &want_ifaces);
6c88d577 668
3a6ccc8c 669 hmap_clear(&br->ifaces);
76343538
BP
670 SHASH_FOR_EACH (node, &want_ifaces) {
671 const char *if_name = node->name;
672 struct iface *iface = node->data;
b0ec0f27
BP
673 struct dpif_port *dpif_port;
674 const char *type;
3a6ccc8c
BP
675 int error;
676
b0ec0f27
BP
677 type = iface ? iface->type : "internal";
678 dpif_port = shash_find_data(&cur_ifaces, if_name);
679
3a6ccc8c
BP
680 /* If we have a port or a netdev already, and it's not the type we
681 * want, then delete the port (if any) and close the netdev (if
682 * any). */
c3827f61
BP
683 if ((dpif_port && strcmp(dpif_port->type, type))
684 || (iface && iface->netdev
685 && strcmp(type, netdev_get_type(iface->netdev)))) {
3a6ccc8c 686 if (dpif_port) {
b0ec0f27 687 error = ofproto_port_del(br->ofproto, dpif_port->port_no);
3a6ccc8c
BP
688 if (error) {
689 continue;
690 }
691 dpif_port = NULL;
76343538 692 }
3a6ccc8c
BP
693 if (iface) {
694 netdev_close(iface->netdev);
695 iface->netdev = NULL;
696 }
697 }
76343538 698
c3827f61
BP
699 /* If the port doesn't exist or we don't have the netdev open,
700 * we need to do more work. */
701 if (!dpif_port || (iface && !iface->netdev)) {
702 struct netdev_options options;
703 struct netdev *netdev;
704 struct shash args;
705
706 /* First open the network device. */
707 options.name = if_name;
708 options.type = type;
709 options.args = &args;
710 options.ethertype = NETDEV_ETH_TYPE_NONE;
711
712 shash_init(&args);
713 if (iface) {
6b4186af 714 shash_from_ovs_idl_map(iface->cfg->key_options,
fe4838bc
JP
715 iface->cfg->value_options,
716 iface->cfg->n_options, &args);
82057f51 717 }
c3827f61
BP
718 error = netdev_open(&options, &netdev);
719 shash_destroy(&args);
82057f51 720
c3827f61
BP
721 if (error) {
722 VLOG_WARN("could not open network device %s (%s)",
723 if_name, strerror(error));
3a6ccc8c 724 continue;
76343538 725 }
3a6ccc8c 726
c3827f61
BP
727 /* Then add the port if we haven't already. */
728 if (!dpif_port) {
729 error = dpif_port_add(br->dpif, netdev, NULL);
3a6ccc8c 730 if (error) {
c3827f61
BP
731 netdev_close(netdev);
732 if (error == EFBIG) {
733 VLOG_ERR("ran out of valid port numbers on %s",
734 dpif_name(br->dpif));
735 break;
736 } else {
737 VLOG_ERR("failed to add %s interface to %s: %s",
738 if_name, dpif_name(br->dpif),
739 strerror(error));
740 continue;
741 }
3a6ccc8c
BP
742 }
743 }
c3827f61
BP
744
745 /* Update 'iface'. */
746 if (iface) {
747 iface->netdev = netdev;
748 iface->enabled = netdev_get_carrier(iface->netdev);
c835c3bf 749 iface->up = iface->enabled;
c3827f61
BP
750 }
751 } else if (iface && iface->netdev) {
752 struct shash args;
753
754 shash_init(&args);
6b4186af 755 shash_from_ovs_idl_map(iface->cfg->key_options,
fe4838bc
JP
756 iface->cfg->value_options,
757 iface->cfg->n_options, &args);
6d9e6eb4 758 netdev_set_config(iface->netdev, &args);
c3827f61 759 shash_destroy(&args);
3a6ccc8c 760 }
064af421 761 }
76343538 762 shash_destroy(&want_ifaces);
b0ec0f27
BP
763
764 SHASH_FOR_EACH (node, &cur_ifaces) {
765 struct dpif_port *port_info = node->data;
4c738a8d 766 dpif_port_destroy(port_info);
b0ec0f27
BP
767 free(port_info);
768 }
769 shash_destroy(&cur_ifaces);
064af421 770 }
72b06300 771 sflow_bridge_number = 0;
4e8e4213 772 LIST_FOR_EACH (br, node, &all_bridges) {
064af421
BP
773 uint8_t ea[8];
774 uint64_t dpid;
07c318f4
BP
775 struct iface *local_iface;
776 struct iface *hw_addr_iface;
093e47f4 777 char *dpid_string;
064af421 778
064af421 779 bridge_fetch_dp_ifaces(br);
064af421 780
64d64dd7 781 iterate_and_prune_ifaces(br, check_iface, NULL);
064af421
BP
782
783 /* Pick local port hardware address, datapath ID. */
07c318f4
BP
784 bridge_pick_local_hw_addr(br, ea, &hw_addr_iface);
785 local_iface = bridge_get_local_iface(br);
064af421 786 if (local_iface) {
07c318f4 787 int error = netdev_set_etheraddr(local_iface->netdev, ea);
064af421
BP
788 if (error) {
789 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
790 VLOG_ERR_RL(&rl, "bridge %s: failed to set bridge "
791 "Ethernet address: %s",
792 br->name, strerror(error));
793 }
794 }
abe457eb 795 memcpy(br->ea, ea, ETH_ADDR_LEN);
064af421 796
07c318f4 797 dpid = bridge_pick_datapath_id(br, ea, hw_addr_iface);
064af421
BP
798 ofproto_set_datapath_id(br->ofproto, dpid);
799
fc09119a 800 dpid_string = xasprintf("%016"PRIx64, dpid);
093e47f4
BP
801 ovsrec_bridge_set_datapath_id(br->cfg, dpid_string);
802 free(dpid_string);
803
064af421 804 /* Set NetFlow configuration on this bridge. */
76343538
BP
805 if (br->cfg->netflow) {
806 struct ovsrec_netflow *nf_cfg = br->cfg->netflow;
807 struct netflow_options opts;
808
809 memset(&opts, 0, sizeof opts);
810
811 dpif_get_netflow_ids(br->dpif, &opts.engine_type, &opts.engine_id);
812 if (nf_cfg->engine_type) {
cd746526 813 opts.engine_type = *nf_cfg->engine_type;
76343538
BP
814 }
815 if (nf_cfg->engine_id) {
cd746526 816 opts.engine_id = *nf_cfg->engine_id;
76343538
BP
817 }
818
819 opts.active_timeout = nf_cfg->active_timeout;
820 if (!opts.active_timeout) {
821 opts.active_timeout = -1;
822 } else if (opts.active_timeout < 0) {
e9e2856e
JG
823 VLOG_WARN("bridge %s: active timeout interval set to negative "
824 "value, using default instead (%d seconds)", br->name,
825 NF_ACTIVE_TIMEOUT_DEFAULT);
826 opts.active_timeout = -1;
76343538
BP
827 }
828
829 opts.add_id_to_iface = nf_cfg->add_id_to_interface;
830 if (opts.add_id_to_iface) {
831 if (opts.engine_id > 0x7f) {
832 VLOG_WARN("bridge %s: netflow port mangling may conflict "
833 "with another vswitch, choose an engine id less "
834 "than 128", br->name);
835 }
836 if (br->n_ports > 508) {
837 VLOG_WARN("bridge %s: netflow port mangling will conflict "
838 "with another port when more than 508 ports are "
839 "used", br->name);
840 }
841 }
842
843 opts.collectors.n = nf_cfg->n_targets;
844 opts.collectors.names = nf_cfg->targets;
845 if (ofproto_set_netflow(br->ofproto, &opts)) {
d295e8e9 846 VLOG_ERR("bridge %s: problem setting netflow collectors",
76343538
BP
847 br->name);
848 }
849 } else {
850 ofproto_set_netflow(br->ofproto, NULL);
851 }
064af421 852
a4af0040
JP
853 /* Set sFlow configuration on this bridge. */
854 if (br->cfg->sflow) {
d49d354b 855 const struct ovsrec_sflow *sflow_cfg = br->cfg->sflow;
76ce9432 856 struct ovsrec_controller **controllers;
72b06300 857 struct ofproto_sflow_options oso;
76ce9432 858 size_t n_controllers;
72b06300 859
a4af0040
JP
860 memset(&oso, 0, sizeof oso);
861
862 oso.targets.n = sflow_cfg->n_targets;
863 oso.targets.names = sflow_cfg->targets;
72b06300
BP
864
865 oso.sampling_rate = SFL_DEFAULT_SAMPLING_RATE;
a4af0040
JP
866 if (sflow_cfg->sampling) {
867 oso.sampling_rate = *sflow_cfg->sampling;
72b06300
BP
868 }
869
870 oso.polling_interval = SFL_DEFAULT_POLLING_INTERVAL;
a4af0040
JP
871 if (sflow_cfg->polling) {
872 oso.polling_interval = *sflow_cfg->polling;
72b06300
BP
873 }
874
875 oso.header_len = SFL_DEFAULT_HEADER_SIZE;
a4af0040
JP
876 if (sflow_cfg->header) {
877 oso.header_len = *sflow_cfg->header;
72b06300
BP
878 }
879
880 oso.sub_id = sflow_bridge_number++;
a4af0040
JP
881 oso.agent_device = sflow_cfg->agent;
882
76ce9432 883 oso.control_ip = NULL;
1a048029 884 n_controllers = bridge_get_controllers(br, &controllers);
76ce9432
BP
885 for (i = 0; i < n_controllers; i++) {
886 if (controllers[i]->local_ip) {
887 oso.control_ip = controllers[i]->local_ip;
888 break;
889 }
890 }
72b06300
BP
891 ofproto_set_sflow(br->ofproto, &oso);
892
7b99db05 893 /* Do not destroy oso.targets because it is owned by sflow_cfg. */
72b06300
BP
894 } else {
895 ofproto_set_sflow(br->ofproto, NULL);
896 }
897
064af421
BP
898 /* Update the controller and related settings. It would be more
899 * straightforward to call this from bridge_reconfigure_one(), but we
900 * can't do it there for two reasons. First, and most importantly, at
901 * that point we don't know the dp_ifidx of any interfaces that have
902 * been added to the bridge (because we haven't actually added them to
903 * the datapath). Second, at that point we haven't set the datapath ID
904 * yet; when a controller is configured, resetting the datapath ID will
905 * immediately disconnect from the controller, so it's better to set
906 * the datapath ID before the controller. */
1a048029 907 bridge_reconfigure_remotes(br, managers, n_managers);
064af421 908 }
4e8e4213 909 LIST_FOR_EACH (br, node, &all_bridges) {
064af421
BP
910 for (i = 0; i < br->n_ports; i++) {
911 struct port *port = br->ports[i];
c1c9c9c4 912 int j;
52df17e7 913
0c6aea3f 914 port_update_bonding(port);
c25c91fd 915 port_update_lacp(port);
c1c9c9c4
BP
916
917 for (j = 0; j < port->n_ifaces; j++) {
918 iface_update_qos(port->ifaces[j], port->cfg->qos);
919 }
064af421
BP
920 }
921 }
4e8e4213 922 LIST_FOR_EACH (br, node, &all_bridges) {
4d678233 923 iterate_and_prune_ifaces(br, set_iface_properties, NULL);
064af421 924 }
093e47f4 925
b31bcf60
EJ
926 LIST_FOR_EACH (br, node, &all_bridges) {
927 struct iface *iface;
928 HMAP_FOR_EACH (iface, dp_ifidx_node, &br->ifaces) {
929 iface_update_cfm(iface);
930 }
931 }
932
cd11000b 933 free(managers);
a7ff9bd7
BP
934
935 /* ovs-vswitchd has completed initialization, so allow the process that
936 * forked us to exit successfully. */
937 daemonize_complete();
093e47f4
BP
938}
939
940static const char *
af6278e1
BP
941get_ovsrec_key_value(const struct ovsdb_idl_row *row,
942 const struct ovsdb_idl_column *column,
943 const char *key)
093e47f4 944{
af6278e1
BP
945 const struct ovsdb_datum *datum;
946 union ovsdb_atom atom;
947 unsigned int idx;
093e47f4 948
af6278e1
BP
949 datum = ovsdb_idl_get(row, column, OVSDB_TYPE_STRING, OVSDB_TYPE_STRING);
950 atom.string = (char *) key;
951 idx = ovsdb_datum_find_key(datum, &atom, OVSDB_TYPE_STRING);
952 return idx == UINT_MAX ? NULL : datum->values[idx].string;
064af421
BP
953}
954
c8143c88
BP
955static const char *
956bridge_get_other_config(const struct ovsrec_bridge *br_cfg, const char *key)
957{
af6278e1
BP
958 return get_ovsrec_key_value(&br_cfg->header_,
959 &ovsrec_bridge_col_other_config, key);
c8143c88
BP
960}
961
064af421
BP
962static void
963bridge_pick_local_hw_addr(struct bridge *br, uint8_t ea[ETH_ADDR_LEN],
07c318f4 964 struct iface **hw_addr_iface)
064af421 965{
093e47f4 966 const char *hwaddr;
064af421
BP
967 size_t i, j;
968 int error;
969
07c318f4 970 *hw_addr_iface = NULL;
064af421
BP
971
972 /* Did the user request a particular MAC? */
093e47f4
BP
973 hwaddr = bridge_get_other_config(br->cfg, "hwaddr");
974 if (hwaddr && eth_addr_from_string(hwaddr, ea)) {
064af421
BP
975 if (eth_addr_is_multicast(ea)) {
976 VLOG_ERR("bridge %s: cannot set MAC address to multicast "
977 "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
978 } else if (eth_addr_is_zero(ea)) {
979 VLOG_ERR("bridge %s: cannot set MAC address to zero", br->name);
980 } else {
981 return;
982 }
983 }
984
141f4942
BP
985 /* Otherwise choose the minimum non-local MAC address among all of the
986 * interfaces. */
064af421
BP
987 memset(ea, 0xff, sizeof ea);
988 for (i = 0; i < br->n_ports; i++) {
989 struct port *port = br->ports[i];
58b7527e 990 uint8_t iface_ea[ETH_ADDR_LEN];
58b7527e
BP
991 struct iface *iface;
992
993 /* Mirror output ports don't participate. */
064af421
BP
994 if (port->is_mirror_output_port) {
995 continue;
996 }
58b7527e
BP
997
998 /* Choose the MAC address to represent the port. */
76343538 999 if (port->cfg->mac && eth_addr_from_string(port->cfg->mac, iface_ea)) {
ba09980a
BP
1000 /* Find the interface with this Ethernet address (if any) so that
1001 * we can provide the correct devname to the caller. */
1002 iface = NULL;
1003 for (j = 0; j < port->n_ifaces; j++) {
1004 struct iface *candidate = port->ifaces[j];
1005 uint8_t candidate_ea[ETH_ADDR_LEN];
8fef8c71 1006 if (!netdev_get_etheraddr(candidate->netdev, candidate_ea)
ba09980a
BP
1007 && eth_addr_equals(iface_ea, candidate_ea)) {
1008 iface = candidate;
1009 }
1010 }
58b7527e
BP
1011 } else {
1012 /* Choose the interface whose MAC address will represent the port.
1013 * The Linux kernel bonding code always chooses the MAC address of
1014 * the first slave added to a bond, and the Fedora networking
1015 * scripts always add slaves to a bond in alphabetical order, so
1016 * for compatibility we choose the interface with the name that is
1017 * first in alphabetical order. */
1018 iface = port->ifaces[0];
1019 for (j = 1; j < port->n_ifaces; j++) {
1020 struct iface *candidate = port->ifaces[j];
1021 if (strcmp(candidate->name, iface->name) < 0) {
1022 iface = candidate;
1023 }
1024 }
1025
1026 /* The local port doesn't count (since we're trying to choose its
141f4942
BP
1027 * MAC address anyway). */
1028 if (iface->dp_ifidx == ODPP_LOCAL) {
064af421
BP
1029 continue;
1030 }
58b7527e
BP
1031
1032 /* Grab MAC. */
07c318f4 1033 error = netdev_get_etheraddr(iface->netdev, iface_ea);
58b7527e 1034 if (error) {
064af421
BP
1035 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1036 VLOG_ERR_RL(&rl, "failed to obtain Ethernet address of %s: %s",
1037 iface->name, strerror(error));
58b7527e 1038 continue;
064af421
BP
1039 }
1040 }
58b7527e
BP
1041
1042 /* Compare against our current choice. */
1043 if (!eth_addr_is_multicast(iface_ea) &&
141f4942 1044 !eth_addr_is_local(iface_ea) &&
58b7527e
BP
1045 !eth_addr_is_reserved(iface_ea) &&
1046 !eth_addr_is_zero(iface_ea) &&
130f6e5f 1047 eth_addr_compare_3way(iface_ea, ea) < 0)
58b7527e 1048 {
0babc06f 1049 memcpy(ea, iface_ea, ETH_ADDR_LEN);
8fef8c71 1050 *hw_addr_iface = iface;
58b7527e 1051 }
064af421 1052 }
141f4942 1053 if (eth_addr_is_multicast(ea)) {
064af421 1054 memcpy(ea, br->default_ea, ETH_ADDR_LEN);
07c318f4 1055 *hw_addr_iface = NULL;
064af421
BP
1056 VLOG_WARN("bridge %s: using default bridge Ethernet "
1057 "address "ETH_ADDR_FMT, br->name, ETH_ADDR_ARGS(ea));
1058 } else {
1059 VLOG_DBG("bridge %s: using bridge Ethernet address "ETH_ADDR_FMT,
1060 br->name, ETH_ADDR_ARGS(ea));
1061 }
1062}
1063
1064/* Choose and returns the datapath ID for bridge 'br' given that the bridge
1065 * Ethernet address is 'bridge_ea'. If 'bridge_ea' is the Ethernet address of
07c318f4
BP
1066 * an interface on 'br', then that interface must be passed in as
1067 * 'hw_addr_iface'; if 'bridge_ea' was derived some other way, then
1068 * 'hw_addr_iface' must be passed in as a null pointer. */
064af421
BP
1069static uint64_t
1070bridge_pick_datapath_id(struct bridge *br,
1071 const uint8_t bridge_ea[ETH_ADDR_LEN],
07c318f4 1072 struct iface *hw_addr_iface)
064af421
BP
1073{
1074 /*
1075 * The procedure for choosing a bridge MAC address will, in the most
1076 * ordinary case, also choose a unique MAC that we can use as a datapath
1077 * ID. In some special cases, though, multiple bridges will end up with
1078 * the same MAC address. This is OK for the bridges, but it will confuse
1079 * the OpenFlow controller, because each datapath needs a unique datapath
1080 * ID.
1081 *
1082 * Datapath IDs must be unique. It is also very desirable that they be
1083 * stable from one run to the next, so that policy set on a datapath
1084 * "sticks".
1085 */
093e47f4 1086 const char *datapath_id;
064af421
BP
1087 uint64_t dpid;
1088
093e47f4
BP
1089 datapath_id = bridge_get_other_config(br->cfg, "datapath-id");
1090 if (datapath_id && dpid_from_string(datapath_id, &dpid)) {
064af421
BP
1091 return dpid;
1092 }
1093
07c318f4 1094 if (hw_addr_iface) {
064af421 1095 int vlan;
b2f17b15 1096 if (!netdev_get_vlan_vid(hw_addr_iface->netdev, &vlan)) {
064af421
BP
1097 /*
1098 * A bridge whose MAC address is taken from a VLAN network device
1099 * (that is, a network device created with vconfig(8) or similar
1100 * tool) will have the same MAC address as a bridge on the VLAN
1101 * device's physical network device.
1102 *
1103 * Handle this case by hashing the physical network device MAC
1104 * along with the VLAN identifier.
1105 */
1106 uint8_t buf[ETH_ADDR_LEN + 2];
1107 memcpy(buf, bridge_ea, ETH_ADDR_LEN);
1108 buf[ETH_ADDR_LEN] = vlan >> 8;
1109 buf[ETH_ADDR_LEN + 1] = vlan;
1110 return dpid_from_hash(buf, sizeof buf);
1111 } else {
1112 /*
1113 * Assume that this bridge's MAC address is unique, since it
1114 * doesn't fit any of the cases we handle specially.
1115 */
1116 }
1117 } else {
1118 /*
1119 * A purely internal bridge, that is, one that has no non-virtual
1120 * network devices on it at all, is more difficult because it has no
1121 * natural unique identifier at all.
1122 *
1123 * When the host is a XenServer, we handle this case by hashing the
1124 * host's UUID with the name of the bridge. Names of bridges are
1125 * persistent across XenServer reboots, although they can be reused if
1126 * an internal network is destroyed and then a new one is later
1127 * created, so this is fairly effective.
1128 *
1129 * When the host is not a XenServer, we punt by using a random MAC
1130 * address on each run.
1131 */
1132 const char *host_uuid = xenserver_get_host_uuid();
1133 if (host_uuid) {
1134 char *combined = xasprintf("%s,%s", host_uuid, br->name);
1135 dpid = dpid_from_hash(combined, strlen(combined));
1136 free(combined);
1137 return dpid;
1138 }
1139 }
1140
1141 return eth_addr_to_uint64(bridge_ea);
1142}
1143
1144static uint64_t
1145dpid_from_hash(const void *data, size_t n)
1146{
5eccf359 1147 uint8_t hash[SHA1_DIGEST_SIZE];
064af421
BP
1148
1149 BUILD_ASSERT_DECL(sizeof hash >= ETH_ADDR_LEN);
5eccf359 1150 sha1_bytes(data, n, hash);
064af421
BP
1151 eth_addr_mark_random(hash);
1152 return eth_addr_to_uint64(hash);
1153}
1154
ea83a2fc 1155static void
ea763e0e 1156iface_refresh_status(struct iface *iface)
ea83a2fc 1157{
ea763e0e
EJ
1158 struct shash sh;
1159
e210037e
AE
1160 enum netdev_flags flags;
1161 uint32_t current;
1162 int64_t bps;
1163 int mtu;
1164 int64_t mtu_64;
1165 int error;
1166
ea763e0e
EJ
1167 shash_init(&sh);
1168
1169 if (!netdev_get_status(iface->netdev, &sh)) {
1170 size_t n;
1171 char **keys, **values;
ea83a2fc 1172
ea763e0e
EJ
1173 shash_to_ovs_idl_map(&sh, &keys, &values, &n);
1174 ovsrec_interface_set_status(iface->cfg, keys, values, n);
1175
1176 free(keys);
1177 free(values);
1178 } else {
1179 ovsrec_interface_set_status(iface->cfg, NULL, NULL, 0);
1180 }
1181
1182 shash_destroy_free_data(&sh);
e210037e
AE
1183
1184 error = netdev_get_flags(iface->netdev, &flags);
1185 if (!error) {
1186 ovsrec_interface_set_admin_state(iface->cfg, flags & NETDEV_UP ? "up" : "down");
1187 }
1188 else {
1189 ovsrec_interface_set_admin_state(iface->cfg, NULL);
1190 }
1191
1192 error = netdev_get_features(iface->netdev, &current, NULL, NULL, NULL);
1193 if (!error) {
1194 ovsrec_interface_set_duplex(iface->cfg,
1195 netdev_features_is_full_duplex(current)
1196 ? "full" : "half");
1197 /* warning: uint64_t -> int64_t conversion */
1198 bps = netdev_features_to_bps(current);
1199 ovsrec_interface_set_link_speed(iface->cfg, &bps, 1);
1200 }
1201 else {
1202 ovsrec_interface_set_duplex(iface->cfg, NULL);
1203 ovsrec_interface_set_link_speed(iface->cfg, NULL, 0);
1204 }
1205
1206
1207 ovsrec_interface_set_link_state(iface->cfg,
1208 netdev_get_carrier(iface->netdev)
1209 ? "up" : "down");
1210
1211 error = netdev_get_mtu(iface->netdev, &mtu);
f915f1a8 1212 if (!error && mtu != INT_MAX) {
e210037e
AE
1213 mtu_64 = mtu;
1214 ovsrec_interface_set_mtu(iface->cfg, &mtu_64, 1);
1215 }
1216 else {
1217 ovsrec_interface_set_mtu(iface->cfg, NULL, 0);
1218 }
ea83a2fc
EJ
1219}
1220
b31bcf60
EJ
1221static void
1222iface_refresh_cfm_stats(struct iface *iface)
1223{
1224 size_t i;
1225 struct cfm *cfm;
1226 const struct ovsrec_monitor *mon;
1227
1228 mon = iface->cfg->monitor;
1229 cfm = iface->cfm;
1230
1231 if (!cfm || !mon) {
1232 return;
1233 }
1234
1235 for (i = 0; i < mon->n_remote_mps; i++) {
1236 const struct ovsrec_maintenance_point *mp;
1237 const struct remote_mp *rmp;
1238
1239 mp = mon->remote_mps[i];
1240 rmp = cfm_get_remote_mp(cfm, mp->mpid);
1241
1242 ovsrec_maintenance_point_set_fault(mp, &rmp->fault, 1);
1243 }
1244
1245 if (hmap_is_empty(&cfm->x_remote_mps)) {
1246 ovsrec_monitor_set_unexpected_remote_mpids(mon, NULL, 0);
1247 } else {
1248 size_t length;
1249 struct remote_mp *rmp;
1250 int64_t *x_remote_mps;
1251
1252 length = hmap_count(&cfm->x_remote_mps);
1253 x_remote_mps = xzalloc(length * sizeof *x_remote_mps);
1254
1255 i = 0;
1256 HMAP_FOR_EACH (rmp, node, &cfm->x_remote_mps) {
1257 x_remote_mps[i++] = rmp->mpid;
1258 }
1259
1260 ovsrec_monitor_set_unexpected_remote_mpids(mon, x_remote_mps, length);
1261 free(x_remote_mps);
1262 }
1263
1264 if (hmap_is_empty(&cfm->x_remote_maids)) {
1265 ovsrec_monitor_set_unexpected_remote_maids(mon, NULL, 0);
1266 } else {
1267 size_t length;
1268 char **x_remote_maids;
1269 struct remote_maid *rmaid;
1270
1271 length = hmap_count(&cfm->x_remote_maids);
1272 x_remote_maids = xzalloc(length * sizeof *x_remote_maids);
1273
1274 i = 0;
1275 HMAP_FOR_EACH (rmaid, node, &cfm->x_remote_maids) {
1276 size_t j;
1277
1278 x_remote_maids[i] = xzalloc(CCM_MAID_LEN * 2 + 1);
1279
1280 for (j = 0; j < CCM_MAID_LEN; j++) {
1281 snprintf(&x_remote_maids[i][j * 2], 3, "%02hhx",
1282 rmaid->maid[j]);
1283 }
1284 i++;
1285 }
1286 ovsrec_monitor_set_unexpected_remote_maids(mon, x_remote_maids, length);
1287
1288 for (i = 0; i < length; i++) {
1289 free(x_remote_maids[i]);
1290 }
1291 free(x_remote_maids);
1292 }
1293
1294 ovsrec_monitor_set_fault(mon, &cfm->fault, 1);
1295}
1296
018f1525
BP
1297static void
1298iface_refresh_stats(struct iface *iface)
1299{
1300 struct iface_stat {
1301 char *name;
1302 int offset;
1303 };
1304 static const struct iface_stat iface_stats[] = {
1305 { "rx_packets", offsetof(struct netdev_stats, rx_packets) },
1306 { "tx_packets", offsetof(struct netdev_stats, tx_packets) },
1307 { "rx_bytes", offsetof(struct netdev_stats, rx_bytes) },
1308 { "tx_bytes", offsetof(struct netdev_stats, tx_bytes) },
1309 { "rx_dropped", offsetof(struct netdev_stats, rx_dropped) },
1310 { "tx_dropped", offsetof(struct netdev_stats, tx_dropped) },
1311 { "rx_errors", offsetof(struct netdev_stats, rx_errors) },
1312 { "tx_errors", offsetof(struct netdev_stats, tx_errors) },
1313 { "rx_frame_err", offsetof(struct netdev_stats, rx_frame_errors) },
1314 { "rx_over_err", offsetof(struct netdev_stats, rx_over_errors) },
1315 { "rx_crc_err", offsetof(struct netdev_stats, rx_crc_errors) },
1316 { "collisions", offsetof(struct netdev_stats, collisions) },
1317 };
1318 enum { N_STATS = ARRAY_SIZE(iface_stats) };
1319 const struct iface_stat *s;
1320
1321 char *keys[N_STATS];
1322 int64_t values[N_STATS];
1323 int n;
1324
1325 struct netdev_stats stats;
1326
1327 /* Intentionally ignore return value, since errors will set 'stats' to
1328 * all-1s, and we will deal with that correctly below. */
1329 netdev_get_stats(iface->netdev, &stats);
1330
1331 n = 0;
1332 for (s = iface_stats; s < &iface_stats[N_STATS]; s++) {
1333 uint64_t value = *(uint64_t *) (((char *) &stats) + s->offset);
1334 if (value != UINT64_MAX) {
1335 keys[n] = s->name;
1336 values[n] = value;
1337 n++;
1338 }
1339 }
1340
1341 ovsrec_interface_set_statistics(iface->cfg, keys, values, n);
1342}
1343
ce887677
BP
1344static void
1345refresh_system_stats(const struct ovsrec_open_vswitch *cfg)
1346{
1347 struct ovsdb_datum datum;
1348 struct shash stats;
1349
1350 shash_init(&stats);
1351 get_system_stats(&stats);
1352
1353 ovsdb_datum_from_shash(&datum, &stats);
1354 ovsdb_idl_txn_write(&cfg->header_, &ovsrec_open_vswitch_col_statistics,
1355 &datum);
1356}
1357
bffc0589
AE
1358static inline const char *
1359nx_role_to_str(enum nx_role role)
1360{
1361 switch (role) {
1362 case NX_ROLE_OTHER:
1363 return "other";
1364 case NX_ROLE_MASTER:
1365 return "master";
1366 case NX_ROLE_SLAVE:
1367 return "slave";
1368 default:
1369 return "*** INVALID ROLE ***";
1370 }
1371}
1372
1373static void
1374bridge_refresh_controller_status(const struct bridge *br)
1375{
1376 struct shash info;
1377 const struct ovsrec_controller *cfg;
1378
1379 ofproto_get_ofproto_controller_info(br->ofproto, &info);
1380
1381 OVSREC_CONTROLLER_FOR_EACH(cfg, idl) {
eb9b8307
AE
1382 struct ofproto_controller_info *cinfo =
1383 shash_find_data(&info, cfg->target);
1384
1385 if (cinfo) {
1386 ovsrec_controller_set_is_connected(cfg, cinfo->is_connected);
1387 ovsrec_controller_set_role(cfg, nx_role_to_str(cinfo->role));
1388 ovsrec_controller_set_status(cfg, (char **) cinfo->pairs.keys,
1389 (char **) cinfo->pairs.values,
1390 cinfo->pairs.n);
1391 } else {
1392 ovsrec_controller_set_is_connected(cfg, false);
1393 ovsrec_controller_set_role(cfg, NULL);
1394 ovsrec_controller_set_status(cfg, NULL, NULL, 0);
1395 }
bffc0589
AE
1396 }
1397
1398 ofproto_free_ofproto_controller_info(&info);
1399}
1400
c5187f17 1401void
064af421
BP
1402bridge_run(void)
1403{
d54ff998
BP
1404 const struct ovsrec_open_vswitch *cfg;
1405
c5187f17 1406 bool datapath_destroyed;
d54ff998 1407 bool database_changed;
c5187f17 1408 struct bridge *br;
064af421 1409
c5187f17
BP
1410 /* Let each bridge do the work that it needs to do. */
1411 datapath_destroyed = false;
4e8e4213 1412 LIST_FOR_EACH (br, node, &all_bridges) {
064af421
BP
1413 int error = bridge_run_one(br);
1414 if (error) {
1415 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
1416 VLOG_ERR_RL(&rl, "bridge %s: datapath was destroyed externally, "
1417 "forcing reconfiguration", br->name);
c5187f17
BP
1418 datapath_destroyed = true;
1419 }
1420 }
1421
1422 /* (Re)configure if necessary. */
d54ff998
BP
1423 database_changed = ovsdb_idl_run(idl);
1424 cfg = ovsrec_open_vswitch_first(idl);
d6da96ce
BP
1425#ifdef HAVE_OPENSSL
1426 /* Re-configure SSL. We do this on every trip through the main loop,
1427 * instead of just when the database changes, because the contents of the
1428 * key and certificate files can change without the database changing.
1429 *
1430 * We do this before bridge_reconfigure() because that function might
1431 * initiate SSL connections and thus requires SSL to be configured. */
1432 if (cfg && cfg->ssl) {
1433 const struct ovsrec_ssl *ssl = cfg->ssl;
1434
1435 stream_ssl_set_key_and_cert(ssl->private_key, ssl->certificate);
1436 stream_ssl_set_ca_cert_file(ssl->ca_cert, ssl->bootstrap_ca_cert);
1437 }
1438#endif
d54ff998 1439 if (database_changed || datapath_destroyed) {
c5187f17
BP
1440 if (cfg) {
1441 struct ovsdb_idl_txn *txn = ovsdb_idl_txn_create(idl);
1442
1443 bridge_configure_once(cfg);
1444 bridge_reconfigure(cfg);
1445
1446 ovsrec_open_vswitch_set_cur_cfg(cfg, cfg->next_cfg);
1447 ovsdb_idl_txn_commit(txn);
1448 ovsdb_idl_txn_destroy(txn); /* XXX */
1e0b752d
BP
1449 } else {
1450 /* We still need to reconfigure to avoid dangling pointers to
1451 * now-destroyed ovsrec structures inside bridge data. */
1452 static const struct ovsrec_open_vswitch null_cfg;
1453
1454 bridge_reconfigure(&null_cfg);
064af421
BP
1455 }
1456 }
018f1525 1457
cd0cd65f
BP
1458 /* Refresh system and interface stats if necessary. */
1459 if (time_msec() >= stats_timer) {
ce887677
BP
1460 if (cfg) {
1461 struct ovsdb_idl_txn *txn;
018f1525 1462
ce887677 1463 txn = ovsdb_idl_txn_create(idl);
4e8e4213 1464 LIST_FOR_EACH (br, node, &all_bridges) {
ce887677 1465 size_t i;
018f1525 1466
ce887677
BP
1467 for (i = 0; i < br->n_ports; i++) {
1468 struct port *port = br->ports[i];
1469 size_t j;
018f1525 1470
ce887677
BP
1471 for (j = 0; j < port->n_ifaces; j++) {
1472 struct iface *iface = port->ifaces[j];
1473 iface_refresh_stats(iface);
b31bcf60 1474 iface_refresh_cfm_stats(iface);
ea763e0e 1475 iface_refresh_status(iface);
ce887677 1476 }
018f1525 1477 }
bffc0589 1478 bridge_refresh_controller_status(br);
018f1525 1479 }
ce887677
BP
1480 refresh_system_stats(cfg);
1481 ovsdb_idl_txn_commit(txn);
1482 ovsdb_idl_txn_destroy(txn); /* XXX */
018f1525 1483 }
018f1525 1484
cd0cd65f 1485 stats_timer = time_msec() + STATS_INTERVAL;
018f1525 1486 }
064af421
BP
1487}
1488
1489void
1490bridge_wait(void)
1491{
1492 struct bridge *br;
b31bcf60 1493 struct iface *iface;
064af421 1494
4e8e4213 1495 LIST_FOR_EACH (br, node, &all_bridges) {
064af421 1496 ofproto_wait(br->ofproto);
7d674866 1497 if (ofproto_has_primary_controller(br->ofproto)) {
064af421
BP
1498 continue;
1499 }
1500
93dfc067 1501 mac_learning_wait(br->ml);
c25c91fd 1502 lacp_wait(br);
064af421 1503 bond_wait(br);
b31bcf60
EJ
1504
1505 HMAP_FOR_EACH (iface, dp_ifidx_node, &br->ifaces) {
1506 if (iface->cfm) {
1507 cfm_wait(iface->cfm);
1508 }
1509 }
064af421 1510 }
c5187f17 1511 ovsdb_idl_wait(idl);
cd0cd65f 1512 poll_timer_wait_until(stats_timer);
064af421
BP
1513}
1514
1515/* Forces 'br' to revalidate all of its flows. This is appropriate when 'br''s
1516 * configuration changes. */
1517static void
1518bridge_flush(struct bridge *br)
1519{
1520 COVERAGE_INC(bridge_flush);
1521 br->flush = true;
93dfc067 1522 mac_learning_flush(br->ml);
064af421 1523}
07c318f4
BP
1524
1525/* Returns the 'br' interface for the ODPP_LOCAL port, or null if 'br' has no
1526 * such interface. */
1527static struct iface *
1528bridge_get_local_iface(struct bridge *br)
1529{
1530 size_t i, j;
1531
1532 for (i = 0; i < br->n_ports; i++) {
1533 struct port *port = br->ports[i];
1534 for (j = 0; j < port->n_ifaces; j++) {
1535 struct iface *iface = port->ifaces[j];
1536 if (iface->dp_ifidx == ODPP_LOCAL) {
1537 return iface;
1538 }
1539 }
1540 }
1541
1542 return NULL;
1543}
064af421 1544\f
8c4c1387
BP
1545/* Bridge unixctl user interface functions. */
1546static void
8ca79daa 1547bridge_unixctl_fdb_show(struct unixctl_conn *conn,
c69ee87c 1548 const char *args, void *aux OVS_UNUSED)
8c4c1387
BP
1549{
1550 struct ds ds = DS_EMPTY_INITIALIZER;
1551 const struct bridge *br;
93dfc067 1552 const struct mac_entry *e;
8c4c1387
BP
1553
1554 br = bridge_lookup(args);
1555 if (!br) {
1556 unixctl_command_reply(conn, 501, "no such bridge");
1557 return;
1558 }
1559
1560 ds_put_cstr(&ds, " port VLAN MAC Age\n");
4e8e4213 1561 LIST_FOR_EACH (e, lru_node, &br->ml->lrus) {
93dfc067
JG
1562 if (e->port < 0 || e->port >= br->n_ports) {
1563 continue;
8c4c1387 1564 }
93dfc067
JG
1565 ds_put_format(&ds, "%5d %4d "ETH_ADDR_FMT" %3d\n",
1566 br->ports[e->port]->ifaces[0]->dp_ifidx,
1567 e->vlan, ETH_ADDR_ARGS(e->mac), mac_entry_age(e));
8c4c1387
BP
1568 }
1569 unixctl_command_reply(conn, 200, ds_cstr(&ds));
1570 ds_destroy(&ds);
1571}
1572\f
064af421 1573/* Bridge reconfiguration functions. */
064af421 1574static struct bridge *
1a6f1e2a 1575bridge_create(const struct ovsrec_bridge *br_cfg)
064af421
BP
1576{
1577 struct bridge *br;
1578 int error;
1579
1a6f1e2a 1580 assert(!bridge_lookup(br_cfg->name));
ec6fde61 1581 br = xzalloc(sizeof *br);
064af421 1582
1a6f1e2a
JG
1583 error = dpif_create_and_open(br_cfg->name, br_cfg->datapath_type,
1584 &br->dpif);
efacbce6 1585 if (error) {
064af421
BP
1586 free(br);
1587 return NULL;
1588 }
efacbce6 1589 dpif_flow_flush(br->dpif);
064af421 1590
1a6f1e2a
JG
1591 error = ofproto_create(br_cfg->name, br_cfg->datapath_type, &bridge_ofhooks,
1592 br, &br->ofproto);
064af421 1593 if (error) {
1a6f1e2a
JG
1594 VLOG_ERR("failed to create switch %s: %s", br_cfg->name,
1595 strerror(error));
c228a364
BP
1596 dpif_delete(br->dpif);
1597 dpif_close(br->dpif);
064af421
BP
1598 free(br);
1599 return NULL;
1600 }
1601
1a6f1e2a
JG
1602 br->name = xstrdup(br_cfg->name);
1603 br->cfg = br_cfg;
064af421 1604 br->ml = mac_learning_create();
70150daf 1605 eth_addr_nicira_random(br->default_ea);
064af421 1606
d9a8717a 1607 hmap_init(&br->ifaces);
064af421 1608
836fad5e 1609 shash_init(&br->port_by_name);
4a1ee6ae
BP
1610 shash_init(&br->iface_by_name);
1611
064af421 1612 br->flush = false;
064af421
BP
1613
1614 list_push_back(&all_bridges, &br->node);
1615
c228a364 1616 VLOG_INFO("created bridge %s on %s", br->name, dpif_name(br->dpif));
064af421
BP
1617
1618 return br;
1619}
1620
1621static void
1622bridge_destroy(struct bridge *br)
1623{
1624 if (br) {
1625 int error;
1626
1627 while (br->n_ports > 0) {
1628 port_destroy(br->ports[br->n_ports - 1]);
1629 }
1630 list_remove(&br->node);
c228a364 1631 error = dpif_delete(br->dpif);
064af421 1632 if (error && error != ENOENT) {
b29ba128 1633 VLOG_ERR("failed to delete %s: %s",
c228a364 1634 dpif_name(br->dpif), strerror(error));
064af421 1635 }
c228a364 1636 dpif_close(br->dpif);
064af421 1637 ofproto_destroy(br->ofproto);
064af421 1638 mac_learning_destroy(br->ml);
d9a8717a 1639 hmap_destroy(&br->ifaces);
836fad5e 1640 shash_destroy(&br->port_by_name);
4a1ee6ae 1641 shash_destroy(&br->iface_by_name);
064af421
BP
1642 free(br->ports);
1643 free(br->name);
1644 free(br);
1645 }
1646}
1647
1648static struct bridge *
1649bridge_lookup(const char *name)
1650{
1651 struct bridge *br;
1652
4e8e4213 1653 LIST_FOR_EACH (br, node, &all_bridges) {
064af421
BP
1654 if (!strcmp(br->name, name)) {
1655 return br;
1656 }
1657 }
1658 return NULL;
1659}
1660
4f2cad2c
JP
1661/* Handle requests for a listing of all flows known by the OpenFlow
1662 * stack, including those normally hidden. */
1663static void
8ca79daa 1664bridge_unixctl_dump_flows(struct unixctl_conn *conn,
c69ee87c 1665 const char *args, void *aux OVS_UNUSED)
4f2cad2c
JP
1666{
1667 struct bridge *br;
1668 struct ds results;
d295e8e9 1669
4f2cad2c
JP
1670 br = bridge_lookup(args);
1671 if (!br) {
1672 unixctl_command_reply(conn, 501, "Unknown bridge");
1673 return;
1674 }
1675
1676 ds_init(&results);
1677 ofproto_get_all_flows(br->ofproto, &results);
1678
1679 unixctl_command_reply(conn, 200, ds_cstr(&results));
1680 ds_destroy(&results);
1681}
1682
fa05809b
BP
1683/* "bridge/reconnect [BRIDGE]": makes BRIDGE drop all of its controller
1684 * connections and reconnect. If BRIDGE is not specified, then all bridges
1685 * drop their controller connections and reconnect. */
1686static void
1687bridge_unixctl_reconnect(struct unixctl_conn *conn,
1688 const char *args, void *aux OVS_UNUSED)
1689{
1690 struct bridge *br;
1691 if (args[0] != '\0') {
1692 br = bridge_lookup(args);
1693 if (!br) {
1694 unixctl_command_reply(conn, 501, "Unknown bridge");
1695 return;
1696 }
1697 ofproto_reconnect_controllers(br->ofproto);
1698 } else {
4e8e4213 1699 LIST_FOR_EACH (br, node, &all_bridges) {
fa05809b
BP
1700 ofproto_reconnect_controllers(br->ofproto);
1701 }
1702 }
1703 unixctl_command_reply(conn, 200, NULL);
1704}
1705
064af421
BP
1706static int
1707bridge_run_one(struct bridge *br)
1708{
1709 int error;
b31bcf60 1710 struct iface *iface;
064af421
BP
1711
1712 error = ofproto_run1(br->ofproto);
1713 if (error) {
1714 return error;
1715 }
1716
93dfc067 1717 mac_learning_run(br->ml, ofproto_get_revalidate_set(br->ofproto));
c25c91fd 1718 lacp_run(br);
064af421 1719 bond_run(br);
064af421
BP
1720
1721 error = ofproto_run2(br->ofproto, br->flush);
1722 br->flush = false;
1723
b31bcf60
EJ
1724 HMAP_FOR_EACH (iface, dp_ifidx_node, &br->ifaces) {
1725 struct ofpbuf *packet;
1726
1727 if (!iface->cfm) {
1728 continue;
1729 }
1730
1731 packet = cfm_run(iface->cfm);
1732 if (packet) {
1733 iface_send_packet(iface, packet);
1734 ofpbuf_uninit(packet);
1735 free(packet);
1736 }
1737 }
1738
064af421
BP
1739 return error;
1740}
1741
76ce9432 1742static size_t
1a048029 1743bridge_get_controllers(const struct bridge *br,
76ce9432 1744 struct ovsrec_controller ***controllersp)
064af421 1745{
76ce9432
BP
1746 struct ovsrec_controller **controllers;
1747 size_t n_controllers;
064af421 1748
1a048029
JP
1749 controllers = br->cfg->controller;
1750 n_controllers = br->cfg->n_controller;
76343538 1751
76ce9432
BP
1752 if (n_controllers == 1 && !strcmp(controllers[0]->target, "none")) {
1753 controllers = NULL;
1754 n_controllers = 0;
064af421 1755 }
76343538 1756
76ce9432
BP
1757 if (controllersp) {
1758 *controllersp = controllers;
1759 }
1760 return n_controllers;
064af421
BP
1761}
1762
1763static void
1a048029 1764bridge_reconfigure_one(struct bridge *br)
064af421 1765{
76343538 1766 struct shash old_ports, new_ports;
064af421 1767 struct svec snoops, old_snoops;
76343538 1768 struct shash_node *node;
31681a5d 1769 enum ofproto_fail_mode fail_mode;
6ae39834 1770 size_t i;
064af421
BP
1771
1772 /* Collect old ports. */
76343538 1773 shash_init(&old_ports);
064af421 1774 for (i = 0; i < br->n_ports; i++) {
76343538 1775 shash_add(&old_ports, br->ports[i]->name, br->ports[i]);
064af421 1776 }
064af421
BP
1777
1778 /* Collect new ports. */
76343538
BP
1779 shash_init(&new_ports);
1780 for (i = 0; i < br->cfg->n_ports; i++) {
1781 const char *name = br->cfg->ports[i]->name;
1782 if (!shash_add_once(&new_ports, name, br->cfg->ports[i])) {
1783 VLOG_WARN("bridge %s: %s specified twice as bridge port",
1784 br->name, name);
1785 }
1786 }
e073f944
BP
1787
1788 /* If we have a controller, then we need a local port. Complain if the
1789 * user didn't specify one.
1790 *
1791 * XXX perhaps we should synthesize a port ourselves in this case. */
1a048029 1792 if (bridge_get_controllers(br, NULL)) {
72865317
BP
1793 char local_name[IF_NAMESIZE];
1794 int error;
1795
1796 error = dpif_port_get_name(br->dpif, ODPP_LOCAL,
1797 local_name, sizeof local_name);
e073f944
BP
1798 if (!error && !shash_find(&new_ports, local_name)) {
1799 VLOG_WARN("bridge %s: controller specified but no local port "
1800 "(port named %s) defined",
1801 br->name, local_name);
72865317 1802 }
064af421 1803 }
064af421 1804
4a1ee6ae
BP
1805 /* Get rid of deleted ports.
1806 * Get rid of deleted interfaces on ports that still exist. */
76343538 1807 SHASH_FOR_EACH (node, &old_ports) {
4a1ee6ae
BP
1808 struct port *port = node->data;
1809 const struct ovsrec_port *port_cfg;
1810
1811 port_cfg = shash_find_data(&new_ports, node->name);
1812 if (!port_cfg) {
1813 port_destroy(port);
1814 } else {
1815 port_del_ifaces(port, port_cfg);
064af421
BP
1816 }
1817 }
4a1ee6ae
BP
1818
1819 /* Create new ports.
1820 * Add new interfaces to existing ports.
1821 * Reconfigure existing ports. */
76343538
BP
1822 SHASH_FOR_EACH (node, &new_ports) {
1823 struct port *port = shash_find_data(&old_ports, node->name);
1824 if (!port) {
1825 port = port_create(br, node->name);
064af421 1826 }
ceb4559f 1827
76343538 1828 port_reconfigure(port, node->data);
ceb4559f
JG
1829 if (!port->n_ifaces) {
1830 VLOG_WARN("bridge %s: port %s has no interfaces, dropping",
1831 br->name, port->name);
1832 port_destroy(port);
1833 }
064af421 1834 }
76343538
BP
1835 shash_destroy(&old_ports);
1836 shash_destroy(&new_ports);
064af421 1837
31681a5d
JP
1838 /* Set the fail-mode */
1839 fail_mode = !br->cfg->fail_mode
1840 || !strcmp(br->cfg->fail_mode, "standalone")
1841 ? OFPROTO_FAIL_STANDALONE
1842 : OFPROTO_FAIL_SECURE;
7d674866
BP
1843 if (ofproto_get_fail_mode(br->ofproto) != fail_mode
1844 && !ofproto_has_primary_controller(br->ofproto)) {
abdfe474
JP
1845 ofproto_flush_flows(br->ofproto);
1846 }
31681a5d
JP
1847 ofproto_set_fail_mode(br->ofproto, fail_mode);
1848
064af421
BP
1849 /* Delete all flows if we're switching from connected to standalone or vice
1850 * versa. (XXX Should we delete all flows if we are switching from one
1851 * controller to another?) */
1852
5a243150 1853 /* Configure OpenFlow controller connection snooping. */
76343538
BP
1854 svec_init(&snoops);
1855 svec_add_nocopy(&snoops, xasprintf("punix:%s/%s.snoop",
b43c6fe2 1856 ovs_rundir(), br->name));
76343538
BP
1857 svec_init(&old_snoops);
1858 ofproto_get_snoops(br->ofproto, &old_snoops);
1859 if (!svec_equal(&snoops, &old_snoops)) {
1860 ofproto_set_snoops(br->ofproto, &snoops);
1861 }
1862 svec_destroy(&snoops);
1863 svec_destroy(&old_snoops);
76343538 1864
064af421
BP
1865 mirror_reconfigure(br);
1866}
1867
7d674866
BP
1868/* Initializes 'oc' appropriately as a management service controller for
1869 * 'br'.
1870 *
1871 * The caller must free oc->target when it is no longer needed. */
1872static void
1873bridge_ofproto_controller_for_mgmt(const struct bridge *br,
1874 struct ofproto_controller *oc)
1875{
b43c6fe2 1876 oc->target = xasprintf("punix:%s/%s.mgmt", ovs_rundir(), br->name);
7d674866
BP
1877 oc->max_backoff = 0;
1878 oc->probe_interval = 60;
1879 oc->band = OFPROTO_OUT_OF_BAND;
1880 oc->accept_re = NULL;
1881 oc->update_resolv_conf = false;
1882 oc->rate_limit = 0;
1883 oc->burst_limit = 0;
1884}
1885
1886/* Converts ovsrec_controller 'c' into an ofproto_controller in 'oc'. */
1887static void
1888bridge_ofproto_controller_from_ovsrec(const struct ovsrec_controller *c,
1889 struct ofproto_controller *oc)
1890{
1891 oc->target = c->target;
1892 oc->max_backoff = c->max_backoff ? *c->max_backoff / 1000 : 8;
1893 oc->probe_interval = c->inactivity_probe ? *c->inactivity_probe / 1000 : 5;
1894 oc->band = (!c->connection_mode || !strcmp(c->connection_mode, "in-band")
1895 ? OFPROTO_IN_BAND : OFPROTO_OUT_OF_BAND);
1896 oc->accept_re = c->discover_accept_regex;
1897 oc->update_resolv_conf = c->discover_update_resolv_conf;
1898 oc->rate_limit = c->controller_rate_limit ? *c->controller_rate_limit : 0;
1899 oc->burst_limit = (c->controller_burst_limit
1900 ? *c->controller_burst_limit : 0);
1901}
1902
1903/* Configures the IP stack for 'br''s local interface properly according to the
1904 * configuration in 'c'. */
1905static void
1906bridge_configure_local_iface_netdev(struct bridge *br,
1907 struct ovsrec_controller *c)
1908{
1909 struct netdev *netdev;
1910 struct in_addr mask, gateway;
1911
1912 struct iface *local_iface;
1913 struct in_addr ip;
1914
1915 /* Controller discovery does its own TCP/IP configuration later. */
1916 if (strcmp(c->target, "discover")) {
1917 return;
1918 }
1919
1920 /* If there's no local interface or no IP address, give up. */
1921 local_iface = bridge_get_local_iface(br);
1922 if (!local_iface || !c->local_ip || !inet_aton(c->local_ip, &ip)) {
1923 return;
1924 }
1925
1926 /* Bring up the local interface. */
1927 netdev = local_iface->netdev;
1928 netdev_turn_flags_on(netdev, NETDEV_UP, true);
1929
1930 /* Configure the IP address and netmask. */
1931 if (!c->local_netmask
1932 || !inet_aton(c->local_netmask, &mask)
1933 || !mask.s_addr) {
1934 mask.s_addr = guess_netmask(ip.s_addr);
1935 }
1936 if (!netdev_set_in4(netdev, ip, mask)) {
1937 VLOG_INFO("bridge %s: configured IP address "IP_FMT", netmask "IP_FMT,
1938 br->name, IP_ARGS(&ip.s_addr), IP_ARGS(&mask.s_addr));
1939 }
1940
1941 /* Configure the default gateway. */
1942 if (c->local_gateway
1943 && inet_aton(c->local_gateway, &gateway)
1944 && gateway.s_addr) {
1945 if (!netdev_add_router(netdev, gateway)) {
1946 VLOG_INFO("bridge %s: configured gateway "IP_FMT,
1947 br->name, IP_ARGS(&gateway.s_addr));
1948 }
1949 }
1950}
1951
064af421 1952static void
1a048029 1953bridge_reconfigure_remotes(struct bridge *br,
11bbff1b
BP
1954 const struct sockaddr_in *managers,
1955 size_t n_managers)
064af421 1956{
b1da6250
BP
1957 const char *disable_ib_str, *queue_id_str;
1958 bool disable_in_band = false;
1959 int queue_id;
1960
76ce9432
BP
1961 struct ovsrec_controller **controllers;
1962 size_t n_controllers;
7d674866
BP
1963 bool had_primary;
1964
1965 struct ofproto_controller *ocs;
1966 size_t n_ocs;
1967 size_t i;
064af421 1968
8731b2b6
JP
1969 /* Check if we should disable in-band control on this bridge. */
1970 disable_ib_str = bridge_get_other_config(br->cfg, "disable-in-band");
1971 if (disable_ib_str && !strcmp(disable_ib_str, "true")) {
1972 disable_in_band = true;
1973 }
1974
b1da6250
BP
1975 /* Set OpenFlow queue ID for in-band control. */
1976 queue_id_str = bridge_get_other_config(br->cfg, "in-band-queue");
1977 queue_id = queue_id_str ? strtol(queue_id_str, NULL, 10) : -1;
1978 ofproto_set_in_band_queue(br->ofproto, queue_id);
1979
8731b2b6
JP
1980 if (disable_in_band) {
1981 ofproto_set_extra_in_band_remotes(br->ofproto, NULL, 0);
1982 } else {
1983 ofproto_set_extra_in_band_remotes(br->ofproto, managers, n_managers);
1984 }
7d674866 1985 had_primary = ofproto_has_primary_controller(br->ofproto);
cd11000b 1986
1a048029 1987 n_controllers = bridge_get_controllers(br, &controllers);
064af421 1988
7d674866
BP
1989 ocs = xmalloc((n_controllers + 1) * sizeof *ocs);
1990 n_ocs = 0;
064af421 1991
7d674866
BP
1992 bridge_ofproto_controller_for_mgmt(br, &ocs[n_ocs++]);
1993 for (i = 0; i < n_controllers; i++) {
1994 struct ovsrec_controller *c = controllers[i];
76ce9432 1995
7d674866
BP
1996 if (!strncmp(c->target, "punix:", 6)
1997 || !strncmp(c->target, "unix:", 5)) {
1998 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
76ce9432 1999
7d674866
BP
2000 /* Prevent remote ovsdb-server users from accessing arbitrary Unix
2001 * domain sockets and overwriting arbitrary local files. */
2002 VLOG_ERR_RL(&rl, "%s: not adding Unix domain socket controller "
2003 "\"%s\" due to possibility for remote exploit",
2004 dpif_name(br->dpif), c->target);
2005 continue;
2006 }
76ce9432 2007
7d674866 2008 bridge_configure_local_iface_netdev(br, c);
8731b2b6
JP
2009 bridge_ofproto_controller_from_ovsrec(c, &ocs[n_ocs]);
2010 if (disable_in_band) {
2011 ocs[n_ocs].band = OFPROTO_OUT_OF_BAND;
2012 }
2013 n_ocs++;
7d674866 2014 }
76ce9432 2015
7d674866
BP
2016 ofproto_set_controllers(br->ofproto, ocs, n_ocs);
2017 free(ocs[0].target); /* From bridge_ofproto_controller_for_mgmt(). */
2018 free(ocs);
064af421 2019
7d674866
BP
2020 if (had_primary != ofproto_has_primary_controller(br->ofproto)) {
2021 ofproto_flush_flows(br->ofproto);
2022 }
76ce9432 2023
7d674866
BP
2024 /* If there are no controllers and the bridge is in standalone
2025 * mode, set up a flow that matches every packet and directs
2026 * them to OFPP_NORMAL (which goes to us). Otherwise, the
2027 * switch is in secure mode and we won't pass any traffic until
2028 * a controller has been defined and it tells us to do so. */
2029 if (!n_controllers
2030 && ofproto_get_fail_mode(br->ofproto) == OFPROTO_FAIL_STANDALONE) {
2031 union ofp_action action;
cf3fad8a 2032 struct cls_rule rule;
76ce9432 2033
7d674866
BP
2034 memset(&action, 0, sizeof action);
2035 action.type = htons(OFPAT_OUTPUT);
2036 action.output.len = htons(sizeof action);
2037 action.output.port = htons(OFPP_NORMAL);
cf3fad8a 2038 cls_rule_init_catchall(&rule, 0);
fa8b054f 2039 ofproto_add_flow(br->ofproto, &rule, &action, 1);
064af421 2040 }
064af421
BP
2041}
2042
2043static void
76343538 2044bridge_get_all_ifaces(const struct bridge *br, struct shash *ifaces)
064af421
BP
2045{
2046 size_t i, j;
2047
76343538 2048 shash_init(ifaces);
064af421
BP
2049 for (i = 0; i < br->n_ports; i++) {
2050 struct port *port = br->ports[i];
2051 for (j = 0; j < port->n_ifaces; j++) {
2052 struct iface *iface = port->ifaces[j];
76343538 2053 shash_add_once(ifaces, iface->name, iface);
064af421 2054 }
76343538
BP
2055 if (port->n_ifaces > 1 && port->cfg->bond_fake_iface) {
2056 shash_add_once(ifaces, port->name, NULL);
35c979bf 2057 }
064af421 2058 }
064af421
BP
2059}
2060
2061/* For robustness, in case the administrator moves around datapath ports behind
2062 * our back, we re-check all the datapath port numbers here.
2063 *
2064 * This function will set the 'dp_ifidx' members of interfaces that have
2065 * disappeared to -1, so only call this function from a context where those
2066 * 'struct iface's will be removed from the bridge. Otherwise, the -1
2067 * 'dp_ifidx'es will cause trouble later when we try to send them to the
2068 * datapath, which doesn't support UINT16_MAX+1 ports. */
2069static void
2070bridge_fetch_dp_ifaces(struct bridge *br)
2071{
b0ec0f27 2072 struct dpif_port_dump dump;
4c738a8d 2073 struct dpif_port dpif_port;
064af421
BP
2074 size_t i, j;
2075
2076 /* Reset all interface numbers. */
2077 for (i = 0; i < br->n_ports; i++) {
2078 struct port *port = br->ports[i];
2079 for (j = 0; j < port->n_ifaces; j++) {
2080 struct iface *iface = port->ifaces[j];
2081 iface->dp_ifidx = -1;
2082 }
2083 }
d9a8717a 2084 hmap_clear(&br->ifaces);
064af421 2085
4c738a8d
BP
2086 DPIF_PORT_FOR_EACH (&dpif_port, &dump, br->dpif) {
2087 struct iface *iface = iface_lookup(br, dpif_port.name);
064af421
BP
2088 if (iface) {
2089 if (iface->dp_ifidx >= 0) {
b29ba128 2090 VLOG_WARN("%s reported interface %s twice",
4c738a8d
BP
2091 dpif_name(br->dpif), dpif_port.name);
2092 } else if (iface_from_dp_ifidx(br, dpif_port.port_no)) {
b29ba128 2093 VLOG_WARN("%s reported interface %"PRIu16" twice",
4c738a8d 2094 dpif_name(br->dpif), dpif_port.port_no);
064af421 2095 } else {
4c738a8d 2096 iface->dp_ifidx = dpif_port.port_no;
d9a8717a
BP
2097 hmap_insert(&br->ifaces, &iface->dp_ifidx_node,
2098 hash_int(iface->dp_ifidx, 0));
064af421 2099 }
093e47f4 2100
bcd49a45
BP
2101 iface_set_ofport(iface->cfg,
2102 (iface->dp_ifidx >= 0
2103 ? odp_port_to_ofp_port(iface->dp_ifidx)
2104 : -1));
064af421
BP
2105 }
2106 }
064af421
BP
2107}
2108\f
2109/* Bridge packet processing functions. */
2110
9f5073d8
EJ
2111static bool
2112bond_is_tcp_hash(const struct port *port)
2113{
2114 return port->bond_mode == BM_TCP && port->lacp & LACP_NEGOTIATED;
2115}
2116
da285df4 2117static int
9f5073d8 2118bond_hash_src(const uint8_t mac[ETH_ADDR_LEN], uint16_t vlan)
da285df4 2119{
e58de0e3 2120 return hash_bytes(mac, ETH_ADDR_LEN, vlan) & BOND_MASK;
da285df4
BP
2121}
2122
9f5073d8
EJ
2123static int bond_hash_tcp(const struct flow *flow, uint16_t vlan)
2124{
2125 struct flow hash_flow;
2126
2127 memcpy(&hash_flow, flow, sizeof hash_flow);
2128 hash_flow.vlan_tci = 0;
2129
2130 /* The symmetric quality of this hash function is not required, but
2131 * flow_hash_symmetric_l4 already exists, and is sufficient for our
2132 * purposes, so we use it out of convenience. */
2133 return flow_hash_symmetric_l4(&hash_flow, vlan) & BOND_MASK;
2134}
2135
064af421 2136static struct bond_entry *
9f5073d8 2137lookup_bond_entry(const struct port *port, const struct flow *flow,
e58de0e3 2138 uint16_t vlan)
064af421 2139{
9f5073d8
EJ
2140 assert(port->bond_mode != BM_AB);
2141
2142 if (bond_is_tcp_hash(port)) {
2143 return &port->bond_hash[bond_hash_tcp(flow, vlan)];
2144 } else {
2145 return &port->bond_hash[bond_hash_src(flow->dl_src, vlan)];
2146 }
064af421
BP
2147}
2148
2149static int
2150bond_choose_iface(const struct port *port)
2151{
8b2a2f4a
JG
2152 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
2153 size_t i, best_down_slave = -1;
2154 long long next_delay_expiration = LLONG_MAX;
2155
064af421 2156 for (i = 0; i < port->n_ifaces; i++) {
8b2a2f4a
JG
2157 struct iface *iface = port->ifaces[i];
2158
2159 if (iface->enabled) {
064af421 2160 return i;
c25c91fd 2161 } else if (iface->delay_expires < next_delay_expiration
cd482758 2162 && (iface->lacp_status & LACP_ATTACHED
c25c91fd 2163 || !(port->lacp & LACP_NEGOTIATED))) {
8b2a2f4a
JG
2164 best_down_slave = i;
2165 next_delay_expiration = iface->delay_expires;
064af421
BP
2166 }
2167 }
8b2a2f4a
JG
2168
2169 if (best_down_slave != -1) {
2170 struct iface *iface = port->ifaces[best_down_slave];
2171
2172 VLOG_INFO_RL(&rl, "interface %s: skipping remaining %lli ms updelay "
2173 "since no other interface is up", iface->name,
2174 iface->delay_expires - time_msec());
2175 bond_enable_slave(iface, true);
2176 }
2177
2178 return best_down_slave;
064af421
BP
2179}
2180
2181static bool
9f5073d8 2182choose_output_iface(const struct port *port, const struct flow *flow,
e58de0e3 2183 uint16_t vlan, uint16_t *dp_ifidx, tag_type *tags)
064af421
BP
2184{
2185 struct iface *iface;
2186
2187 assert(port->n_ifaces);
2188 if (port->n_ifaces == 1) {
2189 iface = port->ifaces[0];
27dcaa1a 2190 } else if (port->bond_mode == BM_AB) {
be02e7c3
EJ
2191 if (port->active_iface < 0) {
2192 *tags |= port->no_ifaces_tag;
2193 return false;
2194 }
2195 iface = port->ifaces[port->active_iface];
9f5073d8
EJ
2196 } else {
2197 struct bond_entry *e = lookup_bond_entry(port, flow, vlan);
064af421
BP
2198 if (e->iface_idx < 0 || e->iface_idx >= port->n_ifaces
2199 || !port->ifaces[e->iface_idx]->enabled) {
2200 /* XXX select interface properly. The current interface selection
2201 * is only good for testing the rebalancing code. */
2202 e->iface_idx = bond_choose_iface(port);
2203 if (e->iface_idx < 0) {
2204 *tags |= port->no_ifaces_tag;
2205 return false;
2206 }
2207 e->iface_tag = tag_create_random();
2208 }
2209 *tags |= e->iface_tag;
2210 iface = port->ifaces[e->iface_idx];
2211 }
2212 *dp_ifidx = iface->dp_ifidx;
2213 *tags |= iface->tag; /* Currently only used for bonding. */
2214 return true;
2215}
2216
2217static void
c835c3bf 2218bond_link_status_update(struct iface *iface)
064af421
BP
2219{
2220 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
2221 struct port *port = iface->port;
c25c91fd
EJ
2222 bool up = iface->up;
2223 int updelay, downdelay;
2224
2225 updelay = port->updelay;
2226 downdelay = port->downdelay;
2227
2228 if (iface->port->lacp & LACP_NEGOTIATED) {
2229 downdelay = 0;
2230 updelay = 0;
2231 }
2232
2233 if (iface->port->lacp && up) {
2234 /* The interface is up if it's attached to an aggregator and its
2235 * partner is synchronized. The only exception is defaulted links.
2236 * They are not required to have synchronized partners because they
2237 * have no partners at all. However, they will only be attached if
2238 * negotiations failed on all interfaces in the bond. */
cd482758 2239 up = iface->lacp_status & LACP_ATTACHED
c25c91fd 2240 && (iface->lacp_partner.state & LACP_STATE_SYNC
cd482758 2241 || iface->lacp_status & LACP_DEFAULTED);
c25c91fd
EJ
2242 }
2243
064af421 2244
c25c91fd 2245 if ((up == iface->enabled) == (iface->delay_expires == LLONG_MAX)) {
064af421
BP
2246 /* Nothing to do. */
2247 return;
2248 }
63331829 2249 VLOG_INFO_RL(&rl, "interface %s: link state %s",
c25c91fd
EJ
2250 iface->name, up ? "up" : "down");
2251 if (up == iface->enabled) {
064af421
BP
2252 iface->delay_expires = LLONG_MAX;
2253 VLOG_INFO_RL(&rl, "interface %s: will not be %s",
c25c91fd
EJ
2254 iface->name, up ? "disabled" : "enabled");
2255 } else if (up && port->active_iface < 0) {
8b2a2f4a 2256 bond_enable_slave(iface, true);
c25c91fd 2257 if (updelay) {
8b2a2f4a 2258 VLOG_INFO_RL(&rl, "interface %s: skipping %d ms updelay since no "
c25c91fd 2259 "other interface is up", iface->name, updelay);
8b2a2f4a 2260 }
064af421 2261 } else {
c25c91fd 2262 int delay = up ? updelay : downdelay;
064af421
BP
2263 iface->delay_expires = time_msec() + delay;
2264 if (delay) {
2265 VLOG_INFO_RL(&rl,
2266 "interface %s: will be %s if it stays %s for %d ms",
2267 iface->name,
c25c91fd
EJ
2268 up ? "enabled" : "disabled",
2269 up ? "up" : "down",
064af421
BP
2270 delay);
2271 }
2272 }
2273}
2274
2275static void
2276bond_choose_active_iface(struct port *port)
2277{
2278 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
2279
2280 port->active_iface = bond_choose_iface(port);
2281 port->active_iface_tag = tag_create_random();
2282 if (port->active_iface >= 0) {
2283 VLOG_INFO_RL(&rl, "port %s: active interface is now %s",
2284 port->name, port->ifaces[port->active_iface]->name);
2285 } else {
2286 VLOG_WARN_RL(&rl, "port %s: all ports disabled, no active interface",
2287 port->name);
2288 }
2289}
2290
da285df4
BP
2291static void
2292bond_enable_slave(struct iface *iface, bool enable)
2293{
2294 struct port *port = iface->port;
2295 struct bridge *br = port->bridge;
2296
8b2a2f4a
JG
2297 /* This acts as a recursion check. If the act of disabling a slave
2298 * causes a different slave to be enabled, the flag will allow us to
2299 * skip redundant work when we reenter this function. It must be
2300 * cleared on exit to keep things safe with multiple bonds. */
2301 static bool moving_active_iface = false;
2302
da285df4
BP
2303 iface->delay_expires = LLONG_MAX;
2304 if (enable == iface->enabled) {
2305 return;
2306 }
2307
2308 iface->enabled = enable;
2309 if (!iface->enabled) {
17ea75b2 2310 VLOG_WARN("interface %s: disabled", iface->name);
da285df4
BP
2311 ofproto_revalidate(br->ofproto, iface->tag);
2312 if (iface->port_ifidx == port->active_iface) {
2313 ofproto_revalidate(br->ofproto,
2314 port->active_iface_tag);
8b2a2f4a
JG
2315
2316 /* Disabling a slave can lead to another slave being immediately
2317 * enabled if there will be no active slaves but one is waiting
2318 * on an updelay. In this case we do not need to run most of the
2319 * code for the newly enabled slave since there was no period
2320 * without an active slave and it is redundant with the disabling
2321 * path. */
2322 moving_active_iface = true;
da285df4
BP
2323 bond_choose_active_iface(port);
2324 }
2325 bond_send_learning_packets(port);
2326 } else {
17ea75b2 2327 VLOG_WARN("interface %s: enabled", iface->name);
8b2a2f4a 2328 if (port->active_iface < 0 && !moving_active_iface) {
da285df4
BP
2329 ofproto_revalidate(br->ofproto, port->no_ifaces_tag);
2330 bond_choose_active_iface(port);
2331 bond_send_learning_packets(port);
2332 }
2333 iface->tag = tag_create_random();
2334 }
8b2a2f4a
JG
2335
2336 moving_active_iface = false;
da285df4
BP
2337}
2338
8722022c
BP
2339/* Attempts to make the sum of the bond slaves' statistics appear on the fake
2340 * bond interface. */
2341static void
2342bond_update_fake_iface_stats(struct port *port)
2343{
2344 struct netdev_stats bond_stats;
2345 struct netdev *bond_dev;
2346 size_t i;
2347
2348 memset(&bond_stats, 0, sizeof bond_stats);
2349
2350 for (i = 0; i < port->n_ifaces; i++) {
2351 struct netdev_stats slave_stats;
2352
2353 if (!netdev_get_stats(port->ifaces[i]->netdev, &slave_stats)) {
f4b6076a
JG
2354 /* XXX: We swap the stats here because they are swapped back when
2355 * reported by the internal device. The reason for this is
2356 * internal devices normally represent packets going into the system
2357 * but when used as fake bond device they represent packets leaving
2358 * the system. We really should do this in the internal device
2359 * itself because changing it here reverses the counts from the
2360 * perspective of the switch. However, the internal device doesn't
2361 * know what type of device it represents so we have to do it here
2362 * for now. */
2363 bond_stats.tx_packets += slave_stats.rx_packets;
2364 bond_stats.tx_bytes += slave_stats.rx_bytes;
2365 bond_stats.rx_packets += slave_stats.tx_packets;
2366 bond_stats.rx_bytes += slave_stats.tx_bytes;
8722022c
BP
2367 }
2368 }
2369
2370 if (!netdev_open_default(port->name, &bond_dev)) {
2371 netdev_set_stats(bond_dev, &bond_stats);
2372 netdev_close(bond_dev);
2373 }
2374}
2375
c25c91fd
EJ
2376static void
2377bond_link_carrier_update(struct iface *iface, bool carrier)
2378{
2379 if (carrier == iface->up) {
2380 return;
2381 }
2382
cd482758 2383 if (iface->lacp_status & LACP_CURRENT) {
c25c91fd
EJ
2384 iface_set_lacp_expired(iface);
2385 }
2386
2387 iface->up = carrier;
2388 iface->lacp_tx = 0;
c25c91fd
EJ
2389}
2390
064af421
BP
2391static void
2392bond_run(struct bridge *br)
2393{
2394 size_t i, j;
2395
2396 for (i = 0; i < br->n_ports; i++) {
2397 struct port *port = br->ports[i];
85c74638 2398
8b2a2f4a 2399 if (port->n_ifaces >= 2) {
0bb5c3ec
BP
2400 char *devname;
2401
63331829
EJ
2402 if (port->monitor) {
2403 assert(!port->miimon);
0bb5c3ec 2404
63331829
EJ
2405 /* Track carrier going up and down on interfaces. */
2406 while (!netdev_monitor_poll(port->monitor, &devname)) {
2407 struct iface *iface;
2408
2409 iface = port_lookup_iface(port, devname);
2410 if (iface) {
2411 bool up = netdev_get_carrier(iface->netdev);
c25c91fd 2412 bond_link_carrier_update(iface, up);
63331829
EJ
2413 }
2414 free(devname);
2415 }
2416 } else {
2417 assert(port->miimon);
85da620e 2418
63331829
EJ
2419 if (time_msec() >= port->bond_miimon_next_update) {
2420 for (j = 0; j < port->n_ifaces; j++) {
2421 struct iface *iface = port->ifaces[j];
2422 bool up = netdev_get_miimon(iface->netdev);
c25c91fd 2423 bond_link_carrier_update(iface, up);
63331829
EJ
2424 }
2425 port->bond_miimon_next_update = time_msec() +
2426 port->bond_miimon_interval;
0bb5c3ec 2427 }
0bb5c3ec
BP
2428 }
2429
c835c3bf
EJ
2430 for (j = 0; j < port->n_ifaces; j++) {
2431 bond_link_status_update(port->ifaces[j]);
2432 }
2433
8b2a2f4a
JG
2434 for (j = 0; j < port->n_ifaces; j++) {
2435 struct iface *iface = port->ifaces[j];
2436 if (time_msec() >= iface->delay_expires) {
2437 bond_enable_slave(iface, !iface->enabled);
2438 }
2439 }
8722022c
BP
2440
2441 if (port->bond_fake_iface
2442 && time_msec() >= port->bond_next_fake_iface_update) {
2443 bond_update_fake_iface_stats(port);
2444 port->bond_next_fake_iface_update = time_msec() + 1000;
2445 }
8b2a2f4a 2446 }
064af421
BP
2447 }
2448}
2449
2450static void
2451bond_wait(struct bridge *br)
2452{
2453 size_t i, j;
2454
2455 for (i = 0; i < br->n_ports; i++) {
2456 struct port *port = br->ports[i];
2457 if (port->n_ifaces < 2) {
2458 continue;
2459 }
63331829
EJ
2460
2461 if (port->monitor) {
2462 netdev_monitor_poll_wait(port->monitor);
2463 }
2464
2465 if (port->miimon) {
2466 poll_timer_wait_until(port->bond_miimon_next_update);
2467 }
2468
064af421
BP
2469 for (j = 0; j < port->n_ifaces; j++) {
2470 struct iface *iface = port->ifaces[j];
2471 if (iface->delay_expires != LLONG_MAX) {
7cf8b266 2472 poll_timer_wait_until(iface->delay_expires);
064af421
BP
2473 }
2474 }
8722022c 2475 if (port->bond_fake_iface) {
7cf8b266 2476 poll_timer_wait_until(port->bond_next_fake_iface_update);
8722022c 2477 }
064af421
BP
2478 }
2479}
2480
2481static bool
0c62a7ad 2482set_dst(struct dst *dst, const struct flow *flow,
064af421
BP
2483 const struct port *in_port, const struct port *out_port,
2484 tag_type *tags)
2485{
0c62a7ad 2486 dst->vlan = (out_port->vlan >= 0 ? OFP_VLAN_NONE
064af421 2487 : in_port->vlan >= 0 ? in_port->vlan
66642cb4
BP
2488 : flow->vlan_tci == 0 ? OFP_VLAN_NONE
2489 : vlan_tci_to_vid(flow->vlan_tci));
9f5073d8 2490 return choose_output_iface(out_port, flow, dst->vlan,
0c62a7ad 2491 &dst->dp_ifidx, tags);
064af421
BP
2492}
2493
2494static void
2495swap_dst(struct dst *p, struct dst *q)
2496{
2497 struct dst tmp = *p;
2498 *p = *q;
2499 *q = tmp;
2500}
2501
2502/* Moves all the dsts with vlan == 'vlan' to the front of the 'n_dsts' in
2503 * 'dsts'. (This may help performance by reducing the number of VLAN changes
2504 * that we push to the datapath. We could in fact fully sort the array by
2505 * vlan, but in most cases there are at most two different vlan tags so that's
2506 * possibly overkill.) */
2507static void
0c62a7ad 2508partition_dsts(struct dst_set *set, int vlan)
064af421 2509{
0c62a7ad
BP
2510 struct dst *first = set->dsts;
2511 struct dst *last = set->dsts + set->n;
064af421
BP
2512
2513 while (first != last) {
2514 /* Invariants:
2515 * - All dsts < first have vlan == 'vlan'.
2516 * - All dsts >= last have vlan != 'vlan'.
2517 * - first < last. */
2518 while (first->vlan == vlan) {
2519 if (++first == last) {
2520 return;
2521 }
2522 }
2523
2524 /* Same invariants, plus one additional:
2525 * - first->vlan != vlan.
2526 */
2527 while (last[-1].vlan != vlan) {
2528 if (--last == first) {
2529 return;
2530 }
2531 }
2532
2533 /* Same invariants, plus one additional:
2534 * - last[-1].vlan == vlan.*/
2535 swap_dst(first++, --last);
2536 }
2537}
2538
2539static int
2540mirror_mask_ffs(mirror_mask_t mask)
2541{
2542 BUILD_ASSERT_DECL(sizeof(unsigned int) >= sizeof(mask));
2543 return ffs(mask);
2544}
2545
0c62a7ad
BP
2546static void
2547dst_set_init(struct dst_set *set)
2548{
2549 set->dsts = set->builtin;
2550 set->n = 0;
2551 set->allocated = ARRAY_SIZE(set->builtin);
2552}
2553
2554static void
2555dst_set_add(struct dst_set *set, const struct dst *dst)
2556{
2557 if (set->n >= set->allocated) {
2558 size_t new_allocated;
2559 struct dst *new_dsts;
2560
2561 new_allocated = set->allocated * 2;
2562 new_dsts = xmalloc(new_allocated * sizeof *new_dsts);
2563 memcpy(new_dsts, set->dsts, set->n * sizeof *new_dsts);
2564
2565 dst_set_free(set);
2566
2567 set->dsts = new_dsts;
2568 set->allocated = new_allocated;
2569 }
2570 set->dsts[set->n++] = *dst;
2571}
2572
2573static void
2574dst_set_free(struct dst_set *set)
2575{
2576 if (set->dsts != set->builtin) {
2577 free(set->dsts);
2578 }
2579}
2580
064af421 2581static bool
0c62a7ad 2582dst_is_duplicate(const struct dst_set *set, const struct dst *test)
064af421
BP
2583{
2584 size_t i;
0c62a7ad
BP
2585 for (i = 0; i < set->n; i++) {
2586 if (set->dsts[i].vlan == test->vlan
2587 && set->dsts[i].dp_ifidx == test->dp_ifidx) {
064af421
BP
2588 return true;
2589 }
2590 }
2591 return false;
2592}
2593
2594static bool
2595port_trunks_vlan(const struct port *port, uint16_t vlan)
2596{
3e9c481c
BP
2597 return (port->vlan < 0
2598 && (!port->trunks || bitmap_is_set(port->trunks, vlan)));
064af421
BP
2599}
2600
2601static bool
2602port_includes_vlan(const struct port *port, uint16_t vlan)
2603{
2604 return vlan == port->vlan || port_trunks_vlan(port, vlan);
2605}
2606
a4e2e1f2
EJ
2607static bool
2608port_is_floodable(const struct port *port)
2609{
2610 int i;
2611
2612 for (i = 0; i < port->n_ifaces; i++) {
2613 if (!ofproto_port_is_floodable(port->bridge->ofproto,
2614 port->ifaces[i]->dp_ifidx)) {
2615 return false;
2616 }
2617 }
2618 return true;
2619}
2620
0c62a7ad 2621static void
ae412e7d 2622compose_dsts(const struct bridge *br, const struct flow *flow, uint16_t vlan,
064af421 2623 const struct port *in_port, const struct port *out_port,
0c62a7ad 2624 struct dst_set *set, tag_type *tags, uint16_t *nf_output_iface)
064af421
BP
2625{
2626 mirror_mask_t mirrors = in_port->src_mirrors;
0c62a7ad 2627 struct dst dst;
66642cb4 2628 int flow_vlan;
064af421
BP
2629 size_t i;
2630
66642cb4
BP
2631 flow_vlan = vlan_tci_to_vid(flow->vlan_tci);
2632 if (flow_vlan == 0) {
2633 flow_vlan = OFP_VLAN_NONE;
2634 }
2635
064af421 2636 if (out_port == FLOOD_PORT) {
064af421
BP
2637 for (i = 0; i < br->n_ports; i++) {
2638 struct port *port = br->ports[i];
a4e2e1f2
EJ
2639 if (port != in_port
2640 && port_is_floodable(port)
2641 && port_includes_vlan(port, vlan)
064af421 2642 && !port->is_mirror_output_port
0c62a7ad 2643 && set_dst(&dst, flow, in_port, port, tags)) {
064af421 2644 mirrors |= port->dst_mirrors;
0c62a7ad 2645 dst_set_add(set, &dst);
064af421
BP
2646 }
2647 }
6a07af36 2648 *nf_output_iface = NF_OUT_FLOOD;
0c62a7ad
BP
2649 } else if (out_port && set_dst(&dst, flow, in_port, out_port, tags)) {
2650 dst_set_add(set, &dst);
2651 *nf_output_iface = dst.dp_ifidx;
064af421 2652 mirrors |= out_port->dst_mirrors;
064af421
BP
2653 }
2654
2655 while (mirrors) {
2656 struct mirror *m = br->mirrors[mirror_mask_ffs(mirrors) - 1];
2657 if (!m->n_vlans || vlan_is_mirrored(m, vlan)) {
2658 if (m->out_port) {
0c62a7ad
BP
2659 if (set_dst(&dst, flow, in_port, m->out_port, tags)
2660 && !dst_is_duplicate(set, &dst)) {
2661 dst_set_add(set, &dst);
064af421
BP
2662 }
2663 } else {
2664 for (i = 0; i < br->n_ports; i++) {
2665 struct port *port = br->ports[i];
2666 if (port_includes_vlan(port, m->out_vlan)
0c62a7ad 2667 && set_dst(&dst, flow, in_port, port, tags))
064af421
BP
2668 {
2669 if (port->vlan < 0) {
0c62a7ad 2670 dst.vlan = m->out_vlan;
064af421 2671 }
0c62a7ad 2672 if (dst_is_duplicate(set, &dst)) {
274de4d2
BP
2673 continue;
2674 }
43aa5f47
JG
2675
2676 /* Use the vlan tag on the original flow instead of
2677 * the one passed in the vlan parameter. This ensures
2678 * that we compare the vlan from before any implicit
2679 * tagging tags place. This is necessary because
2680 * dst->vlan is the final vlan, after removing implicit
2681 * tags. */
0c62a7ad 2682 if (port == in_port && dst.vlan == flow_vlan) {
064af421
BP
2683 /* Don't send out input port on same VLAN. */
2684 continue;
2685 }
0c62a7ad 2686 dst_set_add(set, &dst);
064af421
BP
2687 }
2688 }
2689 }
2690 }
2691 mirrors &= mirrors - 1;
2692 }
2693
0c62a7ad 2694 partition_dsts(set, flow_vlan);
064af421
BP
2695}
2696
67a4917b 2697static void OVS_UNUSED
0c62a7ad 2698print_dsts(const struct dst_set *set)
064af421 2699{
0c62a7ad
BP
2700 size_t i;
2701
2702 for (i = 0; i < set->n; i++) {
2703 const struct dst *dst = &set->dsts[i];
2704
2705 printf(">p%"PRIu16, dst->dp_ifidx);
2706 if (dst->vlan != OFP_VLAN_NONE) {
2707 printf("v%"PRIu16, dst->vlan);
064af421
BP
2708 }
2709 }
2710}
2711
2712static void
ae412e7d 2713compose_actions(struct bridge *br, const struct flow *flow, uint16_t vlan,
064af421 2714 const struct port *in_port, const struct port *out_port,
cdee00fd 2715 tag_type *tags, struct ofpbuf *actions,
6a07af36 2716 uint16_t *nf_output_iface)
064af421 2717{
0c62a7ad 2718 struct dst_set set;
064af421 2719 uint16_t cur_vlan;
0c62a7ad 2720 size_t i;
064af421 2721
0c62a7ad
BP
2722 dst_set_init(&set);
2723 compose_dsts(br, flow, vlan, in_port, out_port, &set, tags,
2724 nf_output_iface);
064af421 2725
66642cb4
BP
2726 cur_vlan = vlan_tci_to_vid(flow->vlan_tci);
2727 if (cur_vlan == 0) {
2728 cur_vlan = OFP_VLAN_NONE;
2729 }
0c62a7ad
BP
2730 for (i = 0; i < set.n; i++) {
2731 const struct dst *dst = &set.dsts[i];
2732 if (dst->vlan != cur_vlan) {
2733 if (dst->vlan == OFP_VLAN_NONE) {
7aec165d 2734 nl_msg_put_flag(actions, ODP_ACTION_ATTR_STRIP_VLAN);
064af421 2735 } else {
cdee00fd 2736 ovs_be16 tci;
0c62a7ad 2737 tci = htons(dst->vlan & VLAN_VID_MASK);
cdee00fd 2738 tci |= flow->vlan_tci & htons(VLAN_PCP_MASK);
7aec165d 2739 nl_msg_put_be16(actions, ODP_ACTION_ATTR_SET_DL_TCI, tci);
064af421 2740 }
0c62a7ad 2741 cur_vlan = dst->vlan;
064af421 2742 }
7aec165d 2743 nl_msg_put_u32(actions, ODP_ACTION_ATTR_OUTPUT, dst->dp_ifidx);
064af421 2744 }
0c62a7ad 2745 dst_set_free(&set);
064af421
BP
2746}
2747
e96a4d80
JG
2748/* Returns the effective vlan of a packet, taking into account both the
2749 * 802.1Q header and implicitly tagged ports. A value of 0 indicates that
2750 * the packet is untagged and -1 indicates it has an invalid header and
2751 * should be dropped. */
ae412e7d 2752static int flow_get_vlan(struct bridge *br, const struct flow *flow,
e96a4d80
JG
2753 struct port *in_port, bool have_packet)
2754{
66642cb4 2755 int vlan = vlan_tci_to_vid(flow->vlan_tci);
e96a4d80
JG
2756 if (in_port->vlan >= 0) {
2757 if (vlan) {
2758 /* XXX support double tagging? */
2759 if (have_packet) {
2760 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
66642cb4 2761 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %d tagged "
e96a4d80
JG
2762 "packet received on port %s configured with "
2763 "implicit VLAN %"PRIu16,
66642cb4 2764 br->name, vlan, in_port->name, in_port->vlan);
e96a4d80
JG
2765 }
2766 return -1;
2767 }
2768 vlan = in_port->vlan;
2769 } else {
2770 if (!port_includes_vlan(in_port, vlan)) {
2771 if (have_packet) {
2772 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2773 VLOG_WARN_RL(&rl, "bridge %s: dropping VLAN %d tagged "
2774 "packet received on port %s not configured for "
2775 "trunking VLAN %d",
2776 br->name, vlan, in_port->name, vlan);
2777 }
2778 return -1;
2779 }
2780 }
2781
2782 return vlan;
2783}
2784
7febb910
JG
2785/* A VM broadcasts a gratuitous ARP to indicate that it has resumed after
2786 * migration. Older Citrix-patched Linux DomU used gratuitous ARP replies to
2787 * indicate this; newer upstream kernels use gratuitous ARP requests. */
2788static bool
ae412e7d 2789is_gratuitous_arp(const struct flow *flow)
7febb910
JG
2790{
2791 return (flow->dl_type == htons(ETH_TYPE_ARP)
2792 && eth_addr_is_broadcast(flow->dl_dst)
2793 && (flow->nw_proto == ARP_OP_REPLY
2794 || (flow->nw_proto == ARP_OP_REQUEST
2795 && flow->nw_src == flow->nw_dst)));
2796}
2797
e96a4d80 2798static void
ae412e7d 2799update_learning_table(struct bridge *br, const struct flow *flow, int vlan,
e96a4d80
JG
2800 struct port *in_port)
2801{
7febb910
JG
2802 enum grat_arp_lock_type lock_type;
2803 tag_type rev_tag;
2804
2805 /* We don't want to learn from gratuitous ARP packets that are reflected
2806 * back over bond slaves so we lock the learning table. */
2807 lock_type = !is_gratuitous_arp(flow) ? GRAT_ARP_LOCK_NONE :
2808 (in_port->n_ifaces == 1) ? GRAT_ARP_LOCK_SET :
2809 GRAT_ARP_LOCK_CHECK;
2810
2811 rev_tag = mac_learning_learn(br->ml, flow->dl_src, vlan, in_port->port_idx,
2812 lock_type);
e96a4d80
JG
2813 if (rev_tag) {
2814 /* The log messages here could actually be useful in debugging,
2815 * so keep the rate limit relatively high. */
2816 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30,
2817 300);
2818 VLOG_DBG_RL(&rl, "bridge %s: learned that "ETH_ADDR_FMT" is "
2819 "on port %s in VLAN %d",
2820 br->name, ETH_ADDR_ARGS(flow->dl_src),
2821 in_port->name, vlan);
2822 ofproto_revalidate(br->ofproto, rev_tag);
2823 }
2824}
2825
14a34d00
BP
2826/* Determines whether packets in 'flow' within 'br' should be forwarded or
2827 * dropped. Returns true if they may be forwarded, false if they should be
2828 * dropped.
2829 *
2830 * If 'have_packet' is true, it indicates that the caller is processing a
2831 * received packet. If 'have_packet' is false, then the caller is just
2832 * revalidating an existing flow because configuration has changed. Either
2833 * way, 'have_packet' only affects logging (there is no point in logging errors
2834 * during revalidation).
2835 *
2836 * Sets '*in_portp' to the input port. This will be a null pointer if
2837 * flow->in_port does not designate a known input port (in which case
2838 * is_admissible() returns false).
2839 *
2840 * When returning true, sets '*vlanp' to the effective VLAN of the input
2841 * packet, as returned by flow_get_vlan().
2842 *
2843 * May also add tags to '*tags', although the current implementation only does
2844 * so in one special case.
2845 */
064af421 2846static bool
ae412e7d 2847is_admissible(struct bridge *br, const struct flow *flow, bool have_packet,
14a34d00 2848 tag_type *tags, int *vlanp, struct port **in_portp)
064af421
BP
2849{
2850 struct iface *in_iface;
2851 struct port *in_port;
064af421
BP
2852 int vlan;
2853
2854 /* Find the interface and port structure for the received packet. */
2855 in_iface = iface_from_dp_ifidx(br, flow->in_port);
2856 if (!in_iface) {
2857 /* No interface? Something fishy... */
14a34d00 2858 if (have_packet) {
064af421
BP
2859 /* Odd. A few possible reasons here:
2860 *
2861 * - We deleted an interface but there are still a few packets
2862 * queued up from it.
2863 *
2864 * - Someone externally added an interface (e.g. with "ovs-dpctl
2865 * add-if") that we don't know about.
2866 *
2867 * - Packet arrived on the local port but the local port is not
2868 * one of our bridge ports.
2869 */
2870 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2871
2872 VLOG_WARN_RL(&rl, "bridge %s: received packet on unknown "
d295e8e9 2873 "interface %"PRIu16, br->name, flow->in_port);
064af421
BP
2874 }
2875
14a34d00
BP
2876 *in_portp = NULL;
2877 return false;
064af421 2878 }
14a34d00
BP
2879 *in_portp = in_port = in_iface->port;
2880 *vlanp = vlan = flow_get_vlan(br, flow, in_port, have_packet);
e96a4d80 2881 if (vlan < 0) {
14a34d00 2882 return false;
064af421
BP
2883 }
2884
064af421
BP
2885 /* Drop frames for reserved multicast addresses. */
2886 if (eth_addr_is_reserved(flow->dl_dst)) {
14a34d00 2887 return false;
064af421
BP
2888 }
2889
2890 /* Drop frames on ports reserved for mirroring. */
2891 if (in_port->is_mirror_output_port) {
14a34d00 2892 if (have_packet) {
f925807d
BP
2893 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
2894 VLOG_WARN_RL(&rl, "bridge %s: dropping packet received on port "
2895 "%s, which is reserved exclusively for mirroring",
2896 br->name, in_port->name);
2897 }
14a34d00 2898 return false;
064af421
BP
2899 }
2900
c25c91fd
EJ
2901 /* When using LACP, do not accept packets from disabled interfaces. */
2902 if (in_port->lacp & LACP_NEGOTIATED && !in_iface->enabled) {
2903 return false;
2904 }
2905
2906 /* Packets received on non-LACP bonds need special attention to avoid
2907 * duplicates. */
2908 if (in_port->n_ifaces > 1 && !(in_port->lacp & LACP_NEGOTIATED)) {
3a55ef14 2909 int src_idx;
7febb910 2910 bool is_grat_arp_locked;
3a55ef14
JG
2911
2912 if (eth_addr_is_multicast(flow->dl_dst)) {
2913 *tags |= in_port->active_iface_tag;
2914 if (in_port->active_iface != in_iface->port_ifidx) {
2915 /* Drop all multicast packets on inactive slaves. */
14a34d00 2916 return false;
c93b1d6a 2917 }
064af421 2918 }
3a55ef14
JG
2919
2920 /* Drop all packets for which we have learned a different input
2921 * port, because we probably sent the packet on one slave and got
5d0ae138 2922 * it back on the other. Gratuitous ARP packets are an exception
7febb910
JG
2923 * to this rule: the host has moved to another switch. The exception
2924 * to the exception is if we locked the learning table to avoid
2925 * reflections on bond slaves. If this is the case, just drop the
2926 * packet now. */
2927 src_idx = mac_learning_lookup(br->ml, flow->dl_src, vlan,
2928 &is_grat_arp_locked);
3a55ef14 2929 if (src_idx != -1 && src_idx != in_port->port_idx &&
7febb910 2930 (!is_gratuitous_arp(flow) || is_grat_arp_locked)) {
14a34d00 2931 return false;
3a55ef14 2932 }
064af421
BP
2933 }
2934
14a34d00
BP
2935 return true;
2936}
2937
2938/* If the composed actions may be applied to any packet in the given 'flow',
2939 * returns true. Otherwise, the actions should only be applied to 'packet', or
2940 * not at all, if 'packet' was NULL. */
2941static bool
ae412e7d 2942process_flow(struct bridge *br, const struct flow *flow,
cdee00fd 2943 const struct ofpbuf *packet, struct ofpbuf *actions,
14a34d00
BP
2944 tag_type *tags, uint16_t *nf_output_iface)
2945{
2946 struct port *in_port;
2947 struct port *out_port;
2948 int vlan;
2949 int out_port_idx;
2950
2951 /* Check whether we should drop packets in this flow. */
2952 if (!is_admissible(br, flow, packet != NULL, tags, &vlan, &in_port)) {
2953 out_port = NULL;
2954 goto done;
2955 }
2956
93dfc067
JG
2957 /* Learn source MAC (but don't try to learn from revalidation). */
2958 if (packet) {
e96a4d80 2959 update_learning_table(br, flow, vlan, in_port);
93dfc067
JG
2960 }
2961
2962 /* Determine output port. */
7febb910
JG
2963 out_port_idx = mac_learning_lookup_tag(br->ml, flow->dl_dst, vlan, tags,
2964 NULL);
93dfc067
JG
2965 if (out_port_idx >= 0 && out_port_idx < br->n_ports) {
2966 out_port = br->ports[out_port_idx];
e96a4d80 2967 } else if (!packet && !eth_addr_is_multicast(flow->dl_dst)) {
93dfc067 2968 /* If we are revalidating but don't have a learning entry then
e96a4d80
JG
2969 * eject the flow. Installing a flow that floods packets opens
2970 * up a window of time where we could learn from a packet reflected
2971 * on a bond and blackhole packets before the learning table is
2972 * updated to reflect the correct port. */
93dfc067 2973 return false;
1609aa03
BP
2974 } else {
2975 out_port = FLOOD_PORT;
064af421
BP
2976 }
2977
ba54bf4f
BP
2978 /* Don't send packets out their input ports. */
2979 if (in_port == out_port) {
064af421
BP
2980 out_port = NULL;
2981 }
2982
2983done:
14a34d00
BP
2984 if (in_port) {
2985 compose_actions(br, flow, vlan, in_port, out_port, tags, actions,
2986 nf_output_iface);
2987 }
064af421 2988
69d60f9f 2989 return true;
064af421
BP
2990}
2991
064af421 2992static bool
ae412e7d 2993bridge_normal_ofhook_cb(const struct flow *flow, const struct ofpbuf *packet,
cdee00fd 2994 struct ofpbuf *actions, tag_type *tags,
6a07af36 2995 uint16_t *nf_output_iface, void *br_)
064af421
BP
2996{
2997 struct bridge *br = br_;
2998
064af421 2999 COVERAGE_INC(bridge_process_flow);
ebe482fd
EJ
3000 return process_flow(br, flow, packet, actions, tags, nf_output_iface);
3001}
3002
3003static bool
3004bridge_special_ofhook_cb(const struct flow *flow,
3005 const struct ofpbuf *packet, void *br_)
3006{
3007 struct iface *iface;
3008 struct bridge *br = br_;
26d79bf2 3009
b31bcf60
EJ
3010 iface = iface_from_dp_ifidx(br, flow->in_port);
3011
3012 if (cfm_should_process_flow(flow)) {
ebe482fd
EJ
3013
3014 if (iface && packet && iface->cfm) {
3015 COVERAGE_INC(bridge_process_cfm);
b31bcf60
EJ
3016 cfm_process_heartbeat(iface->cfm, packet);
3017 }
3018 return false;
c25c91fd 3019 } else if (flow->dl_type == htons(ETH_TYPE_LACP)) {
ebe482fd
EJ
3020
3021 if (iface && packet) {
3022 COVERAGE_INC(bridge_process_lacp);
c25c91fd
EJ
3023 lacp_process_packet(packet, iface);
3024 }
3025 return false;
b31bcf60
EJ
3026 }
3027
ebe482fd 3028 return true;
064af421
BP
3029}
3030
3031static void
ae412e7d 3032bridge_account_flow_ofhook_cb(const struct flow *flow, tag_type tags,
cdee00fd 3033 const struct nlattr *actions,
cf22f8cb 3034 size_t actions_len,
cdee00fd 3035 unsigned long long int n_bytes, void *br_)
064af421
BP
3036{
3037 struct bridge *br = br_;
cdee00fd 3038 const struct nlattr *a;
db0e2ad1 3039 struct port *in_port;
26d79bf2 3040 tag_type dummy = 0;
cdee00fd 3041 unsigned int left;
db0e2ad1 3042 int vlan;
064af421 3043
26d79bf2
BP
3044 /* Feed information from the active flows back into the learning table to
3045 * ensure that table is always in sync with what is actually flowing
3046 * through the datapath.
3047 *
3048 * We test that 'tags' is nonzero to ensure that only flows that include an
3049 * OFPP_NORMAL action are used for learning. This works because
3050 * bridge_normal_ofhook_cb() always sets a nonzero tag value. */
3051 if (tags && is_admissible(br, flow, false, &dummy, &vlan, &in_port)) {
db0e2ad1 3052 update_learning_table(br, flow, vlan, in_port);
e96a4d80
JG
3053 }
3054
26d79bf2 3055 /* Account for bond slave utilization. */
064af421
BP
3056 if (!br->has_bonded_ports) {
3057 return;
3058 }
cdee00fd 3059 NL_ATTR_FOR_EACH_UNSAFE (a, left, actions, actions_len) {
7aec165d 3060 if (nl_attr_type(a) == ODP_ACTION_ATTR_OUTPUT) {
cdee00fd 3061 struct port *out_port = port_from_dp_ifidx(br, nl_attr_get_u32(a));
be02e7c3 3062 if (out_port && out_port->n_ifaces >= 2 &&
f48f70b7 3063 out_port->bond_mode != BM_AB) {
e58de0e3
EJ
3064 uint16_t vlan = (flow->vlan_tci
3065 ? vlan_tci_to_vid(flow->vlan_tci)
3066 : OFP_VLAN_NONE);
9f5073d8 3067 struct bond_entry *e = lookup_bond_entry(out_port, flow, vlan);
064af421
BP
3068 e->tx_bytes += n_bytes;
3069 }
3070 }
3071 }
3072}
3073
3074static void
3075bridge_account_checkpoint_ofhook_cb(void *br_)
3076{
3077 struct bridge *br = br_;
c8143c88 3078 long long int now;
064af421
BP
3079 size_t i;
3080
3081 if (!br->has_bonded_ports) {
3082 return;
3083 }
3084
c8143c88 3085 now = time_msec();
064af421
BP
3086 for (i = 0; i < br->n_ports; i++) {
3087 struct port *port = br->ports[i];
f48f70b7 3088 if (port->n_ifaces > 1 && port->bond_mode != BM_AB
be02e7c3 3089 && now >= port->bond_next_rebalance) {
c8143c88 3090 port->bond_next_rebalance = now + port->bond_rebalance_interval;
064af421
BP
3091 bond_rebalance_port(port);
3092 }
3093 }
3094}
3095
3096static struct ofhooks bridge_ofhooks = {
064af421 3097 bridge_normal_ofhook_cb,
ebe482fd 3098 bridge_special_ofhook_cb,
064af421
BP
3099 bridge_account_flow_ofhook_cb,
3100 bridge_account_checkpoint_ofhook_cb,
3101};
3102\f
c25c91fd
EJ
3103/* LACP functions. */
3104
3105static void
3106lacp_process_packet(const struct ofpbuf *packet, struct iface *iface)
3107{
3108 const struct lacp_pdu *pdu;
3109
3110 if (!iface->port->lacp) {
3111 return;
3112 }
3113
3114 pdu = parse_lacp_packet(packet);
3115 if (!pdu) {
3116 return;
3117 }
3118
76ab2ea7 3119 iface->lacp_status |= LACP_CURRENT;
f4709d4d 3120 iface->lacp_status &= ~(LACP_EXPIRED | LACP_DEFAULTED);
c25c91fd
EJ
3121 iface->lacp_rx = time_msec() + LACP_SLOW_TIME_RX;
3122
3123 iface->lacp_actor.state = iface_get_lacp_state(iface);
3124 if (memcmp(&iface->lacp_actor, &pdu->partner, sizeof pdu->partner)) {
3125 iface->lacp_tx = 0;
3126 }
3127
3128 if (memcmp(&iface->lacp_partner, &pdu->actor, sizeof pdu->actor)) {
3129 iface->port->lacp_need_update = true;
3130 iface->lacp_partner = pdu->actor;
3131 }
3132}
3133
3134static void
3135lacp_update_ifaces(struct port *port)
3136{
3137 size_t i;
3138 struct iface *lead;
3139 struct lacp_info lead_pri;
750d79a5 3140 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10);
c25c91fd
EJ
3141
3142 port->lacp_need_update = false;
750d79a5 3143 COVERAGE_INC(bridge_lacp_update);
c25c91fd
EJ
3144
3145 if (!port->lacp) {
3146 return;
3147 }
3148
750d79a5
EJ
3149 VLOG_DBG_RL(&rl, "port %s: re-evaluating LACP link status", port->name);
3150
c25c91fd
EJ
3151 lead = NULL;
3152 for (i = 0; i < port->n_ifaces; i++) {
3153 struct iface *iface = port->ifaces[i];
3154 struct lacp_info pri;
3155
cd482758 3156 iface->lacp_status |= LACP_ATTACHED;
c25c91fd
EJ
3157 ofproto_revalidate(port->bridge->ofproto, iface->tag);
3158
3159 /* Don't allow loopback interfaces to send traffic or lead. */
3160 if (eth_addr_equals(iface->lacp_partner.sysid,
3161 iface->lacp_actor.sysid)) {
c25c91fd
EJ
3162 VLOG_WARN_RL(&rl, "iface %s: Loopback detected. Interface is "
3163 "connected to its own bridge", iface->name);
cd482758 3164 iface->lacp_status &= ~LACP_ATTACHED;
c25c91fd
EJ
3165 continue;
3166 }
3167
cd482758 3168 if (iface->lacp_status & LACP_DEFAULTED) {
c25c91fd
EJ
3169 continue;
3170 }
3171
3172 iface_get_lacp_priority(iface, &pri);
3173
3174 if (!lead || memcmp(&pri, &lead_pri, sizeof pri) < 0) {
3175 lead = iface;
3176 lead_pri = pri;
3177 }
3178 }
3179
3180 if (!lead) {
3181 port->lacp &= ~LACP_NEGOTIATED;
3182 return;
3183 }
3184
3185 port->lacp |= LACP_NEGOTIATED;
3186
3187 for (i = 0; i < port->n_ifaces; i++) {
3188 struct iface *iface = port->ifaces[i];
3189
cd482758 3190 if (iface->lacp_status & LACP_DEFAULTED
c25c91fd
EJ
3191 || lead->lacp_partner.key != iface->lacp_partner.key
3192 || !eth_addr_equals(lead->lacp_partner.sysid,
3193 iface->lacp_partner.sysid)) {
cd482758 3194 iface->lacp_status &= ~LACP_ATTACHED;
c25c91fd
EJ
3195 }
3196 }
3197}
3198
3199static bool
3200lacp_iface_may_tx(const struct iface *iface)
3201{
3202 return iface->port->lacp & LACP_ACTIVE
cd482758 3203 || iface->lacp_status & (LACP_CURRENT | LACP_EXPIRED);
c25c91fd
EJ
3204}
3205
3206static void
3207lacp_run(struct bridge *br)
3208{
3209 size_t i, j;
3210 struct ofpbuf packet;
3211
3212 ofpbuf_init(&packet, ETH_HEADER_LEN + LACP_PDU_LEN);
3213
3214 for (i = 0; i < br->n_ports; i++) {
3215 struct port *port = br->ports[i];
3216
3217 if (!port->lacp) {
3218 continue;
3219 }
3220
3221 for (j = 0; j < port->n_ifaces; j++) {
3222 struct iface *iface = port->ifaces[j];
3223
3224 if (time_msec() > iface->lacp_rx) {
cd482758 3225 if (iface->lacp_status & LACP_CURRENT) {
c25c91fd 3226 iface_set_lacp_expired(iface);
cd482758 3227 } else if (iface->lacp_status & LACP_EXPIRED) {
c25c91fd
EJ
3228 iface_set_lacp_defaulted(iface);
3229 }
3230 }
3231 }
3232
3233 if (port->lacp_need_update) {
3234 lacp_update_ifaces(port);
3235 }
3236
3237 for (j = 0; j < port->n_ifaces; j++) {
3238 struct iface *iface = port->ifaces[j];
3239 uint8_t ea[ETH_ADDR_LEN];
3240 int error;
3241
3242 if (time_msec() < iface->lacp_tx || !lacp_iface_may_tx(iface)) {
3243 continue;
3244 }
3245
3246 error = netdev_get_etheraddr(iface->netdev, ea);
3247 if (!error) {
3248 iface->lacp_actor.state = iface_get_lacp_state(iface);
3249 compose_lacp_packet(&packet, &iface->lacp_actor,
3250 &iface->lacp_partner, ea);
3251 iface_send_packet(iface, &packet);
3252 } else {
3253 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 10);
3254 VLOG_ERR_RL(&rl, "iface %s: failed to obtain Ethernet address "
3255 "(%s)", iface->name, strerror(error));
3256 }
3257
3258 iface->lacp_tx = time_msec() +
3259 (iface->lacp_partner.state & LACP_STATE_TIME
3260 ? LACP_FAST_TIME_TX
3261 : LACP_SLOW_TIME_TX);
3262 }
3263 }
3264 ofpbuf_uninit(&packet);
3265}
3266
3267static void
3268lacp_wait(struct bridge *br)
3269{
3270 size_t i, j;
3271
3272 for (i = 0; i < br->n_ports; i++) {
3273 struct port *port = br->ports[i];
3274
3275 if (!port->lacp) {
3276 continue;
3277 }
3278
3279 for (j = 0; j < port->n_ifaces; j++) {
3280 struct iface *iface = port->ifaces[j];
3281
3282 if (lacp_iface_may_tx(iface)) {
3283 poll_timer_wait_until(iface->lacp_tx);
3284 }
3285
cd482758 3286 if (iface->lacp_status & (LACP_CURRENT | LACP_EXPIRED)) {
c25c91fd
EJ
3287 poll_timer_wait_until(iface->lacp_rx);
3288 }
3289 }
3290 }
3291}
3292\f
2303f3b2
BP
3293/* Bonding functions. */
3294
064af421
BP
3295/* Statistics for a single interface on a bonded port, used for load-based
3296 * bond rebalancing. */
3297struct slave_balance {
3298 struct iface *iface; /* The interface. */
3299 uint64_t tx_bytes; /* Sum of hashes[*]->tx_bytes. */
3300
3301 /* All the "bond_entry"s that are assigned to this interface, in order of
3302 * increasing tx_bytes. */
3303 struct bond_entry **hashes;
3304 size_t n_hashes;
3305};
3306
be02e7c3 3307static const char *
27dcaa1a
EJ
3308bond_mode_to_string(enum bond_mode bm) {
3309 static char *bm_slb = "balance-slb";
3310 static char *bm_ab = "active-backup";
9f5073d8 3311 static char *bm_tcp = "balance-tcp";
be02e7c3 3312
27dcaa1a
EJ
3313 switch (bm) {
3314 case BM_SLB: return bm_slb;
3315 case BM_AB: return bm_ab;
9f5073d8 3316 case BM_TCP: return bm_tcp;
be02e7c3
EJ
3317 }
3318
3319 NOT_REACHED();
3320 return NULL;
3321}
3322
064af421
BP
3323/* Sorts pointers to pointers to bond_entries in ascending order by the
3324 * interface to which they are assigned, and within a single interface in
3325 * ascending order of bytes transmitted. */
3326static int
3327compare_bond_entries(const void *a_, const void *b_)
3328{
3329 const struct bond_entry *const *ap = a_;
3330 const struct bond_entry *const *bp = b_;
3331 const struct bond_entry *a = *ap;
3332 const struct bond_entry *b = *bp;
3333 if (a->iface_idx != b->iface_idx) {
3334 return a->iface_idx > b->iface_idx ? 1 : -1;
3335 } else if (a->tx_bytes != b->tx_bytes) {
3336 return a->tx_bytes > b->tx_bytes ? 1 : -1;
3337 } else {
3338 return 0;
3339 }
3340}
3341
3342/* Sorts slave_balances so that enabled ports come first, and otherwise in
3343 * *descending* order by number of bytes transmitted. */
3344static int
3345compare_slave_balance(const void *a_, const void *b_)
3346{
3347 const struct slave_balance *a = a_;
3348 const struct slave_balance *b = b_;
3349 if (a->iface->enabled != b->iface->enabled) {
3350 return a->iface->enabled ? -1 : 1;
3351 } else if (a->tx_bytes != b->tx_bytes) {
3352 return a->tx_bytes > b->tx_bytes ? -1 : 1;
3353 } else {
3354 return 0;
3355 }
3356}
3357
3358static void
3359swap_bals(struct slave_balance *a, struct slave_balance *b)
3360{
3361 struct slave_balance tmp = *a;
3362 *a = *b;
3363 *b = tmp;
3364}
3365
3366/* Restores the 'n_bals' slave_balance structures in 'bals' to sorted order
3367 * given that 'p' (and only 'p') might be in the wrong location.
3368 *
3369 * This function invalidates 'p', since it might now be in a different memory
3370 * location. */
3371static void
3372resort_bals(struct slave_balance *p,
3373 struct slave_balance bals[], size_t n_bals)
3374{
3375 if (n_bals > 1) {
3376 for (; p > bals && p->tx_bytes > p[-1].tx_bytes; p--) {
3377 swap_bals(p, p - 1);
3378 }
3379 for (; p < &bals[n_bals - 1] && p->tx_bytes < p[1].tx_bytes; p++) {
3380 swap_bals(p, p + 1);
3381 }
3382 }
3383}
3384
3385static void
3386log_bals(const struct slave_balance *bals, size_t n_bals, struct port *port)
3387{
3388 if (VLOG_IS_DBG_ENABLED()) {
3389 struct ds ds = DS_EMPTY_INITIALIZER;
3390 const struct slave_balance *b;
3391
3392 for (b = bals; b < bals + n_bals; b++) {
3393 size_t i;
3394
3395 if (b > bals) {
3396 ds_put_char(&ds, ',');
3397 }
3398 ds_put_format(&ds, " %s %"PRIu64"kB",
3399 b->iface->name, b->tx_bytes / 1024);
3400
3401 if (!b->iface->enabled) {
3402 ds_put_cstr(&ds, " (disabled)");
3403 }
3404 if (b->n_hashes > 0) {
3405 ds_put_cstr(&ds, " (");
3406 for (i = 0; i < b->n_hashes; i++) {
3407 const struct bond_entry *e = b->hashes[i];
3408 if (i > 0) {
3409 ds_put_cstr(&ds, " + ");
3410 }
3411 ds_put_format(&ds, "h%td: %"PRIu64"kB",
3412 e - port->bond_hash, e->tx_bytes / 1024);
3413 }
3414 ds_put_cstr(&ds, ")");
3415 }
3416 }
3417 VLOG_DBG("bond %s:%s", port->name, ds_cstr(&ds));
3418 ds_destroy(&ds);
3419 }
3420}
3421
3422/* Shifts 'hash' from 'from' to 'to' within 'port'. */
3423static void
3424bond_shift_load(struct slave_balance *from, struct slave_balance *to,
5422a9e1 3425 int hash_idx)
064af421 3426{
5422a9e1 3427 struct bond_entry *hash = from->hashes[hash_idx];
064af421
BP
3428 struct port *port = from->iface->port;
3429 uint64_t delta = hash->tx_bytes;
3430
f48f70b7 3431 assert(port->bond_mode != BM_AB);
be02e7c3 3432
064af421
BP
3433 VLOG_INFO("bond %s: shift %"PRIu64"kB of load (with hash %td) "
3434 "from %s to %s (now carrying %"PRIu64"kB and "
3435 "%"PRIu64"kB load, respectively)",
3436 port->name, delta / 1024, hash - port->bond_hash,
3437 from->iface->name, to->iface->name,
3438 (from->tx_bytes - delta) / 1024,
3439 (to->tx_bytes + delta) / 1024);
3440
3441 /* Delete element from from->hashes.
3442 *
3443 * We don't bother to add the element to to->hashes because not only would
3444 * it require more work, the only purpose it would be to allow that hash to
3445 * be migrated to another slave in this rebalancing run, and there is no
3446 * point in doing that. */
5422a9e1 3447 if (hash_idx == 0) {
064af421
BP
3448 from->hashes++;
3449 } else {
5422a9e1
JG
3450 memmove(from->hashes + hash_idx, from->hashes + hash_idx + 1,
3451 (from->n_hashes - (hash_idx + 1)) * sizeof *from->hashes);
064af421
BP
3452 }
3453 from->n_hashes--;
3454
3455 /* Shift load away from 'from' to 'to'. */
3456 from->tx_bytes -= delta;
3457 to->tx_bytes += delta;
3458
3459 /* Arrange for flows to be revalidated. */
3460 ofproto_revalidate(port->bridge->ofproto, hash->iface_tag);
3461 hash->iface_idx = to->iface->port_ifidx;
3462 hash->iface_tag = tag_create_random();
064af421
BP
3463}
3464
3465static void
3466bond_rebalance_port(struct port *port)
3467{
c47cd5f0 3468 struct slave_balance *bals;
064af421
BP
3469 size_t n_bals;
3470 struct bond_entry *hashes[BOND_MASK + 1];
3471 struct slave_balance *b, *from, *to;
3472 struct bond_entry *e;
3473 size_t i;
3474
9f5073d8 3475 assert(port->bond_mode != BM_AB);
be02e7c3 3476
064af421
BP
3477 /* Sets up 'bals' to describe each of the port's interfaces, sorted in
3478 * descending order of tx_bytes, so that bals[0] represents the most
3479 * heavily loaded slave and bals[n_bals - 1] represents the least heavily
3480 * loaded slave.
3481 *
3482 * The code is a bit tricky: to avoid dynamically allocating a 'hashes'
3483 * array for each slave_balance structure, we sort our local array of
3484 * hashes in order by slave, so that all of the hashes for a given slave
3485 * become contiguous in memory, and then we point each 'hashes' members of
3486 * a slave_balance structure to the start of a contiguous group. */
3487 n_bals = port->n_ifaces;
c47cd5f0 3488 bals = xmalloc(n_bals * sizeof *bals);
064af421
BP
3489 for (b = bals; b < &bals[n_bals]; b++) {
3490 b->iface = port->ifaces[b - bals];
3491 b->tx_bytes = 0;
3492 b->hashes = NULL;
3493 b->n_hashes = 0;
3494 }
3495 for (i = 0; i <= BOND_MASK; i++) {
3496 hashes[i] = &port->bond_hash[i];
3497 }
3498 qsort(hashes, BOND_MASK + 1, sizeof *hashes, compare_bond_entries);
3499 for (i = 0; i <= BOND_MASK; i++) {
3500 e = hashes[i];
3501 if (e->iface_idx >= 0 && e->iface_idx < port->n_ifaces) {
3502 b = &bals[e->iface_idx];
3503 b->tx_bytes += e->tx_bytes;
3504 if (!b->hashes) {
3505 b->hashes = &hashes[i];
3506 }
3507 b->n_hashes++;
3508 }
3509 }
3510 qsort(bals, n_bals, sizeof *bals, compare_slave_balance);
3511 log_bals(bals, n_bals, port);
3512
3513 /* Discard slaves that aren't enabled (which were sorted to the back of the
3514 * array earlier). */
3515 while (!bals[n_bals - 1].iface->enabled) {
3516 n_bals--;
3517 if (!n_bals) {
c47cd5f0 3518 goto exit;
064af421
BP
3519 }
3520 }
3521
3522 /* Shift load from the most-loaded slaves to the least-loaded slaves. */
3523 to = &bals[n_bals - 1];
3524 for (from = bals; from < to; ) {
3525 uint64_t overload = from->tx_bytes - to->tx_bytes;
3526 if (overload < to->tx_bytes >> 5 || overload < 100000) {
3527 /* The extra load on 'from' (and all less-loaded slaves), compared
3528 * to that of 'to' (the least-loaded slave), is less than ~3%, or
3529 * it is less than ~1Mbps. No point in rebalancing. */
3530 break;
3531 } else if (from->n_hashes == 1) {
3532 /* 'from' only carries a single MAC hash, so we can't shift any
3533 * load away from it, even though we want to. */
3534 from++;
3535 } else {
3536 /* 'from' is carrying significantly more load than 'to', and that
3537 * load is split across at least two different hashes. Pick a hash
3538 * to migrate to 'to' (the least-loaded slave), given that doing so
5422a9e1
JG
3539 * must decrease the ratio of the load on the two slaves by at
3540 * least 0.1.
064af421
BP
3541 *
3542 * The sort order we use means that we prefer to shift away the
3543 * smallest hashes instead of the biggest ones. There is little
3544 * reason behind this decision; we could use the opposite sort
3545 * order to shift away big hashes ahead of small ones. */
5422a9e1 3546 bool order_swapped;
064af421
BP
3547
3548 for (i = 0; i < from->n_hashes; i++) {
5422a9e1 3549 double old_ratio, new_ratio;
064af421 3550 uint64_t delta = from->hashes[i]->tx_bytes;
5422a9e1
JG
3551
3552 if (delta == 0 || from->tx_bytes - delta == 0) {
3553 /* Pointless move. */
3554 continue;
3555 }
3556
3557 order_swapped = from->tx_bytes - delta < to->tx_bytes + delta;
3558
3559 if (to->tx_bytes == 0) {
3560 /* Nothing on the new slave, move it. */
3561 break;
3562 }
3563
3564 old_ratio = (double)from->tx_bytes / to->tx_bytes;
3565 new_ratio = (double)(from->tx_bytes - delta) /
3566 (to->tx_bytes + delta);
3567
3568 if (new_ratio == 0) {
3569 /* Should already be covered but check to prevent division
3570 * by zero. */
3571 continue;
3572 }
3573
3574 if (new_ratio < 1) {
3575 new_ratio = 1 / new_ratio;
3576 }
3577
3578 if (old_ratio - new_ratio > 0.1) {
3579 /* Would decrease the ratio, move it. */
064af421
BP
3580 break;
3581 }
3582 }
3583 if (i < from->n_hashes) {
5422a9e1 3584 bond_shift_load(from, to, i);
5422a9e1
JG
3585
3586 /* If the result of the migration changed the relative order of
3587 * 'from' and 'to' swap them back to maintain invariants. */
3588 if (order_swapped) {
3589 swap_bals(from, to);
3590 }
064af421
BP
3591
3592 /* Re-sort 'bals'. Note that this may make 'from' and 'to'
3593 * point to different slave_balance structures. It is only
3594 * valid to do these two operations in a row at all because we
3595 * know that 'from' will not move past 'to' and vice versa. */
3596 resort_bals(from, bals, n_bals);
3597 resort_bals(to, bals, n_bals);
3598 } else {
3599 from++;
3600 }
3601 }
3602 }
3603
3604 /* Implement exponentially weighted moving average. A weight of 1/2 causes
3605 * historical data to decay to <1% in 7 rebalancing runs. */
3606 for (e = &port->bond_hash[0]; e <= &port->bond_hash[BOND_MASK]; e++) {
3607 e->tx_bytes /= 2;
3608 }
c47cd5f0
BP
3609
3610exit:
3611 free(bals);
064af421 3612}
2303f3b2
BP
3613
3614static void
3615bond_send_learning_packets(struct port *port)
3616{
3617 struct bridge *br = port->bridge;
3618 struct mac_entry *e;
3619 struct ofpbuf packet;
3620 int error, n_packets, n_errors;
3621
9f5073d8 3622 if (!port->n_ifaces || port->active_iface < 0 || bond_is_tcp_hash(port)) {
2303f3b2
BP
3623 return;
3624 }
3625
3626 ofpbuf_init(&packet, 128);
3627 error = n_packets = n_errors = 0;
4e8e4213 3628 LIST_FOR_EACH (e, lru_node, &br->ml->lrus) {
2303f3b2 3629 union ofp_action actions[2], *a;
2303f3b2
BP
3630 uint16_t dp_ifidx;
3631 tag_type tags = 0;
ae412e7d 3632 struct flow flow;
2303f3b2
BP
3633 int retval;
3634
9f5073d8
EJ
3635 if (e->port == port->port_idx) {
3636 continue;
3637 }
3638
3639 compose_benign_packet(&packet, "Open vSwitch Bond Failover", 0xf177,
3640 e->mac);
3641 flow_extract(&packet, 0, ODPP_NONE, &flow);
3642
3643 if (!choose_output_iface(port, &flow, e->vlan, &dp_ifidx, &tags)) {
2303f3b2
BP
3644 continue;
3645 }
3646
2303f3b2
BP
3647 /* Compose actions. */
3648 memset(actions, 0, sizeof actions);
3649 a = actions;
3650 if (e->vlan) {
3651 a->vlan_vid.type = htons(OFPAT_SET_VLAN_VID);
3652 a->vlan_vid.len = htons(sizeof *a);
3653 a->vlan_vid.vlan_vid = htons(e->vlan);
3654 a++;
3655 }
3656 a->output.type = htons(OFPAT_OUTPUT);
3657 a->output.len = htons(sizeof *a);
3658 a->output.port = htons(odp_port_to_ofp_port(dp_ifidx));
3659 a++;
3660
3661 /* Send packet. */
3662 n_packets++;
2303f3b2
BP
3663 retval = ofproto_send_packet(br->ofproto, &flow, actions, a - actions,
3664 &packet);
3665 if (retval) {
3666 error = retval;
3667 n_errors++;
3668 }
3669 }
3670 ofpbuf_uninit(&packet);
3671
3672 if (n_errors) {
3673 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
3674 VLOG_WARN_RL(&rl, "bond %s: %d errors sending %d gratuitous learning "
3675 "packets, last error was: %s",
3676 port->name, n_errors, n_packets, strerror(error));
3677 } else {
3678 VLOG_DBG("bond %s: sent %d gratuitous learning packets",
3679 port->name, n_packets);
3680 }
3681}
064af421 3682\f
da285df4
BP
3683/* Bonding unixctl user interface functions. */
3684
3685static void
8ca79daa 3686bond_unixctl_list(struct unixctl_conn *conn,
c69ee87c 3687 const char *args OVS_UNUSED, void *aux OVS_UNUSED)
da285df4
BP
3688{
3689 struct ds ds = DS_EMPTY_INITIALIZER;
3690 const struct bridge *br;
3691
be02e7c3 3692 ds_put_cstr(&ds, "bridge\tbond\ttype\tslaves\n");
da285df4 3693
4e8e4213 3694 LIST_FOR_EACH (br, node, &all_bridges) {
da285df4
BP
3695 size_t i;
3696
3697 for (i = 0; i < br->n_ports; i++) {
3698 const struct port *port = br->ports[i];
3699 if (port->n_ifaces > 1) {
3700 size_t j;
3701
be02e7c3 3702 ds_put_format(&ds, "%s\t%s\t%s\t", br->name, port->name,
27dcaa1a 3703 bond_mode_to_string(port->bond_mode));
da285df4
BP
3704 for (j = 0; j < port->n_ifaces; j++) {
3705 const struct iface *iface = port->ifaces[j];
3706 if (j) {
3707 ds_put_cstr(&ds, ", ");
3708 }
3709 ds_put_cstr(&ds, iface->name);
3710 }
3711 ds_put_char(&ds, '\n');
3712 }
3713 }
3714 }
3715 unixctl_command_reply(conn, 200, ds_cstr(&ds));
3716 ds_destroy(&ds);
3717}
3718
3719static struct port *
3720bond_find(const char *name)
3721{
3722 const struct bridge *br;
3723
4e8e4213 3724 LIST_FOR_EACH (br, node, &all_bridges) {
da285df4
BP
3725 size_t i;
3726
3727 for (i = 0; i < br->n_ports; i++) {
3728 struct port *port = br->ports[i];
3729 if (!strcmp(port->name, name) && port->n_ifaces > 1) {
3730 return port;
3731 }
3732 }
3733 }
3734 return NULL;
3735}
3736
c25c91fd
EJ
3737static void
3738ds_put_lacp_state(struct ds *ds, uint8_t state)
3739{
3740 if (state & LACP_STATE_ACT) {
3741 ds_put_cstr(ds, "activity ");
3742 }
3743
3744 if (state & LACP_STATE_TIME) {
3745 ds_put_cstr(ds, "timeout ");
3746 }
3747
3748 if (state & LACP_STATE_AGG) {
3749 ds_put_cstr(ds, "aggregation ");
3750 }
3751
3752 if (state & LACP_STATE_SYNC) {
3753 ds_put_cstr(ds, "synchronized ");
3754 }
3755
3756 if (state & LACP_STATE_COL) {
3757 ds_put_cstr(ds, "collecting ");
3758 }
3759
3760 if (state & LACP_STATE_DIST) {
3761 ds_put_cstr(ds, "distributing ");
3762 }
3763
3764 if (state & LACP_STATE_DEF) {
3765 ds_put_cstr(ds, "defaulted ");
3766 }
3767
3768 if (state & LACP_STATE_EXP) {
3769 ds_put_cstr(ds, "expired ");
3770 }
3771}
3772
da285df4 3773static void
8ca79daa 3774bond_unixctl_show(struct unixctl_conn *conn,
c69ee87c 3775 const char *args, void *aux OVS_UNUSED)
da285df4
BP
3776{
3777 struct ds ds = DS_EMPTY_INITIALIZER;
3778 const struct port *port;
3779 size_t j;
3780
3781 port = bond_find(args);
3782 if (!port) {
3783 unixctl_command_reply(conn, 501, "no such bond");
3784 return;
3785 }
3786
27dcaa1a
EJ
3787 ds_put_format(&ds, "bond_mode: %s\n",
3788 bond_mode_to_string(port->bond_mode));
c25c91fd
EJ
3789
3790 if (port->lacp) {
846f1be5 3791 ds_put_format(&ds, "lacp: %s\n",
c25c91fd
EJ
3792 port->lacp & LACP_ACTIVE ? "active" : "passive");
3793 } else {
846f1be5 3794 ds_put_cstr(&ds, "lacp: off\n");
c25c91fd
EJ
3795 }
3796
9f5073d8
EJ
3797 if (port->bond_mode != BM_AB) {
3798 ds_put_format(&ds, "bond-hash-algorithm: %s\n",
3799 bond_is_tcp_hash(port) ? "balance-tcp" : "balance-slb");
3800 }
3801
3802
63331829
EJ
3803 ds_put_format(&ds, "bond-detect-mode: %s\n",
3804 port->miimon ? "miimon" : "carrier");
b42c5c24
EJ
3805
3806 if (port->miimon) {
3807 ds_put_format(&ds, "bond-miimon-interval: %lld\n",
3808 port->bond_miimon_interval);
3809 }
3810
da285df4
BP
3811 ds_put_format(&ds, "updelay: %d ms\n", port->updelay);
3812 ds_put_format(&ds, "downdelay: %d ms\n", port->downdelay);
be02e7c3 3813
9f5073d8 3814 if (port->bond_mode != BM_AB) {
be02e7c3
EJ
3815 ds_put_format(&ds, "next rebalance: %lld ms\n",
3816 port->bond_next_rebalance - time_msec());
3817 }
3818
da285df4
BP
3819 for (j = 0; j < port->n_ifaces; j++) {
3820 const struct iface *iface = port->ifaces[j];
3821 struct bond_entry *be;
9f5073d8 3822 struct flow flow;
da285df4
BP
3823
3824 /* Basic info. */
846f1be5 3825 ds_put_format(&ds, "\nslave %s: %s\n",
da285df4
BP
3826 iface->name, iface->enabled ? "enabled" : "disabled");
3827 if (j == port->active_iface) {
3828 ds_put_cstr(&ds, "\tactive slave\n");
3829 }
3830 if (iface->delay_expires != LLONG_MAX) {
3831 ds_put_format(&ds, "\t%s expires in %lld ms\n",
3832 iface->enabled ? "downdelay" : "updelay",
3833 iface->delay_expires - time_msec());
3834 }
3835
c25c91fd
EJ
3836 if (port->lacp) {
3837 ds_put_cstr(&ds, "\tstatus: ");
3838
cd482758 3839 if (iface->lacp_status & LACP_CURRENT) {
c25c91fd 3840 ds_put_cstr(&ds, "current ");
cd482758
EJ
3841 }
3842
3843 if (iface->lacp_status & LACP_EXPIRED) {
c25c91fd 3844 ds_put_cstr(&ds, "expired ");
cd482758
EJ
3845 }
3846
3847 if (iface->lacp_status & LACP_DEFAULTED) {
c25c91fd
EJ
3848 ds_put_cstr(&ds, "defaulted ");
3849 }
3850
cd482758 3851 if (iface->lacp_status & LACP_ATTACHED) {
c25c91fd
EJ
3852 ds_put_cstr(&ds, "attached ");
3853 }
3854
3855 ds_put_cstr(&ds, "\n");
3856
3857 ds_put_cstr(&ds, "\n\tactor sysid: ");
3858 ds_put_format(&ds, ETH_ADDR_FMT,
3859 ETH_ADDR_ARGS(iface->lacp_actor.sysid));
3860 ds_put_cstr(&ds, "\n");
3861
3862 ds_put_format(&ds, "\tactor sys_priority: %u\n",
3863 ntohs(iface->lacp_actor.sys_priority));
3864
3865 ds_put_format(&ds, "\tactor portid: %u\n",
3866 ntohs(iface->lacp_actor.portid));
3867
3868 ds_put_format(&ds, "\tactor port_priority: %u\n",
3869 ntohs(iface->lacp_actor.port_priority));
3870
3871 ds_put_format(&ds, "\tactor key: %u\n",
3872 ntohs(iface->lacp_actor.key));
3873
3874 ds_put_cstr(&ds, "\tactor state: ");
3875 ds_put_lacp_state(&ds, iface_get_lacp_state(iface));
3876 ds_put_cstr(&ds, "\n\n");
3877
3878 ds_put_cstr(&ds, "\tpartner sysid: ");
3879 ds_put_format(&ds, ETH_ADDR_FMT,
3880 ETH_ADDR_ARGS(iface->lacp_partner.sysid));
3881 ds_put_cstr(&ds, "\n");
3882
3883 ds_put_format(&ds, "\tpartner sys_priority: %u\n",
3884 ntohs(iface->lacp_partner.sys_priority));
3885
3886 ds_put_format(&ds, "\tpartner portid: %u\n",
3887 ntohs(iface->lacp_partner.portid));
3888
3889 ds_put_format(&ds, "\tpartner port_priority: %u\n",
3890 ntohs(iface->lacp_partner.port_priority));
3891
3892 ds_put_format(&ds, "\tpartner key: %u\n",
3893 ntohs(iface->lacp_partner.key));
3894
3895 ds_put_cstr(&ds, "\tpartner state: ");
3896 ds_put_lacp_state(&ds, iface->lacp_partner.state);
846f1be5 3897 ds_put_cstr(&ds, "\n");
c25c91fd
EJ
3898 }
3899
9f5073d8 3900 if (port->bond_mode == BM_AB) {
be02e7c3
EJ
3901 continue;
3902 }
3903
da285df4 3904 /* Hashes. */
9f5073d8 3905 memset(&flow, 0, sizeof flow);
da285df4
BP
3906 for (be = port->bond_hash; be <= &port->bond_hash[BOND_MASK]; be++) {
3907 int hash = be - port->bond_hash;
3908 struct mac_entry *me;
3909
3910 if (be->iface_idx != j) {
3911 continue;
3912 }
3913
2886875a 3914 ds_put_format(&ds, "\thash %d: %"PRIu64" kB load\n",
da285df4
BP
3915 hash, be->tx_bytes / 1024);
3916
9f5073d8
EJ
3917 if (port->bond_mode != BM_SLB) {
3918 continue;
3919 }
3920
da285df4 3921 /* MACs. */
4e8e4213 3922 LIST_FOR_EACH (me, lru_node, &port->bridge->ml->lrus) {
da285df4
BP
3923 uint16_t dp_ifidx;
3924 tag_type tags = 0;
9f5073d8
EJ
3925
3926 memcpy(flow.dl_src, me->mac, ETH_ADDR_LEN);
3927 if (bond_hash_src(me->mac, me->vlan) == hash
da285df4 3928 && me->port != port->port_idx
9f5073d8 3929 && choose_output_iface(port, &flow, me->vlan,
e58de0e3 3930 &dp_ifidx, &tags)
da285df4
BP
3931 && dp_ifidx == iface->dp_ifidx)
3932 {
3933 ds_put_format(&ds, "\t\t"ETH_ADDR_FMT"\n",
3934 ETH_ADDR_ARGS(me->mac));
3935 }
3936 }
3937 }
3938 }
3939 unixctl_command_reply(conn, 200, ds_cstr(&ds));
3940 ds_destroy(&ds);
3941}
3942
3943static void
8ca79daa 3944bond_unixctl_migrate(struct unixctl_conn *conn, const char *args_,
c69ee87c 3945 void *aux OVS_UNUSED)
da285df4
BP
3946{
3947 char *args = (char *) args_;
3948 char *save_ptr = NULL;
3949 char *bond_s, *hash_s, *slave_s;
da285df4
BP
3950 struct port *port;
3951 struct iface *iface;
3952 struct bond_entry *entry;
3953 int hash;
3954
3955 bond_s = strtok_r(args, " ", &save_ptr);
3956 hash_s = strtok_r(NULL, " ", &save_ptr);
3957 slave_s = strtok_r(NULL, " ", &save_ptr);
3958 if (!slave_s) {
3959 unixctl_command_reply(conn, 501,
3960 "usage: bond/migrate BOND HASH SLAVE");
3961 return;
3962 }
3963
3964 port = bond_find(bond_s);
3965 if (!port) {
3966 unixctl_command_reply(conn, 501, "no such bond");
3967 return;
3968 }
3969
27dcaa1a 3970 if (port->bond_mode != BM_SLB) {
be02e7c3
EJ
3971 unixctl_command_reply(conn, 501, "not an SLB bond");
3972 return;
3973 }
3974
557c178b 3975 if (strspn(hash_s, "0123456789") == strlen(hash_s)) {
da285df4
BP
3976 hash = atoi(hash_s) & BOND_MASK;
3977 } else {
3978 unixctl_command_reply(conn, 501, "bad hash");
3979 return;
3980 }
3981
3982 iface = port_lookup_iface(port, slave_s);
3983 if (!iface) {
3984 unixctl_command_reply(conn, 501, "no such slave");
3985 return;
3986 }
3987
3988 if (!iface->enabled) {
3989 unixctl_command_reply(conn, 501, "cannot migrate to disabled slave");
3990 return;
3991 }
3992
3993 entry = &port->bond_hash[hash];
3994 ofproto_revalidate(port->bridge->ofproto, entry->iface_tag);
3995 entry->iface_idx = iface->port_ifidx;
3996 entry->iface_tag = tag_create_random();
3997 unixctl_command_reply(conn, 200, "migrated");
3998}
3999
4000static void
8ca79daa 4001bond_unixctl_set_active_slave(struct unixctl_conn *conn, const char *args_,
c69ee87c 4002 void *aux OVS_UNUSED)
da285df4
BP
4003{
4004 char *args = (char *) args_;
4005 char *save_ptr = NULL;
4006 char *bond_s, *slave_s;
4007 struct port *port;
4008 struct iface *iface;
4009
4010 bond_s = strtok_r(args, " ", &save_ptr);
4011 slave_s = strtok_r(NULL, " ", &save_ptr);
4012 if (!slave_s) {
4013 unixctl_command_reply(conn, 501,
4014 "usage: bond/set-active-slave BOND SLAVE");
4015 return;
4016 }
4017
4018 port = bond_find(bond_s);
4019 if (!port) {
4020 unixctl_command_reply(conn, 501, "no such bond");
4021 return;
4022 }
4023
4024 iface = port_lookup_iface(port, slave_s);
4025 if (!iface) {
4026 unixctl_command_reply(conn, 501, "no such slave");
4027 return;
4028 }
4029
4030 if (!iface->enabled) {
4031 unixctl_command_reply(conn, 501, "cannot make disabled slave active");
4032 return;
4033 }
4034
4035 if (port->active_iface != iface->port_ifidx) {
4036 ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
4037 port->active_iface = iface->port_ifidx;
4038 port->active_iface_tag = tag_create_random();
4039 VLOG_INFO("port %s: active interface is now %s",
4040 port->name, iface->name);
4041 bond_send_learning_packets(port);
4042 unixctl_command_reply(conn, 200, "done");
4043 } else {
4044 unixctl_command_reply(conn, 200, "no change");
4045 }
4046}
4047
4048static void
4049enable_slave(struct unixctl_conn *conn, const char *args_, bool enable)
4050{
4051 char *args = (char *) args_;
4052 char *save_ptr = NULL;
4053 char *bond_s, *slave_s;
4054 struct port *port;
4055 struct iface *iface;
4056
4057 bond_s = strtok_r(args, " ", &save_ptr);
4058 slave_s = strtok_r(NULL, " ", &save_ptr);
4059 if (!slave_s) {
4060 unixctl_command_reply(conn, 501,
4061 "usage: bond/enable/disable-slave BOND SLAVE");
4062 return;
4063 }
4064
4065 port = bond_find(bond_s);
4066 if (!port) {
4067 unixctl_command_reply(conn, 501, "no such bond");
4068 return;
4069 }
4070
4071 iface = port_lookup_iface(port, slave_s);
4072 if (!iface) {
4073 unixctl_command_reply(conn, 501, "no such slave");
4074 return;
4075 }
4076
4077 bond_enable_slave(iface, enable);
4078 unixctl_command_reply(conn, 501, enable ? "enabled" : "disabled");
4079}
4080
4081static void
8ca79daa 4082bond_unixctl_enable_slave(struct unixctl_conn *conn, const char *args,
c69ee87c 4083 void *aux OVS_UNUSED)
da285df4
BP
4084{
4085 enable_slave(conn, args, true);
4086}
4087
4088static void
8ca79daa 4089bond_unixctl_disable_slave(struct unixctl_conn *conn, const char *args,
c69ee87c 4090 void *aux OVS_UNUSED)
da285df4
BP
4091{
4092 enable_slave(conn, args, false);
4093}
4094
e0644b61 4095static void
e58de0e3 4096bond_unixctl_hash(struct unixctl_conn *conn, const char *args_,
c69ee87c 4097 void *aux OVS_UNUSED)
e0644b61 4098{
e58de0e3 4099 char *args = (char *) args_;
a27598cd
EJ
4100 uint8_t mac[ETH_ADDR_LEN];
4101 uint8_t hash;
4102 char *hash_cstr;
e58de0e3
EJ
4103 unsigned int vlan;
4104 char *mac_s, *vlan_s;
4105 char *save_ptr = NULL;
4106
4107 mac_s = strtok_r(args, " ", &save_ptr);
4108 vlan_s = strtok_r(NULL, " ", &save_ptr);
4109
4110 if (vlan_s) {
4111 if (sscanf(vlan_s, "%u", &vlan) != 1) {
4112 unixctl_command_reply(conn, 501, "invalid vlan");
4113 return;
4114 }
4115 } else {
4116 vlan = OFP_VLAN_NONE;
4117 }
a27598cd 4118
e58de0e3 4119 if (sscanf(mac_s, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
a27598cd 4120 == ETH_ADDR_SCAN_COUNT) {
9f5073d8 4121 hash = bond_hash_src(mac, vlan);
a27598cd
EJ
4122
4123 hash_cstr = xasprintf("%u", hash);
4124 unixctl_command_reply(conn, 200, hash_cstr);
4125 free(hash_cstr);
4126 } else {
4127 unixctl_command_reply(conn, 501, "invalid mac");
4128 }
e0644b61
IC
4129}
4130
da285df4
BP
4131static void
4132bond_init(void)
4133{
8ca79daa
BP
4134 unixctl_command_register("bond/list", bond_unixctl_list, NULL);
4135 unixctl_command_register("bond/show", bond_unixctl_show, NULL);
4136 unixctl_command_register("bond/migrate", bond_unixctl_migrate, NULL);
da285df4 4137 unixctl_command_register("bond/set-active-slave",
8ca79daa
BP
4138 bond_unixctl_set_active_slave, NULL);
4139 unixctl_command_register("bond/enable-slave", bond_unixctl_enable_slave,
4140 NULL);
4141 unixctl_command_register("bond/disable-slave", bond_unixctl_disable_slave,
4142 NULL);
4143 unixctl_command_register("bond/hash", bond_unixctl_hash, NULL);
da285df4
BP
4144}
4145\f
064af421
BP
4146/* Port functions. */
4147
76343538 4148static struct port *
064af421
BP
4149port_create(struct bridge *br, const char *name)
4150{
4151 struct port *port;
4152
ec6fde61 4153 port = xzalloc(sizeof *port);
064af421
BP
4154 port->bridge = br;
4155 port->port_idx = br->n_ports;
4156 port->vlan = -1;
4157 port->trunks = NULL;
4158 port->name = xstrdup(name);
4159 port->active_iface = -1;
064af421
BP
4160
4161 if (br->n_ports >= br->allocated_ports) {
4162 br->ports = x2nrealloc(br->ports, &br->allocated_ports,
4163 sizeof *br->ports);
4164 }
4165 br->ports[br->n_ports++] = port;
836fad5e 4166 shash_add_assert(&br->port_by_name, port->name, port);
064af421
BP
4167
4168 VLOG_INFO("created port %s on bridge %s", port->name, br->name);
4169 bridge_flush(br);
76343538
BP
4170
4171 return port;
064af421
BP
4172}
4173
c8143c88
BP
4174static const char *
4175get_port_other_config(const struct ovsrec_port *port, const char *key,
4176 const char *default_value)
4177{
af6278e1
BP
4178 const char *value;
4179
4180 value = get_ovsrec_key_value(&port->header_, &ovsrec_port_col_other_config,
4181 key);
c8143c88
BP
4182 return value ? value : default_value;
4183}
4184
c25c91fd
EJ
4185static const char *
4186get_interface_other_config(const struct ovsrec_interface *iface,
4187 const char *key, const char *default_value)
4188{
4189 const char *value;
4190
4191 value = get_ovsrec_key_value(&iface->header_,
4192 &ovsrec_interface_col_other_config, key);
4193 return value ? value : default_value;
4194}
4195
4a1ee6ae
BP
4196static void
4197port_del_ifaces(struct port *port, const struct ovsrec_port *cfg)
4198{
4199 struct shash new_ifaces;
4200 size_t i;
4201
4202 /* Collect list of new interfaces. */
4203 shash_init(&new_ifaces);
4204 for (i = 0; i < cfg->n_interfaces; i++) {
4205 const char *name = cfg->interfaces[i]->name;
4206 shash_add_once(&new_ifaces, name, NULL);
4207 }
4208
4209 /* Get rid of deleted interfaces. */
4210 for (i = 0; i < port->n_ifaces; ) {
4211 if (!shash_find(&new_ifaces, cfg->interfaces[i]->name)) {
4212 iface_destroy(port->ifaces[i]);
4213 } else {
4214 i++;
4215 }
4216 }
4217
4218 shash_destroy(&new_ifaces);
4219}
4220
064af421 4221static void
76343538 4222port_reconfigure(struct port *port, const struct ovsrec_port *cfg)
064af421 4223{
63331829 4224 const char *detect_mode;
4a1ee6ae 4225 struct shash new_ifaces;
c25c91fd 4226 long long int next_rebalance, miimon_next_update, lacp_priority;
064af421
BP
4227 unsigned long *trunks;
4228 int vlan;
4229 size_t i;
4230
76343538
BP
4231 port->cfg = cfg;
4232
4a1ee6ae 4233 /* Update settings. */
76343538
BP
4234 port->updelay = cfg->bond_updelay;
4235 if (port->updelay < 0) {
4236 port->updelay = 0;
4237 }
7ef6b685 4238 port->downdelay = cfg->bond_downdelay;
76343538
BP
4239 if (port->downdelay < 0) {
4240 port->downdelay = 0;
064af421 4241 }
c8143c88
BP
4242 port->bond_rebalance_interval = atoi(
4243 get_port_other_config(cfg, "bond-rebalance-interval", "10000"));
4244 if (port->bond_rebalance_interval < 1000) {
4245 port->bond_rebalance_interval = 1000;
4246 }
4247 next_rebalance = time_msec() + port->bond_rebalance_interval;
4248 if (port->bond_next_rebalance > next_rebalance) {
4249 port->bond_next_rebalance = next_rebalance;
4250 }
064af421 4251
63331829
EJ
4252 detect_mode = get_port_other_config(cfg, "bond-detect-mode",
4253 "carrier");
4254
4255 if (!strcmp(detect_mode, "carrier")) {
4256 port->miimon = false;
4257 } else if (!strcmp(detect_mode, "miimon")) {
4258 port->miimon = true;
4259 } else {
4260 port->miimon = false;
4261 VLOG_WARN("port %s: unsupported bond-detect-mode %s, defaulting to "
4262 "carrier", port->name, detect_mode);
4263 }
4264
4265 port->bond_miimon_interval = atoi(
4266 get_port_other_config(cfg, "bond-miimon-interval", "200"));
4267 if (port->bond_miimon_interval < 100) {
4268 port->bond_miimon_interval = 100;
4269 }
4270 miimon_next_update = time_msec() + port->bond_miimon_interval;
4271 if (port->bond_miimon_next_update > miimon_next_update) {
4272 port->bond_miimon_next_update = miimon_next_update;
4273 }
4274
27dcaa1a
EJ
4275 if (!port->cfg->bond_mode ||
4276 !strcmp(port->cfg->bond_mode, bond_mode_to_string(BM_SLB))) {
4277 port->bond_mode = BM_SLB;
4278 } else if (!strcmp(port->cfg->bond_mode, bond_mode_to_string(BM_AB))) {
4279 port->bond_mode = BM_AB;
9f5073d8
EJ
4280 } else if (!strcmp(port->cfg->bond_mode, bond_mode_to_string(BM_TCP))) {
4281 port->bond_mode = BM_TCP;
be02e7c3 4282 } else {
27dcaa1a
EJ
4283 port->bond_mode = BM_SLB;
4284 VLOG_WARN("port %s: unknown bond_mode %s, defaulting to %s",
4285 port->name, port->cfg->bond_mode,
4286 bond_mode_to_string(port->bond_mode));
be02e7c3
EJ
4287 }
4288
4a1ee6ae
BP
4289 /* Add new interfaces and update 'cfg' member of existing ones. */
4290 shash_init(&new_ifaces);
4291 for (i = 0; i < cfg->n_interfaces; i++) {
4292 const struct ovsrec_interface *if_cfg = cfg->interfaces[i];
76343538
BP
4293 struct iface *iface;
4294
4a1ee6ae
BP
4295 if (!shash_add_once(&new_ifaces, if_cfg->name, NULL)) {
4296 VLOG_WARN("port %s: %s specified twice as port interface",
4297 port->name, if_cfg->name);
bcd49a45 4298 iface_set_ofport(if_cfg, -1);
4a1ee6ae
BP
4299 continue;
4300 }
4301
4302 iface = iface_lookup(port->bridge, if_cfg->name);
4303 if (iface) {
4304 if (iface->port != port) {
4305 VLOG_ERR("bridge %s: %s interface is on multiple ports, "
4306 "removing from %s",
4307 port->bridge->name, if_cfg->name, iface->port->name);
4308 continue;
4309 }
149f577a 4310 iface->cfg = if_cfg;
4a1ee6ae 4311 } else {
6cefe1da 4312 iface = iface_create(port, if_cfg);
064af421 4313 }
6cefe1da
BP
4314
4315 /* Determine interface type. The local port always has type
4316 * "internal". Other ports take their type from the database and
4317 * default to "system" if none is specified. */
4318 iface->type = (!strcmp(if_cfg->name, port->bridge->name) ? "internal"
4319 : if_cfg->type[0] ? if_cfg->type
4320 : "system");
c25c91fd
EJ
4321
4322 lacp_priority =
4323 atoi(get_interface_other_config(if_cfg, "lacp-port-priority",
4324 "0"));
4325
4326 if (lacp_priority <= 0 || lacp_priority > UINT16_MAX) {
4327 iface->lacp_priority = UINT16_MAX;
4328 } else {
4329 iface->lacp_priority = lacp_priority;
4330 }
064af421 4331 }
4a1ee6ae 4332 shash_destroy(&new_ifaces);
064af421 4333
c25c91fd
EJ
4334 lacp_priority =
4335 atoi(get_port_other_config(cfg, "lacp-system-priority", "0"));
4336
4337 if (lacp_priority <= 0 || lacp_priority > UINT16_MAX) {
4338 /* Prefer bondable links if unspecified. */
4339 port->lacp_priority = port->n_ifaces > 1 ? UINT16_MAX - 1 : UINT16_MAX;
4340 } else {
4341 port->lacp_priority = lacp_priority;
4342 }
4343
4344 if (!port->cfg->lacp) {
4345 /* XXX when LACP implementation has been sufficiently tested, enable by
4346 * default and make active on bonded ports. */
4347 port->lacp = 0;
4348 } else if (!strcmp(port->cfg->lacp, "off")) {
4349 port->lacp = 0;
4350 } else if (!strcmp(port->cfg->lacp, "active")) {
4351 port->lacp = LACP_ACTIVE;
4352 } else if (!strcmp(port->cfg->lacp, "passive")) {
4353 port->lacp = LACP_PASSIVE;
4354 } else {
4355 VLOG_WARN("port %s: unknown LACP mode %s",
4356 port->name, port->cfg->lacp);
4357 port->lacp = 0;
4358 }
4359
064af421
BP
4360 /* Get VLAN tag. */
4361 vlan = -1;
76343538
BP
4362 if (cfg->tag) {
4363 if (port->n_ifaces < 2) {
4364 vlan = *cfg->tag;
064af421
BP
4365 if (vlan >= 0 && vlan <= 4095) {
4366 VLOG_DBG("port %s: assigning VLAN tag %d", port->name, vlan);
76343538
BP
4367 } else {
4368 vlan = -1;
064af421
BP
4369 }
4370 } else {
4371 /* It's possible that bonded, VLAN-tagged ports make sense. Maybe
4372 * they even work as-is. But they have not been tested. */
4373 VLOG_WARN("port %s: VLAN tags not supported on bonded ports",
4374 port->name);
4375 }
4376 }
4377 if (port->vlan != vlan) {
4378 port->vlan = vlan;
4379 bridge_flush(port->bridge);
4380 }
4381
4382 /* Get trunked VLANs. */
4383 trunks = NULL;
3e9c481c 4384 if (vlan < 0 && cfg->n_trunks) {
76343538 4385 size_t n_errors;
064af421
BP
4386
4387 trunks = bitmap_allocate(4096);
064af421 4388 n_errors = 0;
76343538
BP
4389 for (i = 0; i < cfg->n_trunks; i++) {
4390 int trunk = cfg->trunks[i];
064af421
BP
4391 if (trunk >= 0) {
4392 bitmap_set1(trunks, trunk);
4393 } else {
4394 n_errors++;
4395 }
4396 }
4397 if (n_errors) {
4398 VLOG_ERR("port %s: invalid values for %zu trunk VLANs",
76343538 4399 port->name, cfg->n_trunks);
064af421 4400 }
76343538 4401 if (n_errors == cfg->n_trunks) {
3e9c481c 4402 VLOG_ERR("port %s: no valid trunks, trunking all VLANs",
76343538 4403 port->name);
3e9c481c
BP
4404 bitmap_free(trunks);
4405 trunks = NULL;
064af421 4406 }
3e9c481c
BP
4407 } else if (vlan >= 0 && cfg->n_trunks) {
4408 VLOG_ERR("port %s: ignoring trunks in favor of implicit vlan",
4409 port->name);
064af421
BP
4410 }
4411 if (trunks == NULL
4412 ? port->trunks != NULL
4413 : port->trunks == NULL || !bitmap_equal(trunks, port->trunks, 4096)) {
4414 bridge_flush(port->bridge);
4415 }
4416 bitmap_free(port->trunks);
4417 port->trunks = trunks;
064af421
BP
4418}
4419
4420static void
4421port_destroy(struct port *port)
4422{
4423 if (port) {
4424 struct bridge *br = port->bridge;
4425 struct port *del;
37e7f427 4426 int i;
064af421 4427
064af421
BP
4428 for (i = 0; i < MAX_MIRRORS; i++) {
4429 struct mirror *m = br->mirrors[i];
4430 if (m && m->out_port == port) {
4431 mirror_destroy(m);
4432 }
4433 }
4434
4435 while (port->n_ifaces > 0) {
4436 iface_destroy(port->ifaces[port->n_ifaces - 1]);
4437 }
4438
836fad5e
BP
4439 shash_find_and_delete_assert(&br->port_by_name, port->name);
4440
064af421
BP
4441 del = br->ports[port->port_idx] = br->ports[--br->n_ports];
4442 del->port_idx = port->port_idx;
4443
99707a7a
JP
4444 VLOG_INFO("destroyed port %s on bridge %s", port->name, br->name);
4445
0bb5c3ec 4446 netdev_monitor_destroy(port->monitor);
064af421
BP
4447 free(port->ifaces);
4448 bitmap_free(port->trunks);
4449 free(port->name);
4450 free(port);
4451 bridge_flush(br);
4452 }
4453}
4454
4455static struct port *
4456port_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
4457{
4458 struct iface *iface = iface_from_dp_ifidx(br, dp_ifidx);
4459 return iface ? iface->port : NULL;
4460}
4461
4462static struct port *
4463port_lookup(const struct bridge *br, const char *name)
4464{
836fad5e 4465 return shash_find_data(&br->port_by_name, name);
064af421
BP
4466}
4467
da285df4
BP
4468static struct iface *
4469port_lookup_iface(const struct port *port, const char *name)
4470{
4a1ee6ae
BP
4471 struct iface *iface = iface_lookup(port->bridge, name);
4472 return iface && iface->port == port ? iface : NULL;
da285df4
BP
4473}
4474
c25c91fd
EJ
4475static void
4476port_update_lacp(struct port *port)
4477{
4478 size_t i;
4479 bool key_changed;
4480
4481 if (!port->lacp || port->n_ifaces < 1) {
edbad245
EJ
4482 for (i = 0; i < port->n_ifaces; i++) {
4483 iface_set_lacp_defaulted(port->ifaces[i]);
4484 }
c25c91fd
EJ
4485 return;
4486 }
4487
4488 key_changed = true;
4489 for (i = 0; i < port->n_ifaces; i++) {
4490 struct iface *iface = port->ifaces[i];
4491
4492 if (iface->dp_ifidx <= 0 || iface->dp_ifidx > UINT16_MAX) {
4493 port->lacp = 0;
4494 return;
4495 }
4496
4497 if (iface->dp_ifidx == port->lacp_key) {
4498 key_changed = false;
4499 }
4500 }
4501
4502 if (key_changed) {
4503 port->lacp_key = port->ifaces[0]->dp_ifidx;
4504 }
4505
4506 for (i = 0; i < port->n_ifaces; i++) {
4507 struct iface *iface = port->ifaces[i];
4508
4509 iface->lacp_actor.sys_priority = htons(port->lacp_priority);
4510 memcpy(&iface->lacp_actor.sysid, port->bridge->ea, ETH_ADDR_LEN);
4511
4512 iface->lacp_actor.port_priority = htons(iface->lacp_priority);
4513 iface->lacp_actor.portid = htons(iface->dp_ifidx);
4514 iface->lacp_actor.key = htons(port->lacp_key);
4515
4516 iface->lacp_tx = 0;
4517 }
4518 port->lacp_need_update = true;
4519}
4520
064af421
BP
4521static void
4522port_update_bonding(struct port *port)
4523{
0bb5c3ec
BP
4524 if (port->monitor) {
4525 netdev_monitor_destroy(port->monitor);
4526 port->monitor = NULL;
4527 }
064af421
BP
4528 if (port->n_ifaces < 2) {
4529 /* Not a bonded port. */
0b8b6f71
BP
4530 free(port->bond_hash);
4531 port->bond_hash = NULL;
be02e7c3 4532 port->bond_fake_iface = false;
064af421 4533 } else {
0bb5c3ec 4534 size_t i;
064af421 4535
9f5073d8 4536 if (port->bond_mode != BM_AB && !port->bond_hash) {
064af421
BP
4537 port->bond_hash = xcalloc(BOND_MASK + 1, sizeof *port->bond_hash);
4538 for (i = 0; i <= BOND_MASK; i++) {
4539 struct bond_entry *e = &port->bond_hash[i];
4540 e->iface_idx = -1;
4541 e->tx_bytes = 0;
4542 }
4543 port->no_ifaces_tag = tag_create_random();
4544 bond_choose_active_iface(port);
c8143c88
BP
4545 port->bond_next_rebalance
4546 = time_msec() + port->bond_rebalance_interval;
8722022c
BP
4547
4548 if (port->cfg->bond_fake_iface) {
4549 port->bond_next_fake_iface_update = time_msec();
4550 }
9f5073d8 4551 } else if (port->bond_mode == BM_AB) {
be02e7c3
EJ
4552 free(port->bond_hash);
4553 port->bond_hash = NULL;
064af421 4554 }
76343538 4555 port->bond_fake_iface = port->cfg->bond_fake_iface;
0bb5c3ec 4556
63331829
EJ
4557 if (!port->miimon) {
4558 port->monitor = netdev_monitor_create();
4559 for (i = 0; i < port->n_ifaces; i++) {
4560 netdev_monitor_add(port->monitor, port->ifaces[i]->netdev);
4561 }
0bb5c3ec 4562 }
064af421
BP
4563 }
4564}
064af421
BP
4565\f
4566/* Interface functions. */
4567
c25c91fd
EJ
4568static void
4569iface_set_lacp_defaulted(struct iface *iface)
4570{
8834f25e 4571 memset(&iface->lacp_partner, 0, sizeof iface->lacp_partner);
c25c91fd 4572
76ab2ea7
EJ
4573 iface->lacp_status |= LACP_DEFAULTED;
4574 iface->lacp_status &= ~(LACP_CURRENT | LACP_EXPIRED);
c25c91fd
EJ
4575 iface->lacp_tx = 0;
4576 iface->port->lacp_need_update = true;
4577}
4578
4579static void
4580iface_set_lacp_expired(struct iface *iface)
4581{
cd482758
EJ
4582 iface->lacp_status &= ~LACP_CURRENT;
4583 iface->lacp_status |= LACP_EXPIRED;
c25c91fd
EJ
4584 iface->lacp_partner.state |= LACP_STATE_TIME;
4585 iface->lacp_partner.state &= ~LACP_STATE_SYNC;
4586
4587 iface->lacp_rx = time_msec() + LACP_FAST_TIME_RX;
4588 iface->lacp_tx = 0;
4589}
4590
4591static uint8_t
4592iface_get_lacp_state(const struct iface *iface)
4593{
4594 uint8_t state = 0;
4595
4596 if (iface->port->lacp & LACP_ACTIVE) {
4597 state |= LACP_STATE_ACT;
4598 }
4599
cd482758 4600 if (iface->lacp_status & LACP_ATTACHED) {
c25c91fd
EJ
4601 state |= LACP_STATE_SYNC;
4602 }
4603
cd482758
EJ
4604 if (iface->lacp_status & LACP_DEFAULTED) {
4605 state |= LACP_STATE_DEF;
4606 }
4607
4608 if (iface->lacp_status & LACP_EXPIRED) {
c25c91fd
EJ
4609 state |= LACP_STATE_EXP;
4610 }
4611
4612 if (iface->port->n_ifaces > 1) {
4613 state |= LACP_STATE_AGG;
4614 }
4615
4616 if (iface->enabled) {
4617 state |= LACP_STATE_COL | LACP_STATE_DIST;
4618 }
4619
4620 return state;
4621}
4622
4623/* Given 'iface', populates 'priority' with data representing its LACP link
4624 * priority. If two priority objects populated by this function are compared
4625 * using memcmp, the higher priority link will be less than the lower priority
4626 * link. */
4627static void
4628iface_get_lacp_priority(struct iface *iface, struct lacp_info *priority)
4629{
4630 uint16_t partner_priority, actor_priority;
4631
4632 /* Choose the lacp_info of the higher priority system by comparing their
4633 * system priorities and mac addresses. */
4634 actor_priority = ntohs(iface->lacp_actor.sys_priority);
4635 partner_priority = ntohs(iface->lacp_partner.sys_priority);
4636 if (actor_priority < partner_priority) {
4637 *priority = iface->lacp_actor;
4638 } else if (partner_priority < actor_priority) {
4639 *priority = iface->lacp_partner;
4640 } else if (eth_addr_compare_3way(iface->lacp_actor.sysid,
4641 iface->lacp_partner.sysid) < 0) {
4642 *priority = iface->lacp_actor;
4643 } else {
4644 *priority = iface->lacp_partner;
4645 }
4646
4647 /* Key and state are not used in priority comparisons. */
4648 priority->key = 0;
4649 priority->state = 0;
4650}
4651
b31bcf60
EJ
4652static void
4653iface_send_packet(struct iface *iface, struct ofpbuf *packet)
4654{
4655 struct flow flow;
4656 union ofp_action action;
4657
4658 memset(&action, 0, sizeof action);
4659 action.output.type = htons(OFPAT_OUTPUT);
4660 action.output.len = htons(sizeof action);
4661 action.output.port = htons(odp_port_to_ofp_port(iface->dp_ifidx));
4662
4663 flow_extract(packet, 0, ODPP_NONE, &flow);
4664
4665 if (ofproto_send_packet(iface->port->bridge->ofproto, &flow, &action, 1,
4666 packet)) {
4667 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
4668 VLOG_WARN_RL(&rl, "interface %s: Failed to send packet.", iface->name);
4669 }
4670}
4671
76343538 4672static struct iface *
a740f0de 4673iface_create(struct port *port, const struct ovsrec_interface *if_cfg)
064af421 4674{
4a1ee6ae 4675 struct bridge *br = port->bridge;
064af421 4676 struct iface *iface;
a740f0de 4677 char *name = if_cfg->name;
064af421 4678
ec6fde61 4679 iface = xzalloc(sizeof *iface);
064af421
BP
4680 iface->port = port;
4681 iface->port_ifidx = port->n_ifaces;
4682 iface->name = xstrdup(name);
4683 iface->dp_ifidx = -1;
4684 iface->tag = tag_create_random();
064af421 4685 iface->delay_expires = LLONG_MAX;
0c6aea3f 4686 iface->netdev = NULL;
149f577a 4687 iface->cfg = if_cfg;
c25c91fd
EJ
4688 iface_set_lacp_defaulted(iface);
4689
4690 if (port->lacp & LACP_ACTIVE) {
4691 iface_set_lacp_expired(iface);
4692 }
064af421 4693
2457b24f
JG
4694 shash_add_assert(&br->iface_by_name, iface->name, iface);
4695
064af421
BP
4696 if (port->n_ifaces >= port->allocated_ifaces) {
4697 port->ifaces = x2nrealloc(port->ifaces, &port->allocated_ifaces,
4698 sizeof *port->ifaces);
4699 }
4700 port->ifaces[port->n_ifaces++] = iface;
4701 if (port->n_ifaces > 1) {
4a1ee6ae 4702 br->has_bonded_ports = true;
064af421
BP
4703 }
4704
4705 VLOG_DBG("attached network device %s to port %s", iface->name, port->name);
4706
4a1ee6ae 4707 bridge_flush(br);
76343538
BP
4708
4709 return iface;
064af421
BP
4710}
4711
4712static void
4713iface_destroy(struct iface *iface)
4714{
4715 if (iface) {
4716 struct port *port = iface->port;
4717 struct bridge *br = port->bridge;
4718 bool del_active = port->active_iface == iface->port_ifidx;
4719 struct iface *del;
4720
7ca5f243
EJ
4721 if (port->monitor) {
4722 netdev_monitor_remove(port->monitor, iface->netdev);
4723 }
4724
4a1ee6ae
BP
4725 shash_find_and_delete_assert(&br->iface_by_name, iface->name);
4726
064af421 4727 if (iface->dp_ifidx >= 0) {
d9a8717a 4728 hmap_remove(&br->ifaces, &iface->dp_ifidx_node);
064af421
BP
4729 }
4730
4731 del = port->ifaces[iface->port_ifidx] = port->ifaces[--port->n_ifaces];
4732 del->port_ifidx = iface->port_ifidx;
4733
0c6aea3f 4734 netdev_close(iface->netdev);
064af421
BP
4735
4736 if (del_active) {
4737 ofproto_revalidate(port->bridge->ofproto, port->active_iface_tag);
4738 bond_choose_active_iface(port);
2303f3b2 4739 bond_send_learning_packets(port);
064af421
BP
4740 }
4741
b31bcf60
EJ
4742 cfm_destroy(iface->cfm);
4743
a740f0de
JG
4744 free(iface->name);
4745 free(iface);
4746
064af421
BP
4747 bridge_flush(port->bridge);
4748 }
4749}
4750
4751static struct iface *
4752iface_lookup(const struct bridge *br, const char *name)
4753{
4a1ee6ae 4754 return shash_find_data(&br->iface_by_name, name);
064af421
BP
4755}
4756
4757static struct iface *
4758iface_from_dp_ifidx(const struct bridge *br, uint16_t dp_ifidx)
4759{
d9a8717a
BP
4760 struct iface *iface;
4761
4e8e4213 4762 HMAP_FOR_EACH_IN_BUCKET (iface, dp_ifidx_node,
d9a8717a
BP
4763 hash_int(dp_ifidx, 0), &br->ifaces) {
4764 if (iface->dp_ifidx == dp_ifidx) {
4765 return iface;
4766 }
4767 }
4768 return NULL;
064af421 4769}
557d8e6c 4770
52df17e7
BP
4771/* Set Ethernet address of 'iface', if one is specified in the configuration
4772 * file. */
4773static void
4774iface_set_mac(struct iface *iface)
4775{
76343538 4776 uint8_t ea[ETH_ADDR_LEN];
52df17e7 4777
76343538 4778 if (iface->cfg->mac && eth_addr_from_string(iface->cfg->mac, ea)) {
52df17e7
BP
4779 if (eth_addr_is_multicast(ea)) {
4780 VLOG_ERR("interface %s: cannot set MAC to multicast address",
4781 iface->name);
4782 } else if (iface->dp_ifidx == ODPP_LOCAL) {
4783 VLOG_ERR("ignoring iface.%s.mac; use bridge.%s.mac instead",
4784 iface->name, iface->name);
4785 } else {
4d678233 4786 int error = netdev_set_etheraddr(iface->netdev, ea);
52df17e7
BP
4787 if (error) {
4788 VLOG_ERR("interface %s: setting MAC failed (%s)",
4789 iface->name, strerror(error));
4790 }
4791 }
4792 }
4793}
c1c9c9c4 4794
bcd49a45
BP
4795/* Sets the ofport column of 'if_cfg' to 'ofport'. */
4796static void
4797iface_set_ofport(const struct ovsrec_interface *if_cfg, int64_t ofport)
4798{
4799 if (if_cfg) {
4800 ovsrec_interface_set_ofport(if_cfg, &ofport, 1);
4801 }
4802}
4803
43776b8f
BP
4804/* Adds the 'n' key-value pairs in 'keys' in 'values' to 'shash'.
4805 *
4806 * The value strings in '*shash' are taken directly from values[], not copied,
4807 * so the caller should not modify or free them. */
c1c9c9c4
BP
4808static void
4809shash_from_ovs_idl_map(char **keys, char **values, size_t n,
4810 struct shash *shash)
4811{
4812 size_t i;
4813
4814 shash_init(shash);
4815 for (i = 0; i < n; i++) {
4816 shash_add(shash, keys[i], values[i]);
4817 }
4818}
4819
ea763e0e
EJ
4820/* Creates 'keys' and 'values' arrays from 'shash'.
4821 *
4822 * Sets 'keys' and 'values' to heap allocated arrays representing the key-value
4823 * pairs in 'shash'. The caller takes ownership of 'keys' and 'values'. They
4824 * are populated with with strings taken directly from 'shash' and thus have
4825 * the same ownership of the key-value pairs in shash.
4826 */
4827static void
4828shash_to_ovs_idl_map(struct shash *shash,
4829 char ***keys, char ***values, size_t *n)
4830{
4831 size_t i, count;
4832 char **k, **v;
4833 struct shash_node *sn;
4834
4835 count = shash_count(shash);
4836
4837 k = xmalloc(count * sizeof *k);
4838 v = xmalloc(count * sizeof *v);
4839
4840 i = 0;
4841 SHASH_FOR_EACH(sn, shash) {
4842 k[i] = sn->name;
4843 v[i] = sn->data;
4844 i++;
4845 }
4846
4847 *n = count;
4848 *keys = k;
4849 *values = v;
4850}
4851
c1c9c9c4
BP
4852struct iface_delete_queues_cbdata {
4853 struct netdev *netdev;
44fca7f9 4854 const struct ovsdb_datum *queues;
c1c9c9c4
BP
4855};
4856
4857static bool
44fca7f9 4858queue_ids_include(const struct ovsdb_datum *queues, int64_t target)
c1c9c9c4 4859{
44fca7f9 4860 union ovsdb_atom atom;
c1c9c9c4 4861
44fca7f9
BP
4862 atom.integer = target;
4863 return ovsdb_datum_find_key(queues, &atom, OVSDB_TYPE_INTEGER) != UINT_MAX;
c1c9c9c4
BP
4864}
4865
4866static void
4867iface_delete_queues(unsigned int queue_id,
4868 const struct shash *details OVS_UNUSED, void *cbdata_)
4869{
4870 struct iface_delete_queues_cbdata *cbdata = cbdata_;
4871
44fca7f9 4872 if (!queue_ids_include(cbdata->queues, queue_id)) {
c1c9c9c4
BP
4873 netdev_delete_queue(cbdata->netdev, queue_id);
4874 }
4875}
4876
4877static void
4878iface_update_qos(struct iface *iface, const struct ovsrec_qos *qos)
4879{
4880 if (!qos || qos->type[0] == '\0') {
4881 netdev_set_qos(iface->netdev, NULL, NULL);
4882 } else {
4883 struct iface_delete_queues_cbdata cbdata;
4884 struct shash details;
4885 size_t i;
4886
4887 /* Configure top-level Qos for 'iface'. */
4888 shash_from_ovs_idl_map(qos->key_other_config, qos->value_other_config,
4889 qos->n_other_config, &details);
4890 netdev_set_qos(iface->netdev, qos->type, &details);
4891 shash_destroy(&details);
4892
4893 /* Deconfigure queues that were deleted. */
4894 cbdata.netdev = iface->netdev;
44fca7f9
BP
4895 cbdata.queues = ovsrec_qos_get_queues(qos, OVSDB_TYPE_INTEGER,
4896 OVSDB_TYPE_UUID);
c1c9c9c4
BP
4897 netdev_dump_queues(iface->netdev, iface_delete_queues, &cbdata);
4898
4899 /* Configure queues for 'iface'. */
4900 for (i = 0; i < qos->n_queues; i++) {
4901 const struct ovsrec_queue *queue = qos->value_queues[i];
4902 unsigned int queue_id = qos->key_queues[i];
4903
4904 shash_from_ovs_idl_map(queue->key_other_config,
4905 queue->value_other_config,
4906 queue->n_other_config, &details);
4907 netdev_set_queue(iface->netdev, queue_id, &details);
4908 shash_destroy(&details);
4909 }
4910 }
4911}
b31bcf60
EJ
4912
4913static void
4914iface_update_cfm(struct iface *iface)
4915{
4916 size_t i;
4917 struct cfm *cfm;
4918 uint16_t *remote_mps;
4919 struct ovsrec_monitor *mon;
4920 uint8_t ea[ETH_ADDR_LEN], maid[CCM_MAID_LEN];
4921
4922 mon = iface->cfg->monitor;
4923
4924 if (!mon) {
4fadfb56
BP
4925 cfm_destroy(iface->cfm);
4926 iface->cfm = NULL;
b31bcf60
EJ
4927 return;
4928 }
4929
4930 if (netdev_get_etheraddr(iface->netdev, ea)) {
4931 VLOG_WARN("interface %s: Failed to get ethernet address. "
4932 "Skipping Monitor.", iface->name);
4933 return;
4934 }
4935
4936 if (!cfm_generate_maid(mon->md_name, mon->ma_name, maid)) {
4937 VLOG_WARN("interface %s: Failed to generate MAID.", iface->name);
4938 return;
4939 }
4940
4941 if (!iface->cfm) {
4942 iface->cfm = cfm_create();
4943 }
4944
4945 cfm = iface->cfm;
4946 cfm->mpid = mon->mpid;
4947 cfm->interval = mon->interval ? *mon->interval : 1000;
4948
4949 memcpy(cfm->eth_src, ea, sizeof cfm->eth_src);
4950 memcpy(cfm->maid, maid, sizeof cfm->maid);
4951
4952 remote_mps = xzalloc(mon->n_remote_mps * sizeof *remote_mps);
4953 for(i = 0; i < mon->n_remote_mps; i++) {
4954 remote_mps[i] = mon->remote_mps[i]->mpid;
4955 }
4956 cfm_update_remote_mps(cfm, remote_mps, mon->n_remote_mps);
4957 free(remote_mps);
4958
4959 if (!cfm_configure(iface->cfm)) {
4960 cfm_destroy(iface->cfm);
4961 iface->cfm = NULL;
4962 }
4963}
064af421
BP
4964\f
4965/* Port mirroring. */
4966
dd0d105c
BP
4967static struct mirror *
4968mirror_find_by_uuid(struct bridge *br, const struct uuid *uuid)
4969{
4970 int i;
4971
4972 for (i = 0; i < MAX_MIRRORS; i++) {
4973 struct mirror *m = br->mirrors[i];
4974 if (m && uuid_equals(uuid, &m->uuid)) {
4975 return m;
4976 }
4977 }
4978 return NULL;
4979}
4980
064af421 4981static void
37e7f427 4982mirror_reconfigure(struct bridge *br)
064af421 4983{
f2d7fd66 4984 unsigned long *rspan_vlans;
37e7f427 4985 int i;
064af421 4986
dd0d105c 4987 /* Get rid of deleted mirrors. */
064af421 4988 for (i = 0; i < MAX_MIRRORS; i++) {
dd0d105c
BP
4989 struct mirror *m = br->mirrors[i];
4990 if (m) {
4991 const struct ovsdb_datum *mc;
4992 union ovsdb_atom atom;
4993
4994 mc = ovsrec_bridge_get_mirrors(br->cfg, OVSDB_TYPE_UUID);
4995 atom.uuid = br->mirrors[i]->uuid;
4996 if (ovsdb_datum_find_key(mc, &atom, OVSDB_TYPE_UUID) == UINT_MAX) {
4997 mirror_destroy(m);
4998 }
064af421
BP
4999 }
5000 }
5001
dd0d105c 5002 /* Add new mirrors and reconfigure existing ones. */
37e7f427
BP
5003 for (i = 0; i < br->cfg->n_mirrors; i++) {
5004 struct ovsrec_mirror *cfg = br->cfg->mirrors[i];
dd0d105c
BP
5005 struct mirror *m = mirror_find_by_uuid(br, &cfg->header_.uuid);
5006 if (m) {
5007 mirror_reconfigure_one(m, cfg);
5008 } else {
5009 mirror_create(br, cfg);
064af421
BP
5010 }
5011 }
5012
5013 /* Update port reserved status. */
5014 for (i = 0; i < br->n_ports; i++) {
5015 br->ports[i]->is_mirror_output_port = false;
5016 }
5017 for (i = 0; i < MAX_MIRRORS; i++) {
5018 struct mirror *m = br->mirrors[i];
5019 if (m && m->out_port) {
5020 m->out_port->is_mirror_output_port = true;
5021 }
5022 }
f2d7fd66 5023
8f30d09a 5024 /* Update flooded vlans (for RSPAN). */
f2d7fd66 5025 rspan_vlans = NULL;
37e7f427 5026 if (br->cfg->n_flood_vlans) {
f2d7fd66
JG
5027 rspan_vlans = bitmap_allocate(4096);
5028
37e7f427
BP
5029 for (i = 0; i < br->cfg->n_flood_vlans; i++) {
5030 int64_t vlan = br->cfg->flood_vlans[i];
5031 if (vlan >= 0 && vlan < 4096) {
f2d7fd66 5032 bitmap_set1(rspan_vlans, vlan);
37e7f427 5033 VLOG_INFO("bridge %s: disabling learning on vlan %"PRId64,
42061b2a 5034 br->name, vlan);
f2d7fd66 5035 } else {
37e7f427
BP
5036 VLOG_ERR("bridge %s: invalid value %"PRId64 "for flood VLAN",
5037 br->name, vlan);
f2d7fd66
JG
5038 }
5039 }
5040 }
8f30d09a 5041 if (mac_learning_set_flood_vlans(br->ml, rspan_vlans)) {
f2d7fd66
JG
5042 bridge_flush(br);
5043 }
064af421
BP
5044}
5045
dd0d105c
BP
5046static void
5047mirror_create(struct bridge *br, struct ovsrec_mirror *cfg)
064af421
BP
5048{
5049 struct mirror *m;
5050 size_t i;
5051
5052 for (i = 0; ; i++) {
5053 if (i >= MAX_MIRRORS) {
5054 VLOG_WARN("bridge %s: maximum of %d port mirrors reached, "
dd0d105c
BP
5055 "cannot create %s", br->name, MAX_MIRRORS, cfg->name);
5056 return;
064af421
BP
5057 }
5058 if (!br->mirrors[i]) {
5059 break;
5060 }
5061 }
5062
dd0d105c 5063 VLOG_INFO("created port mirror %s on bridge %s", cfg->name, br->name);
064af421
BP
5064 bridge_flush(br);
5065
ec6fde61 5066 br->mirrors[i] = m = xzalloc(sizeof *m);
064af421
BP
5067 m->bridge = br;
5068 m->idx = i;
dd0d105c 5069 m->name = xstrdup(cfg->name);
37e7f427
BP
5070 shash_init(&m->src_ports);
5071 shash_init(&m->dst_ports);
064af421
BP
5072 m->vlans = NULL;
5073 m->n_vlans = 0;
5074 m->out_vlan = -1;
5075 m->out_port = NULL;
37e7f427 5076
dd0d105c 5077 mirror_reconfigure_one(m, cfg);
064af421
BP
5078}
5079
5080static void
5081mirror_destroy(struct mirror *m)
5082{
5083 if (m) {
5084 struct bridge *br = m->bridge;
5085 size_t i;
5086
5087 for (i = 0; i < br->n_ports; i++) {
5088 br->ports[i]->src_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
5089 br->ports[i]->dst_mirrors &= ~(MIRROR_MASK_C(1) << m->idx);
5090 }
5091
37e7f427
BP
5092 shash_destroy(&m->src_ports);
5093 shash_destroy(&m->dst_ports);
064af421
BP
5094 free(m->vlans);
5095
5096 m->bridge->mirrors[m->idx] = NULL;
786880a5 5097 free(m->name);
064af421
BP
5098 free(m);
5099
5100 bridge_flush(br);
5101 }
5102}
5103
5104static void
37e7f427
BP
5105mirror_collect_ports(struct mirror *m, struct ovsrec_port **ports, int n_ports,
5106 struct shash *names)
064af421 5107{
064af421
BP
5108 size_t i;
5109
37e7f427
BP
5110 for (i = 0; i < n_ports; i++) {
5111 const char *name = ports[i]->name;
064af421 5112 if (port_lookup(m->bridge, name)) {
37e7f427 5113 shash_add_once(names, name, NULL);
064af421 5114 } else {
37e7f427
BP
5115 VLOG_WARN("bridge %s: mirror %s cannot match on nonexistent "
5116 "port %s", m->bridge->name, m->name, name);
064af421
BP
5117 }
5118 }
064af421
BP
5119}
5120
5121static size_t
37e7f427
BP
5122mirror_collect_vlans(struct mirror *m, const struct ovsrec_mirror *cfg,
5123 int **vlans)
064af421 5124{
37e7f427
BP
5125 size_t n_vlans;
5126 size_t i;
064af421 5127
0b523ea7 5128 *vlans = xmalloc(sizeof **vlans * cfg->n_select_vlan);
064af421 5129 n_vlans = 0;
37e7f427
BP
5130 for (i = 0; i < cfg->n_select_vlan; i++) {
5131 int64_t vlan = cfg->select_vlan[i];
5132 if (vlan < 0 || vlan > 4095) {
5133 VLOG_WARN("bridge %s: mirror %s selects invalid VLAN %"PRId64,
5134 m->bridge->name, m->name, vlan);
064af421
BP
5135 } else {
5136 (*vlans)[n_vlans++] = vlan;
5137 }
5138 }
5139 return n_vlans;
5140}
5141
5142static bool
5143vlan_is_mirrored(const struct mirror *m, int vlan)
5144{
5145 size_t i;
5146
5147 for (i = 0; i < m->n_vlans; i++) {
5148 if (m->vlans[i] == vlan) {
5149 return true;
5150 }
5151 }
5152 return false;
5153}
5154
5155static bool
5156port_trunks_any_mirrored_vlan(const struct mirror *m, const struct port *p)
5157{
5158 size_t i;
5159
5160 for (i = 0; i < m->n_vlans; i++) {
5161 if (port_trunks_vlan(p, m->vlans[i])) {
5162 return true;
5163 }
5164 }
5165 return false;
5166}
5167
5168static void
37e7f427 5169mirror_reconfigure_one(struct mirror *m, struct ovsrec_mirror *cfg)
064af421 5170{
37e7f427 5171 struct shash src_ports, dst_ports;
064af421 5172 mirror_mask_t mirror_bit;
064af421
BP
5173 struct port *out_port;
5174 int out_vlan;
5175 size_t n_vlans;
5176 int *vlans;
5177 size_t i;
064af421 5178
dd0d105c
BP
5179 /* Set name. */
5180 if (strcmp(cfg->name, m->name)) {
5181 free(m->name);
5182 m->name = xstrdup(cfg->name);
5183 }
5184
064af421 5185 /* Get output port. */
37e7f427
BP
5186 if (cfg->output_port) {
5187 out_port = port_lookup(m->bridge, cfg->output_port->name);
064af421 5188 if (!out_port) {
37e7f427
BP
5189 VLOG_ERR("bridge %s: mirror %s outputs to port not on bridge",
5190 m->bridge->name, m->name);
064af421 5191 mirror_destroy(m);
064af421
BP
5192 return;
5193 }
5194 out_vlan = -1;
5195
37e7f427
BP
5196 if (cfg->output_vlan) {
5197 VLOG_ERR("bridge %s: mirror %s specifies both output port and "
5198 "output vlan; ignoring output vlan",
5199 m->bridge->name, m->name);
064af421 5200 }
37e7f427 5201 } else if (cfg->output_vlan) {
064af421 5202 out_port = NULL;
37e7f427 5203 out_vlan = *cfg->output_vlan;
064af421 5204 } else {
37e7f427
BP
5205 VLOG_ERR("bridge %s: mirror %s does not specify output; ignoring",
5206 m->bridge->name, m->name);
064af421 5207 mirror_destroy(m);
064af421
BP
5208 return;
5209 }
5210
37e7f427
BP
5211 shash_init(&src_ports);
5212 shash_init(&dst_ports);
939ff267
BP
5213 if (cfg->select_all) {
5214 for (i = 0; i < m->bridge->n_ports; i++) {
5215 const char *name = m->bridge->ports[i]->name;
5216 shash_add_once(&src_ports, name, NULL);
5217 shash_add_once(&dst_ports, name, NULL);
5218 }
5219 vlans = NULL;
5220 n_vlans = 0;
5221 } else {
5222 /* Get ports, and drop duplicates and ports that don't exist. */
5223 mirror_collect_ports(m, cfg->select_src_port, cfg->n_select_src_port,
5224 &src_ports);
5225 mirror_collect_ports(m, cfg->select_dst_port, cfg->n_select_dst_port,
5226 &dst_ports);
064af421 5227
939ff267
BP
5228 /* Get all the vlans, and drop duplicate and invalid vlans. */
5229 n_vlans = mirror_collect_vlans(m, cfg, &vlans);
37e7f427 5230 }
064af421
BP
5231
5232 /* Update mirror data. */
37e7f427
BP
5233 if (!shash_equal_keys(&m->src_ports, &src_ports)
5234 || !shash_equal_keys(&m->dst_ports, &dst_ports)
064af421
BP
5235 || m->n_vlans != n_vlans
5236 || memcmp(m->vlans, vlans, sizeof *vlans * n_vlans)
5237 || m->out_port != out_port
5238 || m->out_vlan != out_vlan) {
5239 bridge_flush(m->bridge);
5240 }
37e7f427
BP
5241 shash_swap(&m->src_ports, &src_ports);
5242 shash_swap(&m->dst_ports, &dst_ports);
064af421
BP
5243 free(m->vlans);
5244 m->vlans = vlans;
5245 m->n_vlans = n_vlans;
5246 m->out_port = out_port;
5247 m->out_vlan = out_vlan;
5248
064af421
BP
5249 /* Update ports. */
5250 mirror_bit = MIRROR_MASK_C(1) << m->idx;
5251 for (i = 0; i < m->bridge->n_ports; i++) {
5252 struct port *port = m->bridge->ports[i];
5253
939ff267 5254 if (shash_find(&m->src_ports, port->name)
064af421
BP
5255 || (m->n_vlans
5256 && (!port->vlan
5257 ? port_trunks_any_mirrored_vlan(m, port)
5258 : vlan_is_mirrored(m, port->vlan)))) {
5259 port->src_mirrors |= mirror_bit;
5260 } else {
5261 port->src_mirrors &= ~mirror_bit;
5262 }
5263
939ff267 5264 if (shash_find(&m->dst_ports, port->name)) {
064af421
BP
5265 port->dst_mirrors |= mirror_bit;
5266 } else {
5267 port->dst_mirrors &= ~mirror_bit;
5268 }
5269 }
5270
5271 /* Clean up. */
37e7f427
BP
5272 shash_destroy(&src_ports);
5273 shash_destroy(&dst_ports);
064af421 5274}