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
33 #include "pim_iface.h"
34 #include "pim_hello.h"
35 #include "pim_macro.h"
36 #include "pim_assert.h"
37 #include "pim_ifchannel.h"
39 static int assert_action_a3(struct pim_ifchannel
*ch
);
40 static void assert_action_a2(struct pim_ifchannel
*ch
,
41 struct pim_assert_metric winner_metric
);
42 static void assert_action_a6(struct pim_ifchannel
*ch
,
43 struct pim_assert_metric winner_metric
);
45 void pim_ifassert_winner_set(struct pim_ifchannel
*ch
,
46 enum pim_ifassert_state new_state
,
47 struct in_addr winner
,
48 struct pim_assert_metric winner_metric
)
50 struct pim_interface
*pim_ifp
= ch
->interface
->info
;
51 int winner_changed
= (ch
->ifassert_winner
.s_addr
!= winner
.s_addr
);
52 int metric_changed
= !pim_assert_metric_match(
53 &ch
->ifassert_winner_metric
, &winner_metric
);
55 if (PIM_DEBUG_PIM_EVENTS
) {
56 if (ch
->ifassert_state
!= new_state
) {
58 "%s: (S,G)=%s assert state changed from %s to %s on interface %s",
59 __PRETTY_FUNCTION__
, ch
->sg_str
,
60 pim_ifchannel_ifassert_name(ch
->ifassert_state
),
61 pim_ifchannel_ifassert_name(new_state
),
66 char was_str
[INET_ADDRSTRLEN
];
67 char winner_str
[INET_ADDRSTRLEN
];
68 pim_inet4_dump("<was?>", ch
->ifassert_winner
, was_str
,
70 pim_inet4_dump("<winner?>", winner
, winner_str
,
73 "%s: (S,G)=%s assert winner changed from %s to %s on interface %s",
74 __PRETTY_FUNCTION__
, ch
->sg_str
, was_str
,
75 winner_str
, ch
->interface
->name
);
77 } /* PIM_DEBUG_PIM_EVENTS */
79 ch
->ifassert_state
= new_state
;
80 ch
->ifassert_winner
= winner
;
81 ch
->ifassert_winner_metric
= winner_metric
;
82 ch
->ifassert_creation
= pim_time_monotonic_sec();
84 if (winner_changed
|| metric_changed
) {
85 pim_upstream_update_join_desired(pim_ifp
->pim
, ch
->upstream
);
86 pim_ifchannel_update_could_assert(ch
);
87 pim_ifchannel_update_assert_tracking_desired(ch
);
91 static void on_trace(const char *label
, struct interface
*ifp
,
94 if (PIM_DEBUG_PIM_TRACE
) {
95 char src_str
[INET_ADDRSTRLEN
];
96 pim_inet4_dump("<src?>", src
, src_str
, sizeof(src_str
));
97 zlog_debug("%s: from %s on %s", label
, src_str
, ifp
->name
);
101 static int preferred_assert(const struct pim_ifchannel
*ch
,
102 const struct pim_assert_metric
*recv_metric
)
104 return pim_assert_metric_better(recv_metric
,
105 &ch
->ifassert_winner_metric
);
108 static int acceptable_assert(const struct pim_assert_metric
*my_metric
,
109 const struct pim_assert_metric
*recv_metric
)
111 return pim_assert_metric_better(recv_metric
, my_metric
);
114 static int inferior_assert(const struct pim_assert_metric
*my_metric
,
115 const struct pim_assert_metric
*recv_metric
)
117 return pim_assert_metric_better(my_metric
, recv_metric
);
120 static int cancel_assert(const struct pim_assert_metric
*recv_metric
)
122 return (recv_metric
->metric_preference
123 == PIM_ASSERT_METRIC_PREFERENCE_MAX
)
124 && (recv_metric
->route_metric
== PIM_ASSERT_ROUTE_METRIC_MAX
);
127 static void if_could_assert_do_a1(const char *caller
, struct pim_ifchannel
*ch
)
129 if (PIM_IF_FLAG_TEST_COULD_ASSERT(ch
->flags
)) {
130 if (assert_action_a1(ch
)) {
132 "%s: %s: (S,G)=%s assert_action_a1 failure on interface %s",
133 __PRETTY_FUNCTION__
, caller
, ch
->sg_str
,
134 ch
->interface
->name
);
135 /* log warning only */
140 static int dispatch_assert(struct interface
*ifp
, struct in_addr source_addr
,
141 struct in_addr group_addr
,
142 struct pim_assert_metric recv_metric
)
144 struct pim_ifchannel
*ch
;
147 memset(&sg
, 0, sizeof(struct prefix_sg
));
148 sg
.src
= source_addr
;
150 ch
= pim_ifchannel_add(ifp
, &sg
, 0, 0);
153 "%s: (S,G)=%s failure creating channel on interface %s",
154 __PRETTY_FUNCTION__
, pim_str_sg_dump(&sg
), ifp
->name
);
158 switch (ch
->ifassert_state
) {
159 case PIM_IFASSERT_NOINFO
:
160 if (recv_metric
.rpt_bit_flag
) {
162 if_could_assert_do_a1(__PRETTY_FUNCTION__
, ch
);
165 if (inferior_assert(&ch
->ifassert_my_metric
,
167 if_could_assert_do_a1(__PRETTY_FUNCTION__
, ch
);
168 } else if (acceptable_assert(&ch
->ifassert_my_metric
,
170 if (PIM_IF_FLAG_TEST_ASSERT_TRACKING_DESIRED(
172 assert_action_a6(ch
, recv_metric
);
177 case PIM_IFASSERT_I_AM_WINNER
:
178 if (preferred_assert(ch
, &recv_metric
)) {
179 assert_action_a2(ch
, recv_metric
);
181 if (inferior_assert(&ch
->ifassert_my_metric
,
183 assert_action_a3(ch
);
187 case PIM_IFASSERT_I_AM_LOSER
:
188 if (recv_metric
.ip_address
.s_addr
189 == ch
->ifassert_winner
.s_addr
) {
190 /* Assert from current winner */
192 if (cancel_assert(&recv_metric
)) {
193 assert_action_a5(ch
);
195 if (inferior_assert(&ch
->ifassert_my_metric
,
197 assert_action_a5(ch
);
198 } else if (acceptable_assert(
199 &ch
->ifassert_my_metric
,
201 if (!recv_metric
.rpt_bit_flag
) {
207 } else if (preferred_assert(ch
, &recv_metric
)) {
208 assert_action_a2(ch
, recv_metric
);
213 "%s: (S,G)=%s invalid assert state %d on interface %s",
214 __PRETTY_FUNCTION__
, ch
->sg_str
, ch
->ifassert_state
,
223 int pim_assert_recv(struct interface
*ifp
, struct pim_neighbor
*neigh
,
224 struct in_addr src_addr
, uint8_t *buf
, int buf_size
)
227 struct prefix msg_source_addr
;
228 struct pim_assert_metric msg_metric
;
232 struct pim_interface
*pim_ifp
= NULL
;
234 on_trace(__PRETTY_FUNCTION__
, ifp
, src_addr
);
237 curr_size
= buf_size
;
240 Parse assert group addr
242 memset(&sg
, 0, sizeof(struct prefix_sg
));
243 offset
= pim_parse_addr_group(&sg
, curr
, curr_size
);
245 char src_str
[INET_ADDRSTRLEN
];
246 pim_inet4_dump("<src?>", src_addr
, src_str
, sizeof(src_str
));
247 zlog_warn("%s: pim_parse_addr_group() failure: from %s on %s",
248 __PRETTY_FUNCTION__
, src_str
, ifp
->name
);
255 Parse assert source addr
257 offset
= pim_parse_addr_ucast(&msg_source_addr
, curr
, curr_size
);
259 char src_str
[INET_ADDRSTRLEN
];
260 pim_inet4_dump("<src?>", src_addr
, src_str
, sizeof(src_str
));
261 zlog_warn("%s: pim_parse_addr_ucast() failure: from %s on %s",
262 __PRETTY_FUNCTION__
, src_str
, ifp
->name
);
268 if (curr_size
!= 8) {
269 char src_str
[INET_ADDRSTRLEN
];
270 pim_inet4_dump("<src?>", src_addr
, src_str
, sizeof(src_str
));
272 "%s: preference/metric size is not 8: size=%d from %s on interface %s",
273 __PRETTY_FUNCTION__
, curr_size
, src_str
, ifp
->name
);
278 Parse assert metric preference
281 msg_metric
.metric_preference
= pim_read_uint32_host(curr
);
283 msg_metric
.rpt_bit_flag
= msg_metric
.metric_preference
284 & 0x80000000; /* save highest bit */
285 msg_metric
.metric_preference
&= ~0x80000000; /* clear highest bit */
290 Parse assert route metric
293 msg_metric
.route_metric
= pim_read_uint32_host(curr
);
295 if (PIM_DEBUG_PIM_TRACE
) {
296 char neigh_str
[INET_ADDRSTRLEN
];
297 char source_str
[INET_ADDRSTRLEN
];
298 char group_str
[INET_ADDRSTRLEN
];
299 pim_inet4_dump("<neigh?>", src_addr
, neigh_str
,
301 pim_inet4_dump("<src?>", msg_source_addr
.u
.prefix4
, source_str
,
303 pim_inet4_dump("<grp?>", sg
.grp
, group_str
, sizeof(group_str
));
305 "%s: from %s on %s: (S,G)=(%s,%s) pref=%u metric=%u rpt_bit=%u",
306 __PRETTY_FUNCTION__
, neigh_str
, ifp
->name
, source_str
,
307 group_str
, msg_metric
.metric_preference
,
308 msg_metric
.route_metric
,
309 PIM_FORCE_BOOLEAN(msg_metric
.rpt_bit_flag
));
312 msg_metric
.ip_address
= src_addr
;
316 ++pim_ifp
->pim_ifstat_assert_recv
;
318 return dispatch_assert(ifp
, msg_source_addr
.u
.prefix4
, sg
.grp
,
323 RFC 4601: 4.6.3. Assert Metrics
325 Assert metrics are defined as:
327 When comparing assert_metrics, the rpt_bit_flag, metric_preference,
328 and route_metric field are compared in order, where the first lower
329 value wins. If all fields are equal, the primary IP address of the
330 router that sourced the Assert message is used as a tie-breaker,
331 with the highest IP address winning.
333 int pim_assert_metric_better(const struct pim_assert_metric
*m1
,
334 const struct pim_assert_metric
*m2
)
336 if (m1
->rpt_bit_flag
< m2
->rpt_bit_flag
)
338 if (m1
->rpt_bit_flag
> m2
->rpt_bit_flag
)
341 if (m1
->metric_preference
< m2
->metric_preference
)
343 if (m1
->metric_preference
> m2
->metric_preference
)
346 if (m1
->route_metric
< m2
->route_metric
)
348 if (m1
->route_metric
> m2
->route_metric
)
351 return ntohl(m1
->ip_address
.s_addr
) > ntohl(m2
->ip_address
.s_addr
);
354 int pim_assert_metric_match(const struct pim_assert_metric
*m1
,
355 const struct pim_assert_metric
*m2
)
357 if (m1
->rpt_bit_flag
!= m2
->rpt_bit_flag
)
359 if (m1
->metric_preference
!= m2
->metric_preference
)
361 if (m1
->route_metric
!= m2
->route_metric
)
364 return m1
->ip_address
.s_addr
== m2
->ip_address
.s_addr
;
367 int pim_assert_build_msg(uint8_t *pim_msg
, int buf_size
, struct interface
*ifp
,
368 struct in_addr group_addr
, struct in_addr source_addr
,
369 uint32_t metric_preference
, uint32_t route_metric
,
370 uint32_t rpt_bit_flag
)
372 uint8_t *buf_pastend
= pim_msg
+ buf_size
;
373 uint8_t *pim_msg_curr
;
378 pim_msg
+ PIM_MSG_HEADER_LEN
; /* skip room for pim header */
381 remain
= buf_pastend
- pim_msg_curr
;
382 pim_msg_curr
= pim_msg_addr_encode_ipv4_group(pim_msg_curr
, group_addr
);
384 char group_str
[INET_ADDRSTRLEN
];
385 pim_inet4_dump("<grp?>", group_addr
, group_str
,
388 "%s: failure encoding group address %s: space left=%d",
389 __PRETTY_FUNCTION__
, group_str
, remain
);
394 remain
= buf_pastend
- pim_msg_curr
;
396 pim_msg_addr_encode_ipv4_ucast(pim_msg_curr
, source_addr
);
398 char source_str
[INET_ADDRSTRLEN
];
399 pim_inet4_dump("<src?>", source_addr
, source_str
,
402 "%s: failure encoding source address %s: space left=%d",
403 __PRETTY_FUNCTION__
, source_str
, remain
);
407 /* Metric preference */
408 pim_write_uint32(pim_msg_curr
,
409 rpt_bit_flag
? metric_preference
| 0x80000000
410 : metric_preference
);
414 pim_write_uint32(pim_msg_curr
, route_metric
);
420 pim_msg_size
= pim_msg_curr
- pim_msg
;
421 pim_msg_build_header(pim_msg
, pim_msg_size
, PIM_MSG_TYPE_ASSERT
);
426 static int pim_assert_do(struct pim_ifchannel
*ch
,
427 struct pim_assert_metric metric
)
429 struct interface
*ifp
;
430 struct pim_interface
*pim_ifp
;
431 uint8_t pim_msg
[1000];
436 if (PIM_DEBUG_PIM_TRACE
)
437 zlog_debug("%s: channel%s has no associated interface!",
438 __PRETTY_FUNCTION__
, ch
->sg_str
);
443 if (PIM_DEBUG_PIM_TRACE
)
445 "%s: channel %s pim not enabled on interface: %s",
446 __PRETTY_FUNCTION__
, ch
->sg_str
, ifp
->name
);
451 pim_assert_build_msg(pim_msg
, sizeof(pim_msg
), ifp
, ch
->sg
.grp
,
452 ch
->sg
.src
, metric
.metric_preference
,
453 metric
.route_metric
, metric
.rpt_bit_flag
);
454 if (pim_msg_size
< 1) {
456 "%s: failure building PIM assert message: msg_size=%d",
457 __PRETTY_FUNCTION__
, pim_msg_size
);
462 RFC 4601: 4.3.1. Sending Hello Messages
464 Thus, if a router needs to send a Join/Prune or Assert message on
465 an interface on which it has not yet sent a Hello message with the
466 currently configured IP address, then it MUST immediately send the
467 relevant Hello message without waiting for the Hello Timer to
468 expire, followed by the Join/Prune or Assert message.
470 pim_hello_require(ifp
);
472 if (PIM_DEBUG_PIM_TRACE
) {
473 zlog_debug("%s: to %s: (S,G)=%s pref=%u metric=%u rpt_bit=%u",
474 __PRETTY_FUNCTION__
, ifp
->name
, ch
->sg_str
,
475 metric
.metric_preference
, metric
.route_metric
,
476 PIM_FORCE_BOOLEAN(metric
.rpt_bit_flag
));
478 ++pim_ifp
->pim_ifstat_assert_send
;
480 if (pim_msg_send(pim_ifp
->pim_sock_fd
, pim_ifp
->primary_address
,
481 qpim_all_pim_routers_addr
, pim_msg
, pim_msg_size
,
483 zlog_warn("%s: could not send PIM message on interface %s",
484 __PRETTY_FUNCTION__
, ifp
->name
);
491 int pim_assert_send(struct pim_ifchannel
*ch
)
493 return pim_assert_do(ch
, ch
->ifassert_my_metric
);
497 RFC 4601: 4.6.4. AssertCancel Messages
499 An AssertCancel(S,G) is an infinite metric assert with the RPT bit
500 set that names S as the source.
502 static int pim_assert_cancel(struct pim_ifchannel
*ch
)
504 struct pim_assert_metric metric
;
506 metric
.rpt_bit_flag
= 0;
507 metric
.metric_preference
= PIM_ASSERT_METRIC_PREFERENCE_MAX
;
508 metric
.route_metric
= PIM_ASSERT_ROUTE_METRIC_MAX
;
509 metric
.ip_address
= ch
->sg
.src
;
511 return pim_assert_do(ch
, metric
);
514 static int on_assert_timer(struct thread
*t
)
516 struct pim_ifchannel
*ch
;
517 struct interface
*ifp
;
523 if (PIM_DEBUG_PIM_TRACE
) {
524 zlog_debug("%s: (S,G)=%s timer expired on interface %s",
525 __PRETTY_FUNCTION__
, ch
->sg_str
, ifp
->name
);
528 ch
->t_ifassert_timer
= NULL
;
530 switch (ch
->ifassert_state
) {
531 case PIM_IFASSERT_I_AM_WINNER
:
532 assert_action_a3(ch
);
534 case PIM_IFASSERT_I_AM_LOSER
:
535 assert_action_a5(ch
);
538 if (PIM_DEBUG_PIM_EVENTS
)
540 "%s: (S,G)=%s invalid assert state %d on interface %s",
541 __PRETTY_FUNCTION__
, ch
->sg_str
,
542 ch
->ifassert_state
, ifp
->name
);
549 static void assert_timer_off(struct pim_ifchannel
*ch
)
551 if (PIM_DEBUG_PIM_TRACE
) {
552 if (ch
->t_ifassert_timer
) {
554 "%s: (S,G)=%s cancelling timer on interface %s",
555 __PRETTY_FUNCTION__
, ch
->sg_str
,
556 ch
->interface
->name
);
559 THREAD_OFF(ch
->t_ifassert_timer
);
562 static void pim_assert_timer_set(struct pim_ifchannel
*ch
, int interval
)
564 assert_timer_off(ch
);
566 if (PIM_DEBUG_PIM_TRACE
) {
567 zlog_debug("%s: (S,G)=%s starting %u sec timer on interface %s",
568 __PRETTY_FUNCTION__
, ch
->sg_str
, interval
,
569 ch
->interface
->name
);
572 thread_add_timer(router
->master
, on_assert_timer
, ch
, interval
,
573 &ch
->t_ifassert_timer
);
576 static void pim_assert_timer_reset(struct pim_ifchannel
*ch
)
578 pim_assert_timer_set(ch
,
579 PIM_ASSERT_TIME
- PIM_ASSERT_OVERRIDE_INTERVAL
);
583 RFC 4601: 4.6.1. (S,G) Assert Message State Machine
585 (S,G) Assert State machine Actions
587 A1: Send Assert(S,G).
588 Set Assert Timer to (Assert_Time - Assert_Override_Interval).
589 Store self as AssertWinner(S,G,I).
590 Store spt_assert_metric(S,I) as AssertWinnerMetric(S,G,I).
592 int assert_action_a1(struct pim_ifchannel
*ch
)
594 struct interface
*ifp
= ch
->interface
;
595 struct pim_interface
*pim_ifp
;
599 zlog_warn("%s: (S,G)=%s multicast not enabled on interface %s",
600 __PRETTY_FUNCTION__
, ch
->sg_str
, ifp
->name
);
601 return -1; /* must return since pim_ifp is used below */
604 /* Switch to I_AM_WINNER before performing action_a3 below */
605 pim_ifassert_winner_set(
606 ch
, PIM_IFASSERT_I_AM_WINNER
, pim_ifp
->primary_address
,
607 pim_macro_spt_assert_metric(&ch
->upstream
->rpf
,
608 pim_ifp
->primary_address
));
610 if (assert_action_a3(ch
)) {
612 "%s: (S,G)=%s assert_action_a3 failure on interface %s",
613 __PRETTY_FUNCTION__
, ch
->sg_str
, ifp
->name
);
617 if (ch
->ifassert_state
!= PIM_IFASSERT_I_AM_WINNER
) {
618 if (PIM_DEBUG_PIM_EVENTS
)
620 "%s: channel%s not in expected PIM_IFASSERT_I_AM_WINNER state",
621 __PRETTY_FUNCTION__
, ch
->sg_str
);
628 RFC 4601: 4.6.1. (S,G) Assert Message State Machine
630 (S,G) Assert State machine Actions
632 A2: Store new assert winner as AssertWinner(S,G,I) and assert
633 winner metric as AssertWinnerMetric(S,G,I).
634 Set Assert Timer to Assert_Time.
636 static void assert_action_a2(struct pim_ifchannel
*ch
,
637 struct pim_assert_metric winner_metric
)
639 pim_ifassert_winner_set(ch
, PIM_IFASSERT_I_AM_LOSER
,
640 winner_metric
.ip_address
, winner_metric
);
642 pim_assert_timer_set(ch
, PIM_ASSERT_TIME
);
644 if (ch
->ifassert_state
!= PIM_IFASSERT_I_AM_LOSER
) {
645 if (PIM_DEBUG_PIM_EVENTS
)
647 "%s: channel%s not in expected PIM_IFASSERT_I_AM_LOSER state",
648 __PRETTY_FUNCTION__
, ch
->sg_str
);
653 RFC 4601: 4.6.1. (S,G) Assert Message State Machine
655 (S,G) Assert State machine Actions
657 A3: Send Assert(S,G).
658 Set Assert Timer to (Assert_Time - Assert_Override_Interval).
660 static int assert_action_a3(struct pim_ifchannel
*ch
)
662 if (ch
->ifassert_state
!= PIM_IFASSERT_I_AM_WINNER
) {
663 if (PIM_DEBUG_PIM_EVENTS
)
665 "%s: channel%s expected to be in PIM_IFASSERT_I_AM_WINNER state",
666 __PRETTY_FUNCTION__
, ch
->sg_str
);
670 pim_assert_timer_reset(ch
);
672 if (pim_assert_send(ch
)) {
673 zlog_warn("%s: (S,G)=%s failure sending assert on interface %s",
674 __PRETTY_FUNCTION__
, ch
->sg_str
, ch
->interface
->name
);
682 RFC 4601: 4.6.1. (S,G) Assert Message State Machine
684 (S,G) Assert State machine Actions
686 A4: Send AssertCancel(S,G).
687 Delete assert info (AssertWinner(S,G,I) and
688 AssertWinnerMetric(S,G,I) will then return their default
691 void assert_action_a4(struct pim_ifchannel
*ch
)
693 if (pim_assert_cancel(ch
)) {
694 zlog_warn("%s: failure sending AssertCancel%s on interface %s",
695 __PRETTY_FUNCTION__
, ch
->sg_str
, ch
->interface
->name
);
696 /* log warning only */
699 assert_action_a5(ch
);
701 if (ch
->ifassert_state
!= PIM_IFASSERT_NOINFO
) {
702 if (PIM_DEBUG_PIM_EVENTS
)
704 "%s: channel%s not in PIM_IFASSERT_NOINFO state as expected",
705 __PRETTY_FUNCTION__
, ch
->sg_str
);
710 RFC 4601: 4.6.1. (S,G) Assert Message State Machine
712 (S,G) Assert State machine Actions
714 A5: Delete assert info (AssertWinner(S,G,I) and
715 AssertWinnerMetric(S,G,I) will then return their default values).
717 void assert_action_a5(struct pim_ifchannel
*ch
)
719 reset_ifassert_state(ch
);
720 if (ch
->ifassert_state
!= PIM_IFASSERT_NOINFO
) {
721 if (PIM_DEBUG_PIM_EVENTS
)
723 "%s: channel%s not in PIM_IFSSERT_NOINFO state as expected",
724 __PRETTY_FUNCTION__
, ch
->sg_str
);
729 RFC 4601: 4.6.1. (S,G) Assert Message State Machine
731 (S,G) Assert State machine Actions
733 A6: Store new assert winner as AssertWinner(S,G,I) and assert
734 winner metric as AssertWinnerMetric(S,G,I).
735 Set Assert Timer to Assert_Time.
736 If (I is RPF_interface(S)) AND (UpstreamJPState(S,G) == true)
737 set SPTbit(S,G) to TRUE.
739 static void assert_action_a6(struct pim_ifchannel
*ch
,
740 struct pim_assert_metric winner_metric
)
742 assert_action_a2(ch
, winner_metric
);
745 If (I is RPF_interface(S)) AND (UpstreamJPState(S,G) == true) set
748 if (ch
->upstream
->rpf
.source_nexthop
.interface
== ch
->interface
)
749 if (ch
->upstream
->join_state
== PIM_UPSTREAM_JOINED
)
750 ch
->upstream
->sptbit
= PIM_UPSTREAM_SPTBIT_TRUE
;
752 if (ch
->ifassert_state
!= PIM_IFASSERT_I_AM_LOSER
) {
753 if (PIM_DEBUG_PIM_EVENTS
)
755 "%s: channel%s not in PIM_IFASSERT_I_AM_LOSER state as expected",
756 __PRETTY_FUNCTION__
, ch
->sg_str
);