]> git.proxmox.com Git - mirror_frr.git/blob - bfdd/bfd.c
Merge pull request #11566 from louis-6wind/rename-mplsvpn
[mirror_frr.git] / bfdd / bfd.c
1 /*********************************************************************
2 * Copyright 2013 Cumulus Networks, LLC. All rights reserved.
3 * Copyright 2014,2015,2016,2017 Cumulus Networks, Inc. All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the Free
7 * Software Foundation; either version 2 of the License, or (at your option)
8 * any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; see the file COPYING; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 *
19 * bfd.c: implements the BFD protocol.
20 *
21 * Authors
22 * -------
23 * Shrijeet Mukherjee [shm@cumulusnetworks.com]
24 * Kanna Rajagopal [kanna@cumulusnetworks.com]
25 * Radhika Mahankali [Radhika@cumulusnetworks.com]
26 */
27
28 #include <zebra.h>
29
30 #include "lib/jhash.h"
31 #include "lib/network.h"
32
33 #include "bfd.h"
34
35 DEFINE_MTYPE_STATIC(BFDD, BFDD_CONFIG, "long-lived configuration memory");
36 DEFINE_MTYPE_STATIC(BFDD, BFDD_PROFILE, "long-lived profile memory");
37 DEFINE_MTYPE_STATIC(BFDD, BFDD_SESSION_OBSERVER, "Session observer");
38 DEFINE_MTYPE_STATIC(BFDD, BFDD_VRF, "BFD VRF");
39
40 /*
41 * Prototypes
42 */
43 static uint32_t ptm_bfd_gen_ID(void);
44 static void ptm_bfd_echo_xmt_TO(struct bfd_session *bfd);
45 static struct bfd_session *bfd_find_disc(struct sockaddr_any *sa,
46 uint32_t ldisc);
47 static int bfd_session_update(struct bfd_session *bs, struct bfd_peer_cfg *bpc);
48 static const char *get_diag_str(int diag);
49
50 static void bs_admin_down_handler(struct bfd_session *bs, int nstate);
51 static void bs_down_handler(struct bfd_session *bs, int nstate);
52 static void bs_init_handler(struct bfd_session *bs, int nstate);
53 static void bs_up_handler(struct bfd_session *bs, int nstate);
54
55 /**
56 * Remove BFD profile from all BFD sessions so we don't leave dangling
57 * pointers.
58 */
59 static void bfd_profile_detach(struct bfd_profile *bp);
60
61 /* Zeroed array with the size of an IPv6 address. */
62 struct in6_addr zero_addr;
63
64 /** BFD profiles list. */
65 struct bfdproflist bplist;
66
67 /*
68 * Functions
69 */
70 struct bfd_profile *bfd_profile_lookup(const char *name)
71 {
72 struct bfd_profile *bp;
73
74 TAILQ_FOREACH (bp, &bplist, entry) {
75 if (strcmp(name, bp->name))
76 continue;
77
78 return bp;
79 }
80
81 return NULL;
82 }
83
84 static void bfd_profile_set_default(struct bfd_profile *bp)
85 {
86 bp->admin_shutdown = false;
87 bp->detection_multiplier = BFD_DEFDETECTMULT;
88 bp->echo_mode = false;
89 bp->passive = false;
90 bp->minimum_ttl = BFD_DEF_MHOP_TTL;
91 bp->min_echo_rx = BFD_DEF_REQ_MIN_ECHO_RX;
92 bp->min_echo_tx = BFD_DEF_DES_MIN_ECHO_TX;
93 bp->min_rx = BFD_DEFREQUIREDMINRX;
94 bp->min_tx = BFD_DEFDESIREDMINTX;
95 }
96
97 struct bfd_profile *bfd_profile_new(const char *name)
98 {
99 struct bfd_profile *bp;
100
101 /* Search for duplicates. */
102 if (bfd_profile_lookup(name) != NULL)
103 return NULL;
104
105 /* Allocate, name it and put into list. */
106 bp = XCALLOC(MTYPE_BFDD_PROFILE, sizeof(*bp));
107 strlcpy(bp->name, name, sizeof(bp->name));
108 TAILQ_INSERT_TAIL(&bplist, bp, entry);
109
110 /* Set default values. */
111 bfd_profile_set_default(bp);
112
113 return bp;
114 }
115
116 void bfd_profile_free(struct bfd_profile *bp)
117 {
118 /* Detach from any session. */
119 if (bglobal.bg_shutdown == false)
120 bfd_profile_detach(bp);
121
122 /* Remove from global list. */
123 TAILQ_REMOVE(&bplist, bp, entry);
124
125 XFREE(MTYPE_BFDD_PROFILE, bp);
126 }
127
128 void bfd_profile_apply(const char *profname, struct bfd_session *bs)
129 {
130 struct bfd_profile *bp;
131
132 /* Remove previous profile if any. */
133 if (bs->profile_name) {
134 /* We are changing profiles. */
135 if (strcmp(bs->profile_name, profname)) {
136 XFREE(MTYPE_BFDD_PROFILE, bs->profile_name);
137 bs->profile_name =
138 XSTRDUP(MTYPE_BFDD_PROFILE, profname);
139 }
140 } else /* Save the current profile name (in case it doesn't exist). */
141 bs->profile_name = XSTRDUP(MTYPE_BFDD_PROFILE, profname);
142
143 /* Look up new profile to apply. */
144 bp = bfd_profile_lookup(profname);
145
146 /* Point to profile if it exists. */
147 bs->profile = bp;
148
149 /* Apply configuration. */
150 bfd_session_apply(bs);
151 }
152
153 void bfd_session_apply(struct bfd_session *bs)
154 {
155 struct bfd_profile *bp;
156 uint32_t min_tx = bs->timers.desired_min_tx;
157 uint32_t min_rx = bs->timers.required_min_rx;
158
159 /* Pick the source of configuration. */
160 bp = bs->profile ? bs->profile : &bs->peer_profile;
161
162 /* Set multiplier if not the default. */
163 if (bs->peer_profile.detection_multiplier == BFD_DEFDETECTMULT)
164 bs->detect_mult = bp->detection_multiplier;
165 else
166 bs->detect_mult = bs->peer_profile.detection_multiplier;
167
168 /* Set timers if not the default. */
169 if (bs->peer_profile.min_tx == BFD_DEFDESIREDMINTX)
170 bs->timers.desired_min_tx = bp->min_tx;
171 else
172 bs->timers.desired_min_tx = bs->peer_profile.min_tx;
173
174 if (bs->peer_profile.min_rx == BFD_DEFREQUIREDMINRX)
175 bs->timers.required_min_rx = bp->min_rx;
176 else
177 bs->timers.required_min_rx = bs->peer_profile.min_rx;
178
179 /* We can only apply echo options on single hop sessions. */
180 if (!CHECK_FLAG(bs->flags, BFD_SESS_FLAG_MH)) {
181 /* Configure echo timers if they were default. */
182 if (bs->peer_profile.min_echo_rx == BFD_DEF_REQ_MIN_ECHO_RX)
183 bs->timers.required_min_echo_rx = bp->min_echo_rx;
184 else
185 bs->timers.required_min_echo_rx =
186 bs->peer_profile.min_echo_rx;
187
188 if (bs->peer_profile.min_echo_tx == BFD_DEF_DES_MIN_ECHO_TX)
189 bs->timers.desired_min_echo_tx = bp->min_echo_tx;
190 else
191 bs->timers.desired_min_echo_tx =
192 bs->peer_profile.min_echo_tx;
193
194 /* Toggle echo if default value. */
195 if (bs->peer_profile.echo_mode == false)
196 bfd_set_echo(bs, bp->echo_mode);
197 else
198 bfd_set_echo(bs, bs->peer_profile.echo_mode);
199 } else {
200 /* Configure the TTL packet filter. */
201 if (bs->peer_profile.minimum_ttl == BFD_DEF_MHOP_TTL)
202 bs->mh_ttl = bp->minimum_ttl;
203 else
204 bs->mh_ttl = bs->peer_profile.minimum_ttl;
205 }
206
207 /* Toggle 'passive-mode' if default value. */
208 if (bs->peer_profile.passive == false)
209 bfd_set_passive_mode(bs, bp->passive);
210 else
211 bfd_set_passive_mode(bs, bs->peer_profile.passive);
212
213 /* Toggle 'no shutdown' if default value. */
214 if (bs->peer_profile.admin_shutdown == false)
215 bfd_set_shutdown(bs, bp->admin_shutdown);
216 else
217 bfd_set_shutdown(bs, bs->peer_profile.admin_shutdown);
218
219 /* If session interval changed negotiate new timers. */
220 if (bs->ses_state == PTM_BFD_UP
221 && (bs->timers.desired_min_tx != min_tx
222 || bs->timers.required_min_rx != min_rx))
223 bfd_set_polling(bs);
224
225 /* Send updated information to data plane. */
226 bfd_dplane_update_session(bs);
227 }
228
229 void bfd_profile_remove(struct bfd_session *bs)
230 {
231 /* Remove any previous set profile name. */
232 XFREE(MTYPE_BFDD_PROFILE, bs->profile_name);
233 bs->profile = NULL;
234
235 bfd_session_apply(bs);
236 }
237
238 void gen_bfd_key(struct bfd_key *key, struct sockaddr_any *peer,
239 struct sockaddr_any *local, bool mhop, const char *ifname,
240 const char *vrfname)
241 {
242 memset(key, 0, sizeof(*key));
243
244 switch (peer->sa_sin.sin_family) {
245 case AF_INET:
246 key->family = AF_INET;
247 memcpy(&key->peer, &peer->sa_sin.sin_addr,
248 sizeof(peer->sa_sin.sin_addr));
249 memcpy(&key->local, &local->sa_sin.sin_addr,
250 sizeof(local->sa_sin.sin_addr));
251 break;
252 case AF_INET6:
253 key->family = AF_INET6;
254 memcpy(&key->peer, &peer->sa_sin6.sin6_addr,
255 sizeof(peer->sa_sin6.sin6_addr));
256 memcpy(&key->local, &local->sa_sin6.sin6_addr,
257 sizeof(local->sa_sin6.sin6_addr));
258 break;
259 }
260
261 key->mhop = mhop;
262 if (ifname && ifname[0])
263 strlcpy(key->ifname, ifname, sizeof(key->ifname));
264 if (vrfname && vrfname[0])
265 strlcpy(key->vrfname, vrfname, sizeof(key->vrfname));
266 else
267 strlcpy(key->vrfname, VRF_DEFAULT_NAME, sizeof(key->vrfname));
268 }
269
270 struct bfd_session *bs_peer_find(struct bfd_peer_cfg *bpc)
271 {
272 struct bfd_session *bs;
273 struct peer_label *pl;
274 struct bfd_key key;
275
276 /* Try to find label first. */
277 if (bpc->bpc_has_label) {
278 pl = pl_find(bpc->bpc_label);
279 if (pl != NULL) {
280 bs = pl->pl_bs;
281 return bs;
282 }
283 }
284
285 /* Otherwise fallback to peer/local hash lookup. */
286 gen_bfd_key(&key, &bpc->bpc_peer, &bpc->bpc_local, bpc->bpc_mhop,
287 bpc->bpc_localif, bpc->bpc_vrfname);
288
289 return bfd_key_lookup(key);
290 }
291
292 /*
293 * Starts a disabled BFD session.
294 *
295 * A session is disabled when the specified interface/VRF doesn't exist
296 * yet. It might happen on FRR boot or with virtual interfaces.
297 */
298 int bfd_session_enable(struct bfd_session *bs)
299 {
300 struct interface *ifp = NULL;
301 struct vrf *vrf = NULL;
302 int psock;
303
304 /* We are using data plane, we don't need software. */
305 if (bs->bdc)
306 return 0;
307
308 /*
309 * If the interface or VRF doesn't exist, then we must register
310 * the session but delay its start.
311 */
312 if (bs->key.vrfname[0]) {
313 vrf = vrf_lookup_by_name(bs->key.vrfname);
314 if (vrf == NULL) {
315 zlog_err(
316 "session-enable: specified VRF %s doesn't exists.",
317 bs->key.vrfname);
318 return 0;
319 }
320 } else {
321 vrf = vrf_lookup_by_id(VRF_DEFAULT);
322 }
323
324 assert(vrf);
325
326 if (bs->key.ifname[0]) {
327 ifp = if_lookup_by_name(bs->key.ifname, vrf->vrf_id);
328 if (ifp == NULL) {
329 zlog_err(
330 "session-enable: specified interface %s (VRF %s) doesn't exist.",
331 bs->key.ifname, vrf->name);
332 return 0;
333 }
334 }
335
336 /* Assign interface/VRF pointers. */
337 bs->vrf = vrf;
338
339 /* Assign interface pointer (if any). */
340 bs->ifp = ifp;
341
342 /* Attempt to use data plane. */
343 if (bglobal.bg_use_dplane && bfd_dplane_add_session(bs) == 0) {
344 control_notify_config(BCM_NOTIFY_CONFIG_ADD, bs);
345 return 0;
346 }
347
348 /* Sanity check: don't leak open sockets. */
349 if (bs->sock != -1) {
350 if (bglobal.debug_peer_event)
351 zlog_debug("session-enable: previous socket open");
352
353 close(bs->sock);
354 bs->sock = -1;
355 }
356
357 /*
358 * Get socket for transmitting control packets. Note that if we
359 * could use the destination port (3784) for the source
360 * port we wouldn't need a socket per session.
361 */
362 if (CHECK_FLAG(bs->flags, BFD_SESS_FLAG_IPV6) == 0) {
363 psock = bp_peer_socket(bs);
364 if (psock == -1)
365 return 0;
366 } else {
367 psock = bp_peer_socketv6(bs);
368 if (psock == -1)
369 return 0;
370 }
371
372 /*
373 * We've got a valid socket, lets start the timers and the
374 * protocol.
375 */
376 bs->sock = psock;
377
378 /* Only start timers if we are using active mode. */
379 if (CHECK_FLAG(bs->flags, BFD_SESS_FLAG_PASSIVE) == 0) {
380 bfd_recvtimer_update(bs);
381 ptm_bfd_start_xmt_timer(bs, false);
382 }
383
384 return 0;
385 }
386
387 /*
388 * Disabled a running BFD session.
389 *
390 * A session is disabled when the specified interface/VRF gets removed
391 * (e.g. virtual interfaces).
392 */
393 void bfd_session_disable(struct bfd_session *bs)
394 {
395 /* We are using data plane, we don't need software. */
396 if (bs->bdc)
397 return;
398
399 /* Free up socket resources. */
400 if (bs->sock != -1) {
401 close(bs->sock);
402 bs->sock = -1;
403 }
404
405 /* Disable all timers. */
406 bfd_recvtimer_delete(bs);
407 bfd_xmttimer_delete(bs);
408 ptm_bfd_echo_stop(bs);
409
410 /* Set session down so it doesn't report UP and disabled. */
411 ptm_bfd_sess_dn(bs, BD_PATH_DOWN);
412 }
413
414 static uint32_t ptm_bfd_gen_ID(void)
415 {
416 uint32_t session_id;
417
418 /*
419 * RFC 5880, Section 6.8.1. recommends that we should generate
420 * random session identification numbers.
421 */
422 do {
423 session_id = ((frr_weak_random() << 16) & 0xFFFF0000)
424 | (frr_weak_random() & 0x0000FFFF);
425 } while (session_id == 0 || bfd_id_lookup(session_id) != NULL);
426
427 return session_id;
428 }
429
430 void ptm_bfd_start_xmt_timer(struct bfd_session *bfd, bool is_echo)
431 {
432 uint64_t jitter, xmt_TO;
433 int maxpercent;
434
435 xmt_TO = is_echo ? bfd->echo_xmt_TO : bfd->xmt_TO;
436
437 /*
438 * From section 6.5.2: trasmit interval should be randomly jittered
439 * between
440 * 75% and 100% of nominal value, unless detect_mult is 1, then should
441 * be
442 * between 75% and 90%.
443 */
444 maxpercent = (bfd->detect_mult == 1) ? 16 : 26;
445 jitter = (xmt_TO * (75 + (frr_weak_random() % maxpercent))) / 100;
446 /* XXX remove that division above */
447
448 if (is_echo)
449 bfd_echo_xmttimer_update(bfd, jitter);
450 else
451 bfd_xmttimer_update(bfd, jitter);
452 }
453
454 static void ptm_bfd_echo_xmt_TO(struct bfd_session *bfd)
455 {
456 /* Send the scheduled echo packet */
457 /* if ipv4 use the new echo implementation that causes
458 * the packet to be looped in forwarding plane of peer
459 */
460 if (CHECK_FLAG(bfd->flags, BFD_SESS_FLAG_IPV6) == 0)
461 #ifdef BFD_LINUX
462 ptm_bfd_echo_fp_snd(bfd);
463 #else
464 ptm_bfd_echo_snd(bfd);
465 #endif
466 else
467 ptm_bfd_echo_snd(bfd);
468
469 /* Restart the timer for next time */
470 ptm_bfd_start_xmt_timer(bfd, true);
471 }
472
473 void ptm_bfd_xmt_TO(struct bfd_session *bfd, int fbit)
474 {
475 /* Send the scheduled control packet */
476 ptm_bfd_snd(bfd, fbit);
477
478 /* Restart the timer for next time */
479 ptm_bfd_start_xmt_timer(bfd, false);
480 }
481
482 void ptm_bfd_echo_stop(struct bfd_session *bfd)
483 {
484 bfd->echo_xmt_TO = 0;
485 bfd->echo_detect_TO = 0;
486 UNSET_FLAG(bfd->flags, BFD_SESS_FLAG_ECHO_ACTIVE);
487
488 bfd_echo_xmttimer_delete(bfd);
489 bfd_echo_recvtimer_delete(bfd);
490 }
491
492 void ptm_bfd_echo_start(struct bfd_session *bfd)
493 {
494 bfd->echo_detect_TO = (bfd->remote_detect_mult * bfd->echo_xmt_TO);
495 if (bfd->echo_detect_TO > 0) {
496 bfd_echo_recvtimer_update(bfd);
497 ptm_bfd_echo_xmt_TO(bfd);
498 }
499 }
500
501 void ptm_bfd_sess_up(struct bfd_session *bfd)
502 {
503 int old_state = bfd->ses_state;
504
505 bfd->local_diag = 0;
506 bfd->ses_state = PTM_BFD_UP;
507 monotime(&bfd->uptime);
508
509 /* Connection is up, lets negotiate timers. */
510 bfd_set_polling(bfd);
511
512 /* Start sending control packets with poll bit immediately. */
513 ptm_bfd_snd(bfd, 0);
514
515 control_notify(bfd, bfd->ses_state);
516
517 if (old_state != bfd->ses_state) {
518 bfd->stats.session_up++;
519 if (bglobal.debug_peer_event)
520 zlog_debug("state-change: [%s] %s -> %s",
521 bs_to_string(bfd), state_list[old_state].str,
522 state_list[bfd->ses_state].str);
523 }
524 }
525
526 void ptm_bfd_sess_dn(struct bfd_session *bfd, uint8_t diag)
527 {
528 int old_state = bfd->ses_state;
529
530 bfd->local_diag = diag;
531 bfd->discrs.remote_discr = 0;
532 bfd->ses_state = PTM_BFD_DOWN;
533 bfd->polling = 0;
534 bfd->demand_mode = 0;
535 monotime(&bfd->downtime);
536
537 /*
538 * Only attempt to send if we have a valid socket:
539 * this function might be called by session disablers and in
540 * this case we won't have a valid socket (i.e. interface was
541 * removed or VRF doesn't exist anymore).
542 */
543 if (bfd->sock != -1)
544 ptm_bfd_snd(bfd, 0);
545
546 /* Slow down the control packets, the connection is down. */
547 bs_set_slow_timers(bfd);
548
549 /* only signal clients when going from up->down state */
550 if (old_state == PTM_BFD_UP)
551 control_notify(bfd, PTM_BFD_DOWN);
552
553 /* Stop echo packet transmission if they are active */
554 if (CHECK_FLAG(bfd->flags, BFD_SESS_FLAG_ECHO_ACTIVE))
555 ptm_bfd_echo_stop(bfd);
556
557 /* Stop attempting to transmit or expect control packets if passive. */
558 if (CHECK_FLAG(bfd->flags, BFD_SESS_FLAG_PASSIVE)) {
559 bfd_recvtimer_delete(bfd);
560 bfd_xmttimer_delete(bfd);
561 }
562
563 if (old_state != bfd->ses_state) {
564 bfd->stats.session_down++;
565 if (bglobal.debug_peer_event)
566 zlog_debug("state-change: [%s] %s -> %s reason:%s",
567 bs_to_string(bfd), state_list[old_state].str,
568 state_list[bfd->ses_state].str,
569 get_diag_str(bfd->local_diag));
570 }
571
572 /* clear peer's mac address */
573 UNSET_FLAG(bfd->flags, BFD_SESS_FLAG_MAC_SET);
574 memset(bfd->peer_hw_addr, 0, sizeof(bfd->peer_hw_addr));
575 /* reset local address ,it might has been be changed after bfd is up*/
576 memset(&bfd->local_address, 0, sizeof(bfd->local_address));
577 }
578
579 static struct bfd_session *bfd_find_disc(struct sockaddr_any *sa,
580 uint32_t ldisc)
581 {
582 struct bfd_session *bs;
583
584 bs = bfd_id_lookup(ldisc);
585 if (bs == NULL)
586 return NULL;
587
588 switch (bs->key.family) {
589 case AF_INET:
590 if (memcmp(&sa->sa_sin.sin_addr, &bs->key.peer,
591 sizeof(sa->sa_sin.sin_addr)))
592 return NULL;
593 break;
594 case AF_INET6:
595 if (memcmp(&sa->sa_sin6.sin6_addr, &bs->key.peer,
596 sizeof(sa->sa_sin6.sin6_addr)))
597 return NULL;
598 break;
599 }
600
601 return bs;
602 }
603
604 struct bfd_session *ptm_bfd_sess_find(struct bfd_pkt *cp,
605 struct sockaddr_any *peer,
606 struct sockaddr_any *local,
607 struct interface *ifp,
608 vrf_id_t vrfid,
609 bool is_mhop)
610 {
611 struct vrf *vrf;
612 struct bfd_key key;
613
614 /* Find our session using the ID signaled by the remote end. */
615 if (cp->discrs.remote_discr)
616 return bfd_find_disc(peer, ntohl(cp->discrs.remote_discr));
617
618 /* Search for session without using discriminator. */
619 vrf = vrf_lookup_by_id(vrfid);
620
621 gen_bfd_key(&key, peer, local, is_mhop, ifp ? ifp->name : NULL,
622 vrf ? vrf->name : VRF_DEFAULT_NAME);
623
624 /* XXX maybe remoteDiscr should be checked for remoteHeard cases. */
625 return bfd_key_lookup(key);
626 }
627
628 void bfd_xmt_cb(struct thread *t)
629 {
630 struct bfd_session *bs = THREAD_ARG(t);
631
632 ptm_bfd_xmt_TO(bs, 0);
633 }
634
635 void bfd_echo_xmt_cb(struct thread *t)
636 {
637 struct bfd_session *bs = THREAD_ARG(t);
638
639 if (bs->echo_xmt_TO > 0)
640 ptm_bfd_echo_xmt_TO(bs);
641 }
642
643 /* Was ptm_bfd_detect_TO() */
644 void bfd_recvtimer_cb(struct thread *t)
645 {
646 struct bfd_session *bs = THREAD_ARG(t);
647
648 switch (bs->ses_state) {
649 case PTM_BFD_INIT:
650 case PTM_BFD_UP:
651 ptm_bfd_sess_dn(bs, BD_CONTROL_EXPIRED);
652 break;
653 }
654 }
655
656 /* Was ptm_bfd_echo_detect_TO() */
657 void bfd_echo_recvtimer_cb(struct thread *t)
658 {
659 struct bfd_session *bs = THREAD_ARG(t);
660
661 switch (bs->ses_state) {
662 case PTM_BFD_INIT:
663 case PTM_BFD_UP:
664 ptm_bfd_sess_dn(bs, BD_ECHO_FAILED);
665 break;
666 }
667 }
668
669 struct bfd_session *bfd_session_new(void)
670 {
671 struct bfd_session *bs;
672
673 bs = XCALLOC(MTYPE_BFDD_CONFIG, sizeof(*bs));
674
675 /* Set peer session defaults. */
676 bfd_profile_set_default(&bs->peer_profile);
677
678 bs->timers.desired_min_tx = BFD_DEFDESIREDMINTX;
679 bs->timers.required_min_rx = BFD_DEFREQUIREDMINRX;
680 bs->timers.required_min_echo_rx = BFD_DEF_REQ_MIN_ECHO_RX;
681 bs->timers.desired_min_echo_tx = BFD_DEF_DES_MIN_ECHO_TX;
682 bs->detect_mult = BFD_DEFDETECTMULT;
683 bs->mh_ttl = BFD_DEF_MHOP_TTL;
684 bs->ses_state = PTM_BFD_DOWN;
685
686 /* Initiate connection with slow timers. */
687 bs_set_slow_timers(bs);
688
689 /* Initiate remote settings as well. */
690 bs->remote_timers = bs->cur_timers;
691 bs->remote_detect_mult = BFD_DEFDETECTMULT;
692
693 bs->sock = -1;
694 monotime(&bs->uptime);
695 bs->downtime = bs->uptime;
696
697 return bs;
698 }
699
700 int bfd_session_update_label(struct bfd_session *bs, const char *nlabel)
701 {
702 /* New label treatment:
703 * - Check if the label is taken;
704 * - Try to allocate the memory for it and register;
705 */
706 if (bs->pl == NULL) {
707 if (pl_find(nlabel) != NULL) {
708 /* Someone is already using it. */
709 return -1;
710 }
711
712 pl_new(nlabel, bs);
713
714 return 0;
715 }
716
717 /*
718 * Test label change consistency:
719 * - Do nothing if it's the same label;
720 * - Check if the future label is already taken;
721 * - Change label;
722 */
723 if (strcmp(nlabel, bs->pl->pl_label) == 0)
724 return -1;
725 if (pl_find(nlabel) != NULL)
726 return -1;
727
728 strlcpy(bs->pl->pl_label, nlabel, sizeof(bs->pl->pl_label));
729 return 0;
730 }
731
732 static void _bfd_session_update(struct bfd_session *bs,
733 struct bfd_peer_cfg *bpc)
734 {
735 if (bpc->bpc_has_txinterval) {
736 bs->timers.desired_min_tx = bpc->bpc_txinterval * 1000;
737 bs->peer_profile.min_tx = bs->timers.desired_min_tx;
738 }
739
740 if (bpc->bpc_has_recvinterval) {
741 bs->timers.required_min_rx = bpc->bpc_recvinterval * 1000;
742 bs->peer_profile.min_rx = bs->timers.required_min_rx;
743 }
744
745 if (bpc->bpc_has_detectmultiplier) {
746 bs->detect_mult = bpc->bpc_detectmultiplier;
747 bs->peer_profile.detection_multiplier = bs->detect_mult;
748 }
749
750 if (bpc->bpc_has_echorecvinterval) {
751 bs->timers.required_min_echo_rx = bpc->bpc_echorecvinterval * 1000;
752 bs->peer_profile.min_echo_rx = bs->timers.required_min_echo_rx;
753 }
754
755 if (bpc->bpc_has_echotxinterval) {
756 bs->timers.desired_min_echo_tx = bpc->bpc_echotxinterval * 1000;
757 bs->peer_profile.min_echo_tx = bs->timers.desired_min_echo_tx;
758 }
759
760 if (bpc->bpc_has_label)
761 bfd_session_update_label(bs, bpc->bpc_label);
762
763 if (bpc->bpc_cbit)
764 SET_FLAG(bs->flags, BFD_SESS_FLAG_CBIT);
765 else
766 UNSET_FLAG(bs->flags, BFD_SESS_FLAG_CBIT);
767
768 if (bpc->bpc_has_minimum_ttl) {
769 bs->mh_ttl = bpc->bpc_minimum_ttl;
770 bs->peer_profile.minimum_ttl = bpc->bpc_minimum_ttl;
771 }
772
773 bs->peer_profile.echo_mode = bpc->bpc_echo;
774 bfd_set_echo(bs, bpc->bpc_echo);
775
776 /*
777 * Shutdown needs to be the last in order to avoid timers enable when
778 * the session is disabled.
779 */
780 bs->peer_profile.admin_shutdown = bpc->bpc_shutdown;
781 bfd_set_passive_mode(bs, bpc->bpc_passive);
782 bfd_set_shutdown(bs, bpc->bpc_shutdown);
783
784 /*
785 * Apply profile last: it also calls `bfd_set_shutdown`.
786 *
787 * There is no problem calling `shutdown` twice if the value doesn't
788 * change or if it is overridden by peer specific configuration.
789 */
790 if (bpc->bpc_has_profile)
791 bfd_profile_apply(bpc->bpc_profile, bs);
792 }
793
794 static int bfd_session_update(struct bfd_session *bs, struct bfd_peer_cfg *bpc)
795 {
796 /* User didn't want to update, return failure. */
797 if (bpc->bpc_createonly)
798 return -1;
799
800 _bfd_session_update(bs, bpc);
801
802 control_notify_config(BCM_NOTIFY_CONFIG_UPDATE, bs);
803
804 return 0;
805 }
806
807 void bfd_session_free(struct bfd_session *bs)
808 {
809 struct bfd_session_observer *bso;
810
811 bfd_session_disable(bs);
812
813 /* Remove session from data plane if any. */
814 bfd_dplane_delete_session(bs);
815
816 bfd_key_delete(bs->key);
817 bfd_id_delete(bs->discrs.my_discr);
818
819 /* Remove observer if any. */
820 TAILQ_FOREACH(bso, &bglobal.bg_obslist, bso_entry) {
821 if (bso->bso_bs != bs)
822 continue;
823
824 break;
825 }
826 if (bso != NULL)
827 bs_observer_del(bso);
828
829 pl_free(bs->pl);
830
831 XFREE(MTYPE_BFDD_PROFILE, bs->profile_name);
832 XFREE(MTYPE_BFDD_CONFIG, bs);
833 }
834
835 struct bfd_session *ptm_bfd_sess_new(struct bfd_peer_cfg *bpc)
836 {
837 struct bfd_session *bfd, *l_bfd;
838
839 /* check to see if this needs a new session */
840 l_bfd = bs_peer_find(bpc);
841 if (l_bfd) {
842 /* Requesting a duplicated peer means update configuration. */
843 if (bfd_session_update(l_bfd, bpc) == 0)
844 return l_bfd;
845 else
846 return NULL;
847 }
848
849 /* Get BFD session storage with its defaults. */
850 bfd = bfd_session_new();
851
852 /*
853 * Store interface/VRF name in case we need to delay session
854 * start. See `bfd_session_enable` for more information.
855 */
856 if (bpc->bpc_has_localif)
857 strlcpy(bfd->key.ifname, bpc->bpc_localif,
858 sizeof(bfd->key.ifname));
859
860 if (bpc->bpc_has_vrfname)
861 strlcpy(bfd->key.vrfname, bpc->bpc_vrfname,
862 sizeof(bfd->key.vrfname));
863 else
864 strlcpy(bfd->key.vrfname, VRF_DEFAULT_NAME,
865 sizeof(bfd->key.vrfname));
866
867 /* Copy remaining data. */
868 if (bpc->bpc_ipv4 == false)
869 SET_FLAG(bfd->flags, BFD_SESS_FLAG_IPV6);
870
871 bfd->key.family = (bpc->bpc_ipv4) ? AF_INET : AF_INET6;
872 switch (bfd->key.family) {
873 case AF_INET:
874 memcpy(&bfd->key.peer, &bpc->bpc_peer.sa_sin.sin_addr,
875 sizeof(bpc->bpc_peer.sa_sin.sin_addr));
876 memcpy(&bfd->key.local, &bpc->bpc_local.sa_sin.sin_addr,
877 sizeof(bpc->bpc_local.sa_sin.sin_addr));
878 break;
879
880 case AF_INET6:
881 memcpy(&bfd->key.peer, &bpc->bpc_peer.sa_sin6.sin6_addr,
882 sizeof(bpc->bpc_peer.sa_sin6.sin6_addr));
883 memcpy(&bfd->key.local, &bpc->bpc_local.sa_sin6.sin6_addr,
884 sizeof(bpc->bpc_local.sa_sin6.sin6_addr));
885 break;
886
887 default:
888 assert(1);
889 break;
890 }
891
892 if (bpc->bpc_mhop)
893 SET_FLAG(bfd->flags, BFD_SESS_FLAG_MH);
894
895 bfd->key.mhop = bpc->bpc_mhop;
896
897 if (bs_registrate(bfd) == NULL)
898 return NULL;
899
900 /* Apply other configurations. */
901 _bfd_session_update(bfd, bpc);
902
903 return bfd;
904 }
905
906 struct bfd_session *bs_registrate(struct bfd_session *bfd)
907 {
908 /* Registrate session into data structures. */
909 bfd_key_insert(bfd);
910 bfd->discrs.my_discr = ptm_bfd_gen_ID();
911 bfd_id_insert(bfd);
912
913 /* Try to enable session and schedule for packet receive/send. */
914 if (bfd_session_enable(bfd) == -1) {
915 /* Unrecoverable failure, remove the session/peer. */
916 bfd_session_free(bfd);
917 return NULL;
918 }
919
920 /* Add observer if we have moving parts. */
921 if (bfd->key.ifname[0] || bfd->key.vrfname[0] || bfd->sock == -1)
922 bs_observer_add(bfd);
923
924 if (bglobal.debug_peer_event)
925 zlog_debug("session-new: %s", bs_to_string(bfd));
926
927 control_notify_config(BCM_NOTIFY_CONFIG_ADD, bfd);
928
929 return bfd;
930 }
931
932 int ptm_bfd_sess_del(struct bfd_peer_cfg *bpc)
933 {
934 struct bfd_session *bs;
935
936 /* Find session and call free(). */
937 bs = bs_peer_find(bpc);
938 if (bs == NULL)
939 return -1;
940
941 /* This pointer is being referenced, don't let it be deleted. */
942 if (bs->refcount > 0) {
943 zlog_err("session-delete: refcount failure: %" PRIu64" references",
944 bs->refcount);
945 return -1;
946 }
947
948 if (bglobal.debug_peer_event)
949 zlog_debug("session-delete: %s", bs_to_string(bs));
950
951 control_notify_config(BCM_NOTIFY_CONFIG_DELETE, bs);
952
953 bfd_session_free(bs);
954
955 return 0;
956 }
957
958 void bfd_set_polling(struct bfd_session *bs)
959 {
960 /*
961 * Start polling procedure: the only timers that require polling
962 * to change value without losing connection are:
963 *
964 * - Desired minimum transmission interval;
965 * - Required minimum receive interval;
966 *
967 * RFC 5880, Section 6.8.3.
968 */
969 bs->polling = 1;
970 }
971
972 /*
973 * bs_<state>_handler() functions implement the BFD state machine
974 * transition mechanism. `<state>` is the current session state and
975 * the parameter `nstate` is the peer new state.
976 */
977 static void bs_admin_down_handler(struct bfd_session *bs
978 __attribute__((__unused__)),
979 int nstate __attribute__((__unused__)))
980 {
981 /*
982 * We are administratively down, there is no state machine
983 * handling.
984 */
985 }
986
987 static void bs_down_handler(struct bfd_session *bs, int nstate)
988 {
989 switch (nstate) {
990 case PTM_BFD_ADM_DOWN:
991 /*
992 * Remote peer doesn't want to talk, so lets keep the
993 * connection down.
994 */
995 case PTM_BFD_UP:
996 /* Peer can't be up yet, wait it go to 'init' or 'down'. */
997 break;
998
999 case PTM_BFD_DOWN:
1000 /*
1001 * Remote peer agreed that the path is down, lets try to
1002 * bring it up.
1003 */
1004 bs->ses_state = PTM_BFD_INIT;
1005
1006 /*
1007 * RFC 5880, Section 6.1.
1008 * A system taking the Passive role MUST NOT begin
1009 * sending BFD packets for a particular session until
1010 * it has received a BFD packet for that session, and thus
1011 * has learned the remote system's discriminator value.
1012 *
1013 * Now we can start transmission timer in passive mode.
1014 */
1015 if (CHECK_FLAG(bs->flags, BFD_SESS_FLAG_PASSIVE))
1016 ptm_bfd_xmt_TO(bs, 0);
1017
1018 break;
1019
1020 case PTM_BFD_INIT:
1021 /*
1022 * Remote peer told us his path is up, lets turn
1023 * activate the session.
1024 */
1025 ptm_bfd_sess_up(bs);
1026 break;
1027
1028 default:
1029 if (bglobal.debug_peer_event)
1030 zlog_debug("state-change: unhandled neighbor state: %d",
1031 nstate);
1032 break;
1033 }
1034 }
1035
1036 static void bs_init_handler(struct bfd_session *bs, int nstate)
1037 {
1038 switch (nstate) {
1039 case PTM_BFD_ADM_DOWN:
1040 /*
1041 * Remote peer doesn't want to talk, so lets make the
1042 * connection down.
1043 */
1044 ptm_bfd_sess_dn(bs, BD_NEIGHBOR_DOWN);
1045 break;
1046
1047 case PTM_BFD_DOWN:
1048 /* Remote peer hasn't moved to first stage yet. */
1049 break;
1050
1051 case PTM_BFD_INIT:
1052 case PTM_BFD_UP:
1053 /* We agreed on the settings and the path is up. */
1054 ptm_bfd_sess_up(bs);
1055 break;
1056
1057 default:
1058 if (bglobal.debug_peer_event)
1059 zlog_debug("state-change: unhandled neighbor state: %d",
1060 nstate);
1061 break;
1062 }
1063 }
1064
1065 static void bs_up_handler(struct bfd_session *bs, int nstate)
1066 {
1067 switch (nstate) {
1068 case PTM_BFD_ADM_DOWN:
1069 case PTM_BFD_DOWN:
1070 /* Peer lost or asked to shutdown connection. */
1071 ptm_bfd_sess_dn(bs, BD_NEIGHBOR_DOWN);
1072 break;
1073
1074 case PTM_BFD_INIT:
1075 case PTM_BFD_UP:
1076 /* Path is up and working. */
1077 break;
1078
1079 default:
1080 if (bglobal.debug_peer_event)
1081 zlog_debug("state-change: unhandled neighbor state: %d",
1082 nstate);
1083 break;
1084 }
1085 }
1086
1087 void bs_state_handler(struct bfd_session *bs, int nstate)
1088 {
1089 switch (bs->ses_state) {
1090 case PTM_BFD_ADM_DOWN:
1091 bs_admin_down_handler(bs, nstate);
1092 break;
1093 case PTM_BFD_DOWN:
1094 bs_down_handler(bs, nstate);
1095 break;
1096 case PTM_BFD_INIT:
1097 bs_init_handler(bs, nstate);
1098 break;
1099 case PTM_BFD_UP:
1100 bs_up_handler(bs, nstate);
1101 break;
1102
1103 default:
1104 if (bglobal.debug_peer_event)
1105 zlog_debug("state-change: [%s] is in invalid state: %d",
1106 bs_to_string(bs), nstate);
1107 break;
1108 }
1109 }
1110
1111 /*
1112 * Handles echo timer manipulation after updating timer.
1113 */
1114 void bs_echo_timer_handler(struct bfd_session *bs)
1115 {
1116 uint32_t old_timer;
1117
1118 /*
1119 * Before doing any echo handling, check if it is possible to
1120 * use it.
1121 *
1122 * - Check for `echo-mode` configuration.
1123 * - Check that we are not using multi hop (RFC 5883,
1124 * Section 3).
1125 * - Check that we are already at the up state.
1126 */
1127 if (CHECK_FLAG(bs->flags, BFD_SESS_FLAG_ECHO) == 0
1128 || CHECK_FLAG(bs->flags, BFD_SESS_FLAG_MH)
1129 || bs->ses_state != PTM_BFD_UP)
1130 return;
1131
1132 /* Remote peer asked to stop echo. */
1133 if (bs->remote_timers.required_min_echo == 0) {
1134 if (CHECK_FLAG(bs->flags, BFD_SESS_FLAG_ECHO_ACTIVE))
1135 ptm_bfd_echo_stop(bs);
1136
1137 return;
1138 }
1139
1140 /*
1141 * Calculate the echo transmission timer: we must not send
1142 * echo packets faster than the minimum required time
1143 * announced by the remote system.
1144 *
1145 * RFC 5880, Section 6.8.9.
1146 */
1147 old_timer = bs->echo_xmt_TO;
1148 if (bs->remote_timers.required_min_echo > bs->timers.desired_min_echo_tx)
1149 bs->echo_xmt_TO = bs->remote_timers.required_min_echo;
1150 else
1151 bs->echo_xmt_TO = bs->timers.desired_min_echo_tx;
1152
1153 if (CHECK_FLAG(bs->flags, BFD_SESS_FLAG_ECHO_ACTIVE) == 0
1154 || old_timer != bs->echo_xmt_TO)
1155 ptm_bfd_echo_start(bs);
1156 }
1157
1158 /*
1159 * RFC 5880 Section 6.5.
1160 *
1161 * When a BFD control packet with the final bit is received, we must
1162 * update the session parameters.
1163 */
1164 void bs_final_handler(struct bfd_session *bs)
1165 {
1166 /* Start using our new timers. */
1167 bs->cur_timers.desired_min_tx = bs->timers.desired_min_tx;
1168 bs->cur_timers.required_min_rx = bs->timers.required_min_rx;
1169
1170 /*
1171 * TODO: demand mode. See RFC 5880 Section 6.1.
1172 *
1173 * When using demand mode we must disable the detection timer
1174 * for lost control packets.
1175 */
1176 if (bs->demand_mode) {
1177 /* Notify watchers about changed timers. */
1178 control_notify_config(BCM_NOTIFY_CONFIG_UPDATE, bs);
1179 return;
1180 }
1181
1182 /*
1183 * Calculate transmission time based on new timers.
1184 *
1185 * Transmission calculation:
1186 * Unless specified by exceptions at the end of Section 6.8.7, the
1187 * transmission time will be determined by the system with the
1188 * slowest rate.
1189 *
1190 * RFC 5880, Section 6.8.7.
1191 */
1192 if (bs->timers.desired_min_tx > bs->remote_timers.required_min_rx)
1193 bs->xmt_TO = bs->timers.desired_min_tx;
1194 else
1195 bs->xmt_TO = bs->remote_timers.required_min_rx;
1196
1197 /* Apply new transmission timer immediately. */
1198 ptm_bfd_start_xmt_timer(bs, false);
1199
1200 /* Notify watchers about changed timers. */
1201 control_notify_config(BCM_NOTIFY_CONFIG_UPDATE, bs);
1202 }
1203
1204 void bs_set_slow_timers(struct bfd_session *bs)
1205 {
1206 /*
1207 * BFD connection must use slow timers before going up or after
1208 * losing connectivity to avoid wasting bandwidth.
1209 *
1210 * RFC 5880, Section 6.8.3.
1211 */
1212 bs->cur_timers.desired_min_tx = BFD_DEF_SLOWTX;
1213 bs->cur_timers.required_min_rx = BFD_DEF_SLOWTX;
1214 bs->cur_timers.required_min_echo = 0;
1215
1216 /* Set the appropriated timeouts for slow connection. */
1217 bs->detect_TO = (BFD_DEFDETECTMULT * BFD_DEF_SLOWTX);
1218 bs->xmt_TO = BFD_DEF_SLOWTX;
1219 }
1220
1221 void bfd_set_echo(struct bfd_session *bs, bool echo)
1222 {
1223 if (echo) {
1224 /* Check if echo mode is already active. */
1225 if (CHECK_FLAG(bs->flags, BFD_SESS_FLAG_ECHO))
1226 return;
1227
1228 SET_FLAG(bs->flags, BFD_SESS_FLAG_ECHO);
1229
1230 /* Activate/update echo receive timeout timer. */
1231 if (bs->bdc == NULL)
1232 bs_echo_timer_handler(bs);
1233 } else {
1234 /* Check if echo mode is already disabled. */
1235 if (!CHECK_FLAG(bs->flags, BFD_SESS_FLAG_ECHO))
1236 return;
1237
1238 UNSET_FLAG(bs->flags, BFD_SESS_FLAG_ECHO);
1239
1240 /* Deactivate timeout timer. */
1241 if (bs->bdc == NULL)
1242 ptm_bfd_echo_stop(bs);
1243 }
1244 }
1245
1246 void bfd_set_shutdown(struct bfd_session *bs, bool shutdown)
1247 {
1248 bool is_shutdown;
1249
1250 /*
1251 * Special case: we are batching changes and the previous state was
1252 * not shutdown. Instead of potentially disconnect a running peer,
1253 * we'll get the current status to validate we were really down.
1254 */
1255 if (bs->ses_state == PTM_BFD_UP)
1256 is_shutdown = false;
1257 else
1258 is_shutdown = CHECK_FLAG(bs->flags, BFD_SESS_FLAG_SHUTDOWN);
1259
1260 if (shutdown) {
1261 /* Already shutdown. */
1262 if (is_shutdown)
1263 return;
1264
1265 SET_FLAG(bs->flags, BFD_SESS_FLAG_SHUTDOWN);
1266
1267 /* Handle data plane shutdown case. */
1268 if (bs->bdc) {
1269 bs->ses_state = PTM_BFD_ADM_DOWN;
1270 bfd_dplane_update_session(bs);
1271 control_notify(bs, bs->ses_state);
1272 return;
1273 }
1274
1275 /* Disable all events. */
1276 bfd_recvtimer_delete(bs);
1277 bfd_echo_recvtimer_delete(bs);
1278 bfd_xmttimer_delete(bs);
1279 bfd_echo_xmttimer_delete(bs);
1280
1281 /* Change and notify state change. */
1282 bs->ses_state = PTM_BFD_ADM_DOWN;
1283 control_notify(bs, bs->ses_state);
1284
1285 /* Don't try to send packets with a disabled session. */
1286 if (bs->sock != -1)
1287 ptm_bfd_snd(bs, 0);
1288 } else {
1289 /* Already working. */
1290 if (!is_shutdown)
1291 return;
1292
1293 UNSET_FLAG(bs->flags, BFD_SESS_FLAG_SHUTDOWN);
1294
1295 /* Handle data plane shutdown case. */
1296 if (bs->bdc) {
1297 bs->ses_state = PTM_BFD_DOWN;
1298 bfd_dplane_update_session(bs);
1299 control_notify(bs, bs->ses_state);
1300 return;
1301 }
1302
1303 /* Change and notify state change. */
1304 bs->ses_state = PTM_BFD_DOWN;
1305 control_notify(bs, bs->ses_state);
1306
1307 /* Enable timers if non passive, otherwise stop them. */
1308 if (CHECK_FLAG(bs->flags, BFD_SESS_FLAG_PASSIVE)) {
1309 bfd_recvtimer_delete(bs);
1310 bfd_xmttimer_delete(bs);
1311 } else {
1312 bfd_recvtimer_update(bs);
1313 bfd_xmttimer_update(bs, bs->xmt_TO);
1314 }
1315 }
1316 }
1317
1318 void bfd_set_passive_mode(struct bfd_session *bs, bool passive)
1319 {
1320 if (passive) {
1321 SET_FLAG(bs->flags, BFD_SESS_FLAG_PASSIVE);
1322
1323 /* Session is already up and running, nothing to do now. */
1324 if (bs->ses_state != PTM_BFD_DOWN)
1325 return;
1326
1327 /* Lets disable the timers since we are now passive. */
1328 bfd_recvtimer_delete(bs);
1329 bfd_xmttimer_delete(bs);
1330 } else {
1331 UNSET_FLAG(bs->flags, BFD_SESS_FLAG_PASSIVE);
1332
1333 /* Session is already up and running, nothing to do now. */
1334 if (bs->ses_state != PTM_BFD_DOWN)
1335 return;
1336
1337 /* Session is down, let it attempt to start the connection. */
1338 bfd_xmttimer_update(bs, bs->xmt_TO);
1339 bfd_recvtimer_update(bs);
1340 }
1341 }
1342
1343 /*
1344 * Helper functions.
1345 */
1346 static const char *get_diag_str(int diag)
1347 {
1348 for (int i = 0; diag_list[i].str; i++) {
1349 if (diag_list[i].type == diag)
1350 return diag_list[i].str;
1351 }
1352 return "N/A";
1353 }
1354
1355 const char *satostr(const struct sockaddr_any *sa)
1356 {
1357 #define INETSTR_BUFCOUNT 8
1358 static char buf[INETSTR_BUFCOUNT][INET6_ADDRSTRLEN];
1359 static int bufidx;
1360 const struct sockaddr_in *sin = &sa->sa_sin;
1361 const struct sockaddr_in6 *sin6 = &sa->sa_sin6;
1362
1363 bufidx += (bufidx + 1) % INETSTR_BUFCOUNT;
1364 buf[bufidx][0] = 0;
1365
1366 switch (sin->sin_family) {
1367 case AF_INET:
1368 inet_ntop(AF_INET, &sin->sin_addr, buf[bufidx],
1369 sizeof(buf[bufidx]));
1370 break;
1371 case AF_INET6:
1372 inet_ntop(AF_INET6, &sin6->sin6_addr, buf[bufidx],
1373 sizeof(buf[bufidx]));
1374 break;
1375
1376 default:
1377 strlcpy(buf[bufidx], "unknown", sizeof(buf[bufidx]));
1378 break;
1379 }
1380
1381 return buf[bufidx];
1382 }
1383
1384 const char *diag2str(uint8_t diag)
1385 {
1386 switch (diag) {
1387 case 0:
1388 return "ok";
1389 case 1:
1390 return "control detection time expired";
1391 case 2:
1392 return "echo function failed";
1393 case 3:
1394 return "neighbor signaled session down";
1395 case 4:
1396 return "forwarding plane reset";
1397 case 5:
1398 return "path down";
1399 case 6:
1400 return "concatenated path down";
1401 case 7:
1402 return "administratively down";
1403 case 8:
1404 return "reverse concatenated path down";
1405 default:
1406 return "unknown";
1407 }
1408 }
1409
1410 int strtosa(const char *addr, struct sockaddr_any *sa)
1411 {
1412 memset(sa, 0, sizeof(*sa));
1413
1414 if (inet_pton(AF_INET, addr, &sa->sa_sin.sin_addr) == 1) {
1415 sa->sa_sin.sin_family = AF_INET;
1416 #ifdef HAVE_STRUCT_SOCKADDR_SA_LEN
1417 sa->sa_sin.sin_len = sizeof(sa->sa_sin);
1418 #endif /* HAVE_STRUCT_SOCKADDR_SA_LEN */
1419 return 0;
1420 }
1421
1422 if (inet_pton(AF_INET6, addr, &sa->sa_sin6.sin6_addr) == 1) {
1423 sa->sa_sin6.sin6_family = AF_INET6;
1424 #ifdef HAVE_STRUCT_SOCKADDR_SA_LEN
1425 sa->sa_sin6.sin6_len = sizeof(sa->sa_sin6);
1426 #endif /* HAVE_STRUCT_SOCKADDR_SA_LEN */
1427 return 0;
1428 }
1429
1430 return -1;
1431 }
1432
1433 void integer2timestr(uint64_t time, char *buf, size_t buflen)
1434 {
1435 uint64_t year, month, day, hour, minute, second;
1436 int rv;
1437
1438 #define MINUTES (60)
1439 #define HOURS (60 * MINUTES)
1440 #define DAYS (24 * HOURS)
1441 #define MONTHS (30 * DAYS)
1442 #define YEARS (12 * MONTHS)
1443 if (time >= YEARS) {
1444 year = time / YEARS;
1445 time -= year * YEARS;
1446
1447 rv = snprintfrr(buf, buflen, "%" PRIu64 " year(s), ", year);
1448 buf += rv;
1449 buflen -= rv;
1450 }
1451 if (time >= MONTHS) {
1452 month = time / MONTHS;
1453 time -= month * MONTHS;
1454
1455 rv = snprintfrr(buf, buflen, "%" PRIu64 " month(s), ", month);
1456 buf += rv;
1457 buflen -= rv;
1458 }
1459 if (time >= DAYS) {
1460 day = time / DAYS;
1461 time -= day * DAYS;
1462
1463 rv = snprintfrr(buf, buflen, "%" PRIu64 " day(s), ", day);
1464 buf += rv;
1465 buflen -= rv;
1466 }
1467 if (time >= HOURS) {
1468 hour = time / HOURS;
1469 time -= hour * HOURS;
1470
1471 rv = snprintfrr(buf, buflen, "%" PRIu64 " hour(s), ", hour);
1472 buf += rv;
1473 buflen -= rv;
1474 }
1475 if (time >= MINUTES) {
1476 minute = time / MINUTES;
1477 time -= minute * MINUTES;
1478
1479 rv = snprintfrr(buf, buflen, "%" PRIu64 " minute(s), ", minute);
1480 buf += rv;
1481 buflen -= rv;
1482 }
1483 second = time % MINUTES;
1484 snprintfrr(buf, buflen, "%" PRIu64 " second(s)", second);
1485 }
1486
1487 const char *bs_to_string(const struct bfd_session *bs)
1488 {
1489 static char buf[256];
1490 char addr_buf[INET6_ADDRSTRLEN];
1491 int pos;
1492 bool is_mhop = CHECK_FLAG(bs->flags, BFD_SESS_FLAG_MH);
1493
1494 pos = snprintf(buf, sizeof(buf), "mhop:%s", is_mhop ? "yes" : "no");
1495 pos += snprintf(buf + pos, sizeof(buf) - pos, " peer:%s",
1496 inet_ntop(bs->key.family, &bs->key.peer, addr_buf,
1497 sizeof(addr_buf)));
1498 pos += snprintf(buf + pos, sizeof(buf) - pos, " local:%s",
1499 inet_ntop(bs->key.family, &bs->key.local, addr_buf,
1500 sizeof(addr_buf)));
1501 if (bs->key.vrfname[0])
1502 pos += snprintf(buf + pos, sizeof(buf) - pos, " vrf:%s",
1503 bs->key.vrfname);
1504 if (bs->key.ifname[0])
1505 pos += snprintf(buf + pos, sizeof(buf) - pos, " ifname:%s",
1506 bs->key.ifname);
1507
1508 (void)pos;
1509
1510 return buf;
1511 }
1512
1513 int bs_observer_add(struct bfd_session *bs)
1514 {
1515 struct bfd_session_observer *bso;
1516
1517 bso = XCALLOC(MTYPE_BFDD_SESSION_OBSERVER, sizeof(*bso));
1518 bso->bso_bs = bs;
1519 bso->bso_addr.family = bs->key.family;
1520 memcpy(&bso->bso_addr.u.prefix, &bs->key.local,
1521 sizeof(bs->key.local));
1522
1523 TAILQ_INSERT_TAIL(&bglobal.bg_obslist, bso, bso_entry);
1524
1525 return 0;
1526 }
1527
1528 void bs_observer_del(struct bfd_session_observer *bso)
1529 {
1530 TAILQ_REMOVE(&bglobal.bg_obslist, bso, bso_entry);
1531 XFREE(MTYPE_BFDD_SESSION_OBSERVER, bso);
1532 }
1533
1534 void bs_to_bpc(struct bfd_session *bs, struct bfd_peer_cfg *bpc)
1535 {
1536 memset(bpc, 0, sizeof(*bpc));
1537
1538 bpc->bpc_ipv4 = (bs->key.family == AF_INET);
1539 bpc->bpc_mhop = bs->key.mhop;
1540
1541 switch (bs->key.family) {
1542 case AF_INET:
1543 bpc->bpc_peer.sa_sin.sin_family = AF_INET;
1544 memcpy(&bpc->bpc_peer.sa_sin.sin_addr, &bs->key.peer,
1545 sizeof(bpc->bpc_peer.sa_sin.sin_addr));
1546
1547 if (memcmp(&bs->key.local, &zero_addr, sizeof(bs->key.local))) {
1548 bpc->bpc_local.sa_sin.sin_family = AF_INET6;
1549 memcpy(&bpc->bpc_local.sa_sin.sin_addr, &bs->key.local,
1550 sizeof(bpc->bpc_local.sa_sin.sin_addr));
1551 }
1552 break;
1553
1554 case AF_INET6:
1555 bpc->bpc_peer.sa_sin.sin_family = AF_INET6;
1556 memcpy(&bpc->bpc_peer.sa_sin6.sin6_addr, &bs->key.peer,
1557 sizeof(bpc->bpc_peer.sa_sin6.sin6_addr));
1558
1559 bpc->bpc_local.sa_sin6.sin6_family = AF_INET6;
1560 memcpy(&bpc->bpc_local.sa_sin6.sin6_addr, &bs->key.local,
1561 sizeof(bpc->bpc_local.sa_sin6.sin6_addr));
1562 break;
1563 }
1564
1565 if (bs->key.ifname[0]) {
1566 bpc->bpc_has_localif = true;
1567 strlcpy(bpc->bpc_localif, bs->key.ifname,
1568 sizeof(bpc->bpc_localif));
1569 }
1570
1571 if (bs->key.vrfname[0]) {
1572 bpc->bpc_has_vrfname = true;
1573 strlcpy(bpc->bpc_vrfname, bs->key.vrfname,
1574 sizeof(bpc->bpc_vrfname));
1575 }
1576 }
1577
1578
1579 /*
1580 * BFD hash data structures to find sessions.
1581 */
1582 static struct hash *bfd_id_hash;
1583 static struct hash *bfd_key_hash;
1584
1585 static unsigned int bfd_id_hash_do(const void *p);
1586 static unsigned int bfd_key_hash_do(const void *p);
1587
1588 static void _bfd_free(struct hash_bucket *hb,
1589 void *arg __attribute__((__unused__)));
1590
1591 /* BFD hash for our discriminator. */
1592 static unsigned int bfd_id_hash_do(const void *p)
1593 {
1594 const struct bfd_session *bs = p;
1595
1596 return jhash_1word(bs->discrs.my_discr, 0);
1597 }
1598
1599 static bool bfd_id_hash_cmp(const void *n1, const void *n2)
1600 {
1601 const struct bfd_session *bs1 = n1, *bs2 = n2;
1602
1603 return bs1->discrs.my_discr == bs2->discrs.my_discr;
1604 }
1605
1606 /* BFD hash for single hop. */
1607 static unsigned int bfd_key_hash_do(const void *p)
1608 {
1609 const struct bfd_session *bs = p;
1610 struct bfd_key key = bs->key;
1611
1612 /*
1613 * Local address and interface name are optional and
1614 * can be filled any time after session creation.
1615 * Hash key should not depend on these fields.
1616 */
1617 memset(&key.local, 0, sizeof(key.local));
1618 memset(key.ifname, 0, sizeof(key.ifname));
1619
1620 return jhash(&key, sizeof(key), 0);
1621 }
1622
1623 static bool bfd_key_hash_cmp(const void *n1, const void *n2)
1624 {
1625 const struct bfd_session *bs1 = n1, *bs2 = n2;
1626
1627 if (bs1->key.family != bs2->key.family)
1628 return false;
1629 if (bs1->key.mhop != bs2->key.mhop)
1630 return false;
1631 if (memcmp(&bs1->key.peer, &bs2->key.peer, sizeof(bs1->key.peer)))
1632 return false;
1633 if (memcmp(bs1->key.vrfname, bs2->key.vrfname,
1634 sizeof(bs1->key.vrfname)))
1635 return false;
1636
1637 /*
1638 * Local address is optional and can be empty.
1639 * If both addresses are not empty and different,
1640 * then the keys are different.
1641 */
1642 if (memcmp(&bs1->key.local, &zero_addr, sizeof(bs1->key.local))
1643 && memcmp(&bs2->key.local, &zero_addr, sizeof(bs2->key.local))
1644 && memcmp(&bs1->key.local, &bs2->key.local, sizeof(bs1->key.local)))
1645 return false;
1646
1647 /*
1648 * Interface name is optional and can be empty.
1649 * If both names are not empty and different,
1650 * then the keys are different.
1651 */
1652 if (bs1->key.ifname[0] && bs2->key.ifname[0]
1653 && memcmp(bs1->key.ifname, bs2->key.ifname,
1654 sizeof(bs1->key.ifname)))
1655 return false;
1656
1657 return true;
1658 }
1659
1660
1661 /*
1662 * Hash public interface / exported functions.
1663 */
1664
1665 /* Lookup functions. */
1666 struct bfd_session *bfd_id_lookup(uint32_t id)
1667 {
1668 struct bfd_session bs;
1669
1670 bs.discrs.my_discr = id;
1671
1672 return hash_lookup(bfd_id_hash, &bs);
1673 }
1674
1675 struct bfd_session *bfd_key_lookup(struct bfd_key key)
1676 {
1677 struct bfd_session bs;
1678
1679 bs.key = key;
1680
1681 return hash_lookup(bfd_key_hash, &bs);
1682 }
1683
1684 /*
1685 * Delete functions.
1686 *
1687 * Delete functions searches and remove the item from the hash and
1688 * returns a pointer to the removed item data. If the item was not found
1689 * then it returns NULL.
1690 *
1691 * The data stored inside the hash is not free()ed, so you must do it
1692 * manually after getting the pointer back.
1693 */
1694 struct bfd_session *bfd_id_delete(uint32_t id)
1695 {
1696 struct bfd_session bs;
1697
1698 bs.discrs.my_discr = id;
1699
1700 return hash_release(bfd_id_hash, &bs);
1701 }
1702
1703 struct bfd_session *bfd_key_delete(struct bfd_key key)
1704 {
1705 struct bfd_session bs;
1706
1707 bs.key = key;
1708
1709 return hash_release(bfd_key_hash, &bs);
1710 }
1711
1712 /* Iteration functions. */
1713 void bfd_id_iterate(hash_iter_func hif, void *arg)
1714 {
1715 hash_iterate(bfd_id_hash, hif, arg);
1716 }
1717
1718 void bfd_key_iterate(hash_iter_func hif, void *arg)
1719 {
1720 hash_iterate(bfd_key_hash, hif, arg);
1721 }
1722
1723 /*
1724 * Insert functions.
1725 *
1726 * Inserts session into hash and returns `true` on success, otherwise
1727 * `false`.
1728 */
1729 bool bfd_id_insert(struct bfd_session *bs)
1730 {
1731 return (hash_get(bfd_id_hash, bs, hash_alloc_intern) == bs);
1732 }
1733
1734 bool bfd_key_insert(struct bfd_session *bs)
1735 {
1736 return (hash_get(bfd_key_hash, bs, hash_alloc_intern) == bs);
1737 }
1738
1739 void bfd_initialize(void)
1740 {
1741 bfd_id_hash = hash_create(bfd_id_hash_do, bfd_id_hash_cmp,
1742 "BFD session discriminator hash");
1743 bfd_key_hash = hash_create(bfd_key_hash_do, bfd_key_hash_cmp,
1744 "BFD session hash");
1745 TAILQ_INIT(&bplist);
1746 }
1747
1748 static void _bfd_free(struct hash_bucket *hb,
1749 void *arg __attribute__((__unused__)))
1750 {
1751 struct bfd_session *bs = hb->data;
1752
1753 bfd_session_free(bs);
1754 }
1755
1756 void bfd_shutdown(void)
1757 {
1758 struct bfd_profile *bp;
1759
1760 /*
1761 * Close and free all BFD sessions.
1762 *
1763 * _bfd_free() will call bfd_session_free() which will take care
1764 * of removing the session from all hashes, so we just run an
1765 * assert() here to make sure it really happened.
1766 */
1767 bfd_id_iterate(_bfd_free, NULL);
1768 assert(bfd_key_hash->count == 0);
1769
1770 /* Now free the hashes themselves. */
1771 hash_free(bfd_id_hash);
1772 hash_free(bfd_key_hash);
1773
1774 /* Free all profile allocations. */
1775 while ((bp = TAILQ_FIRST(&bplist)) != NULL)
1776 bfd_profile_free(bp);
1777 }
1778
1779 struct bfd_session_iterator {
1780 int bsi_stop;
1781 bool bsi_mhop;
1782 const struct bfd_session *bsi_bs;
1783 };
1784
1785 static int _bfd_session_next(struct hash_bucket *hb, void *arg)
1786 {
1787 struct bfd_session_iterator *bsi = arg;
1788 struct bfd_session *bs = hb->data;
1789
1790 /* Previous entry signaled stop. */
1791 if (bsi->bsi_stop == 1) {
1792 /* Match the single/multi hop sessions. */
1793 if (bs->key.mhop != bsi->bsi_mhop)
1794 return HASHWALK_CONTINUE;
1795
1796 bsi->bsi_bs = bs;
1797 return HASHWALK_ABORT;
1798 }
1799
1800 /* We found the current item, stop in the next one. */
1801 if (bsi->bsi_bs == hb->data) {
1802 bsi->bsi_stop = 1;
1803 /* Set entry to NULL to signal end of list. */
1804 bsi->bsi_bs = NULL;
1805 } else if (bsi->bsi_bs == NULL && bsi->bsi_mhop == bs->key.mhop) {
1806 /* We want the first list item. */
1807 bsi->bsi_stop = 1;
1808 bsi->bsi_bs = hb->data;
1809 return HASHWALK_ABORT;
1810 }
1811
1812 return HASHWALK_CONTINUE;
1813 }
1814
1815 /*
1816 * bfd_session_next: uses the current session to find the next.
1817 *
1818 * `bs` might point to NULL to get the first item of the data structure.
1819 */
1820 const struct bfd_session *bfd_session_next(const struct bfd_session *bs,
1821 bool mhop)
1822 {
1823 struct bfd_session_iterator bsi;
1824
1825 bsi.bsi_stop = 0;
1826 bsi.bsi_bs = bs;
1827 bsi.bsi_mhop = mhop;
1828 hash_walk(bfd_key_hash, _bfd_session_next, &bsi);
1829 if (bsi.bsi_stop == 0)
1830 return NULL;
1831
1832 return bsi.bsi_bs;
1833 }
1834
1835 static void _bfd_session_remove_manual(struct hash_bucket *hb,
1836 void *arg __attribute__((__unused__)))
1837 {
1838 struct bfd_session *bs = hb->data;
1839
1840 /* Delete only manually configured sessions. */
1841 if (CHECK_FLAG(bs->flags, BFD_SESS_FLAG_CONFIG) == 0)
1842 return;
1843
1844 bs->refcount--;
1845 UNSET_FLAG(bs->flags, BFD_SESS_FLAG_CONFIG);
1846
1847 /* Don't delete sessions still in use. */
1848 if (bs->refcount != 0)
1849 return;
1850
1851 bfd_session_free(bs);
1852 }
1853
1854 /*
1855 * bfd_sessions_remove_manual: remove all manually configured sessions.
1856 *
1857 * NOTE: this function doesn't remove automatically created sessions.
1858 */
1859 void bfd_sessions_remove_manual(void)
1860 {
1861 hash_iterate(bfd_key_hash, _bfd_session_remove_manual, NULL);
1862 }
1863
1864 void bfd_profiles_remove(void)
1865 {
1866 struct bfd_profile *bp;
1867
1868 while ((bp = TAILQ_FIRST(&bplist)) != NULL)
1869 bfd_profile_free(bp);
1870 }
1871
1872 /*
1873 * Profile related hash functions.
1874 */
1875 static void _bfd_profile_update(struct hash_bucket *hb, void *arg)
1876 {
1877 struct bfd_profile *bp = arg;
1878 struct bfd_session *bs = hb->data;
1879
1880 /* This session is not using the profile. */
1881 if (bs->profile_name == NULL || strcmp(bs->profile_name, bp->name) != 0)
1882 return;
1883
1884 bfd_profile_apply(bp->name, bs);
1885 }
1886
1887 void bfd_profile_update(struct bfd_profile *bp)
1888 {
1889 hash_iterate(bfd_key_hash, _bfd_profile_update, bp);
1890 }
1891
1892 static void _bfd_profile_detach(struct hash_bucket *hb, void *arg)
1893 {
1894 struct bfd_profile *bp = arg;
1895 struct bfd_session *bs = hb->data;
1896
1897 /* This session is not using the profile. */
1898 if (bs->profile_name == NULL || strcmp(bs->profile_name, bp->name) != 0)
1899 return;
1900
1901 bfd_profile_remove(bs);
1902 }
1903
1904 static void bfd_profile_detach(struct bfd_profile *bp)
1905 {
1906 hash_iterate(bfd_key_hash, _bfd_profile_detach, bp);
1907 }
1908
1909 /*
1910 * VRF related functions.
1911 */
1912 static int bfd_vrf_new(struct vrf *vrf)
1913 {
1914 if (bglobal.debug_zebra)
1915 zlog_debug("VRF Created: %s(%u)", vrf->name, vrf->vrf_id);
1916
1917 return 0;
1918 }
1919
1920 static int bfd_vrf_delete(struct vrf *vrf)
1921 {
1922 if (bglobal.debug_zebra)
1923 zlog_debug("VRF Deletion: %s(%u)", vrf->name, vrf->vrf_id);
1924
1925 return 0;
1926 }
1927
1928 static int bfd_vrf_enable(struct vrf *vrf)
1929 {
1930 struct bfd_vrf_global *bvrf;
1931
1932 /* a different name */
1933 if (!vrf->info) {
1934 bvrf = XCALLOC(MTYPE_BFDD_VRF, sizeof(struct bfd_vrf_global));
1935 bvrf->vrf = vrf;
1936 vrf->info = (void *)bvrf;
1937
1938 /* Disable sockets if using data plane. */
1939 if (bglobal.bg_use_dplane) {
1940 bvrf->bg_shop = -1;
1941 bvrf->bg_mhop = -1;
1942 bvrf->bg_shop6 = -1;
1943 bvrf->bg_mhop6 = -1;
1944 bvrf->bg_echo = -1;
1945 bvrf->bg_echov6 = -1;
1946 }
1947 } else
1948 bvrf = vrf->info;
1949
1950 if (bglobal.debug_zebra)
1951 zlog_debug("VRF enable add %s id %u", vrf->name, vrf->vrf_id);
1952
1953 if (vrf->vrf_id == VRF_DEFAULT ||
1954 vrf_get_backend() == VRF_BACKEND_NETNS) {
1955 if (!bvrf->bg_shop)
1956 bvrf->bg_shop = bp_udp_shop(vrf);
1957 if (!bvrf->bg_mhop)
1958 bvrf->bg_mhop = bp_udp_mhop(vrf);
1959 if (!bvrf->bg_shop6)
1960 bvrf->bg_shop6 = bp_udp6_shop(vrf);
1961 if (!bvrf->bg_mhop6)
1962 bvrf->bg_mhop6 = bp_udp6_mhop(vrf);
1963 if (!bvrf->bg_echo)
1964 bvrf->bg_echo = bp_echo_socket(vrf);
1965 if (!bvrf->bg_echov6)
1966 bvrf->bg_echov6 = bp_echov6_socket(vrf);
1967
1968 if (!bvrf->bg_ev[0] && bvrf->bg_shop != -1)
1969 thread_add_read(master, bfd_recv_cb, bvrf,
1970 bvrf->bg_shop, &bvrf->bg_ev[0]);
1971 if (!bvrf->bg_ev[1] && bvrf->bg_mhop != -1)
1972 thread_add_read(master, bfd_recv_cb, bvrf,
1973 bvrf->bg_mhop, &bvrf->bg_ev[1]);
1974 if (!bvrf->bg_ev[2] && bvrf->bg_shop6 != -1)
1975 thread_add_read(master, bfd_recv_cb, bvrf,
1976 bvrf->bg_shop6, &bvrf->bg_ev[2]);
1977 if (!bvrf->bg_ev[3] && bvrf->bg_mhop6 != -1)
1978 thread_add_read(master, bfd_recv_cb, bvrf,
1979 bvrf->bg_mhop6, &bvrf->bg_ev[3]);
1980 if (!bvrf->bg_ev[4] && bvrf->bg_echo != -1)
1981 thread_add_read(master, bfd_recv_cb, bvrf,
1982 bvrf->bg_echo, &bvrf->bg_ev[4]);
1983 if (!bvrf->bg_ev[5] && bvrf->bg_echov6 != -1)
1984 thread_add_read(master, bfd_recv_cb, bvrf,
1985 bvrf->bg_echov6, &bvrf->bg_ev[5]);
1986 }
1987 if (vrf->vrf_id != VRF_DEFAULT) {
1988 bfdd_zclient_register(vrf->vrf_id);
1989 bfdd_sessions_enable_vrf(vrf);
1990 }
1991 return 0;
1992 }
1993
1994 static int bfd_vrf_disable(struct vrf *vrf)
1995 {
1996 struct bfd_vrf_global *bvrf;
1997
1998 if (!vrf->info)
1999 return 0;
2000 bvrf = vrf->info;
2001
2002 if (vrf->vrf_id != VRF_DEFAULT) {
2003 bfdd_sessions_disable_vrf(vrf);
2004 bfdd_zclient_unregister(vrf->vrf_id);
2005 }
2006
2007 if (bglobal.debug_zebra)
2008 zlog_debug("VRF disable %s id %d", vrf->name, vrf->vrf_id);
2009
2010 /* Disable read/write poll triggering. */
2011 THREAD_OFF(bvrf->bg_ev[0]);
2012 THREAD_OFF(bvrf->bg_ev[1]);
2013 THREAD_OFF(bvrf->bg_ev[2]);
2014 THREAD_OFF(bvrf->bg_ev[3]);
2015 THREAD_OFF(bvrf->bg_ev[4]);
2016 THREAD_OFF(bvrf->bg_ev[5]);
2017
2018 /* Close all descriptors. */
2019 socket_close(&bvrf->bg_echo);
2020 socket_close(&bvrf->bg_shop);
2021 socket_close(&bvrf->bg_mhop);
2022 if (bvrf->bg_shop6 != -1)
2023 socket_close(&bvrf->bg_shop6);
2024 if (bvrf->bg_mhop6 != -1)
2025 socket_close(&bvrf->bg_mhop6);
2026 socket_close(&bvrf->bg_echo);
2027 if (bvrf->bg_echov6 != -1)
2028 socket_close(&bvrf->bg_echov6);
2029
2030 /* free context */
2031 XFREE(MTYPE_BFDD_VRF, bvrf);
2032 vrf->info = NULL;
2033
2034 return 0;
2035 }
2036
2037 void bfd_vrf_init(void)
2038 {
2039 vrf_init(bfd_vrf_new, bfd_vrf_enable, bfd_vrf_disable, bfd_vrf_delete);
2040 }
2041
2042 void bfd_vrf_terminate(void)
2043 {
2044 vrf_terminate();
2045 }
2046
2047 struct bfd_vrf_global *bfd_vrf_look_by_session(struct bfd_session *bfd)
2048 {
2049 struct vrf *vrf;
2050
2051 if (!vrf_is_backend_netns()) {
2052 vrf = vrf_lookup_by_id(VRF_DEFAULT);
2053 if (vrf)
2054 return (struct bfd_vrf_global *)vrf->info;
2055 return NULL;
2056 }
2057 if (!bfd)
2058 return NULL;
2059 if (!bfd->vrf)
2060 return NULL;
2061 return bfd->vrf->info;
2062 }
2063
2064 unsigned long bfd_get_session_count(void)
2065 {
2066 return bfd_key_hash->count;
2067 }