]> git.proxmox.com Git - mirror_frr.git/blame - bfdd/bfd.c
bfdd: add vrf framework
[mirror_frr.git] / bfdd / bfd.c
CommitLineData
e9e2c950
RZ
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
e9e2c950
RZ
30#include "lib/jhash.h"
31
32#include "bfd.h"
33
34DEFINE_QOBJ_TYPE(bfd_session);
35
36/*
37 * Prototypes
38 */
79b4a6fc
RZ
39void 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);
d245e522 42
e9e2c950
RZ
43static uint32_t ptm_bfd_gen_ID(void);
44static void ptm_bfd_echo_xmt_TO(struct bfd_session *bfd);
45static void bfd_session_free(struct bfd_session *bs);
d245e522 46static struct bfd_session *bfd_session_new(void);
e9e2c950
RZ
47static struct bfd_session *bfd_find_disc(struct sockaddr_any *sa,
48 uint32_t ldisc);
49static int bfd_session_update(struct bfd_session *bs, struct bfd_peer_cfg *bpc);
50static const char *get_diag_str(int diag);
51
9f37770f
RZ
52static void bs_admin_down_handler(struct bfd_session *bs, int nstate);
53static void bs_down_handler(struct bfd_session *bs, int nstate);
54static void bs_init_handler(struct bfd_session *bs, int nstate);
55static void bs_up_handler(struct bfd_session *bs, int nstate);
56
79b4a6fc
RZ
57/* Zeroed array with the size of an IPv6 address. */
58struct in6_addr zero_addr;
e9e2c950
RZ
59
60/*
61 * Functions
62 */
79b4a6fc
RZ
63void 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)
d245e522 66{
79b4a6fc 67 memset(key, 0, sizeof(*key));
d245e522 68
79b4a6fc
RZ
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));
d245e522
RZ
83 break;
84 }
d245e522 85
79b4a6fc
RZ
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));
d245e522
RZ
91}
92
e9e2c950
RZ
93struct bfd_session *bs_peer_find(struct bfd_peer_cfg *bpc)
94{
95 struct bfd_session *bs;
96 struct peer_label *pl;
79b4a6fc 97 struct bfd_key key;
e9e2c950
RZ
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. */
79b4a6fc
RZ
109 gen_bfd_key(&key, &bpc->bpc_peer, &bpc->bpc_local, bpc->bpc_mhop,
110 bpc->bpc_localif, bpc->bpc_vrfname);
e9e2c950 111
79b4a6fc 112 return bfd_key_lookup(key);
d245e522
RZ
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 */
121int bfd_session_enable(struct bfd_session *bs)
122{
d245e522
RZ
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 */
218afa36
PG
131 if (bs->key.vrfname[0]) {
132 vrf = vrf_lookup_by_name(bs->key.vrfname);
d245e522 133 if (vrf == NULL) {
79b4a6fc
RZ
134 log_error(
135 "session-enable: specified VRF doesn't exists.");
d245e522
RZ
136 return 0;
137 }
138 }
139
218afa36
PG
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) {
79b4a6fc 146 log_error(
218afa36 147 "session-enable: specified interface doesn't exists.");
d245e522
RZ
148 return 0;
149 }
218afa36
PG
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 }
d245e522
RZ
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
79b4a6fc
RZ
165 if (bs->key.ifname[0]
166 && BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_MH) == 0)
d245e522
RZ
167 bs->ifp = ifp;
168
261e0ba9
RZ
169 /* Sanity check: don't leak open sockets. */
170 if (bs->sock != -1) {
1ac865e7 171 log_debug("session-enable: previous socket open");
261e0ba9
RZ
172 close(bs->sock);
173 bs->sock = -1;
174 }
175
d245e522
RZ
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)
261e0ba9 184 return 0;
d245e522
RZ
185 } else {
186 psock = bp_peer_socketv6(bs);
187 if (psock == -1)
261e0ba9 188 return 0;
d245e522
RZ
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
d245e522
RZ
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 */
208void 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);
e9e2c950
RZ
221}
222
223static uint32_t ptm_bfd_gen_ID(void)
224{
843b324d 225 uint32_t session_id;
e9e2c950 226
843b324d
RZ
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;
e9e2c950
RZ
237}
238
239void 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
263static 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
272void 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
8bd859f6 281void ptm_bfd_echo_stop(struct bfd_session *bfd)
e9e2c950
RZ
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);
e9e2c950
RZ
289}
290
291void ptm_bfd_echo_start(struct bfd_session *bfd)
292{
293 bfd->echo_detect_TO = (bfd->remote_detect_mult * bfd->echo_xmt_TO);
451eb5a2
RZ
294 if (bfd->echo_detect_TO > 0)
295 ptm_bfd_echo_xmt_TO(bfd);
e9e2c950
RZ
296}
297
bc50bcc8 298void ptm_bfd_sess_up(struct bfd_session *bfd)
e9e2c950 299{
03e7f088
RZ
300 int old_state = bfd->ses_state;
301
e9e2c950
RZ
302 bfd->local_diag = 0;
303 bfd->ses_state = PTM_BFD_UP;
e9e2c950
RZ
304 monotime(&bfd->uptime);
305
c0ef9a8a
RZ
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);
e9e2c950
RZ
311
312 control_notify(bfd);
313
0684c9b1
RZ
314 if (old_state != bfd->ses_state) {
315 bfd->stats.session_up++;
03e7f088
RZ
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);
0684c9b1 319 }
e9e2c950
RZ
320}
321
bc50bcc8 322void ptm_bfd_sess_dn(struct bfd_session *bfd, uint8_t diag)
e9e2c950
RZ
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
b912b189
RZ
335 /* Slow down the control packets, the connection is down. */
336 bs_set_slow_timers(bfd);
337
e9e2c950
RZ
338 /* only signal clients when going from up->down state */
339 if (old_state == PTM_BFD_UP)
340 control_notify(bfd);
341
e9e2c950
RZ
342 /* Stop echo packet transmission if they are active */
343 if (BFD_CHECK_FLAG(bfd->flags, BFD_SESS_FLAG_ECHO_ACTIVE))
8bd859f6 344 ptm_bfd_echo_stop(bfd);
03e7f088 345
0684c9b1
RZ
346 if (old_state != bfd->ses_state) {
347 bfd->stats.session_down++;
03e7f088
RZ
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));
0684c9b1 352 }
e9e2c950
RZ
353}
354
e9e2c950
RZ
355static 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
79b4a6fc 364 switch (bs->key.family) {
e9e2c950 365 case AF_INET:
79b4a6fc
RZ
366 if (memcmp(&sa->sa_sin.sin_addr, &bs->key.peer,
367 sizeof(sa->sa_sin.sin_addr)))
368 return NULL;
e9e2c950
RZ
369 break;
370 case AF_INET6:
79b4a6fc
RZ
371 if (memcmp(&sa->sa_sin6.sin6_addr, &bs->key.peer,
372 sizeof(sa->sa_sin6.sin6_addr)))
373 return NULL;
e9e2c950
RZ
374 break;
375 }
376
79b4a6fc 377 return bs;
e9e2c950
RZ
378}
379
b333abc2 380struct bfd_session *ptm_bfd_sess_find(struct bfd_pkt *cp,
e9e2c950
RZ
381 struct sockaddr_any *peer,
382 struct sockaddr_any *local,
b333abc2
RZ
383 ifindex_t ifindex, vrf_id_t vrfid,
384 bool is_mhop)
e9e2c950 385{
79b4a6fc
RZ
386 struct interface *ifp;
387 struct vrf *vrf;
388 struct bfd_key key;
e9e2c950 389
9d63adda
RZ
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. */
79b4a6fc
RZ
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);
9d63adda 404
79b4a6fc
RZ
405 gen_bfd_key(&key, peer, local, is_mhop, ifp ? ifp->name : NULL,
406 vrf ? vrf->name : NULL);
e9e2c950 407
9d63adda 408 /* XXX maybe remoteDiscr should be checked for remoteHeard cases. */
79b4a6fc 409 return bfd_key_lookup(key);
e9e2c950
RZ
410}
411
e9e2c950
RZ
412int 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
421int bfd_echo_xmt_cb(struct thread *t)
422{
423 struct bfd_session *bs = THREAD_ARG(t);
424
451eb5a2
RZ
425 if (bs->echo_xmt_TO > 0)
426 ptm_bfd_echo_xmt_TO(bs);
e9e2c950
RZ
427
428 return 0;
429}
430
431/* Was ptm_bfd_detect_TO() */
432int bfd_recvtimer_cb(struct thread *t)
433{
434 struct bfd_session *bs = THREAD_ARG(t);
e9e2c950
RZ
435
436 switch (bs->ses_state) {
437 case PTM_BFD_INIT:
438 case PTM_BFD_UP:
bc50bcc8 439 ptm_bfd_sess_dn(bs, BD_CONTROL_EXPIRED);
e9e2c950
RZ
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
e9e2c950
RZ
451 return 0;
452}
453
454/* Was ptm_bfd_echo_detect_TO() */
455int bfd_echo_recvtimer_cb(struct thread *t)
456{
457 struct bfd_session *bs = THREAD_ARG(t);
e9e2c950
RZ
458
459 switch (bs->ses_state) {
460 case PTM_BFD_INIT:
461 case PTM_BFD_UP:
bc50bcc8 462 ptm_bfd_sess_dn(bs, BD_ECHO_FAILED);
e9e2c950
RZ
463 break;
464 }
465
e9e2c950
RZ
466 return 0;
467}
468
d245e522 469static struct bfd_session *bfd_session_new(void)
e9e2c950
RZ
470{
471 struct bfd_session *bs;
472
473 bs = XCALLOC(MTYPE_BFDD_CONFIG, sizeof(*bs));
e9e2c950
RZ
474
475 QOBJ_REG(bs, bfd_session);
476
f43b9368 477 bs->timers.desired_min_tx = BFD_DEFDESIREDMINTX;
e9e2c950
RZ
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;
d245e522 482 bs->ses_state = PTM_BFD_DOWN;
e9e2c950 483
b912b189
RZ
484 /* Initiate connection with slow timers. */
485 bs_set_slow_timers(bs);
f43b9368
RZ
486
487 /* Initiate remote settings as well. */
488 bs->remote_timers = bs->cur_timers;
489 bs->remote_detect_mult = BFD_DEFDETECTMULT;
490
d245e522 491 bs->sock = -1;
e9e2c950
RZ
492 monotime(&bs->uptime);
493 bs->downtime = bs->uptime;
494
495 return bs;
496}
497
498int 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
531static 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);
e9e2c950
RZ
540
541 /* Activate/update echo receive timeout timer. */
73c62f8e 542 bs_echo_timer_handler(bs);
e9e2c950
RZ
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);
8bd859f6 549 ptm_bfd_echo_stop(bs);
e9e2c950
RZ
550 }
551
552skip_echo:
553 if (bpc->bpc_has_txinterval)
f43b9368 554 bs->timers.desired_min_tx = bpc->bpc_txinterval * 1000;
e9e2c950
RZ
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
d245e522
RZ
585 /* Don't try to send packets with a disabled session. */
586 if (bs->sock != -1)
587 ptm_bfd_snd(bs, 0);
e9e2c950
RZ
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);
e9e2c950
RZ
602 }
603}
604
605static 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
e9e2c950
RZ
613 control_notify_config(BCM_NOTIFY_CONFIG_UPDATE, bs);
614
615 return 0;
616}
617
618static void bfd_session_free(struct bfd_session *bs)
619{
d245e522 620 struct bfd_session_observer *bso;
e9e2c950 621
d245e522 622 bfd_session_disable(bs);
e9e2c950 623
79b4a6fc
RZ
624 bfd_key_delete(bs->key);
625 bfd_id_delete(bs->discrs.my_discr);
626
d245e522
RZ
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);
e9e2c950
RZ
636
637 pl_free(bs->pl);
638
639 QOBJ_UNREG(bs);
640 XFREE(MTYPE_BFDD_CONFIG, bs);
641}
642
643struct bfd_session *ptm_bfd_sess_new(struct bfd_peer_cfg *bpc)
644{
645 struct bfd_session *bfd, *l_bfd;
e9e2c950
RZ
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
d245e522
RZ
657 /* Get BFD session storage with its defaults. */
658 bfd = bfd_session_new();
e9e2c950 659 if (bfd == NULL) {
03e7f088 660 log_error("session-new: allocation failed");
e9e2c950
RZ
661 return NULL;
662 }
663
d245e522
RZ
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)
79b4a6fc
RZ
669 strlcpy(bfd->key.ifname, bpc->bpc_localif,
670 sizeof(bfd->key.ifname));
e9e2c950 671
d245e522 672 if (bpc->bpc_has_vrfname)
79b4a6fc
RZ
673 strlcpy(bfd->key.vrfname, bpc->bpc_vrfname,
674 sizeof(bfd->key.vrfname));
e9e2c950 675
d245e522
RZ
676 /* Copy remaining data. */
677 if (bpc->bpc_ipv4 == false)
678 BFD_SET_FLAG(bfd->flags, BFD_SESS_FLAG_IPV6);
e9e2c950 679
79b4a6fc
RZ
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;
d245e522 699 }
e9e2c950 700
79b4a6fc
RZ
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);
d245e522
RZ
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;
e9e2c950
RZ
716 }
717
261e0ba9
RZ
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
d245e522 722 /* Apply other configurations. */
e9e2c950
RZ
723 _bfd_session_update(bfd, bpc);
724
03e7f088 725 log_info("session-new: %s", bs_to_string(bfd));
e9e2c950
RZ
726
727 control_notify_config(BCM_NOTIFY_CONFIG_ADD, bfd);
728
729 return bfd;
730}
731
bc50bcc8 732int ptm_bfd_sess_del(struct bfd_peer_cfg *bpc)
e9e2c950
RZ
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) {
03e7f088
RZ
743 log_error("session-delete: refcount failure: %" PRIu64
744 " references",
745 bs->refcount);
e9e2c950
RZ
746 return -1;
747 }
748
03e7f088 749 log_info("session-delete: %s", bs_to_string(bs));
e9e2c950
RZ
750
751 control_notify_config(BCM_NOTIFY_CONFIG_DELETE, bs);
752
753 bfd_session_free(bs);
754
755 return 0;
756}
757
d3f3a2c4
RZ
758void bfd_set_polling(struct bfd_session *bs)
759{
c0ef9a8a
RZ
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 */
d3f3a2c4
RZ
769 bs->polling = 1;
770}
771
aef131af
RZ
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 */
9f37770f
RZ
777static void bs_admin_down_handler(struct bfd_session *bs
778 __attribute__((__unused__)),
779 int nstate __attribute__((__unused__)))
aef131af
RZ
780{
781 /*
782 * We are administratively down, there is no state machine
783 * handling.
784 */
785}
786
9f37770f 787static void bs_down_handler(struct bfd_session *bs, int nstate)
aef131af
RZ
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 */
bc50bcc8 812 ptm_bfd_sess_up(bs);
aef131af
RZ
813 break;
814
815 default:
816 log_debug("state-change: unhandled neighbor state: %d", nstate);
817 break;
818 }
819}
820
9f37770f 821static void bs_init_handler(struct bfd_session *bs, int nstate)
aef131af
RZ
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. */
bc50bcc8 839 ptm_bfd_sess_up(bs);
aef131af
RZ
840 break;
841
842 default:
843 log_debug("state-change: unhandled neighbor state: %d", nstate);
844 break;
845 }
846}
847
9f37770f 848static void bs_up_handler(struct bfd_session *bs, int nstate)
aef131af
RZ
849{
850 switch (nstate) {
851 case PTM_BFD_ADM_DOWN:
852 case PTM_BFD_DOWN:
853 /* Peer lost or asked to shutdown connection. */
bc50bcc8 854 ptm_bfd_sess_dn(bs, BD_NEIGHBOR_DOWN);
aef131af
RZ
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
868void 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
c0ef9a8a
RZ
891/*
892 * Handles echo timer manipulation after updating timer.
893 */
894void 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))
8bd859f6 915 ptm_bfd_echo_stop(bs);
c0ef9a8a
RZ
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 */
944void bs_final_handler(struct bfd_session *bs)
945{
946 /* Start using our new timers. */
f43b9368
RZ
947 bs->cur_timers.desired_min_tx = bs->timers.desired_min_tx;
948 bs->cur_timers.required_min_rx = bs->timers.required_min_rx;
c0ef9a8a
RZ
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
b912b189
RZ
1006void 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}
e9e2c950
RZ
1022
1023/*
1024 * Helper functions.
1025 */
1026static 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
1035const 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
1064const 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
1090int 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
1113void 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)
23586b05
DS
1119#define HOURS (60 * MINUTES)
1120#define DAYS (24 * HOURS)
1121#define MONTHS (30 * DAYS)
1122#define YEARS (12 * MONTHS)
e9e2c950
RZ
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
79b4a6fc 1167const char *bs_to_string(const struct bfd_session *bs)
03e7f088
RZ
1168{
1169 static char buf[256];
79b4a6fc 1170 char addr_buf[INET6_ADDRSTRLEN];
03e7f088
RZ
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");
79b4a6fc
RZ
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);
3cef9b7f
DS
1187
1188 (void)pos;
1189
03e7f088
RZ
1190 return buf;
1191}
1192
d245e522
RZ
1193int bs_observer_add(struct bfd_session *bs)
1194{
1195 struct bfd_session_observer *bso;
1196
ed74032b
DS
1197 bso = XCALLOC(MTYPE_BFDD_SESSION_OBSERVER, sizeof(*bso));
1198 bso->bso_isaddress = false;
d245e522
RZ
1199 bso->bso_bs = bs;
1200 bso->bso_isinterface = !BFD_CHECK_FLAG(bs->flags, BFD_SESS_FLAG_MH);
1201 if (bso->bso_isinterface)
79b4a6fc 1202 strlcpy(bso->bso_entryname, bs->key.ifname,
d245e522 1203 sizeof(bso->bso_entryname));
261e0ba9
RZ
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
d245e522
RZ
1212 TAILQ_INSERT_TAIL(&bglobal.bg_obslist, bso, bso_entry);
1213
1214 return 0;
1215}
1216
1217void 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
79b4a6fc
RZ
1223void 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;
5ff7d1be 1238 memcpy(&bpc->bpc_local.sa_sin.sin_addr, &bs->key.local,
79b4a6fc
RZ
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;
5ff7d1be 1249 memcpy(&bpc->bpc_local.sa_sin6.sin6_addr, &bs->key.local,
79b4a6fc
RZ
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
e9e2c950
RZ
1267
1268/*
1269 * BFD hash data structures to find sessions.
1270 */
1271static struct hash *bfd_id_hash;
79b4a6fc 1272static struct hash *bfd_key_hash;
e9e2c950
RZ
1273
1274static unsigned int bfd_id_hash_do(void *p);
79b4a6fc 1275static unsigned int bfd_key_hash_do(void *p);
e9e2c950 1276
e3b78da8 1277static void _bfd_free(struct hash_bucket *hb,
e9e2c950 1278 void *arg __attribute__((__unused__)));
e9e2c950
RZ
1279
1280/* BFD hash for our discriminator. */
1281static 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
74df8d6d 1288static bool bfd_id_hash_cmp(const void *n1, const void *n2)
e9e2c950
RZ
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. */
79b4a6fc 1296static unsigned int bfd_key_hash_do(void *p)
e9e2c950
RZ
1297{
1298 struct bfd_session *bs = p;
1299
79b4a6fc 1300 return jhash(&bs->key, sizeof(bs->key), 0);
e9e2c950
RZ
1301}
1302
79b4a6fc 1303static bool bfd_key_hash_cmp(const void *n1, const void *n2)
e9e2c950
RZ
1304{
1305 const struct bfd_session *bs1 = n1, *bs2 = n2;
1306
79b4a6fc 1307 return memcmp(&bs1->key, &bs2->key, sizeof(bs1->key)) == 0;
e9e2c950
RZ
1308}
1309
e9e2c950 1310
e9e2c950
RZ
1311/*
1312 * Hash public interface / exported functions.
1313 */
1314
1315/* Lookup functions. */
1316struct 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
79b4a6fc 1325struct bfd_session *bfd_key_lookup(struct bfd_key key)
e9e2c950
RZ
1326{
1327 struct bfd_session bs, *bsp;
1328
79b4a6fc
RZ
1329 bs.key = key;
1330 bsp = hash_lookup(bfd_key_hash, &bs);
e9e2c950 1331
79b4a6fc
RZ
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);
e9e2c950
RZ
1336 }
1337
79b4a6fc
RZ
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);
e9e2c950 1343
79b4a6fc
RZ
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 }
e9e2c950 1350
79b4a6fc 1351 return bsp;
e9e2c950
RZ
1352}
1353
e9e2c950
RZ
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 */
1364struct 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
79b4a6fc 1373struct bfd_session *bfd_key_delete(struct bfd_key key)
e9e2c950
RZ
1374{
1375 struct bfd_session bs, *bsp;
1376
79b4a6fc
RZ
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);
e9e2c950
RZ
1382 }
1383
79b4a6fc 1384 return hash_release(bfd_key_hash, bsp);
e9e2c950
RZ
1385}
1386
e9e2c950
RZ
1387/* Iteration functions. */
1388void bfd_id_iterate(hash_iter_func hif, void *arg)
1389{
1390 hash_iterate(bfd_id_hash, hif, arg);
1391}
1392
79b4a6fc 1393void bfd_key_iterate(hash_iter_func hif, void *arg)
e9e2c950 1394{
79b4a6fc 1395 hash_iterate(bfd_key_hash, hif, arg);
e9e2c950
RZ
1396}
1397
e9e2c950
RZ
1398/*
1399 * Insert functions.
1400 *
1401 * Inserts session into hash and returns `true` on success, otherwise
1402 * `false`.
1403 */
1404bool bfd_id_insert(struct bfd_session *bs)
1405{
1406 return (hash_get(bfd_id_hash, bs, hash_alloc_intern) == bs);
1407}
1408
79b4a6fc 1409bool bfd_key_insert(struct bfd_session *bs)
e9e2c950 1410{
79b4a6fc 1411 return (hash_get(bfd_key_hash, bs, hash_alloc_intern) == bs);
e9e2c950
RZ
1412}
1413
e9e2c950
RZ
1414void bfd_initialize(void)
1415{
1416 bfd_id_hash = hash_create(bfd_id_hash_do, bfd_id_hash_cmp,
79b4a6fc
RZ
1417 "BFD session discriminator hash");
1418 bfd_key_hash = hash_create(bfd_key_hash_do, bfd_key_hash_cmp,
1419 "BFD session hash");
e9e2c950
RZ
1420}
1421
e3b78da8 1422static void _bfd_free(struct hash_bucket *hb,
e9e2c950
RZ
1423 void *arg __attribute__((__unused__)))
1424{
1425 struct bfd_session *bs = hb->data;
1426
1427 bfd_session_free(bs);
1428}
1429
e9e2c950
RZ
1430void 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);
79b4a6fc 1440 assert(bfd_key_hash->count == 0);
e9e2c950 1441
e9e2c950
RZ
1442 /* Now free the hashes themselves. */
1443 hash_free(bfd_id_hash);
79b4a6fc 1444 hash_free(bfd_key_hash);
e9e2c950 1445}
9fc0bc5c
PG
1446
1447static 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
1453static 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
1459static int bfd_vrf_enable(struct vrf *vrf)
1460{
1461 log_debug("VRF enable add %s id %u", vrf->name, vrf->vrf_id);
1462 return 0;
1463}
1464
1465static int bfd_vrf_disable(struct vrf *vrf)
1466{
1467 if (vrf->vrf_id == VRF_DEFAULT)
1468 return 0;
1469 log_debug("VRF disable %s id %d", vrf->name, vrf->vrf_id);
1470 return 0;
1471}
1472
1473void bfd_vrf_init(void)
1474{
1475 vrf_init(bfd_vrf_new, bfd_vrf_enable, bfd_vrf_disable,
1476 bfd_vrf_delete, NULL);
1477}
1478