]> git.proxmox.com Git - mirror_frr.git/blame - bgpd/bgp_updgrp_adv.c
bgpd: Cleanup subgroup hash when we delete/merge a subgroup
[mirror_frr.git] / bgpd / bgp_updgrp_adv.c
CommitLineData
3f9c7369
DS
1/**
2 * bgp_updgrp_adv.c: BGP update group advertisement and adjacency
3 * maintenance
4 *
5 *
6 * @copyright Copyright (C) 2014 Cumulus Networks, Inc.
7 *
8 * @author Avneesh Sachdev <avneesh@sproute.net>
9 * @author Rajesh Varadarajan <rajesh@sproute.net>
10 * @author Pradosh Mohapatra <pradosh@sproute.net>
11 *
12 * This file is part of GNU Zebra.
13 *
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
17 * later version.
18 *
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.
23 *
896014f4
DL
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
3f9c7369
DS
27 */
28
29#include <zebra.h>
30
31#include "command.h"
32#include "memory.h"
33#include "prefix.h"
34#include "hash.h"
35#include "thread.h"
36#include "queue.h"
37#include "routemap.h"
039f3a34 38#include "filter.h"
3f9c7369
DS
39
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"
dcc68b5e 52#include "bgpd/bgp_addpath.h"
3f9c7369
DS
53
54
55/********************
56 * PRIVATE FUNCTIONS
57 ********************/
a79c04e7
DS
58static int bgp_adj_out_compare(const struct bgp_adj_out *o1,
59 const struct bgp_adj_out *o2)
60{
61 if (o1->subgroup < o2->subgroup)
62 return -1;
63
64 if (o1->subgroup > o2->subgroup)
65 return 1;
66
3373d7e7
MS
67 if (o1->addpath_tx_id < o2->addpath_tx_id)
68 return -1;
69
70 if (o1->addpath_tx_id > o2->addpath_tx_id)
71 return 1;
72
a79c04e7
DS
73 return 0;
74}
75RB_GENERATE(bgp_adj_out_rb, bgp_adj_out, adj_entry, bgp_adj_out_compare);
3f9c7369 76
9bcb3eef 77static inline struct bgp_adj_out *adj_lookup(struct bgp_dest *dest,
d62a17ae 78 struct update_subgroup *subgrp,
d7c0a89a 79 uint32_t addpath_tx_id)
3f9c7369 80{
3373d7e7 81 struct bgp_adj_out lookup;
d62a17ae 82
9bcb3eef 83 if (!dest || !subgrp)
d62a17ae 84 return NULL;
85
d62a17ae 86 /* update-groups that do not support addpath will pass 0 for
3373d7e7 87 * addpath_tx_id. */
a79c04e7 88 lookup.subgroup = subgrp;
3373d7e7
MS
89 lookup.addpath_tx_id = addpath_tx_id;
90
9bcb3eef 91 return RB_FIND(bgp_adj_out_rb, &dest->adj_out, &lookup);
3f9c7369
DS
92}
93
d62a17ae 94static void adj_free(struct bgp_adj_out *adj)
3f9c7369 95{
d62a17ae 96 TAILQ_REMOVE(&(adj->subgroup->adjq), adj, subgrp_adj_train);
97 SUBGRP_DECR_STAT(adj->subgroup, adj_count);
9669fbde
DS
98
99 RB_REMOVE(bgp_adj_out_rb, &adj->dest->adj_out, adj);
100 bgp_dest_unlock_node(adj->dest);
101
d62a17ae 102 XFREE(MTYPE_BGP_ADJ_OUT, adj);
3f9c7369
DS
103}
104
dcc68b5e
MS
105static void subgrp_withdraw_stale_addpath(struct updwalk_context *ctx,
106 struct update_subgroup *subgrp)
107{
108 struct bgp_adj_out *adj, *adj_next;
109 uint32_t id;
110 struct bgp_path_info *pi;
111 afi_t afi = SUBGRP_AFI(subgrp);
112 safi_t safi = SUBGRP_SAFI(subgrp);
113 struct peer *peer = SUBGRP_PEER(subgrp);
114
115 /* Look through all of the paths we have advertised for this rn and send
116 * a withdraw for the ones that are no longer present */
9bcb3eef 117 RB_FOREACH_SAFE (adj, bgp_adj_out_rb, &ctx->dest->adj_out, adj_next) {
dcc68b5e
MS
118
119 if (adj->subgroup == subgrp) {
9bcb3eef
DS
120 for (pi = bgp_dest_get_bgp_path_info(ctx->dest); pi;
121 pi = pi->next) {
dcc68b5e
MS
122 id = bgp_addpath_id_for_peer(peer, afi, safi,
123 &pi->tx_addpath);
124
125 if (id == adj->addpath_tx_id) {
126 break;
127 }
128 }
129
130 if (!pi) {
131 subgroup_process_announce_selected(
9bcb3eef 132 subgrp, NULL, ctx->dest,
dcc68b5e
MS
133 adj->addpath_tx_id);
134 }
135 }
136 }
137}
138
d62a17ae 139static int group_announce_route_walkcb(struct update_group *updgrp, void *arg)
3f9c7369 140{
d62a17ae 141 struct updwalk_context *ctx = arg;
142 struct update_subgroup *subgrp;
40381db7 143 struct bgp_path_info *pi;
d62a17ae 144 afi_t afi;
145 safi_t safi;
146 struct peer *peer;
147 struct bgp_adj_out *adj, *adj_next;
be92fc9f 148 bool addpath_capable;
d62a17ae 149
150 afi = UPDGRP_AFI(updgrp);
151 safi = UPDGRP_SAFI(updgrp);
152 peer = UPDGRP_PEER(updgrp);
153 addpath_capable = bgp_addpath_encode_tx(peer, afi, safi);
154
b54892e0
DS
155 if (BGP_DEBUG(update, UPDATE_OUT))
156 zlog_debug("%s: afi=%s, safi=%s, p=%pRN", __func__,
9bcb3eef
DS
157 afi2str(afi), safi2str(safi),
158 bgp_dest_to_rnode(ctx->dest));
e0207895 159
a2addae8 160 UPDGRP_FOREACH_SUBGRP (updgrp, subgrp) {
3f9c7369 161
d62a17ae 162 /*
163 * Skip the subgroups that have coalesce timer running. We will
164 * walk the entire prefix table for those subgroups when the
165 * coalesce timer fires.
166 */
167 if (!subgrp->t_coalesce) {
168 /* An update-group that uses addpath */
169 if (addpath_capable) {
dcc68b5e 170 subgrp_withdraw_stale_addpath(ctx, subgrp);
d62a17ae 171
9bcb3eef 172 for (pi = bgp_dest_get_bgp_path_info(ctx->dest);
6f94b685 173 pi; pi = pi->next) {
d62a17ae 174 /* Skip the bestpath for now */
40381db7 175 if (pi == ctx->pi)
d62a17ae 176 continue;
177
178 subgroup_process_announce_selected(
9bcb3eef 179 subgrp, pi, ctx->dest,
dcc68b5e
MS
180 bgp_addpath_id_for_peer(
181 peer, afi, safi,
182 &pi->tx_addpath));
d62a17ae 183 }
184
185 /* Process the bestpath last so the "show [ip]
186 * bgp neighbor x.x.x.x advertised"
187 * output shows the attributes from the bestpath
188 */
40381db7 189 if (ctx->pi)
d62a17ae 190 subgroup_process_announce_selected(
9bcb3eef 191 subgrp, ctx->pi, ctx->dest,
dcc68b5e
MS
192 bgp_addpath_id_for_peer(
193 peer, afi, safi,
194 &ctx->pi->tx_addpath));
d62a17ae 195 }
196
197 /* An update-group that does not use addpath */
198 else {
40381db7 199 if (ctx->pi) {
d62a17ae 200 subgroup_process_announce_selected(
9bcb3eef 201 subgrp, ctx->pi, ctx->dest,
dcc68b5e
MS
202 bgp_addpath_id_for_peer(
203 peer, afi, safi,
204 &ctx->pi->tx_addpath));
d62a17ae 205 } else {
206 /* Find the addpath_tx_id of the path we
207 * had advertised and
208 * send a withdraw */
a79c04e7 209 RB_FOREACH_SAFE (adj, bgp_adj_out_rb,
9bcb3eef 210 &ctx->dest->adj_out,
a79c04e7 211 adj_next) {
d62a17ae 212 if (adj->subgroup == subgrp) {
213 subgroup_process_announce_selected(
214 subgrp, NULL,
9bcb3eef 215 ctx->dest,
d62a17ae 216 adj->addpath_tx_id);
217 }
218 }
219 }
220 }
221 }
e73c112e
MK
222
223 /* Notify BGP Conditional advertisement */
224 bgp_notify_conditional_adv_scanner(subgrp);
d62a17ae 225 }
3f9c7369 226
d62a17ae 227 return UPDWALK_CONTINUE;
228}
3f9c7369 229
d62a17ae 230static void subgrp_show_adjq_vty(struct update_subgroup *subgrp,
d7c0a89a 231 struct vty *vty, uint8_t flags)
d62a17ae 232{
233 struct bgp_table *table;
234 struct bgp_adj_out *adj;
235 unsigned long output_count;
9bcb3eef 236 struct bgp_dest *dest;
d62a17ae 237 int header1 = 1;
238 struct bgp *bgp;
239 int header2 = 1;
240
241 bgp = SUBGRP_INST(subgrp);
242 if (!bgp)
243 return;
244
245 table = bgp->rib[SUBGRP_AFI(subgrp)][SUBGRP_SAFI(subgrp)];
246
247 output_count = 0;
248
9bcb3eef
DS
249 for (dest = bgp_table_top(table); dest; dest = bgp_route_next(dest)) {
250 const struct prefix *dest_p = bgp_dest_get_prefix(dest);
b54892e0 251
9bcb3eef 252 RB_FOREACH (adj, bgp_adj_out_rb, &dest->adj_out)
d62a17ae 253 if (adj->subgroup == subgrp) {
254 if (header1) {
255 vty_out(vty,
23d0a753
DA
256 "BGP table version is %" PRIu64
257 ", local router ID is %pI4\n",
d62a17ae 258 table->version,
23d0a753 259 &bgp->router_id);
d62a17ae 260 vty_out(vty, BGP_SHOW_SCODE_HEADER);
261 vty_out(vty, BGP_SHOW_OCODE_HEADER);
262 header1 = 0;
263 }
264 if (header2) {
265 vty_out(vty, BGP_SHOW_HEADER);
266 header2 = 0;
267 }
268 if ((flags & UPDWALK_FLAGS_ADVQUEUE) && adj->adv
269 && adj->adv->baa) {
7d3cae70 270 route_vty_out_tmp(vty, dest, dest_p,
9bcb3eef
DS
271 adj->adv->baa->attr,
272 SUBGRP_SAFI(subgrp),
ae248832 273 0, NULL, false);
d62a17ae 274 output_count++;
275 }
276 if ((flags & UPDWALK_FLAGS_ADVERTISED)
277 && adj->attr) {
7d3cae70 278 route_vty_out_tmp(vty, dest, dest_p,
ae248832
MK
279 adj->attr,
280 SUBGRP_SAFI(subgrp),
281 0, NULL, false);
d62a17ae 282 output_count++;
283 }
284 }
b54892e0 285 }
d62a17ae 286 if (output_count != 0)
287 vty_out(vty, "\nTotal number of prefixes %ld\n", output_count);
3f9c7369
DS
288}
289
d62a17ae 290static int updgrp_show_adj_walkcb(struct update_group *updgrp, void *arg)
3f9c7369 291{
d62a17ae 292 struct updwalk_context *ctx = arg;
293 struct update_subgroup *subgrp;
294 struct vty *vty;
295
296 vty = ctx->vty;
a2addae8 297 UPDGRP_FOREACH_SUBGRP (updgrp, subgrp) {
d62a17ae 298 if (ctx->subgrp_id && (ctx->subgrp_id != subgrp->id))
299 continue;
300 vty_out(vty, "update group %" PRIu64 ", subgroup %" PRIu64 "\n",
301 updgrp->id, subgrp->id);
302 subgrp_show_adjq_vty(subgrp, vty, ctx->flags);
303 }
304 return UPDWALK_CONTINUE;
3f9c7369
DS
305}
306
d62a17ae 307static void updgrp_show_adj(struct bgp *bgp, afi_t afi, safi_t safi,
d7c0a89a 308 struct vty *vty, uint64_t id, uint8_t flags)
3f9c7369 309{
d62a17ae 310 struct updwalk_context ctx;
311 memset(&ctx, 0, sizeof(ctx));
312 ctx.vty = vty;
313 ctx.subgrp_id = id;
314 ctx.flags = flags;
3f9c7369 315
d62a17ae 316 update_group_af_walk(bgp, afi, safi, updgrp_show_adj_walkcb, &ctx);
3f9c7369
DS
317}
318
cc9f21da 319static void subgroup_coalesce_timer(struct thread *thread)
3f9c7369 320{
d62a17ae 321 struct update_subgroup *subgrp;
a77e2f4b 322 struct bgp *bgp;
d62a17ae 323
324 subgrp = THREAD_ARG(thread);
325 if (bgp_debug_update(NULL, NULL, subgrp->update_group, 0))
6cde4b45 326 zlog_debug("u%" PRIu64 ":s%" PRIu64" announcing routes upon coalesce timer expiry(%u ms)",
5b18ef82 327 (SUBGRP_UPDGRP(subgrp))->id, subgrp->id,
80833111 328 subgrp->v_coalesce);
d62a17ae 329 subgrp->t_coalesce = NULL;
330 subgrp->v_coalesce = 0;
a77e2f4b 331 bgp = SUBGRP_INST(subgrp);
d62a17ae 332 subgroup_announce_route(subgrp);
333
334
335 /* While the announce_route() may kick off the route advertisement timer
336 * for
337 * the members of the subgroup, we'd like to send the initial updates
338 * much
339 * faster (i.e., without enforcing MRAI). Also, if there were no routes
340 * to
341 * announce, this is the method currently employed to trigger the EOR.
342 */
a77e2f4b
S
343 if (!bgp_update_delay_active(SUBGRP_INST(subgrp)) &&
344 !(BGP_SUPPRESS_FIB_ENABLED(bgp))) {
d62a17ae 345 struct peer_af *paf;
346 struct peer *peer;
347
a2addae8 348 SUBGRP_FOREACH_PEER (subgrp, paf) {
d62a17ae 349 peer = PAF_PEER(paf);
fa5806c3 350 THREAD_OFF(peer->t_routeadv);
d62a17ae 351 BGP_TIMER_ON(peer->t_routeadv, bgp_routeadv_timer, 0);
352 }
353 }
3f9c7369
DS
354}
355
d62a17ae 356static int update_group_announce_walkcb(struct update_group *updgrp, void *arg)
3f9c7369 357{
d62a17ae 358 struct update_subgroup *subgrp;
3f9c7369 359
a2addae8 360 UPDGRP_FOREACH_SUBGRP (updgrp, subgrp) {
d62a17ae 361 subgroup_announce_all(subgrp);
362 }
3f9c7369 363
d62a17ae 364 return UPDWALK_CONTINUE;
3f9c7369
DS
365}
366
d62a17ae 367static int update_group_announce_rrc_walkcb(struct update_group *updgrp,
368 void *arg)
3f9c7369 369{
d62a17ae 370 struct update_subgroup *subgrp;
371 afi_t afi;
372 safi_t safi;
373 struct peer *peer;
374
375 afi = UPDGRP_AFI(updgrp);
376 safi = UPDGRP_SAFI(updgrp);
377 peer = UPDGRP_PEER(updgrp);
378
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)) {
a2addae8 381 UPDGRP_FOREACH_SUBGRP (updgrp, subgrp) {
d62a17ae 382 subgroup_announce_all(subgrp);
383 }
384 }
385
386 return UPDWALK_CONTINUE;
3f9c7369
DS
387}
388
389/********************
390 * PUBLIC FUNCTIONS
391 ********************/
392
393/**
394 * Allocate an adj-out object. Do proper initialization of its fields,
395 * primarily its association with the subgroup and the prefix.
396 */
d62a17ae 397struct bgp_adj_out *bgp_adj_out_alloc(struct update_subgroup *subgrp,
9bcb3eef 398 struct bgp_dest *dest,
d7c0a89a 399 uint32_t addpath_tx_id)
3f9c7369 400{
d62a17ae 401 struct bgp_adj_out *adj;
402
403 adj = XCALLOC(MTYPE_BGP_ADJ_OUT, sizeof(struct bgp_adj_out));
404 adj->subgroup = subgrp;
3373d7e7
MS
405 adj->addpath_tx_id = addpath_tx_id;
406
9669fbde
DS
407 RB_INSERT(bgp_adj_out_rb, &dest->adj_out, adj);
408 bgp_dest_lock_node(dest);
409 adj->dest = dest;
d62a17ae 410
d62a17ae 411 TAILQ_INSERT_TAIL(&(subgrp->adjq), adj, subgrp_adj_train);
412 SUBGRP_INCR_STAT(subgrp, adj_count);
413 return adj;
3f9c7369
DS
414}
415
416
417struct bgp_advertise *
d62a17ae 418bgp_advertise_clean_subgroup(struct update_subgroup *subgrp,
419 struct bgp_adj_out *adj)
3f9c7369 420{
d62a17ae 421 struct bgp_advertise *adv;
422 struct bgp_advertise_attr *baa;
423 struct bgp_advertise *next;
a274fef8 424 struct bgp_adv_fifo_head *fhead;
3f9c7369 425
d62a17ae 426 adv = adj->adv;
427 baa = adv->baa;
428 next = NULL;
3f9c7369 429
d62a17ae 430 if (baa) {
431 fhead = &subgrp->sync->update;
3f9c7369 432
d62a17ae 433 /* Unlink myself from advertise attribute FIFO. */
434 bgp_advertise_delete(baa, adv);
3f9c7369 435
d62a17ae 436 /* Fetch next advertise candidate. */
437 next = baa->adv;
3f9c7369 438
d62a17ae 439 /* Unintern BGP advertise attribute. */
440 bgp_advertise_unintern(subgrp->hash, baa);
441 } else
442 fhead = &subgrp->sync->withdraw;
3f9c7369
DS
443
444
d62a17ae 445 /* Unlink myself from advertisement FIFO. */
a274fef8 446 bgp_adv_fifo_del(fhead, adv);
3f9c7369 447
d62a17ae 448 /* Free memory. */
449 bgp_advertise_free(adj->adv);
450 adj->adv = NULL;
3f9c7369 451
d62a17ae 452 return next;
3f9c7369
DS
453}
454
9bcb3eef 455void bgp_adj_out_set_subgroup(struct bgp_dest *dest,
d62a17ae 456 struct update_subgroup *subgrp, struct attr *attr,
9b6d8fcf 457 struct bgp_path_info *path)
3f9c7369 458{
d62a17ae 459 struct bgp_adj_out *adj = NULL;
460 struct bgp_advertise *adv;
dcc68b5e
MS
461 struct peer *peer;
462 afi_t afi;
463 safi_t safi;
a77e2f4b
S
464 struct peer *adv_peer;
465 struct peer_af *paf;
466 struct bgp *bgp;
2adac256 467 uint32_t attr_hash = attrhash_key_make(attr);
dcc68b5e
MS
468
469 peer = SUBGRP_PEER(subgrp);
470 afi = SUBGRP_AFI(subgrp);
471 safi = SUBGRP_SAFI(subgrp);
a77e2f4b 472 bgp = SUBGRP_INST(subgrp);
d62a17ae 473
474 if (DISABLE_BGP_ANNOUNCE)
475 return;
476
477 /* Look for adjacency information. */
dcc68b5e 478 adj = adj_lookup(
9bcb3eef 479 dest, subgrp,
dcc68b5e 480 bgp_addpath_id_for_peer(peer, afi, safi, &path->tx_addpath));
d62a17ae 481
d0bf49ec
LS
482 if (adj) {
483 if (CHECK_FLAG(subgrp->sflags, SUBGRP_STATUS_TABLE_REPARSING))
484 subgrp->pscount++;
485 } else {
dcc68b5e 486 adj = bgp_adj_out_alloc(
9bcb3eef 487 subgrp, dest,
dcc68b5e 488 bgp_addpath_id_for_peer(peer, afi, safi,
9bcb3eef 489 &path->tx_addpath));
d62a17ae 490 if (!adj)
491 return;
d0bf49ec
LS
492
493 subgrp->pscount++;
d62a17ae 494 }
495
2adac256
DA
496 /* Check if we are sending the same route. This is needed to
497 * avoid duplicate UPDATES. For instance, filtering communities
498 * at egress, neighbors will see duplicate UPDATES despite
499 * the route wasn't changed actually.
500 * Do not suppress BGP UPDATES for route-refresh.
501 */
502 if (CHECK_FLAG(bgp->flags, BGP_FLAG_SUPPRESS_DUPLICATES)
503 && !CHECK_FLAG(subgrp->sflags, SUBGRP_STATUS_FORCE_UPDATES)
504 && adj->attr_hash == attr_hash) {
505 if (BGP_DEBUG(update, UPDATE_OUT)) {
506 char attr_str[BUFSIZ] = {0};
507
508 bgp_dump_attr(attr, attr_str, sizeof(attr_str));
509
510 zlog_debug("%s suppress UPDATE w/ attr: %s", peer->host,
511 attr_str);
512 }
513 return;
514 }
515
d62a17ae 516 if (adj->adv)
517 bgp_advertise_clean_subgroup(subgrp, adj);
518 adj->adv = bgp_advertise_new();
519
520 adv = adj->adv;
9bcb3eef 521 adv->dest = dest;
9b6d8fcf 522 assert(adv->pathi == NULL);
4b7e6066 523 /* bgp_path_info adj_out reference */
9b6d8fcf 524 adv->pathi = bgp_path_info_lock(path);
d62a17ae 525
5c8ecf6e 526 adv->baa = bgp_advertise_intern(subgrp->hash, attr);
d62a17ae 527 adv->adj = adj;
2adac256 528 adj->attr_hash = attr_hash;
d62a17ae 529
530 /* Add new advertisement to advertisement attribute list. */
531 bgp_advertise_add(adv->baa, adv);
532
533 /*
534 * If the update adv list is empty, trigger the member peers'
535 * mrai timers so the socket writes can happen.
536 */
a274fef8 537 if (!bgp_adv_fifo_count(&subgrp->sync->update)) {
a2addae8 538 SUBGRP_FOREACH_PEER (subgrp, paf) {
a77e2f4b
S
539 /* If there are no routes in the withdraw list, set
540 * the flag PEER_STATUS_ADV_DELAY which will allow
541 * more routes to be sent in the update message
542 */
543 if (BGP_SUPPRESS_FIB_ENABLED(bgp)) {
544 adv_peer = PAF_PEER(paf);
545 if (!bgp_adv_fifo_count(
546 &subgrp->sync->withdraw))
547 SET_FLAG(adv_peer->thread_flags,
548 PEER_THREAD_SUBGRP_ADV_DELAY);
549 else
550 UNSET_FLAG(adv_peer->thread_flags,
551 PEER_THREAD_SUBGRP_ADV_DELAY);
552 }
d62a17ae 553 bgp_adjust_routeadv(PAF_PEER(paf));
554 }
3f9c7369 555 }
3f9c7369 556
a274fef8 557 bgp_adv_fifo_add_tail(&subgrp->sync->update, adv);
3f9c7369 558
7a8ce9d5 559 subgrp->version = MAX(subgrp->version, dest->version);
3f9c7369
DS
560}
561
4125bb67
DS
562/* The only time 'withdraw' will be false is if we are sending
563 * the "neighbor x.x.x.x default-originate" default and need to clear
564 * bgp_adj_out for the 0.0.0.0/0 route in the BGP table.
565 */
9bcb3eef 566void bgp_adj_out_unset_subgroup(struct bgp_dest *dest,
d62a17ae 567 struct update_subgroup *subgrp, char withdraw,
d7c0a89a 568 uint32_t addpath_tx_id)
3f9c7369 569{
d62a17ae 570 struct bgp_adj_out *adj;
571 struct bgp_advertise *adv;
2fc102e1 572 bool trigger_write;
d62a17ae 573
574 if (DISABLE_BGP_ANNOUNCE)
575 return;
576
577 /* Lookup existing adjacency */
4953391b
DA
578 adj = adj_lookup(dest, subgrp, addpath_tx_id);
579 if (adj != NULL) {
d62a17ae 580 /* Clean up previous advertisement. */
581 if (adj->adv)
582 bgp_advertise_clean_subgroup(subgrp, adj);
583
f55c9a46
S
584 /* If default originate is enabled and the route is default
585 * route, do not send withdraw. This will prevent deletion of
586 * the default route at the peer.
587 */
588 if (CHECK_FLAG(subgrp->sflags, SUBGRP_STATUS_DEFAULT_ORIGINATE)
9bcb3eef 589 && is_default_prefix(bgp_dest_get_prefix(dest)))
f55c9a46
S
590 return;
591
d62a17ae 592 if (adj->attr && withdraw) {
593 /* We need advertisement structure. */
594 adj->adv = bgp_advertise_new();
595 adv = adj->adv;
9bcb3eef 596 adv->dest = dest;
d62a17ae 597 adv->adj = adj;
598
2fc102e1
QY
599 /* Note if we need to trigger a packet write */
600 trigger_write =
a274fef8 601 !bgp_adv_fifo_count(&subgrp->sync->withdraw);
2fc102e1 602
d62a17ae 603 /* Add to synchronization entry for withdraw
604 * announcement. */
a274fef8 605 bgp_adv_fifo_add_tail(&subgrp->sync->withdraw, adv);
2fc102e1
QY
606
607 if (trigger_write)
608 subgroup_trigger_write(subgrp);
d62a17ae 609 } else {
d62a17ae 610 /* Free allocated information. */
611 adj_free(adj);
d62a17ae 612 }
d0bf49ec
LS
613 if (!CHECK_FLAG(subgrp->sflags, SUBGRP_STATUS_TABLE_REPARSING))
614 subgrp->pscount--;
d62a17ae 615 }
616
7a8ce9d5 617 subgrp->version = MAX(subgrp->version, dest->version);
3f9c7369
DS
618}
619
9bcb3eef 620void bgp_adj_out_remove_subgroup(struct bgp_dest *dest, struct bgp_adj_out *adj,
d62a17ae 621 struct update_subgroup *subgrp)
3f9c7369 622{
d62a17ae 623 if (adj->attr)
624 bgp_attr_unintern(&adj->attr);
3f9c7369 625
d62a17ae 626 if (adj->adv)
627 bgp_advertise_clean_subgroup(subgrp, adj);
3f9c7369 628
d62a17ae 629 adj_free(adj);
3f9c7369
DS
630}
631
632/*
633 * Go through all the routes and clean up the adj/adv structures corresponding
634 * to the subgroup.
635 */
d62a17ae 636void subgroup_clear_table(struct update_subgroup *subgrp)
3f9c7369 637{
d62a17ae 638 struct bgp_adj_out *aout, *taout;
639
9669fbde
DS
640 SUBGRP_FOREACH_ADJ_SAFE (subgrp, aout, taout)
641 bgp_adj_out_remove_subgroup(aout->dest, aout, subgrp);
3f9c7369
DS
642}
643
644/*
645 * subgroup_announce_table
646 */
d62a17ae 647void subgroup_announce_table(struct update_subgroup *subgrp,
648 struct bgp_table *table)
3f9c7369 649{
9bcb3eef 650 struct bgp_dest *dest;
4b7e6066 651 struct bgp_path_info *ri;
d62a17ae 652 struct attr attr;
653 struct peer *peer;
654 afi_t afi;
655 safi_t safi;
be92fc9f 656 bool addpath_capable;
a77e2f4b
S
657 struct bgp *bgp;
658 bool advertise;
d62a17ae 659
660 peer = SUBGRP_PEER(subgrp);
661 afi = SUBGRP_AFI(subgrp);
662 safi = SUBGRP_SAFI(subgrp);
a77e2f4b 663 bgp = SUBGRP_INST(subgrp);
d62a17ae 664 addpath_capable = bgp_addpath_encode_tx(peer, afi, safi);
665
666 if (safi == SAFI_LABELED_UNICAST)
667 safi = SAFI_UNICAST;
668
669 if (!table)
670 table = peer->bgp->rib[afi][safi];
671
672 if (safi != SAFI_MPLS_VPN && safi != SAFI_ENCAP && safi != SAFI_EVPN
673 && CHECK_FLAG(peer->af_flags[afi][safi],
674 PEER_FLAG_DEFAULT_ORIGINATE))
675 subgroup_default_originate(subgrp, 0);
676
d0bf49ec
LS
677 subgrp->pscount = 0;
678 SET_FLAG(subgrp->sflags, SUBGRP_STATUS_TABLE_REPARSING);
679
9bcb3eef
DS
680 for (dest = bgp_table_top(table); dest; dest = bgp_route_next(dest)) {
681 const struct prefix *dest_p = bgp_dest_get_prefix(dest);
b54892e0 682
a77e2f4b
S
683 /* Check if the route can be advertised */
684 advertise = bgp_check_advertise(bgp, dest);
685
9bcb3eef 686 for (ri = bgp_dest_get_bgp_path_info(dest); ri; ri = ri->next)
d62a17ae 687
b1dd7180
DA
688 if (bgp_check_selected(ri, peer, addpath_capable, afi,
689 safi)) {
9bcb3eef 690 if (subgroup_announce_check(dest, ri, subgrp,
7f7940e6 691 dest_p, &attr,
51c3a7de 692 NULL)) {
a77e2f4b 693 /* Check if route can be advertised */
be785e35
DS
694 if (advertise) {
695 if (!bgp_check_withdrawal(bgp,
696 dest))
697 bgp_adj_out_set_subgroup(
698 dest, subgrp,
699 &attr, ri);
700 else
701 bgp_adj_out_unset_subgroup(
702 dest, subgrp, 1,
703 bgp_addpath_id_for_peer(
704 peer,
705 afi,
706 safi,
707 &ri->tx_addpath));
708 }
a77e2f4b 709 } else {
f55c9a46
S
710 /* If default originate is enabled for
711 * the peer, do not send explicit
712 * withdraw. This will prevent deletion
713 * of default route advertised through
714 * default originate
715 */
716 if (CHECK_FLAG(
717 peer->af_flags[afi][safi],
718 PEER_FLAG_DEFAULT_ORIGINATE)
9bcb3eef 719 && is_default_prefix(bgp_dest_get_prefix(dest)))
f55c9a46
S
720 break;
721
d62a17ae 722 bgp_adj_out_unset_subgroup(
9bcb3eef 723 dest, subgrp, 1,
dcc68b5e
MS
724 bgp_addpath_id_for_peer(
725 peer, afi, safi,
726 &ri->tx_addpath));
f55c9a46 727 }
d62a17ae 728 }
b54892e0 729 }
d0bf49ec 730 UNSET_FLAG(subgrp->sflags, SUBGRP_STATUS_TABLE_REPARSING);
d62a17ae 731
732 /*
733 * We walked through the whole table -- make sure our version number
734 * is consistent with the one on the table. This should allow
735 * subgroups to merge sooner if a peer comes up when the route node
736 * with the largest version is no longer in the table. This also
737 * covers the pathological case where all routes in the table have
738 * now been deleted.
739 */
7a8ce9d5 740 subgrp->version = MAX(subgrp->version, table->version);
d62a17ae 741
742 /*
743 * Start a task to merge the subgroup if necessary.
744 */
745 update_subgroup_trigger_merge_check(subgrp, 0);
3f9c7369
DS
746}
747
748/*
749 * subgroup_announce_route
750 *
751 * Refresh all routes out to a subgroup.
752 */
d62a17ae 753void subgroup_announce_route(struct update_subgroup *subgrp)
3f9c7369 754{
9bcb3eef 755 struct bgp_dest *dest;
d62a17ae 756 struct bgp_table *table;
757 struct peer *onlypeer;
758
759 if (update_subgroup_needs_refresh(subgrp)) {
760 update_subgroup_set_needs_refresh(subgrp, 0);
761 }
762
763 /*
764 * First update is deferred until ORF or ROUTE-REFRESH is received
765 */
766 onlypeer = ((SUBGRP_PCOUNT(subgrp) == 1) ? (SUBGRP_PFIRST(subgrp))->peer
767 : NULL);
9d303b37
DL
768 if (onlypeer && CHECK_FLAG(onlypeer->af_sflags[SUBGRP_AFI(subgrp)]
769 [SUBGRP_SAFI(subgrp)],
770 PEER_STATUS_ORF_WAIT_REFRESH))
d62a17ae 771 return;
772
773 if (SUBGRP_SAFI(subgrp) != SAFI_MPLS_VPN
774 && SUBGRP_SAFI(subgrp) != SAFI_ENCAP
775 && SUBGRP_SAFI(subgrp) != SAFI_EVPN)
776 subgroup_announce_table(subgrp, NULL);
777 else
9bcb3eef
DS
778 for (dest = bgp_table_top(update_subgroup_rib(subgrp)); dest;
779 dest = bgp_route_next(dest)) {
780 table = bgp_dest_get_bgp_table_info(dest);
67009e22
DS
781 if (!table)
782 continue;
783 subgroup_announce_table(subgrp, table);
784 }
3f9c7369
DS
785}
786
d62a17ae 787void subgroup_default_originate(struct update_subgroup *subgrp, int withdraw)
3f9c7369 788{
d62a17ae 789 struct bgp *bgp;
e50c68b2 790 struct attr attr;
7208c282 791 struct attr *new_attr = &attr;
d62a17ae 792 struct prefix p;
793 struct peer *from;
9bcb3eef 794 struct bgp_dest *dest;
f55c9a46 795 struct bgp_path_info *pi;
d62a17ae 796 struct peer *peer;
f55c9a46 797 struct bgp_adj_out *adj;
b68885f9 798 route_map_result_t ret = RMAP_DENYMATCH;
a633fb57 799 route_map_result_t new_ret = RMAP_DENYMATCH;
d62a17ae 800 afi_t afi;
801 safi_t safi;
a633fb57
IS
802 int pref = 65536;
803 int new_pref = 0;
d62a17ae 804
805 if (!subgrp)
806 return;
807
808 peer = SUBGRP_PEER(subgrp);
809 afi = SUBGRP_AFI(subgrp);
810 safi = SUBGRP_SAFI(subgrp);
811
812 if (!(afi == AFI_IP || afi == AFI_IP6))
813 return;
814
815 bgp = peer->bgp;
816 from = bgp->peer_self;
817
0f05ea43 818 bgp_attr_default_set(&attr, bgp, BGP_ORIGIN_IGP);
e50c68b2 819
91204984
IR
820 /* make coverity happy */
821 assert(attr.aspath);
822
f78cfba9
AR
823 attr.med = 0;
824 attr.flag |= ATTR_FLAG_BIT(BGP_ATTR_MULTI_EXIT_DISC);
d62a17ae 825
e50c68b2
DS
826 if ((afi == AFI_IP6) || peer_cap_enhe(peer, afi, safi)) {
827 /* IPv6 global nexthop must be included. */
828 attr.mp_nexthop_len = BGP_ATTR_NHLEN_IPV6_GLOBAL;
829
830 /* If the peer is on shared nextwork and we have link-local
831 nexthop set it. */
832 if (peer->shared_network
833 && !IN6_IS_ADDR_UNSPECIFIED(&peer->nexthop.v6_local))
834 attr.mp_nexthop_len = BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL;
835 }
836
d62a17ae 837 if (peer->default_rmap[afi][safi].name) {
bf844bac
IR
838 struct bgp_path_info tmp_pi = {0};
839
840 tmp_pi.peer = bgp->peer_self;
841
d62a17ae 842 SET_FLAG(bgp->peer_self->rmap_type, PEER_RMAP_TYPE_DEFAULT);
7208c282
DA
843
844 /* Iterate over the RIB to see if we can announce
845 * the default route. We announce the default
846 * route only if route-map has a match.
847 */
9bcb3eef
DS
848 for (dest = bgp_table_top(bgp->rib[afi][safi]); dest;
849 dest = bgp_route_next(dest)) {
f52a961a
AC
850 if (!bgp_dest_has_bgp_path_info_data(dest))
851 continue;
852
f2ee6d5c
DA
853 for (pi = bgp_dest_get_bgp_path_info(dest); pi;
854 pi = pi->next) {
bf844bac 855 struct attr tmp_attr = attr;
f2ee6d5c 856
bf844bac 857 tmp_pi.attr = &tmp_attr;
7208c282 858
a633fb57 859 new_ret = route_map_apply_ext(
f2ee6d5c 860 peer->default_rmap[afi][safi].map,
a633fb57
IS
861 bgp_dest_get_prefix(dest), pi, &tmp_pi,
862 &new_pref);
863
864 if (new_ret == RMAP_PERMITMATCH) {
865 if (new_pref < pref) {
866 pref = new_pref;
867 bgp_attr_flush(new_attr);
868 new_attr = bgp_attr_intern(
869 tmp_pi.attr);
870 bgp_attr_flush(tmp_pi.attr);
871 }
f2ee6d5c
DA
872 subgroup_announce_reset_nhop(
873 (peer_cap_enhe(peer, afi, safi)
874 ? AF_INET6
875 : AF_INET),
876 new_attr);
a633fb57
IS
877 ret = new_ret;
878 } else
879 bgp_attr_flush(&tmp_attr);
dc52bece 880 }
d62a17ae 881 }
882 bgp->peer_self->rmap_type = 0;
883
a9ae9fb5
AR
884 if (ret == RMAP_DENYMATCH) {
885 /*
886 * If its a implicit withdraw due to routemap
887 * deny operation need to set the flag back.
888 * This is a convertion of update flow to
889 * withdraw flow.
890 */
891 if (!withdraw &&
892 (!CHECK_FLAG(subgrp->sflags,
893 SUBGRP_STATUS_DEFAULT_ORIGINATE)))
894 SET_FLAG(subgrp->sflags,
895 SUBGRP_STATUS_DEFAULT_ORIGINATE);
d62a17ae 896 withdraw = 1;
a9ae9fb5 897 }
3f9c7369 898 }
3f9c7369 899
f55c9a46
S
900 /* Check if the default route is in local BGP RIB which is
901 * installed through redistribute or network command
902 */
903 memset(&p, 0, sizeof(p));
904 p.family = afi2family(afi);
905 p.prefixlen = 0;
9bcb3eef 906 dest = bgp_afi_node_lookup(bgp->rib[afi][safi], afi, safi, &p, NULL);
f55c9a46 907
d62a17ae 908 if (withdraw) {
f55c9a46
S
909 /* Withdraw the default route advertised using default
910 * originate
911 */
d62a17ae 912 if (CHECK_FLAG(subgrp->sflags, SUBGRP_STATUS_DEFAULT_ORIGINATE))
913 subgroup_default_withdraw_packet(subgrp);
914 UNSET_FLAG(subgrp->sflags, SUBGRP_STATUS_DEFAULT_ORIGINATE);
f55c9a46
S
915
916 /* If default route is present in the local RIB, advertise the
917 * route
918 */
e71ad4b6 919 if (dest) {
9bcb3eef 920 for (pi = bgp_dest_get_bgp_path_info(dest); pi;
f55c9a46
S
921 pi = pi->next) {
922 if (CHECK_FLAG(pi->flags, BGP_PATH_SELECTED))
923 if (subgroup_announce_check(
9bcb3eef
DS
924 dest, pi, subgrp,
925 bgp_dest_get_prefix(dest),
51c3a7de 926 &attr, NULL))
f55c9a46 927 bgp_adj_out_set_subgroup(
9bcb3eef
DS
928 dest, subgrp, &attr,
929 pi);
f55c9a46 930 }
e71ad4b6 931 bgp_dest_unlock_node(dest);
f55c9a46 932 }
d62a17ae 933 } else {
934 if (!CHECK_FLAG(subgrp->sflags,
935 SUBGRP_STATUS_DEFAULT_ORIGINATE)) {
7f323236 936
d62a17ae 937 /* The 'neighbor x.x.x.x default-originate' default will
938 * act as an
939 * implicit withdraw for any previous UPDATEs sent for
940 * 0.0.0.0/0 so
941 * clear adj_out for the 0.0.0.0/0 prefix in the BGP
942 * table.
943 */
e71ad4b6 944 if (dest) {
f55c9a46
S
945 /* Remove the adjacency for the previously
946 * advertised default route
947 */
948 adj = adj_lookup(
9bcb3eef 949 dest, subgrp,
f55c9a46
S
950 BGP_ADDPATH_TX_ID_FOR_DEFAULT_ORIGINATE);
951 if (adj != NULL) {
952 /* Clean up previous advertisement. */
953 if (adj->adv)
954 bgp_advertise_clean_subgroup(
955 subgrp, adj);
956
f55c9a46
S
957 /* Free allocated information. */
958 adj_free(adj);
f55c9a46 959 }
e71ad4b6 960 bgp_dest_unlock_node(dest);
f55c9a46
S
961 }
962
963 /* Advertise the default route */
637e5ba4 964 if (bgp_in_graceful_shutdown(bgp))
f55c9a46
S
965 bgp_attr_add_gshut_community(new_attr);
966
967 SET_FLAG(subgrp->sflags,
968 SUBGRP_STATUS_DEFAULT_ORIGINATE);
969 subgroup_default_update_packet(subgrp, new_attr, from);
d62a17ae 970 }
971 }
ab798674
IR
972
973 aspath_unintern(&attr.aspath);
3f9c7369
DS
974}
975
976/*
977 * Announce the BGP table to a subgroup.
978 *
979 * At startup, we try to optimize route announcement by coalescing the
980 * peer-up events. This is done only the first time - from then on,
981 * subgrp->v_coalesce will be set to zero and the normal logic
982 * prevails.
983 */
d62a17ae 984void subgroup_announce_all(struct update_subgroup *subgrp)
3f9c7369 985{
d62a17ae 986 if (!subgrp)
987 return;
988
989 /*
990 * If coalesce timer value is not set, announce routes immediately.
991 */
992 if (!subgrp->v_coalesce) {
993 if (bgp_debug_update(NULL, NULL, subgrp->update_group, 0))
6cde4b45 994 zlog_debug("u%" PRIu64 ":s%" PRIu64" announcing all routes",
d62a17ae 995 subgrp->update_group->id, subgrp->id);
996 subgroup_announce_route(subgrp);
997 return;
998 }
999
1000 /*
1001 * We should wait for the coalesce timer. Arm the timer if not done.
1002 */
1003 if (!subgrp->t_coalesce) {
1004 thread_add_timer_msec(bm->master, subgroup_coalesce_timer,
1005 subgrp, subgrp->v_coalesce,
1006 &subgrp->t_coalesce);
1007 }
3f9c7369
DS
1008}
1009
1010/*
1011 * Go through all update subgroups and set up the adv queue for the
1012 * input route.
1013 */
d62a17ae 1014void group_announce_route(struct bgp *bgp, afi_t afi, safi_t safi,
9bcb3eef 1015 struct bgp_dest *dest, struct bgp_path_info *pi)
3f9c7369 1016{
d62a17ae 1017 struct updwalk_context ctx;
40381db7 1018 ctx.pi = pi;
9bcb3eef 1019 ctx.dest = dest;
a77e2f4b
S
1020
1021 /* If suppress fib is enabled, the route will be advertised when
1022 * FIB status is received
1023 */
1024 if (!bgp_check_advertise(bgp, dest))
1025 return;
1026
d62a17ae 1027 update_group_af_walk(bgp, afi, safi, group_announce_route_walkcb, &ctx);
3f9c7369
DS
1028}
1029
d62a17ae 1030void update_group_show_adj_queue(struct bgp *bgp, afi_t afi, safi_t safi,
1031 struct vty *vty, uint64_t id)
3f9c7369 1032{
d62a17ae 1033 updgrp_show_adj(bgp, afi, safi, vty, id, UPDWALK_FLAGS_ADVQUEUE);
3f9c7369
DS
1034}
1035
d62a17ae 1036void update_group_show_advertised(struct bgp *bgp, afi_t afi, safi_t safi,
1037 struct vty *vty, uint64_t id)
3f9c7369 1038{
d62a17ae 1039 updgrp_show_adj(bgp, afi, safi, vty, id, UPDWALK_FLAGS_ADVERTISED);
3f9c7369
DS
1040}
1041
d62a17ae 1042void update_group_announce(struct bgp *bgp)
3f9c7369 1043{
d62a17ae 1044 update_group_walk(bgp, update_group_announce_walkcb, NULL);
3f9c7369
DS
1045}
1046
d62a17ae 1047void update_group_announce_rrclients(struct bgp *bgp)
3f9c7369 1048{
d62a17ae 1049 update_group_walk(bgp, update_group_announce_rrc_walkcb, NULL);
3f9c7369 1050}