]> git.proxmox.com Git - mirror_frr.git/blob - bfdd/ptm_adapter.c
isisd: fix ldp-sync configuration
[mirror_frr.git] / bfdd / ptm_adapter.c
1 /*
2 * BFD PTM adapter code
3 * Copyright (C) 2018 Network Device Education Foundation, Inc. ("NetDEF")
4 *
5 * FRR 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
7 * Free Software Foundation; either version 2, or (at your option) any
8 * later version.
9 *
10 * FRR is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with FRR; see the file COPYING. If not, write to the Free
17 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18 * 02111-1307, USA.
19 */
20
21 #include <zebra.h>
22
23 #include "lib/libfrr.h"
24 #include "lib/queue.h"
25 #include "lib/stream.h"
26 #include "lib/zclient.h"
27 #include "lib/printfrr.h"
28
29 #include "lib/bfd.h"
30
31 #include "bfd.h"
32
33 /*
34 * Data structures
35 */
36 struct ptm_client_notification {
37 struct bfd_session *pcn_bs;
38 struct ptm_client *pcn_pc;
39
40 TAILQ_ENTRY(ptm_client_notification) pcn_entry;
41 };
42 TAILQ_HEAD(pcnqueue, ptm_client_notification);
43
44 struct ptm_client {
45 uint32_t pc_pid;
46 struct pcnqueue pc_pcnqueue;
47
48 TAILQ_ENTRY(ptm_client) pc_entry;
49 };
50 TAILQ_HEAD(pcqueue, ptm_client);
51
52 static struct pcqueue pcqueue;
53 static struct zclient *zclient;
54
55
56 /*
57 * Prototypes
58 */
59 static int _ptm_msg_address(struct stream *msg, int family, const void *addr);
60
61 static void _ptm_msg_read_address(struct stream *msg, struct sockaddr_any *sa);
62 static int _ptm_msg_read(struct stream *msg, int command, vrf_id_t vrf_id,
63 struct bfd_peer_cfg *bpc, struct ptm_client **pc);
64
65 static struct ptm_client *pc_lookup(uint32_t pid);
66 static struct ptm_client *pc_new(uint32_t pid);
67 static void pc_free(struct ptm_client *pc);
68 static void pc_free_all(void);
69 static struct ptm_client_notification *pcn_new(struct ptm_client *pc,
70 struct bfd_session *bs);
71 static struct ptm_client_notification *pcn_lookup(struct ptm_client *pc,
72 struct bfd_session *bs);
73 static void pcn_free(struct ptm_client_notification *pcn);
74
75
76 static void bfdd_dest_register(struct stream *msg, vrf_id_t vrf_id);
77 static void bfdd_dest_deregister(struct stream *msg, vrf_id_t vrf_id);
78 static void bfdd_client_register(struct stream *msg);
79 static void bfdd_client_deregister(struct stream *msg);
80
81 /*
82 * Functions
83 */
84 static void debug_printbpc(const struct bfd_peer_cfg *bpc, const char *fmt, ...)
85 {
86 char timers[3][128] = {};
87 char minttl_str[32] = {};
88 char addr[3][128] = {};
89 char profile[128] = {};
90 char cbit_str[32];
91 char msgbuf[512];
92 va_list vl;
93
94 /* Avoid debug calculations if it's disabled. */
95 if (bglobal.debug_zebra == false)
96 return;
97
98 snprintf(addr[0], sizeof(addr[0]), "peer:%s", satostr(&bpc->bpc_peer));
99 if (bpc->bpc_local.sa_sin.sin_family)
100 snprintf(addr[1], sizeof(addr[1]), " local:%s",
101 satostr(&bpc->bpc_local));
102
103 if (bpc->bpc_has_localif)
104 snprintf(addr[2], sizeof(addr[2]), " ifname:%s",
105 bpc->bpc_localif);
106
107 if (bpc->bpc_has_vrfname)
108 snprintf(addr[2], sizeof(addr[2]), " vrf:%s", bpc->bpc_vrfname);
109
110 if (bpc->bpc_has_recvinterval)
111 snprintfrr(timers[0], sizeof(timers[0]), " rx:%" PRIu64,
112 bpc->bpc_recvinterval);
113
114 if (bpc->bpc_has_txinterval)
115 snprintfrr(timers[1], sizeof(timers[1]), " tx:%" PRIu64,
116 bpc->bpc_recvinterval);
117
118 if (bpc->bpc_has_detectmultiplier)
119 snprintf(timers[2], sizeof(timers[2]), " detect-multiplier:%d",
120 bpc->bpc_detectmultiplier);
121
122 snprintf(cbit_str, sizeof(cbit_str), " cbit:0x%02x", bpc->bpc_cbit);
123
124 if (bpc->bpc_has_minimum_ttl)
125 snprintf(minttl_str, sizeof(minttl_str), " minimum-ttl:%d",
126 bpc->bpc_minimum_ttl);
127
128 if (bpc->bpc_has_profile)
129 snprintf(profile, sizeof(profile), " profile:%s",
130 bpc->bpc_profile);
131
132 va_start(vl, fmt);
133 vsnprintf(msgbuf, sizeof(msgbuf), fmt, vl);
134 va_end(vl);
135
136 zlog_debug("%s [mhop:%s %s%s%s%s%s%s%s%s%s]", msgbuf,
137 bpc->bpc_mhop ? "yes" : "no", addr[0], addr[1], addr[2],
138 timers[0], timers[1], timers[2], cbit_str, minttl_str,
139 profile);
140 }
141
142 static void _ptm_bfd_session_del(struct bfd_session *bs, uint8_t diag)
143 {
144 if (bglobal.debug_peer_event)
145 zlog_debug("session-delete: %s", bs_to_string(bs));
146
147 /* Change state and notify peer. */
148 bs->ses_state = PTM_BFD_DOWN;
149 bs->local_diag = diag;
150 ptm_bfd_snd(bs, 0);
151
152 /* Session reached refcount == 0, lets delete it. */
153 if (bs->refcount == 0) {
154 /*
155 * Sanity check: if there is a refcount bug, we can't delete
156 * the session a user configured manually. Lets leave a
157 * message here so we can catch the bug if it exists.
158 */
159 if (CHECK_FLAG(bs->flags, BFD_SESS_FLAG_CONFIG)) {
160 zlog_err(
161 "ptm-del-session: [%s] session refcount is zero but it was configured by CLI",
162 bs_to_string(bs));
163 } else {
164 control_notify_config(BCM_NOTIFY_CONFIG_DELETE, bs);
165 bfd_session_free(bs);
166 }
167 }
168 }
169
170 static int _ptm_msg_address(struct stream *msg, int family, const void *addr)
171 {
172 stream_putc(msg, family);
173
174 switch (family) {
175 case AF_INET:
176 stream_put(msg, addr, sizeof(struct in_addr));
177 stream_putc(msg, 32);
178 break;
179
180 case AF_INET6:
181 stream_put(msg, addr, sizeof(struct in6_addr));
182 stream_putc(msg, 128);
183 break;
184
185 default:
186 assert(0);
187 break;
188 }
189
190 return 0;
191 }
192
193 int ptm_bfd_notify(struct bfd_session *bs, uint8_t notify_state)
194 {
195 struct stream *msg;
196
197 bs->stats.znotification++;
198
199 /*
200 * Message format:
201 * - header: command, vrf
202 * - l: interface index
203 * - c: family
204 * - AF_INET:
205 * - 4 bytes: ipv4
206 * - AF_INET6:
207 * - 16 bytes: ipv6
208 * - c: prefix length
209 * - l: bfd status
210 * - c: family
211 * - AF_INET:
212 * - 4 bytes: ipv4
213 * - AF_INET6:
214 * - 16 bytes: ipv6
215 * - c: prefix length
216 * - c: cbit
217 *
218 * Commands: ZEBRA_BFD_DEST_REPLAY
219 *
220 * q(64), l(32), w(16), c(8)
221 */
222 msg = zclient->obuf;
223 stream_reset(msg);
224
225 /* TODO: VRF handling */
226 if (bs->vrf)
227 zclient_create_header(msg, ZEBRA_BFD_DEST_REPLAY, bs->vrf->vrf_id);
228 else
229 zclient_create_header(msg, ZEBRA_BFD_DEST_REPLAY, VRF_DEFAULT);
230
231 /* This header will be handled by `zebra_ptm.c`. */
232 stream_putl(msg, ZEBRA_INTERFACE_BFD_DEST_UPDATE);
233
234 /* NOTE: Interface is a shortcut to avoid comparing source address. */
235 if (bs->ifp != NULL)
236 stream_putl(msg, bs->ifp->ifindex);
237 else
238 stream_putl(msg, IFINDEX_INTERNAL);
239
240 /* BFD destination prefix information. */
241 _ptm_msg_address(msg, bs->key.family, &bs->key.peer);
242
243 /* BFD status */
244 switch (notify_state) {
245 case PTM_BFD_UP:
246 stream_putl(msg, BFD_STATUS_UP);
247 break;
248
249 case PTM_BFD_ADM_DOWN:
250 stream_putl(msg, BFD_STATUS_ADMIN_DOWN);
251 break;
252
253 case PTM_BFD_DOWN:
254 case PTM_BFD_INIT:
255 stream_putl(msg, BFD_STATUS_DOWN);
256 break;
257
258 default:
259 stream_putl(msg, BFD_STATUS_UNKNOWN);
260 break;
261 }
262
263 /* BFD source prefix information. */
264 _ptm_msg_address(msg, bs->key.family, &bs->key.local);
265
266 stream_putc(msg, bs->remote_cbit);
267
268 /* Write packet size. */
269 stream_putw_at(msg, 0, stream_get_endp(msg));
270
271 return zclient_send_message(zclient);
272 }
273
274 static void _ptm_msg_read_address(struct stream *msg, struct sockaddr_any *sa)
275 {
276 uint16_t family;
277
278 STREAM_GETW(msg, family);
279
280 switch (family) {
281 case AF_INET:
282 sa->sa_sin.sin_family = family;
283 STREAM_GET(&sa->sa_sin.sin_addr, msg,
284 sizeof(sa->sa_sin.sin_addr));
285 #ifdef HAVE_STRUCT_SOCKADDR_SA_LEN
286 sa->sa_sin.sin_len = sizeof(sa->sa_sin);
287 #endif /* HAVE_STRUCT_SOCKADDR_SA_LEN */
288 return;
289
290 case AF_INET6:
291 sa->sa_sin6.sin6_family = family;
292 STREAM_GET(&sa->sa_sin6.sin6_addr, msg,
293 sizeof(sa->sa_sin6.sin6_addr));
294 #ifdef HAVE_STRUCT_SOCKADDR_SA_LEN
295 sa->sa_sin6.sin6_len = sizeof(sa->sa_sin6);
296 #endif /* HAVE_STRUCT_SOCKADDR_SA_LEN */
297 return;
298
299 default:
300 zlog_warn("ptm-read-address: invalid family: %d", family);
301 break;
302 }
303
304 stream_failure:
305 memset(sa, 0, sizeof(*sa));
306 }
307
308 static int _ptm_msg_read(struct stream *msg, int command, vrf_id_t vrf_id,
309 struct bfd_peer_cfg *bpc, struct ptm_client **pc)
310 {
311 uint32_t pid;
312 size_t ifnamelen;
313
314 /*
315 * Register/Deregister/Update Message format:
316 *
317 * Old format (being used by PTM BFD).
318 * - header: Command, VRF
319 * - l: pid
320 * - w: family
321 * - AF_INET:
322 * - l: destination ipv4
323 * - AF_INET6:
324 * - 16 bytes: destination IPv6
325 * - command != ZEBRA_BFD_DEST_DEREGISTER
326 * - l: min_rx
327 * - l: min_tx
328 * - c: detect multiplier
329 * - c: is_multihop?
330 * - multihop:
331 * - w: family
332 * - AF_INET:
333 * - l: source IPv4 address
334 * - AF_INET6:
335 * - 16 bytes: source IPv6 address
336 * - c: ttl
337 * - no multihop
338 * - AF_INET6:
339 * - w: family
340 * - 16 bytes: source IPv6 address
341 * - c: ifname length
342 * - X bytes: interface name
343 *
344 * New format:
345 * - header: Command, VRF
346 * - l: pid
347 * - w: family
348 * - AF_INET:
349 * - l: destination IPv4 address
350 * - AF_INET6:
351 * - 16 bytes: destination IPv6 address
352 * - l: min_rx
353 * - l: min_tx
354 * - c: detect multiplier
355 * - c: is_multihop?
356 * - w: family
357 * - AF_INET:
358 * - l: source IPv4 address
359 * - AF_INET6:
360 * - 16 bytes: source IPv6 address
361 * - c: ttl
362 * - c: ifname length
363 * - X bytes: interface name
364 * - c: bfd_cbit
365 * - c: profile name length.
366 * - X bytes: profile name.
367 *
368 * q(64), l(32), w(16), c(8)
369 */
370
371 /* Initialize parameters return values. */
372 memset(bpc, 0, sizeof(*bpc));
373 *pc = NULL;
374
375 /* Find or allocate process context data. */
376 STREAM_GETL(msg, pid);
377
378 *pc = pc_new(pid);
379
380 /* Register/update peer information. */
381 _ptm_msg_read_address(msg, &bpc->bpc_peer);
382
383 /* Determine IP type from peer destination. */
384 bpc->bpc_ipv4 = (bpc->bpc_peer.sa_sin.sin_family == AF_INET);
385
386 /* Get peer configuration. */
387 STREAM_GETL(msg, bpc->bpc_recvinterval);
388 bpc->bpc_has_recvinterval =
389 (bpc->bpc_recvinterval != BPC_DEF_RECEIVEINTERVAL);
390
391 STREAM_GETL(msg, bpc->bpc_txinterval);
392 bpc->bpc_has_txinterval =
393 (bpc->bpc_txinterval != BPC_DEF_TRANSMITINTERVAL);
394
395 STREAM_GETC(msg, bpc->bpc_detectmultiplier);
396 bpc->bpc_has_detectmultiplier =
397 (bpc->bpc_detectmultiplier != BPC_DEF_DETECTMULTIPLIER);
398
399 /* Read (single|multi)hop and its options. */
400 STREAM_GETC(msg, bpc->bpc_mhop);
401
402 /* Read multihop source address and TTL. */
403 _ptm_msg_read_address(msg, &bpc->bpc_local);
404
405 /* Read the minimum TTL (0 means unset or invalid). */
406 STREAM_GETC(msg, bpc->bpc_minimum_ttl);
407 if (bpc->bpc_minimum_ttl == 0) {
408 bpc->bpc_minimum_ttl = BFD_DEF_MHOP_TTL;
409 bpc->bpc_has_minimum_ttl = false;
410 } else {
411 bpc->bpc_minimum_ttl = (BFD_TTL_VAL + 1) - bpc->bpc_minimum_ttl;
412 bpc->bpc_has_minimum_ttl = true;
413 }
414
415 /*
416 * Read interface name and make sure it fits our data
417 * structure, otherwise fail.
418 */
419 STREAM_GETC(msg, ifnamelen);
420 if (ifnamelen >= sizeof(bpc->bpc_localif)) {
421 zlog_err("ptm-read: interface name is too big");
422 return -1;
423 }
424
425 bpc->bpc_has_localif = ifnamelen > 0;
426 if (bpc->bpc_has_localif) {
427 STREAM_GET(bpc->bpc_localif, msg, ifnamelen);
428 bpc->bpc_localif[ifnamelen] = 0;
429 }
430
431 if (vrf_id != VRF_DEFAULT) {
432 struct vrf *vrf;
433
434 vrf = vrf_lookup_by_id(vrf_id);
435 if (vrf) {
436 bpc->bpc_has_vrfname = true;
437 strlcpy(bpc->bpc_vrfname, vrf->name, sizeof(bpc->bpc_vrfname));
438 } else {
439 zlog_err("ptm-read: vrf id %u could not be identified",
440 vrf_id);
441 return -1;
442 }
443 } else {
444 bpc->bpc_has_vrfname = true;
445 strlcpy(bpc->bpc_vrfname, VRF_DEFAULT_NAME, sizeof(bpc->bpc_vrfname));
446 }
447
448 /* Read control plane independant configuration. */
449 STREAM_GETC(msg, bpc->bpc_cbit);
450
451 /* Handle profile names. */
452 STREAM_GETC(msg, ifnamelen);
453 bpc->bpc_has_profile = ifnamelen > 0;
454 if (bpc->bpc_has_profile) {
455 STREAM_GET(bpc->bpc_profile, msg, ifnamelen);
456 bpc->bpc_profile[ifnamelen] = 0;
457 }
458
459 /* Sanity check: peer and local address must match IP types. */
460 if (bpc->bpc_local.sa_sin.sin_family != 0
461 && (bpc->bpc_local.sa_sin.sin_family
462 != bpc->bpc_peer.sa_sin.sin_family)) {
463 zlog_warn("ptm-read: peer family doesn't match local type");
464 return -1;
465 }
466
467 return 0;
468
469 stream_failure:
470 return -1;
471 }
472
473 static void bfdd_dest_register(struct stream *msg, vrf_id_t vrf_id)
474 {
475 struct ptm_client *pc;
476 struct bfd_session *bs;
477 struct bfd_peer_cfg bpc;
478
479 /* Read the client context and peer data. */
480 if (_ptm_msg_read(msg, ZEBRA_BFD_DEST_REGISTER, vrf_id, &bpc, &pc) == -1)
481 return;
482
483 debug_printbpc(&bpc, "ptm-add-dest: register peer");
484
485 /* Find or start new BFD session. */
486 bs = bs_peer_find(&bpc);
487 if (bs == NULL) {
488 bs = ptm_bfd_sess_new(&bpc);
489 if (bs == NULL) {
490 if (bglobal.debug_zebra)
491 zlog_debug(
492 "ptm-add-dest: failed to create BFD session");
493 return;
494 }
495 } else {
496 /*
497 * BFD session was already created, we are just updating the
498 * current peer.
499 *
500 * `ptm-bfd` (or `HAVE_BFDD == 0`) is the only implementation
501 * that allow users to set peer specific timers via protocol.
502 * BFD daemon (this code) on the other hand only supports
503 * changing peer configuration manually (through `peer` node)
504 * or via profiles.
505 */
506 if (bpc.bpc_has_profile)
507 bfd_profile_apply(bpc.bpc_profile, bs);
508 }
509
510 /* Create client peer notification register. */
511 pcn_new(pc, bs);
512
513 ptm_bfd_notify(bs, bs->ses_state);
514 }
515
516 static void bfdd_dest_deregister(struct stream *msg, vrf_id_t vrf_id)
517 {
518 struct ptm_client *pc;
519 struct ptm_client_notification *pcn;
520 struct bfd_session *bs;
521 struct bfd_peer_cfg bpc;
522
523 /* Read the client context and peer data. */
524 if (_ptm_msg_read(msg, ZEBRA_BFD_DEST_DEREGISTER, vrf_id, &bpc, &pc) == -1)
525 return;
526
527 debug_printbpc(&bpc, "ptm-del-dest: deregister peer");
528
529 /* Find or start new BFD session. */
530 bs = bs_peer_find(&bpc);
531 if (bs == NULL) {
532 if (bglobal.debug_zebra)
533 zlog_debug("ptm-del-dest: failed to find BFD session");
534 return;
535 }
536
537 /* Unregister client peer notification. */
538 pcn = pcn_lookup(pc, bs);
539 if (pcn != NULL) {
540 pcn_free(pcn);
541 return;
542 }
543
544 if (bglobal.debug_zebra)
545 zlog_debug("ptm-del-dest: failed to find BFD session");
546
547 /*
548 * XXX: We either got a double deregistration or the daemon who
549 * created this is no longer around. Lets try to delete it anyway
550 * and the worst case is the refcount will detain us.
551 */
552 _ptm_bfd_session_del(bs, BD_NEIGHBOR_DOWN);
553 }
554
555 /*
556 * header: command, VRF
557 * l: pid
558 */
559 static void bfdd_client_register(struct stream *msg)
560 {
561 uint32_t pid;
562
563 /* Find or allocate process context data. */
564 STREAM_GETL(msg, pid);
565
566 pc_new(pid);
567
568 return;
569
570 stream_failure:
571 zlog_err("ptm-add-client: failed to register client");
572 }
573
574 /*
575 * header: command, VRF
576 * l: pid
577 */
578 static void bfdd_client_deregister(struct stream *msg)
579 {
580 struct ptm_client *pc;
581 uint32_t pid;
582
583 /* Find or allocate process context data. */
584 STREAM_GETL(msg, pid);
585
586 pc = pc_lookup(pid);
587 if (pc == NULL) {
588 if (bglobal.debug_zebra)
589 zlog_debug("ptm-del-client: failed to find client: %u",
590 pid);
591 return;
592 }
593
594 if (bglobal.debug_zebra)
595 zlog_debug("ptm-del-client: client pid %u", pid);
596
597 pc_free(pc);
598
599 return;
600
601 stream_failure:
602 zlog_err("ptm-del-client: failed to deregister client");
603 }
604
605 static int bfdd_replay(ZAPI_CALLBACK_ARGS)
606 {
607 struct stream *msg = zclient->ibuf;
608 uint32_t rcmd;
609
610 STREAM_GETL(msg, rcmd);
611
612 switch (rcmd) {
613 case ZEBRA_BFD_DEST_REGISTER:
614 case ZEBRA_BFD_DEST_UPDATE:
615 bfdd_dest_register(msg, vrf_id);
616 break;
617 case ZEBRA_BFD_DEST_DEREGISTER:
618 bfdd_dest_deregister(msg, vrf_id);
619 break;
620 case ZEBRA_BFD_CLIENT_REGISTER:
621 bfdd_client_register(msg);
622 break;
623 case ZEBRA_BFD_CLIENT_DEREGISTER:
624 bfdd_client_deregister(msg);
625 break;
626
627 default:
628 if (bglobal.debug_zebra)
629 zlog_debug("ptm-replay: invalid message type %u", rcmd);
630 return -1;
631 }
632
633 return 0;
634
635 stream_failure:
636 zlog_err("ptm-replay: failed to find command");
637 return -1;
638 }
639
640 static void bfdd_zebra_connected(struct zclient *zc)
641 {
642 struct stream *msg = zc->obuf;
643
644 /* Clean-up and free ptm clients data memory. */
645 pc_free_all();
646
647 /*
648 * The replay is an empty message just to trigger client daemons
649 * configuration replay.
650 */
651 stream_reset(msg);
652 zclient_create_header(msg, ZEBRA_BFD_DEST_REPLAY, VRF_DEFAULT);
653 stream_putl(msg, ZEBRA_BFD_DEST_REPLAY);
654 stream_putw_at(msg, 0, stream_get_endp(msg));
655
656 /* Ask for interfaces information. */
657 zclient_create_header(msg, ZEBRA_INTERFACE_ADD, VRF_DEFAULT);
658
659 /* Send requests. */
660 zclient_send_message(zclient);
661 }
662
663 static void bfdd_sessions_enable_interface(struct interface *ifp)
664 {
665 struct bfd_session_observer *bso;
666 struct bfd_session *bs;
667 struct vrf *vrf;
668
669 vrf = vrf_lookup_by_id(ifp->vrf_id);
670 if (!vrf)
671 return;
672
673 TAILQ_FOREACH(bso, &bglobal.bg_obslist, bso_entry) {
674 bs = bso->bso_bs;
675 /* check vrf name */
676 if (bs->key.vrfname[0] &&
677 strcmp(vrf->name, bs->key.vrfname))
678 continue;
679
680 /* If Interface matches vrfname, then bypass iface check */
681 if (vrf_is_backend_netns() || strcmp(ifp->name, vrf->name)) {
682 /* Interface name mismatch. */
683 if (strcmp(ifp->name, bs->key.ifname))
684 continue;
685 }
686
687 /* Skip enabled sessions. */
688 if (bs->sock != -1)
689 continue;
690
691 /* Try to enable it. */
692 bfd_session_enable(bs);
693 }
694 }
695
696 static void bfdd_sessions_disable_interface(struct interface *ifp)
697 {
698 struct bfd_session_observer *bso;
699 struct bfd_session *bs;
700
701 TAILQ_FOREACH(bso, &bglobal.bg_obslist, bso_entry) {
702 bs = bso->bso_bs;
703
704 if (bs->ifp != ifp)
705 continue;
706
707 /* Skip disabled sessions. */
708 if (bs->sock == -1) {
709 bs->ifp = NULL;
710 continue;
711 }
712
713 bfd_session_disable(bs);
714 bs->ifp = NULL;
715 }
716 }
717
718 void bfdd_sessions_enable_vrf(struct vrf *vrf)
719 {
720 struct bfd_session_observer *bso;
721 struct bfd_session *bs;
722
723 /* it may affect configs without interfaces */
724 TAILQ_FOREACH(bso, &bglobal.bg_obslist, bso_entry) {
725 bs = bso->bso_bs;
726 /* update name */
727 if (bs->vrf && bs->vrf == vrf) {
728 if (!strmatch(bs->key.vrfname, vrf->name))
729 bfd_session_update_vrf_name(bs, vrf);
730 }
731 if (bs->vrf)
732 continue;
733 if (bs->key.vrfname[0] &&
734 strcmp(vrf->name, bs->key.vrfname))
735 continue;
736 /* need to update the vrf information on
737 * bs so that callbacks are handled
738 */
739 bs->vrf = vrf;
740 /* Skip enabled sessions. */
741 if (bs->sock != -1)
742 continue;
743 /* Try to enable it. */
744 bfd_session_enable(bs);
745 }
746 }
747
748 void bfdd_sessions_disable_vrf(struct vrf *vrf)
749 {
750 struct bfd_session_observer *bso;
751 struct bfd_session *bs;
752
753 TAILQ_FOREACH(bso, &bglobal.bg_obslist, bso_entry) {
754 bs = bso->bso_bs;
755 if (bs->key.vrfname[0] &&
756 strcmp(vrf->name, bs->key.vrfname))
757 continue;
758 /* Skip disabled sessions. */
759 if (bs->sock == -1)
760 continue;
761
762 bfd_session_disable(bs);
763 bs->vrf = NULL;
764 }
765 }
766
767 static int bfd_ifp_destroy(struct interface *ifp)
768 {
769 if (bglobal.debug_zebra)
770 zlog_debug("zclient: delete interface %s (VRF %u)", ifp->name,
771 ifp->vrf_id);
772
773 bfdd_sessions_disable_interface(ifp);
774
775 return 0;
776 }
777
778 static int bfdd_interface_vrf_update(ZAPI_CALLBACK_ARGS)
779 {
780 struct interface *ifp;
781 vrf_id_t nvrfid;
782
783 ifp = zebra_interface_vrf_update_read(zclient->ibuf, vrf_id, &nvrfid);
784 if (ifp == NULL)
785 return 0;
786
787 if_update_to_new_vrf(ifp, nvrfid);
788
789 return 0;
790 }
791
792 static void bfdd_sessions_enable_address(struct connected *ifc)
793 {
794 struct bfd_session_observer *bso;
795 struct bfd_session *bs;
796 struct prefix prefix;
797
798 TAILQ_FOREACH(bso, &bglobal.bg_obslist, bso_entry) {
799 /* Skip enabled sessions. */
800 bs = bso->bso_bs;
801 if (bs->sock != -1)
802 continue;
803
804 /* Check address. */
805 prefix = bso->bso_addr;
806 prefix.prefixlen = ifc->address->prefixlen;
807 if (prefix_cmp(&prefix, ifc->address))
808 continue;
809
810 /* Try to enable it. */
811 bfd_session_enable(bs);
812 }
813 }
814
815 static int bfdd_interface_address_update(ZAPI_CALLBACK_ARGS)
816 {
817 struct connected *ifc;
818
819 ifc = zebra_interface_address_read(cmd, zclient->ibuf, vrf_id);
820 if (ifc == NULL)
821 return 0;
822
823 if (bglobal.debug_zebra)
824 zlog_debug("zclient: %s local address %pFX (VRF %u)",
825 cmd == ZEBRA_INTERFACE_ADDRESS_ADD ? "add"
826 : "delete",
827 ifc->address, vrf_id);
828
829 if (cmd == ZEBRA_INTERFACE_ADDRESS_ADD)
830 bfdd_sessions_enable_address(ifc);
831 else
832 connected_free(&ifc);
833
834 return 0;
835 }
836
837 static int bfd_ifp_create(struct interface *ifp)
838 {
839 if (bglobal.debug_zebra)
840 zlog_debug("zclient: add interface %s (VRF %u)", ifp->name,
841 ifp->vrf_id);
842 bfdd_sessions_enable_interface(ifp);
843
844 return 0;
845 }
846
847 void bfdd_zclient_init(struct zebra_privs_t *bfdd_priv)
848 {
849 if_zapi_callbacks(bfd_ifp_create, NULL, NULL, bfd_ifp_destroy);
850 zclient = zclient_new(master, &zclient_options_default);
851 assert(zclient != NULL);
852 zclient_init(zclient, ZEBRA_ROUTE_BFD, 0, bfdd_priv);
853
854 /*
855 * We'll receive all messages through replay, however it will
856 * contain a special field with the real command inside so we
857 * avoid having to create too many handlers.
858 */
859 zclient->bfd_dest_replay = bfdd_replay;
860
861 /* Send replay request on zebra connect. */
862 zclient->zebra_connected = bfdd_zebra_connected;
863
864 /* Learn about interface VRF. */
865 zclient->interface_vrf_update = bfdd_interface_vrf_update;
866
867 /* Learn about new addresses being registered. */
868 zclient->interface_address_add = bfdd_interface_address_update;
869 zclient->interface_address_delete = bfdd_interface_address_update;
870 }
871
872 void bfdd_zclient_register(vrf_id_t vrf_id)
873 {
874 if (!zclient || zclient->sock < 0)
875 return;
876 zclient_send_reg_requests(zclient, vrf_id);
877 }
878
879 void bfdd_zclient_unregister(vrf_id_t vrf_id)
880 {
881 if (!zclient || zclient->sock < 0)
882 return;
883 zclient_send_dereg_requests(zclient, vrf_id);
884 }
885
886 void bfdd_zclient_stop(void)
887 {
888 zclient_stop(zclient);
889
890 /* Clean-up and free ptm clients data memory. */
891 pc_free_all();
892 }
893
894
895 /*
896 * Client handling.
897 */
898 static struct ptm_client *pc_lookup(uint32_t pid)
899 {
900 struct ptm_client *pc;
901
902 TAILQ_FOREACH (pc, &pcqueue, pc_entry) {
903 if (pc->pc_pid != pid)
904 continue;
905
906 break;
907 }
908
909 return pc;
910 }
911
912 static struct ptm_client *pc_new(uint32_t pid)
913 {
914 struct ptm_client *pc;
915
916 /* Look up first, if not found create the client. */
917 pc = pc_lookup(pid);
918 if (pc != NULL)
919 return pc;
920
921 /* Allocate the client data and save it. */
922 pc = XCALLOC(MTYPE_BFDD_CONTROL, sizeof(*pc));
923
924 pc->pc_pid = pid;
925 TAILQ_INSERT_HEAD(&pcqueue, pc, pc_entry);
926 return pc;
927 }
928
929 static void pc_free(struct ptm_client *pc)
930 {
931 struct ptm_client_notification *pcn;
932
933 TAILQ_REMOVE(&pcqueue, pc, pc_entry);
934
935 while (!TAILQ_EMPTY(&pc->pc_pcnqueue)) {
936 pcn = TAILQ_FIRST(&pc->pc_pcnqueue);
937 pcn_free(pcn);
938 }
939
940 XFREE(MTYPE_BFDD_CONTROL, pc);
941 }
942
943 static void pc_free_all(void)
944 {
945 struct ptm_client *pc;
946
947 while (!TAILQ_EMPTY(&pcqueue)) {
948 pc = TAILQ_FIRST(&pcqueue);
949 pc_free(pc);
950 }
951 }
952
953 static struct ptm_client_notification *pcn_new(struct ptm_client *pc,
954 struct bfd_session *bs)
955 {
956 struct ptm_client_notification *pcn;
957
958 /* Try to find an existing pcn fist. */
959 pcn = pcn_lookup(pc, bs);
960 if (pcn != NULL)
961 return pcn;
962
963 /* Save the client notification data. */
964 pcn = XCALLOC(MTYPE_BFDD_NOTIFICATION, sizeof(*pcn));
965
966 TAILQ_INSERT_HEAD(&pc->pc_pcnqueue, pcn, pcn_entry);
967 pcn->pcn_pc = pc;
968 pcn->pcn_bs = bs;
969 bs->refcount++;
970
971 return pcn;
972 }
973
974 static struct ptm_client_notification *pcn_lookup(struct ptm_client *pc,
975 struct bfd_session *bs)
976 {
977 struct ptm_client_notification *pcn;
978
979 TAILQ_FOREACH (pcn, &pc->pc_pcnqueue, pcn_entry) {
980 if (pcn->pcn_bs != bs)
981 continue;
982
983 break;
984 }
985
986 return pcn;
987 }
988
989 static void pcn_free(struct ptm_client_notification *pcn)
990 {
991 struct ptm_client *pc;
992 struct bfd_session *bs;
993
994 /* Handle session de-registration. */
995 bs = pcn->pcn_bs;
996 pcn->pcn_bs = NULL;
997 bs->refcount--;
998
999 /* Log modification to users. */
1000 if (bglobal.debug_zebra)
1001 zlog_debug("ptm-del-session: [%s] refcount=%" PRIu64,
1002 bs_to_string(bs), bs->refcount);
1003
1004 /* Set session down. */
1005 _ptm_bfd_session_del(bs, BD_NEIGHBOR_DOWN);
1006
1007 /* Handle ptm_client deregistration. */
1008 pc = pcn->pcn_pc;
1009 pcn->pcn_pc = NULL;
1010 TAILQ_REMOVE(&pc->pc_pcnqueue, pcn, pcn_entry);
1011
1012 XFREE(MTYPE_BFDD_NOTIFICATION, pcn);
1013 }