]> git.proxmox.com Git - mirror_frr.git/blame - pimd/pim_oil.c
Merge pull request #12499 from opensourcerouting/ospf-vertex-leak
[mirror_frr.git] / pimd / pim_oil.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
22#include "log.h"
23#include "memory.h"
24#include "linklist.h"
744d91b3 25#include "if.h"
040d86ad
DS
26#include "hash.h"
27#include "jhash.h"
12e41d03
DL
28
29#include "pimd.h"
30#include "pim_oil.h"
31#include "pim_str.h"
32#include "pim_iface.h"
37653d4f 33#include "pim_time.h"
5923b739 34#include "pim_vxlan.h"
12e41d03 35
a155fed5
AK
36static void pim_channel_update_mute(struct channel_oil *c_oil);
37
d62a17ae 38char *pim_channel_oil_dump(struct channel_oil *c_oil, char *buf, size_t size)
781a1745 39{
a2dc7057 40 char *out;
9bf5f19c 41 struct interface *ifp;
6fff2cc6 42 pim_sgaddr sg;
d62a17ae 43 int i;
44
a9338fa4
DL
45 sg.src = *oil_origin(c_oil);
46 sg.grp = *oil_mcastgrp(c_oil);
47 ifp = pim_if_find_by_vif_index(c_oil->pim, *oil_parent(c_oil));
98a81d2b
DL
48 snprintfrr(buf, size, "%pSG IIF: %s, OIFS: ", &sg,
49 ifp ? ifp->name : "(?)");
d62a17ae 50
a2dc7057 51 out = buf + strlen(buf);
d62a17ae 52 for (i = 0; i < MAXVIFS; i++) {
a9338fa4 53 if (oil_if_has(c_oil, i) != 0) {
9bf5f19c
DS
54 ifp = pim_if_find_by_vif_index(c_oil->pim, i);
55 snprintf(out, buf + size - out, "%s ",
56 ifp ? ifp->name : "(?)");
a2dc7057 57 out += strlen(out);
d62a17ae 58 }
59 }
60
61 return buf;
781a1745
DS
62}
63
a9338fa4
DL
64int pim_channel_oil_compare(const struct channel_oil *cc1,
65 const struct channel_oil *cc2)
040d86ad 66{
a9338fa4
DL
67 struct channel_oil *c1 = (struct channel_oil *)cc1;
68 struct channel_oil *c2 = (struct channel_oil *)cc2;
69 int rv;
70
71 rv = pim_addr_cmp(*oil_mcastgrp(c1), *oil_mcastgrp(c2));
72 if (rv)
73 return rv;
74 rv = pim_addr_cmp(*oil_origin(c1), *oil_origin(c2));
75 if (rv)
76 return rv;
d62a17ae 77 return 0;
040d86ad
DS
78}
79
611925dc 80void pim_oil_init(struct pim_instance *pim)
040d86ad 81{
7315ecda 82 rb_pim_oil_init(&pim->channel_oil_head);
040d86ad
DS
83}
84
611925dc 85void pim_oil_terminate(struct pim_instance *pim)
040d86ad 86{
7315ecda
DS
87 struct channel_oil *c_oil;
88
89 while ((c_oil = rb_pim_oil_pop(&pim->channel_oil_head)))
90 pim_channel_oil_free(c_oil);
040d86ad 91
7315ecda 92 rb_pim_oil_fini(&pim->channel_oil_head);
040d86ad
DS
93}
94
12e41d03
DL
95void pim_channel_oil_free(struct channel_oil *c_oil)
96{
d62a17ae 97 XFREE(MTYPE_PIM_CHANNEL_OIL, c_oil);
12e41d03
DL
98}
99
4d9ad5dc 100struct channel_oil *pim_find_channel_oil(struct pim_instance *pim,
6fff2cc6 101 pim_sgaddr *sg)
12e41d03 102{
d62a17ae 103 struct channel_oil *c_oil = NULL;
104 struct channel_oil lookup;
d270b216 105
a9338fa4
DL
106 *oil_mcastgrp(&lookup) = sg->grp;
107 *oil_origin(&lookup) = sg->src;
d270b216 108
7315ecda 109 c_oil = rb_pim_oil_find(&pim->channel_oil_head, &lookup);
d270b216 110
d62a17ae 111 return c_oil;
12e41d03
DL
112}
113
611925dc 114struct channel_oil *pim_channel_oil_add(struct pim_instance *pim,
6fff2cc6 115 pim_sgaddr *sg, const char *name)
12e41d03 116{
d62a17ae 117 struct channel_oil *c_oil;
d62a17ae 118
611925dc 119 c_oil = pim_find_channel_oil(pim, sg);
d62a17ae 120 if (c_oil) {
d62a17ae 121 ++c_oil->oil_ref_count;
a155fed5
AK
122
123 if (!c_oil->up) {
124 /* channel might be present prior to upstream */
125 c_oil->up = pim_upstream_find(
126 pim, sg);
127 /* if the upstream entry is being anchored to an
128 * already existing channel OIL we need to re-evaluate
129 * the "Mute" state on AA OIFs
130 */
131 pim_channel_update_mute(c_oil);
132 }
8a3e7e9e 133
7984af18
AK
134 /* check if the IIF has changed
135 * XXX - is this really needed
136 */
137 pim_upstream_mroute_iif_update(c_oil, __func__);
138
8a3e7e9e
DS
139 if (PIM_DEBUG_MROUTE)
140 zlog_debug(
6fff2cc6 141 "%s(%s): Existing oil for %pSG Ref Count: %d (Post Increment)",
15569c58 142 __func__, name, sg, c_oil->oil_ref_count);
d62a17ae 143 return c_oil;
144 }
145
d62a17ae 146 c_oil = XCALLOC(MTYPE_PIM_CHANNEL_OIL, sizeof(*c_oil));
d62a17ae 147
a9338fa4
DL
148 *oil_mcastgrp(c_oil) = sg->grp;
149 *oil_origin(c_oil) = sg->src;
d62a17ae 150
a9338fa4 151 *oil_parent(c_oil) = MAXVIFS;
d62a17ae 152 c_oil->oil_ref_count = 1;
153 c_oil->installed = 0;
611925dc
DS
154 c_oil->up = pim_upstream_find(pim, sg);
155 c_oil->pim = pim;
d62a17ae 156
7315ecda 157 rb_pim_oil_add(&pim->channel_oil_head, c_oil);
d62a17ae 158
8a3e7e9e 159 if (PIM_DEBUG_MROUTE)
98a81d2b 160 zlog_debug("%s(%s): c_oil %pSG add", __func__, name, sg);
7984af18 161
d62a17ae 162 return c_oil;
12e41d03
DL
163}
164
a155fed5 165struct channel_oil *pim_channel_oil_del(struct channel_oil *c_oil,
17823cdd 166 const char *name)
12e41d03 167{
8a3e7e9e 168 if (PIM_DEBUG_MROUTE) {
a9338fa4
DL
169 pim_sgaddr sg = {.src = *oil_mcastgrp(c_oil),
170 .grp = *oil_origin(c_oil)};
8a3e7e9e
DS
171
172 zlog_debug(
6fff2cc6 173 "%s(%s): Del oil for %pSG, Ref Count: %d (Predecrement)",
15569c58 174 __func__, name, &sg, c_oil->oil_ref_count);
8a3e7e9e 175 }
d62a17ae 176 --c_oil->oil_ref_count;
177
178 if (c_oil->oil_ref_count < 1) {
179 /*
180 * notice that listnode_delete() can't be moved
181 * into pim_channel_oil_free() because the later is
182 * called by list_delete_all_node()
183 */
184 c_oil->up = NULL;
7315ecda 185 rb_pim_oil_del(&c_oil->pim->channel_oil_head, c_oil);
d62a17ae 186
187 pim_channel_oil_free(c_oil);
a155fed5
AK
188 return NULL;
189 }
190
191 return c_oil;
192}
193
194void pim_channel_oil_upstream_deref(struct channel_oil *c_oil)
195{
196 /* The upstream entry associated with a channel_oil is abt to be
197 * deleted. If the channel_oil is kept around because of other
198 * references we need to remove upstream based states out of it.
199 */
200 c_oil = pim_channel_oil_del(c_oil, __func__);
201 if (c_oil) {
202 /* note: here we assume that c_oil->up has already been
203 * cleared
204 */
205 pim_channel_update_mute(c_oil);
d62a17ae 206 }
12e41d03 207}
1865a44a 208
d62a17ae 209int pim_channel_del_oif(struct channel_oil *channel_oil, struct interface *oif,
1b249e70 210 uint32_t proto_mask, const char *caller)
887fa014 211{
d62a17ae 212 struct pim_interface *pim_ifp;
213
df5dfb77
DL
214 assert(channel_oil);
215 assert(oif);
d62a17ae 216
217 pim_ifp = oif->info;
218
d6890c49
DL
219 assertf(pim_ifp->mroute_vif_index >= 0,
220 "trying to del OIF %s with VIF (%d)", oif->name,
221 pim_ifp->mroute_vif_index);
222
d62a17ae 223 /*
224 * Don't do anything if we've been asked to remove a source
225 * that is not actually on it.
226 */
227 if (!(channel_oil->oif_flags[pim_ifp->mroute_vif_index] & proto_mask)) {
228 if (PIM_DEBUG_MROUTE) {
d62a17ae 229 zlog_debug(
a9338fa4 230 "%s %s: no existing protocol mask %u(%u) for requested OIF %s (vif_index=%d, min_ttl=%d) for channel (S,G)=(%pPAs,%pPAs)",
15569c58 231 __FILE__, __func__, proto_mask,
d62a17ae 232 channel_oil
233 ->oif_flags[pim_ifp->mroute_vif_index],
234 oif->name, pim_ifp->mroute_vif_index,
a9338fa4
DL
235 oil_if_has(channel_oil, pim_ifp->mroute_vif_index),
236 oil_origin(channel_oil),
237 oil_mcastgrp(channel_oil));
d62a17ae 238 }
239 return 0;
240 }
241
242 channel_oil->oif_flags[pim_ifp->mroute_vif_index] &= ~proto_mask;
243
5923b739
AK
244 if (channel_oil->oif_flags[pim_ifp->mroute_vif_index] &
245 PIM_OIF_FLAG_PROTO_ANY) {
d62a17ae 246 if (PIM_DEBUG_MROUTE) {
d62a17ae 247 zlog_debug(
a9338fa4 248 "%s %s: other protocol masks remain for requested OIF %s (vif_index=%d, min_ttl=%d) for channel (S,G)=(%pPAs,%pPAs)",
15569c58 249 __FILE__, __func__, oif->name,
d62a17ae 250 pim_ifp->mroute_vif_index,
a9338fa4
DL
251 oil_if_has(channel_oil, pim_ifp->mroute_vif_index),
252 oil_origin(channel_oil),
253 oil_mcastgrp(channel_oil));
d62a17ae 254 }
255 return 0;
256 }
257
aa0bb312 258 oil_if_set(channel_oil, pim_ifp->mroute_vif_index, 0);
5923b739
AK
259 /* clear mute; will be re-evaluated when the OIF becomes valid again */
260 channel_oil->oif_flags[pim_ifp->mroute_vif_index] &= ~PIM_OIF_FLAG_MUTE;
d62a17ae 261
15569c58 262 if (pim_upstream_mroute_add(channel_oil, __func__)) {
d62a17ae 263 if (PIM_DEBUG_MROUTE) {
d62a17ae 264 zlog_debug(
a9338fa4 265 "%s %s: could not remove output interface %s (vif_index=%d) for channel (S,G)=(%pPAs,%pPAs)",
15569c58 266 __FILE__, __func__, oif->name,
a9338fa4
DL
267 pim_ifp->mroute_vif_index,
268 oil_origin(channel_oil),
269 oil_mcastgrp(channel_oil));
d62a17ae 270 }
271 return -1;
887fa014 272 }
d62a17ae 273
274 --channel_oil->oil_size;
275
276 if (PIM_DEBUG_MROUTE) {
d62a17ae 277 zlog_debug(
a9338fa4
DL
278 "%s(%s): (S,G)=(%pPAs,%pPAs): proto_mask=%u IIF:%d OIF=%s vif_index=%d",
279 __func__, caller, oil_origin(channel_oil),
280 oil_mcastgrp(channel_oil),
281 proto_mask,
282 *oil_parent(channel_oil), oif->name,
d62a17ae 283 pim_ifp->mroute_vif_index);
887fa014 284 }
d62a17ae 285
286 return 0;
887fa014
DS
287}
288
1537a668
AK
289void pim_channel_del_inherited_oif(struct channel_oil *c_oil,
290 struct interface *oif, const char *caller)
291{
292 struct pim_upstream *up = c_oil->up;
293
294 pim_channel_del_oif(c_oil, oif, PIM_OIF_FLAG_PROTO_STAR,
295 caller);
296
297 /* if an inherited OIF is being removed join-desired can change
298 * if the inherited OIL is now empty and KAT is running
299 */
2a27f13b
DL
300 if (up && !pim_addr_is_any(up->sg.src) &&
301 pim_upstream_empty_inherited_olist(up))
1537a668
AK
302 pim_upstream_update_join_desired(up->pim, up);
303}
887fa014 304
5923b739
AK
305static bool pim_channel_eval_oif_mute(struct channel_oil *c_oil,
306 struct pim_interface *pim_ifp)
307{
308 struct pim_interface *pim_reg_ifp;
309 struct pim_interface *vxlan_ifp;
310 bool do_mute = false;
311 struct pim_instance *pim = c_oil->pim;
312
313 if (!c_oil->up)
314 return do_mute;
315
316 pim_reg_ifp = pim->regiface->info;
317 if (pim_ifp == pim_reg_ifp) {
318 /* suppress pimreg in the OIL if the mroute is not supposed to
319 * trigger register encapsulated data
320 */
321 if (PIM_UPSTREAM_FLAG_TEST_NO_PIMREG_DATA(c_oil->up->flags))
322 do_mute = true;
323
324 return do_mute;
325 }
326
327 vxlan_ifp = pim_vxlan_get_term_ifp(pim);
328 if (pim_ifp == vxlan_ifp) {
329 /* 1. vxlan termination device must never be added to the
330 * origination mroute (and that can actually happen because
331 * of XG inheritance from the termination mroute) otherwise
332 * traffic will end up looping.
333 * PS: This check has also been extended to non-orig mroutes
334 * that have a local SIP as such mroutes can move back and
335 * forth between orig<=>non-orig type.
336 * 2. vxlan termination device should be removed from the non-DF
337 * to prevent duplicates to the overlay rxer
338 */
339 if (PIM_UPSTREAM_FLAG_TEST_SRC_VXLAN_ORIG(c_oil->up->flags) ||
340 PIM_UPSTREAM_FLAG_TEST_MLAG_NON_DF(c_oil->up->flags) ||
341 pim_vxlan_is_local_sip(c_oil->up))
342 do_mute = true;
343
344 return do_mute;
345 }
346
df94b33a
DS
347 if (PIM_I_am_DualActive(pim_ifp)) {
348 struct pim_upstream *starup = c_oil->up->parent;
349 if (PIM_UPSTREAM_FLAG_TEST_MLAG_INTERFACE(c_oil->up->flags)
350 && (PIM_UPSTREAM_FLAG_TEST_MLAG_NON_DF(c_oil->up->flags)))
351 do_mute = true;
352
353 /* In case entry is (S,G), Negotiation happens at (*.G) */
354 if (starup
355
356 && PIM_UPSTREAM_FLAG_TEST_MLAG_INTERFACE(starup->flags)
357 && (PIM_UPSTREAM_FLAG_TEST_MLAG_NON_DF(starup->flags)))
358 do_mute = true;
359 return do_mute;
360 }
5923b739
AK
361 return do_mute;
362}
363
364void pim_channel_update_oif_mute(struct channel_oil *c_oil,
365 struct pim_interface *pim_ifp)
366{
367 bool old_mute;
368 bool new_mute;
369
370 /* If pim_ifp is not a part of the OIL there is nothing to do */
a9338fa4 371 if (!oil_if_has(c_oil, pim_ifp->mroute_vif_index))
5923b739
AK
372 return;
373
374 old_mute = !!(c_oil->oif_flags[pim_ifp->mroute_vif_index] &
375 PIM_OIF_FLAG_MUTE);
376 new_mute = pim_channel_eval_oif_mute(c_oil, pim_ifp);
377 if (old_mute == new_mute)
378 return;
379
380 if (new_mute)
381 c_oil->oif_flags[pim_ifp->mroute_vif_index] |=
382 PIM_OIF_FLAG_MUTE;
383 else
384 c_oil->oif_flags[pim_ifp->mroute_vif_index] &=
385 ~PIM_OIF_FLAG_MUTE;
386
15569c58 387 pim_upstream_mroute_add(c_oil, __func__);
5923b739
AK
388}
389
a155fed5
AK
390/* pim_upstream has been set or cleared on the c_oil. re-eval mute state
391 * on all existing OIFs
392 */
393static void pim_channel_update_mute(struct channel_oil *c_oil)
394{
395 struct pim_interface *pim_reg_ifp;
396 struct pim_interface *vxlan_ifp;
397
8c70a46b
DS
398 if (c_oil->pim->regiface) {
399 pim_reg_ifp = c_oil->pim->regiface->info;
400 if (pim_reg_ifp)
401 pim_channel_update_oif_mute(c_oil, pim_reg_ifp);
402 }
a155fed5
AK
403 vxlan_ifp = pim_vxlan_get_term_ifp(c_oil->pim);
404 if (vxlan_ifp)
405 pim_channel_update_oif_mute(c_oil, vxlan_ifp);
406}
407
d62a17ae 408int pim_channel_add_oif(struct channel_oil *channel_oil, struct interface *oif,
1b249e70 409 uint32_t proto_mask, const char *caller)
1865a44a 410{
d62a17ae 411 struct pim_interface *pim_ifp;
412 int old_ttl;
413
414 /*
415 * If we've gotten here we've gone bad, but let's
416 * not take down pim
417 */
418 if (!channel_oil) {
419 zlog_warn("Attempt to Add OIF for non-existent channel oil");
420 return -1;
421 }
1865a44a 422
d62a17ae 423 pim_ifp = oif->info;
1865a44a 424
d6890c49
DL
425 assertf(pim_ifp->mroute_vif_index >= 0,
426 "trying to add OIF %s with VIF (%d)", oif->name,
427 pim_ifp->mroute_vif_index);
428
d62a17ae 429 /* Prevent single protocol from subscribing same interface to
430 channel (S,G) multiple times */
431 if (channel_oil->oif_flags[pim_ifp->mroute_vif_index] & proto_mask) {
692b1186
MR
432 channel_oil->oif_flags[pim_ifp->mroute_vif_index] |= proto_mask;
433
d62a17ae 434 if (PIM_DEBUG_MROUTE) {
d62a17ae 435 zlog_debug(
a9338fa4 436 "%s %s: existing protocol mask %u requested OIF %s (vif_index=%d, min_ttl=%d) for channel (S,G)=(%pPAs,%pPAs)",
15569c58
DA
437 __FILE__, __func__, proto_mask, oif->name,
438 pim_ifp->mroute_vif_index,
a9338fa4
DL
439 oil_if_has(channel_oil, pim_ifp->mroute_vif_index),
440 oil_origin(channel_oil),
441 oil_mcastgrp(channel_oil));
d62a17ae 442 }
443 return -3;
444 }
445
446 /* Allow other protocol to request subscription of same interface to
447 * channel (S,G), we need to note this information
448 */
449 if (channel_oil->oif_flags[pim_ifp->mroute_vif_index]
450 & PIM_OIF_FLAG_PROTO_ANY) {
451
d23756e9
SP
452 /* Updating time here is not required as this time has to
453 * indicate when the interface is added
454 */
455
d62a17ae 456 channel_oil->oif_flags[pim_ifp->mroute_vif_index] |= proto_mask;
457 /* Check the OIF really exists before returning, and only log
458 warning otherwise */
a9338fa4 459 if (oil_if_has(channel_oil, pim_ifp->mroute_vif_index) < 1) {
dd4a4b56 460 zlog_warn(
a9338fa4 461 "%s %s: new protocol mask %u requested nonexistent OIF %s (vif_index=%d, min_ttl=%d) for channel (S,G)=(%pPAs,%pPAs)",
dd4a4b56
DS
462 __FILE__, __func__, proto_mask, oif->name,
463 pim_ifp->mroute_vif_index,
a9338fa4
DL
464 oil_if_has(channel_oil, pim_ifp->mroute_vif_index),
465 oil_origin(channel_oil),
466 oil_mcastgrp(channel_oil));
d62a17ae 467 }
468
b900ad16 469 if (PIM_DEBUG_MROUTE) {
b900ad16 470 zlog_debug(
a9338fa4
DL
471 "%s(%s): (S,G)=(%pPAs,%pPAs): proto_mask=%u OIF=%s vif_index=%d added to 0x%x",
472 __func__, caller, oil_origin(channel_oil),
473 oil_mcastgrp(channel_oil),
b900ad16
AK
474 proto_mask, oif->name,
475 pim_ifp->mroute_vif_index,
476 channel_oil
477 ->oif_flags[pim_ifp->mroute_vif_index]);
478 }
d62a17ae 479 return 0;
480 }
481
a9338fa4 482 old_ttl = oil_if_has(channel_oil, pim_ifp->mroute_vif_index);
d62a17ae 483
484 if (old_ttl > 0) {
485 if (PIM_DEBUG_MROUTE) {
d62a17ae 486 zlog_debug(
a9338fa4 487 "%s %s: interface %s (vif_index=%d) is existing output for channel (S,G)=(%pPAs,%pPAs)",
15569c58 488 __FILE__, __func__, oif->name,
a9338fa4
DL
489 pim_ifp->mroute_vif_index,
490 oil_origin(channel_oil),
491 oil_mcastgrp(channel_oil));
d62a17ae 492 }
493 return -4;
494 }
495
a9338fa4 496 oil_if_set(channel_oil, pim_ifp->mroute_vif_index, PIM_MROUTE_MIN_TTL);
d62a17ae 497
5923b739
AK
498 /* Some OIFs are held in a muted state i.e. the PIM state machine
499 * decided to include the OIF but additional status check such as
500 * MLAG DF role prevent it from being activated for traffic
501 * forwarding.
502 */
503 if (pim_channel_eval_oif_mute(channel_oil, pim_ifp))
504 channel_oil->oif_flags[pim_ifp->mroute_vif_index] |=
505 PIM_OIF_FLAG_MUTE;
506 else
507 channel_oil->oif_flags[pim_ifp->mroute_vif_index] &=
508 ~PIM_OIF_FLAG_MUTE;
509
47e3ce59
SP
510 /* channel_oil->oil.mfcc_parent != MAXVIFS indicate this entry is not
511 * valid to get installed in kernel.
c3156184 512 */
a9338fa4 513 if (*oil_parent(channel_oil) != MAXVIFS) {
15569c58 514 if (pim_upstream_mroute_add(channel_oil, __func__)) {
c3156184 515 if (PIM_DEBUG_MROUTE) {
c3156184 516 zlog_debug(
a9338fa4 517 "%s %s: could not add output interface %s (vif_index=%d) for channel (S,G)=(%pPAs,%pPAs)",
15569c58 518 __FILE__, __func__, oif->name,
a9338fa4
DL
519 pim_ifp->mroute_vif_index,
520 oil_origin(channel_oil),
521 oil_mcastgrp(channel_oil));
c3156184 522 }
d62a17ae 523
a9338fa4
DL
524 oil_if_set(channel_oil, pim_ifp->mroute_vif_index,
525 old_ttl);
c3156184
SP
526 return -5;
527 }
d62a17ae 528 }
529
530 channel_oil->oif_creation[pim_ifp->mroute_vif_index] =
531 pim_time_monotonic_sec();
532 ++channel_oil->oil_size;
533 channel_oil->oif_flags[pim_ifp->mroute_vif_index] |= proto_mask;
534
535 if (PIM_DEBUG_MROUTE) {
d62a17ae 536 zlog_debug(
a9338fa4
DL
537 "%s(%s): (S,G)=(%pPAs,%pPAs): proto_mask=%u OIF=%s vif_index=%d: DONE",
538 __func__, caller, oil_origin(channel_oil),
539 oil_mcastgrp(channel_oil),
540 proto_mask,
15569c58 541 oif->name, pim_ifp->mroute_vif_index);
d62a17ae 542 }
543
544 return 0;
1865a44a 545}
ce0ddb4e 546
d62a17ae 547int pim_channel_oil_empty(struct channel_oil *c_oil)
ce0ddb4e 548{
30b82c7a 549 static struct channel_oil null_oil;
a5fa9822 550
d62a17ae 551 if (!c_oil)
552 return 1;
d62a17ae 553
9e558d9a
AK
554 /* exclude pimreg from the OIL when checking if the inherited_oil is
555 * non-NULL.
556 * pimreg device (in all vrfs) uses a vifi of
557 * 0 (PIM_OIF_PIM_REGISTER_VIF) so we simply mfcc_ttls[0] */
30b82c7a
DS
558 if (oil_if_has(c_oil, 0))
559 oil_if_set(&null_oil, 0, 1);
560 else
561 oil_if_set(&null_oil, 0, 0);
a5fa9822 562
30b82c7a 563 return !oil_if_cmp(&c_oil->oil, &null_oil.oil);
ce0ddb4e 564}