]> git.proxmox.com Git - mirror_frr.git/blob - bgpd/bgp_route.c
*: config.h or zebra.h is the first #include
[mirror_frr.git] / bgpd / bgp_route.c
1 /* BGP routing information
2 * Copyright (C) 1996, 97, 98, 99 Kunihiro Ishiguro
3 * Copyright (C) 2016 Job Snijders <job@instituut.net>
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22 #include <zebra.h>
23 #include <math.h>
24
25 #include "printfrr.h"
26 #include "prefix.h"
27 #include "linklist.h"
28 #include "memory.h"
29 #include "command.h"
30 #include "stream.h"
31 #include "filter.h"
32 #include "log.h"
33 #include "routemap.h"
34 #include "buffer.h"
35 #include "sockunion.h"
36 #include "plist.h"
37 #include "thread.h"
38 #include "workqueue.h"
39 #include "queue.h"
40 #include "memory.h"
41 #include "lib/json.h"
42 #include "lib_errors.h"
43
44 #include "bgpd/bgpd.h"
45 #include "bgpd/bgp_table.h"
46 #include "bgpd/bgp_route.h"
47 #include "bgpd/bgp_attr.h"
48 #include "bgpd/bgp_debug.h"
49 #include "bgpd/bgp_errors.h"
50 #include "bgpd/bgp_aspath.h"
51 #include "bgpd/bgp_regex.h"
52 #include "bgpd/bgp_community.h"
53 #include "bgpd/bgp_ecommunity.h"
54 #include "bgpd/bgp_lcommunity.h"
55 #include "bgpd/bgp_clist.h"
56 #include "bgpd/bgp_packet.h"
57 #include "bgpd/bgp_filter.h"
58 #include "bgpd/bgp_fsm.h"
59 #include "bgpd/bgp_mplsvpn.h"
60 #include "bgpd/bgp_nexthop.h"
61 #include "bgpd/bgp_damp.h"
62 #include "bgpd/bgp_advertise.h"
63 #include "bgpd/bgp_zebra.h"
64 #include "bgpd/bgp_vty.h"
65 #include "bgpd/bgp_mpath.h"
66 #include "bgpd/bgp_nht.h"
67 #include "bgpd/bgp_updgrp.h"
68 #include "bgpd/bgp_label.h"
69 #include "bgpd/bgp_addpath.h"
70 #include "bgpd/bgp_mac.h"
71
72 #if ENABLE_BGP_VNC
73 #include "bgpd/rfapi/rfapi_backend.h"
74 #include "bgpd/rfapi/vnc_import_bgp.h"
75 #include "bgpd/rfapi/vnc_export_bgp.h"
76 #endif
77 #include "bgpd/bgp_encap_types.h"
78 #include "bgpd/bgp_encap_tlv.h"
79 #include "bgpd/bgp_evpn.h"
80 #include "bgpd/bgp_evpn_vty.h"
81 #include "bgpd/bgp_flowspec.h"
82 #include "bgpd/bgp_flowspec_util.h"
83 #include "bgpd/bgp_pbr.h"
84
85 #ifndef VTYSH_EXTRACT_PL
86 #include "bgpd/bgp_route_clippy.c"
87 #endif
88
89 /* Extern from bgp_dump.c */
90 extern const char *bgp_origin_str[];
91 extern const char *bgp_origin_long_str[];
92
93 /* PMSI strings. */
94 #define PMSI_TNLTYPE_STR_NO_INFO "No info"
95 #define PMSI_TNLTYPE_STR_DEFAULT PMSI_TNLTYPE_STR_NO_INFO
96 static const struct message bgp_pmsi_tnltype_str[] = {
97 {PMSI_TNLTYPE_NO_INFO, PMSI_TNLTYPE_STR_NO_INFO},
98 {PMSI_TNLTYPE_RSVP_TE_P2MP, "RSVP-TE P2MP"},
99 {PMSI_TNLTYPE_MLDP_P2MP, "mLDP P2MP"},
100 {PMSI_TNLTYPE_PIM_SSM, "PIM-SSM"},
101 {PMSI_TNLTYPE_PIM_SM, "PIM-SM"},
102 {PMSI_TNLTYPE_PIM_BIDIR, "PIM-BIDIR"},
103 {PMSI_TNLTYPE_INGR_REPL, "Ingress Replication"},
104 {PMSI_TNLTYPE_MLDP_MP2MP, "mLDP MP2MP"},
105 {0}
106 };
107
108 #define VRFID_NONE_STR "-"
109
110 struct bgp_node *bgp_afi_node_get(struct bgp_table *table, afi_t afi,
111 safi_t safi, struct prefix *p,
112 struct prefix_rd *prd)
113 {
114 struct bgp_node *rn;
115 struct bgp_node *prn = NULL;
116
117 assert(table);
118 if (!table)
119 return NULL;
120
121 if ((safi == SAFI_MPLS_VPN) || (safi == SAFI_ENCAP)
122 || (safi == SAFI_EVPN)) {
123 prn = bgp_node_get(table, (struct prefix *)prd);
124
125 if (!bgp_node_has_bgp_path_info_data(prn))
126 bgp_node_set_bgp_table_info(
127 prn, bgp_table_init(table->bgp, afi, safi));
128 else
129 bgp_unlock_node(prn);
130 table = bgp_node_get_bgp_table_info(prn);
131 }
132
133 rn = bgp_node_get(table, p);
134
135 if ((safi == SAFI_MPLS_VPN) || (safi == SAFI_ENCAP)
136 || (safi == SAFI_EVPN))
137 rn->prn = prn;
138
139 return rn;
140 }
141
142 struct bgp_node *bgp_afi_node_lookup(struct bgp_table *table, afi_t afi,
143 safi_t safi, struct prefix *p,
144 struct prefix_rd *prd)
145 {
146 struct bgp_node *rn;
147 struct bgp_node *prn = NULL;
148
149 if (!table)
150 return NULL;
151
152 if ((safi == SAFI_MPLS_VPN) || (safi == SAFI_ENCAP)
153 || (safi == SAFI_EVPN)) {
154 prn = bgp_node_lookup(table, (struct prefix *)prd);
155 if (!prn)
156 return NULL;
157
158 if (!bgp_node_has_bgp_path_info_data(prn)) {
159 bgp_unlock_node(prn);
160 return NULL;
161 }
162
163 table = bgp_node_get_bgp_table_info(prn);
164 }
165
166 rn = bgp_node_lookup(table, p);
167
168 return rn;
169 }
170
171 /* Allocate bgp_path_info_extra */
172 static struct bgp_path_info_extra *bgp_path_info_extra_new(void)
173 {
174 struct bgp_path_info_extra *new;
175 new = XCALLOC(MTYPE_BGP_ROUTE_EXTRA,
176 sizeof(struct bgp_path_info_extra));
177 new->label[0] = MPLS_INVALID_LABEL;
178 new->num_labels = 0;
179 new->bgp_fs_pbr = NULL;
180 new->bgp_fs_iprule = NULL;
181 return new;
182 }
183
184 void bgp_path_info_extra_free(struct bgp_path_info_extra **extra)
185 {
186 struct bgp_path_info_extra *e;
187
188 if (!extra || !*extra)
189 return;
190
191 e = *extra;
192 if (e->damp_info)
193 bgp_damp_info_free(e->damp_info, 0);
194
195 e->damp_info = NULL;
196 if (e->parent) {
197 struct bgp_path_info *bpi = (struct bgp_path_info *)e->parent;
198
199 if (bpi->net) {
200 /* FIXME: since multiple e may have the same e->parent
201 * and e->parent->net is holding a refcount for each
202 * of them, we need to do some fudging here.
203 *
204 * WARNING: if bpi->net->lock drops to 0, bpi may be
205 * freed as well (because bpi->net was holding the
206 * last reference to bpi) => write after free!
207 */
208 unsigned refcount;
209
210 bpi = bgp_path_info_lock(bpi);
211 refcount = bpi->net->lock - 1;
212 bgp_unlock_node((struct bgp_node *)bpi->net);
213 if (!refcount)
214 bpi->net = NULL;
215 bgp_path_info_unlock(bpi);
216 }
217 bgp_path_info_unlock(e->parent);
218 e->parent = NULL;
219 }
220
221 if (e->bgp_orig)
222 bgp_unlock(e->bgp_orig);
223
224 if ((*extra)->bgp_fs_iprule)
225 list_delete(&((*extra)->bgp_fs_iprule));
226 if ((*extra)->bgp_fs_pbr)
227 list_delete(&((*extra)->bgp_fs_pbr));
228 XFREE(MTYPE_BGP_ROUTE_EXTRA, *extra);
229
230 *extra = NULL;
231 }
232
233 /* Get bgp_path_info extra information for the given bgp_path_info, lazy
234 * allocated if required.
235 */
236 struct bgp_path_info_extra *bgp_path_info_extra_get(struct bgp_path_info *pi)
237 {
238 if (!pi->extra)
239 pi->extra = bgp_path_info_extra_new();
240 return pi->extra;
241 }
242
243 /* Free bgp route information. */
244 static void bgp_path_info_free(struct bgp_path_info *path)
245 {
246 if (path->attr)
247 bgp_attr_unintern(&path->attr);
248
249 bgp_unlink_nexthop(path);
250 bgp_path_info_extra_free(&path->extra);
251 bgp_path_info_mpath_free(&path->mpath);
252 if (path->net)
253 bgp_addpath_free_info_data(&path->tx_addpath,
254 &path->net->tx_addpath);
255
256 peer_unlock(path->peer); /* bgp_path_info peer reference */
257
258 XFREE(MTYPE_BGP_ROUTE, path);
259 }
260
261 struct bgp_path_info *bgp_path_info_lock(struct bgp_path_info *path)
262 {
263 path->lock++;
264 return path;
265 }
266
267 struct bgp_path_info *bgp_path_info_unlock(struct bgp_path_info *path)
268 {
269 assert(path && path->lock > 0);
270 path->lock--;
271
272 if (path->lock == 0) {
273 #if 0
274 zlog_debug ("%s: unlocked and freeing", __func__);
275 zlog_backtrace (LOG_DEBUG);
276 #endif
277 bgp_path_info_free(path);
278 return NULL;
279 }
280
281 #if 0
282 if (path->lock == 1)
283 {
284 zlog_debug ("%s: unlocked to 1", __func__);
285 zlog_backtrace (LOG_DEBUG);
286 }
287 #endif
288
289 return path;
290 }
291
292 void bgp_path_info_add(struct bgp_node *rn, struct bgp_path_info *pi)
293 {
294 struct bgp_path_info *top;
295
296 top = bgp_node_get_bgp_path_info(rn);
297
298 pi->next = top;
299 pi->prev = NULL;
300 if (top)
301 top->prev = pi;
302 bgp_node_set_bgp_path_info(rn, pi);
303
304 bgp_path_info_lock(pi);
305 bgp_lock_node(rn);
306 peer_lock(pi->peer); /* bgp_path_info peer reference */
307 }
308
309 /* Do the actual removal of info from RIB, for use by bgp_process
310 completion callback *only* */
311 void bgp_path_info_reap(struct bgp_node *rn, struct bgp_path_info *pi)
312 {
313 if (pi->next)
314 pi->next->prev = pi->prev;
315 if (pi->prev)
316 pi->prev->next = pi->next;
317 else
318 bgp_node_set_bgp_path_info(rn, pi->next);
319
320 bgp_path_info_mpath_dequeue(pi);
321 bgp_path_info_unlock(pi);
322 bgp_unlock_node(rn);
323 }
324
325 void bgp_path_info_delete(struct bgp_node *rn, struct bgp_path_info *pi)
326 {
327 bgp_path_info_set_flag(rn, pi, BGP_PATH_REMOVED);
328 /* set of previous already took care of pcount */
329 UNSET_FLAG(pi->flags, BGP_PATH_VALID);
330 }
331
332 /* undo the effects of a previous call to bgp_path_info_delete; typically
333 called when a route is deleted and then quickly re-added before the
334 deletion has been processed */
335 void bgp_path_info_restore(struct bgp_node *rn, struct bgp_path_info *pi)
336 {
337 bgp_path_info_unset_flag(rn, pi, BGP_PATH_REMOVED);
338 /* unset of previous already took care of pcount */
339 SET_FLAG(pi->flags, BGP_PATH_VALID);
340 }
341
342 /* Adjust pcount as required */
343 static void bgp_pcount_adjust(struct bgp_node *rn, struct bgp_path_info *pi)
344 {
345 struct bgp_table *table;
346
347 assert(rn && bgp_node_table(rn));
348 assert(pi && pi->peer && pi->peer->bgp);
349
350 table = bgp_node_table(rn);
351
352 if (pi->peer == pi->peer->bgp->peer_self)
353 return;
354
355 if (!BGP_PATH_COUNTABLE(pi)
356 && CHECK_FLAG(pi->flags, BGP_PATH_COUNTED)) {
357
358 UNSET_FLAG(pi->flags, BGP_PATH_COUNTED);
359
360 /* slight hack, but more robust against errors. */
361 if (pi->peer->pcount[table->afi][table->safi])
362 pi->peer->pcount[table->afi][table->safi]--;
363 else
364 flog_err(EC_LIB_DEVELOPMENT,
365 "Asked to decrement 0 prefix count for peer");
366 } else if (BGP_PATH_COUNTABLE(pi)
367 && !CHECK_FLAG(pi->flags, BGP_PATH_COUNTED)) {
368 SET_FLAG(pi->flags, BGP_PATH_COUNTED);
369 pi->peer->pcount[table->afi][table->safi]++;
370 }
371 }
372
373 static int bgp_label_index_differs(struct bgp_path_info *pi1,
374 struct bgp_path_info *pi2)
375 {
376 return (!(pi1->attr->label_index == pi2->attr->label_index));
377 }
378
379 /* Set/unset bgp_path_info flags, adjusting any other state as needed.
380 * This is here primarily to keep prefix-count in check.
381 */
382 void bgp_path_info_set_flag(struct bgp_node *rn, struct bgp_path_info *pi,
383 uint32_t flag)
384 {
385 SET_FLAG(pi->flags, flag);
386
387 /* early bath if we know it's not a flag that changes countability state
388 */
389 if (!CHECK_FLAG(flag,
390 BGP_PATH_VALID | BGP_PATH_HISTORY | BGP_PATH_REMOVED))
391 return;
392
393 bgp_pcount_adjust(rn, pi);
394 }
395
396 void bgp_path_info_unset_flag(struct bgp_node *rn, struct bgp_path_info *pi,
397 uint32_t flag)
398 {
399 UNSET_FLAG(pi->flags, flag);
400
401 /* early bath if we know it's not a flag that changes countability state
402 */
403 if (!CHECK_FLAG(flag,
404 BGP_PATH_VALID | BGP_PATH_HISTORY | BGP_PATH_REMOVED))
405 return;
406
407 bgp_pcount_adjust(rn, pi);
408 }
409
410 /* Get MED value. If MED value is missing and "bgp bestpath
411 missing-as-worst" is specified, treat it as the worst value. */
412 static uint32_t bgp_med_value(struct attr *attr, struct bgp *bgp)
413 {
414 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_MULTI_EXIT_DISC))
415 return attr->med;
416 else {
417 if (bgp_flag_check(bgp, BGP_FLAG_MED_MISSING_AS_WORST))
418 return BGP_MED_MAX;
419 else
420 return 0;
421 }
422 }
423
424 void bgp_path_info_path_with_addpath_rx_str(struct bgp_path_info *pi, char *buf)
425 {
426 if (pi->addpath_rx_id)
427 sprintf(buf, "path %s (addpath rxid %d)", pi->peer->host,
428 pi->addpath_rx_id);
429 else
430 sprintf(buf, "path %s", pi->peer->host);
431 }
432
433 /* Compare two bgp route entity. If 'new' is preferable over 'exist' return 1.
434 */
435 static int bgp_path_info_cmp(struct bgp *bgp, struct bgp_path_info *new,
436 struct bgp_path_info *exist, int *paths_eq,
437 struct bgp_maxpaths_cfg *mpath_cfg, int debug,
438 char *pfx_buf, afi_t afi, safi_t safi,
439 enum bgp_path_selection_reason *reason)
440 {
441 struct attr *newattr, *existattr;
442 bgp_peer_sort_t new_sort;
443 bgp_peer_sort_t exist_sort;
444 uint32_t new_pref;
445 uint32_t exist_pref;
446 uint32_t new_med;
447 uint32_t exist_med;
448 uint32_t new_weight;
449 uint32_t exist_weight;
450 uint32_t newm, existm;
451 struct in_addr new_id;
452 struct in_addr exist_id;
453 int new_cluster;
454 int exist_cluster;
455 int internal_as_route;
456 int confed_as_route;
457 int ret = 0;
458 char new_buf[PATH_ADDPATH_STR_BUFFER];
459 char exist_buf[PATH_ADDPATH_STR_BUFFER];
460 uint32_t new_mm_seq;
461 uint32_t exist_mm_seq;
462 int nh_cmp;
463
464 *paths_eq = 0;
465
466 /* 0. Null check. */
467 if (new == NULL) {
468 *reason = bgp_path_selection_none;
469 if (debug)
470 zlog_debug("%s: new is NULL", pfx_buf);
471 return 0;
472 }
473
474 if (debug)
475 bgp_path_info_path_with_addpath_rx_str(new, new_buf);
476
477 if (exist == NULL) {
478 *reason = bgp_path_selection_first;
479 if (debug)
480 zlog_debug("%s: %s is the initial bestpath", pfx_buf,
481 new_buf);
482 return 1;
483 }
484
485 if (debug) {
486 bgp_path_info_path_with_addpath_rx_str(exist, exist_buf);
487 zlog_debug("%s: Comparing %s flags 0x%x with %s flags 0x%x",
488 pfx_buf, new_buf, new->flags, exist_buf,
489 exist->flags);
490 }
491
492 newattr = new->attr;
493 existattr = exist->attr;
494
495 /* For EVPN routes, we cannot just go by local vs remote, we have to
496 * look at the MAC mobility sequence number, if present.
497 */
498 if (safi == SAFI_EVPN) {
499 /* This is an error condition described in RFC 7432 Section
500 * 15.2. The RFC
501 * states that in this scenario "the PE MUST alert the operator"
502 * but it
503 * does not state what other action to take. In order to provide
504 * some
505 * consistency in this scenario we are going to prefer the path
506 * with the
507 * sticky flag.
508 */
509 if (newattr->sticky != existattr->sticky) {
510 if (!debug) {
511 prefix2str(&new->net->p, pfx_buf,
512 sizeof(*pfx_buf)
513 * PREFIX2STR_BUFFER);
514 bgp_path_info_path_with_addpath_rx_str(new,
515 new_buf);
516 bgp_path_info_path_with_addpath_rx_str(
517 exist, exist_buf);
518 }
519
520 if (newattr->sticky && !existattr->sticky) {
521 *reason = bgp_path_selection_evpn_sticky_mac;
522 if (debug)
523 zlog_debug(
524 "%s: %s wins over %s due to sticky MAC flag",
525 pfx_buf, new_buf, exist_buf);
526 return 1;
527 }
528
529 if (!newattr->sticky && existattr->sticky) {
530 *reason = bgp_path_selection_evpn_sticky_mac;
531 if (debug)
532 zlog_debug(
533 "%s: %s loses to %s due to sticky MAC flag",
534 pfx_buf, new_buf, exist_buf);
535 return 0;
536 }
537 }
538
539 new_mm_seq = mac_mobility_seqnum(newattr);
540 exist_mm_seq = mac_mobility_seqnum(existattr);
541
542 if (new_mm_seq > exist_mm_seq) {
543 *reason = bgp_path_selection_evpn_seq;
544 if (debug)
545 zlog_debug(
546 "%s: %s wins over %s due to MM seq %u > %u",
547 pfx_buf, new_buf, exist_buf, new_mm_seq,
548 exist_mm_seq);
549 return 1;
550 }
551
552 if (new_mm_seq < exist_mm_seq) {
553 *reason = bgp_path_selection_evpn_seq;
554 if (debug)
555 zlog_debug(
556 "%s: %s loses to %s due to MM seq %u < %u",
557 pfx_buf, new_buf, exist_buf, new_mm_seq,
558 exist_mm_seq);
559 return 0;
560 }
561
562 /*
563 * if sequence numbers are the same path with the lowest IP
564 * wins
565 */
566 nh_cmp = bgp_path_info_nexthop_cmp(new, exist);
567 if (nh_cmp < 0) {
568 *reason = bgp_path_selection_evpn_lower_ip;
569 if (debug)
570 zlog_debug(
571 "%s: %s wins over %s due to same MM seq %u and lower IP %s",
572 pfx_buf, new_buf, exist_buf, new_mm_seq,
573 inet_ntoa(new->attr->nexthop));
574 return 1;
575 }
576 if (nh_cmp > 0) {
577 *reason = bgp_path_selection_evpn_lower_ip;
578 if (debug)
579 zlog_debug(
580 "%s: %s loses to %s due to same MM seq %u and higher IP %s",
581 pfx_buf, new_buf, exist_buf, new_mm_seq,
582 inet_ntoa(new->attr->nexthop));
583 return 0;
584 }
585 }
586
587 /* 1. Weight check. */
588 new_weight = newattr->weight;
589 exist_weight = existattr->weight;
590
591 if (new_weight > exist_weight) {
592 *reason = bgp_path_selection_weight;
593 if (debug)
594 zlog_debug("%s: %s wins over %s due to weight %d > %d",
595 pfx_buf, new_buf, exist_buf, new_weight,
596 exist_weight);
597 return 1;
598 }
599
600 if (new_weight < exist_weight) {
601 *reason = bgp_path_selection_weight;
602 if (debug)
603 zlog_debug("%s: %s loses to %s due to weight %d < %d",
604 pfx_buf, new_buf, exist_buf, new_weight,
605 exist_weight);
606 return 0;
607 }
608
609 /* 2. Local preference check. */
610 new_pref = exist_pref = bgp->default_local_pref;
611
612 if (newattr->flag & ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF))
613 new_pref = newattr->local_pref;
614 if (existattr->flag & ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF))
615 exist_pref = existattr->local_pref;
616
617 if (new_pref > exist_pref) {
618 *reason = bgp_path_selection_local_pref;
619 if (debug)
620 zlog_debug(
621 "%s: %s wins over %s due to localpref %d > %d",
622 pfx_buf, new_buf, exist_buf, new_pref,
623 exist_pref);
624 return 1;
625 }
626
627 if (new_pref < exist_pref) {
628 *reason = bgp_path_selection_local_pref;
629 if (debug)
630 zlog_debug(
631 "%s: %s loses to %s due to localpref %d < %d",
632 pfx_buf, new_buf, exist_buf, new_pref,
633 exist_pref);
634 return 0;
635 }
636
637 /* 3. Local route check. We prefer:
638 * - BGP_ROUTE_STATIC
639 * - BGP_ROUTE_AGGREGATE
640 * - BGP_ROUTE_REDISTRIBUTE
641 */
642 if (!(new->sub_type == BGP_ROUTE_NORMAL ||
643 new->sub_type == BGP_ROUTE_IMPORTED)) {
644 *reason = bgp_path_selection_local_route;
645 if (debug)
646 zlog_debug(
647 "%s: %s wins over %s due to preferred BGP_ROUTE type",
648 pfx_buf, new_buf, exist_buf);
649 return 1;
650 }
651
652 if (!(exist->sub_type == BGP_ROUTE_NORMAL ||
653 exist->sub_type == BGP_ROUTE_IMPORTED)) {
654 *reason = bgp_path_selection_local_route;
655 if (debug)
656 zlog_debug(
657 "%s: %s loses to %s due to preferred BGP_ROUTE type",
658 pfx_buf, new_buf, exist_buf);
659 return 0;
660 }
661
662 /* 4. AS path length check. */
663 if (!bgp_flag_check(bgp, BGP_FLAG_ASPATH_IGNORE)) {
664 int exist_hops = aspath_count_hops(existattr->aspath);
665 int exist_confeds = aspath_count_confeds(existattr->aspath);
666
667 if (bgp_flag_check(bgp, BGP_FLAG_ASPATH_CONFED)) {
668 int aspath_hops;
669
670 aspath_hops = aspath_count_hops(newattr->aspath);
671 aspath_hops += aspath_count_confeds(newattr->aspath);
672
673 if (aspath_hops < (exist_hops + exist_confeds)) {
674 *reason = bgp_path_selection_confed_as_path;
675 if (debug)
676 zlog_debug(
677 "%s: %s wins over %s due to aspath (with confeds) hopcount %d < %d",
678 pfx_buf, new_buf, exist_buf,
679 aspath_hops,
680 (exist_hops + exist_confeds));
681 return 1;
682 }
683
684 if (aspath_hops > (exist_hops + exist_confeds)) {
685 *reason = bgp_path_selection_confed_as_path;
686 if (debug)
687 zlog_debug(
688 "%s: %s loses to %s due to aspath (with confeds) hopcount %d > %d",
689 pfx_buf, new_buf, exist_buf,
690 aspath_hops,
691 (exist_hops + exist_confeds));
692 return 0;
693 }
694 } else {
695 int newhops = aspath_count_hops(newattr->aspath);
696
697 if (newhops < exist_hops) {
698 *reason = bgp_path_selection_as_path;
699 if (debug)
700 zlog_debug(
701 "%s: %s wins over %s due to aspath hopcount %d < %d",
702 pfx_buf, new_buf, exist_buf,
703 newhops, exist_hops);
704 return 1;
705 }
706
707 if (newhops > exist_hops) {
708 *reason = bgp_path_selection_as_path;
709 if (debug)
710 zlog_debug(
711 "%s: %s loses to %s due to aspath hopcount %d > %d",
712 pfx_buf, new_buf, exist_buf,
713 newhops, exist_hops);
714 return 0;
715 }
716 }
717 }
718
719 /* 5. Origin check. */
720 if (newattr->origin < existattr->origin) {
721 *reason = bgp_path_selection_origin;
722 if (debug)
723 zlog_debug("%s: %s wins over %s due to ORIGIN %s < %s",
724 pfx_buf, new_buf, exist_buf,
725 bgp_origin_long_str[newattr->origin],
726 bgp_origin_long_str[existattr->origin]);
727 return 1;
728 }
729
730 if (newattr->origin > existattr->origin) {
731 *reason = bgp_path_selection_origin;
732 if (debug)
733 zlog_debug("%s: %s loses to %s due to ORIGIN %s > %s",
734 pfx_buf, new_buf, exist_buf,
735 bgp_origin_long_str[newattr->origin],
736 bgp_origin_long_str[existattr->origin]);
737 return 0;
738 }
739
740 /* 6. MED check. */
741 internal_as_route = (aspath_count_hops(newattr->aspath) == 0
742 && aspath_count_hops(existattr->aspath) == 0);
743 confed_as_route = (aspath_count_confeds(newattr->aspath) > 0
744 && aspath_count_confeds(existattr->aspath) > 0
745 && aspath_count_hops(newattr->aspath) == 0
746 && aspath_count_hops(existattr->aspath) == 0);
747
748 if (bgp_flag_check(bgp, BGP_FLAG_ALWAYS_COMPARE_MED)
749 || (bgp_flag_check(bgp, BGP_FLAG_MED_CONFED) && confed_as_route)
750 || aspath_cmp_left(newattr->aspath, existattr->aspath)
751 || aspath_cmp_left_confed(newattr->aspath, existattr->aspath)
752 || internal_as_route) {
753 new_med = bgp_med_value(new->attr, bgp);
754 exist_med = bgp_med_value(exist->attr, bgp);
755
756 if (new_med < exist_med) {
757 *reason = bgp_path_selection_med;
758 if (debug)
759 zlog_debug(
760 "%s: %s wins over %s due to MED %d < %d",
761 pfx_buf, new_buf, exist_buf, new_med,
762 exist_med);
763 return 1;
764 }
765
766 if (new_med > exist_med) {
767 *reason = bgp_path_selection_med;
768 if (debug)
769 zlog_debug(
770 "%s: %s loses to %s due to MED %d > %d",
771 pfx_buf, new_buf, exist_buf, new_med,
772 exist_med);
773 return 0;
774 }
775 }
776
777 /* 7. Peer type check. */
778 new_sort = new->peer->sort;
779 exist_sort = exist->peer->sort;
780
781 if (new_sort == BGP_PEER_EBGP
782 && (exist_sort == BGP_PEER_IBGP || exist_sort == BGP_PEER_CONFED)) {
783 *reason = bgp_path_selection_peer;
784 if (debug)
785 zlog_debug(
786 "%s: %s wins over %s due to eBGP peer > iBGP peer",
787 pfx_buf, new_buf, exist_buf);
788 return 1;
789 }
790
791 if (exist_sort == BGP_PEER_EBGP
792 && (new_sort == BGP_PEER_IBGP || new_sort == BGP_PEER_CONFED)) {
793 *reason = bgp_path_selection_peer;
794 if (debug)
795 zlog_debug(
796 "%s: %s loses to %s due to iBGP peer < eBGP peer",
797 pfx_buf, new_buf, exist_buf);
798 return 0;
799 }
800
801 /* 8. IGP metric check. */
802 newm = existm = 0;
803
804 if (new->extra)
805 newm = new->extra->igpmetric;
806 if (exist->extra)
807 existm = exist->extra->igpmetric;
808
809 if (newm < existm) {
810 if (debug)
811 zlog_debug(
812 "%s: %s wins over %s due to IGP metric %d < %d",
813 pfx_buf, new_buf, exist_buf, newm, existm);
814 ret = 1;
815 }
816
817 if (newm > existm) {
818 if (debug)
819 zlog_debug(
820 "%s: %s loses to %s due to IGP metric %d > %d",
821 pfx_buf, new_buf, exist_buf, newm, existm);
822 ret = 0;
823 }
824
825 /* 9. Same IGP metric. Compare the cluster list length as
826 representative of IGP hops metric. Rewrite the metric value
827 pair (newm, existm) with the cluster list length. Prefer the
828 path with smaller cluster list length. */
829 if (newm == existm) {
830 if (peer_sort(new->peer) == BGP_PEER_IBGP
831 && peer_sort(exist->peer) == BGP_PEER_IBGP
832 && (mpath_cfg == NULL
833 || CHECK_FLAG(
834 mpath_cfg->ibgp_flags,
835 BGP_FLAG_IBGP_MULTIPATH_SAME_CLUSTERLEN))) {
836 newm = BGP_CLUSTER_LIST_LENGTH(new->attr);
837 existm = BGP_CLUSTER_LIST_LENGTH(exist->attr);
838
839 if (newm < existm) {
840 if (debug)
841 zlog_debug(
842 "%s: %s wins over %s due to CLUSTER_LIST length %d < %d",
843 pfx_buf, new_buf, exist_buf,
844 newm, existm);
845 ret = 1;
846 }
847
848 if (newm > existm) {
849 if (debug)
850 zlog_debug(
851 "%s: %s loses to %s due to CLUSTER_LIST length %d > %d",
852 pfx_buf, new_buf, exist_buf,
853 newm, existm);
854 ret = 0;
855 }
856 }
857 }
858
859 /* 10. confed-external vs. confed-internal */
860 if (CHECK_FLAG(bgp->config, BGP_CONFIG_CONFEDERATION)) {
861 if (new_sort == BGP_PEER_CONFED
862 && exist_sort == BGP_PEER_IBGP) {
863 *reason = bgp_path_selection_confed;
864 if (debug)
865 zlog_debug(
866 "%s: %s wins over %s due to confed-external peer > confed-internal peer",
867 pfx_buf, new_buf, exist_buf);
868 return 1;
869 }
870
871 if (exist_sort == BGP_PEER_CONFED
872 && new_sort == BGP_PEER_IBGP) {
873 *reason = bgp_path_selection_confed;
874 if (debug)
875 zlog_debug(
876 "%s: %s loses to %s due to confed-internal peer < confed-external peer",
877 pfx_buf, new_buf, exist_buf);
878 return 0;
879 }
880 }
881
882 /* 11. Maximum path check. */
883 if (newm == existm) {
884 /* If one path has a label but the other does not, do not treat
885 * them as equals for multipath
886 */
887 if ((new->extra &&bgp_is_valid_label(&new->extra->label[0]))
888 != (exist->extra
889 && bgp_is_valid_label(&exist->extra->label[0]))) {
890 if (debug)
891 zlog_debug(
892 "%s: %s and %s cannot be multipath, one has a label while the other does not",
893 pfx_buf, new_buf, exist_buf);
894 } else if (bgp_flag_check(bgp,
895 BGP_FLAG_ASPATH_MULTIPATH_RELAX)) {
896
897 /*
898 * For the two paths, all comparison steps till IGP
899 * metric
900 * have succeeded - including AS_PATH hop count. Since
901 * 'bgp
902 * bestpath as-path multipath-relax' knob is on, we
903 * don't need
904 * an exact match of AS_PATH. Thus, mark the paths are
905 * equal.
906 * That will trigger both these paths to get into the
907 * multipath
908 * array.
909 */
910 *paths_eq = 1;
911
912 if (debug)
913 zlog_debug(
914 "%s: %s and %s are equal via multipath-relax",
915 pfx_buf, new_buf, exist_buf);
916 } else if (new->peer->sort == BGP_PEER_IBGP) {
917 if (aspath_cmp(new->attr->aspath,
918 exist->attr->aspath)) {
919 *paths_eq = 1;
920
921 if (debug)
922 zlog_debug(
923 "%s: %s and %s are equal via matching aspaths",
924 pfx_buf, new_buf, exist_buf);
925 }
926 } else if (new->peer->as == exist->peer->as) {
927 *paths_eq = 1;
928
929 if (debug)
930 zlog_debug(
931 "%s: %s and %s are equal via same remote-as",
932 pfx_buf, new_buf, exist_buf);
933 }
934 } else {
935 /*
936 * TODO: If unequal cost ibgp multipath is enabled we can
937 * mark the paths as equal here instead of returning
938 */
939 if (debug) {
940 if (ret == 1)
941 zlog_debug(
942 "%s: %s wins over %s after IGP metric comparison",
943 pfx_buf, new_buf, exist_buf);
944 else
945 zlog_debug(
946 "%s: %s loses to %s after IGP metric comparison",
947 pfx_buf, new_buf, exist_buf);
948 }
949 *reason = bgp_path_selection_igp_metric;
950 return ret;
951 }
952
953 /* 12. If both paths are external, prefer the path that was received
954 first (the oldest one). This step minimizes route-flap, since a
955 newer path won't displace an older one, even if it was the
956 preferred route based on the additional decision criteria below. */
957 if (!bgp_flag_check(bgp, BGP_FLAG_COMPARE_ROUTER_ID)
958 && new_sort == BGP_PEER_EBGP && exist_sort == BGP_PEER_EBGP) {
959 if (CHECK_FLAG(new->flags, BGP_PATH_SELECTED)) {
960 *reason = bgp_path_selection_older;
961 if (debug)
962 zlog_debug(
963 "%s: %s wins over %s due to oldest external",
964 pfx_buf, new_buf, exist_buf);
965 return 1;
966 }
967
968 if (CHECK_FLAG(exist->flags, BGP_PATH_SELECTED)) {
969 *reason = bgp_path_selection_older;
970 if (debug)
971 zlog_debug(
972 "%s: %s loses to %s due to oldest external",
973 pfx_buf, new_buf, exist_buf);
974 return 0;
975 }
976 }
977
978 /* 13. Router-ID comparision. */
979 /* If one of the paths is "stale", the corresponding peer router-id will
980 * be 0 and would always win over the other path. If originator id is
981 * used for the comparision, it will decide which path is better.
982 */
983 if (newattr->flag & ATTR_FLAG_BIT(BGP_ATTR_ORIGINATOR_ID))
984 new_id.s_addr = newattr->originator_id.s_addr;
985 else
986 new_id.s_addr = new->peer->remote_id.s_addr;
987 if (existattr->flag & ATTR_FLAG_BIT(BGP_ATTR_ORIGINATOR_ID))
988 exist_id.s_addr = existattr->originator_id.s_addr;
989 else
990 exist_id.s_addr = exist->peer->remote_id.s_addr;
991
992 if (ntohl(new_id.s_addr) < ntohl(exist_id.s_addr)) {
993 *reason = bgp_path_selection_router_id;
994 if (debug)
995 zlog_debug(
996 "%s: %s wins over %s due to Router-ID comparison",
997 pfx_buf, new_buf, exist_buf);
998 return 1;
999 }
1000
1001 if (ntohl(new_id.s_addr) > ntohl(exist_id.s_addr)) {
1002 *reason = bgp_path_selection_router_id;
1003 if (debug)
1004 zlog_debug(
1005 "%s: %s loses to %s due to Router-ID comparison",
1006 pfx_buf, new_buf, exist_buf);
1007 return 0;
1008 }
1009
1010 /* 14. Cluster length comparision. */
1011 new_cluster = BGP_CLUSTER_LIST_LENGTH(new->attr);
1012 exist_cluster = BGP_CLUSTER_LIST_LENGTH(exist->attr);
1013
1014 if (new_cluster < exist_cluster) {
1015 *reason = bgp_path_selection_cluster_length;
1016 if (debug)
1017 zlog_debug(
1018 "%s: %s wins over %s due to CLUSTER_LIST length %d < %d",
1019 pfx_buf, new_buf, exist_buf, new_cluster,
1020 exist_cluster);
1021 return 1;
1022 }
1023
1024 if (new_cluster > exist_cluster) {
1025 *reason = bgp_path_selection_cluster_length;
1026 if (debug)
1027 zlog_debug(
1028 "%s: %s loses to %s due to CLUSTER_LIST length %d > %d",
1029 pfx_buf, new_buf, exist_buf, new_cluster,
1030 exist_cluster);
1031 return 0;
1032 }
1033
1034 /* 15. Neighbor address comparision. */
1035 /* Do this only if neither path is "stale" as stale paths do not have
1036 * valid peer information (as the connection may or may not be up).
1037 */
1038 if (CHECK_FLAG(exist->flags, BGP_PATH_STALE)) {
1039 *reason = bgp_path_selection_stale;
1040 if (debug)
1041 zlog_debug(
1042 "%s: %s wins over %s due to latter path being STALE",
1043 pfx_buf, new_buf, exist_buf);
1044 return 1;
1045 }
1046
1047 if (CHECK_FLAG(new->flags, BGP_PATH_STALE)) {
1048 *reason = bgp_path_selection_stale;
1049 if (debug)
1050 zlog_debug(
1051 "%s: %s loses to %s due to former path being STALE",
1052 pfx_buf, new_buf, exist_buf);
1053 return 0;
1054 }
1055
1056 /* locally configured routes to advertise do not have su_remote */
1057 if (new->peer->su_remote == NULL) {
1058 *reason = bgp_path_selection_local_configured;
1059 return 0;
1060 }
1061 if (exist->peer->su_remote == NULL) {
1062 *reason = bgp_path_selection_local_configured;
1063 return 1;
1064 }
1065
1066 ret = sockunion_cmp(new->peer->su_remote, exist->peer->su_remote);
1067
1068 if (ret == 1) {
1069 *reason = bgp_path_selection_neighbor_ip;
1070 if (debug)
1071 zlog_debug(
1072 "%s: %s loses to %s due to Neighor IP comparison",
1073 pfx_buf, new_buf, exist_buf);
1074 return 0;
1075 }
1076
1077 if (ret == -1) {
1078 *reason = bgp_path_selection_neighbor_ip;
1079 if (debug)
1080 zlog_debug(
1081 "%s: %s wins over %s due to Neighor IP comparison",
1082 pfx_buf, new_buf, exist_buf);
1083 return 1;
1084 }
1085
1086 *reason = bgp_path_selection_default;
1087 if (debug)
1088 zlog_debug("%s: %s wins over %s due to nothing left to compare",
1089 pfx_buf, new_buf, exist_buf);
1090
1091 return 1;
1092 }
1093
1094 /* Compare two bgp route entity. Return -1 if new is preferred, 1 if exist
1095 * is preferred, or 0 if they are the same (usually will only occur if
1096 * multipath is enabled
1097 * This version is compatible with */
1098 int bgp_path_info_cmp_compatible(struct bgp *bgp, struct bgp_path_info *new,
1099 struct bgp_path_info *exist, char *pfx_buf,
1100 afi_t afi, safi_t safi,
1101 enum bgp_path_selection_reason *reason)
1102 {
1103 int paths_eq;
1104 int ret;
1105 ret = bgp_path_info_cmp(bgp, new, exist, &paths_eq, NULL, 0, pfx_buf,
1106 afi, safi, reason);
1107
1108 if (paths_eq)
1109 ret = 0;
1110 else {
1111 if (ret == 1)
1112 ret = -1;
1113 else
1114 ret = 1;
1115 }
1116 return ret;
1117 }
1118
1119 static enum filter_type bgp_input_filter(struct peer *peer, struct prefix *p,
1120 struct attr *attr, afi_t afi,
1121 safi_t safi)
1122 {
1123 struct bgp_filter *filter;
1124
1125 filter = &peer->filter[afi][safi];
1126
1127 #define FILTER_EXIST_WARN(F, f, filter) \
1128 if (BGP_DEBUG(update, UPDATE_IN) && !(F##_IN(filter))) \
1129 zlog_debug("%s: Could not find configured input %s-list %s!", \
1130 peer->host, #f, F##_IN_NAME(filter));
1131
1132 if (DISTRIBUTE_IN_NAME(filter)) {
1133 FILTER_EXIST_WARN(DISTRIBUTE, distribute, filter);
1134
1135 if (access_list_apply(DISTRIBUTE_IN(filter), p) == FILTER_DENY)
1136 return FILTER_DENY;
1137 }
1138
1139 if (PREFIX_LIST_IN_NAME(filter)) {
1140 FILTER_EXIST_WARN(PREFIX_LIST, prefix, filter);
1141
1142 if (prefix_list_apply(PREFIX_LIST_IN(filter), p) == PREFIX_DENY)
1143 return FILTER_DENY;
1144 }
1145
1146 if (FILTER_LIST_IN_NAME(filter)) {
1147 FILTER_EXIST_WARN(FILTER_LIST, as, filter);
1148
1149 if (as_list_apply(FILTER_LIST_IN(filter), attr->aspath)
1150 == AS_FILTER_DENY)
1151 return FILTER_DENY;
1152 }
1153
1154 return FILTER_PERMIT;
1155 #undef FILTER_EXIST_WARN
1156 }
1157
1158 static enum filter_type bgp_output_filter(struct peer *peer, struct prefix *p,
1159 struct attr *attr, afi_t afi,
1160 safi_t safi)
1161 {
1162 struct bgp_filter *filter;
1163
1164 filter = &peer->filter[afi][safi];
1165
1166 #define FILTER_EXIST_WARN(F, f, filter) \
1167 if (BGP_DEBUG(update, UPDATE_OUT) && !(F##_OUT(filter))) \
1168 zlog_debug("%s: Could not find configured output %s-list %s!", \
1169 peer->host, #f, F##_OUT_NAME(filter));
1170
1171 if (DISTRIBUTE_OUT_NAME(filter)) {
1172 FILTER_EXIST_WARN(DISTRIBUTE, distribute, filter);
1173
1174 if (access_list_apply(DISTRIBUTE_OUT(filter), p) == FILTER_DENY)
1175 return FILTER_DENY;
1176 }
1177
1178 if (PREFIX_LIST_OUT_NAME(filter)) {
1179 FILTER_EXIST_WARN(PREFIX_LIST, prefix, filter);
1180
1181 if (prefix_list_apply(PREFIX_LIST_OUT(filter), p)
1182 == PREFIX_DENY)
1183 return FILTER_DENY;
1184 }
1185
1186 if (FILTER_LIST_OUT_NAME(filter)) {
1187 FILTER_EXIST_WARN(FILTER_LIST, as, filter);
1188
1189 if (as_list_apply(FILTER_LIST_OUT(filter), attr->aspath)
1190 == AS_FILTER_DENY)
1191 return FILTER_DENY;
1192 }
1193
1194 return FILTER_PERMIT;
1195 #undef FILTER_EXIST_WARN
1196 }
1197
1198 /* If community attribute includes no_export then return 1. */
1199 static int bgp_community_filter(struct peer *peer, struct attr *attr)
1200 {
1201 if (attr->community) {
1202 /* NO_ADVERTISE check. */
1203 if (community_include(attr->community, COMMUNITY_NO_ADVERTISE))
1204 return 1;
1205
1206 /* NO_EXPORT check. */
1207 if (peer->sort == BGP_PEER_EBGP
1208 && community_include(attr->community, COMMUNITY_NO_EXPORT))
1209 return 1;
1210
1211 /* NO_EXPORT_SUBCONFED check. */
1212 if (peer->sort == BGP_PEER_EBGP
1213 || peer->sort == BGP_PEER_CONFED)
1214 if (community_include(attr->community,
1215 COMMUNITY_NO_EXPORT_SUBCONFED))
1216 return 1;
1217 }
1218 return 0;
1219 }
1220
1221 /* Route reflection loop check. */
1222 static int bgp_cluster_filter(struct peer *peer, struct attr *attr)
1223 {
1224 struct in_addr cluster_id;
1225
1226 if (attr->cluster) {
1227 if (peer->bgp->config & BGP_CONFIG_CLUSTER_ID)
1228 cluster_id = peer->bgp->cluster_id;
1229 else
1230 cluster_id = peer->bgp->router_id;
1231
1232 if (cluster_loop_check(attr->cluster, cluster_id))
1233 return 1;
1234 }
1235 return 0;
1236 }
1237
1238 static int bgp_input_modifier(struct peer *peer, struct prefix *p,
1239 struct attr *attr, afi_t afi, safi_t safi,
1240 const char *rmap_name)
1241 {
1242 struct bgp_filter *filter;
1243 struct bgp_path_info rmap_path;
1244 route_map_result_t ret;
1245 struct route_map *rmap = NULL;
1246
1247 filter = &peer->filter[afi][safi];
1248
1249 /* Apply default weight value. */
1250 if (peer->weight[afi][safi])
1251 attr->weight = peer->weight[afi][safi];
1252
1253 if (rmap_name) {
1254 rmap = route_map_lookup_by_name(rmap_name);
1255
1256 if (rmap == NULL)
1257 return RMAP_DENY;
1258 } else {
1259 if (ROUTE_MAP_IN_NAME(filter)) {
1260 rmap = ROUTE_MAP_IN(filter);
1261
1262 if (rmap == NULL)
1263 return RMAP_DENY;
1264 }
1265 }
1266
1267 /* Route map apply. */
1268 if (rmap) {
1269 memset(&rmap_path, 0, sizeof(struct bgp_path_info));
1270 /* Duplicate current value to new strucutre for modification. */
1271 rmap_path.peer = peer;
1272 rmap_path.attr = attr;
1273
1274 SET_FLAG(peer->rmap_type, PEER_RMAP_TYPE_IN);
1275
1276 /* Apply BGP route map to the attribute. */
1277 ret = route_map_apply(rmap, p, RMAP_BGP, &rmap_path);
1278
1279 peer->rmap_type = 0;
1280
1281 if (ret == RMAP_DENYMATCH)
1282 return RMAP_DENY;
1283 }
1284 return RMAP_PERMIT;
1285 }
1286
1287 static int bgp_output_modifier(struct peer *peer, struct prefix *p,
1288 struct attr *attr, afi_t afi, safi_t safi,
1289 const char *rmap_name)
1290 {
1291 struct bgp_path_info rmap_path;
1292 route_map_result_t ret;
1293 struct route_map *rmap = NULL;
1294 uint8_t rmap_type;
1295
1296 /*
1297 * So if we get to this point and have no rmap_name
1298 * we want to just show the output as it currently
1299 * exists.
1300 */
1301 if (!rmap_name)
1302 return RMAP_PERMIT;
1303
1304 /* Apply default weight value. */
1305 if (peer->weight[afi][safi])
1306 attr->weight = peer->weight[afi][safi];
1307
1308 rmap = route_map_lookup_by_name(rmap_name);
1309
1310 /*
1311 * If we have a route map name and we do not find
1312 * the routemap that means we have an implicit
1313 * deny.
1314 */
1315 if (rmap == NULL)
1316 return RMAP_DENY;
1317
1318 memset(&rmap_path, 0, sizeof(struct bgp_path_info));
1319 /* Route map apply. */
1320 /* Duplicate current value to new strucutre for modification. */
1321 rmap_path.peer = peer;
1322 rmap_path.attr = attr;
1323
1324 rmap_type = peer->rmap_type;
1325 SET_FLAG(peer->rmap_type, PEER_RMAP_TYPE_OUT);
1326
1327 /* Apply BGP route map to the attribute. */
1328 ret = route_map_apply(rmap, p, RMAP_BGP, &rmap_path);
1329
1330 peer->rmap_type = rmap_type;
1331
1332 if (ret == RMAP_DENYMATCH)
1333 /*
1334 * caller has multiple error paths with bgp_attr_flush()
1335 */
1336 return RMAP_DENY;
1337
1338 return RMAP_PERMIT;
1339 }
1340
1341 /* If this is an EBGP peer with remove-private-AS */
1342 static void bgp_peer_remove_private_as(struct bgp *bgp, afi_t afi, safi_t safi,
1343 struct peer *peer, struct attr *attr)
1344 {
1345 if (peer->sort == BGP_PEER_EBGP
1346 && (peer_af_flag_check(peer, afi, safi,
1347 PEER_FLAG_REMOVE_PRIVATE_AS_ALL_REPLACE)
1348 || peer_af_flag_check(peer, afi, safi,
1349 PEER_FLAG_REMOVE_PRIVATE_AS_REPLACE)
1350 || peer_af_flag_check(peer, afi, safi,
1351 PEER_FLAG_REMOVE_PRIVATE_AS_ALL)
1352 || peer_af_flag_check(peer, afi, safi,
1353 PEER_FLAG_REMOVE_PRIVATE_AS))) {
1354 // Take action on the entire aspath
1355 if (peer_af_flag_check(peer, afi, safi,
1356 PEER_FLAG_REMOVE_PRIVATE_AS_ALL_REPLACE)
1357 || peer_af_flag_check(peer, afi, safi,
1358 PEER_FLAG_REMOVE_PRIVATE_AS_ALL)) {
1359 if (peer_af_flag_check(
1360 peer, afi, safi,
1361 PEER_FLAG_REMOVE_PRIVATE_AS_ALL_REPLACE))
1362 attr->aspath = aspath_replace_private_asns(
1363 attr->aspath, bgp->as);
1364
1365 // The entire aspath consists of private ASNs so create
1366 // an empty aspath
1367 else if (aspath_private_as_check(attr->aspath))
1368 attr->aspath = aspath_empty_get();
1369
1370 // There are some public and some private ASNs, remove
1371 // the private ASNs
1372 else
1373 attr->aspath = aspath_remove_private_asns(
1374 attr->aspath);
1375 }
1376
1377 // 'all' was not specified so the entire aspath must be private
1378 // ASNs
1379 // for us to do anything
1380 else if (aspath_private_as_check(attr->aspath)) {
1381 if (peer_af_flag_check(
1382 peer, afi, safi,
1383 PEER_FLAG_REMOVE_PRIVATE_AS_REPLACE))
1384 attr->aspath = aspath_replace_private_asns(
1385 attr->aspath, bgp->as);
1386 else
1387 attr->aspath = aspath_empty_get();
1388 }
1389 }
1390 }
1391
1392 /* If this is an EBGP peer with as-override */
1393 static void bgp_peer_as_override(struct bgp *bgp, afi_t afi, safi_t safi,
1394 struct peer *peer, struct attr *attr)
1395 {
1396 if (peer->sort == BGP_PEER_EBGP
1397 && peer_af_flag_check(peer, afi, safi, PEER_FLAG_AS_OVERRIDE)) {
1398 if (aspath_single_asn_check(attr->aspath, peer->as))
1399 attr->aspath = aspath_replace_specific_asn(
1400 attr->aspath, peer->as, bgp->as);
1401 }
1402 }
1403
1404 void bgp_attr_add_gshut_community(struct attr *attr)
1405 {
1406 struct community *old;
1407 struct community *new;
1408 struct community *merge;
1409 struct community *gshut;
1410
1411 old = attr->community;
1412 gshut = community_str2com("graceful-shutdown");
1413
1414 assert(gshut);
1415
1416 if (old) {
1417 merge = community_merge(community_dup(old), gshut);
1418
1419 if (old->refcnt == 0)
1420 community_free(&old);
1421
1422 new = community_uniq_sort(merge);
1423 community_free(&merge);
1424 } else {
1425 new = community_dup(gshut);
1426 }
1427
1428 community_free(&gshut);
1429 attr->community = new;
1430 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_COMMUNITIES);
1431
1432 /* When we add the graceful-shutdown community we must also
1433 * lower the local-preference */
1434 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF);
1435 attr->local_pref = BGP_GSHUT_LOCAL_PREF;
1436 }
1437
1438
1439 static void subgroup_announce_reset_nhop(uint8_t family, struct attr *attr)
1440 {
1441 if (family == AF_INET) {
1442 attr->nexthop.s_addr = 0;
1443 attr->mp_nexthop_global_in.s_addr = 0;
1444 }
1445 if (family == AF_INET6)
1446 memset(&attr->mp_nexthop_global, 0, IPV6_MAX_BYTELEN);
1447 if (family == AF_EVPN)
1448 memset(&attr->mp_nexthop_global_in, 0, BGP_ATTR_NHLEN_IPV4);
1449 }
1450
1451 int subgroup_announce_check(struct bgp_node *rn, struct bgp_path_info *pi,
1452 struct update_subgroup *subgrp, struct prefix *p,
1453 struct attr *attr)
1454 {
1455 struct bgp_filter *filter;
1456 struct peer *from;
1457 struct peer *peer;
1458 struct peer *onlypeer;
1459 struct bgp *bgp;
1460 struct attr *piattr;
1461 char buf[PREFIX_STRLEN];
1462 int ret;
1463 int transparent;
1464 int reflect;
1465 afi_t afi;
1466 safi_t safi;
1467 int samepeer_safe = 0; /* for synthetic mplsvpns routes */
1468
1469 if (DISABLE_BGP_ANNOUNCE)
1470 return 0;
1471
1472 afi = SUBGRP_AFI(subgrp);
1473 safi = SUBGRP_SAFI(subgrp);
1474 peer = SUBGRP_PEER(subgrp);
1475 onlypeer = NULL;
1476 if (CHECK_FLAG(peer->flags, PEER_FLAG_LONESOUL))
1477 onlypeer = SUBGRP_PFIRST(subgrp)->peer;
1478
1479 from = pi->peer;
1480 filter = &peer->filter[afi][safi];
1481 bgp = SUBGRP_INST(subgrp);
1482 piattr = bgp_path_info_mpath_count(pi) ? bgp_path_info_mpath_attr(pi)
1483 : pi->attr;
1484
1485 #if ENABLE_BGP_VNC
1486 if (((afi == AFI_IP) || (afi == AFI_IP6)) && (safi == SAFI_MPLS_VPN)
1487 && ((pi->type == ZEBRA_ROUTE_BGP_DIRECT)
1488 || (pi->type == ZEBRA_ROUTE_BGP_DIRECT_EXT))) {
1489
1490 /*
1491 * direct and direct_ext type routes originate internally even
1492 * though they can have peer pointers that reference other
1493 * systems
1494 */
1495 prefix2str(p, buf, PREFIX_STRLEN);
1496 zlog_debug("%s: pfx %s bgp_direct->vpn route peer safe",
1497 __func__, buf);
1498 samepeer_safe = 1;
1499 }
1500 #endif
1501
1502 if (((afi == AFI_IP) || (afi == AFI_IP6))
1503 && ((safi == SAFI_MPLS_VPN) || (safi == SAFI_UNICAST))
1504 && (pi->type == ZEBRA_ROUTE_BGP)
1505 && (pi->sub_type == BGP_ROUTE_IMPORTED)) {
1506
1507 /* Applies to routes leaked vpn->vrf and vrf->vpn */
1508
1509 samepeer_safe = 1;
1510 }
1511
1512 /* With addpath we may be asked to TX all kinds of paths so make sure
1513 * pi is valid */
1514 if (!CHECK_FLAG(pi->flags, BGP_PATH_VALID)
1515 || CHECK_FLAG(pi->flags, BGP_PATH_HISTORY)
1516 || CHECK_FLAG(pi->flags, BGP_PATH_REMOVED)) {
1517 return 0;
1518 }
1519
1520 /* If this is not the bestpath then check to see if there is an enabled
1521 * addpath
1522 * feature that requires us to advertise it */
1523 if (!CHECK_FLAG(pi->flags, BGP_PATH_SELECTED)) {
1524 if (!bgp_addpath_tx_path(peer->addpath_type[afi][safi], pi)) {
1525 return 0;
1526 }
1527 }
1528
1529 /* Aggregate-address suppress check. */
1530 if (pi->extra && pi->extra->suppress)
1531 if (!UNSUPPRESS_MAP_NAME(filter)) {
1532 return 0;
1533 }
1534
1535 /*
1536 * If we are doing VRF 2 VRF leaking via the import
1537 * statement, we want to prevent the route going
1538 * off box as that the RT and RD created are localy
1539 * significant and globaly useless.
1540 */
1541 if (safi == SAFI_MPLS_VPN && pi->extra && pi->extra->num_labels
1542 && pi->extra->label[0] == BGP_PREVENT_VRF_2_VRF_LEAK)
1543 return 0;
1544
1545 /* If it's labeled safi, make sure the route has a valid label. */
1546 if (safi == SAFI_LABELED_UNICAST) {
1547 mpls_label_t label = bgp_adv_label(rn, pi, peer, afi, safi);
1548 if (!bgp_is_valid_label(&label)) {
1549 if (bgp_debug_update(NULL, p, subgrp->update_group, 0))
1550 zlog_debug("u%" PRIu64 ":s%" PRIu64
1551 " %s/%d is filtered - no label (%p)",
1552 subgrp->update_group->id, subgrp->id,
1553 inet_ntop(p->family, &p->u.prefix,
1554 buf, SU_ADDRSTRLEN),
1555 p->prefixlen, &label);
1556 return 0;
1557 }
1558 }
1559
1560 /* Do not send back route to sender. */
1561 if (onlypeer && from == onlypeer) {
1562 return 0;
1563 }
1564
1565 /* Do not send the default route in the BGP table if the neighbor is
1566 * configured for default-originate */
1567 if (CHECK_FLAG(peer->af_flags[afi][safi],
1568 PEER_FLAG_DEFAULT_ORIGINATE)) {
1569 if (p->family == AF_INET && p->u.prefix4.s_addr == INADDR_ANY)
1570 return 0;
1571 else if (p->family == AF_INET6 && p->prefixlen == 0)
1572 return 0;
1573 }
1574
1575 /* Transparency check. */
1576 if (CHECK_FLAG(peer->af_flags[afi][safi], PEER_FLAG_RSERVER_CLIENT)
1577 && CHECK_FLAG(from->af_flags[afi][safi], PEER_FLAG_RSERVER_CLIENT))
1578 transparent = 1;
1579 else
1580 transparent = 0;
1581
1582 /* If community is not disabled check the no-export and local. */
1583 if (!transparent && bgp_community_filter(peer, piattr)) {
1584 if (bgp_debug_update(NULL, p, subgrp->update_group, 0))
1585 zlog_debug(
1586 "subgrpannouncecheck: community filter check fail");
1587 return 0;
1588 }
1589
1590 /* If the attribute has originator-id and it is same as remote
1591 peer's id. */
1592 if (onlypeer && piattr->flag & ATTR_FLAG_BIT(BGP_ATTR_ORIGINATOR_ID)
1593 && (IPV4_ADDR_SAME(&onlypeer->remote_id, &piattr->originator_id))) {
1594 if (bgp_debug_update(NULL, p, subgrp->update_group, 0))
1595 zlog_debug(
1596 "%s [Update:SEND] %s originator-id is same as "
1597 "remote router-id",
1598 onlypeer->host,
1599 prefix2str(p, buf, sizeof(buf)));
1600 return 0;
1601 }
1602
1603 /* ORF prefix-list filter check */
1604 if (CHECK_FLAG(peer->af_cap[afi][safi], PEER_CAP_ORF_PREFIX_RM_ADV)
1605 && (CHECK_FLAG(peer->af_cap[afi][safi], PEER_CAP_ORF_PREFIX_SM_RCV)
1606 || CHECK_FLAG(peer->af_cap[afi][safi],
1607 PEER_CAP_ORF_PREFIX_SM_OLD_RCV)))
1608 if (peer->orf_plist[afi][safi]) {
1609 if (prefix_list_apply(peer->orf_plist[afi][safi], p)
1610 == PREFIX_DENY) {
1611 if (bgp_debug_update(NULL, p,
1612 subgrp->update_group, 0))
1613 zlog_debug(
1614 "%s [Update:SEND] %s is filtered via ORF",
1615 peer->host,
1616 prefix2str(p, buf,
1617 sizeof(buf)));
1618 return 0;
1619 }
1620 }
1621
1622 /* Output filter check. */
1623 if (bgp_output_filter(peer, p, piattr, afi, safi) == FILTER_DENY) {
1624 if (bgp_debug_update(NULL, p, subgrp->update_group, 0))
1625 zlog_debug("%s [Update:SEND] %s is filtered",
1626 peer->host, prefix2str(p, buf, sizeof(buf)));
1627 return 0;
1628 }
1629
1630 #ifdef BGP_SEND_ASPATH_CHECK
1631 /* AS path loop check. */
1632 if (onlypeer && aspath_loop_check(piattr->aspath, onlypeer->as)) {
1633 if (bgp_debug_update(NULL, p, subgrp->update_group, 0))
1634 zlog_debug(
1635 "%s [Update:SEND] suppress announcement to peer AS %u "
1636 "that is part of AS path.",
1637 onlypeer->host, onlypeer->as);
1638 return 0;
1639 }
1640 #endif /* BGP_SEND_ASPATH_CHECK */
1641
1642 /* If we're a CONFED we need to loop check the CONFED ID too */
1643 if (CHECK_FLAG(bgp->config, BGP_CONFIG_CONFEDERATION)) {
1644 if (aspath_loop_check(piattr->aspath, bgp->confed_id)) {
1645 if (bgp_debug_update(NULL, p, subgrp->update_group, 0))
1646 zlog_debug(
1647 "%s [Update:SEND] suppress announcement to peer AS %u"
1648 " is AS path.",
1649 peer->host, bgp->confed_id);
1650 return 0;
1651 }
1652 }
1653
1654 /* Route-Reflect check. */
1655 if (from->sort == BGP_PEER_IBGP && peer->sort == BGP_PEER_IBGP)
1656 reflect = 1;
1657 else
1658 reflect = 0;
1659
1660 /* IBGP reflection check. */
1661 if (reflect && !samepeer_safe) {
1662 /* A route from a Client peer. */
1663 if (CHECK_FLAG(from->af_flags[afi][safi],
1664 PEER_FLAG_REFLECTOR_CLIENT)) {
1665 /* Reflect to all the Non-Client peers and also to the
1666 Client peers other than the originator. Originator
1667 check
1668 is already done. So there is noting to do. */
1669 /* no bgp client-to-client reflection check. */
1670 if (bgp_flag_check(bgp, BGP_FLAG_NO_CLIENT_TO_CLIENT))
1671 if (CHECK_FLAG(peer->af_flags[afi][safi],
1672 PEER_FLAG_REFLECTOR_CLIENT))
1673 return 0;
1674 } else {
1675 /* A route from a Non-client peer. Reflect to all other
1676 clients. */
1677 if (!CHECK_FLAG(peer->af_flags[afi][safi],
1678 PEER_FLAG_REFLECTOR_CLIENT))
1679 return 0;
1680 }
1681 }
1682
1683 /* For modify attribute, copy it to temporary structure. */
1684 bgp_attr_dup(attr, piattr);
1685
1686 /* If local-preference is not set. */
1687 if ((peer->sort == BGP_PEER_IBGP || peer->sort == BGP_PEER_CONFED)
1688 && (!(attr->flag & ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF)))) {
1689 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF);
1690 attr->local_pref = bgp->default_local_pref;
1691 }
1692
1693 /* If originator-id is not set and the route is to be reflected,
1694 set the originator id */
1695 if (reflect
1696 && (!(attr->flag & ATTR_FLAG_BIT(BGP_ATTR_ORIGINATOR_ID)))) {
1697 IPV4_ADDR_COPY(&(attr->originator_id), &(from->remote_id));
1698 SET_FLAG(attr->flag, BGP_ATTR_ORIGINATOR_ID);
1699 }
1700
1701 /* Remove MED if its an EBGP peer - will get overwritten by route-maps
1702 */
1703 if (peer->sort == BGP_PEER_EBGP
1704 && attr->flag & ATTR_FLAG_BIT(BGP_ATTR_MULTI_EXIT_DISC)) {
1705 if (from != bgp->peer_self && !transparent
1706 && !CHECK_FLAG(peer->af_flags[afi][safi],
1707 PEER_FLAG_MED_UNCHANGED))
1708 attr->flag &=
1709 ~(ATTR_FLAG_BIT(BGP_ATTR_MULTI_EXIT_DISC));
1710 }
1711
1712 /* Since the nexthop attribute can vary per peer, it is not explicitly
1713 * set
1714 * in announce check, only certain flags and length (or number of
1715 * nexthops
1716 * -- for IPv6/MP_REACH) are set here in order to guide the update
1717 * formation
1718 * code in setting the nexthop(s) on a per peer basis in
1719 * reformat_peer().
1720 * Typically, the source nexthop in the attribute is preserved but in
1721 * the
1722 * scenarios where we know it will always be overwritten, we reset the
1723 * nexthop to "0" in an attempt to achieve better Update packing. An
1724 * example of this is when a prefix from each of 2 IBGP peers needs to
1725 * be
1726 * announced to an EBGP peer (and they have the same attributes barring
1727 * their nexthop).
1728 */
1729 if (reflect)
1730 SET_FLAG(attr->rmap_change_flags, BATTR_REFLECTED);
1731
1732 #define NEXTHOP_IS_V6 \
1733 ((safi != SAFI_ENCAP && safi != SAFI_MPLS_VPN \
1734 && (p->family == AF_INET6 || peer_cap_enhe(peer, afi, safi))) \
1735 || ((safi == SAFI_ENCAP || safi == SAFI_MPLS_VPN) \
1736 && attr->mp_nexthop_len >= IPV6_MAX_BYTELEN))
1737
1738 /* IPv6/MP starts with 1 nexthop. The link-local address is passed only
1739 * if
1740 * the peer (group) is configured to receive link-local nexthop
1741 * unchanged
1742 * and it is available in the prefix OR we're not reflecting the route
1743 * and
1744 * the peer (group) to whom we're going to announce is on a shared
1745 * network
1746 * and this is either a self-originated route or the peer is EBGP.
1747 */
1748 if (NEXTHOP_IS_V6) {
1749 attr->mp_nexthop_len = BGP_ATTR_NHLEN_IPV6_GLOBAL;
1750 if ((CHECK_FLAG(peer->af_flags[afi][safi],
1751 PEER_FLAG_NEXTHOP_LOCAL_UNCHANGED)
1752 && IN6_IS_ADDR_LINKLOCAL(&attr->mp_nexthop_local))
1753 || (!reflect && peer->shared_network
1754 && (from == bgp->peer_self
1755 || peer->sort == BGP_PEER_EBGP))) {
1756 attr->mp_nexthop_len =
1757 BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL;
1758 }
1759
1760 /* Clear off link-local nexthop in source, whenever it is not
1761 * needed to
1762 * ensure more prefixes share the same attribute for
1763 * announcement.
1764 */
1765 if (!(CHECK_FLAG(peer->af_flags[afi][safi],
1766 PEER_FLAG_NEXTHOP_LOCAL_UNCHANGED)))
1767 memset(&attr->mp_nexthop_local, 0, IPV6_MAX_BYTELEN);
1768 }
1769
1770 bgp_peer_remove_private_as(bgp, afi, safi, peer, attr);
1771 bgp_peer_as_override(bgp, afi, safi, peer, attr);
1772
1773 /* Route map & unsuppress-map apply. */
1774 if (ROUTE_MAP_OUT_NAME(filter) || (pi->extra && pi->extra->suppress)) {
1775 struct bgp_path_info rmap_path;
1776 struct bgp_path_info_extra dummy_rmap_path_extra;
1777 struct attr dummy_attr;
1778
1779 memset(&rmap_path, 0, sizeof(struct bgp_path_info));
1780 rmap_path.peer = peer;
1781 rmap_path.attr = attr;
1782
1783 if (pi->extra) {
1784 memcpy(&dummy_rmap_path_extra, pi->extra,
1785 sizeof(struct bgp_path_info_extra));
1786 rmap_path.extra = &dummy_rmap_path_extra;
1787 }
1788
1789 /* don't confuse inbound and outbound setting */
1790 RESET_FLAG(attr->rmap_change_flags);
1791
1792 /*
1793 * The route reflector is not allowed to modify the attributes
1794 * of the reflected IBGP routes unless explicitly allowed.
1795 */
1796 if ((from->sort == BGP_PEER_IBGP && peer->sort == BGP_PEER_IBGP)
1797 && !bgp_flag_check(bgp,
1798 BGP_FLAG_RR_ALLOW_OUTBOUND_POLICY)) {
1799 bgp_attr_dup(&dummy_attr, attr);
1800 rmap_path.attr = &dummy_attr;
1801 }
1802
1803 SET_FLAG(peer->rmap_type, PEER_RMAP_TYPE_OUT);
1804
1805 if (pi->extra && pi->extra->suppress)
1806 ret = route_map_apply(UNSUPPRESS_MAP(filter), p,
1807 RMAP_BGP, &rmap_path);
1808 else
1809 ret = route_map_apply(ROUTE_MAP_OUT(filter), p,
1810 RMAP_BGP, &rmap_path);
1811
1812 peer->rmap_type = 0;
1813
1814 if (ret == RMAP_DENYMATCH) {
1815 if (bgp_debug_update(NULL, p, subgrp->update_group, 0))
1816 zlog_debug("%s [Update:SEND] %s is filtered by route-map",
1817 peer->host, prefix2str(p, buf, sizeof(buf)));
1818
1819 bgp_attr_flush(attr);
1820 return 0;
1821 }
1822 }
1823
1824 /* RFC 8212 to prevent route leaks.
1825 * This specification intends to improve this situation by requiring the
1826 * explicit configuration of both BGP Import and Export Policies for any
1827 * External BGP (EBGP) session such as customers, peers, or
1828 * confederation boundaries for all enabled address families. Through
1829 * codification of the aforementioned requirement, operators will
1830 * benefit from consistent behavior across different BGP
1831 * implementations.
1832 */
1833 if (peer->bgp->ebgp_requires_policy
1834 == DEFAULT_EBGP_POLICY_ENABLED)
1835 if (!bgp_outbound_policy_exists(peer, filter))
1836 return 0;
1837
1838 if (bgp_flag_check(bgp, BGP_FLAG_GRACEFUL_SHUTDOWN)) {
1839 if (peer->sort == BGP_PEER_IBGP
1840 || peer->sort == BGP_PEER_CONFED) {
1841 attr->flag |= ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF);
1842 attr->local_pref = BGP_GSHUT_LOCAL_PREF;
1843 } else {
1844 bgp_attr_add_gshut_community(attr);
1845 }
1846 }
1847
1848 /* After route-map has been applied, we check to see if the nexthop to
1849 * be carried in the attribute (that is used for the announcement) can
1850 * be cleared off or not. We do this in all cases where we would be
1851 * setting the nexthop to "ourselves". For IPv6, we only need to
1852 * consider
1853 * the global nexthop here; the link-local nexthop would have been
1854 * cleared
1855 * already, and if not, it is required by the update formation code.
1856 * Also see earlier comments in this function.
1857 */
1858 /*
1859 * If route-map has performed some operation on the nexthop or the peer
1860 * configuration says to pass it unchanged, we cannot reset the nexthop
1861 * here, so only attempt to do it if these aren't true. Note that the
1862 * route-map handler itself might have cleared the nexthop, if for
1863 * example,
1864 * it is configured as 'peer-address'.
1865 */
1866 if (!bgp_rmap_nhop_changed(attr->rmap_change_flags,
1867 piattr->rmap_change_flags)
1868 && !transparent
1869 && !CHECK_FLAG(peer->af_flags[afi][safi],
1870 PEER_FLAG_NEXTHOP_UNCHANGED)) {
1871 /* We can reset the nexthop, if setting (or forcing) it to
1872 * 'self' */
1873 if (CHECK_FLAG(peer->af_flags[afi][safi],
1874 PEER_FLAG_NEXTHOP_SELF)
1875 || CHECK_FLAG(peer->af_flags[afi][safi],
1876 PEER_FLAG_FORCE_NEXTHOP_SELF)) {
1877 if (!reflect
1878 || CHECK_FLAG(peer->af_flags[afi][safi],
1879 PEER_FLAG_FORCE_NEXTHOP_SELF))
1880 subgroup_announce_reset_nhop(
1881 (peer_cap_enhe(peer, afi, safi)
1882 ? AF_INET6
1883 : p->family),
1884 attr);
1885 } else if (peer->sort == BGP_PEER_EBGP) {
1886 /* Can also reset the nexthop if announcing to EBGP, but
1887 * only if
1888 * no peer in the subgroup is on a shared subnet.
1889 * Note: 3rd party nexthop currently implemented for
1890 * IPv4 only.
1891 */
1892 if ((p->family == AF_INET) &&
1893 (!bgp_subgrp_multiaccess_check_v4(
1894 piattr->nexthop,
1895 subgrp)))
1896 subgroup_announce_reset_nhop(
1897 (peer_cap_enhe(peer, afi, safi)
1898 ? AF_INET6
1899 : p->family),
1900 attr);
1901
1902 if ((p->family == AF_INET6) &&
1903 (!bgp_subgrp_multiaccess_check_v6(
1904 piattr->mp_nexthop_global,
1905 subgrp)))
1906 subgroup_announce_reset_nhop(
1907 (peer_cap_enhe(peer, afi, safi)
1908 ? AF_INET6
1909 : p->family),
1910 attr);
1911
1912
1913
1914 } else if (CHECK_FLAG(pi->flags, BGP_PATH_ANNC_NH_SELF)) {
1915 /*
1916 * This flag is used for leaked vpn-vrf routes
1917 */
1918 int family = p->family;
1919
1920 if (peer_cap_enhe(peer, afi, safi))
1921 family = AF_INET6;
1922
1923 if (bgp_debug_update(NULL, p, subgrp->update_group, 0))
1924 zlog_debug(
1925 "%s: BGP_PATH_ANNC_NH_SELF, family=%s",
1926 __func__, family2str(family));
1927 subgroup_announce_reset_nhop(family, attr);
1928 }
1929
1930 /* If IPv6/MP and nexthop does not have any override and happens
1931 * to
1932 * be a link-local address, reset it so that we don't pass along
1933 * the
1934 * source's link-local IPv6 address to recipients who may not be
1935 * on
1936 * the same interface.
1937 */
1938 if (p->family == AF_INET6 || peer_cap_enhe(peer, afi, safi)) {
1939 if (IN6_IS_ADDR_LINKLOCAL(&attr->mp_nexthop_global))
1940 subgroup_announce_reset_nhop(AF_INET6, attr);
1941 }
1942 }
1943
1944 return 1;
1945 }
1946
1947 void bgp_best_selection(struct bgp *bgp, struct bgp_node *rn,
1948 struct bgp_maxpaths_cfg *mpath_cfg,
1949 struct bgp_path_info_pair *result, afi_t afi,
1950 safi_t safi)
1951 {
1952 struct bgp_path_info *new_select;
1953 struct bgp_path_info *old_select;
1954 struct bgp_path_info *pi;
1955 struct bgp_path_info *pi1;
1956 struct bgp_path_info *pi2;
1957 struct bgp_path_info *nextpi = NULL;
1958 int paths_eq, do_mpath, debug;
1959 struct list mp_list;
1960 char pfx_buf[PREFIX2STR_BUFFER];
1961 char path_buf[PATH_ADDPATH_STR_BUFFER];
1962
1963 bgp_mp_list_init(&mp_list);
1964 do_mpath =
1965 (mpath_cfg->maxpaths_ebgp > 1 || mpath_cfg->maxpaths_ibgp > 1);
1966
1967 debug = bgp_debug_bestpath(&rn->p);
1968
1969 if (debug)
1970 prefix2str(&rn->p, pfx_buf, sizeof(pfx_buf));
1971
1972 /* bgp deterministic-med */
1973 new_select = NULL;
1974 if (bgp_flag_check(bgp, BGP_FLAG_DETERMINISTIC_MED)) {
1975
1976 /* Clear BGP_PATH_DMED_SELECTED for all paths */
1977 for (pi1 = bgp_node_get_bgp_path_info(rn); pi1;
1978 pi1 = pi1->next)
1979 bgp_path_info_unset_flag(rn, pi1,
1980 BGP_PATH_DMED_SELECTED);
1981
1982 for (pi1 = bgp_node_get_bgp_path_info(rn); pi1;
1983 pi1 = pi1->next) {
1984 if (CHECK_FLAG(pi1->flags, BGP_PATH_DMED_CHECK))
1985 continue;
1986 if (BGP_PATH_HOLDDOWN(pi1))
1987 continue;
1988 if (pi1->peer != bgp->peer_self)
1989 if (pi1->peer->status != Established)
1990 continue;
1991
1992 new_select = pi1;
1993 if (pi1->next) {
1994 for (pi2 = pi1->next; pi2; pi2 = pi2->next) {
1995 if (CHECK_FLAG(pi2->flags,
1996 BGP_PATH_DMED_CHECK))
1997 continue;
1998 if (BGP_PATH_HOLDDOWN(pi2))
1999 continue;
2000 if (pi2->peer != bgp->peer_self
2001 && !CHECK_FLAG(
2002 pi2->peer->sflags,
2003 PEER_STATUS_NSF_WAIT))
2004 if (pi2->peer->status
2005 != Established)
2006 continue;
2007
2008 if (!aspath_cmp_left(pi1->attr->aspath,
2009 pi2->attr->aspath)
2010 && !aspath_cmp_left_confed(
2011 pi1->attr->aspath,
2012 pi2->attr->aspath))
2013 continue;
2014
2015 if (bgp_path_info_cmp(
2016 bgp, pi2, new_select,
2017 &paths_eq, mpath_cfg, debug,
2018 pfx_buf, afi, safi,
2019 &rn->reason)) {
2020 bgp_path_info_unset_flag(
2021 rn, new_select,
2022 BGP_PATH_DMED_SELECTED);
2023 new_select = pi2;
2024 }
2025
2026 bgp_path_info_set_flag(
2027 rn, pi2, BGP_PATH_DMED_CHECK);
2028 }
2029 }
2030 bgp_path_info_set_flag(rn, new_select,
2031 BGP_PATH_DMED_CHECK);
2032 bgp_path_info_set_flag(rn, new_select,
2033 BGP_PATH_DMED_SELECTED);
2034
2035 if (debug) {
2036 bgp_path_info_path_with_addpath_rx_str(
2037 new_select, path_buf);
2038 zlog_debug("%s: %s is the bestpath from AS %u",
2039 pfx_buf, path_buf,
2040 aspath_get_first_as(
2041 new_select->attr->aspath));
2042 }
2043 }
2044 }
2045
2046 /* Check old selected route and new selected route. */
2047 old_select = NULL;
2048 new_select = NULL;
2049 for (pi = bgp_node_get_bgp_path_info(rn);
2050 (pi != NULL) && (nextpi = pi->next, 1); pi = nextpi) {
2051 if (CHECK_FLAG(pi->flags, BGP_PATH_SELECTED))
2052 old_select = pi;
2053
2054 if (BGP_PATH_HOLDDOWN(pi)) {
2055 /* reap REMOVED routes, if needs be
2056 * selected route must stay for a while longer though
2057 */
2058 if (CHECK_FLAG(pi->flags, BGP_PATH_REMOVED)
2059 && (pi != old_select))
2060 bgp_path_info_reap(rn, pi);
2061
2062 if (debug)
2063 zlog_debug("%s: pi %p in holddown", __func__,
2064 pi);
2065
2066 continue;
2067 }
2068
2069 if (pi->peer && pi->peer != bgp->peer_self
2070 && !CHECK_FLAG(pi->peer->sflags, PEER_STATUS_NSF_WAIT))
2071 if (pi->peer->status != Established) {
2072
2073 if (debug)
2074 zlog_debug(
2075 "%s: pi %p non self peer %s not estab state",
2076 __func__, pi, pi->peer->host);
2077
2078 continue;
2079 }
2080
2081 if (bgp_flag_check(bgp, BGP_FLAG_DETERMINISTIC_MED)
2082 && (!CHECK_FLAG(pi->flags, BGP_PATH_DMED_SELECTED))) {
2083 bgp_path_info_unset_flag(rn, pi, BGP_PATH_DMED_CHECK);
2084 if (debug)
2085 zlog_debug("%s: pi %p dmed", __func__, pi);
2086 continue;
2087 }
2088
2089 bgp_path_info_unset_flag(rn, pi, BGP_PATH_DMED_CHECK);
2090
2091 if (bgp_path_info_cmp(bgp, pi, new_select, &paths_eq, mpath_cfg,
2092 debug, pfx_buf, afi, safi, &rn->reason)) {
2093 new_select = pi;
2094 }
2095 }
2096
2097 /* Now that we know which path is the bestpath see if any of the other
2098 * paths
2099 * qualify as multipaths
2100 */
2101 if (debug) {
2102 if (new_select)
2103 bgp_path_info_path_with_addpath_rx_str(new_select,
2104 path_buf);
2105 else
2106 sprintf(path_buf, "NONE");
2107 zlog_debug(
2108 "%s: After path selection, newbest is %s oldbest was %s",
2109 pfx_buf, path_buf,
2110 old_select ? old_select->peer->host : "NONE");
2111 }
2112
2113 if (do_mpath && new_select) {
2114 for (pi = bgp_node_get_bgp_path_info(rn);
2115 (pi != NULL) && (nextpi = pi->next, 1); pi = nextpi) {
2116
2117 if (debug)
2118 bgp_path_info_path_with_addpath_rx_str(
2119 pi, path_buf);
2120
2121 if (pi == new_select) {
2122 if (debug)
2123 zlog_debug(
2124 "%s: %s is the bestpath, add to the multipath list",
2125 pfx_buf, path_buf);
2126 bgp_mp_list_add(&mp_list, pi);
2127 continue;
2128 }
2129
2130 if (BGP_PATH_HOLDDOWN(pi))
2131 continue;
2132
2133 if (pi->peer && pi->peer != bgp->peer_self
2134 && !CHECK_FLAG(pi->peer->sflags,
2135 PEER_STATUS_NSF_WAIT))
2136 if (pi->peer->status != Established)
2137 continue;
2138
2139 if (!bgp_path_info_nexthop_cmp(pi, new_select)) {
2140 if (debug)
2141 zlog_debug(
2142 "%s: %s has the same nexthop as the bestpath, skip it",
2143 pfx_buf, path_buf);
2144 continue;
2145 }
2146
2147 bgp_path_info_cmp(bgp, pi, new_select, &paths_eq,
2148 mpath_cfg, debug, pfx_buf, afi, safi,
2149 &rn->reason);
2150
2151 if (paths_eq) {
2152 if (debug)
2153 zlog_debug(
2154 "%s: %s is equivalent to the bestpath, add to the multipath list",
2155 pfx_buf, path_buf);
2156 bgp_mp_list_add(&mp_list, pi);
2157 }
2158 }
2159 }
2160
2161 bgp_path_info_mpath_update(rn, new_select, old_select, &mp_list,
2162 mpath_cfg);
2163 bgp_path_info_mpath_aggregate_update(new_select, old_select);
2164 bgp_mp_list_clear(&mp_list);
2165
2166 bgp_addpath_update_ids(bgp, rn, afi, safi);
2167
2168 result->old = old_select;
2169 result->new = new_select;
2170
2171 return;
2172 }
2173
2174 /*
2175 * A new route/change in bestpath of an existing route. Evaluate the path
2176 * for advertisement to the subgroup.
2177 */
2178 int subgroup_process_announce_selected(struct update_subgroup *subgrp,
2179 struct bgp_path_info *selected,
2180 struct bgp_node *rn,
2181 uint32_t addpath_tx_id)
2182 {
2183 struct prefix *p;
2184 struct peer *onlypeer;
2185 struct attr attr;
2186 afi_t afi;
2187 safi_t safi;
2188
2189 p = &rn->p;
2190 afi = SUBGRP_AFI(subgrp);
2191 safi = SUBGRP_SAFI(subgrp);
2192 onlypeer = ((SUBGRP_PCOUNT(subgrp) == 1) ? (SUBGRP_PFIRST(subgrp))->peer
2193 : NULL);
2194
2195 if (BGP_DEBUG(update, UPDATE_OUT)) {
2196 char buf_prefix[PREFIX_STRLEN];
2197 prefix2str(p, buf_prefix, sizeof(buf_prefix));
2198 zlog_debug("%s: p=%s, selected=%p", __func__, buf_prefix,
2199 selected);
2200 }
2201
2202 /* First update is deferred until ORF or ROUTE-REFRESH is received */
2203 if (onlypeer && CHECK_FLAG(onlypeer->af_sflags[afi][safi],
2204 PEER_STATUS_ORF_WAIT_REFRESH))
2205 return 0;
2206
2207 memset(&attr, 0, sizeof(struct attr));
2208 /* It's initialized in bgp_announce_check() */
2209
2210 /* Announcement to the subgroup. If the route is filtered withdraw it.
2211 */
2212 if (selected) {
2213 if (subgroup_announce_check(rn, selected, subgrp, p, &attr))
2214 bgp_adj_out_set_subgroup(rn, subgrp, &attr, selected);
2215 else
2216 bgp_adj_out_unset_subgroup(rn, subgrp, 1,
2217 addpath_tx_id);
2218 }
2219
2220 /* If selected is NULL we must withdraw the path using addpath_tx_id */
2221 else {
2222 bgp_adj_out_unset_subgroup(rn, subgrp, 1, addpath_tx_id);
2223 }
2224
2225 return 0;
2226 }
2227
2228 /*
2229 * Clear IGP changed flag and attribute changed flag for a route (all paths).
2230 * This is called at the end of route processing.
2231 */
2232 void bgp_zebra_clear_route_change_flags(struct bgp_node *rn)
2233 {
2234 struct bgp_path_info *pi;
2235
2236 for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = pi->next) {
2237 if (BGP_PATH_HOLDDOWN(pi))
2238 continue;
2239 UNSET_FLAG(pi->flags, BGP_PATH_IGP_CHANGED);
2240 UNSET_FLAG(pi->flags, BGP_PATH_ATTR_CHANGED);
2241 }
2242 }
2243
2244 /*
2245 * Has the route changed from the RIB's perspective? This is invoked only
2246 * if the route selection returns the same best route as earlier - to
2247 * determine if we need to update zebra or not.
2248 */
2249 int bgp_zebra_has_route_changed(struct bgp_node *rn,
2250 struct bgp_path_info *selected)
2251 {
2252 struct bgp_path_info *mpinfo;
2253
2254 /* If this is multipath, check all selected paths for any nexthop
2255 * change or attribute change. Some attribute changes (e.g., community)
2256 * aren't of relevance to the RIB, but we'll update zebra to ensure
2257 * we handle the case of BGP nexthop change. This is the behavior
2258 * when the best path has an attribute change anyway.
2259 */
2260 if (CHECK_FLAG(selected->flags, BGP_PATH_IGP_CHANGED)
2261 || CHECK_FLAG(selected->flags, BGP_PATH_MULTIPATH_CHG))
2262 return 1;
2263
2264 /*
2265 * If this is multipath, check all selected paths for any nexthop change
2266 */
2267 for (mpinfo = bgp_path_info_mpath_first(selected); mpinfo;
2268 mpinfo = bgp_path_info_mpath_next(mpinfo)) {
2269 if (CHECK_FLAG(mpinfo->flags, BGP_PATH_IGP_CHANGED)
2270 || CHECK_FLAG(mpinfo->flags, BGP_PATH_ATTR_CHANGED))
2271 return 1;
2272 }
2273
2274 /* Nothing has changed from the RIB's perspective. */
2275 return 0;
2276 }
2277
2278 struct bgp_process_queue {
2279 struct bgp *bgp;
2280 STAILQ_HEAD(, bgp_node) pqueue;
2281 #define BGP_PROCESS_QUEUE_EOIU_MARKER (1 << 0)
2282 unsigned int flags;
2283 unsigned int queued;
2284 };
2285
2286 /*
2287 * old_select = The old best path
2288 * new_select = the new best path
2289 *
2290 * if (!old_select && new_select)
2291 * We are sending new information on.
2292 *
2293 * if (old_select && new_select) {
2294 * if (new_select != old_select)
2295 * We have a new best path send a change
2296 * else
2297 * We've received a update with new attributes that needs
2298 * to be passed on.
2299 * }
2300 *
2301 * if (old_select && !new_select)
2302 * We have no eligible route that we can announce or the rn
2303 * is being removed.
2304 */
2305 static void bgp_process_main_one(struct bgp *bgp, struct bgp_node *rn,
2306 afi_t afi, safi_t safi)
2307 {
2308 struct bgp_path_info *new_select;
2309 struct bgp_path_info *old_select;
2310 struct bgp_path_info_pair old_and_new;
2311 char pfx_buf[PREFIX2STR_BUFFER];
2312 int debug = 0;
2313
2314 /* Is it end of initial update? (after startup) */
2315 if (!rn) {
2316 quagga_timestamp(3, bgp->update_delay_zebra_resume_time,
2317 sizeof(bgp->update_delay_zebra_resume_time));
2318
2319 bgp->main_zebra_update_hold = 0;
2320 FOREACH_AFI_SAFI (afi, safi) {
2321 if (bgp_fibupd_safi(safi))
2322 bgp_zebra_announce_table(bgp, afi, safi);
2323 }
2324 bgp->main_peers_update_hold = 0;
2325
2326 bgp_start_routeadv(bgp);
2327 return;
2328 }
2329
2330 struct prefix *p = &rn->p;
2331
2332 debug = bgp_debug_bestpath(&rn->p);
2333 if (debug) {
2334 prefix2str(&rn->p, pfx_buf, sizeof(pfx_buf));
2335 zlog_debug("%s: p=%s afi=%s, safi=%s start", __func__, pfx_buf,
2336 afi2str(afi), safi2str(safi));
2337 }
2338
2339 /* Best path selection. */
2340 bgp_best_selection(bgp, rn, &bgp->maxpaths[afi][safi], &old_and_new,
2341 afi, safi);
2342 old_select = old_and_new.old;
2343 new_select = old_and_new.new;
2344
2345 /* Do we need to allocate or free labels?
2346 * Right now, since we only deal with per-prefix labels, it is not
2347 * necessary to do this upon changes to best path. Exceptions:
2348 * - label index has changed -> recalculate resulting label
2349 * - path_info sub_type changed -> switch to/from implicit-null
2350 * - no valid label (due to removed static label binding) -> get new one
2351 */
2352 if (bgp->allocate_mpls_labels[afi][safi]) {
2353 if (new_select) {
2354 if (!old_select
2355 || bgp_label_index_differs(new_select, old_select)
2356 || new_select->sub_type != old_select->sub_type
2357 || !bgp_is_valid_label(&rn->local_label)) {
2358 /* Enforced penultimate hop popping:
2359 * implicit-null for local routes, aggregate
2360 * and redistributed routes
2361 */
2362 if (new_select->sub_type == BGP_ROUTE_STATIC
2363 || new_select->sub_type
2364 == BGP_ROUTE_AGGREGATE
2365 || new_select->sub_type
2366 == BGP_ROUTE_REDISTRIBUTE) {
2367 if (CHECK_FLAG(
2368 rn->flags,
2369 BGP_NODE_REGISTERED_FOR_LABEL))
2370 bgp_unregister_for_label(rn);
2371 label_ntop(MPLS_LABEL_IMPLICIT_NULL, 1,
2372 &rn->local_label);
2373 bgp_set_valid_label(&rn->local_label);
2374 } else
2375 bgp_register_for_label(rn, new_select);
2376 }
2377 } else if (CHECK_FLAG(rn->flags,
2378 BGP_NODE_REGISTERED_FOR_LABEL)) {
2379 bgp_unregister_for_label(rn);
2380 }
2381 } else if (CHECK_FLAG(rn->flags, BGP_NODE_REGISTERED_FOR_LABEL)) {
2382 bgp_unregister_for_label(rn);
2383 }
2384
2385 if (debug) {
2386 prefix2str(&rn->p, pfx_buf, sizeof(pfx_buf));
2387 zlog_debug(
2388 "%s: p=%s afi=%s, safi=%s, old_select=%p, new_select=%p",
2389 __func__, pfx_buf, afi2str(afi), safi2str(safi),
2390 old_select, new_select);
2391 }
2392
2393 /* If best route remains the same and this is not due to user-initiated
2394 * clear, see exactly what needs to be done.
2395 */
2396 if (old_select && old_select == new_select
2397 && !CHECK_FLAG(rn->flags, BGP_NODE_USER_CLEAR)
2398 && !CHECK_FLAG(old_select->flags, BGP_PATH_ATTR_CHANGED)
2399 && !bgp_addpath_is_addpath_used(&bgp->tx_addpath, afi, safi)) {
2400 if (bgp_zebra_has_route_changed(rn, old_select)) {
2401 #if ENABLE_BGP_VNC
2402 vnc_import_bgp_add_route(bgp, p, old_select);
2403 vnc_import_bgp_exterior_add_route(bgp, p, old_select);
2404 #endif
2405 if (bgp_fibupd_safi(safi)
2406 && !bgp_option_check(BGP_OPT_NO_FIB)) {
2407
2408 if (new_select->type == ZEBRA_ROUTE_BGP
2409 && (new_select->sub_type == BGP_ROUTE_NORMAL
2410 || new_select->sub_type
2411 == BGP_ROUTE_IMPORTED))
2412
2413 bgp_zebra_announce(rn, p, old_select,
2414 bgp, afi, safi);
2415 }
2416 }
2417 UNSET_FLAG(old_select->flags, BGP_PATH_MULTIPATH_CHG);
2418 bgp_zebra_clear_route_change_flags(rn);
2419
2420 /* If there is a change of interest to peers, reannounce the
2421 * route. */
2422 if (CHECK_FLAG(old_select->flags, BGP_PATH_ATTR_CHANGED)
2423 || CHECK_FLAG(rn->flags, BGP_NODE_LABEL_CHANGED)) {
2424 group_announce_route(bgp, afi, safi, rn, new_select);
2425
2426 /* unicast routes must also be annouced to
2427 * labeled-unicast update-groups */
2428 if (safi == SAFI_UNICAST)
2429 group_announce_route(bgp, afi,
2430 SAFI_LABELED_UNICAST, rn,
2431 new_select);
2432
2433 UNSET_FLAG(old_select->flags, BGP_PATH_ATTR_CHANGED);
2434 UNSET_FLAG(rn->flags, BGP_NODE_LABEL_CHANGED);
2435 }
2436
2437 UNSET_FLAG(rn->flags, BGP_NODE_PROCESS_SCHEDULED);
2438 return;
2439 }
2440
2441 /* If the user did "clear ip bgp prefix x.x.x.x" this flag will be set
2442 */
2443 UNSET_FLAG(rn->flags, BGP_NODE_USER_CLEAR);
2444
2445 /* bestpath has changed; bump version */
2446 if (old_select || new_select) {
2447 bgp_bump_version(rn);
2448
2449 if (!bgp->t_rmap_def_originate_eval) {
2450 bgp_lock(bgp);
2451 thread_add_timer(
2452 bm->master,
2453 update_group_refresh_default_originate_route_map,
2454 bgp, RMAP_DEFAULT_ORIGINATE_EVAL_TIMER,
2455 &bgp->t_rmap_def_originate_eval);
2456 }
2457 }
2458
2459 if (old_select)
2460 bgp_path_info_unset_flag(rn, old_select, BGP_PATH_SELECTED);
2461 if (new_select) {
2462 if (debug)
2463 zlog_debug("%s: setting SELECTED flag", __func__);
2464 bgp_path_info_set_flag(rn, new_select, BGP_PATH_SELECTED);
2465 bgp_path_info_unset_flag(rn, new_select, BGP_PATH_ATTR_CHANGED);
2466 UNSET_FLAG(new_select->flags, BGP_PATH_MULTIPATH_CHG);
2467 }
2468
2469 #if ENABLE_BGP_VNC
2470 if ((afi == AFI_IP || afi == AFI_IP6) && (safi == SAFI_UNICAST)) {
2471 if (old_select != new_select) {
2472 if (old_select) {
2473 vnc_import_bgp_exterior_del_route(bgp, p,
2474 old_select);
2475 vnc_import_bgp_del_route(bgp, p, old_select);
2476 }
2477 if (new_select) {
2478 vnc_import_bgp_exterior_add_route(bgp, p,
2479 new_select);
2480 vnc_import_bgp_add_route(bgp, p, new_select);
2481 }
2482 }
2483 }
2484 #endif
2485
2486 group_announce_route(bgp, afi, safi, rn, new_select);
2487
2488 /* unicast routes must also be annouced to labeled-unicast update-groups
2489 */
2490 if (safi == SAFI_UNICAST)
2491 group_announce_route(bgp, afi, SAFI_LABELED_UNICAST, rn,
2492 new_select);
2493
2494 /* FIB update. */
2495 if (bgp_fibupd_safi(safi) && (bgp->inst_type != BGP_INSTANCE_TYPE_VIEW)
2496 && !bgp_option_check(BGP_OPT_NO_FIB)) {
2497 if (new_select && new_select->type == ZEBRA_ROUTE_BGP
2498 && (new_select->sub_type == BGP_ROUTE_NORMAL
2499 || new_select->sub_type == BGP_ROUTE_AGGREGATE
2500 || new_select->sub_type == BGP_ROUTE_IMPORTED)) {
2501
2502 /* if this is an evpn imported type-5 prefix,
2503 * we need to withdraw the route first to clear
2504 * the nh neigh and the RMAC entry.
2505 */
2506 if (old_select &&
2507 is_route_parent_evpn(old_select))
2508 bgp_zebra_withdraw(p, old_select, bgp, safi);
2509
2510 bgp_zebra_announce(rn, p, new_select, bgp, afi, safi);
2511 } else {
2512 /* Withdraw the route from the kernel. */
2513 if (old_select && old_select->type == ZEBRA_ROUTE_BGP
2514 && (old_select->sub_type == BGP_ROUTE_NORMAL
2515 || old_select->sub_type == BGP_ROUTE_AGGREGATE
2516 || old_select->sub_type == BGP_ROUTE_IMPORTED))
2517
2518 bgp_zebra_withdraw(p, old_select, bgp, safi);
2519 }
2520 }
2521
2522 /* advertise/withdraw type-5 routes */
2523 if ((afi == AFI_IP || afi == AFI_IP6) && (safi == SAFI_UNICAST)) {
2524 if (advertise_type5_routes(bgp, afi) &&
2525 new_select &&
2526 is_route_injectable_into_evpn(new_select)) {
2527
2528 /* apply the route-map */
2529 if (bgp->adv_cmd_rmap[afi][safi].map) {
2530 int ret = 0;
2531
2532 ret = route_map_apply(
2533 bgp->adv_cmd_rmap[afi][safi].map,
2534 &rn->p, RMAP_BGP, new_select);
2535 if (ret == RMAP_MATCH)
2536 bgp_evpn_advertise_type5_route(
2537 bgp, &rn->p, new_select->attr,
2538 afi, safi);
2539 else
2540 bgp_evpn_withdraw_type5_route(
2541 bgp, &rn->p, afi, safi);
2542 } else {
2543 bgp_evpn_advertise_type5_route(bgp,
2544 &rn->p,
2545 new_select->attr,
2546 afi, safi);
2547
2548 }
2549 } else if (advertise_type5_routes(bgp, afi) &&
2550 old_select &&
2551 is_route_injectable_into_evpn(old_select))
2552 bgp_evpn_withdraw_type5_route(bgp, &rn->p, afi, safi);
2553 }
2554
2555 /* Clear any route change flags. */
2556 bgp_zebra_clear_route_change_flags(rn);
2557
2558 /* Reap old select bgp_path_info, if it has been removed */
2559 if (old_select && CHECK_FLAG(old_select->flags, BGP_PATH_REMOVED))
2560 bgp_path_info_reap(rn, old_select);
2561
2562 UNSET_FLAG(rn->flags, BGP_NODE_PROCESS_SCHEDULED);
2563 return;
2564 }
2565
2566 static wq_item_status bgp_process_wq(struct work_queue *wq, void *data)
2567 {
2568 struct bgp_process_queue *pqnode = data;
2569 struct bgp *bgp = pqnode->bgp;
2570 struct bgp_table *table;
2571 struct bgp_node *rn;
2572
2573 /* eoiu marker */
2574 if (CHECK_FLAG(pqnode->flags, BGP_PROCESS_QUEUE_EOIU_MARKER)) {
2575 bgp_process_main_one(bgp, NULL, 0, 0);
2576 /* should always have dedicated wq call */
2577 assert(STAILQ_FIRST(&pqnode->pqueue) == NULL);
2578 return WQ_SUCCESS;
2579 }
2580
2581 while (!STAILQ_EMPTY(&pqnode->pqueue)) {
2582 rn = STAILQ_FIRST(&pqnode->pqueue);
2583 STAILQ_REMOVE_HEAD(&pqnode->pqueue, pq);
2584 STAILQ_NEXT(rn, pq) = NULL; /* complete unlink */
2585 table = bgp_node_table(rn);
2586 /* note, new RNs may be added as part of processing */
2587 bgp_process_main_one(bgp, rn, table->afi, table->safi);
2588
2589 bgp_unlock_node(rn);
2590 bgp_table_unlock(table);
2591 }
2592
2593 return WQ_SUCCESS;
2594 }
2595
2596 static void bgp_processq_del(struct work_queue *wq, void *data)
2597 {
2598 struct bgp_process_queue *pqnode = data;
2599
2600 bgp_unlock(pqnode->bgp);
2601
2602 XFREE(MTYPE_BGP_PROCESS_QUEUE, pqnode);
2603 }
2604
2605 void bgp_process_queue_init(void)
2606 {
2607 if (!bm->process_main_queue)
2608 bm->process_main_queue =
2609 work_queue_new(bm->master, "process_main_queue");
2610
2611 bm->process_main_queue->spec.workfunc = &bgp_process_wq;
2612 bm->process_main_queue->spec.del_item_data = &bgp_processq_del;
2613 bm->process_main_queue->spec.max_retries = 0;
2614 bm->process_main_queue->spec.hold = 50;
2615 /* Use a higher yield value of 50ms for main queue processing */
2616 bm->process_main_queue->spec.yield = 50 * 1000L;
2617 }
2618
2619 static struct bgp_process_queue *bgp_processq_alloc(struct bgp *bgp)
2620 {
2621 struct bgp_process_queue *pqnode;
2622
2623 pqnode = XCALLOC(MTYPE_BGP_PROCESS_QUEUE,
2624 sizeof(struct bgp_process_queue));
2625
2626 /* unlocked in bgp_processq_del */
2627 pqnode->bgp = bgp_lock(bgp);
2628 STAILQ_INIT(&pqnode->pqueue);
2629
2630 return pqnode;
2631 }
2632
2633 void bgp_process(struct bgp *bgp, struct bgp_node *rn, afi_t afi, safi_t safi)
2634 {
2635 #define ARBITRARY_PROCESS_QLEN 10000
2636 struct work_queue *wq = bm->process_main_queue;
2637 struct bgp_process_queue *pqnode;
2638 int pqnode_reuse = 0;
2639
2640 /* already scheduled for processing? */
2641 if (CHECK_FLAG(rn->flags, BGP_NODE_PROCESS_SCHEDULED))
2642 return;
2643
2644 if (wq == NULL)
2645 return;
2646
2647 /* Add route nodes to an existing work queue item until reaching the
2648 limit only if is from the same BGP view and it's not an EOIU marker
2649 */
2650 if (work_queue_item_count(wq)) {
2651 struct work_queue_item *item = work_queue_last_item(wq);
2652 pqnode = item->data;
2653
2654 if (CHECK_FLAG(pqnode->flags, BGP_PROCESS_QUEUE_EOIU_MARKER)
2655 || pqnode->bgp != bgp
2656 || pqnode->queued >= ARBITRARY_PROCESS_QLEN)
2657 pqnode = bgp_processq_alloc(bgp);
2658 else
2659 pqnode_reuse = 1;
2660 } else
2661 pqnode = bgp_processq_alloc(bgp);
2662 /* all unlocked in bgp_process_wq */
2663 bgp_table_lock(bgp_node_table(rn));
2664
2665 SET_FLAG(rn->flags, BGP_NODE_PROCESS_SCHEDULED);
2666 bgp_lock_node(rn);
2667
2668 /* can't be enqueued twice */
2669 assert(STAILQ_NEXT(rn, pq) == NULL);
2670 STAILQ_INSERT_TAIL(&pqnode->pqueue, rn, pq);
2671 pqnode->queued++;
2672
2673 if (!pqnode_reuse)
2674 work_queue_add(wq, pqnode);
2675
2676 return;
2677 }
2678
2679 void bgp_add_eoiu_mark(struct bgp *bgp)
2680 {
2681 struct bgp_process_queue *pqnode;
2682
2683 if (bm->process_main_queue == NULL)
2684 return;
2685
2686 pqnode = bgp_processq_alloc(bgp);
2687
2688 SET_FLAG(pqnode->flags, BGP_PROCESS_QUEUE_EOIU_MARKER);
2689 work_queue_add(bm->process_main_queue, pqnode);
2690 }
2691
2692 static int bgp_maximum_prefix_restart_timer(struct thread *thread)
2693 {
2694 struct peer *peer;
2695
2696 peer = THREAD_ARG(thread);
2697 peer->t_pmax_restart = NULL;
2698
2699 if (bgp_debug_neighbor_events(peer))
2700 zlog_debug(
2701 "%s Maximum-prefix restart timer expired, restore peering",
2702 peer->host);
2703
2704 if ((peer_clear(peer, NULL) < 0) && bgp_debug_neighbor_events(peer))
2705 zlog_debug("%s: %s peer_clear failed",
2706 __PRETTY_FUNCTION__, peer->host);
2707
2708 return 0;
2709 }
2710
2711 int bgp_maximum_prefix_overflow(struct peer *peer, afi_t afi, safi_t safi,
2712 int always)
2713 {
2714 iana_afi_t pkt_afi;
2715 iana_safi_t pkt_safi;
2716
2717 if (!CHECK_FLAG(peer->af_flags[afi][safi], PEER_FLAG_MAX_PREFIX))
2718 return 0;
2719
2720 if (peer->pcount[afi][safi] > peer->pmax[afi][safi]) {
2721 if (CHECK_FLAG(peer->af_sflags[afi][safi],
2722 PEER_STATUS_PREFIX_LIMIT)
2723 && !always)
2724 return 0;
2725
2726 zlog_info(
2727 "%%MAXPFXEXCEED: No. of %s prefix received from %s %ld exceed, "
2728 "limit %ld",
2729 afi_safi_print(afi, safi), peer->host,
2730 peer->pcount[afi][safi], peer->pmax[afi][safi]);
2731 SET_FLAG(peer->af_sflags[afi][safi], PEER_STATUS_PREFIX_LIMIT);
2732
2733 if (CHECK_FLAG(peer->af_flags[afi][safi],
2734 PEER_FLAG_MAX_PREFIX_WARNING))
2735 return 0;
2736
2737 /* Convert AFI, SAFI to values for packet. */
2738 pkt_afi = afi_int2iana(afi);
2739 pkt_safi = safi_int2iana(safi);
2740 {
2741 uint8_t ndata[7];
2742
2743 ndata[0] = (pkt_afi >> 8);
2744 ndata[1] = pkt_afi;
2745 ndata[2] = pkt_safi;
2746 ndata[3] = (peer->pmax[afi][safi] >> 24);
2747 ndata[4] = (peer->pmax[afi][safi] >> 16);
2748 ndata[5] = (peer->pmax[afi][safi] >> 8);
2749 ndata[6] = (peer->pmax[afi][safi]);
2750
2751 SET_FLAG(peer->sflags, PEER_STATUS_PREFIX_OVERFLOW);
2752 bgp_notify_send_with_data(peer, BGP_NOTIFY_CEASE,
2753 BGP_NOTIFY_CEASE_MAX_PREFIX,
2754 ndata, 7);
2755 }
2756
2757 /* Dynamic peers will just close their connection. */
2758 if (peer_dynamic_neighbor(peer))
2759 return 1;
2760
2761 /* restart timer start */
2762 if (peer->pmax_restart[afi][safi]) {
2763 peer->v_pmax_restart =
2764 peer->pmax_restart[afi][safi] * 60;
2765
2766 if (bgp_debug_neighbor_events(peer))
2767 zlog_debug(
2768 "%s Maximum-prefix restart timer started for %d secs",
2769 peer->host, peer->v_pmax_restart);
2770
2771 BGP_TIMER_ON(peer->t_pmax_restart,
2772 bgp_maximum_prefix_restart_timer,
2773 peer->v_pmax_restart);
2774 }
2775
2776 return 1;
2777 } else
2778 UNSET_FLAG(peer->af_sflags[afi][safi],
2779 PEER_STATUS_PREFIX_LIMIT);
2780
2781 if (peer->pcount[afi][safi]
2782 > (peer->pmax[afi][safi] * peer->pmax_threshold[afi][safi] / 100)) {
2783 if (CHECK_FLAG(peer->af_sflags[afi][safi],
2784 PEER_STATUS_PREFIX_THRESHOLD)
2785 && !always)
2786 return 0;
2787
2788 zlog_info(
2789 "%%MAXPFX: No. of %s prefix received from %s reaches %ld, max %ld",
2790 afi_safi_print(afi, safi), peer->host,
2791 peer->pcount[afi][safi], peer->pmax[afi][safi]);
2792 SET_FLAG(peer->af_sflags[afi][safi],
2793 PEER_STATUS_PREFIX_THRESHOLD);
2794 } else
2795 UNSET_FLAG(peer->af_sflags[afi][safi],
2796 PEER_STATUS_PREFIX_THRESHOLD);
2797 return 0;
2798 }
2799
2800 /* Unconditionally remove the route from the RIB, without taking
2801 * damping into consideration (eg, because the session went down)
2802 */
2803 void bgp_rib_remove(struct bgp_node *rn, struct bgp_path_info *pi,
2804 struct peer *peer, afi_t afi, safi_t safi)
2805 {
2806 bgp_aggregate_decrement(peer->bgp, &rn->p, pi, afi, safi);
2807
2808 if (!CHECK_FLAG(pi->flags, BGP_PATH_HISTORY))
2809 bgp_path_info_delete(rn, pi); /* keep historical info */
2810
2811 bgp_process(peer->bgp, rn, afi, safi);
2812 }
2813
2814 static void bgp_rib_withdraw(struct bgp_node *rn, struct bgp_path_info *pi,
2815 struct peer *peer, afi_t afi, safi_t safi,
2816 struct prefix_rd *prd)
2817 {
2818 /* apply dampening, if result is suppressed, we'll be retaining
2819 * the bgp_path_info in the RIB for historical reference.
2820 */
2821 if (CHECK_FLAG(peer->bgp->af_flags[afi][safi], BGP_CONFIG_DAMPENING)
2822 && peer->sort == BGP_PEER_EBGP)
2823 if ((bgp_damp_withdraw(pi, rn, afi, safi, 0))
2824 == BGP_DAMP_SUPPRESSED) {
2825 bgp_aggregate_decrement(peer->bgp, &rn->p, pi, afi,
2826 safi);
2827 return;
2828 }
2829
2830 #if ENABLE_BGP_VNC
2831 if (safi == SAFI_MPLS_VPN) {
2832 struct bgp_node *prn = NULL;
2833 struct bgp_table *table = NULL;
2834
2835 prn = bgp_node_get(peer->bgp->rib[afi][safi],
2836 (struct prefix *)prd);
2837 if (bgp_node_has_bgp_path_info_data(prn)) {
2838 table = bgp_node_get_bgp_table_info(prn);
2839
2840 vnc_import_bgp_del_vnc_host_route_mode_resolve_nve(
2841 peer->bgp, prd, table, &rn->p, pi);
2842 }
2843 bgp_unlock_node(prn);
2844 }
2845 if ((afi == AFI_IP || afi == AFI_IP6) && (safi == SAFI_UNICAST)) {
2846 if (CHECK_FLAG(pi->flags, BGP_PATH_SELECTED)) {
2847
2848 vnc_import_bgp_del_route(peer->bgp, &rn->p, pi);
2849 vnc_import_bgp_exterior_del_route(peer->bgp, &rn->p,
2850 pi);
2851 }
2852 }
2853 #endif
2854
2855 /* If this is an EVPN route, process for un-import. */
2856 if (safi == SAFI_EVPN)
2857 bgp_evpn_unimport_route(peer->bgp, afi, safi, &rn->p, pi);
2858
2859 bgp_rib_remove(rn, pi, peer, afi, safi);
2860 }
2861
2862 struct bgp_path_info *info_make(int type, int sub_type, unsigned short instance,
2863 struct peer *peer, struct attr *attr,
2864 struct bgp_node *rn)
2865 {
2866 struct bgp_path_info *new;
2867
2868 /* Make new BGP info. */
2869 new = XCALLOC(MTYPE_BGP_ROUTE, sizeof(struct bgp_path_info));
2870 new->type = type;
2871 new->instance = instance;
2872 new->sub_type = sub_type;
2873 new->peer = peer;
2874 new->attr = attr;
2875 new->uptime = bgp_clock();
2876 new->net = rn;
2877 return new;
2878 }
2879
2880 static void overlay_index_update(struct attr *attr,
2881 struct eth_segment_id *eth_s_id,
2882 union gw_addr *gw_ip)
2883 {
2884 if (!attr)
2885 return;
2886
2887 if (eth_s_id == NULL) {
2888 memset(&(attr->evpn_overlay.eth_s_id), 0,
2889 sizeof(struct eth_segment_id));
2890 } else {
2891 memcpy(&(attr->evpn_overlay.eth_s_id), eth_s_id,
2892 sizeof(struct eth_segment_id));
2893 }
2894 if (gw_ip == NULL) {
2895 memset(&(attr->evpn_overlay.gw_ip), 0, sizeof(union gw_addr));
2896 } else {
2897 memcpy(&(attr->evpn_overlay.gw_ip), gw_ip,
2898 sizeof(union gw_addr));
2899 }
2900 }
2901
2902 static bool overlay_index_equal(afi_t afi, struct bgp_path_info *path,
2903 struct eth_segment_id *eth_s_id,
2904 union gw_addr *gw_ip)
2905 {
2906 struct eth_segment_id *path_eth_s_id, *path_eth_s_id_remote;
2907 union gw_addr *path_gw_ip, *path_gw_ip_remote;
2908 union {
2909 struct eth_segment_id esi;
2910 union gw_addr ip;
2911 } temp;
2912
2913 if (afi != AFI_L2VPN)
2914 return true;
2915 if (!path->attr) {
2916 memset(&temp, 0, sizeof(temp));
2917 path_eth_s_id = &temp.esi;
2918 path_gw_ip = &temp.ip;
2919
2920 if (eth_s_id == NULL && gw_ip == NULL)
2921 return true;
2922 } else {
2923 path_eth_s_id = &(path->attr->evpn_overlay.eth_s_id);
2924 path_gw_ip = &(path->attr->evpn_overlay.gw_ip);
2925 }
2926
2927 if (gw_ip == NULL) {
2928 memset(&temp, 0, sizeof(temp));
2929 path_gw_ip_remote = &temp.ip;
2930 } else
2931 path_gw_ip_remote = gw_ip;
2932
2933 if (eth_s_id == NULL) {
2934 memset(&temp, 0, sizeof(temp));
2935 path_eth_s_id_remote = &temp.esi;
2936 } else
2937 path_eth_s_id_remote = eth_s_id;
2938
2939 if (!memcmp(path_gw_ip, path_gw_ip_remote, sizeof(union gw_addr)))
2940 return false;
2941
2942 return !memcmp(path_eth_s_id, path_eth_s_id_remote,
2943 sizeof(struct eth_segment_id));
2944 }
2945
2946 /* Check if received nexthop is valid or not. */
2947 static int bgp_update_martian_nexthop(struct bgp *bgp, afi_t afi, safi_t safi,
2948 struct attr *attr)
2949 {
2950 int ret = 0;
2951
2952 /* Only validated for unicast and multicast currently. */
2953 /* Also valid for EVPN where the nexthop is an IP address. */
2954 if (safi != SAFI_UNICAST && safi != SAFI_MULTICAST && safi != SAFI_EVPN)
2955 return 0;
2956
2957 /* If NEXT_HOP is present, validate it. */
2958 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_NEXT_HOP)) {
2959 if (attr->nexthop.s_addr == 0
2960 || IPV4_CLASS_DE(ntohl(attr->nexthop.s_addr))
2961 || bgp_nexthop_self(bgp, attr->nexthop))
2962 return 1;
2963 }
2964
2965 /* If MP_NEXTHOP is present, validate it. */
2966 /* Note: For IPv6 nexthops, we only validate the global (1st) nexthop;
2967 * there is code in bgp_attr.c to ignore the link-local (2nd) nexthop if
2968 * it is not an IPv6 link-local address.
2969 */
2970 if (attr->mp_nexthop_len) {
2971 switch (attr->mp_nexthop_len) {
2972 case BGP_ATTR_NHLEN_IPV4:
2973 case BGP_ATTR_NHLEN_VPNV4:
2974 ret = (attr->mp_nexthop_global_in.s_addr == 0
2975 || IPV4_CLASS_DE(ntohl(
2976 attr->mp_nexthop_global_in.s_addr))
2977 || bgp_nexthop_self(bgp,
2978 attr->mp_nexthop_global_in));
2979 break;
2980
2981 case BGP_ATTR_NHLEN_IPV6_GLOBAL:
2982 case BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL:
2983 case BGP_ATTR_NHLEN_VPNV6_GLOBAL:
2984 ret = (IN6_IS_ADDR_UNSPECIFIED(&attr->mp_nexthop_global)
2985 || IN6_IS_ADDR_LOOPBACK(&attr->mp_nexthop_global)
2986 || IN6_IS_ADDR_MULTICAST(
2987 &attr->mp_nexthop_global));
2988 break;
2989
2990 default:
2991 ret = 1;
2992 break;
2993 }
2994 }
2995
2996 return ret;
2997 }
2998
2999 int bgp_update(struct peer *peer, struct prefix *p, uint32_t addpath_id,
3000 struct attr *attr, afi_t afi, safi_t safi, int type,
3001 int sub_type, struct prefix_rd *prd, mpls_label_t *label,
3002 uint32_t num_labels, int soft_reconfig,
3003 struct bgp_route_evpn *evpn)
3004 {
3005 int ret;
3006 int aspath_loop_count = 0;
3007 struct bgp_node *rn;
3008 struct bgp *bgp;
3009 struct attr new_attr;
3010 struct attr *attr_new;
3011 struct bgp_path_info *pi;
3012 struct bgp_path_info *new;
3013 struct bgp_path_info_extra *extra;
3014 const char *reason;
3015 char pfx_buf[BGP_PRD_PATH_STRLEN];
3016 int connected = 0;
3017 int do_loop_check = 1;
3018 int has_valid_label = 0;
3019 #if ENABLE_BGP_VNC
3020 int vnc_implicit_withdraw = 0;
3021 #endif
3022 int same_attr = 0;
3023
3024 memset(&new_attr, 0, sizeof(struct attr));
3025 new_attr.label_index = BGP_INVALID_LABEL_INDEX;
3026 new_attr.label = MPLS_INVALID_LABEL;
3027
3028 bgp = peer->bgp;
3029 rn = bgp_afi_node_get(bgp->rib[afi][safi], afi, safi, p, prd);
3030 /* TODO: Check to see if we can get rid of "is_valid_label" */
3031 if (afi == AFI_L2VPN && safi == SAFI_EVPN)
3032 has_valid_label = (num_labels > 0) ? 1 : 0;
3033 else
3034 has_valid_label = bgp_is_valid_label(label);
3035
3036 /* When peer's soft reconfiguration enabled. Record input packet in
3037 Adj-RIBs-In. */
3038 if (!soft_reconfig
3039 && CHECK_FLAG(peer->af_flags[afi][safi], PEER_FLAG_SOFT_RECONFIG)
3040 && peer != bgp->peer_self)
3041 bgp_adj_in_set(rn, peer, attr, addpath_id);
3042
3043 /* Check previously received route. */
3044 for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = pi->next)
3045 if (pi->peer == peer && pi->type == type
3046 && pi->sub_type == sub_type
3047 && pi->addpath_rx_id == addpath_id)
3048 break;
3049
3050 /* AS path local-as loop check. */
3051 if (peer->change_local_as) {
3052 if (peer->allowas_in[afi][safi])
3053 aspath_loop_count = peer->allowas_in[afi][safi];
3054 else if (!CHECK_FLAG(peer->flags,
3055 PEER_FLAG_LOCAL_AS_NO_PREPEND))
3056 aspath_loop_count = 1;
3057
3058 if (aspath_loop_check(attr->aspath, peer->change_local_as)
3059 > aspath_loop_count) {
3060 reason = "as-path contains our own AS;";
3061 goto filtered;
3062 }
3063 }
3064
3065 /* If the peer is configured for "allowas-in origin" and the last ASN in
3066 * the
3067 * as-path is our ASN then we do not need to call aspath_loop_check
3068 */
3069 if (CHECK_FLAG(peer->af_flags[afi][safi], PEER_FLAG_ALLOWAS_IN_ORIGIN))
3070 if (aspath_get_last_as(attr->aspath) == bgp->as)
3071 do_loop_check = 0;
3072
3073 /* AS path loop check. */
3074 if (do_loop_check) {
3075 if (aspath_loop_check(attr->aspath, bgp->as)
3076 > peer->allowas_in[afi][safi]
3077 || (CHECK_FLAG(bgp->config, BGP_CONFIG_CONFEDERATION)
3078 && aspath_loop_check(attr->aspath, bgp->confed_id)
3079 > peer->allowas_in[afi][safi])) {
3080 reason = "as-path contains our own AS;";
3081 goto filtered;
3082 }
3083 }
3084
3085 /* Route reflector originator ID check. */
3086 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_ORIGINATOR_ID)
3087 && IPV4_ADDR_SAME(&bgp->router_id, &attr->originator_id)) {
3088 reason = "originator is us;";
3089 goto filtered;
3090 }
3091
3092 /* Route reflector cluster ID check. */
3093 if (bgp_cluster_filter(peer, attr)) {
3094 reason = "reflected from the same cluster;";
3095 goto filtered;
3096 }
3097
3098 /* Apply incoming filter. */
3099 if (bgp_input_filter(peer, p, attr, afi, safi) == FILTER_DENY) {
3100 reason = "filter;";
3101 goto filtered;
3102 }
3103
3104 /* RFC 8212 to prevent route leaks.
3105 * This specification intends to improve this situation by requiring the
3106 * explicit configuration of both BGP Import and Export Policies for any
3107 * External BGP (EBGP) session such as customers, peers, or
3108 * confederation boundaries for all enabled address families. Through
3109 * codification of the aforementioned requirement, operators will
3110 * benefit from consistent behavior across different BGP
3111 * implementations.
3112 */
3113 if (peer->bgp->ebgp_requires_policy == DEFAULT_EBGP_POLICY_ENABLED)
3114 if (!bgp_inbound_policy_exists(peer,
3115 &peer->filter[afi][safi])) {
3116 reason = "inbound policy missing";
3117 goto filtered;
3118 }
3119
3120 bgp_attr_dup(&new_attr, attr);
3121
3122 /* Apply incoming route-map.
3123 * NB: new_attr may now contain newly allocated values from route-map
3124 * "set"
3125 * commands, so we need bgp_attr_flush in the error paths, until we
3126 * intern
3127 * the attr (which takes over the memory references) */
3128 if (bgp_input_modifier(peer, p, &new_attr, afi, safi, NULL)
3129 == RMAP_DENY) {
3130 reason = "route-map;";
3131 bgp_attr_flush(&new_attr);
3132 goto filtered;
3133 }
3134
3135 if (peer->sort == BGP_PEER_EBGP) {
3136
3137 /* If we receive the graceful-shutdown community from an eBGP
3138 * peer we must lower local-preference */
3139 if (new_attr.community
3140 && community_include(new_attr.community, COMMUNITY_GSHUT)) {
3141 new_attr.flag |= ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF);
3142 new_attr.local_pref = BGP_GSHUT_LOCAL_PREF;
3143
3144 /* If graceful-shutdown is configured then add the GSHUT
3145 * community to all paths received from eBGP peers */
3146 } else if (bgp_flag_check(peer->bgp,
3147 BGP_FLAG_GRACEFUL_SHUTDOWN)) {
3148 bgp_attr_add_gshut_community(&new_attr);
3149 }
3150 }
3151
3152 /* next hop check. */
3153 if (!CHECK_FLAG(peer->flags, PEER_FLAG_IS_RFAPI_HD)
3154 && bgp_update_martian_nexthop(bgp, afi, safi, &new_attr)) {
3155 reason = "martian or self next-hop;";
3156 bgp_attr_flush(&new_attr);
3157 goto filtered;
3158 }
3159
3160 if (bgp_mac_entry_exists(p) || bgp_mac_exist(&attr->rmac)) {
3161 reason = "self mac;";
3162 goto filtered;
3163 }
3164
3165 attr_new = bgp_attr_intern(&new_attr);
3166
3167 /* If the update is implicit withdraw. */
3168 if (pi) {
3169 pi->uptime = bgp_clock();
3170 same_attr = attrhash_cmp(pi->attr, attr_new);
3171
3172 /* Same attribute comes in. */
3173 if (!CHECK_FLAG(pi->flags, BGP_PATH_REMOVED)
3174 && attrhash_cmp(pi->attr, attr_new)
3175 && (!has_valid_label
3176 || memcmp(&(bgp_path_info_extra_get(pi))->label, label,
3177 num_labels * sizeof(mpls_label_t))
3178 == 0)
3179 && (overlay_index_equal(
3180 afi, pi, evpn == NULL ? NULL : &evpn->eth_s_id,
3181 evpn == NULL ? NULL : &evpn->gw_ip))) {
3182 if (CHECK_FLAG(bgp->af_flags[afi][safi],
3183 BGP_CONFIG_DAMPENING)
3184 && peer->sort == BGP_PEER_EBGP
3185 && CHECK_FLAG(pi->flags, BGP_PATH_HISTORY)) {
3186 if (bgp_debug_update(peer, p, NULL, 1)) {
3187 bgp_debug_rdpfxpath2str(
3188 afi, safi, prd, p, label,
3189 num_labels, addpath_id ? 1 : 0,
3190 addpath_id, pfx_buf,
3191 sizeof(pfx_buf));
3192 zlog_debug("%s rcvd %s", peer->host,
3193 pfx_buf);
3194 }
3195
3196 if (bgp_damp_update(pi, rn, afi, safi)
3197 != BGP_DAMP_SUPPRESSED) {
3198 bgp_aggregate_increment(bgp, p, pi, afi,
3199 safi);
3200 bgp_process(bgp, rn, afi, safi);
3201 }
3202 } else /* Duplicate - odd */
3203 {
3204 if (bgp_debug_update(peer, p, NULL, 1)) {
3205 if (!peer->rcvd_attr_printed) {
3206 zlog_debug(
3207 "%s rcvd UPDATE w/ attr: %s",
3208 peer->host,
3209 peer->rcvd_attr_str);
3210 peer->rcvd_attr_printed = 1;
3211 }
3212
3213 bgp_debug_rdpfxpath2str(
3214 afi, safi, prd, p, label,
3215 num_labels, addpath_id ? 1 : 0,
3216 addpath_id, pfx_buf,
3217 sizeof(pfx_buf));
3218 zlog_debug(
3219 "%s rcvd %s...duplicate ignored",
3220 peer->host, pfx_buf);
3221 }
3222
3223 /* graceful restart STALE flag unset. */
3224 if (CHECK_FLAG(pi->flags, BGP_PATH_STALE)) {
3225 bgp_path_info_unset_flag(
3226 rn, pi, BGP_PATH_STALE);
3227 bgp_process(bgp, rn, afi, safi);
3228 }
3229 }
3230
3231 bgp_unlock_node(rn);
3232 bgp_attr_unintern(&attr_new);
3233
3234 return 0;
3235 }
3236
3237 /* Withdraw/Announce before we fully processed the withdraw */
3238 if (CHECK_FLAG(pi->flags, BGP_PATH_REMOVED)) {
3239 if (bgp_debug_update(peer, p, NULL, 1)) {
3240 bgp_debug_rdpfxpath2str(
3241 afi, safi, prd, p, label, num_labels,
3242 addpath_id ? 1 : 0, addpath_id, pfx_buf,
3243 sizeof(pfx_buf));
3244 zlog_debug(
3245 "%s rcvd %s, flapped quicker than processing",
3246 peer->host, pfx_buf);
3247 }
3248
3249 bgp_path_info_restore(rn, pi);
3250 }
3251
3252 /* Received Logging. */
3253 if (bgp_debug_update(peer, p, NULL, 1)) {
3254 bgp_debug_rdpfxpath2str(afi, safi, prd, p, label,
3255 num_labels, addpath_id ? 1 : 0,
3256 addpath_id, pfx_buf,
3257 sizeof(pfx_buf));
3258 zlog_debug("%s rcvd %s", peer->host, pfx_buf);
3259 }
3260
3261 /* graceful restart STALE flag unset. */
3262 if (CHECK_FLAG(pi->flags, BGP_PATH_STALE))
3263 bgp_path_info_unset_flag(rn, pi, BGP_PATH_STALE);
3264
3265 /* The attribute is changed. */
3266 bgp_path_info_set_flag(rn, pi, BGP_PATH_ATTR_CHANGED);
3267
3268 /* implicit withdraw, decrement aggregate and pcount here.
3269 * only if update is accepted, they'll increment below.
3270 */
3271 bgp_aggregate_decrement(bgp, p, pi, afi, safi);
3272
3273 /* Update bgp route dampening information. */
3274 if (CHECK_FLAG(bgp->af_flags[afi][safi], BGP_CONFIG_DAMPENING)
3275 && peer->sort == BGP_PEER_EBGP) {
3276 /* This is implicit withdraw so we should update
3277 dampening
3278 information. */
3279 if (!CHECK_FLAG(pi->flags, BGP_PATH_HISTORY))
3280 bgp_damp_withdraw(pi, rn, afi, safi, 1);
3281 }
3282 #if ENABLE_BGP_VNC
3283 if (safi == SAFI_MPLS_VPN) {
3284 struct bgp_node *prn = NULL;
3285 struct bgp_table *table = NULL;
3286
3287 prn = bgp_node_get(bgp->rib[afi][safi],
3288 (struct prefix *)prd);
3289 if (bgp_node_has_bgp_path_info_data(prn)) {
3290 table = bgp_node_get_bgp_table_info(prn);
3291
3292 vnc_import_bgp_del_vnc_host_route_mode_resolve_nve(
3293 bgp, prd, table, p, pi);
3294 }
3295 bgp_unlock_node(prn);
3296 }
3297 if ((afi == AFI_IP || afi == AFI_IP6)
3298 && (safi == SAFI_UNICAST)) {
3299 if (CHECK_FLAG(pi->flags, BGP_PATH_SELECTED)) {
3300 /*
3301 * Implicit withdraw case.
3302 */
3303 ++vnc_implicit_withdraw;
3304 vnc_import_bgp_del_route(bgp, p, pi);
3305 vnc_import_bgp_exterior_del_route(bgp, p, pi);
3306 }
3307 }
3308 #endif
3309
3310 /* Special handling for EVPN update of an existing route. If the
3311 * extended community attribute has changed, we need to
3312 * un-import
3313 * the route using its existing extended community. It will be
3314 * subsequently processed for import with the new extended
3315 * community.
3316 */
3317 if (safi == SAFI_EVPN && !same_attr) {
3318 if ((pi->attr->flag
3319 & ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES))
3320 && (attr_new->flag
3321 & ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES))) {
3322 int cmp;
3323
3324 cmp = ecommunity_cmp(pi->attr->ecommunity,
3325 attr_new->ecommunity);
3326 if (!cmp) {
3327 if (bgp_debug_update(peer, p, NULL, 1))
3328 zlog_debug(
3329 "Change in EXT-COMM, existing %s new %s",
3330 ecommunity_str(
3331 pi->attr->ecommunity),
3332 ecommunity_str(
3333 attr_new->ecommunity));
3334 bgp_evpn_unimport_route(bgp, afi, safi,
3335 p, pi);
3336 }
3337 }
3338 }
3339
3340 /* Update to new attribute. */
3341 bgp_attr_unintern(&pi->attr);
3342 pi->attr = attr_new;
3343
3344 /* Update MPLS label */
3345 if (has_valid_label) {
3346 extra = bgp_path_info_extra_get(pi);
3347 if (extra->label != label) {
3348 memcpy(&extra->label, label,
3349 num_labels * sizeof(mpls_label_t));
3350 extra->num_labels = num_labels;
3351 }
3352 if (!(afi == AFI_L2VPN && safi == SAFI_EVPN))
3353 bgp_set_valid_label(&extra->label[0]);
3354 }
3355
3356 #if ENABLE_BGP_VNC
3357 if ((afi == AFI_IP || afi == AFI_IP6)
3358 && (safi == SAFI_UNICAST)) {
3359 if (vnc_implicit_withdraw) {
3360 /*
3361 * Add back the route with its new attributes
3362 * (e.g., nexthop).
3363 * The route is still selected, until the route
3364 * selection
3365 * queued by bgp_process actually runs. We have
3366 * to make this
3367 * update to the VNC side immediately to avoid
3368 * racing against
3369 * configuration changes (e.g., route-map
3370 * changes) which
3371 * trigger re-importation of the entire RIB.
3372 */
3373 vnc_import_bgp_add_route(bgp, p, pi);
3374 vnc_import_bgp_exterior_add_route(bgp, p, pi);
3375 }
3376 }
3377 #endif
3378 /* Update Overlay Index */
3379 if (afi == AFI_L2VPN) {
3380 overlay_index_update(
3381 pi->attr, evpn == NULL ? NULL : &evpn->eth_s_id,
3382 evpn == NULL ? NULL : &evpn->gw_ip);
3383 }
3384
3385 /* Update bgp route dampening information. */
3386 if (CHECK_FLAG(bgp->af_flags[afi][safi], BGP_CONFIG_DAMPENING)
3387 && peer->sort == BGP_PEER_EBGP) {
3388 /* Now we do normal update dampening. */
3389 ret = bgp_damp_update(pi, rn, afi, safi);
3390 if (ret == BGP_DAMP_SUPPRESSED) {
3391 bgp_unlock_node(rn);
3392 return 0;
3393 }
3394 }
3395
3396 /* Nexthop reachability check - for unicast and
3397 * labeled-unicast.. */
3398 if ((afi == AFI_IP || afi == AFI_IP6)
3399 && (safi == SAFI_UNICAST || safi == SAFI_LABELED_UNICAST)) {
3400 if (peer->sort == BGP_PEER_EBGP && peer->ttl == 1
3401 && !CHECK_FLAG(peer->flags,
3402 PEER_FLAG_DISABLE_CONNECTED_CHECK)
3403 && !bgp_flag_check(
3404 bgp, BGP_FLAG_DISABLE_NH_CONNECTED_CHK))
3405 connected = 1;
3406 else
3407 connected = 0;
3408
3409 struct bgp *bgp_nexthop = bgp;
3410
3411 if (pi->extra && pi->extra->bgp_orig)
3412 bgp_nexthop = pi->extra->bgp_orig;
3413
3414 if (bgp_find_or_add_nexthop(bgp, bgp_nexthop, afi, pi,
3415 NULL, connected)
3416 || CHECK_FLAG(peer->flags, PEER_FLAG_IS_RFAPI_HD))
3417 bgp_path_info_set_flag(rn, pi, BGP_PATH_VALID);
3418 else {
3419 if (BGP_DEBUG(nht, NHT)) {
3420 char buf1[INET6_ADDRSTRLEN];
3421 inet_ntop(AF_INET,
3422 (const void *)&attr_new
3423 ->nexthop,
3424 buf1, INET6_ADDRSTRLEN);
3425 zlog_debug("%s(%s): NH unresolved",
3426 __FUNCTION__, buf1);
3427 }
3428 bgp_path_info_unset_flag(rn, pi,
3429 BGP_PATH_VALID);
3430 }
3431 } else
3432 bgp_path_info_set_flag(rn, pi, BGP_PATH_VALID);
3433
3434 #if ENABLE_BGP_VNC
3435 if (safi == SAFI_MPLS_VPN) {
3436 struct bgp_node *prn = NULL;
3437 struct bgp_table *table = NULL;
3438
3439 prn = bgp_node_get(bgp->rib[afi][safi],
3440 (struct prefix *)prd);
3441 if (bgp_node_has_bgp_path_info_data(prn)) {
3442 table = bgp_node_get_bgp_table_info(prn);
3443
3444 vnc_import_bgp_add_vnc_host_route_mode_resolve_nve(
3445 bgp, prd, table, p, pi);
3446 }
3447 bgp_unlock_node(prn);
3448 }
3449 #endif
3450
3451 /* If this is an EVPN route and some attribute has changed,
3452 * process
3453 * route for import. If the extended community has changed, we
3454 * would
3455 * have done the un-import earlier and the import would result
3456 * in the
3457 * route getting injected into appropriate L2 VNIs. If it is
3458 * just
3459 * some other attribute change, the import will result in
3460 * updating
3461 * the attributes for the route in the VNI(s).
3462 */
3463 if (safi == SAFI_EVPN && !same_attr)
3464 bgp_evpn_import_route(bgp, afi, safi, p, pi);
3465
3466 /* Process change. */
3467 bgp_aggregate_increment(bgp, p, pi, afi, safi);
3468
3469 bgp_process(bgp, rn, afi, safi);
3470 bgp_unlock_node(rn);
3471
3472 if (SAFI_UNICAST == safi
3473 && (bgp->inst_type == BGP_INSTANCE_TYPE_VRF
3474 || bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)) {
3475
3476 vpn_leak_from_vrf_update(bgp_get_default(), bgp, pi);
3477 }
3478 if ((SAFI_MPLS_VPN == safi)
3479 && (bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)) {
3480
3481 vpn_leak_to_vrf_update(bgp, pi);
3482 }
3483
3484 #if ENABLE_BGP_VNC
3485 if (SAFI_MPLS_VPN == safi) {
3486 mpls_label_t label_decoded = decode_label(label);
3487
3488 rfapiProcessUpdate(peer, NULL, p, prd, attr, afi, safi,
3489 type, sub_type, &label_decoded);
3490 }
3491 if (SAFI_ENCAP == safi) {
3492 rfapiProcessUpdate(peer, NULL, p, prd, attr, afi, safi,
3493 type, sub_type, NULL);
3494 }
3495 #endif
3496
3497 return 0;
3498 } // End of implicit withdraw
3499
3500 /* Received Logging. */
3501 if (bgp_debug_update(peer, p, NULL, 1)) {
3502 if (!peer->rcvd_attr_printed) {
3503 zlog_debug("%s rcvd UPDATE w/ attr: %s", peer->host,
3504 peer->rcvd_attr_str);
3505 peer->rcvd_attr_printed = 1;
3506 }
3507
3508 bgp_debug_rdpfxpath2str(afi, safi, prd, p, label, num_labels,
3509 addpath_id ? 1 : 0, addpath_id, pfx_buf,
3510 sizeof(pfx_buf));
3511 zlog_debug("%s rcvd %s", peer->host, pfx_buf);
3512 }
3513
3514 /* Make new BGP info. */
3515 new = info_make(type, sub_type, 0, peer, attr_new, rn);
3516
3517 /* Update MPLS label */
3518 if (has_valid_label) {
3519 extra = bgp_path_info_extra_get(new);
3520 if (extra->label != label) {
3521 memcpy(&extra->label, label,
3522 num_labels * sizeof(mpls_label_t));
3523 extra->num_labels = num_labels;
3524 }
3525 if (!(afi == AFI_L2VPN && safi == SAFI_EVPN))
3526 bgp_set_valid_label(&extra->label[0]);
3527 }
3528
3529 /* Update Overlay Index */
3530 if (afi == AFI_L2VPN) {
3531 overlay_index_update(new->attr,
3532 evpn == NULL ? NULL : &evpn->eth_s_id,
3533 evpn == NULL ? NULL : &evpn->gw_ip);
3534 }
3535 /* Nexthop reachability check. */
3536 if ((afi == AFI_IP || afi == AFI_IP6)
3537 && (safi == SAFI_UNICAST || safi == SAFI_LABELED_UNICAST)) {
3538 if (peer->sort == BGP_PEER_EBGP && peer->ttl == 1
3539 && !CHECK_FLAG(peer->flags,
3540 PEER_FLAG_DISABLE_CONNECTED_CHECK)
3541 && !bgp_flag_check(bgp, BGP_FLAG_DISABLE_NH_CONNECTED_CHK))
3542 connected = 1;
3543 else
3544 connected = 0;
3545
3546 if (bgp_find_or_add_nexthop(bgp, bgp, afi, new, NULL, connected)
3547 || CHECK_FLAG(peer->flags, PEER_FLAG_IS_RFAPI_HD))
3548 bgp_path_info_set_flag(rn, new, BGP_PATH_VALID);
3549 else {
3550 if (BGP_DEBUG(nht, NHT)) {
3551 char buf1[INET6_ADDRSTRLEN];
3552 inet_ntop(AF_INET,
3553 (const void *)&attr_new->nexthop,
3554 buf1, INET6_ADDRSTRLEN);
3555 zlog_debug("%s(%s): NH unresolved",
3556 __FUNCTION__, buf1);
3557 }
3558 bgp_path_info_unset_flag(rn, new, BGP_PATH_VALID);
3559 }
3560 } else
3561 bgp_path_info_set_flag(rn, new, BGP_PATH_VALID);
3562
3563 /* Addpath ID */
3564 new->addpath_rx_id = addpath_id;
3565
3566 /* Increment prefix */
3567 bgp_aggregate_increment(bgp, p, new, afi, safi);
3568
3569 /* Register new BGP information. */
3570 bgp_path_info_add(rn, new);
3571
3572 /* route_node_get lock */
3573 bgp_unlock_node(rn);
3574
3575 #if ENABLE_BGP_VNC
3576 if (safi == SAFI_MPLS_VPN) {
3577 struct bgp_node *prn = NULL;
3578 struct bgp_table *table = NULL;
3579
3580 prn = bgp_node_get(bgp->rib[afi][safi], (struct prefix *)prd);
3581 if (bgp_node_has_bgp_path_info_data(prn)) {
3582 table = bgp_node_get_bgp_table_info(prn);
3583
3584 vnc_import_bgp_add_vnc_host_route_mode_resolve_nve(
3585 bgp, prd, table, p, new);
3586 }
3587 bgp_unlock_node(prn);
3588 }
3589 #endif
3590
3591 /* If maximum prefix count is configured and current prefix
3592 count exeed it. */
3593 if (bgp_maximum_prefix_overflow(peer, afi, safi, 0))
3594 return -1;
3595
3596 /* If this is an EVPN route, process for import. */
3597 if (safi == SAFI_EVPN)
3598 bgp_evpn_import_route(bgp, afi, safi, p, new);
3599
3600 /* Process change. */
3601 bgp_process(bgp, rn, afi, safi);
3602
3603 if (SAFI_UNICAST == safi
3604 && (bgp->inst_type == BGP_INSTANCE_TYPE_VRF
3605 || bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)) {
3606 vpn_leak_from_vrf_update(bgp_get_default(), bgp, new);
3607 }
3608 if ((SAFI_MPLS_VPN == safi)
3609 && (bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)) {
3610
3611 vpn_leak_to_vrf_update(bgp, new);
3612 }
3613 #if ENABLE_BGP_VNC
3614 if (SAFI_MPLS_VPN == safi) {
3615 mpls_label_t label_decoded = decode_label(label);
3616
3617 rfapiProcessUpdate(peer, NULL, p, prd, attr, afi, safi, type,
3618 sub_type, &label_decoded);
3619 }
3620 if (SAFI_ENCAP == safi) {
3621 rfapiProcessUpdate(peer, NULL, p, prd, attr, afi, safi, type,
3622 sub_type, NULL);
3623 }
3624 #endif
3625
3626 return 0;
3627
3628 /* This BGP update is filtered. Log the reason then update BGP
3629 entry. */
3630 filtered:
3631 if (bgp_debug_update(peer, p, NULL, 1)) {
3632 if (!peer->rcvd_attr_printed) {
3633 zlog_debug("%s rcvd UPDATE w/ attr: %s", peer->host,
3634 peer->rcvd_attr_str);
3635 peer->rcvd_attr_printed = 1;
3636 }
3637
3638 bgp_debug_rdpfxpath2str(afi, safi, prd, p, label, num_labels,
3639 addpath_id ? 1 : 0, addpath_id, pfx_buf,
3640 sizeof(pfx_buf));
3641 zlog_debug("%s rcvd UPDATE about %s -- DENIED due to: %s",
3642 peer->host, pfx_buf, reason);
3643 }
3644
3645 if (pi) {
3646 /* If this is an EVPN route, un-import it as it is now filtered.
3647 */
3648 if (safi == SAFI_EVPN)
3649 bgp_evpn_unimport_route(bgp, afi, safi, p, pi);
3650
3651 if (SAFI_UNICAST == safi
3652 && (bgp->inst_type == BGP_INSTANCE_TYPE_VRF
3653 || bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)) {
3654
3655 vpn_leak_from_vrf_withdraw(bgp_get_default(), bgp, pi);
3656 }
3657 if ((SAFI_MPLS_VPN == safi)
3658 && (bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)) {
3659
3660 vpn_leak_to_vrf_withdraw(bgp, pi);
3661 }
3662
3663 bgp_rib_remove(rn, pi, peer, afi, safi);
3664 }
3665
3666 bgp_unlock_node(rn);
3667
3668 #if ENABLE_BGP_VNC
3669 /*
3670 * Filtered update is treated as an implicit withdrawal (see
3671 * bgp_rib_remove()
3672 * a few lines above)
3673 */
3674 if ((SAFI_MPLS_VPN == safi) || (SAFI_ENCAP == safi)) {
3675 rfapiProcessWithdraw(peer, NULL, p, prd, NULL, afi, safi, type,
3676 0);
3677 }
3678 #endif
3679
3680 return 0;
3681 }
3682
3683 int bgp_withdraw(struct peer *peer, struct prefix *p, uint32_t addpath_id,
3684 struct attr *attr, afi_t afi, safi_t safi, int type,
3685 int sub_type, struct prefix_rd *prd, mpls_label_t *label,
3686 uint32_t num_labels, struct bgp_route_evpn *evpn)
3687 {
3688 struct bgp *bgp;
3689 char pfx_buf[BGP_PRD_PATH_STRLEN];
3690 struct bgp_node *rn;
3691 struct bgp_path_info *pi;
3692
3693 #if ENABLE_BGP_VNC
3694 if ((SAFI_MPLS_VPN == safi) || (SAFI_ENCAP == safi)) {
3695 rfapiProcessWithdraw(peer, NULL, p, prd, NULL, afi, safi, type,
3696 0);
3697 }
3698 #endif
3699
3700 bgp = peer->bgp;
3701
3702 /* Lookup node. */
3703 rn = bgp_afi_node_get(bgp->rib[afi][safi], afi, safi, p, prd);
3704
3705 /* If peer is soft reconfiguration enabled. Record input packet for
3706 * further calculation.
3707 *
3708 * Cisco IOS 12.4(24)T4 on session establishment sends withdraws for all
3709 * routes that are filtered. This tanks out Quagga RS pretty badly due
3710 * to
3711 * the iteration over all RS clients.
3712 * Since we need to remove the entry from adj_in anyway, do that first
3713 * and
3714 * if there was no entry, we don't need to do anything more.
3715 */
3716 if (CHECK_FLAG(peer->af_flags[afi][safi], PEER_FLAG_SOFT_RECONFIG)
3717 && peer != bgp->peer_self)
3718 if (!bgp_adj_in_unset(rn, peer, addpath_id)) {
3719 if (bgp_debug_update(peer, p, NULL, 1)) {
3720 bgp_debug_rdpfxpath2str(
3721 afi, safi, prd, p, label, num_labels,
3722 addpath_id ? 1 : 0, addpath_id, pfx_buf,
3723 sizeof(pfx_buf));
3724 zlog_debug(
3725 "%s withdrawing route %s not in adj-in",
3726 peer->host, pfx_buf);
3727 }
3728 bgp_unlock_node(rn);
3729 return 0;
3730 }
3731
3732 /* Lookup withdrawn route. */
3733 for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = pi->next)
3734 if (pi->peer == peer && pi->type == type
3735 && pi->sub_type == sub_type
3736 && pi->addpath_rx_id == addpath_id)
3737 break;
3738
3739 /* Logging. */
3740 if (bgp_debug_update(peer, p, NULL, 1)) {
3741 bgp_debug_rdpfxpath2str(afi, safi, prd, p, label, num_labels,
3742 addpath_id ? 1 : 0, addpath_id, pfx_buf,
3743 sizeof(pfx_buf));
3744 zlog_debug("%s rcvd UPDATE about %s -- withdrawn", peer->host,
3745 pfx_buf);
3746 }
3747
3748 /* Withdraw specified route from routing table. */
3749 if (pi && !CHECK_FLAG(pi->flags, BGP_PATH_HISTORY)) {
3750 bgp_rib_withdraw(rn, pi, peer, afi, safi, prd);
3751 if (SAFI_UNICAST == safi
3752 && (bgp->inst_type == BGP_INSTANCE_TYPE_VRF
3753 || bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)) {
3754 vpn_leak_from_vrf_withdraw(bgp_get_default(), bgp, pi);
3755 }
3756 if ((SAFI_MPLS_VPN == safi)
3757 && (bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)) {
3758
3759 vpn_leak_to_vrf_withdraw(bgp, pi);
3760 }
3761 } else if (bgp_debug_update(peer, p, NULL, 1)) {
3762 bgp_debug_rdpfxpath2str(afi, safi, prd, p, label, num_labels,
3763 addpath_id ? 1 : 0, addpath_id, pfx_buf,
3764 sizeof(pfx_buf));
3765 zlog_debug("%s Can't find the route %s", peer->host, pfx_buf);
3766 }
3767
3768 /* Unlock bgp_node_get() lock. */
3769 bgp_unlock_node(rn);
3770
3771 return 0;
3772 }
3773
3774 void bgp_default_originate(struct peer *peer, afi_t afi, safi_t safi,
3775 int withdraw)
3776 {
3777 struct update_subgroup *subgrp;
3778 subgrp = peer_subgroup(peer, afi, safi);
3779 subgroup_default_originate(subgrp, withdraw);
3780 }
3781
3782
3783 /*
3784 * bgp_stop_announce_route_timer
3785 */
3786 void bgp_stop_announce_route_timer(struct peer_af *paf)
3787 {
3788 if (!paf->t_announce_route)
3789 return;
3790
3791 THREAD_TIMER_OFF(paf->t_announce_route);
3792 }
3793
3794 /*
3795 * bgp_announce_route_timer_expired
3796 *
3797 * Callback that is invoked when the route announcement timer for a
3798 * peer_af expires.
3799 */
3800 static int bgp_announce_route_timer_expired(struct thread *t)
3801 {
3802 struct peer_af *paf;
3803 struct peer *peer;
3804
3805 paf = THREAD_ARG(t);
3806 peer = paf->peer;
3807
3808 if (peer->status != Established)
3809 return 0;
3810
3811 if (!peer->afc_nego[paf->afi][paf->safi])
3812 return 0;
3813
3814 peer_af_announce_route(paf, 1);
3815 return 0;
3816 }
3817
3818 /*
3819 * bgp_announce_route
3820 *
3821 * *Triggers* announcement of routes of a given AFI/SAFI to a peer.
3822 */
3823 void bgp_announce_route(struct peer *peer, afi_t afi, safi_t safi)
3824 {
3825 struct peer_af *paf;
3826 struct update_subgroup *subgrp;
3827
3828 paf = peer_af_find(peer, afi, safi);
3829 if (!paf)
3830 return;
3831 subgrp = PAF_SUBGRP(paf);
3832
3833 /*
3834 * Ignore if subgroup doesn't exist (implies AF is not negotiated)
3835 * or a refresh has already been triggered.
3836 */
3837 if (!subgrp || paf->t_announce_route)
3838 return;
3839
3840 /*
3841 * Start a timer to stagger/delay the announce. This serves
3842 * two purposes - announcement can potentially be combined for
3843 * multiple peers and the announcement doesn't happen in the
3844 * vty context.
3845 */
3846 thread_add_timer_msec(bm->master, bgp_announce_route_timer_expired, paf,
3847 (subgrp->peer_count == 1)
3848 ? BGP_ANNOUNCE_ROUTE_SHORT_DELAY_MS
3849 : BGP_ANNOUNCE_ROUTE_DELAY_MS,
3850 &paf->t_announce_route);
3851 }
3852
3853 /*
3854 * Announce routes from all AF tables to a peer.
3855 *
3856 * This should ONLY be called when there is a need to refresh the
3857 * routes to the peer based on a policy change for this peer alone
3858 * or a route refresh request received from the peer.
3859 * The operation will result in splitting the peer from its existing
3860 * subgroups and putting it in new subgroups.
3861 */
3862 void bgp_announce_route_all(struct peer *peer)
3863 {
3864 afi_t afi;
3865 safi_t safi;
3866
3867 FOREACH_AFI_SAFI (afi, safi)
3868 bgp_announce_route(peer, afi, safi);
3869 }
3870
3871 static void bgp_soft_reconfig_table(struct peer *peer, afi_t afi, safi_t safi,
3872 struct bgp_table *table,
3873 struct prefix_rd *prd)
3874 {
3875 int ret;
3876 struct bgp_node *rn;
3877 struct bgp_adj_in *ain;
3878
3879 if (!table)
3880 table = peer->bgp->rib[afi][safi];
3881
3882 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn))
3883 for (ain = rn->adj_in; ain; ain = ain->next) {
3884 if (ain->peer != peer)
3885 continue;
3886
3887 struct bgp_path_info *pi =
3888 bgp_node_get_bgp_path_info(rn);
3889 uint32_t num_labels = 0;
3890 mpls_label_t *label_pnt = NULL;
3891 struct bgp_route_evpn evpn;
3892
3893 if (pi && pi->extra)
3894 num_labels = pi->extra->num_labels;
3895 if (num_labels)
3896 label_pnt = &pi->extra->label[0];
3897 if (pi)
3898 memcpy(&evpn, &pi->attr->evpn_overlay,
3899 sizeof(evpn));
3900 else
3901 memset(&evpn, 0, sizeof(evpn));
3902
3903 ret = bgp_update(peer, &rn->p, ain->addpath_rx_id,
3904 ain->attr, afi, safi, ZEBRA_ROUTE_BGP,
3905 BGP_ROUTE_NORMAL, prd, label_pnt,
3906 num_labels, 1, &evpn);
3907
3908 if (ret < 0) {
3909 bgp_unlock_node(rn);
3910 return;
3911 }
3912 }
3913 }
3914
3915 void bgp_soft_reconfig_in(struct peer *peer, afi_t afi, safi_t safi)
3916 {
3917 struct bgp_node *rn;
3918 struct bgp_table *table;
3919
3920 if (peer->status != Established)
3921 return;
3922
3923 if ((safi != SAFI_MPLS_VPN) && (safi != SAFI_ENCAP)
3924 && (safi != SAFI_EVPN))
3925 bgp_soft_reconfig_table(peer, afi, safi, NULL, NULL);
3926 else
3927 for (rn = bgp_table_top(peer->bgp->rib[afi][safi]); rn;
3928 rn = bgp_route_next(rn)) {
3929 table = bgp_node_get_bgp_table_info(rn);
3930 if (table != NULL) {
3931 struct prefix_rd prd;
3932
3933 prd.family = AF_UNSPEC;
3934 prd.prefixlen = 64;
3935 memcpy(&prd.val, rn->p.u.val, 8);
3936
3937 bgp_soft_reconfig_table(peer, afi, safi, table,
3938 &prd);
3939 }
3940 }
3941 }
3942
3943
3944 struct bgp_clear_node_queue {
3945 struct bgp_node *rn;
3946 };
3947
3948 static wq_item_status bgp_clear_route_node(struct work_queue *wq, void *data)
3949 {
3950 struct bgp_clear_node_queue *cnq = data;
3951 struct bgp_node *rn = cnq->rn;
3952 struct peer *peer = wq->spec.data;
3953 struct bgp_path_info *pi;
3954 struct bgp *bgp;
3955 afi_t afi = bgp_node_table(rn)->afi;
3956 safi_t safi = bgp_node_table(rn)->safi;
3957
3958 assert(rn && peer);
3959 bgp = peer->bgp;
3960
3961 /* It is possible that we have multiple paths for a prefix from a peer
3962 * if that peer is using AddPath.
3963 */
3964 for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = pi->next) {
3965 if (pi->peer != peer)
3966 continue;
3967
3968 /* graceful restart STALE flag set. */
3969 if (CHECK_FLAG(peer->sflags, PEER_STATUS_NSF_WAIT)
3970 && peer->nsf[afi][safi]
3971 && !CHECK_FLAG(pi->flags, BGP_PATH_STALE)
3972 && !CHECK_FLAG(pi->flags, BGP_PATH_UNUSEABLE))
3973 bgp_path_info_set_flag(rn, pi, BGP_PATH_STALE);
3974 else {
3975 /* If this is an EVPN route, process for
3976 * un-import. */
3977 if (safi == SAFI_EVPN)
3978 bgp_evpn_unimport_route(bgp, afi, safi, &rn->p,
3979 pi);
3980 /* Handle withdraw for VRF route-leaking and L3VPN */
3981 if (SAFI_UNICAST == safi
3982 && (bgp->inst_type == BGP_INSTANCE_TYPE_VRF ||
3983 bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)) {
3984 vpn_leak_from_vrf_withdraw(bgp_get_default(),
3985 bgp, pi);
3986 }
3987 if (SAFI_MPLS_VPN == safi &&
3988 bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT) {
3989 vpn_leak_to_vrf_withdraw(bgp, pi);
3990 }
3991
3992 bgp_rib_remove(rn, pi, peer, afi, safi);
3993 }
3994 }
3995 return WQ_SUCCESS;
3996 }
3997
3998 static void bgp_clear_node_queue_del(struct work_queue *wq, void *data)
3999 {
4000 struct bgp_clear_node_queue *cnq = data;
4001 struct bgp_node *rn = cnq->rn;
4002 struct bgp_table *table = bgp_node_table(rn);
4003
4004 bgp_unlock_node(rn);
4005 bgp_table_unlock(table);
4006 XFREE(MTYPE_BGP_CLEAR_NODE_QUEUE, cnq);
4007 }
4008
4009 static void bgp_clear_node_complete(struct work_queue *wq)
4010 {
4011 struct peer *peer = wq->spec.data;
4012
4013 /* Tickle FSM to start moving again */
4014 BGP_EVENT_ADD(peer, Clearing_Completed);
4015
4016 peer_unlock(peer); /* bgp_clear_route */
4017 }
4018
4019 static void bgp_clear_node_queue_init(struct peer *peer)
4020 {
4021 char wname[sizeof("clear xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx")];
4022
4023 snprintf(wname, sizeof(wname), "clear %s", peer->host);
4024 #undef CLEAR_QUEUE_NAME_LEN
4025
4026 peer->clear_node_queue = work_queue_new(bm->master, wname);
4027 peer->clear_node_queue->spec.hold = 10;
4028 peer->clear_node_queue->spec.workfunc = &bgp_clear_route_node;
4029 peer->clear_node_queue->spec.del_item_data = &bgp_clear_node_queue_del;
4030 peer->clear_node_queue->spec.completion_func = &bgp_clear_node_complete;
4031 peer->clear_node_queue->spec.max_retries = 0;
4032
4033 /* we only 'lock' this peer reference when the queue is actually active
4034 */
4035 peer->clear_node_queue->spec.data = peer;
4036 }
4037
4038 static void bgp_clear_route_table(struct peer *peer, afi_t afi, safi_t safi,
4039 struct bgp_table *table)
4040 {
4041 struct bgp_node *rn;
4042 int force = bm->process_main_queue ? 0 : 1;
4043
4044 if (!table)
4045 table = peer->bgp->rib[afi][safi];
4046
4047 /* If still no table => afi/safi isn't configured at all or smth. */
4048 if (!table)
4049 return;
4050
4051 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
4052 struct bgp_path_info *pi, *next;
4053 struct bgp_adj_in *ain;
4054 struct bgp_adj_in *ain_next;
4055
4056 /* XXX:TODO: This is suboptimal, every non-empty route_node is
4057 * queued for every clearing peer, regardless of whether it is
4058 * relevant to the peer at hand.
4059 *
4060 * Overview: There are 3 different indices which need to be
4061 * scrubbed, potentially, when a peer is removed:
4062 *
4063 * 1 peer's routes visible via the RIB (ie accepted routes)
4064 * 2 peer's routes visible by the (optional) peer's adj-in index
4065 * 3 other routes visible by the peer's adj-out index
4066 *
4067 * 3 there is no hurry in scrubbing, once the struct peer is
4068 * removed from bgp->peer, we could just GC such deleted peer's
4069 * adj-outs at our leisure.
4070 *
4071 * 1 and 2 must be 'scrubbed' in some way, at least made
4072 * invisible via RIB index before peer session is allowed to be
4073 * brought back up. So one needs to know when such a 'search' is
4074 * complete.
4075 *
4076 * Ideally:
4077 *
4078 * - there'd be a single global queue or a single RIB walker
4079 * - rather than tracking which route_nodes still need to be
4080 * examined on a peer basis, we'd track which peers still
4081 * aren't cleared
4082 *
4083 * Given that our per-peer prefix-counts now should be reliable,
4084 * this may actually be achievable. It doesn't seem to be a huge
4085 * problem at this time,
4086 *
4087 * It is possible that we have multiple paths for a prefix from
4088 * a peer
4089 * if that peer is using AddPath.
4090 */
4091 ain = rn->adj_in;
4092 while (ain) {
4093 ain_next = ain->next;
4094
4095 if (ain->peer == peer) {
4096 bgp_adj_in_remove(rn, ain);
4097 bgp_unlock_node(rn);
4098 }
4099
4100 ain = ain_next;
4101 }
4102
4103 for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = next) {
4104 next = pi->next;
4105 if (pi->peer != peer)
4106 continue;
4107
4108 if (force)
4109 bgp_path_info_reap(rn, pi);
4110 else {
4111 struct bgp_clear_node_queue *cnq;
4112
4113 /* both unlocked in bgp_clear_node_queue_del */
4114 bgp_table_lock(bgp_node_table(rn));
4115 bgp_lock_node(rn);
4116 cnq = XCALLOC(
4117 MTYPE_BGP_CLEAR_NODE_QUEUE,
4118 sizeof(struct bgp_clear_node_queue));
4119 cnq->rn = rn;
4120 work_queue_add(peer->clear_node_queue, cnq);
4121 break;
4122 }
4123 }
4124 }
4125 return;
4126 }
4127
4128 void bgp_clear_route(struct peer *peer, afi_t afi, safi_t safi)
4129 {
4130 struct bgp_node *rn;
4131 struct bgp_table *table;
4132
4133 if (peer->clear_node_queue == NULL)
4134 bgp_clear_node_queue_init(peer);
4135
4136 /* bgp_fsm.c keeps sessions in state Clearing, not transitioning to
4137 * Idle until it receives a Clearing_Completed event. This protects
4138 * against peers which flap faster than we can we clear, which could
4139 * lead to:
4140 *
4141 * a) race with routes from the new session being installed before
4142 * clear_route_node visits the node (to delete the route of that
4143 * peer)
4144 * b) resource exhaustion, clear_route_node likely leads to an entry
4145 * on the process_main queue. Fast-flapping could cause that queue
4146 * to grow and grow.
4147 */
4148
4149 /* lock peer in assumption that clear-node-queue will get nodes; if so,
4150 * the unlock will happen upon work-queue completion; other wise, the
4151 * unlock happens at the end of this function.
4152 */
4153 if (!peer->clear_node_queue->thread)
4154 peer_lock(peer);
4155
4156 if (safi != SAFI_MPLS_VPN && safi != SAFI_ENCAP && safi != SAFI_EVPN)
4157 bgp_clear_route_table(peer, afi, safi, NULL);
4158 else
4159 for (rn = bgp_table_top(peer->bgp->rib[afi][safi]); rn;
4160 rn = bgp_route_next(rn)) {
4161 table = bgp_node_get_bgp_table_info(rn);
4162 if (!table)
4163 continue;
4164
4165 bgp_clear_route_table(peer, afi, safi, table);
4166 }
4167
4168 /* unlock if no nodes got added to the clear-node-queue. */
4169 if (!peer->clear_node_queue->thread)
4170 peer_unlock(peer);
4171 }
4172
4173 void bgp_clear_route_all(struct peer *peer)
4174 {
4175 afi_t afi;
4176 safi_t safi;
4177
4178 FOREACH_AFI_SAFI (afi, safi)
4179 bgp_clear_route(peer, afi, safi);
4180
4181 #if ENABLE_BGP_VNC
4182 rfapiProcessPeerDown(peer);
4183 #endif
4184 }
4185
4186 void bgp_clear_adj_in(struct peer *peer, afi_t afi, safi_t safi)
4187 {
4188 struct bgp_table *table;
4189 struct bgp_node *rn;
4190 struct bgp_adj_in *ain;
4191 struct bgp_adj_in *ain_next;
4192
4193 table = peer->bgp->rib[afi][safi];
4194
4195 /* It is possible that we have multiple paths for a prefix from a peer
4196 * if that peer is using AddPath.
4197 */
4198 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
4199 ain = rn->adj_in;
4200
4201 while (ain) {
4202 ain_next = ain->next;
4203
4204 if (ain->peer == peer) {
4205 bgp_adj_in_remove(rn, ain);
4206 bgp_unlock_node(rn);
4207 }
4208
4209 ain = ain_next;
4210 }
4211 }
4212 }
4213
4214 void bgp_clear_stale_route(struct peer *peer, afi_t afi, safi_t safi)
4215 {
4216 struct bgp_node *rn;
4217 struct bgp_path_info *pi;
4218 struct bgp_table *table;
4219
4220 if (safi == SAFI_MPLS_VPN) {
4221 for (rn = bgp_table_top(peer->bgp->rib[afi][safi]); rn;
4222 rn = bgp_route_next(rn)) {
4223 struct bgp_node *rm;
4224
4225 /* look for neighbor in tables */
4226 table = bgp_node_get_bgp_table_info(rn);
4227 if (!table)
4228 continue;
4229
4230 for (rm = bgp_table_top(table); rm;
4231 rm = bgp_route_next(rm))
4232 for (pi = bgp_node_get_bgp_path_info(rm); pi;
4233 pi = pi->next) {
4234 if (pi->peer != peer)
4235 continue;
4236 if (!CHECK_FLAG(pi->flags,
4237 BGP_PATH_STALE))
4238 break;
4239
4240 bgp_rib_remove(rm, pi, peer, afi, safi);
4241 break;
4242 }
4243 }
4244 } else {
4245 for (rn = bgp_table_top(peer->bgp->rib[afi][safi]); rn;
4246 rn = bgp_route_next(rn))
4247 for (pi = bgp_node_get_bgp_path_info(rn); pi;
4248 pi = pi->next) {
4249 if (pi->peer != peer)
4250 continue;
4251 if (!CHECK_FLAG(pi->flags, BGP_PATH_STALE))
4252 break;
4253 bgp_rib_remove(rn, pi, peer, afi, safi);
4254 break;
4255 }
4256 }
4257 }
4258
4259 int bgp_outbound_policy_exists(struct peer *peer, struct bgp_filter *filter)
4260 {
4261 if (peer->sort == BGP_PEER_EBGP
4262 && (ROUTE_MAP_OUT_NAME(filter) || PREFIX_LIST_OUT_NAME(filter)
4263 || FILTER_LIST_OUT_NAME(filter)
4264 || DISTRIBUTE_OUT_NAME(filter)))
4265 return 1;
4266 return 0;
4267 }
4268
4269 int bgp_inbound_policy_exists(struct peer *peer, struct bgp_filter *filter)
4270 {
4271 if (peer->sort == BGP_PEER_EBGP
4272 && (ROUTE_MAP_IN_NAME(filter) || PREFIX_LIST_IN_NAME(filter)
4273 || FILTER_LIST_IN_NAME(filter)
4274 || DISTRIBUTE_IN_NAME(filter)))
4275 return 1;
4276 return 0;
4277 }
4278
4279 static void bgp_cleanup_table(struct bgp *bgp, struct bgp_table *table,
4280 safi_t safi)
4281 {
4282 struct bgp_node *rn;
4283 struct bgp_path_info *pi;
4284 struct bgp_path_info *next;
4285
4286 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn))
4287 for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = next) {
4288 next = pi->next;
4289
4290 /* Unimport EVPN routes from VRFs */
4291 if (safi == SAFI_EVPN)
4292 bgp_evpn_unimport_route(bgp, AFI_L2VPN,
4293 SAFI_EVPN,
4294 &rn->p, pi);
4295
4296 if (CHECK_FLAG(pi->flags, BGP_PATH_SELECTED)
4297 && pi->type == ZEBRA_ROUTE_BGP
4298 && (pi->sub_type == BGP_ROUTE_NORMAL
4299 || pi->sub_type == BGP_ROUTE_AGGREGATE
4300 || pi->sub_type == BGP_ROUTE_IMPORTED)) {
4301
4302 if (bgp_fibupd_safi(safi))
4303 bgp_zebra_withdraw(&rn->p, pi, bgp,
4304 safi);
4305 bgp_path_info_reap(rn, pi);
4306 }
4307 }
4308 }
4309
4310 /* Delete all kernel routes. */
4311 void bgp_cleanup_routes(struct bgp *bgp)
4312 {
4313 afi_t afi;
4314 struct bgp_node *rn;
4315 struct bgp_table *table;
4316
4317 for (afi = AFI_IP; afi < AFI_MAX; ++afi) {
4318 if (afi == AFI_L2VPN)
4319 continue;
4320 bgp_cleanup_table(bgp, bgp->rib[afi][SAFI_UNICAST],
4321 SAFI_UNICAST);
4322 /*
4323 * VPN and ENCAP and EVPN tables are two-level (RD is top level)
4324 */
4325 if (afi != AFI_L2VPN) {
4326 safi_t safi;
4327 safi = SAFI_MPLS_VPN;
4328 for (rn = bgp_table_top(bgp->rib[afi][safi]); rn;
4329 rn = bgp_route_next(rn)) {
4330 table = bgp_node_get_bgp_table_info(rn);
4331 if (table != NULL) {
4332 bgp_cleanup_table(bgp, table, safi);
4333 bgp_table_finish(&table);
4334 bgp_node_set_bgp_table_info(rn, NULL);
4335 bgp_unlock_node(rn);
4336 }
4337 }
4338 safi = SAFI_ENCAP;
4339 for (rn = bgp_table_top(bgp->rib[afi][safi]); rn;
4340 rn = bgp_route_next(rn)) {
4341 table = bgp_node_get_bgp_table_info(rn);
4342 if (table != NULL) {
4343 bgp_cleanup_table(bgp, table, safi);
4344 bgp_table_finish(&table);
4345 bgp_node_set_bgp_table_info(rn, NULL);
4346 bgp_unlock_node(rn);
4347 }
4348 }
4349 }
4350 }
4351 for (rn = bgp_table_top(bgp->rib[AFI_L2VPN][SAFI_EVPN]); rn;
4352 rn = bgp_route_next(rn)) {
4353 table = bgp_node_get_bgp_table_info(rn);
4354 if (table != NULL) {
4355 bgp_cleanup_table(bgp, table, SAFI_EVPN);
4356 bgp_table_finish(&table);
4357 bgp_node_set_bgp_table_info(rn, NULL);
4358 bgp_unlock_node(rn);
4359 }
4360 }
4361 }
4362
4363 void bgp_reset(void)
4364 {
4365 vty_reset();
4366 bgp_zclient_reset();
4367 access_list_reset();
4368 prefix_list_reset();
4369 }
4370
4371 static int bgp_addpath_encode_rx(struct peer *peer, afi_t afi, safi_t safi)
4372 {
4373 return (CHECK_FLAG(peer->af_cap[afi][safi], PEER_CAP_ADDPATH_AF_RX_ADV)
4374 && CHECK_FLAG(peer->af_cap[afi][safi],
4375 PEER_CAP_ADDPATH_AF_TX_RCV));
4376 }
4377
4378 /* Parse NLRI stream. Withdraw NLRI is recognized by NULL attr
4379 value. */
4380 int bgp_nlri_parse_ip(struct peer *peer, struct attr *attr,
4381 struct bgp_nlri *packet)
4382 {
4383 uint8_t *pnt;
4384 uint8_t *lim;
4385 struct prefix p;
4386 int psize;
4387 int ret;
4388 afi_t afi;
4389 safi_t safi;
4390 int addpath_encoded;
4391 uint32_t addpath_id;
4392
4393 pnt = packet->nlri;
4394 lim = pnt + packet->length;
4395 afi = packet->afi;
4396 safi = packet->safi;
4397 addpath_id = 0;
4398 addpath_encoded = bgp_addpath_encode_rx(peer, afi, safi);
4399
4400 /* RFC4771 6.3 The NLRI field in the UPDATE message is checked for
4401 syntactic validity. If the field is syntactically incorrect,
4402 then the Error Subcode is set to Invalid Network Field. */
4403 for (; pnt < lim; pnt += psize) {
4404 /* Clear prefix structure. */
4405 memset(&p, 0, sizeof(struct prefix));
4406
4407 if (addpath_encoded) {
4408
4409 /* When packet overflow occurs return immediately. */
4410 if (pnt + BGP_ADDPATH_ID_LEN > lim)
4411 return BGP_NLRI_PARSE_ERROR_PACKET_OVERFLOW;
4412
4413 addpath_id = ntohl(*((uint32_t *)pnt));
4414 pnt += BGP_ADDPATH_ID_LEN;
4415 }
4416
4417 /* Fetch prefix length. */
4418 p.prefixlen = *pnt++;
4419 /* afi/safi validity already verified by caller,
4420 * bgp_update_receive */
4421 p.family = afi2family(afi);
4422
4423 /* Prefix length check. */
4424 if (p.prefixlen > prefix_blen(&p) * 8) {
4425 flog_err(
4426 EC_BGP_UPDATE_RCV,
4427 "%s [Error] Update packet error (wrong prefix length %d for afi %u)",
4428 peer->host, p.prefixlen, packet->afi);
4429 return BGP_NLRI_PARSE_ERROR_PREFIX_LENGTH;
4430 }
4431
4432 /* Packet size overflow check. */
4433 psize = PSIZE(p.prefixlen);
4434
4435 /* When packet overflow occur return immediately. */
4436 if (pnt + psize > lim) {
4437 flog_err(
4438 EC_BGP_UPDATE_RCV,
4439 "%s [Error] Update packet error (prefix length %d overflows packet)",
4440 peer->host, p.prefixlen);
4441 return BGP_NLRI_PARSE_ERROR_PACKET_OVERFLOW;
4442 }
4443
4444 /* Defensive coding, double-check the psize fits in a struct
4445 * prefix */
4446 if (psize > (ssize_t)sizeof(p.u)) {
4447 flog_err(
4448 EC_BGP_UPDATE_RCV,
4449 "%s [Error] Update packet error (prefix length %d too large for prefix storage %zu)",
4450 peer->host, p.prefixlen, sizeof(p.u));
4451 return BGP_NLRI_PARSE_ERROR_PACKET_LENGTH;
4452 }
4453
4454 /* Fetch prefix from NLRI packet. */
4455 memcpy(p.u.val, pnt, psize);
4456
4457 /* Check address. */
4458 if (afi == AFI_IP && safi == SAFI_UNICAST) {
4459 if (IN_CLASSD(ntohl(p.u.prefix4.s_addr))) {
4460 /* From RFC4271 Section 6.3:
4461 *
4462 * If a prefix in the NLRI field is semantically
4463 * incorrect
4464 * (e.g., an unexpected multicast IP address),
4465 * an error SHOULD
4466 * be logged locally, and the prefix SHOULD be
4467 * ignored.
4468 */
4469 flog_err(
4470 EC_BGP_UPDATE_RCV,
4471 "%s: IPv4 unicast NLRI is multicast address %s, ignoring",
4472 peer->host, inet_ntoa(p.u.prefix4));
4473 continue;
4474 }
4475 }
4476
4477 /* Check address. */
4478 if (afi == AFI_IP6 && safi == SAFI_UNICAST) {
4479 if (IN6_IS_ADDR_LINKLOCAL(&p.u.prefix6)) {
4480 char buf[BUFSIZ];
4481
4482 flog_err(
4483 EC_BGP_UPDATE_RCV,
4484 "%s: IPv6 unicast NLRI is link-local address %s, ignoring",
4485 peer->host,
4486 inet_ntop(AF_INET6, &p.u.prefix6, buf,
4487 BUFSIZ));
4488
4489 continue;
4490 }
4491 if (IN6_IS_ADDR_MULTICAST(&p.u.prefix6)) {
4492 char buf[BUFSIZ];
4493
4494 flog_err(
4495 EC_BGP_UPDATE_RCV,
4496 "%s: IPv6 unicast NLRI is multicast address %s, ignoring",
4497 peer->host,
4498 inet_ntop(AF_INET6, &p.u.prefix6, buf,
4499 BUFSIZ));
4500
4501 continue;
4502 }
4503 }
4504
4505 /* Normal process. */
4506 if (attr)
4507 ret = bgp_update(peer, &p, addpath_id, attr, afi, safi,
4508 ZEBRA_ROUTE_BGP, BGP_ROUTE_NORMAL,
4509 NULL, NULL, 0, 0, NULL);
4510 else
4511 ret = bgp_withdraw(peer, &p, addpath_id, attr, afi,
4512 safi, ZEBRA_ROUTE_BGP,
4513 BGP_ROUTE_NORMAL, NULL, NULL, 0,
4514 NULL);
4515
4516 /* Do not send BGP notification twice when maximum-prefix count
4517 * overflow. */
4518 if (CHECK_FLAG(peer->sflags, PEER_STATUS_PREFIX_OVERFLOW))
4519 return BGP_NLRI_PARSE_ERROR_PREFIX_OVERFLOW;
4520
4521 /* Address family configuration mismatch. */
4522 if (ret < 0)
4523 return BGP_NLRI_PARSE_ERROR_ADDRESS_FAMILY;
4524 }
4525
4526 /* Packet length consistency check. */
4527 if (pnt != lim) {
4528 flog_err(
4529 EC_BGP_UPDATE_RCV,
4530 "%s [Error] Update packet error (prefix length mismatch with total length)",
4531 peer->host);
4532 return BGP_NLRI_PARSE_ERROR_PACKET_LENGTH;
4533 }
4534
4535 return BGP_NLRI_PARSE_OK;
4536 }
4537
4538 static struct bgp_static *bgp_static_new(void)
4539 {
4540 return XCALLOC(MTYPE_BGP_STATIC, sizeof(struct bgp_static));
4541 }
4542
4543 static void bgp_static_free(struct bgp_static *bgp_static)
4544 {
4545 XFREE(MTYPE_ROUTE_MAP_NAME, bgp_static->rmap.name);
4546 route_map_counter_decrement(bgp_static->rmap.map);
4547
4548 XFREE(MTYPE_ATTR, bgp_static->eth_s_id);
4549 XFREE(MTYPE_BGP_STATIC, bgp_static);
4550 }
4551
4552 void bgp_static_update(struct bgp *bgp, struct prefix *p,
4553 struct bgp_static *bgp_static, afi_t afi, safi_t safi)
4554 {
4555 struct bgp_node *rn;
4556 struct bgp_path_info *pi;
4557 struct bgp_path_info *new;
4558 struct bgp_path_info rmap_path;
4559 struct attr attr;
4560 struct attr *attr_new;
4561 int ret;
4562 #if ENABLE_BGP_VNC
4563 int vnc_implicit_withdraw = 0;
4564 #endif
4565
4566 assert(bgp_static);
4567 if (!bgp_static)
4568 return;
4569
4570 rn = bgp_afi_node_get(bgp->rib[afi][safi], afi, safi, p, NULL);
4571
4572 bgp_attr_default_set(&attr, BGP_ORIGIN_IGP);
4573
4574 attr.nexthop = bgp_static->igpnexthop;
4575 attr.med = bgp_static->igpmetric;
4576 attr.flag |= ATTR_FLAG_BIT(BGP_ATTR_MULTI_EXIT_DISC);
4577
4578 if (bgp_static->atomic)
4579 attr.flag |= ATTR_FLAG_BIT(BGP_ATTR_ATOMIC_AGGREGATE);
4580
4581 /* Store label index, if required. */
4582 if (bgp_static->label_index != BGP_INVALID_LABEL_INDEX) {
4583 attr.label_index = bgp_static->label_index;
4584 attr.flag |= ATTR_FLAG_BIT(BGP_ATTR_PREFIX_SID);
4585 }
4586
4587 /* Apply route-map. */
4588 if (bgp_static->rmap.name) {
4589 struct attr attr_tmp = attr;
4590
4591 memset(&rmap_path, 0, sizeof(struct bgp_path_info));
4592 rmap_path.peer = bgp->peer_self;
4593 rmap_path.attr = &attr_tmp;
4594
4595 SET_FLAG(bgp->peer_self->rmap_type, PEER_RMAP_TYPE_NETWORK);
4596
4597 ret = route_map_apply(bgp_static->rmap.map, p, RMAP_BGP,
4598 &rmap_path);
4599
4600 bgp->peer_self->rmap_type = 0;
4601
4602 if (ret == RMAP_DENYMATCH) {
4603 /* Free uninterned attribute. */
4604 bgp_attr_flush(&attr_tmp);
4605
4606 /* Unintern original. */
4607 aspath_unintern(&attr.aspath);
4608 bgp_static_withdraw(bgp, p, afi, safi);
4609 return;
4610 }
4611
4612 if (bgp_flag_check(bgp, BGP_FLAG_GRACEFUL_SHUTDOWN))
4613 bgp_attr_add_gshut_community(&attr_tmp);
4614
4615 attr_new = bgp_attr_intern(&attr_tmp);
4616 } else {
4617
4618 if (bgp_flag_check(bgp, BGP_FLAG_GRACEFUL_SHUTDOWN))
4619 bgp_attr_add_gshut_community(&attr);
4620
4621 attr_new = bgp_attr_intern(&attr);
4622 }
4623
4624 for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = pi->next)
4625 if (pi->peer == bgp->peer_self && pi->type == ZEBRA_ROUTE_BGP
4626 && pi->sub_type == BGP_ROUTE_STATIC)
4627 break;
4628
4629 if (pi) {
4630 if (attrhash_cmp(pi->attr, attr_new)
4631 && !CHECK_FLAG(pi->flags, BGP_PATH_REMOVED)
4632 && !bgp_flag_check(bgp, BGP_FLAG_FORCE_STATIC_PROCESS)) {
4633 bgp_unlock_node(rn);
4634 bgp_attr_unintern(&attr_new);
4635 aspath_unintern(&attr.aspath);
4636 return;
4637 } else {
4638 /* The attribute is changed. */
4639 bgp_path_info_set_flag(rn, pi, BGP_PATH_ATTR_CHANGED);
4640
4641 /* Rewrite BGP route information. */
4642 if (CHECK_FLAG(pi->flags, BGP_PATH_REMOVED))
4643 bgp_path_info_restore(rn, pi);
4644 else
4645 bgp_aggregate_decrement(bgp, p, pi, afi, safi);
4646 #if ENABLE_BGP_VNC
4647 if ((afi == AFI_IP || afi == AFI_IP6)
4648 && (safi == SAFI_UNICAST)) {
4649 if (CHECK_FLAG(pi->flags, BGP_PATH_SELECTED)) {
4650 /*
4651 * Implicit withdraw case.
4652 * We have to do this before pi is
4653 * changed
4654 */
4655 ++vnc_implicit_withdraw;
4656 vnc_import_bgp_del_route(bgp, p, pi);
4657 vnc_import_bgp_exterior_del_route(
4658 bgp, p, pi);
4659 }
4660 }
4661 #endif
4662 bgp_attr_unintern(&pi->attr);
4663 pi->attr = attr_new;
4664 pi->uptime = bgp_clock();
4665 #if ENABLE_BGP_VNC
4666 if ((afi == AFI_IP || afi == AFI_IP6)
4667 && (safi == SAFI_UNICAST)) {
4668 if (vnc_implicit_withdraw) {
4669 vnc_import_bgp_add_route(bgp, p, pi);
4670 vnc_import_bgp_exterior_add_route(
4671 bgp, p, pi);
4672 }
4673 }
4674 #endif
4675
4676 /* Nexthop reachability check. */
4677 if (bgp_flag_check(bgp, BGP_FLAG_IMPORT_CHECK)
4678 && (safi == SAFI_UNICAST
4679 || safi == SAFI_LABELED_UNICAST)) {
4680
4681 struct bgp *bgp_nexthop = bgp;
4682
4683 if (pi->extra && pi->extra->bgp_orig)
4684 bgp_nexthop = pi->extra->bgp_orig;
4685
4686 if (bgp_find_or_add_nexthop(bgp, bgp_nexthop,
4687 afi, pi, NULL, 0))
4688 bgp_path_info_set_flag(rn, pi,
4689 BGP_PATH_VALID);
4690 else {
4691 if (BGP_DEBUG(nht, NHT)) {
4692 char buf1[INET6_ADDRSTRLEN];
4693 inet_ntop(p->family,
4694 &p->u.prefix, buf1,
4695 INET6_ADDRSTRLEN);
4696 zlog_debug(
4697 "%s(%s): Route not in table, not advertising",
4698 __FUNCTION__, buf1);
4699 }
4700 bgp_path_info_unset_flag(
4701 rn, pi, BGP_PATH_VALID);
4702 }
4703 } else {
4704 /* Delete the NHT structure if any, if we're
4705 * toggling between
4706 * enabling/disabling import check. We
4707 * deregister the route
4708 * from NHT to avoid overloading NHT and the
4709 * process interaction
4710 */
4711 bgp_unlink_nexthop(pi);
4712 bgp_path_info_set_flag(rn, pi, BGP_PATH_VALID);
4713 }
4714 /* Process change. */
4715 bgp_aggregate_increment(bgp, p, pi, afi, safi);
4716 bgp_process(bgp, rn, afi, safi);
4717
4718 if (SAFI_UNICAST == safi
4719 && (bgp->inst_type == BGP_INSTANCE_TYPE_VRF
4720 || bgp->inst_type
4721 == BGP_INSTANCE_TYPE_DEFAULT)) {
4722 vpn_leak_from_vrf_update(bgp_get_default(), bgp,
4723 pi);
4724 }
4725
4726 bgp_unlock_node(rn);
4727 aspath_unintern(&attr.aspath);
4728 return;
4729 }
4730 }
4731
4732 /* Make new BGP info. */
4733 new = info_make(ZEBRA_ROUTE_BGP, BGP_ROUTE_STATIC, 0, bgp->peer_self,
4734 attr_new, rn);
4735 /* Nexthop reachability check. */
4736 if (bgp_flag_check(bgp, BGP_FLAG_IMPORT_CHECK)
4737 && (safi == SAFI_UNICAST || safi == SAFI_LABELED_UNICAST)) {
4738 if (bgp_find_or_add_nexthop(bgp, bgp, afi, new, NULL, 0))
4739 bgp_path_info_set_flag(rn, new, BGP_PATH_VALID);
4740 else {
4741 if (BGP_DEBUG(nht, NHT)) {
4742 char buf1[INET6_ADDRSTRLEN];
4743 inet_ntop(p->family, &p->u.prefix, buf1,
4744 INET6_ADDRSTRLEN);
4745 zlog_debug(
4746 "%s(%s): Route not in table, not advertising",
4747 __FUNCTION__, buf1);
4748 }
4749 bgp_path_info_unset_flag(rn, new, BGP_PATH_VALID);
4750 }
4751 } else {
4752 /* Delete the NHT structure if any, if we're toggling between
4753 * enabling/disabling import check. We deregister the route
4754 * from NHT to avoid overloading NHT and the process interaction
4755 */
4756 bgp_unlink_nexthop(new);
4757
4758 bgp_path_info_set_flag(rn, new, BGP_PATH_VALID);
4759 }
4760
4761 /* Aggregate address increment. */
4762 bgp_aggregate_increment(bgp, p, new, afi, safi);
4763
4764 /* Register new BGP information. */
4765 bgp_path_info_add(rn, new);
4766
4767 /* route_node_get lock */
4768 bgp_unlock_node(rn);
4769
4770 /* Process change. */
4771 bgp_process(bgp, rn, afi, safi);
4772
4773 if (SAFI_UNICAST == safi
4774 && (bgp->inst_type == BGP_INSTANCE_TYPE_VRF
4775 || bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)) {
4776 vpn_leak_from_vrf_update(bgp_get_default(), bgp, new);
4777 }
4778
4779 /* Unintern original. */
4780 aspath_unintern(&attr.aspath);
4781 }
4782
4783 void bgp_static_withdraw(struct bgp *bgp, struct prefix *p, afi_t afi,
4784 safi_t safi)
4785 {
4786 struct bgp_node *rn;
4787 struct bgp_path_info *pi;
4788
4789 rn = bgp_afi_node_get(bgp->rib[afi][safi], afi, safi, p, NULL);
4790
4791 /* Check selected route and self inserted route. */
4792 for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = pi->next)
4793 if (pi->peer == bgp->peer_self && pi->type == ZEBRA_ROUTE_BGP
4794 && pi->sub_type == BGP_ROUTE_STATIC)
4795 break;
4796
4797 /* Withdraw static BGP route from routing table. */
4798 if (pi) {
4799 if (SAFI_UNICAST == safi
4800 && (bgp->inst_type == BGP_INSTANCE_TYPE_VRF
4801 || bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)) {
4802 vpn_leak_from_vrf_withdraw(bgp_get_default(), bgp, pi);
4803 }
4804 bgp_aggregate_decrement(bgp, p, pi, afi, safi);
4805 bgp_unlink_nexthop(pi);
4806 bgp_path_info_delete(rn, pi);
4807 bgp_process(bgp, rn, afi, safi);
4808 }
4809
4810 /* Unlock bgp_node_lookup. */
4811 bgp_unlock_node(rn);
4812 }
4813
4814 /*
4815 * Used for SAFI_MPLS_VPN and SAFI_ENCAP
4816 */
4817 static void bgp_static_withdraw_safi(struct bgp *bgp, struct prefix *p,
4818 afi_t afi, safi_t safi,
4819 struct prefix_rd *prd)
4820 {
4821 struct bgp_node *rn;
4822 struct bgp_path_info *pi;
4823
4824 rn = bgp_afi_node_get(bgp->rib[afi][safi], afi, safi, p, prd);
4825
4826 /* Check selected route and self inserted route. */
4827 for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = pi->next)
4828 if (pi->peer == bgp->peer_self && pi->type == ZEBRA_ROUTE_BGP
4829 && pi->sub_type == BGP_ROUTE_STATIC)
4830 break;
4831
4832 /* Withdraw static BGP route from routing table. */
4833 if (pi) {
4834 #if ENABLE_BGP_VNC
4835 rfapiProcessWithdraw(
4836 pi->peer, NULL, p, prd, pi->attr, afi, safi, pi->type,
4837 1); /* Kill, since it is an administrative change */
4838 #endif
4839 if (SAFI_MPLS_VPN == safi
4840 && bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT) {
4841 vpn_leak_to_vrf_withdraw(bgp, pi);
4842 }
4843 bgp_aggregate_decrement(bgp, p, pi, afi, safi);
4844 bgp_path_info_delete(rn, pi);
4845 bgp_process(bgp, rn, afi, safi);
4846 }
4847
4848 /* Unlock bgp_node_lookup. */
4849 bgp_unlock_node(rn);
4850 }
4851
4852 static void bgp_static_update_safi(struct bgp *bgp, struct prefix *p,
4853 struct bgp_static *bgp_static, afi_t afi,
4854 safi_t safi)
4855 {
4856 struct bgp_node *rn;
4857 struct bgp_path_info *new;
4858 struct attr *attr_new;
4859 struct attr attr = {0};
4860 struct bgp_path_info *pi;
4861 #if ENABLE_BGP_VNC
4862 mpls_label_t label = 0;
4863 #endif
4864 uint32_t num_labels = 0;
4865 union gw_addr add;
4866
4867 assert(bgp_static);
4868
4869 if (bgp_static->label != MPLS_INVALID_LABEL)
4870 num_labels = 1;
4871 rn = bgp_afi_node_get(bgp->rib[afi][safi], afi, safi, p,
4872 &bgp_static->prd);
4873
4874 bgp_attr_default_set(&attr, BGP_ORIGIN_IGP);
4875
4876 attr.nexthop = bgp_static->igpnexthop;
4877 attr.med = bgp_static->igpmetric;
4878 attr.flag |= ATTR_FLAG_BIT(BGP_ATTR_MULTI_EXIT_DISC);
4879
4880 if ((safi == SAFI_EVPN) || (safi == SAFI_MPLS_VPN)
4881 || (safi == SAFI_ENCAP)) {
4882 if (afi == AFI_IP) {
4883 attr.mp_nexthop_global_in = bgp_static->igpnexthop;
4884 attr.mp_nexthop_len = IPV4_MAX_BYTELEN;
4885 }
4886 }
4887 if (afi == AFI_L2VPN) {
4888 if (bgp_static->gatewayIp.family == AF_INET)
4889 add.ipv4.s_addr =
4890 bgp_static->gatewayIp.u.prefix4.s_addr;
4891 else if (bgp_static->gatewayIp.family == AF_INET6)
4892 memcpy(&(add.ipv6), &(bgp_static->gatewayIp.u.prefix6),
4893 sizeof(struct in6_addr));
4894 overlay_index_update(&attr, bgp_static->eth_s_id, &add);
4895 if (bgp_static->encap_tunneltype == BGP_ENCAP_TYPE_VXLAN) {
4896 struct bgp_encap_type_vxlan bet;
4897 memset(&bet, 0, sizeof(struct bgp_encap_type_vxlan));
4898 bet.vnid = p->u.prefix_evpn.prefix_addr.eth_tag;
4899 bgp_encap_type_vxlan_to_tlv(&bet, &attr);
4900 }
4901 if (bgp_static->router_mac) {
4902 bgp_add_routermac_ecom(&attr, bgp_static->router_mac);
4903 }
4904 }
4905 /* Apply route-map. */
4906 if (bgp_static->rmap.name) {
4907 struct attr attr_tmp = attr;
4908 struct bgp_path_info rmap_path;
4909 int ret;
4910
4911 rmap_path.peer = bgp->peer_self;
4912 rmap_path.attr = &attr_tmp;
4913
4914 SET_FLAG(bgp->peer_self->rmap_type, PEER_RMAP_TYPE_NETWORK);
4915
4916 ret = route_map_apply(bgp_static->rmap.map, p, RMAP_BGP,
4917 &rmap_path);
4918
4919 bgp->peer_self->rmap_type = 0;
4920
4921 if (ret == RMAP_DENYMATCH) {
4922 /* Free uninterned attribute. */
4923 bgp_attr_flush(&attr_tmp);
4924
4925 /* Unintern original. */
4926 aspath_unintern(&attr.aspath);
4927 bgp_static_withdraw_safi(bgp, p, afi, safi,
4928 &bgp_static->prd);
4929 return;
4930 }
4931
4932 attr_new = bgp_attr_intern(&attr_tmp);
4933 } else {
4934 attr_new = bgp_attr_intern(&attr);
4935 }
4936
4937 for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = pi->next)
4938 if (pi->peer == bgp->peer_self && pi->type == ZEBRA_ROUTE_BGP
4939 && pi->sub_type == BGP_ROUTE_STATIC)
4940 break;
4941
4942 if (pi) {
4943 memset(&add, 0, sizeof(union gw_addr));
4944 if (attrhash_cmp(pi->attr, attr_new)
4945 && overlay_index_equal(afi, pi, bgp_static->eth_s_id, &add)
4946 && !CHECK_FLAG(pi->flags, BGP_PATH_REMOVED)) {
4947 bgp_unlock_node(rn);
4948 bgp_attr_unintern(&attr_new);
4949 aspath_unintern(&attr.aspath);
4950 return;
4951 } else {
4952 /* The attribute is changed. */
4953 bgp_path_info_set_flag(rn, pi, BGP_PATH_ATTR_CHANGED);
4954
4955 /* Rewrite BGP route information. */
4956 if (CHECK_FLAG(pi->flags, BGP_PATH_REMOVED))
4957 bgp_path_info_restore(rn, pi);
4958 else
4959 bgp_aggregate_decrement(bgp, p, pi, afi, safi);
4960 bgp_attr_unintern(&pi->attr);
4961 pi->attr = attr_new;
4962 pi->uptime = bgp_clock();
4963 #if ENABLE_BGP_VNC
4964 if (pi->extra)
4965 label = decode_label(&pi->extra->label[0]);
4966 #endif
4967
4968 /* Process change. */
4969 bgp_aggregate_increment(bgp, p, pi, afi, safi);
4970 bgp_process(bgp, rn, afi, safi);
4971
4972 if (SAFI_MPLS_VPN == safi
4973 && bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT) {
4974 vpn_leak_to_vrf_update(bgp, pi);
4975 }
4976 #if ENABLE_BGP_VNC
4977 rfapiProcessUpdate(pi->peer, NULL, p, &bgp_static->prd,
4978 pi->attr, afi, safi, pi->type,
4979 pi->sub_type, &label);
4980 #endif
4981 bgp_unlock_node(rn);
4982 aspath_unintern(&attr.aspath);
4983 return;
4984 }
4985 }
4986
4987
4988 /* Make new BGP info. */
4989 new = info_make(ZEBRA_ROUTE_BGP, BGP_ROUTE_STATIC, 0, bgp->peer_self,
4990 attr_new, rn);
4991 SET_FLAG(new->flags, BGP_PATH_VALID);
4992 new->extra = bgp_path_info_extra_new();
4993 if (num_labels) {
4994 new->extra->label[0] = bgp_static->label;
4995 new->extra->num_labels = num_labels;
4996 }
4997 #if ENABLE_BGP_VNC
4998 label = decode_label(&bgp_static->label);
4999 #endif
5000
5001 /* Aggregate address increment. */
5002 bgp_aggregate_increment(bgp, p, new, afi, safi);
5003
5004 /* Register new BGP information. */
5005 bgp_path_info_add(rn, new);
5006 /* route_node_get lock */
5007 bgp_unlock_node(rn);
5008
5009 /* Process change. */
5010 bgp_process(bgp, rn, afi, safi);
5011
5012 if (SAFI_MPLS_VPN == safi
5013 && bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT) {
5014 vpn_leak_to_vrf_update(bgp, new);
5015 }
5016 #if ENABLE_BGP_VNC
5017 rfapiProcessUpdate(new->peer, NULL, p, &bgp_static->prd, new->attr, afi,
5018 safi, new->type, new->sub_type, &label);
5019 #endif
5020
5021 /* Unintern original. */
5022 aspath_unintern(&attr.aspath);
5023 }
5024
5025 /* Configure static BGP network. When user don't run zebra, static
5026 route should be installed as valid. */
5027 static int bgp_static_set(struct vty *vty, const char *negate,
5028 const char *ip_str, afi_t afi, safi_t safi,
5029 const char *rmap, int backdoor, uint32_t label_index)
5030 {
5031 VTY_DECLVAR_CONTEXT(bgp, bgp);
5032 int ret;
5033 struct prefix p;
5034 struct bgp_static *bgp_static;
5035 struct bgp_node *rn;
5036 uint8_t need_update = 0;
5037
5038 /* Convert IP prefix string to struct prefix. */
5039 ret = str2prefix(ip_str, &p);
5040 if (!ret) {
5041 vty_out(vty, "%% Malformed prefix\n");
5042 return CMD_WARNING_CONFIG_FAILED;
5043 }
5044 if (afi == AFI_IP6 && IN6_IS_ADDR_LINKLOCAL(&p.u.prefix6)) {
5045 vty_out(vty, "%% Malformed prefix (link-local address)\n");
5046 return CMD_WARNING_CONFIG_FAILED;
5047 }
5048
5049 apply_mask(&p);
5050
5051 if (negate) {
5052
5053 /* Set BGP static route configuration. */
5054 rn = bgp_node_lookup(bgp->route[afi][safi], &p);
5055
5056 if (!rn) {
5057 vty_out(vty, "%% Can't find static route specified\n");
5058 return CMD_WARNING_CONFIG_FAILED;
5059 }
5060
5061 bgp_static = bgp_node_get_bgp_static_info(rn);
5062
5063 if ((label_index != BGP_INVALID_LABEL_INDEX)
5064 && (label_index != bgp_static->label_index)) {
5065 vty_out(vty,
5066 "%% label-index doesn't match static route\n");
5067 return CMD_WARNING_CONFIG_FAILED;
5068 }
5069
5070 if ((rmap && bgp_static->rmap.name)
5071 && strcmp(rmap, bgp_static->rmap.name)) {
5072 vty_out(vty,
5073 "%% route-map name doesn't match static route\n");
5074 return CMD_WARNING_CONFIG_FAILED;
5075 }
5076
5077 /* Update BGP RIB. */
5078 if (!bgp_static->backdoor)
5079 bgp_static_withdraw(bgp, &p, afi, safi);
5080
5081 /* Clear configuration. */
5082 bgp_static_free(bgp_static);
5083 bgp_node_set_bgp_static_info(rn, NULL);
5084 bgp_unlock_node(rn);
5085 bgp_unlock_node(rn);
5086 } else {
5087
5088 /* Set BGP static route configuration. */
5089 rn = bgp_node_get(bgp->route[afi][safi], &p);
5090
5091 bgp_static = bgp_node_get_bgp_static_info(rn);
5092 if (bgp_static) {
5093 /* Configuration change. */
5094 /* Label index cannot be changed. */
5095 if (bgp_static->label_index != label_index) {
5096 vty_out(vty, "%% cannot change label-index\n");
5097 return CMD_WARNING_CONFIG_FAILED;
5098 }
5099
5100 /* Check previous routes are installed into BGP. */
5101 if (bgp_static->valid
5102 && bgp_static->backdoor != backdoor)
5103 need_update = 1;
5104
5105 bgp_static->backdoor = backdoor;
5106
5107 if (rmap) {
5108 XFREE(MTYPE_ROUTE_MAP_NAME,
5109 bgp_static->rmap.name);
5110 route_map_counter_decrement(
5111 bgp_static->rmap.map);
5112 bgp_static->rmap.name =
5113 XSTRDUP(MTYPE_ROUTE_MAP_NAME, rmap);
5114 bgp_static->rmap.map =
5115 route_map_lookup_by_name(rmap);
5116 route_map_counter_increment(
5117 bgp_static->rmap.map);
5118 } else {
5119 XFREE(MTYPE_ROUTE_MAP_NAME,
5120 bgp_static->rmap.name);
5121 route_map_counter_decrement(
5122 bgp_static->rmap.map);
5123 bgp_static->rmap.name = NULL;
5124 bgp_static->rmap.map = NULL;
5125 bgp_static->valid = 0;
5126 }
5127 bgp_unlock_node(rn);
5128 } else {
5129 /* New configuration. */
5130 bgp_static = bgp_static_new();
5131 bgp_static->backdoor = backdoor;
5132 bgp_static->valid = 0;
5133 bgp_static->igpmetric = 0;
5134 bgp_static->igpnexthop.s_addr = 0;
5135 bgp_static->label_index = label_index;
5136
5137 if (rmap) {
5138 XFREE(MTYPE_ROUTE_MAP_NAME,
5139 bgp_static->rmap.name);
5140 route_map_counter_decrement(
5141 bgp_static->rmap.map);
5142 bgp_static->rmap.name =
5143 XSTRDUP(MTYPE_ROUTE_MAP_NAME, rmap);
5144 bgp_static->rmap.map =
5145 route_map_lookup_by_name(rmap);
5146 route_map_counter_increment(
5147 bgp_static->rmap.map);
5148 }
5149 bgp_node_set_bgp_static_info(rn, bgp_static);
5150 }
5151
5152 bgp_static->valid = 1;
5153 if (need_update)
5154 bgp_static_withdraw(bgp, &p, afi, safi);
5155
5156 if (!bgp_static->backdoor)
5157 bgp_static_update(bgp, &p, bgp_static, afi, safi);
5158 }
5159
5160 return CMD_SUCCESS;
5161 }
5162
5163 void bgp_static_add(struct bgp *bgp)
5164 {
5165 afi_t afi;
5166 safi_t safi;
5167 struct bgp_node *rn;
5168 struct bgp_node *rm;
5169 struct bgp_table *table;
5170 struct bgp_static *bgp_static;
5171
5172 FOREACH_AFI_SAFI (afi, safi)
5173 for (rn = bgp_table_top(bgp->route[afi][safi]); rn;
5174 rn = bgp_route_next(rn)) {
5175 if (!bgp_node_has_bgp_path_info_data(rn))
5176 continue;
5177
5178 if ((safi == SAFI_MPLS_VPN) || (safi == SAFI_ENCAP)
5179 || (safi == SAFI_EVPN)) {
5180 table = bgp_node_get_bgp_table_info(rn);
5181
5182 for (rm = bgp_table_top(table); rm;
5183 rm = bgp_route_next(rm)) {
5184 bgp_static =
5185 bgp_node_get_bgp_static_info(
5186 rm);
5187 bgp_static_update_safi(bgp, &rm->p,
5188 bgp_static, afi,
5189 safi);
5190 }
5191 } else {
5192 bgp_static_update(
5193 bgp, &rn->p,
5194 bgp_node_get_bgp_static_info(rn), afi,
5195 safi);
5196 }
5197 }
5198 }
5199
5200 /* Called from bgp_delete(). Delete all static routes from the BGP
5201 instance. */
5202 void bgp_static_delete(struct bgp *bgp)
5203 {
5204 afi_t afi;
5205 safi_t safi;
5206 struct bgp_node *rn;
5207 struct bgp_node *rm;
5208 struct bgp_table *table;
5209 struct bgp_static *bgp_static;
5210
5211 FOREACH_AFI_SAFI (afi, safi)
5212 for (rn = bgp_table_top(bgp->route[afi][safi]); rn;
5213 rn = bgp_route_next(rn)) {
5214 if (!bgp_node_has_bgp_path_info_data(rn))
5215 continue;
5216
5217 if ((safi == SAFI_MPLS_VPN) || (safi == SAFI_ENCAP)
5218 || (safi == SAFI_EVPN)) {
5219 table = bgp_node_get_bgp_table_info(rn);
5220
5221 for (rm = bgp_table_top(table); rm;
5222 rm = bgp_route_next(rm)) {
5223 bgp_static =
5224 bgp_node_get_bgp_static_info(
5225 rm);
5226 if (!bgp_static)
5227 continue;
5228
5229 bgp_static_withdraw_safi(
5230 bgp, &rm->p, AFI_IP, safi,
5231 (struct prefix_rd *)&rn->p);
5232 bgp_static_free(bgp_static);
5233 bgp_node_set_bgp_static_info(rn, NULL);
5234 bgp_unlock_node(rn);
5235 }
5236 } else {
5237 bgp_static = bgp_node_get_bgp_static_info(rn);
5238 bgp_static_withdraw(bgp, &rn->p, afi, safi);
5239 bgp_static_free(bgp_static);
5240 bgp_node_set_bgp_static_info(rn, NULL);
5241 bgp_unlock_node(rn);
5242 }
5243 }
5244 }
5245
5246 void bgp_static_redo_import_check(struct bgp *bgp)
5247 {
5248 afi_t afi;
5249 safi_t safi;
5250 struct bgp_node *rn;
5251 struct bgp_node *rm;
5252 struct bgp_table *table;
5253 struct bgp_static *bgp_static;
5254
5255 /* Use this flag to force reprocessing of the route */
5256 bgp_flag_set(bgp, BGP_FLAG_FORCE_STATIC_PROCESS);
5257 FOREACH_AFI_SAFI (afi, safi) {
5258 for (rn = bgp_table_top(bgp->route[afi][safi]); rn;
5259 rn = bgp_route_next(rn)) {
5260 if (!bgp_node_has_bgp_path_info_data(rn))
5261 continue;
5262
5263 if ((safi == SAFI_MPLS_VPN) || (safi == SAFI_ENCAP)
5264 || (safi == SAFI_EVPN)) {
5265 table = bgp_node_get_bgp_table_info(rn);
5266
5267 for (rm = bgp_table_top(table); rm;
5268 rm = bgp_route_next(rm)) {
5269 bgp_static =
5270 bgp_node_get_bgp_static_info(
5271 rm);
5272 bgp_static_update_safi(bgp, &rm->p,
5273 bgp_static, afi,
5274 safi);
5275 }
5276 } else {
5277 bgp_static = bgp_node_get_bgp_static_info(rn);
5278 bgp_static_update(bgp, &rn->p, bgp_static, afi,
5279 safi);
5280 }
5281 }
5282 }
5283 bgp_flag_unset(bgp, BGP_FLAG_FORCE_STATIC_PROCESS);
5284 }
5285
5286 static void bgp_purge_af_static_redist_routes(struct bgp *bgp, afi_t afi,
5287 safi_t safi)
5288 {
5289 struct bgp_table *table;
5290 struct bgp_node *rn;
5291 struct bgp_path_info *pi;
5292
5293 table = bgp->rib[afi][safi];
5294 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
5295 for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = pi->next) {
5296 if (pi->peer == bgp->peer_self
5297 && ((pi->type == ZEBRA_ROUTE_BGP
5298 && pi->sub_type == BGP_ROUTE_STATIC)
5299 || (pi->type != ZEBRA_ROUTE_BGP
5300 && pi->sub_type
5301 == BGP_ROUTE_REDISTRIBUTE))) {
5302 bgp_aggregate_decrement(bgp, &rn->p, pi, afi,
5303 safi);
5304 bgp_unlink_nexthop(pi);
5305 bgp_path_info_delete(rn, pi);
5306 bgp_process(bgp, rn, afi, safi);
5307 }
5308 }
5309 }
5310 }
5311
5312 /*
5313 * Purge all networks and redistributed routes from routing table.
5314 * Invoked upon the instance going down.
5315 */
5316 void bgp_purge_static_redist_routes(struct bgp *bgp)
5317 {
5318 afi_t afi;
5319 safi_t safi;
5320
5321 FOREACH_AFI_SAFI (afi, safi)
5322 bgp_purge_af_static_redist_routes(bgp, afi, safi);
5323 }
5324
5325 /*
5326 * gpz 110624
5327 * Currently this is used to set static routes for VPN and ENCAP.
5328 * I think it can probably be factored with bgp_static_set.
5329 */
5330 int bgp_static_set_safi(afi_t afi, safi_t safi, struct vty *vty,
5331 const char *ip_str, const char *rd_str,
5332 const char *label_str, const char *rmap_str,
5333 int evpn_type, const char *esi, const char *gwip,
5334 const char *ethtag, const char *routermac)
5335 {
5336 VTY_DECLVAR_CONTEXT(bgp, bgp);
5337 int ret;
5338 struct prefix p;
5339 struct prefix_rd prd;
5340 struct bgp_node *prn;
5341 struct bgp_node *rn;
5342 struct bgp_table *table;
5343 struct bgp_static *bgp_static;
5344 mpls_label_t label = MPLS_INVALID_LABEL;
5345 struct prefix gw_ip;
5346
5347 /* validate ip prefix */
5348 ret = str2prefix(ip_str, &p);
5349 if (!ret) {
5350 vty_out(vty, "%% Malformed prefix\n");
5351 return CMD_WARNING_CONFIG_FAILED;
5352 }
5353 apply_mask(&p);
5354 if ((afi == AFI_L2VPN)
5355 && (bgp_build_evpn_prefix(evpn_type,
5356 ethtag != NULL ? atol(ethtag) : 0, &p))) {
5357 vty_out(vty, "%% L2VPN prefix could not be forged\n");
5358 return CMD_WARNING_CONFIG_FAILED;
5359 }
5360
5361 ret = str2prefix_rd(rd_str, &prd);
5362 if (!ret) {
5363 vty_out(vty, "%% Malformed rd\n");
5364 return CMD_WARNING_CONFIG_FAILED;
5365 }
5366
5367 if (label_str) {
5368 unsigned long label_val;
5369 label_val = strtoul(label_str, NULL, 10);
5370 encode_label(label_val, &label);
5371 }
5372
5373 if (safi == SAFI_EVPN) {
5374 if (esi && str2esi(esi, NULL) == 0) {
5375 vty_out(vty, "%% Malformed ESI\n");
5376 return CMD_WARNING_CONFIG_FAILED;
5377 }
5378 if (routermac && prefix_str2mac(routermac, NULL) == 0) {
5379 vty_out(vty, "%% Malformed Router MAC\n");
5380 return CMD_WARNING_CONFIG_FAILED;
5381 }
5382 if (gwip) {
5383 memset(&gw_ip, 0, sizeof(struct prefix));
5384 ret = str2prefix(gwip, &gw_ip);
5385 if (!ret) {
5386 vty_out(vty, "%% Malformed GatewayIp\n");
5387 return CMD_WARNING_CONFIG_FAILED;
5388 }
5389 if ((gw_ip.family == AF_INET
5390 && is_evpn_prefix_ipaddr_v6(
5391 (struct prefix_evpn *)&p))
5392 || (gw_ip.family == AF_INET6
5393 && is_evpn_prefix_ipaddr_v4(
5394 (struct prefix_evpn *)&p))) {
5395 vty_out(vty,
5396 "%% GatewayIp family differs with IP prefix\n");
5397 return CMD_WARNING_CONFIG_FAILED;
5398 }
5399 }
5400 }
5401 prn = bgp_node_get(bgp->route[afi][safi], (struct prefix *)&prd);
5402 if (!bgp_node_has_bgp_path_info_data(prn))
5403 bgp_node_set_bgp_table_info(prn,
5404 bgp_table_init(bgp, afi, safi));
5405 table = bgp_node_get_bgp_table_info(prn);
5406
5407 rn = bgp_node_get(table, &p);
5408
5409 if (bgp_node_has_bgp_path_info_data(rn)) {
5410 vty_out(vty, "%% Same network configuration exists\n");
5411 bgp_unlock_node(rn);
5412 } else {
5413 /* New configuration. */
5414 bgp_static = bgp_static_new();
5415 bgp_static->backdoor = 0;
5416 bgp_static->valid = 0;
5417 bgp_static->igpmetric = 0;
5418 bgp_static->igpnexthop.s_addr = 0;
5419 bgp_static->label = label;
5420 bgp_static->prd = prd;
5421
5422 if (rmap_str) {
5423 XFREE(MTYPE_ROUTE_MAP_NAME, bgp_static->rmap.name);
5424 route_map_counter_decrement(bgp_static->rmap.map);
5425 bgp_static->rmap.name =
5426 XSTRDUP(MTYPE_ROUTE_MAP_NAME, rmap_str);
5427 bgp_static->rmap.map =
5428 route_map_lookup_by_name(rmap_str);
5429 route_map_counter_increment(bgp_static->rmap.map);
5430 }
5431
5432 if (safi == SAFI_EVPN) {
5433 if (esi) {
5434 bgp_static->eth_s_id =
5435 XCALLOC(MTYPE_ATTR,
5436 sizeof(struct eth_segment_id));
5437 str2esi(esi, bgp_static->eth_s_id);
5438 }
5439 if (routermac) {
5440 bgp_static->router_mac =
5441 XCALLOC(MTYPE_ATTR, ETH_ALEN + 1);
5442 (void)prefix_str2mac(routermac,
5443 bgp_static->router_mac);
5444 }
5445 if (gwip)
5446 prefix_copy(&bgp_static->gatewayIp, &gw_ip);
5447 }
5448 bgp_node_set_bgp_static_info(rn, bgp_static);
5449
5450 bgp_static->valid = 1;
5451 bgp_static_update_safi(bgp, &p, bgp_static, afi, safi);
5452 }
5453
5454 return CMD_SUCCESS;
5455 }
5456
5457 /* Configure static BGP network. */
5458 int bgp_static_unset_safi(afi_t afi, safi_t safi, struct vty *vty,
5459 const char *ip_str, const char *rd_str,
5460 const char *label_str, int evpn_type, const char *esi,
5461 const char *gwip, const char *ethtag)
5462 {
5463 VTY_DECLVAR_CONTEXT(bgp, bgp);
5464 int ret;
5465 struct prefix p;
5466 struct prefix_rd prd;
5467 struct bgp_node *prn;
5468 struct bgp_node *rn;
5469 struct bgp_table *table;
5470 struct bgp_static *bgp_static;
5471 mpls_label_t label = MPLS_INVALID_LABEL;
5472
5473 /* Convert IP prefix string to struct prefix. */
5474 ret = str2prefix(ip_str, &p);
5475 if (!ret) {
5476 vty_out(vty, "%% Malformed prefix\n");
5477 return CMD_WARNING_CONFIG_FAILED;
5478 }
5479 apply_mask(&p);
5480 if ((afi == AFI_L2VPN)
5481 && (bgp_build_evpn_prefix(evpn_type,
5482 ethtag != NULL ? atol(ethtag) : 0, &p))) {
5483 vty_out(vty, "%% L2VPN prefix could not be forged\n");
5484 return CMD_WARNING_CONFIG_FAILED;
5485 }
5486 ret = str2prefix_rd(rd_str, &prd);
5487 if (!ret) {
5488 vty_out(vty, "%% Malformed rd\n");
5489 return CMD_WARNING_CONFIG_FAILED;
5490 }
5491
5492 if (label_str) {
5493 unsigned long label_val;
5494 label_val = strtoul(label_str, NULL, 10);
5495 encode_label(label_val, &label);
5496 }
5497
5498 prn = bgp_node_get(bgp->route[afi][safi], (struct prefix *)&prd);
5499 if (!bgp_node_has_bgp_path_info_data(prn))
5500 bgp_node_set_bgp_table_info(prn,
5501 bgp_table_init(bgp, afi, safi));
5502 else
5503 bgp_unlock_node(prn);
5504 table = bgp_node_get_bgp_table_info(prn);
5505
5506 rn = bgp_node_lookup(table, &p);
5507
5508 if (rn) {
5509 bgp_static_withdraw_safi(bgp, &p, afi, safi, &prd);
5510
5511 bgp_static = bgp_node_get_bgp_static_info(rn);
5512 bgp_static_free(bgp_static);
5513 bgp_node_set_bgp_static_info(rn, NULL);
5514 bgp_unlock_node(rn);
5515 bgp_unlock_node(rn);
5516 } else
5517 vty_out(vty, "%% Can't find the route\n");
5518
5519 return CMD_SUCCESS;
5520 }
5521
5522 static int bgp_table_map_set(struct vty *vty, afi_t afi, safi_t safi,
5523 const char *rmap_name)
5524 {
5525 VTY_DECLVAR_CONTEXT(bgp, bgp);
5526 struct bgp_rmap *rmap;
5527
5528 rmap = &bgp->table_map[afi][safi];
5529 if (rmap_name) {
5530 XFREE(MTYPE_ROUTE_MAP_NAME, rmap->name);
5531 route_map_counter_decrement(rmap->map);
5532 rmap->name = XSTRDUP(MTYPE_ROUTE_MAP_NAME, rmap_name);
5533 rmap->map = route_map_lookup_by_name(rmap_name);
5534 route_map_counter_increment(rmap->map);
5535 } else {
5536 XFREE(MTYPE_ROUTE_MAP_NAME, rmap->name);
5537 route_map_counter_decrement(rmap->map);
5538 rmap->name = NULL;
5539 rmap->map = NULL;
5540 }
5541
5542 if (bgp_fibupd_safi(safi))
5543 bgp_zebra_announce_table(bgp, afi, safi);
5544
5545 return CMD_SUCCESS;
5546 }
5547
5548 static int bgp_table_map_unset(struct vty *vty, afi_t afi, safi_t safi,
5549 const char *rmap_name)
5550 {
5551 VTY_DECLVAR_CONTEXT(bgp, bgp);
5552 struct bgp_rmap *rmap;
5553
5554 rmap = &bgp->table_map[afi][safi];
5555 XFREE(MTYPE_ROUTE_MAP_NAME, rmap->name);
5556 route_map_counter_decrement(rmap->map);
5557 rmap->name = NULL;
5558 rmap->map = NULL;
5559
5560 if (bgp_fibupd_safi(safi))
5561 bgp_zebra_announce_table(bgp, afi, safi);
5562
5563 return CMD_SUCCESS;
5564 }
5565
5566 void bgp_config_write_table_map(struct vty *vty, struct bgp *bgp, afi_t afi,
5567 safi_t safi)
5568 {
5569 if (bgp->table_map[afi][safi].name) {
5570 vty_out(vty, " table-map %s\n",
5571 bgp->table_map[afi][safi].name);
5572 }
5573 }
5574
5575 DEFUN (bgp_table_map,
5576 bgp_table_map_cmd,
5577 "table-map WORD",
5578 "BGP table to RIB route download filter\n"
5579 "Name of the route map\n")
5580 {
5581 int idx_word = 1;
5582 return bgp_table_map_set(vty, bgp_node_afi(vty), bgp_node_safi(vty),
5583 argv[idx_word]->arg);
5584 }
5585 DEFUN (no_bgp_table_map,
5586 no_bgp_table_map_cmd,
5587 "no table-map WORD",
5588 NO_STR
5589 "BGP table to RIB route download filter\n"
5590 "Name of the route map\n")
5591 {
5592 int idx_word = 2;
5593 return bgp_table_map_unset(vty, bgp_node_afi(vty), bgp_node_safi(vty),
5594 argv[idx_word]->arg);
5595 }
5596
5597 DEFPY(bgp_network,
5598 bgp_network_cmd,
5599 "[no] network \
5600 <A.B.C.D/M$prefix|A.B.C.D$address [mask A.B.C.D$netmask]> \
5601 [{route-map WORD$map_name|label-index (0-1048560)$label_index| \
5602 backdoor$backdoor}]",
5603 NO_STR
5604 "Specify a network to announce via BGP\n"
5605 "IPv4 prefix\n"
5606 "Network number\n"
5607 "Network mask\n"
5608 "Network mask\n"
5609 "Route-map to modify the attributes\n"
5610 "Name of the route map\n"
5611 "Label index to associate with the prefix\n"
5612 "Label index value\n"
5613 "Specify a BGP backdoor route\n")
5614 {
5615 char addr_prefix_str[BUFSIZ];
5616
5617 if (address_str) {
5618 int ret;
5619
5620 ret = netmask_str2prefix_str(address_str, netmask_str,
5621 addr_prefix_str);
5622 if (!ret) {
5623 vty_out(vty, "%% Inconsistent address and mask\n");
5624 return CMD_WARNING_CONFIG_FAILED;
5625 }
5626 }
5627
5628 return bgp_static_set(
5629 vty, no, address_str ? addr_prefix_str : prefix_str, AFI_IP,
5630 bgp_node_safi(vty), map_name, backdoor ? 1 : 0,
5631 label_index ? (uint32_t)label_index : BGP_INVALID_LABEL_INDEX);
5632 }
5633
5634 DEFPY(ipv6_bgp_network,
5635 ipv6_bgp_network_cmd,
5636 "[no] network X:X::X:X/M$prefix \
5637 [{route-map WORD$map_name|label-index (0-1048560)$label_index}]",
5638 NO_STR
5639 "Specify a network to announce via BGP\n"
5640 "IPv6 prefix\n"
5641 "Route-map to modify the attributes\n"
5642 "Name of the route map\n"
5643 "Label index to associate with the prefix\n"
5644 "Label index value\n")
5645 {
5646 return bgp_static_set(
5647 vty, no, prefix_str, AFI_IP6, bgp_node_safi(vty), map_name, 0,
5648 label_index ? (uint32_t)label_index : BGP_INVALID_LABEL_INDEX);
5649 }
5650
5651 static struct bgp_aggregate *bgp_aggregate_new(void)
5652 {
5653 return XCALLOC(MTYPE_BGP_AGGREGATE, sizeof(struct bgp_aggregate));
5654 }
5655
5656 static void bgp_aggregate_free(struct bgp_aggregate *aggregate)
5657 {
5658 XFREE(MTYPE_BGP_AGGREGATE, aggregate);
5659 }
5660
5661 static int bgp_aggregate_info_same(struct bgp_path_info *pi, uint8_t origin,
5662 struct aspath *aspath,
5663 struct community *comm,
5664 struct ecommunity *ecomm,
5665 struct lcommunity *lcomm)
5666 {
5667 static struct aspath *ae = NULL;
5668
5669 if (!ae)
5670 ae = aspath_empty();
5671
5672 if (!pi)
5673 return 0;
5674
5675 if (origin != pi->attr->origin)
5676 return 0;
5677
5678 if (!aspath_cmp(pi->attr->aspath, (aspath) ? aspath : ae))
5679 return 0;
5680
5681 if (!community_cmp(pi->attr->community, comm))
5682 return 0;
5683
5684 if (!ecommunity_cmp(pi->attr->ecommunity, ecomm))
5685 return 0;
5686
5687 if (!lcommunity_cmp(pi->attr->lcommunity, lcomm))
5688 return 0;
5689
5690 if (!CHECK_FLAG(pi->flags, BGP_PATH_VALID))
5691 return 0;
5692
5693 return 1;
5694 }
5695
5696 static void bgp_aggregate_install(struct bgp *bgp, afi_t afi, safi_t safi,
5697 struct prefix *p, uint8_t origin,
5698 struct aspath *aspath,
5699 struct community *community,
5700 struct ecommunity *ecommunity,
5701 struct lcommunity *lcommunity,
5702 uint8_t atomic_aggregate,
5703 struct bgp_aggregate *aggregate)
5704 {
5705 struct bgp_node *rn;
5706 struct bgp_table *table;
5707 struct bgp_path_info *pi, *orig, *new;
5708
5709 table = bgp->rib[afi][safi];
5710
5711 rn = bgp_node_get(table, p);
5712
5713 for (orig = pi = bgp_node_get_bgp_path_info(rn); pi; pi = pi->next)
5714 if (pi->peer == bgp->peer_self && pi->type == ZEBRA_ROUTE_BGP
5715 && pi->sub_type == BGP_ROUTE_AGGREGATE)
5716 break;
5717
5718 if (aggregate->count > 0) {
5719 /*
5720 * If the aggregate information has not changed
5721 * no need to re-install it again.
5722 */
5723 if (bgp_aggregate_info_same(orig, origin, aspath, community,
5724 ecommunity, lcommunity)) {
5725 bgp_unlock_node(rn);
5726
5727 if (aspath)
5728 aspath_free(aspath);
5729 if (community)
5730 community_free(&community);
5731 if (ecommunity)
5732 ecommunity_free(&ecommunity);
5733 if (lcommunity)
5734 lcommunity_free(&lcommunity);
5735
5736 return;
5737 }
5738
5739 /*
5740 * Mark the old as unusable
5741 */
5742 if (pi)
5743 bgp_path_info_delete(rn, pi);
5744
5745 new = info_make(ZEBRA_ROUTE_BGP, BGP_ROUTE_AGGREGATE, 0,
5746 bgp->peer_self,
5747 bgp_attr_aggregate_intern(bgp, origin, aspath,
5748 community, ecommunity,
5749 lcommunity,
5750 aggregate->as_set,
5751 atomic_aggregate),
5752 rn);
5753 SET_FLAG(new->flags, BGP_PATH_VALID);
5754
5755 bgp_path_info_add(rn, new);
5756 bgp_process(bgp, rn, afi, safi);
5757 } else {
5758 for (pi = orig; pi; pi = pi->next)
5759 if (pi->peer == bgp->peer_self
5760 && pi->type == ZEBRA_ROUTE_BGP
5761 && pi->sub_type == BGP_ROUTE_AGGREGATE)
5762 break;
5763
5764 /* Withdraw static BGP route from routing table. */
5765 if (pi) {
5766 bgp_path_info_delete(rn, pi);
5767 bgp_process(bgp, rn, afi, safi);
5768 }
5769 }
5770
5771 bgp_unlock_node(rn);
5772 }
5773
5774 /* Update an aggregate as routes are added/removed from the BGP table */
5775 static void bgp_aggregate_route(struct bgp *bgp, struct prefix *p,
5776 afi_t afi, safi_t safi,
5777 struct bgp_aggregate *aggregate)
5778 {
5779 struct bgp_table *table;
5780 struct bgp_node *top;
5781 struct bgp_node *rn;
5782 uint8_t origin;
5783 struct aspath *aspath = NULL;
5784 struct community *community = NULL;
5785 struct ecommunity *ecommunity = NULL;
5786 struct lcommunity *lcommunity = NULL;
5787 struct bgp_path_info *pi;
5788 unsigned long match = 0;
5789 uint8_t atomic_aggregate = 0;
5790
5791 /* ORIGIN attribute: If at least one route among routes that are
5792 aggregated has ORIGIN with the value INCOMPLETE, then the
5793 aggregated route must have the ORIGIN attribute with the value
5794 INCOMPLETE. Otherwise, if at least one route among routes that
5795 are aggregated has ORIGIN with the value EGP, then the aggregated
5796 route must have the origin attribute with the value EGP. In all
5797 other case the value of the ORIGIN attribute of the aggregated
5798 route is INTERNAL. */
5799 origin = BGP_ORIGIN_IGP;
5800
5801 table = bgp->rib[afi][safi];
5802
5803 top = bgp_node_get(table, p);
5804 for (rn = bgp_node_get(table, p); rn;
5805 rn = bgp_route_next_until(rn, top)) {
5806 if (rn->p.prefixlen <= p->prefixlen)
5807 continue;
5808
5809 match = 0;
5810
5811 for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = pi->next) {
5812 if (BGP_PATH_HOLDDOWN(pi))
5813 continue;
5814
5815 if (pi->attr->flag
5816 & ATTR_FLAG_BIT(BGP_ATTR_ATOMIC_AGGREGATE))
5817 atomic_aggregate = 1;
5818
5819 if (pi->sub_type == BGP_ROUTE_AGGREGATE)
5820 continue;
5821
5822 /*
5823 * summary-only aggregate route suppress
5824 * aggregated route announcements.
5825 */
5826 if (aggregate->summary_only) {
5827 (bgp_path_info_extra_get(pi))->suppress++;
5828 bgp_path_info_set_flag(rn, pi,
5829 BGP_PATH_ATTR_CHANGED);
5830 match++;
5831 }
5832
5833 aggregate->count++;
5834
5835 /*
5836 * If at least one route among routes that are
5837 * aggregated has ORIGIN with the value INCOMPLETE,
5838 * then the aggregated route MUST have the ORIGIN
5839 * attribute with the value INCOMPLETE. Otherwise, if
5840 * at least one route among routes that are aggregated
5841 * has ORIGIN with the value EGP, then the aggregated
5842 * route MUST have the ORIGIN attribute with the value
5843 * EGP.
5844 */
5845 switch (pi->attr->origin) {
5846 case BGP_ORIGIN_INCOMPLETE:
5847 aggregate->incomplete_origin_count++;
5848 break;
5849 case BGP_ORIGIN_EGP:
5850 aggregate->egp_origin_count++;
5851 break;
5852 default:
5853 /*Do nothing.
5854 */
5855 break;
5856 }
5857
5858 if (!aggregate->as_set)
5859 continue;
5860
5861 /*
5862 * as-set aggregate route generate origin, as path,
5863 * and community aggregation.
5864 */
5865 /* Compute aggregate route's as-path.
5866 */
5867 bgp_compute_aggregate_aspath(aggregate,
5868 pi->attr->aspath);
5869
5870 /* Compute aggregate route's community.
5871 */
5872 if (pi->attr->community)
5873 bgp_compute_aggregate_community(
5874 aggregate,
5875 pi->attr->community);
5876
5877 /* Compute aggregate route's extended community.
5878 */
5879 if (pi->attr->ecommunity)
5880 bgp_compute_aggregate_ecommunity(
5881 aggregate,
5882 pi->attr->ecommunity);
5883
5884 /* Compute aggregate route's large community.
5885 */
5886 if (pi->attr->lcommunity)
5887 bgp_compute_aggregate_lcommunity(
5888 aggregate,
5889 pi->attr->lcommunity);
5890 }
5891 if (match)
5892 bgp_process(bgp, rn, afi, safi);
5893 }
5894 bgp_unlock_node(top);
5895
5896
5897 if (aggregate->incomplete_origin_count > 0)
5898 origin = BGP_ORIGIN_INCOMPLETE;
5899 else if (aggregate->egp_origin_count > 0)
5900 origin = BGP_ORIGIN_EGP;
5901
5902 if (aggregate->as_set) {
5903 if (aggregate->aspath)
5904 /* Retrieve aggregate route's as-path.
5905 */
5906 aspath = aspath_dup(aggregate->aspath);
5907
5908 if (aggregate->community)
5909 /* Retrieve aggregate route's community.
5910 */
5911 community = community_dup(aggregate->community);
5912
5913 if (aggregate->ecommunity)
5914 /* Retrieve aggregate route's ecommunity.
5915 */
5916 ecommunity = ecommunity_dup(aggregate->ecommunity);
5917
5918 if (aggregate->lcommunity)
5919 /* Retrieve aggregate route's lcommunity.
5920 */
5921 lcommunity = lcommunity_dup(aggregate->lcommunity);
5922 }
5923
5924 bgp_aggregate_install(bgp, afi, safi, p, origin, aspath, community,
5925 ecommunity, lcommunity, atomic_aggregate,
5926 aggregate);
5927 }
5928
5929 static void bgp_aggregate_delete(struct bgp *bgp, struct prefix *p, afi_t afi,
5930 safi_t safi, struct bgp_aggregate *aggregate)
5931 {
5932 struct bgp_table *table;
5933 struct bgp_node *top;
5934 struct bgp_node *rn;
5935 struct bgp_path_info *pi;
5936 unsigned long match;
5937
5938 table = bgp->rib[afi][safi];
5939
5940 /* If routes exists below this node, generate aggregate routes. */
5941 top = bgp_node_get(table, p);
5942 for (rn = bgp_node_get(table, p); rn;
5943 rn = bgp_route_next_until(rn, top)) {
5944 if (rn->p.prefixlen <= p->prefixlen)
5945 continue;
5946 match = 0;
5947
5948 for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = pi->next) {
5949 if (BGP_PATH_HOLDDOWN(pi))
5950 continue;
5951
5952 if (pi->sub_type == BGP_ROUTE_AGGREGATE)
5953 continue;
5954
5955 if (aggregate->summary_only && pi->extra) {
5956 pi->extra->suppress--;
5957
5958 if (pi->extra->suppress == 0) {
5959 bgp_path_info_set_flag(
5960 rn, pi, BGP_PATH_ATTR_CHANGED);
5961 match++;
5962 }
5963 }
5964 aggregate->count--;
5965
5966 if (pi->attr->origin == BGP_ORIGIN_INCOMPLETE)
5967 aggregate->incomplete_origin_count--;
5968 else if (pi->attr->origin == BGP_ORIGIN_EGP)
5969 aggregate->egp_origin_count--;
5970
5971 if (aggregate->as_set) {
5972 /* Remove as-path from aggregate.
5973 */
5974 bgp_remove_aspath_from_aggregate(
5975 aggregate,
5976 pi->attr->aspath);
5977
5978 if (pi->attr->community)
5979 /* Remove community from aggregate.
5980 */
5981 bgp_remove_community_from_aggregate(
5982 aggregate,
5983 pi->attr->community);
5984
5985 if (pi->attr->ecommunity)
5986 /* Remove ecommunity from aggregate.
5987 */
5988 bgp_remove_ecommunity_from_aggregate(
5989 aggregate,
5990 pi->attr->ecommunity);
5991
5992 if (pi->attr->lcommunity)
5993 /* Remove lcommunity from aggregate.
5994 */
5995 bgp_remove_lcommunity_from_aggregate(
5996 aggregate,
5997 pi->attr->lcommunity);
5998 }
5999
6000 }
6001
6002 /* If this node was suppressed, process the change. */
6003 if (match)
6004 bgp_process(bgp, rn, afi, safi);
6005 }
6006 bgp_unlock_node(top);
6007 }
6008
6009 static void bgp_add_route_to_aggregate(struct bgp *bgp, struct prefix *aggr_p,
6010 struct bgp_path_info *pinew, afi_t afi,
6011 safi_t safi,
6012 struct bgp_aggregate *aggregate)
6013 {
6014 uint8_t origin;
6015 struct aspath *aspath = NULL;
6016 uint8_t atomic_aggregate = 0;
6017 struct community *community = NULL;
6018 struct ecommunity *ecommunity = NULL;
6019 struct lcommunity *lcommunity = NULL;
6020
6021 /* ORIGIN attribute: If at least one route among routes that are
6022 * aggregated has ORIGIN with the value INCOMPLETE, then the
6023 * aggregated route must have the ORIGIN attribute with the value
6024 * INCOMPLETE. Otherwise, if at least one route among routes that
6025 * are aggregated has ORIGIN with the value EGP, then the aggregated
6026 * route must have the origin attribute with the value EGP. In all
6027 * other case the value of the ORIGIN attribute of the aggregated
6028 * route is INTERNAL.
6029 */
6030 origin = BGP_ORIGIN_IGP;
6031
6032 aggregate->count++;
6033
6034 if (aggregate->summary_only)
6035 (bgp_path_info_extra_get(pinew))->suppress++;
6036
6037 switch (pinew->attr->origin) {
6038 case BGP_ORIGIN_INCOMPLETE:
6039 aggregate->incomplete_origin_count++;
6040 break;
6041 case BGP_ORIGIN_EGP:
6042 aggregate->egp_origin_count++;
6043 break;
6044 default:
6045 /* Do nothing.
6046 */
6047 break;
6048 }
6049
6050 if (aggregate->incomplete_origin_count > 0)
6051 origin = BGP_ORIGIN_INCOMPLETE;
6052 else if (aggregate->egp_origin_count > 0)
6053 origin = BGP_ORIGIN_EGP;
6054
6055 if (aggregate->as_set) {
6056 /* Compute aggregate route's as-path.
6057 */
6058 bgp_compute_aggregate_aspath(aggregate,
6059 pinew->attr->aspath);
6060
6061 /* Compute aggregate route's community.
6062 */
6063 if (pinew->attr->community)
6064 bgp_compute_aggregate_community(
6065 aggregate,
6066 pinew->attr->community);
6067
6068 /* Compute aggregate route's extended community.
6069 */
6070 if (pinew->attr->ecommunity)
6071 bgp_compute_aggregate_ecommunity(
6072 aggregate,
6073 pinew->attr->ecommunity);
6074
6075 /* Compute aggregate route's large community.
6076 */
6077 if (pinew->attr->lcommunity)
6078 bgp_compute_aggregate_lcommunity(
6079 aggregate,
6080 pinew->attr->lcommunity);
6081
6082 /* Retrieve aggregate route's as-path.
6083 */
6084 if (aggregate->aspath)
6085 aspath = aspath_dup(aggregate->aspath);
6086
6087 /* Retrieve aggregate route's community.
6088 */
6089 if (aggregate->community)
6090 community = community_dup(aggregate->community);
6091
6092 /* Retrieve aggregate route's ecommunity.
6093 */
6094 if (aggregate->ecommunity)
6095 ecommunity = ecommunity_dup(aggregate->ecommunity);
6096
6097 /* Retrieve aggregate route's lcommunity.
6098 */
6099 if (aggregate->lcommunity)
6100 lcommunity = lcommunity_dup(aggregate->lcommunity);
6101 }
6102
6103 bgp_aggregate_install(bgp, afi, safi, aggr_p, origin,
6104 aspath, community, ecommunity,
6105 lcommunity, atomic_aggregate, aggregate);
6106 }
6107
6108 static void bgp_remove_route_from_aggregate(struct bgp *bgp, afi_t afi,
6109 safi_t safi,
6110 struct bgp_path_info *pi,
6111 struct bgp_aggregate *aggregate,
6112 struct prefix *aggr_p)
6113 {
6114 uint8_t origin;
6115 struct aspath *aspath = NULL;
6116 uint8_t atomic_aggregate = 0;
6117 struct community *community = NULL;
6118 struct ecommunity *ecommunity = NULL;
6119 struct lcommunity *lcommunity = NULL;
6120 unsigned long match = 0;
6121
6122 if (BGP_PATH_HOLDDOWN(pi))
6123 return;
6124
6125 if (pi->sub_type == BGP_ROUTE_AGGREGATE)
6126 return;
6127
6128 if (aggregate->summary_only
6129 && pi->extra
6130 && pi->extra->suppress > 0) {
6131 pi->extra->suppress--;
6132
6133 if (pi->extra->suppress == 0) {
6134 bgp_path_info_set_flag(pi->net, pi,
6135 BGP_PATH_ATTR_CHANGED);
6136 match++;
6137 }
6138 }
6139
6140 if (aggregate->count > 0)
6141 aggregate->count--;
6142
6143 if (pi->attr->origin == BGP_ORIGIN_INCOMPLETE)
6144 aggregate->incomplete_origin_count--;
6145 else if (pi->attr->origin == BGP_ORIGIN_EGP)
6146 aggregate->egp_origin_count--;
6147
6148 if (aggregate->as_set) {
6149 /* Remove as-path from aggregate.
6150 */
6151 bgp_remove_aspath_from_aggregate(aggregate,
6152 pi->attr->aspath);
6153
6154 if (pi->attr->community)
6155 /* Remove community from aggregate.
6156 */
6157 bgp_remove_community_from_aggregate(
6158 aggregate,
6159 pi->attr->community);
6160
6161 if (pi->attr->ecommunity)
6162 /* Remove ecommunity from aggregate.
6163 */
6164 bgp_remove_ecommunity_from_aggregate(
6165 aggregate,
6166 pi->attr->ecommunity);
6167
6168 if (pi->attr->lcommunity)
6169 /* Remove lcommunity from aggregate.
6170 */
6171 bgp_remove_lcommunity_from_aggregate(
6172 aggregate,
6173 pi->attr->lcommunity);
6174 }
6175
6176 /* If this node was suppressed, process the change. */
6177 if (match)
6178 bgp_process(bgp, pi->net, afi, safi);
6179
6180 origin = BGP_ORIGIN_IGP;
6181 if (aggregate->incomplete_origin_count > 0)
6182 origin = BGP_ORIGIN_INCOMPLETE;
6183 else if (aggregate->egp_origin_count > 0)
6184 origin = BGP_ORIGIN_EGP;
6185
6186 if (aggregate->as_set) {
6187 /* Retrieve aggregate route's as-path.
6188 */
6189 if (aggregate->aspath)
6190 aspath = aspath_dup(aggregate->aspath);
6191
6192 /* Retrieve aggregate route's community.
6193 */
6194 if (aggregate->community)
6195 community = community_dup(aggregate->community);
6196
6197 /* Retrieve aggregate route's ecommunity.
6198 */
6199 if (aggregate->ecommunity)
6200 ecommunity = ecommunity_dup(aggregate->ecommunity);
6201
6202 /* Retrieve aggregate route's lcommunity.
6203 */
6204 if (aggregate->lcommunity)
6205 lcommunity = lcommunity_dup(aggregate->lcommunity);
6206 }
6207
6208 bgp_aggregate_install(bgp, afi, safi, aggr_p, origin,
6209 aspath, community, ecommunity,
6210 lcommunity, atomic_aggregate, aggregate);
6211 }
6212
6213 void bgp_aggregate_increment(struct bgp *bgp, struct prefix *p,
6214 struct bgp_path_info *pi, afi_t afi, safi_t safi)
6215 {
6216 struct bgp_node *child;
6217 struct bgp_node *rn;
6218 struct bgp_aggregate *aggregate;
6219 struct bgp_table *table;
6220
6221 table = bgp->aggregate[afi][safi];
6222
6223 /* No aggregates configured. */
6224 if (bgp_table_top_nolock(table) == NULL)
6225 return;
6226
6227 if (p->prefixlen == 0)
6228 return;
6229
6230 if (BGP_PATH_HOLDDOWN(pi))
6231 return;
6232
6233 child = bgp_node_get(table, p);
6234
6235 /* Aggregate address configuration check. */
6236 for (rn = child; rn; rn = bgp_node_parent_nolock(rn)) {
6237 aggregate = bgp_node_get_bgp_aggregate_info(rn);
6238 if (aggregate != NULL && rn->p.prefixlen < p->prefixlen) {
6239 bgp_add_route_to_aggregate(bgp, &rn->p, pi, afi,
6240 safi, aggregate);
6241 }
6242 }
6243 bgp_unlock_node(child);
6244 }
6245
6246 void bgp_aggregate_decrement(struct bgp *bgp, struct prefix *p,
6247 struct bgp_path_info *del, afi_t afi, safi_t safi)
6248 {
6249 struct bgp_node *child;
6250 struct bgp_node *rn;
6251 struct bgp_aggregate *aggregate;
6252 struct bgp_table *table;
6253
6254 table = bgp->aggregate[afi][safi];
6255
6256 /* No aggregates configured. */
6257 if (bgp_table_top_nolock(table) == NULL)
6258 return;
6259
6260 if (p->prefixlen == 0)
6261 return;
6262
6263 child = bgp_node_get(table, p);
6264
6265 /* Aggregate address configuration check. */
6266 for (rn = child; rn; rn = bgp_node_parent_nolock(rn)) {
6267 aggregate = bgp_node_get_bgp_aggregate_info(rn);
6268 if (aggregate != NULL && rn->p.prefixlen < p->prefixlen) {
6269 bgp_remove_route_from_aggregate(bgp, afi, safi,
6270 del, aggregate, &rn->p);
6271 }
6272 }
6273 bgp_unlock_node(child);
6274 }
6275
6276 /* Aggregate route attribute. */
6277 #define AGGREGATE_SUMMARY_ONLY 1
6278 #define AGGREGATE_AS_SET 1
6279
6280 static int bgp_aggregate_unset(struct vty *vty, const char *prefix_str,
6281 afi_t afi, safi_t safi)
6282 {
6283 VTY_DECLVAR_CONTEXT(bgp, bgp);
6284 int ret;
6285 struct prefix p;
6286 struct bgp_node *rn;
6287 struct bgp_aggregate *aggregate;
6288
6289 /* Convert string to prefix structure. */
6290 ret = str2prefix(prefix_str, &p);
6291 if (!ret) {
6292 vty_out(vty, "Malformed prefix\n");
6293 return CMD_WARNING_CONFIG_FAILED;
6294 }
6295 apply_mask(&p);
6296
6297 /* Old configuration check. */
6298 rn = bgp_node_lookup(bgp->aggregate[afi][safi], &p);
6299 if (!rn) {
6300 vty_out(vty,
6301 "%% There is no aggregate-address configuration.\n");
6302 return CMD_WARNING_CONFIG_FAILED;
6303 }
6304
6305 aggregate = bgp_node_get_bgp_aggregate_info(rn);
6306 bgp_aggregate_delete(bgp, &p, afi, safi, aggregate);
6307 bgp_aggregate_install(bgp, afi, safi, &p, 0, NULL, NULL,
6308 NULL, NULL, 0, aggregate);
6309
6310 /* Unlock aggregate address configuration. */
6311 bgp_node_set_bgp_aggregate_info(rn, NULL);
6312
6313 if (aggregate->community)
6314 community_free(&aggregate->community);
6315
6316 if (aggregate->community_hash) {
6317 /* Delete all communities in the hash.
6318 */
6319 hash_clean(aggregate->community_hash,
6320 bgp_aggr_community_remove);
6321 /* Free up the community_hash.
6322 */
6323 hash_free(aggregate->community_hash);
6324 }
6325
6326 if (aggregate->ecommunity)
6327 ecommunity_free(&aggregate->ecommunity);
6328
6329 if (aggregate->ecommunity_hash) {
6330 /* Delete all ecommunities in the hash.
6331 */
6332 hash_clean(aggregate->ecommunity_hash,
6333 bgp_aggr_ecommunity_remove);
6334 /* Free up the ecommunity_hash.
6335 */
6336 hash_free(aggregate->ecommunity_hash);
6337 }
6338
6339 if (aggregate->lcommunity)
6340 lcommunity_free(&aggregate->lcommunity);
6341
6342 if (aggregate->lcommunity_hash) {
6343 /* Delete all lcommunities in the hash.
6344 */
6345 hash_clean(aggregate->lcommunity_hash,
6346 bgp_aggr_lcommunity_remove);
6347 /* Free up the lcommunity_hash.
6348 */
6349 hash_free(aggregate->lcommunity_hash);
6350 }
6351
6352 if (aggregate->aspath)
6353 aspath_free(aggregate->aspath);
6354
6355 if (aggregate->aspath_hash) {
6356 /* Delete all as-paths in the hash.
6357 */
6358 hash_clean(aggregate->aspath_hash,
6359 bgp_aggr_aspath_remove);
6360 /* Free up the aspath_hash.
6361 */
6362 hash_free(aggregate->aspath_hash);
6363 }
6364
6365 bgp_aggregate_free(aggregate);
6366 bgp_unlock_node(rn);
6367 bgp_unlock_node(rn);
6368
6369 return CMD_SUCCESS;
6370 }
6371
6372 static int bgp_aggregate_set(struct vty *vty, const char *prefix_str, afi_t afi,
6373 safi_t safi, uint8_t summary_only, uint8_t as_set)
6374 {
6375 VTY_DECLVAR_CONTEXT(bgp, bgp);
6376 int ret;
6377 struct prefix p;
6378 struct bgp_node *rn;
6379 struct bgp_aggregate *aggregate;
6380
6381 /* Convert string to prefix structure. */
6382 ret = str2prefix(prefix_str, &p);
6383 if (!ret) {
6384 vty_out(vty, "Malformed prefix\n");
6385 return CMD_WARNING_CONFIG_FAILED;
6386 }
6387 apply_mask(&p);
6388
6389 if ((afi == AFI_IP && p.prefixlen == IPV4_MAX_BITLEN) ||
6390 (afi == AFI_IP6 && p.prefixlen == IPV6_MAX_BITLEN)) {
6391 vty_out(vty, "Specified prefix: %s will not result in any useful aggregation, disallowing\n",
6392 prefix_str);
6393 return CMD_WARNING_CONFIG_FAILED;
6394 }
6395
6396 /* Old configuration check. */
6397 rn = bgp_node_get(bgp->aggregate[afi][safi], &p);
6398
6399 if (bgp_node_has_bgp_path_info_data(rn)) {
6400 vty_out(vty, "There is already same aggregate network.\n");
6401 /* try to remove the old entry */
6402 ret = bgp_aggregate_unset(vty, prefix_str, afi, safi);
6403 if (ret) {
6404 vty_out(vty, "Error deleting aggregate.\n");
6405 bgp_unlock_node(rn);
6406 return CMD_WARNING_CONFIG_FAILED;
6407 }
6408 }
6409
6410 /* Make aggregate address structure. */
6411 aggregate = bgp_aggregate_new();
6412 aggregate->summary_only = summary_only;
6413 aggregate->as_set = as_set;
6414 aggregate->safi = safi;
6415 bgp_node_set_bgp_aggregate_info(rn, aggregate);
6416
6417 /* Aggregate address insert into BGP routing table. */
6418 bgp_aggregate_route(bgp, &p, afi, safi, aggregate);
6419
6420 return CMD_SUCCESS;
6421 }
6422
6423 DEFUN (aggregate_address,
6424 aggregate_address_cmd,
6425 "aggregate-address A.B.C.D/M [<as-set [summary-only]|summary-only [as-set]>]",
6426 "Configure BGP aggregate entries\n"
6427 "Aggregate prefix\n"
6428 "Generate AS set path information\n"
6429 "Filter more specific routes from updates\n"
6430 "Filter more specific routes from updates\n"
6431 "Generate AS set path information\n")
6432 {
6433 int idx = 0;
6434 argv_find(argv, argc, "A.B.C.D/M", &idx);
6435 char *prefix = argv[idx]->arg;
6436 int as_set =
6437 argv_find(argv, argc, "as-set", &idx) ? AGGREGATE_AS_SET : 0;
6438 idx = 0;
6439 int summary_only = argv_find(argv, argc, "summary-only", &idx)
6440 ? AGGREGATE_SUMMARY_ONLY
6441 : 0;
6442
6443 return bgp_aggregate_set(vty, prefix, AFI_IP, bgp_node_safi(vty),
6444 summary_only, as_set);
6445 }
6446
6447 DEFUN (aggregate_address_mask,
6448 aggregate_address_mask_cmd,
6449 "aggregate-address A.B.C.D A.B.C.D [<as-set [summary-only]|summary-only [as-set]>]",
6450 "Configure BGP aggregate entries\n"
6451 "Aggregate address\n"
6452 "Aggregate mask\n"
6453 "Generate AS set path information\n"
6454 "Filter more specific routes from updates\n"
6455 "Filter more specific routes from updates\n"
6456 "Generate AS set path information\n")
6457 {
6458 int idx = 0;
6459 argv_find(argv, argc, "A.B.C.D", &idx);
6460 char *prefix = argv[idx]->arg;
6461 char *mask = argv[idx + 1]->arg;
6462 int as_set =
6463 argv_find(argv, argc, "as-set", &idx) ? AGGREGATE_AS_SET : 0;
6464 idx = 0;
6465 int summary_only = argv_find(argv, argc, "summary-only", &idx)
6466 ? AGGREGATE_SUMMARY_ONLY
6467 : 0;
6468
6469 char prefix_str[BUFSIZ];
6470 int ret = netmask_str2prefix_str(prefix, mask, prefix_str);
6471
6472 if (!ret) {
6473 vty_out(vty, "%% Inconsistent address and mask\n");
6474 return CMD_WARNING_CONFIG_FAILED;
6475 }
6476
6477 return bgp_aggregate_set(vty, prefix_str, AFI_IP, bgp_node_safi(vty),
6478 summary_only, as_set);
6479 }
6480
6481 DEFUN (no_aggregate_address,
6482 no_aggregate_address_cmd,
6483 "no aggregate-address A.B.C.D/M [<as-set [summary-only]|summary-only [as-set]>]",
6484 NO_STR
6485 "Configure BGP aggregate entries\n"
6486 "Aggregate prefix\n"
6487 "Generate AS set path information\n"
6488 "Filter more specific routes from updates\n"
6489 "Filter more specific routes from updates\n"
6490 "Generate AS set path information\n")
6491 {
6492 int idx = 0;
6493 argv_find(argv, argc, "A.B.C.D/M", &idx);
6494 char *prefix = argv[idx]->arg;
6495 return bgp_aggregate_unset(vty, prefix, AFI_IP, bgp_node_safi(vty));
6496 }
6497
6498 DEFUN (no_aggregate_address_mask,
6499 no_aggregate_address_mask_cmd,
6500 "no aggregate-address A.B.C.D A.B.C.D [<as-set [summary-only]|summary-only [as-set]>]",
6501 NO_STR
6502 "Configure BGP aggregate entries\n"
6503 "Aggregate address\n"
6504 "Aggregate mask\n"
6505 "Generate AS set path information\n"
6506 "Filter more specific routes from updates\n"
6507 "Filter more specific routes from updates\n"
6508 "Generate AS set path information\n")
6509 {
6510 int idx = 0;
6511 argv_find(argv, argc, "A.B.C.D", &idx);
6512 char *prefix = argv[idx]->arg;
6513 char *mask = argv[idx + 1]->arg;
6514
6515 char prefix_str[BUFSIZ];
6516 int ret = netmask_str2prefix_str(prefix, mask, prefix_str);
6517
6518 if (!ret) {
6519 vty_out(vty, "%% Inconsistent address and mask\n");
6520 return CMD_WARNING_CONFIG_FAILED;
6521 }
6522
6523 return bgp_aggregate_unset(vty, prefix_str, AFI_IP, bgp_node_safi(vty));
6524 }
6525
6526 DEFUN (ipv6_aggregate_address,
6527 ipv6_aggregate_address_cmd,
6528 "aggregate-address X:X::X:X/M [summary-only]",
6529 "Configure BGP aggregate entries\n"
6530 "Aggregate prefix\n"
6531 "Filter more specific routes from updates\n")
6532 {
6533 int idx = 0;
6534 argv_find(argv, argc, "X:X::X:X/M", &idx);
6535 char *prefix = argv[idx]->arg;
6536 int sum_only = argv_find(argv, argc, "summary-only", &idx)
6537 ? AGGREGATE_SUMMARY_ONLY
6538 : 0;
6539 return bgp_aggregate_set(vty, prefix, AFI_IP6, SAFI_UNICAST, sum_only,
6540 0);
6541 }
6542
6543 DEFUN (no_ipv6_aggregate_address,
6544 no_ipv6_aggregate_address_cmd,
6545 "no aggregate-address X:X::X:X/M [summary-only]",
6546 NO_STR
6547 "Configure BGP aggregate entries\n"
6548 "Aggregate prefix\n"
6549 "Filter more specific routes from updates\n")
6550 {
6551 int idx = 0;
6552 argv_find(argv, argc, "X:X::X:X/M", &idx);
6553 char *prefix = argv[idx]->arg;
6554 return bgp_aggregate_unset(vty, prefix, AFI_IP6, SAFI_UNICAST);
6555 }
6556
6557 /* Redistribute route treatment. */
6558 void bgp_redistribute_add(struct bgp *bgp, struct prefix *p,
6559 const union g_addr *nexthop, ifindex_t ifindex,
6560 enum nexthop_types_t nhtype, uint32_t metric,
6561 uint8_t type, unsigned short instance,
6562 route_tag_t tag)
6563 {
6564 struct bgp_path_info *new;
6565 struct bgp_path_info *bpi;
6566 struct bgp_path_info rmap_path;
6567 struct bgp_node *bn;
6568 struct attr attr;
6569 struct attr *new_attr;
6570 afi_t afi;
6571 int ret;
6572 struct bgp_redist *red;
6573
6574 /* Make default attribute. */
6575 bgp_attr_default_set(&attr, BGP_ORIGIN_INCOMPLETE);
6576
6577 switch (nhtype) {
6578 case NEXTHOP_TYPE_IFINDEX:
6579 break;
6580 case NEXTHOP_TYPE_IPV4:
6581 case NEXTHOP_TYPE_IPV4_IFINDEX:
6582 attr.nexthop = nexthop->ipv4;
6583 break;
6584 case NEXTHOP_TYPE_IPV6:
6585 case NEXTHOP_TYPE_IPV6_IFINDEX:
6586 attr.mp_nexthop_global = nexthop->ipv6;
6587 attr.mp_nexthop_len = BGP_ATTR_NHLEN_IPV6_GLOBAL;
6588 break;
6589 case NEXTHOP_TYPE_BLACKHOLE:
6590 switch (p->family) {
6591 case AF_INET:
6592 attr.nexthop.s_addr = INADDR_ANY;
6593 break;
6594 case AF_INET6:
6595 memset(&attr.mp_nexthop_global, 0,
6596 sizeof(attr.mp_nexthop_global));
6597 attr.mp_nexthop_len = BGP_ATTR_NHLEN_IPV6_GLOBAL;
6598 break;
6599 }
6600 break;
6601 }
6602 attr.nh_ifindex = ifindex;
6603
6604 attr.med = metric;
6605 attr.flag |= ATTR_FLAG_BIT(BGP_ATTR_MULTI_EXIT_DISC);
6606 attr.tag = tag;
6607
6608 afi = family2afi(p->family);
6609
6610 red = bgp_redist_lookup(bgp, afi, type, instance);
6611 if (red) {
6612 struct attr attr_new;
6613
6614 /* Copy attribute for modification. */
6615 bgp_attr_dup(&attr_new, &attr);
6616
6617 if (red->redist_metric_flag)
6618 attr_new.med = red->redist_metric;
6619
6620 /* Apply route-map. */
6621 if (red->rmap.name) {
6622 memset(&rmap_path, 0, sizeof(struct bgp_path_info));
6623 rmap_path.peer = bgp->peer_self;
6624 rmap_path.attr = &attr_new;
6625
6626 SET_FLAG(bgp->peer_self->rmap_type,
6627 PEER_RMAP_TYPE_REDISTRIBUTE);
6628
6629 ret = route_map_apply(red->rmap.map, p, RMAP_BGP,
6630 &rmap_path);
6631
6632 bgp->peer_self->rmap_type = 0;
6633
6634 if (ret == RMAP_DENYMATCH) {
6635 /* Free uninterned attribute. */
6636 bgp_attr_flush(&attr_new);
6637
6638 /* Unintern original. */
6639 aspath_unintern(&attr.aspath);
6640 bgp_redistribute_delete(bgp, p, type, instance);
6641 return;
6642 }
6643 }
6644
6645 if (bgp_flag_check(bgp, BGP_FLAG_GRACEFUL_SHUTDOWN))
6646 bgp_attr_add_gshut_community(&attr_new);
6647
6648 bn = bgp_afi_node_get(bgp->rib[afi][SAFI_UNICAST], afi,
6649 SAFI_UNICAST, p, NULL);
6650
6651 new_attr = bgp_attr_intern(&attr_new);
6652
6653 for (bpi = bgp_node_get_bgp_path_info(bn); bpi;
6654 bpi = bpi->next)
6655 if (bpi->peer == bgp->peer_self
6656 && bpi->sub_type == BGP_ROUTE_REDISTRIBUTE)
6657 break;
6658
6659 if (bpi) {
6660 /* Ensure the (source route) type is updated. */
6661 bpi->type = type;
6662 if (attrhash_cmp(bpi->attr, new_attr)
6663 && !CHECK_FLAG(bpi->flags, BGP_PATH_REMOVED)) {
6664 bgp_attr_unintern(&new_attr);
6665 aspath_unintern(&attr.aspath);
6666 bgp_unlock_node(bn);
6667 return;
6668 } else {
6669 /* The attribute is changed. */
6670 bgp_path_info_set_flag(bn, bpi,
6671 BGP_PATH_ATTR_CHANGED);
6672
6673 /* Rewrite BGP route information. */
6674 if (CHECK_FLAG(bpi->flags, BGP_PATH_REMOVED))
6675 bgp_path_info_restore(bn, bpi);
6676 else
6677 bgp_aggregate_decrement(
6678 bgp, p, bpi, afi, SAFI_UNICAST);
6679 bgp_attr_unintern(&bpi->attr);
6680 bpi->attr = new_attr;
6681 bpi->uptime = bgp_clock();
6682
6683 /* Process change. */
6684 bgp_aggregate_increment(bgp, p, bpi, afi,
6685 SAFI_UNICAST);
6686 bgp_process(bgp, bn, afi, SAFI_UNICAST);
6687 bgp_unlock_node(bn);
6688 aspath_unintern(&attr.aspath);
6689
6690 if ((bgp->inst_type == BGP_INSTANCE_TYPE_VRF)
6691 || (bgp->inst_type
6692 == BGP_INSTANCE_TYPE_DEFAULT)) {
6693
6694 vpn_leak_from_vrf_update(
6695 bgp_get_default(), bgp, bpi);
6696 }
6697 return;
6698 }
6699 }
6700
6701 new = info_make(type, BGP_ROUTE_REDISTRIBUTE, instance,
6702 bgp->peer_self, new_attr, bn);
6703 SET_FLAG(new->flags, BGP_PATH_VALID);
6704
6705 bgp_aggregate_increment(bgp, p, new, afi, SAFI_UNICAST);
6706 bgp_path_info_add(bn, new);
6707 bgp_unlock_node(bn);
6708 bgp_process(bgp, bn, afi, SAFI_UNICAST);
6709
6710 if ((bgp->inst_type == BGP_INSTANCE_TYPE_VRF)
6711 || (bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)) {
6712
6713 vpn_leak_from_vrf_update(bgp_get_default(), bgp, new);
6714 }
6715 }
6716
6717 /* Unintern original. */
6718 aspath_unintern(&attr.aspath);
6719 }
6720
6721 void bgp_redistribute_delete(struct bgp *bgp, struct prefix *p, uint8_t type,
6722 unsigned short instance)
6723 {
6724 afi_t afi;
6725 struct bgp_node *rn;
6726 struct bgp_path_info *pi;
6727 struct bgp_redist *red;
6728
6729 afi = family2afi(p->family);
6730
6731 red = bgp_redist_lookup(bgp, afi, type, instance);
6732 if (red) {
6733 rn = bgp_afi_node_get(bgp->rib[afi][SAFI_UNICAST], afi,
6734 SAFI_UNICAST, p, NULL);
6735
6736 for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = pi->next)
6737 if (pi->peer == bgp->peer_self && pi->type == type)
6738 break;
6739
6740 if (pi) {
6741 if ((bgp->inst_type == BGP_INSTANCE_TYPE_VRF)
6742 || (bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)) {
6743
6744 vpn_leak_from_vrf_withdraw(bgp_get_default(),
6745 bgp, pi);
6746 }
6747 bgp_aggregate_decrement(bgp, p, pi, afi, SAFI_UNICAST);
6748 bgp_path_info_delete(rn, pi);
6749 bgp_process(bgp, rn, afi, SAFI_UNICAST);
6750 }
6751 bgp_unlock_node(rn);
6752 }
6753 }
6754
6755 /* Withdraw specified route type's route. */
6756 void bgp_redistribute_withdraw(struct bgp *bgp, afi_t afi, int type,
6757 unsigned short instance)
6758 {
6759 struct bgp_node *rn;
6760 struct bgp_path_info *pi;
6761 struct bgp_table *table;
6762
6763 table = bgp->rib[afi][SAFI_UNICAST];
6764
6765 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
6766 for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = pi->next)
6767 if (pi->peer == bgp->peer_self && pi->type == type
6768 && pi->instance == instance)
6769 break;
6770
6771 if (pi) {
6772 if ((bgp->inst_type == BGP_INSTANCE_TYPE_VRF)
6773 || (bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)) {
6774
6775 vpn_leak_from_vrf_withdraw(bgp_get_default(),
6776 bgp, pi);
6777 }
6778 bgp_aggregate_decrement(bgp, &rn->p, pi, afi,
6779 SAFI_UNICAST);
6780 bgp_path_info_delete(rn, pi);
6781 bgp_process(bgp, rn, afi, SAFI_UNICAST);
6782 }
6783 }
6784 }
6785
6786 /* Static function to display route. */
6787 static void route_vty_out_route(struct prefix *p, struct vty *vty,
6788 json_object *json)
6789 {
6790 int len = 0;
6791 char buf[BUFSIZ];
6792 char buf2[BUFSIZ];
6793
6794 if (p->family == AF_INET) {
6795 if (!json) {
6796 len = vty_out(
6797 vty, "%s/%d",
6798 inet_ntop(p->family, &p->u.prefix, buf, BUFSIZ),
6799 p->prefixlen);
6800 } else {
6801 json_object_string_add(json, "prefix",
6802 inet_ntop(p->family,
6803 &p->u.prefix, buf,
6804 BUFSIZ));
6805 json_object_int_add(json, "prefixLen", p->prefixlen);
6806 prefix2str(p, buf2, PREFIX_STRLEN);
6807 json_object_string_add(json, "network", buf2);
6808 }
6809 } else if (p->family == AF_ETHERNET) {
6810 prefix2str(p, buf, PREFIX_STRLEN);
6811 len = vty_out(vty, "%s", buf);
6812 } else if (p->family == AF_EVPN) {
6813 if (!json)
6814 len = vty_out(
6815 vty, "%s",
6816 bgp_evpn_route2str((struct prefix_evpn *)p, buf,
6817 BUFSIZ));
6818 else
6819 bgp_evpn_route2json((struct prefix_evpn *)p, json);
6820 } else if (p->family == AF_FLOWSPEC) {
6821 route_vty_out_flowspec(vty, p, NULL,
6822 json ?
6823 NLRI_STRING_FORMAT_JSON_SIMPLE :
6824 NLRI_STRING_FORMAT_MIN, json);
6825 } else {
6826 if (!json)
6827 len = vty_out(
6828 vty, "%s/%d",
6829 inet_ntop(p->family, &p->u.prefix, buf, BUFSIZ),
6830 p->prefixlen);
6831 else {
6832 json_object_string_add(json, "prefix",
6833 inet_ntop(p->family,
6834 &p->u.prefix, buf,
6835 BUFSIZ));
6836 json_object_int_add(json, "prefixLen", p->prefixlen);
6837 prefix2str(p, buf2, PREFIX_STRLEN);
6838 json_object_string_add(json, "network", buf2);
6839 }
6840 }
6841
6842 if (!json) {
6843 len = 17 - len;
6844 if (len < 1)
6845 vty_out(vty, "\n%*s", 20, " ");
6846 else
6847 vty_out(vty, "%*s", len, " ");
6848 }
6849 }
6850
6851 enum bgp_display_type {
6852 normal_list,
6853 };
6854
6855 /* Print the short form route status for a bgp_path_info */
6856 static void route_vty_short_status_out(struct vty *vty,
6857 struct bgp_path_info *path,
6858 json_object *json_path)
6859 {
6860 if (json_path) {
6861
6862 /* Route status display. */
6863 if (CHECK_FLAG(path->flags, BGP_PATH_REMOVED))
6864 json_object_boolean_true_add(json_path, "removed");
6865
6866 if (CHECK_FLAG(path->flags, BGP_PATH_STALE))
6867 json_object_boolean_true_add(json_path, "stale");
6868
6869 if (path->extra && path->extra->suppress)
6870 json_object_boolean_true_add(json_path, "suppressed");
6871
6872 if (CHECK_FLAG(path->flags, BGP_PATH_VALID)
6873 && !CHECK_FLAG(path->flags, BGP_PATH_HISTORY))
6874 json_object_boolean_true_add(json_path, "valid");
6875
6876 /* Selected */
6877 if (CHECK_FLAG(path->flags, BGP_PATH_HISTORY))
6878 json_object_boolean_true_add(json_path, "history");
6879
6880 if (CHECK_FLAG(path->flags, BGP_PATH_DAMPED))
6881 json_object_boolean_true_add(json_path, "damped");
6882
6883 if (CHECK_FLAG(path->flags, BGP_PATH_SELECTED))
6884 json_object_boolean_true_add(json_path, "bestpath");
6885
6886 if (CHECK_FLAG(path->flags, BGP_PATH_MULTIPATH))
6887 json_object_boolean_true_add(json_path, "multipath");
6888
6889 /* Internal route. */
6890 if ((path->peer->as)
6891 && (path->peer->as == path->peer->local_as))
6892 json_object_string_add(json_path, "pathFrom",
6893 "internal");
6894 else
6895 json_object_string_add(json_path, "pathFrom",
6896 "external");
6897
6898 return;
6899 }
6900
6901 /* Route status display. */
6902 if (CHECK_FLAG(path->flags, BGP_PATH_REMOVED))
6903 vty_out(vty, "R");
6904 else if (CHECK_FLAG(path->flags, BGP_PATH_STALE))
6905 vty_out(vty, "S");
6906 else if (path->extra && path->extra->suppress)
6907 vty_out(vty, "s");
6908 else if (CHECK_FLAG(path->flags, BGP_PATH_VALID)
6909 && !CHECK_FLAG(path->flags, BGP_PATH_HISTORY))
6910 vty_out(vty, "*");
6911 else
6912 vty_out(vty, " ");
6913
6914 /* Selected */
6915 if (CHECK_FLAG(path->flags, BGP_PATH_HISTORY))
6916 vty_out(vty, "h");
6917 else if (CHECK_FLAG(path->flags, BGP_PATH_DAMPED))
6918 vty_out(vty, "d");
6919 else if (CHECK_FLAG(path->flags, BGP_PATH_SELECTED))
6920 vty_out(vty, ">");
6921 else if (CHECK_FLAG(path->flags, BGP_PATH_MULTIPATH))
6922 vty_out(vty, "=");
6923 else
6924 vty_out(vty, " ");
6925
6926 /* Internal route. */
6927 if (path->peer && (path->peer->as)
6928 && (path->peer->as == path->peer->local_as))
6929 vty_out(vty, "i");
6930 else
6931 vty_out(vty, " ");
6932 }
6933
6934 static char *bgp_nexthop_fqdn(struct peer *peer)
6935 {
6936 if (peer->hostname && bgp_flag_check(peer->bgp, BGP_FLAG_SHOW_HOSTNAME))
6937 return peer->hostname;
6938 return NULL;
6939 }
6940
6941 /* called from terminal list command */
6942 void route_vty_out(struct vty *vty, struct prefix *p,
6943 struct bgp_path_info *path, int display, safi_t safi,
6944 json_object *json_paths)
6945 {
6946 struct attr *attr;
6947 json_object *json_path = NULL;
6948 json_object *json_nexthops = NULL;
6949 json_object *json_nexthop_global = NULL;
6950 json_object *json_nexthop_ll = NULL;
6951 char vrf_id_str[VRF_NAMSIZ] = {0};
6952 bool nexthop_self =
6953 CHECK_FLAG(path->flags, BGP_PATH_ANNC_NH_SELF) ? true : false;
6954 bool nexthop_othervrf = false;
6955 vrf_id_t nexthop_vrfid = VRF_DEFAULT;
6956 const char *nexthop_vrfname = VRF_DEFAULT_NAME;
6957 char *nexthop_fqdn = bgp_nexthop_fqdn(path->peer);
6958
6959 if (json_paths)
6960 json_path = json_object_new_object();
6961
6962 /* short status lead text */
6963 route_vty_short_status_out(vty, path, json_path);
6964
6965 if (!json_paths) {
6966 /* print prefix and mask */
6967 if (!display)
6968 route_vty_out_route(p, vty, json_path);
6969 else
6970 vty_out(vty, "%*s", 17, " ");
6971 } else {
6972 route_vty_out_route(p, vty, json_path);
6973 }
6974
6975 /* Print attribute */
6976 attr = path->attr;
6977 if (!attr) {
6978 if (json_paths)
6979 json_object_array_add(json_paths, json_path);
6980 else
6981 vty_out(vty, "\n");
6982
6983 return;
6984 }
6985
6986 /*
6987 * If vrf id of nexthop is different from that of prefix,
6988 * set up printable string to append
6989 */
6990 if (path->extra && path->extra->bgp_orig) {
6991 const char *self = "";
6992
6993 if (nexthop_self)
6994 self = "<";
6995
6996 nexthop_othervrf = true;
6997 nexthop_vrfid = path->extra->bgp_orig->vrf_id;
6998
6999 if (path->extra->bgp_orig->vrf_id == VRF_UNKNOWN)
7000 snprintf(vrf_id_str, sizeof(vrf_id_str),
7001 "@%s%s", VRFID_NONE_STR, self);
7002 else
7003 snprintf(vrf_id_str, sizeof(vrf_id_str), "@%u%s",
7004 path->extra->bgp_orig->vrf_id, self);
7005
7006 if (path->extra->bgp_orig->inst_type
7007 != BGP_INSTANCE_TYPE_DEFAULT)
7008
7009 nexthop_vrfname = path->extra->bgp_orig->name;
7010 } else {
7011 const char *self = "";
7012
7013 if (nexthop_self)
7014 self = "<";
7015
7016 snprintf(vrf_id_str, sizeof(vrf_id_str), "%s", self);
7017 }
7018
7019 /*
7020 * For ENCAP and EVPN routes, nexthop address family is not
7021 * neccessarily the same as the prefix address family.
7022 * Both SAFI_MPLS_VPN and SAFI_ENCAP use the MP nexthop field
7023 * EVPN routes are also exchanged with a MP nexthop. Currently,
7024 * this
7025 * is only IPv4, the value will be present in either
7026 * attr->nexthop or
7027 * attr->mp_nexthop_global_in
7028 */
7029 if ((safi == SAFI_ENCAP) || (safi == SAFI_MPLS_VPN)) {
7030 char buf[BUFSIZ];
7031 char nexthop[128];
7032 int af = NEXTHOP_FAMILY(attr->mp_nexthop_len);
7033
7034 switch (af) {
7035 case AF_INET:
7036 sprintf(nexthop, "%s",
7037 inet_ntop(af, &attr->mp_nexthop_global_in, buf,
7038 BUFSIZ));
7039 break;
7040 case AF_INET6:
7041 sprintf(nexthop, "%s",
7042 inet_ntop(af, &attr->mp_nexthop_global, buf,
7043 BUFSIZ));
7044 break;
7045 default:
7046 sprintf(nexthop, "?");
7047 break;
7048 }
7049
7050 if (json_paths) {
7051 json_nexthop_global = json_object_new_object();
7052
7053 json_object_string_add(
7054 json_nexthop_global, "afi",
7055 nexthop_fqdn ? "fqdn"
7056 : (af == AF_INET) ? "ip" : "ipv6");
7057 json_object_string_add(
7058 json_nexthop_global,
7059 nexthop_fqdn ? "fqdn"
7060 : (af == AF_INET) ? "ip" : "ipv6",
7061 nexthop_fqdn ? nexthop_fqdn : nexthop);
7062 json_object_boolean_true_add(json_nexthop_global,
7063 "used");
7064 } else
7065 vty_out(vty, "%s%s",
7066 nexthop_fqdn ? nexthop_fqdn : nexthop,
7067 vrf_id_str);
7068 } else if (safi == SAFI_EVPN) {
7069 if (json_paths) {
7070 json_nexthop_global = json_object_new_object();
7071
7072 json_object_string_add(
7073 json_nexthop_global,
7074 nexthop_fqdn ? "fqdn" : "ip",
7075 nexthop_fqdn ? nexthop_fqdn
7076 : inet_ntoa(attr->nexthop));
7077 json_object_string_add(json_nexthop_global, "afi",
7078 "ipv4");
7079 json_object_boolean_true_add(json_nexthop_global,
7080 "used");
7081 } else
7082 vty_out(vty, "%-16s%s",
7083 nexthop_fqdn ?: inet_ntoa(attr->nexthop),
7084 vrf_id_str);
7085 } else if (safi == SAFI_FLOWSPEC) {
7086 if (attr->nexthop.s_addr != 0) {
7087 if (json_paths) {
7088 json_nexthop_global = json_object_new_object();
7089 json_object_string_add(
7090 json_nexthop_global,
7091 nexthop_fqdn ? "fqdn" : "ip",
7092 nexthop_fqdn
7093 ? nexthop_fqdn
7094 : inet_ntoa(attr->nexthop));
7095 json_object_string_add(json_nexthop_global,
7096 "afi", "ipv4");
7097 json_object_boolean_true_add(
7098 json_nexthop_global,
7099 "used");
7100 } else {
7101 vty_out(vty, "%-16s",
7102 nexthop_fqdn
7103 ? nexthop_fqdn
7104 : inet_ntoa(attr->nexthop));
7105 }
7106 }
7107 } else if (p->family == AF_INET && !BGP_ATTR_NEXTHOP_AFI_IP6(attr)) {
7108 if (json_paths) {
7109 json_nexthop_global = json_object_new_object();
7110
7111 if ((safi == SAFI_MPLS_VPN) || (safi == SAFI_EVPN))
7112 json_object_string_add(
7113 json_nexthop_global,
7114 nexthop_fqdn ? "fqdn" : "ip",
7115 nexthop_fqdn
7116 ? nexthop_fqdn
7117 : inet_ntoa(
7118 attr->mp_nexthop_global_in));
7119 else
7120 json_object_string_add(
7121 json_nexthop_global,
7122 nexthop_fqdn ? "fqdn" : "ip",
7123 nexthop_fqdn
7124 ? nexthop_fqdn
7125 : inet_ntoa(attr->nexthop));
7126
7127 json_object_string_add(json_nexthop_global, "afi",
7128 "ipv4");
7129 json_object_boolean_true_add(json_nexthop_global,
7130 "used");
7131 } else {
7132 char buf[BUFSIZ];
7133
7134 snprintf(buf, sizeof(buf), "%s%s",
7135 nexthop_fqdn ? nexthop_fqdn
7136 : inet_ntoa(attr->nexthop),
7137 vrf_id_str);
7138 vty_out(vty, "%-16s", buf);
7139 }
7140 }
7141
7142 /* IPv6 Next Hop */
7143 else if (p->family == AF_INET6 || BGP_ATTR_NEXTHOP_AFI_IP6(attr)) {
7144 int len;
7145 char buf[BUFSIZ];
7146
7147 if (json_paths) {
7148 json_nexthop_global = json_object_new_object();
7149 json_object_string_add(
7150 json_nexthop_global,
7151 nexthop_fqdn ? "fqdn" : "ip",
7152 nexthop_fqdn
7153 ? nexthop_fqdn
7154 : inet_ntop(AF_INET6,
7155 &attr->mp_nexthop_global,
7156 buf, BUFSIZ));
7157 json_object_string_add(json_nexthop_global, "afi",
7158 "ipv6");
7159 json_object_string_add(json_nexthop_global, "scope",
7160 "global");
7161
7162 /* We display both LL & GL if both have been
7163 * received */
7164 if ((attr->mp_nexthop_len == 32)
7165 || (path->peer->conf_if)) {
7166 json_nexthop_ll = json_object_new_object();
7167 json_object_string_add(
7168 json_nexthop_ll,
7169 nexthop_fqdn ? "fqdn" : "ip",
7170 nexthop_fqdn
7171 ? nexthop_fqdn
7172 : inet_ntop(
7173 AF_INET6,
7174 &attr->mp_nexthop_local,
7175 buf, BUFSIZ));
7176 json_object_string_add(json_nexthop_ll, "afi",
7177 "ipv6");
7178 json_object_string_add(json_nexthop_ll, "scope",
7179 "link-local");
7180
7181 if ((IPV6_ADDR_CMP(&attr->mp_nexthop_global,
7182 &attr->mp_nexthop_local)
7183 != 0)
7184 && !attr->mp_nexthop_prefer_global)
7185 json_object_boolean_true_add(
7186 json_nexthop_ll, "used");
7187 else
7188 json_object_boolean_true_add(
7189 json_nexthop_global, "used");
7190 } else
7191 json_object_boolean_true_add(
7192 json_nexthop_global, "used");
7193 } else {
7194 /* Display LL if LL/Global both in table unless
7195 * prefer-global is set */
7196 if (((attr->mp_nexthop_len == 32)
7197 && !attr->mp_nexthop_prefer_global)
7198 || (path->peer->conf_if)) {
7199 if (path->peer->conf_if) {
7200 len = vty_out(vty, "%s",
7201 path->peer->conf_if);
7202 len = 16 - len; /* len of IPv6
7203 addr + max
7204 len of def
7205 ifname */
7206
7207 if (len < 1)
7208 vty_out(vty, "\n%*s", 36, " ");
7209 else
7210 vty_out(vty, "%*s", len, " ");
7211 } else {
7212 len = vty_out(
7213 vty, "%s%s",
7214 nexthop_fqdn
7215 ? nexthop_fqdn
7216 : inet_ntop(
7217 AF_INET6,
7218 &attr->mp_nexthop_local,
7219 buf, BUFSIZ),
7220 vrf_id_str);
7221 len = 16 - len;
7222
7223 if (len < 1)
7224 vty_out(vty, "\n%*s", 36, " ");
7225 else
7226 vty_out(vty, "%*s", len, " ");
7227 }
7228 } else {
7229 len = vty_out(
7230 vty, "%s%s",
7231 nexthop_fqdn
7232 ? nexthop_fqdn
7233 : inet_ntop(
7234 AF_INET6,
7235 &attr->mp_nexthop_global,
7236 buf, BUFSIZ),
7237 vrf_id_str);
7238 len = 16 - len;
7239
7240 if (len < 1)
7241 vty_out(vty, "\n%*s", 36, " ");
7242 else
7243 vty_out(vty, "%*s", len, " ");
7244 }
7245 }
7246 }
7247
7248 /* MED/Metric */
7249 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_MULTI_EXIT_DISC))
7250 if (json_paths) {
7251
7252 /*
7253 * Adding "metric" field to match with corresponding
7254 * CLI. "med" will be deprecated in future.
7255 */
7256 json_object_int_add(json_path, "med", attr->med);
7257 json_object_int_add(json_path, "metric", attr->med);
7258 } else
7259 vty_out(vty, "%10u", attr->med);
7260 else if (!json_paths)
7261 vty_out(vty, " ");
7262
7263 /* Local Pref */
7264 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF))
7265 if (json_paths) {
7266
7267 /*
7268 * Adding "locPrf" field to match with corresponding
7269 * CLI. "localPref" will be deprecated in future.
7270 */
7271 json_object_int_add(json_path, "localpref",
7272 attr->local_pref);
7273 json_object_int_add(json_path, "locPrf",
7274 attr->local_pref);
7275 } else
7276 vty_out(vty, "%7u", attr->local_pref);
7277 else if (!json_paths)
7278 vty_out(vty, " ");
7279
7280 if (json_paths)
7281 json_object_int_add(json_path, "weight", attr->weight);
7282 else
7283 vty_out(vty, "%7u ", attr->weight);
7284
7285 if (json_paths) {
7286 char buf[BUFSIZ];
7287 json_object_string_add(
7288 json_path, "peerId",
7289 sockunion2str(&path->peer->su, buf, SU_ADDRSTRLEN));
7290 }
7291
7292 /* Print aspath */
7293 if (attr->aspath) {
7294 if (json_paths) {
7295
7296 /*
7297 * Adding "path" field to match with corresponding
7298 * CLI. "aspath" will be deprecated in future.
7299 */
7300 json_object_string_add(json_path, "aspath",
7301 attr->aspath->str);
7302 json_object_string_add(json_path, "path",
7303 attr->aspath->str);
7304 } else
7305 aspath_print_vty(vty, "%s", attr->aspath, " ");
7306 }
7307
7308 /* Print origin */
7309 if (json_paths)
7310 json_object_string_add(json_path, "origin",
7311 bgp_origin_long_str[attr->origin]);
7312 else
7313 vty_out(vty, "%s", bgp_origin_str[attr->origin]);
7314
7315 if (json_paths) {
7316 if (nexthop_self)
7317 json_object_boolean_true_add(json_path,
7318 "announceNexthopSelf");
7319 if (nexthop_othervrf) {
7320 json_object_string_add(json_path, "nhVrfName",
7321 nexthop_vrfname);
7322
7323 json_object_int_add(json_path, "nhVrfId",
7324 ((nexthop_vrfid == VRF_UNKNOWN)
7325 ? -1
7326 : (int)nexthop_vrfid));
7327 }
7328 }
7329
7330 if (json_paths) {
7331 if (json_nexthop_global || json_nexthop_ll) {
7332 json_nexthops = json_object_new_array();
7333
7334 if (json_nexthop_global)
7335 json_object_array_add(json_nexthops,
7336 json_nexthop_global);
7337
7338 if (json_nexthop_ll)
7339 json_object_array_add(json_nexthops,
7340 json_nexthop_ll);
7341
7342 json_object_object_add(json_path, "nexthops",
7343 json_nexthops);
7344 }
7345
7346 json_object_array_add(json_paths, json_path);
7347 } else {
7348 vty_out(vty, "\n");
7349 #if ENABLE_BGP_VNC
7350 /* prints an additional line, indented, with VNC info, if
7351 * present */
7352 if ((safi == SAFI_MPLS_VPN) || (safi == SAFI_ENCAP))
7353 rfapi_vty_out_vncinfo(vty, p, path, safi);
7354 #endif
7355 }
7356 }
7357
7358 /* called from terminal list command */
7359 void route_vty_out_tmp(struct vty *vty, struct prefix *p, struct attr *attr,
7360 safi_t safi, bool use_json, json_object *json_ar)
7361 {
7362 json_object *json_status = NULL;
7363 json_object *json_net = NULL;
7364 char buff[BUFSIZ];
7365 char buf2[BUFSIZ];
7366 /* Route status display. */
7367 if (use_json) {
7368 json_status = json_object_new_object();
7369 json_net = json_object_new_object();
7370 } else {
7371 vty_out(vty, "*");
7372 vty_out(vty, ">");
7373 vty_out(vty, " ");
7374 }
7375
7376 /* print prefix and mask */
7377 if (use_json) {
7378 json_object_string_add(
7379 json_net, "addrPrefix",
7380 inet_ntop(p->family, &p->u.prefix, buff, BUFSIZ));
7381 json_object_int_add(json_net, "prefixLen", p->prefixlen);
7382 prefix2str(p, buf2, PREFIX_STRLEN);
7383 json_object_string_add(json_net, "network", buf2);
7384 } else
7385 route_vty_out_route(p, vty, NULL);
7386
7387 /* Print attribute */
7388 if (attr) {
7389 if (use_json) {
7390 if (p->family == AF_INET
7391 && (safi == SAFI_MPLS_VPN || safi == SAFI_ENCAP
7392 || safi == SAFI_EVPN
7393 || !BGP_ATTR_NEXTHOP_AFI_IP6(attr))) {
7394 if (safi == SAFI_MPLS_VPN || safi == SAFI_ENCAP
7395 || safi == SAFI_EVPN)
7396 json_object_string_add(
7397 json_net, "nextHop",
7398 inet_ntoa(
7399 attr->mp_nexthop_global_in));
7400 else
7401 json_object_string_add(
7402 json_net, "nextHop",
7403 inet_ntoa(attr->nexthop));
7404 } else if (p->family == AF_INET6
7405 || BGP_ATTR_NEXTHOP_AFI_IP6(attr)) {
7406 char buf[BUFSIZ];
7407
7408 json_object_string_add(
7409 json_net, "nextHopGlobal",
7410 inet_ntop(AF_INET6,
7411 &attr->mp_nexthop_global, buf,
7412 BUFSIZ));
7413 }
7414
7415 if (attr->flag
7416 & ATTR_FLAG_BIT(BGP_ATTR_MULTI_EXIT_DISC))
7417 json_object_int_add(json_net, "metric",
7418 attr->med);
7419
7420 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF)) {
7421
7422 /*
7423 * Adding "locPrf" field to match with
7424 * corresponding CLI. "localPref" will be
7425 * deprecated in future.
7426 */
7427 json_object_int_add(json_net, "localPref",
7428 attr->local_pref);
7429 json_object_int_add(json_net, "locPrf",
7430 attr->local_pref);
7431 }
7432
7433 json_object_int_add(json_net, "weight", attr->weight);
7434
7435 /* Print aspath */
7436 if (attr->aspath) {
7437
7438 /*
7439 * Adding "path" field to match with
7440 * corresponding CLI. "localPref" will be
7441 * deprecated in future.
7442 */
7443 json_object_string_add(json_net, "asPath",
7444 attr->aspath->str);
7445 json_object_string_add(json_net, "path",
7446 attr->aspath->str);
7447 }
7448
7449 /* Print origin */
7450 json_object_string_add(json_net, "bgpOriginCode",
7451 bgp_origin_str[attr->origin]);
7452 } else {
7453 if (p->family == AF_INET
7454 && (safi == SAFI_MPLS_VPN || safi == SAFI_ENCAP
7455 || safi == SAFI_EVPN
7456 || !BGP_ATTR_NEXTHOP_AFI_IP6(attr))) {
7457 if (safi == SAFI_MPLS_VPN || safi == SAFI_ENCAP
7458 || safi == SAFI_EVPN)
7459 vty_out(vty, "%-16s",
7460 inet_ntoa(
7461 attr->mp_nexthop_global_in));
7462 else
7463 vty_out(vty, "%-16s",
7464 inet_ntoa(attr->nexthop));
7465 } else if (p->family == AF_INET6
7466 || BGP_ATTR_NEXTHOP_AFI_IP6(attr)) {
7467 int len;
7468 char buf[BUFSIZ];
7469
7470 len = vty_out(
7471 vty, "%s",
7472 inet_ntop(AF_INET6,
7473 &attr->mp_nexthop_global, buf,
7474 BUFSIZ));
7475 len = 16 - len;
7476 if (len < 1)
7477 vty_out(vty, "\n%*s", 36, " ");
7478 else
7479 vty_out(vty, "%*s", len, " ");
7480 }
7481 if (attr->flag
7482 & ATTR_FLAG_BIT(BGP_ATTR_MULTI_EXIT_DISC))
7483 vty_out(vty, "%10u", attr->med);
7484 else
7485 vty_out(vty, " ");
7486
7487 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF))
7488 vty_out(vty, "%7u", attr->local_pref);
7489 else
7490 vty_out(vty, " ");
7491
7492 vty_out(vty, "%7u ", attr->weight);
7493
7494 /* Print aspath */
7495 if (attr->aspath)
7496 aspath_print_vty(vty, "%s", attr->aspath, " ");
7497
7498 /* Print origin */
7499 vty_out(vty, "%s", bgp_origin_str[attr->origin]);
7500 }
7501 }
7502 if (use_json) {
7503 json_object_boolean_true_add(json_status, "*");
7504 json_object_boolean_true_add(json_status, ">");
7505 json_object_object_add(json_net, "appliedStatusSymbols",
7506 json_status);
7507 char buf_cut[BUFSIZ];
7508 json_object_object_add(
7509 json_ar,
7510 inet_ntop(p->family, &p->u.prefix, buf_cut, BUFSIZ),
7511 json_net);
7512 } else
7513 vty_out(vty, "\n");
7514 }
7515
7516 void route_vty_out_tag(struct vty *vty, struct prefix *p,
7517 struct bgp_path_info *path, int display, safi_t safi,
7518 json_object *json)
7519 {
7520 json_object *json_out = NULL;
7521 struct attr *attr;
7522 mpls_label_t label = MPLS_INVALID_LABEL;
7523
7524 if (!path->extra)
7525 return;
7526
7527 if (json)
7528 json_out = json_object_new_object();
7529
7530 /* short status lead text */
7531 route_vty_short_status_out(vty, path, json_out);
7532
7533 /* print prefix and mask */
7534 if (json == NULL) {
7535 if (!display)
7536 route_vty_out_route(p, vty, NULL);
7537 else
7538 vty_out(vty, "%*s", 17, " ");
7539 }
7540
7541 /* Print attribute */
7542 attr = path->attr;
7543 if (attr) {
7544 if (((p->family == AF_INET)
7545 && ((safi == SAFI_MPLS_VPN || safi == SAFI_ENCAP)))
7546 || (safi == SAFI_EVPN && !BGP_ATTR_NEXTHOP_AFI_IP6(attr))
7547 || (!BGP_ATTR_NEXTHOP_AFI_IP6(attr))) {
7548 if (safi == SAFI_MPLS_VPN || safi == SAFI_ENCAP
7549 || safi == SAFI_EVPN) {
7550 if (json)
7551 json_object_string_add(
7552 json_out, "mpNexthopGlobalIn",
7553 inet_ntoa(
7554 attr->mp_nexthop_global_in));
7555 else
7556 vty_out(vty, "%-16s",
7557 inet_ntoa(
7558 attr->mp_nexthop_global_in));
7559 } else {
7560 if (json)
7561 json_object_string_add(
7562 json_out, "nexthop",
7563 inet_ntoa(attr->nexthop));
7564 else
7565 vty_out(vty, "%-16s",
7566 inet_ntoa(attr->nexthop));
7567 }
7568 } else if (((p->family == AF_INET6)
7569 && ((safi == SAFI_MPLS_VPN || safi == SAFI_ENCAP)))
7570 || (safi == SAFI_EVPN
7571 && BGP_ATTR_NEXTHOP_AFI_IP6(attr))
7572 || (BGP_ATTR_NEXTHOP_AFI_IP6(attr))) {
7573 char buf_a[512];
7574 if (attr->mp_nexthop_len
7575 == BGP_ATTR_NHLEN_IPV6_GLOBAL) {
7576 if (json)
7577 json_object_string_add(
7578 json_out, "mpNexthopGlobalIn",
7579 inet_ntop(
7580 AF_INET6,
7581 &attr->mp_nexthop_global,
7582 buf_a, sizeof(buf_a)));
7583 else
7584 vty_out(vty, "%s",
7585 inet_ntop(
7586 AF_INET6,
7587 &attr->mp_nexthop_global,
7588 buf_a, sizeof(buf_a)));
7589 } else if (attr->mp_nexthop_len
7590 == BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL) {
7591 snprintfrr(buf_a, sizeof(buf_a), "%pI6(%pI6)",
7592 &attr->mp_nexthop_global,
7593 &attr->mp_nexthop_local);
7594 if (json)
7595 json_object_string_add(
7596 json_out,
7597 "mpNexthopGlobalLocal", buf_a);
7598 else
7599 vty_out(vty, "%s", buf_a);
7600 }
7601 }
7602 }
7603
7604 label = decode_label(&path->extra->label[0]);
7605
7606 if (bgp_is_valid_label(&label)) {
7607 if (json) {
7608 json_object_int_add(json_out, "notag", label);
7609 json_object_array_add(json, json_out);
7610 } else {
7611 vty_out(vty, "notag/%d", label);
7612 vty_out(vty, "\n");
7613 }
7614 }
7615 }
7616
7617 void route_vty_out_overlay(struct vty *vty, struct prefix *p,
7618 struct bgp_path_info *path, int display,
7619 json_object *json_paths)
7620 {
7621 struct attr *attr;
7622 char buf[BUFSIZ] = {0};
7623 json_object *json_path = NULL;
7624 json_object *json_nexthop = NULL;
7625 json_object *json_overlay = NULL;
7626
7627 if (!path->extra)
7628 return;
7629
7630 if (json_paths) {
7631 json_path = json_object_new_object();
7632 json_overlay = json_object_new_object();
7633 json_nexthop = json_object_new_object();
7634 }
7635
7636 /* short status lead text */
7637 route_vty_short_status_out(vty, path, json_path);
7638
7639 /* print prefix and mask */
7640 if (!display)
7641 route_vty_out_route(p, vty, json_path);
7642 else
7643 vty_out(vty, "%*s", 17, " ");
7644
7645 /* Print attribute */
7646 attr = path->attr;
7647 if (attr) {
7648 char buf1[BUFSIZ];
7649 int af = NEXTHOP_FAMILY(attr->mp_nexthop_len);
7650
7651 switch (af) {
7652 case AF_INET:
7653 inet_ntop(af, &attr->mp_nexthop_global_in, buf, BUFSIZ);
7654 if (!json_path) {
7655 vty_out(vty, "%-16s", buf);
7656 } else {
7657 json_object_string_add(json_nexthop, "ip", buf);
7658
7659 json_object_string_add(json_nexthop, "afi",
7660 "ipv4");
7661
7662 json_object_object_add(json_path, "nexthop",
7663 json_nexthop);
7664 }
7665 break;
7666 case AF_INET6:
7667 inet_ntop(af, &attr->mp_nexthop_global, buf, BUFSIZ);
7668 inet_ntop(af, &attr->mp_nexthop_local, buf1, BUFSIZ);
7669 if (!json_path) {
7670 vty_out(vty, "%s(%s)", buf, buf1);
7671 } else {
7672 json_object_string_add(json_nexthop,
7673 "ipv6Global", buf);
7674
7675 json_object_string_add(json_nexthop,
7676 "ipv6LinkLocal", buf1);
7677
7678 json_object_string_add(json_nexthop, "afi",
7679 "ipv6");
7680
7681 json_object_object_add(json_path, "nexthop",
7682 json_nexthop);
7683 }
7684 break;
7685 default:
7686 if (!json_path) {
7687 vty_out(vty, "?");
7688 } else {
7689 json_object_string_add(json_nexthop, "Error",
7690 "Unsupported address-family");
7691 }
7692 }
7693
7694 char *str = esi2str(&(attr->evpn_overlay.eth_s_id));
7695
7696 if (!json_path)
7697 vty_out(vty, "%s", str);
7698 else
7699 json_object_string_add(json_overlay, "esi", str);
7700
7701 XFREE(MTYPE_TMP, str);
7702
7703 if (is_evpn_prefix_ipaddr_v4((struct prefix_evpn *)p)) {
7704 inet_ntop(AF_INET, &(attr->evpn_overlay.gw_ip.ipv4),
7705 buf, BUFSIZ);
7706 } else if (is_evpn_prefix_ipaddr_v6((struct prefix_evpn *)p)) {
7707 inet_ntop(AF_INET6, &(attr->evpn_overlay.gw_ip.ipv6),
7708 buf, BUFSIZ);
7709 }
7710
7711 if (!json_path)
7712 vty_out(vty, "/%s", buf);
7713 else
7714 json_object_string_add(json_overlay, "gw", buf);
7715
7716 if (attr->ecommunity) {
7717 char *mac = NULL;
7718 struct ecommunity_val *routermac = ecommunity_lookup(
7719 attr->ecommunity, ECOMMUNITY_ENCODE_EVPN,
7720 ECOMMUNITY_EVPN_SUBTYPE_ROUTERMAC);
7721 if (routermac)
7722 mac = ecom_mac2str((char *)routermac->val);
7723 if (mac) {
7724 if (!json_path) {
7725 vty_out(vty, "/%s", (char *)mac);
7726 } else {
7727 json_object_string_add(json_overlay,
7728 "rmac", mac);
7729 }
7730 XFREE(MTYPE_TMP, mac);
7731 }
7732 }
7733
7734 if (!json_path) {
7735 vty_out(vty, "\n");
7736 } else {
7737 json_object_object_add(json_path, "overlay",
7738 json_overlay);
7739
7740 json_object_array_add(json_paths, json_path);
7741 }
7742 }
7743 }
7744
7745 /* dampening route */
7746 static void damp_route_vty_out(struct vty *vty, struct prefix *p,
7747 struct bgp_path_info *path, int display,
7748 safi_t safi, bool use_json, json_object *json)
7749 {
7750 struct attr *attr;
7751 int len;
7752 char timebuf[BGP_UPTIME_LEN];
7753
7754 /* short status lead text */
7755 route_vty_short_status_out(vty, path, json);
7756
7757 /* print prefix and mask */
7758 if (!use_json) {
7759 if (!display)
7760 route_vty_out_route(p, vty, NULL);
7761 else
7762 vty_out(vty, "%*s", 17, " ");
7763 }
7764
7765 len = vty_out(vty, "%s", path->peer->host);
7766 len = 17 - len;
7767 if (len < 1) {
7768 if (!use_json)
7769 vty_out(vty, "\n%*s", 34, " ");
7770 } else {
7771 if (use_json)
7772 json_object_int_add(json, "peerHost", len);
7773 else
7774 vty_out(vty, "%*s", len, " ");
7775 }
7776
7777 if (use_json)
7778 bgp_damp_reuse_time_vty(vty, path, timebuf, BGP_UPTIME_LEN,
7779 use_json, json);
7780 else
7781 vty_out(vty, "%s ",
7782 bgp_damp_reuse_time_vty(vty, path, timebuf,
7783 BGP_UPTIME_LEN, use_json,
7784 json));
7785
7786 /* Print attribute */
7787 attr = path->attr;
7788 if (attr) {
7789 /* Print aspath */
7790 if (attr->aspath) {
7791 if (use_json)
7792 json_object_string_add(json, "asPath",
7793 attr->aspath->str);
7794 else
7795 aspath_print_vty(vty, "%s", attr->aspath, " ");
7796 }
7797
7798 /* Print origin */
7799 if (use_json)
7800 json_object_string_add(json, "origin",
7801 bgp_origin_str[attr->origin]);
7802 else
7803 vty_out(vty, "%s", bgp_origin_str[attr->origin]);
7804 }
7805 if (!use_json)
7806 vty_out(vty, "\n");
7807 }
7808
7809 /* flap route */
7810 static void flap_route_vty_out(struct vty *vty, struct prefix *p,
7811 struct bgp_path_info *path, int display,
7812 safi_t safi, bool use_json, json_object *json)
7813 {
7814 struct attr *attr;
7815 struct bgp_damp_info *bdi;
7816 char timebuf[BGP_UPTIME_LEN];
7817 int len;
7818
7819 if (!path->extra)
7820 return;
7821
7822 bdi = path->extra->damp_info;
7823
7824 /* short status lead text */
7825 route_vty_short_status_out(vty, path, json);
7826
7827 /* print prefix and mask */
7828 if (!use_json) {
7829 if (!display)
7830 route_vty_out_route(p, vty, NULL);
7831 else
7832 vty_out(vty, "%*s", 17, " ");
7833 }
7834
7835 len = vty_out(vty, "%s", path->peer->host);
7836 len = 16 - len;
7837 if (len < 1) {
7838 if (!use_json)
7839 vty_out(vty, "\n%*s", 33, " ");
7840 } else {
7841 if (use_json)
7842 json_object_int_add(json, "peerHost", len);
7843 else
7844 vty_out(vty, "%*s", len, " ");
7845 }
7846
7847 len = vty_out(vty, "%d", bdi->flap);
7848 len = 5 - len;
7849 if (len < 1) {
7850 if (!use_json)
7851 vty_out(vty, " ");
7852 } else {
7853 if (use_json)
7854 json_object_int_add(json, "bdiFlap", len);
7855 else
7856 vty_out(vty, "%*s", len, " ");
7857 }
7858
7859 if (use_json)
7860 peer_uptime(bdi->start_time, timebuf, BGP_UPTIME_LEN, use_json,
7861 json);
7862 else
7863 vty_out(vty, "%s ", peer_uptime(bdi->start_time, timebuf,
7864 BGP_UPTIME_LEN, 0, NULL));
7865
7866 if (CHECK_FLAG(path->flags, BGP_PATH_DAMPED)
7867 && !CHECK_FLAG(path->flags, BGP_PATH_HISTORY)) {
7868 if (use_json)
7869 bgp_damp_reuse_time_vty(vty, path, timebuf,
7870 BGP_UPTIME_LEN, use_json, json);
7871 else
7872 vty_out(vty, "%s ",
7873 bgp_damp_reuse_time_vty(vty, path, timebuf,
7874 BGP_UPTIME_LEN,
7875 use_json, json));
7876 } else {
7877 if (!use_json)
7878 vty_out(vty, "%*s ", 8, " ");
7879 }
7880
7881 /* Print attribute */
7882 attr = path->attr;
7883 if (attr) {
7884 /* Print aspath */
7885 if (attr->aspath) {
7886 if (use_json)
7887 json_object_string_add(json, "asPath",
7888 attr->aspath->str);
7889 else
7890 aspath_print_vty(vty, "%s", attr->aspath, " ");
7891 }
7892
7893 /* Print origin */
7894 if (use_json)
7895 json_object_string_add(json, "origin",
7896 bgp_origin_str[attr->origin]);
7897 else
7898 vty_out(vty, "%s", bgp_origin_str[attr->origin]);
7899 }
7900 if (!use_json)
7901 vty_out(vty, "\n");
7902 }
7903
7904 static void route_vty_out_advertised_to(struct vty *vty, struct peer *peer,
7905 int *first, const char *header,
7906 json_object *json_adv_to)
7907 {
7908 char buf1[INET6_ADDRSTRLEN];
7909 json_object *json_peer = NULL;
7910
7911 if (json_adv_to) {
7912 /* 'advertised-to' is a dictionary of peers we have advertised
7913 * this
7914 * prefix too. The key is the peer's IP or swpX, the value is
7915 * the
7916 * hostname if we know it and "" if not.
7917 */
7918 json_peer = json_object_new_object();
7919
7920 if (peer->hostname)
7921 json_object_string_add(json_peer, "hostname",
7922 peer->hostname);
7923
7924 if (peer->conf_if)
7925 json_object_object_add(json_adv_to, peer->conf_if,
7926 json_peer);
7927 else
7928 json_object_object_add(
7929 json_adv_to,
7930 sockunion2str(&peer->su, buf1, SU_ADDRSTRLEN),
7931 json_peer);
7932 } else {
7933 if (*first) {
7934 vty_out(vty, "%s", header);
7935 *first = 0;
7936 }
7937
7938 if (peer->hostname
7939 && bgp_flag_check(peer->bgp, BGP_FLAG_SHOW_HOSTNAME)) {
7940 if (peer->conf_if)
7941 vty_out(vty, " %s(%s)", peer->hostname,
7942 peer->conf_if);
7943 else
7944 vty_out(vty, " %s(%s)", peer->hostname,
7945 sockunion2str(&peer->su, buf1,
7946 SU_ADDRSTRLEN));
7947 } else {
7948 if (peer->conf_if)
7949 vty_out(vty, " %s", peer->conf_if);
7950 else
7951 vty_out(vty, " %s",
7952 sockunion2str(&peer->su, buf1,
7953 SU_ADDRSTRLEN));
7954 }
7955 }
7956 }
7957
7958 static void route_vty_out_tx_ids(struct vty *vty,
7959 struct bgp_addpath_info_data *d)
7960 {
7961 int i;
7962
7963 for (i = 0; i < BGP_ADDPATH_MAX; i++) {
7964 vty_out(vty, "TX-%s %u%s", bgp_addpath_names(i)->human_name,
7965 d->addpath_tx_id[i],
7966 i < BGP_ADDPATH_MAX - 1 ? " " : "\n");
7967 }
7968 }
7969
7970 static const char *bgp_path_selection_reason2str(
7971 enum bgp_path_selection_reason reason)
7972 {
7973 switch (reason) {
7974 case bgp_path_selection_none:
7975 return "Nothing to Select";
7976 break;
7977 case bgp_path_selection_first:
7978 return "First path received";
7979 break;
7980 case bgp_path_selection_evpn_sticky_mac:
7981 return "EVPN Sticky Mac";
7982 break;
7983 case bgp_path_selection_evpn_seq:
7984 return "EVPN sequence number";
7985 break;
7986 case bgp_path_selection_evpn_lower_ip:
7987 return "EVPN lower IP";
7988 break;
7989 case bgp_path_selection_weight:
7990 return "Weight";
7991 break;
7992 case bgp_path_selection_local_pref:
7993 return "Local Pref";
7994 break;
7995 case bgp_path_selection_local_route:
7996 return "Local Route";
7997 break;
7998 case bgp_path_selection_confed_as_path:
7999 return "Confederation based AS Path";
8000 break;
8001 case bgp_path_selection_as_path:
8002 return "AS Path";
8003 break;
8004 case bgp_path_selection_origin:
8005 return "Origin";
8006 break;
8007 case bgp_path_selection_med:
8008 return "MED";
8009 break;
8010 case bgp_path_selection_peer:
8011 return "Peer Type";
8012 break;
8013 case bgp_path_selection_confed:
8014 return "Confed Peer Type";
8015 break;
8016 case bgp_path_selection_igp_metric:
8017 return "IGP Metric";
8018 break;
8019 case bgp_path_selection_older:
8020 return "Older Path";
8021 break;
8022 case bgp_path_selection_router_id:
8023 return "Router ID";
8024 break;
8025 case bgp_path_selection_cluster_length:
8026 return "Cluser length";
8027 break;
8028 case bgp_path_selection_stale:
8029 return "Path Staleness";
8030 break;
8031 case bgp_path_selection_local_configured:
8032 return "Locally configured route";
8033 break;
8034 case bgp_path_selection_neighbor_ip:
8035 return "Neighbor IP";
8036 break;
8037 case bgp_path_selection_default:
8038 return "Nothing left to compare";
8039 break;
8040 }
8041 return "Invalid (internal error)";
8042 }
8043
8044 void route_vty_out_detail(struct vty *vty, struct bgp *bgp,
8045 struct bgp_node *bn, struct bgp_path_info *path,
8046 afi_t afi, safi_t safi, json_object *json_paths)
8047 {
8048 char buf[INET6_ADDRSTRLEN];
8049 char buf1[BUFSIZ];
8050 char buf2[EVPN_ROUTE_STRLEN];
8051 struct attr *attr;
8052 int sockunion_vty_out(struct vty *, union sockunion *);
8053 time_t tbuf;
8054 json_object *json_bestpath = NULL;
8055 json_object *json_cluster_list = NULL;
8056 json_object *json_cluster_list_list = NULL;
8057 json_object *json_ext_community = NULL;
8058 json_object *json_last_update = NULL;
8059 json_object *json_pmsi = NULL;
8060 json_object *json_nexthop_global = NULL;
8061 json_object *json_nexthop_ll = NULL;
8062 json_object *json_nexthops = NULL;
8063 json_object *json_path = NULL;
8064 json_object *json_peer = NULL;
8065 json_object *json_string = NULL;
8066 json_object *json_adv_to = NULL;
8067 int first = 0;
8068 struct listnode *node, *nnode;
8069 struct peer *peer;
8070 int addpath_capable;
8071 int has_adj;
8072 unsigned int first_as;
8073 bool nexthop_self =
8074 CHECK_FLAG(path->flags, BGP_PATH_ANNC_NH_SELF) ? true : false;
8075 int i;
8076 char *nexthop_fqdn = bgp_nexthop_fqdn(path->peer);
8077
8078 if (json_paths) {
8079 json_path = json_object_new_object();
8080 json_peer = json_object_new_object();
8081 json_nexthop_global = json_object_new_object();
8082 }
8083
8084 if (!json_paths && safi == SAFI_EVPN) {
8085 char tag_buf[30];
8086
8087 bgp_evpn_route2str((struct prefix_evpn *)&bn->p,
8088 buf2, sizeof(buf2));
8089 vty_out(vty, " Route %s", buf2);
8090 tag_buf[0] = '\0';
8091 if (path->extra && path->extra->num_labels) {
8092 bgp_evpn_label2str(path->extra->label,
8093 path->extra->num_labels, tag_buf,
8094 sizeof(tag_buf));
8095 vty_out(vty, " VNI %s", tag_buf);
8096 }
8097 vty_out(vty, "\n");
8098 if (path->extra && path->extra->parent) {
8099 struct bgp_path_info *parent_ri;
8100 struct bgp_node *rn, *prn;
8101
8102 parent_ri = (struct bgp_path_info *)path->extra->parent;
8103 rn = parent_ri->net;
8104 if (rn && rn->prn) {
8105 prn = rn->prn;
8106 vty_out(vty, " Imported from %s:%s\n",
8107 prefix_rd2str(
8108 (struct prefix_rd *)&prn->p,
8109 buf1, sizeof(buf1)),
8110 buf2);
8111 }
8112 }
8113 }
8114
8115 attr = path->attr;
8116
8117 if (attr) {
8118 /* Line1 display AS-path, Aggregator */
8119 if (attr->aspath) {
8120 if (json_paths) {
8121 if (!attr->aspath->json)
8122 aspath_str_update(attr->aspath, true);
8123 json_object_lock(attr->aspath->json);
8124 json_object_object_add(json_path, "aspath",
8125 attr->aspath->json);
8126 } else {
8127 if (attr->aspath->segments)
8128 aspath_print_vty(vty, " %s",
8129 attr->aspath, "");
8130 else
8131 vty_out(vty, " Local");
8132 }
8133 }
8134
8135 if (CHECK_FLAG(path->flags, BGP_PATH_REMOVED)) {
8136 if (json_paths)
8137 json_object_boolean_true_add(json_path,
8138 "removed");
8139 else
8140 vty_out(vty, ", (removed)");
8141 }
8142
8143 if (CHECK_FLAG(path->flags, BGP_PATH_STALE)) {
8144 if (json_paths)
8145 json_object_boolean_true_add(json_path,
8146 "stale");
8147 else
8148 vty_out(vty, ", (stale)");
8149 }
8150
8151 if (CHECK_FLAG(attr->flag,
8152 ATTR_FLAG_BIT(BGP_ATTR_AGGREGATOR))) {
8153 if (json_paths) {
8154 json_object_int_add(json_path, "aggregatorAs",
8155 attr->aggregator_as);
8156 json_object_string_add(
8157 json_path, "aggregatorId",
8158 inet_ntoa(attr->aggregator_addr));
8159 } else {
8160 vty_out(vty, ", (aggregated by %u %s)",
8161 attr->aggregator_as,
8162 inet_ntoa(attr->aggregator_addr));
8163 }
8164 }
8165
8166 if (CHECK_FLAG(path->peer->af_flags[afi][safi],
8167 PEER_FLAG_REFLECTOR_CLIENT)) {
8168 if (json_paths)
8169 json_object_boolean_true_add(
8170 json_path, "rxedFromRrClient");
8171 else
8172 vty_out(vty, ", (Received from a RR-client)");
8173 }
8174
8175 if (CHECK_FLAG(path->peer->af_flags[afi][safi],
8176 PEER_FLAG_RSERVER_CLIENT)) {
8177 if (json_paths)
8178 json_object_boolean_true_add(
8179 json_path, "rxedFromRsClient");
8180 else
8181 vty_out(vty, ", (Received from a RS-client)");
8182 }
8183
8184 if (CHECK_FLAG(path->flags, BGP_PATH_HISTORY)) {
8185 if (json_paths)
8186 json_object_boolean_true_add(
8187 json_path, "dampeningHistoryEntry");
8188 else
8189 vty_out(vty, ", (history entry)");
8190 } else if (CHECK_FLAG(path->flags, BGP_PATH_DAMPED)) {
8191 if (json_paths)
8192 json_object_boolean_true_add(
8193 json_path, "dampeningSuppressed");
8194 else
8195 vty_out(vty, ", (suppressed due to dampening)");
8196 }
8197
8198 if (!json_paths)
8199 vty_out(vty, "\n");
8200
8201 /* Line2 display Next-hop, Neighbor, Router-id */
8202 /* Display the nexthop */
8203 if ((bn->p.family == AF_INET || bn->p.family == AF_ETHERNET
8204 || bn->p.family == AF_EVPN)
8205 && (safi == SAFI_MPLS_VPN || safi == SAFI_ENCAP
8206 || safi == SAFI_EVPN
8207 || !BGP_ATTR_NEXTHOP_AFI_IP6(attr))) {
8208 if (safi == SAFI_MPLS_VPN || safi == SAFI_ENCAP
8209 || safi == SAFI_EVPN) {
8210 if (json_paths)
8211 json_object_string_add(
8212 json_nexthop_global,
8213 nexthop_fqdn ? "fqdn" : "ip",
8214 nexthop_fqdn
8215 ? nexthop_fqdn
8216 : inet_ntoa(
8217 attr->mp_nexthop_global_in));
8218 else
8219 vty_out(vty, " %s",
8220 nexthop_fqdn
8221 ? nexthop_fqdn
8222 : inet_ntoa(
8223 attr->mp_nexthop_global_in));
8224 } else {
8225 if (json_paths)
8226 json_object_string_add(
8227 json_nexthop_global,
8228 nexthop_fqdn ? "fqdn" : "ip",
8229 nexthop_fqdn
8230 ? nexthop_fqdn
8231 : inet_ntoa(
8232 attr->nexthop));
8233 else
8234 vty_out(vty, " %s",
8235 nexthop_fqdn
8236 ? nexthop_fqdn
8237 : inet_ntoa(
8238 attr->nexthop));
8239 }
8240
8241 if (json_paths)
8242 json_object_string_add(json_nexthop_global,
8243 "afi", "ipv4");
8244 } else {
8245 if (json_paths) {
8246 json_object_string_add(
8247 json_nexthop_global,
8248 nexthop_fqdn ? "fqdn" : "ip",
8249 nexthop_fqdn
8250 ? nexthop_fqdn
8251 : inet_ntop(
8252 AF_INET6,
8253 &attr->mp_nexthop_global,
8254 buf,
8255 INET6_ADDRSTRLEN));
8256 json_object_string_add(json_nexthop_global,
8257 "afi", "ipv6");
8258 json_object_string_add(json_nexthop_global,
8259 "scope", "global");
8260 } else {
8261 vty_out(vty, " %s",
8262 nexthop_fqdn
8263 ? nexthop_fqdn
8264 : inet_ntop(
8265 AF_INET6,
8266 &attr->mp_nexthop_global,
8267 buf,
8268 INET6_ADDRSTRLEN));
8269 }
8270 }
8271
8272 /* Display the IGP cost or 'inaccessible' */
8273 if (!CHECK_FLAG(path->flags, BGP_PATH_VALID)) {
8274 if (json_paths)
8275 json_object_boolean_false_add(
8276 json_nexthop_global, "accessible");
8277 else
8278 vty_out(vty, " (inaccessible)");
8279 } else {
8280 if (path->extra && path->extra->igpmetric) {
8281 if (json_paths)
8282 json_object_int_add(
8283 json_nexthop_global, "metric",
8284 path->extra->igpmetric);
8285 else
8286 vty_out(vty, " (metric %u)",
8287 path->extra->igpmetric);
8288 }
8289
8290 /* IGP cost is 0, display this only for json */
8291 else {
8292 if (json_paths)
8293 json_object_int_add(json_nexthop_global,
8294 "metric", 0);
8295 }
8296
8297 if (json_paths)
8298 json_object_boolean_true_add(
8299 json_nexthop_global, "accessible");
8300 }
8301
8302 /* Display peer "from" output */
8303 /* This path was originated locally */
8304 if (path->peer == bgp->peer_self) {
8305
8306 if (safi == SAFI_EVPN
8307 || (bn->p.family == AF_INET
8308 && !BGP_ATTR_NEXTHOP_AFI_IP6(attr))) {
8309 if (json_paths)
8310 json_object_string_add(
8311 json_peer, "peerId", "0.0.0.0");
8312 else
8313 vty_out(vty, " from 0.0.0.0 ");
8314 } else {
8315 if (json_paths)
8316 json_object_string_add(json_peer,
8317 "peerId", "::");
8318 else
8319 vty_out(vty, " from :: ");
8320 }
8321
8322 if (json_paths)
8323 json_object_string_add(
8324 json_peer, "routerId",
8325 inet_ntoa(bgp->router_id));
8326 else
8327 vty_out(vty, "(%s)", inet_ntoa(bgp->router_id));
8328 }
8329
8330 /* We RXed this path from one of our peers */
8331 else {
8332
8333 if (json_paths) {
8334 json_object_string_add(
8335 json_peer, "peerId",
8336 sockunion2str(&path->peer->su, buf,
8337 SU_ADDRSTRLEN));
8338 json_object_string_add(
8339 json_peer, "routerId",
8340 inet_ntop(AF_INET,
8341 &path->peer->remote_id, buf1,
8342 sizeof(buf1)));
8343
8344 if (path->peer->hostname)
8345 json_object_string_add(
8346 json_peer, "hostname",
8347 path->peer->hostname);
8348
8349 if (path->peer->domainname)
8350 json_object_string_add(
8351 json_peer, "domainname",
8352 path->peer->domainname);
8353
8354 if (path->peer->conf_if)
8355 json_object_string_add(
8356 json_peer, "interface",
8357 path->peer->conf_if);
8358 } else {
8359 if (path->peer->conf_if) {
8360 if (path->peer->hostname
8361 && bgp_flag_check(
8362 path->peer->bgp,
8363 BGP_FLAG_SHOW_HOSTNAME))
8364 vty_out(vty, " from %s(%s)",
8365 path->peer->hostname,
8366 path->peer->conf_if);
8367 else
8368 vty_out(vty, " from %s",
8369 path->peer->conf_if);
8370 } else {
8371 if (path->peer->hostname
8372 && bgp_flag_check(
8373 path->peer->bgp,
8374 BGP_FLAG_SHOW_HOSTNAME))
8375 vty_out(vty, " from %s(%s)",
8376 path->peer->hostname,
8377 path->peer->host);
8378 else
8379 vty_out(vty, " from %s",
8380 sockunion2str(
8381 &path->peer->su,
8382 buf,
8383 SU_ADDRSTRLEN));
8384 }
8385
8386 if (attr->flag
8387 & ATTR_FLAG_BIT(BGP_ATTR_ORIGINATOR_ID))
8388 vty_out(vty, " (%s)",
8389 inet_ntoa(attr->originator_id));
8390 else
8391 vty_out(vty, " (%s)",
8392 inet_ntop(
8393 AF_INET,
8394 &path->peer->remote_id,
8395 buf1, sizeof(buf1)));
8396 }
8397 }
8398
8399 /*
8400 * Note when vrfid of nexthop is different from that of prefix
8401 */
8402 if (path->extra && path->extra->bgp_orig) {
8403 vrf_id_t nexthop_vrfid = path->extra->bgp_orig->vrf_id;
8404
8405 if (json_paths) {
8406 const char *vn;
8407
8408 if (path->extra->bgp_orig->inst_type
8409 == BGP_INSTANCE_TYPE_DEFAULT)
8410
8411 vn = VRF_DEFAULT_NAME;
8412 else
8413 vn = path->extra->bgp_orig->name;
8414
8415 json_object_string_add(json_path, "nhVrfName",
8416 vn);
8417
8418 if (nexthop_vrfid == VRF_UNKNOWN) {
8419 json_object_int_add(json_path,
8420 "nhVrfId", -1);
8421 } else {
8422 json_object_int_add(json_path,
8423 "nhVrfId", (int)nexthop_vrfid);
8424 }
8425 } else {
8426 if (nexthop_vrfid == VRF_UNKNOWN)
8427 vty_out(vty, " vrf ?");
8428 else
8429 vty_out(vty, " vrf %u", nexthop_vrfid);
8430 }
8431 }
8432
8433 if (nexthop_self) {
8434 if (json_paths) {
8435 json_object_boolean_true_add(json_path,
8436 "announceNexthopSelf");
8437 } else {
8438 vty_out(vty, " announce-nh-self");
8439 }
8440 }
8441
8442 if (!json_paths)
8443 vty_out(vty, "\n");
8444
8445 /* display the link-local nexthop */
8446 if (attr->mp_nexthop_len == BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL) {
8447 if (json_paths) {
8448 json_nexthop_ll = json_object_new_object();
8449 json_object_string_add(
8450 json_nexthop_ll,
8451 nexthop_fqdn ? "fqdn" : "ip",
8452 nexthop_fqdn
8453 ? nexthop_fqdn
8454 : inet_ntop(
8455 AF_INET6,
8456 &attr->mp_nexthop_local,
8457 buf,
8458 INET6_ADDRSTRLEN));
8459 json_object_string_add(json_nexthop_ll, "afi",
8460 "ipv6");
8461 json_object_string_add(json_nexthop_ll, "scope",
8462 "link-local");
8463
8464 json_object_boolean_true_add(json_nexthop_ll,
8465 "accessible");
8466
8467 if (!attr->mp_nexthop_prefer_global)
8468 json_object_boolean_true_add(
8469 json_nexthop_ll, "used");
8470 else
8471 json_object_boolean_true_add(
8472 json_nexthop_global, "used");
8473 } else {
8474 vty_out(vty, " (%s) %s\n",
8475 inet_ntop(AF_INET6,
8476 &attr->mp_nexthop_local, buf,
8477 INET6_ADDRSTRLEN),
8478 attr->mp_nexthop_prefer_global
8479 ? "(prefer-global)"
8480 : "(used)");
8481 }
8482 }
8483 /* If we do not have a link-local nexthop then we must flag the
8484 global as "used" */
8485 else {
8486 if (json_paths)
8487 json_object_boolean_true_add(
8488 json_nexthop_global, "used");
8489 }
8490
8491 /* Line 3 display Origin, Med, Locpref, Weight, Tag, valid,
8492 * Int/Ext/Local, Atomic, best */
8493 if (json_paths)
8494 json_object_string_add(
8495 json_path, "origin",
8496 bgp_origin_long_str[attr->origin]);
8497 else
8498 vty_out(vty, " Origin %s",
8499 bgp_origin_long_str[attr->origin]);
8500
8501 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_MULTI_EXIT_DISC)) {
8502 if (json_paths) {
8503
8504 /*
8505 * Adding "metric" field to match with
8506 * corresponding CLI. "med" will be
8507 * deprecated in future.
8508 */
8509 json_object_int_add(json_path, "med",
8510 attr->med);
8511 json_object_int_add(json_path, "metric",
8512 attr->med);
8513 } else
8514 vty_out(vty, ", metric %u", attr->med);
8515 }
8516
8517 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_LOCAL_PREF)) {
8518 if (json_paths)
8519 json_object_int_add(json_path, "localpref",
8520 attr->local_pref);
8521 else
8522 vty_out(vty, ", localpref %u",
8523 attr->local_pref);
8524 }
8525
8526 if (attr->weight != 0) {
8527 if (json_paths)
8528 json_object_int_add(json_path, "weight",
8529 attr->weight);
8530 else
8531 vty_out(vty, ", weight %u", attr->weight);
8532 }
8533
8534 if (attr->tag != 0) {
8535 if (json_paths)
8536 json_object_int_add(json_path, "tag",
8537 attr->tag);
8538 else
8539 vty_out(vty, ", tag %" ROUTE_TAG_PRI,
8540 attr->tag);
8541 }
8542
8543 if (!CHECK_FLAG(path->flags, BGP_PATH_VALID)) {
8544 if (json_paths)
8545 json_object_boolean_false_add(json_path,
8546 "valid");
8547 else
8548 vty_out(vty, ", invalid");
8549 } else if (!CHECK_FLAG(path->flags, BGP_PATH_HISTORY)) {
8550 if (json_paths)
8551 json_object_boolean_true_add(json_path,
8552 "valid");
8553 else
8554 vty_out(vty, ", valid");
8555 }
8556
8557 if (path->peer != bgp->peer_self) {
8558 if (path->peer->as == path->peer->local_as) {
8559 if (CHECK_FLAG(bgp->config,
8560 BGP_CONFIG_CONFEDERATION)) {
8561 if (json_paths)
8562 json_object_string_add(
8563 json_peer, "type",
8564 "confed-internal");
8565 else
8566 vty_out(vty,
8567 ", confed-internal");
8568 } else {
8569 if (json_paths)
8570 json_object_string_add(
8571 json_peer, "type",
8572 "internal");
8573 else
8574 vty_out(vty, ", internal");
8575 }
8576 } else {
8577 if (bgp_confederation_peers_check(
8578 bgp, path->peer->as)) {
8579 if (json_paths)
8580 json_object_string_add(
8581 json_peer, "type",
8582 "confed-external");
8583 else
8584 vty_out(vty,
8585 ", confed-external");
8586 } else {
8587 if (json_paths)
8588 json_object_string_add(
8589 json_peer, "type",
8590 "external");
8591 else
8592 vty_out(vty, ", external");
8593 }
8594 }
8595 } else if (path->sub_type == BGP_ROUTE_AGGREGATE) {
8596 if (json_paths) {
8597 json_object_boolean_true_add(json_path,
8598 "aggregated");
8599 json_object_boolean_true_add(json_path,
8600 "local");
8601 } else {
8602 vty_out(vty, ", aggregated, local");
8603 }
8604 } else if (path->type != ZEBRA_ROUTE_BGP) {
8605 if (json_paths)
8606 json_object_boolean_true_add(json_path,
8607 "sourced");
8608 else
8609 vty_out(vty, ", sourced");
8610 } else {
8611 if (json_paths) {
8612 json_object_boolean_true_add(json_path,
8613 "sourced");
8614 json_object_boolean_true_add(json_path,
8615 "local");
8616 } else {
8617 vty_out(vty, ", sourced, local");
8618 }
8619 }
8620
8621 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_ATOMIC_AGGREGATE)) {
8622 if (json_paths)
8623 json_object_boolean_true_add(json_path,
8624 "atomicAggregate");
8625 else
8626 vty_out(vty, ", atomic-aggregate");
8627 }
8628
8629 if (CHECK_FLAG(path->flags, BGP_PATH_MULTIPATH)
8630 || (CHECK_FLAG(path->flags, BGP_PATH_SELECTED)
8631 && bgp_path_info_mpath_count(path))) {
8632 if (json_paths)
8633 json_object_boolean_true_add(json_path,
8634 "multipath");
8635 else
8636 vty_out(vty, ", multipath");
8637 }
8638
8639 // Mark the bestpath(s)
8640 if (CHECK_FLAG(path->flags, BGP_PATH_DMED_SELECTED)) {
8641 first_as = aspath_get_first_as(attr->aspath);
8642
8643 if (json_paths) {
8644 if (!json_bestpath)
8645 json_bestpath =
8646 json_object_new_object();
8647 json_object_int_add(json_bestpath,
8648 "bestpathFromAs", first_as);
8649 } else {
8650 if (first_as)
8651 vty_out(vty, ", bestpath-from-AS %u",
8652 first_as);
8653 else
8654 vty_out(vty,
8655 ", bestpath-from-AS Local");
8656 }
8657 }
8658
8659 if (CHECK_FLAG(path->flags, BGP_PATH_SELECTED)) {
8660 if (json_paths) {
8661 if (!json_bestpath)
8662 json_bestpath =
8663 json_object_new_object();
8664 json_object_boolean_true_add(json_bestpath,
8665 "overall");
8666 json_object_string_add(json_bestpath,
8667 "selectionReason",
8668 bgp_path_selection_reason2str(bn->reason));
8669 } else {
8670 vty_out(vty, ", best");
8671 vty_out(vty, " (%s)",
8672 bgp_path_selection_reason2str(bn->reason));
8673 }
8674 }
8675
8676 if (json_bestpath)
8677 json_object_object_add(json_path, "bestpath",
8678 json_bestpath);
8679
8680 if (!json_paths)
8681 vty_out(vty, "\n");
8682
8683 /* Line 4 display Community */
8684 if (attr->community) {
8685 if (json_paths) {
8686 if (!attr->community->json)
8687 community_str(attr->community, true);
8688 json_object_lock(attr->community->json);
8689 json_object_object_add(json_path, "community",
8690 attr->community->json);
8691 } else {
8692 vty_out(vty, " Community: %s\n",
8693 attr->community->str);
8694 }
8695 }
8696
8697 /* Line 5 display Extended-community */
8698 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_EXT_COMMUNITIES)) {
8699 if (json_paths) {
8700 json_ext_community = json_object_new_object();
8701 json_object_string_add(json_ext_community,
8702 "string",
8703 attr->ecommunity->str);
8704 json_object_object_add(json_path,
8705 "extendedCommunity",
8706 json_ext_community);
8707 } else {
8708 vty_out(vty, " Extended Community: %s\n",
8709 attr->ecommunity->str);
8710 }
8711 }
8712
8713 /* Line 6 display Large community */
8714 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_LARGE_COMMUNITIES)) {
8715 if (json_paths) {
8716 if (!attr->lcommunity->json)
8717 lcommunity_str(attr->lcommunity, true);
8718 json_object_lock(attr->lcommunity->json);
8719 json_object_object_add(json_path,
8720 "largeCommunity",
8721 attr->lcommunity->json);
8722 } else {
8723 vty_out(vty, " Large Community: %s\n",
8724 attr->lcommunity->str);
8725 }
8726 }
8727
8728 /* Line 7 display Originator, Cluster-id */
8729 if ((attr->flag & ATTR_FLAG_BIT(BGP_ATTR_ORIGINATOR_ID))
8730 || (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_CLUSTER_LIST))) {
8731 if (attr->flag
8732 & ATTR_FLAG_BIT(BGP_ATTR_ORIGINATOR_ID)) {
8733 if (json_paths)
8734 json_object_string_add(
8735 json_path, "originatorId",
8736 inet_ntoa(attr->originator_id));
8737 else
8738 vty_out(vty, " Originator: %s",
8739 inet_ntoa(attr->originator_id));
8740 }
8741
8742 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_CLUSTER_LIST)) {
8743 int i;
8744
8745 if (json_paths) {
8746 json_cluster_list =
8747 json_object_new_object();
8748 json_cluster_list_list =
8749 json_object_new_array();
8750
8751 for (i = 0;
8752 i < attr->cluster->length / 4;
8753 i++) {
8754 json_string = json_object_new_string(
8755 inet_ntoa(
8756 attr->cluster->list
8757 [i]));
8758 json_object_array_add(
8759 json_cluster_list_list,
8760 json_string);
8761 }
8762
8763 /* struct cluster_list does not have
8764 "str" variable like
8765 * aspath and community do. Add this
8766 someday if someone
8767 * asks for it.
8768 json_object_string_add(json_cluster_list,
8769 "string", attr->cluster->str);
8770 */
8771 json_object_object_add(
8772 json_cluster_list, "list",
8773 json_cluster_list_list);
8774 json_object_object_add(
8775 json_path, "clusterList",
8776 json_cluster_list);
8777 } else {
8778 vty_out(vty, ", Cluster list: ");
8779
8780 for (i = 0;
8781 i < attr->cluster->length / 4;
8782 i++) {
8783 vty_out(vty, "%s ",
8784 inet_ntoa(
8785 attr->cluster->list
8786 [i]));
8787 }
8788 }
8789 }
8790
8791 if (!json_paths)
8792 vty_out(vty, "\n");
8793 }
8794
8795 if (path->extra && path->extra->damp_info)
8796 bgp_damp_info_vty(vty, path, json_path);
8797
8798 /* Remote Label */
8799 if (path->extra && bgp_is_valid_label(&path->extra->label[0])
8800 && safi != SAFI_EVPN) {
8801 mpls_label_t label = label_pton(&path->extra->label[0]);
8802
8803 if (json_paths)
8804 json_object_int_add(json_path, "remoteLabel",
8805 label);
8806 else
8807 vty_out(vty, " Remote label: %d\n", label);
8808 }
8809
8810 /* Label Index */
8811 if (attr->label_index != BGP_INVALID_LABEL_INDEX) {
8812 if (json_paths)
8813 json_object_int_add(json_path, "labelIndex",
8814 attr->label_index);
8815 else
8816 vty_out(vty, " Label Index: %d\n",
8817 attr->label_index);
8818 }
8819
8820 /* Line 8 display Addpath IDs */
8821 if (path->addpath_rx_id
8822 || bgp_addpath_info_has_ids(&path->tx_addpath)) {
8823 if (json_paths) {
8824 json_object_int_add(json_path, "addpathRxId",
8825 path->addpath_rx_id);
8826
8827 /* Keep backwards compatibility with the old API
8828 * by putting TX All's ID in the old field
8829 */
8830 json_object_int_add(
8831 json_path, "addpathTxId",
8832 path->tx_addpath.addpath_tx_id
8833 [BGP_ADDPATH_ALL]);
8834
8835 /* ... but create a specific field for each
8836 * strategy
8837 */
8838 for (i = 0; i < BGP_ADDPATH_MAX; i++) {
8839 json_object_int_add(
8840 json_path,
8841 bgp_addpath_names(i)
8842 ->id_json_name,
8843 path->tx_addpath
8844 .addpath_tx_id[i]);
8845 }
8846 } else {
8847 vty_out(vty, " AddPath ID: RX %u, ",
8848 path->addpath_rx_id);
8849
8850 route_vty_out_tx_ids(vty, &path->tx_addpath);
8851 }
8852 }
8853
8854 /* If we used addpath to TX a non-bestpath we need to display
8855 * "Advertised to" on a path-by-path basis
8856 */
8857 if (bgp_addpath_is_addpath_used(&bgp->tx_addpath, afi, safi)) {
8858 first = 1;
8859
8860 for (ALL_LIST_ELEMENTS(bgp->peer, node, nnode, peer)) {
8861 addpath_capable =
8862 bgp_addpath_encode_tx(peer, afi, safi);
8863 has_adj = bgp_adj_out_lookup(
8864 peer, path->net,
8865 bgp_addpath_id_for_peer(
8866 peer, afi, safi,
8867 &path->tx_addpath));
8868
8869 if ((addpath_capable && has_adj)
8870 || (!addpath_capable && has_adj
8871 && CHECK_FLAG(path->flags,
8872 BGP_PATH_SELECTED))) {
8873 if (json_path && !json_adv_to)
8874 json_adv_to =
8875 json_object_new_object();
8876
8877 route_vty_out_advertised_to(
8878 vty, peer, &first,
8879 " Advertised to:",
8880 json_adv_to);
8881 }
8882 }
8883
8884 if (json_path) {
8885 if (json_adv_to) {
8886 json_object_object_add(json_path,
8887 "advertisedTo",
8888 json_adv_to);
8889 }
8890 } else {
8891 if (!first) {
8892 vty_out(vty, "\n");
8893 }
8894 }
8895 }
8896
8897 /* Line 9 display Uptime */
8898 tbuf = time(NULL) - (bgp_clock() - path->uptime);
8899 if (json_paths) {
8900 json_last_update = json_object_new_object();
8901 json_object_int_add(json_last_update, "epoch", tbuf);
8902 json_object_string_add(json_last_update, "string",
8903 ctime(&tbuf));
8904 json_object_object_add(json_path, "lastUpdate",
8905 json_last_update);
8906 } else
8907 vty_out(vty, " Last update: %s", ctime(&tbuf));
8908
8909 /* Line 10 display PMSI tunnel attribute, if present */
8910 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_PMSI_TUNNEL)) {
8911 const char *str = lookup_msg(bgp_pmsi_tnltype_str,
8912 attr->pmsi_tnl_type,
8913 PMSI_TNLTYPE_STR_DEFAULT);
8914
8915 if (json_paths) {
8916 json_pmsi = json_object_new_object();
8917 json_object_string_add(json_pmsi,
8918 "tunnelType", str);
8919 json_object_int_add(json_pmsi,
8920 "label",
8921 label2vni(&attr->label));
8922 json_object_object_add(json_path, "pmsi",
8923 json_pmsi);
8924 } else
8925 vty_out(vty,
8926 " PMSI Tunnel Type: %s, label: %d\n",
8927 str, label2vni(&attr->label));
8928 }
8929
8930 }
8931
8932 /* We've constructed the json object for this path, add it to the json
8933 * array of paths
8934 */
8935 if (json_paths) {
8936 if (json_nexthop_global || json_nexthop_ll) {
8937 json_nexthops = json_object_new_array();
8938
8939 if (json_nexthop_global)
8940 json_object_array_add(json_nexthops,
8941 json_nexthop_global);
8942
8943 if (json_nexthop_ll)
8944 json_object_array_add(json_nexthops,
8945 json_nexthop_ll);
8946
8947 json_object_object_add(json_path, "nexthops",
8948 json_nexthops);
8949 }
8950
8951 json_object_object_add(json_path, "peer", json_peer);
8952 json_object_array_add(json_paths, json_path);
8953 } else
8954 vty_out(vty, "\n");
8955 }
8956
8957 #define BGP_SHOW_HEADER_CSV "Flags, Network, Next Hop, Metric, LocPrf, Weight, Path"
8958 #define BGP_SHOW_DAMP_HEADER " Network From Reuse Path\n"
8959 #define BGP_SHOW_FLAP_HEADER " Network From Flaps Duration Reuse Path\n"
8960
8961 static int bgp_show_prefix_list(struct vty *vty, struct bgp *bgp,
8962 const char *prefix_list_str, afi_t afi,
8963 safi_t safi, enum bgp_show_type type);
8964 static int bgp_show_filter_list(struct vty *vty, struct bgp *bgp,
8965 const char *filter, afi_t afi, safi_t safi,
8966 enum bgp_show_type type);
8967 static int bgp_show_route_map(struct vty *vty, struct bgp *bgp,
8968 const char *rmap_str, afi_t afi, safi_t safi,
8969 enum bgp_show_type type);
8970 static int bgp_show_community_list(struct vty *vty, struct bgp *bgp,
8971 const char *com, int exact, afi_t afi,
8972 safi_t safi);
8973 static int bgp_show_prefix_longer(struct vty *vty, struct bgp *bgp,
8974 const char *prefix, afi_t afi, safi_t safi,
8975 enum bgp_show_type type);
8976 static int bgp_show_regexp(struct vty *vty, struct bgp *bgp, const char *regstr,
8977 afi_t afi, safi_t safi, enum bgp_show_type type);
8978 static int bgp_show_community(struct vty *vty, struct bgp *bgp,
8979 const char *comstr, int exact, afi_t afi,
8980 safi_t safi, bool use_json);
8981
8982
8983 static int bgp_show_table(struct vty *vty, struct bgp *bgp, safi_t safi,
8984 struct bgp_table *table, enum bgp_show_type type,
8985 void *output_arg, bool use_json, char *rd,
8986 int is_last, unsigned long *output_cum,
8987 unsigned long *total_cum,
8988 unsigned long *json_header_depth)
8989 {
8990 struct bgp_path_info *pi;
8991 struct bgp_node *rn;
8992 int header = 1;
8993 int display;
8994 unsigned long output_count = 0;
8995 unsigned long total_count = 0;
8996 struct prefix *p;
8997 char buf2[BUFSIZ];
8998 json_object *json_paths = NULL;
8999 int first = 1;
9000
9001 if (output_cum && *output_cum != 0)
9002 header = 0;
9003
9004 if (use_json && !*json_header_depth) {
9005 vty_out(vty,
9006 "{\n \"vrfId\": %d,\n \"vrfName\": \"%s\",\n \"tableVersion\": %" PRId64
9007 ",\n \"routerId\": \"%s\",\n \"defaultLocPrf\": %u,\n"
9008 " \"localAS\": %u,\n \"routes\": { ",
9009 bgp->vrf_id == VRF_UNKNOWN ? -1 : (int)bgp->vrf_id,
9010 bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT
9011 ? VRF_DEFAULT_NAME
9012 : bgp->name,
9013 table->version, inet_ntoa(bgp->router_id),
9014 bgp->default_local_pref, bgp->as);
9015 *json_header_depth = 2;
9016 if (rd) {
9017 vty_out(vty, " \"routeDistinguishers\" : {");
9018 ++*json_header_depth;
9019 }
9020 }
9021
9022 if (use_json && rd) {
9023 vty_out(vty, " \"%s\" : { ", rd);
9024 }
9025
9026 /* Start processing of routes. */
9027 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
9028 pi = bgp_node_get_bgp_path_info(rn);
9029 if (pi == NULL)
9030 continue;
9031
9032 display = 0;
9033 if (use_json)
9034 json_paths = json_object_new_array();
9035 else
9036 json_paths = NULL;
9037
9038 for (; pi; pi = pi->next) {
9039 total_count++;
9040 if (type == bgp_show_type_flap_statistics
9041 || type == bgp_show_type_flap_neighbor
9042 || type == bgp_show_type_dampend_paths
9043 || type == bgp_show_type_damp_neighbor) {
9044 if (!(pi->extra && pi->extra->damp_info))
9045 continue;
9046 }
9047 if (type == bgp_show_type_regexp) {
9048 regex_t *regex = output_arg;
9049
9050 if (bgp_regexec(regex, pi->attr->aspath)
9051 == REG_NOMATCH)
9052 continue;
9053 }
9054 if (type == bgp_show_type_prefix_list) {
9055 struct prefix_list *plist = output_arg;
9056
9057 if (prefix_list_apply(plist, &rn->p)
9058 != PREFIX_PERMIT)
9059 continue;
9060 }
9061 if (type == bgp_show_type_filter_list) {
9062 struct as_list *as_list = output_arg;
9063
9064 if (as_list_apply(as_list, pi->attr->aspath)
9065 != AS_FILTER_PERMIT)
9066 continue;
9067 }
9068 if (type == bgp_show_type_route_map) {
9069 struct route_map *rmap = output_arg;
9070 struct bgp_path_info path;
9071 struct attr dummy_attr;
9072 int ret;
9073
9074 bgp_attr_dup(&dummy_attr, pi->attr);
9075
9076 path.peer = pi->peer;
9077 path.attr = &dummy_attr;
9078
9079 ret = route_map_apply(rmap, &rn->p, RMAP_BGP,
9080 &path);
9081 if (ret == RMAP_DENYMATCH)
9082 continue;
9083 }
9084 if (type == bgp_show_type_neighbor
9085 || type == bgp_show_type_flap_neighbor
9086 || type == bgp_show_type_damp_neighbor) {
9087 union sockunion *su = output_arg;
9088
9089 if (pi->peer == NULL
9090 || pi->peer->su_remote == NULL
9091 || !sockunion_same(pi->peer->su_remote, su))
9092 continue;
9093 }
9094 if (type == bgp_show_type_cidr_only) {
9095 uint32_t destination;
9096
9097 destination = ntohl(rn->p.u.prefix4.s_addr);
9098 if (IN_CLASSC(destination)
9099 && rn->p.prefixlen == 24)
9100 continue;
9101 if (IN_CLASSB(destination)
9102 && rn->p.prefixlen == 16)
9103 continue;
9104 if (IN_CLASSA(destination)
9105 && rn->p.prefixlen == 8)
9106 continue;
9107 }
9108 if (type == bgp_show_type_prefix_longer) {
9109 p = output_arg;
9110 if (!prefix_match(p, &rn->p))
9111 continue;
9112 }
9113 if (type == bgp_show_type_community_all) {
9114 if (!pi->attr->community)
9115 continue;
9116 }
9117 if (type == bgp_show_type_community) {
9118 struct community *com = output_arg;
9119
9120 if (!pi->attr->community
9121 || !community_match(pi->attr->community,
9122 com))
9123 continue;
9124 }
9125 if (type == bgp_show_type_community_exact) {
9126 struct community *com = output_arg;
9127
9128 if (!pi->attr->community
9129 || !community_cmp(pi->attr->community, com))
9130 continue;
9131 }
9132 if (type == bgp_show_type_community_list) {
9133 struct community_list *list = output_arg;
9134
9135 if (!community_list_match(pi->attr->community,
9136 list))
9137 continue;
9138 }
9139 if (type == bgp_show_type_community_list_exact) {
9140 struct community_list *list = output_arg;
9141
9142 if (!community_list_exact_match(
9143 pi->attr->community, list))
9144 continue;
9145 }
9146 if (type == bgp_show_type_lcommunity) {
9147 struct lcommunity *lcom = output_arg;
9148
9149 if (!pi->attr->lcommunity
9150 || !lcommunity_match(pi->attr->lcommunity,
9151 lcom))
9152 continue;
9153 }
9154 if (type == bgp_show_type_lcommunity_list) {
9155 struct community_list *list = output_arg;
9156
9157 if (!lcommunity_list_match(pi->attr->lcommunity,
9158 list))
9159 continue;
9160 }
9161 if (type == bgp_show_type_lcommunity_all) {
9162 if (!pi->attr->lcommunity)
9163 continue;
9164 }
9165 if (type == bgp_show_type_dampend_paths
9166 || type == bgp_show_type_damp_neighbor) {
9167 if (!CHECK_FLAG(pi->flags, BGP_PATH_DAMPED)
9168 || CHECK_FLAG(pi->flags, BGP_PATH_HISTORY))
9169 continue;
9170 }
9171
9172 if (!use_json && header) {
9173 vty_out(vty, "BGP table version is %" PRIu64
9174 ", local router ID is %s, vrf id ",
9175 table->version,
9176 inet_ntoa(bgp->router_id));
9177 if (bgp->vrf_id == VRF_UNKNOWN)
9178 vty_out(vty, "%s", VRFID_NONE_STR);
9179 else
9180 vty_out(vty, "%u", bgp->vrf_id);
9181 vty_out(vty, "\n");
9182 vty_out(vty, "Default local pref %u, ",
9183 bgp->default_local_pref);
9184 vty_out(vty, "local AS %u\n", bgp->as);
9185 vty_out(vty, BGP_SHOW_SCODE_HEADER);
9186 vty_out(vty, BGP_SHOW_NCODE_HEADER);
9187 vty_out(vty, BGP_SHOW_OCODE_HEADER);
9188 if (type == bgp_show_type_dampend_paths
9189 || type == bgp_show_type_damp_neighbor)
9190 vty_out(vty, BGP_SHOW_DAMP_HEADER);
9191 else if (type == bgp_show_type_flap_statistics
9192 || type == bgp_show_type_flap_neighbor)
9193 vty_out(vty, BGP_SHOW_FLAP_HEADER);
9194 else
9195 vty_out(vty, BGP_SHOW_HEADER);
9196 header = 0;
9197 }
9198 if (rd != NULL && !display && !output_count) {
9199 if (!use_json)
9200 vty_out(vty,
9201 "Route Distinguisher: %s\n",
9202 rd);
9203 }
9204 if (type == bgp_show_type_dampend_paths
9205 || type == bgp_show_type_damp_neighbor)
9206 damp_route_vty_out(vty, &rn->p, pi, display,
9207 safi, use_json, json_paths);
9208 else if (type == bgp_show_type_flap_statistics
9209 || type == bgp_show_type_flap_neighbor)
9210 flap_route_vty_out(vty, &rn->p, pi, display,
9211 safi, use_json, json_paths);
9212 else
9213 route_vty_out(vty, &rn->p, pi, display, safi,
9214 json_paths);
9215 display++;
9216 }
9217
9218 if (display) {
9219 output_count++;
9220 if (!use_json)
9221 continue;
9222
9223 p = &rn->p;
9224 /* encode prefix */
9225 if (p->family == AF_FLOWSPEC) {
9226 char retstr[BGP_FLOWSPEC_STRING_DISPLAY_MAX];
9227
9228 bgp_fs_nlri_get_string((unsigned char *)
9229 p->u.prefix_flowspec.ptr,
9230 p->u.prefix_flowspec
9231 .prefixlen,
9232 retstr,
9233 NLRI_STRING_FORMAT_MIN,
9234 NULL);
9235 if (first)
9236 vty_out(vty, "\"%s/%d\": ",
9237 retstr,
9238 p->u.prefix_flowspec.prefixlen);
9239 else
9240 vty_out(vty, ",\"%s/%d\": ",
9241 retstr,
9242 p->u.prefix_flowspec.prefixlen);
9243 } else {
9244 prefix2str(p, buf2, sizeof(buf2));
9245 if (first)
9246 vty_out(vty, "\"%s\": ", buf2);
9247 else
9248 vty_out(vty, ",\"%s\": ", buf2);
9249 }
9250 vty_out(vty, "%s",
9251 json_object_to_json_string(json_paths));
9252 json_object_free(json_paths);
9253 json_paths = NULL;
9254 first = 0;
9255 }
9256 }
9257
9258 if (output_cum) {
9259 output_count += *output_cum;
9260 *output_cum = output_count;
9261 }
9262 if (total_cum) {
9263 total_count += *total_cum;
9264 *total_cum = total_count;
9265 }
9266 if (use_json) {
9267 if (rd) {
9268 vty_out(vty, " }%s ", (is_last ? "" : ","));
9269 }
9270 if (is_last) {
9271 unsigned long i;
9272 for (i = 0; i < *json_header_depth; ++i)
9273 vty_out(vty, " } ");
9274 vty_out(vty, "\n");
9275 }
9276 } else {
9277 if (is_last) {
9278 /* No route is displayed */
9279 if (output_count == 0) {
9280 if (type == bgp_show_type_normal)
9281 vty_out(vty,
9282 "No BGP prefixes displayed, %ld exist\n",
9283 total_count);
9284 } else
9285 vty_out(vty,
9286 "\nDisplayed %ld routes and %ld total paths\n",
9287 output_count, total_count);
9288 }
9289 }
9290
9291 return CMD_SUCCESS;
9292 }
9293
9294 int bgp_show_table_rd(struct vty *vty, struct bgp *bgp, safi_t safi,
9295 struct bgp_table *table, struct prefix_rd *prd_match,
9296 enum bgp_show_type type, void *output_arg, bool use_json)
9297 {
9298 struct bgp_node *rn, *next;
9299 unsigned long output_cum = 0;
9300 unsigned long total_cum = 0;
9301 unsigned long json_header_depth = 0;
9302 struct bgp_table *itable;
9303 bool show_msg;
9304
9305 show_msg = (!use_json && type == bgp_show_type_normal);
9306
9307 for (rn = bgp_table_top(table); rn; rn = next) {
9308 next = bgp_route_next(rn);
9309 if (prd_match && memcmp(rn->p.u.val, prd_match->val, 8) != 0)
9310 continue;
9311
9312 itable = bgp_node_get_bgp_table_info(rn);
9313 if (itable != NULL) {
9314 struct prefix_rd prd;
9315 char rd[RD_ADDRSTRLEN];
9316
9317 memcpy(&prd, &(rn->p), sizeof(struct prefix_rd));
9318 prefix_rd2str(&prd, rd, sizeof(rd));
9319 bgp_show_table(vty, bgp, safi, itable, type, output_arg,
9320 use_json, rd, next == NULL, &output_cum,
9321 &total_cum, &json_header_depth);
9322 if (next == NULL)
9323 show_msg = false;
9324 }
9325 }
9326 if (show_msg) {
9327 if (output_cum == 0)
9328 vty_out(vty, "No BGP prefixes displayed, %ld exist\n",
9329 total_cum);
9330 else
9331 vty_out(vty,
9332 "\nDisplayed %ld routes and %ld total paths\n",
9333 output_cum, total_cum);
9334 }
9335 return CMD_SUCCESS;
9336 }
9337 static int bgp_show(struct vty *vty, struct bgp *bgp, afi_t afi, safi_t safi,
9338 enum bgp_show_type type, void *output_arg, bool use_json)
9339 {
9340 struct bgp_table *table;
9341 unsigned long json_header_depth = 0;
9342
9343 if (bgp == NULL) {
9344 bgp = bgp_get_default();
9345 }
9346
9347 if (bgp == NULL) {
9348 if (!use_json)
9349 vty_out(vty, "No BGP process is configured\n");
9350 else
9351 vty_out(vty, "{}\n");
9352 return CMD_WARNING;
9353 }
9354
9355 table = bgp->rib[afi][safi];
9356 /* use MPLS and ENCAP specific shows until they are merged */
9357 if (safi == SAFI_MPLS_VPN) {
9358 return bgp_show_table_rd(vty, bgp, safi, table, NULL, type,
9359 output_arg, use_json);
9360 }
9361
9362 if (safi == SAFI_FLOWSPEC && type == bgp_show_type_detail) {
9363 return bgp_show_table_flowspec(vty, bgp, afi, table, type,
9364 output_arg, use_json,
9365 1, NULL, NULL);
9366 }
9367 /* labeled-unicast routes live in the unicast table */
9368 else if (safi == SAFI_LABELED_UNICAST)
9369 safi = SAFI_UNICAST;
9370
9371 return bgp_show_table(vty, bgp, safi, table, type, output_arg, use_json,
9372 NULL, 1, NULL, NULL, &json_header_depth);
9373 }
9374
9375 static void bgp_show_all_instances_routes_vty(struct vty *vty, afi_t afi,
9376 safi_t safi, bool use_json)
9377 {
9378 struct listnode *node, *nnode;
9379 struct bgp *bgp;
9380 int is_first = 1;
9381 bool route_output = false;
9382
9383 if (use_json)
9384 vty_out(vty, "{\n");
9385
9386 for (ALL_LIST_ELEMENTS(bm->bgp, node, nnode, bgp)) {
9387 route_output = true;
9388 if (use_json) {
9389 if (!is_first)
9390 vty_out(vty, ",\n");
9391 else
9392 is_first = 0;
9393
9394 vty_out(vty, "\"%s\":",
9395 (bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)
9396 ? VRF_DEFAULT_NAME
9397 : bgp->name);
9398 } else {
9399 vty_out(vty, "\nInstance %s:\n",
9400 (bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)
9401 ? VRF_DEFAULT_NAME
9402 : bgp->name);
9403 }
9404 bgp_show(vty, bgp, afi, safi, bgp_show_type_normal, NULL,
9405 use_json);
9406 }
9407
9408 if (use_json)
9409 vty_out(vty, "}\n");
9410 else if (!route_output)
9411 vty_out(vty, "%% BGP instance not found\n");
9412 }
9413
9414 /* Header of detailed BGP route information */
9415 void route_vty_out_detail_header(struct vty *vty, struct bgp *bgp,
9416 struct bgp_node *rn, struct prefix_rd *prd,
9417 afi_t afi, safi_t safi, json_object *json)
9418 {
9419 struct bgp_path_info *pi;
9420 struct prefix *p;
9421 struct peer *peer;
9422 struct listnode *node, *nnode;
9423 char buf1[RD_ADDRSTRLEN];
9424 char buf2[INET6_ADDRSTRLEN];
9425 char buf3[EVPN_ROUTE_STRLEN];
9426 char prefix_str[BUFSIZ];
9427 int count = 0;
9428 int best = 0;
9429 int suppress = 0;
9430 int accept_own = 0;
9431 int route_filter_translated_v4 = 0;
9432 int route_filter_v4 = 0;
9433 int route_filter_translated_v6 = 0;
9434 int route_filter_v6 = 0;
9435 int llgr_stale = 0;
9436 int no_llgr = 0;
9437 int accept_own_nexthop = 0;
9438 int blackhole = 0;
9439 int no_export = 0;
9440 int no_advertise = 0;
9441 int local_as = 0;
9442 int no_peer = 0;
9443 int first = 1;
9444 int has_valid_label = 0;
9445 mpls_label_t label = 0;
9446 json_object *json_adv_to = NULL;
9447
9448 p = &rn->p;
9449 has_valid_label = bgp_is_valid_label(&rn->local_label);
9450
9451 if (has_valid_label)
9452 label = label_pton(&rn->local_label);
9453
9454 if (json) {
9455 if (has_valid_label)
9456 json_object_int_add(json, "localLabel", label);
9457
9458 json_object_string_add(
9459 json, "prefix",
9460 prefix2str(p, prefix_str, sizeof(prefix_str)));
9461 } else {
9462 if (safi == SAFI_EVPN)
9463 vty_out(vty, "BGP routing table entry for %s%s%s\n",
9464 prd ? prefix_rd2str(prd, buf1, sizeof(buf1))
9465 : "",
9466 prd ? ":" : "",
9467 bgp_evpn_route2str((struct prefix_evpn *)p,
9468 buf3, sizeof(buf3)));
9469 else
9470 vty_out(vty, "BGP routing table entry for %s%s%s/%d\n",
9471 ((safi == SAFI_MPLS_VPN || safi == SAFI_ENCAP)
9472 ? prefix_rd2str(prd, buf1,
9473 sizeof(buf1))
9474 : ""),
9475 safi == SAFI_MPLS_VPN ? ":" : "",
9476 inet_ntop(p->family, &p->u.prefix, buf2,
9477 INET6_ADDRSTRLEN),
9478 p->prefixlen);
9479
9480 if (has_valid_label)
9481 vty_out(vty, "Local label: %d\n", label);
9482 if (bgp_labeled_safi(safi) && safi != SAFI_EVPN)
9483 vty_out(vty, "not allocated\n");
9484 }
9485
9486 for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = pi->next) {
9487 count++;
9488 if (CHECK_FLAG(pi->flags, BGP_PATH_SELECTED)) {
9489 best = count;
9490 if (pi->extra && pi->extra->suppress)
9491 suppress = 1;
9492
9493 if (pi->attr->community == NULL)
9494 continue;
9495
9496 no_advertise += community_include(
9497 pi->attr->community, COMMUNITY_NO_ADVERTISE);
9498 no_export += community_include(pi->attr->community,
9499 COMMUNITY_NO_EXPORT);
9500 local_as += community_include(pi->attr->community,
9501 COMMUNITY_LOCAL_AS);
9502 accept_own += community_include(pi->attr->community,
9503 COMMUNITY_ACCEPT_OWN);
9504 route_filter_translated_v4 += community_include(
9505 pi->attr->community,
9506 COMMUNITY_ROUTE_FILTER_TRANSLATED_v4);
9507 route_filter_translated_v6 += community_include(
9508 pi->attr->community,
9509 COMMUNITY_ROUTE_FILTER_TRANSLATED_v6);
9510 route_filter_v4 += community_include(
9511 pi->attr->community, COMMUNITY_ROUTE_FILTER_v4);
9512 route_filter_v6 += community_include(
9513 pi->attr->community, COMMUNITY_ROUTE_FILTER_v6);
9514 llgr_stale += community_include(pi->attr->community,
9515 COMMUNITY_LLGR_STALE);
9516 no_llgr += community_include(pi->attr->community,
9517 COMMUNITY_NO_LLGR);
9518 accept_own_nexthop +=
9519 community_include(pi->attr->community,
9520 COMMUNITY_ACCEPT_OWN_NEXTHOP);
9521 blackhole += community_include(pi->attr->community,
9522 COMMUNITY_BLACKHOLE);
9523 no_peer += community_include(pi->attr->community,
9524 COMMUNITY_NO_PEER);
9525 }
9526 }
9527
9528 if (!json) {
9529 vty_out(vty, "Paths: (%d available", count);
9530 if (best) {
9531 vty_out(vty, ", best #%d", best);
9532 if (safi == SAFI_UNICAST) {
9533 if (bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)
9534 vty_out(vty, ", table %s",
9535 VRF_DEFAULT_NAME);
9536 else
9537 vty_out(vty, ", vrf %s",
9538 bgp->name);
9539 }
9540 } else
9541 vty_out(vty, ", no best path");
9542
9543 if (accept_own)
9544 vty_out(vty,
9545 ", accept own local route exported and imported in different VRF");
9546 else if (route_filter_translated_v4)
9547 vty_out(vty,
9548 ", mark translated RTs for VPNv4 route filtering");
9549 else if (route_filter_v4)
9550 vty_out(vty,
9551 ", attach RT as-is for VPNv4 route filtering");
9552 else if (route_filter_translated_v6)
9553 vty_out(vty,
9554 ", mark translated RTs for VPNv6 route filtering");
9555 else if (route_filter_v6)
9556 vty_out(vty,
9557 ", attach RT as-is for VPNv6 route filtering");
9558 else if (llgr_stale)
9559 vty_out(vty,
9560 ", mark routes to be retained for a longer time. Requeres support for Long-lived BGP Graceful Restart");
9561 else if (no_llgr)
9562 vty_out(vty,
9563 ", mark routes to not be treated according to Long-lived BGP Graceful Restart operations");
9564 else if (accept_own_nexthop)
9565 vty_out(vty,
9566 ", accept local nexthop");
9567 else if (blackhole)
9568 vty_out(vty, ", inform peer to blackhole prefix");
9569 else if (no_export)
9570 vty_out(vty, ", not advertised to EBGP peer");
9571 else if (no_advertise)
9572 vty_out(vty, ", not advertised to any peer");
9573 else if (local_as)
9574 vty_out(vty, ", not advertised outside local AS");
9575 else if (no_peer)
9576 vty_out(vty,
9577 ", inform EBGP peer not to advertise to their EBGP peers");
9578
9579 if (suppress)
9580 vty_out(vty,
9581 ", Advertisements suppressed by an aggregate.");
9582 vty_out(vty, ")\n");
9583 }
9584
9585 /* If we are not using addpath then we can display Advertised to and
9586 * that will
9587 * show what peers we advertised the bestpath to. If we are using
9588 * addpath
9589 * though then we must display Advertised to on a path-by-path basis. */
9590 if (!bgp_addpath_is_addpath_used(&bgp->tx_addpath, afi, safi)) {
9591 for (ALL_LIST_ELEMENTS(bgp->peer, node, nnode, peer)) {
9592 if (bgp_adj_out_lookup(peer, rn, 0)) {
9593 if (json && !json_adv_to)
9594 json_adv_to = json_object_new_object();
9595
9596 route_vty_out_advertised_to(
9597 vty, peer, &first,
9598 " Advertised to non peer-group peers:\n ",
9599 json_adv_to);
9600 }
9601 }
9602
9603 if (json) {
9604 if (json_adv_to) {
9605 json_object_object_add(json, "advertisedTo",
9606 json_adv_to);
9607 }
9608 } else {
9609 if (first)
9610 vty_out(vty, " Not advertised to any peer");
9611 vty_out(vty, "\n");
9612 }
9613 }
9614 }
9615
9616 /* Display specified route of BGP table. */
9617 static int bgp_show_route_in_table(struct vty *vty, struct bgp *bgp,
9618 struct bgp_table *rib, const char *ip_str,
9619 afi_t afi, safi_t safi,
9620 struct prefix_rd *prd, int prefix_check,
9621 enum bgp_path_type pathtype, bool use_json)
9622 {
9623 int ret;
9624 int header;
9625 int display = 0;
9626 struct prefix match;
9627 struct bgp_node *rn;
9628 struct bgp_node *rm;
9629 struct bgp_path_info *pi;
9630 struct bgp_table *table;
9631 json_object *json = NULL;
9632 json_object *json_paths = NULL;
9633
9634 /* Check IP address argument. */
9635 ret = str2prefix(ip_str, &match);
9636 if (!ret) {
9637 vty_out(vty, "address is malformed\n");
9638 return CMD_WARNING;
9639 }
9640
9641 match.family = afi2family(afi);
9642
9643 if (use_json) {
9644 json = json_object_new_object();
9645 json_paths = json_object_new_array();
9646 }
9647
9648 if (safi == SAFI_MPLS_VPN || safi == SAFI_ENCAP || safi == SAFI_EVPN) {
9649 for (rn = bgp_table_top(rib); rn; rn = bgp_route_next(rn)) {
9650 if (prd && memcmp(rn->p.u.val, prd->val, 8) != 0)
9651 continue;
9652 table = bgp_node_get_bgp_table_info(rn);
9653 if (!table)
9654 continue;
9655
9656 header = 1;
9657
9658 if ((rm = bgp_node_match(table, &match)) == NULL)
9659 continue;
9660
9661 if (prefix_check
9662 && rm->p.prefixlen != match.prefixlen) {
9663 bgp_unlock_node(rm);
9664 continue;
9665 }
9666
9667 for (pi = bgp_node_get_bgp_path_info(rm); pi;
9668 pi = pi->next) {
9669 if (header) {
9670 route_vty_out_detail_header(
9671 vty, bgp, rm,
9672 (struct prefix_rd *)&rn->p,
9673 AFI_IP, safi, json);
9674 header = 0;
9675 }
9676 display++;
9677
9678 if (pathtype == BGP_PATH_SHOW_ALL
9679 || (pathtype == BGP_PATH_SHOW_BESTPATH
9680 && CHECK_FLAG(pi->flags,
9681 BGP_PATH_SELECTED))
9682 || (pathtype == BGP_PATH_SHOW_MULTIPATH
9683 && (CHECK_FLAG(pi->flags,
9684 BGP_PATH_MULTIPATH)
9685 || CHECK_FLAG(pi->flags,
9686 BGP_PATH_SELECTED))))
9687 route_vty_out_detail(vty, bgp, rm,
9688 pi, AFI_IP, safi,
9689 json_paths);
9690 }
9691
9692 bgp_unlock_node(rm);
9693 }
9694 } else if (safi == SAFI_FLOWSPEC) {
9695 display = bgp_flowspec_display_match_per_ip(afi, rib,
9696 &match, prefix_check,
9697 vty,
9698 use_json,
9699 json_paths);
9700 } else {
9701 header = 1;
9702
9703 if ((rn = bgp_node_match(rib, &match)) != NULL) {
9704 if (!prefix_check
9705 || rn->p.prefixlen == match.prefixlen) {
9706 for (pi = bgp_node_get_bgp_path_info(rn); pi;
9707 pi = pi->next) {
9708 if (header) {
9709 route_vty_out_detail_header(
9710 vty, bgp, rn, NULL, afi,
9711 safi, json);
9712 header = 0;
9713 }
9714 display++;
9715
9716 if (pathtype == BGP_PATH_SHOW_ALL
9717 || (pathtype
9718 == BGP_PATH_SHOW_BESTPATH
9719 && CHECK_FLAG(
9720 pi->flags,
9721 BGP_PATH_SELECTED))
9722 || (pathtype
9723 == BGP_PATH_SHOW_MULTIPATH
9724 && (CHECK_FLAG(
9725 pi->flags,
9726 BGP_PATH_MULTIPATH)
9727 || CHECK_FLAG(
9728 pi->flags,
9729 BGP_PATH_SELECTED))))
9730 route_vty_out_detail(
9731 vty, bgp, rn, pi,
9732 afi, safi, json_paths);
9733 }
9734 }
9735
9736 bgp_unlock_node(rn);
9737 }
9738 }
9739
9740 if (use_json) {
9741 if (display)
9742 json_object_object_add(json, "paths", json_paths);
9743
9744 vty_out(vty, "%s\n", json_object_to_json_string_ext(
9745 json, JSON_C_TO_STRING_PRETTY));
9746 json_object_free(json);
9747 } else {
9748 if (!display) {
9749 vty_out(vty, "%% Network not in table\n");
9750 return CMD_WARNING;
9751 }
9752 }
9753
9754 return CMD_SUCCESS;
9755 }
9756
9757 /* Display specified route of Main RIB */
9758 static int bgp_show_route(struct vty *vty, struct bgp *bgp, const char *ip_str,
9759 afi_t afi, safi_t safi, struct prefix_rd *prd,
9760 int prefix_check, enum bgp_path_type pathtype,
9761 bool use_json)
9762 {
9763 if (!bgp) {
9764 bgp = bgp_get_default();
9765 if (!bgp) {
9766 if (!use_json)
9767 vty_out(vty, "No BGP process is configured\n");
9768 else
9769 vty_out(vty, "{}\n");
9770 return CMD_WARNING;
9771 }
9772 }
9773
9774 /* labeled-unicast routes live in the unicast table */
9775 if (safi == SAFI_LABELED_UNICAST)
9776 safi = SAFI_UNICAST;
9777
9778 return bgp_show_route_in_table(vty, bgp, bgp->rib[afi][safi], ip_str,
9779 afi, safi, prd, prefix_check, pathtype,
9780 use_json);
9781 }
9782
9783 static int bgp_show_lcommunity(struct vty *vty, struct bgp *bgp, int argc,
9784 struct cmd_token **argv, afi_t afi, safi_t safi,
9785 bool uj)
9786 {
9787 struct lcommunity *lcom;
9788 struct buffer *b;
9789 int i;
9790 char *str;
9791 int first = 0;
9792
9793 b = buffer_new(1024);
9794 for (i = 0; i < argc; i++) {
9795 if (first)
9796 buffer_putc(b, ' ');
9797 else {
9798 if (strmatch(argv[i]->text, "AA:BB:CC")) {
9799 first = 1;
9800 buffer_putstr(b, argv[i]->arg);
9801 }
9802 }
9803 }
9804 buffer_putc(b, '\0');
9805
9806 str = buffer_getstr(b);
9807 buffer_free(b);
9808
9809 lcom = lcommunity_str2com(str);
9810 XFREE(MTYPE_TMP, str);
9811 if (!lcom) {
9812 vty_out(vty, "%% Large-community malformed\n");
9813 return CMD_WARNING;
9814 }
9815
9816 return bgp_show(vty, bgp, afi, safi, bgp_show_type_lcommunity, lcom,
9817 uj);
9818 }
9819
9820 static int bgp_show_lcommunity_list(struct vty *vty, struct bgp *bgp,
9821 const char *lcom, afi_t afi, safi_t safi,
9822 bool uj)
9823 {
9824 struct community_list *list;
9825
9826 list = community_list_lookup(bgp_clist, lcom, 0,
9827 LARGE_COMMUNITY_LIST_MASTER);
9828 if (list == NULL) {
9829 vty_out(vty, "%% %s is not a valid large-community-list name\n",
9830 lcom);
9831 return CMD_WARNING;
9832 }
9833
9834 return bgp_show(vty, bgp, afi, safi, bgp_show_type_lcommunity_list,
9835 list, uj);
9836 }
9837
9838 DEFUN (show_ip_bgp_large_community_list,
9839 show_ip_bgp_large_community_list_cmd,
9840 "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" ["BGP_SAFI_WITH_LABEL_CMD_STR"]] large-community-list <(1-500)|WORD> [json]",
9841 SHOW_STR
9842 IP_STR
9843 BGP_STR
9844 BGP_INSTANCE_HELP_STR
9845 BGP_AFI_HELP_STR
9846 BGP_SAFI_WITH_LABEL_HELP_STR
9847 "Display routes matching the large-community-list\n"
9848 "large-community-list number\n"
9849 "large-community-list name\n"
9850 JSON_STR)
9851 {
9852 char *vrf = NULL;
9853 afi_t afi = AFI_IP6;
9854 safi_t safi = SAFI_UNICAST;
9855 int idx = 0;
9856
9857 if (argv_find(argv, argc, "ip", &idx))
9858 afi = AFI_IP;
9859 if (argv_find(argv, argc, "view", &idx)
9860 || argv_find(argv, argc, "vrf", &idx))
9861 vrf = argv[++idx]->arg;
9862 if (argv_find(argv, argc, "ipv4", &idx)
9863 || argv_find(argv, argc, "ipv6", &idx)) {
9864 afi = strmatch(argv[idx]->text, "ipv6") ? AFI_IP6 : AFI_IP;
9865 if (argv_find(argv, argc, "unicast", &idx)
9866 || argv_find(argv, argc, "multicast", &idx))
9867 safi = bgp_vty_safi_from_str(argv[idx]->text);
9868 }
9869
9870 bool uj = use_json(argc, argv);
9871
9872 struct bgp *bgp = bgp_lookup_by_name(vrf);
9873 if (bgp == NULL) {
9874 vty_out(vty, "Can't find BGP instance %s\n", vrf);
9875 return CMD_WARNING;
9876 }
9877
9878 argv_find(argv, argc, "large-community-list", &idx);
9879 return bgp_show_lcommunity_list(vty, bgp, argv[idx + 1]->arg, afi, safi,
9880 uj);
9881 }
9882 DEFUN (show_ip_bgp_large_community,
9883 show_ip_bgp_large_community_cmd,
9884 "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" ["BGP_SAFI_WITH_LABEL_CMD_STR"]] large-community [AA:BB:CC] [json]",
9885 SHOW_STR
9886 IP_STR
9887 BGP_STR
9888 BGP_INSTANCE_HELP_STR
9889 BGP_AFI_HELP_STR
9890 BGP_SAFI_WITH_LABEL_HELP_STR
9891 "Display routes matching the large-communities\n"
9892 "List of large-community numbers\n"
9893 JSON_STR)
9894 {
9895 char *vrf = NULL;
9896 afi_t afi = AFI_IP6;
9897 safi_t safi = SAFI_UNICAST;
9898 int idx = 0;
9899
9900 if (argv_find(argv, argc, "ip", &idx))
9901 afi = AFI_IP;
9902 if (argv_find(argv, argc, "view", &idx)
9903 || argv_find(argv, argc, "vrf", &idx))
9904 vrf = argv[++idx]->arg;
9905 if (argv_find(argv, argc, "ipv4", &idx)
9906 || argv_find(argv, argc, "ipv6", &idx)) {
9907 afi = strmatch(argv[idx]->text, "ipv6") ? AFI_IP6 : AFI_IP;
9908 if (argv_find(argv, argc, "unicast", &idx)
9909 || argv_find(argv, argc, "multicast", &idx))
9910 safi = bgp_vty_safi_from_str(argv[idx]->text);
9911 }
9912
9913 bool uj = use_json(argc, argv);
9914
9915 struct bgp *bgp = bgp_lookup_by_name(vrf);
9916 if (bgp == NULL) {
9917 vty_out(vty, "Can't find BGP instance %s\n", vrf);
9918 return CMD_WARNING;
9919 }
9920
9921 if (argv_find(argv, argc, "AA:BB:CC", &idx))
9922 return bgp_show_lcommunity(vty, bgp, argc, argv, afi, safi, uj);
9923 else
9924 return bgp_show(vty, bgp, afi, safi,
9925 bgp_show_type_lcommunity_all, NULL, uj);
9926 }
9927
9928 static int bgp_table_stats(struct vty *vty, struct bgp *bgp, afi_t afi,
9929 safi_t safi);
9930
9931
9932 /* BGP route print out function without JSON */
9933 DEFUN (show_ip_bgp,
9934 show_ip_bgp_cmd,
9935 "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" ["BGP_SAFI_WITH_LABEL_CMD_STR"]]\
9936 <dampening <parameters>\
9937 |route-map WORD\
9938 |prefix-list WORD\
9939 |filter-list WORD\
9940 |statistics\
9941 |community-list <(1-500)|WORD> [exact-match]\
9942 |A.B.C.D/M longer-prefixes\
9943 |X:X::X:X/M longer-prefixes\
9944 >",
9945 SHOW_STR
9946 IP_STR
9947 BGP_STR
9948 BGP_INSTANCE_HELP_STR
9949 BGP_AFI_HELP_STR
9950 BGP_SAFI_WITH_LABEL_HELP_STR
9951 "Display detailed information about dampening\n"
9952 "Display detail of configured dampening parameters\n"
9953 "Display routes matching the route-map\n"
9954 "A route-map to match on\n"
9955 "Display routes conforming to the prefix-list\n"
9956 "Prefix-list name\n"
9957 "Display routes conforming to the filter-list\n"
9958 "Regular expression access list name\n"
9959 "BGP RIB advertisement statistics\n"
9960 "Display routes matching the community-list\n"
9961 "community-list number\n"
9962 "community-list name\n"
9963 "Exact match of the communities\n"
9964 "IPv4 prefix\n"
9965 "Display route and more specific routes\n"
9966 "IPv6 prefix\n"
9967 "Display route and more specific routes\n")
9968 {
9969 afi_t afi = AFI_IP6;
9970 safi_t safi = SAFI_UNICAST;
9971 int exact_match = 0;
9972 struct bgp *bgp = NULL;
9973 int idx = 0;
9974
9975 bgp_vty_find_and_parse_afi_safi_bgp(vty, argv, argc, &idx, &afi, &safi,
9976 &bgp, false);
9977 if (!idx)
9978 return CMD_WARNING;
9979
9980 if (argv_find(argv, argc, "dampening", &idx)) {
9981 if (argv_find(argv, argc, "parameters", &idx))
9982 return bgp_show_dampening_parameters(vty, afi, safi);
9983 }
9984
9985 if (argv_find(argv, argc, "prefix-list", &idx))
9986 return bgp_show_prefix_list(vty, bgp, argv[idx + 1]->arg, afi,
9987 safi, bgp_show_type_prefix_list);
9988
9989 if (argv_find(argv, argc, "filter-list", &idx))
9990 return bgp_show_filter_list(vty, bgp, argv[idx + 1]->arg, afi,
9991 safi, bgp_show_type_filter_list);
9992
9993 if (argv_find(argv, argc, "statistics", &idx))
9994 return bgp_table_stats(vty, bgp, afi, safi);
9995
9996 if (argv_find(argv, argc, "route-map", &idx))
9997 return bgp_show_route_map(vty, bgp, argv[idx + 1]->arg, afi,
9998 safi, bgp_show_type_route_map);
9999
10000 if (argv_find(argv, argc, "community-list", &idx)) {
10001 const char *clist_number_or_name = argv[++idx]->arg;
10002 if (++idx < argc && strmatch(argv[idx]->text, "exact-match"))
10003 exact_match = 1;
10004 return bgp_show_community_list(vty, bgp, clist_number_or_name,
10005 exact_match, afi, safi);
10006 }
10007 /* prefix-longer */
10008 if (argv_find(argv, argc, "A.B.C.D/M", &idx)
10009 || argv_find(argv, argc, "X:X::X:X/M", &idx))
10010 return bgp_show_prefix_longer(vty, bgp, argv[idx]->arg, afi,
10011 safi,
10012 bgp_show_type_prefix_longer);
10013
10014 return CMD_WARNING;
10015 }
10016
10017 /* BGP route print out function with JSON */
10018 DEFUN (show_ip_bgp_json,
10019 show_ip_bgp_json_cmd,
10020 "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" ["BGP_SAFI_WITH_LABEL_CMD_STR"]]\
10021 [cidr-only\
10022 |dampening <flap-statistics|dampened-paths>\
10023 |community [AA:NN|local-AS|no-advertise|no-export\
10024 |graceful-shutdown|no-peer|blackhole|llgr-stale|no-llgr\
10025 |accept-own|accept-own-nexthop|route-filter-v6\
10026 |route-filter-v4|route-filter-translated-v6\
10027 |route-filter-translated-v4] [exact-match]\
10028 ] [json]",
10029 SHOW_STR
10030 IP_STR
10031 BGP_STR
10032 BGP_INSTANCE_HELP_STR
10033 BGP_AFI_HELP_STR
10034 BGP_SAFI_WITH_LABEL_HELP_STR
10035 "Display only routes with non-natural netmasks\n"
10036 "Display detailed information about dampening\n"
10037 "Display flap statistics of routes\n"
10038 "Display paths suppressed due to dampening\n"
10039 "Display routes matching the communities\n"
10040 COMMUNITY_AANN_STR
10041 "Do not send outside local AS (well-known community)\n"
10042 "Do not advertise to any peer (well-known community)\n"
10043 "Do not export to next AS (well-known community)\n"
10044 "Graceful shutdown (well-known community)\n"
10045 "Do not export to any peer (well-known community)\n"
10046 "Inform EBGP peers to blackhole traffic to prefix (well-known community)\n"
10047 "Staled Long-lived Graceful Restart VPN route (well-known community)\n"
10048 "Removed because Long-lived Graceful Restart was not enabled for VPN route (well-known community)\n"
10049 "Should accept local VPN route if exported and imported into different VRF (well-known community)\n"
10050 "Should accept VPN route with local nexthop (well-known community)\n"
10051 "RT VPNv6 route filtering (well-known community)\n"
10052 "RT VPNv4 route filtering (well-known community)\n"
10053 "RT translated VPNv6 route filtering (well-known community)\n"
10054 "RT translated VPNv4 route filtering (well-known community)\n"
10055 "Exact match of the communities\n"
10056 JSON_STR)
10057 {
10058 afi_t afi = AFI_IP6;
10059 safi_t safi = SAFI_UNICAST;
10060 enum bgp_show_type sh_type = bgp_show_type_normal;
10061 struct bgp *bgp = NULL;
10062 int idx = 0;
10063 int exact_match = 0;
10064 bool uj = use_json(argc, argv);
10065
10066 if (uj)
10067 argc--;
10068
10069 bgp_vty_find_and_parse_afi_safi_bgp(vty, argv, argc, &idx, &afi, &safi,
10070 &bgp, uj);
10071 if (!idx)
10072 return CMD_WARNING;
10073
10074 if (argv_find(argv, argc, "cidr-only", &idx))
10075 return bgp_show(vty, bgp, afi, safi, bgp_show_type_cidr_only,
10076 NULL, uj);
10077
10078 if (argv_find(argv, argc, "dampening", &idx)) {
10079 if (argv_find(argv, argc, "dampened-paths", &idx))
10080 return bgp_show(vty, bgp, afi, safi,
10081 bgp_show_type_dampend_paths, NULL, uj);
10082 else if (argv_find(argv, argc, "flap-statistics", &idx))
10083 return bgp_show(vty, bgp, afi, safi,
10084 bgp_show_type_flap_statistics, NULL,
10085 uj);
10086 }
10087
10088 if (argv_find(argv, argc, "community", &idx)) {
10089 char *maybecomm = NULL;
10090 char *community = NULL;
10091
10092 if (idx + 1 < argc) {
10093 if (argv[idx + 1]->type == VARIABLE_TKN)
10094 maybecomm = argv[idx + 1]->arg;
10095 else
10096 maybecomm = argv[idx + 1]->text;
10097 }
10098
10099 if (maybecomm && !strmatch(maybecomm, "json")
10100 && !strmatch(maybecomm, "exact-match"))
10101 community = maybecomm;
10102
10103 if (argv_find(argv, argc, "exact-match", &idx))
10104 exact_match = 1;
10105
10106 if (community)
10107 return bgp_show_community(vty, bgp, community,
10108 exact_match, afi, safi, uj);
10109 else
10110 return (bgp_show(vty, bgp, afi, safi,
10111 bgp_show_type_community_all, NULL,
10112 uj));
10113 }
10114
10115 return bgp_show(vty, bgp, afi, safi, sh_type, NULL, uj);
10116 }
10117
10118 DEFUN (show_ip_bgp_route,
10119 show_ip_bgp_route_cmd,
10120 "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" ["BGP_SAFI_WITH_LABEL_CMD_STR"]]"
10121 "<A.B.C.D|A.B.C.D/M|X:X::X:X|X:X::X:X/M> [<bestpath|multipath>] [json]",
10122 SHOW_STR
10123 IP_STR
10124 BGP_STR
10125 BGP_INSTANCE_HELP_STR
10126 BGP_AFI_HELP_STR
10127 BGP_SAFI_WITH_LABEL_HELP_STR
10128 "Network in the BGP routing table to display\n"
10129 "IPv4 prefix\n"
10130 "Network in the BGP routing table to display\n"
10131 "IPv6 prefix\n"
10132 "Display only the bestpath\n"
10133 "Display only multipaths\n"
10134 JSON_STR)
10135 {
10136 int prefix_check = 0;
10137
10138 afi_t afi = AFI_IP6;
10139 safi_t safi = SAFI_UNICAST;
10140 char *prefix = NULL;
10141 struct bgp *bgp = NULL;
10142 enum bgp_path_type path_type;
10143 bool uj = use_json(argc, argv);
10144
10145 int idx = 0;
10146
10147 bgp_vty_find_and_parse_afi_safi_bgp(vty, argv, argc, &idx, &afi, &safi,
10148 &bgp, uj);
10149 if (!idx)
10150 return CMD_WARNING;
10151
10152 if (!bgp) {
10153 vty_out(vty,
10154 "Specified 'all' vrf's but this command currently only works per view/vrf\n");
10155 return CMD_WARNING;
10156 }
10157
10158 /* <A.B.C.D|A.B.C.D/M|X:X::X:X|X:X::X:X/M> */
10159 if (argv_find(argv, argc, "A.B.C.D", &idx)
10160 || argv_find(argv, argc, "X:X::X:X", &idx))
10161 prefix_check = 0;
10162 else if (argv_find(argv, argc, "A.B.C.D/M", &idx)
10163 || argv_find(argv, argc, "X:X::X:X/M", &idx))
10164 prefix_check = 1;
10165
10166 if ((argv[idx]->type == IPV6_TKN || argv[idx]->type == IPV6_PREFIX_TKN)
10167 && afi != AFI_IP6) {
10168 vty_out(vty,
10169 "%% Cannot specify IPv6 address or prefix with IPv4 AFI\n");
10170 return CMD_WARNING;
10171 }
10172 if ((argv[idx]->type == IPV4_TKN || argv[idx]->type == IPV4_PREFIX_TKN)
10173 && afi != AFI_IP) {
10174 vty_out(vty,
10175 "%% Cannot specify IPv4 address or prefix with IPv6 AFI\n");
10176 return CMD_WARNING;
10177 }
10178
10179 prefix = argv[idx]->arg;
10180
10181 /* [<bestpath|multipath>] */
10182 if (argv_find(argv, argc, "bestpath", &idx))
10183 path_type = BGP_PATH_SHOW_BESTPATH;
10184 else if (argv_find(argv, argc, "multipath", &idx))
10185 path_type = BGP_PATH_SHOW_MULTIPATH;
10186 else
10187 path_type = BGP_PATH_SHOW_ALL;
10188
10189 return bgp_show_route(vty, bgp, prefix, afi, safi, NULL, prefix_check,
10190 path_type, uj);
10191 }
10192
10193 DEFUN (show_ip_bgp_regexp,
10194 show_ip_bgp_regexp_cmd,
10195 "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" ["BGP_SAFI_WITH_LABEL_CMD_STR"]] regexp REGEX...",
10196 SHOW_STR
10197 IP_STR
10198 BGP_STR
10199 BGP_INSTANCE_HELP_STR
10200 BGP_AFI_HELP_STR
10201 BGP_SAFI_WITH_LABEL_HELP_STR
10202 "Display routes matching the AS path regular expression\n"
10203 "A regular-expression (1234567890_^|[,{}() ]$*+.?-\\) to match the BGP AS paths\n")
10204 {
10205 afi_t afi = AFI_IP6;
10206 safi_t safi = SAFI_UNICAST;
10207 struct bgp *bgp = NULL;
10208
10209 int idx = 0;
10210 bgp_vty_find_and_parse_afi_safi_bgp(vty, argv, argc, &idx, &afi, &safi,
10211 &bgp, false);
10212 if (!idx)
10213 return CMD_WARNING;
10214
10215 // get index of regex
10216 argv_find(argv, argc, "regexp", &idx);
10217 idx++;
10218
10219 char *regstr = argv_concat(argv, argc, idx);
10220 int rc = bgp_show_regexp(vty, bgp, (const char *)regstr, afi, safi,
10221 bgp_show_type_regexp);
10222 XFREE(MTYPE_TMP, regstr);
10223 return rc;
10224 }
10225
10226 DEFUN (show_ip_bgp_instance_all,
10227 show_ip_bgp_instance_all_cmd,
10228 "show [ip] bgp <view|vrf> all ["BGP_AFI_CMD_STR" ["BGP_SAFI_WITH_LABEL_CMD_STR"]] [json]",
10229 SHOW_STR
10230 IP_STR
10231 BGP_STR
10232 BGP_INSTANCE_ALL_HELP_STR
10233 BGP_AFI_HELP_STR
10234 BGP_SAFI_WITH_LABEL_HELP_STR
10235 JSON_STR)
10236 {
10237 afi_t afi = AFI_IP;
10238 safi_t safi = SAFI_UNICAST;
10239 struct bgp *bgp = NULL;
10240 int idx = 0;
10241 bool uj = use_json(argc, argv);
10242
10243 if (uj)
10244 argc--;
10245
10246 bgp_vty_find_and_parse_afi_safi_bgp(vty, argv, argc, &idx, &afi, &safi,
10247 &bgp, uj);
10248 if (!idx)
10249 return CMD_WARNING;
10250
10251 bgp_show_all_instances_routes_vty(vty, afi, safi, uj);
10252 return CMD_SUCCESS;
10253 }
10254
10255 static int bgp_show_regexp(struct vty *vty, struct bgp *bgp, const char *regstr,
10256 afi_t afi, safi_t safi, enum bgp_show_type type)
10257 {
10258 regex_t *regex;
10259 int rc;
10260
10261 if (!config_bgp_aspath_validate(regstr)) {
10262 vty_out(vty, "Invalid character in as-path access-list %s\n",
10263 regstr);
10264 return CMD_WARNING_CONFIG_FAILED;
10265 }
10266
10267 regex = bgp_regcomp(regstr);
10268 if (!regex) {
10269 vty_out(vty, "Can't compile regexp %s\n", regstr);
10270 return CMD_WARNING;
10271 }
10272
10273 rc = bgp_show(vty, bgp, afi, safi, type, regex, 0);
10274 bgp_regex_free(regex);
10275 return rc;
10276 }
10277
10278 static int bgp_show_prefix_list(struct vty *vty, struct bgp *bgp,
10279 const char *prefix_list_str, afi_t afi,
10280 safi_t safi, enum bgp_show_type type)
10281 {
10282 struct prefix_list *plist;
10283
10284 plist = prefix_list_lookup(afi, prefix_list_str);
10285 if (plist == NULL) {
10286 vty_out(vty, "%% %s is not a valid prefix-list name\n",
10287 prefix_list_str);
10288 return CMD_WARNING;
10289 }
10290
10291 return bgp_show(vty, bgp, afi, safi, type, plist, 0);
10292 }
10293
10294 static int bgp_show_filter_list(struct vty *vty, struct bgp *bgp,
10295 const char *filter, afi_t afi, safi_t safi,
10296 enum bgp_show_type type)
10297 {
10298 struct as_list *as_list;
10299
10300 as_list = as_list_lookup(filter);
10301 if (as_list == NULL) {
10302 vty_out(vty, "%% %s is not a valid AS-path access-list name\n",
10303 filter);
10304 return CMD_WARNING;
10305 }
10306
10307 return bgp_show(vty, bgp, afi, safi, type, as_list, 0);
10308 }
10309
10310 static int bgp_show_route_map(struct vty *vty, struct bgp *bgp,
10311 const char *rmap_str, afi_t afi, safi_t safi,
10312 enum bgp_show_type type)
10313 {
10314 struct route_map *rmap;
10315
10316 rmap = route_map_lookup_by_name(rmap_str);
10317 if (!rmap) {
10318 vty_out(vty, "%% %s is not a valid route-map name\n", rmap_str);
10319 return CMD_WARNING;
10320 }
10321
10322 return bgp_show(vty, bgp, afi, safi, type, rmap, 0);
10323 }
10324
10325 static int bgp_show_community(struct vty *vty, struct bgp *bgp,
10326 const char *comstr, int exact, afi_t afi,
10327 safi_t safi, bool use_json)
10328 {
10329 struct community *com;
10330 int ret = 0;
10331
10332 com = community_str2com(comstr);
10333 if (!com) {
10334 vty_out(vty, "%% Community malformed: %s\n", comstr);
10335 return CMD_WARNING;
10336 }
10337
10338 ret = bgp_show(vty, bgp, afi, safi,
10339 (exact ? bgp_show_type_community_exact
10340 : bgp_show_type_community),
10341 com, use_json);
10342 community_free(&com);
10343
10344 return ret;
10345 }
10346
10347 static int bgp_show_community_list(struct vty *vty, struct bgp *bgp,
10348 const char *com, int exact, afi_t afi,
10349 safi_t safi)
10350 {
10351 struct community_list *list;
10352
10353 list = community_list_lookup(bgp_clist, com, 0, COMMUNITY_LIST_MASTER);
10354 if (list == NULL) {
10355 vty_out(vty, "%% %s is not a valid community-list name\n", com);
10356 return CMD_WARNING;
10357 }
10358
10359 return bgp_show(vty, bgp, afi, safi,
10360 (exact ? bgp_show_type_community_list_exact
10361 : bgp_show_type_community_list),
10362 list, 0);
10363 }
10364
10365 static int bgp_show_prefix_longer(struct vty *vty, struct bgp *bgp,
10366 const char *prefix, afi_t afi, safi_t safi,
10367 enum bgp_show_type type)
10368 {
10369 int ret;
10370 struct prefix *p;
10371
10372 p = prefix_new();
10373
10374 ret = str2prefix(prefix, p);
10375 if (!ret) {
10376 vty_out(vty, "%% Malformed Prefix\n");
10377 return CMD_WARNING;
10378 }
10379
10380 ret = bgp_show(vty, bgp, afi, safi, type, p, 0);
10381 prefix_free(p);
10382 return ret;
10383 }
10384
10385 static struct peer *peer_lookup_in_view(struct vty *vty, struct bgp *bgp,
10386 const char *ip_str, bool use_json)
10387 {
10388 int ret;
10389 struct peer *peer;
10390 union sockunion su;
10391
10392 /* Get peer sockunion. */
10393 ret = str2sockunion(ip_str, &su);
10394 if (ret < 0) {
10395 peer = peer_lookup_by_conf_if(bgp, ip_str);
10396 if (!peer) {
10397 peer = peer_lookup_by_hostname(bgp, ip_str);
10398
10399 if (!peer) {
10400 if (use_json) {
10401 json_object *json_no = NULL;
10402 json_no = json_object_new_object();
10403 json_object_string_add(
10404 json_no,
10405 "malformedAddressOrName",
10406 ip_str);
10407 vty_out(vty, "%s\n",
10408 json_object_to_json_string_ext(
10409 json_no,
10410 JSON_C_TO_STRING_PRETTY));
10411 json_object_free(json_no);
10412 } else
10413 vty_out(vty,
10414 "%% Malformed address or name: %s\n",
10415 ip_str);
10416 return NULL;
10417 }
10418 }
10419 return peer;
10420 }
10421
10422 /* Peer structure lookup. */
10423 peer = peer_lookup(bgp, &su);
10424 if (!peer) {
10425 if (use_json) {
10426 json_object *json_no = NULL;
10427 json_no = json_object_new_object();
10428 json_object_string_add(json_no, "warning",
10429 "No such neighbor in this view/vrf");
10430 vty_out(vty, "%s\n",
10431 json_object_to_json_string_ext(
10432 json_no, JSON_C_TO_STRING_PRETTY));
10433 json_object_free(json_no);
10434 } else
10435 vty_out(vty, "No such neighbor in this view/vrf\n");
10436 return NULL;
10437 }
10438
10439 return peer;
10440 }
10441
10442 enum bgp_stats {
10443 BGP_STATS_MAXBITLEN = 0,
10444 BGP_STATS_RIB,
10445 BGP_STATS_PREFIXES,
10446 BGP_STATS_TOTPLEN,
10447 BGP_STATS_UNAGGREGATEABLE,
10448 BGP_STATS_MAX_AGGREGATEABLE,
10449 BGP_STATS_AGGREGATES,
10450 BGP_STATS_SPACE,
10451 BGP_STATS_ASPATH_COUNT,
10452 BGP_STATS_ASPATH_MAXHOPS,
10453 BGP_STATS_ASPATH_TOTHOPS,
10454 BGP_STATS_ASPATH_MAXSIZE,
10455 BGP_STATS_ASPATH_TOTSIZE,
10456 BGP_STATS_ASN_HIGHEST,
10457 BGP_STATS_MAX,
10458 };
10459
10460 static const char *table_stats_strs[] = {
10461 [BGP_STATS_PREFIXES] = "Total Prefixes",
10462 [BGP_STATS_TOTPLEN] = "Average prefix length",
10463 [BGP_STATS_RIB] = "Total Advertisements",
10464 [BGP_STATS_UNAGGREGATEABLE] = "Unaggregateable prefixes",
10465 [BGP_STATS_MAX_AGGREGATEABLE] =
10466 "Maximum aggregateable prefixes",
10467 [BGP_STATS_AGGREGATES] = "BGP Aggregate advertisements",
10468 [BGP_STATS_SPACE] = "Address space advertised",
10469 [BGP_STATS_ASPATH_COUNT] = "Advertisements with paths",
10470 [BGP_STATS_ASPATH_MAXHOPS] = "Longest AS-Path (hops)",
10471 [BGP_STATS_ASPATH_MAXSIZE] = "Largest AS-Path (bytes)",
10472 [BGP_STATS_ASPATH_TOTHOPS] = "Average AS-Path length (hops)",
10473 [BGP_STATS_ASPATH_TOTSIZE] = "Average AS-Path size (bytes)",
10474 [BGP_STATS_ASN_HIGHEST] = "Highest public ASN",
10475 [BGP_STATS_MAX] = NULL,
10476 };
10477
10478 struct bgp_table_stats {
10479 struct bgp_table *table;
10480 unsigned long long counts[BGP_STATS_MAX];
10481 double total_space;
10482 };
10483
10484 #if 0
10485 #define TALLY_SIGFIG 100000
10486 static unsigned long
10487 ravg_tally (unsigned long count, unsigned long oldavg, unsigned long newval)
10488 {
10489 unsigned long newtot = (count-1) * oldavg + (newval * TALLY_SIGFIG);
10490 unsigned long res = (newtot * TALLY_SIGFIG) / count;
10491 unsigned long ret = newtot / count;
10492
10493 if ((res % TALLY_SIGFIG) > (TALLY_SIGFIG/2))
10494 return ret + 1;
10495 else
10496 return ret;
10497 }
10498 #endif
10499
10500 static void bgp_table_stats_rn(struct bgp_node *rn, struct bgp_node *top,
10501 struct bgp_table_stats *ts, unsigned int space)
10502 {
10503 struct bgp_node *prn = bgp_node_parent_nolock(rn);
10504 struct bgp_path_info *pi;
10505
10506 if (rn == top)
10507 return;
10508
10509 if (!bgp_node_has_bgp_path_info_data(rn))
10510 return;
10511
10512 ts->counts[BGP_STATS_PREFIXES]++;
10513 ts->counts[BGP_STATS_TOTPLEN] += rn->p.prefixlen;
10514
10515 #if 0
10516 ts->counts[BGP_STATS_AVGPLEN]
10517 = ravg_tally (ts->counts[BGP_STATS_PREFIXES],
10518 ts->counts[BGP_STATS_AVGPLEN],
10519 rn->p.prefixlen);
10520 #endif
10521
10522 /* check if the prefix is included by any other announcements */
10523 while (prn && !bgp_node_has_bgp_path_info_data(prn))
10524 prn = bgp_node_parent_nolock(prn);
10525
10526 if (prn == NULL || prn == top) {
10527 ts->counts[BGP_STATS_UNAGGREGATEABLE]++;
10528 /* announced address space */
10529 if (space)
10530 ts->total_space += pow(2.0, space - rn->p.prefixlen);
10531 } else if (bgp_node_has_bgp_path_info_data(prn))
10532 ts->counts[BGP_STATS_MAX_AGGREGATEABLE]++;
10533
10534
10535 for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = pi->next) {
10536 ts->counts[BGP_STATS_RIB]++;
10537
10538 if (pi->attr
10539 && (CHECK_FLAG(pi->attr->flag,
10540 ATTR_FLAG_BIT(BGP_ATTR_ATOMIC_AGGREGATE))))
10541 ts->counts[BGP_STATS_AGGREGATES]++;
10542
10543 /* as-path stats */
10544 if (pi->attr && pi->attr->aspath) {
10545 unsigned int hops = aspath_count_hops(pi->attr->aspath);
10546 unsigned int size = aspath_size(pi->attr->aspath);
10547 as_t highest = aspath_highest(pi->attr->aspath);
10548
10549 ts->counts[BGP_STATS_ASPATH_COUNT]++;
10550
10551 if (hops > ts->counts[BGP_STATS_ASPATH_MAXHOPS])
10552 ts->counts[BGP_STATS_ASPATH_MAXHOPS] = hops;
10553
10554 if (size > ts->counts[BGP_STATS_ASPATH_MAXSIZE])
10555 ts->counts[BGP_STATS_ASPATH_MAXSIZE] = size;
10556
10557 ts->counts[BGP_STATS_ASPATH_TOTHOPS] += hops;
10558 ts->counts[BGP_STATS_ASPATH_TOTSIZE] += size;
10559 #if 0
10560 ts->counts[BGP_STATS_ASPATH_AVGHOPS]
10561 = ravg_tally (ts->counts[BGP_STATS_ASPATH_COUNT],
10562 ts->counts[BGP_STATS_ASPATH_AVGHOPS],
10563 hops);
10564 ts->counts[BGP_STATS_ASPATH_AVGSIZE]
10565 = ravg_tally (ts->counts[BGP_STATS_ASPATH_COUNT],
10566 ts->counts[BGP_STATS_ASPATH_AVGSIZE],
10567 size);
10568 #endif
10569 if (highest > ts->counts[BGP_STATS_ASN_HIGHEST])
10570 ts->counts[BGP_STATS_ASN_HIGHEST] = highest;
10571 }
10572 }
10573 }
10574
10575 static int bgp_table_stats_walker(struct thread *t)
10576 {
10577 struct bgp_node *rn, *nrn;
10578 struct bgp_node *top;
10579 struct bgp_table_stats *ts = THREAD_ARG(t);
10580 unsigned int space = 0;
10581
10582 if (!(top = bgp_table_top(ts->table)))
10583 return 0;
10584
10585 switch (ts->table->afi) {
10586 case AFI_IP:
10587 space = IPV4_MAX_BITLEN;
10588 break;
10589 case AFI_IP6:
10590 space = IPV6_MAX_BITLEN;
10591 break;
10592 default:
10593 return 0;
10594 }
10595
10596 ts->counts[BGP_STATS_MAXBITLEN] = space;
10597
10598 for (rn = top; rn; rn = bgp_route_next(rn)) {
10599 if (ts->table->safi == SAFI_MPLS_VPN) {
10600 struct bgp_table *table;
10601
10602 table = bgp_node_get_bgp_table_info(rn);
10603 if (!table)
10604 continue;
10605
10606 top = bgp_table_top(table);
10607 for (nrn = bgp_table_top(table); nrn;
10608 nrn = bgp_route_next(nrn))
10609 bgp_table_stats_rn(nrn, top, ts, space);
10610 } else {
10611 bgp_table_stats_rn(rn, top, ts, space);
10612 }
10613 }
10614
10615 return 0;
10616 }
10617
10618 static int bgp_table_stats(struct vty *vty, struct bgp *bgp, afi_t afi,
10619 safi_t safi)
10620 {
10621 struct bgp_table_stats ts;
10622 unsigned int i;
10623
10624 if (!bgp->rib[afi][safi]) {
10625 vty_out(vty, "%% No RIB exist's for the AFI(%d)/SAFI(%d)\n",
10626 afi, safi);
10627 return CMD_WARNING;
10628 }
10629
10630 vty_out(vty, "BGP %s RIB statistics\n", afi_safi_print(afi, safi));
10631
10632 /* labeled-unicast routes live in the unicast table */
10633 if (safi == SAFI_LABELED_UNICAST)
10634 safi = SAFI_UNICAST;
10635
10636 memset(&ts, 0, sizeof(ts));
10637 ts.table = bgp->rib[afi][safi];
10638 thread_execute(bm->master, bgp_table_stats_walker, &ts, 0);
10639
10640 for (i = 0; i < BGP_STATS_MAX; i++) {
10641 if (!table_stats_strs[i])
10642 continue;
10643
10644 switch (i) {
10645 #if 0
10646 case BGP_STATS_ASPATH_AVGHOPS:
10647 case BGP_STATS_ASPATH_AVGSIZE:
10648 case BGP_STATS_AVGPLEN:
10649 vty_out (vty, "%-30s: ", table_stats_strs[i]);
10650 vty_out (vty, "%12.2f",
10651 (float)ts.counts[i] / (float)TALLY_SIGFIG);
10652 break;
10653 #endif
10654 case BGP_STATS_ASPATH_TOTHOPS:
10655 case BGP_STATS_ASPATH_TOTSIZE:
10656 vty_out(vty, "%-30s: ", table_stats_strs[i]);
10657 vty_out(vty, "%12.2f",
10658 ts.counts[i]
10659 ? (float)ts.counts[i]
10660 / (float)ts.counts
10661 [BGP_STATS_ASPATH_COUNT]
10662 : 0);
10663 break;
10664 case BGP_STATS_TOTPLEN:
10665 vty_out(vty, "%-30s: ", table_stats_strs[i]);
10666 vty_out(vty, "%12.2f",
10667 ts.counts[i]
10668 ? (float)ts.counts[i]
10669 / (float)ts.counts
10670 [BGP_STATS_PREFIXES]
10671 : 0);
10672 break;
10673 case BGP_STATS_SPACE:
10674 vty_out(vty, "%-30s: ", table_stats_strs[i]);
10675 vty_out(vty, "%12g\n", ts.total_space);
10676
10677 if (afi == AFI_IP6) {
10678 vty_out(vty, "%30s: ", "/32 equivalent ");
10679 vty_out(vty, "%12g\n",
10680 ts.total_space * pow(2.0, -128 + 32));
10681 vty_out(vty, "%30s: ", "/48 equivalent ");
10682 vty_out(vty, "%12g\n",
10683 ts.total_space * pow(2.0, -128 + 48));
10684 } else {
10685 vty_out(vty, "%30s: ", "% announced ");
10686 vty_out(vty, "%12.2f\n",
10687 ts.total_space * 100. * pow(2.0, -32));
10688 vty_out(vty, "%30s: ", "/8 equivalent ");
10689 vty_out(vty, "%12.2f\n",
10690 ts.total_space * pow(2.0, -32 + 8));
10691 vty_out(vty, "%30s: ", "/24 equivalent ");
10692 vty_out(vty, "%12.2f\n",
10693 ts.total_space * pow(2.0, -32 + 24));
10694 }
10695 break;
10696 default:
10697 vty_out(vty, "%-30s: ", table_stats_strs[i]);
10698 vty_out(vty, "%12llu", ts.counts[i]);
10699 }
10700
10701 vty_out(vty, "\n");
10702 }
10703 return CMD_SUCCESS;
10704 }
10705
10706 enum bgp_pcounts {
10707 PCOUNT_ADJ_IN = 0,
10708 PCOUNT_DAMPED,
10709 PCOUNT_REMOVED,
10710 PCOUNT_HISTORY,
10711 PCOUNT_STALE,
10712 PCOUNT_VALID,
10713 PCOUNT_ALL,
10714 PCOUNT_COUNTED,
10715 PCOUNT_PFCNT, /* the figure we display to users */
10716 PCOUNT_MAX,
10717 };
10718
10719 static const char *pcount_strs[] = {
10720 [PCOUNT_ADJ_IN] = "Adj-in",
10721 [PCOUNT_DAMPED] = "Damped",
10722 [PCOUNT_REMOVED] = "Removed",
10723 [PCOUNT_HISTORY] = "History",
10724 [PCOUNT_STALE] = "Stale",
10725 [PCOUNT_VALID] = "Valid",
10726 [PCOUNT_ALL] = "All RIB",
10727 [PCOUNT_COUNTED] = "PfxCt counted",
10728 [PCOUNT_PFCNT] = "Useable",
10729 [PCOUNT_MAX] = NULL,
10730 };
10731
10732 struct peer_pcounts {
10733 unsigned int count[PCOUNT_MAX];
10734 const struct peer *peer;
10735 const struct bgp_table *table;
10736 };
10737
10738 static int bgp_peer_count_walker(struct thread *t)
10739 {
10740 struct bgp_node *rn;
10741 struct peer_pcounts *pc = THREAD_ARG(t);
10742 const struct peer *peer = pc->peer;
10743
10744 for (rn = bgp_table_top(pc->table); rn; rn = bgp_route_next(rn)) {
10745 struct bgp_adj_in *ain;
10746 struct bgp_path_info *pi;
10747
10748 for (ain = rn->adj_in; ain; ain = ain->next)
10749 if (ain->peer == peer)
10750 pc->count[PCOUNT_ADJ_IN]++;
10751
10752 for (pi = bgp_node_get_bgp_path_info(rn); pi; pi = pi->next) {
10753
10754 if (pi->peer != peer)
10755 continue;
10756
10757 pc->count[PCOUNT_ALL]++;
10758
10759 if (CHECK_FLAG(pi->flags, BGP_PATH_DAMPED))
10760 pc->count[PCOUNT_DAMPED]++;
10761 if (CHECK_FLAG(pi->flags, BGP_PATH_HISTORY))
10762 pc->count[PCOUNT_HISTORY]++;
10763 if (CHECK_FLAG(pi->flags, BGP_PATH_REMOVED))
10764 pc->count[PCOUNT_REMOVED]++;
10765 if (CHECK_FLAG(pi->flags, BGP_PATH_STALE))
10766 pc->count[PCOUNT_STALE]++;
10767 if (CHECK_FLAG(pi->flags, BGP_PATH_VALID))
10768 pc->count[PCOUNT_VALID]++;
10769 if (!CHECK_FLAG(pi->flags, BGP_PATH_UNUSEABLE))
10770 pc->count[PCOUNT_PFCNT]++;
10771
10772 if (CHECK_FLAG(pi->flags, BGP_PATH_COUNTED)) {
10773 pc->count[PCOUNT_COUNTED]++;
10774 if (CHECK_FLAG(pi->flags, BGP_PATH_UNUSEABLE))
10775 flog_err(
10776 EC_LIB_DEVELOPMENT,
10777 "Attempting to count but flags say it is unusable");
10778 } else {
10779 if (!CHECK_FLAG(pi->flags, BGP_PATH_UNUSEABLE))
10780 flog_err(
10781 EC_LIB_DEVELOPMENT,
10782 "Not counted but flags say we should");
10783 }
10784 }
10785 }
10786 return 0;
10787 }
10788
10789 static int bgp_peer_counts(struct vty *vty, struct peer *peer, afi_t afi,
10790 safi_t safi, bool use_json)
10791 {
10792 struct peer_pcounts pcounts = {.peer = peer};
10793 unsigned int i;
10794 json_object *json = NULL;
10795 json_object *json_loop = NULL;
10796
10797 if (use_json) {
10798 json = json_object_new_object();
10799 json_loop = json_object_new_object();
10800 }
10801
10802 if (!peer || !peer->bgp || !peer->afc[afi][safi]
10803 || !peer->bgp->rib[afi][safi]) {
10804 if (use_json) {
10805 json_object_string_add(
10806 json, "warning",
10807 "No such neighbor or address family");
10808 vty_out(vty, "%s\n", json_object_to_json_string(json));
10809 json_object_free(json);
10810 } else
10811 vty_out(vty, "%% No such neighbor or address family\n");
10812
10813 return CMD_WARNING;
10814 }
10815
10816 memset(&pcounts, 0, sizeof(pcounts));
10817 pcounts.peer = peer;
10818 pcounts.table = peer->bgp->rib[afi][safi];
10819
10820 /* in-place call via thread subsystem so as to record execution time
10821 * stats for the thread-walk (i.e. ensure this can't be blamed on
10822 * on just vty_read()).
10823 */
10824 thread_execute(bm->master, bgp_peer_count_walker, &pcounts, 0);
10825
10826 if (use_json) {
10827 json_object_string_add(json, "prefixCountsFor", peer->host);
10828 json_object_string_add(json, "multiProtocol",
10829 afi_safi_print(afi, safi));
10830 json_object_int_add(json, "pfxCounter",
10831 peer->pcount[afi][safi]);
10832
10833 for (i = 0; i < PCOUNT_MAX; i++)
10834 json_object_int_add(json_loop, pcount_strs[i],
10835 pcounts.count[i]);
10836
10837 json_object_object_add(json, "ribTableWalkCounters", json_loop);
10838
10839 if (pcounts.count[PCOUNT_PFCNT] != peer->pcount[afi][safi]) {
10840 json_object_string_add(json, "pfxctDriftFor",
10841 peer->host);
10842 json_object_string_add(
10843 json, "recommended",
10844 "Please report this bug, with the above command output");
10845 }
10846 vty_out(vty, "%s\n", json_object_to_json_string_ext(
10847 json, JSON_C_TO_STRING_PRETTY));
10848 json_object_free(json);
10849 } else {
10850
10851 if (peer->hostname
10852 && bgp_flag_check(peer->bgp, BGP_FLAG_SHOW_HOSTNAME)) {
10853 vty_out(vty, "Prefix counts for %s/%s, %s\n",
10854 peer->hostname, peer->host,
10855 afi_safi_print(afi, safi));
10856 } else {
10857 vty_out(vty, "Prefix counts for %s, %s\n", peer->host,
10858 afi_safi_print(afi, safi));
10859 }
10860
10861 vty_out(vty, "PfxCt: %ld\n", peer->pcount[afi][safi]);
10862 vty_out(vty, "\nCounts from RIB table walk:\n\n");
10863
10864 for (i = 0; i < PCOUNT_MAX; i++)
10865 vty_out(vty, "%20s: %-10d\n", pcount_strs[i],
10866 pcounts.count[i]);
10867
10868 if (pcounts.count[PCOUNT_PFCNT] != peer->pcount[afi][safi]) {
10869 vty_out(vty, "%s [pcount] PfxCt drift!\n", peer->host);
10870 vty_out(vty,
10871 "Please report this bug, with the above command output\n");
10872 }
10873 }
10874
10875 return CMD_SUCCESS;
10876 }
10877
10878 DEFUN (show_ip_bgp_instance_neighbor_prefix_counts,
10879 show_ip_bgp_instance_neighbor_prefix_counts_cmd,
10880 "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" ["BGP_SAFI_CMD_STR"]] "
10881 "neighbors <A.B.C.D|X:X::X:X|WORD> prefix-counts [json]",
10882 SHOW_STR
10883 IP_STR
10884 BGP_STR
10885 BGP_INSTANCE_HELP_STR
10886 BGP_AFI_HELP_STR
10887 BGP_SAFI_HELP_STR
10888 "Detailed information on TCP and BGP neighbor connections\n"
10889 "Neighbor to display information about\n"
10890 "Neighbor to display information about\n"
10891 "Neighbor on BGP configured interface\n"
10892 "Display detailed prefix count information\n"
10893 JSON_STR)
10894 {
10895 afi_t afi = AFI_IP6;
10896 safi_t safi = SAFI_UNICAST;
10897 struct peer *peer;
10898 int idx = 0;
10899 struct bgp *bgp = NULL;
10900 bool uj = use_json(argc, argv);
10901
10902 if (uj)
10903 argc--;
10904
10905 bgp_vty_find_and_parse_afi_safi_bgp(vty, argv, argc, &idx, &afi, &safi,
10906 &bgp, uj);
10907 if (!idx)
10908 return CMD_WARNING;
10909
10910 argv_find(argv, argc, "neighbors", &idx);
10911 peer = peer_lookup_in_view(vty, bgp, argv[idx + 1]->arg, uj);
10912 if (!peer)
10913 return CMD_WARNING;
10914
10915 return bgp_peer_counts(vty, peer, AFI_IP, SAFI_UNICAST, uj);
10916 }
10917
10918 #ifdef KEEP_OLD_VPN_COMMANDS
10919 DEFUN (show_ip_bgp_vpn_neighbor_prefix_counts,
10920 show_ip_bgp_vpn_neighbor_prefix_counts_cmd,
10921 "show [ip] bgp <vpnv4|vpnv6> all neighbors <A.B.C.D|X:X::X:X|WORD> prefix-counts [json]",
10922 SHOW_STR
10923 IP_STR
10924 BGP_STR
10925 BGP_VPNVX_HELP_STR
10926 "Display information about all VPNv4 NLRIs\n"
10927 "Detailed information on TCP and BGP neighbor connections\n"
10928 "Neighbor to display information about\n"
10929 "Neighbor to display information about\n"
10930 "Neighbor on BGP configured interface\n"
10931 "Display detailed prefix count information\n"
10932 JSON_STR)
10933 {
10934 int idx_peer = 6;
10935 struct peer *peer;
10936 bool uj = use_json(argc, argv);
10937
10938 peer = peer_lookup_in_view(vty, NULL, argv[idx_peer]->arg, uj);
10939 if (!peer)
10940 return CMD_WARNING;
10941
10942 return bgp_peer_counts(vty, peer, AFI_IP, SAFI_MPLS_VPN, uj);
10943 }
10944
10945 DEFUN (show_ip_bgp_vpn_all_route_prefix,
10946 show_ip_bgp_vpn_all_route_prefix_cmd,
10947 "show [ip] bgp <vpnv4|vpnv6> all <A.B.C.D|A.B.C.D/M> [json]",
10948 SHOW_STR
10949 IP_STR
10950 BGP_STR
10951 BGP_VPNVX_HELP_STR
10952 "Display information about all VPNv4 NLRIs\n"
10953 "Network in the BGP routing table to display\n"
10954 "Network in the BGP routing table to display\n"
10955 JSON_STR)
10956 {
10957 int idx = 0;
10958 char *network = NULL;
10959 struct bgp *bgp = bgp_get_default();
10960 if (!bgp) {
10961 vty_out(vty, "Can't find default instance\n");
10962 return CMD_WARNING;
10963 }
10964
10965 if (argv_find(argv, argc, "A.B.C.D", &idx))
10966 network = argv[idx]->arg;
10967 else if (argv_find(argv, argc, "A.B.C.D/M", &idx))
10968 network = argv[idx]->arg;
10969 else {
10970 vty_out(vty, "Unable to figure out Network\n");
10971 return CMD_WARNING;
10972 }
10973
10974 return bgp_show_route(vty, bgp, network, AFI_IP, SAFI_MPLS_VPN, NULL, 0,
10975 BGP_PATH_SHOW_ALL, use_json(argc, argv));
10976 }
10977 #endif /* KEEP_OLD_VPN_COMMANDS */
10978
10979 DEFUN (show_ip_bgp_l2vpn_evpn_all_route_prefix,
10980 show_ip_bgp_l2vpn_evpn_all_route_prefix_cmd,
10981 "show [ip] bgp l2vpn evpn all <A.B.C.D|A.B.C.D/M> [json]",
10982 SHOW_STR
10983 IP_STR
10984 BGP_STR
10985 L2VPN_HELP_STR
10986 EVPN_HELP_STR
10987 "Display information about all EVPN NLRIs\n"
10988 "Network in the BGP routing table to display\n"
10989 "Network in the BGP routing table to display\n"
10990 JSON_STR)
10991 {
10992 int idx = 0;
10993 char *network = NULL;
10994
10995 if (argv_find(argv, argc, "A.B.C.D", &idx))
10996 network = argv[idx]->arg;
10997 else if (argv_find(argv, argc, "A.B.C.D/M", &idx))
10998 network = argv[idx]->arg;
10999 else {
11000 vty_out(vty, "Unable to figure out Network\n");
11001 return CMD_WARNING;
11002 }
11003 return bgp_show_route(vty, NULL, network, AFI_L2VPN, SAFI_EVPN, NULL, 0,
11004 BGP_PATH_SHOW_ALL, use_json(argc, argv));
11005 }
11006
11007 static void show_adj_route(struct vty *vty, struct peer *peer, afi_t afi,
11008 safi_t safi, enum bgp_show_adj_route_type type,
11009 const char *rmap_name, bool use_json,
11010 json_object *json)
11011 {
11012 struct bgp_table *table;
11013 struct bgp_adj_in *ain;
11014 struct bgp_adj_out *adj;
11015 unsigned long output_count;
11016 unsigned long filtered_count;
11017 struct bgp_node *rn;
11018 int header1 = 1;
11019 struct bgp *bgp;
11020 int header2 = 1;
11021 struct attr attr;
11022 int ret;
11023 struct update_subgroup *subgrp;
11024 json_object *json_scode = NULL;
11025 json_object *json_ocode = NULL;
11026 json_object *json_ar = NULL;
11027 struct peer_af *paf;
11028 bool route_filtered;
11029
11030 if (use_json) {
11031 json_scode = json_object_new_object();
11032 json_ocode = json_object_new_object();
11033 json_ar = json_object_new_object();
11034
11035 json_object_string_add(json_scode, "suppressed", "s");
11036 json_object_string_add(json_scode, "damped", "d");
11037 json_object_string_add(json_scode, "history", "h");
11038 json_object_string_add(json_scode, "valid", "*");
11039 json_object_string_add(json_scode, "best", ">");
11040 json_object_string_add(json_scode, "multipath", "=");
11041 json_object_string_add(json_scode, "internal", "i");
11042 json_object_string_add(json_scode, "ribFailure", "r");
11043 json_object_string_add(json_scode, "stale", "S");
11044 json_object_string_add(json_scode, "removed", "R");
11045
11046 json_object_string_add(json_ocode, "igp", "i");
11047 json_object_string_add(json_ocode, "egp", "e");
11048 json_object_string_add(json_ocode, "incomplete", "?");
11049 }
11050
11051 bgp = peer->bgp;
11052
11053 if (!bgp) {
11054 if (use_json) {
11055 json_object_string_add(json, "alert", "no BGP");
11056 vty_out(vty, "%s\n", json_object_to_json_string(json));
11057 json_object_free(json);
11058 } else
11059 vty_out(vty, "%% No bgp\n");
11060 return;
11061 }
11062
11063 /* labeled-unicast routes live in the unicast table */
11064 if (safi == SAFI_LABELED_UNICAST)
11065 table = bgp->rib[afi][SAFI_UNICAST];
11066 else
11067 table = bgp->rib[afi][safi];
11068
11069 output_count = filtered_count = 0;
11070 subgrp = peer_subgroup(peer, afi, safi);
11071
11072 if (type == bgp_show_adj_route_advertised && subgrp
11073 && CHECK_FLAG(subgrp->sflags, SUBGRP_STATUS_DEFAULT_ORIGINATE)) {
11074 if (use_json) {
11075 json_object_int_add(json, "bgpTableVersion",
11076 table->version);
11077 json_object_string_add(json, "bgpLocalRouterId",
11078 inet_ntoa(bgp->router_id));
11079 json_object_int_add(json, "defaultLocPrf",
11080 bgp->default_local_pref);
11081 json_object_int_add(json, "localAS", bgp->as);
11082 json_object_object_add(json, "bgpStatusCodes",
11083 json_scode);
11084 json_object_object_add(json, "bgpOriginCodes",
11085 json_ocode);
11086 json_object_string_add(
11087 json, "bgpOriginatingDefaultNetwork",
11088 (afi == AFI_IP) ? "0.0.0.0/0" : "::/0");
11089 } else {
11090 vty_out(vty, "BGP table version is %" PRIu64
11091 ", local router ID is %s, vrf id ",
11092 table->version, inet_ntoa(bgp->router_id));
11093 if (bgp->vrf_id == VRF_UNKNOWN)
11094 vty_out(vty, "%s", VRFID_NONE_STR);
11095 else
11096 vty_out(vty, "%u", bgp->vrf_id);
11097 vty_out(vty, "\n");
11098 vty_out(vty, "Default local pref %u, ",
11099 bgp->default_local_pref);
11100 vty_out(vty, "local AS %u\n", bgp->as);
11101 vty_out(vty, BGP_SHOW_SCODE_HEADER);
11102 vty_out(vty, BGP_SHOW_NCODE_HEADER);
11103 vty_out(vty, BGP_SHOW_OCODE_HEADER);
11104
11105 vty_out(vty, "Originating default network %s\n\n",
11106 (afi == AFI_IP) ? "0.0.0.0/0" : "::/0");
11107 }
11108 header1 = 0;
11109 }
11110
11111 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
11112 if (type == bgp_show_adj_route_received
11113 || type == bgp_show_adj_route_filtered) {
11114 for (ain = rn->adj_in; ain; ain = ain->next) {
11115 if (ain->peer != peer || !ain->attr)
11116 continue;
11117
11118 if (header1) {
11119 if (use_json) {
11120 json_object_int_add(
11121 json, "bgpTableVersion",
11122 0);
11123 json_object_string_add(
11124 json,
11125 "bgpLocalRouterId",
11126 inet_ntoa(
11127 bgp->router_id));
11128 json_object_int_add(json,
11129 "defaultLocPrf",
11130 bgp->default_local_pref);
11131 json_object_int_add(json,
11132 "localAS", bgp->as);
11133 json_object_object_add(
11134 json, "bgpStatusCodes",
11135 json_scode);
11136 json_object_object_add(
11137 json, "bgpOriginCodes",
11138 json_ocode);
11139 } else {
11140 vty_out(vty,
11141 "BGP table version is 0, local router ID is %s, vrf id ",
11142 inet_ntoa(
11143 bgp->router_id));
11144 if (bgp->vrf_id == VRF_UNKNOWN)
11145 vty_out(vty, "%s",
11146 VRFID_NONE_STR);
11147 else
11148 vty_out(vty, "%u",
11149 bgp->vrf_id);
11150 vty_out(vty, "\n");
11151 vty_out(vty,
11152 "Default local pref %u, ",
11153 bgp->default_local_pref);
11154 vty_out(vty, "local AS %u\n",
11155 bgp->as);
11156 vty_out(vty,
11157 BGP_SHOW_SCODE_HEADER);
11158 vty_out(vty,
11159 BGP_SHOW_NCODE_HEADER);
11160 vty_out(vty,
11161 BGP_SHOW_OCODE_HEADER);
11162 }
11163 header1 = 0;
11164 }
11165 if (header2) {
11166 if (!use_json)
11167 vty_out(vty, BGP_SHOW_HEADER);
11168 header2 = 0;
11169 }
11170
11171 bgp_attr_dup(&attr, ain->attr);
11172 route_filtered = false;
11173
11174 /* Filter prefix using distribute list,
11175 * filter list or prefix list
11176 */
11177 if ((bgp_input_filter(peer, &rn->p, &attr, afi,
11178 safi)) == FILTER_DENY)
11179 route_filtered = true;
11180
11181 /* Filter prefix using route-map */
11182 ret = bgp_input_modifier(peer, &rn->p, &attr,
11183 afi, safi, rmap_name);
11184
11185 if (type == bgp_show_adj_route_filtered &&
11186 !route_filtered && ret != RMAP_DENY) {
11187 bgp_attr_undup(&attr, ain->attr);
11188 continue;
11189 }
11190
11191 if (type == bgp_show_adj_route_received &&
11192 (route_filtered || ret == RMAP_DENY))
11193 filtered_count++;
11194
11195 route_vty_out_tmp(vty, &rn->p, &attr, safi,
11196 use_json, json_ar);
11197 bgp_attr_undup(&attr, ain->attr);
11198 output_count++;
11199 }
11200 } else if (type == bgp_show_adj_route_advertised) {
11201 RB_FOREACH (adj, bgp_adj_out_rb, &rn->adj_out)
11202 SUBGRP_FOREACH_PEER (adj->subgroup, paf) {
11203 if (paf->peer != peer || !adj->attr)
11204 continue;
11205
11206 if (header1) {
11207 if (use_json) {
11208 json_object_int_add(
11209 json,
11210 "bgpTableVersion",
11211 table->version);
11212 json_object_string_add(
11213 json,
11214 "bgpLocalRouterId",
11215 inet_ntoa(
11216 bgp->router_id));
11217 json_object_int_add(
11218 json, "defaultLocPrf",
11219 bgp->default_local_pref
11220 );
11221 json_object_int_add(
11222 json, "localAS",
11223 bgp->as);
11224 json_object_object_add(
11225 json,
11226 "bgpStatusCodes",
11227 json_scode);
11228 json_object_object_add(
11229 json,
11230 "bgpOriginCodes",
11231 json_ocode);
11232 } else {
11233 vty_out(vty,
11234 "BGP table version is %" PRIu64
11235 ", local router ID is %s, vrf id ",
11236 table->version,
11237 inet_ntoa(
11238 bgp->router_id));
11239 if (bgp->vrf_id ==
11240 VRF_UNKNOWN)
11241 vty_out(vty,
11242 "%s",
11243 VRFID_NONE_STR);
11244 else
11245 vty_out(vty,
11246 "%u",
11247 bgp->vrf_id);
11248 vty_out(vty, "\n");
11249 vty_out(vty,
11250 "Default local pref %u, ",
11251 bgp->default_local_pref
11252 );
11253 vty_out(vty,
11254 "local AS %u\n",
11255 bgp->as);
11256 vty_out(vty,
11257 BGP_SHOW_SCODE_HEADER);
11258 vty_out(vty,
11259 BGP_SHOW_NCODE_HEADER);
11260 vty_out(vty,
11261 BGP_SHOW_OCODE_HEADER);
11262 }
11263 header1 = 0;
11264 }
11265 if (header2) {
11266 if (!use_json)
11267 vty_out(vty,
11268 BGP_SHOW_HEADER);
11269 header2 = 0;
11270 }
11271
11272 bgp_attr_dup(&attr, adj->attr);
11273 ret = bgp_output_modifier(
11274 peer, &rn->p, &attr, afi, safi,
11275 rmap_name);
11276
11277 if (ret != RMAP_DENY) {
11278 route_vty_out_tmp(vty, &rn->p,
11279 &attr, safi,
11280 use_json,
11281 json_ar);
11282 output_count++;
11283 } else {
11284 filtered_count++;
11285 }
11286
11287 bgp_attr_undup(&attr, adj->attr);
11288 }
11289 }
11290 }
11291
11292 if (use_json) {
11293 json_object_object_add(json, "advertisedRoutes", json_ar);
11294 json_object_int_add(json, "totalPrefixCounter", output_count);
11295 json_object_int_add(json, "filteredPrefixCounter",
11296 filtered_count);
11297
11298 vty_out(vty, "%s\n", json_object_to_json_string_ext(
11299 json, JSON_C_TO_STRING_PRETTY));
11300 json_object_free(json);
11301 } else if (output_count > 0) {
11302 if (filtered_count > 0)
11303 vty_out(vty,
11304 "\nTotal number of prefixes %ld (%ld filtered)\n",
11305 output_count, filtered_count);
11306 else
11307 vty_out(vty, "\nTotal number of prefixes %ld\n",
11308 output_count);
11309 }
11310 }
11311
11312 static int peer_adj_routes(struct vty *vty, struct peer *peer, afi_t afi,
11313 safi_t safi, enum bgp_show_adj_route_type type,
11314 const char *rmap_name, bool use_json)
11315 {
11316 json_object *json = NULL;
11317
11318 if (use_json)
11319 json = json_object_new_object();
11320
11321 if (!peer || !peer->afc[afi][safi]) {
11322 if (use_json) {
11323 json_object_string_add(
11324 json, "warning",
11325 "No such neighbor or address family");
11326 vty_out(vty, "%s\n", json_object_to_json_string(json));
11327 json_object_free(json);
11328 } else
11329 vty_out(vty, "%% No such neighbor or address family\n");
11330
11331 return CMD_WARNING;
11332 }
11333
11334 if ((type == bgp_show_adj_route_received
11335 || type == bgp_show_adj_route_filtered)
11336 && !CHECK_FLAG(peer->af_flags[afi][safi],
11337 PEER_FLAG_SOFT_RECONFIG)) {
11338 if (use_json) {
11339 json_object_string_add(
11340 json, "warning",
11341 "Inbound soft reconfiguration not enabled");
11342 vty_out(vty, "%s\n", json_object_to_json_string(json));
11343 json_object_free(json);
11344 } else
11345 vty_out(vty,
11346 "%% Inbound soft reconfiguration not enabled\n");
11347
11348 return CMD_WARNING;
11349 }
11350
11351 show_adj_route(vty, peer, afi, safi, type, rmap_name, use_json, json);
11352
11353 return CMD_SUCCESS;
11354 }
11355
11356 DEFUN (show_ip_bgp_instance_neighbor_advertised_route,
11357 show_ip_bgp_instance_neighbor_advertised_route_cmd,
11358 "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" ["BGP_SAFI_WITH_LABEL_CMD_STR"]] "
11359 "neighbors <A.B.C.D|X:X::X:X|WORD> <advertised-routes|received-routes|filtered-routes> [route-map WORD] [json]",
11360 SHOW_STR
11361 IP_STR
11362 BGP_STR
11363 BGP_INSTANCE_HELP_STR
11364 BGP_AFI_HELP_STR
11365 BGP_SAFI_WITH_LABEL_HELP_STR
11366 "Detailed information on TCP and BGP neighbor connections\n"
11367 "Neighbor to display information about\n"
11368 "Neighbor to display information about\n"
11369 "Neighbor on BGP configured interface\n"
11370 "Display the routes advertised to a BGP neighbor\n"
11371 "Display the received routes from neighbor\n"
11372 "Display the filtered routes received from neighbor\n"
11373 "Route-map to modify the attributes\n"
11374 "Name of the route map\n"
11375 JSON_STR)
11376 {
11377 afi_t afi = AFI_IP6;
11378 safi_t safi = SAFI_UNICAST;
11379 char *rmap_name = NULL;
11380 char *peerstr = NULL;
11381 struct bgp *bgp = NULL;
11382 struct peer *peer;
11383 enum bgp_show_adj_route_type type = bgp_show_adj_route_advertised;
11384 int idx = 0;
11385 bool uj = use_json(argc, argv);
11386
11387 if (uj)
11388 argc--;
11389
11390 bgp_vty_find_and_parse_afi_safi_bgp(vty, argv, argc, &idx, &afi, &safi,
11391 &bgp, uj);
11392 if (!idx)
11393 return CMD_WARNING;
11394
11395 /* neighbors <A.B.C.D|X:X::X:X|WORD> */
11396 argv_find(argv, argc, "neighbors", &idx);
11397 peerstr = argv[++idx]->arg;
11398
11399 peer = peer_lookup_in_view(vty, bgp, peerstr, uj);
11400 if (!peer)
11401 return CMD_WARNING;
11402
11403 if (argv_find(argv, argc, "advertised-routes", &idx))
11404 type = bgp_show_adj_route_advertised;
11405 else if (argv_find(argv, argc, "received-routes", &idx))
11406 type = bgp_show_adj_route_received;
11407 else if (argv_find(argv, argc, "filtered-routes", &idx))
11408 type = bgp_show_adj_route_filtered;
11409
11410 if (argv_find(argv, argc, "route-map", &idx))
11411 rmap_name = argv[++idx]->arg;
11412
11413 return peer_adj_routes(vty, peer, afi, safi, type, rmap_name, uj);
11414 }
11415
11416 DEFUN (show_ip_bgp_neighbor_received_prefix_filter,
11417 show_ip_bgp_neighbor_received_prefix_filter_cmd,
11418 "show [ip] bgp [<ipv4|ipv6> [unicast]] neighbors <A.B.C.D|X:X::X:X|WORD> received prefix-filter [json]",
11419 SHOW_STR
11420 IP_STR
11421 BGP_STR
11422 "Address Family\n"
11423 "Address Family\n"
11424 "Address Family modifier\n"
11425 "Detailed information on TCP and BGP neighbor connections\n"
11426 "Neighbor to display information about\n"
11427 "Neighbor to display information about\n"
11428 "Neighbor on BGP configured interface\n"
11429 "Display information received from a BGP neighbor\n"
11430 "Display the prefixlist filter\n"
11431 JSON_STR)
11432 {
11433 afi_t afi = AFI_IP6;
11434 safi_t safi = SAFI_UNICAST;
11435 char *peerstr = NULL;
11436
11437 char name[BUFSIZ];
11438 union sockunion su;
11439 struct peer *peer;
11440 int count, ret;
11441
11442 int idx = 0;
11443
11444 /* show [ip] bgp */
11445 if (argv_find(argv, argc, "ip", &idx))
11446 afi = AFI_IP;
11447 /* [<ipv4|ipv6> [unicast]] */
11448 if (argv_find(argv, argc, "ipv4", &idx))
11449 afi = AFI_IP;
11450 if (argv_find(argv, argc, "ipv6", &idx))
11451 afi = AFI_IP6;
11452 /* neighbors <A.B.C.D|X:X::X:X|WORD> */
11453 argv_find(argv, argc, "neighbors", &idx);
11454 peerstr = argv[++idx]->arg;
11455
11456 bool uj = use_json(argc, argv);
11457
11458 ret = str2sockunion(peerstr, &su);
11459 if (ret < 0) {
11460 peer = peer_lookup_by_conf_if(NULL, peerstr);
11461 if (!peer) {
11462 if (uj)
11463 vty_out(vty, "{}\n");
11464 else
11465 vty_out(vty,
11466 "%% Malformed address or name: %s\n",
11467 peerstr);
11468 return CMD_WARNING;
11469 }
11470 } else {
11471 peer = peer_lookup(NULL, &su);
11472 if (!peer) {
11473 if (uj)
11474 vty_out(vty, "{}\n");
11475 else
11476 vty_out(vty, "No peer\n");
11477 return CMD_WARNING;
11478 }
11479 }
11480
11481 sprintf(name, "%s.%d.%d", peer->host, afi, safi);
11482 count = prefix_bgp_show_prefix_list(NULL, afi, name, uj);
11483 if (count) {
11484 if (!uj)
11485 vty_out(vty, "Address Family: %s\n",
11486 afi_safi_print(afi, safi));
11487 prefix_bgp_show_prefix_list(vty, afi, name, uj);
11488 } else {
11489 if (uj)
11490 vty_out(vty, "{}\n");
11491 else
11492 vty_out(vty, "No functional output\n");
11493 }
11494
11495 return CMD_SUCCESS;
11496 }
11497
11498 static int bgp_show_neighbor_route(struct vty *vty, struct peer *peer,
11499 afi_t afi, safi_t safi,
11500 enum bgp_show_type type, bool use_json)
11501 {
11502 /* labeled-unicast routes live in the unicast table */
11503 if (safi == SAFI_LABELED_UNICAST)
11504 safi = SAFI_UNICAST;
11505
11506 if (!peer || !peer->afc[afi][safi]) {
11507 if (use_json) {
11508 json_object *json_no = NULL;
11509 json_no = json_object_new_object();
11510 json_object_string_add(
11511 json_no, "warning",
11512 "No such neighbor or address family");
11513 vty_out(vty, "%s\n",
11514 json_object_to_json_string(json_no));
11515 json_object_free(json_no);
11516 } else
11517 vty_out(vty, "%% No such neighbor or address family\n");
11518 return CMD_WARNING;
11519 }
11520
11521 return bgp_show(vty, peer->bgp, afi, safi, type, &peer->su, use_json);
11522 }
11523
11524 DEFUN (show_ip_bgp_flowspec_routes_detailed,
11525 show_ip_bgp_flowspec_routes_detailed_cmd,
11526 "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" flowspec] detail [json]",
11527 SHOW_STR
11528 IP_STR
11529 BGP_STR
11530 BGP_INSTANCE_HELP_STR
11531 BGP_AFI_HELP_STR
11532 "SAFI Flowspec\n"
11533 "Detailed information on flowspec entries\n"
11534 JSON_STR)
11535 {
11536 afi_t afi = AFI_IP;
11537 safi_t safi = SAFI_UNICAST;
11538 struct bgp *bgp = NULL;
11539 int idx = 0;
11540 bool uj = use_json(argc, argv);
11541
11542 if (uj)
11543 argc--;
11544
11545 bgp_vty_find_and_parse_afi_safi_bgp(vty, argv, argc, &idx, &afi, &safi,
11546 &bgp, uj);
11547 if (!idx)
11548 return CMD_WARNING;
11549
11550 return bgp_show(vty, bgp, afi, safi, bgp_show_type_detail, NULL, uj);
11551 }
11552
11553 DEFUN (show_ip_bgp_neighbor_routes,
11554 show_ip_bgp_neighbor_routes_cmd,
11555 "show [ip] bgp [<view|vrf> VIEWVRFNAME] ["BGP_AFI_CMD_STR" ["BGP_SAFI_WITH_LABEL_CMD_STR"]] "
11556 "neighbors <A.B.C.D|X:X::X:X|WORD> <flap-statistics|dampened-routes|routes> [json]",
11557 SHOW_STR
11558 IP_STR
11559 BGP_STR
11560 BGP_INSTANCE_HELP_STR
11561 BGP_AFI_HELP_STR
11562 BGP_SAFI_WITH_LABEL_HELP_STR
11563 "Detailed information on TCP and BGP neighbor connections\n"
11564 "Neighbor to display information about\n"
11565 "Neighbor to display information about\n"
11566 "Neighbor on BGP configured interface\n"
11567 "Display flap statistics of the routes learned from neighbor\n"
11568 "Display the dampened routes received from neighbor\n"
11569 "Display routes learned from neighbor\n"
11570 JSON_STR)
11571 {
11572 char *peerstr = NULL;
11573 struct bgp *bgp = NULL;
11574 afi_t afi = AFI_IP6;
11575 safi_t safi = SAFI_UNICAST;
11576 struct peer *peer;
11577 enum bgp_show_type sh_type = bgp_show_type_neighbor;
11578 int idx = 0;
11579 bool uj = use_json(argc, argv);
11580
11581 if (uj)
11582 argc--;
11583
11584 bgp_vty_find_and_parse_afi_safi_bgp(vty, argv, argc, &idx, &afi, &safi,
11585 &bgp, uj);
11586 if (!idx)
11587 return CMD_WARNING;
11588
11589 /* neighbors <A.B.C.D|X:X::X:X|WORD> */
11590 argv_find(argv, argc, "neighbors", &idx);
11591 peerstr = argv[++idx]->arg;
11592
11593 peer = peer_lookup_in_view(vty, bgp, peerstr, uj);
11594 if (!peer)
11595 return CMD_WARNING;
11596
11597 if (argv_find(argv, argc, "flap-statistics", &idx))
11598 sh_type = bgp_show_type_flap_neighbor;
11599 else if (argv_find(argv, argc, "dampened-routes", &idx))
11600 sh_type = bgp_show_type_damp_neighbor;
11601 else if (argv_find(argv, argc, "routes", &idx))
11602 sh_type = bgp_show_type_neighbor;
11603
11604 return bgp_show_neighbor_route(vty, peer, afi, safi, sh_type, uj);
11605 }
11606
11607 struct bgp_table *bgp_distance_table[AFI_MAX][SAFI_MAX];
11608
11609 struct bgp_distance {
11610 /* Distance value for the IP source prefix. */
11611 uint8_t distance;
11612
11613 /* Name of the access-list to be matched. */
11614 char *access_list;
11615 };
11616
11617 DEFUN (show_bgp_afi_vpn_rd_route,
11618 show_bgp_afi_vpn_rd_route_cmd,
11619 "show bgp "BGP_AFI_CMD_STR" vpn rd ASN:NN_OR_IP-ADDRESS:NN <A.B.C.D/M|X:X::X:X/M> [json]",
11620 SHOW_STR
11621 BGP_STR
11622 BGP_AFI_HELP_STR
11623 "Address Family modifier\n"
11624 "Display information for a route distinguisher\n"
11625 "Route Distinguisher\n"
11626 "Network in the BGP routing table to display\n"
11627 "Network in the BGP routing table to display\n"
11628 JSON_STR)
11629 {
11630 int ret;
11631 struct prefix_rd prd;
11632 afi_t afi = AFI_MAX;
11633 int idx = 0;
11634
11635 if (!argv_find_and_parse_afi(argv, argc, &idx, &afi)) {
11636 vty_out(vty, "%% Malformed Address Family\n");
11637 return CMD_WARNING;
11638 }
11639
11640 ret = str2prefix_rd(argv[5]->arg, &prd);
11641 if (!ret) {
11642 vty_out(vty, "%% Malformed Route Distinguisher\n");
11643 return CMD_WARNING;
11644 }
11645
11646 return bgp_show_route(vty, NULL, argv[6]->arg, afi, SAFI_MPLS_VPN, &prd,
11647 0, BGP_PATH_SHOW_ALL, use_json(argc, argv));
11648 }
11649
11650 static struct bgp_distance *bgp_distance_new(void)
11651 {
11652 return XCALLOC(MTYPE_BGP_DISTANCE, sizeof(struct bgp_distance));
11653 }
11654
11655 static void bgp_distance_free(struct bgp_distance *bdistance)
11656 {
11657 XFREE(MTYPE_BGP_DISTANCE, bdistance);
11658 }
11659
11660 static int bgp_distance_set(struct vty *vty, const char *distance_str,
11661 const char *ip_str, const char *access_list_str)
11662 {
11663 int ret;
11664 afi_t afi;
11665 safi_t safi;
11666 struct prefix p;
11667 uint8_t distance;
11668 struct bgp_node *rn;
11669 struct bgp_distance *bdistance;
11670
11671 afi = bgp_node_afi(vty);
11672 safi = bgp_node_safi(vty);
11673
11674 ret = str2prefix(ip_str, &p);
11675 if (ret == 0) {
11676 vty_out(vty, "Malformed prefix\n");
11677 return CMD_WARNING_CONFIG_FAILED;
11678 }
11679
11680 distance = atoi(distance_str);
11681
11682 /* Get BGP distance node. */
11683 rn = bgp_node_get(bgp_distance_table[afi][safi], (struct prefix *)&p);
11684 bdistance = bgp_node_get_bgp_distance_info(rn);
11685 if (bdistance)
11686 bgp_unlock_node(rn);
11687 else {
11688 bdistance = bgp_distance_new();
11689 bgp_node_set_bgp_distance_info(rn, bdistance);
11690 }
11691
11692 /* Set distance value. */
11693 bdistance->distance = distance;
11694
11695 /* Reset access-list configuration. */
11696 if (bdistance->access_list) {
11697 XFREE(MTYPE_AS_LIST, bdistance->access_list);
11698 bdistance->access_list = NULL;
11699 }
11700 if (access_list_str)
11701 bdistance->access_list =
11702 XSTRDUP(MTYPE_AS_LIST, access_list_str);
11703
11704 return CMD_SUCCESS;
11705 }
11706
11707 static int bgp_distance_unset(struct vty *vty, const char *distance_str,
11708 const char *ip_str, const char *access_list_str)
11709 {
11710 int ret;
11711 afi_t afi;
11712 safi_t safi;
11713 struct prefix p;
11714 int distance;
11715 struct bgp_node *rn;
11716 struct bgp_distance *bdistance;
11717
11718 afi = bgp_node_afi(vty);
11719 safi = bgp_node_safi(vty);
11720
11721 ret = str2prefix(ip_str, &p);
11722 if (ret == 0) {
11723 vty_out(vty, "Malformed prefix\n");
11724 return CMD_WARNING_CONFIG_FAILED;
11725 }
11726
11727 rn = bgp_node_lookup(bgp_distance_table[afi][safi],
11728 (struct prefix *)&p);
11729 if (!rn) {
11730 vty_out(vty, "Can't find specified prefix\n");
11731 return CMD_WARNING_CONFIG_FAILED;
11732 }
11733
11734 bdistance = bgp_node_get_bgp_distance_info(rn);
11735 distance = atoi(distance_str);
11736
11737 if (bdistance->distance != distance) {
11738 vty_out(vty, "Distance does not match configured\n");
11739 return CMD_WARNING_CONFIG_FAILED;
11740 }
11741
11742 XFREE(MTYPE_AS_LIST, bdistance->access_list);
11743 bgp_distance_free(bdistance);
11744
11745 bgp_node_set_bgp_path_info(rn, NULL);
11746 bgp_unlock_node(rn);
11747 bgp_unlock_node(rn);
11748
11749 return CMD_SUCCESS;
11750 }
11751
11752 /* Apply BGP information to distance method. */
11753 uint8_t bgp_distance_apply(struct prefix *p, struct bgp_path_info *pinfo,
11754 afi_t afi, safi_t safi, struct bgp *bgp)
11755 {
11756 struct bgp_node *rn;
11757 struct prefix q;
11758 struct peer *peer;
11759 struct bgp_distance *bdistance;
11760 struct access_list *alist;
11761 struct bgp_static *bgp_static;
11762
11763 if (!bgp)
11764 return 0;
11765
11766 peer = pinfo->peer;
11767
11768 /* Check source address. */
11769 sockunion2hostprefix(&peer->su, &q);
11770 rn = bgp_node_match(bgp_distance_table[afi][safi], &q);
11771 if (rn) {
11772 bdistance = bgp_node_get_bgp_distance_info(rn);
11773 bgp_unlock_node(rn);
11774
11775 if (bdistance->access_list) {
11776 alist = access_list_lookup(afi, bdistance->access_list);
11777 if (alist
11778 && access_list_apply(alist, p) == FILTER_PERMIT)
11779 return bdistance->distance;
11780 } else
11781 return bdistance->distance;
11782 }
11783
11784 /* Backdoor check. */
11785 rn = bgp_node_lookup(bgp->route[afi][safi], p);
11786 if (rn) {
11787 bgp_static = bgp_node_get_bgp_static_info(rn);
11788 bgp_unlock_node(rn);
11789
11790 if (bgp_static->backdoor) {
11791 if (bgp->distance_local[afi][safi])
11792 return bgp->distance_local[afi][safi];
11793 else
11794 return ZEBRA_IBGP_DISTANCE_DEFAULT;
11795 }
11796 }
11797
11798 if (peer->sort == BGP_PEER_EBGP) {
11799 if (bgp->distance_ebgp[afi][safi])
11800 return bgp->distance_ebgp[afi][safi];
11801 return ZEBRA_EBGP_DISTANCE_DEFAULT;
11802 } else {
11803 if (bgp->distance_ibgp[afi][safi])
11804 return bgp->distance_ibgp[afi][safi];
11805 return ZEBRA_IBGP_DISTANCE_DEFAULT;
11806 }
11807 }
11808
11809 DEFUN (bgp_distance,
11810 bgp_distance_cmd,
11811 "distance bgp (1-255) (1-255) (1-255)",
11812 "Define an administrative distance\n"
11813 "BGP distance\n"
11814 "Distance for routes external to the AS\n"
11815 "Distance for routes internal to the AS\n"
11816 "Distance for local routes\n")
11817 {
11818 VTY_DECLVAR_CONTEXT(bgp, bgp);
11819 int idx_number = 2;
11820 int idx_number_2 = 3;
11821 int idx_number_3 = 4;
11822 afi_t afi;
11823 safi_t safi;
11824
11825 afi = bgp_node_afi(vty);
11826 safi = bgp_node_safi(vty);
11827
11828 bgp->distance_ebgp[afi][safi] = atoi(argv[idx_number]->arg);
11829 bgp->distance_ibgp[afi][safi] = atoi(argv[idx_number_2]->arg);
11830 bgp->distance_local[afi][safi] = atoi(argv[idx_number_3]->arg);
11831 return CMD_SUCCESS;
11832 }
11833
11834 DEFUN (no_bgp_distance,
11835 no_bgp_distance_cmd,
11836 "no distance bgp [(1-255) (1-255) (1-255)]",
11837 NO_STR
11838 "Define an administrative distance\n"
11839 "BGP distance\n"
11840 "Distance for routes external to the AS\n"
11841 "Distance for routes internal to the AS\n"
11842 "Distance for local routes\n")
11843 {
11844 VTY_DECLVAR_CONTEXT(bgp, bgp);
11845 afi_t afi;
11846 safi_t safi;
11847
11848 afi = bgp_node_afi(vty);
11849 safi = bgp_node_safi(vty);
11850
11851 bgp->distance_ebgp[afi][safi] = 0;
11852 bgp->distance_ibgp[afi][safi] = 0;
11853 bgp->distance_local[afi][safi] = 0;
11854 return CMD_SUCCESS;
11855 }
11856
11857
11858 DEFUN (bgp_distance_source,
11859 bgp_distance_source_cmd,
11860 "distance (1-255) A.B.C.D/M",
11861 "Define an administrative distance\n"
11862 "Administrative distance\n"
11863 "IP source prefix\n")
11864 {
11865 int idx_number = 1;
11866 int idx_ipv4_prefixlen = 2;
11867 bgp_distance_set(vty, argv[idx_number]->arg,
11868 argv[idx_ipv4_prefixlen]->arg, NULL);
11869 return CMD_SUCCESS;
11870 }
11871
11872 DEFUN (no_bgp_distance_source,
11873 no_bgp_distance_source_cmd,
11874 "no distance (1-255) A.B.C.D/M",
11875 NO_STR
11876 "Define an administrative distance\n"
11877 "Administrative distance\n"
11878 "IP source prefix\n")
11879 {
11880 int idx_number = 2;
11881 int idx_ipv4_prefixlen = 3;
11882 bgp_distance_unset(vty, argv[idx_number]->arg,
11883 argv[idx_ipv4_prefixlen]->arg, NULL);
11884 return CMD_SUCCESS;
11885 }
11886
11887 DEFUN (bgp_distance_source_access_list,
11888 bgp_distance_source_access_list_cmd,
11889 "distance (1-255) A.B.C.D/M WORD",
11890 "Define an administrative distance\n"
11891 "Administrative distance\n"
11892 "IP source prefix\n"
11893 "Access list name\n")
11894 {
11895 int idx_number = 1;
11896 int idx_ipv4_prefixlen = 2;
11897 int idx_word = 3;
11898 bgp_distance_set(vty, argv[idx_number]->arg,
11899 argv[idx_ipv4_prefixlen]->arg, argv[idx_word]->arg);
11900 return CMD_SUCCESS;
11901 }
11902
11903 DEFUN (no_bgp_distance_source_access_list,
11904 no_bgp_distance_source_access_list_cmd,
11905 "no distance (1-255) A.B.C.D/M WORD",
11906 NO_STR
11907 "Define an administrative distance\n"
11908 "Administrative distance\n"
11909 "IP source prefix\n"
11910 "Access list name\n")
11911 {
11912 int idx_number = 2;
11913 int idx_ipv4_prefixlen = 3;
11914 int idx_word = 4;
11915 bgp_distance_unset(vty, argv[idx_number]->arg,
11916 argv[idx_ipv4_prefixlen]->arg, argv[idx_word]->arg);
11917 return CMD_SUCCESS;
11918 }
11919
11920 DEFUN (ipv6_bgp_distance_source,
11921 ipv6_bgp_distance_source_cmd,
11922 "distance (1-255) X:X::X:X/M",
11923 "Define an administrative distance\n"
11924 "Administrative distance\n"
11925 "IP source prefix\n")
11926 {
11927 bgp_distance_set(vty, argv[1]->arg, argv[2]->arg, NULL);
11928 return CMD_SUCCESS;
11929 }
11930
11931 DEFUN (no_ipv6_bgp_distance_source,
11932 no_ipv6_bgp_distance_source_cmd,
11933 "no distance (1-255) X:X::X:X/M",
11934 NO_STR
11935 "Define an administrative distance\n"
11936 "Administrative distance\n"
11937 "IP source prefix\n")
11938 {
11939 bgp_distance_unset(vty, argv[2]->arg, argv[3]->arg, NULL);
11940 return CMD_SUCCESS;
11941 }
11942
11943 DEFUN (ipv6_bgp_distance_source_access_list,
11944 ipv6_bgp_distance_source_access_list_cmd,
11945 "distance (1-255) X:X::X:X/M WORD",
11946 "Define an administrative distance\n"
11947 "Administrative distance\n"
11948 "IP source prefix\n"
11949 "Access list name\n")
11950 {
11951 bgp_distance_set(vty, argv[1]->arg, argv[2]->arg, argv[3]->arg);
11952 return CMD_SUCCESS;
11953 }
11954
11955 DEFUN (no_ipv6_bgp_distance_source_access_list,
11956 no_ipv6_bgp_distance_source_access_list_cmd,
11957 "no distance (1-255) X:X::X:X/M WORD",
11958 NO_STR
11959 "Define an administrative distance\n"
11960 "Administrative distance\n"
11961 "IP source prefix\n"
11962 "Access list name\n")
11963 {
11964 bgp_distance_unset(vty, argv[2]->arg, argv[3]->arg, argv[4]->arg);
11965 return CMD_SUCCESS;
11966 }
11967
11968 DEFUN (bgp_damp_set,
11969 bgp_damp_set_cmd,
11970 "bgp dampening [(1-45) [(1-20000) (1-20000) (1-255)]]",
11971 "BGP Specific commands\n"
11972 "Enable route-flap dampening\n"
11973 "Half-life time for the penalty\n"
11974 "Value to start reusing a route\n"
11975 "Value to start suppressing a route\n"
11976 "Maximum duration to suppress a stable route\n")
11977 {
11978 VTY_DECLVAR_CONTEXT(bgp, bgp);
11979 int idx_half_life = 2;
11980 int idx_reuse = 3;
11981 int idx_suppress = 4;
11982 int idx_max_suppress = 5;
11983 int half = DEFAULT_HALF_LIFE * 60;
11984 int reuse = DEFAULT_REUSE;
11985 int suppress = DEFAULT_SUPPRESS;
11986 int max = 4 * half;
11987
11988 if (argc == 6) {
11989 half = atoi(argv[idx_half_life]->arg) * 60;
11990 reuse = atoi(argv[idx_reuse]->arg);
11991 suppress = atoi(argv[idx_suppress]->arg);
11992 max = atoi(argv[idx_max_suppress]->arg) * 60;
11993 } else if (argc == 3) {
11994 half = atoi(argv[idx_half_life]->arg) * 60;
11995 max = 4 * half;
11996 }
11997
11998 if (suppress < reuse) {
11999 vty_out(vty,
12000 "Suppress value cannot be less than reuse value \n");
12001 return 0;
12002 }
12003
12004 return bgp_damp_enable(bgp, bgp_node_afi(vty), bgp_node_safi(vty), half,
12005 reuse, suppress, max);
12006 }
12007
12008 DEFUN (bgp_damp_unset,
12009 bgp_damp_unset_cmd,
12010 "no bgp dampening [(1-45) [(1-20000) (1-20000) (1-255)]]",
12011 NO_STR
12012 "BGP Specific commands\n"
12013 "Enable route-flap dampening\n"
12014 "Half-life time for the penalty\n"
12015 "Value to start reusing a route\n"
12016 "Value to start suppressing a route\n"
12017 "Maximum duration to suppress a stable route\n")
12018 {
12019 VTY_DECLVAR_CONTEXT(bgp, bgp);
12020 return bgp_damp_disable(bgp, bgp_node_afi(vty), bgp_node_safi(vty));
12021 }
12022
12023 /* Display specified route of BGP table. */
12024 static int bgp_clear_damp_route(struct vty *vty, const char *view_name,
12025 const char *ip_str, afi_t afi, safi_t safi,
12026 struct prefix_rd *prd, int prefix_check)
12027 {
12028 int ret;
12029 struct prefix match;
12030 struct bgp_node *rn;
12031 struct bgp_node *rm;
12032 struct bgp_path_info *pi;
12033 struct bgp_path_info *pi_temp;
12034 struct bgp *bgp;
12035 struct bgp_table *table;
12036
12037 /* BGP structure lookup. */
12038 if (view_name) {
12039 bgp = bgp_lookup_by_name(view_name);
12040 if (bgp == NULL) {
12041 vty_out(vty, "%% Can't find BGP instance %s\n",
12042 view_name);
12043 return CMD_WARNING;
12044 }
12045 } else {
12046 bgp = bgp_get_default();
12047 if (bgp == NULL) {
12048 vty_out(vty, "%% No BGP process is configured\n");
12049 return CMD_WARNING;
12050 }
12051 }
12052
12053 /* Check IP address argument. */
12054 ret = str2prefix(ip_str, &match);
12055 if (!ret) {
12056 vty_out(vty, "%% address is malformed\n");
12057 return CMD_WARNING;
12058 }
12059
12060 match.family = afi2family(afi);
12061
12062 if ((safi == SAFI_MPLS_VPN) || (safi == SAFI_ENCAP)
12063 || (safi == SAFI_EVPN)) {
12064 for (rn = bgp_table_top(bgp->rib[AFI_IP][safi]); rn;
12065 rn = bgp_route_next(rn)) {
12066 if (prd && memcmp(rn->p.u.val, prd->val, 8) != 0)
12067 continue;
12068 table = bgp_node_get_bgp_table_info(rn);
12069 if (!table)
12070 continue;
12071 if ((rm = bgp_node_match(table, &match)) == NULL)
12072 continue;
12073
12074 if (!prefix_check
12075 || rm->p.prefixlen == match.prefixlen) {
12076 pi = bgp_node_get_bgp_path_info(rm);
12077 while (pi) {
12078 if (pi->extra && pi->extra->damp_info) {
12079 pi_temp = pi->next;
12080 bgp_damp_info_free(
12081 pi->extra->damp_info,
12082 1);
12083 pi = pi_temp;
12084 } else
12085 pi = pi->next;
12086 }
12087 }
12088
12089 bgp_unlock_node(rm);
12090 }
12091 } else {
12092 if ((rn = bgp_node_match(bgp->rib[afi][safi], &match))
12093 != NULL) {
12094 if (!prefix_check
12095 || rn->p.prefixlen == match.prefixlen) {
12096 pi = bgp_node_get_bgp_path_info(rn);
12097 while (pi) {
12098 if (pi->extra && pi->extra->damp_info) {
12099 pi_temp = pi->next;
12100 bgp_damp_info_free(
12101 pi->extra->damp_info,
12102 1);
12103 pi = pi_temp;
12104 } else
12105 pi = pi->next;
12106 }
12107 }
12108
12109 bgp_unlock_node(rn);
12110 }
12111 }
12112
12113 return CMD_SUCCESS;
12114 }
12115
12116 DEFUN (clear_ip_bgp_dampening,
12117 clear_ip_bgp_dampening_cmd,
12118 "clear ip bgp dampening",
12119 CLEAR_STR
12120 IP_STR
12121 BGP_STR
12122 "Clear route flap dampening information\n")
12123 {
12124 bgp_damp_info_clean();
12125 return CMD_SUCCESS;
12126 }
12127
12128 DEFUN (clear_ip_bgp_dampening_prefix,
12129 clear_ip_bgp_dampening_prefix_cmd,
12130 "clear ip bgp dampening A.B.C.D/M",
12131 CLEAR_STR
12132 IP_STR
12133 BGP_STR
12134 "Clear route flap dampening information\n"
12135 "IPv4 prefix\n")
12136 {
12137 int idx_ipv4_prefixlen = 4;
12138 return bgp_clear_damp_route(vty, NULL, argv[idx_ipv4_prefixlen]->arg,
12139 AFI_IP, SAFI_UNICAST, NULL, 1);
12140 }
12141
12142 DEFUN (clear_ip_bgp_dampening_address,
12143 clear_ip_bgp_dampening_address_cmd,
12144 "clear ip bgp dampening A.B.C.D",
12145 CLEAR_STR
12146 IP_STR
12147 BGP_STR
12148 "Clear route flap dampening information\n"
12149 "Network to clear damping information\n")
12150 {
12151 int idx_ipv4 = 4;
12152 return bgp_clear_damp_route(vty, NULL, argv[idx_ipv4]->arg, AFI_IP,
12153 SAFI_UNICAST, NULL, 0);
12154 }
12155
12156 DEFUN (clear_ip_bgp_dampening_address_mask,
12157 clear_ip_bgp_dampening_address_mask_cmd,
12158 "clear ip bgp dampening A.B.C.D A.B.C.D",
12159 CLEAR_STR
12160 IP_STR
12161 BGP_STR
12162 "Clear route flap dampening information\n"
12163 "Network to clear damping information\n"
12164 "Network mask\n")
12165 {
12166 int idx_ipv4 = 4;
12167 int idx_ipv4_2 = 5;
12168 int ret;
12169 char prefix_str[BUFSIZ];
12170
12171 ret = netmask_str2prefix_str(argv[idx_ipv4]->arg, argv[idx_ipv4_2]->arg,
12172 prefix_str);
12173 if (!ret) {
12174 vty_out(vty, "%% Inconsistent address and mask\n");
12175 return CMD_WARNING;
12176 }
12177
12178 return bgp_clear_damp_route(vty, NULL, prefix_str, AFI_IP, SAFI_UNICAST,
12179 NULL, 0);
12180 }
12181
12182 static void show_bgp_peerhash_entry(struct hash_bucket *bucket, void *arg)
12183 {
12184 struct vty *vty = arg;
12185 struct peer *peer = bucket->data;
12186 char buf[SU_ADDRSTRLEN];
12187
12188 vty_out(vty, "\tPeer: %s %s\n", peer->host,
12189 sockunion2str(&peer->su, buf, sizeof(buf)));
12190 }
12191
12192 DEFUN (show_bgp_peerhash,
12193 show_bgp_peerhash_cmd,
12194 "show bgp peerhash",
12195 SHOW_STR
12196 BGP_STR
12197 "Display information about the BGP peerhash\n")
12198 {
12199 struct list *instances = bm->bgp;
12200 struct listnode *node;
12201 struct bgp *bgp;
12202
12203 for (ALL_LIST_ELEMENTS_RO(instances, node, bgp)) {
12204 vty_out(vty, "BGP: %s\n", bgp->name);
12205 hash_iterate(bgp->peerhash, show_bgp_peerhash_entry,
12206 vty);
12207 }
12208
12209 return CMD_SUCCESS;
12210 }
12211
12212 /* also used for encap safi */
12213 static void bgp_config_write_network_vpn(struct vty *vty, struct bgp *bgp,
12214 afi_t afi, safi_t safi)
12215 {
12216 struct bgp_node *prn;
12217 struct bgp_node *rn;
12218 struct bgp_table *table;
12219 struct prefix *p;
12220 struct prefix_rd *prd;
12221 struct bgp_static *bgp_static;
12222 mpls_label_t label;
12223 char buf[SU_ADDRSTRLEN];
12224 char rdbuf[RD_ADDRSTRLEN];
12225
12226 /* Network configuration. */
12227 for (prn = bgp_table_top(bgp->route[afi][safi]); prn;
12228 prn = bgp_route_next(prn)) {
12229 table = bgp_node_get_bgp_table_info(prn);
12230 if (!table)
12231 continue;
12232
12233 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
12234 bgp_static = bgp_node_get_bgp_static_info(rn);
12235 if (bgp_static == NULL)
12236 continue;
12237
12238 p = &rn->p;
12239 prd = (struct prefix_rd *)&prn->p;
12240
12241 /* "network" configuration display. */
12242 prefix_rd2str(prd, rdbuf, sizeof(rdbuf));
12243 label = decode_label(&bgp_static->label);
12244
12245 vty_out(vty, " network %s/%d rd %s",
12246 inet_ntop(p->family, &p->u.prefix, buf,
12247 SU_ADDRSTRLEN),
12248 p->prefixlen, rdbuf);
12249 if (safi == SAFI_MPLS_VPN)
12250 vty_out(vty, " label %u", label);
12251
12252 if (bgp_static->rmap.name)
12253 vty_out(vty, " route-map %s",
12254 bgp_static->rmap.name);
12255
12256 if (bgp_static->backdoor)
12257 vty_out(vty, " backdoor");
12258
12259 vty_out(vty, "\n");
12260 }
12261 }
12262 }
12263
12264 static void bgp_config_write_network_evpn(struct vty *vty, struct bgp *bgp,
12265 afi_t afi, safi_t safi)
12266 {
12267 struct bgp_node *prn;
12268 struct bgp_node *rn;
12269 struct bgp_table *table;
12270 struct prefix *p;
12271 struct prefix_rd *prd;
12272 struct bgp_static *bgp_static;
12273 char buf[PREFIX_STRLEN * 2];
12274 char buf2[SU_ADDRSTRLEN];
12275 char rdbuf[RD_ADDRSTRLEN];
12276
12277 /* Network configuration. */
12278 for (prn = bgp_table_top(bgp->route[afi][safi]); prn;
12279 prn = bgp_route_next(prn)) {
12280 table = bgp_node_get_bgp_table_info(prn);
12281 if (!table)
12282 continue;
12283
12284 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn)) {
12285 bgp_static = bgp_node_get_bgp_static_info(rn);
12286 if (bgp_static == NULL)
12287 continue;
12288
12289 char *macrouter = NULL;
12290 char *esi = NULL;
12291
12292 if (bgp_static->router_mac)
12293 macrouter = prefix_mac2str(
12294 bgp_static->router_mac, NULL, 0);
12295 if (bgp_static->eth_s_id)
12296 esi = esi2str(bgp_static->eth_s_id);
12297 p = &rn->p;
12298 prd = (struct prefix_rd *)&prn->p;
12299
12300 /* "network" configuration display. */
12301 prefix_rd2str(prd, rdbuf, sizeof(rdbuf));
12302 if (p->u.prefix_evpn.route_type == 5) {
12303 char local_buf[PREFIX_STRLEN];
12304 uint8_t family = is_evpn_prefix_ipaddr_v4((
12305 struct prefix_evpn *)p)
12306 ? AF_INET
12307 : AF_INET6;
12308 inet_ntop(family,
12309 &p->u.prefix_evpn.prefix_addr.ip.ip.addr,
12310 local_buf, PREFIX_STRLEN);
12311 sprintf(buf, "%s/%u", local_buf,
12312 p->u.prefix_evpn.prefix_addr.ip_prefix_length);
12313 } else {
12314 prefix2str(p, buf, sizeof(buf));
12315 }
12316
12317 if (bgp_static->gatewayIp.family == AF_INET
12318 || bgp_static->gatewayIp.family == AF_INET6)
12319 inet_ntop(bgp_static->gatewayIp.family,
12320 &bgp_static->gatewayIp.u.prefix, buf2,
12321 sizeof(buf2));
12322 vty_out(vty,
12323 " network %s rd %s ethtag %u label %u esi %s gwip %s routermac %s\n",
12324 buf, rdbuf,
12325 p->u.prefix_evpn.prefix_addr.eth_tag,
12326 decode_label(&bgp_static->label), esi, buf2,
12327 macrouter);
12328
12329 XFREE(MTYPE_TMP, macrouter);
12330 XFREE(MTYPE_TMP, esi);
12331 }
12332 }
12333 }
12334
12335 /* Configuration of static route announcement and aggregate
12336 information. */
12337 void bgp_config_write_network(struct vty *vty, struct bgp *bgp, afi_t afi,
12338 safi_t safi)
12339 {
12340 struct bgp_node *rn;
12341 struct prefix *p;
12342 struct bgp_static *bgp_static;
12343 struct bgp_aggregate *bgp_aggregate;
12344 char buf[SU_ADDRSTRLEN];
12345
12346 if ((safi == SAFI_MPLS_VPN) || (safi == SAFI_ENCAP)) {
12347 bgp_config_write_network_vpn(vty, bgp, afi, safi);
12348 return;
12349 }
12350
12351 if (afi == AFI_L2VPN && safi == SAFI_EVPN) {
12352 bgp_config_write_network_evpn(vty, bgp, afi, safi);
12353 return;
12354 }
12355
12356 /* Network configuration. */
12357 for (rn = bgp_table_top(bgp->route[afi][safi]); rn;
12358 rn = bgp_route_next(rn)) {
12359 bgp_static = bgp_node_get_bgp_static_info(rn);
12360 if (bgp_static == NULL)
12361 continue;
12362
12363 p = &rn->p;
12364
12365 vty_out(vty, " network %s/%d",
12366 inet_ntop(p->family, &p->u.prefix, buf, SU_ADDRSTRLEN),
12367 p->prefixlen);
12368
12369 if (bgp_static->label_index != BGP_INVALID_LABEL_INDEX)
12370 vty_out(vty, " label-index %u",
12371 bgp_static->label_index);
12372
12373 if (bgp_static->rmap.name)
12374 vty_out(vty, " route-map %s", bgp_static->rmap.name);
12375
12376 if (bgp_static->backdoor)
12377 vty_out(vty, " backdoor");
12378
12379 vty_out(vty, "\n");
12380 }
12381
12382 /* Aggregate-address configuration. */
12383 for (rn = bgp_table_top(bgp->aggregate[afi][safi]); rn;
12384 rn = bgp_route_next(rn)) {
12385 bgp_aggregate = bgp_node_get_bgp_aggregate_info(rn);
12386 if (bgp_aggregate == NULL)
12387 continue;
12388
12389 p = &rn->p;
12390
12391 vty_out(vty, " aggregate-address %s/%d",
12392 inet_ntop(p->family, &p->u.prefix, buf, SU_ADDRSTRLEN),
12393 p->prefixlen);
12394
12395 if (bgp_aggregate->as_set)
12396 vty_out(vty, " as-set");
12397
12398 if (bgp_aggregate->summary_only)
12399 vty_out(vty, " summary-only");
12400
12401 vty_out(vty, "\n");
12402 }
12403 }
12404
12405 void bgp_config_write_distance(struct vty *vty, struct bgp *bgp, afi_t afi,
12406 safi_t safi)
12407 {
12408 struct bgp_node *rn;
12409 struct bgp_distance *bdistance;
12410
12411 /* Distance configuration. */
12412 if (bgp->distance_ebgp[afi][safi] && bgp->distance_ibgp[afi][safi]
12413 && bgp->distance_local[afi][safi]
12414 && (bgp->distance_ebgp[afi][safi] != ZEBRA_EBGP_DISTANCE_DEFAULT
12415 || bgp->distance_ibgp[afi][safi] != ZEBRA_IBGP_DISTANCE_DEFAULT
12416 || bgp->distance_local[afi][safi]
12417 != ZEBRA_IBGP_DISTANCE_DEFAULT)) {
12418 vty_out(vty, " distance bgp %d %d %d\n",
12419 bgp->distance_ebgp[afi][safi],
12420 bgp->distance_ibgp[afi][safi],
12421 bgp->distance_local[afi][safi]);
12422 }
12423
12424 for (rn = bgp_table_top(bgp_distance_table[afi][safi]); rn;
12425 rn = bgp_route_next(rn)) {
12426 bdistance = bgp_node_get_bgp_distance_info(rn);
12427 if (bdistance != NULL) {
12428 char buf[PREFIX_STRLEN];
12429
12430 vty_out(vty, " distance %d %s %s\n",
12431 bdistance->distance,
12432 prefix2str(&rn->p, buf, sizeof(buf)),
12433 bdistance->access_list ? bdistance->access_list
12434 : "");
12435 }
12436 }
12437 }
12438
12439 /* Allocate routing table structure and install commands. */
12440 void bgp_route_init(void)
12441 {
12442 afi_t afi;
12443 safi_t safi;
12444
12445 /* Init BGP distance table. */
12446 FOREACH_AFI_SAFI (afi, safi)
12447 bgp_distance_table[afi][safi] = bgp_table_init(NULL, afi, safi);
12448
12449 /* IPv4 BGP commands. */
12450 install_element(BGP_NODE, &bgp_table_map_cmd);
12451 install_element(BGP_NODE, &bgp_network_cmd);
12452 install_element(BGP_NODE, &no_bgp_table_map_cmd);
12453
12454 install_element(BGP_NODE, &aggregate_address_cmd);
12455 install_element(BGP_NODE, &aggregate_address_mask_cmd);
12456 install_element(BGP_NODE, &no_aggregate_address_cmd);
12457 install_element(BGP_NODE, &no_aggregate_address_mask_cmd);
12458
12459 /* IPv4 unicast configuration. */
12460 install_element(BGP_IPV4_NODE, &bgp_table_map_cmd);
12461 install_element(BGP_IPV4_NODE, &bgp_network_cmd);
12462 install_element(BGP_IPV4_NODE, &no_bgp_table_map_cmd);
12463
12464 install_element(BGP_IPV4_NODE, &aggregate_address_cmd);
12465 install_element(BGP_IPV4_NODE, &aggregate_address_mask_cmd);
12466 install_element(BGP_IPV4_NODE, &no_aggregate_address_cmd);
12467 install_element(BGP_IPV4_NODE, &no_aggregate_address_mask_cmd);
12468
12469 /* IPv4 multicast configuration. */
12470 install_element(BGP_IPV4M_NODE, &bgp_table_map_cmd);
12471 install_element(BGP_IPV4M_NODE, &bgp_network_cmd);
12472 install_element(BGP_IPV4M_NODE, &no_bgp_table_map_cmd);
12473 install_element(BGP_IPV4M_NODE, &aggregate_address_cmd);
12474 install_element(BGP_IPV4M_NODE, &aggregate_address_mask_cmd);
12475 install_element(BGP_IPV4M_NODE, &no_aggregate_address_cmd);
12476 install_element(BGP_IPV4M_NODE, &no_aggregate_address_mask_cmd);
12477
12478 /* IPv4 labeled-unicast configuration. */
12479 install_element(VIEW_NODE, &show_ip_bgp_instance_all_cmd);
12480 install_element(VIEW_NODE, &show_ip_bgp_cmd);
12481 install_element(VIEW_NODE, &show_ip_bgp_json_cmd);
12482 install_element(VIEW_NODE, &show_ip_bgp_route_cmd);
12483 install_element(VIEW_NODE, &show_ip_bgp_regexp_cmd);
12484
12485 install_element(VIEW_NODE,
12486 &show_ip_bgp_instance_neighbor_advertised_route_cmd);
12487 install_element(VIEW_NODE, &show_ip_bgp_neighbor_routes_cmd);
12488 install_element(VIEW_NODE,
12489 &show_ip_bgp_neighbor_received_prefix_filter_cmd);
12490 #ifdef KEEP_OLD_VPN_COMMANDS
12491 install_element(VIEW_NODE, &show_ip_bgp_vpn_all_route_prefix_cmd);
12492 #endif /* KEEP_OLD_VPN_COMMANDS */
12493 install_element(VIEW_NODE, &show_bgp_afi_vpn_rd_route_cmd);
12494 install_element(VIEW_NODE,
12495 &show_ip_bgp_l2vpn_evpn_all_route_prefix_cmd);
12496
12497 /* BGP dampening clear commands */
12498 install_element(ENABLE_NODE, &clear_ip_bgp_dampening_cmd);
12499 install_element(ENABLE_NODE, &clear_ip_bgp_dampening_prefix_cmd);
12500
12501 install_element(ENABLE_NODE, &clear_ip_bgp_dampening_address_cmd);
12502 install_element(ENABLE_NODE, &clear_ip_bgp_dampening_address_mask_cmd);
12503
12504 /* prefix count */
12505 install_element(ENABLE_NODE,
12506 &show_ip_bgp_instance_neighbor_prefix_counts_cmd);
12507 #ifdef KEEP_OLD_VPN_COMMANDS
12508 install_element(ENABLE_NODE,
12509 &show_ip_bgp_vpn_neighbor_prefix_counts_cmd);
12510 #endif /* KEEP_OLD_VPN_COMMANDS */
12511
12512 /* New config IPv6 BGP commands. */
12513 install_element(BGP_IPV6_NODE, &bgp_table_map_cmd);
12514 install_element(BGP_IPV6_NODE, &ipv6_bgp_network_cmd);
12515 install_element(BGP_IPV6_NODE, &no_bgp_table_map_cmd);
12516
12517 install_element(BGP_IPV6_NODE, &ipv6_aggregate_address_cmd);
12518 install_element(BGP_IPV6_NODE, &no_ipv6_aggregate_address_cmd);
12519
12520 install_element(BGP_IPV6M_NODE, &ipv6_bgp_network_cmd);
12521
12522 install_element(BGP_NODE, &bgp_distance_cmd);
12523 install_element(BGP_NODE, &no_bgp_distance_cmd);
12524 install_element(BGP_NODE, &bgp_distance_source_cmd);
12525 install_element(BGP_NODE, &no_bgp_distance_source_cmd);
12526 install_element(BGP_NODE, &bgp_distance_source_access_list_cmd);
12527 install_element(BGP_NODE, &no_bgp_distance_source_access_list_cmd);
12528 install_element(BGP_IPV4_NODE, &bgp_distance_cmd);
12529 install_element(BGP_IPV4_NODE, &no_bgp_distance_cmd);
12530 install_element(BGP_IPV4_NODE, &bgp_distance_source_cmd);
12531 install_element(BGP_IPV4_NODE, &no_bgp_distance_source_cmd);
12532 install_element(BGP_IPV4_NODE, &bgp_distance_source_access_list_cmd);
12533 install_element(BGP_IPV4_NODE, &no_bgp_distance_source_access_list_cmd);
12534 install_element(BGP_IPV4M_NODE, &bgp_distance_cmd);
12535 install_element(BGP_IPV4M_NODE, &no_bgp_distance_cmd);
12536 install_element(BGP_IPV4M_NODE, &bgp_distance_source_cmd);
12537 install_element(BGP_IPV4M_NODE, &no_bgp_distance_source_cmd);
12538 install_element(BGP_IPV4M_NODE, &bgp_distance_source_access_list_cmd);
12539 install_element(BGP_IPV4M_NODE,
12540 &no_bgp_distance_source_access_list_cmd);
12541 install_element(BGP_IPV6_NODE, &bgp_distance_cmd);
12542 install_element(BGP_IPV6_NODE, &no_bgp_distance_cmd);
12543 install_element(BGP_IPV6_NODE, &ipv6_bgp_distance_source_cmd);
12544 install_element(BGP_IPV6_NODE, &no_ipv6_bgp_distance_source_cmd);
12545 install_element(BGP_IPV6_NODE,
12546 &ipv6_bgp_distance_source_access_list_cmd);
12547 install_element(BGP_IPV6_NODE,
12548 &no_ipv6_bgp_distance_source_access_list_cmd);
12549 install_element(BGP_IPV6M_NODE, &bgp_distance_cmd);
12550 install_element(BGP_IPV6M_NODE, &no_bgp_distance_cmd);
12551 install_element(BGP_IPV6M_NODE, &ipv6_bgp_distance_source_cmd);
12552 install_element(BGP_IPV6M_NODE, &no_ipv6_bgp_distance_source_cmd);
12553 install_element(BGP_IPV6M_NODE,
12554 &ipv6_bgp_distance_source_access_list_cmd);
12555 install_element(BGP_IPV6M_NODE,
12556 &no_ipv6_bgp_distance_source_access_list_cmd);
12557
12558 install_element(BGP_NODE, &bgp_damp_set_cmd);
12559 install_element(BGP_NODE, &bgp_damp_unset_cmd);
12560 install_element(BGP_IPV4_NODE, &bgp_damp_set_cmd);
12561 install_element(BGP_IPV4_NODE, &bgp_damp_unset_cmd);
12562
12563 /* IPv4 Multicast Mode */
12564 install_element(BGP_IPV4M_NODE, &bgp_damp_set_cmd);
12565 install_element(BGP_IPV4M_NODE, &bgp_damp_unset_cmd);
12566
12567 /* Large Communities */
12568 install_element(VIEW_NODE, &show_ip_bgp_large_community_list_cmd);
12569 install_element(VIEW_NODE, &show_ip_bgp_large_community_cmd);
12570
12571 /* show bgp ipv4 flowspec detailed */
12572 install_element(VIEW_NODE, &show_ip_bgp_flowspec_routes_detailed_cmd);
12573
12574 install_element(VIEW_NODE, &show_bgp_peerhash_cmd);
12575 }
12576
12577 void bgp_route_finish(void)
12578 {
12579 afi_t afi;
12580 safi_t safi;
12581
12582 FOREACH_AFI_SAFI (afi, safi) {
12583 bgp_table_unlock(bgp_distance_table[afi][safi]);
12584 bgp_distance_table[afi][safi] = NULL;
12585 }
12586 }