]> git.proxmox.com Git - mirror_frr.git/blob - bfdd/bfd.c
bfdd: socket handling per vrf context
[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
32 #include "bfd.h"
33
34 DEFINE_QOBJ_TYPE(bfd_session);
35
36 /*
37 * Prototypes
38 */
39 void gen_bfd_key(struct bfd_key *key, struct sockaddr_any *peer,
40 struct sockaddr_any *local, bool mhop, const char *ifname,
41 const char *vrfname);
42
43 static uint32_t ptm_bfd_gen_ID(void);
44 static void ptm_bfd_echo_xmt_TO(struct bfd_session *bfd);
45 static void bfd_session_free(struct bfd_session *bs);
46 static struct bfd_session *bfd_session_new(void);
47 static struct bfd_session *bfd_find_disc(struct sockaddr_any *sa,
48 uint32_t ldisc);
49 static int bfd_session_update(struct bfd_session *bs, struct bfd_peer_cfg *bpc);
50 static const char *get_diag_str(int diag);
51
52 static void bs_admin_down_handler(struct bfd_session *bs, int nstate);
53 static void bs_down_handler(struct bfd_session *bs, int nstate);
54 static void bs_init_handler(struct bfd_session *bs, int nstate);
55 static void bs_up_handler(struct bfd_session *bs, int nstate);
56
57 /* Zeroed array with the size of an IPv6 address. */
58 struct in6_addr zero_addr;
59
60 /*
61 * Functions
62 */
63 void gen_bfd_key(struct bfd_key *key, struct sockaddr_any *peer,
64 struct sockaddr_any *local, bool mhop, const char *ifname,
65 const char *vrfname)
66 {
67 memset(key, 0, sizeof(*key));
68
69 switch (peer->sa_sin.sin_family) {
70 case AF_INET:
71 key->family = AF_INET;
72 memcpy(&key->peer, &peer->sa_sin.sin_addr,
73 sizeof(peer->sa_sin.sin_addr));
74 memcpy(&key->local, &local->sa_sin.sin_addr,
75 sizeof(local->sa_sin.sin_addr));
76 break;
77 case AF_INET6:
78 key->family = AF_INET6;
79 memcpy(&key->peer, &peer->sa_sin6.sin6_addr,
80 sizeof(peer->sa_sin6.sin6_addr));
81 memcpy(&key->local, &local->sa_sin6.sin6_addr,
82 sizeof(local->sa_sin6.sin6_addr));
83 break;
84 }
85
86 key->mhop = mhop;
87 if (ifname && ifname[0])
88 strlcpy(key->ifname, ifname, sizeof(key->ifname));
89 if (vrfname && vrfname[0])
90 strlcpy(key->vrfname, vrfname, sizeof(key->vrfname));
91 }
92
93 struct bfd_session *bs_peer_find(struct bfd_peer_cfg *bpc)
94 {
95 struct bfd_session *bs;
96 struct peer_label *pl;
97 struct bfd_key key;
98
99 /* Try to find label first. */
100 if (bpc->bpc_has_label) {
101 pl = pl_find(bpc->bpc_label);
102 if (pl != NULL) {
103 bs = pl->pl_bs;
104 return bs;
105 }
106 }
107
108 /* Otherwise fallback to peer/local hash lookup. */
109 gen_bfd_key(&key, &bpc->bpc_peer, &bpc->bpc_local, bpc->bpc_mhop,
110 bpc->bpc_localif, bpc->bpc_vrfname);
111
112 return bfd_key_lookup(key);
113 }
114
115 /*
116 * Starts a disabled BFD session.
117 *
118 * A session is disabled when the specified interface/VRF doesn't exist
119 * yet. It might happen on FRR boot or with virtual interfaces.
120 */
121 int bfd_session_enable(struct bfd_session *bs)
122 {
123 struct interface *ifp = NULL;
124 struct vrf *vrf = NULL;
125 int psock;
126
127 /*
128 * If the interface or VRF doesn't exist, then we must register
129 * the session but delay its start.
130 */
131 if (bs->key.vrfname[0]) {
132 vrf = vrf_lookup_by_name(bs->key.vrfname);
133 if (vrf == NULL) {
134 log_error(
135 "session-enable: specified VRF doesn't exists.");
136 return 0;
137 }
138 }
139
140 if (bs->key.ifname[0]) {
141 if (vrf)
142 ifp = if_lookup_by_name(bs->key.ifname, vrf->vrf_id);
143 else
144 ifp = if_lookup_by_name_all_vrf(bs->key.ifname);
145 if (ifp == NULL) {
146 log_error(
147 "session-enable: specified interface doesn't exists.");
148 return 0;
149 }
150 if (bs->key.ifname[0] && !vrf) {
151 vrf = vrf_lookup_by_id(ifp->vrf_id);
152 if (vrf == NULL) {
153 log_error(
154 "session-enable: specified VRF doesn't exists.");
155 return 0;
156 }
157 }
158 }
159
160 /* Assign interface/VRF pointers. */
161 bs->vrf = vrf;
162 if (bs->vrf == NULL)
163 bs->vrf = vrf_lookup_by_id(VRF_DEFAULT);
164
165 if (bs->key.ifname[0]
166 && BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_MH) == 0)
167 bs->ifp = ifp;
168
169 /* Sanity check: don't leak open sockets. */
170 if (bs->sock != -1) {
171 log_debug("session-enable: previous socket open");
172 close(bs->sock);
173 bs->sock = -1;
174 }
175
176 /*
177 * Get socket for transmitting control packets. Note that if we
178 * could use the destination port (3784) for the source
179 * port we wouldn't need a socket per session.
180 */
181 if (BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_IPV6) == 0) {
182 psock = bp_peer_socket(bs);
183 if (psock == -1)
184 return 0;
185 } else {
186 psock = bp_peer_socketv6(bs);
187 if (psock == -1)
188 return 0;
189 }
190
191 /*
192 * We've got a valid socket, lets start the timers and the
193 * protocol.
194 */
195 bs->sock = psock;
196 bfd_recvtimer_update(bs);
197 ptm_bfd_start_xmt_timer(bs, false);
198
199 return 0;
200 }
201
202 /*
203 * Disabled a running BFD session.
204 *
205 * A session is disabled when the specified interface/VRF gets removed
206 * (e.g. virtual interfaces).
207 */
208 void bfd_session_disable(struct bfd_session *bs)
209 {
210 /* Free up socket resources. */
211 if (bs->sock != -1) {
212 close(bs->sock);
213 bs->sock = -1;
214 }
215
216 /* Disable all timers. */
217 bfd_recvtimer_delete(bs);
218 bfd_echo_recvtimer_delete(bs);
219 bfd_xmttimer_delete(bs);
220 bfd_echo_xmttimer_delete(bs);
221 }
222
223 static uint32_t ptm_bfd_gen_ID(void)
224 {
225 uint32_t session_id;
226
227 /*
228 * RFC 5880, Section 6.8.1. recommends that we should generate
229 * random session identification numbers.
230 */
231 do {
232 session_id = ((random() << 16) & 0xFFFF0000)
233 | (random() & 0x0000FFFF);
234 } while (session_id == 0 || bfd_id_lookup(session_id) != NULL);
235
236 return session_id;
237 }
238
239 void ptm_bfd_start_xmt_timer(struct bfd_session *bfd, bool is_echo)
240 {
241 uint64_t jitter, xmt_TO;
242 int maxpercent;
243
244 xmt_TO = is_echo ? bfd->echo_xmt_TO : bfd->xmt_TO;
245
246 /*
247 * From section 6.5.2: trasmit interval should be randomly jittered
248 * between
249 * 75% and 100% of nominal value, unless detect_mult is 1, then should
250 * be
251 * between 75% and 90%.
252 */
253 maxpercent = (bfd->detect_mult == 1) ? 16 : 26;
254 jitter = (xmt_TO * (75 + (random() % maxpercent))) / 100;
255 /* XXX remove that division above */
256
257 if (is_echo)
258 bfd_echo_xmttimer_update(bfd, jitter);
259 else
260 bfd_xmttimer_update(bfd, jitter);
261 }
262
263 static void ptm_bfd_echo_xmt_TO(struct bfd_session *bfd)
264 {
265 /* Send the scheduled echo packet */
266 ptm_bfd_echo_snd(bfd);
267
268 /* Restart the timer for next time */
269 ptm_bfd_start_xmt_timer(bfd, true);
270 }
271
272 void ptm_bfd_xmt_TO(struct bfd_session *bfd, int fbit)
273 {
274 /* Send the scheduled control packet */
275 ptm_bfd_snd(bfd, fbit);
276
277 /* Restart the timer for next time */
278 ptm_bfd_start_xmt_timer(bfd, false);
279 }
280
281 void ptm_bfd_echo_stop(struct bfd_session *bfd)
282 {
283 bfd->echo_xmt_TO = 0;
284 bfd->echo_detect_TO = 0;
285 BFD_UNSET_FLAG(bfd->flags, BFD_SESS_FLAG_ECHO_ACTIVE);
286
287 bfd_echo_xmttimer_delete(bfd);
288 bfd_echo_recvtimer_delete(bfd);
289 }
290
291 void ptm_bfd_echo_start(struct bfd_session *bfd)
292 {
293 bfd->echo_detect_TO = (bfd->remote_detect_mult * bfd->echo_xmt_TO);
294 if (bfd->echo_detect_TO > 0)
295 ptm_bfd_echo_xmt_TO(bfd);
296 }
297
298 void ptm_bfd_sess_up(struct bfd_session *bfd)
299 {
300 int old_state = bfd->ses_state;
301
302 bfd->local_diag = 0;
303 bfd->ses_state = PTM_BFD_UP;
304 monotime(&bfd->uptime);
305
306 /* Connection is up, lets negotiate timers. */
307 bfd_set_polling(bfd);
308
309 /* Start sending control packets with poll bit immediately. */
310 ptm_bfd_snd(bfd, 0);
311
312 control_notify(bfd);
313
314 if (old_state != bfd->ses_state) {
315 bfd->stats.session_up++;
316 log_info("state-change: [%s] %s -> %s", bs_to_string(bfd),
317 state_list[old_state].str,
318 state_list[bfd->ses_state].str);
319 }
320 }
321
322 void ptm_bfd_sess_dn(struct bfd_session *bfd, uint8_t diag)
323 {
324 int old_state = bfd->ses_state;
325
326 bfd->local_diag = diag;
327 bfd->discrs.remote_discr = 0;
328 bfd->ses_state = PTM_BFD_DOWN;
329 bfd->polling = 0;
330 bfd->demand_mode = 0;
331 monotime(&bfd->downtime);
332
333 ptm_bfd_snd(bfd, 0);
334
335 /* Slow down the control packets, the connection is down. */
336 bs_set_slow_timers(bfd);
337
338 /* only signal clients when going from up->down state */
339 if (old_state == PTM_BFD_UP)
340 control_notify(bfd);
341
342 /* Stop echo packet transmission if they are active */
343 if (BFD_CHECK_FLAG(bfd->flags, BFD_SESS_FLAG_ECHO_ACTIVE))
344 ptm_bfd_echo_stop(bfd);
345
346 if (old_state != bfd->ses_state) {
347 bfd->stats.session_down++;
348 log_info("state-change: [%s] %s -> %s reason:%s",
349 bs_to_string(bfd), state_list[old_state].str,
350 state_list[bfd->ses_state].str,
351 get_diag_str(bfd->local_diag));
352 }
353 }
354
355 static struct bfd_session *bfd_find_disc(struct sockaddr_any *sa,
356 uint32_t ldisc)
357 {
358 struct bfd_session *bs;
359
360 bs = bfd_id_lookup(ldisc);
361 if (bs == NULL)
362 return NULL;
363
364 switch (bs->key.family) {
365 case AF_INET:
366 if (memcmp(&sa->sa_sin.sin_addr, &bs->key.peer,
367 sizeof(sa->sa_sin.sin_addr)))
368 return NULL;
369 break;
370 case AF_INET6:
371 if (memcmp(&sa->sa_sin6.sin6_addr, &bs->key.peer,
372 sizeof(sa->sa_sin6.sin6_addr)))
373 return NULL;
374 break;
375 }
376
377 return bs;
378 }
379
380 struct bfd_session *ptm_bfd_sess_find(struct bfd_pkt *cp,
381 struct sockaddr_any *peer,
382 struct sockaddr_any *local,
383 ifindex_t ifindex, vrf_id_t vrfid,
384 bool is_mhop)
385 {
386 struct interface *ifp;
387 struct vrf *vrf;
388 struct bfd_key key;
389
390 /* Find our session using the ID signaled by the remote end. */
391 if (cp->discrs.remote_discr)
392 return bfd_find_disc(peer, ntohl(cp->discrs.remote_discr));
393
394 /* Search for session without using discriminator. */
395 ifp = if_lookup_by_index(ifindex, vrfid);
396 if (vrfid == VRF_DEFAULT) {
397 /*
398 * Don't use the default vrf, otherwise we won't find
399 * sessions that doesn't specify it.
400 */
401 vrf = NULL;
402 } else
403 vrf = vrf_lookup_by_id(vrfid);
404
405 gen_bfd_key(&key, peer, local, is_mhop, ifp ? ifp->name : NULL,
406 vrf ? vrf->name : NULL);
407
408 /* XXX maybe remoteDiscr should be checked for remoteHeard cases. */
409 return bfd_key_lookup(key);
410 }
411
412 int bfd_xmt_cb(struct thread *t)
413 {
414 struct bfd_session *bs = THREAD_ARG(t);
415
416 ptm_bfd_xmt_TO(bs, 0);
417
418 return 0;
419 }
420
421 int bfd_echo_xmt_cb(struct thread *t)
422 {
423 struct bfd_session *bs = THREAD_ARG(t);
424
425 if (bs->echo_xmt_TO > 0)
426 ptm_bfd_echo_xmt_TO(bs);
427
428 return 0;
429 }
430
431 /* Was ptm_bfd_detect_TO() */
432 int bfd_recvtimer_cb(struct thread *t)
433 {
434 struct bfd_session *bs = THREAD_ARG(t);
435
436 switch (bs->ses_state) {
437 case PTM_BFD_INIT:
438 case PTM_BFD_UP:
439 ptm_bfd_sess_dn(bs, BD_CONTROL_EXPIRED);
440 bfd_recvtimer_update(bs);
441 break;
442
443 default:
444 /* Second detect time expiration, zero remote discr (section
445 * 6.5.1)
446 */
447 bs->discrs.remote_discr = 0;
448 break;
449 }
450
451 return 0;
452 }
453
454 /* Was ptm_bfd_echo_detect_TO() */
455 int bfd_echo_recvtimer_cb(struct thread *t)
456 {
457 struct bfd_session *bs = THREAD_ARG(t);
458
459 switch (bs->ses_state) {
460 case PTM_BFD_INIT:
461 case PTM_BFD_UP:
462 ptm_bfd_sess_dn(bs, BD_ECHO_FAILED);
463 break;
464 }
465
466 return 0;
467 }
468
469 static struct bfd_session *bfd_session_new(void)
470 {
471 struct bfd_session *bs;
472
473 bs = XCALLOC(MTYPE_BFDD_CONFIG, sizeof(*bs));
474
475 QOBJ_REG(bs, bfd_session);
476
477 bs->timers.desired_min_tx = BFD_DEFDESIREDMINTX;
478 bs->timers.required_min_rx = BFD_DEFREQUIREDMINRX;
479 bs->timers.required_min_echo = BFD_DEF_REQ_MIN_ECHO;
480 bs->detect_mult = BFD_DEFDETECTMULT;
481 bs->mh_ttl = BFD_DEF_MHOP_TTL;
482 bs->ses_state = PTM_BFD_DOWN;
483
484 /* Initiate connection with slow timers. */
485 bs_set_slow_timers(bs);
486
487 /* Initiate remote settings as well. */
488 bs->remote_timers = bs->cur_timers;
489 bs->remote_detect_mult = BFD_DEFDETECTMULT;
490
491 bs->sock = -1;
492 monotime(&bs->uptime);
493 bs->downtime = bs->uptime;
494
495 return bs;
496 }
497
498 int bfd_session_update_label(struct bfd_session *bs, const char *nlabel)
499 {
500 /* New label treatment:
501 * - Check if the label is taken;
502 * - Try to allocate the memory for it and register;
503 */
504 if (bs->pl == NULL) {
505 if (pl_find(nlabel) != NULL) {
506 /* Someone is already using it. */
507 return -1;
508 }
509
510 if (pl_new(nlabel, bs) == NULL)
511 return -1;
512
513 return 0;
514 }
515
516 /*
517 * Test label change consistency:
518 * - Do nothing if it's the same label;
519 * - Check if the future label is already taken;
520 * - Change label;
521 */
522 if (strcmp(nlabel, bs->pl->pl_label) == 0)
523 return -1;
524 if (pl_find(nlabel) != NULL)
525 return -1;
526
527 strlcpy(bs->pl->pl_label, nlabel, sizeof(bs->pl->pl_label));
528 return 0;
529 }
530
531 static void _bfd_session_update(struct bfd_session *bs,
532 struct bfd_peer_cfg *bpc)
533 {
534 if (bpc->bpc_echo) {
535 /* Check if echo mode is already active. */
536 if (BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_ECHO))
537 goto skip_echo;
538
539 BFD_SET_FLAG(bs->flags, BFD_SESS_FLAG_ECHO);
540
541 /* Activate/update echo receive timeout timer. */
542 bs_echo_timer_handler(bs);
543 } else {
544 /* Check if echo mode is already disabled. */
545 if (!BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_ECHO))
546 goto skip_echo;
547
548 BFD_UNSET_FLAG(bs->flags, BFD_SESS_FLAG_ECHO);
549 ptm_bfd_echo_stop(bs);
550 }
551
552 skip_echo:
553 if (bpc->bpc_has_txinterval)
554 bs->timers.desired_min_tx = bpc->bpc_txinterval * 1000;
555
556 if (bpc->bpc_has_recvinterval)
557 bs->timers.required_min_rx = bpc->bpc_recvinterval * 1000;
558
559 if (bpc->bpc_has_detectmultiplier)
560 bs->detect_mult = bpc->bpc_detectmultiplier;
561
562 if (bpc->bpc_has_echointerval)
563 bs->timers.required_min_echo = bpc->bpc_echointerval * 1000;
564
565 if (bpc->bpc_has_label)
566 bfd_session_update_label(bs, bpc->bpc_label);
567
568 if (bpc->bpc_shutdown) {
569 /* Check if already shutdown. */
570 if (BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_SHUTDOWN))
571 return;
572
573 BFD_SET_FLAG(bs->flags, BFD_SESS_FLAG_SHUTDOWN);
574
575 /* Disable all events. */
576 bfd_recvtimer_delete(bs);
577 bfd_echo_recvtimer_delete(bs);
578 bfd_xmttimer_delete(bs);
579 bfd_echo_xmttimer_delete(bs);
580
581 /* Change and notify state change. */
582 bs->ses_state = PTM_BFD_ADM_DOWN;
583 control_notify(bs);
584
585 /* Don't try to send packets with a disabled session. */
586 if (bs->sock != -1)
587 ptm_bfd_snd(bs, 0);
588 } else {
589 /* Check if already working. */
590 if (!BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_SHUTDOWN))
591 return;
592
593 BFD_UNSET_FLAG(bs->flags, BFD_SESS_FLAG_SHUTDOWN);
594
595 /* Change and notify state change. */
596 bs->ses_state = PTM_BFD_DOWN;
597 control_notify(bs);
598
599 /* Enable all timers. */
600 bfd_recvtimer_update(bs);
601 bfd_xmttimer_update(bs, bs->xmt_TO);
602 }
603 }
604
605 static int bfd_session_update(struct bfd_session *bs, struct bfd_peer_cfg *bpc)
606 {
607 /* User didn't want to update, return failure. */
608 if (bpc->bpc_createonly)
609 return -1;
610
611 _bfd_session_update(bs, bpc);
612
613 control_notify_config(BCM_NOTIFY_CONFIG_UPDATE, bs);
614
615 return 0;
616 }
617
618 static void bfd_session_free(struct bfd_session *bs)
619 {
620 struct bfd_session_observer *bso;
621
622 bfd_session_disable(bs);
623
624 bfd_key_delete(bs->key);
625 bfd_id_delete(bs->discrs.my_discr);
626
627 /* Remove observer if any. */
628 TAILQ_FOREACH(bso, &bglobal.bg_obslist, bso_entry) {
629 if (bso->bso_bs != bs)
630 continue;
631
632 break;
633 }
634 if (bso != NULL)
635 bs_observer_del(bso);
636
637 pl_free(bs->pl);
638
639 QOBJ_UNREG(bs);
640 XFREE(MTYPE_BFDD_CONFIG, bs);
641 }
642
643 struct bfd_session *ptm_bfd_sess_new(struct bfd_peer_cfg *bpc)
644 {
645 struct bfd_session *bfd, *l_bfd;
646
647 /* check to see if this needs a new session */
648 l_bfd = bs_peer_find(bpc);
649 if (l_bfd) {
650 /* Requesting a duplicated peer means update configuration. */
651 if (bfd_session_update(l_bfd, bpc) == 0)
652 return l_bfd;
653 else
654 return NULL;
655 }
656
657 /* Get BFD session storage with its defaults. */
658 bfd = bfd_session_new();
659 if (bfd == NULL) {
660 log_error("session-new: allocation failed");
661 return NULL;
662 }
663
664 /*
665 * Store interface/VRF name in case we need to delay session
666 * start. See `bfd_session_enable` for more information.
667 */
668 if (bpc->bpc_has_localif)
669 strlcpy(bfd->key.ifname, bpc->bpc_localif,
670 sizeof(bfd->key.ifname));
671
672 if (bpc->bpc_has_vrfname)
673 strlcpy(bfd->key.vrfname, bpc->bpc_vrfname,
674 sizeof(bfd->key.vrfname));
675
676 /* Copy remaining data. */
677 if (bpc->bpc_ipv4 == false)
678 BFD_SET_FLAG(bfd->flags, BFD_SESS_FLAG_IPV6);
679
680 bfd->key.family = (bpc->bpc_ipv4) ? AF_INET : AF_INET6;
681 switch (bfd->key.family) {
682 case AF_INET:
683 memcpy(&bfd->key.peer, &bpc->bpc_peer.sa_sin.sin_addr,
684 sizeof(bpc->bpc_peer.sa_sin.sin_addr));
685 memcpy(&bfd->key.local, &bpc->bpc_local.sa_sin.sin_addr,
686 sizeof(bpc->bpc_local.sa_sin.sin_addr));
687 break;
688
689 case AF_INET6:
690 memcpy(&bfd->key.peer, &bpc->bpc_peer.sa_sin6.sin6_addr,
691 sizeof(bpc->bpc_peer.sa_sin6.sin6_addr));
692 memcpy(&bfd->key.local, &bpc->bpc_local.sa_sin6.sin6_addr,
693 sizeof(bpc->bpc_local.sa_sin6.sin6_addr));
694 break;
695
696 default:
697 assert(1);
698 break;
699 }
700
701 if (bpc->bpc_mhop)
702 BFD_SET_FLAG(bfd->flags, BFD_SESS_FLAG_MH);
703
704 bfd->key.mhop = bpc->bpc_mhop;
705
706 /* Registrate session into data structures. */
707 bfd_key_insert(bfd);
708 bfd->discrs.my_discr = ptm_bfd_gen_ID();
709 bfd_id_insert(bfd);
710
711 /* Try to enable session and schedule for packet receive/send. */
712 if (bfd_session_enable(bfd) == -1) {
713 /* Unrecoverable failure, remove the session/peer. */
714 bfd_session_free(bfd);
715 return NULL;
716 }
717
718 /* Add observer if we have moving parts. */
719 if (bfd->key.ifname[0] || bfd->key.vrfname[0] || bfd->sock == -1)
720 bs_observer_add(bfd);
721
722 /* Apply other configurations. */
723 _bfd_session_update(bfd, bpc);
724
725 log_info("session-new: %s", bs_to_string(bfd));
726
727 control_notify_config(BCM_NOTIFY_CONFIG_ADD, bfd);
728
729 return bfd;
730 }
731
732 int ptm_bfd_sess_del(struct bfd_peer_cfg *bpc)
733 {
734 struct bfd_session *bs;
735
736 /* Find session and call free(). */
737 bs = bs_peer_find(bpc);
738 if (bs == NULL)
739 return -1;
740
741 /* This pointer is being referenced, don't let it be deleted. */
742 if (bs->refcount > 0) {
743 log_error("session-delete: refcount failure: %" PRIu64
744 " references",
745 bs->refcount);
746 return -1;
747 }
748
749 log_info("session-delete: %s", bs_to_string(bs));
750
751 control_notify_config(BCM_NOTIFY_CONFIG_DELETE, bs);
752
753 bfd_session_free(bs);
754
755 return 0;
756 }
757
758 void bfd_set_polling(struct bfd_session *bs)
759 {
760 /*
761 * Start polling procedure: the only timers that require polling
762 * to change value without losing connection are:
763 *
764 * - Desired minimum transmission interval;
765 * - Required minimum receive interval;
766 *
767 * RFC 5880, Section 6.8.3.
768 */
769 bs->polling = 1;
770 }
771
772 /*
773 * bs_<state>_handler() functions implement the BFD state machine
774 * transition mechanism. `<state>` is the current session state and
775 * the parameter `nstate` is the peer new state.
776 */
777 static void bs_admin_down_handler(struct bfd_session *bs
778 __attribute__((__unused__)),
779 int nstate __attribute__((__unused__)))
780 {
781 /*
782 * We are administratively down, there is no state machine
783 * handling.
784 */
785 }
786
787 static void bs_down_handler(struct bfd_session *bs, int nstate)
788 {
789 switch (nstate) {
790 case PTM_BFD_ADM_DOWN:
791 /*
792 * Remote peer doesn't want to talk, so lets keep the
793 * connection down.
794 */
795 case PTM_BFD_UP:
796 /* Peer can't be up yet, wait it go to 'init' or 'down'. */
797 break;
798
799 case PTM_BFD_DOWN:
800 /*
801 * Remote peer agreed that the path is down, lets try to
802 * bring it up.
803 */
804 bs->ses_state = PTM_BFD_INIT;
805 break;
806
807 case PTM_BFD_INIT:
808 /*
809 * Remote peer told us his path is up, lets turn
810 * activate the session.
811 */
812 ptm_bfd_sess_up(bs);
813 break;
814
815 default:
816 log_debug("state-change: unhandled neighbor state: %d", nstate);
817 break;
818 }
819 }
820
821 static void bs_init_handler(struct bfd_session *bs, int nstate)
822 {
823 switch (nstate) {
824 case PTM_BFD_ADM_DOWN:
825 /*
826 * Remote peer doesn't want to talk, so lets make the
827 * connection down.
828 */
829 bs->ses_state = PTM_BFD_DOWN;
830 break;
831
832 case PTM_BFD_DOWN:
833 /* Remote peer hasn't moved to first stage yet. */
834 break;
835
836 case PTM_BFD_INIT:
837 case PTM_BFD_UP:
838 /* We agreed on the settings and the path is up. */
839 ptm_bfd_sess_up(bs);
840 break;
841
842 default:
843 log_debug("state-change: unhandled neighbor state: %d", nstate);
844 break;
845 }
846 }
847
848 static void bs_up_handler(struct bfd_session *bs, int nstate)
849 {
850 switch (nstate) {
851 case PTM_BFD_ADM_DOWN:
852 case PTM_BFD_DOWN:
853 /* Peer lost or asked to shutdown connection. */
854 ptm_bfd_sess_dn(bs, BD_NEIGHBOR_DOWN);
855 break;
856
857 case PTM_BFD_INIT:
858 case PTM_BFD_UP:
859 /* Path is up and working. */
860 break;
861
862 default:
863 log_debug("state-change: unhandled neighbor state: %d", nstate);
864 break;
865 }
866 }
867
868 void bs_state_handler(struct bfd_session *bs, int nstate)
869 {
870 switch (bs->ses_state) {
871 case PTM_BFD_ADM_DOWN:
872 bs_admin_down_handler(bs, nstate);
873 break;
874 case PTM_BFD_DOWN:
875 bs_down_handler(bs, nstate);
876 break;
877 case PTM_BFD_INIT:
878 bs_init_handler(bs, nstate);
879 break;
880 case PTM_BFD_UP:
881 bs_up_handler(bs, nstate);
882 break;
883
884 default:
885 log_debug("state-change: [%s] is in invalid state: %d",
886 bs_to_string(bs), nstate);
887 break;
888 }
889 }
890
891 /*
892 * Handles echo timer manipulation after updating timer.
893 */
894 void bs_echo_timer_handler(struct bfd_session *bs)
895 {
896 uint32_t old_timer;
897
898 /*
899 * Before doing any echo handling, check if it is possible to
900 * use it.
901 *
902 * - Check for `echo-mode` configuration.
903 * - Check that we are not using multi hop (RFC 5883,
904 * Section 3).
905 * - Check that we are already at the up state.
906 */
907 if (BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_ECHO) == 0
908 || BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_MH)
909 || bs->ses_state != PTM_BFD_UP)
910 return;
911
912 /* Remote peer asked to stop echo. */
913 if (bs->remote_timers.required_min_echo == 0) {
914 if (BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_ECHO_ACTIVE))
915 ptm_bfd_echo_stop(bs);
916
917 return;
918 }
919
920 /*
921 * Calculate the echo transmission timer: we must not send
922 * echo packets faster than the minimum required time
923 * announced by the remote system.
924 *
925 * RFC 5880, Section 6.8.9.
926 */
927 old_timer = bs->echo_xmt_TO;
928 if (bs->remote_timers.required_min_echo > bs->timers.required_min_echo)
929 bs->echo_xmt_TO = bs->remote_timers.required_min_echo;
930 else
931 bs->echo_xmt_TO = bs->timers.required_min_echo;
932
933 if (BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_ECHO_ACTIVE) == 0
934 || old_timer != bs->echo_xmt_TO)
935 ptm_bfd_echo_start(bs);
936 }
937
938 /*
939 * RFC 5880 Section 6.5.
940 *
941 * When a BFD control packet with the final bit is received, we must
942 * update the session parameters.
943 */
944 void bs_final_handler(struct bfd_session *bs)
945 {
946 /* Start using our new timers. */
947 bs->cur_timers.desired_min_tx = bs->timers.desired_min_tx;
948 bs->cur_timers.required_min_rx = bs->timers.required_min_rx;
949
950 /*
951 * TODO: demand mode. See RFC 5880 Section 6.1.
952 *
953 * When using demand mode we must disable the detection timer
954 * for lost control packets.
955 */
956 if (bs->demand_mode) {
957 /* Notify watchers about changed timers. */
958 control_notify_config(BCM_NOTIFY_CONFIG_UPDATE, bs);
959 return;
960 }
961
962 /*
963 * Calculate detection time based on new timers.
964 *
965 * Transmission calculation:
966 * We must respect the RequiredMinRxInterval from the remote
967 * system: if our desired transmission timer is more than the
968 * minimum receive rate, then we must lower it to at least the
969 * minimum receive interval.
970 *
971 * RFC 5880, Section 6.8.3.
972 */
973 if (bs->timers.desired_min_tx > bs->remote_timers.required_min_rx)
974 bs->xmt_TO = bs->remote_timers.required_min_rx;
975 else
976 bs->xmt_TO = bs->timers.desired_min_tx;
977
978 /* Apply new transmission timer immediately. */
979 ptm_bfd_start_xmt_timer(bs, false);
980
981 /*
982 * Detection timeout calculation:
983 * The minimum detection timeout is the remote detection
984 * multipler (number of packets to be missed) times the agreed
985 * transmission interval.
986 *
987 * RFC 5880, Section 6.8.4.
988 *
989 * TODO: support sending/counting more packets inside detection
990 * timeout.
991 */
992 if (bs->remote_timers.required_min_rx > bs->timers.desired_min_tx)
993 bs->detect_TO = bs->remote_detect_mult
994 * bs->remote_timers.required_min_rx;
995 else
996 bs->detect_TO = bs->remote_detect_mult
997 * bs->timers.desired_min_tx;
998
999 /* Apply new receive timer immediately. */
1000 bfd_recvtimer_update(bs);
1001
1002 /* Notify watchers about changed timers. */
1003 control_notify_config(BCM_NOTIFY_CONFIG_UPDATE, bs);
1004 }
1005
1006 void bs_set_slow_timers(struct bfd_session *bs)
1007 {
1008 /*
1009 * BFD connection must use slow timers before going up or after
1010 * losing connectivity to avoid wasting bandwidth.
1011 *
1012 * RFC 5880, Section 6.8.3.
1013 */
1014 bs->cur_timers.desired_min_tx = BFD_DEF_SLOWTX;
1015 bs->cur_timers.required_min_rx = BFD_DEF_SLOWTX;
1016 bs->cur_timers.required_min_echo = 0;
1017
1018 /* Set the appropriated timeouts for slow connection. */
1019 bs->detect_TO = (BFD_DEFDETECTMULT * BFD_DEF_SLOWTX);
1020 bs->xmt_TO = BFD_DEF_SLOWTX;
1021 }
1022
1023 /*
1024 * Helper functions.
1025 */
1026 static const char *get_diag_str(int diag)
1027 {
1028 for (int i = 0; diag_list[i].str; i++) {
1029 if (diag_list[i].type == diag)
1030 return diag_list[i].str;
1031 }
1032 return "N/A";
1033 }
1034
1035 const char *satostr(struct sockaddr_any *sa)
1036 {
1037 #define INETSTR_BUFCOUNT 8
1038 static char buf[INETSTR_BUFCOUNT][INET6_ADDRSTRLEN];
1039 static int bufidx;
1040 struct sockaddr_in *sin = &sa->sa_sin;
1041 struct sockaddr_in6 *sin6 = &sa->sa_sin6;
1042
1043 bufidx += (bufidx + 1) % INETSTR_BUFCOUNT;
1044 buf[bufidx][0] = 0;
1045
1046 switch (sin->sin_family) {
1047 case AF_INET:
1048 inet_ntop(AF_INET, &sin->sin_addr, buf[bufidx],
1049 sizeof(buf[bufidx]));
1050 break;
1051 case AF_INET6:
1052 inet_ntop(AF_INET6, &sin6->sin6_addr, buf[bufidx],
1053 sizeof(buf[bufidx]));
1054 break;
1055
1056 default:
1057 strlcpy(buf[bufidx], "unknown", sizeof(buf[bufidx]));
1058 break;
1059 }
1060
1061 return buf[bufidx];
1062 }
1063
1064 const char *diag2str(uint8_t diag)
1065 {
1066 switch (diag) {
1067 case 0:
1068 return "ok";
1069 case 1:
1070 return "control detection time expired";
1071 case 2:
1072 return "echo function failed";
1073 case 3:
1074 return "neighbor signaled session down";
1075 case 4:
1076 return "forwarding plane reset";
1077 case 5:
1078 return "path down";
1079 case 6:
1080 return "concatenated path down";
1081 case 7:
1082 return "administratively down";
1083 case 8:
1084 return "reverse concatenated path down";
1085 default:
1086 return "unknown";
1087 }
1088 }
1089
1090 int strtosa(const char *addr, struct sockaddr_any *sa)
1091 {
1092 memset(sa, 0, sizeof(*sa));
1093
1094 if (inet_pton(AF_INET, addr, &sa->sa_sin.sin_addr) == 1) {
1095 sa->sa_sin.sin_family = AF_INET;
1096 #ifdef HAVE_STRUCT_SOCKADDR_SA_LEN
1097 sa->sa_sin.sin_len = sizeof(sa->sa_sin);
1098 #endif /* HAVE_STRUCT_SOCKADDR_SA_LEN */
1099 return 0;
1100 }
1101
1102 if (inet_pton(AF_INET6, addr, &sa->sa_sin6.sin6_addr) == 1) {
1103 sa->sa_sin6.sin6_family = AF_INET6;
1104 #ifdef HAVE_STRUCT_SOCKADDR_SA_LEN
1105 sa->sa_sin6.sin6_len = sizeof(sa->sa_sin6);
1106 #endif /* HAVE_STRUCT_SOCKADDR_SA_LEN */
1107 return 0;
1108 }
1109
1110 return -1;
1111 }
1112
1113 void integer2timestr(uint64_t time, char *buf, size_t buflen)
1114 {
1115 unsigned int year, month, day, hour, minute, second;
1116 int rv;
1117
1118 #define MINUTES (60)
1119 #define HOURS (60 * MINUTES)
1120 #define DAYS (24 * HOURS)
1121 #define MONTHS (30 * DAYS)
1122 #define YEARS (12 * MONTHS)
1123 if (time >= YEARS) {
1124 year = time / YEARS;
1125 time -= year * YEARS;
1126
1127 rv = snprintf(buf, buflen, "%u year(s), ", year);
1128 buf += rv;
1129 buflen -= rv;
1130 }
1131 if (time >= MONTHS) {
1132 month = time / MONTHS;
1133 time -= month * MONTHS;
1134
1135 rv = snprintf(buf, buflen, "%u month(s), ", month);
1136 buf += rv;
1137 buflen -= rv;
1138 }
1139 if (time >= DAYS) {
1140 day = time / DAYS;
1141 time -= day * DAYS;
1142
1143 rv = snprintf(buf, buflen, "%u day(s), ", day);
1144 buf += rv;
1145 buflen -= rv;
1146 }
1147 if (time >= HOURS) {
1148 hour = time / HOURS;
1149 time -= hour * HOURS;
1150
1151 rv = snprintf(buf, buflen, "%u hour(s), ", hour);
1152 buf += rv;
1153 buflen -= rv;
1154 }
1155 if (time >= MINUTES) {
1156 minute = time / MINUTES;
1157 time -= minute * MINUTES;
1158
1159 rv = snprintf(buf, buflen, "%u minute(s), ", minute);
1160 buf += rv;
1161 buflen -= rv;
1162 }
1163 second = time % MINUTES;
1164 snprintf(buf, buflen, "%u second(s)", second);
1165 }
1166
1167 const char *bs_to_string(const struct bfd_session *bs)
1168 {
1169 static char buf[256];
1170 char addr_buf[INET6_ADDRSTRLEN];
1171 int pos;
1172 bool is_mhop = BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_MH);
1173
1174 pos = snprintf(buf, sizeof(buf), "mhop:%s", is_mhop ? "yes" : "no");
1175 pos += snprintf(buf + pos, sizeof(buf) - pos, " peer:%s",
1176 inet_ntop(bs->key.family, &bs->key.peer, addr_buf,
1177 sizeof(addr_buf)));
1178 pos += snprintf(buf + pos, sizeof(buf) - pos, " local:%s",
1179 inet_ntop(bs->key.family, &bs->key.local, addr_buf,
1180 sizeof(addr_buf)));
1181 if (bs->key.vrfname[0])
1182 pos += snprintf(buf + pos, sizeof(buf) - pos, " vrf:%s",
1183 bs->key.vrfname);
1184 if (bs->key.ifname[0])
1185 pos += snprintf(buf + pos, sizeof(buf) - pos, " ifname:%s",
1186 bs->key.ifname);
1187
1188 (void)pos;
1189
1190 return buf;
1191 }
1192
1193 int bs_observer_add(struct bfd_session *bs)
1194 {
1195 struct bfd_session_observer *bso;
1196
1197 bso = XCALLOC(MTYPE_BFDD_SESSION_OBSERVER, sizeof(*bso));
1198 bso->bso_isaddress = false;
1199 bso->bso_bs = bs;
1200 bso->bso_isinterface = !BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_MH);
1201 if (bso->bso_isinterface)
1202 strlcpy(bso->bso_entryname, bs->key.ifname,
1203 sizeof(bso->bso_entryname));
1204 /* Handle socket binding failures caused by missing local addresses. */
1205 if (bs->sock == -1) {
1206 bso->bso_isaddress = true;
1207 bso->bso_addr.family = bs->key.family;
1208 memcpy(&bso->bso_addr.u.prefix, &bs->key.local,
1209 sizeof(bs->key.local));
1210 }
1211
1212 TAILQ_INSERT_TAIL(&bglobal.bg_obslist, bso, bso_entry);
1213
1214 return 0;
1215 }
1216
1217 void bs_observer_del(struct bfd_session_observer *bso)
1218 {
1219 TAILQ_REMOVE(&bglobal.bg_obslist, bso, bso_entry);
1220 XFREE(MTYPE_BFDD_SESSION_OBSERVER, bso);
1221 }
1222
1223 void bs_to_bpc(struct bfd_session *bs, struct bfd_peer_cfg *bpc)
1224 {
1225 memset(bpc, 0, sizeof(*bpc));
1226
1227 bpc->bpc_ipv4 = (bs->key.family == AF_INET);
1228 bpc->bpc_mhop = bs->key.mhop;
1229
1230 switch (bs->key.family) {
1231 case AF_INET:
1232 bpc->bpc_peer.sa_sin.sin_family = AF_INET;
1233 memcpy(&bpc->bpc_peer.sa_sin.sin_addr, &bs->key.peer,
1234 sizeof(bpc->bpc_peer.sa_sin.sin_addr));
1235
1236 if (memcmp(&bs->key.local, &zero_addr, sizeof(bs->key.local))) {
1237 bpc->bpc_local.sa_sin.sin_family = AF_INET6;
1238 memcpy(&bpc->bpc_local.sa_sin.sin_addr, &bs->key.local,
1239 sizeof(bpc->bpc_local.sa_sin.sin_addr));
1240 }
1241 break;
1242
1243 case AF_INET6:
1244 bpc->bpc_peer.sa_sin.sin_family = AF_INET6;
1245 memcpy(&bpc->bpc_peer.sa_sin6.sin6_addr, &bs->key.peer,
1246 sizeof(bpc->bpc_peer.sa_sin6.sin6_addr));
1247
1248 bpc->bpc_local.sa_sin6.sin6_family = AF_INET6;
1249 memcpy(&bpc->bpc_local.sa_sin6.sin6_addr, &bs->key.local,
1250 sizeof(bpc->bpc_local.sa_sin6.sin6_addr));
1251 break;
1252 }
1253
1254 if (bs->key.ifname[0]) {
1255 bpc->bpc_has_localif = true;
1256 strlcpy(bpc->bpc_localif, bs->key.ifname,
1257 sizeof(bpc->bpc_localif));
1258 }
1259
1260 if (bs->key.vrfname[0]) {
1261 bpc->bpc_has_vrfname = true;
1262 strlcpy(bpc->bpc_vrfname, bs->key.vrfname,
1263 sizeof(bpc->bpc_vrfname));
1264 }
1265 }
1266
1267
1268 /*
1269 * BFD hash data structures to find sessions.
1270 */
1271 static struct hash *bfd_id_hash;
1272 static struct hash *bfd_key_hash;
1273
1274 static unsigned int bfd_id_hash_do(void *p);
1275 static unsigned int bfd_key_hash_do(void *p);
1276
1277 static void _bfd_free(struct hash_bucket *hb,
1278 void *arg __attribute__((__unused__)));
1279
1280 /* BFD hash for our discriminator. */
1281 static unsigned int bfd_id_hash_do(void *p)
1282 {
1283 struct bfd_session *bs = p;
1284
1285 return jhash_1word(bs->discrs.my_discr, 0);
1286 }
1287
1288 static bool bfd_id_hash_cmp(const void *n1, const void *n2)
1289 {
1290 const struct bfd_session *bs1 = n1, *bs2 = n2;
1291
1292 return bs1->discrs.my_discr == bs2->discrs.my_discr;
1293 }
1294
1295 /* BFD hash for single hop. */
1296 static unsigned int bfd_key_hash_do(void *p)
1297 {
1298 struct bfd_session *bs = p;
1299
1300 return jhash(&bs->key, sizeof(bs->key), 0);
1301 }
1302
1303 static bool bfd_key_hash_cmp(const void *n1, const void *n2)
1304 {
1305 const struct bfd_session *bs1 = n1, *bs2 = n2;
1306
1307 return memcmp(&bs1->key, &bs2->key, sizeof(bs1->key)) == 0;
1308 }
1309
1310
1311 /*
1312 * Hash public interface / exported functions.
1313 */
1314
1315 /* Lookup functions. */
1316 struct bfd_session *bfd_id_lookup(uint32_t id)
1317 {
1318 struct bfd_session bs;
1319
1320 bs.discrs.my_discr = id;
1321
1322 return hash_lookup(bfd_id_hash, &bs);
1323 }
1324
1325 struct bfd_session *bfd_key_lookup(struct bfd_key key)
1326 {
1327 struct bfd_session bs, *bsp;
1328
1329 bs.key = key;
1330 bsp = hash_lookup(bfd_key_hash, &bs);
1331
1332 /* Handle cases where local-address is optional. */
1333 if (bsp == NULL && bs.key.family == AF_INET) {
1334 memset(&bs.key.local, 0, sizeof(bs.key.local));
1335 bsp = hash_lookup(bfd_key_hash, &bs);
1336 }
1337
1338 /* Handle cases where ifname is optional. */
1339 bs.key = key;
1340 if (bsp == NULL && bs.key.ifname[0]) {
1341 memset(bs.key.ifname, 0, sizeof(bs.key.ifname));
1342 bsp = hash_lookup(bfd_key_hash, &bs);
1343
1344 /* Handle cases where local-address and ifname are optional. */
1345 if (bsp == NULL && bs.key.family == AF_INET) {
1346 memset(&bs.key.local, 0, sizeof(bs.key.local));
1347 bsp = hash_lookup(bfd_key_hash, &bs);
1348 }
1349 }
1350
1351 return bsp;
1352 }
1353
1354 /*
1355 * Delete functions.
1356 *
1357 * Delete functions searches and remove the item from the hash and
1358 * returns a pointer to the removed item data. If the item was not found
1359 * then it returns NULL.
1360 *
1361 * The data stored inside the hash is not free()ed, so you must do it
1362 * manually after getting the pointer back.
1363 */
1364 struct bfd_session *bfd_id_delete(uint32_t id)
1365 {
1366 struct bfd_session bs;
1367
1368 bs.discrs.my_discr = id;
1369
1370 return hash_release(bfd_id_hash, &bs);
1371 }
1372
1373 struct bfd_session *bfd_key_delete(struct bfd_key key)
1374 {
1375 struct bfd_session bs, *bsp;
1376
1377 bs.key = key;
1378 bsp = hash_lookup(bfd_key_hash, &bs);
1379 if (bsp == NULL && key.ifname[0]) {
1380 memset(bs.key.ifname, 0, sizeof(bs.key.ifname));
1381 bsp = hash_lookup(bfd_key_hash, &bs);
1382 }
1383
1384 return hash_release(bfd_key_hash, bsp);
1385 }
1386
1387 /* Iteration functions. */
1388 void bfd_id_iterate(hash_iter_func hif, void *arg)
1389 {
1390 hash_iterate(bfd_id_hash, hif, arg);
1391 }
1392
1393 void bfd_key_iterate(hash_iter_func hif, void *arg)
1394 {
1395 hash_iterate(bfd_key_hash, hif, arg);
1396 }
1397
1398 /*
1399 * Insert functions.
1400 *
1401 * Inserts session into hash and returns `true` on success, otherwise
1402 * `false`.
1403 */
1404 bool bfd_id_insert(struct bfd_session *bs)
1405 {
1406 return (hash_get(bfd_id_hash, bs, hash_alloc_intern) == bs);
1407 }
1408
1409 bool bfd_key_insert(struct bfd_session *bs)
1410 {
1411 return (hash_get(bfd_key_hash, bs, hash_alloc_intern) == bs);
1412 }
1413
1414 void bfd_initialize(void)
1415 {
1416 bfd_id_hash = hash_create(bfd_id_hash_do, bfd_id_hash_cmp,
1417 "BFD session discriminator hash");
1418 bfd_key_hash = hash_create(bfd_key_hash_do, bfd_key_hash_cmp,
1419 "BFD session hash");
1420 }
1421
1422 static void _bfd_free(struct hash_bucket *hb,
1423 void *arg __attribute__((__unused__)))
1424 {
1425 struct bfd_session *bs = hb->data;
1426
1427 bfd_session_free(bs);
1428 }
1429
1430 void bfd_shutdown(void)
1431 {
1432 /*
1433 * Close and free all BFD sessions.
1434 *
1435 * _bfd_free() will call bfd_session_free() which will take care
1436 * of removing the session from all hashes, so we just run an
1437 * assert() here to make sure it really happened.
1438 */
1439 bfd_id_iterate(_bfd_free, NULL);
1440 assert(bfd_key_hash->count == 0);
1441
1442 /* Now free the hashes themselves. */
1443 hash_free(bfd_id_hash);
1444 hash_free(bfd_key_hash);
1445 }
1446
1447 static int bfd_vrf_new(struct vrf *vrf)
1448 {
1449 log_debug("VRF Created: %s(%u)", vrf->name, vrf->vrf_id);
1450 return 0;
1451 }
1452
1453 static int bfd_vrf_delete(struct vrf *vrf)
1454 {
1455 log_debug("VRF Deletion: %s(%u)", vrf->name, vrf->vrf_id);
1456 return 0;
1457 }
1458
1459 static int bfd_vrf_enable(struct vrf *vrf)
1460 {
1461 struct bfd_vrf_global *bvrf;
1462
1463 /* a different name */
1464 if (!vrf->info) {
1465 bvrf = XCALLOC(MTYPE_BFDD_VRF, sizeof(struct bfd_vrf_global));
1466 bvrf->vrf = vrf;
1467 vrf->info = (void *)bvrf;
1468 } else
1469 bvrf = vrf->info;
1470 log_debug("VRF enable add %s id %u", vrf->name, vrf->vrf_id);
1471
1472 /* create sockets if needed */
1473 if (!bvrf->bg_shop)
1474 bvrf->bg_shop = bp_udp_shop(vrf->vrf_id);
1475 if (!bvrf->bg_mhop)
1476 bvrf->bg_mhop = bp_udp_mhop(vrf->vrf_id);
1477 if (!bvrf->bg_shop6)
1478 bvrf->bg_shop6 = bp_udp6_shop(vrf->vrf_id);
1479 if (!bvrf->bg_mhop6)
1480 bvrf->bg_mhop6 = bp_udp6_mhop(vrf->vrf_id);
1481 if (!bvrf->bg_echo)
1482 bvrf->bg_echo = bp_echo_socket(vrf->vrf_id);
1483 if (!bvrf->bg_echov6)
1484 bvrf->bg_echov6 = bp_echov6_socket(vrf->vrf_id);
1485
1486 /* Add descriptors to the event loop. */
1487 if (!bvrf->bg_ev[0])
1488 thread_add_read(master, bfd_recv_cb, bvrf, bvrf->bg_shop,
1489 &bvrf->bg_ev[0]);
1490 if (!bvrf->bg_ev[1])
1491 thread_add_read(master, bfd_recv_cb, bvrf, bvrf->bg_mhop,
1492 &bvrf->bg_ev[1]);
1493 if (!bvrf->bg_ev[2])
1494 thread_add_read(master, bfd_recv_cb, bvrf, bvrf->bg_shop6,
1495 &bvrf->bg_ev[2]);
1496 if (!bvrf->bg_ev[3])
1497 thread_add_read(master, bfd_recv_cb, bvrf, bvrf->bg_mhop6,
1498 &bvrf->bg_ev[3]);
1499 if (!bvrf->bg_ev[4])
1500 thread_add_read(master, bfd_recv_cb, bvrf, bvrf->bg_echo,
1501 &bvrf->bg_ev[4]);
1502 if (!bvrf->bg_ev[5])
1503 thread_add_read(master, bfd_recv_cb, bvrf, bvrf->bg_echov6,
1504 &bvrf->bg_ev[5]);
1505 return 0;
1506 }
1507
1508 static int bfd_vrf_disable(struct vrf *vrf)
1509 {
1510 struct bfd_vrf_global *bvrf;
1511
1512 if (!vrf->info)
1513 return 0;
1514 bvrf = vrf->info;
1515 log_debug("VRF disable %s id %d", vrf->name, vrf->vrf_id);
1516 /* Close all descriptors. */
1517 socket_close(&bvrf->bg_echo);
1518 socket_close(&bvrf->bg_shop);
1519 socket_close(&bvrf->bg_mhop);
1520 socket_close(&bvrf->bg_shop6);
1521 socket_close(&bvrf->bg_mhop6);
1522
1523 /* free context */
1524 XFREE(MTYPE_BFDD_VRF, bvrf);
1525 vrf->info = NULL;
1526
1527 return 0;
1528 }
1529
1530 void bfd_vrf_init(void)
1531 {
1532 vrf_init(bfd_vrf_new, bfd_vrf_enable, bfd_vrf_disable,
1533 bfd_vrf_delete, NULL);
1534 }
1535
1536 void bfd_vrf_terminate(void)
1537 {
1538 vrf_terminate();
1539 }
1540
1541 struct bfd_vrf_global *bfd_vrf_look_by_session(struct bfd_session *bfd)
1542 {
1543 struct vrf *vrf;
1544
1545 if (!vrf_is_backend_netns()) {
1546 vrf = vrf_lookup_by_id(VRF_DEFAULT);
1547 if (vrf)
1548 return (struct bfd_vrf_global *)vrf->info;
1549 return NULL;
1550 }
1551 if (!bfd)
1552 return NULL;
1553 if (!bfd->vrf)
1554 return NULL;
1555 return bfd->vrf->info;
1556 }