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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
|
/*********************************************************************
* Copyright 2013 Cumulus Networks, LLC. All rights reserved.
* Copyright 2014,2015,2016,2017 Cumulus Networks, Inc. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; see the file COPYING; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* bfd.c: implements the BFD protocol.
*
* Authors
* -------
* Shrijeet Mukherjee [shm@cumulusnetworks.com]
* Kanna Rajagopal [kanna@cumulusnetworks.com]
* Radhika Mahankali [Radhika@cumulusnetworks.com]
*/
#include <zebra.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/uio.h>
#include <netinet/in.h>
#include <net/if.h>
#include <arpa/inet.h>
#include <sys/ioctl.h>
#include <err.h>
#include <errno.h>
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <unistd.h>
#include <netdb.h>
#include <time.h>
#include <signal.h>
#include "lib/hash.h"
#include "lib/jhash.h"
#include "bfd.h"
DEFINE_QOBJ_TYPE(bfd_session);
/*
* Prototypes
*/
static uint32_t ptm_bfd_gen_ID(void);
static void ptm_bfd_echo_xmt_TO(struct bfd_session *bfd);
static void bfd_session_free(struct bfd_session *bs);
static struct bfd_session *bfd_session_new(int sd);
static struct bfd_session *bfd_find_disc(struct sockaddr_any *sa,
uint32_t ldisc);
static int bfd_session_update(struct bfd_session *bs, struct bfd_peer_cfg *bpc);
static const char *get_diag_str(int diag);
/*
* Functions
*/
struct bfd_session *bs_peer_find(struct bfd_peer_cfg *bpc)
{
struct bfd_session *bs;
struct peer_label *pl;
struct bfd_mhop_key mhop;
struct bfd_shop_key shop;
/* Try to find label first. */
if (bpc->bpc_has_label) {
pl = pl_find(bpc->bpc_label);
if (pl != NULL) {
bs = pl->pl_bs;
return bs;
}
}
/* Otherwise fallback to peer/local hash lookup. */
if (bpc->bpc_mhop) {
memset(&mhop, 0, sizeof(mhop));
mhop.peer = bpc->bpc_peer;
mhop.local = bpc->bpc_local;
if (bpc->bpc_has_vrfname)
strlcpy(mhop.vrf_name, bpc->bpc_vrfname,
sizeof(mhop.vrf_name));
bs = bfd_mhop_lookup(mhop);
} else {
memset(&shop, 0, sizeof(shop));
shop.peer = bpc->bpc_peer;
if (!bpc->bpc_has_vxlan && bpc->bpc_has_localif)
strlcpy(shop.port_name, bpc->bpc_localif,
sizeof(shop.port_name));
bs = bfd_shop_lookup(shop);
}
return bs;
}
static uint32_t ptm_bfd_gen_ID(void)
{
static uint32_t sessionID = 1;
return (sessionID++);
}
void ptm_bfd_start_xmt_timer(struct bfd_session *bfd, bool is_echo)
{
uint64_t jitter, xmt_TO;
int maxpercent;
xmt_TO = is_echo ? bfd->echo_xmt_TO : bfd->xmt_TO;
/*
* From section 6.5.2: trasmit interval should be randomly jittered
* between
* 75% and 100% of nominal value, unless detect_mult is 1, then should
* be
* between 75% and 90%.
*/
maxpercent = (bfd->detect_mult == 1) ? 16 : 26;
jitter = (xmt_TO * (75 + (random() % maxpercent))) / 100;
/* XXX remove that division above */
if (is_echo)
bfd_echo_xmttimer_update(bfd, jitter);
else
bfd_xmttimer_update(bfd, jitter);
}
static void ptm_bfd_echo_xmt_TO(struct bfd_session *bfd)
{
/* Send the scheduled echo packet */
ptm_bfd_echo_snd(bfd);
/* Restart the timer for next time */
ptm_bfd_start_xmt_timer(bfd, true);
}
void ptm_bfd_xmt_TO(struct bfd_session *bfd, int fbit)
{
/* Send the scheduled control packet */
ptm_bfd_snd(bfd, fbit);
/* Restart the timer for next time */
ptm_bfd_start_xmt_timer(bfd, false);
}
void ptm_bfd_echo_stop(struct bfd_session *bfd, int polling)
{
bfd->echo_xmt_TO = 0;
bfd->echo_detect_TO = 0;
BFD_UNSET_FLAG(bfd->flags, BFD_SESS_FLAG_ECHO_ACTIVE);
bfd_echo_xmttimer_delete(bfd);
bfd_echo_recvtimer_delete(bfd);
if (polling) {
bfd->polling = polling;
bfd->new_timers.desired_min_tx = bfd->up_min_tx;
bfd->new_timers.required_min_rx = bfd->timers.required_min_rx;
ptm_bfd_snd(bfd, 0);
}
}
void ptm_bfd_echo_start(struct bfd_session *bfd)
{
bfd->echo_detect_TO = (bfd->remote_detect_mult * bfd->echo_xmt_TO);
ptm_bfd_echo_xmt_TO(bfd);
bfd->polling = 1;
bfd->new_timers.desired_min_tx = bfd->up_min_tx;
bfd->new_timers.required_min_rx = bfd->timers.required_min_rx;
ptm_bfd_snd(bfd, 0);
}
void ptm_bfd_ses_up(struct bfd_session *bfd)
{
bfd->local_diag = 0;
bfd->ses_state = PTM_BFD_UP;
bfd->polling = 1;
monotime(&bfd->uptime);
/* If the peer is capable to receiving Echo pkts */
if (bfd->echo_xmt_TO && !BFD_CHECK_FLAG(bfd->flags, BFD_SESS_FLAG_MH)) {
ptm_bfd_echo_start(bfd);
} else {
bfd->new_timers.desired_min_tx = bfd->up_min_tx;
bfd->new_timers.required_min_rx = bfd->timers.required_min_rx;
ptm_bfd_snd(bfd, 0);
}
control_notify(bfd);
INFOLOG("Session 0x%x up peer %s", bfd->discrs.my_discr,
satostr(&bfd->shop.peer));
}
void ptm_bfd_ses_dn(struct bfd_session *bfd, uint8_t diag)
{
int old_state = bfd->ses_state;
bfd->local_diag = diag;
bfd->discrs.remote_discr = 0;
bfd->ses_state = PTM_BFD_DOWN;
bfd->polling = 0;
bfd->demand_mode = 0;
monotime(&bfd->downtime);
ptm_bfd_snd(bfd, 0);
/* only signal clients when going from up->down state */
if (old_state == PTM_BFD_UP)
control_notify(bfd);
INFOLOG("Session 0x%x down peer %s Rsn %s prev st %s",
bfd->discrs.my_discr, satostr(&bfd->shop.peer),
get_diag_str(bfd->local_diag), state_list[old_state].str);
/* Stop echo packet transmission if they are active */
if (BFD_CHECK_FLAG(bfd->flags, BFD_SESS_FLAG_ECHO_ACTIVE))
ptm_bfd_echo_stop(bfd, 0);
}
static int ptm_bfd_get_vrf_name(char *port_name, char *vrf_name)
{
struct bfd_iface *iface;
struct bfd_vrf *vrf;
if ((port_name == NULL) || (vrf_name == NULL))
return -1;
iface = bfd_iface_lookup(port_name);
if (iface) {
vrf = bfd_vrf_lookup(iface->vrf_id);
if (vrf) {
strlcpy(vrf_name, vrf->name, sizeof(vrf->name));
return 0;
}
}
return -1;
}
static struct bfd_session *bfd_find_disc(struct sockaddr_any *sa,
uint32_t ldisc)
{
struct bfd_session *bs;
bs = bfd_id_lookup(ldisc);
if (bs == NULL)
return NULL;
/* Remove unused fields. */
switch (sa->sa_sin.sin_family) {
case AF_INET:
sa->sa_sin.sin_port = 0;
if (memcmp(sa, &bs->shop.peer, sizeof(sa->sa_sin)) == 0)
return bs;
break;
case AF_INET6:
sa->sa_sin6.sin6_port = 0;
if (memcmp(sa, &bs->shop.peer, sizeof(sa->sa_sin6)) == 0)
return bs;
break;
}
return NULL;
}
struct bfd_session *ptm_bfd_sess_find(struct bfd_pkt *cp, char *port_name,
struct sockaddr_any *peer,
struct sockaddr_any *local,
char *vrf_name, bool is_mhop)
{
struct bfd_session *l_bfd = NULL;
struct bfd_mhop_key mhop;
struct bfd_shop_key shop;
char vrf_buf[MAXNAMELEN];
/* Find our session using the ID signaled by the remote end. */
if (cp->discrs.remote_discr)
return bfd_find_disc(peer, ntohl(cp->discrs.remote_discr));
/* Search for session without using discriminator. */
if (is_mhop) {
memset(&mhop, 0, sizeof(mhop));
mhop.peer = *peer;
mhop.local = *local;
if (vrf_name && vrf_name[0]) {
strlcpy(mhop.vrf_name, vrf_name, sizeof(mhop.vrf_name));
} else if (port_name && port_name[0]) {
memset(vrf_buf, 0, sizeof(vrf_buf));
if (ptm_bfd_get_vrf_name(port_name, vrf_buf) != -1)
strlcpy(mhop.vrf_name, vrf_buf, sizeof(mhop.vrf_name));
}
l_bfd = bfd_mhop_lookup(mhop);
} else {
memset(&shop, 0, sizeof(shop));
shop.peer = *peer;
if (port_name && port_name[0])
strlcpy(shop.port_name, port_name, sizeof(shop.port_name));
l_bfd = bfd_shop_lookup(shop);
}
/* XXX maybe remoteDiscr should be checked for remoteHeard cases. */
return l_bfd;
}
#if 0 /* TODO VxLAN Support */
static void
_update_vxlan_sess_parms(struct bfd_session *bfd, bfd_sess_parms *sess_parms)
{
struct bfd_session_vxlan_info *vxlan_info = &bfd->vxlan_info;
bfd_parms_list *parms = &sess_parms->parms;
vxlan_info->vnid = parms->vnid;
vxlan_info->check_tnl_key = parms->check_tnl_key;
vxlan_info->forwarding_if_rx = parms->forwarding_if_rx;
vxlan_info->cpath_down = parms->cpath_down;
vxlan_info->decay_min_rx = parms->decay_min_rx;
inet_aton(parms->local_dst_ip, &vxlan_info->local_dst_ip);
inet_aton(parms->remote_dst_ip, &vxlan_info->peer_dst_ip);
memcpy(vxlan_info->local_dst_mac, parms->local_dst_mac, ETH_ALEN);
memcpy(vxlan_info->peer_dst_mac, parms->remote_dst_mac, ETH_ALEN);
/* The interface may change for Vxlan BFD sessions, so update
* the local mac and ifindex
*/
bfd->ifindex = sess_parms->ifindex;
memcpy(bfd->local_mac, sess_parms->local_mac, sizeof(bfd->local_mac));
}
#endif /* VxLAN support */
int bfd_xmt_cb(struct thread *t)
{
struct bfd_session *bs = THREAD_ARG(t);
ptm_bfd_xmt_TO(bs, 0);
return 0;
}
int bfd_echo_xmt_cb(struct thread *t)
{
struct bfd_session *bs = THREAD_ARG(t);
ptm_bfd_echo_xmt_TO(bs);
return 0;
}
/* Was ptm_bfd_detect_TO() */
int bfd_recvtimer_cb(struct thread *t)
{
struct bfd_session *bs = THREAD_ARG(t);
uint8_t old_state;
old_state = bs->ses_state;
switch (bs->ses_state) {
case PTM_BFD_INIT:
case PTM_BFD_UP:
ptm_bfd_ses_dn(bs, BFD_DIAGDETECTTIME);
INFOLOG("%s Detect timeout on session 0x%x with peer %s, in state %d",
__func__, bs->discrs.my_discr, satostr(&bs->shop.peer),
bs->ses_state);
bfd_recvtimer_update(bs);
break;
default:
/* Second detect time expiration, zero remote discr (section
* 6.5.1)
*/
bs->discrs.remote_discr = 0;
break;
}
if (old_state != bs->ses_state) {
DLOG("BFD Sess %d [%s] Old State [%s] : New State [%s]",
bs->discrs.my_discr, satostr(&bs->shop.peer),
state_list[old_state].str, state_list[bs->ses_state].str);
}
return 0;
}
/* Was ptm_bfd_echo_detect_TO() */
int bfd_echo_recvtimer_cb(struct thread *t)
{
struct bfd_session *bs = THREAD_ARG(t);
uint8_t old_state;
old_state = bs->ses_state;
switch (bs->ses_state) {
case PTM_BFD_INIT:
case PTM_BFD_UP:
ptm_bfd_ses_dn(bs, BFD_DIAGDETECTTIME);
INFOLOG("%s Detect timeout on session 0x%x with peer %s, in state %d",
__func__, bs->discrs.my_discr, satostr(&bs->shop.peer),
bs->ses_state);
break;
}
if (old_state != bs->ses_state) {
DLOG("BFD Sess %d [%s] Old State [%s] : New State [%s]",
bs->discrs.my_discr, satostr(&bs->shop.peer),
state_list[old_state].str, state_list[bs->ses_state].str);
}
return 0;
}
static struct bfd_session *bfd_session_new(int sd)
{
struct bfd_session *bs;
bs = XCALLOC(MTYPE_BFDD_CONFIG, sizeof(*bs));
if (bs == NULL)
return NULL;
QOBJ_REG(bs, bfd_session);
bs->up_min_tx = BFD_DEFDESIREDMINTX;
bs->timers.required_min_rx = BFD_DEFREQUIREDMINRX;
bs->timers.required_min_echo = BFD_DEF_REQ_MIN_ECHO;
bs->detect_mult = BFD_DEFDETECTMULT;
bs->mh_ttl = BFD_DEF_MHOP_TTL;
bs->sock = sd;
monotime(&bs->uptime);
bs->downtime = bs->uptime;
return bs;
}
int bfd_session_update_label(struct bfd_session *bs, const char *nlabel)
{
/* New label treatment:
* - Check if the label is taken;
* - Try to allocate the memory for it and register;
*/
if (bs->pl == NULL) {
if (pl_find(nlabel) != NULL) {
/* Someone is already using it. */
return -1;
}
if (pl_new(nlabel, bs) == NULL)
return -1;
return 0;
}
/*
* Test label change consistency:
* - Do nothing if it's the same label;
* - Check if the future label is already taken;
* - Change label;
*/
if (strcmp(nlabel, bs->pl->pl_label) == 0)
return -1;
if (pl_find(nlabel) != NULL)
return -1;
strlcpy(bs->pl->pl_label, nlabel, sizeof(bs->pl->pl_label));
return 0;
}
static void _bfd_session_update(struct bfd_session *bs,
struct bfd_peer_cfg *bpc)
{
if (bpc->bpc_echo) {
/* Check if echo mode is already active. */
if (BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_ECHO))
goto skip_echo;
BFD_SET_FLAG(bs->flags, BFD_SESS_FLAG_ECHO);
ptm_bfd_echo_start(bs);
/* Activate/update echo receive timeout timer. */
bfd_echo_recvtimer_update(bs);
} else {
/* Check if echo mode is already disabled. */
if (!BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_ECHO))
goto skip_echo;
BFD_UNSET_FLAG(bs->flags, BFD_SESS_FLAG_ECHO);
ptm_bfd_echo_stop(bs, 0);
}
skip_echo:
if (bpc->bpc_has_txinterval)
bs->up_min_tx = bpc->bpc_txinterval * 1000;
if (bpc->bpc_has_recvinterval)
bs->timers.required_min_rx = bpc->bpc_recvinterval * 1000;
if (bpc->bpc_has_detectmultiplier)
bs->detect_mult = bpc->bpc_detectmultiplier;
if (bpc->bpc_has_echointerval)
bs->timers.required_min_echo = bpc->bpc_echointerval * 1000;
if (bpc->bpc_has_label)
bfd_session_update_label(bs, bpc->bpc_label);
if (bpc->bpc_shutdown) {
/* Check if already shutdown. */
if (BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_SHUTDOWN))
return;
BFD_SET_FLAG(bs->flags, BFD_SESS_FLAG_SHUTDOWN);
/* Disable all events. */
bfd_recvtimer_delete(bs);
bfd_echo_recvtimer_delete(bs);
bfd_xmttimer_delete(bs);
bfd_echo_xmttimer_delete(bs);
/* Change and notify state change. */
bs->ses_state = PTM_BFD_ADM_DOWN;
control_notify(bs);
ptm_bfd_snd(bs, 0);
} else {
/* Check if already working. */
if (!BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_SHUTDOWN))
return;
BFD_UNSET_FLAG(bs->flags, BFD_SESS_FLAG_SHUTDOWN);
/* Change and notify state change. */
bs->ses_state = PTM_BFD_DOWN;
control_notify(bs);
/* Enable all timers. */
bfd_recvtimer_update(bs);
bfd_xmttimer_update(bs, bs->xmt_TO);
if (BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_ECHO)) {
bfd_echo_recvtimer_update(bs);
bfd_echo_xmttimer_update(bs, bs->echo_xmt_TO);
}
}
}
static int bfd_session_update(struct bfd_session *bs, struct bfd_peer_cfg *bpc)
{
/* User didn't want to update, return failure. */
if (bpc->bpc_createonly)
return -1;
_bfd_session_update(bs, bpc);
/* TODO add VxLAN support. */
control_notify_config(BCM_NOTIFY_CONFIG_UPDATE, bs);
return 0;
}
static void bfd_session_free(struct bfd_session *bs)
{
if (bs->sock != -1)
close(bs->sock);
bfd_recvtimer_delete(bs);
bfd_echo_recvtimer_delete(bs);
bfd_xmttimer_delete(bs);
bfd_echo_xmttimer_delete(bs);
bfd_id_delete(bs->discrs.my_discr);
if (BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_MH))
bfd_mhop_delete(bs->mhop);
else
bfd_shop_delete(bs->shop);
pl_free(bs->pl);
QOBJ_UNREG(bs);
XFREE(MTYPE_BFDD_CONFIG, bs);
}
struct bfd_session *ptm_bfd_sess_new(struct bfd_peer_cfg *bpc)
{
struct bfd_session *bfd, *l_bfd;
int psock;
/* check to see if this needs a new session */
l_bfd = bs_peer_find(bpc);
if (l_bfd) {
/* Requesting a duplicated peer means update configuration. */
if (bfd_session_update(l_bfd, bpc) == 0)
return l_bfd;
else
return NULL;
}
/*
* Get socket for transmitting control packets. Note that if we
* could use the destination port (3784) for the source
* port we wouldn't need a socket per session.
*/
if (bpc->bpc_ipv4) {
psock = bp_peer_socket(bpc);
if (psock == -1) {
ERRLOG("Can't get socket for new session: %s",
strerror(errno));
return NULL;
}
} else {
psock = bp_peer_socketv6(bpc);
if (psock == -1) {
ERRLOG("Can't get IPv6 socket for new session: %s",
strerror(errno));
return NULL;
}
}
/* Get memory */
bfd = bfd_session_new(psock);
if (bfd == NULL) {
ERRLOG("Can't malloc memory for new session: %s",
strerror(errno));
return NULL;
}
if (bpc->bpc_has_localif && !bpc->bpc_mhop) {
bfd->ifindex = ptm_bfd_fetch_ifindex(bpc->bpc_localif);
ptm_bfd_fetch_local_mac(bpc->bpc_localif, bfd->local_mac);
}
if (bpc->bpc_has_vxlan)
BFD_SET_FLAG(bfd->flags, BFD_SESS_FLAG_VXLAN);
if (bpc->bpc_ipv4 == false)
BFD_SET_FLAG(bfd->flags, BFD_SESS_FLAG_IPV6);
/* Initialize the session */
bfd->ses_state = PTM_BFD_DOWN;
bfd->discrs.my_discr = ptm_bfd_gen_ID();
bfd->discrs.remote_discr = 0;
bfd->local_ip = bpc->bpc_local;
bfd->local_address = bpc->bpc_local;
bfd->timers.desired_min_tx = bfd->up_min_tx;
bfd->detect_TO = (bfd->detect_mult * BFD_DEF_SLOWTX);
/* Use detect_TO first for slow detection, then use recvtimer_update. */
bfd_recvtimer_update(bfd);
bfd_id_insert(bfd);
if (bpc->bpc_mhop) {
BFD_SET_FLAG(bfd->flags, BFD_SESS_FLAG_MH);
bfd->mhop.peer = bpc->bpc_peer;
bfd->mhop.local = bpc->bpc_local;
if (bpc->bpc_has_vrfname)
strlcpy(bfd->mhop.vrf_name, bpc->bpc_vrfname,
sizeof(bfd->mhop.vrf_name));
bfd_mhop_insert(bfd);
} else {
bfd->shop.peer = bpc->bpc_peer;
if (!bpc->bpc_has_vxlan && bpc->bpc_has_localif)
strlcpy(bfd->shop.port_name, bpc->bpc_localif,
sizeof(bfd->shop.port_name));
bfd_shop_insert(bfd);
}
if (BFD_CHECK_FLAG(bfd->flags, BFD_SESS_FLAG_VXLAN)) {
static uint8_t bfd_def_vxlan_dmac[] = {0x00, 0x23, 0x20,
0x00, 0x00, 0x01};
memcpy(bfd->peer_mac, bfd_def_vxlan_dmac,
sizeof(bfd_def_vxlan_dmac));
}
#if 0 /* TODO */
else if (event->rmac) {
if (sscanf(event->rmac, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx",
&bfd->peer_mac[0], &bfd->peer_mac[1], &bfd->peer_mac[2],
&bfd->peer_mac[3], &bfd->peer_mac[4], &bfd->peer_mac[5])
!= 6)
DLOG("%s: Assigning remote mac = %s", __func__,
event->rmac);
}
#endif
/*
* XXX: session update triggers echo start, so we must have our
* discriminator ID set first.
*/
_bfd_session_update(bfd, bpc);
/* Start transmitting with slow interval until peer responds */
bfd->xmt_TO = BFD_DEF_SLOWTX;
ptm_bfd_xmt_TO(bfd, 0);
if (bpc->bpc_mhop) {
INFOLOG("Created new session 0x%x with vrf %s peer %s local %s",
bfd->discrs.my_discr,
(bpc->bpc_has_vrfname) ? bfd->mhop.vrf_name : "N/A",
satostr(&bfd->mhop.peer), satostr(&bfd->mhop.local));
} else {
INFOLOG("Created new session 0x%x with peer %s port %s",
bfd->discrs.my_discr, satostr(&bfd->shop.peer),
bfd->shop.port_name[0] ? bfd->shop.port_name : "N/A");
}
control_notify_config(BCM_NOTIFY_CONFIG_ADD, bfd);
return bfd;
}
int ptm_bfd_ses_del(struct bfd_peer_cfg *bpc)
{
struct bfd_session *bs;
/* Find session and call free(). */
bs = bs_peer_find(bpc);
if (bs == NULL)
return -1;
/* This pointer is being referenced, don't let it be deleted. */
if (bs->refcount > 0) {
zlog_debug("%s: trying to free in-use session: %" PRIu64
" references",
__func__, bs->refcount);
return -1;
}
if (BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_MH)) {
INFOLOG("Deleting session 0x%x with vrf %s peer %s local %s",
bs->discrs.my_discr,
bpc->bpc_has_vrfname ? bpc->bpc_vrfname : "N/A",
satostr(&bs->mhop.peer), satostr(&bs->mhop.local));
} else {
INFOLOG("Deleting session 0x%x with peer %s port %s",
bs->discrs.my_discr, satostr(&bs->shop.peer),
bs->shop.port_name);
}
control_notify_config(BCM_NOTIFY_CONFIG_DELETE, bs);
bfd_session_free(bs);
return 0;
}
void bfd_set_polling(struct bfd_session *bs)
{
bs->new_timers.desired_min_tx = bs->up_min_tx;
bs->new_timers.required_min_rx = bs->timers.required_min_rx;
bs->new_timers.required_min_echo = bs->timers.required_min_echo;
bs->polling = 1;
}
/*
* Helper functions.
*/
static const char *get_diag_str(int diag)
{
for (int i = 0; diag_list[i].str; i++) {
if (diag_list[i].type == diag)
return diag_list[i].str;
}
return "N/A";
}
const char *satostr(struct sockaddr_any *sa)
{
#define INETSTR_BUFCOUNT 8
static char buf[INETSTR_BUFCOUNT][INET6_ADDRSTRLEN];
static int bufidx;
struct sockaddr_in *sin = &sa->sa_sin;
struct sockaddr_in6 *sin6 = &sa->sa_sin6;
bufidx += (bufidx + 1) % INETSTR_BUFCOUNT;
buf[bufidx][0] = 0;
switch (sin->sin_family) {
case AF_INET:
inet_ntop(AF_INET, &sin->sin_addr, buf[bufidx],
sizeof(buf[bufidx]));
break;
case AF_INET6:
inet_ntop(AF_INET6, &sin6->sin6_addr, buf[bufidx],
sizeof(buf[bufidx]));
break;
default:
strlcpy(buf[bufidx], "unknown", sizeof(buf[bufidx]));
break;
}
return buf[bufidx];
}
const char *diag2str(uint8_t diag)
{
switch (diag) {
case 0:
return "ok";
case 1:
return "control detection time expired";
case 2:
return "echo function failed";
case 3:
return "neighbor signaled session down";
case 4:
return "forwarding plane reset";
case 5:
return "path down";
case 6:
return "concatenated path down";
case 7:
return "administratively down";
case 8:
return "reverse concatenated path down";
default:
return "unknown";
}
}
int strtosa(const char *addr, struct sockaddr_any *sa)
{
memset(sa, 0, sizeof(*sa));
if (inet_pton(AF_INET, addr, &sa->sa_sin.sin_addr) == 1) {
sa->sa_sin.sin_family = AF_INET;
#ifdef HAVE_STRUCT_SOCKADDR_SA_LEN
sa->sa_sin.sin_len = sizeof(sa->sa_sin);
#endif /* HAVE_STRUCT_SOCKADDR_SA_LEN */
return 0;
}
if (inet_pton(AF_INET6, addr, &sa->sa_sin6.sin6_addr) == 1) {
sa->sa_sin6.sin6_family = AF_INET6;
#ifdef HAVE_STRUCT_SOCKADDR_SA_LEN
sa->sa_sin6.sin6_len = sizeof(sa->sa_sin6);
#endif /* HAVE_STRUCT_SOCKADDR_SA_LEN */
return 0;
}
return -1;
}
void integer2timestr(uint64_t time, char *buf, size_t buflen)
{
unsigned int year, month, day, hour, minute, second;
int rv;
#define MINUTES (60)
#define HOURS (24 * MINUTES)
#define DAYS (30 * HOURS)
#define MONTHS (12 * DAYS)
#define YEARS (MONTHS)
if (time >= YEARS) {
year = time / YEARS;
time -= year * YEARS;
rv = snprintf(buf, buflen, "%u year(s), ", year);
buf += rv;
buflen -= rv;
}
if (time >= MONTHS) {
month = time / MONTHS;
time -= month * MONTHS;
rv = snprintf(buf, buflen, "%u month(s), ", month);
buf += rv;
buflen -= rv;
}
if (time >= DAYS) {
day = time / DAYS;
time -= day * DAYS;
rv = snprintf(buf, buflen, "%u day(s), ", day);
buf += rv;
buflen -= rv;
}
if (time >= HOURS) {
hour = time / HOURS;
time -= hour * HOURS;
rv = snprintf(buf, buflen, "%u hour(s), ", hour);
buf += rv;
buflen -= rv;
}
if (time >= MINUTES) {
minute = time / MINUTES;
time -= minute * MINUTES;
rv = snprintf(buf, buflen, "%u minute(s), ", minute);
buf += rv;
buflen -= rv;
}
second = time % MINUTES;
snprintf(buf, buflen, "%u second(s)", second);
}
/*
* BFD hash data structures to find sessions.
*/
static struct hash *bfd_id_hash;
static struct hash *bfd_shop_hash;
static struct hash *bfd_mhop_hash;
static struct hash *bfd_vrf_hash;
static struct hash *bfd_iface_hash;
static unsigned int bfd_id_hash_do(void *p);
static int bfd_id_hash_cmp(const void *n1, const void *n2);
static unsigned int bfd_shop_hash_do(void *p);
static int bfd_shop_hash_cmp(const void *n1, const void *n2);
static unsigned int bfd_mhop_hash_do(void *p);
static int bfd_mhop_hash_cmp(const void *n1, const void *n2);
static unsigned int bfd_vrf_hash_do(void *p);
static int bfd_vrf_hash_cmp(const void *n1, const void *n2);
static unsigned int bfd_iface_hash_do(void *p);
static int bfd_iface_hash_cmp(const void *n1, const void *n2);
static void _shop_key(struct bfd_session *bs, const struct bfd_shop_key *shop);
static void _shop_key2(struct bfd_session *bs, const struct bfd_shop_key *shop);
static void _mhop_key(struct bfd_session *bs, const struct bfd_mhop_key *mhop);
static int _iface_key(struct bfd_iface *iface, const char *ifname);
static void _bfd_free(struct hash_backet *hb,
void *arg __attribute__((__unused__)));
static void _vrf_free(void *arg);
static void _iface_free(void *arg);
/* BFD hash for our discriminator. */
static unsigned int bfd_id_hash_do(void *p)
{
struct bfd_session *bs = p;
return jhash_1word(bs->discrs.my_discr, 0);
}
static int bfd_id_hash_cmp(const void *n1, const void *n2)
{
const struct bfd_session *bs1 = n1, *bs2 = n2;
return bs1->discrs.my_discr == bs2->discrs.my_discr;
}
/* BFD hash for single hop. */
static unsigned int bfd_shop_hash_do(void *p)
{
struct bfd_session *bs = p;
return jhash(&bs->shop, sizeof(bs->shop), 0);
}
static int bfd_shop_hash_cmp(const void *n1, const void *n2)
{
const struct bfd_session *bs1 = n1, *bs2 = n2;
return memcmp(&bs1->shop, &bs2->shop, sizeof(bs1->shop)) == 0;
}
/* BFD hash for multi hop. */
static unsigned int bfd_mhop_hash_do(void *p)
{
struct bfd_session *bs = p;
return jhash(&bs->mhop, sizeof(bs->mhop), 0);
}
static int bfd_mhop_hash_cmp(const void *n1, const void *n2)
{
const struct bfd_session *bs1 = n1, *bs2 = n2;
return memcmp(&bs1->mhop, &bs2->mhop, sizeof(bs1->mhop)) == 0;
}
/* BFD hash for VRFs. */
static unsigned int bfd_vrf_hash_do(void *p)
{
struct bfd_vrf *vrf = p;
return jhash_1word(vrf->vrf_id, 0);
}
static int bfd_vrf_hash_cmp(const void *n1, const void *n2)
{
const struct bfd_vrf *v1 = n1, *v2 = n2;
return v1->vrf_id == v2->vrf_id;
}
/* BFD hash for interfaces. */
static unsigned int bfd_iface_hash_do(void *p)
{
struct bfd_iface *iface = p;
return string_hash_make(iface->ifname);
}
static int bfd_iface_hash_cmp(const void *n1, const void *n2)
{
const struct bfd_iface *i1 = n1, *i2 = n2;
return strcmp(i1->ifname, i2->ifname) == 0;
}
/* Helper functions */
static void _shop_key(struct bfd_session *bs, const struct bfd_shop_key *shop)
{
bs->shop = *shop;
/* Remove unused fields. */
switch (bs->shop.peer.sa_sin.sin_family) {
case AF_INET:
bs->shop.peer.sa_sin.sin_port = 0;
break;
case AF_INET6:
bs->shop.peer.sa_sin6.sin6_port = 0;
break;
}
}
static void _shop_key2(struct bfd_session *bs, const struct bfd_shop_key *shop)
{
_shop_key(bs, shop);
memset(bs->shop.port_name, 0, sizeof(bs->shop.port_name));
}
static void _mhop_key(struct bfd_session *bs, const struct bfd_mhop_key *mhop)
{
bs->mhop = *mhop;
/* Remove unused fields. */
switch (bs->mhop.peer.sa_sin.sin_family) {
case AF_INET:
bs->mhop.peer.sa_sin.sin_port = 0;
bs->mhop.local.sa_sin.sin_port = 0;
break;
case AF_INET6:
bs->mhop.peer.sa_sin6.sin6_port = 0;
bs->mhop.local.sa_sin6.sin6_port = 0;
break;
}
}
static int _iface_key(struct bfd_iface *iface, const char *ifname)
{
size_t slen = sizeof(iface->ifname);
memset(iface->ifname, 0, slen);
if (strlcpy(iface->ifname, ifname, slen) >= slen)
return -1;
return 0;
}
/*
* Hash public interface / exported functions.
*/
/* Lookup functions. */
struct bfd_session *bfd_id_lookup(uint32_t id)
{
struct bfd_session bs;
bs.discrs.my_discr = id;
return hash_lookup(bfd_id_hash, &bs);
}
struct bfd_session *bfd_shop_lookup(struct bfd_shop_key shop)
{
struct bfd_session bs, *bsp;
_shop_key(&bs, &shop);
bsp = hash_lookup(bfd_shop_hash, &bs);
if (bsp == NULL && bs.shop.port_name[0] != 0) {
/*
* Since the local interface spec is optional, try
* searching the key without it as well.
*/
_shop_key2(&bs, &shop);
bsp = hash_lookup(bfd_shop_hash, &bs);
}
return bsp;
}
struct bfd_session *bfd_mhop_lookup(struct bfd_mhop_key mhop)
{
struct bfd_session bs;
_mhop_key(&bs, &mhop);
return hash_lookup(bfd_shop_hash, &bs);
}
struct bfd_vrf *bfd_vrf_lookup(int vrf_id)
{
struct bfd_vrf vrf;
vrf.vrf_id = vrf_id;
return hash_lookup(bfd_vrf_hash, &vrf);
}
struct bfd_iface *bfd_iface_lookup(const char *ifname)
{
struct bfd_iface iface;
if (_iface_key(&iface, ifname) != 0)
return NULL;
return hash_lookup(bfd_iface_hash, &iface);
}
/*
* Delete functions.
*
* Delete functions searches and remove the item from the hash and
* returns a pointer to the removed item data. If the item was not found
* then it returns NULL.
*
* The data stored inside the hash is not free()ed, so you must do it
* manually after getting the pointer back.
*/
struct bfd_session *bfd_id_delete(uint32_t id)
{
struct bfd_session bs;
bs.discrs.my_discr = id;
return hash_release(bfd_id_hash, &bs);
}
struct bfd_session *bfd_shop_delete(struct bfd_shop_key shop)
{
struct bfd_session bs, *bsp;
_shop_key(&bs, &shop);
bsp = hash_release(bfd_shop_hash, &bs);
if (bsp == NULL && shop.port_name[0] != 0) {
/*
* Since the local interface spec is optional, try
* searching the key without it as well.
*/
_shop_key2(&bs, &shop);
bsp = hash_release(bfd_shop_hash, &bs);
}
return bsp;
}
struct bfd_session *bfd_mhop_delete(struct bfd_mhop_key mhop)
{
struct bfd_session bs;
_mhop_key(&bs, &mhop);
return hash_release(bfd_mhop_hash, &bs);
}
struct bfd_vrf *bfd_vrf_delete(int vrf_id)
{
struct bfd_vrf vrf;
vrf.vrf_id = vrf_id;
return hash_release(bfd_vrf_hash, &vrf);
}
struct bfd_iface *bfd_iface_delete(const char *ifname)
{
struct bfd_iface iface;
if (_iface_key(&iface, ifname) != 0)
return NULL;
return hash_release(bfd_iface_hash, &iface);
}
/* Iteration functions. */
void bfd_id_iterate(hash_iter_func hif, void *arg)
{
hash_iterate(bfd_id_hash, hif, arg);
}
void bfd_shop_iterate(hash_iter_func hif, void *arg)
{
hash_iterate(bfd_shop_hash, hif, arg);
}
void bfd_mhop_iterate(hash_iter_func hif, void *arg)
{
hash_iterate(bfd_mhop_hash, hif, arg);
}
void bfd_vrf_iterate(hash_iter_func hif, void *arg)
{
hash_iterate(bfd_vrf_hash, hif, arg);
}
void bfd_iface_iterate(hash_iter_func hif, void *arg)
{
hash_iterate(bfd_iface_hash, hif, arg);
}
/*
* Insert functions.
*
* Inserts session into hash and returns `true` on success, otherwise
* `false`.
*/
bool bfd_id_insert(struct bfd_session *bs)
{
return (hash_get(bfd_id_hash, bs, hash_alloc_intern) == bs);
}
bool bfd_shop_insert(struct bfd_session *bs)
{
return (hash_get(bfd_shop_hash, bs, hash_alloc_intern) == bs);
}
bool bfd_mhop_insert(struct bfd_session *bs)
{
return (hash_get(bfd_mhop_hash, bs, hash_alloc_intern) == bs);
}
bool bfd_vrf_insert(struct bfd_vrf *vrf)
{
return (hash_get(bfd_vrf_hash, vrf, hash_alloc_intern) == vrf);
}
bool bfd_iface_insert(struct bfd_iface *iface)
{
return (hash_get(bfd_iface_hash, iface, hash_alloc_intern) == iface);
}
void bfd_initialize(void)
{
bfd_id_hash = hash_create(bfd_id_hash_do, bfd_id_hash_cmp,
"BFD discriminator hash");
bfd_shop_hash = hash_create(bfd_shop_hash_do, bfd_shop_hash_cmp,
"BFD single hop hash");
bfd_mhop_hash = hash_create(bfd_mhop_hash_do, bfd_mhop_hash_cmp,
"BFD multihop hop hash");
bfd_vrf_hash =
hash_create(bfd_vrf_hash_do, bfd_vrf_hash_cmp, "BFD VRF hash");
bfd_iface_hash = hash_create(bfd_iface_hash_do, bfd_iface_hash_cmp,
"BFD interface hash");
}
static void _bfd_free(struct hash_backet *hb,
void *arg __attribute__((__unused__)))
{
struct bfd_session *bs = hb->data;
bfd_session_free(bs);
}
static void _vrf_free(void *arg)
{
struct bfd_vrf *vrf = arg;
XFREE(MTYPE_BFDD_CONFIG, vrf);
}
static void _iface_free(void *arg)
{
struct bfd_iface *iface = arg;
XFREE(MTYPE_BFDD_CONFIG, iface);
}
void bfd_shutdown(void)
{
/*
* Close and free all BFD sessions.
*
* _bfd_free() will call bfd_session_free() which will take care
* of removing the session from all hashes, so we just run an
* assert() here to make sure it really happened.
*/
bfd_id_iterate(_bfd_free, NULL);
assert(bfd_shop_hash->count == 0);
assert(bfd_mhop_hash->count == 0);
/* Clean the VRF and interface hashes. */
hash_clean(bfd_vrf_hash, _vrf_free);
hash_clean(bfd_iface_hash, _iface_free);
/* Now free the hashes themselves. */
hash_free(bfd_id_hash);
hash_free(bfd_shop_hash);
hash_free(bfd_mhop_hash);
hash_free(bfd_vrf_hash);
hash_free(bfd_iface_hash);
}
|