2 * bgp_updgrp.c: BGP update group structures
4 * @copyright Copyright (C) 2014 Cumulus Networks, Inc.
6 * @author Avneesh Sachdev <avneesh@sproute.net>
7 * @author Rajesh Varadarajan <rajesh@sproute.net>
8 * @author Pradosh Mohapatra <pradosh@sproute.net>
10 * This file is part of GNU Zebra.
12 * GNU Zebra is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2, or (at your option) any
17 * GNU Zebra is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
22 * You should have received a copy of the GNU General Public License along
23 * with this program; see the file COPYING; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
34 #include "sockunion.h"
42 #include "workqueue.h"
47 #include "bgpd/bgpd.h"
48 #include "bgpd/bgp_table.h"
49 #include "bgpd/bgp_debug.h"
50 #include "bgpd/bgp_errors.h"
51 #include "bgpd/bgp_fsm.h"
52 #include "bgpd/bgp_advertise.h"
53 #include "bgpd/bgp_packet.h"
54 #include "bgpd/bgp_updgrp.h"
55 #include "bgpd/bgp_route.h"
56 #include "bgpd/bgp_filter.h"
57 #include "bgpd/bgp_io.h"
64 * assign a unique ID to update group and subgroup. Mostly for display/
65 * debugging purposes. It's a 64-bit space - used leisurely without a
66 * worry about its wrapping and about filling gaps. While at it, timestamp
69 static void update_group_checkin(struct update_group
*updgrp
)
71 updgrp
->id
= ++bm
->updgrp_idspace
;
72 updgrp
->uptime
= bgp_clock();
75 static void update_subgroup_checkin(struct update_subgroup
*subgrp
,
76 struct update_group
*updgrp
)
78 subgrp
->id
= ++bm
->subgrp_idspace
;
79 subgrp
->uptime
= bgp_clock();
82 static void sync_init(struct update_subgroup
*subgrp
)
85 XCALLOC(MTYPE_BGP_SYNCHRONISE
, sizeof(struct bgp_synchronize
));
86 BGP_ADV_FIFO_INIT(&subgrp
->sync
->update
);
87 BGP_ADV_FIFO_INIT(&subgrp
->sync
->withdraw
);
88 BGP_ADV_FIFO_INIT(&subgrp
->sync
->withdraw_low
);
90 hash_create(baa_hash_key
, baa_hash_cmp
, "BGP SubGroup Hash");
92 /* We use a larger buffer for subgrp->work in the event that:
93 * - We RX a BGP_UPDATE where the attributes alone are just
94 * under BGP_MAX_PACKET_SIZE
95 * - The user configures an outbound route-map that does many as-path
96 * prepends or adds many communities. At most they can have
98 * args in a route-map so there is a finite limit on how large they
100 * make the attributes.
102 * Having a buffer with BGP_MAX_PACKET_SIZE_OVERFLOW allows us to avoid
104 * checking for every single attribute as we construct an UPDATE.
107 stream_new(BGP_MAX_PACKET_SIZE
+ BGP_MAX_PACKET_SIZE_OVERFLOW
);
108 subgrp
->scratch
= stream_new(BGP_MAX_PACKET_SIZE
);
111 static void sync_delete(struct update_subgroup
*subgrp
)
113 XFREE(MTYPE_BGP_SYNCHRONISE
, subgrp
->sync
);
116 hash_free(subgrp
->hash
);
119 stream_free(subgrp
->work
);
122 stream_free(subgrp
->scratch
);
123 subgrp
->scratch
= NULL
;
129 * copy only those fields that are relevant to update group match
131 static void conf_copy(struct peer
*dst
, struct peer
*src
, afi_t afi
,
134 struct bgp_filter
*srcfilter
;
135 struct bgp_filter
*dstfilter
;
137 srcfilter
= &src
->filter
[afi
][safi
];
138 dstfilter
= &dst
->filter
[afi
][safi
];
141 dst
->sort
= src
->sort
;
143 dst
->v_routeadv
= src
->v_routeadv
;
144 dst
->flags
= src
->flags
;
145 dst
->af_flags
[afi
][safi
] = src
->af_flags
[afi
][safi
];
146 XFREE(MTYPE_BGP_PEER_HOST
, dst
->host
);
148 dst
->host
= XSTRDUP(MTYPE_BGP_PEER_HOST
, src
->host
);
150 dst
->af_cap
[afi
][safi
] = src
->af_cap
[afi
][safi
];
151 dst
->afc_nego
[afi
][safi
] = src
->afc_nego
[afi
][safi
];
152 dst
->orf_plist
[afi
][safi
] = src
->orf_plist
[afi
][safi
];
153 dst
->addpath_type
[afi
][safi
] = src
->addpath_type
[afi
][safi
];
154 dst
->local_as
= src
->local_as
;
155 dst
->change_local_as
= src
->change_local_as
;
156 dst
->shared_network
= src
->shared_network
;
157 memcpy(&(dst
->nexthop
), &(src
->nexthop
), sizeof(struct bgp_nexthop
));
159 dst
->group
= src
->group
;
161 if (src
->default_rmap
[afi
][safi
].name
) {
162 dst
->default_rmap
[afi
][safi
].name
=
163 XSTRDUP(MTYPE_ROUTE_MAP_NAME
,
164 src
->default_rmap
[afi
][safi
].name
);
165 dst
->default_rmap
[afi
][safi
].map
=
166 src
->default_rmap
[afi
][safi
].map
;
169 if (DISTRIBUTE_OUT_NAME(srcfilter
)) {
170 DISTRIBUTE_OUT_NAME(dstfilter
) = XSTRDUP(
171 MTYPE_BGP_FILTER_NAME
, DISTRIBUTE_OUT_NAME(srcfilter
));
172 DISTRIBUTE_OUT(dstfilter
) = DISTRIBUTE_OUT(srcfilter
);
175 if (PREFIX_LIST_OUT_NAME(srcfilter
)) {
176 PREFIX_LIST_OUT_NAME(dstfilter
) = XSTRDUP(
177 MTYPE_BGP_FILTER_NAME
, PREFIX_LIST_OUT_NAME(srcfilter
));
178 PREFIX_LIST_OUT(dstfilter
) = PREFIX_LIST_OUT(srcfilter
);
181 if (FILTER_LIST_OUT_NAME(srcfilter
)) {
182 FILTER_LIST_OUT_NAME(dstfilter
) = XSTRDUP(
183 MTYPE_BGP_FILTER_NAME
, FILTER_LIST_OUT_NAME(srcfilter
));
184 FILTER_LIST_OUT(dstfilter
) = FILTER_LIST_OUT(srcfilter
);
187 if (ROUTE_MAP_OUT_NAME(srcfilter
)) {
188 ROUTE_MAP_OUT_NAME(dstfilter
) = XSTRDUP(
189 MTYPE_BGP_FILTER_NAME
, ROUTE_MAP_OUT_NAME(srcfilter
));
190 ROUTE_MAP_OUT(dstfilter
) = ROUTE_MAP_OUT(srcfilter
);
193 if (UNSUPPRESS_MAP_NAME(srcfilter
)) {
194 UNSUPPRESS_MAP_NAME(dstfilter
) = XSTRDUP(
195 MTYPE_BGP_FILTER_NAME
, UNSUPPRESS_MAP_NAME(srcfilter
));
196 UNSUPPRESS_MAP(dstfilter
) = UNSUPPRESS_MAP(srcfilter
);
201 * since we did a bunch of XSTRDUP's in conf_copy, time to free them up
203 static void conf_release(struct peer
*src
, afi_t afi
, safi_t safi
)
205 struct bgp_filter
*srcfilter
;
207 srcfilter
= &src
->filter
[afi
][safi
];
209 XFREE(MTYPE_ROUTE_MAP_NAME
, src
->default_rmap
[afi
][safi
].name
);
211 XFREE(MTYPE_BGP_FILTER_NAME
, srcfilter
->dlist
[FILTER_OUT
].name
);
213 XFREE(MTYPE_BGP_FILTER_NAME
, srcfilter
->plist
[FILTER_OUT
].name
);
215 XFREE(MTYPE_BGP_FILTER_NAME
, srcfilter
->aslist
[FILTER_OUT
].name
);
217 XFREE(MTYPE_BGP_FILTER_NAME
, srcfilter
->map
[RMAP_OUT
].name
);
219 XFREE(MTYPE_BGP_FILTER_NAME
, srcfilter
->usmap
.name
);
221 XFREE(MTYPE_BGP_PEER_HOST
, src
->host
);
225 static void peer2_updgrp_copy(struct update_group
*updgrp
, struct peer_af
*paf
)
238 updgrp
->afi
= paf
->afi
;
239 updgrp
->safi
= paf
->safi
;
240 updgrp
->afid
= paf
->afid
;
241 updgrp
->bgp
= src
->bgp
;
243 conf_copy(dst
, src
, paf
->afi
, paf
->safi
);
247 * auxiliary functions to maintain the hash table.
248 * - updgrp_hash_alloc - to create a new entry, passed to hash_get
249 * - updgrp_hash_key_make - makes the key for update group search
250 * - updgrp_hash_cmp - compare two update groups.
252 static void *updgrp_hash_alloc(void *p
)
254 struct update_group
*updgrp
;
255 const struct update_group
*in
;
257 in
= (const struct update_group
*)p
;
258 updgrp
= XCALLOC(MTYPE_BGP_UPDGRP
, sizeof(struct update_group
));
259 memcpy(updgrp
, in
, sizeof(struct update_group
));
260 updgrp
->conf
= XCALLOC(MTYPE_BGP_PEER
, sizeof(struct peer
));
261 conf_copy(updgrp
->conf
, in
->conf
, in
->afi
, in
->safi
);
266 * The hash value for a peer is computed from the following variables:
268 * 1. IBGP (1) or EBGP (2)
269 * 2. FLAGS based on configuration:
270 * LOCAL_AS_NO_PREPEND
271 * LOCAL_AS_REPLACE_AS
272 * 3. AF_FLAGS based on configuration:
273 * Refer to definition in bgp_updgrp.h
274 * 4. (AF-independent) Capability flags:
276 * 5. (AF-dependent) Capability flags:
277 * ORF_PREFIX_SM_RCV (peer can send prefix ORF)
280 * 8. Outbound route-map name (neighbor route-map <> out)
281 * 9. Outbound distribute-list name (neighbor distribute-list <> out)
282 * 10. Outbound prefix-list name (neighbor prefix-list <> out)
283 * 11. Outbound as-list name (neighbor filter-list <> out)
284 * 12. Unsuppress map name (neighbor unsuppress-map <>)
285 * 13. default rmap name (neighbor default-originate route-map <>)
286 * 14. encoding both global and link-local nexthop?
287 * 15. If peer is configured to be a lonesoul, peer ip address
288 * 16. Local-as should match, if configured.
291 static unsigned int updgrp_hash_key_make(void *p
)
293 const struct update_group
*updgrp
;
294 const struct peer
*peer
;
295 const struct bgp_filter
*filter
;
302 #define SEED2 2147483647
308 flags
= peer
->af_flags
[afi
][safi
];
309 filter
= &peer
->filter
[afi
][safi
];
313 key
= jhash_1word(peer
->sort
, key
); /* EBGP or IBGP */
314 key
= jhash_1word((peer
->flags
& PEER_UPDGRP_FLAGS
), key
);
315 key
= jhash_1word((flags
& PEER_UPDGRP_AF_FLAGS
), key
);
316 key
= jhash_1word((uint32_t)peer
->addpath_type
[afi
][safi
], key
);
317 key
= jhash_1word((peer
->cap
& PEER_UPDGRP_CAP_FLAGS
), key
);
318 key
= jhash_1word((peer
->af_cap
[afi
][safi
] & PEER_UPDGRP_AF_CAP_FLAGS
),
320 key
= jhash_1word(peer
->v_routeadv
, key
);
321 key
= jhash_1word(peer
->change_local_as
, key
);
324 key
= jhash_1word(jhash(peer
->group
->name
,
325 strlen(peer
->group
->name
), SEED1
),
328 if (filter
->map
[RMAP_OUT
].name
)
329 key
= jhash_1word(jhash(filter
->map
[RMAP_OUT
].name
,
330 strlen(filter
->map
[RMAP_OUT
].name
),
334 if (filter
->dlist
[FILTER_OUT
].name
)
335 key
= jhash_1word(jhash(filter
->dlist
[FILTER_OUT
].name
,
336 strlen(filter
->dlist
[FILTER_OUT
].name
),
340 if (filter
->plist
[FILTER_OUT
].name
)
341 key
= jhash_1word(jhash(filter
->plist
[FILTER_OUT
].name
,
342 strlen(filter
->plist
[FILTER_OUT
].name
),
346 if (filter
->aslist
[FILTER_OUT
].name
)
347 key
= jhash_1word(jhash(filter
->aslist
[FILTER_OUT
].name
,
348 strlen(filter
->aslist
[FILTER_OUT
].name
),
352 if (filter
->usmap
.name
)
353 key
= jhash_1word(jhash(filter
->usmap
.name
,
354 strlen(filter
->usmap
.name
), SEED1
),
357 if (peer
->default_rmap
[afi
][safi
].name
)
359 jhash(peer
->default_rmap
[afi
][safi
].name
,
360 strlen(peer
->default_rmap
[afi
][safi
].name
),
364 /* If peer is on a shared network and is exchanging IPv6 prefixes,
365 * it needs to include link-local address. That's different from
366 * non-shared-network peers (nexthop encoded with 32 bytes vs 16
367 * bytes). We create different update groups to take care of that.
370 (peer
->shared_network
&& peer_afi_active_nego(peer
, AFI_IP6
)),
374 * There are certain peers that must get their own update-group:
376 * - peers that negotiated ORF
378 if (CHECK_FLAG(peer
->flags
, PEER_FLAG_LONESOUL
)
379 || CHECK_FLAG(peer
->af_cap
[afi
][safi
], PEER_CAP_ORF_PREFIX_SM_RCV
)
380 || CHECK_FLAG(peer
->af_cap
[afi
][safi
],
381 PEER_CAP_ORF_PREFIX_SM_OLD_RCV
))
382 key
= jhash_1word(jhash(peer
->host
, strlen(peer
->host
), SEED2
),
388 static bool updgrp_hash_cmp(const void *p1
, const void *p2
)
390 const struct update_group
*grp1
;
391 const struct update_group
*grp2
;
392 const struct peer
*pe1
;
393 const struct peer
*pe2
;
396 const struct bgp_filter
*fl1
;
397 const struct bgp_filter
*fl2
;
410 flags1
= pe1
->af_flags
[afi
][safi
];
411 flags2
= pe2
->af_flags
[afi
][safi
];
412 fl1
= &pe1
->filter
[afi
][safi
];
413 fl2
= &pe2
->filter
[afi
][safi
];
415 /* put EBGP and IBGP peers in different update groups */
416 if (pe1
->sort
!= pe2
->sort
)
419 /* check peer flags */
420 if ((pe1
->flags
& PEER_UPDGRP_FLAGS
)
421 != (pe2
->flags
& PEER_UPDGRP_FLAGS
))
424 /* If there is 'local-as' configured, it should match. */
425 if (pe1
->change_local_as
!= pe2
->change_local_as
)
428 /* flags like route reflector client */
429 if ((flags1
& PEER_UPDGRP_AF_FLAGS
) != (flags2
& PEER_UPDGRP_AF_FLAGS
))
432 if (pe1
->addpath_type
[afi
][safi
] != pe2
->addpath_type
[afi
][safi
])
435 if ((pe1
->cap
& PEER_UPDGRP_CAP_FLAGS
)
436 != (pe2
->cap
& PEER_UPDGRP_CAP_FLAGS
))
439 if ((pe1
->af_cap
[afi
][safi
] & PEER_UPDGRP_AF_CAP_FLAGS
)
440 != (pe2
->af_cap
[afi
][safi
] & PEER_UPDGRP_AF_CAP_FLAGS
))
443 if (pe1
->v_routeadv
!= pe2
->v_routeadv
)
446 if (pe1
->group
!= pe2
->group
)
449 /* route-map names should be the same */
450 if ((fl1
->map
[RMAP_OUT
].name
&& !fl2
->map
[RMAP_OUT
].name
)
451 || (!fl1
->map
[RMAP_OUT
].name
&& fl2
->map
[RMAP_OUT
].name
)
452 || (fl1
->map
[RMAP_OUT
].name
&& fl2
->map
[RMAP_OUT
].name
453 && strcmp(fl1
->map
[RMAP_OUT
].name
, fl2
->map
[RMAP_OUT
].name
)))
456 if ((fl1
->dlist
[FILTER_OUT
].name
&& !fl2
->dlist
[FILTER_OUT
].name
)
457 || (!fl1
->dlist
[FILTER_OUT
].name
&& fl2
->dlist
[FILTER_OUT
].name
)
458 || (fl1
->dlist
[FILTER_OUT
].name
&& fl2
->dlist
[FILTER_OUT
].name
459 && strcmp(fl1
->dlist
[FILTER_OUT
].name
,
460 fl2
->dlist
[FILTER_OUT
].name
)))
463 if ((fl1
->plist
[FILTER_OUT
].name
&& !fl2
->plist
[FILTER_OUT
].name
)
464 || (!fl1
->plist
[FILTER_OUT
].name
&& fl2
->plist
[FILTER_OUT
].name
)
465 || (fl1
->plist
[FILTER_OUT
].name
&& fl2
->plist
[FILTER_OUT
].name
466 && strcmp(fl1
->plist
[FILTER_OUT
].name
,
467 fl2
->plist
[FILTER_OUT
].name
)))
470 if ((fl1
->aslist
[FILTER_OUT
].name
&& !fl2
->aslist
[FILTER_OUT
].name
)
471 || (!fl1
->aslist
[FILTER_OUT
].name
&& fl2
->aslist
[FILTER_OUT
].name
)
472 || (fl1
->aslist
[FILTER_OUT
].name
&& fl2
->aslist
[FILTER_OUT
].name
473 && strcmp(fl1
->aslist
[FILTER_OUT
].name
,
474 fl2
->aslist
[FILTER_OUT
].name
)))
477 if ((fl1
->usmap
.name
&& !fl2
->usmap
.name
)
478 || (!fl1
->usmap
.name
&& fl2
->usmap
.name
)
479 || (fl1
->usmap
.name
&& fl2
->usmap
.name
480 && strcmp(fl1
->usmap
.name
, fl2
->usmap
.name
)))
483 if ((pe1
->default_rmap
[afi
][safi
].name
484 && !pe2
->default_rmap
[afi
][safi
].name
)
485 || (!pe1
->default_rmap
[afi
][safi
].name
486 && pe2
->default_rmap
[afi
][safi
].name
)
487 || (pe1
->default_rmap
[afi
][safi
].name
488 && pe2
->default_rmap
[afi
][safi
].name
489 && strcmp(pe1
->default_rmap
[afi
][safi
].name
,
490 pe2
->default_rmap
[afi
][safi
].name
)))
493 if ((afi
== AFI_IP6
) && (pe1
->shared_network
!= pe2
->shared_network
))
496 if ((CHECK_FLAG(pe1
->flags
, PEER_FLAG_LONESOUL
)
497 || CHECK_FLAG(pe1
->af_cap
[afi
][safi
], PEER_CAP_ORF_PREFIX_SM_RCV
)
498 || CHECK_FLAG(pe1
->af_cap
[afi
][safi
],
499 PEER_CAP_ORF_PREFIX_SM_OLD_RCV
))
500 && !sockunion_same(&pe1
->su
, &pe2
->su
))
506 static void peer_lonesoul_or_not(struct peer
*peer
, int set
)
508 /* no change in status? */
509 if (set
== (CHECK_FLAG(peer
->flags
, PEER_FLAG_LONESOUL
) > 0))
513 SET_FLAG(peer
->flags
, PEER_FLAG_LONESOUL
);
515 UNSET_FLAG(peer
->flags
, PEER_FLAG_LONESOUL
);
517 update_group_adjust_peer_afs(peer
);
521 * subgroup_total_packets_enqueued
523 * Returns the total number of packets enqueued to a subgroup.
526 subgroup_total_packets_enqueued(struct update_subgroup
*subgrp
)
530 pkt
= bpacket_queue_last(SUBGRP_PKTQ(subgrp
));
535 static int update_group_show_walkcb(struct update_group
*updgrp
, void *arg
)
537 struct updwalk_context
*ctx
= arg
;
539 struct update_subgroup
*subgrp
;
541 struct bgp_filter
*filter
;
547 if (ctx
->subgrp_id
) {
548 UPDGRP_FOREACH_SUBGRP (updgrp
, subgrp
) {
549 if (ctx
->subgrp_id
&& (ctx
->subgrp_id
!= subgrp
->id
))
561 /* Since this routine is invoked from a walk, we cannot signal
563 /* error here, can only return. */
569 vty_out(vty
, "Update-group %" PRIu64
":\n", updgrp
->id
);
570 vty_out(vty
, " Created: %s", timestamp_string(updgrp
->uptime
));
571 filter
= &updgrp
->conf
->filter
[updgrp
->afi
][updgrp
->safi
];
572 if (filter
->map
[RMAP_OUT
].name
)
573 vty_out(vty
, " Outgoing route map: %s%s\n",
574 filter
->map
[RMAP_OUT
].map
? "X" : "",
575 filter
->map
[RMAP_OUT
].name
);
576 vty_out(vty
, " MRAI value (seconds): %d\n", updgrp
->conf
->v_routeadv
);
577 if (updgrp
->conf
->change_local_as
)
578 vty_out(vty
, " Local AS %u%s%s\n",
579 updgrp
->conf
->change_local_as
,
580 CHECK_FLAG(updgrp
->conf
->flags
,
581 PEER_FLAG_LOCAL_AS_NO_PREPEND
)
584 CHECK_FLAG(updgrp
->conf
->flags
,
585 PEER_FLAG_LOCAL_AS_REPLACE_AS
)
589 UPDGRP_FOREACH_SUBGRP (updgrp
, subgrp
) {
590 if (ctx
->subgrp_id
&& (ctx
->subgrp_id
!= subgrp
->id
))
593 vty_out(vty
, " Update-subgroup %" PRIu64
":\n", subgrp
->id
);
594 vty_out(vty
, " Created: %s",
595 timestamp_string(subgrp
->uptime
));
597 if (subgrp
->split_from
.update_group_id
598 || subgrp
->split_from
.subgroup_id
) {
599 vty_out(vty
, " Split from group id: %" PRIu64
"\n",
600 subgrp
->split_from
.update_group_id
);
602 " Split from subgroup id: %" PRIu64
"\n",
603 subgrp
->split_from
.subgroup_id
);
606 vty_out(vty
, " Join events: %u\n", subgrp
->join_events
);
607 vty_out(vty
, " Prune events: %u\n", subgrp
->prune_events
);
608 vty_out(vty
, " Merge events: %u\n", subgrp
->merge_events
);
609 vty_out(vty
, " Split events: %u\n", subgrp
->split_events
);
610 vty_out(vty
, " Update group switch events: %u\n",
611 subgrp
->updgrp_switch_events
);
612 vty_out(vty
, " Peer refreshes combined: %u\n",
613 subgrp
->peer_refreshes_combined
);
614 vty_out(vty
, " Merge checks triggered: %u\n",
615 subgrp
->merge_checks_triggered
);
616 vty_out(vty
, " Version: %" PRIu64
"\n", subgrp
->version
);
617 vty_out(vty
, " Packet queue length: %d\n",
618 bpacket_queue_length(SUBGRP_PKTQ(subgrp
)));
619 vty_out(vty
, " Total packets enqueued: %u\n",
620 subgroup_total_packets_enqueued(subgrp
));
621 vty_out(vty
, " Packet queue high watermark: %d\n",
622 bpacket_queue_hwm_length(SUBGRP_PKTQ(subgrp
)));
623 vty_out(vty
, " Adj-out list count: %u\n", subgrp
->adj_count
);
624 vty_out(vty
, " Advertise list: %s\n",
625 advertise_list_is_empty(subgrp
) ? "empty"
627 vty_out(vty
, " Flags: %s\n",
628 CHECK_FLAG(subgrp
->flags
, SUBGRP_FLAG_NEEDS_REFRESH
)
631 if (subgrp
->peer_count
> 0) {
632 vty_out(vty
, " Peers:\n");
633 SUBGRP_FOREACH_PEER (subgrp
, paf
)
634 vty_out(vty
, " - %s\n", paf
->peer
->host
);
637 return UPDWALK_CONTINUE
;
641 * Helper function to show the packet queue for each subgroup of update group.
642 * Will be constrained to a particular subgroup id if id !=0
644 static int updgrp_show_packet_queue_walkcb(struct update_group
*updgrp
,
647 struct updwalk_context
*ctx
= arg
;
648 struct update_subgroup
*subgrp
;
652 UPDGRP_FOREACH_SUBGRP (updgrp
, subgrp
) {
653 if (ctx
->subgrp_id
&& (ctx
->subgrp_id
!= subgrp
->id
))
655 vty_out(vty
, "update group %" PRIu64
", subgroup %" PRIu64
"\n",
656 updgrp
->id
, subgrp
->id
);
657 bpacket_queue_show_vty(SUBGRP_PKTQ(subgrp
), vty
);
659 return UPDWALK_CONTINUE
;
663 * Show the packet queue for each subgroup of update group. Will be
664 * constrained to a particular subgroup id if id !=0
666 void update_group_show_packet_queue(struct bgp
*bgp
, afi_t afi
, safi_t safi
,
667 struct vty
*vty
, uint64_t id
)
669 struct updwalk_context ctx
;
671 memset(&ctx
, 0, sizeof(ctx
));
675 update_group_af_walk(bgp
, afi
, safi
, updgrp_show_packet_queue_walkcb
,
679 static struct update_group
*update_group_find(struct peer_af
*paf
)
681 struct update_group
*updgrp
;
682 struct update_group tmp
;
683 struct peer tmp_conf
;
685 if (!peer_established(PAF_PEER(paf
)))
688 memset(&tmp
, 0, sizeof(tmp
));
689 memset(&tmp_conf
, 0, sizeof(tmp_conf
));
690 tmp
.conf
= &tmp_conf
;
691 peer2_updgrp_copy(&tmp
, paf
);
693 updgrp
= hash_lookup(paf
->peer
->bgp
->update_groups
[paf
->afid
], &tmp
);
694 conf_release(&tmp_conf
, paf
->afi
, paf
->safi
);
698 static struct update_group
*update_group_create(struct peer_af
*paf
)
700 struct update_group
*updgrp
;
701 struct update_group tmp
;
702 struct peer tmp_conf
;
704 memset(&tmp
, 0, sizeof(tmp
));
705 memset(&tmp_conf
, 0, sizeof(tmp_conf
));
706 tmp
.conf
= &tmp_conf
;
707 peer2_updgrp_copy(&tmp
, paf
);
709 updgrp
= hash_get(paf
->peer
->bgp
->update_groups
[paf
->afid
], &tmp
,
713 update_group_checkin(updgrp
);
715 if (BGP_DEBUG(update_groups
, UPDATE_GROUPS
))
716 zlog_debug("create update group %" PRIu64
, updgrp
->id
);
718 UPDGRP_GLOBAL_STAT(updgrp
, updgrps_created
) += 1;
720 conf_release(&tmp_conf
, paf
->afi
, paf
->safi
);
724 static void update_group_delete(struct update_group
*updgrp
)
726 if (BGP_DEBUG(update_groups
, UPDATE_GROUPS
))
727 zlog_debug("delete update group %" PRIu64
, updgrp
->id
);
729 UPDGRP_GLOBAL_STAT(updgrp
, updgrps_deleted
) += 1;
731 hash_release(updgrp
->bgp
->update_groups
[updgrp
->afid
], updgrp
);
732 conf_release(updgrp
->conf
, updgrp
->afi
, updgrp
->safi
);
734 XFREE(MTYPE_BGP_PEER_HOST
, updgrp
->conf
->host
);
735 updgrp
->conf
->host
= NULL
;
737 XFREE(MTYPE_BGP_PEER_IFNAME
, updgrp
->conf
->ifname
);
739 XFREE(MTYPE_BGP_PEER
, updgrp
->conf
);
740 XFREE(MTYPE_BGP_UPDGRP
, updgrp
);
743 static void update_group_add_subgroup(struct update_group
*updgrp
,
744 struct update_subgroup
*subgrp
)
746 if (!updgrp
|| !subgrp
)
749 LIST_INSERT_HEAD(&(updgrp
->subgrps
), subgrp
, updgrp_train
);
750 subgrp
->update_group
= updgrp
;
753 static void update_group_remove_subgroup(struct update_group
*updgrp
,
754 struct update_subgroup
*subgrp
)
756 if (!updgrp
|| !subgrp
)
759 LIST_REMOVE(subgrp
, updgrp_train
);
760 subgrp
->update_group
= NULL
;
761 if (LIST_EMPTY(&(updgrp
->subgrps
)))
762 update_group_delete(updgrp
);
765 static struct update_subgroup
*
766 update_subgroup_create(struct update_group
*updgrp
)
768 struct update_subgroup
*subgrp
;
770 subgrp
= XCALLOC(MTYPE_BGP_UPD_SUBGRP
, sizeof(struct update_subgroup
));
771 update_subgroup_checkin(subgrp
, updgrp
);
772 subgrp
->v_coalesce
= (UPDGRP_INST(updgrp
))->coalesce_time
;
774 bpacket_queue_init(SUBGRP_PKTQ(subgrp
));
775 bpacket_queue_add(SUBGRP_PKTQ(subgrp
), NULL
, NULL
);
776 TAILQ_INIT(&(subgrp
->adjq
));
777 if (BGP_DEBUG(update_groups
, UPDATE_GROUPS
))
778 zlog_debug("create subgroup u%" PRIu64
":s%" PRIu64
, updgrp
->id
,
781 update_group_add_subgroup(updgrp
, subgrp
);
783 UPDGRP_INCR_STAT(updgrp
, subgrps_created
);
788 static void update_subgroup_delete(struct update_subgroup
*subgrp
)
793 if (subgrp
->update_group
)
794 UPDGRP_INCR_STAT(subgrp
->update_group
, subgrps_deleted
);
796 if (subgrp
->t_merge_check
)
797 THREAD_OFF(subgrp
->t_merge_check
);
799 if (subgrp
->t_coalesce
)
800 THREAD_TIMER_OFF(subgrp
->t_coalesce
);
802 bpacket_queue_cleanup(SUBGRP_PKTQ(subgrp
));
803 subgroup_clear_table(subgrp
);
805 if (subgrp
->t_coalesce
)
806 THREAD_TIMER_OFF(subgrp
->t_coalesce
);
809 if (BGP_DEBUG(update_groups
, UPDATE_GROUPS
) && subgrp
->update_group
)
810 zlog_debug("delete subgroup u%" PRIu64
":s%" PRIu64
,
811 subgrp
->update_group
->id
, subgrp
->id
);
813 update_group_remove_subgroup(subgrp
->update_group
, subgrp
);
815 XFREE(MTYPE_BGP_UPD_SUBGRP
, subgrp
);
818 void update_subgroup_inherit_info(struct update_subgroup
*to
,
819 struct update_subgroup
*from
)
824 to
->sflags
= from
->sflags
;
828 * update_subgroup_check_delete
830 * Delete a subgroup if it is ready to be deleted.
832 * Returns TRUE if the subgroup was deleted.
834 static int update_subgroup_check_delete(struct update_subgroup
*subgrp
)
839 if (!LIST_EMPTY(&(subgrp
->peers
)))
842 update_subgroup_delete(subgrp
);
848 * update_subgroup_add_peer
850 * @param send_enqueued_packets If true all currently enqueued packets will
851 * also be sent to the peer.
853 static void update_subgroup_add_peer(struct update_subgroup
*subgrp
,
855 int send_enqueued_pkts
)
862 LIST_INSERT_HEAD(&(subgrp
->peers
), paf
, subgrp_train
);
863 paf
->subgroup
= subgrp
;
864 subgrp
->peer_count
++;
866 if (bgp_debug_peer_updout_enabled(paf
->peer
->host
)) {
867 UPDGRP_PEER_DBG_EN(subgrp
->update_group
);
870 SUBGRP_INCR_STAT(subgrp
, join_events
);
872 if (send_enqueued_pkts
) {
873 pkt
= bpacket_queue_first(SUBGRP_PKTQ(subgrp
));
877 * Hang the peer off of the last, placeholder, packet in the
878 * queue. This means it won't see any of the packets that are
879 * currently the queue.
881 pkt
= bpacket_queue_last(SUBGRP_PKTQ(subgrp
));
882 assert(pkt
->buffer
== NULL
);
885 bpacket_add_peer(pkt
, paf
);
887 bpacket_queue_sanity_check(SUBGRP_PKTQ(subgrp
));
891 * update_subgroup_remove_peer_internal
893 * Internal function that removes a peer from a subgroup, but does not
894 * delete the subgroup. A call to this function must almost always be
895 * followed by a call to update_subgroup_check_delete().
897 * @see update_subgroup_remove_peer
899 static void update_subgroup_remove_peer_internal(struct update_subgroup
*subgrp
,
902 assert(subgrp
&& paf
&& subgrp
->update_group
);
904 if (bgp_debug_peer_updout_enabled(paf
->peer
->host
)) {
905 UPDGRP_PEER_DBG_DIS(subgrp
->update_group
);
908 bpacket_queue_remove_peer(paf
);
909 LIST_REMOVE(paf
, subgrp_train
);
910 paf
->subgroup
= NULL
;
911 subgrp
->peer_count
--;
913 SUBGRP_INCR_STAT(subgrp
, prune_events
);
917 * update_subgroup_remove_peer
919 void update_subgroup_remove_peer(struct update_subgroup
*subgrp
,
925 update_subgroup_remove_peer_internal(subgrp
, paf
);
927 if (update_subgroup_check_delete(subgrp
))
931 * The deletion of the peer may have caused some packets to be
932 * deleted from the subgroup packet queue. Check if the subgroup can
935 update_subgroup_check_merge(subgrp
, "removed peer from subgroup");
938 static struct update_subgroup
*update_subgroup_find(struct update_group
*updgrp
,
941 struct update_subgroup
*subgrp
= NULL
;
950 if (!peer_established(PAF_PEER(paf
)))
953 UPDGRP_FOREACH_SUBGRP (updgrp
, subgrp
) {
954 if (subgrp
->version
!= version
955 || CHECK_FLAG(subgrp
->sflags
,
956 SUBGRP_STATUS_DEFAULT_ORIGINATE
))
960 * The version number is not meaningful on a subgroup that needs
963 if (update_subgroup_needs_refresh(subgrp
))
973 * update_subgroup_ready_for_merge
975 * Returns TRUE if this subgroup is in a state that allows it to be
976 * merged into another subgroup.
978 static int update_subgroup_ready_for_merge(struct update_subgroup
*subgrp
)
982 * Not ready if there are any encoded packets waiting to be written
985 if (!bpacket_queue_is_empty(SUBGRP_PKTQ(subgrp
)))
989 * Not ready if there enqueued updates waiting to be encoded.
991 if (!advertise_list_is_empty(subgrp
))
995 * Don't attempt to merge a subgroup that needs a refresh. For one,
996 * we can't determine if the adj_out of such a group matches that of
999 if (update_subgroup_needs_refresh(subgrp
))
1006 * update_subgrp_can_merge_into
1008 * Returns TRUE if the first subgroup can merge into the second
1011 static int update_subgroup_can_merge_into(struct update_subgroup
*subgrp
,
1012 struct update_subgroup
*target
)
1015 if (subgrp
== target
)
1019 * Both must have processed the BRIB to the same point in order to
1022 if (subgrp
->version
!= target
->version
)
1025 if (CHECK_FLAG(subgrp
->sflags
, SUBGRP_STATUS_DEFAULT_ORIGINATE
)
1026 != CHECK_FLAG(target
->sflags
, SUBGRP_STATUS_DEFAULT_ORIGINATE
))
1029 if (subgrp
->adj_count
!= target
->adj_count
)
1032 return update_subgroup_ready_for_merge(target
);
1036 * update_subgroup_merge
1038 * Merge the first subgroup into the second one.
1040 static void update_subgroup_merge(struct update_subgroup
*subgrp
,
1041 struct update_subgroup
*target
,
1044 struct peer_af
*paf
;
1048 assert(subgrp
->adj_count
== target
->adj_count
);
1050 peer_count
= subgrp
->peer_count
;
1053 paf
= LIST_FIRST(&subgrp
->peers
);
1057 update_subgroup_remove_peer_internal(subgrp
, paf
);
1060 * Add the peer to the target subgroup, while making sure that
1061 * any currently enqueued packets won't be sent to it. Enqueued
1062 * packets could, for example, result in an unnecessary withdraw
1063 * followed by an advertise.
1065 update_subgroup_add_peer(target
, paf
, 0);
1068 SUBGRP_INCR_STAT(target
, merge_events
);
1070 if (BGP_DEBUG(update_groups
, UPDATE_GROUPS
))
1071 zlog_debug("u%" PRIu64
":s%" PRIu64
1072 " (%d peers) merged into u%" PRIu64
":s%" PRIu64
1075 subgrp
->update_group
->id
, subgrp
->id
, peer_count
,
1076 target
->update_group
->id
, target
->id
,
1077 reason
? reason
: "unknown");
1079 result
= update_subgroup_check_delete(subgrp
);
1084 * update_subgroup_check_merge
1086 * Merge this subgroup into another subgroup if possible.
1088 * Returns TRUE if the subgroup has been merged. The subgroup pointer
1089 * should not be accessed in this case.
1091 int update_subgroup_check_merge(struct update_subgroup
*subgrp
,
1094 struct update_subgroup
*target
;
1096 if (!update_subgroup_ready_for_merge(subgrp
))
1100 * Look for a subgroup to merge into.
1102 UPDGRP_FOREACH_SUBGRP (subgrp
->update_group
, target
) {
1103 if (update_subgroup_can_merge_into(subgrp
, target
))
1110 update_subgroup_merge(subgrp
, target
, reason
);
1115 * update_subgroup_merge_check_thread_cb
1117 static int update_subgroup_merge_check_thread_cb(struct thread
*thread
)
1119 struct update_subgroup
*subgrp
;
1121 subgrp
= THREAD_ARG(thread
);
1123 subgrp
->t_merge_check
= NULL
;
1125 update_subgroup_check_merge(subgrp
, "triggered merge check");
1130 * update_subgroup_trigger_merge_check
1132 * Triggers a call to update_subgroup_check_merge() on a clean context.
1134 * @param force If true, the merge check will be triggered even if the
1135 * subgroup doesn't currently look ready for a merge.
1137 * Returns TRUE if a merge check will be performed shortly.
1139 int update_subgroup_trigger_merge_check(struct update_subgroup
*subgrp
,
1142 if (subgrp
->t_merge_check
)
1145 if (!force
&& !update_subgroup_ready_for_merge(subgrp
))
1148 subgrp
->t_merge_check
= NULL
;
1149 thread_add_timer_msec(bm
->master
, update_subgroup_merge_check_thread_cb
,
1150 subgrp
, 0, &subgrp
->t_merge_check
);
1152 SUBGRP_INCR_STAT(subgrp
, merge_checks_triggered
);
1158 * update_subgroup_copy_adj_out
1160 * Helper function that clones the adj out (state about advertised
1161 * routes) from one subgroup to another. It assumes that the adj out
1162 * of the target subgroup is empty.
1164 static void update_subgroup_copy_adj_out(struct update_subgroup
*source
,
1165 struct update_subgroup
*dest
)
1167 struct bgp_adj_out
*aout
, *aout_copy
;
1169 SUBGRP_FOREACH_ADJ (source
, aout
) {
1174 bgp_adj_out_alloc(dest
, aout
->rn
, aout
->addpath_tx_id
);
1176 aout
->attr
? bgp_attr_intern(aout
->attr
) : NULL
;
1179 dest
->scount
= source
->scount
;
1183 * update_subgroup_copy_packets
1185 * Copy packets after and including the given packet to the subgroup
1188 * Returns the number of packets copied.
1190 static int update_subgroup_copy_packets(struct update_subgroup
*dest
,
1191 struct bpacket
*pkt
)
1196 while (pkt
&& pkt
->buffer
) {
1197 bpacket_queue_add(SUBGRP_PKTQ(dest
), stream_dup(pkt
->buffer
),
1200 pkt
= bpacket_next(pkt
);
1203 bpacket_queue_sanity_check(SUBGRP_PKTQ(dest
));
1208 static int updgrp_prefix_list_update(struct update_group
*updgrp
,
1212 struct bgp_filter
*filter
;
1214 peer
= UPDGRP_PEER(updgrp
);
1215 filter
= &peer
->filter
[UPDGRP_AFI(updgrp
)][UPDGRP_SAFI(updgrp
)];
1217 if (PREFIX_LIST_OUT_NAME(filter
)
1218 && (strcmp(name
, PREFIX_LIST_OUT_NAME(filter
)) == 0)) {
1219 PREFIX_LIST_OUT(filter
) = prefix_list_lookup(
1220 UPDGRP_AFI(updgrp
), PREFIX_LIST_OUT_NAME(filter
));
1226 static int updgrp_filter_list_update(struct update_group
*updgrp
,
1230 struct bgp_filter
*filter
;
1232 peer
= UPDGRP_PEER(updgrp
);
1233 filter
= &peer
->filter
[UPDGRP_AFI(updgrp
)][UPDGRP_SAFI(updgrp
)];
1235 if (FILTER_LIST_OUT_NAME(filter
)
1236 && (strcmp(name
, FILTER_LIST_OUT_NAME(filter
)) == 0)) {
1237 FILTER_LIST_OUT(filter
) =
1238 as_list_lookup(FILTER_LIST_OUT_NAME(filter
));
1244 static int updgrp_distribute_list_update(struct update_group
*updgrp
,
1248 struct bgp_filter
*filter
;
1250 peer
= UPDGRP_PEER(updgrp
);
1251 filter
= &peer
->filter
[UPDGRP_AFI(updgrp
)][UPDGRP_SAFI(updgrp
)];
1253 if (DISTRIBUTE_OUT_NAME(filter
)
1254 && (strcmp(name
, DISTRIBUTE_OUT_NAME(filter
)) == 0)) {
1255 DISTRIBUTE_OUT(filter
) = access_list_lookup(
1256 UPDGRP_AFI(updgrp
), DISTRIBUTE_OUT_NAME(filter
));
1262 static int updgrp_route_map_update(struct update_group
*updgrp
,
1263 const char *name
, int *def_rmap_changed
)
1266 struct bgp_filter
*filter
;
1271 peer
= UPDGRP_PEER(updgrp
);
1272 afi
= UPDGRP_AFI(updgrp
);
1273 safi
= UPDGRP_SAFI(updgrp
);
1274 filter
= &peer
->filter
[afi
][safi
];
1276 if (ROUTE_MAP_OUT_NAME(filter
)
1277 && (strcmp(name
, ROUTE_MAP_OUT_NAME(filter
)) == 0)) {
1278 ROUTE_MAP_OUT(filter
) = route_map_lookup_by_name(name
);
1283 if (UNSUPPRESS_MAP_NAME(filter
)
1284 && (strcmp(name
, UNSUPPRESS_MAP_NAME(filter
)) == 0)) {
1285 UNSUPPRESS_MAP(filter
) = route_map_lookup_by_name(name
);
1289 /* process default-originate route-map */
1290 if (peer
->default_rmap
[afi
][safi
].name
1291 && (strcmp(name
, peer
->default_rmap
[afi
][safi
].name
) == 0)) {
1292 peer
->default_rmap
[afi
][safi
].map
=
1293 route_map_lookup_by_name(name
);
1294 if (def_rmap_changed
)
1295 *def_rmap_changed
= 1;
1301 * hash iteration callback function to process a policy change for an
1302 * update group. Check if the changed policy matches the updgrp's
1303 * outbound route-map or unsuppress-map or default-originate map or
1304 * filter-list or prefix-list or distribute-list.
1305 * Trigger update generation accordingly.
1307 static int updgrp_policy_update_walkcb(struct update_group
*updgrp
, void *arg
)
1309 struct updwalk_context
*ctx
= arg
;
1310 struct update_subgroup
*subgrp
;
1312 int def_changed
= 0;
1314 if (!updgrp
|| !ctx
|| !ctx
->policy_name
)
1315 return UPDWALK_CONTINUE
;
1317 switch (ctx
->policy_type
) {
1318 case BGP_POLICY_ROUTE_MAP
:
1319 changed
= updgrp_route_map_update(updgrp
, ctx
->policy_name
,
1322 case BGP_POLICY_FILTER_LIST
:
1323 changed
= updgrp_filter_list_update(updgrp
, ctx
->policy_name
);
1325 case BGP_POLICY_PREFIX_LIST
:
1326 changed
= updgrp_prefix_list_update(updgrp
, ctx
->policy_name
);
1328 case BGP_POLICY_DISTRIBUTE_LIST
:
1330 updgrp_distribute_list_update(updgrp
, ctx
->policy_name
);
1336 /* If not doing route update, return after updating "config" */
1337 if (!ctx
->policy_route_update
)
1338 return UPDWALK_CONTINUE
;
1340 /* If nothing has changed, return after updating "config" */
1341 if (!changed
&& !def_changed
)
1342 return UPDWALK_CONTINUE
;
1345 * If something has changed, at the beginning of a route-map
1347 * event, mark each subgroup's needs-refresh bit. For one, it signals to
1348 * whoever that the subgroup needs a refresh. Second, it prevents
1350 * merge of this subgroup with another before a complete (outbound)
1353 if (ctx
->policy_event_start_flag
) {
1354 UPDGRP_FOREACH_SUBGRP (updgrp
, subgrp
) {
1355 update_subgroup_set_needs_refresh(subgrp
, 1);
1357 return UPDWALK_CONTINUE
;
1360 UPDGRP_FOREACH_SUBGRP (updgrp
, subgrp
) {
1362 if (bgp_debug_update(NULL
, NULL
, updgrp
, 0))
1364 "u%" PRIu64
":s%" PRIu64
1365 " announcing routes upon policy %s (type %d) change",
1366 updgrp
->id
, subgrp
->id
,
1367 ctx
->policy_name
, ctx
->policy_type
);
1368 subgroup_announce_route(subgrp
);
1371 if (bgp_debug_update(NULL
, NULL
, updgrp
, 0))
1373 "u%" PRIu64
":s%" PRIu64
1374 " announcing default upon default routemap %s change",
1375 updgrp
->id
, subgrp
->id
,
1377 subgroup_default_originate(subgrp
, 0);
1379 update_subgroup_set_needs_refresh(subgrp
, 0);
1381 return UPDWALK_CONTINUE
;
1384 static int update_group_walkcb(struct hash_bucket
*bucket
, void *arg
)
1386 struct update_group
*updgrp
= bucket
->data
;
1387 struct updwalk_context
*wctx
= arg
;
1388 int ret
= (*wctx
->cb
)(updgrp
, wctx
->context
);
1392 static int update_group_periodic_merge_walkcb(struct update_group
*updgrp
,
1395 struct update_subgroup
*subgrp
;
1396 struct update_subgroup
*tmp_subgrp
;
1397 const char *reason
= arg
;
1399 UPDGRP_FOREACH_SUBGRP_SAFE (updgrp
, subgrp
, tmp_subgrp
)
1400 update_subgroup_check_merge(subgrp
, reason
);
1401 return UPDWALK_CONTINUE
;
1404 /********************
1406 ********************/
1409 * trigger function when a policy (route-map/filter-list/prefix-list/
1410 * distribute-list etc.) content changes. Go through all the
1411 * update groups and process the change.
1413 * bgp: the bgp instance
1414 * ptype: the type of policy that got modified, see bgpd.h
1415 * pname: name of the policy
1416 * route_update: flag to control if an automatic update generation should
1418 * start_event: flag that indicates if it's the beginning of the change.
1419 * Esp. when the user is changing the content interactively
1420 * over multiple statements. Useful to set dirty flag on
1423 void update_group_policy_update(struct bgp
*bgp
, bgp_policy_type_e ptype
,
1424 const char *pname
, int route_update
,
1427 struct updwalk_context ctx
;
1429 memset(&ctx
, 0, sizeof(ctx
));
1430 ctx
.policy_type
= ptype
;
1431 ctx
.policy_name
= pname
;
1432 ctx
.policy_route_update
= route_update
;
1433 ctx
.policy_event_start_flag
= start_event
;
1436 update_group_walk(bgp
, updgrp_policy_update_walkcb
, &ctx
);
1440 * update_subgroup_split_peer
1442 * Ensure that the given peer is in a subgroup of its own in the
1443 * specified update group.
1445 void update_subgroup_split_peer(struct peer_af
*paf
,
1446 struct update_group
*updgrp
)
1448 struct update_subgroup
*old_subgrp
, *subgrp
;
1452 old_subgrp
= paf
->subgroup
;
1455 updgrp
= old_subgrp
->update_group
;
1458 * If the peer is alone in its subgroup, reuse the existing
1461 if (old_subgrp
->peer_count
== 1) {
1462 if (updgrp
== old_subgrp
->update_group
)
1465 subgrp
= old_subgrp
;
1466 old_id
= old_subgrp
->update_group
->id
;
1468 if (bgp_debug_peer_updout_enabled(paf
->peer
->host
)) {
1469 UPDGRP_PEER_DBG_DIS(old_subgrp
->update_group
);
1472 update_group_remove_subgroup(old_subgrp
->update_group
,
1474 update_group_add_subgroup(updgrp
, subgrp
);
1476 if (bgp_debug_peer_updout_enabled(paf
->peer
->host
)) {
1477 UPDGRP_PEER_DBG_EN(updgrp
);
1479 if (BGP_DEBUG(update_groups
, UPDATE_GROUPS
))
1480 zlog_debug("u%" PRIu64
":s%" PRIu64
1481 " peer %s moved to u%" PRIu64
":s%" PRIu64
,
1482 old_id
, subgrp
->id
, paf
->peer
->host
,
1483 updgrp
->id
, subgrp
->id
);
1486 * The state of the subgroup (adj_out, advs, packet queue etc)
1487 * is consistent internally, but may not be identical to other
1488 * subgroups in the new update group even if the version number
1489 * matches up. Make sure a full refresh is done before the
1490 * subgroup is merged with another.
1492 update_subgroup_set_needs_refresh(subgrp
, 1);
1494 SUBGRP_INCR_STAT(subgrp
, updgrp_switch_events
);
1499 * Create a new subgroup under the specified update group, and copy
1500 * over relevant state to it.
1502 subgrp
= update_subgroup_create(updgrp
);
1503 update_subgroup_inherit_info(subgrp
, old_subgrp
);
1505 subgrp
->split_from
.update_group_id
= old_subgrp
->update_group
->id
;
1506 subgrp
->split_from
.subgroup_id
= old_subgrp
->id
;
1509 * Copy out relevant state from the old subgroup.
1511 update_subgroup_copy_adj_out(paf
->subgroup
, subgrp
);
1512 update_subgroup_copy_packets(subgrp
, paf
->next_pkt_to_send
);
1514 if (BGP_DEBUG(update_groups
, UPDATE_GROUPS
))
1515 zlog_debug("u%" PRIu64
":s%" PRIu64
1516 " peer %s split and moved into u%" PRIu64
1518 paf
->subgroup
->update_group
->id
, paf
->subgroup
->id
,
1519 paf
->peer
->host
, updgrp
->id
, subgrp
->id
);
1521 SUBGRP_INCR_STAT(paf
->subgroup
, split_events
);
1524 * Since queued advs were left behind, this new subgroup needs a
1527 update_subgroup_set_needs_refresh(subgrp
, 1);
1530 * Remove peer from old subgroup, and add it to the new one.
1532 update_subgroup_remove_peer(paf
->subgroup
, paf
);
1534 update_subgroup_add_peer(subgrp
, paf
, 1);
1537 void update_bgp_group_init(struct bgp
*bgp
)
1542 bgp
->update_groups
[afid
] =
1543 hash_create(updgrp_hash_key_make
, updgrp_hash_cmp
,
1544 "BGP Update Group Hash");
1547 void update_bgp_group_free(struct bgp
*bgp
)
1552 if (bgp
->update_groups
[afid
]) {
1553 hash_free(bgp
->update_groups
[afid
]);
1554 bgp
->update_groups
[afid
] = NULL
;
1559 void update_group_show(struct bgp
*bgp
, afi_t afi
, safi_t safi
, struct vty
*vty
,
1562 struct updwalk_context ctx
;
1563 memset(&ctx
, 0, sizeof(ctx
));
1565 ctx
.subgrp_id
= subgrp_id
;
1567 update_group_af_walk(bgp
, afi
, safi
, update_group_show_walkcb
, &ctx
);
1571 * update_group_show_stats
1573 * Show global statistics about update groups.
1575 void update_group_show_stats(struct bgp
*bgp
, struct vty
*vty
)
1577 vty_out(vty
, "Update groups created: %u\n",
1578 bgp
->update_group_stats
.updgrps_created
);
1579 vty_out(vty
, "Update groups deleted: %u\n",
1580 bgp
->update_group_stats
.updgrps_deleted
);
1581 vty_out(vty
, "Update subgroups created: %u\n",
1582 bgp
->update_group_stats
.subgrps_created
);
1583 vty_out(vty
, "Update subgroups deleted: %u\n",
1584 bgp
->update_group_stats
.subgrps_deleted
);
1585 vty_out(vty
, "Join events: %u\n", bgp
->update_group_stats
.join_events
);
1586 vty_out(vty
, "Prune events: %u\n",
1587 bgp
->update_group_stats
.prune_events
);
1588 vty_out(vty
, "Merge events: %u\n",
1589 bgp
->update_group_stats
.merge_events
);
1590 vty_out(vty
, "Split events: %u\n",
1591 bgp
->update_group_stats
.split_events
);
1592 vty_out(vty
, "Update group switch events: %u\n",
1593 bgp
->update_group_stats
.updgrp_switch_events
);
1594 vty_out(vty
, "Peer route refreshes combined: %u\n",
1595 bgp
->update_group_stats
.peer_refreshes_combined
);
1596 vty_out(vty
, "Merge checks triggered: %u\n",
1597 bgp
->update_group_stats
.merge_checks_triggered
);
1601 * update_group_adjust_peer
1603 void update_group_adjust_peer(struct peer_af
*paf
)
1605 struct update_group
*updgrp
;
1606 struct update_subgroup
*subgrp
, *old_subgrp
;
1612 peer
= PAF_PEER(paf
);
1613 if (!peer_established(peer
)) {
1617 if (!CHECK_FLAG(peer
->flags
, PEER_FLAG_CONFIG_NODE
)) {
1621 if (!peer
->afc_nego
[paf
->afi
][paf
->safi
]) {
1625 updgrp
= update_group_find(paf
);
1627 updgrp
= update_group_create(paf
);
1629 flog_err(EC_BGP_UPDGRP_CREATE
,
1630 "couldn't create update group for peer %s",
1636 old_subgrp
= paf
->subgroup
;
1641 * If the update group of the peer is unchanged, the peer can
1643 * in its existing subgroup and we're done.
1645 if (old_subgrp
->update_group
== updgrp
)
1649 * The peer is switching between update groups. Put it in its
1650 * own subgroup under the new update group.
1652 update_subgroup_split_peer(paf
, updgrp
);
1656 subgrp
= update_subgroup_find(updgrp
, paf
);
1658 subgrp
= update_subgroup_create(updgrp
);
1663 update_subgroup_add_peer(subgrp
, paf
, 1);
1664 if (BGP_DEBUG(update_groups
, UPDATE_GROUPS
))
1665 zlog_debug("u%" PRIu64
":s%" PRIu64
" add peer %s", updgrp
->id
,
1666 subgrp
->id
, paf
->peer
->host
);
1671 int update_group_adjust_soloness(struct peer
*peer
, int set
)
1673 struct peer_group
*group
;
1674 struct listnode
*node
, *nnode
;
1676 if (!CHECK_FLAG(peer
->sflags
, PEER_STATUS_GROUP
)) {
1677 peer_lonesoul_or_not(peer
, set
);
1678 if (peer
->status
== Established
)
1679 bgp_announce_route_all(peer
);
1681 group
= peer
->group
;
1682 for (ALL_LIST_ELEMENTS(group
->peer
, node
, nnode
, peer
)) {
1683 peer_lonesoul_or_not(peer
, set
);
1684 if (peer
->status
== Established
)
1685 bgp_announce_route_all(peer
);
1692 * update_subgroup_rib
1694 struct bgp_table
*update_subgroup_rib(struct update_subgroup
*subgrp
)
1698 bgp
= SUBGRP_INST(subgrp
);
1702 return bgp
->rib
[SUBGRP_AFI(subgrp
)][SUBGRP_SAFI(subgrp
)];
1705 void update_group_af_walk(struct bgp
*bgp
, afi_t afi
, safi_t safi
,
1706 updgrp_walkcb cb
, void *ctx
)
1708 struct updwalk_context wctx
;
1713 afid
= afindex(afi
, safi
);
1714 if (afid
>= BGP_AF_MAX
)
1717 memset(&wctx
, 0, sizeof(wctx
));
1721 if (bgp
->update_groups
[afid
])
1722 hash_walk(bgp
->update_groups
[afid
], update_group_walkcb
, &wctx
);
1725 void update_group_walk(struct bgp
*bgp
, updgrp_walkcb cb
, void *ctx
)
1730 FOREACH_AFI_SAFI (afi
, safi
) {
1731 update_group_af_walk(bgp
, afi
, safi
, cb
, ctx
);
1735 void update_group_periodic_merge(struct bgp
*bgp
)
1737 char reason
[] = "periodic merge check";
1739 update_group_walk(bgp
, update_group_periodic_merge_walkcb
,
1744 update_group_default_originate_route_map_walkcb(struct update_group
*updgrp
,
1747 struct update_subgroup
*subgrp
;
1752 UPDGRP_FOREACH_SUBGRP (updgrp
, subgrp
) {
1753 peer
= SUBGRP_PEER(subgrp
);
1754 afi
= SUBGRP_AFI(subgrp
);
1755 safi
= SUBGRP_SAFI(subgrp
);
1757 if (peer
->default_rmap
[afi
][safi
].name
) {
1758 subgroup_default_originate(subgrp
, 0);
1762 return UPDWALK_CONTINUE
;
1765 int update_group_refresh_default_originate_route_map(struct thread
*thread
)
1768 char reason
[] = "refresh default-originate route-map";
1770 bgp
= THREAD_ARG(thread
);
1771 update_group_walk(bgp
, update_group_default_originate_route_map_walkcb
,
1773 THREAD_TIMER_OFF(bgp
->t_rmap_def_originate_eval
);
1780 * peer_af_announce_route
1782 * Refreshes routes out to a peer_af immediately.
1784 * If the combine parameter is TRUE, then this function will try to
1785 * gather other peers in the subgroup for which a route announcement
1786 * is pending and efficently announce routes to all of them.
1788 * For now, the 'combine' option has an effect only if all peers in
1789 * the subgroup have a route announcement pending.
1791 void peer_af_announce_route(struct peer_af
*paf
, int combine
)
1793 struct update_subgroup
*subgrp
;
1794 struct peer_af
*cur_paf
;
1797 subgrp
= paf
->subgroup
;
1802 * If there are other peers in the old subgroup that also need
1803 * routes to be announced, pull them into the peer's new
1805 * Combine route announcement with other peers if possible.
1807 * For now, we combine only if all peers in the subgroup have an
1808 * announcement pending.
1812 SUBGRP_FOREACH_PEER (subgrp
, cur_paf
) {
1816 if (cur_paf
->t_announce_route
)
1824 * Announce to the peer alone if we were not asked to combine peers,
1825 * or if some peers don't have a route annoucement pending.
1827 if (!combine
|| !all_pending
) {
1828 update_subgroup_split_peer(paf
, NULL
);
1832 if (bgp_debug_update(paf
->peer
, NULL
, subgrp
->update_group
, 0))
1833 zlog_debug("u%" PRIu64
":s%" PRIu64
1834 " %s announcing routes",
1835 subgrp
->update_group
->id
, subgrp
->id
,
1838 subgroup_announce_route(paf
->subgroup
);
1843 * We will announce routes the entire subgroup.
1845 * First stop refresh timers on all the other peers.
1847 SUBGRP_FOREACH_PEER (subgrp
, cur_paf
) {
1851 bgp_stop_announce_route_timer(cur_paf
);
1854 if (bgp_debug_update(paf
->peer
, NULL
, subgrp
->update_group
, 0))
1855 zlog_debug("u%" PRIu64
":s%" PRIu64
1856 " announcing routes to %s, combined into %d peers",
1857 subgrp
->update_group
->id
, subgrp
->id
,
1858 paf
->peer
->host
, subgrp
->peer_count
);
1860 subgroup_announce_route(subgrp
);
1862 SUBGRP_INCR_STAT_BY(subgrp
, peer_refreshes_combined
,
1863 subgrp
->peer_count
- 1);
1866 void subgroup_trigger_write(struct update_subgroup
*subgrp
)
1868 struct peer_af
*paf
;
1871 * For each peer in the subgroup, schedule a job to pull packets from
1872 * the subgroup output queue into their own output queue. This action
1873 * will trigger a write job on the I/O thread.
1875 SUBGRP_FOREACH_PEER (subgrp
, paf
)
1876 if (paf
->peer
->status
== Established
)
1877 thread_add_timer_msec(
1878 bm
->master
, bgp_generate_updgrp_packets
,
1880 &paf
->peer
->t_generate_updgrp_packets
);
1883 int update_group_clear_update_dbg(struct update_group
*updgrp
, void *arg
)
1885 UPDGRP_PEER_DBG_OFF(updgrp
);
1886 return UPDWALK_CONTINUE
;
1889 /* Return true if we should addpath encode NLRI to this peer */
1890 int bgp_addpath_encode_tx(struct peer
*peer
, afi_t afi
, safi_t safi
)
1892 return (CHECK_FLAG(peer
->af_cap
[afi
][safi
], PEER_CAP_ADDPATH_AF_TX_ADV
)
1893 && CHECK_FLAG(peer
->af_cap
[afi
][safi
],
1894 PEER_CAP_ADDPATH_AF_RX_RCV
));