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