]> git.proxmox.com Git - mirror_frr.git/blob - pimd/pim_msdp.c
Merge pull request #10527 from idryzhov/topotest-literals
[mirror_frr.git] / pimd / pim_msdp.c
1 /*
2 * IP MSDP for Quagga
3 * Copyright (C) 2016 Cumulus Networks, Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program 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 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
20 #include <zebra.h>
21
22 #include <lib/hash.h>
23 #include <lib/jhash.h>
24 #include <lib/log.h>
25 #include <lib/prefix.h>
26 #include <lib/sockunion.h>
27 #include <lib/stream.h>
28 #include <lib/thread.h>
29 #include <lib/vty.h>
30 #include <lib/plist.h>
31 #include <lib/lib_errors.h>
32
33 #include "pimd.h"
34 #include "pim_memory.h"
35 #include "pim_iface.h"
36 #include "pim_rp.h"
37 #include "pim_str.h"
38 #include "pim_time.h"
39 #include "pim_upstream.h"
40 #include "pim_oil.h"
41
42 #include "pim_msdp.h"
43 #include "pim_msdp_packet.h"
44 #include "pim_msdp_socket.h"
45
46 // struct pim_msdp pim_msdp, *msdp = &pim_msdp;
47
48 static void pim_msdp_peer_listen(struct pim_msdp_peer *mp);
49 static void pim_msdp_peer_cr_timer_setup(struct pim_msdp_peer *mp, bool start);
50 static void pim_msdp_peer_ka_timer_setup(struct pim_msdp_peer *mp, bool start);
51 static void pim_msdp_peer_hold_timer_setup(struct pim_msdp_peer *mp,
52 bool start);
53 static void pim_msdp_peer_free(struct pim_msdp_peer *mp);
54 static void pim_msdp_enable(struct pim_instance *pim);
55 static void pim_msdp_sa_adv_timer_setup(struct pim_instance *pim, bool start);
56 static void pim_msdp_sa_deref(struct pim_msdp_sa *sa,
57 enum pim_msdp_sa_flags flags);
58 static int pim_msdp_mg_mbr_comp(const void *p1, const void *p2);
59 static void pim_msdp_mg_mbr_free(struct pim_msdp_mg_mbr *mbr);
60
61 /************************ SA cache management ******************************/
62 static void pim_msdp_sa_timer_expiry_log(struct pim_msdp_sa *sa,
63 const char *timer_str)
64 {
65 zlog_debug("MSDP SA %s %s timer expired", sa->sg_str, timer_str);
66 }
67
68 /* RFC-3618:Sec-5.1 - global active source advertisement timer */
69 static int pim_msdp_sa_adv_timer_cb(struct thread *t)
70 {
71 struct pim_instance *pim = THREAD_ARG(t);
72
73 if (PIM_DEBUG_MSDP_EVENTS) {
74 zlog_debug("MSDP SA advertisement timer expired");
75 }
76
77 pim_msdp_sa_adv_timer_setup(pim, true /* start */);
78 pim_msdp_pkt_sa_tx(pim);
79 return 0;
80 }
81 static void pim_msdp_sa_adv_timer_setup(struct pim_instance *pim, bool start)
82 {
83 THREAD_OFF(pim->msdp.sa_adv_timer);
84 if (start) {
85 thread_add_timer(pim->msdp.master, pim_msdp_sa_adv_timer_cb,
86 pim, PIM_MSDP_SA_ADVERTISMENT_TIME,
87 &pim->msdp.sa_adv_timer);
88 }
89 }
90
91 /* RFC-3618:Sec-5.3 - SA cache state timer */
92 static int pim_msdp_sa_state_timer_cb(struct thread *t)
93 {
94 struct pim_msdp_sa *sa;
95
96 sa = THREAD_ARG(t);
97
98 if (PIM_DEBUG_MSDP_EVENTS) {
99 pim_msdp_sa_timer_expiry_log(sa, "state");
100 }
101
102 pim_msdp_sa_deref(sa, PIM_MSDP_SAF_PEER);
103 return 0;
104 }
105 static void pim_msdp_sa_state_timer_setup(struct pim_msdp_sa *sa, bool start)
106 {
107 THREAD_OFF(sa->sa_state_timer);
108 if (start) {
109 thread_add_timer(sa->pim->msdp.master,
110 pim_msdp_sa_state_timer_cb, sa,
111 PIM_MSDP_SA_HOLD_TIME, &sa->sa_state_timer);
112 }
113 }
114
115 static void pim_msdp_sa_upstream_del(struct pim_msdp_sa *sa)
116 {
117 struct pim_upstream *up = sa->up;
118 if (!up) {
119 return;
120 }
121
122 sa->up = NULL;
123 if (PIM_UPSTREAM_FLAG_TEST_SRC_MSDP(up->flags)) {
124 PIM_UPSTREAM_FLAG_UNSET_SRC_MSDP(up->flags);
125 sa->flags |= PIM_MSDP_SAF_UP_DEL_IN_PROG;
126 up = pim_upstream_del(sa->pim, up, __func__);
127 /* re-eval joinDesired; clearing peer-msdp-sa flag can
128 * cause JD to change
129 */
130 if (up)
131 pim_upstream_update_join_desired(sa->pim, up);
132 sa->flags &= ~PIM_MSDP_SAF_UP_DEL_IN_PROG;
133 }
134
135 if (PIM_DEBUG_MSDP_EVENTS) {
136 zlog_debug("MSDP SA %s de-referenced SPT", sa->sg_str);
137 }
138 }
139
140 static bool pim_msdp_sa_upstream_add_ok(struct pim_msdp_sa *sa,
141 struct pim_upstream *xg_up)
142 {
143 if (!(sa->flags & PIM_MSDP_SAF_PEER)) {
144 /* SA should have been rxed from a peer */
145 return false;
146 }
147 /* check if we are RP */
148 if (!I_am_RP(sa->pim, sa->sg.grp)) {
149 return false;
150 }
151
152 /* check if we have a (*, G) with a non-empty immediate OIL */
153 if (!xg_up) {
154 pim_sgaddr sg;
155
156 memset(&sg, 0, sizeof(sg));
157 sg.grp = sa->sg.grp;
158
159 xg_up = pim_upstream_find(sa->pim, &sg);
160 }
161 if (!xg_up || (xg_up->join_state != PIM_UPSTREAM_JOINED)) {
162 /* join desired will be true for such (*, G) entries so we will
163 * just look at join_state and let the PIM state machine do the
164 * rest of
165 * the magic */
166 return false;
167 }
168
169 return true;
170 }
171
172 /* Upstream add evaluation needs to happen everytime -
173 * 1. Peer reference is added or removed.
174 * 2. The RP for a group changes.
175 * 3. joinDesired for the associated (*, G) changes
176 * 4. associated (*, G) is removed - this seems like a bit redundant
177 * (considering #4); but just in case an entry gets nuked without
178 * upstream state transition
179 * */
180 static void pim_msdp_sa_upstream_update(struct pim_msdp_sa *sa,
181 struct pim_upstream *xg_up,
182 const char *ctx)
183 {
184 struct pim_upstream *up;
185
186 if (!pim_msdp_sa_upstream_add_ok(sa, xg_up)) {
187 pim_msdp_sa_upstream_del(sa);
188 return;
189 }
190
191 if (sa->up) {
192 /* nothing to do */
193 return;
194 }
195
196 up = pim_upstream_find(sa->pim, &sa->sg);
197 if (up && (PIM_UPSTREAM_FLAG_TEST_SRC_MSDP(up->flags))) {
198 /* somehow we lost track of the upstream ptr? best log it */
199 sa->up = up;
200 if (PIM_DEBUG_MSDP_EVENTS) {
201 zlog_debug("MSDP SA %s SPT reference missing",
202 sa->sg_str);
203 }
204 return;
205 }
206
207 /* RFC3618: "RP triggers a (S, G) join event towards the data source
208 * as if a JP message was rxed addressed to the RP itself." */
209 up = pim_upstream_add(sa->pim, &sa->sg, NULL /* iif */,
210 PIM_UPSTREAM_FLAG_MASK_SRC_MSDP, __func__, NULL);
211
212 sa->up = up;
213 if (up) {
214 /* update inherited oil */
215 pim_upstream_inherited_olist(sa->pim, up);
216 /* should we also start the kat in parallel? we will need it
217 * when the
218 * SA ages out */
219 if (PIM_DEBUG_MSDP_EVENTS) {
220 zlog_debug("MSDP SA %s referenced SPT", sa->sg_str);
221 }
222 } else {
223 if (PIM_DEBUG_MSDP_EVENTS) {
224 zlog_debug("MSDP SA %s SPT reference failed",
225 sa->sg_str);
226 }
227 }
228 }
229
230 /* release all mem associated with a sa */
231 static void pim_msdp_sa_free(struct pim_msdp_sa *sa)
232 {
233 pim_msdp_sa_state_timer_setup(sa, false);
234
235 XFREE(MTYPE_PIM_MSDP_SA, sa);
236 }
237
238 static struct pim_msdp_sa *pim_msdp_sa_new(struct pim_instance *pim,
239 pim_sgaddr *sg, struct in_addr rp)
240 {
241 struct pim_msdp_sa *sa;
242
243 sa = XCALLOC(MTYPE_PIM_MSDP_SA, sizeof(*sa));
244
245 sa->pim = pim;
246 sa->sg = *sg;
247 snprintfrr(sa->sg_str, sizeof(sa->sg_str), "%pSG", sg);
248 sa->rp = rp;
249 sa->uptime = pim_time_monotonic_sec();
250
251 /* insert into misc tables for easy access */
252 sa = hash_get(pim->msdp.sa_hash, sa, hash_alloc_intern);
253 listnode_add_sort(pim->msdp.sa_list, sa);
254
255 if (PIM_DEBUG_MSDP_EVENTS) {
256 zlog_debug("MSDP SA %s created", sa->sg_str);
257 }
258
259 return sa;
260 }
261
262 static struct pim_msdp_sa *pim_msdp_sa_find(struct pim_instance *pim,
263 pim_sgaddr *sg)
264 {
265 struct pim_msdp_sa lookup;
266
267 lookup.sg = *sg;
268 return hash_lookup(pim->msdp.sa_hash, &lookup);
269 }
270
271 static struct pim_msdp_sa *pim_msdp_sa_add(struct pim_instance *pim,
272 pim_sgaddr *sg, struct in_addr rp)
273 {
274 struct pim_msdp_sa *sa;
275
276 sa = pim_msdp_sa_find(pim, sg);
277 if (sa) {
278 return sa;
279 }
280
281 return pim_msdp_sa_new(pim, sg, rp);
282 }
283
284 static void pim_msdp_sa_del(struct pim_msdp_sa *sa)
285 {
286 /* this is somewhat redundant - still want to be careful not to leave
287 * stale upstream references */
288 pim_msdp_sa_upstream_del(sa);
289
290 /* stop timers */
291 pim_msdp_sa_state_timer_setup(sa, false /* start */);
292
293 /* remove the entry from various tables */
294 listnode_delete(sa->pim->msdp.sa_list, sa);
295 hash_release(sa->pim->msdp.sa_hash, sa);
296
297 if (PIM_DEBUG_MSDP_EVENTS) {
298 zlog_debug("MSDP SA %s deleted", sa->sg_str);
299 }
300
301 /* free up any associated memory */
302 pim_msdp_sa_free(sa);
303 }
304
305 static void pim_msdp_sa_peer_ip_set(struct pim_msdp_sa *sa,
306 struct pim_msdp_peer *mp, struct in_addr rp)
307 {
308 struct pim_msdp_peer *old_mp;
309
310 /* optimize the "no change" case as it will happen
311 * frequently/periodically */
312 if (mp && (sa->peer.s_addr == mp->peer.s_addr)) {
313 return;
314 }
315
316 /* any time the peer ip changes also update the rp address */
317 if (sa->peer.s_addr != INADDR_ANY) {
318 old_mp = pim_msdp_peer_find(sa->pim, sa->peer);
319 if (old_mp && old_mp->sa_cnt) {
320 --old_mp->sa_cnt;
321 }
322 }
323
324 if (mp) {
325 ++mp->sa_cnt;
326 sa->peer = mp->peer;
327 } else {
328 sa->peer.s_addr = PIM_NET_INADDR_ANY;
329 }
330 sa->rp = rp;
331 }
332
333 /* When a local active-source is removed there is no way to withdraw the
334 * source from peers. We will simply remove it from the SA cache so it will
335 * not be sent in supsequent SA updates. Peers will consequently timeout the
336 * SA.
337 * Similarly a "peer-added" SA is never explicitly deleted. It is simply
338 * aged out overtime if not seen in the SA updates from the peers.
339 * XXX: should we provide a knob to drop entries learnt from a peer when the
340 * peer goes down? */
341 static void pim_msdp_sa_deref(struct pim_msdp_sa *sa,
342 enum pim_msdp_sa_flags flags)
343 {
344 bool update_up = false;
345
346 if ((sa->flags & PIM_MSDP_SAF_LOCAL)) {
347 if (flags & PIM_MSDP_SAF_LOCAL) {
348 if (PIM_DEBUG_MSDP_EVENTS) {
349 zlog_debug("MSDP SA %s local reference removed",
350 sa->sg_str);
351 }
352 if (sa->pim->msdp.local_cnt)
353 --sa->pim->msdp.local_cnt;
354 }
355 }
356
357 if ((sa->flags & PIM_MSDP_SAF_PEER)) {
358 if (flags & PIM_MSDP_SAF_PEER) {
359 struct in_addr rp;
360
361 if (PIM_DEBUG_MSDP_EVENTS) {
362 zlog_debug("MSDP SA %s peer reference removed",
363 sa->sg_str);
364 }
365 pim_msdp_sa_state_timer_setup(sa, false /* start */);
366 rp.s_addr = INADDR_ANY;
367 pim_msdp_sa_peer_ip_set(sa, NULL /* mp */, rp);
368 /* if peer ref was removed we need to remove the msdp
369 * reference on the
370 * msdp entry */
371 update_up = true;
372 }
373 }
374
375 sa->flags &= ~flags;
376 if (update_up) {
377 pim_msdp_sa_upstream_update(sa, NULL /* xg_up */, "sa-deref");
378 }
379
380 if (!(sa->flags & PIM_MSDP_SAF_REF)) {
381 pim_msdp_sa_del(sa);
382 }
383 }
384
385 void pim_msdp_sa_ref(struct pim_instance *pim, struct pim_msdp_peer *mp,
386 pim_sgaddr *sg, struct in_addr rp)
387 {
388 struct pim_msdp_sa *sa;
389
390 sa = pim_msdp_sa_add(pim, sg, rp);
391 if (!sa) {
392 return;
393 }
394
395 /* reference it */
396 if (mp) {
397 if (!(sa->flags & PIM_MSDP_SAF_PEER)) {
398 sa->flags |= PIM_MSDP_SAF_PEER;
399 if (PIM_DEBUG_MSDP_EVENTS) {
400 zlog_debug("MSDP SA %s added by peer",
401 sa->sg_str);
402 }
403 }
404 pim_msdp_sa_peer_ip_set(sa, mp, rp);
405 /* start/re-start the state timer to prevent cache expiry */
406 pim_msdp_sa_state_timer_setup(sa, true /* start */);
407 /* We re-evaluate SA "SPT-trigger" everytime we hear abt it from
408 * a
409 * peer. XXX: If this becomes too much of a periodic overhead we
410 * can make it event based */
411 pim_msdp_sa_upstream_update(sa, NULL /* xg_up */, "peer-ref");
412 } else {
413 if (!(sa->flags & PIM_MSDP_SAF_LOCAL)) {
414 sa->flags |= PIM_MSDP_SAF_LOCAL;
415 ++sa->pim->msdp.local_cnt;
416 if (PIM_DEBUG_MSDP_EVENTS) {
417 zlog_debug("MSDP SA %s added locally",
418 sa->sg_str);
419 }
420 /* send an immediate SA update to peers */
421 sa->rp = pim->msdp.originator_id;
422 pim_msdp_pkt_sa_tx_one(sa);
423 }
424 sa->flags &= ~PIM_MSDP_SAF_STALE;
425 }
426 }
427
428 /* The following criteria must be met to originate an SA from the MSDP
429 * speaker -
430 * 1. KAT must be running i.e. source is active.
431 * 2. We must be RP for the group.
432 * 3. Source must be registrable to the RP (this is where the RFC is vague
433 * and especially ambiguous in CLOS networks; with anycast RP all sources
434 * are potentially registrable to all RPs in the domain). We assume #3 is
435 * satisfied if -
436 * a. We are also the FHR-DR for the source (OR)
437 * b. We rxed a pim register (null or data encapsulated) within the last
438 * (3 * (1.5 * register_suppression_timer))).
439 */
440 static bool pim_msdp_sa_local_add_ok(struct pim_upstream *up)
441 {
442 struct pim_instance *pim = up->channel_oil->pim;
443
444 if (!(pim->msdp.flags & PIM_MSDPF_ENABLE)) {
445 return false;
446 }
447
448 if (!pim_upstream_is_kat_running(up))
449 /* stream is not active */
450 return false;
451
452 if (!I_am_RP(pim, up->sg.grp)) {
453 /* we are not RP for the group */
454 return false;
455 }
456
457 /* we are the FHR-DR for this stream or we are RP and have seen
458 * registers
459 * from a FHR for this source */
460 if (PIM_UPSTREAM_FLAG_TEST_FHR(up->flags) || up->t_msdp_reg_timer) {
461 return true;
462 }
463
464 return false;
465 }
466
467 static void pim_msdp_sa_local_add(struct pim_instance *pim, pim_sgaddr *sg)
468 {
469 struct in_addr rp;
470 rp.s_addr = INADDR_ANY;
471 pim_msdp_sa_ref(pim, NULL /* mp */, sg, rp);
472 }
473
474 void pim_msdp_sa_local_del(struct pim_instance *pim, pim_sgaddr *sg)
475 {
476 struct pim_msdp_sa *sa;
477
478 sa = pim_msdp_sa_find(pim, sg);
479 if (sa) {
480 pim_msdp_sa_deref(sa, PIM_MSDP_SAF_LOCAL);
481 }
482 }
483
484 /* we need to be very cautious with this API as SA del too can trigger an
485 * upstream del and we will get stuck in a simple loop */
486 static void pim_msdp_sa_local_del_on_up_del(struct pim_instance *pim,
487 pim_sgaddr *sg)
488 {
489 struct pim_msdp_sa *sa;
490
491 sa = pim_msdp_sa_find(pim, sg);
492 if (sa) {
493 if (PIM_DEBUG_MSDP_INTERNAL) {
494 zlog_debug("MSDP local sa %s del on up del",
495 sa->sg_str);
496 }
497
498 /* if there is no local reference escape */
499 if (!(sa->flags & PIM_MSDP_SAF_LOCAL)) {
500 if (PIM_DEBUG_MSDP_INTERNAL) {
501 zlog_debug("MSDP local sa %s del; no local ref",
502 sa->sg_str);
503 }
504 return;
505 }
506
507 if (sa->flags & PIM_MSDP_SAF_UP_DEL_IN_PROG) {
508 /* MSDP is the one that triggered the upstream del. if
509 * this happens
510 * we most certainly have a bug in the PIM upstream
511 * state machine. We
512 * will not have a local reference unless the KAT is
513 * running. And if the
514 * KAT is running there MUST be an additional
515 * source-stream reference to
516 * the flow. Accounting for such cases requires lot of
517 * changes; perhaps
518 * address this in the next release? - XXX */
519 flog_err(
520 EC_LIB_DEVELOPMENT,
521 "MSDP sa %s SPT teardown is causing the local entry to be removed",
522 sa->sg_str);
523 return;
524 }
525
526 /* we are dropping the sa on upstream del we should not have an
527 * upstream reference */
528 if (sa->up) {
529 if (PIM_DEBUG_MSDP_INTERNAL) {
530 zlog_debug("MSDP local sa %s del; up non-NULL",
531 sa->sg_str);
532 }
533 sa->up = NULL;
534 }
535 pim_msdp_sa_deref(sa, PIM_MSDP_SAF_LOCAL);
536 }
537 }
538
539 /* Local SA qualification needs to be re-evaluated when -
540 * 1. KAT is started or stopped
541 * 2. on RP changes
542 * 3. Whenever FHR status changes for a (S,G) - XXX - currently there
543 * is no clear path to transition an entry out of "MASK_FHR" need
544 * to discuss this with Donald. May result in some strangeness if the
545 * FHR is also the RP.
546 * 4. When msdp_reg timer is started or stopped
547 */
548 void pim_msdp_sa_local_update(struct pim_upstream *up)
549 {
550 struct pim_instance *pim = up->channel_oil->pim;
551
552 if (pim_msdp_sa_local_add_ok(up)) {
553 pim_msdp_sa_local_add(pim, &up->sg);
554 } else {
555 pim_msdp_sa_local_del(pim, &up->sg);
556 }
557 }
558
559 static void pim_msdp_sa_local_setup(struct pim_instance *pim)
560 {
561 struct pim_upstream *up;
562
563 frr_each (rb_pim_upstream, &pim->upstream_head, up)
564 pim_msdp_sa_local_update(up);
565 }
566
567 /* whenever the RP changes we need to re-evaluate the "local" SA-cache */
568 /* XXX: needs to be tested */
569 void pim_msdp_i_am_rp_changed(struct pim_instance *pim)
570 {
571 struct listnode *sanode;
572 struct listnode *nextnode;
573 struct pim_msdp_sa *sa;
574
575 if (!(pim->msdp.flags & PIM_MSDPF_ENABLE)) {
576 /* if the feature is not enabled do nothing */
577 return;
578 }
579
580 if (PIM_DEBUG_MSDP_INTERNAL) {
581 zlog_debug("MSDP i_am_rp changed");
582 }
583
584 /* mark all local entries as stale */
585 for (ALL_LIST_ELEMENTS_RO(pim->msdp.sa_list, sanode, sa)) {
586 if (sa->flags & PIM_MSDP_SAF_LOCAL) {
587 sa->flags |= PIM_MSDP_SAF_STALE;
588 }
589 }
590
591 /* re-setup local SA entries */
592 pim_msdp_sa_local_setup(pim);
593
594 for (ALL_LIST_ELEMENTS(pim->msdp.sa_list, sanode, nextnode, sa)) {
595 /* purge stale SA entries */
596 if (sa->flags & PIM_MSDP_SAF_STALE) {
597 /* clear the stale flag; the entry may be kept even
598 * after
599 * "local-deref" */
600 sa->flags &= ~PIM_MSDP_SAF_STALE;
601 /* sa_deref can end up freeing the sa; so don't access
602 * contents after */
603 pim_msdp_sa_deref(sa, PIM_MSDP_SAF_LOCAL);
604 } else {
605 /* if the souce is still active check if we can
606 * influence SPT */
607 pim_msdp_sa_upstream_update(sa, NULL /* xg_up */,
608 "rp-change");
609 }
610 }
611 }
612
613 /* We track the join state of (*, G) entries. If G has sources in the SA-cache
614 * we need to setup or teardown SPT when the JoinDesired status changes for
615 * (*, G) */
616 void pim_msdp_up_join_state_changed(struct pim_instance *pim,
617 struct pim_upstream *xg_up)
618 {
619 struct listnode *sanode;
620 struct pim_msdp_sa *sa;
621
622 if (PIM_DEBUG_MSDP_INTERNAL) {
623 zlog_debug("MSDP join state changed for %s", xg_up->sg_str);
624 }
625
626 /* If this is not really an XG entry just move on */
627 if (!pim_addr_is_any(xg_up->sg.src) || pim_addr_is_any(xg_up->sg.grp)) {
628 return;
629 }
630
631 /* XXX: Need to maintain SAs per-group to avoid all this unnecessary
632 * walking */
633 for (ALL_LIST_ELEMENTS_RO(pim->msdp.sa_list, sanode, sa)) {
634 if (pim_addr_cmp(sa->sg.grp, xg_up->sg.grp)) {
635 continue;
636 }
637 pim_msdp_sa_upstream_update(sa, xg_up, "up-jp-change");
638 }
639 }
640
641 static void pim_msdp_up_xg_del(struct pim_instance *pim, pim_sgaddr *sg)
642 {
643 struct listnode *sanode;
644 struct pim_msdp_sa *sa;
645
646 if (PIM_DEBUG_MSDP_INTERNAL) {
647 zlog_debug("MSDP %pSG del", sg);
648 }
649
650 /* If this is not really an XG entry just move on */
651 if (!pim_addr_is_any(sg->src) || pim_addr_is_any(sg->grp)) {
652 return;
653 }
654
655 /* XXX: Need to maintain SAs per-group to avoid all this unnecessary
656 * walking */
657 for (ALL_LIST_ELEMENTS_RO(pim->msdp.sa_list, sanode, sa)) {
658 if (pim_addr_cmp(sa->sg.grp, sg->grp)) {
659 continue;
660 }
661 pim_msdp_sa_upstream_update(sa, NULL /* xg */, "up-jp-change");
662 }
663 }
664
665 void pim_msdp_up_del(struct pim_instance *pim, pim_sgaddr *sg)
666 {
667 if (PIM_DEBUG_MSDP_INTERNAL) {
668 zlog_debug("MSDP up %pSG del", sg);
669 }
670 if (pim_addr_is_any(sg->src)) {
671 pim_msdp_up_xg_del(pim, sg);
672 } else {
673 pim_msdp_sa_local_del_on_up_del(pim, sg);
674 }
675 }
676
677 /* sa hash and peer list helpers */
678 static unsigned int pim_msdp_sa_hash_key_make(const void *p)
679 {
680 const struct pim_msdp_sa *sa = p;
681
682 return pim_sgaddr_hash(sa->sg, 0);
683 }
684
685 static bool pim_msdp_sa_hash_eq(const void *p1, const void *p2)
686 {
687 const struct pim_msdp_sa *sa1 = p1;
688 const struct pim_msdp_sa *sa2 = p2;
689
690 return !pim_sgaddr_cmp(sa1->sg, sa2->sg);
691 }
692
693 static int pim_msdp_sa_comp(const void *p1, const void *p2)
694 {
695 const struct pim_msdp_sa *sa1 = p1;
696 const struct pim_msdp_sa *sa2 = p2;
697
698 return pim_sgaddr_cmp(sa1->sg, sa2->sg);
699 }
700
701 /* RFC-3618:Sec-10.1.3 - Peer-RPF forwarding */
702 /* XXX: this can use a bit of refining and extensions */
703 bool pim_msdp_peer_rpf_check(struct pim_msdp_peer *mp, struct in_addr rp)
704 {
705 struct pim_nexthop nexthop = {0};
706
707 if (mp->peer.s_addr == rp.s_addr) {
708 return true;
709 }
710
711 /* check if the MSDP peer is the nexthop for the RP */
712 if (pim_nexthop_lookup(mp->pim, &nexthop, rp, 0)
713 && nexthop.mrib_nexthop_addr.u.prefix4.s_addr == mp->peer.s_addr) {
714 return true;
715 }
716
717 return false;
718 }
719
720 /************************ Peer session management **************************/
721 char *pim_msdp_state_dump(enum pim_msdp_peer_state state, char *buf,
722 int buf_size)
723 {
724 switch (state) {
725 case PIM_MSDP_DISABLED:
726 snprintf(buf, buf_size, "%s", "disabled");
727 break;
728 case PIM_MSDP_INACTIVE:
729 snprintf(buf, buf_size, "%s", "inactive");
730 break;
731 case PIM_MSDP_LISTEN:
732 snprintf(buf, buf_size, "%s", "listen");
733 break;
734 case PIM_MSDP_CONNECTING:
735 snprintf(buf, buf_size, "%s", "connecting");
736 break;
737 case PIM_MSDP_ESTABLISHED:
738 snprintf(buf, buf_size, "%s", "established");
739 break;
740 default:
741 snprintf(buf, buf_size, "unk-%d", state);
742 }
743 return buf;
744 }
745
746 static void pim_msdp_peer_state_chg_log(struct pim_msdp_peer *mp)
747 {
748 char state_str[PIM_MSDP_STATE_STRLEN];
749
750 pim_msdp_state_dump(mp->state, state_str, sizeof(state_str));
751 zlog_debug("MSDP peer %s state chg to %s", mp->key_str, state_str);
752 }
753
754 /* MSDP Connection State Machine actions (defined in RFC-3618:Sec-11.2) */
755 /* 11.2.A2: active peer - start connect retry timer; when the timer fires
756 * a tcp connection will be made */
757 static void pim_msdp_peer_connect(struct pim_msdp_peer *mp)
758 {
759 mp->state = PIM_MSDP_CONNECTING;
760 if (PIM_DEBUG_MSDP_EVENTS) {
761 pim_msdp_peer_state_chg_log(mp);
762 }
763
764 pim_msdp_peer_cr_timer_setup(mp, true /* start */);
765 }
766
767 /* 11.2.A3: passive peer - just listen for connections */
768 static void pim_msdp_peer_listen(struct pim_msdp_peer *mp)
769 {
770 mp->state = PIM_MSDP_LISTEN;
771 if (PIM_DEBUG_MSDP_EVENTS) {
772 pim_msdp_peer_state_chg_log(mp);
773 }
774
775 /* this is interntionally asymmetric i.e. we set up listen-socket when
776 * the
777 * first listening peer is configured; but don't bother tearing it down
778 * when
779 * all the peers go down */
780 pim_msdp_sock_listen(mp->pim);
781 }
782
783 /* 11.2.A4 and 11.2.A5: transition active or passive peer to
784 * established state */
785 void pim_msdp_peer_established(struct pim_msdp_peer *mp)
786 {
787 if (mp->state != PIM_MSDP_ESTABLISHED) {
788 ++mp->est_flaps;
789 }
790
791 mp->state = PIM_MSDP_ESTABLISHED;
792 mp->uptime = pim_time_monotonic_sec();
793
794 if (PIM_DEBUG_MSDP_EVENTS) {
795 pim_msdp_peer_state_chg_log(mp);
796 }
797
798 /* stop retry timer on active peers */
799 pim_msdp_peer_cr_timer_setup(mp, false /* start */);
800
801 /* send KA; start KA and hold timers */
802 pim_msdp_pkt_ka_tx(mp);
803 pim_msdp_peer_ka_timer_setup(mp, true /* start */);
804 pim_msdp_peer_hold_timer_setup(mp, true /* start */);
805
806 pim_msdp_pkt_sa_tx_to_one_peer(mp);
807
808 PIM_MSDP_PEER_WRITE_ON(mp);
809 PIM_MSDP_PEER_READ_ON(mp);
810 }
811
812 /* 11.2.A6, 11.2.A7 and 11.2.A8: shutdown the peer tcp connection */
813 void pim_msdp_peer_stop_tcp_conn(struct pim_msdp_peer *mp, bool chg_state)
814 {
815 if (chg_state) {
816 if (mp->state == PIM_MSDP_ESTABLISHED) {
817 ++mp->est_flaps;
818 }
819 mp->state = PIM_MSDP_INACTIVE;
820 if (PIM_DEBUG_MSDP_EVENTS) {
821 pim_msdp_peer_state_chg_log(mp);
822 }
823 }
824
825 if (PIM_DEBUG_MSDP_INTERNAL) {
826 zlog_debug("MSDP peer %s pim_msdp_peer_stop_tcp_conn",
827 mp->key_str);
828 }
829 /* stop read and write threads */
830 PIM_MSDP_PEER_READ_OFF(mp);
831 PIM_MSDP_PEER_WRITE_OFF(mp);
832
833 /* reset buffers */
834 mp->packet_size = 0;
835 if (mp->ibuf)
836 stream_reset(mp->ibuf);
837 if (mp->obuf)
838 stream_fifo_clean(mp->obuf);
839
840 /* stop all peer timers */
841 pim_msdp_peer_ka_timer_setup(mp, false /* start */);
842 pim_msdp_peer_cr_timer_setup(mp, false /* start */);
843 pim_msdp_peer_hold_timer_setup(mp, false /* start */);
844
845 /* close connection */
846 if (mp->fd >= 0) {
847 close(mp->fd);
848 mp->fd = -1;
849 }
850 }
851
852 /* RFC-3618:Sec-5.6 - stop the peer tcp connection and startover */
853 void pim_msdp_peer_reset_tcp_conn(struct pim_msdp_peer *mp, const char *rc_str)
854 {
855 if (PIM_DEBUG_EVENTS) {
856 zlog_debug("MSDP peer %s tcp reset %s", mp->key_str, rc_str);
857 snprintf(mp->last_reset, sizeof(mp->last_reset), "%s", rc_str);
858 }
859
860 /* close the connection and transition to listening or connecting */
861 pim_msdp_peer_stop_tcp_conn(mp, true /* chg_state */);
862 if (PIM_MSDP_PEER_IS_LISTENER(mp)) {
863 pim_msdp_peer_listen(mp);
864 } else {
865 pim_msdp_peer_connect(mp);
866 }
867 }
868
869 static void pim_msdp_peer_timer_expiry_log(struct pim_msdp_peer *mp,
870 const char *timer_str)
871 {
872 zlog_debug("MSDP peer %s %s timer expired", mp->key_str, timer_str);
873 }
874
875 /* RFC-3618:Sec-5.4 - peer hold timer */
876 static int pim_msdp_peer_hold_timer_cb(struct thread *t)
877 {
878 struct pim_msdp_peer *mp;
879
880 mp = THREAD_ARG(t);
881
882 if (PIM_DEBUG_MSDP_EVENTS) {
883 pim_msdp_peer_timer_expiry_log(mp, "hold");
884 }
885
886 if (mp->state != PIM_MSDP_ESTABLISHED) {
887 return 0;
888 }
889
890 if (PIM_DEBUG_MSDP_EVENTS) {
891 pim_msdp_peer_state_chg_log(mp);
892 }
893 pim_msdp_peer_reset_tcp_conn(mp, "ht-expired");
894 return 0;
895 }
896
897 static void pim_msdp_peer_hold_timer_setup(struct pim_msdp_peer *mp, bool start)
898 {
899 struct pim_instance *pim = mp->pim;
900 THREAD_OFF(mp->hold_timer);
901 if (start) {
902 thread_add_timer(pim->msdp.master, pim_msdp_peer_hold_timer_cb,
903 mp, pim->msdp.hold_time, &mp->hold_timer);
904 }
905 }
906
907
908 /* RFC-3618:Sec-5.5 - peer keepalive timer */
909 static int pim_msdp_peer_ka_timer_cb(struct thread *t)
910 {
911 struct pim_msdp_peer *mp;
912
913 mp = THREAD_ARG(t);
914
915 if (PIM_DEBUG_MSDP_EVENTS) {
916 pim_msdp_peer_timer_expiry_log(mp, "ka");
917 }
918
919 pim_msdp_pkt_ka_tx(mp);
920 pim_msdp_peer_ka_timer_setup(mp, true /* start */);
921 return 0;
922 }
923 static void pim_msdp_peer_ka_timer_setup(struct pim_msdp_peer *mp, bool start)
924 {
925 THREAD_OFF(mp->ka_timer);
926 if (start) {
927 thread_add_timer(mp->pim->msdp.master,
928 pim_msdp_peer_ka_timer_cb, mp,
929 mp->pim->msdp.keep_alive, &mp->ka_timer);
930 }
931 }
932
933 static void pim_msdp_peer_active_connect(struct pim_msdp_peer *mp)
934 {
935 int rc;
936 ++mp->conn_attempts;
937 rc = pim_msdp_sock_connect(mp);
938
939 if (PIM_DEBUG_MSDP_INTERNAL) {
940 zlog_debug("MSDP peer %s pim_msdp_peer_active_connect: %d",
941 mp->key_str, rc);
942 }
943
944 switch (rc) {
945 case connect_error:
946 case -1:
947 /* connect failed restart the connect-retry timer */
948 pim_msdp_peer_cr_timer_setup(mp, true /* start */);
949 break;
950
951 case connect_success:
952 /* connect was sucessful move to established */
953 pim_msdp_peer_established(mp);
954 break;
955
956 case connect_in_progress:
957 /* for NB content we need to wait till sock is readable or
958 * writeable */
959 PIM_MSDP_PEER_WRITE_ON(mp);
960 PIM_MSDP_PEER_READ_ON(mp);
961 /* also restart connect-retry timer to reset the socket if
962 * connect is
963 * not sucessful */
964 pim_msdp_peer_cr_timer_setup(mp, true /* start */);
965 break;
966 }
967 }
968
969 /* RFC-3618:Sec-5.6 - connection retry on active peer */
970 static int pim_msdp_peer_cr_timer_cb(struct thread *t)
971 {
972 struct pim_msdp_peer *mp;
973
974 mp = THREAD_ARG(t);
975
976 if (PIM_DEBUG_MSDP_EVENTS) {
977 pim_msdp_peer_timer_expiry_log(mp, "connect-retry");
978 }
979
980 if (mp->state != PIM_MSDP_CONNECTING || PIM_MSDP_PEER_IS_LISTENER(mp)) {
981 return 0;
982 }
983
984 pim_msdp_peer_active_connect(mp);
985 return 0;
986 }
987 static void pim_msdp_peer_cr_timer_setup(struct pim_msdp_peer *mp, bool start)
988 {
989 THREAD_OFF(mp->cr_timer);
990 if (start) {
991 thread_add_timer(mp->pim->msdp.master,
992 pim_msdp_peer_cr_timer_cb, mp,
993 mp->pim->msdp.connection_retry, &mp->cr_timer);
994 }
995 }
996
997 /* if a valid packet is rxed from the peer we can restart hold timer */
998 void pim_msdp_peer_pkt_rxed(struct pim_msdp_peer *mp)
999 {
1000 if (mp->state == PIM_MSDP_ESTABLISHED) {
1001 pim_msdp_peer_hold_timer_setup(mp, true /* start */);
1002 }
1003 }
1004
1005 /* if a valid packet is txed to the peer we can restart ka timer and avoid
1006 * unnecessary ka noise in the network */
1007 void pim_msdp_peer_pkt_txed(struct pim_msdp_peer *mp)
1008 {
1009 if (mp->state == PIM_MSDP_ESTABLISHED) {
1010 pim_msdp_peer_ka_timer_setup(mp, true /* start */);
1011 if (PIM_DEBUG_MSDP_INTERNAL) {
1012 zlog_debug("MSDP ka timer restart on pkt tx to %s",
1013 mp->key_str);
1014 }
1015 }
1016 }
1017
1018 static void pim_msdp_addr2su(union sockunion *su, struct in_addr addr)
1019 {
1020 sockunion_init(su);
1021 su->sin.sin_addr = addr;
1022 su->sin.sin_family = AF_INET;
1023 #ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
1024 su->sin.sin_len = sizeof(struct sockaddr_in);
1025 #endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
1026 }
1027
1028 /* 11.2.A1: create a new peer and transition state to listen or connecting */
1029 struct pim_msdp_peer *pim_msdp_peer_add(struct pim_instance *pim,
1030 const struct in_addr *peer,
1031 const struct in_addr *local,
1032 const char *mesh_group_name)
1033 {
1034 struct pim_msdp_peer *mp;
1035
1036 pim_msdp_enable(pim);
1037
1038 mp = XCALLOC(MTYPE_PIM_MSDP_PEER, sizeof(*mp));
1039
1040 mp->pim = pim;
1041 mp->peer = *peer;
1042 pim_inet4_dump("<peer?>", mp->peer, mp->key_str, sizeof(mp->key_str));
1043 pim_msdp_addr2su(&mp->su_peer, mp->peer);
1044 mp->local = *local;
1045 /* XXX: originator_id setting needs to move to the mesh group */
1046 pim->msdp.originator_id = *local;
1047 pim_msdp_addr2su(&mp->su_local, mp->local);
1048 if (mesh_group_name)
1049 mp->mesh_group_name =
1050 XSTRDUP(MTYPE_PIM_MSDP_MG_NAME, mesh_group_name);
1051
1052 mp->state = PIM_MSDP_INACTIVE;
1053 mp->fd = -1;
1054 strlcpy(mp->last_reset, "-", sizeof(mp->last_reset));
1055 /* higher IP address is listener */
1056 if (ntohl(mp->local.s_addr) > ntohl(mp->peer.s_addr)) {
1057 mp->flags |= PIM_MSDP_PEERF_LISTENER;
1058 }
1059
1060 /* setup packet buffers */
1061 mp->ibuf = stream_new(PIM_MSDP_MAX_PACKET_SIZE);
1062 mp->obuf = stream_fifo_new();
1063
1064 /* insert into misc tables for easy access */
1065 mp = hash_get(pim->msdp.peer_hash, mp, hash_alloc_intern);
1066 listnode_add_sort(pim->msdp.peer_list, mp);
1067
1068 if (PIM_DEBUG_MSDP_EVENTS) {
1069 zlog_debug("MSDP peer %s created", mp->key_str);
1070
1071 pim_msdp_peer_state_chg_log(mp);
1072 }
1073
1074 /* fireup the connect state machine */
1075 if (PIM_MSDP_PEER_IS_LISTENER(mp)) {
1076 pim_msdp_peer_listen(mp);
1077 } else {
1078 pim_msdp_peer_connect(mp);
1079 }
1080 return mp;
1081 }
1082
1083 struct pim_msdp_peer *pim_msdp_peer_find(struct pim_instance *pim,
1084 struct in_addr peer_addr)
1085 {
1086 struct pim_msdp_peer lookup;
1087
1088 lookup.peer = peer_addr;
1089 return hash_lookup(pim->msdp.peer_hash, &lookup);
1090 }
1091
1092 /* release all mem associated with a peer */
1093 static void pim_msdp_peer_free(struct pim_msdp_peer *mp)
1094 {
1095 /*
1096 * Let's make sure we are not running when we delete
1097 * the underlying data structure
1098 */
1099 pim_msdp_peer_stop_tcp_conn(mp, false);
1100
1101 if (mp->ibuf) {
1102 stream_free(mp->ibuf);
1103 }
1104
1105 if (mp->obuf) {
1106 stream_fifo_free(mp->obuf);
1107 }
1108
1109 XFREE(MTYPE_PIM_MSDP_MG_NAME, mp->mesh_group_name);
1110
1111 mp->pim = NULL;
1112 XFREE(MTYPE_PIM_MSDP_PEER, mp);
1113 }
1114
1115 /* delete the peer config */
1116 void pim_msdp_peer_del(struct pim_msdp_peer **mp)
1117 {
1118 if (*mp == NULL)
1119 return;
1120
1121 /* stop the tcp connection and shutdown all timers */
1122 pim_msdp_peer_stop_tcp_conn(*mp, true /* chg_state */);
1123
1124 /* remove the session from various tables */
1125 listnode_delete((*mp)->pim->msdp.peer_list, *mp);
1126 hash_release((*mp)->pim->msdp.peer_hash, *mp);
1127
1128 if (PIM_DEBUG_MSDP_EVENTS) {
1129 zlog_debug("MSDP peer %s deleted", (*mp)->key_str);
1130 }
1131
1132 /* free up any associated memory */
1133 pim_msdp_peer_free(*mp);
1134 *mp = NULL;
1135 }
1136
1137 void pim_msdp_peer_change_source(struct pim_msdp_peer *mp,
1138 const struct in_addr *addr)
1139 {
1140 pim_msdp_peer_stop_tcp_conn(mp, true);
1141
1142 mp->local = *addr;
1143
1144 if (PIM_MSDP_PEER_IS_LISTENER(mp))
1145 pim_msdp_peer_listen(mp);
1146 else
1147 pim_msdp_peer_connect(mp);
1148 }
1149
1150 /* peer hash and peer list helpers */
1151 static unsigned int pim_msdp_peer_hash_key_make(const void *p)
1152 {
1153 const struct pim_msdp_peer *mp = p;
1154 return (jhash_1word(mp->peer.s_addr, 0));
1155 }
1156
1157 static bool pim_msdp_peer_hash_eq(const void *p1, const void *p2)
1158 {
1159 const struct pim_msdp_peer *mp1 = p1;
1160 const struct pim_msdp_peer *mp2 = p2;
1161
1162 return (mp1->peer.s_addr == mp2->peer.s_addr);
1163 }
1164
1165 static int pim_msdp_peer_comp(const void *p1, const void *p2)
1166 {
1167 const struct pim_msdp_peer *mp1 = p1;
1168 const struct pim_msdp_peer *mp2 = p2;
1169
1170 if (ntohl(mp1->peer.s_addr) < ntohl(mp2->peer.s_addr))
1171 return -1;
1172
1173 if (ntohl(mp1->peer.s_addr) > ntohl(mp2->peer.s_addr))
1174 return 1;
1175
1176 return 0;
1177 }
1178
1179 /************************** Mesh group management **************************/
1180 void pim_msdp_mg_free(struct pim_instance *pim, struct pim_msdp_mg **mgp)
1181 {
1182 struct pim_msdp_mg_mbr *mbr;
1183 struct listnode *n, *nn;
1184
1185 if (*mgp == NULL)
1186 return;
1187
1188 /* SIP is being removed - tear down all active peer sessions */
1189 for (ALL_LIST_ELEMENTS((*mgp)->mbr_list, n, nn, mbr))
1190 pim_msdp_mg_mbr_del((*mgp), mbr);
1191
1192 if (PIM_DEBUG_MSDP_EVENTS) {
1193 zlog_debug("MSDP mesh-group %s deleted",
1194 (*mgp)->mesh_group_name);
1195 }
1196
1197 XFREE(MTYPE_PIM_MSDP_MG_NAME, (*mgp)->mesh_group_name);
1198
1199 if ((*mgp)->mbr_list)
1200 list_delete(&(*mgp)->mbr_list);
1201
1202 SLIST_REMOVE(&pim->msdp.mglist, (*mgp), pim_msdp_mg, mg_entry);
1203 XFREE(MTYPE_PIM_MSDP_MG, (*mgp));
1204 }
1205
1206 struct pim_msdp_mg *pim_msdp_mg_new(struct pim_instance *pim,
1207 const char *mesh_group_name)
1208 {
1209 struct pim_msdp_mg *mg;
1210
1211 mg = XCALLOC(MTYPE_PIM_MSDP_MG, sizeof(*mg));
1212
1213 mg->mesh_group_name = XSTRDUP(MTYPE_PIM_MSDP_MG_NAME, mesh_group_name);
1214 mg->mbr_list = list_new();
1215 mg->mbr_list->del = (void (*)(void *))pim_msdp_mg_mbr_free;
1216 mg->mbr_list->cmp = (int (*)(void *, void *))pim_msdp_mg_mbr_comp;
1217
1218 if (PIM_DEBUG_MSDP_EVENTS) {
1219 zlog_debug("MSDP mesh-group %s created", mg->mesh_group_name);
1220 }
1221
1222 SLIST_INSERT_HEAD(&pim->msdp.mglist, mg, mg_entry);
1223
1224 return mg;
1225 }
1226
1227 static int pim_msdp_mg_mbr_comp(const void *p1, const void *p2)
1228 {
1229 const struct pim_msdp_mg_mbr *mbr1 = p1;
1230 const struct pim_msdp_mg_mbr *mbr2 = p2;
1231
1232 if (ntohl(mbr1->mbr_ip.s_addr) < ntohl(mbr2->mbr_ip.s_addr))
1233 return -1;
1234
1235 if (ntohl(mbr1->mbr_ip.s_addr) > ntohl(mbr2->mbr_ip.s_addr))
1236 return 1;
1237
1238 return 0;
1239 }
1240
1241 static void pim_msdp_mg_mbr_free(struct pim_msdp_mg_mbr *mbr)
1242 {
1243 XFREE(MTYPE_PIM_MSDP_MG_MBR, mbr);
1244 }
1245
1246 void pim_msdp_mg_mbr_del(struct pim_msdp_mg *mg, struct pim_msdp_mg_mbr *mbr)
1247 {
1248 /* Delete active peer session if any */
1249 if (mbr->mp) {
1250 pim_msdp_peer_del(&mbr->mp);
1251 }
1252
1253 listnode_delete(mg->mbr_list, mbr);
1254 if (PIM_DEBUG_MSDP_EVENTS) {
1255 char ip_str[INET_ADDRSTRLEN];
1256 pim_inet4_dump("<mbr?>", mbr->mbr_ip, ip_str, sizeof(ip_str));
1257 zlog_debug("MSDP mesh-group %s mbr %s deleted",
1258 mg->mesh_group_name, ip_str);
1259 }
1260 pim_msdp_mg_mbr_free(mbr);
1261 if (mg->mbr_cnt) {
1262 --mg->mbr_cnt;
1263 }
1264 }
1265
1266 static void pim_msdp_src_del(struct pim_msdp_mg *mg)
1267 {
1268 struct pim_msdp_mg_mbr *mbr;
1269 struct listnode *mbr_node;
1270
1271 /* SIP is being removed - tear down all active peer sessions */
1272 for (ALL_LIST_ELEMENTS_RO(mg->mbr_list, mbr_node, mbr)) {
1273 if (mbr->mp)
1274 pim_msdp_peer_del(&mbr->mp);
1275 }
1276 if (PIM_DEBUG_MSDP_EVENTS) {
1277 zlog_debug("MSDP mesh-group %s src cleared",
1278 mg->mesh_group_name);
1279 }
1280 }
1281
1282 /*********************** MSDP feature APIs *********************************/
1283 int pim_msdp_config_write(struct pim_instance *pim, struct vty *vty,
1284 const char *spaces)
1285 {
1286 struct pim_msdp_mg *mg;
1287 struct listnode *mbrnode;
1288 struct pim_msdp_mg_mbr *mbr;
1289 char src_str[INET_ADDRSTRLEN];
1290 int count = 0;
1291
1292 if (SLIST_EMPTY(&pim->msdp.mglist))
1293 return count;
1294
1295 SLIST_FOREACH (mg, &pim->msdp.mglist, mg_entry) {
1296 if (mg->src_ip.s_addr != INADDR_ANY) {
1297 pim_inet4_dump("<src?>", mg->src_ip, src_str,
1298 sizeof(src_str));
1299 vty_out(vty, "%sip msdp mesh-group %s source %s\n",
1300 spaces, mg->mesh_group_name, src_str);
1301 ++count;
1302 }
1303
1304 for (ALL_LIST_ELEMENTS_RO(mg->mbr_list, mbrnode, mbr)) {
1305 vty_out(vty, "%sip msdp mesh-group %s member %pI4\n",
1306 spaces, mg->mesh_group_name, &mbr->mbr_ip);
1307 ++count;
1308 }
1309 }
1310
1311 return count;
1312 }
1313
1314 bool pim_msdp_peer_config_write(struct vty *vty, struct pim_instance *pim,
1315 const char *spaces)
1316 {
1317 struct pim_msdp_peer *mp;
1318 struct listnode *node;
1319 bool written = false;
1320
1321 for (ALL_LIST_ELEMENTS_RO(pim->msdp.peer_list, node, mp)) {
1322 /* Skip meshed group peers. */
1323 if (mp->flags & PIM_MSDP_PEERF_IN_GROUP)
1324 continue;
1325
1326 vty_out(vty, "%sip msdp peer %pI4 source %pI4\n", spaces,
1327 &mp->peer, &mp->local);
1328 written = true;
1329 }
1330
1331 return written;
1332 }
1333
1334 /* Enable feature including active/periodic timers etc. on the first peer
1335 * config. Till then MSDP should just stay quiet. */
1336 static void pim_msdp_enable(struct pim_instance *pim)
1337 {
1338 if (pim->msdp.flags & PIM_MSDPF_ENABLE) {
1339 /* feature is already enabled */
1340 return;
1341 }
1342 pim->msdp.flags |= PIM_MSDPF_ENABLE;
1343 pim->msdp.work_obuf = stream_new(PIM_MSDP_MAX_PACKET_SIZE);
1344 pim_msdp_sa_adv_timer_setup(pim, true /* start */);
1345 /* setup sa cache based on local sources */
1346 pim_msdp_sa_local_setup(pim);
1347 }
1348
1349 /* MSDP init */
1350 void pim_msdp_init(struct pim_instance *pim, struct thread_master *master)
1351 {
1352 pim->msdp.master = master;
1353 char hash_name[64];
1354
1355 snprintf(hash_name, sizeof(hash_name), "PIM %s MSDP Peer Hash",
1356 pim->vrf->name);
1357 pim->msdp.peer_hash = hash_create(pim_msdp_peer_hash_key_make,
1358 pim_msdp_peer_hash_eq, hash_name);
1359 pim->msdp.peer_list = list_new();
1360 pim->msdp.peer_list->del = (void (*)(void *))pim_msdp_peer_free;
1361 pim->msdp.peer_list->cmp = (int (*)(void *, void *))pim_msdp_peer_comp;
1362
1363 snprintf(hash_name, sizeof(hash_name), "PIM %s MSDP SA Hash",
1364 pim->vrf->name);
1365 pim->msdp.sa_hash = hash_create(pim_msdp_sa_hash_key_make,
1366 pim_msdp_sa_hash_eq, hash_name);
1367 pim->msdp.sa_list = list_new();
1368 pim->msdp.sa_list->del = (void (*)(void *))pim_msdp_sa_free;
1369 pim->msdp.sa_list->cmp = (int (*)(void *, void *))pim_msdp_sa_comp;
1370 }
1371
1372 /* counterpart to MSDP init; XXX: unused currently */
1373 void pim_msdp_exit(struct pim_instance *pim)
1374 {
1375 struct pim_msdp_mg *mg;
1376
1377 pim_msdp_sa_adv_timer_setup(pim, false);
1378
1379 /* Stop listener and delete all peer sessions */
1380 while ((mg = SLIST_FIRST(&pim->msdp.mglist)) != NULL)
1381 pim_msdp_mg_free(pim, &mg);
1382
1383 if (pim->msdp.peer_hash) {
1384 hash_clean(pim->msdp.peer_hash, NULL);
1385 hash_free(pim->msdp.peer_hash);
1386 pim->msdp.peer_hash = NULL;
1387 }
1388
1389 if (pim->msdp.peer_list) {
1390 list_delete(&pim->msdp.peer_list);
1391 }
1392
1393 if (pim->msdp.sa_hash) {
1394 hash_clean(pim->msdp.sa_hash, NULL);
1395 hash_free(pim->msdp.sa_hash);
1396 pim->msdp.sa_hash = NULL;
1397 }
1398
1399 if (pim->msdp.sa_list) {
1400 list_delete(&pim->msdp.sa_list);
1401 }
1402
1403 if (pim->msdp.work_obuf)
1404 stream_free(pim->msdp.work_obuf);
1405 pim->msdp.work_obuf = NULL;
1406 }
1407
1408 void pim_msdp_mg_src_add(struct pim_instance *pim, struct pim_msdp_mg *mg,
1409 struct in_addr *ai)
1410 {
1411 struct pim_msdp_mg_mbr *mbr;
1412 struct listnode *mbr_node;
1413
1414 /* Stop all connections and remove data structures. */
1415 pim_msdp_src_del(mg);
1416
1417 /* Set new address. */
1418 mg->src_ip = *ai;
1419
1420 /* No new address, disable everyone. */
1421 if (ai->s_addr == INADDR_ANY) {
1422 if (PIM_DEBUG_MSDP_EVENTS)
1423 zlog_debug("MSDP mesh-group %s src unset",
1424 mg->mesh_group_name);
1425 return;
1426 }
1427
1428 /* Create data structures and start TCP connection. */
1429 for (ALL_LIST_ELEMENTS_RO(mg->mbr_list, mbr_node, mbr))
1430 mbr->mp = pim_msdp_peer_add(pim, &mbr->mbr_ip, &mg->src_ip,
1431 mg->mesh_group_name);
1432
1433 if (PIM_DEBUG_MSDP_EVENTS)
1434 zlog_debug("MSDP mesh-group %s src %pI4 set",
1435 mg->mesh_group_name, &mg->src_ip);
1436 }
1437
1438 struct pim_msdp_mg_mbr *pim_msdp_mg_mbr_add(struct pim_instance *pim,
1439 struct pim_msdp_mg *mg,
1440 struct in_addr *ia)
1441 {
1442 struct pim_msdp_mg_mbr *mbr;
1443
1444 mbr = XCALLOC(MTYPE_PIM_MSDP_MG_MBR, sizeof(*mbr));
1445 mbr->mbr_ip = *ia;
1446 listnode_add_sort(mg->mbr_list, mbr);
1447
1448 /* if valid SIP has been configured add peer session */
1449 if (mg->src_ip.s_addr != INADDR_ANY)
1450 mbr->mp = pim_msdp_peer_add(pim, &mbr->mbr_ip, &mg->src_ip,
1451 mg->mesh_group_name);
1452
1453 if (PIM_DEBUG_MSDP_EVENTS)
1454 zlog_debug("MSDP mesh-group %s mbr %pI4 created",
1455 mg->mesh_group_name, &mbr->mbr_ip);
1456
1457 ++mg->mbr_cnt;
1458
1459 return mbr;
1460 }