forked from openvswitch/ovs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bond.c
2074 lines (1791 loc) · 64.8 KB
/
bond.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (c) 2008-2017 Nicira, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <config.h>
#include "bond.h"
#include <limits.h>
#include <stdint.h>
#include <stdlib.h>
#include <math.h>
#include "connectivity.h"
#include "coverage.h"
#include "dp-packet.h"
#include "flow.h"
#include "openvswitch/hmap.h"
#include "lacp.h"
#include "netdev.h"
#include "odp-util.h"
#include "ofproto/ofproto-dpif.h"
#include "ofproto/ofproto-dpif-rid.h"
#include "ofproto/ofproto-provider.h"
#include "openvswitch/dynamic-string.h"
#include "openvswitch/list.h"
#include "openvswitch/match.h"
#include "openvswitch/ofp-actions.h"
#include "openvswitch/ofpbuf.h"
#include "openvswitch/vlog.h"
#include "packets.h"
#include "openvswitch/poll-loop.h"
#include "seq.h"
#include "openvswitch/shash.h"
#include "timeval.h"
#include "unixctl.h"
#include "util.h"
VLOG_DEFINE_THIS_MODULE(bond);
static struct ovs_rwlock rwlock = OVS_RWLOCK_INITIALIZER;
static struct hmap all_bonds__ = HMAP_INITIALIZER(&all_bonds__);
static struct hmap *const all_bonds OVS_GUARDED_BY(rwlock) = &all_bonds__;
/* Priority for internal rules created to handle recirculation */
#define RECIRC_RULE_PRIORITY 20
/* A hash bucket for mapping a flow to a member interface.
* "struct bond" has an array of BOND_BUCKETS of these. */
struct bond_entry {
struct bond_member *member; /* Assigned member, NULL if unassigned. */
uint64_t tx_bytes /* Count of bytes recently transmitted. */
OVS_GUARDED_BY(rwlock);
struct ovs_list list_node; /* In bond_member's 'entries' list. */
/* Recirculation.
*
* 'pr_rule' is the post-recirculation rule for this entry.
* 'pr_tx_bytes' is the most recently seen statistics for 'pr_rule', which
* is used to determine delta (applied to 'tx_bytes' above.) */
struct rule *pr_rule;
uint64_t pr_tx_bytes OVS_GUARDED_BY(rwlock);
};
/* A bond member interface, that is, one of the links comprising a bond. */
struct bond_member {
struct hmap_node hmap_node; /* In struct bond's members hmap. */
struct ovs_list list_node; /* In struct bond's enabled_members list. */
struct bond *bond; /* The bond that contains this member. */
void *aux; /* Client-provided handle for this member. */
struct netdev *netdev; /* Network device, owned by the client. */
uint64_t change_seq; /* Tracks changes in 'netdev'. */
char *name; /* Name (a copy of netdev_get_name(netdev)). */
ofp_port_t ofp_port; /* OpenFlow port number. */
/* Link status. */
bool enabled; /* May be chosen for flows? */
bool may_enable; /* Client considers this member bondable. */
bool is_primary; /* This member is preferred over others. */
long long delay_expires; /* Time after which 'enabled' may change. */
/* Rebalancing info. Used only by bond_rebalance(). */
struct ovs_list bal_node; /* In bond_rebalance()'s 'bals' list. */
struct ovs_list entries; /* 'struct bond_entry's assigned here. */
uint64_t tx_bytes; /* Sum across 'tx_bytes' of entries. */
};
/* A bond, that is, a set of network devices grouped to improve performance or
* robustness. */
struct bond {
struct hmap_node hmap_node; /* In 'all_bonds' hmap. */
char *name; /* Name provided by client. */
struct ofproto_dpif *ofproto; /* The bridge this bond belongs to. */
/* Members. */
struct hmap members;
/* Enabled members.
*
* Any reader or writer of 'enabled_members' must hold 'mutex'.
* (To prevent the bond_member from disappearing they must also hold
* 'rwlock'.) */
struct ovs_mutex mutex OVS_ACQ_AFTER(rwlock);
struct ovs_list enabled_members OVS_GUARDED; /* Of struct bond_members. */
/* Bonding info. */
enum bond_mode balance; /* Balancing mode, one of BM_*. */
struct bond_member *active_member;
int updelay, downdelay; /* Delay before member goes up/down, in ms. */
enum lacp_status lacp_status; /* Status of LACP negotiations. */
bool bond_revalidate; /* True if flows need revalidation. */
uint32_t basis; /* Basis for flow hash function. */
bool use_lb_output_action; /* Use lb_output action to avoid recirculation.
Applicable only for Balance TCP mode. */
char *primary; /* Name of the primary member. */
/* SLB specific bonding info. */
struct bond_entry *hash; /* An array of BOND_BUCKETS elements. */
int rebalance_interval; /* Interval between rebalances, in ms. */
long long int next_rebalance; /* Next rebalancing time. */
bool send_learning_packets;
uint32_t recirc_id; /* Non zero if recirculation can be used.*/
struct hmap pr_rule_ops; /* Helps to maintain post recirculation rules.*/
/* Store active member to OVSDB. */
bool active_member_changed; /* Set to true whenever the bond changes active
* member. It will be reset to false after
* it is stored into OVSDB */
/* Interface name may not be persistent across an OS reboot, use
* MAC address for identifing the active member. */
struct eth_addr active_member_mac; /* MAC address of the active member. */
/* Legacy compatibility. */
bool lacp_fallback_ab; /* Fallback to active-backup on LACP failure. */
struct ovs_refcount ref_cnt;
};
/* What to do with an bond_recirc_rule. */
enum bond_op {
ADD, /* Add the rule to ofproto's flow table. */
DEL, /* Delete the rule from the ofproto's flow table. */
};
/* A rule to add to or delete from ofproto's internal flow table. */
struct bond_pr_rule_op {
struct hmap_node hmap_node;
struct match match;
ofp_port_t out_ofport;
enum bond_op op;
struct rule **pr_rule;
};
static void bond_entry_reset(struct bond *) OVS_REQ_WRLOCK(rwlock);
static struct bond_member *bond_member_lookup(struct bond *, const void *member_)
OVS_REQ_RDLOCK(rwlock);
static void bond_enable_member(struct bond_member *, bool enable)
OVS_REQ_WRLOCK(rwlock);
static void bond_link_status_update(struct bond_member *)
OVS_REQ_WRLOCK(rwlock);
static void bond_choose_active_member(struct bond *)
OVS_REQ_WRLOCK(rwlock);
static struct bond_entry *lookup_bond_entry(const struct bond *,
const struct flow *,
uint16_t vlan)
OVS_REQ_RDLOCK(rwlock);
static struct bond_member *get_enabled_member(struct bond *)
OVS_REQ_RDLOCK(rwlock);
static struct bond_member *choose_output_member(const struct bond *,
const struct flow *,
struct flow_wildcards *,
uint16_t vlan)
OVS_REQ_RDLOCK(rwlock);
static void update_recirc_rules__(struct bond *);
static bool bond_is_falling_back_to_ab(const struct bond *);
static void bond_add_lb_output_buckets(const struct bond *);
static void bond_del_lb_output_buckets(const struct bond *);
/* Attempts to parse 's' as the name of a bond balancing mode. If successful,
* stores the mode in '*balance' and returns true. Otherwise returns false
* without modifying '*balance'. */
bool
bond_mode_from_string(enum bond_mode *balance, const char *s)
{
if (!strcmp(s, bond_mode_to_string(BM_TCP))) {
*balance = BM_TCP;
} else if (!strcmp(s, bond_mode_to_string(BM_SLB))) {
*balance = BM_SLB;
} else if (!strcmp(s, bond_mode_to_string(BM_AB))) {
*balance = BM_AB;
} else {
return false;
}
return true;
}
/* Returns a string representing 'balance'. */
const char *
bond_mode_to_string(enum bond_mode balance) {
switch (balance) {
case BM_TCP:
return "balance-tcp";
case BM_SLB:
return "balance-slb";
case BM_AB:
return "active-backup";
}
OVS_NOT_REACHED();
}
/* Creates and returns a new bond whose configuration is initially taken from
* 's'.
*
* The caller should register each member on the new bond by calling
* bond_member_register(). */
struct bond *
bond_create(const struct bond_settings *s, struct ofproto_dpif *ofproto)
{
struct bond *bond;
bond = xzalloc(sizeof *bond);
bond->ofproto = ofproto;
hmap_init(&bond->members);
ovs_list_init(&bond->enabled_members);
ovs_mutex_init(&bond->mutex);
ovs_refcount_init(&bond->ref_cnt);
hmap_init(&bond->pr_rule_ops);
bond->active_member_mac = eth_addr_zero;
bond->active_member_changed = false;
bond->primary = NULL;
bond_reconfigure(bond, s);
return bond;
}
struct bond *
bond_ref(const struct bond *bond_)
{
struct bond *bond = CONST_CAST(struct bond *, bond_);
if (bond) {
ovs_refcount_ref(&bond->ref_cnt);
}
return bond;
}
/* Frees 'bond'. */
void
bond_unref(struct bond *bond)
{
struct bond_member *member;
if (!bond || ovs_refcount_unref_relaxed(&bond->ref_cnt) != 1) {
return;
}
ovs_rwlock_wrlock(&rwlock);
hmap_remove(all_bonds, &bond->hmap_node);
ovs_rwlock_unlock(&rwlock);
HMAP_FOR_EACH_POP (member, hmap_node, &bond->members) {
/* Client owns 'member->netdev'. */
free(member->name);
free(member);
}
hmap_destroy(&bond->members);
ovs_mutex_destroy(&bond->mutex);
/* Free bond resources. Remove existing post recirc rules. */
if (bond->recirc_id) {
if (bond_use_lb_output_action(bond)) {
/* Delete bond buckets from datapath if installed. */
bond_del_lb_output_buckets(bond);
}
recirc_free_id(bond->recirc_id);
bond->recirc_id = 0;
}
free(bond->hash);
bond->hash = NULL;
update_recirc_rules__(bond);
hmap_destroy(&bond->pr_rule_ops);
free(bond->primary);
free(bond->name);
free(bond);
}
static void
add_pr_rule(struct bond *bond, const struct match *match,
ofp_port_t out_ofport, struct rule **rule)
{
uint32_t hash = match_hash(match, 0);
struct bond_pr_rule_op *pr_op;
HMAP_FOR_EACH_WITH_HASH(pr_op, hmap_node, hash, &bond->pr_rule_ops) {
if (match_equal(&pr_op->match, match)) {
pr_op->op = ADD;
pr_op->out_ofport = out_ofport;
pr_op->pr_rule = rule;
return;
}
}
pr_op = xmalloc(sizeof *pr_op);
pr_op->match = *match;
pr_op->op = ADD;
pr_op->out_ofport = out_ofport;
pr_op->pr_rule = rule;
hmap_insert(&bond->pr_rule_ops, &pr_op->hmap_node, hash);
}
/* This function should almost never be called directly.
* 'update_recirc_rules()' should be called instead. Since
* this function modifies 'bond->pr_rule_ops', it is only
* safe when 'rwlock' is held.
*
* However, when the 'bond' is the only reference in the system,
* calling this function avoid acquiring lock only to satisfy
* lock annotation. Currently, only 'bond_unref()' calls
* this function directly. */
static void
update_recirc_rules__(struct bond *bond)
{
struct match match;
struct bond_pr_rule_op *pr_op, *next_op;
uint64_t ofpacts_stub[128 / 8];
struct ofpbuf ofpacts;
int i;
HMAP_FOR_EACH(pr_op, hmap_node, &bond->pr_rule_ops) {
pr_op->op = DEL;
}
if (bond->hash && bond->recirc_id) {
if (bond_use_lb_output_action(bond)) {
bond_add_lb_output_buckets(bond);
/* No need to install post recirculation rules as we are using
* lb_output action with bond buckets.
*/
return;
} else {
for (i = 0; i < BOND_BUCKETS; i++) {
struct bond_member *member = bond->hash[i].member;
if (member) {
match_init_catchall(&match);
match_set_recirc_id(&match, bond->recirc_id);
match_set_dp_hash_masked(&match, i, BOND_MASK);
add_pr_rule(bond, &match, member->ofp_port,
&bond->hash[i].pr_rule);
}
}
}
}
ofpbuf_use_stub(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
HMAP_FOR_EACH_SAFE(pr_op, next_op, hmap_node, &bond->pr_rule_ops) {
int error;
switch (pr_op->op) {
case ADD:
ofpbuf_clear(&ofpacts);
ofpact_put_OUTPUT(&ofpacts)->port = pr_op->out_ofport;
error = ofproto_dpif_add_internal_flow(bond->ofproto,
&pr_op->match,
RECIRC_RULE_PRIORITY, 0,
&ofpacts, pr_op->pr_rule);
if (error) {
char *err_s = match_to_string(&pr_op->match, NULL,
RECIRC_RULE_PRIORITY);
VLOG_ERR("failed to add post recirculation flow %s", err_s);
free(err_s);
}
break;
case DEL:
error = ofproto_dpif_delete_internal_flow(bond->ofproto,
&pr_op->match,
RECIRC_RULE_PRIORITY);
if (error) {
char *err_s = match_to_string(&pr_op->match, NULL,
RECIRC_RULE_PRIORITY);
VLOG_ERR("failed to remove post recirculation flow %s", err_s);
free(err_s);
}
hmap_remove(&bond->pr_rule_ops, &pr_op->hmap_node);
if (bond->hash) {
*pr_op->pr_rule = NULL;
}
free(pr_op);
break;
}
}
ofpbuf_uninit(&ofpacts);
}
static void
update_recirc_rules(struct bond *bond)
OVS_REQ_RDLOCK(rwlock)
{
update_recirc_rules__(bond);
}
/* Updates 'bond''s overall configuration to 's'.
*
* The caller should register each member on 'bond' by calling
* bond_member_register(). This is optional if none of the members'
* configuration has changed. In any case it can't hurt.
*
* Returns true if the configuration has changed in such a way that requires
* flow revalidation.
* */
bool
bond_reconfigure(struct bond *bond, const struct bond_settings *s)
{
bool revalidate = false;
ovs_rwlock_wrlock(&rwlock);
if (!bond->name || strcmp(bond->name, s->name)) {
if (bond->name) {
hmap_remove(all_bonds, &bond->hmap_node);
free(bond->name);
}
bond->name = xstrdup(s->name);
hmap_insert(all_bonds, &bond->hmap_node, hash_string(bond->name, 0));
}
bond->updelay = s->up_delay;
bond->downdelay = s->down_delay;
if (bond->lacp_fallback_ab != s->lacp_fallback_ab_cfg) {
bond->lacp_fallback_ab = s->lacp_fallback_ab_cfg;
revalidate = true;
}
if (bond->rebalance_interval != s->rebalance_interval) {
bond->rebalance_interval = s->rebalance_interval;
revalidate = true;
}
if (bond->balance != s->balance) {
bond->balance = s->balance;
revalidate = true;
}
if (bond->basis != s->basis) {
bond->basis = s->basis;
revalidate = true;
}
if (bond->bond_revalidate) {
revalidate = true;
bond->bond_revalidate = false;
}
if (!nullable_string_is_equal(bond->primary, s->primary)) {
free(bond->primary);
bond->primary = nullable_xstrdup(s->primary);
revalidate = true;
}
if (bond->balance != BM_AB) {
if (!bond->recirc_id) {
bond->recirc_id = recirc_alloc_id(bond->ofproto);
}
} else if (bond->recirc_id) {
if (bond_use_lb_output_action(bond)) {
/* Delete bond buckets from datapath if installed. */
bond_del_lb_output_buckets(bond);
}
recirc_free_id(bond->recirc_id);
bond->recirc_id = 0;
}
if (bond->use_lb_output_action != s->use_lb_output_action) {
if (s->use_lb_output_action &&
!ovs_lb_output_action_supported(bond->ofproto)) {
VLOG_WARN("%s: Datapath does not support 'lb_output' action, "
"disabled.", bond->name);
} else {
bond->use_lb_output_action = s->use_lb_output_action;
if (!bond->use_lb_output_action) {
bond_del_lb_output_buckets(bond);
}
revalidate = true;
}
}
if (bond->balance == BM_AB || !bond->hash || revalidate) {
bond_entry_reset(bond);
}
ovs_rwlock_unlock(&rwlock);
return revalidate;
}
static struct bond_member *
bond_find_member_by_mac(const struct bond *bond, const struct eth_addr mac)
{
struct bond_member *member;
/* Find the last active member */
HMAP_FOR_EACH (member, hmap_node, &bond->members) {
struct eth_addr member_mac;
if (netdev_get_etheraddr(member->netdev, &member_mac)) {
continue;
}
if (eth_addr_equals(member_mac, mac)) {
return member;
}
}
return NULL;
}
static void
bond_active_member_changed(struct bond *bond)
{
if (bond->active_member) {
struct eth_addr mac;
netdev_get_etheraddr(bond->active_member->netdev, &mac);
bond->active_member_mac = mac;
} else {
bond->active_member_mac = eth_addr_zero;
}
bond->active_member_changed = true;
seq_change(connectivity_seq_get());
}
static void
bond_member_set_netdev__(struct bond_member *member, struct netdev *netdev)
OVS_REQ_WRLOCK(rwlock)
{
if (member->netdev != netdev) {
member->netdev = netdev;
member->change_seq = 0;
}
}
/* Registers 'member_' as a member interface of 'bond'. The 'member_' pointer
* is an arbitrary client-provided pointer that uniquely identifies a member
* within a bond. If 'member_' already exists within 'bond' then this function
* reconfigures the existing member.
*
* 'netdev' must be the network device that 'member_' represents. It is owned
* by the client, so the client must not close it before either unregistering
* 'member_' or destroying 'bond'.
*/
void
bond_member_register(struct bond *bond, void *member_,
ofp_port_t ofport, struct netdev *netdev)
{
struct bond_member *member;
ovs_rwlock_wrlock(&rwlock);
member = bond_member_lookup(bond, member_);
if (!member) {
member = xzalloc(sizeof *member);
hmap_insert(&bond->members, &member->hmap_node, hash_pointer(member_, 0));
member->bond = bond;
member->aux = member_;
member->ofp_port = ofport;
member->delay_expires = LLONG_MAX;
member->name = xstrdup(netdev_get_name(netdev));
bond->bond_revalidate = true;
member->enabled = false;
bond_enable_member(member, netdev_get_carrier(netdev));
}
bond_member_set_netdev__(member, netdev);
free(member->name);
member->name = xstrdup(netdev_get_name(netdev));
if (bond->primary && !strcmp(bond->primary, member->name)) {
member->is_primary = true;
} else {
member->is_primary = false;
}
ovs_rwlock_unlock(&rwlock);
}
/* Updates the network device to be used with 'member_' to 'netdev'.
*
* This is useful if the caller closes and re-opens the network device
* registered with bond_member_register() but doesn't need to change anything
* else. */
void
bond_member_set_netdev(struct bond *bond, void *member_, struct netdev *netdev)
{
struct bond_member *member;
ovs_rwlock_wrlock(&rwlock);
member = bond_member_lookup(bond, member_);
if (member) {
bond_member_set_netdev__(member, netdev);
}
ovs_rwlock_unlock(&rwlock);
}
/* Unregisters 'member_' from 'bond'. If 'bond' does not contain such a
* member then this function has no effect.
*
* Unregistering a member invalidates all flows. */
void
bond_member_unregister(struct bond *bond, const void *member_)
{
struct bond_member *member;
bool del_active;
ovs_rwlock_wrlock(&rwlock);
member = bond_member_lookup(bond, member_);
if (!member) {
goto out;
}
bond->bond_revalidate = true;
bond_enable_member(member, false);
del_active = bond->active_member == member;
if (bond->hash) {
struct bond_entry *e;
for (e = bond->hash; e <= &bond->hash[BOND_MASK]; e++) {
if (e->member == member) {
e->member = NULL;
}
}
}
free(member->name);
hmap_remove(&bond->members, &member->hmap_node);
/* Client owns 'member->netdev'. */
free(member);
if (del_active) {
bond_choose_active_member(bond);
bond->send_learning_packets = true;
}
out:
ovs_rwlock_unlock(&rwlock);
}
/* Should be called on each member in 'bond' before bond_run() to indicate
* whether or not 'member_' may be enabled. This function is intended to allow
* other protocols to have some impact on bonding decisions. For example LACP
* or high level link monitoring protocols may decide that a given member
* should not be able to send traffic. */
void
bond_member_set_may_enable(struct bond *bond, void *member_, bool may_enable)
{
ovs_rwlock_wrlock(&rwlock);
bond_member_lookup(bond, member_)->may_enable = may_enable;
ovs_rwlock_unlock(&rwlock);
}
/* Performs periodic maintenance on 'bond'.
*
* Returns true if the caller should revalidate its flows.
*
* The caller should check bond_should_send_learning_packets() afterward. */
bool
bond_run(struct bond *bond, enum lacp_status lacp_status)
{
struct bond_member *member, *primary;
bool revalidate;
ovs_rwlock_wrlock(&rwlock);
if (bond->lacp_status != lacp_status) {
bond->lacp_status = lacp_status;
bond->bond_revalidate = true;
/* Change in LACP status can affect whether the bond is falling back to
* active-backup. Make sure to create or destroy buckets if
* necessary. */
if (bond_is_falling_back_to_ab(bond) || !bond->hash) {
bond_entry_reset(bond);
}
}
/* Enable members based on link status and LACP feedback. */
primary = NULL;
HMAP_FOR_EACH (member, hmap_node, &bond->members) {
bond_link_status_update(member);
member->change_seq = seq_read(connectivity_seq_get());
/* Discover if there is an active member marked 'primary'. */
if (bond->balance == BM_AB && member->is_primary && member->enabled) {
primary = member;
}
}
if (!bond->active_member || !bond->active_member->enabled ||
(primary && bond->active_member != primary)) {
bond_choose_active_member(bond);
}
revalidate = bond->bond_revalidate;
bond->bond_revalidate = false;
ovs_rwlock_unlock(&rwlock);
return revalidate;
}
/* Causes poll_block() to wake up when 'bond' needs something to be done. */
void
bond_wait(struct bond *bond)
{
struct bond_member *member;
ovs_rwlock_rdlock(&rwlock);
HMAP_FOR_EACH (member, hmap_node, &bond->members) {
if (member->delay_expires != LLONG_MAX) {
poll_timer_wait_until(member->delay_expires);
}
seq_wait(connectivity_seq_get(), member->change_seq);
}
if (bond->bond_revalidate) {
poll_immediate_wake();
}
ovs_rwlock_unlock(&rwlock);
/* We don't wait for bond->next_rebalance because rebalancing can only run
* at a flow account checkpoint. ofproto does checkpointing on its own
* schedule and bond_rebalance() gets called afterward, so we'd just be
* waking up for no purpose. */
}
/* MAC learning table interaction. */
static bool
may_send_learning_packets(const struct bond *bond)
{
return ((bond->lacp_status == LACP_DISABLED
&& (bond->balance == BM_SLB || bond->balance == BM_AB))
|| (bond->lacp_fallback_ab && bond->lacp_status == LACP_CONFIGURED))
&& bond->active_member;
}
/* Returns true if 'bond' needs the client to send out packets to assist with
* MAC learning on 'bond'. If this function returns true, then the client
* should iterate through its MAC learning table for the bridge on which 'bond'
* is located. For each MAC that has been learned on a port other than 'bond',
* it should call bond_compose_learning_packet().
*
* This function will only return true if 'bond' is in SLB or active-backup
* mode and LACP is not negotiated. Otherwise sending learning packets isn't
* necessary.
*
* Calling this function resets the state that it checks. */
bool
bond_should_send_learning_packets(struct bond *bond)
{
bool send;
ovs_rwlock_wrlock(&rwlock);
send = bond->send_learning_packets && may_send_learning_packets(bond);
bond->send_learning_packets = false;
ovs_rwlock_unlock(&rwlock);
return send;
}
/* Sends a gratuitous learning packet on 'bond' from 'eth_src' on 'vlan'.
*
* See bond_should_send_learning_packets() for description of usage. The
* caller should send the composed packet on the port associated with
* port_aux and takes ownership of the returned ofpbuf. */
struct dp_packet *
bond_compose_learning_packet(struct bond *bond, const struct eth_addr eth_src,
uint16_t vlan, void **port_aux)
{
struct bond_member *member;
struct dp_packet *packet;
struct flow flow;
ovs_rwlock_rdlock(&rwlock);
ovs_assert(may_send_learning_packets(bond));
memset(&flow, 0, sizeof flow);
flow.dl_src = eth_src;
member = choose_output_member(bond, &flow, NULL, vlan);
packet = dp_packet_new(0);
compose_rarp(packet, eth_src);
if (vlan) {
eth_push_vlan(packet, htons(ETH_TYPE_VLAN), htons(vlan));
}
*port_aux = member->aux;
ovs_rwlock_unlock(&rwlock);
return packet;
}
static bool
bond_is_falling_back_to_ab(const struct bond *bond)
{
return (bond->lacp_fallback_ab
&& (bond->balance == BM_SLB || bond->balance == BM_TCP)
&& bond->lacp_status == LACP_CONFIGURED);
}
/* Checks whether a packet that arrived on 'member_' within 'bond', with an
* Ethernet destination address of 'eth_dst', should be admitted.
*
* The return value is one of the following:
*
* - BV_ACCEPT: Admit the packet.
*
* - BV_DROP: Drop the packet.
*
* - BV_DROP_IF_MOVED: Consult the MAC learning table for the packet's
* Ethernet source address and VLAN. If there is none, or if the packet
* is on the learned port, then admit the packet. If a different port has
* been learned, however, drop the packet (and do not use it for MAC
* learning).
*/
enum bond_verdict
bond_check_admissibility(struct bond *bond, const void *member_,
const struct eth_addr eth_dst)
{
enum bond_verdict verdict = BV_DROP;
struct bond_member *member;
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
ovs_rwlock_rdlock(&rwlock);
member = bond_member_lookup(bond, member_);
if (!member) {
goto out;
}
/* LACP bonds have very loose admissibility restrictions because we can
* assume the remote switch is aware of the bond and will "do the right
* thing". However, as a precaution we drop packets on disabled members
* because no correctly implemented partner switch should be sending
* packets to them.
*
* If LACP is configured, but LACP negotiations have been unsuccessful, we
* drop all incoming traffic except if lacp_fallback_ab is enabled. */
switch (bond->lacp_status) {
case LACP_NEGOTIATED:
/* To reduce packet-drops due to delay in enabling of member (post
* LACP-SYNC), from main thread, check for may_enable as well.
* When may_enable is TRUE, it means LACP is UP and waiting for the
* main thread to run LACP state machine and enable the member. */
verdict = (member->enabled || member->may_enable) ? BV_ACCEPT : BV_DROP;
if (!member->enabled && member->may_enable) {
VLOG_DBG_RL(&rl, "bond %s: member %s: "
"main thread has not yet enabled member",
bond->name, bond->active_member->name);
}
goto out;
case LACP_CONFIGURED:
if (!bond->lacp_fallback_ab) {
goto out;
}
break;
case LACP_DISABLED:
if (bond->balance == BM_TCP) {
goto out;
}
break;
}
/* Drop all multicast packets on inactive members. */
if (eth_addr_is_multicast(eth_dst)) {
if (bond->active_member != member) {
goto out;
}
}
switch (bond->balance) {
case BM_TCP:
/* TCP balanced bonds require successful LACP negotiations. Based on the
* above check, LACP is off or lacp_fallback_ab is true on this bond.
* If lacp_fallback_ab is true fall through to BM_AB case else, we
* drop all incoming traffic. */
if (!bond->lacp_fallback_ab) {
goto out;
}
/* fall through */
case BM_AB:
/* Drop all packets which arrive on backup members. This is similar to
* how Linux bonding handles active-backup bonds. */
if (bond->active_member != member) {
VLOG_DBG_RL(&rl, "active-backup bond received packet on backup"
" member (%s) destined for " ETH_ADDR_FMT,
member->name, ETH_ADDR_ARGS(eth_dst));
goto out;
}
verdict = BV_ACCEPT;
goto out;
case BM_SLB:
/* Drop all packets for which we have learned a different input port,
* because we probably sent the packet on one member and got it back on
* the other. Gratuitous ARP packets are an exception to this rule:
* the host has moved to another switch. The exception to the
* exception is if we locked the learning table to avoid reflections on
* bond members. */
verdict = BV_DROP_IF_MOVED;
goto out;
}
OVS_NOT_REACHED();
out:
if (member && (verdict != BV_ACCEPT)) {
VLOG_DBG_RL(&rl, "member (%s): "
"Admissibility verdict is to drop pkt %s."
"active member: %s, may_enable: %s enable: %s "
"LACP status:%d",
member->name,
(verdict == BV_DROP_IF_MOVED) ?
"as different port is learned" : "",
(bond->active_member == member) ? "true" : "false",
member->may_enable ? "true" : "false",
member->enabled ? "true" : "false",
bond->lacp_status);
}
ovs_rwlock_unlock(&rwlock);
return verdict;
}
/* Returns the member (registered on 'bond' by bond_member_register()) to which
* a packet with the given 'flow' and 'vlan' should be forwarded. Returns NULL
* if the packet should be dropped because no members are enabled.
*
* 'vlan' is not necessarily the same as 'flow->vlan_tci'. First, 'vlan'
* should be a VID only (i.e. excluding the PCP bits). Second,
* 'flow->vlan_tci' is the VLAN TCI that appeared on the packet (so it will be
* nonzero only for trunk ports), whereas 'vlan' is the logical VLAN that the
* packet belongs to (so for an access port it will be the access port's VLAN).
*
* If 'wc' is non-NULL, bitwise-OR's 'wc' with the set of bits that were
* significant in the selection. At some point earlier, 'wc' should
* have been initialized (e.g., by flow_wildcards_init_catchall()).
*/
void *
bond_choose_output_member(struct bond *bond, const struct flow *flow,
struct flow_wildcards *wc, uint16_t vlan)
{
struct bond_member *member;
void *aux;
ovs_rwlock_rdlock(&rwlock);
member = choose_output_member(bond, flow, wc, vlan);
aux = member ? member->aux : NULL;
ovs_rwlock_unlock(&rwlock);
return aux;
}
/* Recirculation. */
static void
bond_entry_account(struct bond_entry *entry, uint64_t rule_tx_bytes)
OVS_REQ_WRLOCK(rwlock)
{
if (entry->member) {
uint64_t delta;
delta = rule_tx_bytes - entry->pr_tx_bytes;
entry->tx_bytes += delta;
entry->pr_tx_bytes = rule_tx_bytes;
}
}
/* Maintain bond stats using post recirculation rule byte counters.*/
static void
bond_recirculation_account(struct bond *bond)
OVS_REQ_WRLOCK(rwlock)
{
int i;
uint64_t n_bytes[BOND_BUCKETS];