2 * bgp_updgrp_adv.c: BGP update group advertisement and adjacency
6 * @copyright Copyright (C) 2014 Cumulus Networks, Inc.
8 * @author Avneesh Sachdev <avneesh@sproute.net>
9 * @author Rajesh Varadarajan <rajesh@sproute.net>
10 * @author Pradosh Mohapatra <pradosh@sproute.net>
12 * This file is part of GNU Zebra.
14 * GNU Zebra is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2, or (at your option) any
19 * GNU Zebra is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * General Public License for more details.
24 * You should have received a copy of the GNU General Public License along
25 * with this program; see the file COPYING; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
40 #include "bgpd/bgpd.h"
41 #include "bgpd/bgp_table.h"
42 #include "bgpd/bgp_debug.h"
43 #include "bgpd/bgp_route.h"
44 #include "bgpd/bgp_advertise.h"
45 #include "bgpd/bgp_attr.h"
46 #include "bgpd/bgp_aspath.h"
47 #include "bgpd/bgp_packet.h"
48 #include "bgpd/bgp_fsm.h"
49 #include "bgpd/bgp_mplsvpn.h"
50 #include "bgpd/bgp_updgrp.h"
51 #include "bgpd/bgp_advertise.h"
52 #include "bgpd/bgp_addpath.h"
58 static int bgp_adj_out_compare(const struct bgp_adj_out
*o1
,
59 const struct bgp_adj_out
*o2
)
61 if (o1
->subgroup
< o2
->subgroup
)
64 if (o1
->subgroup
> o2
->subgroup
)
69 RB_GENERATE(bgp_adj_out_rb
, bgp_adj_out
, adj_entry
, bgp_adj_out_compare
);
71 static inline struct bgp_adj_out
*adj_lookup(struct bgp_node
*rn
,
72 struct update_subgroup
*subgrp
,
73 uint32_t addpath_tx_id
)
75 struct bgp_adj_out
*adj
, lookup
;
84 peer
= SUBGRP_PEER(subgrp
);
85 afi
= SUBGRP_AFI(subgrp
);
86 safi
= SUBGRP_SAFI(subgrp
);
87 addpath_capable
= bgp_addpath_encode_tx(peer
, afi
, safi
);
89 /* update-groups that do not support addpath will pass 0 for
90 * addpath_tx_id so do not both matching against it */
91 lookup
.subgroup
= subgrp
;
92 adj
= RB_FIND(bgp_adj_out_rb
, &rn
->adj_out
, &lookup
);
94 if (addpath_capable
) {
95 if (adj
->addpath_tx_id
== addpath_tx_id
)
103 static void adj_free(struct bgp_adj_out
*adj
)
105 TAILQ_REMOVE(&(adj
->subgroup
->adjq
), adj
, subgrp_adj_train
);
106 SUBGRP_DECR_STAT(adj
->subgroup
, adj_count
);
107 XFREE(MTYPE_BGP_ADJ_OUT
, adj
);
110 static void subgrp_withdraw_stale_addpath(struct updwalk_context
*ctx
,
111 struct update_subgroup
*subgrp
)
113 struct bgp_adj_out
*adj
, *adj_next
;
115 struct bgp_path_info
*pi
;
116 afi_t afi
= SUBGRP_AFI(subgrp
);
117 safi_t safi
= SUBGRP_SAFI(subgrp
);
118 struct peer
*peer
= SUBGRP_PEER(subgrp
);
120 /* Look through all of the paths we have advertised for this rn and send
121 * a withdraw for the ones that are no longer present */
122 RB_FOREACH_SAFE (adj
, bgp_adj_out_rb
, &ctx
->rn
->adj_out
, adj_next
) {
124 if (adj
->subgroup
== subgrp
) {
125 for (pi
= bgp_node_get_bgp_path_info(ctx
->rn
);
127 id
= bgp_addpath_id_for_peer(peer
, afi
, safi
,
130 if (id
== adj
->addpath_tx_id
) {
136 subgroup_process_announce_selected(
137 subgrp
, NULL
, ctx
->rn
,
144 static int group_announce_route_walkcb(struct update_group
*updgrp
, void *arg
)
146 struct updwalk_context
*ctx
= arg
;
147 struct update_subgroup
*subgrp
;
148 struct bgp_path_info
*pi
;
152 struct bgp_adj_out
*adj
, *adj_next
;
155 afi
= UPDGRP_AFI(updgrp
);
156 safi
= UPDGRP_SAFI(updgrp
);
157 peer
= UPDGRP_PEER(updgrp
);
158 addpath_capable
= bgp_addpath_encode_tx(peer
, afi
, safi
);
160 if (BGP_DEBUG(update
, UPDATE_OUT
)) {
161 char buf_prefix
[PREFIX_STRLEN
];
162 prefix2str(&ctx
->rn
->p
, buf_prefix
, sizeof(buf_prefix
));
163 zlog_debug("%s: afi=%s, safi=%s, p=%s", __func__
, afi2str(afi
),
164 safi2str(safi
), buf_prefix
);
168 UPDGRP_FOREACH_SUBGRP (updgrp
, subgrp
) {
171 * Skip the subgroups that have coalesce timer running. We will
172 * walk the entire prefix table for those subgroups when the
173 * coalesce timer fires.
175 if (!subgrp
->t_coalesce
) {
176 /* An update-group that uses addpath */
177 if (addpath_capable
) {
178 subgrp_withdraw_stale_addpath(ctx
, subgrp
);
180 for (pi
= bgp_node_get_bgp_path_info(ctx
->rn
);
182 /* Skip the bestpath for now */
186 subgroup_process_announce_selected(
188 bgp_addpath_id_for_peer(
193 /* Process the bestpath last so the "show [ip]
194 * bgp neighbor x.x.x.x advertised"
195 * output shows the attributes from the bestpath
198 subgroup_process_announce_selected(
199 subgrp
, ctx
->pi
, ctx
->rn
,
200 bgp_addpath_id_for_peer(
202 &ctx
->pi
->tx_addpath
));
205 /* An update-group that does not use addpath */
208 subgroup_process_announce_selected(
209 subgrp
, ctx
->pi
, ctx
->rn
,
210 bgp_addpath_id_for_peer(
212 &ctx
->pi
->tx_addpath
));
214 /* Find the addpath_tx_id of the path we
217 RB_FOREACH_SAFE (adj
, bgp_adj_out_rb
,
220 if (adj
->subgroup
== subgrp
) {
221 subgroup_process_announce_selected(
232 return UPDWALK_CONTINUE
;
235 static void subgrp_show_adjq_vty(struct update_subgroup
*subgrp
,
236 struct vty
*vty
, uint8_t flags
)
238 struct bgp_table
*table
;
239 struct bgp_adj_out
*adj
;
240 unsigned long output_count
;
246 bgp
= SUBGRP_INST(subgrp
);
250 table
= bgp
->rib
[SUBGRP_AFI(subgrp
)][SUBGRP_SAFI(subgrp
)];
254 for (rn
= bgp_table_top(table
); rn
; rn
= bgp_route_next(rn
))
255 RB_FOREACH (adj
, bgp_adj_out_rb
, &rn
->adj_out
)
256 if (adj
->subgroup
== subgrp
) {
259 "BGP table version is %" PRIu64
260 ", local router ID is %s\n",
262 inet_ntoa(bgp
->router_id
));
263 vty_out(vty
, BGP_SHOW_SCODE_HEADER
);
264 vty_out(vty
, BGP_SHOW_OCODE_HEADER
);
268 vty_out(vty
, BGP_SHOW_HEADER
);
271 if ((flags
& UPDWALK_FLAGS_ADVQUEUE
) && adj
->adv
273 route_vty_out_tmp(vty
, &rn
->p
,
279 if ((flags
& UPDWALK_FLAGS_ADVERTISED
)
282 vty
, &rn
->p
, adj
->attr
,
283 SUBGRP_SAFI(subgrp
), 0, NULL
);
287 if (output_count
!= 0)
288 vty_out(vty
, "\nTotal number of prefixes %ld\n", output_count
);
291 static int updgrp_show_adj_walkcb(struct update_group
*updgrp
, void *arg
)
293 struct updwalk_context
*ctx
= arg
;
294 struct update_subgroup
*subgrp
;
298 UPDGRP_FOREACH_SUBGRP (updgrp
, subgrp
) {
299 if (ctx
->subgrp_id
&& (ctx
->subgrp_id
!= subgrp
->id
))
301 vty_out(vty
, "update group %" PRIu64
", subgroup %" PRIu64
"\n",
302 updgrp
->id
, subgrp
->id
);
303 subgrp_show_adjq_vty(subgrp
, vty
, ctx
->flags
);
305 return UPDWALK_CONTINUE
;
308 static void updgrp_show_adj(struct bgp
*bgp
, afi_t afi
, safi_t safi
,
309 struct vty
*vty
, uint64_t id
, uint8_t flags
)
311 struct updwalk_context ctx
;
312 memset(&ctx
, 0, sizeof(ctx
));
317 update_group_af_walk(bgp
, afi
, safi
, updgrp_show_adj_walkcb
, &ctx
);
320 static int subgroup_coalesce_timer(struct thread
*thread
)
322 struct update_subgroup
*subgrp
;
324 subgrp
= THREAD_ARG(thread
);
325 if (bgp_debug_update(NULL
, NULL
, subgrp
->update_group
, 0))
326 zlog_debug("u%" PRIu64
":s%" PRIu64
327 " announcing routes upon coalesce timer expiry",
328 (SUBGRP_UPDGRP(subgrp
))->id
, subgrp
->id
);
329 subgrp
->t_coalesce
= NULL
;
330 subgrp
->v_coalesce
= 0;
331 subgroup_announce_route(subgrp
);
334 /* While the announce_route() may kick off the route advertisement timer
336 * the members of the subgroup, we'd like to send the initial updates
338 * faster (i.e., without enforcing MRAI). Also, if there were no routes
340 * announce, this is the method currently employed to trigger the EOR.
342 if (!bgp_update_delay_active(SUBGRP_INST(subgrp
))) {
346 SUBGRP_FOREACH_PEER (subgrp
, paf
) {
347 peer
= PAF_PEER(paf
);
348 BGP_TIMER_OFF(peer
->t_routeadv
);
349 BGP_TIMER_ON(peer
->t_routeadv
, bgp_routeadv_timer
, 0);
356 static int update_group_announce_walkcb(struct update_group
*updgrp
, void *arg
)
358 struct update_subgroup
*subgrp
;
360 UPDGRP_FOREACH_SUBGRP (updgrp
, subgrp
) {
361 subgroup_announce_all(subgrp
);
364 return UPDWALK_CONTINUE
;
367 static int update_group_announce_rrc_walkcb(struct update_group
*updgrp
,
370 struct update_subgroup
*subgrp
;
375 afi
= UPDGRP_AFI(updgrp
);
376 safi
= UPDGRP_SAFI(updgrp
);
377 peer
= UPDGRP_PEER(updgrp
);
379 /* Only announce if this is a group of route-reflector-clients */
380 if (CHECK_FLAG(peer
->af_flags
[afi
][safi
], PEER_FLAG_REFLECTOR_CLIENT
)) {
381 UPDGRP_FOREACH_SUBGRP (updgrp
, subgrp
) {
382 subgroup_announce_all(subgrp
);
386 return UPDWALK_CONTINUE
;
389 /********************
391 ********************/
394 * Allocate an adj-out object. Do proper initialization of its fields,
395 * primarily its association with the subgroup and the prefix.
397 struct bgp_adj_out
*bgp_adj_out_alloc(struct update_subgroup
*subgrp
,
399 uint32_t addpath_tx_id
)
401 struct bgp_adj_out
*adj
;
403 adj
= XCALLOC(MTYPE_BGP_ADJ_OUT
, sizeof(struct bgp_adj_out
));
404 adj
->subgroup
= subgrp
;
406 RB_INSERT(bgp_adj_out_rb
, &rn
->adj_out
, adj
);
411 adj
->addpath_tx_id
= addpath_tx_id
;
412 TAILQ_INSERT_TAIL(&(subgrp
->adjq
), adj
, subgrp_adj_train
);
413 SUBGRP_INCR_STAT(subgrp
, adj_count
);
418 struct bgp_advertise
*
419 bgp_advertise_clean_subgroup(struct update_subgroup
*subgrp
,
420 struct bgp_adj_out
*adj
)
422 struct bgp_advertise
*adv
;
423 struct bgp_advertise_attr
*baa
;
424 struct bgp_advertise
*next
;
425 struct bgp_adv_fifo_head
*fhead
;
432 fhead
= &subgrp
->sync
->update
;
434 /* Unlink myself from advertise attribute FIFO. */
435 bgp_advertise_delete(baa
, adv
);
437 /* Fetch next advertise candidate. */
440 /* Unintern BGP advertise attribute. */
441 bgp_advertise_unintern(subgrp
->hash
, baa
);
443 fhead
= &subgrp
->sync
->withdraw
;
446 /* Unlink myself from advertisement FIFO. */
447 bgp_adv_fifo_del(fhead
, adv
);
450 bgp_advertise_free(adj
->adv
);
456 void bgp_adj_out_set_subgroup(struct bgp_node
*rn
,
457 struct update_subgroup
*subgrp
, struct attr
*attr
,
458 struct bgp_path_info
*path
)
460 struct bgp_adj_out
*adj
= NULL
;
461 struct bgp_advertise
*adv
;
466 peer
= SUBGRP_PEER(subgrp
);
467 afi
= SUBGRP_AFI(subgrp
);
468 safi
= SUBGRP_SAFI(subgrp
);
470 if (DISABLE_BGP_ANNOUNCE
)
473 /* Look for adjacency information. */
476 bgp_addpath_id_for_peer(peer
, afi
, safi
, &path
->tx_addpath
));
479 adj
= bgp_adj_out_alloc(
481 bgp_addpath_id_for_peer(peer
, afi
, safi
,
488 bgp_advertise_clean_subgroup(subgrp
, adj
);
489 adj
->adv
= bgp_advertise_new();
493 assert(adv
->pathi
== NULL
);
494 /* bgp_path_info adj_out reference */
495 adv
->pathi
= bgp_path_info_lock(path
);
498 adv
->baa
= bgp_advertise_intern(subgrp
->hash
, attr
);
500 adv
->baa
= baa_new();
503 /* Add new advertisement to advertisement attribute list. */
504 bgp_advertise_add(adv
->baa
, adv
);
507 * If the update adv list is empty, trigger the member peers'
508 * mrai timers so the socket writes can happen.
510 if (!bgp_adv_fifo_count(&subgrp
->sync
->update
)) {
513 SUBGRP_FOREACH_PEER (subgrp
, paf
) {
514 bgp_adjust_routeadv(PAF_PEER(paf
));
518 bgp_adv_fifo_add_tail(&subgrp
->sync
->update
, adv
);
520 subgrp
->version
= max(subgrp
->version
, rn
->version
);
523 /* The only time 'withdraw' will be false is if we are sending
524 * the "neighbor x.x.x.x default-originate" default and need to clear
525 * bgp_adj_out for the 0.0.0.0/0 route in the BGP table.
527 void bgp_adj_out_unset_subgroup(struct bgp_node
*rn
,
528 struct update_subgroup
*subgrp
, char withdraw
,
529 uint32_t addpath_tx_id
)
531 struct bgp_adj_out
*adj
;
532 struct bgp_advertise
*adv
;
535 if (DISABLE_BGP_ANNOUNCE
)
538 /* Lookup existing adjacency */
539 if ((adj
= adj_lookup(rn
, subgrp
, addpath_tx_id
)) != NULL
) {
540 /* Clean up previous advertisement. */
542 bgp_advertise_clean_subgroup(subgrp
, adj
);
544 if (adj
->attr
&& withdraw
) {
545 /* We need advertisement structure. */
546 adj
->adv
= bgp_advertise_new();
551 /* Note if we need to trigger a packet write */
553 !bgp_adv_fifo_count(&subgrp
->sync
->withdraw
);
555 /* Add to synchronization entry for withdraw
557 bgp_adv_fifo_add_tail(&subgrp
->sync
->withdraw
, adv
);
560 subgroup_trigger_write(subgrp
);
562 /* Remove myself from adjacency. */
563 RB_REMOVE(bgp_adj_out_rb
, &rn
->adj_out
, adj
);
565 /* Free allocated information. */
572 subgrp
->version
= max(subgrp
->version
, rn
->version
);
575 void bgp_adj_out_remove_subgroup(struct bgp_node
*rn
, struct bgp_adj_out
*adj
,
576 struct update_subgroup
*subgrp
)
579 bgp_attr_unintern(&adj
->attr
);
582 bgp_advertise_clean_subgroup(subgrp
, adj
);
584 RB_REMOVE(bgp_adj_out_rb
, &rn
->adj_out
, adj
);
589 * Go through all the routes and clean up the adj/adv structures corresponding
592 void subgroup_clear_table(struct update_subgroup
*subgrp
)
594 struct bgp_adj_out
*aout
, *taout
;
596 SUBGRP_FOREACH_ADJ_SAFE (subgrp
, aout
, taout
) {
597 struct bgp_node
*rn
= aout
->rn
;
598 bgp_adj_out_remove_subgroup(rn
, aout
, subgrp
);
604 * subgroup_announce_table
606 void subgroup_announce_table(struct update_subgroup
*subgrp
,
607 struct bgp_table
*table
)
610 struct bgp_path_info
*ri
;
617 peer
= SUBGRP_PEER(subgrp
);
618 afi
= SUBGRP_AFI(subgrp
);
619 safi
= SUBGRP_SAFI(subgrp
);
620 addpath_capable
= bgp_addpath_encode_tx(peer
, afi
, safi
);
622 if (safi
== SAFI_LABELED_UNICAST
)
626 table
= peer
->bgp
->rib
[afi
][safi
];
628 if (safi
!= SAFI_MPLS_VPN
&& safi
!= SAFI_ENCAP
&& safi
!= SAFI_EVPN
629 && CHECK_FLAG(peer
->af_flags
[afi
][safi
],
630 PEER_FLAG_DEFAULT_ORIGINATE
))
631 subgroup_default_originate(subgrp
, 0);
633 for (rn
= bgp_table_top(table
); rn
; rn
= bgp_route_next(rn
))
634 for (ri
= bgp_node_get_bgp_path_info(rn
); ri
; ri
= ri
->next
)
636 if (CHECK_FLAG(ri
->flags
, BGP_PATH_SELECTED
)
638 && bgp_addpath_tx_path(
639 peer
->addpath_type
[afi
][safi
],
641 if (subgroup_announce_check(rn
, ri
, subgrp
,
643 bgp_adj_out_set_subgroup(rn
, subgrp
,
646 bgp_adj_out_unset_subgroup(
648 bgp_addpath_id_for_peer(
654 * We walked through the whole table -- make sure our version number
655 * is consistent with the one on the table. This should allow
656 * subgroups to merge sooner if a peer comes up when the route node
657 * with the largest version is no longer in the table. This also
658 * covers the pathological case where all routes in the table have
661 subgrp
->version
= max(subgrp
->version
, table
->version
);
664 * Start a task to merge the subgroup if necessary.
666 update_subgroup_trigger_merge_check(subgrp
, 0);
670 * subgroup_announce_route
672 * Refresh all routes out to a subgroup.
674 void subgroup_announce_route(struct update_subgroup
*subgrp
)
677 struct bgp_table
*table
;
678 struct peer
*onlypeer
;
680 if (update_subgroup_needs_refresh(subgrp
)) {
681 update_subgroup_set_needs_refresh(subgrp
, 0);
685 * First update is deferred until ORF or ROUTE-REFRESH is received
687 onlypeer
= ((SUBGRP_PCOUNT(subgrp
) == 1) ? (SUBGRP_PFIRST(subgrp
))->peer
689 if (onlypeer
&& CHECK_FLAG(onlypeer
->af_sflags
[SUBGRP_AFI(subgrp
)]
690 [SUBGRP_SAFI(subgrp
)],
691 PEER_STATUS_ORF_WAIT_REFRESH
))
694 if (SUBGRP_SAFI(subgrp
) != SAFI_MPLS_VPN
695 && SUBGRP_SAFI(subgrp
) != SAFI_ENCAP
696 && SUBGRP_SAFI(subgrp
) != SAFI_EVPN
)
697 subgroup_announce_table(subgrp
, NULL
);
699 for (rn
= bgp_table_top(update_subgroup_rib(subgrp
)); rn
;
700 rn
= bgp_route_next(rn
)) {
701 table
= bgp_node_get_bgp_table_info(rn
);
704 subgroup_announce_table(subgrp
, table
);
708 void subgroup_default_originate(struct update_subgroup
*subgrp
, int withdraw
)
712 struct aspath
*aspath
;
713 struct bgp_path_info tmp_info
;
717 struct bgp_path_info
*ri
;
719 route_map_result_t ret
= RMAP_DENYMATCH
;
726 peer
= SUBGRP_PEER(subgrp
);
727 afi
= SUBGRP_AFI(subgrp
);
728 safi
= SUBGRP_SAFI(subgrp
);
730 if (!(afi
== AFI_IP
|| afi
== AFI_IP6
))
734 from
= bgp
->peer_self
;
736 bgp_attr_default_set(&attr
, BGP_ORIGIN_IGP
);
737 aspath
= attr
.aspath
;
739 attr
.local_pref
= bgp
->default_local_pref
;
741 memset(&p
, 0, sizeof(p
));
742 p
.family
= afi2family(afi
);
745 if ((afi
== AFI_IP6
) || peer_cap_enhe(peer
, afi
, safi
)) {
746 /* IPv6 global nexthop must be included. */
747 attr
.mp_nexthop_len
= BGP_ATTR_NHLEN_IPV6_GLOBAL
;
749 /* If the peer is on shared nextwork and we have link-local
751 if (peer
->shared_network
752 && !IN6_IS_ADDR_UNSPECIFIED(&peer
->nexthop
.v6_local
))
753 attr
.mp_nexthop_len
= BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL
;
756 if (peer
->default_rmap
[afi
][safi
].name
) {
757 SET_FLAG(bgp
->peer_self
->rmap_type
, PEER_RMAP_TYPE_DEFAULT
);
758 for (rn
= bgp_table_top(bgp
->rib
[afi
][safi
]); rn
;
759 rn
= bgp_route_next(rn
)) {
760 for (ri
= bgp_node_get_bgp_path_info(rn
);
762 struct attr dummy_attr
;
764 /* Provide dummy so the route-map can't modify
766 bgp_attr_dup(&dummy_attr
, ri
->attr
);
767 tmp_info
.peer
= ri
->peer
;
768 tmp_info
.attr
= &dummy_attr
;
770 ret
= route_map_apply(
771 peer
->default_rmap
[afi
][safi
].map
,
772 &rn
->p
, RMAP_BGP
, &tmp_info
);
774 /* The route map might have set attributes. If
775 * we don't flush them
776 * here, they will be leaked. */
777 bgp_attr_flush(&dummy_attr
);
778 if (ret
!= RMAP_DENYMATCH
)
781 if (ret
!= RMAP_DENYMATCH
)
784 bgp
->peer_self
->rmap_type
= 0;
786 if (ret
== RMAP_DENYMATCH
)
791 if (CHECK_FLAG(subgrp
->sflags
, SUBGRP_STATUS_DEFAULT_ORIGINATE
))
792 subgroup_default_withdraw_packet(subgrp
);
793 UNSET_FLAG(subgrp
->sflags
, SUBGRP_STATUS_DEFAULT_ORIGINATE
);
795 if (!CHECK_FLAG(subgrp
->sflags
,
796 SUBGRP_STATUS_DEFAULT_ORIGINATE
)) {
798 if (bgp_flag_check(bgp
, BGP_FLAG_GRACEFUL_SHUTDOWN
)) {
799 bgp_attr_add_gshut_community(&attr
);
802 SET_FLAG(subgrp
->sflags
,
803 SUBGRP_STATUS_DEFAULT_ORIGINATE
);
804 subgroup_default_update_packet(subgrp
, &attr
, from
);
806 /* The 'neighbor x.x.x.x default-originate' default will
808 * implicit withdraw for any previous UPDATEs sent for
810 * clear adj_out for the 0.0.0.0/0 prefix in the BGP
813 memset(&p
, 0, sizeof(p
));
814 p
.family
= afi2family(afi
);
817 rn
= bgp_afi_node_get(bgp
->rib
[afi
][safi
], afi
, safi
,
819 bgp_adj_out_unset_subgroup(
821 BGP_ADDPATH_TX_ID_FOR_DEFAULT_ORIGINATE
);
825 aspath_unintern(&aspath
);
829 * Announce the BGP table to a subgroup.
831 * At startup, we try to optimize route announcement by coalescing the
832 * peer-up events. This is done only the first time - from then on,
833 * subgrp->v_coalesce will be set to zero and the normal logic
836 void subgroup_announce_all(struct update_subgroup
*subgrp
)
842 * If coalesce timer value is not set, announce routes immediately.
844 if (!subgrp
->v_coalesce
) {
845 if (bgp_debug_update(NULL
, NULL
, subgrp
->update_group
, 0))
846 zlog_debug("u%" PRIu64
":s%" PRIu64
847 " announcing all routes",
848 subgrp
->update_group
->id
, subgrp
->id
);
849 subgroup_announce_route(subgrp
);
854 * We should wait for the coalesce timer. Arm the timer if not done.
856 if (!subgrp
->t_coalesce
) {
857 thread_add_timer_msec(bm
->master
, subgroup_coalesce_timer
,
858 subgrp
, subgrp
->v_coalesce
,
859 &subgrp
->t_coalesce
);
864 * Go through all update subgroups and set up the adv queue for the
867 void group_announce_route(struct bgp
*bgp
, afi_t afi
, safi_t safi
,
868 struct bgp_node
*rn
, struct bgp_path_info
*pi
)
870 struct updwalk_context ctx
;
873 update_group_af_walk(bgp
, afi
, safi
, group_announce_route_walkcb
, &ctx
);
876 void update_group_show_adj_queue(struct bgp
*bgp
, afi_t afi
, safi_t safi
,
877 struct vty
*vty
, uint64_t id
)
879 updgrp_show_adj(bgp
, afi
, safi
, vty
, id
, UPDWALK_FLAGS_ADVQUEUE
);
882 void update_group_show_advertised(struct bgp
*bgp
, afi_t afi
, safi_t safi
,
883 struct vty
*vty
, uint64_t id
)
885 updgrp_show_adj(bgp
, afi
, safi
, vty
, id
, UPDWALK_FLAGS_ADVERTISED
);
888 void update_group_announce(struct bgp
*bgp
)
890 update_group_walk(bgp
, update_group_announce_walkcb
, NULL
);
893 void update_group_announce_rrclients(struct bgp
*bgp
)
895 update_group_walk(bgp
, update_group_announce_rrc_walkcb
, NULL
);