]> git.proxmox.com Git - mirror_frr.git/blame - pimd/pim_zebra.c
bgpd: Fix memory leak in json output of show commands
[mirror_frr.git] / pimd / pim_zebra.c
CommitLineData
12e41d03 1/*
896014f4
DL
2 * PIM for Quagga
3 * Copyright (C) 2008 Everton da Silva Marques
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 */
12e41d03
DL
19
20#include <zebra.h>
21
12e41d03
DL
22#include "if.h"
23#include "log.h"
24#include "prefix.h"
25#include "zclient.h"
26#include "stream.h"
27#include "network.h"
dfe43e25
DW
28#include "vty.h"
29#include "plist.h"
ba4eb1bc 30#include "lib/bfd.h"
12e41d03
DL
31
32#include "pimd.h"
33#include "pim_pim.h"
34#include "pim_zebra.h"
35#include "pim_iface.h"
36#include "pim_str.h"
37#include "pim_oil.h"
38#include "pim_rpf.h"
39#include "pim_time.h"
40#include "pim_join.h"
41#include "pim_zlookup.h"
42#include "pim_ifchannel.h"
8f5f5e91 43#include "pim_rp.h"
2560106c 44#include "pim_igmpv3.h"
982bff89 45#include "pim_jp_agg.h"
1bc98276 46#include "pim_nht.h"
15a5dafe 47#include "pim_ssm.h"
af7b561b 48#include "pim_vxlan.h"
12e41d03
DL
49
50#undef PIM_DEBUG_IFADDR_DUMP
51#define PIM_DEBUG_IFADDR_DUMP
52
38f4935a
DS
53static struct zclient *zclient = NULL;
54
12e41d03 55
12e41d03 56/* Router-id update message from zebra. */
121f9dee 57static int pim_router_id_update_zebra(ZAPI_CALLBACK_ARGS)
12e41d03 58{
d62a17ae 59 struct prefix router_id;
12e41d03 60
d62a17ae 61 zebra_router_id_update_read(zclient->ibuf, &router_id);
12e41d03 62
d62a17ae 63 return 0;
12e41d03
DL
64}
65
121f9dee 66static int pim_zebra_if_add(ZAPI_CALLBACK_ARGS)
12e41d03 67{
d62a17ae 68 struct interface *ifp;
26bb1fd5 69 struct pim_instance *pim;
d62a17ae 70
71 /*
72 zebra api adds/dels interfaces using the same call
73 interface_add_read below, see comments in lib/zclient.c
74 */
75 ifp = zebra_interface_add_read(zclient->ibuf, vrf_id);
76 if (!ifp)
77 return 0;
78
26bb1fd5 79 pim = pim_get_pim_instance(vrf_id);
d62a17ae 80 if (PIM_DEBUG_ZEBRA) {
81 zlog_debug(
87ad28f4 82 "%s: %s index %d(%u) flags %ld metric %d mtu %d operative %d",
e0ae31b8 83 __PRETTY_FUNCTION__, ifp->name, ifp->ifindex, vrf_id,
d62a17ae 84 (long)ifp->flags, ifp->metric, ifp->mtu,
85 if_is_operative(ifp));
86 }
87
26bb1fd5
DS
88 if (if_is_operative(ifp)) {
89 struct pim_interface *pim_ifp;
90
91 pim_ifp = ifp->info;
92 /*
93 * If we have a pim_ifp already and this is an if_add
94 * that means that we probably have a vrf move event
95 * If that is the case, set the proper vrfness.
96 */
97 if (pim_ifp)
98 pim_ifp->pim = pim;
d62a17ae 99 pim_if_addr_add_all(ifp);
26bb1fd5 100 }
d62a17ae 101
90133de6
DS
102 /*
103 * If we are a vrf device that is up, open up the pim_socket for
104 * listening
105 * to incoming pim messages irrelevant if the user has configured us
106 * for pim or not.
107 */
108 if (pim_if_is_vrf_device(ifp)) {
109 struct pim_interface *pim_ifp;
110
111 if (!ifp->info) {
b1891fa0
AK
112 pim_ifp = pim_if_new(ifp, false, false, false,
113 false /*vxlan_term*/);
90133de6
DS
114 ifp->info = pim_ifp;
115 }
116
117 pim_sock_add(ifp);
118 }
119
0a2dcc1c
AK
120 if (!strncmp(ifp->name, PIM_VXLAN_TERM_DEV_NAME,
121 sizeof(PIM_VXLAN_TERM_DEV_NAME)))
122 pim_vxlan_add_term_dev(pim, ifp);
123
d62a17ae 124 return 0;
12e41d03
DL
125}
126
121f9dee 127static int pim_zebra_if_del(ZAPI_CALLBACK_ARGS)
12e41d03 128{
d62a17ae 129 struct interface *ifp;
0a2dcc1c 130 struct pim_instance *pim;
d62a17ae 131
132 /*
133 zebra api adds/dels interfaces using the same call
134 interface_add_read below, see comments in lib/zclient.c
135
136 comments in lib/zclient.c seem to indicate that calling
137 zebra_interface_add_read is the correct call, but that
138 results in an attemted out of bounds read which causes
139 pimd to assert. Other clients use zebra_interface_state_read
140 and it appears to work just fine.
141 */
142 ifp = zebra_interface_state_read(zclient->ibuf, vrf_id);
143 if (!ifp)
144 return 0;
145
146 if (PIM_DEBUG_ZEBRA) {
147 zlog_debug(
87ad28f4 148 "%s: %s index %d(%u) flags %ld metric %d mtu %d operative %d",
e0ae31b8 149 __PRETTY_FUNCTION__, ifp->name, ifp->ifindex, vrf_id,
d62a17ae 150 (long)ifp->flags, ifp->metric, ifp->mtu,
151 if_is_operative(ifp));
152 }
153
154 if (!if_is_operative(ifp))
155 pim_if_addr_del_all(ifp);
156
9d6c33ea
DS
157 if_set_index(ifp, IFINDEX_INTERNAL);
158
0a2dcc1c
AK
159 pim = pim_get_pim_instance(vrf_id);
160 if (pim && pim->vxlan.term_if == ifp)
161 pim_vxlan_del_term_dev(pim);
162
d62a17ae 163 return 0;
12e41d03
DL
164}
165
121f9dee 166static int pim_zebra_if_state_up(ZAPI_CALLBACK_ARGS)
12e41d03 167{
26bb1fd5 168 struct pim_instance *pim;
d62a17ae 169 struct interface *ifp;
e0ae31b8 170 uint32_t table_id;
d62a17ae 171
172 /*
173 zebra api notifies interface up/down events by using the same call
174 zebra_interface_state_read below, see comments in lib/zclient.c
175 */
176 ifp = zebra_interface_state_read(zclient->ibuf, vrf_id);
177 if (!ifp)
178 return 0;
179
180 if (PIM_DEBUG_ZEBRA) {
181 zlog_debug(
87ad28f4 182 "%s: %s index %d(%u) flags %ld metric %d mtu %d operative %d",
e0ae31b8 183 __PRETTY_FUNCTION__, ifp->name, ifp->ifindex, vrf_id,
d62a17ae 184 (long)ifp->flags, ifp->metric, ifp->mtu,
185 if_is_operative(ifp));
186 }
187
26bb1fd5 188 pim = pim_get_pim_instance(vrf_id);
d62a17ae 189 if (if_is_operative(ifp)) {
26bb1fd5
DS
190 struct pim_interface *pim_ifp;
191
192 pim_ifp = ifp->info;
193 /*
194 * If we have a pim_ifp already and this is an if_add
195 * that means that we probably have a vrf move event
196 * If that is the case, set the proper vrfness.
197 */
198 if (pim_ifp)
199 pim_ifp->pim = pim;
200
d62a17ae 201 /*
202 pim_if_addr_add_all() suffices for bringing up both IGMP and
203 PIM
204 */
205 pim_if_addr_add_all(ifp);
206 }
207
e0ae31b8
DS
208 /*
209 * If we have a pimreg device callback and it's for a specific
210 * table set the master appropriately
211 */
0651460e 212 if (sscanf(ifp->name, "pimreg%" SCNu32, &table_id) == 1) {
e0ae31b8 213 struct vrf *vrf;
a2addae8 214 RB_FOREACH (vrf, vrf_name_head, &vrfs_by_name) {
e0ae31b8
DS
215 if ((table_id == vrf->data.l.table_id)
216 && (ifp->vrf_id != vrf->vrf_id)) {
217 struct interface *master = if_lookup_by_name(
218 vrf->name, vrf->vrf_id);
e691f179
DS
219
220 if (!master) {
996c9314
LB
221 zlog_debug(
222 "%s: Unable to find Master interface for %s",
223 __PRETTY_FUNCTION__, vrf->name);
e691f179
DS
224 return 0;
225 }
e0ae31b8
DS
226 zclient_interface_set_master(zclient, master,
227 ifp);
228 }
229 }
230 }
d62a17ae 231 return 0;
12e41d03
DL
232}
233
121f9dee 234static int pim_zebra_if_state_down(ZAPI_CALLBACK_ARGS)
12e41d03 235{
d62a17ae 236 struct interface *ifp;
237
238 /*
239 zebra api notifies interface up/down events by using the same call
240 zebra_interface_state_read below, see comments in lib/zclient.c
241 */
242 ifp = zebra_interface_state_read(zclient->ibuf, vrf_id);
243 if (!ifp)
244 return 0;
245
246 if (PIM_DEBUG_ZEBRA) {
247 zlog_debug(
87ad28f4 248 "%s: %s index %d(%u) flags %ld metric %d mtu %d operative %d",
e0ae31b8 249 __PRETTY_FUNCTION__, ifp->name, ifp->ifindex, vrf_id,
d62a17ae 250 (long)ifp->flags, ifp->metric, ifp->mtu,
251 if_is_operative(ifp));
252 }
253
254 if (!if_is_operative(ifp)) {
255 pim_ifchannel_delete_all(ifp);
256 /*
257 pim_if_addr_del_all() suffices for shutting down IGMP,
258 but not for shutting down PIM
259 */
260 pim_if_addr_del_all(ifp);
261
262 /*
263 pim_sock_delete() closes the socket, stops read and timer
264 threads,
265 and kills all neighbors.
266 */
267 if (ifp->info) {
268 pim_sock_delete(ifp, "link down");
269 }
270 }
271
272 if (ifp->info)
273 pim_if_del_vif(ifp);
274
275 return 0;
12e41d03
DL
276}
277
121f9dee 278static int pim_zebra_interface_vrf_update(ZAPI_CALLBACK_ARGS)
ee568318
DS
279{
280 struct interface *ifp;
281 vrf_id_t new_vrf_id;
282
283 ifp = zebra_interface_vrf_update_read(zclient->ibuf, vrf_id,
284 &new_vrf_id);
285 if (!ifp)
286 return 0;
287
288 if (PIM_DEBUG_ZEBRA)
289 zlog_debug("%s: %s updating from %u to %u",
290 __PRETTY_FUNCTION__,
291 ifp->name, vrf_id, new_vrf_id);
292
293 if_update_to_new_vrf(ifp, new_vrf_id);
294
295 return 0;
296}
297
12e41d03
DL
298#ifdef PIM_DEBUG_IFADDR_DUMP
299static void dump_if_address(struct interface *ifp)
300{
d62a17ae 301 struct connected *ifc;
302 struct listnode *node;
303
304 zlog_debug("%s %s: interface %s addresses:", __FILE__,
305 __PRETTY_FUNCTION__, ifp->name);
306
307 for (ALL_LIST_ELEMENTS_RO(ifp->connected, node, ifc)) {
308 struct prefix *p = ifc->address;
309
310 if (p->family != AF_INET)
311 continue;
312
313 zlog_debug("%s %s: interface %s address %s %s", __FILE__,
314 __PRETTY_FUNCTION__, ifp->name,
315 inet_ntoa(p->u.prefix4),
316 CHECK_FLAG(ifc->flags, ZEBRA_IFA_SECONDARY)
317 ? "secondary"
318 : "primary");
319 }
12e41d03
DL
320}
321#endif
322
121f9dee 323static int pim_zebra_if_address_add(ZAPI_CALLBACK_ARGS)
12e41d03 324{
d62a17ae 325 struct connected *c;
326 struct prefix *p;
327 struct pim_interface *pim_ifp;
26bb1fd5 328 struct pim_instance *pim;
d62a17ae 329
330 /*
331 zebra api notifies address adds/dels events by using the same call
332 interface_add_read below, see comments in lib/zclient.c
333
334 zebra_interface_address_read(ZEBRA_INTERFACE_ADDRESS_ADD, ...)
335 will add address to interface list by calling
336 connected_add_by_prefix()
337 */
121f9dee 338 c = zebra_interface_address_read(cmd, zclient->ibuf, vrf_id);
d62a17ae 339 if (!c)
340 return 0;
341
342 pim_ifp = c->ifp->info;
343 p = c->address;
344
345 if (PIM_DEBUG_ZEBRA) {
346 char buf[BUFSIZ];
347 prefix2str(p, buf, BUFSIZ);
87ad28f4 348 zlog_debug("%s: %s(%u) connected IP address %s flags %u %s",
e0ae31b8 349 __PRETTY_FUNCTION__, c->ifp->name, vrf_id, buf,
996c9314
LB
350 c->flags,
351 CHECK_FLAG(c->flags, ZEBRA_IFA_SECONDARY)
352 ? "secondary"
353 : "primary");
d62a17ae 354
12e41d03 355#ifdef PIM_DEBUG_IFADDR_DUMP
d62a17ae 356 dump_if_address(c->ifp);
12e41d03 357#endif
d62a17ae 358 }
12e41d03 359
d62a17ae 360 if (!CHECK_FLAG(c->flags, ZEBRA_IFA_SECONDARY)) {
361 /* trying to add primary address */
12e41d03 362
d62a17ae 363 struct in_addr primary_addr = pim_find_primary_addr(c->ifp);
364 if (p->family != AF_INET
365 || primary_addr.s_addr != p->u.prefix4.s_addr) {
366 if (PIM_DEBUG_ZEBRA) {
367 /* but we had a primary address already */
12e41d03 368
d62a17ae 369 char buf[BUFSIZ];
12e41d03 370
d62a17ae 371 prefix2str(p, buf, BUFSIZ);
12e41d03 372
d62a17ae 373 zlog_warn(
374 "%s: %s : forcing secondary flag on %s",
375 __PRETTY_FUNCTION__, c->ifp->name, buf);
376 }
377 SET_FLAG(c->flags, ZEBRA_IFA_SECONDARY);
378 }
379 }
12e41d03 380
d62a17ae 381 pim_if_addr_add(c);
26bb1fd5
DS
382 if (pim_ifp) {
383 pim = pim_get_pim_instance(vrf_id);
384 pim_ifp->pim = pim;
385
d62a17ae 386 pim_rp_check_on_if_add(pim_ifp);
26bb1fd5 387 }
12e41d03 388
d62a17ae 389 if (if_is_loopback(c->ifp)) {
f4e14fdb 390 struct vrf *vrf = vrf_lookup_by_id(VRF_DEFAULT);
d62a17ae 391 struct interface *ifp;
d8424057 392
451fda4f 393 FOR_ALL_INTERFACES (vrf, ifp) {
d62a17ae 394 if (!if_is_loopback(ifp) && if_is_operative(ifp))
395 pim_if_addr_add_all(ifp);
396 }
397 }
d8424057 398
d62a17ae 399 return 0;
12e41d03
DL
400}
401
121f9dee 402static int pim_zebra_if_address_del(ZAPI_CALLBACK_ARGS)
12e41d03 403{
d62a17ae 404 struct connected *c;
405 struct prefix *p;
fec883d9 406 struct vrf *vrf = vrf_lookup_by_id(vrf_id);
819f099b
DS
407 struct pim_instance *pim;
408
409 if (!vrf)
410 return 0;
411 pim = vrf->info;
d62a17ae 412
413 /*
414 zebra api notifies address adds/dels events by using the same call
415 interface_add_read below, see comments in lib/zclient.c
416
417 zebra_interface_address_read(ZEBRA_INTERFACE_ADDRESS_DELETE, ...)
418 will remove address from interface list by calling
419 connected_delete_by_prefix()
420 */
121f9dee 421 c = zebra_interface_address_read(cmd, zclient->ibuf, vrf_id);
d62a17ae 422 if (!c)
423 return 0;
424
425 p = c->address;
426 if (p->family == AF_INET) {
427 if (PIM_DEBUG_ZEBRA) {
428 char buf[BUFSIZ];
429 prefix2str(p, buf, BUFSIZ);
430 zlog_debug(
87ad28f4 431 "%s: %s(%u) disconnected IP address %s flags %u %s",
e0ae31b8 432 __PRETTY_FUNCTION__, c->ifp->name, vrf_id, buf,
d62a17ae 433 c->flags,
434 CHECK_FLAG(c->flags, ZEBRA_IFA_SECONDARY)
435 ? "secondary"
436 : "primary");
6233f087 437
12e41d03 438#ifdef PIM_DEBUG_IFADDR_DUMP
d62a17ae 439 dump_if_address(c->ifp);
12e41d03 440#endif
d62a17ae 441 }
12e41d03 442
d62a17ae 443 pim_if_addr_del(c, 0);
fec883d9
DS
444 pim_rp_setup(pim);
445 pim_i_am_rp_re_evaluate(pim);
d62a17ae 446 }
6233f087 447
d62a17ae 448 connected_free(c);
449 return 0;
12e41d03
DL
450}
451
74389231
DS
452void pim_zebra_update_all_interfaces(struct pim_instance *pim)
453{
454 struct interface *ifp;
455
456 FOR_ALL_INTERFACES (pim->vrf, ifp) {
457 struct pim_interface *pim_ifp = ifp->info;
458 struct pim_iface_upstream_switch *us;
459 struct listnode *node;
460
461 if (!pim_ifp)
462 continue;
463
464 for (ALL_LIST_ELEMENTS_RO(pim_ifp->upstream_switch_list, node,
465 us)) {
466 struct pim_rpf rpf;
467
468 rpf.source_nexthop.interface = ifp;
469 rpf.rpf_addr.u.prefix4 = us->address;
470 pim_joinprune_send(&rpf, us->us);
471 pim_jp_agg_clear_group(us->us);
472 }
473 }
474}
475
cc67ccf9
DS
476void pim_zebra_upstream_rpf_changed(struct pim_instance *pim,
477 struct pim_upstream *up,
478 struct pim_rpf *old)
479{
1250cb5d
SP
480 if (old->source_nexthop.interface) {
481 struct pim_neighbor *nbr;
cc67ccf9 482
1250cb5d
SP
483 nbr = pim_neighbor_find(old->source_nexthop.interface,
484 old->rpf_addr.u.prefix4);
485 if (nbr)
486 pim_jp_agg_remove_group(nbr->upstream_jp_agg, up);
cc67ccf9 487
cc67ccf9 488 /*
1250cb5d
SP
489 * We have detected a case where we might need
490 * to rescan the inherited o_list so do it.
cc67ccf9 491 */
1250cb5d
SP
492 if (up->channel_oil->oil_inherited_rescan) {
493 pim_upstream_inherited_olist_decide(pim, up);
494 up->channel_oil->oil_inherited_rescan = 0;
495 }
cc67ccf9 496
1250cb5d
SP
497 if (up->join_state == PIM_UPSTREAM_JOINED) {
498 /*
499 * If we come up real fast we can be here
500 * where the mroute has not been installed
501 * so install it.
502 */
503 if (!up->channel_oil->installed)
504 pim_mroute_add(up->channel_oil,
505 __PRETTY_FUNCTION__);
506
507 /*
508 * RFC 4601: 4.5.7. Sending (S,G)
509 * Join/Prune Messages
510 *
511 * Transitions from Joined State
512 *
513 * RPF'(S,G) changes not due to an Assert
514 *
515 * The upstream (S,G) state machine remains
516 * in Joined state. Send Join(S,G) to the new
517 * upstream neighbor, which is the new value
518 * of RPF'(S,G). Send Prune(S,G) to the old
519 * upstream neighbor, which is the old value
520 * of RPF'(S,G). Set the Join Timer (JT) to
521 * expire after t_periodic seconds.
522 */
523 pim_jp_agg_switch_interface(old, &up->rpf, up);
524
525 pim_upstream_join_timer_restart(up, old);
526 } /* up->join_state == PIM_UPSTREAM_JOINED */
527 }
528
529 else {
cc67ccf9 530 /*
1250cb5d
SP
531 * We have detected a case where we might need
532 * to rescan the inherited o_list so do it.
cc67ccf9 533 */
1250cb5d
SP
534 if (up->channel_oil->oil_inherited_rescan) {
535 pim_upstream_inherited_olist_decide(pim, up);
536 up->channel_oil->oil_inherited_rescan = 0;
537 }
cc67ccf9 538
1250cb5d
SP
539 if (!up->channel_oil->installed)
540 pim_mroute_add(up->channel_oil, __PRETTY_FUNCTION__);
541 }
cc67ccf9 542
1250cb5d
SP
543 /* FIXME can join_desired actually be changed by pim_rpf_update()
544 * returning PIM_RPF_CHANGED ?
545 */
cc67ccf9
DS
546 pim_upstream_update_join_desired(pim, up);
547}
548
121f9dee 549static int pim_zebra_vxlan_sg_proc(ZAPI_CALLBACK_ARGS)
af7b561b
AK
550{
551 struct stream *s;
552 struct pim_instance *pim;
553 struct prefix_sg sg;
554
555 pim = pim_get_pim_instance(vrf_id);
556 if (!pim)
557 return 0;
558
559 s = zclient->ibuf;
560
561 sg.family = AF_INET;
562 sg.prefixlen = stream_getl(s);
563 stream_get(&sg.src.s_addr, s, sg.prefixlen);
564 stream_get(&sg.grp.s_addr, s, sg.prefixlen);
565
566 if (PIM_DEBUG_ZEBRA) {
567 char sg_str[PIM_SG_LEN];
568
569 pim_str_sg_set(&sg, sg_str);
570 zlog_debug("%u:recv SG %s %s", vrf_id,
121f9dee 571 (cmd == ZEBRA_VXLAN_SG_ADD)?"add":"del",
af7b561b
AK
572 sg_str);
573 }
574
121f9dee 575 if (cmd == ZEBRA_VXLAN_SG_ADD)
af7b561b
AK
576 pim_vxlan_sg_add(pim, &sg);
577 else
578 pim_vxlan_sg_del(pim, &sg);
579
580 return 0;
581}
582
d62a17ae 583void pim_scan_individual_oil(struct channel_oil *c_oil, int in_vif_index)
12e41d03 584{
d62a17ae 585 struct in_addr vif_source;
586 int input_iface_vif_index;
587 int old_vif_index;
588
732c209c 589 pim_rp_set_upstream_addr(c_oil->pim, &vif_source,
d9c9a9ee 590 c_oil->oil.mfcc_origin,
732c209c 591 c_oil->oil.mfcc_mcastgrp);
d62a17ae 592
593 if (in_vif_index)
594 input_iface_vif_index = in_vif_index;
595 else {
596 struct prefix src, grp;
597
598 src.family = AF_INET;
599 src.prefixlen = IPV4_MAX_BITLEN;
600 src.u.prefix4 = vif_source;
601 grp.family = AF_INET;
602 grp.prefixlen = IPV4_MAX_BITLEN;
603 grp.u.prefix4 = c_oil->oil.mfcc_mcastgrp;
604
605 if (PIM_DEBUG_ZEBRA) {
606 char source_str[INET_ADDRSTRLEN];
607 char group_str[INET_ADDRSTRLEN];
608 pim_inet4_dump("<source?>", c_oil->oil.mfcc_origin,
609 source_str, sizeof(source_str));
610 pim_inet4_dump("<group?>", c_oil->oil.mfcc_mcastgrp,
611 group_str, sizeof(group_str));
612 zlog_debug(
a895ac30 613 "%s: channel_oil (%s,%s) upstream info is not present.",
d62a17ae 614 __PRETTY_FUNCTION__, source_str, group_str);
615 }
616 input_iface_vif_index = pim_ecmp_fib_lookup_if_vif_index(
b938537b 617 c_oil->pim, &src, &grp);
d62a17ae 618 }
619
620 if (input_iface_vif_index < 1) {
621 if (PIM_DEBUG_ZEBRA) {
622 char source_str[INET_ADDRSTRLEN];
623 char group_str[INET_ADDRSTRLEN];
624 pim_inet4_dump("<source?>", c_oil->oil.mfcc_origin,
625 source_str, sizeof(source_str));
626 pim_inet4_dump("<group?>", c_oil->oil.mfcc_mcastgrp,
627 group_str, sizeof(group_str));
628 zlog_debug(
629 "%s %s: could not find input interface(%d) for (S,G)=(%s,%s)",
630 __FILE__, __PRETTY_FUNCTION__,
631 c_oil->oil.mfcc_parent, source_str, group_str);
632 }
633 pim_mroute_del(c_oil, __PRETTY_FUNCTION__);
634 return;
635 }
636
637 if (input_iface_vif_index == c_oil->oil.mfcc_parent) {
638 if (!c_oil->installed)
639 pim_mroute_add(c_oil, __PRETTY_FUNCTION__);
640
641 /* RPF unchanged */
642 return;
643 }
644
645 if (PIM_DEBUG_ZEBRA) {
7cfc7bcf
DS
646 struct interface *old_iif = pim_if_find_by_vif_index(
647 c_oil->pim, c_oil->oil.mfcc_parent);
648 struct interface *new_iif = pim_if_find_by_vif_index(
649 c_oil->pim, input_iface_vif_index);
d62a17ae 650 char source_str[INET_ADDRSTRLEN];
651 char group_str[INET_ADDRSTRLEN];
652 pim_inet4_dump("<source?>", c_oil->oil.mfcc_origin, source_str,
653 sizeof(source_str));
654 pim_inet4_dump("<group?>", c_oil->oil.mfcc_mcastgrp, group_str,
655 sizeof(group_str));
656 zlog_debug(
657 "%s %s: (S,G)=(%s,%s) input interface changed from %s vif_index=%d to %s vif_index=%d",
658 __FILE__, __PRETTY_FUNCTION__, source_str, group_str,
97f03dde
DS
659 (old_iif) ? old_iif->name : "<old_iif?>",
660 c_oil->oil.mfcc_parent,
661 (new_iif) ? new_iif->name : "<new_iif?>",
d62a17ae 662 input_iface_vif_index);
663 }
664
665 /* new iif loops to existing oif ? */
666 if (c_oil->oil.mfcc_ttls[input_iface_vif_index]) {
7cfc7bcf
DS
667 struct interface *new_iif = pim_if_find_by_vif_index(
668 c_oil->pim, input_iface_vif_index);
d62a17ae 669
670 if (PIM_DEBUG_ZEBRA) {
671 char source_str[INET_ADDRSTRLEN];
672 char group_str[INET_ADDRSTRLEN];
673 pim_inet4_dump("<source?>", c_oil->oil.mfcc_origin,
674 source_str, sizeof(source_str));
675 pim_inet4_dump("<group?>", c_oil->oil.mfcc_mcastgrp,
676 group_str, sizeof(group_str));
677 zlog_debug(
678 "%s %s: (S,G)=(%s,%s) new iif loops to existing oif: %s vif_index=%d",
679 __FILE__, __PRETTY_FUNCTION__, source_str,
97f03dde
DS
680 group_str,
681 (new_iif) ? new_iif->name : "<new_iif?>",
d62a17ae 682 input_iface_vif_index);
683 }
684 }
685
686 /* update iif vif_index */
687 old_vif_index = c_oil->oil.mfcc_parent;
688 c_oil->oil.mfcc_parent = input_iface_vif_index;
689
690 /* update kernel multicast forwarding cache (MFC) */
691 if (pim_mroute_add(c_oil, __PRETTY_FUNCTION__)) {
692 if (PIM_DEBUG_MROUTE) {
693 /* just log warning */
7cfc7bcf
DS
694 struct interface *old_iif = pim_if_find_by_vif_index(
695 c_oil->pim, old_vif_index);
696 struct interface *new_iif = pim_if_find_by_vif_index(
697 c_oil->pim, input_iface_vif_index);
d62a17ae 698 char source_str[INET_ADDRSTRLEN];
699 char group_str[INET_ADDRSTRLEN];
700 pim_inet4_dump("<source?>", c_oil->oil.mfcc_origin,
701 source_str, sizeof(source_str));
702 pim_inet4_dump("<group?>", c_oil->oil.mfcc_mcastgrp,
703 group_str, sizeof(group_str));
704 zlog_debug(
705 "%s %s: (S,G)=(%s,%s) failure updating input interface from %s vif_index=%d to %s vif_index=%d",
706 __FILE__, __PRETTY_FUNCTION__, source_str,
707 group_str,
708 old_iif ? old_iif->name : "<old_iif?>",
709 c_oil->oil.mfcc_parent,
710 new_iif ? new_iif->name : "<new_iif?>",
711 input_iface_vif_index);
712 }
713 }
8a67a996
DS
714}
715
da11e325 716void pim_scan_oil(struct pim_instance *pim)
8a67a996 717{
d62a17ae 718 struct listnode *node;
719 struct listnode *nextnode;
720 struct channel_oil *c_oil;
721 ifindex_t ifindex;
722 int vif_index = 0;
723
bfc92019
DS
724 pim->scan_oil_last = pim_time_monotonic_sec();
725 ++pim->scan_oil_events;
d62a17ae 726
da11e325
DS
727 for (ALL_LIST_ELEMENTS(pim->channel_oil_list, node, nextnode, c_oil)) {
728 if (c_oil->up && c_oil->up->rpf.source_nexthop.interface) {
729 ifindex = c_oil->up->rpf.source_nexthop
730 .interface->ifindex;
731 vif_index =
732 pim_if_find_vifindex_by_ifindex(pim, ifindex);
733 /* Pass Current selected NH vif index to mroute
734 * download */
735 if (vif_index)
736 pim_scan_individual_oil(c_oil, vif_index);
737 } else
738 pim_scan_individual_oil(c_oil, 0);
d62a17ae 739 }
12e41d03
DL
740}
741
742static int on_rpf_cache_refresh(struct thread *t)
743{
da11e325
DS
744 struct pim_instance *pim = THREAD_ARG(t);
745
d62a17ae 746 /* update kernel multicast forwarding cache (MFC) */
da11e325 747 pim_scan_oil(pim);
12e41d03 748
bfc92019
DS
749 pim->rpf_cache_refresh_last = pim_time_monotonic_sec();
750 ++pim->rpf_cache_refresh_events;
12e41d03 751
d62a17ae 752 // It is called as part of pim_neighbor_add
753 // pim_rp_setup ();
754 return 0;
12e41d03
DL
755}
756
da11e325 757void sched_rpf_cache_refresh(struct pim_instance *pim)
12e41d03 758{
bfc92019 759 ++pim->rpf_cache_refresh_requests;
12e41d03 760
bfc92019 761 pim_rpf_set_refresh_time(pim);
e71bf8f7 762
da11e325 763 if (pim->rpf_cache_refresher) {
d62a17ae 764 /* Refresh timer is already running */
765 return;
766 }
12e41d03 767
d62a17ae 768 /* Start refresh timer */
12e41d03 769
d62a17ae 770 if (PIM_DEBUG_ZEBRA) {
771 zlog_debug("%s: triggering %ld msec timer", __PRETTY_FUNCTION__,
da03883e 772 router->rpf_cache_refresh_delay_msec);
d62a17ae 773 }
12e41d03 774
36417fcc 775 thread_add_timer_msec(router->master, on_rpf_cache_refresh, pim,
da03883e 776 router->rpf_cache_refresh_delay_msec,
da11e325 777 &pim->rpf_cache_refresher);
12e41d03
DL
778}
779
d62a17ae 780static void pim_zebra_connected(struct zclient *zclient)
48e8451b 781{
d62a17ae 782 /* Send the client registration */
783 bfd_client_sendmsg(zclient, ZEBRA_BFD_CLIENT_REGISTER);
ba4eb1bc 784
4dfe9ad2 785 zclient_send_reg_requests(zclient, router->vrf_id);
48e8451b 786}
8711a53d 787
ac567a6f
DS
788static void pim_zebra_capabilities(struct zclient_capabilities *cap)
789{
d6749d74 790 router->role = cap->role;
ac567a6f
DS
791}
792
eb05883f 793void pim_zebra_init(void)
12e41d03 794{
d62a17ae 795 /* Socket for receiving updates from Zebra daemon */
36417fcc 796 zclient = zclient_new(router->master, &zclient_options_default);
d62a17ae 797
ac567a6f 798 zclient->zebra_capabilities = pim_zebra_capabilities;
d62a17ae 799 zclient->zebra_connected = pim_zebra_connected;
800 zclient->router_id_update = pim_router_id_update_zebra;
801 zclient->interface_add = pim_zebra_if_add;
802 zclient->interface_delete = pim_zebra_if_del;
803 zclient->interface_up = pim_zebra_if_state_up;
804 zclient->interface_down = pim_zebra_if_state_down;
805 zclient->interface_address_add = pim_zebra_if_address_add;
806 zclient->interface_address_delete = pim_zebra_if_address_del;
ee568318 807 zclient->interface_vrf_update = pim_zebra_interface_vrf_update;
d62a17ae 808 zclient->nexthop_update = pim_parse_nexthop_update;
af7b561b
AK
809 zclient->vxlan_sg_add = pim_zebra_vxlan_sg_proc;
810 zclient->vxlan_sg_del = pim_zebra_vxlan_sg_proc;
d62a17ae 811
342213ea 812 zclient_init(zclient, ZEBRA_ROUTE_PIM, 0, &pimd_privs);
d62a17ae 813 if (PIM_DEBUG_PIM_TRACE) {
87270023 814 zlog_notice("%s: zclient socket initialized",
d62a17ae 815 __PRETTY_FUNCTION__);
816 }
817
818 zclient_lookup_new();
12e41d03
DL
819}
820
6f932b0c
DS
821void igmp_anysource_forward_start(struct pim_instance *pim,
822 struct igmp_group *group)
12e41d03 823{
d62a17ae 824 struct igmp_source *source;
825 struct in_addr src_addr = {.s_addr = 0};
826 /* Any source (*,G) is forwarded only if mode is EXCLUDE {empty} */
827 zassert(group->group_filtermode_isexcl);
828 zassert(listcount(group->group_source_list) < 1);
829
830 source = source_new(group, src_addr);
831 if (!source) {
832 zlog_warn("%s: Failure to create * source",
833 __PRETTY_FUNCTION__);
834 return;
835 }
836
6f932b0c 837 igmp_source_forward_start(pim, source);
12e41d03
DL
838}
839
840void igmp_anysource_forward_stop(struct igmp_group *group)
841{
d62a17ae 842 struct igmp_source *source;
843 struct in_addr star = {.s_addr = 0};
12e41d03 844
d62a17ae 845 source = igmp_find_source_by_addr(group, star);
846 if (source)
847 igmp_source_forward_stop(source);
12e41d03
DL
848}
849
6f439a70
DS
850static void igmp_source_forward_reevaluate_one(struct pim_instance *pim,
851 struct igmp_source *source)
15a5dafe 852{
d62a17ae 853 struct prefix_sg sg;
854 struct igmp_group *group = source->source_group;
855 struct pim_ifchannel *ch;
856
857 if ((source->source_addr.s_addr != INADDR_ANY)
858 || !IGMP_SOURCE_TEST_FORWARDING(source->source_flags))
859 return;
860
861 memset(&sg, 0, sizeof(struct prefix_sg));
862 sg.src = source->source_addr;
863 sg.grp = group->group_addr;
864
865 ch = pim_ifchannel_find(group->group_igmp_sock->interface, &sg);
6f439a70 866 if (pim_is_grp_ssm(pim, group->group_addr)) {
d62a17ae 867 /* If SSM group withdraw local membership */
868 if (ch
869 && (ch->local_ifmembership == PIM_IFMEMBERSHIP_INCLUDE)) {
870 if (PIM_DEBUG_PIM_EVENTS)
871 zlog_debug(
872 "local membership del for %s as G is now SSM",
873 pim_str_sg_dump(&sg));
874 pim_ifchannel_local_membership_del(
875 group->group_igmp_sock->interface, &sg);
876 }
877 } else {
878 /* If ASM group add local membership */
879 if (!ch
880 || (ch->local_ifmembership == PIM_IFMEMBERSHIP_NOINFO)) {
881 if (PIM_DEBUG_PIM_EVENTS)
882 zlog_debug(
883 "local membership add for %s as G is now ASM",
884 pim_str_sg_dump(&sg));
885 pim_ifchannel_local_membership_add(
886 group->group_igmp_sock->interface, &sg);
887 }
888 }
15a5dafe 889}
890
5d59e408 891void igmp_source_forward_reevaluate_all(struct pim_instance *pim)
15a5dafe 892{
d62a17ae 893 struct interface *ifp;
894
5d59e408
DS
895 FOR_ALL_INTERFACES (pim->vrf, ifp) {
896 struct pim_interface *pim_ifp = ifp->info;
897 struct listnode *sock_node;
898 struct igmp_sock *igmp;
899
900 if (!pim_ifp)
d62a17ae 901 continue;
902
5d59e408
DS
903 /* scan igmp sockets */
904 for (ALL_LIST_ELEMENTS_RO(pim_ifp->igmp_socket_list, sock_node,
905 igmp)) {
906 struct listnode *grpnode;
907 struct igmp_group *grp;
908
909 /* scan igmp groups */
910 for (ALL_LIST_ELEMENTS_RO(igmp->igmp_group_list,
911 grpnode, grp)) {
912 struct listnode *srcnode;
913 struct igmp_source *src;
914
915 /* scan group sources */
916 for (ALL_LIST_ELEMENTS_RO(
917 grp->group_source_list, srcnode,
918 src)) {
919 igmp_source_forward_reevaluate_one(pim,
920 src);
921 } /* scan group sources */
922 } /* scan igmp groups */
923 } /* scan igmp sockets */
924 } /* scan interfaces */
15a5dafe 925}
926
6f932b0c
DS
927void igmp_source_forward_start(struct pim_instance *pim,
928 struct igmp_source *source)
12e41d03 929{
75c61a18 930 struct pim_interface *pim_oif;
d62a17ae 931 struct igmp_group *group;
932 struct prefix_sg sg;
933 int result;
934 int input_iface_vif_index = 0;
935
936 memset(&sg, 0, sizeof(struct prefix_sg));
937 sg.src = source->source_addr;
938 sg.grp = source->source_group->group_addr;
939
940 if (PIM_DEBUG_IGMP_TRACE) {
941 zlog_debug(
942 "%s: (S,G)=%s igmp_sock=%d oif=%s fwd=%d",
943 __PRETTY_FUNCTION__, pim_str_sg_dump(&sg),
944 source->source_group->group_igmp_sock->fd,
945 source->source_group->group_igmp_sock->interface->name,
946 IGMP_SOURCE_TEST_FORWARDING(source->source_flags));
947 }
948
949 /* Prevent IGMP interface from installing multicast route multiple
950 times */
951 if (IGMP_SOURCE_TEST_FORWARDING(source->source_flags)) {
952 return;
8711a53d 953 }
d62a17ae 954
955 group = source->source_group;
75c61a18
DS
956 pim_oif = group->group_igmp_sock->interface->info;
957 if (!pim_oif) {
958 if (PIM_DEBUG_IGMP_TRACE) {
959 zlog_debug(
960 "%s: multicast not enabled on oif=%s ?",
961 __PRETTY_FUNCTION__,
962 source->source_group->group_igmp_sock
963 ->interface->name);
964 }
965 return;
966 }
d62a17ae 967
968 if (!source->source_channel_oil) {
969 struct in_addr vif_source;
d1a1b09c 970 struct prefix src, grp;
d62a17ae 971 struct pim_nexthop nexthop;
972 struct pim_upstream *up = NULL;
973
6f932b0c 974 if (!pim_rp_set_upstream_addr(pim, &vif_source,
732c209c
SP
975 source->source_addr, sg.grp)) {
976 /*Create a dummy channel oil */
977 source->source_channel_oil =
978 pim_channel_oil_add(pim, &sg, MAXVIFS);
d62a17ae 979
732c209c
SP
980 if (!source->source_channel_oil) {
981 if (PIM_DEBUG_IGMP_TRACE) {
982 zlog_debug(
983 "%s %s: could not create OIL for channel (S,G)=%s",
984 __FILE__, __PRETTY_FUNCTION__,
985 pim_str_sg_dump(&sg));
986 }
987 return;
988 }
989 }
d62a17ae 990
732c209c 991 else {
732c209c
SP
992 src.family = AF_INET;
993 src.prefixlen = IPV4_MAX_BITLEN;
994 src.u.prefix4 = vif_source; // RP or Src address
995 grp.family = AF_INET;
996 grp.prefixlen = IPV4_MAX_BITLEN;
997 grp.u.prefix4 = sg.grp;
998
43763b11
DS
999 up = pim_upstream_find(pim, &sg);
1000 if (up) {
1001 memcpy(&nexthop, &up->rpf.source_nexthop,
1002 sizeof(struct pim_nexthop));
1003 pim_ecmp_nexthop_lookup(pim, &nexthop, &src,
1004 &grp, 0);
1005 if (nexthop.interface)
1006 input_iface_vif_index =
d62a17ae 1007 pim_if_find_vifindex_by_ifindex(
43763b11
DS
1008 pim,
1009 nexthop.interface->ifindex);
732c209c
SP
1010 } else
1011 input_iface_vif_index =
43763b11
DS
1012 pim_ecmp_fib_lookup_if_vif_index(
1013 pim, &src, &grp);
d62a17ae 1014
732c209c
SP
1015 if (PIM_DEBUG_ZEBRA) {
1016 char buf2[INET_ADDRSTRLEN];
d62a17ae 1017
732c209c
SP
1018 pim_inet4_dump("<source?>", vif_source, buf2,
1019 sizeof(buf2));
1020 zlog_debug("%s: NHT %s vif_source %s vif_index:%d ",
d62a17ae 1021 __PRETTY_FUNCTION__,
1022 pim_str_sg_dump(&sg),
732c209c 1023 buf2, input_iface_vif_index);
d62a17ae 1024 }
d62a17ae 1025
732c209c
SP
1026 if (input_iface_vif_index < 1) {
1027 if (PIM_DEBUG_IGMP_TRACE) {
1028 char source_str[INET_ADDRSTRLEN];
1029 pim_inet4_dump("<source?>",
1030 source->source_addr,
1031 source_str, sizeof(source_str));
1032 zlog_debug(
1033 "%s %s: could not find input interface for source %s",
1034 __FILE__, __PRETTY_FUNCTION__,
1035 source_str);
1036 }
1037 source->source_channel_oil =
1038 pim_channel_oil_add(pim, &sg, MAXVIFS);
1039 }
1040
1041 else {
1042 /*
1043 * Protect IGMP against adding looped MFC
1044 * entries created by both source and receiver
1045 * attached to the same interface. See TODO
1046 * T22.
1047 */
1048 if (input_iface_vif_index ==
1049 pim_oif->mroute_vif_index) {
1050 /* ignore request for looped MFC entry
1051 */
1052 if (PIM_DEBUG_IGMP_TRACE) {
1053 zlog_debug(
1054 "%s: ignoring request for looped MFC entry (S,G)=%s: igmp_sock=%d oif=%s vif_index=%d",
1055 __PRETTY_FUNCTION__,
1056 pim_str_sg_dump(&sg),
1057 source->source_group
1058 ->group_igmp_sock->fd,
1059 source->source_group
1060 ->group_igmp_sock
1061 ->interface->name,
1062 input_iface_vif_index);
1063 }
1064 return;
1065 }
1066
1067 source->source_channel_oil =
1068 pim_channel_oil_add(pim, &sg,
1069 input_iface_vif_index);
1070 if (!source->source_channel_oil) {
1071 if (PIM_DEBUG_IGMP_TRACE) {
1072 zlog_debug(
1073 "%s %s: could not create OIL for channel (S,G)=%s",
1074 __FILE__,
1075 __PRETTY_FUNCTION__,
1076 pim_str_sg_dump(&sg));
1077 }
1078 return;
1079 }
d62a17ae 1080 }
d62a17ae 1081 }
8711a53d 1082 }
d62a17ae 1083
1084 result = pim_channel_add_oif(source->source_channel_oil,
1085 group->group_igmp_sock->interface,
1086 PIM_OIF_FLAG_PROTO_IGMP);
1087 if (result) {
1088 if (PIM_DEBUG_MROUTE) {
1089 zlog_warn("%s: add_oif() failed with return=%d",
1090 __func__, result);
1091 }
1092 return;
8711a53d 1093 }
d62a17ae 1094
90a084e4
DS
1095 if (!(PIM_I_am_DR(pim_oif))) {
1096 if (PIM_DEBUG_IGMP_TRACE)
1097 zlog_debug("%s: %s was received on %s interface but we are not DR for that interface",
1098 __PRETTY_FUNCTION__,
1099 pim_str_sg_dump(&sg),
1100 group->group_igmp_sock->interface->name);
b96892db
DS
1101
1102 pim_channel_del_oif(source->source_channel_oil,
1103 group->group_igmp_sock->interface,
1104 PIM_OIF_FLAG_PROTO_IGMP);
75c61a18 1105 return;
90a084e4 1106 }
d62a17ae 1107 /*
1108 Feed IGMPv3-gathered local membership information into PIM
1109 per-interface (S,G) state.
1110 */
1111 if (!pim_ifchannel_local_membership_add(
75c61a18 1112 group->group_igmp_sock->interface, &sg)) {
d62a17ae 1113 if (PIM_DEBUG_MROUTE)
1114 zlog_warn("%s: Failure to add local membership for %s",
1115 __PRETTY_FUNCTION__, pim_str_sg_dump(&sg));
b96892db
DS
1116
1117 pim_channel_del_oif(source->source_channel_oil,
1118 group->group_igmp_sock->interface,
1119 PIM_OIF_FLAG_PROTO_IGMP);
d62a17ae 1120 return;
1121 }
1122
1123 IGMP_SOURCE_DO_FORWARDING(source->source_flags);
12e41d03
DL
1124}
1125
1126/*
1127 igmp_source_forward_stop: stop fowarding, but keep the source
1128 igmp_source_delete: stop fowarding, and delete the source
1129 */
1130void igmp_source_forward_stop(struct igmp_source *source)
1131{
d62a17ae 1132 struct igmp_group *group;
1133 struct prefix_sg sg;
1134 int result;
1135
1136 memset(&sg, 0, sizeof(struct prefix_sg));
1137 sg.src = source->source_addr;
1138 sg.grp = source->source_group->group_addr;
1139
1140 if (PIM_DEBUG_IGMP_TRACE) {
1141 zlog_debug(
1142 "%s: (S,G)=%s igmp_sock=%d oif=%s fwd=%d",
1143 __PRETTY_FUNCTION__, pim_str_sg_dump(&sg),
1144 source->source_group->group_igmp_sock->fd,
1145 source->source_group->group_igmp_sock->interface->name,
1146 IGMP_SOURCE_TEST_FORWARDING(source->source_flags));
1147 }
1148
1149 /* Prevent IGMP interface from removing multicast route multiple
1150 times */
1151 if (!IGMP_SOURCE_TEST_FORWARDING(source->source_flags)) {
1152 return;
1153 }
1154
1155 group = source->source_group;
1156
1157 /*
1158 It appears that in certain circumstances that
1159 igmp_source_forward_stop is called when IGMP forwarding
1160 was not enabled in oif_flags for this outgoing interface.
1161 Possibly because of multiple calls. When that happens, we
1162 enter the below if statement and this function returns early
1163 which in turn triggers the calling function to assert.
1164 Making the call to pim_channel_del_oif and ignoring the return code
1165 fixes the issue without ill effect, similar to
1166 pim_forward_stop below.
1167 */
1168 result = pim_channel_del_oif(source->source_channel_oil,
1169 group->group_igmp_sock->interface,
1170 PIM_OIF_FLAG_PROTO_IGMP);
1171 if (result) {
1172 if (PIM_DEBUG_IGMP_TRACE)
1173 zlog_debug(
1174 "%s: pim_channel_del_oif() failed with return=%d",
1175 __func__, result);
1176 return;
1177 }
1178
1179 /*
1180 Feed IGMPv3-gathered local membership information into PIM
1181 per-interface (S,G) state.
1182 */
1183 pim_ifchannel_local_membership_del(group->group_igmp_sock->interface,
1184 &sg);
1185
1186 IGMP_SOURCE_DONT_FORWARDING(source->source_flags);
12e41d03
DL
1187}
1188
1189void pim_forward_start(struct pim_ifchannel *ch)
1190{
d62a17ae 1191 struct pim_upstream *up = ch->upstream;
1192 uint32_t mask = PIM_OIF_FLAG_PROTO_PIM;
1193 int input_iface_vif_index = 0;
6f932b0c
DS
1194 struct pim_instance *pim;
1195 struct pim_interface *pim_ifp;
1196
1197 pim_ifp = ch->interface->info;
1198 pim = pim_ifp->pim;
d62a17ae 1199
1200 if (PIM_DEBUG_PIM_TRACE) {
1201 char source_str[INET_ADDRSTRLEN];
1202 char group_str[INET_ADDRSTRLEN];
1203 char upstream_str[INET_ADDRSTRLEN];
1204
1205 pim_inet4_dump("<source?>", ch->sg.src, source_str,
1206 sizeof(source_str));
1207 pim_inet4_dump("<group?>", ch->sg.grp, group_str,
1208 sizeof(group_str));
1209 pim_inet4_dump("<upstream?>", up->upstream_addr, upstream_str,
1210 sizeof(upstream_str));
1211 zlog_debug("%s: (S,G)=(%s,%s) oif=%s (%s)", __PRETTY_FUNCTION__,
1212 source_str, group_str, ch->interface->name,
732c209c 1213 inet_ntoa(up->upstream_addr));
d62a17ae 1214 }
1215
1216 /* Resolve IIF for upstream as mroute_del sets mfcc_parent to MAXVIFS,
1217 as part of mroute_del called by pim_forward_stop.
1218 */
732c209c 1219 if ((up->upstream_addr.s_addr != INADDR_ANY) && (!up->channel_oil)) {
d1a1b09c 1220 struct prefix src, grp;
d62a17ae 1221
d62a17ae 1222 grp.family = AF_INET;
1223 grp.prefixlen = IPV4_MAX_BITLEN;
1224 grp.u.prefix4 = up->sg.grp;
43763b11
DS
1225 src.family = AF_INET;
1226 src.prefixlen = IPV4_MAX_BITLEN;
1227 src.u.prefix4 = up->sg.src;
1228
1229 if (pim_ecmp_nexthop_lookup(pim, &up->rpf.source_nexthop, &src,
1230 &grp, 0))
1231 input_iface_vif_index = pim_if_find_vifindex_by_ifindex(
1232 pim, up->rpf.source_nexthop.interface->ifindex);
d62a17ae 1233
1234 if (input_iface_vif_index < 1) {
1235 if (PIM_DEBUG_PIM_TRACE) {
1236 char source_str[INET_ADDRSTRLEN];
1237 pim_inet4_dump("<source?>", up->sg.src,
1238 source_str, sizeof(source_str));
1239 zlog_debug(
1240 "%s %s: could not find input interface for source %s",
1241 __FILE__, __PRETTY_FUNCTION__,
1242 source_str);
1243 }
732c209c
SP
1244 up->channel_oil = pim_channel_oil_add(pim, &up->sg,
1245 MAXVIFS);
d62a17ae 1246 }
732c209c
SP
1247
1248 else {
1249 up->channel_oil = pim_channel_oil_add(pim, &up->sg,
1250 input_iface_vif_index);
1251 if (!up->channel_oil) {
1252 if (PIM_DEBUG_PIM_TRACE)
1253 zlog_debug(
1254 "%s %s: could not create OIL for channel (S,G)=%s",
1255 __FILE__, __PRETTY_FUNCTION__,
1256 up->sg_str);
1257 return;
1258 }
1259 }
1260
d62a17ae 1261 if (PIM_DEBUG_TRACE) {
7cfc7bcf 1262 struct interface *in_intf = pim_if_find_by_vif_index(
6f932b0c 1263 pim, input_iface_vif_index);
d62a17ae 1264 zlog_debug(
1265 "%s: Update channel_oil IIF %s VIFI %d entry %s ",
1266 __PRETTY_FUNCTION__,
732c209c 1267 in_intf ? in_intf->name : "Unknown",
d62a17ae 1268 input_iface_vif_index, up->sg_str);
1269 }
732c209c 1270
6f932b0c 1271 up->channel_oil = pim_channel_oil_add(pim, &up->sg,
611925dc 1272 input_iface_vif_index);
d62a17ae 1273 if (!up->channel_oil) {
1274 if (PIM_DEBUG_PIM_TRACE)
1275 zlog_debug(
1276 "%s %s: could not create OIL for channel (S,G)=%s",
1277 __FILE__, __PRETTY_FUNCTION__,
1278 up->sg_str);
1279 return;
1280 }
1281 }
1282
1283 if (up->flags & PIM_UPSTREAM_FLAG_MASK_SRC_IGMP)
1284 mask = PIM_OIF_FLAG_PROTO_IGMP;
1285
1286 pim_channel_add_oif(up->channel_oil, ch->interface, mask);
12e41d03
DL
1287}
1288
aabb9a2f 1289void pim_forward_stop(struct pim_ifchannel *ch, bool install_it)
12e41d03 1290{
d62a17ae 1291 struct pim_upstream *up = ch->upstream;
12e41d03 1292
d62a17ae 1293 if (PIM_DEBUG_PIM_TRACE) {
aabb9a2f
DS
1294 zlog_debug("%s: (S,G)=%s oif=%s install_it: %d installed: %d",
1295 __PRETTY_FUNCTION__, ch->sg_str, ch->interface->name,
1296 install_it, up->channel_oil->installed);
d62a17ae 1297 }
12e41d03 1298
d62a17ae 1299 pim_channel_del_oif(up->channel_oil, ch->interface,
1300 PIM_OIF_FLAG_PROTO_PIM);
aabb9a2f
DS
1301
1302 if (install_it && !up->channel_oil->installed)
1303 pim_mroute_add(up->channel_oil, __PRETTY_FUNCTION__);
12e41d03 1304}
8799b66b 1305
d62a17ae 1306void pim_zebra_zclient_update(struct vty *vty)
8799b66b 1307{
d62a17ae 1308 vty_out(vty, "Zclient update socket: ");
1309
1310 if (zclient) {
1311 vty_out(vty, "%d failures=%d\n", zclient->sock, zclient->fail);
1312 } else {
1313 vty_out(vty, "<null zclient>\n");
1314 }
8799b66b 1315}
1bc98276 1316
d62a17ae 1317struct zclient *pim_zebra_zclient_get(void)
1bc98276 1318{
d62a17ae 1319 if (zclient)
1320 return zclient;
1321 else
1322 return NULL;
1bc98276 1323}