]> git.proxmox.com Git - mirror_frr.git/blob - pimd/pim_rp.c
Merge pull request #9914 from donaldsharp/coverity_script
[mirror_frr.git] / pimd / pim_rp.c
1 /*
2 * PIM for Quagga
3 * Copyright (C) 2015 Cumulus Networks, Inc.
4 * Donald Sharp
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20 #include <zebra.h>
21
22 #include "lib/json.h"
23 #include "log.h"
24 #include "network.h"
25 #include "if.h"
26 #include "linklist.h"
27 #include "prefix.h"
28 #include "memory.h"
29 #include "vty.h"
30 #include "vrf.h"
31 #include "plist.h"
32 #include "nexthop.h"
33 #include "table.h"
34 #include "lib_errors.h"
35
36 #include "pimd.h"
37 #include "pim_vty.h"
38 #include "pim_str.h"
39 #include "pim_iface.h"
40 #include "pim_rp.h"
41 #include "pim_str.h"
42 #include "pim_rpf.h"
43 #include "pim_sock.h"
44 #include "pim_memory.h"
45 #include "pim_neighbor.h"
46 #include "pim_msdp.h"
47 #include "pim_nht.h"
48 #include "pim_mroute.h"
49 #include "pim_oil.h"
50 #include "pim_zebra.h"
51 #include "pim_bsm.h"
52
53 /* Cleanup pim->rpf_hash each node data */
54 void pim_rp_list_hash_clean(void *data)
55 {
56 struct pim_nexthop_cache *pnc = (struct pim_nexthop_cache *)data;
57
58 list_delete(&pnc->rp_list);
59
60 hash_clean(pnc->upstream_hash, NULL);
61 hash_free(pnc->upstream_hash);
62 pnc->upstream_hash = NULL;
63 if (pnc->nexthop)
64 nexthops_free(pnc->nexthop);
65
66 XFREE(MTYPE_PIM_NEXTHOP_CACHE, pnc);
67 }
68
69 static void pim_rp_info_free(struct rp_info *rp_info)
70 {
71 XFREE(MTYPE_PIM_FILTER_NAME, rp_info->plist);
72
73 XFREE(MTYPE_PIM_RP, rp_info);
74 }
75
76 int pim_rp_list_cmp(void *v1, void *v2)
77 {
78 struct rp_info *rp1 = (struct rp_info *)v1;
79 struct rp_info *rp2 = (struct rp_info *)v2;
80
81 /*
82 * Sort by RP IP address
83 */
84 if (rp1->rp.rpf_addr.u.prefix4.s_addr
85 < rp2->rp.rpf_addr.u.prefix4.s_addr)
86 return -1;
87
88 if (rp1->rp.rpf_addr.u.prefix4.s_addr
89 > rp2->rp.rpf_addr.u.prefix4.s_addr)
90 return 1;
91
92 /*
93 * Sort by group IP address
94 */
95 if (rp1->group.u.prefix4.s_addr < rp2->group.u.prefix4.s_addr)
96 return -1;
97
98 if (rp1->group.u.prefix4.s_addr > rp2->group.u.prefix4.s_addr)
99 return 1;
100
101 return 0;
102 }
103
104 void pim_rp_init(struct pim_instance *pim)
105 {
106 struct rp_info *rp_info;
107 struct route_node *rn;
108
109 pim->rp_list = list_new();
110 pim->rp_list->del = (void (*)(void *))pim_rp_info_free;
111 pim->rp_list->cmp = pim_rp_list_cmp;
112
113 pim->rp_table = route_table_init();
114
115 rp_info = XCALLOC(MTYPE_PIM_RP, sizeof(*rp_info));
116
117 if (!str2prefix("224.0.0.0/4", &rp_info->group)) {
118 flog_err(EC_LIB_DEVELOPMENT,
119 "Unable to convert 224.0.0.0/4 to prefix");
120 list_delete(&pim->rp_list);
121 route_table_finish(pim->rp_table);
122 XFREE(MTYPE_PIM_RP, rp_info);
123 return;
124 }
125 rp_info->group.family = AF_INET;
126 rp_info->rp.rpf_addr.family = AF_INET;
127 rp_info->rp.rpf_addr.prefixlen = IPV4_MAX_BITLEN;
128 rp_info->rp.rpf_addr.u.prefix4.s_addr = INADDR_NONE;
129
130 listnode_add(pim->rp_list, rp_info);
131
132 rn = route_node_get(pim->rp_table, &rp_info->group);
133 rn->info = rp_info;
134 if (PIM_DEBUG_PIM_TRACE)
135 zlog_debug(
136 "Allocated: %p for rp_info: %p(224.0.0.0/4) Lock: %d",
137 rn, rp_info, route_node_get_lock_count(rn));
138 }
139
140 void pim_rp_free(struct pim_instance *pim)
141 {
142 if (pim->rp_table)
143 route_table_finish(pim->rp_table);
144 pim->rp_table = NULL;
145
146 if (pim->rp_list)
147 list_delete(&pim->rp_list);
148 }
149
150 /*
151 * Given an RP's prefix-list, return the RP's rp_info for that prefix-list
152 */
153 static struct rp_info *pim_rp_find_prefix_list(struct pim_instance *pim,
154 struct in_addr rp,
155 const char *plist)
156 {
157 struct listnode *node;
158 struct rp_info *rp_info;
159
160 for (ALL_LIST_ELEMENTS_RO(pim->rp_list, node, rp_info)) {
161 if (rp.s_addr == rp_info->rp.rpf_addr.u.prefix4.s_addr
162 && rp_info->plist && strcmp(rp_info->plist, plist) == 0) {
163 return rp_info;
164 }
165 }
166
167 return NULL;
168 }
169
170 /*
171 * Return true if plist is used by any rp_info
172 */
173 static int pim_rp_prefix_list_used(struct pim_instance *pim, const char *plist)
174 {
175 struct listnode *node;
176 struct rp_info *rp_info;
177
178 for (ALL_LIST_ELEMENTS_RO(pim->rp_list, node, rp_info)) {
179 if (rp_info->plist && strcmp(rp_info->plist, plist) == 0) {
180 return 1;
181 }
182 }
183
184 return 0;
185 }
186
187 /*
188 * Given an RP's address, return the RP's rp_info that is an exact match for
189 * 'group'
190 */
191 static struct rp_info *pim_rp_find_exact(struct pim_instance *pim,
192 struct in_addr rp,
193 const struct prefix *group)
194 {
195 struct listnode *node;
196 struct rp_info *rp_info;
197
198 for (ALL_LIST_ELEMENTS_RO(pim->rp_list, node, rp_info)) {
199 if (rp.s_addr == rp_info->rp.rpf_addr.u.prefix4.s_addr
200 && prefix_same(&rp_info->group, group))
201 return rp_info;
202 }
203
204 return NULL;
205 }
206
207 /*
208 * XXX: long-term issue: we don't actually have a good "ip address-list"
209 * implementation. ("access-list XYZ" is the closest but honestly it's
210 * kinda garbage.)
211 *
212 * So it's using a prefix-list to match an address here, which causes very
213 * unexpected results for the user since prefix-lists by default only match
214 * when the prefix length is an exact match too. i.e. you'd have to add the
215 * "le 32" and do "ip prefix-list foo permit 10.0.0.0/24 le 32"
216 *
217 * To avoid this pitfall, this code uses "address_mode = true" for the prefix
218 * list match (this is the only user for that.)
219 *
220 * In the long run, we need to add a "ip address-list", but that's a wholly
221 * separate bag of worms, and existing configs using ip prefix-list would
222 * drop into the UX pitfall.
223 */
224
225 #include "lib/plist_int.h"
226
227 /*
228 * Given a group, return the rp_info for that group
229 */
230 struct rp_info *pim_rp_find_match_group(struct pim_instance *pim,
231 const struct prefix *group)
232 {
233 struct listnode *node;
234 struct rp_info *best = NULL;
235 struct rp_info *rp_info;
236 struct prefix_list *plist;
237 const struct prefix *bp;
238 const struct prefix_list_entry *entry;
239 struct route_node *rn;
240
241 bp = NULL;
242 for (ALL_LIST_ELEMENTS_RO(pim->rp_list, node, rp_info)) {
243 if (rp_info->plist) {
244 plist = prefix_list_lookup(AFI_IP, rp_info->plist);
245
246 if (prefix_list_apply_ext(plist, &entry, group, true)
247 == PREFIX_DENY || !entry)
248 continue;
249
250 if (!best) {
251 best = rp_info;
252 bp = &entry->prefix;
253 continue;
254 }
255
256 if (bp && bp->prefixlen < entry->prefix.prefixlen) {
257 best = rp_info;
258 bp = &entry->prefix;
259 }
260 }
261 }
262
263 rn = route_node_match(pim->rp_table, group);
264 if (!rn) {
265 flog_err(
266 EC_LIB_DEVELOPMENT,
267 "%s: BUG We should have found default group information",
268 __func__);
269 return best;
270 }
271
272 rp_info = rn->info;
273 if (PIM_DEBUG_PIM_TRACE)
274 zlog_debug("Lookedup: %p for rp_info: %p(%pFX) Lock: %d", rn,
275 rp_info, &rp_info->group,
276 route_node_get_lock_count(rn));
277
278 route_unlock_node(rn);
279
280 if (!best)
281 return rp_info;
282
283 if (rp_info->group.prefixlen < best->group.prefixlen)
284 best = rp_info;
285
286 return best;
287 }
288
289 /*
290 * When the user makes "ip pim rp" configuration changes or if they change the
291 * prefix-list(s) used by these statements we must tickle the upstream state
292 * for each group to make them re-lookup who their RP should be.
293 *
294 * This is a placeholder function for now.
295 */
296 void pim_rp_refresh_group_to_rp_mapping(struct pim_instance *pim)
297 {
298 pim_msdp_i_am_rp_changed(pim);
299 pim_upstream_reeval_use_rpt(pim);
300 }
301
302 void pim_rp_prefix_list_update(struct pim_instance *pim,
303 struct prefix_list *plist)
304 {
305 struct listnode *node;
306 struct rp_info *rp_info;
307 int refresh_needed = 0;
308
309 for (ALL_LIST_ELEMENTS_RO(pim->rp_list, node, rp_info)) {
310 if (rp_info->plist
311 && strcmp(rp_info->plist, prefix_list_name(plist)) == 0) {
312 refresh_needed = 1;
313 break;
314 }
315 }
316
317 if (refresh_needed)
318 pim_rp_refresh_group_to_rp_mapping(pim);
319 }
320
321 static int pim_rp_check_interface_addrs(struct rp_info *rp_info,
322 struct pim_interface *pim_ifp)
323 {
324 struct listnode *node;
325 struct pim_secondary_addr *sec_addr;
326
327 if (pim_ifp->primary_address.s_addr
328 == rp_info->rp.rpf_addr.u.prefix4.s_addr)
329 return 1;
330
331 if (!pim_ifp->sec_addr_list) {
332 return 0;
333 }
334
335 for (ALL_LIST_ELEMENTS_RO(pim_ifp->sec_addr_list, node, sec_addr)) {
336 if (prefix_same(&sec_addr->addr, &rp_info->rp.rpf_addr)) {
337 return 1;
338 }
339 }
340
341 return 0;
342 }
343
344 static void pim_rp_check_interfaces(struct pim_instance *pim,
345 struct rp_info *rp_info)
346 {
347 struct interface *ifp;
348
349 rp_info->i_am_rp = 0;
350 FOR_ALL_INTERFACES (pim->vrf, ifp) {
351 struct pim_interface *pim_ifp = ifp->info;
352
353 if (!pim_ifp)
354 continue;
355
356 if (pim_rp_check_interface_addrs(rp_info, pim_ifp)) {
357 rp_info->i_am_rp = 1;
358 }
359 }
360 }
361
362 void pim_upstream_update(struct pim_instance *pim, struct pim_upstream *up)
363 {
364 struct pim_rpf old_rpf;
365 enum pim_rpf_result rpf_result;
366 struct in_addr old_upstream_addr;
367 struct in_addr new_upstream_addr;
368 struct prefix nht_p;
369
370 old_upstream_addr = up->upstream_addr;
371 pim_rp_set_upstream_addr(pim, &new_upstream_addr, up->sg.src,
372 up->sg.grp);
373
374 if (PIM_DEBUG_PIM_TRACE)
375 zlog_debug("%s: pim upstream update for old upstream %pI4",
376 __func__, &old_upstream_addr);
377
378 if (old_upstream_addr.s_addr == new_upstream_addr.s_addr)
379 return;
380
381 /* Lets consider a case, where a PIM upstream has a better RP as a
382 * result of a new RP configuration with more precise group range.
383 * This upstream has to be added to the upstream hash of new RP's
384 * NHT(pnc) and has to be removed from old RP's NHT upstream hash
385 */
386 if (old_upstream_addr.s_addr != INADDR_ANY) {
387 /* Deregister addr with Zebra NHT */
388 nht_p.family = AF_INET;
389 nht_p.prefixlen = IPV4_MAX_BITLEN;
390 nht_p.u.prefix4 = old_upstream_addr;
391 if (PIM_DEBUG_PIM_TRACE)
392 zlog_debug(
393 "%s: Deregister upstream %s addr %pFX with Zebra NHT",
394 __func__, up->sg_str, &nht_p);
395 pim_delete_tracked_nexthop(pim, &nht_p, up, NULL);
396 }
397
398 /* Update the upstream address */
399 up->upstream_addr = new_upstream_addr;
400
401 old_rpf.source_nexthop.interface = up->rpf.source_nexthop.interface;
402
403 rpf_result = pim_rpf_update(pim, up, &old_rpf, __func__);
404 if (rpf_result == PIM_RPF_FAILURE)
405 pim_mroute_del(up->channel_oil, __func__);
406
407 /* update kernel multicast forwarding cache (MFC) */
408 if (up->rpf.source_nexthop.interface && up->channel_oil)
409 pim_upstream_mroute_iif_update(up->channel_oil, __func__);
410
411 if (rpf_result == PIM_RPF_CHANGED ||
412 (rpf_result == PIM_RPF_FAILURE &&
413 old_rpf.source_nexthop.interface))
414 pim_zebra_upstream_rpf_changed(pim, up, &old_rpf);
415
416 pim_zebra_update_all_interfaces(pim);
417 }
418
419 int pim_rp_new(struct pim_instance *pim, struct in_addr rp_addr,
420 struct prefix group, const char *plist,
421 enum rp_source rp_src_flag)
422 {
423 int result = 0;
424 char rp[INET_ADDRSTRLEN];
425 struct rp_info *rp_info;
426 struct rp_info *rp_all;
427 struct prefix group_all;
428 struct listnode *node, *nnode;
429 struct rp_info *tmp_rp_info;
430 char buffer[BUFSIZ];
431 struct prefix nht_p;
432 struct route_node *rn;
433 struct pim_upstream *up;
434
435 if (rp_addr.s_addr == INADDR_ANY ||
436 rp_addr.s_addr == INADDR_NONE)
437 return PIM_RP_BAD_ADDRESS;
438
439 rp_info = XCALLOC(MTYPE_PIM_RP, sizeof(*rp_info));
440
441 rp_info->rp.rpf_addr.family = AF_INET;
442 rp_info->rp.rpf_addr.prefixlen = IPV4_MAX_BITLEN;
443 rp_info->rp.rpf_addr.u.prefix4 = rp_addr;
444 prefix_copy(&rp_info->group, &group);
445 rp_info->rp_src = rp_src_flag;
446
447 inet_ntop(AF_INET, &rp_info->rp.rpf_addr.u.prefix4, rp, sizeof(rp));
448
449 if (plist) {
450 /*
451 * Return if the prefix-list is already configured for this RP
452 */
453 if (pim_rp_find_prefix_list(pim, rp_info->rp.rpf_addr.u.prefix4,
454 plist)) {
455 XFREE(MTYPE_PIM_RP, rp_info);
456 return PIM_SUCCESS;
457 }
458
459 /*
460 * Barf if the prefix-list is already configured for an RP
461 */
462 if (pim_rp_prefix_list_used(pim, plist)) {
463 XFREE(MTYPE_PIM_RP, rp_info);
464 return PIM_RP_PFXLIST_IN_USE;
465 }
466
467 /*
468 * Free any existing rp_info entries for this RP
469 */
470 for (ALL_LIST_ELEMENTS(pim->rp_list, node, nnode,
471 tmp_rp_info)) {
472 if (rp_info->rp.rpf_addr.u.prefix4.s_addr
473 == tmp_rp_info->rp.rpf_addr.u.prefix4.s_addr) {
474 if (tmp_rp_info->plist)
475 pim_rp_del_config(pim, rp, NULL,
476 tmp_rp_info->plist);
477 else
478 pim_rp_del_config(
479 pim, rp,
480 prefix2str(&tmp_rp_info->group,
481 buffer, BUFSIZ),
482 NULL);
483 }
484 }
485
486 rp_info->plist = XSTRDUP(MTYPE_PIM_FILTER_NAME, plist);
487 } else {
488
489 if (!str2prefix("224.0.0.0/4", &group_all)) {
490 XFREE(MTYPE_PIM_RP, rp_info);
491 return PIM_GROUP_BAD_ADDRESS;
492 }
493 rp_all = pim_rp_find_match_group(pim, &group_all);
494
495 /*
496 * Barf if group is a non-multicast subnet
497 */
498 if (!prefix_match(&rp_all->group, &rp_info->group)) {
499 XFREE(MTYPE_PIM_RP, rp_info);
500 return PIM_GROUP_BAD_ADDRESS;
501 }
502
503 /*
504 * Remove any prefix-list rp_info entries for this RP
505 */
506 for (ALL_LIST_ELEMENTS(pim->rp_list, node, nnode,
507 tmp_rp_info)) {
508 if (tmp_rp_info->plist
509 && rp_info->rp.rpf_addr.u.prefix4.s_addr
510 == tmp_rp_info->rp.rpf_addr.u.prefix4
511 .s_addr) {
512 pim_rp_del_config(pim, rp, NULL,
513 tmp_rp_info->plist);
514 }
515 }
516
517 /*
518 * Take over the 224.0.0.0/4 group if the rp is INADDR_NONE
519 */
520 if (prefix_same(&rp_all->group, &rp_info->group)
521 && pim_rpf_addr_is_inaddr_none(&rp_all->rp)) {
522 rp_all->rp.rpf_addr = rp_info->rp.rpf_addr;
523 rp_all->rp_src = rp_src_flag;
524 XFREE(MTYPE_PIM_RP, rp_info);
525
526 /* Register addr with Zebra NHT */
527 nht_p.family = AF_INET;
528 nht_p.prefixlen = IPV4_MAX_BITLEN;
529 nht_p.u.prefix4 =
530 rp_all->rp.rpf_addr.u.prefix4; // RP address
531 if (PIM_DEBUG_PIM_NHT_RP)
532 zlog_debug(
533 "%s: NHT Register rp_all addr %pFX grp %pFX ",
534 __func__, &nht_p, &rp_all->group);
535
536 frr_each (rb_pim_upstream, &pim->upstream_head, up) {
537 /* Find (*, G) upstream whose RP is not
538 * configured yet
539 */
540 if ((up->upstream_addr.s_addr == INADDR_ANY)
541 && (up->sg.src.s_addr == INADDR_ANY)) {
542 struct prefix grp;
543 struct rp_info *trp_info;
544
545 grp.family = AF_INET;
546 grp.prefixlen = IPV4_MAX_BITLEN;
547 grp.u.prefix4 = up->sg.grp;
548 trp_info = pim_rp_find_match_group(
549 pim, &grp);
550 if (trp_info == rp_all)
551 pim_upstream_update(pim, up);
552 }
553 }
554
555 pim_rp_check_interfaces(pim, rp_all);
556 pim_rp_refresh_group_to_rp_mapping(pim);
557 pim_find_or_track_nexthop(pim, &nht_p, NULL, rp_all,
558 NULL);
559
560 if (!pim_ecmp_nexthop_lookup(pim,
561 &rp_all->rp.source_nexthop,
562 &nht_p, &rp_all->group, 1))
563 return PIM_RP_NO_PATH;
564 return PIM_SUCCESS;
565 }
566
567 /*
568 * Return if the group is already configured for this RP
569 */
570 tmp_rp_info = pim_rp_find_exact(
571 pim, rp_info->rp.rpf_addr.u.prefix4, &rp_info->group);
572 if (tmp_rp_info) {
573 if ((tmp_rp_info->rp_src != rp_src_flag)
574 && (rp_src_flag == RP_SRC_STATIC))
575 tmp_rp_info->rp_src = rp_src_flag;
576 XFREE(MTYPE_PIM_RP, rp_info);
577 return result;
578 }
579
580 /*
581 * Barf if this group is already covered by some other RP
582 */
583 tmp_rp_info = pim_rp_find_match_group(pim, &rp_info->group);
584
585 if (tmp_rp_info) {
586 if (tmp_rp_info->plist) {
587 XFREE(MTYPE_PIM_RP, rp_info);
588 return PIM_GROUP_PFXLIST_OVERLAP;
589 } else {
590 /*
591 * If the only RP that covers this group is an
592 * RP configured for
593 * 224.0.0.0/4 that is fine, ignore that one.
594 * For all others
595 * though we must return PIM_GROUP_OVERLAP
596 */
597 if (prefix_same(&rp_info->group,
598 &tmp_rp_info->group)) {
599 if ((rp_src_flag == RP_SRC_STATIC)
600 && (tmp_rp_info->rp_src
601 == RP_SRC_STATIC)) {
602 XFREE(MTYPE_PIM_RP, rp_info);
603 return PIM_GROUP_OVERLAP;
604 }
605
606 result = pim_rp_change(
607 pim,
608 rp_info->rp.rpf_addr.u.prefix4,
609 tmp_rp_info->group,
610 rp_src_flag);
611 XFREE(MTYPE_PIM_RP, rp_info);
612 return result;
613 }
614 }
615 }
616 }
617
618 listnode_add_sort(pim->rp_list, rp_info);
619 rn = route_node_get(pim->rp_table, &rp_info->group);
620 rn->info = rp_info;
621
622 if (PIM_DEBUG_PIM_TRACE)
623 zlog_debug("Allocated: %p for rp_info: %p(%pFX) Lock: %d", rn,
624 rp_info, &rp_info->group,
625 route_node_get_lock_count(rn));
626
627 frr_each (rb_pim_upstream, &pim->upstream_head, up) {
628 if (up->sg.src.s_addr == INADDR_ANY) {
629 struct prefix grp;
630 struct rp_info *trp_info;
631
632 grp.family = AF_INET;
633 grp.prefixlen = IPV4_MAX_BITLEN;
634 grp.u.prefix4 = up->sg.grp;
635 trp_info = pim_rp_find_match_group(pim, &grp);
636
637 if (trp_info == rp_info)
638 pim_upstream_update(pim, up);
639 }
640 }
641
642 pim_rp_check_interfaces(pim, rp_info);
643 pim_rp_refresh_group_to_rp_mapping(pim);
644
645 /* Register addr with Zebra NHT */
646 nht_p.family = AF_INET;
647 nht_p.prefixlen = IPV4_MAX_BITLEN;
648 nht_p.u.prefix4 = rp_info->rp.rpf_addr.u.prefix4;
649 if (PIM_DEBUG_PIM_NHT_RP)
650 zlog_debug("%s: NHT Register RP addr %pFX grp %pFX with Zebra ",
651 __func__, &nht_p, &rp_info->group);
652 pim_find_or_track_nexthop(pim, &nht_p, NULL, rp_info, NULL);
653 if (!pim_ecmp_nexthop_lookup(pim, &rp_info->rp.source_nexthop, &nht_p,
654 &rp_info->group, 1))
655 return PIM_RP_NO_PATH;
656
657 return PIM_SUCCESS;
658 }
659
660 int pim_rp_del_config(struct pim_instance *pim, const char *rp,
661 const char *group_range, const char *plist)
662 {
663 struct prefix group;
664 struct in_addr rp_addr;
665 int result;
666
667 if (group_range == NULL)
668 result = str2prefix("224.0.0.0/4", &group);
669 else
670 result = str2prefix(group_range, &group);
671
672 if (!result)
673 return PIM_GROUP_BAD_ADDRESS;
674
675 result = inet_pton(AF_INET, rp, &rp_addr);
676 if (result <= 0)
677 return PIM_RP_BAD_ADDRESS;
678
679 result = pim_rp_del(pim, rp_addr, group, plist, RP_SRC_STATIC);
680 return result;
681 }
682
683 int pim_rp_del(struct pim_instance *pim, struct in_addr rp_addr,
684 struct prefix group, const char *plist,
685 enum rp_source rp_src_flag)
686 {
687 struct prefix g_all;
688 struct rp_info *rp_info;
689 struct rp_info *rp_all;
690 struct prefix nht_p;
691 struct route_node *rn;
692 bool was_plist = false;
693 struct rp_info *trp_info;
694 struct pim_upstream *up;
695 struct bsgrp_node *bsgrp = NULL;
696 struct bsm_rpinfo *bsrp = NULL;
697 char rp_str[INET_ADDRSTRLEN];
698
699 if (!inet_ntop(AF_INET, &rp_addr, rp_str, sizeof(rp_str)))
700 snprintf(rp_str, sizeof(rp_str), "<rp?>");
701
702 if (plist)
703 rp_info = pim_rp_find_prefix_list(pim, rp_addr, plist);
704 else
705 rp_info = pim_rp_find_exact(pim, rp_addr, &group);
706
707 if (!rp_info)
708 return PIM_RP_NOT_FOUND;
709
710 if (rp_info->plist) {
711 XFREE(MTYPE_PIM_FILTER_NAME, rp_info->plist);
712 was_plist = true;
713 }
714
715 if (PIM_DEBUG_PIM_TRACE)
716 zlog_debug("%s: Delete RP %s for the group %pFX", __func__,
717 rp_str, &group);
718
719 /* While static RP is getting deleted, we need to check if dynamic RP
720 * present for the same group in BSM RP table, then install the dynamic
721 * RP for the group node into the main rp table
722 */
723 if (rp_src_flag == RP_SRC_STATIC) {
724 bsgrp = pim_bsm_get_bsgrp_node(&pim->global_scope, &group);
725
726 if (bsgrp) {
727 bsrp = bsm_rpinfos_first(bsgrp->bsrp_list);
728 if (bsrp) {
729 if (PIM_DEBUG_PIM_TRACE) {
730 char bsrp_str[INET_ADDRSTRLEN];
731
732 if (!inet_ntop(AF_INET, bsrp, bsrp_str,
733 sizeof(bsrp_str)))
734 snprintf(bsrp_str,
735 sizeof(bsrp_str),
736 "<bsrp?>");
737
738 zlog_debug(
739 "%s: BSM RP %s found for the group %pFX",
740 __func__, bsrp_str, &group);
741 }
742 return pim_rp_change(pim, bsrp->rp_address,
743 group, RP_SRC_BSR);
744 }
745 } else {
746 if (PIM_DEBUG_PIM_TRACE)
747 zlog_debug(
748 "%s: BSM RP not found for the group %pFX",
749 __func__, &group);
750 }
751 }
752
753 /* Deregister addr with Zebra NHT */
754 nht_p.family = AF_INET;
755 nht_p.prefixlen = IPV4_MAX_BITLEN;
756 nht_p.u.prefix4 = rp_info->rp.rpf_addr.u.prefix4;
757 if (PIM_DEBUG_PIM_NHT_RP)
758 zlog_debug("%s: Deregister RP addr %pFX with Zebra ", __func__,
759 &nht_p);
760 pim_delete_tracked_nexthop(pim, &nht_p, NULL, rp_info);
761
762 if (!str2prefix("224.0.0.0/4", &g_all))
763 return PIM_RP_BAD_ADDRESS;
764
765 rp_all = pim_rp_find_match_group(pim, &g_all);
766
767 if (rp_all == rp_info) {
768 frr_each (rb_pim_upstream, &pim->upstream_head, up) {
769 /* Find the upstream (*, G) whose upstream address is
770 * same as the deleted RP
771 */
772 if ((up->upstream_addr.s_addr
773 == rp_info->rp.rpf_addr.u.prefix4.s_addr)
774 && (up->sg.src.s_addr == INADDR_ANY)) {
775 struct prefix grp;
776 grp.family = AF_INET;
777 grp.prefixlen = IPV4_MAX_BITLEN;
778 grp.u.prefix4 = up->sg.grp;
779 trp_info = pim_rp_find_match_group(pim, &grp);
780 if (trp_info == rp_all) {
781 pim_upstream_rpf_clear(pim, up);
782 up->upstream_addr.s_addr = INADDR_ANY;
783 }
784 }
785 }
786 rp_all->rp.rpf_addr.family = AF_INET;
787 rp_all->rp.rpf_addr.u.prefix4.s_addr = INADDR_NONE;
788 rp_all->i_am_rp = 0;
789 return PIM_SUCCESS;
790 }
791
792 listnode_delete(pim->rp_list, rp_info);
793
794 if (!was_plist) {
795 rn = route_node_get(pim->rp_table, &rp_info->group);
796 if (rn) {
797 if (rn->info != rp_info)
798 flog_err(
799 EC_LIB_DEVELOPMENT,
800 "Expected rn->info to be equal to rp_info");
801
802 if (PIM_DEBUG_PIM_TRACE)
803 zlog_debug(
804 "%s:Found for Freeing: %p for rp_info: %p(%pFX) Lock: %d",
805 __func__, rn, rp_info, &rp_info->group,
806 route_node_get_lock_count(rn));
807
808 rn->info = NULL;
809 route_unlock_node(rn);
810 route_unlock_node(rn);
811 }
812 }
813
814 pim_rp_refresh_group_to_rp_mapping(pim);
815
816 frr_each (rb_pim_upstream, &pim->upstream_head, up) {
817 /* Find the upstream (*, G) whose upstream address is same as
818 * the deleted RP
819 */
820 if ((up->upstream_addr.s_addr
821 == rp_info->rp.rpf_addr.u.prefix4.s_addr)
822 && (up->sg.src.s_addr == INADDR_ANY)) {
823 struct prefix grp;
824
825 grp.family = AF_INET;
826 grp.prefixlen = IPV4_MAX_BITLEN;
827 grp.u.prefix4 = up->sg.grp;
828
829 trp_info = pim_rp_find_match_group(pim, &grp);
830
831 /* RP not found for the group grp */
832 if (pim_rpf_addr_is_inaddr_none(&trp_info->rp)) {
833 pim_upstream_rpf_clear(pim, up);
834 pim_rp_set_upstream_addr(
835 pim, &up->upstream_addr, up->sg.src,
836 up->sg.grp);
837 }
838
839 /* RP found for the group grp */
840 else
841 pim_upstream_update(pim, up);
842 }
843 }
844
845 XFREE(MTYPE_PIM_RP, rp_info);
846 return PIM_SUCCESS;
847 }
848
849 int pim_rp_change(struct pim_instance *pim, struct in_addr new_rp_addr,
850 struct prefix group, enum rp_source rp_src_flag)
851 {
852 struct prefix nht_p;
853 struct route_node *rn;
854 int result = 0;
855 struct rp_info *rp_info = NULL;
856 struct pim_upstream *up;
857
858 rn = route_node_lookup(pim->rp_table, &group);
859 if (!rn) {
860 result = pim_rp_new(pim, new_rp_addr, group, NULL, rp_src_flag);
861 return result;
862 }
863
864 rp_info = rn->info;
865
866 if (!rp_info) {
867 route_unlock_node(rn);
868 result = pim_rp_new(pim, new_rp_addr, group, NULL, rp_src_flag);
869 return result;
870 }
871
872 if (rp_info->rp.rpf_addr.u.prefix4.s_addr == new_rp_addr.s_addr) {
873 if (rp_info->rp_src != rp_src_flag) {
874 rp_info->rp_src = rp_src_flag;
875 route_unlock_node(rn);
876 return PIM_SUCCESS;
877 }
878 }
879
880 nht_p.family = AF_INET;
881 nht_p.prefixlen = IPV4_MAX_BITLEN;
882
883 /* Deregister old RP addr with Zebra NHT */
884 if (rp_info->rp.rpf_addr.u.prefix4.s_addr != INADDR_ANY) {
885 nht_p.u.prefix4 = rp_info->rp.rpf_addr.u.prefix4;
886 if (PIM_DEBUG_PIM_NHT_RP)
887 zlog_debug("%s: Deregister RP addr %pFX with Zebra ",
888 __func__, &nht_p);
889 pim_delete_tracked_nexthop(pim, &nht_p, NULL, rp_info);
890 }
891
892 pim_rp_nexthop_del(rp_info);
893 listnode_delete(pim->rp_list, rp_info);
894 /* Update the new RP address*/
895 rp_info->rp.rpf_addr.u.prefix4 = new_rp_addr;
896 rp_info->rp_src = rp_src_flag;
897 rp_info->i_am_rp = 0;
898
899 listnode_add_sort(pim->rp_list, rp_info);
900
901 frr_each (rb_pim_upstream, &pim->upstream_head, up) {
902 if (up->sg.src.s_addr == INADDR_ANY) {
903 struct prefix grp;
904 struct rp_info *trp_info;
905
906 grp.family = AF_INET;
907 grp.prefixlen = IPV4_MAX_BITLEN;
908 grp.u.prefix4 = up->sg.grp;
909 trp_info = pim_rp_find_match_group(pim, &grp);
910
911 if (trp_info == rp_info)
912 pim_upstream_update(pim, up);
913 }
914 }
915
916 /* Register new RP addr with Zebra NHT */
917 nht_p.u.prefix4 = rp_info->rp.rpf_addr.u.prefix4;
918 if (PIM_DEBUG_PIM_NHT_RP)
919 zlog_debug("%s: NHT Register RP addr %pFX grp %pFX with Zebra ",
920 __func__, &nht_p, &rp_info->group);
921
922 pim_find_or_track_nexthop(pim, &nht_p, NULL, rp_info, NULL);
923 if (!pim_ecmp_nexthop_lookup(pim, &rp_info->rp.source_nexthop, &nht_p,
924 &rp_info->group, 1)) {
925 route_unlock_node(rn);
926 return PIM_RP_NO_PATH;
927 }
928
929 pim_rp_check_interfaces(pim, rp_info);
930
931 route_unlock_node(rn);
932
933 pim_rp_refresh_group_to_rp_mapping(pim);
934
935 return result;
936 }
937
938 void pim_rp_setup(struct pim_instance *pim)
939 {
940 struct listnode *node;
941 struct rp_info *rp_info;
942 struct prefix nht_p;
943
944 for (ALL_LIST_ELEMENTS_RO(pim->rp_list, node, rp_info)) {
945 if (rp_info->rp.rpf_addr.u.prefix4.s_addr == INADDR_NONE)
946 continue;
947
948 nht_p.family = AF_INET;
949 nht_p.prefixlen = IPV4_MAX_BITLEN;
950 nht_p.u.prefix4 = rp_info->rp.rpf_addr.u.prefix4;
951
952 pim_find_or_track_nexthop(pim, &nht_p, NULL, rp_info, NULL);
953 if (!pim_ecmp_nexthop_lookup(pim, &rp_info->rp.source_nexthop,
954 &nht_p, &rp_info->group, 1))
955 if (PIM_DEBUG_PIM_NHT_RP)
956 zlog_debug(
957 "Unable to lookup nexthop for rp specified");
958 }
959 }
960
961 /*
962 * Checks to see if we should elect ourself the actual RP when new if
963 * addresses are added against an interface.
964 */
965 void pim_rp_check_on_if_add(struct pim_interface *pim_ifp)
966 {
967 struct listnode *node;
968 struct rp_info *rp_info;
969 bool i_am_rp_changed = false;
970 struct pim_instance *pim = pim_ifp->pim;
971
972 if (pim->rp_list == NULL)
973 return;
974
975 for (ALL_LIST_ELEMENTS_RO(pim->rp_list, node, rp_info)) {
976 if (pim_rpf_addr_is_inaddr_none(&rp_info->rp))
977 continue;
978
979 /* if i_am_rp is already set nothing to be done (adding new
980 * addresses
981 * is not going to make a difference). */
982 if (rp_info->i_am_rp) {
983 continue;
984 }
985
986 if (pim_rp_check_interface_addrs(rp_info, pim_ifp)) {
987 i_am_rp_changed = true;
988 rp_info->i_am_rp = 1;
989 if (PIM_DEBUG_PIM_NHT_RP) {
990 char rp[PREFIX_STRLEN];
991 pim_addr_dump("<rp?>", &rp_info->rp.rpf_addr,
992 rp, sizeof(rp));
993 zlog_debug("%s: %s: i am rp", __func__, rp);
994 }
995 }
996 }
997
998 if (i_am_rp_changed) {
999 pim_msdp_i_am_rp_changed(pim);
1000 pim_upstream_reeval_use_rpt(pim);
1001 }
1002 }
1003
1004 /* up-optimized re-evaluation of "i_am_rp". this is used when ifaddresses
1005 * are removed. Removing numbers is an uncommon event in an active network
1006 * so I have made no attempt to optimize it. */
1007 void pim_i_am_rp_re_evaluate(struct pim_instance *pim)
1008 {
1009 struct listnode *node;
1010 struct rp_info *rp_info;
1011 bool i_am_rp_changed = false;
1012 int old_i_am_rp;
1013
1014 if (pim->rp_list == NULL)
1015 return;
1016
1017 for (ALL_LIST_ELEMENTS_RO(pim->rp_list, node, rp_info)) {
1018 if (pim_rpf_addr_is_inaddr_none(&rp_info->rp))
1019 continue;
1020
1021 old_i_am_rp = rp_info->i_am_rp;
1022 pim_rp_check_interfaces(pim, rp_info);
1023
1024 if (old_i_am_rp != rp_info->i_am_rp) {
1025 i_am_rp_changed = true;
1026 if (PIM_DEBUG_PIM_NHT_RP) {
1027 char rp[PREFIX_STRLEN];
1028 pim_addr_dump("<rp?>", &rp_info->rp.rpf_addr,
1029 rp, sizeof(rp));
1030 if (rp_info->i_am_rp) {
1031 zlog_debug("%s: %s: i am rp", __func__,
1032 rp);
1033 } else {
1034 zlog_debug("%s: %s: i am no longer rp",
1035 __func__, rp);
1036 }
1037 }
1038 }
1039 }
1040
1041 if (i_am_rp_changed) {
1042 pim_msdp_i_am_rp_changed(pim);
1043 pim_upstream_reeval_use_rpt(pim);
1044 }
1045 }
1046
1047 /*
1048 * I_am_RP(G) is true if the group-to-RP mapping indicates that
1049 * this router is the RP for the group.
1050 *
1051 * Since we only have static RP, all groups are part of this RP
1052 */
1053 int pim_rp_i_am_rp(struct pim_instance *pim, struct in_addr group)
1054 {
1055 struct prefix g;
1056 struct rp_info *rp_info;
1057
1058 memset(&g, 0, sizeof(g));
1059 g.family = AF_INET;
1060 g.prefixlen = IPV4_MAX_BITLEN;
1061 g.u.prefix4 = group;
1062
1063 rp_info = pim_rp_find_match_group(pim, &g);
1064
1065 if (rp_info)
1066 return rp_info->i_am_rp;
1067
1068 return 0;
1069 }
1070
1071 /*
1072 * RP(G)
1073 *
1074 * Return the RP that the Group belongs too.
1075 */
1076 struct pim_rpf *pim_rp_g(struct pim_instance *pim, struct in_addr group)
1077 {
1078 struct prefix g;
1079 struct rp_info *rp_info;
1080
1081 memset(&g, 0, sizeof(g));
1082 g.family = AF_INET;
1083 g.prefixlen = IPV4_MAX_BITLEN;
1084 g.u.prefix4 = group;
1085
1086 rp_info = pim_rp_find_match_group(pim, &g);
1087
1088 if (rp_info) {
1089 struct prefix nht_p;
1090
1091 /* Register addr with Zebra NHT */
1092 nht_p.family = AF_INET;
1093 nht_p.prefixlen = IPV4_MAX_BITLEN;
1094 nht_p.u.prefix4 = rp_info->rp.rpf_addr.u.prefix4;
1095 if (PIM_DEBUG_PIM_NHT_RP)
1096 zlog_debug(
1097 "%s: NHT Register RP addr %pFX grp %pFX with Zebra",
1098 __func__, &nht_p, &rp_info->group);
1099 pim_find_or_track_nexthop(pim, &nht_p, NULL, rp_info, NULL);
1100 pim_rpf_set_refresh_time(pim);
1101 (void)pim_ecmp_nexthop_lookup(pim, &rp_info->rp.source_nexthop,
1102 &nht_p, &rp_info->group, 1);
1103 return (&rp_info->rp);
1104 }
1105
1106 // About to Go Down
1107 return NULL;
1108 }
1109
1110 /*
1111 * Set the upstream IP address we want to talk to based upon
1112 * the rp configured and the source address
1113 *
1114 * If we have don't have a RP configured and the source address is *
1115 * then set the upstream addr as INADDR_ANY and return failure.
1116 *
1117 */
1118 int pim_rp_set_upstream_addr(struct pim_instance *pim, struct in_addr *up,
1119 struct in_addr source, struct in_addr group)
1120 {
1121 struct rp_info *rp_info;
1122 struct prefix g;
1123
1124 memset(&g, 0, sizeof(g));
1125 g.family = AF_INET;
1126 g.prefixlen = IPV4_MAX_BITLEN;
1127 g.u.prefix4 = group;
1128
1129 rp_info = pim_rp_find_match_group(pim, &g);
1130
1131 if (!rp_info || ((pim_rpf_addr_is_inaddr_none(&rp_info->rp))
1132 && (source.s_addr == INADDR_ANY))) {
1133 if (PIM_DEBUG_PIM_NHT_RP)
1134 zlog_debug("%s: Received a (*,G) with no RP configured",
1135 __func__);
1136 up->s_addr = INADDR_ANY;
1137 return 0;
1138 }
1139
1140 *up = (source.s_addr == INADDR_ANY) ? rp_info->rp.rpf_addr.u.prefix4
1141 : source;
1142
1143 return 1;
1144 }
1145
1146 int pim_rp_config_write(struct pim_instance *pim, struct vty *vty,
1147 const char *spaces)
1148 {
1149 struct listnode *node;
1150 struct rp_info *rp_info;
1151 char rp_buffer[32];
1152 int count = 0;
1153
1154 for (ALL_LIST_ELEMENTS_RO(pim->rp_list, node, rp_info)) {
1155 if (pim_rpf_addr_is_inaddr_none(&rp_info->rp))
1156 continue;
1157
1158 if (rp_info->rp_src == RP_SRC_BSR)
1159 continue;
1160
1161 if (rp_info->plist)
1162 vty_out(vty, "%sip pim rp %s prefix-list %s\n", spaces,
1163 inet_ntop(AF_INET,
1164 &rp_info->rp.rpf_addr.u.prefix4,
1165 rp_buffer, 32),
1166 rp_info->plist);
1167 else
1168 vty_out(vty, "%sip pim rp %s %pFX\n", spaces,
1169 inet_ntop(AF_INET,
1170 &rp_info->rp.rpf_addr.u.prefix4,
1171 rp_buffer, 32),
1172 &rp_info->group);
1173 count++;
1174 }
1175
1176 return count;
1177 }
1178
1179 void pim_rp_show_information(struct pim_instance *pim, struct vty *vty, bool uj)
1180 {
1181 struct rp_info *rp_info;
1182 struct rp_info *prev_rp_info = NULL;
1183 struct listnode *node;
1184 char source[7];
1185 char buf[PREFIX_STRLEN];
1186
1187 json_object *json = NULL;
1188 json_object *json_rp_rows = NULL;
1189 json_object *json_row = NULL;
1190
1191 if (uj)
1192 json = json_object_new_object();
1193 else
1194 vty_out(vty,
1195 "RP address group/prefix-list OIF I am RP Source\n");
1196 for (ALL_LIST_ELEMENTS_RO(pim->rp_list, node, rp_info)) {
1197 if (!pim_rpf_addr_is_inaddr_none(&rp_info->rp)) {
1198 char buf[48];
1199
1200 if (rp_info->rp_src == RP_SRC_STATIC)
1201 strlcpy(source, "Static", sizeof(source));
1202 else if (rp_info->rp_src == RP_SRC_BSR)
1203 strlcpy(source, "BSR", sizeof(source));
1204 else
1205 strlcpy(source, "None", sizeof(source));
1206 if (uj) {
1207 /*
1208 * If we have moved on to a new RP then add the
1209 * entry for the previous RP
1210 */
1211 if (prev_rp_info
1212 && prev_rp_info->rp.rpf_addr.u.prefix4
1213 .s_addr
1214 != rp_info->rp.rpf_addr.u.prefix4
1215 .s_addr) {
1216 json_object_object_add(
1217 json,
1218 inet_ntop(AF_INET,
1219 &prev_rp_info->rp
1220 .rpf_addr.u
1221 .prefix4,
1222 buf, sizeof(buf)),
1223 json_rp_rows);
1224 json_rp_rows = NULL;
1225 }
1226
1227 if (!json_rp_rows)
1228 json_rp_rows = json_object_new_array();
1229
1230 json_row = json_object_new_object();
1231 json_object_string_add(
1232 json_row, "rpAddress",
1233 inet_ntop(AF_INET,
1234 &rp_info->rp.rpf_addr.u
1235 .prefix4,
1236 buf, sizeof(buf)));
1237 if (rp_info->rp.source_nexthop.interface)
1238 json_object_string_add(
1239 json_row, "outboundInterface",
1240 rp_info->rp.source_nexthop
1241 .interface->name);
1242 else
1243 json_object_string_add(
1244 json_row, "outboundInterface",
1245 "Unknown");
1246 if (rp_info->i_am_rp)
1247 json_object_boolean_true_add(json_row,
1248 "iAmRP");
1249 else
1250 json_object_boolean_false_add(json_row,
1251 "iAmRP");
1252
1253 if (rp_info->plist)
1254 json_object_string_add(json_row,
1255 "prefixList",
1256 rp_info->plist);
1257 else
1258 json_object_string_add(
1259 json_row, "group",
1260 prefix2str(&rp_info->group, buf,
1261 48));
1262 json_object_string_add(json_row, "source",
1263 source);
1264
1265 json_object_array_add(json_rp_rows, json_row);
1266 } else {
1267 vty_out(vty, "%-15s ",
1268 inet_ntop(AF_INET,
1269 &rp_info->rp.rpf_addr.u
1270 .prefix4,
1271 buf, sizeof(buf)));
1272
1273 if (rp_info->plist)
1274 vty_out(vty, "%-18s ", rp_info->plist);
1275 else
1276 vty_out(vty, "%-18pFX ",
1277 &rp_info->group);
1278
1279 if (rp_info->rp.source_nexthop.interface)
1280 vty_out(vty, "%-16s ",
1281 rp_info->rp.source_nexthop
1282 .interface->name);
1283 else
1284 vty_out(vty, "%-16s ", "(Unknown)");
1285
1286 if (rp_info->i_am_rp)
1287 vty_out(vty, "yes");
1288 else
1289 vty_out(vty, "no");
1290
1291 vty_out(vty, "%14s\n", source);
1292 }
1293 prev_rp_info = rp_info;
1294 }
1295 }
1296
1297 if (uj) {
1298 if (prev_rp_info && json_rp_rows)
1299 json_object_object_add(
1300 json,
1301 inet_ntop(AF_INET,
1302 &prev_rp_info->rp.rpf_addr.u.prefix4,
1303 buf, sizeof(buf)),
1304 json_rp_rows);
1305
1306 vty_out(vty, "%s\n", json_object_to_json_string_ext(
1307 json, JSON_C_TO_STRING_PRETTY));
1308 json_object_free(json);
1309 }
1310 }
1311
1312 void pim_resolve_rp_nh(struct pim_instance *pim, struct pim_neighbor *nbr)
1313 {
1314 struct listnode *node = NULL;
1315 struct rp_info *rp_info = NULL;
1316 struct nexthop *nh_node = NULL;
1317 struct prefix nht_p;
1318 struct pim_nexthop_cache pnc;
1319
1320 for (ALL_LIST_ELEMENTS_RO(pim->rp_list, node, rp_info)) {
1321 if (rp_info->rp.rpf_addr.u.prefix4.s_addr == INADDR_NONE)
1322 continue;
1323
1324 nht_p.family = AF_INET;
1325 nht_p.prefixlen = IPV4_MAX_BITLEN;
1326 nht_p.u.prefix4 = rp_info->rp.rpf_addr.u.prefix4;
1327 memset(&pnc, 0, sizeof(struct pim_nexthop_cache));
1328 if (!pim_find_or_track_nexthop(pim, &nht_p, NULL, rp_info,
1329 &pnc))
1330 continue;
1331
1332 for (nh_node = pnc.nexthop; nh_node; nh_node = nh_node->next) {
1333 if (nh_node->gate.ipv4.s_addr != INADDR_ANY)
1334 continue;
1335
1336 struct interface *ifp1 = if_lookup_by_index(
1337 nh_node->ifindex, pim->vrf->vrf_id);
1338
1339 if (nbr->interface != ifp1)
1340 continue;
1341
1342 nh_node->gate.ipv4 = nbr->source_addr;
1343 if (PIM_DEBUG_PIM_NHT_RP) {
1344 char str[PREFIX_STRLEN];
1345 char str1[INET_ADDRSTRLEN];
1346 pim_inet4_dump("<nht_nbr?>", nbr->source_addr,
1347 str1, sizeof(str1));
1348 pim_addr_dump("<nht_addr?>", &nht_p, str,
1349 sizeof(str));
1350 zlog_debug(
1351 "%s: addr %s new nexthop addr %s interface %s",
1352 __func__, str, str1, ifp1->name);
1353 }
1354 }
1355 }
1356 }