]> git.proxmox.com Git - mirror_frr.git/blob - pimd/pim_msdp.c
Merge pull request #10389 from gromit1811/bugfix_9720_ecmp_inter_area
[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 pim_str_sg_set(sg, sa->sg_str);
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 (PIM_INADDR_ISNOT_ANY(sa->peer)) {
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 ((xg_up->sg.src.s_addr != INADDR_ANY)
628 || (xg_up->sg.grp.s_addr == INADDR_ANY)) {
629 return;
630 }
631
632 /* XXX: Need to maintain SAs per-group to avoid all this unnecessary
633 * walking */
634 for (ALL_LIST_ELEMENTS_RO(pim->msdp.sa_list, sanode, sa)) {
635 if (sa->sg.grp.s_addr != xg_up->sg.grp.s_addr) {
636 continue;
637 }
638 pim_msdp_sa_upstream_update(sa, xg_up, "up-jp-change");
639 }
640 }
641
642 static void pim_msdp_up_xg_del(struct pim_instance *pim, pim_sgaddr *sg)
643 {
644 struct listnode *sanode;
645 struct pim_msdp_sa *sa;
646
647 if (PIM_DEBUG_MSDP_INTERNAL) {
648 zlog_debug("MSDP %s del", pim_str_sg_dump(sg));
649 }
650
651 /* If this is not really an XG entry just move on */
652 if ((sg->src.s_addr != INADDR_ANY) || (sg->grp.s_addr == INADDR_ANY)) {
653 return;
654 }
655
656 /* XXX: Need to maintain SAs per-group to avoid all this unnecessary
657 * walking */
658 for (ALL_LIST_ELEMENTS_RO(pim->msdp.sa_list, sanode, sa)) {
659 if (sa->sg.grp.s_addr != sg->grp.s_addr) {
660 continue;
661 }
662 pim_msdp_sa_upstream_update(sa, NULL /* xg */, "up-jp-change");
663 }
664 }
665
666 void pim_msdp_up_del(struct pim_instance *pim, pim_sgaddr *sg)
667 {
668 if (PIM_DEBUG_MSDP_INTERNAL) {
669 zlog_debug("MSDP up %s del", pim_str_sg_dump(sg));
670 }
671 if (sg->src.s_addr == INADDR_ANY) {
672 pim_msdp_up_xg_del(pim, sg);
673 } else {
674 pim_msdp_sa_local_del_on_up_del(pim, sg);
675 }
676 }
677
678 /* sa hash and peer list helpers */
679 static unsigned int pim_msdp_sa_hash_key_make(const void *p)
680 {
681 const struct pim_msdp_sa *sa = p;
682
683 return (jhash_2words(sa->sg.src.s_addr, sa->sg.grp.s_addr, 0));
684 }
685
686 static bool pim_msdp_sa_hash_eq(const void *p1, const void *p2)
687 {
688 const struct pim_msdp_sa *sa1 = p1;
689 const struct pim_msdp_sa *sa2 = p2;
690
691 return ((sa1->sg.src.s_addr == sa2->sg.src.s_addr)
692 && (sa1->sg.grp.s_addr == sa2->sg.grp.s_addr));
693 }
694
695 static int pim_msdp_sa_comp(const void *p1, const void *p2)
696 {
697 const struct pim_msdp_sa *sa1 = p1;
698 const struct pim_msdp_sa *sa2 = p2;
699
700 if (ntohl(sa1->sg.grp.s_addr) < ntohl(sa2->sg.grp.s_addr))
701 return -1;
702
703 if (ntohl(sa1->sg.grp.s_addr) > ntohl(sa2->sg.grp.s_addr))
704 return 1;
705
706 if (ntohl(sa1->sg.src.s_addr) < ntohl(sa2->sg.src.s_addr))
707 return -1;
708
709 if (ntohl(sa1->sg.src.s_addr) > ntohl(sa2->sg.src.s_addr))
710 return 1;
711
712 return 0;
713 }
714
715 /* RFC-3618:Sec-10.1.3 - Peer-RPF forwarding */
716 /* XXX: this can use a bit of refining and extensions */
717 bool pim_msdp_peer_rpf_check(struct pim_msdp_peer *mp, struct in_addr rp)
718 {
719 struct pim_nexthop nexthop = {0};
720
721 if (mp->peer.s_addr == rp.s_addr) {
722 return true;
723 }
724
725 /* check if the MSDP peer is the nexthop for the RP */
726 if (pim_nexthop_lookup(mp->pim, &nexthop, rp, 0)
727 && nexthop.mrib_nexthop_addr.u.prefix4.s_addr == mp->peer.s_addr) {
728 return true;
729 }
730
731 return false;
732 }
733
734 /************************ Peer session management **************************/
735 char *pim_msdp_state_dump(enum pim_msdp_peer_state state, char *buf,
736 int buf_size)
737 {
738 switch (state) {
739 case PIM_MSDP_DISABLED:
740 snprintf(buf, buf_size, "%s", "disabled");
741 break;
742 case PIM_MSDP_INACTIVE:
743 snprintf(buf, buf_size, "%s", "inactive");
744 break;
745 case PIM_MSDP_LISTEN:
746 snprintf(buf, buf_size, "%s", "listen");
747 break;
748 case PIM_MSDP_CONNECTING:
749 snprintf(buf, buf_size, "%s", "connecting");
750 break;
751 case PIM_MSDP_ESTABLISHED:
752 snprintf(buf, buf_size, "%s", "established");
753 break;
754 default:
755 snprintf(buf, buf_size, "unk-%d", state);
756 }
757 return buf;
758 }
759
760 static void pim_msdp_peer_state_chg_log(struct pim_msdp_peer *mp)
761 {
762 char state_str[PIM_MSDP_STATE_STRLEN];
763
764 pim_msdp_state_dump(mp->state, state_str, sizeof(state_str));
765 zlog_debug("MSDP peer %s state chg to %s", mp->key_str, state_str);
766 }
767
768 /* MSDP Connection State Machine actions (defined in RFC-3618:Sec-11.2) */
769 /* 11.2.A2: active peer - start connect retry timer; when the timer fires
770 * a tcp connection will be made */
771 static void pim_msdp_peer_connect(struct pim_msdp_peer *mp)
772 {
773 mp->state = PIM_MSDP_CONNECTING;
774 if (PIM_DEBUG_MSDP_EVENTS) {
775 pim_msdp_peer_state_chg_log(mp);
776 }
777
778 pim_msdp_peer_cr_timer_setup(mp, true /* start */);
779 }
780
781 /* 11.2.A3: passive peer - just listen for connections */
782 static void pim_msdp_peer_listen(struct pim_msdp_peer *mp)
783 {
784 mp->state = PIM_MSDP_LISTEN;
785 if (PIM_DEBUG_MSDP_EVENTS) {
786 pim_msdp_peer_state_chg_log(mp);
787 }
788
789 /* this is interntionally asymmetric i.e. we set up listen-socket when
790 * the
791 * first listening peer is configured; but don't bother tearing it down
792 * when
793 * all the peers go down */
794 pim_msdp_sock_listen(mp->pim);
795 }
796
797 /* 11.2.A4 and 11.2.A5: transition active or passive peer to
798 * established state */
799 void pim_msdp_peer_established(struct pim_msdp_peer *mp)
800 {
801 if (mp->state != PIM_MSDP_ESTABLISHED) {
802 ++mp->est_flaps;
803 }
804
805 mp->state = PIM_MSDP_ESTABLISHED;
806 mp->uptime = pim_time_monotonic_sec();
807
808 if (PIM_DEBUG_MSDP_EVENTS) {
809 pim_msdp_peer_state_chg_log(mp);
810 }
811
812 /* stop retry timer on active peers */
813 pim_msdp_peer_cr_timer_setup(mp, false /* start */);
814
815 /* send KA; start KA and hold timers */
816 pim_msdp_pkt_ka_tx(mp);
817 pim_msdp_peer_ka_timer_setup(mp, true /* start */);
818 pim_msdp_peer_hold_timer_setup(mp, true /* start */);
819
820 pim_msdp_pkt_sa_tx_to_one_peer(mp);
821
822 PIM_MSDP_PEER_WRITE_ON(mp);
823 PIM_MSDP_PEER_READ_ON(mp);
824 }
825
826 /* 11.2.A6, 11.2.A7 and 11.2.A8: shutdown the peer tcp connection */
827 void pim_msdp_peer_stop_tcp_conn(struct pim_msdp_peer *mp, bool chg_state)
828 {
829 if (chg_state) {
830 if (mp->state == PIM_MSDP_ESTABLISHED) {
831 ++mp->est_flaps;
832 }
833 mp->state = PIM_MSDP_INACTIVE;
834 if (PIM_DEBUG_MSDP_EVENTS) {
835 pim_msdp_peer_state_chg_log(mp);
836 }
837 }
838
839 if (PIM_DEBUG_MSDP_INTERNAL) {
840 zlog_debug("MSDP peer %s pim_msdp_peer_stop_tcp_conn",
841 mp->key_str);
842 }
843 /* stop read and write threads */
844 PIM_MSDP_PEER_READ_OFF(mp);
845 PIM_MSDP_PEER_WRITE_OFF(mp);
846
847 /* reset buffers */
848 mp->packet_size = 0;
849 if (mp->ibuf)
850 stream_reset(mp->ibuf);
851 if (mp->obuf)
852 stream_fifo_clean(mp->obuf);
853
854 /* stop all peer timers */
855 pim_msdp_peer_ka_timer_setup(mp, false /* start */);
856 pim_msdp_peer_cr_timer_setup(mp, false /* start */);
857 pim_msdp_peer_hold_timer_setup(mp, false /* start */);
858
859 /* close connection */
860 if (mp->fd >= 0) {
861 close(mp->fd);
862 mp->fd = -1;
863 }
864 }
865
866 /* RFC-3618:Sec-5.6 - stop the peer tcp connection and startover */
867 void pim_msdp_peer_reset_tcp_conn(struct pim_msdp_peer *mp, const char *rc_str)
868 {
869 if (PIM_DEBUG_EVENTS) {
870 zlog_debug("MSDP peer %s tcp reset %s", mp->key_str, rc_str);
871 snprintf(mp->last_reset, sizeof(mp->last_reset), "%s", rc_str);
872 }
873
874 /* close the connection and transition to listening or connecting */
875 pim_msdp_peer_stop_tcp_conn(mp, true /* chg_state */);
876 if (PIM_MSDP_PEER_IS_LISTENER(mp)) {
877 pim_msdp_peer_listen(mp);
878 } else {
879 pim_msdp_peer_connect(mp);
880 }
881 }
882
883 static void pim_msdp_peer_timer_expiry_log(struct pim_msdp_peer *mp,
884 const char *timer_str)
885 {
886 zlog_debug("MSDP peer %s %s timer expired", mp->key_str, timer_str);
887 }
888
889 /* RFC-3618:Sec-5.4 - peer hold timer */
890 static int pim_msdp_peer_hold_timer_cb(struct thread *t)
891 {
892 struct pim_msdp_peer *mp;
893
894 mp = THREAD_ARG(t);
895
896 if (PIM_DEBUG_MSDP_EVENTS) {
897 pim_msdp_peer_timer_expiry_log(mp, "hold");
898 }
899
900 if (mp->state != PIM_MSDP_ESTABLISHED) {
901 return 0;
902 }
903
904 if (PIM_DEBUG_MSDP_EVENTS) {
905 pim_msdp_peer_state_chg_log(mp);
906 }
907 pim_msdp_peer_reset_tcp_conn(mp, "ht-expired");
908 return 0;
909 }
910
911 static void pim_msdp_peer_hold_timer_setup(struct pim_msdp_peer *mp, bool start)
912 {
913 struct pim_instance *pim = mp->pim;
914 THREAD_OFF(mp->hold_timer);
915 if (start) {
916 thread_add_timer(pim->msdp.master, pim_msdp_peer_hold_timer_cb,
917 mp, pim->msdp.hold_time, &mp->hold_timer);
918 }
919 }
920
921
922 /* RFC-3618:Sec-5.5 - peer keepalive timer */
923 static int pim_msdp_peer_ka_timer_cb(struct thread *t)
924 {
925 struct pim_msdp_peer *mp;
926
927 mp = THREAD_ARG(t);
928
929 if (PIM_DEBUG_MSDP_EVENTS) {
930 pim_msdp_peer_timer_expiry_log(mp, "ka");
931 }
932
933 pim_msdp_pkt_ka_tx(mp);
934 pim_msdp_peer_ka_timer_setup(mp, true /* start */);
935 return 0;
936 }
937 static void pim_msdp_peer_ka_timer_setup(struct pim_msdp_peer *mp, bool start)
938 {
939 THREAD_OFF(mp->ka_timer);
940 if (start) {
941 thread_add_timer(mp->pim->msdp.master,
942 pim_msdp_peer_ka_timer_cb, mp,
943 mp->pim->msdp.keep_alive, &mp->ka_timer);
944 }
945 }
946
947 static void pim_msdp_peer_active_connect(struct pim_msdp_peer *mp)
948 {
949 int rc;
950 ++mp->conn_attempts;
951 rc = pim_msdp_sock_connect(mp);
952
953 if (PIM_DEBUG_MSDP_INTERNAL) {
954 zlog_debug("MSDP peer %s pim_msdp_peer_active_connect: %d",
955 mp->key_str, rc);
956 }
957
958 switch (rc) {
959 case connect_error:
960 case -1:
961 /* connect failed restart the connect-retry timer */
962 pim_msdp_peer_cr_timer_setup(mp, true /* start */);
963 break;
964
965 case connect_success:
966 /* connect was sucessful move to established */
967 pim_msdp_peer_established(mp);
968 break;
969
970 case connect_in_progress:
971 /* for NB content we need to wait till sock is readable or
972 * writeable */
973 PIM_MSDP_PEER_WRITE_ON(mp);
974 PIM_MSDP_PEER_READ_ON(mp);
975 /* also restart connect-retry timer to reset the socket if
976 * connect is
977 * not sucessful */
978 pim_msdp_peer_cr_timer_setup(mp, true /* start */);
979 break;
980 }
981 }
982
983 /* RFC-3618:Sec-5.6 - connection retry on active peer */
984 static int pim_msdp_peer_cr_timer_cb(struct thread *t)
985 {
986 struct pim_msdp_peer *mp;
987
988 mp = THREAD_ARG(t);
989
990 if (PIM_DEBUG_MSDP_EVENTS) {
991 pim_msdp_peer_timer_expiry_log(mp, "connect-retry");
992 }
993
994 if (mp->state != PIM_MSDP_CONNECTING || PIM_MSDP_PEER_IS_LISTENER(mp)) {
995 return 0;
996 }
997
998 pim_msdp_peer_active_connect(mp);
999 return 0;
1000 }
1001 static void pim_msdp_peer_cr_timer_setup(struct pim_msdp_peer *mp, bool start)
1002 {
1003 THREAD_OFF(mp->cr_timer);
1004 if (start) {
1005 thread_add_timer(mp->pim->msdp.master,
1006 pim_msdp_peer_cr_timer_cb, mp,
1007 mp->pim->msdp.connection_retry, &mp->cr_timer);
1008 }
1009 }
1010
1011 /* if a valid packet is rxed from the peer we can restart hold timer */
1012 void pim_msdp_peer_pkt_rxed(struct pim_msdp_peer *mp)
1013 {
1014 if (mp->state == PIM_MSDP_ESTABLISHED) {
1015 pim_msdp_peer_hold_timer_setup(mp, true /* start */);
1016 }
1017 }
1018
1019 /* if a valid packet is txed to the peer we can restart ka timer and avoid
1020 * unnecessary ka noise in the network */
1021 void pim_msdp_peer_pkt_txed(struct pim_msdp_peer *mp)
1022 {
1023 if (mp->state == PIM_MSDP_ESTABLISHED) {
1024 pim_msdp_peer_ka_timer_setup(mp, true /* start */);
1025 if (PIM_DEBUG_MSDP_INTERNAL) {
1026 zlog_debug("MSDP ka timer restart on pkt tx to %s",
1027 mp->key_str);
1028 }
1029 }
1030 }
1031
1032 static void pim_msdp_addr2su(union sockunion *su, struct in_addr addr)
1033 {
1034 sockunion_init(su);
1035 su->sin.sin_addr = addr;
1036 su->sin.sin_family = AF_INET;
1037 #ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
1038 su->sin.sin_len = sizeof(struct sockaddr_in);
1039 #endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
1040 }
1041
1042 /* 11.2.A1: create a new peer and transition state to listen or connecting */
1043 struct pim_msdp_peer *pim_msdp_peer_add(struct pim_instance *pim,
1044 const struct in_addr *peer,
1045 const struct in_addr *local,
1046 const char *mesh_group_name)
1047 {
1048 struct pim_msdp_peer *mp;
1049
1050 pim_msdp_enable(pim);
1051
1052 mp = XCALLOC(MTYPE_PIM_MSDP_PEER, sizeof(*mp));
1053
1054 mp->pim = pim;
1055 mp->peer = *peer;
1056 pim_inet4_dump("<peer?>", mp->peer, mp->key_str, sizeof(mp->key_str));
1057 pim_msdp_addr2su(&mp->su_peer, mp->peer);
1058 mp->local = *local;
1059 /* XXX: originator_id setting needs to move to the mesh group */
1060 pim->msdp.originator_id = *local;
1061 pim_msdp_addr2su(&mp->su_local, mp->local);
1062 if (mesh_group_name)
1063 mp->mesh_group_name =
1064 XSTRDUP(MTYPE_PIM_MSDP_MG_NAME, mesh_group_name);
1065
1066 mp->state = PIM_MSDP_INACTIVE;
1067 mp->fd = -1;
1068 strlcpy(mp->last_reset, "-", sizeof(mp->last_reset));
1069 /* higher IP address is listener */
1070 if (ntohl(mp->local.s_addr) > ntohl(mp->peer.s_addr)) {
1071 mp->flags |= PIM_MSDP_PEERF_LISTENER;
1072 }
1073
1074 /* setup packet buffers */
1075 mp->ibuf = stream_new(PIM_MSDP_MAX_PACKET_SIZE);
1076 mp->obuf = stream_fifo_new();
1077
1078 /* insert into misc tables for easy access */
1079 mp = hash_get(pim->msdp.peer_hash, mp, hash_alloc_intern);
1080 listnode_add_sort(pim->msdp.peer_list, mp);
1081
1082 if (PIM_DEBUG_MSDP_EVENTS) {
1083 zlog_debug("MSDP peer %s created", mp->key_str);
1084
1085 pim_msdp_peer_state_chg_log(mp);
1086 }
1087
1088 /* fireup the connect state machine */
1089 if (PIM_MSDP_PEER_IS_LISTENER(mp)) {
1090 pim_msdp_peer_listen(mp);
1091 } else {
1092 pim_msdp_peer_connect(mp);
1093 }
1094 return mp;
1095 }
1096
1097 struct pim_msdp_peer *pim_msdp_peer_find(struct pim_instance *pim,
1098 struct in_addr peer_addr)
1099 {
1100 struct pim_msdp_peer lookup;
1101
1102 lookup.peer = peer_addr;
1103 return hash_lookup(pim->msdp.peer_hash, &lookup);
1104 }
1105
1106 /* release all mem associated with a peer */
1107 static void pim_msdp_peer_free(struct pim_msdp_peer *mp)
1108 {
1109 /*
1110 * Let's make sure we are not running when we delete
1111 * the underlying data structure
1112 */
1113 pim_msdp_peer_stop_tcp_conn(mp, false);
1114
1115 if (mp->ibuf) {
1116 stream_free(mp->ibuf);
1117 }
1118
1119 if (mp->obuf) {
1120 stream_fifo_free(mp->obuf);
1121 }
1122
1123 XFREE(MTYPE_PIM_MSDP_MG_NAME, mp->mesh_group_name);
1124
1125 mp->pim = NULL;
1126 XFREE(MTYPE_PIM_MSDP_PEER, mp);
1127 }
1128
1129 /* delete the peer config */
1130 void pim_msdp_peer_del(struct pim_msdp_peer **mp)
1131 {
1132 if (*mp == NULL)
1133 return;
1134
1135 /* stop the tcp connection and shutdown all timers */
1136 pim_msdp_peer_stop_tcp_conn(*mp, true /* chg_state */);
1137
1138 /* remove the session from various tables */
1139 listnode_delete((*mp)->pim->msdp.peer_list, *mp);
1140 hash_release((*mp)->pim->msdp.peer_hash, *mp);
1141
1142 if (PIM_DEBUG_MSDP_EVENTS) {
1143 zlog_debug("MSDP peer %s deleted", (*mp)->key_str);
1144 }
1145
1146 /* free up any associated memory */
1147 pim_msdp_peer_free(*mp);
1148 *mp = NULL;
1149 }
1150
1151 void pim_msdp_peer_change_source(struct pim_msdp_peer *mp,
1152 const struct in_addr *addr)
1153 {
1154 pim_msdp_peer_stop_tcp_conn(mp, true);
1155
1156 mp->local = *addr;
1157
1158 if (PIM_MSDP_PEER_IS_LISTENER(mp))
1159 pim_msdp_peer_listen(mp);
1160 else
1161 pim_msdp_peer_connect(mp);
1162 }
1163
1164 /* peer hash and peer list helpers */
1165 static unsigned int pim_msdp_peer_hash_key_make(const void *p)
1166 {
1167 const struct pim_msdp_peer *mp = p;
1168 return (jhash_1word(mp->peer.s_addr, 0));
1169 }
1170
1171 static bool pim_msdp_peer_hash_eq(const void *p1, const void *p2)
1172 {
1173 const struct pim_msdp_peer *mp1 = p1;
1174 const struct pim_msdp_peer *mp2 = p2;
1175
1176 return (mp1->peer.s_addr == mp2->peer.s_addr);
1177 }
1178
1179 static int pim_msdp_peer_comp(const void *p1, const void *p2)
1180 {
1181 const struct pim_msdp_peer *mp1 = p1;
1182 const struct pim_msdp_peer *mp2 = p2;
1183
1184 if (ntohl(mp1->peer.s_addr) < ntohl(mp2->peer.s_addr))
1185 return -1;
1186
1187 if (ntohl(mp1->peer.s_addr) > ntohl(mp2->peer.s_addr))
1188 return 1;
1189
1190 return 0;
1191 }
1192
1193 /************************** Mesh group management **************************/
1194 void pim_msdp_mg_free(struct pim_instance *pim, struct pim_msdp_mg **mgp)
1195 {
1196 struct pim_msdp_mg_mbr *mbr;
1197 struct listnode *n, *nn;
1198
1199 if (*mgp == NULL)
1200 return;
1201
1202 /* SIP is being removed - tear down all active peer sessions */
1203 for (ALL_LIST_ELEMENTS((*mgp)->mbr_list, n, nn, mbr))
1204 pim_msdp_mg_mbr_del((*mgp), mbr);
1205
1206 if (PIM_DEBUG_MSDP_EVENTS) {
1207 zlog_debug("MSDP mesh-group %s deleted",
1208 (*mgp)->mesh_group_name);
1209 }
1210
1211 XFREE(MTYPE_PIM_MSDP_MG_NAME, (*mgp)->mesh_group_name);
1212
1213 if ((*mgp)->mbr_list)
1214 list_delete(&(*mgp)->mbr_list);
1215
1216 SLIST_REMOVE(&pim->msdp.mglist, (*mgp), pim_msdp_mg, mg_entry);
1217 XFREE(MTYPE_PIM_MSDP_MG, (*mgp));
1218 }
1219
1220 struct pim_msdp_mg *pim_msdp_mg_new(struct pim_instance *pim,
1221 const char *mesh_group_name)
1222 {
1223 struct pim_msdp_mg *mg;
1224
1225 mg = XCALLOC(MTYPE_PIM_MSDP_MG, sizeof(*mg));
1226
1227 mg->mesh_group_name = XSTRDUP(MTYPE_PIM_MSDP_MG_NAME, mesh_group_name);
1228 mg->mbr_list = list_new();
1229 mg->mbr_list->del = (void (*)(void *))pim_msdp_mg_mbr_free;
1230 mg->mbr_list->cmp = (int (*)(void *, void *))pim_msdp_mg_mbr_comp;
1231
1232 if (PIM_DEBUG_MSDP_EVENTS) {
1233 zlog_debug("MSDP mesh-group %s created", mg->mesh_group_name);
1234 }
1235
1236 SLIST_INSERT_HEAD(&pim->msdp.mglist, mg, mg_entry);
1237
1238 return mg;
1239 }
1240
1241 static int pim_msdp_mg_mbr_comp(const void *p1, const void *p2)
1242 {
1243 const struct pim_msdp_mg_mbr *mbr1 = p1;
1244 const struct pim_msdp_mg_mbr *mbr2 = p2;
1245
1246 if (ntohl(mbr1->mbr_ip.s_addr) < ntohl(mbr2->mbr_ip.s_addr))
1247 return -1;
1248
1249 if (ntohl(mbr1->mbr_ip.s_addr) > ntohl(mbr2->mbr_ip.s_addr))
1250 return 1;
1251
1252 return 0;
1253 }
1254
1255 static void pim_msdp_mg_mbr_free(struct pim_msdp_mg_mbr *mbr)
1256 {
1257 XFREE(MTYPE_PIM_MSDP_MG_MBR, mbr);
1258 }
1259
1260 void pim_msdp_mg_mbr_del(struct pim_msdp_mg *mg, struct pim_msdp_mg_mbr *mbr)
1261 {
1262 /* Delete active peer session if any */
1263 if (mbr->mp) {
1264 pim_msdp_peer_del(&mbr->mp);
1265 }
1266
1267 listnode_delete(mg->mbr_list, mbr);
1268 if (PIM_DEBUG_MSDP_EVENTS) {
1269 char ip_str[INET_ADDRSTRLEN];
1270 pim_inet4_dump("<mbr?>", mbr->mbr_ip, ip_str, sizeof(ip_str));
1271 zlog_debug("MSDP mesh-group %s mbr %s deleted",
1272 mg->mesh_group_name, ip_str);
1273 }
1274 pim_msdp_mg_mbr_free(mbr);
1275 if (mg->mbr_cnt) {
1276 --mg->mbr_cnt;
1277 }
1278 }
1279
1280 static void pim_msdp_src_del(struct pim_msdp_mg *mg)
1281 {
1282 struct pim_msdp_mg_mbr *mbr;
1283 struct listnode *mbr_node;
1284
1285 /* SIP is being removed - tear down all active peer sessions */
1286 for (ALL_LIST_ELEMENTS_RO(mg->mbr_list, mbr_node, mbr)) {
1287 if (mbr->mp)
1288 pim_msdp_peer_del(&mbr->mp);
1289 }
1290 if (PIM_DEBUG_MSDP_EVENTS) {
1291 zlog_debug("MSDP mesh-group %s src cleared",
1292 mg->mesh_group_name);
1293 }
1294 }
1295
1296 /*********************** MSDP feature APIs *********************************/
1297 int pim_msdp_config_write(struct pim_instance *pim, struct vty *vty,
1298 const char *spaces)
1299 {
1300 struct pim_msdp_mg *mg;
1301 struct listnode *mbrnode;
1302 struct pim_msdp_mg_mbr *mbr;
1303 char src_str[INET_ADDRSTRLEN];
1304 int count = 0;
1305
1306 if (SLIST_EMPTY(&pim->msdp.mglist))
1307 return count;
1308
1309 SLIST_FOREACH (mg, &pim->msdp.mglist, mg_entry) {
1310 if (mg->src_ip.s_addr != INADDR_ANY) {
1311 pim_inet4_dump("<src?>", mg->src_ip, src_str,
1312 sizeof(src_str));
1313 vty_out(vty, "%sip msdp mesh-group %s source %s\n",
1314 spaces, mg->mesh_group_name, src_str);
1315 ++count;
1316 }
1317
1318 for (ALL_LIST_ELEMENTS_RO(mg->mbr_list, mbrnode, mbr)) {
1319 vty_out(vty, "%sip msdp mesh-group %s member %pI4\n",
1320 spaces, mg->mesh_group_name, &mbr->mbr_ip);
1321 ++count;
1322 }
1323 }
1324
1325 return count;
1326 }
1327
1328 bool pim_msdp_peer_config_write(struct vty *vty, struct pim_instance *pim,
1329 const char *spaces)
1330 {
1331 struct pim_msdp_peer *mp;
1332 struct listnode *node;
1333 bool written = false;
1334
1335 for (ALL_LIST_ELEMENTS_RO(pim->msdp.peer_list, node, mp)) {
1336 /* Skip meshed group peers. */
1337 if (mp->flags & PIM_MSDP_PEERF_IN_GROUP)
1338 continue;
1339
1340 vty_out(vty, "%sip msdp peer %pI4 source %pI4\n", spaces,
1341 &mp->peer, &mp->local);
1342 written = true;
1343 }
1344
1345 return written;
1346 }
1347
1348 /* Enable feature including active/periodic timers etc. on the first peer
1349 * config. Till then MSDP should just stay quiet. */
1350 static void pim_msdp_enable(struct pim_instance *pim)
1351 {
1352 if (pim->msdp.flags & PIM_MSDPF_ENABLE) {
1353 /* feature is already enabled */
1354 return;
1355 }
1356 pim->msdp.flags |= PIM_MSDPF_ENABLE;
1357 pim->msdp.work_obuf = stream_new(PIM_MSDP_MAX_PACKET_SIZE);
1358 pim_msdp_sa_adv_timer_setup(pim, true /* start */);
1359 /* setup sa cache based on local sources */
1360 pim_msdp_sa_local_setup(pim);
1361 }
1362
1363 /* MSDP init */
1364 void pim_msdp_init(struct pim_instance *pim, struct thread_master *master)
1365 {
1366 pim->msdp.master = master;
1367 char hash_name[64];
1368
1369 snprintf(hash_name, sizeof(hash_name), "PIM %s MSDP Peer Hash",
1370 pim->vrf->name);
1371 pim->msdp.peer_hash = hash_create(pim_msdp_peer_hash_key_make,
1372 pim_msdp_peer_hash_eq, hash_name);
1373 pim->msdp.peer_list = list_new();
1374 pim->msdp.peer_list->del = (void (*)(void *))pim_msdp_peer_free;
1375 pim->msdp.peer_list->cmp = (int (*)(void *, void *))pim_msdp_peer_comp;
1376
1377 snprintf(hash_name, sizeof(hash_name), "PIM %s MSDP SA Hash",
1378 pim->vrf->name);
1379 pim->msdp.sa_hash = hash_create(pim_msdp_sa_hash_key_make,
1380 pim_msdp_sa_hash_eq, hash_name);
1381 pim->msdp.sa_list = list_new();
1382 pim->msdp.sa_list->del = (void (*)(void *))pim_msdp_sa_free;
1383 pim->msdp.sa_list->cmp = (int (*)(void *, void *))pim_msdp_sa_comp;
1384 }
1385
1386 /* counterpart to MSDP init; XXX: unused currently */
1387 void pim_msdp_exit(struct pim_instance *pim)
1388 {
1389 struct pim_msdp_mg *mg;
1390
1391 pim_msdp_sa_adv_timer_setup(pim, false);
1392
1393 /* Stop listener and delete all peer sessions */
1394 while ((mg = SLIST_FIRST(&pim->msdp.mglist)) != NULL)
1395 pim_msdp_mg_free(pim, &mg);
1396
1397 if (pim->msdp.peer_hash) {
1398 hash_clean(pim->msdp.peer_hash, NULL);
1399 hash_free(pim->msdp.peer_hash);
1400 pim->msdp.peer_hash = NULL;
1401 }
1402
1403 if (pim->msdp.peer_list) {
1404 list_delete(&pim->msdp.peer_list);
1405 }
1406
1407 if (pim->msdp.sa_hash) {
1408 hash_clean(pim->msdp.sa_hash, NULL);
1409 hash_free(pim->msdp.sa_hash);
1410 pim->msdp.sa_hash = NULL;
1411 }
1412
1413 if (pim->msdp.sa_list) {
1414 list_delete(&pim->msdp.sa_list);
1415 }
1416
1417 if (pim->msdp.work_obuf)
1418 stream_free(pim->msdp.work_obuf);
1419 pim->msdp.work_obuf = NULL;
1420 }
1421
1422 void pim_msdp_mg_src_add(struct pim_instance *pim, struct pim_msdp_mg *mg,
1423 struct in_addr *ai)
1424 {
1425 struct pim_msdp_mg_mbr *mbr;
1426 struct listnode *mbr_node;
1427
1428 /* Stop all connections and remove data structures. */
1429 pim_msdp_src_del(mg);
1430
1431 /* Set new address. */
1432 mg->src_ip = *ai;
1433
1434 /* No new address, disable everyone. */
1435 if (ai->s_addr == INADDR_ANY) {
1436 if (PIM_DEBUG_MSDP_EVENTS)
1437 zlog_debug("MSDP mesh-group %s src unset",
1438 mg->mesh_group_name);
1439 return;
1440 }
1441
1442 /* Create data structures and start TCP connection. */
1443 for (ALL_LIST_ELEMENTS_RO(mg->mbr_list, mbr_node, mbr))
1444 mbr->mp = pim_msdp_peer_add(pim, &mbr->mbr_ip, &mg->src_ip,
1445 mg->mesh_group_name);
1446
1447 if (PIM_DEBUG_MSDP_EVENTS)
1448 zlog_debug("MSDP mesh-group %s src %pI4 set",
1449 mg->mesh_group_name, &mg->src_ip);
1450 }
1451
1452 struct pim_msdp_mg_mbr *pim_msdp_mg_mbr_add(struct pim_instance *pim,
1453 struct pim_msdp_mg *mg,
1454 struct in_addr *ia)
1455 {
1456 struct pim_msdp_mg_mbr *mbr;
1457
1458 mbr = XCALLOC(MTYPE_PIM_MSDP_MG_MBR, sizeof(*mbr));
1459 mbr->mbr_ip = *ia;
1460 listnode_add_sort(mg->mbr_list, mbr);
1461
1462 /* if valid SIP has been configured add peer session */
1463 if (mg->src_ip.s_addr != INADDR_ANY)
1464 mbr->mp = pim_msdp_peer_add(pim, &mbr->mbr_ip, &mg->src_ip,
1465 mg->mesh_group_name);
1466
1467 if (PIM_DEBUG_MSDP_EVENTS)
1468 zlog_debug("MSDP mesh-group %s mbr %pI4 created",
1469 mg->mesh_group_name, &mbr->mbr_ip);
1470
1471 ++mg->mbr_cnt;
1472
1473 return mbr;
1474 }