]> git.proxmox.com Git - mirror_ovs.git/blame - lib/bond.c
jsonrpc: Don't swallow errors in jsonrpc_transact_block().
[mirror_ovs.git] / lib / bond.c
CommitLineData
f620b43a
BP
1/*
2 * Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <config.h>
18
19#include "bond.h"
20
21#include <limits.h>
22#include <stdint.h>
23#include <stdlib.h>
24
25#include "coverage.h"
26#include "dynamic-string.h"
27#include "flow.h"
28#include "hmap.h"
bdebeece 29#include "lacp.h"
f620b43a
BP
30#include "list.h"
31#include "netdev.h"
32#include "odp-util.h"
33#include "ofpbuf.h"
34#include "packets.h"
35#include "poll-loop.h"
fc1d4f01 36#include "shash.h"
f620b43a
BP
37#include "tag.h"
38#include "timeval.h"
39#include "unixctl.h"
40#include "vlog.h"
41
42VLOG_DEFINE_THIS_MODULE(bond);
43
f620b43a
BP
44/* Bit-mask for hashing a flow down to a bucket.
45 * There are (BOND_MASK + 1) buckets. */
46#define BOND_MASK 0xff
47
48/* A hash bucket for mapping a flow to a slave.
49 * "struct bond" has an array of (BOND_MASK + 1) of these. */
50struct bond_entry {
51 struct bond_slave *slave; /* Assigned slave, NULL if unassigned. */
52 uint64_t tx_bytes; /* Count of bytes recently transmitted. */
53 tag_type tag; /* Tag for entry<->slave association. */
54 struct list list_node; /* In bond_slave's 'entries' list. */
55};
56
57/* A bond slave, that is, one of the links comprising a bond. */
58struct bond_slave {
59 struct hmap_node hmap_node; /* In struct bond's slaves hmap. */
60 struct bond *bond; /* The bond that contains this slave. */
61 void *aux; /* Client-provided handle for this slave. */
62
63 struct netdev *netdev; /* Network device, owned by the client. */
1ea24138 64 unsigned int change_seq; /* Tracks changes in 'netdev'. */
f620b43a
BP
65 char *name; /* Name (a copy of netdev_get_name(netdev)). */
66
67 /* Link status. */
68 long long delay_expires; /* Time after which 'enabled' may change. */
f620b43a 69 bool enabled; /* May be chosen for flows? */
296f6519 70 bool may_enable; /* Client considers this slave bondable. */
f620b43a
BP
71 tag_type tag; /* Tag associated with this slave. */
72
73 /* Rebalancing info. Used only by bond_rebalance(). */
74 struct list bal_node; /* In bond_rebalance()'s 'bals' list. */
75 struct list entries; /* 'struct bond_entry's assigned here. */
76 uint64_t tx_bytes; /* Sum across 'tx_bytes' of entries. */
fb0b29a3
EJ
77
78 /* BM_STABLE specific bonding info. */
75135fa0 79 uint32_t stb_id; /* ID used for 'stb_slaves' ordering. */
f620b43a
BP
80};
81
82/* A bond, that is, a set of network devices grouped to improve performance or
83 * robustness. */
84struct bond {
85 struct hmap_node hmap_node; /* In 'all_bonds' hmap. */
86 char *name; /* Name provided by client. */
87
88 /* Slaves. */
89 struct hmap slaves;
90
91 /* Bonding info. */
92 enum bond_mode balance; /* Balancing mode, one of BM_*. */
93 struct bond_slave *active_slave;
94 tag_type no_slaves_tag; /* Tag for flows when all slaves disabled. */
95 int updelay, downdelay; /* Delay before slave goes up/down, in ms. */
bdebeece 96 enum lacp_status lacp_status; /* Status of LACP negotiations. */
62904702 97 bool bond_revalidate; /* True if flows need revalidation. */
672d18b2 98 uint32_t basis; /* Basis for flow hash function. */
f620b43a
BP
99
100 /* SLB specific bonding info. */
101 struct bond_entry *hash; /* An array of (BOND_MASK + 1) elements. */
102 int rebalance_interval; /* Interval between rebalances, in ms. */
103 long long int next_rebalance; /* Next rebalancing time. */
104 bool send_learning_packets;
105
fb0b29a3 106 /* BM_STABLE specific bonding info. */
8bb6f31d 107 tag_type stb_tag; /* Tag associated with this bond. */
f620b43a 108
f620b43a
BP
109 /* Legacy compatibility. */
110 long long int next_fake_iface_update; /* LLONG_MAX if disabled. */
111
112 /* Tag set saved for next bond_run(). This tag set is a kluge for cases
113 * where we can't otherwise provide revalidation feedback to the client.
114 * That's only unixctl commands now; I hope no other cases will arise. */
115 struct tag_set unixctl_tags;
116};
117
118static struct hmap all_bonds = HMAP_INITIALIZER(&all_bonds);
119
95aafb2a 120static void bond_entry_reset(struct bond *);
f620b43a 121static struct bond_slave *bond_slave_lookup(struct bond *, const void *slave_);
f620b43a
BP
122static void bond_enable_slave(struct bond_slave *, bool enable,
123 struct tag_set *);
124static void bond_link_status_update(struct bond_slave *, struct tag_set *);
125static void bond_choose_active_slave(struct bond *, struct tag_set *);
f620b43a 126static unsigned int bond_hash_src(const uint8_t mac[ETH_ADDR_LEN],
672d18b2
EJ
127 uint16_t vlan, uint32_t basis);
128static unsigned int bond_hash_tcp(const struct flow *, uint16_t vlan,
129 uint32_t basis);
f620b43a
BP
130static struct bond_entry *lookup_bond_entry(const struct bond *,
131 const struct flow *,
132 uint16_t vlan);
133static tag_type bond_get_active_slave_tag(const struct bond *);
134static struct bond_slave *choose_output_slave(const struct bond *,
135 const struct flow *,
136 uint16_t vlan);
137static void bond_update_fake_slave_stats(struct bond *);
138
139/* Attempts to parse 's' as the name of a bond balancing mode. If successful,
140 * stores the mode in '*balance' and returns true. Otherwise returns false
141 * without modifying '*balance'. */
142bool
143bond_mode_from_string(enum bond_mode *balance, const char *s)
144{
145 if (!strcmp(s, bond_mode_to_string(BM_TCP))) {
146 *balance = BM_TCP;
147 } else if (!strcmp(s, bond_mode_to_string(BM_SLB))) {
148 *balance = BM_SLB;
fb0b29a3
EJ
149 } else if (!strcmp(s, bond_mode_to_string(BM_STABLE))) {
150 *balance = BM_STABLE;
f620b43a
BP
151 } else if (!strcmp(s, bond_mode_to_string(BM_AB))) {
152 *balance = BM_AB;
153 } else {
154 return false;
155 }
156 return true;
157}
158
159/* Returns a string representing 'balance'. */
160const char *
161bond_mode_to_string(enum bond_mode balance) {
162 switch (balance) {
163 case BM_TCP:
164 return "balance-tcp";
165 case BM_SLB:
166 return "balance-slb";
fb0b29a3
EJ
167 case BM_STABLE:
168 return "stable";
f620b43a
BP
169 case BM_AB:
170 return "active-backup";
171 }
172 NOT_REACHED();
173}
174
f620b43a
BP
175\f
176/* Creates and returns a new bond whose configuration is initially taken from
177 * 's'.
178 *
179 * The caller should register each slave on the new bond by calling
180 * bond_slave_register(). */
181struct bond *
182bond_create(const struct bond_settings *s)
183{
184 struct bond *bond;
185
186 bond = xzalloc(sizeof *bond);
187 hmap_init(&bond->slaves);
188 bond->no_slaves_tag = tag_create_random();
7321e30e 189 bond->stb_tag = tag_create_random();
f620b43a
BP
190 bond->next_fake_iface_update = LLONG_MAX;
191
192 bond_reconfigure(bond, s);
193
194 tag_set_init(&bond->unixctl_tags);
195
196 return bond;
197}
198
199/* Frees 'bond'. */
200void
201bond_destroy(struct bond *bond)
202{
203 struct bond_slave *slave, *next_slave;
204
205 if (!bond) {
206 return;
207 }
208
209 hmap_remove(&all_bonds, &bond->hmap_node);
210
211 HMAP_FOR_EACH_SAFE (slave, next_slave, hmap_node, &bond->slaves) {
212 hmap_remove(&bond->slaves, &slave->hmap_node);
213 /* Client owns 'slave->netdev'. */
214 free(slave->name);
215 free(slave);
216 }
217 hmap_destroy(&bond->slaves);
218
219 free(bond->hash);
f620b43a
BP
220 free(bond->name);
221 free(bond);
222}
223
224/* Updates 'bond''s overall configuration to 's'.
225 *
226 * The caller should register each slave on 'bond' by calling
227 * bond_slave_register(). This is optional if none of the slaves'
4d6fb5eb 228 * configuration has changed. In any case it can't hurt.
59d7b2b6
EJ
229 *
230 * Returns true if the configuration has changed in such a way that requires
231 * flow revalidation.
232 * */
233bool
f620b43a
BP
234bond_reconfigure(struct bond *bond, const struct bond_settings *s)
235{
59d7b2b6
EJ
236 bool revalidate = false;
237
f620b43a
BP
238 if (!bond->name || strcmp(bond->name, s->name)) {
239 if (bond->name) {
240 hmap_remove(&all_bonds, &bond->hmap_node);
241 free(bond->name);
242 }
243 bond->name = xstrdup(s->name);
244 hmap_insert(&all_bonds, &bond->hmap_node, hash_string(bond->name, 0));
245 }
246
f620b43a
BP
247 bond->updelay = s->up_delay;
248 bond->downdelay = s->down_delay;
bc1b010c
EJ
249
250 if (bond->rebalance_interval != s->rebalance_interval) {
251 bond->rebalance_interval = s->rebalance_interval;
252 revalidate = true;
253 }
f620b43a 254
59d7b2b6
EJ
255 if (bond->balance != s->balance) {
256 bond->balance = s->balance;
257 revalidate = true;
258 }
259
672d18b2
EJ
260 if (bond->basis != s->basis) {
261 bond->basis = s->basis;
262 revalidate = true;
263 }
264
f620b43a
BP
265 if (s->fake_iface) {
266 if (bond->next_fake_iface_update == LLONG_MAX) {
267 bond->next_fake_iface_update = time_msec();
268 }
269 } else {
270 bond->next_fake_iface_update = LLONG_MAX;
271 }
59d7b2b6 272
62904702
EJ
273 if (bond->bond_revalidate) {
274 revalidate = true;
275 bond->bond_revalidate = false;
276 }
277
95aafb2a
EJ
278 if (bond->balance == BM_AB || !bond->hash || revalidate) {
279 bond_entry_reset(bond);
280 }
281
59d7b2b6 282 return revalidate;
f620b43a
BP
283}
284
f8ddccd2 285static void
1ea24138 286bond_slave_set_netdev__(struct bond_slave *slave, struct netdev *netdev)
f8ddccd2
BP
287{
288 if (slave->netdev != netdev) {
f8ddccd2 289 slave->netdev = netdev;
1ea24138 290 slave->change_seq = 0;
f8ddccd2
BP
291 }
292}
293
f620b43a
BP
294/* Registers 'slave_' as a slave of 'bond'. The 'slave_' pointer is an
295 * arbitrary client-provided pointer that uniquely identifies a slave within a
296 * bond. If 'slave_' already exists within 'bond' then this function
297 * reconfigures the existing slave.
298 *
e1e90548
EJ
299 * 'stb_id' is used in BM_STABLE bonds to guarantee consistent slave choices
300 * across restarts and distributed vswitch instances. It should be unique per
301 * slave, and preferably consistent across restarts and reconfigurations.
302 *
f620b43a
BP
303 * 'netdev' must be the network device that 'slave_' represents. It is owned
304 * by the client, so the client must not close it before either unregistering
305 * 'slave_' or destroying 'bond'.
4d6fb5eb 306 */
f620b43a 307void
75135fa0 308bond_slave_register(struct bond *bond, void *slave_, uint32_t stb_id,
e1e90548 309 struct netdev *netdev)
f620b43a
BP
310{
311 struct bond_slave *slave = bond_slave_lookup(bond, slave_);
312
313 if (!slave) {
314 slave = xzalloc(sizeof *slave);
315
316 hmap_insert(&bond->slaves, &slave->hmap_node, hash_pointer(slave_, 0));
317 slave->bond = bond;
318 slave->aux = slave_;
319 slave->delay_expires = LLONG_MAX;
244b2160 320 slave->name = xstrdup(netdev_get_name(netdev));
7321e30e 321 bond->bond_revalidate = true;
244b2160 322
b3c18f66 323 slave->enabled = false;
c8544aa1 324 bond_enable_slave(slave, netdev_get_carrier(netdev), NULL);
f620b43a
BP
325 }
326
e1e90548 327 if (slave->stb_id != stb_id) {
e1e90548 328 slave->stb_id = stb_id;
7321e30e 329 bond->bond_revalidate = true;
e1e90548
EJ
330 }
331
1ea24138 332 bond_slave_set_netdev__(slave, netdev);
a6934aa9 333
f620b43a
BP
334 free(slave->name);
335 slave->name = xstrdup(netdev_get_name(netdev));
f620b43a
BP
336}
337
f8ddccd2
BP
338/* Updates the network device to be used with 'slave_' to 'netdev'.
339 *
340 * This is useful if the caller closes and re-opens the network device
341 * registered with bond_slave_register() but doesn't need to change anything
342 * else. */
343void
344bond_slave_set_netdev(struct bond *bond, void *slave_, struct netdev *netdev)
345{
346 struct bond_slave *slave = bond_slave_lookup(bond, slave_);
347 if (slave) {
1ea24138 348 bond_slave_set_netdev__(slave, netdev);
f8ddccd2
BP
349 }
350}
351
f620b43a
BP
352/* Unregisters 'slave_' from 'bond'. If 'bond' does not contain such a slave
353 * then this function has no effect.
354 *
355 * Unregistering a slave invalidates all flows. */
356void
357bond_slave_unregister(struct bond *bond, const void *slave_)
358{
359 struct bond_slave *slave = bond_slave_lookup(bond, slave_);
360 bool del_active;
361
362 if (!slave) {
363 return;
364 }
365
b3c18f66
EJ
366 bond_enable_slave(slave, false, NULL);
367
f620b43a
BP
368 del_active = bond->active_slave == slave;
369 if (bond->hash) {
370 struct bond_entry *e;
371 for (e = bond->hash; e <= &bond->hash[BOND_MASK]; e++) {
372 if (e->slave == slave) {
373 e->slave = NULL;
374 }
375 }
376 }
377
378 free(slave->name);
379
380 hmap_remove(&bond->slaves, &slave->hmap_node);
381 /* Client owns 'slave->netdev'. */
382 free(slave);
383
384 if (del_active) {
385 struct tag_set tags;
386
387 tag_set_init(&tags);
388 bond_choose_active_slave(bond, &tags);
389 bond->send_learning_packets = true;
390 }
391}
392
296f6519
EJ
393/* Should be called on each slave in 'bond' before bond_run() to indicate
394 * whether or not 'slave_' may be enabled. This function is intended to allow
395 * other protocols to have some impact on bonding decisions. For example LACP
396 * or high level link monitoring protocols may decide that a given slave should
397 * not be able to send traffic. */
4d6fb5eb 398void
296f6519 399bond_slave_set_may_enable(struct bond *bond, void *slave_, bool may_enable)
4d6fb5eb 400{
296f6519 401 bond_slave_lookup(bond, slave_)->may_enable = may_enable;
4d6fb5eb
EJ
402}
403
f620b43a
BP
404/* Performs periodic maintenance on 'bond'. The caller must provide 'tags' to
405 * allow tagged flows to be invalidated.
406 *
407 * The caller should check bond_should_send_learning_packets() afterward. */
408void
bdebeece 409bond_run(struct bond *bond, struct tag_set *tags, enum lacp_status lacp_status)
f620b43a
BP
410{
411 struct bond_slave *slave;
412
bdebeece
EJ
413 if (bond->lacp_status != lacp_status) {
414 bond->lacp_status = lacp_status;
4592d0e2
EJ
415 bond->bond_revalidate = true;
416 }
4d6fb5eb 417
f620b43a
BP
418 /* Enable slaves based on link status and LACP feedback. */
419 HMAP_FOR_EACH (slave, hmap_node, &bond->slaves) {
420 bond_link_status_update(slave, tags);
1ea24138 421 slave->change_seq = netdev_change_seq(slave->netdev);
f620b43a
BP
422 }
423 if (!bond->active_slave || !bond->active_slave->enabled) {
424 bond_choose_active_slave(bond, tags);
425 }
426
427 /* Update fake bond interface stats. */
428 if (time_msec() >= bond->next_fake_iface_update) {
429 bond_update_fake_slave_stats(bond);
430 bond->next_fake_iface_update = time_msec() + 1000;
431 }
432
62904702
EJ
433 if (bond->bond_revalidate) {
434 bond->bond_revalidate = false;
dc9908b3 435
95aafb2a 436 bond_entry_reset(bond);
8bb6f31d
EJ
437 if (bond->balance != BM_STABLE) {
438 struct bond_slave *slave;
439
440 HMAP_FOR_EACH (slave, hmap_node, &bond->slaves) {
441 tag_set_add(tags, slave->tag);
442 }
443 } else {
444 tag_set_add(tags, bond->stb_tag);
dc9908b3 445 }
0008fbcb 446 tag_set_add(tags, bond->no_slaves_tag);
dc9908b3
EJ
447 }
448
f620b43a
BP
449 /* Invalidate any tags required by */
450 tag_set_union(tags, &bond->unixctl_tags);
451 tag_set_init(&bond->unixctl_tags);
452}
453
454/* Causes poll_block() to wake up when 'bond' needs something to be done. */
455void
456bond_wait(struct bond *bond)
457{
458 struct bond_slave *slave;
459
f620b43a
BP
460 HMAP_FOR_EACH (slave, hmap_node, &bond->slaves) {
461 if (slave->delay_expires != LLONG_MAX) {
462 poll_timer_wait_until(slave->delay_expires);
463 }
1ea24138
EJ
464
465 if (slave->change_seq != netdev_change_seq(slave->netdev)) {
466 poll_immediate_wake();
467 }
f620b43a
BP
468 }
469
470 if (bond->next_fake_iface_update != LLONG_MAX) {
471 poll_timer_wait_until(bond->next_fake_iface_update);
472 }
473
474 /* Ensure that any saved tags get revalidated right away. */
475 if (!tag_set_is_empty(&bond->unixctl_tags)) {
476 poll_immediate_wake();
477 }
478
479 /* We don't wait for bond->next_rebalance because rebalancing can only run
480 * at a flow account checkpoint. ofproto does checkpointing on its own
481 * schedule and bond_rebalance() gets called afterward, so we'd just be
482 * waking up for no purpose. */
483}
484\f
485/* MAC learning table interaction. */
486
487static bool
488may_send_learning_packets(const struct bond *bond)
489{
bdebeece
EJ
490 return bond->lacp_status == LACP_DISABLED
491 && bond->balance != BM_AB
492 && bond->active_slave;
f620b43a
BP
493}
494
495/* Returns true if 'bond' needs the client to send out packets to assist with
496 * MAC learning on 'bond'. If this function returns true, then the client
497 * should iterate through its MAC learning table for the bridge on which 'bond'
498 * is located. For each MAC that has been learned on a port other than 'bond',
ea131871 499 * it should call bond_compose_learning_packet().
f620b43a
BP
500 *
501 * This function will only return true if 'bond' is in SLB mode and LACP is not
502 * negotiated. Otherwise sending learning packets isn't necessary.
503 *
504 * Calling this function resets the state that it checks. */
505bool
506bond_should_send_learning_packets(struct bond *bond)
507{
508 bool send = bond->send_learning_packets && may_send_learning_packets(bond);
509 bond->send_learning_packets = false;
510 return send;
511}
512
513/* Sends a gratuitous learning packet on 'bond' from 'eth_src' on 'vlan'.
514 *
ea131871
JG
515 * See bond_should_send_learning_packets() for description of usage. The
516 * caller should send the composed packet on the port associated with
517 * port_aux and takes ownership of the returned ofpbuf. */
518struct ofpbuf *
519bond_compose_learning_packet(struct bond *bond,
520 const uint8_t eth_src[ETH_ADDR_LEN],
521 uint16_t vlan, void **port_aux)
f620b43a
BP
522{
523 struct bond_slave *slave;
ea131871 524 struct ofpbuf *packet;
f620b43a 525 struct flow flow;
f620b43a
BP
526
527 assert(may_send_learning_packets(bond));
f620b43a
BP
528
529 memset(&flow, 0, sizeof flow);
530 memcpy(flow.dl_src, eth_src, ETH_ADDR_LEN);
531 slave = choose_output_slave(bond, &flow, vlan);
532
ea131871
JG
533 packet = ofpbuf_new(0);
534 compose_benign_packet(packet, "Open vSwitch Bond Failover", 0xf177,
f620b43a
BP
535 eth_src);
536 if (vlan) {
ea131871 537 eth_push_vlan(packet, htons(vlan));
f620b43a 538 }
f620b43a 539
ea131871
JG
540 *port_aux = slave->aux;
541 return packet;
f620b43a
BP
542}
543\f
544/* Checks whether a packet that arrived on 'slave_' within 'bond', with an
545 * Ethernet destination address of 'eth_dst', should be admitted.
546 *
547 * The return value is one of the following:
548 *
549 * - BV_ACCEPT: Admit the packet.
550 *
551 * - BV_DROP: Drop the packet.
552 *
553 * - BV_DROP_IF_MOVED: Consult the MAC learning table for the packet's
554 * Ethernet source address and VLAN. If there is none, or if the packet
555 * is on the learned port, then admit the packet. If a different port has
556 * been learned, however, drop the packet (and do not use it for MAC
557 * learning).
558 */
559enum bond_verdict
560bond_check_admissibility(struct bond *bond, const void *slave_,
561 const uint8_t eth_dst[ETH_ADDR_LEN], tag_type *tags)
562{
9a1c6450
EJ
563 struct bond_slave *slave = bond_slave_lookup(bond, slave_);
564
565 /* LACP bonds have very loose admissibility restrictions because we can
566 * assume the remote switch is aware of the bond and will "do the right
567 * thing". However, as a precaution we drop packets on disabled slaves
568 * because no correctly implemented partner switch should be sending
bdebeece
EJ
569 * packets to them.
570 *
571 * If LACP is configured, but LACP negotiations have been unsuccessful, we
572 * drop all incoming traffic. */
573 switch (bond->lacp_status) {
574 case LACP_NEGOTIATED: return slave->enabled ? BV_ACCEPT : BV_DROP;
575 case LACP_CONFIGURED: return BV_DROP;
576 case LACP_DISABLED: break;
f620b43a
BP
577 }
578
579 /* Drop all multicast packets on inactive slaves. */
580 if (eth_addr_is_multicast(eth_dst)) {
581 *tags |= bond_get_active_slave_tag(bond);
582 if (bond->active_slave != bond_slave_lookup(bond, slave_)) {
583 return BV_DROP;
584 }
585 }
586
f931a4c9
BP
587 switch (bond->balance) {
588 case BM_AB:
589 /* Drop all packets which arrive on backup slaves. This is similar to
590 * how Linux bonding handles active-backup bonds. */
7ba7dcf0
EJ
591 *tags |= bond_get_active_slave_tag(bond);
592 if (bond->active_slave != slave) {
593 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
594
e6b2255c
BP
595 VLOG_DBG_RL(&rl, "active-backup bond received packet on backup"
596 " slave (%s) destined for " ETH_ADDR_FMT,
597 slave->name, ETH_ADDR_ARGS(eth_dst));
7ba7dcf0
EJ
598 return BV_DROP;
599 }
f931a4c9
BP
600 return BV_ACCEPT;
601
602 case BM_TCP:
bdebeece
EJ
603 /* TCP balanced bonds require successful LACP negotiated. Based on the
604 * above check, LACP is off on this bond. Therfore, we drop all
605 * incoming traffic. */
606 return BV_DROP;
607
f931a4c9
BP
608 case BM_SLB:
609 /* Drop all packets for which we have learned a different input port,
610 * because we probably sent the packet on one slave and got it back on
611 * the other. Gratuitous ARP packets are an exception to this rule:
612 * the host has moved to another switch. The exception to the
613 * exception is if we locked the learning table to avoid reflections on
614 * bond slaves. */
615 return BV_DROP_IF_MOVED;
616
617 case BM_STABLE:
618 return BV_ACCEPT;
7ba7dcf0
EJ
619 }
620
f931a4c9 621 NOT_REACHED();
f620b43a
BP
622}
623
624/* Returns the slave (registered on 'bond' by bond_slave_register()) to which
625 * a packet with the given 'flow' and 'vlan' should be forwarded. Returns
626 * NULL if the packet should be dropped because no slaves are enabled.
627 *
628 * 'vlan' is not necessarily the same as 'flow->vlan_tci'. First, 'vlan'
629 * should be a VID only (i.e. excluding the PCP bits). Second,
630 * 'flow->vlan_tci' is the VLAN TCI that appeared on the packet (so it will be
631 * nonzero only for trunk ports), whereas 'vlan' is the logical VLAN that the
632 * packet belongs to (so for an access port it will be the access port's VLAN).
633 *
634 * Adds a tag to '*tags' that associates the flow with the returned slave.
635 */
636void *
637bond_choose_output_slave(struct bond *bond, const struct flow *flow,
638 uint16_t vlan, tag_type *tags)
639{
640 struct bond_slave *slave = choose_output_slave(bond, flow, vlan);
641 if (slave) {
8bb6f31d 642 *tags |= bond->balance == BM_STABLE ? bond->stb_tag : slave->tag;
f620b43a
BP
643 return slave->aux;
644 } else {
645 *tags |= bond->no_slaves_tag;
646 return NULL;
647 }
648}
f620b43a
BP
649\f
650/* Rebalancing. */
651
1b137691
EJ
652static bool
653bond_is_balanced(const struct bond *bond)
654{
bc1b010c
EJ
655 return bond->rebalance_interval
656 && (bond->balance == BM_SLB || bond->balance == BM_TCP);
1b137691
EJ
657}
658
f620b43a
BP
659/* Notifies 'bond' that 'n_bytes' bytes were sent in 'flow' within 'vlan'. */
660void
661bond_account(struct bond *bond, const struct flow *flow, uint16_t vlan,
662 uint64_t n_bytes)
663{
1b137691 664 if (bond_is_balanced(bond)) {
f620b43a 665 lookup_bond_entry(bond, flow, vlan)->tx_bytes += n_bytes;
f620b43a
BP
666 }
667}
668
669static struct bond_slave *
670bond_slave_from_bal_node(struct list *bal)
671{
672 return CONTAINER_OF(bal, struct bond_slave, bal_node);
673}
674
675static void
676log_bals(struct bond *bond, const struct list *bals)
677{
678 if (VLOG_IS_DBG_ENABLED()) {
679 struct ds ds = DS_EMPTY_INITIALIZER;
680 const struct bond_slave *slave;
681
682 LIST_FOR_EACH (slave, bal_node, bals) {
683 if (ds.length) {
684 ds_put_char(&ds, ',');
685 }
686 ds_put_format(&ds, " %s %"PRIu64"kB",
687 slave->name, slave->tx_bytes / 1024);
688
689 if (!slave->enabled) {
690 ds_put_cstr(&ds, " (disabled)");
691 }
692 if (!list_is_empty(&slave->entries)) {
693 struct bond_entry *e;
694
695 ds_put_cstr(&ds, " (");
696 LIST_FOR_EACH (e, list_node, &slave->entries) {
697 if (&e->list_node != list_front(&slave->entries)) {
698 ds_put_cstr(&ds, " + ");
699 }
700 ds_put_format(&ds, "h%td: %"PRIu64"kB",
701 e - bond->hash, e->tx_bytes / 1024);
702 }
703 ds_put_cstr(&ds, ")");
704 }
705 }
706 VLOG_DBG("bond %s:%s", bond->name, ds_cstr(&ds));
707 ds_destroy(&ds);
708 }
709}
710
711/* Shifts 'hash' from its current slave to 'to'. */
712static void
713bond_shift_load(struct bond_entry *hash, struct bond_slave *to,
714 struct tag_set *set)
715{
716 struct bond_slave *from = hash->slave;
717 struct bond *bond = from->bond;
718 uint64_t delta = hash->tx_bytes;
719
720 VLOG_INFO("bond %s: shift %"PRIu64"kB of load (with hash %td) "
721 "from %s to %s (now carrying %"PRIu64"kB and "
722 "%"PRIu64"kB load, respectively)",
723 bond->name, delta / 1024, hash - bond->hash,
724 from->name, to->name,
725 (from->tx_bytes - delta) / 1024,
726 (to->tx_bytes + delta) / 1024);
727
728 /* Shift load away from 'from' to 'to'. */
729 from->tx_bytes -= delta;
730 to->tx_bytes += delta;
731
732 /* Arrange for flows to be revalidated. */
733 tag_set_add(set, hash->tag);
734 hash->slave = to;
735 hash->tag = tag_create_random();
736}
737
738/* Pick and returns a bond_entry to migrate to 'to' (the least-loaded slave),
739 * given that doing so must decrease the ratio of the load on the two slaves by
740 * at least 0.1. Returns NULL if there is no appropriate entry.
741 *
742 * The list of entries isn't sorted. I don't know of a reason to prefer to
743 * shift away small hashes or large hashes. */
744static struct bond_entry *
745choose_entry_to_migrate(const struct bond_slave *from, uint64_t to_tx_bytes)
746{
747 struct bond_entry *e;
748
749 if (list_is_short(&from->entries)) {
750 /* 'from' carries no more than one MAC hash, so shifting load away from
751 * it would be pointless. */
752 return NULL;
753 }
754
755 LIST_FOR_EACH (e, list_node, &from->entries) {
756 double old_ratio, new_ratio;
757 uint64_t delta;
758
759 if (to_tx_bytes == 0) {
760 /* Nothing on the new slave, move it. */
761 return e;
762 }
763
764 delta = e->tx_bytes;
765 old_ratio = (double)from->tx_bytes / to_tx_bytes;
766 new_ratio = (double)(from->tx_bytes - delta) / (to_tx_bytes + delta);
767 if (old_ratio - new_ratio > 0.1) {
768 /* Would decrease the ratio, move it. */
769 return e;
770 }
771 }
772
773 return NULL;
774}
775
776/* Inserts 'slave' into 'bals' so that descending order of 'tx_bytes' is
777 * maintained. */
778static void
779insert_bal(struct list *bals, struct bond_slave *slave)
780{
781 struct bond_slave *pos;
782
783 LIST_FOR_EACH (pos, bal_node, bals) {
784 if (slave->tx_bytes > pos->tx_bytes) {
785 break;
786 }
787 }
788 list_insert(&pos->bal_node, &slave->bal_node);
789}
790
791/* Removes 'slave' from its current list and then inserts it into 'bals' so
792 * that descending order of 'tx_bytes' is maintained. */
793static void
794reinsert_bal(struct list *bals, struct bond_slave *slave)
795{
796 list_remove(&slave->bal_node);
797 insert_bal(bals, slave);
798}
799
800/* If 'bond' needs rebalancing, does so.
801 *
802 * The caller should have called bond_account() for each active flow, to ensure
803 * that flow data is consistently accounted at this point. */
804void
805bond_rebalance(struct bond *bond, struct tag_set *tags)
806{
807 struct bond_slave *slave;
808 struct bond_entry *e;
809 struct list bals;
810
1b137691 811 if (!bond_is_balanced(bond) || time_msec() < bond->next_rebalance) {
f620b43a
BP
812 return;
813 }
814 bond->next_rebalance = time_msec() + bond->rebalance_interval;
815
816 /* Add each bond_entry to its slave's 'entries' list.
817 * Compute each slave's tx_bytes as the sum of its entries' tx_bytes. */
818 HMAP_FOR_EACH (slave, hmap_node, &bond->slaves) {
819 slave->tx_bytes = 0;
820 list_init(&slave->entries);
821 }
822 for (e = &bond->hash[0]; e <= &bond->hash[BOND_MASK]; e++) {
823 if (e->slave && e->tx_bytes) {
824 e->slave->tx_bytes += e->tx_bytes;
825 list_push_back(&e->slave->entries, &e->list_node);
826 }
827 }
828
829 /* Add enabled slaves to 'bals' in descending order of tx_bytes.
830 *
831 * XXX This is O(n**2) in the number of slaves but it could be O(n lg n)
832 * with a proper list sort algorithm. */
833 list_init(&bals);
834 HMAP_FOR_EACH (slave, hmap_node, &bond->slaves) {
835 if (slave->enabled) {
836 insert_bal(&bals, slave);
837 }
838 }
839 log_bals(bond, &bals);
840
841 /* Shift load from the most-loaded slaves to the least-loaded slaves. */
842 while (!list_is_short(&bals)) {
843 struct bond_slave *from = bond_slave_from_bal_node(list_front(&bals));
844 struct bond_slave *to = bond_slave_from_bal_node(list_back(&bals));
845 uint64_t overload;
846
847 overload = from->tx_bytes - to->tx_bytes;
848 if (overload < to->tx_bytes >> 5 || overload < 100000) {
849 /* The extra load on 'from' (and all less-loaded slaves), compared
850 * to that of 'to' (the least-loaded slave), is less than ~3%, or
851 * it is less than ~1Mbps. No point in rebalancing. */
852 break;
853 }
854
855 /* 'from' is carrying significantly more load than 'to', and that load
856 * is split across at least two different hashes. */
857 e = choose_entry_to_migrate(from, to->tx_bytes);
858 if (e) {
859 bond_shift_load(e, to, tags);
860
861 /* Delete element from from->entries.
862 *
863 * We don't add the element to to->hashes. That would only allow
864 * 'e' to be migrated to another slave in this rebalancing run, and
865 * there is no point in doing that. */
866 list_remove(&e->list_node);
867
868 /* Re-sort 'bals'. */
869 reinsert_bal(&bals, from);
870 reinsert_bal(&bals, to);
871 } else {
872 /* Can't usefully migrate anything away from 'from'.
873 * Don't reconsider it. */
874 list_remove(&from->bal_node);
875 }
876 }
877
878 /* Implement exponentially weighted moving average. A weight of 1/2 causes
879 * historical data to decay to <1% in 7 rebalancing runs. 1,000,000 bytes
880 * take 20 rebalancing runs to decay to 0 and get deleted entirely. */
881 for (e = &bond->hash[0]; e <= &bond->hash[BOND_MASK]; e++) {
882 e->tx_bytes /= 2;
883 if (!e->tx_bytes) {
884 e->slave = NULL;
885 }
886 }
887}
888\f
889/* Bonding unixctl user interface functions. */
890
891static struct bond *
892bond_find(const char *name)
893{
894 struct bond *bond;
895
896 HMAP_FOR_EACH_WITH_HASH (bond, hmap_node, hash_string(name, 0),
897 &all_bonds) {
898 if (!strcmp(bond->name, name)) {
899 return bond;
900 }
901 }
902 return NULL;
903}
904
905static struct bond_slave *
906bond_lookup_slave(struct bond *bond, const char *slave_name)
907{
908 struct bond_slave *slave;
909
910 HMAP_FOR_EACH (slave, hmap_node, &bond->slaves) {
911 if (!strcmp(slave->name, slave_name)) {
912 return slave;
913 }
914 }
915 return NULL;
916}
917
918static void
919bond_unixctl_list(struct unixctl_conn *conn,
0e15264f
BP
920 int argc OVS_UNUSED, const char *argv[] OVS_UNUSED,
921 void *aux OVS_UNUSED)
f620b43a
BP
922{
923 struct ds ds = DS_EMPTY_INITIALIZER;
924 const struct bond *bond;
925
926 ds_put_cstr(&ds, "bond\ttype\tslaves\n");
927
928 HMAP_FOR_EACH (bond, hmap_node, &all_bonds) {
929 const struct bond_slave *slave;
930 size_t i;
931
932 ds_put_format(&ds, "%s\t%s\t",
933 bond->name, bond_mode_to_string(bond->balance));
934
935 i = 0;
936 HMAP_FOR_EACH (slave, hmap_node, &bond->slaves) {
937 if (i++ > 0) {
938 ds_put_cstr(&ds, ", ");
939 }
940 ds_put_cstr(&ds, slave->name);
941 }
942 ds_put_char(&ds, '\n');
943 }
944 unixctl_command_reply(conn, 200, ds_cstr(&ds));
945 ds_destroy(&ds);
946}
947
948static void
c33a8a25 949bond_print_details(struct ds *ds, const struct bond *bond)
f620b43a 950{
fc1d4f01
EJ
951 struct shash slave_shash = SHASH_INITIALIZER(&slave_shash);
952 const struct shash_node **sorted_slaves = NULL;
f620b43a 953 const struct bond_slave *slave;
fc1d4f01 954 int i;
f620b43a 955
c33a8a25
EJ
956 ds_put_format(ds, "---- %s ----\n", bond->name);
957 ds_put_format(ds, "bond_mode: %s\n",
f620b43a
BP
958 bond_mode_to_string(bond->balance));
959
c33a8a25 960 ds_put_format(ds, "bond-hash-basis: %"PRIu32"\n", bond->basis);
672d18b2 961
c33a8a25
EJ
962 ds_put_format(ds, "updelay: %d ms\n", bond->updelay);
963 ds_put_format(ds, "downdelay: %d ms\n", bond->downdelay);
f620b43a 964
1b137691 965 if (bond_is_balanced(bond)) {
c33a8a25 966 ds_put_format(ds, "next rebalance: %lld ms\n",
f620b43a
BP
967 bond->next_rebalance - time_msec());
968 }
969
bdebeece
EJ
970 ds_put_cstr(ds, "lacp_status: ");
971 switch (bond->lacp_status) {
972 case LACP_NEGOTIATED:
973 ds_put_cstr(ds, "negotiated\n");
974 break;
975 case LACP_CONFIGURED:
976 ds_put_cstr(ds, "configured\n");
977 break;
978 case LACP_DISABLED:
979 ds_put_cstr(ds, "off\n");
980 break;
981 default:
982 ds_put_cstr(ds, "<unknown>\n");
983 break;
984 }
4d6fb5eb 985
f620b43a 986 HMAP_FOR_EACH (slave, hmap_node, &bond->slaves) {
fc1d4f01
EJ
987 shash_add(&slave_shash, slave->name, slave);
988 }
989 sorted_slaves = shash_sort(&slave_shash);
990
991 for (i = 0; i < shash_count(&slave_shash); i++) {
f620b43a 992 struct bond_entry *be;
f620b43a 993
fc1d4f01
EJ
994 slave = sorted_slaves[i]->data;
995
f620b43a 996 /* Basic info. */
c33a8a25 997 ds_put_format(ds, "\nslave %s: %s\n",
f620b43a
BP
998 slave->name, slave->enabled ? "enabled" : "disabled");
999 if (slave == bond->active_slave) {
c33a8a25 1000 ds_put_cstr(ds, "\tactive slave\n");
f620b43a
BP
1001 }
1002 if (slave->delay_expires != LLONG_MAX) {
c33a8a25 1003 ds_put_format(ds, "\t%s expires in %lld ms\n",
f620b43a
BP
1004 slave->enabled ? "downdelay" : "updelay",
1005 slave->delay_expires - time_msec());
1006 }
1007
c33a8a25 1008 ds_put_format(ds, "\tmay_enable: %s\n",
296f6519 1009 slave->may_enable ? "true" : "false");
4d6fb5eb 1010
1b137691 1011 if (!bond_is_balanced(bond)) {
f620b43a
BP
1012 continue;
1013 }
1014
1015 /* Hashes. */
f620b43a
BP
1016 for (be = bond->hash; be <= &bond->hash[BOND_MASK]; be++) {
1017 int hash = be - bond->hash;
1018
1019 if (be->slave != slave) {
1020 continue;
1021 }
1022
c33a8a25 1023 ds_put_format(ds, "\thash %d: %"PRIu64" kB load\n",
f620b43a
BP
1024 hash, be->tx_bytes / 1024);
1025
7b9f1974 1026 /* XXX How can we list the MACs assigned to hashes of SLB bonds? */
f620b43a
BP
1027 }
1028 }
fc1d4f01
EJ
1029 shash_destroy(&slave_shash);
1030 free(sorted_slaves);
c33a8a25
EJ
1031 ds_put_cstr(ds, "\n");
1032}
1033
1034static void
1035bond_unixctl_show(struct unixctl_conn *conn,
1036 int argc, const char *argv[],
1037 void *aux OVS_UNUSED)
1038{
1039 struct ds ds = DS_EMPTY_INITIALIZER;
1040
1041 if (argc > 1) {
1042 const struct bond *bond = bond_find(argv[1]);
1043
1044 if (!bond) {
1045 unixctl_command_reply(conn, 501, "no such bond");
1046 return;
1047 }
1048 bond_print_details(&ds, bond);
1049 } else {
1050 const struct bond *bond;
1051
1052 HMAP_FOR_EACH (bond, hmap_node, &all_bonds) {
1053 bond_print_details(&ds, bond);
1054 }
1055 }
1056
f620b43a
BP
1057 unixctl_command_reply(conn, 200, ds_cstr(&ds));
1058 ds_destroy(&ds);
1059}
1060
1061static void
0e15264f
BP
1062bond_unixctl_migrate(struct unixctl_conn *conn,
1063 int argc OVS_UNUSED, const char *argv[],
f620b43a
BP
1064 void *aux OVS_UNUSED)
1065{
0e15264f
BP
1066 const char *bond_s = argv[1];
1067 const char *hash_s = argv[2];
1068 const char *slave_s = argv[3];
f620b43a
BP
1069 struct bond *bond;
1070 struct bond_slave *slave;
1071 struct bond_entry *entry;
1072 int hash;
1073
f620b43a
BP
1074 bond = bond_find(bond_s);
1075 if (!bond) {
1076 unixctl_command_reply(conn, 501, "no such bond");
1077 return;
1078 }
1079
1080 if (bond->balance != BM_SLB) {
1081 unixctl_command_reply(conn, 501, "not an SLB bond");
1082 return;
1083 }
1084
1085 if (strspn(hash_s, "0123456789") == strlen(hash_s)) {
1086 hash = atoi(hash_s) & BOND_MASK;
1087 } else {
1088 unixctl_command_reply(conn, 501, "bad hash");
1089 return;
1090 }
1091
1092 slave = bond_lookup_slave(bond, slave_s);
1093 if (!slave) {
1094 unixctl_command_reply(conn, 501, "no such slave");
1095 return;
1096 }
1097
1098 if (!slave->enabled) {
1099 unixctl_command_reply(conn, 501, "cannot migrate to disabled slave");
1100 return;
1101 }
1102
1103 entry = &bond->hash[hash];
1104 tag_set_add(&bond->unixctl_tags, entry->tag);
1105 entry->slave = slave;
1106 entry->tag = tag_create_random();
1107 unixctl_command_reply(conn, 200, "migrated");
1108}
1109
1110static void
0e15264f
BP
1111bond_unixctl_set_active_slave(struct unixctl_conn *conn,
1112 int argc OVS_UNUSED, const char *argv[],
f620b43a
BP
1113 void *aux OVS_UNUSED)
1114{
0e15264f
BP
1115 const char *bond_s = argv[1];
1116 const char *slave_s = argv[2];
f620b43a
BP
1117 struct bond *bond;
1118 struct bond_slave *slave;
1119
f620b43a
BP
1120 bond = bond_find(bond_s);
1121 if (!bond) {
1122 unixctl_command_reply(conn, 501, "no such bond");
1123 return;
1124 }
1125
1126 slave = bond_lookup_slave(bond, slave_s);
1127 if (!slave) {
1128 unixctl_command_reply(conn, 501, "no such slave");
1129 return;
1130 }
1131
1132 if (!slave->enabled) {
1133 unixctl_command_reply(conn, 501, "cannot make disabled slave active");
1134 return;
1135 }
1136
1137 if (bond->active_slave != slave) {
1138 tag_set_add(&bond->unixctl_tags, bond_get_active_slave_tag(bond));
1139 bond->active_slave = slave;
1140 bond->active_slave->tag = tag_create_random();
1141 VLOG_INFO("bond %s: active interface is now %s",
1142 bond->name, slave->name);
1143 bond->send_learning_packets = true;
1144 unixctl_command_reply(conn, 200, "done");
1145 } else {
1146 unixctl_command_reply(conn, 200, "no change");
1147 }
1148}
1149
1150static void
0e15264f 1151enable_slave(struct unixctl_conn *conn, const char *argv[], bool enable)
f620b43a 1152{
0e15264f
BP
1153 const char *bond_s = argv[1];
1154 const char *slave_s = argv[2];
f620b43a
BP
1155 struct bond *bond;
1156 struct bond_slave *slave;
1157
f620b43a
BP
1158 bond = bond_find(bond_s);
1159 if (!bond) {
1160 unixctl_command_reply(conn, 501, "no such bond");
1161 return;
1162 }
1163
1164 slave = bond_lookup_slave(bond, slave_s);
1165 if (!slave) {
1166 unixctl_command_reply(conn, 501, "no such slave");
1167 return;
1168 }
1169
1170 bond_enable_slave(slave, enable, &bond->unixctl_tags);
491aa884 1171 unixctl_command_reply(conn, 200, enable ? "enabled" : "disabled");
f620b43a
BP
1172}
1173
1174static void
0e15264f
BP
1175bond_unixctl_enable_slave(struct unixctl_conn *conn,
1176 int argc OVS_UNUSED, const char *argv[],
f620b43a
BP
1177 void *aux OVS_UNUSED)
1178{
0e15264f 1179 enable_slave(conn, argv, true);
f620b43a
BP
1180}
1181
1182static void
0e15264f
BP
1183bond_unixctl_disable_slave(struct unixctl_conn *conn,
1184 int argc OVS_UNUSED, const char *argv[],
f620b43a
BP
1185 void *aux OVS_UNUSED)
1186{
0e15264f 1187 enable_slave(conn, argv, false);
f620b43a
BP
1188}
1189
1190static void
0e15264f 1191bond_unixctl_hash(struct unixctl_conn *conn, int argc, const char *argv[],
f620b43a
BP
1192 void *aux OVS_UNUSED)
1193{
0e15264f
BP
1194 const char *mac_s = argv[1];
1195 const char *vlan_s = argc > 2 ? argv[2] : NULL;
1196 const char *basis_s = argc > 3 ? argv[3] : NULL;
f620b43a
BP
1197 uint8_t mac[ETH_ADDR_LEN];
1198 uint8_t hash;
1199 char *hash_cstr;
1200 unsigned int vlan;
672d18b2 1201 uint32_t basis;
f620b43a
BP
1202
1203 if (vlan_s) {
1204 if (sscanf(vlan_s, "%u", &vlan) != 1) {
1205 unixctl_command_reply(conn, 501, "invalid vlan");
1206 return;
1207 }
1208 } else {
dc155bff 1209 vlan = 0;
f620b43a
BP
1210 }
1211
672d18b2
EJ
1212 if (basis_s) {
1213 if (sscanf(basis_s, "%"PRIu32, &basis) != 1) {
1214 unixctl_command_reply(conn, 501, "invalid basis");
1215 return;
1216 }
1217 } else {
1218 basis = 0;
1219 }
1220
f620b43a
BP
1221 if (sscanf(mac_s, ETH_ADDR_SCAN_FMT, ETH_ADDR_SCAN_ARGS(mac))
1222 == ETH_ADDR_SCAN_COUNT) {
672d18b2 1223 hash = bond_hash_src(mac, vlan, basis) & BOND_MASK;
f620b43a
BP
1224
1225 hash_cstr = xasprintf("%u", hash);
1226 unixctl_command_reply(conn, 200, hash_cstr);
1227 free(hash_cstr);
1228 } else {
1229 unixctl_command_reply(conn, 501, "invalid mac");
1230 }
1231}
1232
1233void
1234bond_init(void)
1235{
0e15264f 1236 unixctl_command_register("bond/list", "", 0, 0, bond_unixctl_list, NULL);
c33a8a25
EJ
1237 unixctl_command_register("bond/show", "[port]", 0, 1, bond_unixctl_show,
1238 NULL);
0e15264f 1239 unixctl_command_register("bond/migrate", "port hash slave", 3, 3,
7ff2009a 1240 bond_unixctl_migrate, NULL);
0e15264f 1241 unixctl_command_register("bond/set-active-slave", "port slave", 2, 2,
f620b43a 1242 bond_unixctl_set_active_slave, NULL);
0e15264f 1243 unixctl_command_register("bond/enable-slave", "port slave", 2, 2,
7ff2009a 1244 bond_unixctl_enable_slave, NULL);
0e15264f 1245 unixctl_command_register("bond/disable-slave", "port slave", 2, 2,
7ff2009a 1246 bond_unixctl_disable_slave, NULL);
0e15264f 1247 unixctl_command_register("bond/hash", "mac [vlan] [basis]", 1, 3,
7ff2009a 1248 bond_unixctl_hash, NULL);
f620b43a
BP
1249}
1250\f
95aafb2a
EJ
1251static void
1252bond_entry_reset(struct bond *bond)
1253{
1254 if (bond->balance != BM_AB) {
1255 size_t hash_len = (BOND_MASK + 1) * sizeof *bond->hash;
1256
1257 if (!bond->hash) {
1258 bond->hash = xmalloc(hash_len);
1259 }
1260 memset(bond->hash, 0, hash_len);
1261
1262 bond->next_rebalance = time_msec() + bond->rebalance_interval;
1263 } else {
1264 free(bond->hash);
1265 bond->hash = NULL;
1266 }
1267}
1268
f620b43a
BP
1269static struct bond_slave *
1270bond_slave_lookup(struct bond *bond, const void *slave_)
1271{
1272 struct bond_slave *slave;
1273
1274 HMAP_FOR_EACH_IN_BUCKET (slave, hmap_node, hash_pointer(slave_, 0),
1275 &bond->slaves) {
1276 if (slave->aux == slave_) {
1277 return slave;
1278 }
1279 }
1280
1281 return NULL;
1282}
1283
f620b43a
BP
1284static void
1285bond_enable_slave(struct bond_slave *slave, bool enable, struct tag_set *tags)
1286{
7321e30e 1287 struct bond *bond = slave->bond;
f620b43a
BP
1288 slave->delay_expires = LLONG_MAX;
1289 if (enable != slave->enabled) {
1290 slave->enabled = enable;
1291 if (!slave->enabled) {
1292 VLOG_WARN("interface %s: disabled", slave->name);
b3c18f66
EJ
1293 if (tags) {
1294 tag_set_add(tags, slave->tag);
1295 }
f620b43a
BP
1296 } else {
1297 VLOG_WARN("interface %s: enabled", slave->name);
1298 slave->tag = tag_create_random();
1299 }
7321e30e
EJ
1300
1301 if (bond->balance == BM_STABLE) {
1302 bond->bond_revalidate = true;
1303 }
f620b43a
BP
1304 }
1305}
1306
1307static void
1308bond_link_status_update(struct bond_slave *slave, struct tag_set *tags)
1309{
1310 struct bond *bond = slave->bond;
1311 bool up;
1312
296f6519 1313 up = netdev_get_carrier(slave->netdev) && slave->may_enable;
f620b43a
BP
1314 if ((up == slave->enabled) != (slave->delay_expires == LLONG_MAX)) {
1315 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
1316 VLOG_INFO_RL(&rl, "interface %s: link state %s",
1317 slave->name, up ? "up" : "down");
1318 if (up == slave->enabled) {
1319 slave->delay_expires = LLONG_MAX;
1320 VLOG_INFO_RL(&rl, "interface %s: will not be %s",
1321 slave->name, up ? "disabled" : "enabled");
1322 } else {
bdebeece 1323 int delay = (bond->lacp_status != LACP_DISABLED ? 0
f620b43a
BP
1324 : up ? bond->updelay : bond->downdelay);
1325 slave->delay_expires = time_msec() + delay;
1326 if (delay) {
1327 VLOG_INFO_RL(&rl, "interface %s: will be %s if it stays %s "
1328 "for %d ms",
1329 slave->name,
1330 up ? "enabled" : "disabled",
1331 up ? "up" : "down",
1332 delay);
1333 }
1334 }
1335 }
1336
1337 if (time_msec() >= slave->delay_expires) {
1338 bond_enable_slave(slave, up, tags);
1339 }
1340}
1341
f620b43a 1342static unsigned int
672d18b2 1343bond_hash_src(const uint8_t mac[ETH_ADDR_LEN], uint16_t vlan, uint32_t basis)
f620b43a 1344{
672d18b2 1345 return hash_3words(hash_bytes(mac, ETH_ADDR_LEN, 0), vlan, basis);
f620b43a
BP
1346}
1347
1348static unsigned int
672d18b2 1349bond_hash_tcp(const struct flow *flow, uint16_t vlan, uint32_t basis)
f620b43a
BP
1350{
1351 struct flow hash_flow = *flow;
d84d4b88 1352 hash_flow.vlan_tci = htons(vlan);
f620b43a
BP
1353
1354 /* The symmetric quality of this hash function is not required, but
1355 * flow_hash_symmetric_l4 already exists, and is sufficient for our
1356 * purposes, so we use it out of convenience. */
672d18b2 1357 return flow_hash_symmetric_l4(&hash_flow, basis);
f620b43a
BP
1358}
1359
fb0b29a3
EJ
1360static unsigned int
1361bond_hash(const struct bond *bond, const struct flow *flow, uint16_t vlan)
1362{
bdebeece 1363 assert(bond->balance == BM_TCP || bond->balance == BM_SLB);
fb0b29a3 1364
bdebeece 1365 return (bond->balance == BM_TCP
672d18b2
EJ
1366 ? bond_hash_tcp(flow, vlan, bond->basis)
1367 : bond_hash_src(flow->dl_src, vlan, bond->basis));
fb0b29a3
EJ
1368}
1369
f620b43a
BP
1370static struct bond_entry *
1371lookup_bond_entry(const struct bond *bond, const struct flow *flow,
1372 uint16_t vlan)
1373{
fb0b29a3 1374 return &bond->hash[bond_hash(bond, flow, vlan) & BOND_MASK];
f620b43a
BP
1375}
1376
7321e30e
EJ
1377/* This function uses Highest Random Weight hashing to choose an output slave.
1378 * This approach only reassigns a minimal number of flows when slaves are
1379 * enabled or disabled. Unfortunately, it has O(n) performance against the
1380 * number of slaves. There exist algorithms which are O(1), but have slightly
1381 * more complex implementations and require the use of memory. This may need
1382 * to be reimplemented if it becomes a performance bottleneck. */
1383static struct bond_slave *
bc1b010c 1384choose_stb_slave(const struct bond *bond, uint32_t flow_hash)
7321e30e
EJ
1385{
1386 struct bond_slave *best, *slave;
bc1b010c 1387 uint32_t best_hash;
7321e30e
EJ
1388
1389 best = NULL;
1390 best_hash = 0;
7321e30e
EJ
1391 HMAP_FOR_EACH (slave, hmap_node, &bond->slaves) {
1392 if (slave->enabled) {
1393 uint32_t hash;
1394
1395 hash = hash_2words(flow_hash, slave->stb_id);
1396 if (!best || hash > best_hash) {
1397 best = slave;
1398 best_hash = hash;
1399 }
1400 }
1401 }
1402
1403 return best;
1404}
1405
f620b43a
BP
1406static struct bond_slave *
1407choose_output_slave(const struct bond *bond, const struct flow *flow,
1408 uint16_t vlan)
1409{
1410 struct bond_entry *e;
1411
bdebeece
EJ
1412 if (bond->lacp_status == LACP_CONFIGURED) {
1413 /* LACP has been configured on this bond but negotiations were
1414 * unsuccussful. Drop all traffic. */
1415 return NULL;
1416 }
1417
f620b43a
BP
1418 switch (bond->balance) {
1419 case BM_AB:
1420 return bond->active_slave;
1421
fb0b29a3 1422 case BM_STABLE:
bc1b010c 1423 return choose_stb_slave(bond, bond_hash_tcp(flow, vlan, bond->basis));
bdebeece 1424
f620b43a 1425 case BM_TCP:
bdebeece
EJ
1426 if (bond->lacp_status != LACP_NEGOTIATED) {
1427 /* Must have LACP negotiations for TCP balanced bonds. */
1428 return NULL;
1429 }
1430 /* Fall Through. */
1431 case BM_SLB:
bc1b010c
EJ
1432 if (!bond_is_balanced(bond)) {
1433 return choose_stb_slave(bond, bond_hash(bond, flow, vlan));
1434 }
f620b43a
BP
1435 e = lookup_bond_entry(bond, flow, vlan);
1436 if (!e->slave || !e->slave->enabled) {
c804cadf
EJ
1437 e->slave = CONTAINER_OF(hmap_random_node(&bond->slaves),
1438 struct bond_slave, hmap_node);
1439 if (!e->slave->enabled) {
1440 e->slave = bond->active_slave;
1441 }
f620b43a
BP
1442 e->tag = tag_create_random();
1443 }
1444 return e->slave;
1445
1446 default:
1447 NOT_REACHED();
1448 }
1449}
1450
1451static struct bond_slave *
1452bond_choose_slave(const struct bond *bond)
1453{
1454 struct bond_slave *slave, *best;
1455
1456 /* Find an enabled slave. */
1457 HMAP_FOR_EACH (slave, hmap_node, &bond->slaves) {
1458 if (slave->enabled) {
1459 return slave;
1460 }
1461 }
1462
1463 /* All interfaces are disabled. Find an interface that will be enabled
1464 * after its updelay expires. */
1465 best = NULL;
1466 HMAP_FOR_EACH (slave, hmap_node, &bond->slaves) {
1467 if (slave->delay_expires != LLONG_MAX
296f6519 1468 && slave->may_enable
f620b43a
BP
1469 && (!best || slave->delay_expires < best->delay_expires)) {
1470 best = slave;
1471 }
1472 }
1473 return best;
1474}
1475
1476static void
1477bond_choose_active_slave(struct bond *bond, struct tag_set *tags)
1478{
1479 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
1480 struct bond_slave *old_active_slave = bond->active_slave;
1481
1482 bond->active_slave = bond_choose_slave(bond);
1483 if (bond->active_slave) {
1484 if (bond->active_slave->enabled) {
1485 VLOG_INFO_RL(&rl, "bond %s: active interface is now %s",
1486 bond->name, bond->active_slave->name);
1487 } else {
1488 VLOG_INFO_RL(&rl, "bond %s: active interface is now %s, skipping "
1489 "remaining %lld ms updelay (since no interface was "
1490 "enabled)", bond->name, bond->active_slave->name,
1491 bond->active_slave->delay_expires - time_msec());
1492 bond_enable_slave(bond->active_slave, true, tags);
1493 }
1494
1495 if (!old_active_slave) {
1496 tag_set_add(tags, bond->no_slaves_tag);
1497 }
1498
1499 bond->send_learning_packets = true;
1500 } else if (old_active_slave) {
1501 VLOG_WARN_RL(&rl, "bond %s: all interfaces disabled", bond->name);
1502 }
1503}
1504
1505/* Returns the tag for 'bond''s active slave, or 'bond''s no_slaves_tag if
1506 * there is no active slave. */
1507static tag_type
1508bond_get_active_slave_tag(const struct bond *bond)
1509{
1510 return (bond->active_slave
1511 ? bond->active_slave->tag
1512 : bond->no_slaves_tag);
1513}
1514
1515/* Attempts to make the sum of the bond slaves' statistics appear on the fake
1516 * bond interface. */
1517static void
1518bond_update_fake_slave_stats(struct bond *bond)
1519{
1520 struct netdev_stats bond_stats;
1521 struct bond_slave *slave;
1522 struct netdev *bond_dev;
1523
1524 memset(&bond_stats, 0, sizeof bond_stats);
1525
1526 HMAP_FOR_EACH (slave, hmap_node, &bond->slaves) {
1527 struct netdev_stats slave_stats;
1528
1529 if (!netdev_get_stats(slave->netdev, &slave_stats)) {
1530 /* XXX: We swap the stats here because they are swapped back when
1531 * reported by the internal device. The reason for this is
1532 * internal devices normally represent packets going into the
1533 * system but when used as fake bond device they represent packets
1534 * leaving the system. We really should do this in the internal
1535 * device itself because changing it here reverses the counts from
1536 * the perspective of the switch. However, the internal device
1537 * doesn't know what type of device it represents so we have to do
1538 * it here for now. */
1539 bond_stats.tx_packets += slave_stats.rx_packets;
1540 bond_stats.tx_bytes += slave_stats.rx_bytes;
1541 bond_stats.rx_packets += slave_stats.tx_packets;
1542 bond_stats.rx_bytes += slave_stats.tx_bytes;
1543 }
1544 }
1545
18812dff 1546 if (!netdev_open(bond->name, "system", &bond_dev)) {
f620b43a
BP
1547 netdev_set_stats(bond_dev, &bond_stats);
1548 netdev_close(bond_dev);
1549 }
1550}