]> git.proxmox.com Git - mirror_frr.git/blame - bgpd/bgp_nexthop.c
bgpd: only unimport routes if tunnel-ip changes
[mirror_frr.git] / bgpd / bgp_nexthop.c
CommitLineData
718e3744 1/* BGP nexthop scan
896014f4
DL
2 * Copyright (C) 2000 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
718e3744 20
21#include <zebra.h>
22
23#include "command.h"
24#include "thread.h"
25#include "prefix.h"
bf85e4c5 26#include "lib/json.h"
718e3744 27#include "zclient.h"
28#include "stream.h"
29#include "network.h"
30#include "log.h"
31#include "memory.h"
10f9bf3f
JBD
32#include "hash.h"
33#include "jhash.h"
fb018d25 34#include "nexthop.h"
3f9c7369 35#include "queue.h"
039f3a34 36#include "filter.h"
987a720a 37#include "printfrr.h"
718e3744 38
39#include "bgpd/bgpd.h"
718e3744 40#include "bgpd/bgp_route.h"
41#include "bgpd/bgp_attr.h"
42#include "bgpd/bgp_nexthop.h"
fb018d25 43#include "bgpd/bgp_nht.h"
718e3744 44#include "bgpd/bgp_debug.h"
45#include "bgpd/bgp_damp.h"
8ffedcea 46#include "bgpd/bgp_fsm.h"
8386ac43 47#include "bgpd/bgp_vty.h"
5d76a53d 48#include "bgpd/bgp_rd.h"
718e3744 49
2a99175f 50DEFINE_MTYPE_STATIC(BGPD, MARTIAN_STRING, "BGP Martian Addr Intf String");
330cec3d 51
f663c581
RW
52int bgp_nexthop_cache_compare(const struct bgp_nexthop_cache *a,
53 const struct bgp_nexthop_cache *b)
fb018d25 54{
545aeef1
RW
55 if (a->srte_color < b->srte_color)
56 return -1;
57 if (a->srte_color > b->srte_color)
58 return 1;
59
35aae5c9
DS
60 if (a->ifindex < b->ifindex)
61 return -1;
62 if (a->ifindex > b->ifindex)
63 return 1;
64
f663c581
RW
65 return prefix_cmp(&a->prefix, &b->prefix);
66}
67
d62a17ae 68void bnc_nexthop_free(struct bgp_nexthop_cache *bnc)
718e3744 69{
d62a17ae 70 nexthops_free(bnc->nexthop);
718e3744 71}
72
f663c581 73struct bgp_nexthop_cache *bnc_new(struct bgp_nexthop_cache_head *tree,
35aae5c9
DS
74 struct prefix *prefix, uint32_t srte_color,
75 ifindex_t ifindex)
718e3744 76{
d62a17ae 77 struct bgp_nexthop_cache *bnc;
fb018d25 78
d62a17ae 79 bnc = XCALLOC(MTYPE_BGP_NEXTHOP_CACHE,
80 sizeof(struct bgp_nexthop_cache));
f663c581 81 bnc->prefix = *prefix;
35aae5c9 82 bnc->ifindex = ifindex;
545aeef1 83 bnc->srte_color = srte_color;
f663c581 84 bnc->tree = tree;
d62a17ae 85 LIST_INIT(&(bnc->paths));
f663c581
RW
86 bgp_nexthop_cache_add(tree, bnc);
87
d62a17ae 88 return bnc;
718e3744 89}
90
e37e1e27
PR
91bool bnc_existing_for_prefix(struct bgp_nexthop_cache *bnc)
92{
93 struct bgp_nexthop_cache *bnc_tmp;
94
95 frr_each (bgp_nexthop_cache, bnc->tree, bnc_tmp) {
96 if (bnc_tmp == bnc)
97 continue;
98 if (prefix_cmp(&bnc->prefix, &bnc_tmp->prefix) == 0)
99 return true;
100 }
101 return false;
102}
103
d62a17ae 104void bnc_free(struct bgp_nexthop_cache *bnc)
718e3744 105{
d62a17ae 106 bnc_nexthop_free(bnc);
f663c581 107 bgp_nexthop_cache_del(bnc->tree, bnc);
d62a17ae 108 XFREE(MTYPE_BGP_NEXTHOP_CACHE, bnc);
718e3744 109}
6b0655a2 110
f663c581 111struct bgp_nexthop_cache *bnc_find(struct bgp_nexthop_cache_head *tree,
35aae5c9
DS
112 struct prefix *prefix, uint32_t srte_color,
113 ifindex_t ifindex)
f663c581
RW
114{
115 struct bgp_nexthop_cache bnc = {};
116
117 if (!tree)
118 return NULL;
119
120 bnc.prefix = *prefix;
545aeef1 121 bnc.srte_color = srte_color;
35aae5c9 122 bnc.ifindex = ifindex;
f663c581
RW
123 return bgp_nexthop_cache_find(tree, &bnc);
124}
125
718e3744 126/* Reset and free all BGP nexthop cache. */
f663c581 127static void bgp_nexthop_cache_reset(struct bgp_nexthop_cache_head *tree)
718e3744 128{
d62a17ae 129 struct bgp_nexthop_cache *bnc;
130
f663c581
RW
131 while (bgp_nexthop_cache_count(tree) > 0) {
132 bnc = bgp_nexthop_cache_first(tree);
7f040da1 133
3d111939
DS
134 while (!LIST_EMPTY(&(bnc->paths))) {
135 struct bgp_path_info *path = LIST_FIRST(&(bnc->paths));
7f040da1 136
3d111939 137 path_nh_map(path, bnc, false);
d62a17ae 138 }
3d111939
DS
139
140 bnc_free(bnc);
14315f2d 141 }
718e3744 142}
143
db0e1937
MK
144static void *bgp_tip_hash_alloc(void *p)
145{
0291c246
MK
146 const struct in_addr *val = (const struct in_addr *)p;
147 struct tip_addr *addr;
db0e1937
MK
148
149 addr = XMALLOC(MTYPE_TIP_ADDR, sizeof(struct tip_addr));
150 addr->refcnt = 0;
151 addr->addr.s_addr = val->s_addr;
152
153 return addr;
154}
155
156static void bgp_tip_hash_free(void *addr)
157{
158 XFREE(MTYPE_TIP_ADDR, addr);
159}
160
d8b87afe 161static unsigned int bgp_tip_hash_key_make(const void *p)
db0e1937 162{
0291c246 163 const struct tip_addr *addr = p;
db0e1937
MK
164
165 return jhash_1word(addr->addr.s_addr, 0);
166}
167
74df8d6d 168static bool bgp_tip_hash_cmp(const void *p1, const void *p2)
db0e1937 169{
0291c246
MK
170 const struct tip_addr *addr1 = p1;
171 const struct tip_addr *addr2 = p2;
db0e1937
MK
172
173 return addr1->addr.s_addr == addr2->addr.s_addr;
174}
175
176void bgp_tip_hash_init(struct bgp *bgp)
177{
996c9314 178 bgp->tip_hash = hash_create(bgp_tip_hash_key_make, bgp_tip_hash_cmp,
3f65c5b1 179 "BGP TIP hash");
db0e1937
MK
180}
181
182void bgp_tip_hash_destroy(struct bgp *bgp)
183{
184 if (bgp->tip_hash == NULL)
185 return;
186 hash_clean(bgp->tip_hash, bgp_tip_hash_free);
187 hash_free(bgp->tip_hash);
188 bgp->tip_hash = NULL;
189}
190
826c3f6d
TA
191/* Add/Update Tunnel-IP entry of bgp martian next-hop table.
192 *
193 * Returns true only if we add a _new_ TIP so the caller knows that an
194 * actionable change has occurred. If we find an existing TIP then we
195 * only need to update the refcnt, since the collection of known TIPs
196 * has not changed.
197 */
198bool bgp_tip_add(struct bgp *bgp, struct in_addr *tip)
db0e1937 199{
0291c246
MK
200 struct tip_addr tmp;
201 struct tip_addr *addr;
826c3f6d 202 bool tip_added = false;
db0e1937
MK
203
204 tmp.addr = *tip;
205
826c3f6d
TA
206 addr = hash_lookup(bgp->tip_hash, &tmp);
207 if (!addr) {
208 addr = hash_get(bgp->tip_hash, &tmp, bgp_tip_hash_alloc);
209 tip_added = true;
210 }
211
db0e1937 212 addr->refcnt++;
826c3f6d
TA
213
214 return tip_added;
db0e1937
MK
215}
216
217void bgp_tip_del(struct bgp *bgp, struct in_addr *tip)
218{
0291c246
MK
219 struct tip_addr tmp;
220 struct tip_addr *addr;
db0e1937
MK
221
222 tmp.addr = *tip;
223
224 addr = hash_lookup(bgp->tip_hash, &tmp);
225 /* may have been deleted earlier by bgp_interface_down() */
226 if (addr == NULL)
227 return;
228
229 addr->refcnt--;
230
231 if (addr->refcnt == 0) {
232 hash_release(bgp->tip_hash, addr);
233 XFREE(MTYPE_TIP_ADDR, addr);
234 }
235}
10f9bf3f 236
af97a18b
DS
237/* BGP own address structure */
238struct bgp_addr {
2ec802d1 239 struct prefix p;
f4c2fb93 240 struct list *ifp_name_list;
af97a18b
DS
241};
242
e3b78da8 243static void show_address_entry(struct hash_bucket *bucket, void *args)
af97a18b
DS
244{
245 struct vty *vty = (struct vty *)args;
e3b78da8 246 struct bgp_addr *addr = (struct bgp_addr *)bucket->data;
f4c2fb93
DS
247 char *name;
248 struct listnode *node;
949b0f24 249 char str[INET6_ADDRSTRLEN] = {0};
250
e61f7c0a 251 vty_out(vty, "addr: %s, count: %d : ",
2ec802d1 252 inet_ntop(addr->p.family, &(addr->p.u.prefix),
e61f7c0a
DS
253 str, INET6_ADDRSTRLEN),
254 addr->ifp_name_list->count);
f4c2fb93
DS
255
256 for (ALL_LIST_ELEMENTS_RO(addr->ifp_name_list, node, name)) {
257 vty_out(vty, " %s,", name);
258 }
259
260 vty_out(vty, "\n");
af97a18b
DS
261}
262
263void bgp_nexthop_show_address_hash(struct vty *vty, struct bgp *bgp)
264{
265 hash_iterate(bgp->address_hash,
e3b78da8 266 (void (*)(struct hash_bucket *, void *))show_address_entry,
af97a18b
DS
267 vty);
268}
269
f4c2fb93
DS
270static void bgp_address_hash_string_del(void *val)
271{
272 char *data = val;
273
330cec3d 274 XFREE(MTYPE_MARTIAN_STRING, data);
f4c2fb93
DS
275}
276
d62a17ae 277static void *bgp_address_hash_alloc(void *p)
10f9bf3f 278{
949b0f24 279 struct bgp_addr *copy_addr = p;
280 struct bgp_addr *addr = NULL;
10f9bf3f 281
d62a17ae 282 addr = XMALLOC(MTYPE_BGP_ADDR, sizeof(struct bgp_addr));
2ec802d1 283 prefix_copy(&addr->p, &copy_addr->p);
10f9bf3f 284
f4c2fb93
DS
285 addr->ifp_name_list = list_new();
286 addr->ifp_name_list->del = bgp_address_hash_string_del;
287
d62a17ae 288 return addr;
10f9bf3f
JBD
289}
290
f4c2fb93 291static void bgp_address_hash_free(void *data)
37d361e7 292{
f4c2fb93
DS
293 struct bgp_addr *addr = data;
294
6a154c88 295 list_delete(&addr->ifp_name_list);
d62a17ae 296 XFREE(MTYPE_BGP_ADDR, addr);
37d361e7
RW
297}
298
d8b87afe 299static unsigned int bgp_address_hash_key_make(const void *p)
10f9bf3f 300{
d62a17ae 301 const struct bgp_addr *addr = p;
10f9bf3f 302
2ec802d1 303 return prefix_hash_key(&addr->p);
10f9bf3f
JBD
304}
305
74df8d6d 306static bool bgp_address_hash_cmp(const void *p1, const void *p2)
10f9bf3f 307{
d62a17ae 308 const struct bgp_addr *addr1 = p1;
309 const struct bgp_addr *addr2 = p2;
10f9bf3f 310
2ec802d1 311 return prefix_same(&addr1->p, &addr2->p);
10f9bf3f
JBD
312}
313
d62a17ae 314void bgp_address_init(struct bgp *bgp)
10f9bf3f 315{
996c9314
LB
316 bgp->address_hash =
317 hash_create(bgp_address_hash_key_make, bgp_address_hash_cmp,
949b0f24 318 "BGP Connected Address Hash");
10f9bf3f
JBD
319}
320
d62a17ae 321void bgp_address_destroy(struct bgp *bgp)
bb86c601 322{
d62a17ae 323 if (bgp->address_hash == NULL)
324 return;
325 hash_clean(bgp->address_hash, bgp_address_hash_free);
326 hash_free(bgp->address_hash);
327 bgp->address_hash = NULL;
bb86c601
LB
328}
329
f4c2fb93
DS
330static void bgp_address_add(struct bgp *bgp, struct connected *ifc,
331 struct prefix *p)
10f9bf3f 332{
d62a17ae 333 struct bgp_addr tmp;
334 struct bgp_addr *addr;
f4c2fb93
DS
335 struct listnode *node;
336 char *name;
10f9bf3f 337
2ec802d1 338 tmp.p = *p;
949b0f24 339
2ec802d1
DS
340 if (tmp.p.family == AF_INET)
341 tmp.p.prefixlen = IPV4_MAX_BITLEN;
342 else if (tmp.p.family == AF_INET6)
343 tmp.p.prefixlen = IPV6_MAX_BITLEN;
10f9bf3f 344
d62a17ae 345 addr = hash_get(bgp->address_hash, &tmp, bgp_address_hash_alloc);
5ce10e92 346
f4c2fb93
DS
347 for (ALL_LIST_ELEMENTS_RO(addr->ifp_name_list, node, name)) {
348 if (strcmp(ifc->ifp->name, name) == 0)
349 break;
350 }
351 if (!node) {
330cec3d 352 name = XSTRDUP(MTYPE_MARTIAN_STRING, ifc->ifp->name);
f4c2fb93
DS
353 listnode_add(addr->ifp_name_list, name);
354 }
10f9bf3f
JBD
355}
356
f4c2fb93
DS
357static void bgp_address_del(struct bgp *bgp, struct connected *ifc,
358 struct prefix *p)
10f9bf3f 359{
d62a17ae 360 struct bgp_addr tmp;
361 struct bgp_addr *addr;
f4c2fb93
DS
362 struct listnode *node;
363 char *name;
10f9bf3f 364
2ec802d1 365 tmp.p = *p;
949b0f24 366
2ec802d1
DS
367 if (tmp.p.family == AF_INET)
368 tmp.p.prefixlen = IPV4_MAX_BITLEN;
369 else if (tmp.p.family == AF_INET6)
370 tmp.p.prefixlen = IPV6_MAX_BITLEN;
10f9bf3f 371
d62a17ae 372 addr = hash_lookup(bgp->address_hash, &tmp);
373 /* may have been deleted earlier by bgp_interface_down() */
374 if (addr == NULL)
375 return;
9e47abd8 376
f4c2fb93
DS
377 for (ALL_LIST_ELEMENTS_RO(addr->ifp_name_list, node, name)) {
378 if (strcmp(ifc->ifp->name, name) == 0)
379 break;
380 }
10f9bf3f 381
b9129915 382 if (node) {
f4c2fb93 383 list_delete_node(addr->ifp_name_list, node);
b9129915
DS
384 XFREE(MTYPE_MARTIAN_STRING, name);
385 }
f4c2fb93
DS
386
387 if (addr->ifp_name_list->count == 0) {
d62a17ae 388 hash_release(bgp->address_hash, addr);
6a154c88 389 list_delete(&addr->ifp_name_list);
d62a17ae 390 XFREE(MTYPE_BGP_ADDR, addr);
391 }
10f9bf3f
JBD
392}
393
6b0655a2 394
d62a17ae 395struct bgp_connected_ref {
396 unsigned int refcnt;
718e3744 397};
398
d62a17ae 399void bgp_connected_add(struct bgp *bgp, struct connected *ifc)
718e3744 400{
d62a17ae 401 struct prefix p;
402 struct prefix *addr;
9bcb3eef 403 struct bgp_dest *dest;
d62a17ae 404 struct bgp_connected_ref *bc;
405 struct listnode *node, *nnode;
406 struct peer *peer;
407
408 addr = ifc->address;
409
410 p = *(CONNECTED_PREFIX(ifc));
411 if (addr->family == AF_INET) {
412 apply_mask_ipv4((struct prefix_ipv4 *)&p);
413
414 if (prefix_ipv4_any((struct prefix_ipv4 *)&p))
415 return;
416
f4c2fb93 417 bgp_address_add(bgp, ifc, addr);
d62a17ae 418
8998807f 419 dest = bgp_node_get(bgp->connected_table[AFI_IP], &p);
9bcb3eef 420 bc = bgp_dest_get_bgp_connected_ref_info(dest);
3d9dbdbe 421 if (bc)
d62a17ae 422 bc->refcnt++;
3d9dbdbe 423 else {
d62a17ae 424 bc = XCALLOC(MTYPE_BGP_CONN,
425 sizeof(struct bgp_connected_ref));
426 bc->refcnt = 1;
9bcb3eef 427 bgp_dest_set_bgp_connected_ref_info(dest, bc);
d62a17ae 428 }
8ffedcea 429
d62a17ae 430 for (ALL_LIST_ELEMENTS(bgp->peer, node, nnode, peer)) {
431 if (peer->conf_if
432 && (strcmp(peer->conf_if, ifc->ifp->name) == 0)
feb17238 433 && !peer_established(peer)
d62a17ae 434 && !CHECK_FLAG(peer->flags,
435 PEER_FLAG_IFPEER_V6ONLY)) {
436 if (peer_active(peer))
437 BGP_EVENT_ADD(peer, BGP_Stop);
438 BGP_EVENT_ADD(peer, BGP_Start);
439 }
440 }
441 } else if (addr->family == AF_INET6) {
442 apply_mask_ipv6((struct prefix_ipv6 *)&p);
443
444 if (IN6_IS_ADDR_UNSPECIFIED(&p.u.prefix6))
445 return;
446
447 if (IN6_IS_ADDR_LINKLOCAL(&p.u.prefix6))
448 return;
449
949b0f24 450 bgp_address_add(bgp, ifc, addr);
451
8998807f 452 dest = bgp_node_get(bgp->connected_table[AFI_IP6], &p);
3d9dbdbe 453
9bcb3eef 454 bc = bgp_dest_get_bgp_connected_ref_info(dest);
3d9dbdbe 455 if (bc)
d62a17ae 456 bc->refcnt++;
3d9dbdbe 457 else {
d62a17ae 458 bc = XCALLOC(MTYPE_BGP_CONN,
459 sizeof(struct bgp_connected_ref));
460 bc->refcnt = 1;
9bcb3eef 461 bgp_dest_set_bgp_connected_ref_info(dest, bc);
d62a17ae 462 }
718e3744 463 }
718e3744 464}
465
d62a17ae 466void bgp_connected_delete(struct bgp *bgp, struct connected *ifc)
718e3744 467{
d62a17ae 468 struct prefix p;
469 struct prefix *addr;
9bcb3eef 470 struct bgp_dest *dest = NULL;
d62a17ae 471 struct bgp_connected_ref *bc;
718e3744 472
d62a17ae 473 addr = ifc->address;
718e3744 474
d62a17ae 475 p = *(CONNECTED_PREFIX(ifc));
f6bdc080 476 apply_mask(&p);
d62a17ae 477 if (addr->family == AF_INET) {
d62a17ae 478 if (prefix_ipv4_any((struct prefix_ipv4 *)&p))
479 return;
718e3744 480
f4c2fb93 481 bgp_address_del(bgp, ifc, addr);
10f9bf3f 482
9bcb3eef 483 dest = bgp_node_lookup(bgp->connected_table[AFI_IP], &p);
d62a17ae 484 } else if (addr->family == AF_INET6) {
d62a17ae 485 if (IN6_IS_ADDR_UNSPECIFIED(&p.u.prefix6))
486 return;
487
488 if (IN6_IS_ADDR_LINKLOCAL(&p.u.prefix6))
489 return;
490
949b0f24 491 bgp_address_del(bgp, ifc, addr);
492
9bcb3eef 493 dest = bgp_node_lookup(bgp->connected_table[AFI_IP6], &p);
f6bdc080 494 }
d62a17ae 495
9bcb3eef 496 if (!dest)
f6bdc080
DS
497 return;
498
9bcb3eef 499 bc = bgp_dest_get_bgp_connected_ref_info(dest);
f6bdc080
DS
500 bc->refcnt--;
501 if (bc->refcnt == 0) {
502 XFREE(MTYPE_BGP_CONN, bc);
9bcb3eef 503 bgp_dest_set_bgp_connected_ref_info(dest, NULL);
718e3744 504 }
9bcb3eef
DS
505 bgp_dest_unlock_node(dest);
506 bgp_dest_unlock_node(dest);
718e3744 507}
508
3292693b
DS
509static void bgp_connected_cleanup(struct route_table *table,
510 struct route_node *rn)
511{
512 struct bgp_connected_ref *bc;
9bcb3eef 513 struct bgp_dest *bn = bgp_dest_from_rnode(rn);
3292693b 514
9bcb3eef 515 bc = bgp_dest_get_bgp_connected_ref_info(bn);
3292693b
DS
516 if (!bc)
517 return;
518
1c225152
DS
519 XFREE(MTYPE_BGP_CONN, bc);
520 bgp_dest_set_bgp_connected_ref_info(bn, NULL);
3292693b
DS
521}
522
3dc339cd 523bool bgp_nexthop_self(struct bgp *bgp, afi_t afi, uint8_t type,
9bcb3eef
DS
524 uint8_t sub_type, struct attr *attr,
525 struct bgp_dest *dest)
718e3744 526{
af34d2da 527 uint8_t new_afi = afi == AFI_IP ? AF_INET : AF_INET6;
8c5c49ac 528 struct bgp_addr tmp_addr = {{0}}, *addr = NULL;
949b0f24 529 struct tip_addr tmp_tip, *tip = NULL;
9bcb3eef 530 const struct prefix *p = bgp_dest_get_prefix(dest);
c4fb2504
DS
531 bool is_bgp_static_route =
532 ((type == ZEBRA_ROUTE_BGP) && (sub_type == BGP_ROUTE_STATIC))
949b0f24 533 ? true
534 : false;
535
536 if (!is_bgp_static_route)
af34d2da 537 new_afi = BGP_ATTR_NEXTHOP_AFI_IP6(attr) ? AF_INET6 : AF_INET;
949b0f24 538
e26c3055 539 tmp_addr.p.family = new_afi;
949b0f24 540 switch (new_afi) {
af34d2da 541 case AF_INET:
949b0f24 542 if (is_bgp_static_route) {
b54892e0
DS
543 tmp_addr.p.u.prefix4 = p->u.prefix4;
544 tmp_addr.p.prefixlen = p->prefixlen;
949b0f24 545 } else {
546 /* Here we need to find out which nexthop to be used*/
c4fb2504 547 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_NEXT_HOP)) {
e26c3055
DS
548 tmp_addr.p.u.prefix4 = attr->nexthop;
549 tmp_addr.p.prefixlen = IPV4_MAX_BITLEN;
c4fb2504
DS
550 } else if ((attr->mp_nexthop_len)
551 && ((attr->mp_nexthop_len
552 == BGP_ATTR_NHLEN_IPV4)
553 || (attr->mp_nexthop_len
554 == BGP_ATTR_NHLEN_VPNV4))) {
e26c3055 555 tmp_addr.p.u.prefix4 =
949b0f24 556 attr->mp_nexthop_global_in;
e26c3055 557 tmp_addr.p.prefixlen = IPV4_MAX_BITLEN;
949b0f24 558 } else
3dc339cd 559 return false;
949b0f24 560 }
561 break;
af34d2da 562 case AF_INET6:
949b0f24 563 if (is_bgp_static_route) {
b54892e0
DS
564 tmp_addr.p.u.prefix6 = p->u.prefix6;
565 tmp_addr.p.prefixlen = p->prefixlen;
949b0f24 566 } else {
e26c3055
DS
567 tmp_addr.p.u.prefix6 = attr->mp_nexthop_global;
568 tmp_addr.p.prefixlen = IPV6_MAX_BITLEN;
949b0f24 569 }
570 break;
571 default:
572 break;
573 }
10f9bf3f 574
949b0f24 575 addr = hash_lookup(bgp->address_hash, &tmp_addr);
d62a17ae 576 if (addr)
3dc339cd 577 return true;
718e3744 578
3584c85e 579 if (new_afi == AF_INET && hashcount(bgp->tip_hash)) {
6006b807 580 memset(&tmp_tip, 0, sizeof(tmp_tip));
949b0f24 581 tmp_tip.addr = attr->nexthop;
582
583 if (attr->flag & ATTR_FLAG_BIT(BGP_ATTR_NEXT_HOP)) {
584 tmp_tip.addr = attr->nexthop;
585 } else if ((attr->mp_nexthop_len) &&
2ec802d1
DS
586 ((attr->mp_nexthop_len == BGP_ATTR_NHLEN_IPV4)
587 || (attr->mp_nexthop_len == BGP_ATTR_NHLEN_VPNV4))) {
949b0f24 588 tmp_tip.addr = attr->mp_nexthop_global_in;
589 }
590
591 tip = hash_lookup(bgp->tip_hash, &tmp_tip);
592 if (tip)
3dc339cd 593 return true;
949b0f24 594 }
db0e1937 595
3dc339cd 596 return false;
718e3744 597}
6b0655a2 598
3dc339cd 599bool bgp_multiaccess_check_v4(struct in_addr nexthop, struct peer *peer)
718e3744 600{
9bcb3eef
DS
601 struct bgp_dest *dest1;
602 struct bgp_dest *dest2;
d62a17ae 603 struct prefix p;
604 int ret;
605
606 p.family = AF_INET;
607 p.prefixlen = IPV4_MAX_BITLEN;
608 p.u.prefix4 = nexthop;
609
9bcb3eef
DS
610 dest1 = bgp_node_match(peer->bgp->connected_table[AFI_IP], &p);
611 if (!dest1)
3dc339cd 612 return false;
d62a17ae 613
614 p.family = AF_INET;
615 p.prefixlen = IPV4_MAX_BITLEN;
616 p.u.prefix4 = peer->su.sin.sin_addr;
617
9bcb3eef
DS
618 dest2 = bgp_node_match(peer->bgp->connected_table[AFI_IP], &p);
619 if (!dest2) {
620 bgp_dest_unlock_node(dest1);
3dc339cd 621 return false;
d62a17ae 622 }
718e3744 623
9bcb3eef 624 ret = (dest1 == dest2);
718e3744 625
9bcb3eef
DS
626 bgp_dest_unlock_node(dest1);
627 bgp_dest_unlock_node(dest2);
718e3744 628
3dc339cd 629 return ret;
718e3744 630}
631
3dc339cd 632bool bgp_multiaccess_check_v6(struct in6_addr nexthop, struct peer *peer)
737af885 633{
9bcb3eef
DS
634 struct bgp_dest *dest1;
635 struct bgp_dest *dest2;
737af885
BS
636 struct prefix p;
637 int ret;
638
639 p.family = AF_INET6;
640 p.prefixlen = IPV6_MAX_BITLEN;
641 p.u.prefix6 = nexthop;
642
9bcb3eef
DS
643 dest1 = bgp_node_match(peer->bgp->connected_table[AFI_IP6], &p);
644 if (!dest1)
3dc339cd 645 return false;
737af885
BS
646
647 p.family = AF_INET6;
648 p.prefixlen = IPV6_MAX_BITLEN;
649 p.u.prefix6 = peer->su.sin6.sin6_addr;
650
9bcb3eef
DS
651 dest2 = bgp_node_match(peer->bgp->connected_table[AFI_IP6], &p);
652 if (!dest2) {
653 bgp_dest_unlock_node(dest1);
3dc339cd 654 return false;
737af885
BS
655 }
656
9bcb3eef 657 ret = (dest1 == dest2);
737af885 658
9bcb3eef
DS
659 bgp_dest_unlock_node(dest1);
660 bgp_dest_unlock_node(dest2);
737af885
BS
661
662 return ret;
663}
664
3dc339cd
DA
665bool bgp_subgrp_multiaccess_check_v6(struct in6_addr nexthop,
666 struct update_subgroup *subgrp,
667 struct peer *exclude)
737af885 668{
9bcb3eef 669 struct bgp_dest *dest1 = NULL, *dest2 = NULL;
737af885
BS
670 struct peer_af *paf = NULL;
671 struct prefix p = {0}, np = {0};
672 struct bgp *bgp = NULL;
673
674 np.family = AF_INET6;
675 np.prefixlen = IPV6_MAX_BITLEN;
676 np.u.prefix6 = nexthop;
677
678 p.family = AF_INET;
679 p.prefixlen = IPV6_MAX_BITLEN;
680
681 bgp = SUBGRP_INST(subgrp);
9bcb3eef
DS
682 dest1 = bgp_node_match(bgp->connected_table[AFI_IP6], &np);
683 if (!dest1)
3dc339cd 684 return false;
737af885
BS
685
686 SUBGRP_FOREACH_PEER (subgrp, paf) {
a3b72539 687 /* Skip peer we're told to exclude - e.g., source of route. */
688 if (paf->peer == exclude)
689 continue;
737af885
BS
690
691 p.u.prefix6 = paf->peer->su.sin6.sin6_addr;
9bcb3eef
DS
692 dest2 = bgp_node_match(bgp->connected_table[AFI_IP6], &p);
693 if (dest1 == dest2) {
694 bgp_dest_unlock_node(dest1);
695 bgp_dest_unlock_node(dest2);
3dc339cd 696 return true;
737af885
BS
697 }
698
9bcb3eef
DS
699 if (dest2)
700 bgp_dest_unlock_node(dest2);
737af885
BS
701 }
702
9bcb3eef 703 bgp_dest_unlock_node(dest1);
3dc339cd 704 return false;
737af885
BS
705}
706
3dc339cd
DA
707bool bgp_subgrp_multiaccess_check_v4(struct in_addr nexthop,
708 struct update_subgroup *subgrp,
709 struct peer *exclude)
65d4e0c6 710{
9bcb3eef 711 struct bgp_dest *dest1, *dest2;
65d4e0c6
DS
712 struct peer_af *paf;
713 struct prefix p, np;
a2b6e694 714 struct bgp *bgp;
65d4e0c6
DS
715
716 np.family = AF_INET;
717 np.prefixlen = IPV4_MAX_BITLEN;
718 np.u.prefix4 = nexthop;
719
720 p.family = AF_INET;
721 p.prefixlen = IPV4_MAX_BITLEN;
722
65d4e0c6 723 bgp = SUBGRP_INST(subgrp);
9bcb3eef
DS
724 dest1 = bgp_node_match(bgp->connected_table[AFI_IP], &np);
725 if (!dest1)
3dc339cd 726 return false;
65d4e0c6 727
996c9314 728 SUBGRP_FOREACH_PEER (subgrp, paf) {
a3b72539 729 /* Skip peer we're told to exclude - e.g., source of route. */
730 if (paf->peer == exclude)
731 continue;
732
65d4e0c6
DS
733 p.u.prefix4 = paf->peer->su.sin.sin_addr;
734
9bcb3eef
DS
735 dest2 = bgp_node_match(bgp->connected_table[AFI_IP], &p);
736 if (dest1 == dest2) {
737 bgp_dest_unlock_node(dest1);
738 bgp_dest_unlock_node(dest2);
3dc339cd 739 return true;
65d4e0c6
DS
740 }
741
9bcb3eef
DS
742 if (dest2)
743 bgp_dest_unlock_node(dest2);
65d4e0c6
DS
744 }
745
9bcb3eef 746 bgp_dest_unlock_node(dest1);
3dc339cd 747 return false;
65d4e0c6
DS
748}
749
bf85e4c5
PJD
750static void bgp_show_bgp_path_info_flags(uint32_t flags, json_object *json)
751{
752 json_object *json_flags = NULL;
071ec807 753
bf85e4c5
PJD
754 if (!json)
755 return;
756
8da79d08
PJD
757 json_flags = json_object_new_object();
758 json_object_boolean_add(json_flags, "igpChanged",
759 CHECK_FLAG(flags, BGP_PATH_IGP_CHANGED));
760 json_object_boolean_add(json_flags, "damped",
761 CHECK_FLAG(flags, BGP_PATH_DAMPED));
762 json_object_boolean_add(json_flags, "history",
763 CHECK_FLAG(flags, BGP_PATH_HISTORY));
764 json_object_boolean_add(json_flags, "bestpath",
765 CHECK_FLAG(flags, BGP_PATH_SELECTED));
766 json_object_boolean_add(json_flags, "valid",
767 CHECK_FLAG(flags, BGP_PATH_VALID));
768 json_object_boolean_add(json_flags, "attrChanged",
769 CHECK_FLAG(flags, BGP_PATH_ATTR_CHANGED));
770 json_object_boolean_add(json_flags, "deterministicMedCheck",
771 CHECK_FLAG(flags, BGP_PATH_DMED_CHECK));
772 json_object_boolean_add(json_flags, "deterministicMedSelected",
773 CHECK_FLAG(flags, BGP_PATH_DMED_SELECTED));
774 json_object_boolean_add(json_flags, "stale",
775 CHECK_FLAG(flags, BGP_PATH_STALE));
776 json_object_boolean_add(json_flags, "removed",
777 CHECK_FLAG(flags, BGP_PATH_REMOVED));
778 json_object_boolean_add(json_flags, "counted",
779 CHECK_FLAG(flags, BGP_PATH_COUNTED));
780 json_object_boolean_add(json_flags, "multipath",
781 CHECK_FLAG(flags, BGP_PATH_MULTIPATH));
782 json_object_boolean_add(json_flags, "multipathChanged",
783 CHECK_FLAG(flags, BGP_PATH_MULTIPATH_CHG));
784 json_object_boolean_add(json_flags, "ribAttributeChanged",
785 CHECK_FLAG(flags, BGP_PATH_RIB_ATTR_CHG));
786 json_object_boolean_add(json_flags, "nexthopSelf",
787 CHECK_FLAG(flags, BGP_PATH_ANNC_NH_SELF));
788 json_object_boolean_add(json_flags, "linkBandwidthChanged",
789 CHECK_FLAG(flags, BGP_PATH_LINK_BW_CHG));
790 json_object_boolean_add(json_flags, "acceptOwn",
791 CHECK_FLAG(flags, BGP_PATH_ACCEPT_OWN));
bf85e4c5
PJD
792 json_object_object_add(json, "flags", json_flags);
793}
794
5d76a53d 795static void bgp_show_nexthop_paths(struct vty *vty, struct bgp *bgp,
bf85e4c5
PJD
796 struct bgp_nexthop_cache *bnc,
797 json_object *json)
5d76a53d 798{
9bcb3eef 799 struct bgp_dest *dest;
5d76a53d 800 struct bgp_path_info *path;
bf85e4c5 801 afi_t afi;
5d76a53d 802 safi_t safi;
803 struct bgp_table *table;
804 struct bgp *bgp_path;
bf85e4c5
PJD
805 json_object *paths = NULL;
806 json_object *json_path = NULL;
5d76a53d 807
bf85e4c5
PJD
808 if (json)
809 paths = json_object_new_array();
810 else
811 vty_out(vty, " Paths:\n");
5d76a53d 812 LIST_FOREACH (path, &(bnc->paths), nh_thread) {
9bcb3eef
DS
813 dest = path->net;
814 assert(dest && bgp_dest_table(dest));
815 afi = family2afi(bgp_dest_get_prefix(dest)->family);
816 table = bgp_dest_table(dest);
5d76a53d 817 safi = table->safi;
818 bgp_path = table->bgp;
819
bf85e4c5
PJD
820 if (json) {
821 json_path = json_object_new_object();
822 json_object_string_add(json_path, "afi", afi2str(afi));
823 json_object_string_add(json_path, "safi",
824 safi2str(safi));
825 json_object_string_addf(json_path, "prefix", "%pBD",
826 dest);
827 if (dest->pdest)
828 json_object_string_addf(
829 json_path, "rd", "%pRD",
830 (struct prefix_rd *)bgp_dest_get_prefix(
831 dest->pdest));
832 json_object_string_add(
833 json_path, "vrf",
834 vrf_id_to_name(bgp_path->vrf_id));
835 bgp_show_bgp_path_info_flags(path->flags, json_path);
836 json_object_array_add(paths, json_path);
837 continue;
838 }
c4f64ea9
DA
839 if (dest->pdest)
840 vty_out(vty, " %d/%d %pBD RD %pRD %s flags 0x%x\n",
841 afi, safi, dest,
842 (struct prefix_rd *)bgp_dest_get_prefix(
843 dest->pdest),
844 bgp_path->name_pretty, path->flags);
845 else
56ca3b5b 846 vty_out(vty, " %d/%d %pBD %s flags 0x%x\n",
9bcb3eef 847 afi, safi, dest, bgp_path->name_pretty, path->flags);
5d76a53d 848 }
bf85e4c5
PJD
849 if (json)
850 json_object_object_add(json, "paths", paths);
5d76a53d 851}
852
996c9314 853static void bgp_show_nexthops_detail(struct vty *vty, struct bgp *bgp,
bf85e4c5
PJD
854 struct bgp_nexthop_cache *bnc,
855 json_object *json)
e22ac3ee 856{
e22ac3ee 857 struct nexthop *nexthop;
bf85e4c5
PJD
858 json_object *json_gates = NULL;
859 json_object *json_gate = NULL;
e22ac3ee 860
bf85e4c5
PJD
861 if (json)
862 json_gates = json_object_new_array();
5d76a53d 863 for (nexthop = bnc->nexthop; nexthop; nexthop = nexthop->next) {
bf85e4c5
PJD
864 if (json) {
865 json_gate = json_object_new_object();
866 switch (nexthop->type) {
867 case NEXTHOP_TYPE_IPV6:
868 json_object_string_addf(json_gate, "ip", "%pI6",
869 &nexthop->gate.ipv6);
870 break;
871 case NEXTHOP_TYPE_IPV6_IFINDEX:
872 json_object_string_addf(json_gate, "ip", "%pI6",
873 &nexthop->gate.ipv6);
874 json_object_string_add(
8da79d08 875 json_gate, "interfaceName",
bf85e4c5
PJD
876 ifindex2ifname(
877 bnc->ifindex ? bnc->ifindex
878 : nexthop->ifindex,
879 bgp->vrf_id));
880 break;
881 case NEXTHOP_TYPE_IPV4:
882 json_object_string_addf(json_gate, "ip", "%pI4",
883 &nexthop->gate.ipv4);
884 break;
885 case NEXTHOP_TYPE_IFINDEX:
886 json_object_string_add(
8da79d08 887 json_gate, "interfaceName",
bf85e4c5
PJD
888 ifindex2ifname(
889 bnc->ifindex ? bnc->ifindex
890 : nexthop->ifindex,
891 bgp->vrf_id));
892 break;
893 case NEXTHOP_TYPE_IPV4_IFINDEX:
894 json_object_string_addf(json_gate, "ip", "%pI4",
895 &nexthop->gate.ipv4);
896 json_object_string_add(
8da79d08 897 json_gate, "interfaceName",
bf85e4c5
PJD
898 ifindex2ifname(
899 bnc->ifindex ? bnc->ifindex
900 : nexthop->ifindex,
901 bgp->vrf_id));
902 break;
903 case NEXTHOP_TYPE_BLACKHOLE:
904 json_object_boolean_true_add(json_gate,
8da79d08
PJD
905 "unreachable");
906 switch (nexthop->bh_type) {
907 case BLACKHOLE_REJECT:
908 json_object_boolean_true_add(json_gate,
909 "reject");
910 break;
911 case BLACKHOLE_ADMINPROHIB:
912 json_object_boolean_true_add(
913 json_gate, "adminProhibited");
914 break;
915 case BLACKHOLE_NULL:
916 json_object_boolean_true_add(
917 json_gate, "blackhole");
918 break;
919 case BLACKHOLE_UNSPEC:
920 break;
921 }
bf85e4c5
PJD
922 break;
923 default:
8da79d08 924 break;
bf85e4c5
PJD
925 }
926 json_object_array_add(json_gates, json_gate);
927 continue;
928 }
e22ac3ee
DS
929 switch (nexthop->type) {
930 case NEXTHOP_TYPE_IPV6:
07380148 931 vty_out(vty, " gate %pI6\n", &nexthop->gate.ipv6);
e22ac3ee
DS
932 break;
933 case NEXTHOP_TYPE_IPV6_IFINDEX:
07380148
DA
934 vty_out(vty, " gate %pI6, if %s\n",
935 &nexthop->gate.ipv6,
8761cd6d
DS
936 ifindex2ifname(bnc->ifindex ? bnc->ifindex
937 : nexthop->ifindex,
938 bgp->vrf_id));
e22ac3ee
DS
939 break;
940 case NEXTHOP_TYPE_IPV4:
07380148 941 vty_out(vty, " gate %pI4\n", &nexthop->gate.ipv4);
e22ac3ee
DS
942 break;
943 case NEXTHOP_TYPE_IFINDEX:
944 vty_out(vty, " if %s\n",
8761cd6d
DS
945 ifindex2ifname(bnc->ifindex ? bnc->ifindex
946 : nexthop->ifindex,
947 bgp->vrf_id));
e22ac3ee
DS
948 break;
949 case NEXTHOP_TYPE_IPV4_IFINDEX:
07380148
DA
950 vty_out(vty, " gate %pI4, if %s\n",
951 &nexthop->gate.ipv4,
8761cd6d
DS
952 ifindex2ifname(bnc->ifindex ? bnc->ifindex
953 : nexthop->ifindex,
954 bgp->vrf_id));
e22ac3ee
DS
955 break;
956 case NEXTHOP_TYPE_BLACKHOLE:
957 vty_out(vty, " blackhole\n");
958 break;
959 default:
996c9314 960 vty_out(vty, " invalid nexthop type %u\n",
e22ac3ee
DS
961 nexthop->type);
962 }
5d76a53d 963 }
bf85e4c5 964 if (json)
8da79d08 965 json_object_object_add(json, "nexthops", json_gates);
e22ac3ee
DS
966}
967
5d76a53d 968static void bgp_show_nexthop(struct vty *vty, struct bgp *bgp,
bf85e4c5
PJD
969 struct bgp_nexthop_cache *bnc, bool specific,
970 json_object *json)
fb018d25 971{
d62a17ae 972 char buf[PREFIX2STR_BUFFER];
d62a17ae 973 time_t tbuf;
5d76a53d 974 struct peer *peer;
bf85e4c5
PJD
975 json_object *json_last_update = NULL;
976 json_object *json_nexthop = NULL;
5d76a53d 977
978 peer = (struct peer *)bnc->nht_info;
979
bf85e4c5
PJD
980 if (json)
981 json_nexthop = json_object_new_object();
982 if (bnc->srte_color) {
983 if (json)
984 json_object_int_add(json_nexthop, "srteColor",
985 bnc->srte_color);
986 else
987 vty_out(vty, " SR-TE color %u -", bnc->srte_color);
988 }
989 inet_ntop(bnc->prefix.family, &bnc->prefix.u.prefix, buf, sizeof(buf));
5d76a53d 990 if (CHECK_FLAG(bnc->flags, BGP_NEXTHOP_VALID)) {
bf85e4c5
PJD
991 if (json) {
992 json_object_boolean_true_add(json_nexthop, "valid");
993 json_object_boolean_true_add(json_nexthop, "complete");
994 json_object_int_add(json_nexthop, "igpMetric",
995 bnc->metric);
996 json_object_int_add(json_nexthop, "pathCount",
997 bnc->path_count);
998 if (peer)
999 json_object_string_add(json_nexthop, "peer",
1000 peer->host);
1001 if (bnc->is_evpn_gwip_nexthop)
1002 json_object_boolean_true_add(json_nexthop,
1003 "isEvpnGatewayIp");
1004 } else {
1005 vty_out(vty, " %s valid [IGP metric %d], #paths %d",
1006 buf, bnc->metric, bnc->path_count);
1007 if (peer)
1008 vty_out(vty, ", peer %s", peer->host);
1009 if (bnc->is_evpn_gwip_nexthop)
1010 vty_out(vty, " EVPN Gateway IP");
1011 vty_out(vty, "\n");
1012 }
1013 bgp_show_nexthops_detail(vty, bgp, bnc, json_nexthop);
021b6596 1014 } else if (CHECK_FLAG(bnc->flags, BGP_NEXTHOP_EVPN_INCOMPLETE)) {
bf85e4c5
PJD
1015 if (json) {
1016 json_object_boolean_true_add(json_nexthop, "valid");
1017 json_object_boolean_false_add(json_nexthop, "complete");
1018 json_object_int_add(json_nexthop, "igpMetric",
1019 bnc->metric);
1020 json_object_int_add(json_nexthop, "pathCount",
1021 bnc->path_count);
1022 if (bnc->is_evpn_gwip_nexthop)
1023 json_object_boolean_true_add(json_nexthop,
1024 "isEvpnGatewayIp");
1025 } else {
1026 vty_out(vty,
1027 " %s overlay index unresolved [IGP metric %d], #paths %d",
1028 buf, bnc->metric, bnc->path_count);
1029 if (bnc->is_evpn_gwip_nexthop)
1030 vty_out(vty, " EVPN Gateway IP");
1031 vty_out(vty, "\n");
1032 }
1033 bgp_show_nexthops_detail(vty, bgp, bnc, json_nexthop);
5d76a53d 1034 } else {
bf85e4c5
PJD
1035 if (json) {
1036 json_object_boolean_false_add(json_nexthop, "valid");
1037 json_object_boolean_false_add(json_nexthop, "complete");
1038 json_object_int_add(json_nexthop, "pathCount",
1039 bnc->path_count);
1040 if (peer)
1041 json_object_string_add(json_nexthop, "peer",
1042 peer->host);
1043 if (bnc->is_evpn_gwip_nexthop)
1044 json_object_boolean_true_add(json_nexthop,
1045 "isEvpnGatewayIp");
1046 if (CHECK_FLAG(bnc->flags, BGP_NEXTHOP_CONNECTED))
1047 json_object_boolean_false_add(json_nexthop,
1048 "isConnected");
1049 if (!CHECK_FLAG(bnc->flags, BGP_NEXTHOP_REGISTERED))
1050 json_object_boolean_false_add(json_nexthop,
1051 "isRegistered");
1052 } else {
1053 vty_out(vty, " %s invalid, #paths %d", buf,
1054 bnc->path_count);
1055 if (peer)
1056 vty_out(vty, ", peer %s", peer->host);
1057 if (bnc->is_evpn_gwip_nexthop)
1058 vty_out(vty, " EVPN Gateway IP");
1059 vty_out(vty, "\n");
1060 if (CHECK_FLAG(bnc->flags, BGP_NEXTHOP_CONNECTED))
1061 vty_out(vty, " Must be Connected\n");
1062 if (!CHECK_FLAG(bnc->flags, BGP_NEXTHOP_REGISTERED))
1063 vty_out(vty, " Is not Registered\n");
1064 }
5d76a53d 1065 }
083ec940 1066 tbuf = time(NULL) - (monotime(NULL) - bnc->last_update);
bf85e4c5 1067 if (json) {
8da79d08
PJD
1068 if (!specific) {
1069 json_last_update = json_object_new_object();
1070 json_object_int_add(json_last_update, "epoch", tbuf);
1071 json_object_string_add(json_last_update, "string",
1072 ctime(&tbuf));
1073 json_object_object_add(json_nexthop, "lastUpdate",
1074 json_last_update);
1075 } else {
1076 json_object_int_add(json_nexthop, "lastUpdate", tbuf);
1077 }
bf85e4c5
PJD
1078 } else {
1079 vty_out(vty, " Last update: %s", ctime(&tbuf));
1080 }
5d76a53d 1081
1082 /* show paths dependent on nexthop, if needed. */
1083 if (specific)
bf85e4c5
PJD
1084 bgp_show_nexthop_paths(vty, bgp, bnc, json_nexthop);
1085 if (json)
1086 json_object_object_add(json, buf, json_nexthop);
5d76a53d 1087}
1088
1089static void bgp_show_nexthops(struct vty *vty, struct bgp *bgp,
8da79d08
PJD
1090 bool import_table, json_object *json, afi_t afi,
1091 bool detail)
5d76a53d 1092{
5d76a53d 1093 struct bgp_nexthop_cache *bnc;
f663c581 1094 struct bgp_nexthop_cache_head(*tree)[AFI_MAX];
8da79d08
PJD
1095 json_object *json_afi = NULL;
1096 bool found = false;
d62a17ae 1097
bf85e4c5
PJD
1098 if (!json) {
1099 if (import_table)
1100 vty_out(vty, "Current BGP import check cache:\n");
1101 else
1102 vty_out(vty, "Current BGP nexthop cache:\n");
1103 }
05e47722 1104 if (import_table)
f663c581 1105 tree = &bgp->import_check_table;
05e47722 1106 else
f663c581 1107 tree = &bgp->nexthop_cache_table;
8da79d08
PJD
1108
1109 if (afi == AFI_IP || afi == AFI_IP6) {
1110 if (json)
1111 json_afi = json_object_new_object();
1112 frr_each (bgp_nexthop_cache, &(*tree)[afi], bnc) {
1113 bgp_show_nexthop(vty, bgp, bnc, detail, json_afi);
1114 found = true;
1115 }
1116 if (found && json)
1117 json_object_object_add(
1118 json, (afi == AFI_IP) ? "ipv4" : "ipv6",
1119 json_afi);
8da79d08
PJD
1120 return;
1121 }
1122
d62a17ae 1123 for (afi = AFI_IP; afi < AFI_MAX; afi++) {
8da79d08
PJD
1124 if (json && (afi == AFI_IP || afi == AFI_IP6))
1125 json_afi = json_object_new_object();
f663c581 1126 frr_each (bgp_nexthop_cache, &(*tree)[afi], bnc)
8da79d08
PJD
1127 bgp_show_nexthop(vty, bgp, bnc, detail, json_afi);
1128 if (json && (afi == AFI_IP || afi == AFI_IP6))
1129 json_object_object_add(
1130 json, (afi == AFI_IP) ? "ipv4" : "ipv6",
1131 json_afi);
fb018d25 1132 }
f186de26 1133}
1134
d62a17ae 1135static int show_ip_bgp_nexthop_table(struct vty *vty, const char *name,
bf85e4c5 1136 const char *nhopip_str, bool import_table,
8da79d08 1137 json_object *json, afi_t afi, bool detail)
f186de26 1138{
d62a17ae 1139 struct bgp *bgp;
1140
071ec807 1141 if (name && !strmatch(name, VRF_DEFAULT_NAME))
d62a17ae 1142 bgp = bgp_lookup_by_name(name);
1143 else
1144 bgp = bgp_get_default();
1145 if (!bgp) {
bf85e4c5
PJD
1146 if (!json)
1147 vty_out(vty, "%% No such BGP instance exist\n");
d62a17ae 1148 return CMD_WARNING;
1149 }
f186de26 1150
5d76a53d 1151 if (nhopip_str) {
1152 struct prefix nhop;
f663c581 1153 struct bgp_nexthop_cache_head (*tree)[AFI_MAX];
5d76a53d 1154 struct bgp_nexthop_cache *bnc;
8c6a164f 1155 bool found = false;
8da79d08 1156 json_object *json_afi = NULL;
5d76a53d 1157
1158 if (!str2prefix(nhopip_str, &nhop)) {
bf85e4c5
PJD
1159 if (!json)
1160 vty_out(vty, "nexthop address is malformed\n");
5d76a53d 1161 return CMD_WARNING;
1162 }
f663c581
RW
1163 tree = import_table ? &bgp->import_check_table
1164 : &bgp->nexthop_cache_table;
bf85e4c5 1165 if (json)
8da79d08 1166 json_afi = json_object_new_object();
8c6a164f
PG
1167 frr_each (bgp_nexthop_cache, &(*tree)[family2afi(nhop.family)],
1168 bnc) {
1169 if (prefix_cmp(&bnc->prefix, &nhop))
1170 continue;
8da79d08 1171 bgp_show_nexthop(vty, bgp, bnc, true, json_afi);
8c6a164f 1172 found = true;
5d76a53d 1173 }
bf85e4c5 1174 if (json)
8da79d08
PJD
1175 json_object_object_add(
1176 json,
1177 (family2afi(nhop.family) == AFI_IP) ? "ipv4"
1178 : "ipv6",
1179 json_afi);
bf85e4c5 1180 if (!found && !json)
8c6a164f
PG
1181 vty_out(vty, "nexthop %s does not have entry\n",
1182 nhopip_str);
5d76a53d 1183 } else
8da79d08 1184 bgp_show_nexthops(vty, bgp, import_table, json, afi, detail);
f186de26 1185
d62a17ae 1186 return CMD_SUCCESS;
fb018d25
DS
1187}
1188
bf85e4c5 1189static void bgp_show_all_instances_nexthops_vty(struct vty *vty,
8da79d08
PJD
1190 json_object *json, afi_t afi,
1191 bool detail)
f186de26 1192{
d62a17ae 1193 struct listnode *node, *nnode;
1194 struct bgp *bgp;
bf85e4c5
PJD
1195 const char *inst_name;
1196 json_object *json_instance = NULL;
d62a17ae 1197
1198 for (ALL_LIST_ELEMENTS(bm->bgp, node, nnode, bgp)) {
bf85e4c5
PJD
1199 inst_name = (bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)
1200 ? VRF_DEFAULT_NAME
1201 : bgp->name;
1202 if (json)
1203 json_instance = json_object_new_object();
1204 else
1205 vty_out(vty, "\nInstance %s:\n", inst_name);
1206
8da79d08 1207 bgp_show_nexthops(vty, bgp, false, json_instance, afi, detail);
bf85e4c5
PJD
1208
1209 if (json)
1210 json_object_object_add(json, inst_name, json_instance);
d62a17ae 1211 }
f186de26 1212}
1213
071ec807
PJD
1214#include "bgpd/bgp_nexthop_clippy.c"
1215
1216DEFPY (show_ip_bgp_nexthop,
fb018d25 1217 show_ip_bgp_nexthop_cmd,
071ec807 1218 "show [ip] bgp [<view|vrf> VIEWVRFNAME$vrf] nexthop [<A.B.C.D|X:X::X:X>$nhop] [<ipv4$afi [A.B.C.D$nhop]|ipv6$afi [X:X::X:X$nhop]>] [detail$detail] [json$uj]",
50ef26d4 1219 SHOW_STR
1220 IP_STR
1221 BGP_STR
8386ac43 1222 BGP_INSTANCE_HELP_STR
3a2d747c 1223 "BGP nexthop table\n"
5d76a53d 1224 "IPv4 nexthop address\n"
1225 "IPv6 nexthop address\n"
071ec807
PJD
1226 "BGP nexthop IPv4 table\n"
1227 "IPv4 nexthop address\n"
1228 "BGP nexthop IPv6 table\n"
1229 "IPv6 nexthop address\n"
bf85e4c5
PJD
1230 "Show detailed information\n"
1231 JSON_STR)
50ef26d4 1232{
bf85e4c5 1233 int rc = 0;
bf85e4c5 1234 json_object *json = NULL;
071ec807 1235 afi_t afiz = AFI_UNSPEC;
bf85e4c5
PJD
1236
1237 if (uj)
1238 json = json_object_new_object();
b7ada628 1239
071ec807
PJD
1240 if (afi)
1241 afiz = bgp_vty_afi_from_str(afi);
05e47722 1242
071ec807
PJD
1243 rc = show_ip_bgp_nexthop_table(vty, vrf, nhop_str, false, json, afiz,
1244 detail);
5d76a53d 1245
bf85e4c5
PJD
1246 if (uj)
1247 vty_json(vty, json);
071ec807 1248
bf85e4c5 1249 return rc;
05e47722
PG
1250}
1251
071ec807 1252DEFPY (show_ip_bgp_import_check,
05e47722 1253 show_ip_bgp_import_check_cmd,
071ec807 1254 "show [ip] bgp [<view|vrf> VIEWVRFNAME$vrf] import-check-table [detail$detail] [json$uj]",
05e47722
PG
1255 SHOW_STR
1256 IP_STR
1257 BGP_STR
1258 BGP_INSTANCE_HELP_STR
1259 "BGP import check table\n"
bf85e4c5
PJD
1260 "Show detailed information\n"
1261 JSON_STR)
05e47722 1262{
bf85e4c5 1263 int rc = 0;
bf85e4c5 1264 json_object *json = NULL;
bf85e4c5
PJD
1265
1266 if (uj)
1267 json = json_object_new_object();
05e47722 1268
8da79d08
PJD
1269 rc = show_ip_bgp_nexthop_table(vty, vrf, NULL, true, json, AFI_UNSPEC,
1270 detail);
05e47722 1271
bf85e4c5
PJD
1272 if (uj)
1273 vty_json(vty, json);
5d76a53d 1274
bf85e4c5 1275 return rc;
50ef26d4 1276}
1277
071ec807 1278DEFPY (show_ip_bgp_instance_all_nexthop,
f186de26 1279 show_ip_bgp_instance_all_nexthop_cmd,
071ec807 1280 "show [ip] bgp <view|vrf> all nexthop [<ipv4|ipv6>$afi] [detail$detail] [json$uj]",
f186de26 1281 SHOW_STR
1282 IP_STR
1283 BGP_STR
1284 BGP_INSTANCE_ALL_HELP_STR
bf85e4c5 1285 "BGP nexthop table\n"
071ec807
PJD
1286 "BGP IPv4 nexthop table\n"
1287 "BGP IPv6 nexthop table\n"
1288 "Show detailed information\n"
bf85e4c5 1289 JSON_STR)
f186de26 1290{
bf85e4c5 1291 json_object *json = NULL;
071ec807 1292 afi_t afiz = AFI_UNSPEC;
bf85e4c5
PJD
1293
1294 if (uj)
1295 json = json_object_new_object();
1296
071ec807
PJD
1297 if (afi)
1298 afiz = bgp_vty_afi_from_str(afi);
8da79d08 1299
071ec807 1300 bgp_show_all_instances_nexthops_vty(vty, json, afiz, detail);
bf85e4c5
PJD
1301
1302 if (uj)
1303 vty_json(vty, json);
071ec807 1304
d62a17ae 1305 return CMD_SUCCESS;
f186de26 1306}
1307
d62a17ae 1308void bgp_scan_init(struct bgp *bgp)
718e3744 1309{
d62a17ae 1310 afi_t afi;
1311
1312 for (afi = AFI_IP; afi < AFI_MAX; afi++) {
f663c581
RW
1313 bgp_nexthop_cache_init(&bgp->nexthop_cache_table[afi]);
1314 bgp_nexthop_cache_init(&bgp->import_check_table[afi]);
960035b2
PZ
1315 bgp->connected_table[afi] = bgp_table_init(bgp, afi,
1316 SAFI_UNICAST);
d62a17ae 1317 }
fc9a856f
DS
1318}
1319
d62a17ae 1320void bgp_scan_vty_init(void)
fc9a856f 1321{
d62a17ae 1322 install_element(VIEW_NODE, &show_ip_bgp_nexthop_cmd);
05e47722 1323 install_element(VIEW_NODE, &show_ip_bgp_import_check_cmd);
d62a17ae 1324 install_element(VIEW_NODE, &show_ip_bgp_instance_all_nexthop_cmd);
718e3744 1325}
228da428 1326
d62a17ae 1327void bgp_scan_finish(struct bgp *bgp)
228da428 1328{
d62a17ae 1329 afi_t afi;
6c88b44d 1330
d62a17ae 1331 for (afi = AFI_IP; afi < AFI_MAX; afi++) {
1332 /* Only the current one needs to be reset. */
f663c581
RW
1333 bgp_nexthop_cache_reset(&bgp->nexthop_cache_table[afi]);
1334 bgp_nexthop_cache_reset(&bgp->import_check_table[afi]);
228da428 1335
3292693b
DS
1336 bgp->connected_table[afi]->route_table->cleanup =
1337 bgp_connected_cleanup;
d62a17ae 1338 bgp_table_unlock(bgp->connected_table[afi]);
1339 bgp->connected_table[afi] = NULL;
d62a17ae 1340 }
228da428 1341}
987a720a
DS
1342
1343char *bgp_nexthop_dump_bnc_flags(struct bgp_nexthop_cache *bnc, char *buf,
1344 size_t len)
1345{
1346 if (bnc->flags == 0) {
1347 snprintfrr(buf, len, "None ");
1348 return buf;
1349 }
1350
1351 snprintfrr(buf, len, "%s%s%s%s%s%s%s",
1352 CHECK_FLAG(bnc->flags, BGP_NEXTHOP_VALID) ? "Valid " : "",
1353 CHECK_FLAG(bnc->flags, BGP_NEXTHOP_REGISTERED) ? "Reg " : "",
1354 CHECK_FLAG(bnc->flags, BGP_NEXTHOP_CONNECTED) ? "Conn " : "",
1355 CHECK_FLAG(bnc->flags, BGP_NEXTHOP_PEER_NOTIFIED) ? "Notify "
1356 : "",
1357 CHECK_FLAG(bnc->flags, BGP_STATIC_ROUTE) ? "Static " : "",
1358 CHECK_FLAG(bnc->flags, BGP_STATIC_ROUTE_EXACT_MATCH)
1359 ? "Static Exact "
1360 : "",
1361 CHECK_FLAG(bnc->flags, BGP_NEXTHOP_LABELED_VALID)
1362 ? "Label Valid "
1363 : "");
1364
1365 return buf;
1366}
df2a41a9
DS
1367
1368char *bgp_nexthop_dump_bnc_change_flags(struct bgp_nexthop_cache *bnc,
1369 char *buf, size_t len)
1370{
1371 if (bnc->flags == 0) {
1372 snprintfrr(buf, len, "None ");
1373 return buf;
1374 }
1375
1376 snprintfrr(buf, len, "%s%s%s",
1377 CHECK_FLAG(bnc->change_flags, BGP_NEXTHOP_CHANGED)
1378 ? "Changed "
1379 : "",
1380 CHECK_FLAG(bnc->change_flags, BGP_NEXTHOP_METRIC_CHANGED)
1381 ? "Metric "
1382 : "",
1383 CHECK_FLAG(bnc->change_flags, BGP_NEXTHOP_CONNECTED_CHANGED)
1384 ? "Connected "
1385 : "");
1386
1387 return buf;
1388}