3 * Copyright (C) 2008 Everton da Silva Marques
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.
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.
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
37 #include "pim_iface.h"
39 #include "pim_zlookup.h"
40 #include "pim_upstream.h"
41 #include "pim_ifchannel.h"
42 #include "pim_neighbor.h"
44 #include "pim_zebra.h"
46 #include "pim_macro.h"
49 #include "pim_register.h"
51 #include "pim_jp_agg.h"
54 #include "pim_vxlan.h"
56 static void join_timer_stop(struct pim_upstream
*up
);
58 pim_upstream_update_assert_tracking_desired(struct pim_upstream
*up
);
61 * A (*,G) or a (*,*) is going away
62 * remove the parent pointer from
63 * those pointing at us
65 static void pim_upstream_remove_children(struct pim_instance
*pim
,
66 struct pim_upstream
*up
)
68 struct pim_upstream
*child
;
73 while (!list_isempty(up
->sources
)) {
74 child
= listnode_head(up
->sources
);
75 listnode_delete(up
->sources
, child
);
76 if (PIM_UPSTREAM_FLAG_TEST_SRC_LHR(child
->flags
)) {
77 PIM_UPSTREAM_FLAG_UNSET_SRC_LHR(child
->flags
);
78 child
= pim_upstream_del(pim
, child
,
84 list_delete(&up
->sources
);
88 * A (*,G) or a (*,*) is being created
89 * Find the children that would point
92 static void pim_upstream_find_new_children(struct pim_instance
*pim
,
93 struct pim_upstream
*up
)
95 struct pim_upstream
*child
;
96 struct listnode
*ch_node
;
98 if ((up
->sg
.src
.s_addr
!= INADDR_ANY
)
99 && (up
->sg
.grp
.s_addr
!= INADDR_ANY
))
102 if ((up
->sg
.src
.s_addr
== INADDR_ANY
)
103 && (up
->sg
.grp
.s_addr
== INADDR_ANY
))
106 for (ALL_LIST_ELEMENTS_RO(pim
->upstream_list
, ch_node
, child
)) {
107 if ((up
->sg
.grp
.s_addr
!= INADDR_ANY
)
108 && (child
->sg
.grp
.s_addr
== up
->sg
.grp
.s_addr
)
111 listnode_add_sort(up
->sources
, child
);
117 * If we have a (*,*) || (S,*) there is no parent
118 * If we have a (S,G), find the (*,G)
119 * If we have a (*,G), find the (*,*)
121 static struct pim_upstream
*pim_upstream_find_parent(struct pim_instance
*pim
,
122 struct pim_upstream
*child
)
124 struct prefix_sg any
= child
->sg
;
125 struct pim_upstream
*up
= NULL
;
128 if ((child
->sg
.src
.s_addr
!= INADDR_ANY
)
129 && (child
->sg
.grp
.s_addr
!= INADDR_ANY
)) {
130 any
.src
.s_addr
= INADDR_ANY
;
131 up
= pim_upstream_find(pim
, &any
);
134 listnode_add(up
->sources
, child
);
142 static void upstream_channel_oil_detach(struct pim_upstream
*up
)
144 if (up
->channel_oil
) {
145 /* Detaching from channel_oil, channel_oil may exist post del,
146 but upstream would not keep reference of it
148 up
->channel_oil
->up
= NULL
;
149 pim_channel_oil_del(up
->channel_oil
);
150 up
->channel_oil
= NULL
;
154 struct pim_upstream
*pim_upstream_del(struct pim_instance
*pim
,
155 struct pim_upstream
*up
, const char *name
)
157 struct listnode
*node
, *nnode
;
158 struct pim_ifchannel
*ch
;
159 bool notify_msdp
= false;
164 "%s(%s): Delete %s[%s] ref count: %d , flags: %d c_oil ref count %d (Pre decrement)",
165 __PRETTY_FUNCTION__
, name
, up
->sg_str
, pim
->vrf
->name
,
166 up
->ref_count
, up
->flags
,
167 up
->channel_oil
->oil_ref_count
);
169 assert(up
->ref_count
> 0);
173 if (up
->ref_count
>= 1)
176 THREAD_OFF(up
->t_ka_timer
);
177 THREAD_OFF(up
->t_rs_timer
);
178 THREAD_OFF(up
->t_msdp_reg_timer
);
180 if (up
->join_state
== PIM_UPSTREAM_JOINED
) {
181 pim_jp_agg_single_upstream_send(&up
->rpf
, up
, 0);
183 if (up
->sg
.src
.s_addr
== INADDR_ANY
) {
184 /* if a (*, G) entry in the joined state is being
186 * need to notify MSDP */
192 pim_jp_agg_upstream_verification(up
, false);
193 up
->rpf
.source_nexthop
.interface
= NULL
;
195 if (up
->sg
.src
.s_addr
!= INADDR_ANY
) {
196 if (pim
->upstream_sg_wheel
)
197 wheel_remove_item(pim
->upstream_sg_wheel
, up
);
201 pim_mroute_del(up
->channel_oil
, __PRETTY_FUNCTION__
);
202 upstream_channel_oil_detach(up
);
204 for (ALL_LIST_ELEMENTS(up
->ifchannels
, node
, nnode
, ch
))
205 pim_ifchannel_delete(ch
);
206 list_delete(&up
->ifchannels
);
208 pim_upstream_remove_children(pim
, up
);
210 list_delete(&up
->sources
);
212 if (up
->parent
&& up
->parent
->sources
)
213 listnode_delete(up
->parent
->sources
, up
);
216 listnode_delete(pim
->upstream_list
, up
);
217 hash_release(pim
->upstream_hash
, up
);
220 pim_msdp_up_del(pim
, &up
->sg
);
223 /* When RP gets deleted, pim_rp_del() deregister addr with Zebra NHT
224 * and assign up->upstream_addr as INADDR_ANY.
225 * So before de-registering the upstream address, check if is not equal
226 * to INADDR_ANY. This is done in order to avoid de-registering for
227 * 255.255.255.255 which is maintained for some reason..
229 if (up
->upstream_addr
.s_addr
!= INADDR_ANY
) {
230 /* Deregister addr with Zebra NHT */
231 nht_p
.family
= AF_INET
;
232 nht_p
.prefixlen
= IPV4_MAX_BITLEN
;
233 nht_p
.u
.prefix4
= up
->upstream_addr
;
234 if (PIM_DEBUG_TRACE
) {
235 char buf
[PREFIX2STR_BUFFER
];
236 prefix2str(&nht_p
, buf
, sizeof(buf
));
237 zlog_debug("%s: Deregister upstream %s addr %s with Zebra NHT",
238 __PRETTY_FUNCTION__
, up
->sg_str
, buf
);
240 pim_delete_tracked_nexthop(pim
, &nht_p
, up
, NULL
);
243 XFREE(MTYPE_PIM_UPSTREAM
, up
);
248 void pim_upstream_send_join(struct pim_upstream
*up
)
250 if (!up
->rpf
.source_nexthop
.interface
) {
252 zlog_debug("%s: up %s RPF is not present",
253 __PRETTY_FUNCTION__
, up
->sg_str
);
257 if (PIM_DEBUG_TRACE
) {
258 char rpf_str
[PREFIX_STRLEN
];
259 pim_addr_dump("<rpf?>", &up
->rpf
.rpf_addr
, rpf_str
,
261 zlog_debug("%s: RPF'%s=%s(%s) for Interface %s",
262 __PRETTY_FUNCTION__
, up
->sg_str
, rpf_str
,
263 pim_upstream_state2str(up
->join_state
),
264 up
->rpf
.source_nexthop
.interface
->name
);
265 if (pim_rpf_addr_is_inaddr_any(&up
->rpf
)) {
266 zlog_debug("%s: can't send join upstream: RPF'%s=%s",
267 __PRETTY_FUNCTION__
, up
->sg_str
, rpf_str
);
272 /* send Join(S,G) to the current upstream neighbor */
273 pim_jp_agg_single_upstream_send(&up
->rpf
, up
, 1 /* join */);
276 static int on_join_timer(struct thread
*t
)
278 struct pim_upstream
*up
;
282 if (!up
->rpf
.source_nexthop
.interface
) {
284 zlog_debug("%s: up %s RPF is not present",
285 __PRETTY_FUNCTION__
, up
->sg_str
);
290 * In the case of a HFR we will not ahve anyone to send this to.
292 if (PIM_UPSTREAM_FLAG_TEST_FHR(up
->flags
))
296 * Don't send the join if the outgoing interface is a loopback
297 * But since this might change leave the join timer running
299 if (up
->rpf
.source_nexthop
300 .interface
&& !if_is_loopback(up
->rpf
.source_nexthop
.interface
))
301 pim_upstream_send_join(up
);
303 join_timer_start(up
);
308 static void join_timer_stop(struct pim_upstream
*up
)
310 struct pim_neighbor
*nbr
= NULL
;
312 THREAD_OFF(up
->t_join_timer
);
314 if (up
->rpf
.source_nexthop
.interface
)
315 nbr
= pim_neighbor_find(up
->rpf
.source_nexthop
.interface
,
316 up
->rpf
.rpf_addr
.u
.prefix4
);
319 pim_jp_agg_remove_group(nbr
->upstream_jp_agg
, up
);
321 pim_jp_agg_upstream_verification(up
, false);
324 void join_timer_start(struct pim_upstream
*up
)
326 struct pim_neighbor
*nbr
= NULL
;
328 if (up
->rpf
.source_nexthop
.interface
) {
329 nbr
= pim_neighbor_find(up
->rpf
.source_nexthop
.interface
,
330 up
->rpf
.rpf_addr
.u
.prefix4
);
332 if (PIM_DEBUG_PIM_EVENTS
) {
334 "%s: starting %d sec timer for upstream (S,G)=%s",
335 __PRETTY_FUNCTION__
, router
->t_periodic
,
341 pim_jp_agg_add_group(nbr
->upstream_jp_agg
, up
, 1);
343 THREAD_OFF(up
->t_join_timer
);
344 thread_add_timer(router
->master
, on_join_timer
, up
,
345 router
->t_periodic
, &up
->t_join_timer
);
347 pim_jp_agg_upstream_verification(up
, true);
351 * This is only called when we are switching the upstream
352 * J/P from one neighbor to another
354 * As such we need to remove from the old list and
355 * add to the new list.
357 void pim_upstream_join_timer_restart(struct pim_upstream
*up
,
360 // THREAD_OFF(up->t_join_timer);
361 join_timer_start(up
);
364 static void pim_upstream_join_timer_restart_msec(struct pim_upstream
*up
,
367 if (PIM_DEBUG_PIM_EVENTS
) {
368 zlog_debug("%s: restarting %d msec timer for upstream (S,G)=%s",
369 __PRETTY_FUNCTION__
, interval_msec
, up
->sg_str
);
372 THREAD_OFF(up
->t_join_timer
);
373 thread_add_timer_msec(router
->master
, on_join_timer
, up
, interval_msec
,
377 void pim_upstream_join_suppress(struct pim_upstream
*up
,
378 struct in_addr rpf_addr
, int holdtime
)
380 long t_joinsuppress_msec
;
381 long join_timer_remain_msec
;
383 if (!up
->rpf
.source_nexthop
.interface
) {
385 zlog_debug("%s: up %s RPF is not present",
386 __PRETTY_FUNCTION__
, up
->sg_str
);
390 t_joinsuppress_msec
=
391 MIN(pim_if_t_suppressed_msec(up
->rpf
.source_nexthop
.interface
),
394 join_timer_remain_msec
= pim_time_timer_remain_msec(up
->t_join_timer
);
396 if (PIM_DEBUG_TRACE
) {
397 char rpf_str
[INET_ADDRSTRLEN
];
398 pim_inet4_dump("<rpf?>", rpf_addr
, rpf_str
, sizeof(rpf_str
));
400 "%s %s: detected Join%s to RPF'(S,G)=%s: join_timer=%ld msec t_joinsuppress=%ld msec",
401 __FILE__
, __PRETTY_FUNCTION__
, up
->sg_str
, rpf_str
,
402 join_timer_remain_msec
, t_joinsuppress_msec
);
405 if (join_timer_remain_msec
< t_joinsuppress_msec
) {
406 if (PIM_DEBUG_TRACE
) {
408 "%s %s: suppressing Join(S,G)=%s for %ld msec",
409 __FILE__
, __PRETTY_FUNCTION__
, up
->sg_str
,
410 t_joinsuppress_msec
);
413 pim_upstream_join_timer_restart_msec(up
, t_joinsuppress_msec
);
417 void pim_upstream_join_timer_decrease_to_t_override(const char *debug_label
,
418 struct pim_upstream
*up
)
420 long join_timer_remain_msec
;
423 if (!up
->rpf
.source_nexthop
.interface
) {
425 zlog_debug("%s: up %s RPF is not present",
426 __PRETTY_FUNCTION__
, up
->sg_str
);
430 join_timer_remain_msec
= pim_time_timer_remain_msec(up
->t_join_timer
);
432 pim_if_t_override_msec(up
->rpf
.source_nexthop
.interface
);
434 if (PIM_DEBUG_TRACE
) {
435 char rpf_str
[INET_ADDRSTRLEN
];
436 pim_inet4_dump("<rpf?>", up
->rpf
.rpf_addr
.u
.prefix4
, rpf_str
,
439 "%s: to RPF'%s=%s: join_timer=%ld msec t_override=%d msec",
440 debug_label
, up
->sg_str
, rpf_str
,
441 join_timer_remain_msec
, t_override_msec
);
444 if (join_timer_remain_msec
> t_override_msec
) {
445 if (PIM_DEBUG_TRACE
) {
447 "%s: decreasing (S,G)=%s join timer to t_override=%d msec",
448 debug_label
, up
->sg_str
, t_override_msec
);
451 pim_upstream_join_timer_restart_msec(up
, t_override_msec
);
455 static void forward_on(struct pim_upstream
*up
)
457 struct listnode
*chnode
;
458 struct listnode
*chnextnode
;
459 struct pim_ifchannel
*ch
= NULL
;
461 /* scan (S,G) state */
462 for (ALL_LIST_ELEMENTS(up
->ifchannels
, chnode
, chnextnode
, ch
)) {
463 if (pim_macro_chisin_oiflist(ch
))
464 pim_forward_start(ch
);
466 } /* scan iface channel list */
469 static void forward_off(struct pim_upstream
*up
)
471 struct listnode
*chnode
;
472 struct listnode
*chnextnode
;
473 struct pim_ifchannel
*ch
;
475 /* scan per-interface (S,G) state */
476 for (ALL_LIST_ELEMENTS(up
->ifchannels
, chnode
, chnextnode
, ch
)) {
478 pim_forward_stop(ch
, false);
480 } /* scan iface channel list */
483 static int pim_upstream_could_register(struct pim_upstream
*up
)
485 struct pim_interface
*pim_ifp
= NULL
;
487 /* FORCE_PIMREG is a generic flag to let an app like VxLAN-AA register
488 * a source on an upstream entry even if the source is not directly
489 * connected on the IIF.
491 if (PIM_UPSTREAM_FLAG_TEST_FORCE_PIMREG(up
->flags
))
494 if (up
->rpf
.source_nexthop
.interface
)
495 pim_ifp
= up
->rpf
.source_nexthop
.interface
->info
;
498 zlog_debug("%s: up %s RPF is not present",
499 __PRETTY_FUNCTION__
, up
->sg_str
);
502 if (pim_ifp
&& PIM_I_am_DR(pim_ifp
)
503 && pim_if_connected_to_source(up
->rpf
.source_nexthop
.interface
,
510 /* Source registration is suppressed for SSM groups. When the SSM range changes
511 * we re-revaluate register setup for existing upstream entries */
512 void pim_upstream_register_reevaluate(struct pim_instance
*pim
)
514 struct listnode
*upnode
;
515 struct pim_upstream
*up
;
517 for (ALL_LIST_ELEMENTS_RO(pim
->upstream_list
, upnode
, up
)) {
518 /* If FHR is set CouldRegister is True. Also check if the flow
519 * is actually active; if it is not kat setup will trigger
521 * registration whenever the flow becomes active. */
522 if (!PIM_UPSTREAM_FLAG_TEST_FHR(up
->flags
) || !up
->t_ka_timer
)
525 if (pim_is_grp_ssm(pim
, up
->sg
.grp
)) {
526 /* clear the register state for SSM groups */
527 if (up
->reg_state
!= PIM_REG_NOINFO
) {
528 if (PIM_DEBUG_PIM_EVENTS
)
530 "Clear register for %s as G is now SSM",
532 /* remove regiface from the OIL if it is there*/
533 pim_channel_del_oif(up
->channel_oil
,
535 PIM_OIF_FLAG_PROTO_PIM
);
536 up
->reg_state
= PIM_REG_NOINFO
;
539 /* register ASM sources with the RP */
540 if (up
->reg_state
== PIM_REG_NOINFO
) {
541 if (PIM_DEBUG_PIM_EVENTS
)
543 "Register %s as G is now ASM",
545 pim_channel_add_oif(up
->channel_oil
,
547 PIM_OIF_FLAG_PROTO_PIM
);
548 up
->reg_state
= PIM_REG_JOIN
;
554 void pim_upstream_switch(struct pim_instance
*pim
, struct pim_upstream
*up
,
555 enum pim_upstream_state new_state
)
557 enum pim_upstream_state old_state
= up
->join_state
;
559 if (up
->upstream_addr
.s_addr
== INADDR_ANY
) {
560 if (PIM_DEBUG_PIM_EVENTS
)
561 zlog_debug("%s: RPF not configured for %s",
562 __PRETTY_FUNCTION__
, up
->sg_str
);
566 if (!up
->rpf
.source_nexthop
.interface
) {
567 if (PIM_DEBUG_PIM_EVENTS
)
568 zlog_debug("%s: RP not reachable for %s",
569 __PRETTY_FUNCTION__
, up
->sg_str
);
573 if (PIM_DEBUG_PIM_EVENTS
) {
574 zlog_debug("%s: PIM_UPSTREAM_%s: (S,G) old: %s new: %s",
575 __PRETTY_FUNCTION__
, up
->sg_str
,
576 pim_upstream_state2str(up
->join_state
),
577 pim_upstream_state2str(new_state
));
580 up
->join_state
= new_state
;
581 if (old_state
!= new_state
)
582 up
->state_transition
= pim_time_monotonic_sec();
584 pim_upstream_update_assert_tracking_desired(up
);
586 if (new_state
== PIM_UPSTREAM_JOINED
) {
587 pim_upstream_inherited_olist_decide(pim
, up
);
588 if (old_state
!= PIM_UPSTREAM_JOINED
) {
589 int old_fhr
= PIM_UPSTREAM_FLAG_TEST_FHR(up
->flags
);
591 pim_msdp_up_join_state_changed(pim
, up
);
592 if (pim_upstream_could_register(up
)) {
593 PIM_UPSTREAM_FLAG_SET_FHR(up
->flags
);
595 && PIM_UPSTREAM_FLAG_TEST_SRC_STREAM(
597 pim_upstream_keep_alive_timer_start(
598 up
, pim
->keep_alive_time
);
599 pim_register_join(up
);
602 pim_upstream_send_join(up
);
603 join_timer_start(up
);
609 if (old_state
== PIM_UPSTREAM_JOINED
)
610 pim_msdp_up_join_state_changed(pim
, up
);
612 /* IHR, Trigger SGRpt on *,G IIF to prune S,G from RPT towards
614 If I am RP for G then send S,G prune to its IIF. */
615 if (pim_upstream_is_sg_rpt(up
) && up
->parent
616 && !I_am_RP(pim
, up
->sg
.grp
)) {
617 if (PIM_DEBUG_PIM_TRACE_DETAIL
)
619 "%s: *,G IIF %s S,G IIF %s ",
621 up
->parent
->rpf
.source_nexthop
.interface
?
622 up
->parent
->rpf
.source_nexthop
.interface
->name
624 up
->rpf
.source_nexthop
.interface
?
625 up
->rpf
.source_nexthop
.interface
->name
:
627 pim_jp_agg_single_upstream_send(&up
->parent
->rpf
,
631 pim_jp_agg_single_upstream_send(&up
->rpf
, up
,
637 int pim_upstream_compare(void *arg1
, void *arg2
)
639 const struct pim_upstream
*up1
= (const struct pim_upstream
*)arg1
;
640 const struct pim_upstream
*up2
= (const struct pim_upstream
*)arg2
;
642 if (ntohl(up1
->sg
.grp
.s_addr
) < ntohl(up2
->sg
.grp
.s_addr
))
645 if (ntohl(up1
->sg
.grp
.s_addr
) > ntohl(up2
->sg
.grp
.s_addr
))
648 if (ntohl(up1
->sg
.src
.s_addr
) < ntohl(up2
->sg
.src
.s_addr
))
651 if (ntohl(up1
->sg
.src
.s_addr
) > ntohl(up2
->sg
.src
.s_addr
))
657 void pim_upstream_fill_static_iif(struct pim_upstream
*up
,
658 struct interface
*incoming
)
660 up
->rpf
.source_nexthop
.interface
= incoming
;
662 /* reset other parameters to matched a connected incoming interface */
663 up
->rpf
.source_nexthop
.mrib_nexthop_addr
.family
= AF_INET
;
664 up
->rpf
.source_nexthop
.mrib_nexthop_addr
.u
.prefix4
.s_addr
=
666 up
->rpf
.source_nexthop
.mrib_metric_preference
=
667 ZEBRA_CONNECT_DISTANCE_DEFAULT
;
668 up
->rpf
.source_nexthop
.mrib_route_metric
= 0;
669 up
->rpf
.rpf_addr
.family
= AF_INET
;
670 up
->rpf
.rpf_addr
.u
.prefix4
.s_addr
= PIM_NET_INADDR_ANY
;
674 static struct pim_upstream
*pim_upstream_new(struct pim_instance
*pim
,
675 struct prefix_sg
*sg
,
676 struct interface
*incoming
,
678 struct pim_ifchannel
*ch
)
680 enum pim_rpf_result rpf_result
;
681 struct pim_interface
*pim_ifp
;
682 struct pim_upstream
*up
;
684 up
= XCALLOC(MTYPE_PIM_UPSTREAM
, sizeof(*up
));
687 pim_str_sg_set(sg
, up
->sg_str
);
691 up
= hash_get(pim
->upstream_hash
, up
, hash_alloc_intern
);
692 /* Set up->upstream_addr as INADDR_ANY, if RP is not
693 * configured and retain the upstream data structure
695 if (!pim_rp_set_upstream_addr(pim
, &up
->upstream_addr
, sg
->src
,
698 zlog_debug("%s: Received a (*,G) with no RP configured",
699 __PRETTY_FUNCTION__
);
702 up
->parent
= pim_upstream_find_parent(pim
, up
);
703 if (up
->sg
.src
.s_addr
== INADDR_ANY
) {
704 up
->sources
= list_new();
705 up
->sources
->cmp
= pim_upstream_compare
;
709 pim_upstream_find_new_children(pim
, up
);
712 up
->t_join_timer
= NULL
;
713 up
->t_ka_timer
= NULL
;
714 up
->t_rs_timer
= NULL
;
715 up
->t_msdp_reg_timer
= NULL
;
716 up
->join_state
= PIM_UPSTREAM_NOTJOINED
;
717 up
->reg_state
= PIM_REG_NOINFO
;
718 up
->state_transition
= pim_time_monotonic_sec();
719 up
->channel_oil
= NULL
;
720 up
->sptbit
= PIM_UPSTREAM_SPTBIT_FALSE
;
722 up
->rpf
.source_nexthop
.interface
= NULL
;
723 up
->rpf
.source_nexthop
.mrib_nexthop_addr
.family
= AF_INET
;
724 up
->rpf
.source_nexthop
.mrib_nexthop_addr
.u
.prefix4
.s_addr
=
726 up
->rpf
.source_nexthop
.mrib_metric_preference
=
727 router
->infinite_assert_metric
.metric_preference
;
728 up
->rpf
.source_nexthop
.mrib_route_metric
=
729 router
->infinite_assert_metric
.route_metric
;
730 up
->rpf
.rpf_addr
.family
= AF_INET
;
731 up
->rpf
.rpf_addr
.u
.prefix4
.s_addr
= PIM_NET_INADDR_ANY
;
733 up
->ifchannels
= list_new();
734 up
->ifchannels
->cmp
= (int (*)(void *, void *))pim_ifchannel_compare
;
736 if (up
->sg
.src
.s_addr
!= INADDR_ANY
)
737 wheel_add_item(pim
->upstream_sg_wheel
, up
);
739 if (PIM_UPSTREAM_FLAG_TEST_STATIC_IIF(up
->flags
)) {
740 pim_upstream_fill_static_iif(up
, incoming
);
741 pim_ifp
= up
->rpf
.source_nexthop
.interface
->info
;
743 up
->channel_oil
= pim_channel_oil_add(pim
,
744 &up
->sg
, pim_ifp
->mroute_vif_index
);
745 } else if (up
->upstream_addr
.s_addr
== INADDR_ANY
) {
746 /* Create a dummmy channel oil with incoming ineterface MAXVIFS,
747 * since RP is not configured
749 up
->channel_oil
= pim_channel_oil_add(pim
, &up
->sg
, MAXVIFS
);
752 rpf_result
= pim_rpf_update(pim
, up
, NULL
, 1);
753 if (rpf_result
== PIM_RPF_FAILURE
) {
756 "%s: Attempting to create upstream(%s), Unable to RPF for source",
757 __PRETTY_FUNCTION__
, up
->sg_str
);
758 /* Create a dummmy channel oil with incoming ineterface
759 * MAXVIFS, since RP is not reachable
761 up
->channel_oil
= pim_channel_oil_add(
762 pim
, &up
->sg
, MAXVIFS
);
765 if (up
->rpf
.source_nexthop
.interface
) {
766 pim_ifp
= up
->rpf
.source_nexthop
.interface
->info
;
768 up
->channel_oil
= pim_channel_oil_add(pim
,
769 &up
->sg
, pim_ifp
->mroute_vif_index
);
773 listnode_add_sort(pim
->upstream_list
, up
);
775 if (PIM_DEBUG_TRACE
) {
777 "%s: Created Upstream %s upstream_addr %s ref count %d increment",
778 __PRETTY_FUNCTION__
, up
->sg_str
,
779 inet_ntoa(up
->upstream_addr
), up
->ref_count
);
785 struct pim_upstream
*pim_upstream_find(struct pim_instance
*pim
,
786 struct prefix_sg
*sg
)
788 struct pim_upstream lookup
;
789 struct pim_upstream
*up
= NULL
;
792 up
= hash_lookup(pim
->upstream_hash
, &lookup
);
796 struct pim_upstream
*pim_upstream_find_or_add(struct prefix_sg
*sg
,
797 struct interface
*incoming
,
798 int flags
, const char *name
)
800 struct pim_upstream
*up
;
801 struct pim_interface
*pim_ifp
;
803 pim_ifp
= incoming
->info
;
805 up
= pim_upstream_find(pim_ifp
->pim
, sg
);
808 if (!(up
->flags
& flags
)) {
813 "%s(%s): upstream %s ref count %d increment",
814 __PRETTY_FUNCTION__
, name
, up
->sg_str
,
818 up
= pim_upstream_add(pim_ifp
->pim
, sg
, incoming
, flags
, name
,
824 void pim_upstream_ref(struct pim_upstream
*up
, int flags
, const char *name
)
829 zlog_debug("%s(%s): upstream %s ref count %d increment",
830 __PRETTY_FUNCTION__
, name
, up
->sg_str
,
834 struct pim_upstream
*pim_upstream_add(struct pim_instance
*pim
,
835 struct prefix_sg
*sg
,
836 struct interface
*incoming
, int flags
,
838 struct pim_ifchannel
*ch
)
840 struct pim_upstream
*up
= NULL
;
843 up
= pim_upstream_find(pim
, sg
);
845 pim_upstream_ref(up
, flags
, name
);
848 up
= pim_upstream_new(pim
, sg
, incoming
, flags
, ch
);
851 if (PIM_DEBUG_TRACE
) {
853 char buf
[PREFIX2STR_BUFFER
];
854 prefix2str(&up
->rpf
.rpf_addr
, buf
, sizeof(buf
));
855 zlog_debug("%s(%s): %s, iif %s (%s) found: %d: ref_count: %d",
856 __PRETTY_FUNCTION__
, name
,
857 up
->sg_str
, buf
, up
->rpf
.source_nexthop
.interface
?
858 up
->rpf
.source_nexthop
.interface
->name
: "Unknown" ,
859 found
, up
->ref_count
);
861 zlog_debug("%s(%s): (%s) failure to create",
862 __PRETTY_FUNCTION__
, name
,
863 pim_str_sg_dump(sg
));
870 * Passed in up must be the upstream for ch. starch is NULL if no
873 int pim_upstream_evaluate_join_desired_interface(struct pim_upstream
*up
,
874 struct pim_ifchannel
*ch
,
875 struct pim_ifchannel
*starch
)
878 if (PIM_IF_FLAG_TEST_S_G_RPT(ch
->flags
))
881 if (!pim_macro_ch_lost_assert(ch
)
882 && pim_macro_chisin_joins_or_include(ch
))
890 if (PIM_IF_FLAG_TEST_S_G_RPT(starch
->upstream
->flags
))
893 if (!pim_macro_ch_lost_assert(starch
)
894 && pim_macro_chisin_joins_or_include(starch
))
902 Evaluate JoinDesired(S,G):
904 JoinDesired(S,G) is true if there is a downstream (S,G) interface I
907 inherited_olist(S,G) =
908 joins(S,G) (+) pim_include(S,G) (-) lost_assert(S,G)
910 JoinDesired(S,G) may be affected by changes in the following:
912 pim_ifp->primary_address
914 ch->ifassert_winner_metric
916 ch->local_ifmembership
918 ch->upstream->rpf.source_nexthop.mrib_metric_preference
919 ch->upstream->rpf.source_nexthop.mrib_route_metric
920 ch->upstream->rpf.source_nexthop.interface
922 See also pim_upstream_update_join_desired() below.
924 int pim_upstream_evaluate_join_desired(struct pim_instance
*pim
,
925 struct pim_upstream
*up
)
927 struct interface
*ifp
;
928 struct pim_ifchannel
*ch
, *starch
;
929 struct pim_upstream
*starup
= up
->parent
;
932 FOR_ALL_INTERFACES (pim
->vrf
, ifp
) {
936 ch
= pim_ifchannel_find(ifp
, &up
->sg
);
939 starch
= pim_ifchannel_find(ifp
, &starup
->sg
);
946 ret
+= pim_upstream_evaluate_join_desired_interface(up
, ch
,
948 } /* scan iface channel list */
950 return ret
; /* false */
954 See also pim_upstream_evaluate_join_desired() above.
956 void pim_upstream_update_join_desired(struct pim_instance
*pim
,
957 struct pim_upstream
*up
)
959 int was_join_desired
; /* boolean */
960 int is_join_desired
; /* boolean */
962 was_join_desired
= PIM_UPSTREAM_FLAG_TEST_DR_JOIN_DESIRED(up
->flags
);
964 is_join_desired
= pim_upstream_evaluate_join_desired(pim
, up
);
966 PIM_UPSTREAM_FLAG_SET_DR_JOIN_DESIRED(up
->flags
);
968 PIM_UPSTREAM_FLAG_UNSET_DR_JOIN_DESIRED(up
->flags
);
970 /* switched from false to true */
971 if (is_join_desired
&& (up
->join_state
== PIM_UPSTREAM_NOTJOINED
)) {
972 pim_upstream_switch(pim
, up
, PIM_UPSTREAM_JOINED
);
976 /* switched from true to false */
977 if (!is_join_desired
&& was_join_desired
) {
978 pim_upstream_switch(pim
, up
, PIM_UPSTREAM_NOTJOINED
);
984 RFC 4601 4.5.7. Sending (S,G) Join/Prune Messages
985 Transitions from Joined State
986 RPF'(S,G) GenID changes
988 The upstream (S,G) state machine remains in Joined state. If the
989 Join Timer is set to expire in more than t_override seconds, reset
990 it so that it expires after t_override seconds.
992 void pim_upstream_rpf_genid_changed(struct pim_instance
*pim
,
993 struct in_addr neigh_addr
)
995 struct listnode
*up_node
;
996 struct listnode
*up_nextnode
;
997 struct pim_upstream
*up
;
1000 * Scan all (S,G) upstreams searching for RPF'(S,G)=neigh_addr
1002 for (ALL_LIST_ELEMENTS(pim
->upstream_list
, up_node
, up_nextnode
, up
)) {
1004 if (PIM_DEBUG_TRACE
) {
1005 char neigh_str
[INET_ADDRSTRLEN
];
1006 char rpf_addr_str
[PREFIX_STRLEN
];
1007 pim_inet4_dump("<neigh?>", neigh_addr
, neigh_str
,
1009 pim_addr_dump("<rpf?>", &up
->rpf
.rpf_addr
, rpf_addr_str
,
1010 sizeof(rpf_addr_str
));
1012 "%s: matching neigh=%s against upstream (S,G)=%s[%s] joined=%d rpf_addr=%s",
1013 __PRETTY_FUNCTION__
, neigh_str
, up
->sg_str
,
1015 up
->join_state
== PIM_UPSTREAM_JOINED
,
1019 /* consider only (S,G) upstream in Joined state */
1020 if (up
->join_state
!= PIM_UPSTREAM_JOINED
)
1023 /* match RPF'(S,G)=neigh_addr */
1024 if (up
->rpf
.rpf_addr
.u
.prefix4
.s_addr
!= neigh_addr
.s_addr
)
1027 pim_upstream_join_timer_decrease_to_t_override(
1028 "RPF'(S,G) GenID change", up
);
1033 void pim_upstream_rpf_interface_changed(struct pim_upstream
*up
,
1034 struct interface
*old_rpf_ifp
)
1036 struct listnode
*chnode
;
1037 struct listnode
*chnextnode
;
1038 struct pim_ifchannel
*ch
;
1040 /* search all ifchannels */
1041 for (ALL_LIST_ELEMENTS(up
->ifchannels
, chnode
, chnextnode
, ch
)) {
1042 if (ch
->ifassert_state
== PIM_IFASSERT_I_AM_LOSER
) {
1044 /* RPF_interface(S) was NOT I */
1045 (old_rpf_ifp
== ch
->interface
) &&
1046 /* RPF_interface(S) stopped being I */
1047 (ch
->upstream
->rpf
.source_nexthop
1049 (ch
->upstream
->rpf
.source_nexthop
1050 .interface
!= ch
->interface
)) {
1051 assert_action_a5(ch
);
1053 } /* PIM_IFASSERT_I_AM_LOSER */
1055 pim_ifchannel_update_assert_tracking_desired(ch
);
1059 void pim_upstream_update_could_assert(struct pim_upstream
*up
)
1061 struct listnode
*chnode
;
1062 struct listnode
*chnextnode
;
1063 struct pim_ifchannel
*ch
;
1065 /* scan per-interface (S,G) state */
1066 for (ALL_LIST_ELEMENTS(up
->ifchannels
, chnode
, chnextnode
, ch
)) {
1067 pim_ifchannel_update_could_assert(ch
);
1068 } /* scan iface channel list */
1071 void pim_upstream_update_my_assert_metric(struct pim_upstream
*up
)
1073 struct listnode
*chnode
;
1074 struct listnode
*chnextnode
;
1075 struct pim_ifchannel
*ch
;
1077 /* scan per-interface (S,G) state */
1078 for (ALL_LIST_ELEMENTS(up
->ifchannels
, chnode
, chnextnode
, ch
)) {
1079 pim_ifchannel_update_my_assert_metric(ch
);
1081 } /* scan iface channel list */
1084 static void pim_upstream_update_assert_tracking_desired(struct pim_upstream
*up
)
1086 struct listnode
*chnode
;
1087 struct listnode
*chnextnode
;
1088 struct pim_interface
*pim_ifp
;
1089 struct pim_ifchannel
*ch
;
1091 /* scan per-interface (S,G) state */
1092 for (ALL_LIST_ELEMENTS(up
->ifchannels
, chnode
, chnextnode
, ch
)) {
1095 pim_ifp
= ch
->interface
->info
;
1099 pim_ifchannel_update_assert_tracking_desired(ch
);
1101 } /* scan iface channel list */
1104 /* When kat is stopped CouldRegister goes to false so we need to
1105 * transition the (S, G) on FHR to NI state and remove reg tunnel
1107 static void pim_upstream_fhr_kat_expiry(struct pim_instance
*pim
,
1108 struct pim_upstream
*up
)
1110 if (!PIM_UPSTREAM_FLAG_TEST_FHR(up
->flags
))
1113 if (PIM_DEBUG_TRACE
)
1114 zlog_debug("kat expired on %s; clear fhr reg state",
1117 /* stop reg-stop timer */
1118 THREAD_OFF(up
->t_rs_timer
);
1119 /* remove regiface from the OIL if it is there*/
1120 pim_channel_del_oif(up
->channel_oil
, pim
->regiface
,
1121 PIM_OIF_FLAG_PROTO_PIM
);
1122 /* clear the register state */
1123 up
->reg_state
= PIM_REG_NOINFO
;
1124 PIM_UPSTREAM_FLAG_UNSET_FHR(up
->flags
);
1127 /* When kat is started CouldRegister can go to true. And if it does we
1128 * need to transition the (S, G) on FHR to JOINED state and add reg tunnel
1130 static void pim_upstream_fhr_kat_start(struct pim_upstream
*up
)
1132 if (pim_upstream_could_register(up
)) {
1133 if (PIM_DEBUG_TRACE
)
1135 "kat started on %s; set fhr reg state to joined",
1138 PIM_UPSTREAM_FLAG_SET_FHR(up
->flags
);
1139 if (up
->reg_state
== PIM_REG_NOINFO
)
1140 pim_register_join(up
);
1145 * On an RP, the PMBR value must be cleared when the
1146 * Keepalive Timer expires
1147 * KAT expiry indicates that flow is inactive. If the flow was created or
1148 * maintained by activity now is the time to deref it.
1150 struct pim_upstream
*pim_upstream_keep_alive_timer_proc(
1151 struct pim_upstream
*up
)
1153 struct pim_instance
*pim
;
1155 pim
= up
->channel_oil
->pim
;
1157 if (PIM_UPSTREAM_FLAG_TEST_DISABLE_KAT_EXPIRY(up
->flags
)) {
1158 /* if the router is a PIM vxlan encapsulator we prevent expiry
1159 * of KAT as the mroute is pre-setup without any traffic
1161 pim_upstream_keep_alive_timer_start(up
, pim
->keep_alive_time
);
1165 if (I_am_RP(pim
, up
->sg
.grp
)) {
1166 pim_br_clear_pmbr(&up
->sg
);
1168 * We need to do more here :)
1169 * But this is the start.
1173 /* source is no longer active - pull the SA from MSDP's cache */
1174 pim_msdp_sa_local_del(pim
, &up
->sg
);
1176 /* if entry was created because of activity we need to deref it */
1177 if (PIM_UPSTREAM_FLAG_TEST_SRC_STREAM(up
->flags
)) {
1178 pim_upstream_fhr_kat_expiry(pim
, up
);
1179 if (PIM_DEBUG_TRACE
)
1181 "kat expired on %s[%s]; remove stream reference",
1182 up
->sg_str
, pim
->vrf
->name
);
1183 PIM_UPSTREAM_FLAG_UNSET_SRC_STREAM(up
->flags
);
1184 up
= pim_upstream_del(pim
, up
, __PRETTY_FUNCTION__
);
1185 } else if (PIM_UPSTREAM_FLAG_TEST_SRC_LHR(up
->flags
)) {
1186 struct pim_upstream
*parent
= up
->parent
;
1188 PIM_UPSTREAM_FLAG_UNSET_SRC_LHR(up
->flags
);
1189 up
= pim_upstream_del(pim
, up
, __PRETTY_FUNCTION__
);
1192 pim_jp_agg_single_upstream_send(&parent
->rpf
, parent
,
1199 static int pim_upstream_keep_alive_timer(struct thread
*t
)
1201 struct pim_upstream
*up
;
1205 pim_upstream_keep_alive_timer_proc(up
);
1209 void pim_upstream_keep_alive_timer_start(struct pim_upstream
*up
, uint32_t time
)
1211 if (!PIM_UPSTREAM_FLAG_TEST_SRC_STREAM(up
->flags
)) {
1212 if (PIM_DEBUG_TRACE
)
1213 zlog_debug("kat start on %s with no stream reference",
1216 THREAD_OFF(up
->t_ka_timer
);
1217 thread_add_timer(router
->master
, pim_upstream_keep_alive_timer
, up
,
1218 time
, &up
->t_ka_timer
);
1220 /* any time keepalive is started against a SG we will have to
1221 * re-evaluate our active source database */
1222 pim_msdp_sa_local_update(up
);
1225 /* MSDP on RP needs to know if a source is registerable to this RP */
1226 static int pim_upstream_msdp_reg_timer(struct thread
*t
)
1228 struct pim_upstream
*up
= THREAD_ARG(t
);
1229 struct pim_instance
*pim
= up
->channel_oil
->pim
;
1231 /* source is no longer active - pull the SA from MSDP's cache */
1232 pim_msdp_sa_local_del(pim
, &up
->sg
);
1235 void pim_upstream_msdp_reg_timer_start(struct pim_upstream
*up
)
1237 THREAD_OFF(up
->t_msdp_reg_timer
);
1238 thread_add_timer(router
->master
, pim_upstream_msdp_reg_timer
, up
,
1239 PIM_MSDP_REG_RXED_PERIOD
, &up
->t_msdp_reg_timer
);
1241 pim_msdp_sa_local_update(up
);
1245 * 4.2.1 Last-Hop Switchover to the SPT
1247 * In Sparse-Mode PIM, last-hop routers join the shared tree towards the
1248 * RP. Once traffic from sources to joined groups arrives at a last-hop
1249 * router, it has the option of switching to receive the traffic on a
1250 * shortest path tree (SPT).
1252 * The decision for a router to switch to the SPT is controlled as
1256 * CheckSwitchToSpt(S,G) {
1257 * if ( ( pim_include(*,G) (-) pim_exclude(S,G)
1258 * (+) pim_include(S,G) != NULL )
1259 * AND SwitchToSptDesired(S,G) ) {
1260 * # Note: Restarting the KAT will result in the SPT switch
1261 * set KeepaliveTimer(S,G) to Keepalive_Period
1265 * SwitchToSptDesired(S,G) is a policy function that is implementation
1266 * defined. An "infinite threshold" policy can be implemented by making
1267 * SwitchToSptDesired(S,G) return false all the time. A "switch on
1268 * first packet" policy can be implemented by making
1269 * SwitchToSptDesired(S,G) return true once a single packet has been
1270 * received for the source and group.
1272 int pim_upstream_switch_to_spt_desired(struct pim_instance
*pim
,
1273 struct prefix_sg
*sg
)
1275 if (I_am_RP(pim
, sg
->grp
))
1281 int pim_upstream_is_sg_rpt(struct pim_upstream
*up
)
1283 struct listnode
*chnode
;
1284 struct pim_ifchannel
*ch
;
1286 for (ALL_LIST_ELEMENTS_RO(up
->ifchannels
, chnode
, ch
)) {
1287 if (PIM_IF_FLAG_TEST_S_G_RPT(ch
->flags
))
1294 * After receiving a packet set SPTbit:
1296 * Update_SPTbit(S,G,iif) {
1297 * if ( iif == RPF_interface(S)
1298 * AND JoinDesired(S,G) == TRUE
1299 * AND ( DirectlyConnected(S) == TRUE
1300 * OR RPF_interface(S) != RPF_interface(RP(G))
1301 * OR inherited_olist(S,G,rpt) == NULL
1302 * OR ( ( RPF'(S,G) == RPF'(*,G) ) AND
1303 * ( RPF'(S,G) != NULL ) )
1304 * OR ( I_Am_Assert_Loser(S,G,iif) ) {
1305 * Set SPTbit(S,G) to TRUE
1309 void pim_upstream_set_sptbit(struct pim_upstream
*up
,
1310 struct interface
*incoming
)
1312 struct pim_upstream
*starup
= up
->parent
;
1314 // iif == RPF_interfvace(S)
1315 if (up
->rpf
.source_nexthop
.interface
!= incoming
) {
1316 if (PIM_DEBUG_TRACE
)
1318 "%s: Incoming Interface: %s is different than RPF_interface(S) %s",
1319 __PRETTY_FUNCTION__
, incoming
->name
,
1320 up
->rpf
.source_nexthop
.interface
->name
);
1324 // AND JoinDesired(S,G) == TRUE
1325 if (!pim_upstream_evaluate_join_desired(up
->channel_oil
->pim
, up
)) {
1326 if (PIM_DEBUG_TRACE
)
1327 zlog_debug("%s: %s Join is not Desired",
1328 __PRETTY_FUNCTION__
, up
->sg_str
);
1332 // DirectlyConnected(S) == TRUE
1333 if (pim_if_connected_to_source(up
->rpf
.source_nexthop
.interface
,
1335 if (PIM_DEBUG_TRACE
)
1336 zlog_debug("%s: %s is directly connected to the source",
1337 __PRETTY_FUNCTION__
, up
->sg_str
);
1338 up
->sptbit
= PIM_UPSTREAM_SPTBIT_TRUE
;
1342 // OR RPF_interface(S) != RPF_interface(RP(G))
1344 || up
->rpf
.source_nexthop
1345 .interface
!= starup
->rpf
.source_nexthop
.interface
) {
1346 struct pim_upstream
*starup
= up
->parent
;
1348 if (PIM_DEBUG_TRACE
)
1350 "%s: %s RPF_interface(S) != RPF_interface(RP(G))",
1351 __PRETTY_FUNCTION__
, up
->sg_str
);
1352 up
->sptbit
= PIM_UPSTREAM_SPTBIT_TRUE
;
1354 pim_jp_agg_single_upstream_send(&starup
->rpf
, starup
, true);
1358 // OR inherited_olist(S,G,rpt) == NULL
1359 if (pim_upstream_is_sg_rpt(up
)
1360 && pim_upstream_empty_inherited_olist(up
)) {
1361 if (PIM_DEBUG_TRACE
)
1362 zlog_debug("%s: %s OR inherited_olist(S,G,rpt) == NULL",
1363 __PRETTY_FUNCTION__
, up
->sg_str
);
1364 up
->sptbit
= PIM_UPSTREAM_SPTBIT_TRUE
;
1368 // OR ( ( RPF'(S,G) == RPF'(*,G) ) AND
1369 // ( RPF'(S,G) != NULL ) )
1370 if (up
->parent
&& pim_rpf_is_same(&up
->rpf
, &up
->parent
->rpf
)) {
1371 if (PIM_DEBUG_TRACE
)
1372 zlog_debug("%s: %s RPF'(S,G) is the same as RPF'(*,G)",
1373 __PRETTY_FUNCTION__
, up
->sg_str
);
1374 up
->sptbit
= PIM_UPSTREAM_SPTBIT_TRUE
;
1381 const char *pim_upstream_state2str(enum pim_upstream_state join_state
)
1383 switch (join_state
) {
1384 case PIM_UPSTREAM_NOTJOINED
:
1387 case PIM_UPSTREAM_JOINED
:
1394 const char *pim_reg_state2str(enum pim_reg_state reg_state
, char *state_str
)
1396 switch (reg_state
) {
1397 case PIM_REG_NOINFO
:
1398 strcpy(state_str
, "RegNoInfo");
1401 strcpy(state_str
, "RegJoined");
1403 case PIM_REG_JOIN_PENDING
:
1404 strcpy(state_str
, "RegJoinPend");
1407 strcpy(state_str
, "RegPrune");
1410 strcpy(state_str
, "RegUnknown");
1415 static int pim_upstream_register_stop_timer(struct thread
*t
)
1417 struct pim_interface
*pim_ifp
;
1418 struct pim_instance
*pim
;
1419 struct pim_upstream
*up
;
1421 pim
= up
->channel_oil
->pim
;
1423 if (PIM_DEBUG_TRACE
) {
1424 char state_str
[PIM_REG_STATE_STR_LEN
];
1425 zlog_debug("%s: (S,G)=%s[%s] upstream register stop timer %s",
1426 __PRETTY_FUNCTION__
, up
->sg_str
, pim
->vrf
->name
,
1427 pim_reg_state2str(up
->reg_state
, state_str
));
1430 switch (up
->reg_state
) {
1431 case PIM_REG_JOIN_PENDING
:
1432 up
->reg_state
= PIM_REG_JOIN
;
1433 pim_channel_add_oif(up
->channel_oil
, pim
->regiface
,
1434 PIM_OIF_FLAG_PROTO_PIM
);
1435 pim_vxlan_update_sg_reg_state(pim
, up
, TRUE
/*reg_join*/);
1440 if (!up
->rpf
.source_nexthop
.interface
) {
1441 if (PIM_DEBUG_TRACE
)
1442 zlog_debug("%s: up %s RPF is not present",
1443 __PRETTY_FUNCTION__
, up
->sg_str
);
1447 pim_ifp
= up
->rpf
.source_nexthop
.interface
->info
;
1449 if (PIM_DEBUG_TRACE
)
1451 "%s: Interface: %s is not configured for pim",
1452 __PRETTY_FUNCTION__
,
1453 up
->rpf
.source_nexthop
.interface
->name
);
1456 up
->reg_state
= PIM_REG_JOIN_PENDING
;
1457 pim_upstream_start_register_stop_timer(up
, 1);
1459 if (((up
->channel_oil
->cc
.lastused
/ 100)
1460 > pim
->keep_alive_time
)
1461 && (I_am_RP(pim_ifp
->pim
, up
->sg
.grp
))) {
1462 if (PIM_DEBUG_TRACE
)
1464 "%s: Stop sending the register, because I am the RP and we haven't seen a packet in a while",
1465 __PRETTY_FUNCTION__
);
1468 pim_null_register_send(up
);
1477 void pim_upstream_start_register_stop_timer(struct pim_upstream
*up
,
1482 THREAD_TIMER_OFF(up
->t_rs_timer
);
1484 if (!null_register
) {
1485 uint32_t lower
= (0.5 * PIM_REGISTER_SUPPRESSION_PERIOD
);
1486 uint32_t upper
= (1.5 * PIM_REGISTER_SUPPRESSION_PERIOD
);
1487 time
= lower
+ (random() % (upper
- lower
+ 1))
1488 - PIM_REGISTER_PROBE_PERIOD
;
1490 time
= PIM_REGISTER_PROBE_PERIOD
;
1492 if (PIM_DEBUG_TRACE
) {
1494 "%s: (S,G)=%s Starting upstream register stop timer %d",
1495 __PRETTY_FUNCTION__
, up
->sg_str
, time
);
1497 thread_add_timer(router
->master
, pim_upstream_register_stop_timer
, up
,
1498 time
, &up
->t_rs_timer
);
1501 int pim_upstream_inherited_olist_decide(struct pim_instance
*pim
,
1502 struct pim_upstream
*up
)
1504 struct interface
*ifp
;
1505 struct pim_interface
*pim_ifp
= NULL
;
1506 struct pim_ifchannel
*ch
, *starch
;
1507 struct pim_upstream
*starup
= up
->parent
;
1508 int output_intf
= 0;
1510 if (up
->rpf
.source_nexthop
.interface
)
1511 pim_ifp
= up
->rpf
.source_nexthop
.interface
->info
;
1513 if (PIM_DEBUG_TRACE
)
1514 zlog_debug("%s: up %s RPF is not present",
1515 __PRETTY_FUNCTION__
, up
->sg_str
);
1517 if (pim_ifp
&& !up
->channel_oil
)
1518 up
->channel_oil
= pim_channel_oil_add(
1519 pim
, &up
->sg
, pim_ifp
->mroute_vif_index
);
1521 FOR_ALL_INTERFACES (pim
->vrf
, ifp
) {
1525 ch
= pim_ifchannel_find(ifp
, &up
->sg
);
1528 starch
= pim_ifchannel_find(ifp
, &starup
->sg
);
1535 if (pim_upstream_evaluate_join_desired_interface(up
, ch
,
1537 int flag
= PIM_OIF_FLAG_PROTO_PIM
;
1540 flag
= PIM_OIF_FLAG_PROTO_STAR
;
1542 pim_channel_add_oif(up
->channel_oil
, ifp
, flag
);
1551 * For a given upstream, determine the inherited_olist
1554 * inherited_olist(S,G,rpt) =
1555 * ( joins(*,*,RP(G)) (+) joins(*,G) (-) prunes(S,G,rpt) )
1556 * (+) ( pim_include(*,G) (-) pim_exclude(S,G))
1557 * (-) ( lost_assert(*,G) (+) lost_assert(S,G,rpt) )
1559 * inherited_olist(S,G) =
1560 * inherited_olist(S,G,rpt) (+)
1561 * joins(S,G) (+) pim_include(S,G) (-) lost_assert(S,G)
1563 * return 1 if there are any output interfaces
1564 * return 0 if there are not any output interfaces
1566 int pim_upstream_inherited_olist(struct pim_instance
*pim
,
1567 struct pim_upstream
*up
)
1569 int output_intf
= pim_upstream_inherited_olist_decide(pim
, up
);
1572 * If we have output_intf switch state to Join and work like normal
1573 * If we don't have an output_intf that means we are probably a
1574 * switch on a stick so turn on forwarding to just accept the
1575 * incoming packets so we don't bother the other stuff!
1578 pim_upstream_switch(pim
, up
, PIM_UPSTREAM_JOINED
);
1585 int pim_upstream_empty_inherited_olist(struct pim_upstream
*up
)
1587 return pim_channel_oil_empty(up
->channel_oil
);
1591 * When we have a new neighbor,
1592 * find upstreams that don't have their rpf_addr
1593 * set and see if the new neighbor allows
1594 * the join to be sent
1596 void pim_upstream_find_new_rpf(struct pim_instance
*pim
)
1598 struct listnode
*up_node
;
1599 struct listnode
*up_nextnode
;
1600 struct pim_upstream
*up
;
1603 * Scan all (S,G) upstreams searching for RPF'(S,G)=neigh_addr
1605 for (ALL_LIST_ELEMENTS(pim
->upstream_list
, up_node
, up_nextnode
, up
)) {
1606 if (up
->upstream_addr
.s_addr
== INADDR_ANY
) {
1607 if (PIM_DEBUG_TRACE
)
1609 "%s: RP not configured for Upstream %s",
1610 __PRETTY_FUNCTION__
, up
->sg_str
);
1614 if (pim_rpf_addr_is_inaddr_any(&up
->rpf
)) {
1615 if (PIM_DEBUG_TRACE
)
1617 "%s: Upstream %s without a path to send join, checking",
1618 __PRETTY_FUNCTION__
, up
->sg_str
);
1619 pim_rpf_update(pim
, up
, NULL
, 1);
1624 unsigned int pim_upstream_hash_key(void *arg
)
1626 struct pim_upstream
*up
= (struct pim_upstream
*)arg
;
1628 return jhash_2words(up
->sg
.src
.s_addr
, up
->sg
.grp
.s_addr
, 0);
1631 void pim_upstream_terminate(struct pim_instance
*pim
)
1633 struct pim_upstream
*up
;
1635 if (pim
->upstream_list
) {
1636 while (pim
->upstream_list
->count
) {
1637 up
= listnode_head(pim
->upstream_list
);
1638 pim_upstream_del(pim
, up
, __PRETTY_FUNCTION__
);
1641 list_delete(&pim
->upstream_list
);
1644 if (pim
->upstream_hash
)
1645 hash_free(pim
->upstream_hash
);
1646 pim
->upstream_hash
= NULL
;
1648 if (pim
->upstream_sg_wheel
)
1649 wheel_delete(pim
->upstream_sg_wheel
);
1650 pim
->upstream_sg_wheel
= NULL
;
1653 bool pim_upstream_equal(const void *arg1
, const void *arg2
)
1655 const struct pim_upstream
*up1
= (const struct pim_upstream
*)arg1
;
1656 const struct pim_upstream
*up2
= (const struct pim_upstream
*)arg2
;
1658 if ((up1
->sg
.grp
.s_addr
== up2
->sg
.grp
.s_addr
)
1659 && (up1
->sg
.src
.s_addr
== up2
->sg
.src
.s_addr
))
1665 /* rfc4601:section-4.2:"Data Packet Forwarding Rules" defines
1666 * the cases where kat has to be restarted on rxing traffic -
1668 * if( DirectlyConnected(S) == TRUE AND iif == RPF_interface(S) ) {
1669 * set KeepaliveTimer(S,G) to Keepalive_Period
1670 * # Note: a register state transition or UpstreamJPState(S,G)
1671 * # transition may happen as a result of restarting
1672 * # KeepaliveTimer, and must be dealt with here.
1674 * if( iif == RPF_interface(S) AND UpstreamJPState(S,G) == Joined AND
1675 * inherited_olist(S,G) != NULL ) {
1676 * set KeepaliveTimer(S,G) to Keepalive_Period
1679 static bool pim_upstream_kat_start_ok(struct pim_upstream
*up
)
1681 struct pim_instance
*pim
= up
->channel_oil
->pim
;
1683 /* "iif == RPF_interface(S)" check has to be done by the kernel or hw
1684 * so we will skip that here */
1685 if (up
->rpf
.source_nexthop
.interface
&&
1686 pim_if_connected_to_source(up
->rpf
.source_nexthop
.interface
,
1691 if ((up
->join_state
== PIM_UPSTREAM_JOINED
)
1692 && !pim_upstream_empty_inherited_olist(up
)) {
1693 /* XXX: I have added this RP check just for 3.2 and it's a
1695 * what rfc-4601 says. Till now we were only running KAT on FHR
1697 * there is some angst around making the change to run it all
1699 * maintain the (S, G) state. This is tracked via CM-13601 and
1701 * removed to handle spt turn-arounds correctly in a 3-tier clos
1703 if (I_am_RP(pim
, up
->sg
.grp
))
1711 * Code to check and see if we've received packets on a S,G mroute
1712 * and if so to set the SPT bit appropriately
1714 static void pim_upstream_sg_running(void *arg
)
1716 struct pim_upstream
*up
= (struct pim_upstream
*)arg
;
1717 struct pim_instance
*pim
= up
->channel_oil
->pim
;
1719 // No packet can have arrived here if this is the case
1720 if (!up
->channel_oil
->installed
) {
1721 if (PIM_DEBUG_TRACE
)
1722 zlog_debug("%s: %s%s is not installed in mroute",
1723 __PRETTY_FUNCTION__
, up
->sg_str
,
1729 * This is a bit of a hack
1730 * We've noted that we should rescan but
1731 * we've missed the window for doing so in
1732 * pim_zebra.c for some reason. I am
1733 * only doing this at this point in time
1734 * to get us up and working for the moment
1736 if (up
->channel_oil
->oil_inherited_rescan
) {
1737 if (PIM_DEBUG_TRACE
)
1739 "%s: Handling unscanned inherited_olist for %s[%s]",
1740 __PRETTY_FUNCTION__
, up
->sg_str
,
1742 pim_upstream_inherited_olist_decide(pim
, up
);
1743 up
->channel_oil
->oil_inherited_rescan
= 0;
1745 pim_mroute_update_counters(up
->channel_oil
);
1747 // Have we seen packets?
1748 if ((up
->channel_oil
->cc
.oldpktcnt
>= up
->channel_oil
->cc
.pktcnt
)
1749 && (up
->channel_oil
->cc
.lastused
/ 100 > 30)) {
1750 if (PIM_DEBUG_TRACE
) {
1752 "%s[%s]: %s old packet count is equal or lastused is greater than 30, (%ld,%ld,%lld)",
1753 __PRETTY_FUNCTION__
, up
->sg_str
, pim
->vrf
->name
,
1754 up
->channel_oil
->cc
.oldpktcnt
,
1755 up
->channel_oil
->cc
.pktcnt
,
1756 up
->channel_oil
->cc
.lastused
/ 100);
1761 if (pim_upstream_kat_start_ok(up
)) {
1762 /* Add a source reference to the stream if
1763 * one doesn't already exist */
1764 if (!PIM_UPSTREAM_FLAG_TEST_SRC_STREAM(up
->flags
)) {
1765 if (PIM_DEBUG_TRACE
)
1767 "source reference created on kat restart %s[%s]",
1768 up
->sg_str
, pim
->vrf
->name
);
1770 pim_upstream_ref(up
, PIM_UPSTREAM_FLAG_MASK_SRC_STREAM
,
1771 __PRETTY_FUNCTION__
);
1772 PIM_UPSTREAM_FLAG_SET_SRC_STREAM(up
->flags
);
1773 pim_upstream_fhr_kat_start(up
);
1775 pim_upstream_keep_alive_timer_start(up
, pim
->keep_alive_time
);
1776 } else if (PIM_UPSTREAM_FLAG_TEST_SRC_LHR(up
->flags
))
1777 pim_upstream_keep_alive_timer_start(up
, pim
->keep_alive_time
);
1779 if ((up
->sptbit
!= PIM_UPSTREAM_SPTBIT_TRUE
) &&
1780 (up
->rpf
.source_nexthop
.interface
)) {
1781 pim_upstream_set_sptbit(up
, up
->rpf
.source_nexthop
.interface
);
1786 void pim_upstream_add_lhr_star_pimreg(struct pim_instance
*pim
)
1788 struct pim_upstream
*up
;
1789 struct listnode
*node
;
1791 for (ALL_LIST_ELEMENTS_RO(pim
->upstream_list
, node
, up
)) {
1792 if (up
->sg
.src
.s_addr
!= INADDR_ANY
)
1795 if (!PIM_UPSTREAM_FLAG_TEST_SRC_IGMP(up
->flags
))
1798 pim_channel_add_oif(up
->channel_oil
, pim
->regiface
,
1799 PIM_OIF_FLAG_PROTO_IGMP
);
1803 void pim_upstream_spt_prefix_list_update(struct pim_instance
*pim
,
1804 struct prefix_list
*pl
)
1806 const char *pname
= prefix_list_name(pl
);
1808 if (pim
->spt
.plist
&& strcmp(pim
->spt
.plist
, pname
) == 0) {
1809 pim_upstream_remove_lhr_star_pimreg(pim
, pname
);
1814 * nlist -> The new prefix list
1816 * Per Group Application of pimreg to the OIL
1817 * If the prefix list tells us DENY then
1818 * we need to Switchover to SPT immediate
1819 * so add the pimreg.
1820 * If the prefix list tells us to ACCEPT than
1821 * we need to Never do the SPT so remove
1825 void pim_upstream_remove_lhr_star_pimreg(struct pim_instance
*pim
,
1828 struct pim_upstream
*up
;
1829 struct listnode
*node
;
1830 struct prefix_list
*np
;
1832 enum prefix_list_type apply_new
;
1834 np
= prefix_list_lookup(AFI_IP
, nlist
);
1837 g
.prefixlen
= IPV4_MAX_PREFIXLEN
;
1839 for (ALL_LIST_ELEMENTS_RO(pim
->upstream_list
, node
, up
)) {
1840 if (up
->sg
.src
.s_addr
!= INADDR_ANY
)
1843 if (!PIM_UPSTREAM_FLAG_TEST_SRC_IGMP(up
->flags
))
1847 pim_channel_del_oif(up
->channel_oil
, pim
->regiface
,
1848 PIM_OIF_FLAG_PROTO_IGMP
);
1851 g
.u
.prefix4
= up
->sg
.grp
;
1852 apply_new
= prefix_list_apply(np
, &g
);
1853 if (apply_new
== PREFIX_DENY
)
1854 pim_channel_add_oif(up
->channel_oil
, pim
->regiface
,
1855 PIM_OIF_FLAG_PROTO_IGMP
);
1857 pim_channel_del_oif(up
->channel_oil
, pim
->regiface
,
1858 PIM_OIF_FLAG_PROTO_IGMP
);
1862 void pim_upstream_init(struct pim_instance
*pim
)
1866 snprintf(name
, 64, "PIM %s Timer Wheel",
1868 pim
->upstream_sg_wheel
=
1869 wheel_init(router
->master
, 31000, 100, pim_upstream_hash_key
,
1870 pim_upstream_sg_running
, name
);
1872 snprintf(name
, 64, "PIM %s Upstream Hash",
1874 pim
->upstream_hash
= hash_create_size(8192, pim_upstream_hash_key
,
1875 pim_upstream_equal
, name
);
1877 pim
->upstream_list
= list_new();
1878 pim
->upstream_list
->cmp
= pim_upstream_compare
;