]> git.proxmox.com Git - mirror_frr.git/blame - bgpd/bgp_nexthop.c
bgpd: Cleanup some duplicated code
[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"
26#include "zclient.h"
27#include "stream.h"
28#include "network.h"
29#include "log.h"
30#include "memory.h"
10f9bf3f
JBD
31#include "hash.h"
32#include "jhash.h"
fb018d25 33#include "nexthop.h"
3f9c7369 34#include "queue.h"
039f3a34 35#include "filter.h"
718e3744 36
37#include "bgpd/bgpd.h"
38#include "bgpd/bgp_table.h"
39#include "bgpd/bgp_route.h"
40#include "bgpd/bgp_attr.h"
41#include "bgpd/bgp_nexthop.h"
fb018d25 42#include "bgpd/bgp_nht.h"
718e3744 43#include "bgpd/bgp_debug.h"
44#include "bgpd/bgp_damp.h"
8ffedcea 45#include "bgpd/bgp_fsm.h"
8386ac43 46#include "bgpd/bgp_vty.h"
718e3744 47#include "zebra/rib.h"
d62a17ae 48#include "zebra/zserv.h" /* For ZEBRA_SERV_PATH. */
718e3744 49
d62a17ae 50char *bnc_str(struct bgp_nexthop_cache *bnc, char *buf, int size)
fb018d25 51{
d62a17ae 52 prefix2str(&(bnc->node->p), buf, size);
53 return buf;
fb018d25
DS
54}
55
d62a17ae 56void bnc_nexthop_free(struct bgp_nexthop_cache *bnc)
718e3744 57{
d62a17ae 58 nexthops_free(bnc->nexthop);
718e3744 59}
60
d62a17ae 61struct bgp_nexthop_cache *bnc_new(void)
718e3744 62{
d62a17ae 63 struct bgp_nexthop_cache *bnc;
fb018d25 64
d62a17ae 65 bnc = XCALLOC(MTYPE_BGP_NEXTHOP_CACHE,
66 sizeof(struct bgp_nexthop_cache));
67 LIST_INIT(&(bnc->paths));
68 return bnc;
718e3744 69}
70
d62a17ae 71void bnc_free(struct bgp_nexthop_cache *bnc)
718e3744 72{
d62a17ae 73 bnc_nexthop_free(bnc);
74 XFREE(MTYPE_BGP_NEXTHOP_CACHE, bnc);
718e3744 75}
6b0655a2 76
718e3744 77/* Reset and free all BGP nexthop cache. */
d62a17ae 78static void bgp_nexthop_cache_reset(struct bgp_table *table)
718e3744 79{
d62a17ae 80 struct bgp_node *rn;
81 struct bgp_nexthop_cache *bnc;
82
83 for (rn = bgp_table_top(table); rn; rn = bgp_route_next(rn))
84 if ((bnc = rn->info) != NULL) {
85 bnc_free(bnc);
86 rn->info = NULL;
87 bgp_unlock_node(rn);
88 }
718e3744 89}
90
db0e1937
MK
91static void *bgp_tip_hash_alloc(void *p)
92{
0291c246
MK
93 const struct in_addr *val = (const struct in_addr *)p;
94 struct tip_addr *addr;
db0e1937
MK
95
96 addr = XMALLOC(MTYPE_TIP_ADDR, sizeof(struct tip_addr));
97 addr->refcnt = 0;
98 addr->addr.s_addr = val->s_addr;
99
100 return addr;
101}
102
103static void bgp_tip_hash_free(void *addr)
104{
105 XFREE(MTYPE_TIP_ADDR, addr);
106}
107
108static unsigned int bgp_tip_hash_key_make(void *p)
109{
0291c246 110 const struct tip_addr *addr = p;
db0e1937
MK
111
112 return jhash_1word(addr->addr.s_addr, 0);
113}
114
115static int bgp_tip_hash_cmp(const void *p1, const void *p2)
116{
0291c246
MK
117 const struct tip_addr *addr1 = p1;
118 const struct tip_addr *addr2 = p2;
db0e1937
MK
119
120 return addr1->addr.s_addr == addr2->addr.s_addr;
121}
122
123void bgp_tip_hash_init(struct bgp *bgp)
124{
996c9314 125 bgp->tip_hash = hash_create(bgp_tip_hash_key_make, bgp_tip_hash_cmp,
3f65c5b1 126 "BGP TIP hash");
db0e1937
MK
127}
128
129void bgp_tip_hash_destroy(struct bgp *bgp)
130{
131 if (bgp->tip_hash == NULL)
132 return;
133 hash_clean(bgp->tip_hash, bgp_tip_hash_free);
134 hash_free(bgp->tip_hash);
135 bgp->tip_hash = NULL;
136}
137
138void bgp_tip_add(struct bgp *bgp, struct in_addr *tip)
139{
0291c246
MK
140 struct tip_addr tmp;
141 struct tip_addr *addr;
db0e1937
MK
142
143 tmp.addr = *tip;
144
145 addr = hash_get(bgp->tip_hash, &tmp, bgp_tip_hash_alloc);
146 if (!addr)
147 return;
148
149 addr->refcnt++;
150}
151
152void bgp_tip_del(struct bgp *bgp, struct in_addr *tip)
153{
0291c246
MK
154 struct tip_addr tmp;
155 struct tip_addr *addr;
db0e1937
MK
156
157 tmp.addr = *tip;
158
159 addr = hash_lookup(bgp->tip_hash, &tmp);
160 /* may have been deleted earlier by bgp_interface_down() */
161 if (addr == NULL)
162 return;
163
164 addr->refcnt--;
165
166 if (addr->refcnt == 0) {
167 hash_release(bgp->tip_hash, addr);
168 XFREE(MTYPE_TIP_ADDR, addr);
169 }
170}
10f9bf3f 171
d62a17ae 172static void *bgp_address_hash_alloc(void *p)
10f9bf3f 173{
d62a17ae 174 const struct in_addr *val = (const struct in_addr *)p;
175 struct bgp_addr *addr;
10f9bf3f 176
d62a17ae 177 addr = XMALLOC(MTYPE_BGP_ADDR, sizeof(struct bgp_addr));
178 addr->refcnt = 0;
179 addr->addr.s_addr = val->s_addr;
10f9bf3f 180
d62a17ae 181 return addr;
10f9bf3f
JBD
182}
183
d62a17ae 184static void bgp_address_hash_free(void *addr)
37d361e7 185{
d62a17ae 186 XFREE(MTYPE_BGP_ADDR, addr);
37d361e7
RW
187}
188
d62a17ae 189static unsigned int bgp_address_hash_key_make(void *p)
10f9bf3f 190{
d62a17ae 191 const struct bgp_addr *addr = p;
10f9bf3f 192
d62a17ae 193 return jhash_1word(addr->addr.s_addr, 0);
10f9bf3f
JBD
194}
195
d62a17ae 196static int bgp_address_hash_cmp(const void *p1, const void *p2)
10f9bf3f 197{
d62a17ae 198 const struct bgp_addr *addr1 = p1;
199 const struct bgp_addr *addr2 = p2;
10f9bf3f 200
d62a17ae 201 return addr1->addr.s_addr == addr2->addr.s_addr;
10f9bf3f
JBD
202}
203
d62a17ae 204void bgp_address_init(struct bgp *bgp)
10f9bf3f 205{
996c9314
LB
206 bgp->address_hash =
207 hash_create(bgp_address_hash_key_make, bgp_address_hash_cmp,
208 "BGP Address Hash");
10f9bf3f
JBD
209}
210
d62a17ae 211void bgp_address_destroy(struct bgp *bgp)
bb86c601 212{
d62a17ae 213 if (bgp->address_hash == NULL)
214 return;
215 hash_clean(bgp->address_hash, bgp_address_hash_free);
216 hash_free(bgp->address_hash);
217 bgp->address_hash = NULL;
bb86c601
LB
218}
219
d62a17ae 220static void bgp_address_add(struct bgp *bgp, struct prefix *p)
10f9bf3f 221{
d62a17ae 222 struct bgp_addr tmp;
223 struct bgp_addr *addr;
10f9bf3f 224
d62a17ae 225 tmp.addr = p->u.prefix4;
10f9bf3f 226
d62a17ae 227 addr = hash_get(bgp->address_hash, &tmp, bgp_address_hash_alloc);
228 if (!addr)
229 return;
5ce10e92 230
d62a17ae 231 addr->refcnt++;
10f9bf3f
JBD
232}
233
d62a17ae 234static void bgp_address_del(struct bgp *bgp, struct prefix *p)
10f9bf3f 235{
d62a17ae 236 struct bgp_addr tmp;
237 struct bgp_addr *addr;
10f9bf3f 238
d62a17ae 239 tmp.addr = p->u.prefix4;
10f9bf3f 240
d62a17ae 241 addr = hash_lookup(bgp->address_hash, &tmp);
242 /* may have been deleted earlier by bgp_interface_down() */
243 if (addr == NULL)
244 return;
9e47abd8 245
d62a17ae 246 addr->refcnt--;
10f9bf3f 247
d62a17ae 248 if (addr->refcnt == 0) {
249 hash_release(bgp->address_hash, addr);
250 XFREE(MTYPE_BGP_ADDR, addr);
251 }
10f9bf3f
JBD
252}
253
6b0655a2 254
d62a17ae 255struct bgp_connected_ref {
256 unsigned int refcnt;
718e3744 257};
258
d62a17ae 259void bgp_connected_add(struct bgp *bgp, struct connected *ifc)
718e3744 260{
d62a17ae 261 struct prefix p;
262 struct prefix *addr;
263 struct bgp_node *rn;
264 struct bgp_connected_ref *bc;
265 struct listnode *node, *nnode;
266 struct peer *peer;
267
268 addr = ifc->address;
269
270 p = *(CONNECTED_PREFIX(ifc));
271 if (addr->family == AF_INET) {
272 apply_mask_ipv4((struct prefix_ipv4 *)&p);
273
274 if (prefix_ipv4_any((struct prefix_ipv4 *)&p))
275 return;
276
277 bgp_address_add(bgp, addr);
278
279 rn = bgp_node_get(bgp->connected_table[AFI_IP],
280 (struct prefix *)&p);
281 if (rn->info) {
282 bc = rn->info;
283 bc->refcnt++;
284 } else {
285 bc = XCALLOC(MTYPE_BGP_CONN,
286 sizeof(struct bgp_connected_ref));
287 bc->refcnt = 1;
288 rn->info = bc;
289 }
8ffedcea 290
d62a17ae 291 for (ALL_LIST_ELEMENTS(bgp->peer, node, nnode, peer)) {
292 if (peer->conf_if
293 && (strcmp(peer->conf_if, ifc->ifp->name) == 0)
294 && peer->status != Established
295 && !CHECK_FLAG(peer->flags,
296 PEER_FLAG_IFPEER_V6ONLY)) {
297 if (peer_active(peer))
298 BGP_EVENT_ADD(peer, BGP_Stop);
299 BGP_EVENT_ADD(peer, BGP_Start);
300 }
301 }
302 } else if (addr->family == AF_INET6) {
303 apply_mask_ipv6((struct prefix_ipv6 *)&p);
304
305 if (IN6_IS_ADDR_UNSPECIFIED(&p.u.prefix6))
306 return;
307
308 if (IN6_IS_ADDR_LINKLOCAL(&p.u.prefix6))
309 return;
310
311 rn = bgp_node_get(bgp->connected_table[AFI_IP6],
312 (struct prefix *)&p);
313 if (rn->info) {
314 bc = rn->info;
315 bc->refcnt++;
316 } else {
317 bc = XCALLOC(MTYPE_BGP_CONN,
318 sizeof(struct bgp_connected_ref));
319 bc->refcnt = 1;
320 rn->info = bc;
321 }
718e3744 322 }
718e3744 323}
324
d62a17ae 325void bgp_connected_delete(struct bgp *bgp, struct connected *ifc)
718e3744 326{
d62a17ae 327 struct prefix p;
328 struct prefix *addr;
f6bdc080 329 struct bgp_node *rn = NULL;
d62a17ae 330 struct bgp_connected_ref *bc;
718e3744 331
d62a17ae 332 addr = ifc->address;
718e3744 333
d62a17ae 334 p = *(CONNECTED_PREFIX(ifc));
f6bdc080 335 apply_mask(&p);
d62a17ae 336 if (addr->family == AF_INET) {
d62a17ae 337 if (prefix_ipv4_any((struct prefix_ipv4 *)&p))
338 return;
718e3744 339
d62a17ae 340 bgp_address_del(bgp, addr);
10f9bf3f 341
d62a17ae 342 rn = bgp_node_lookup(bgp->connected_table[AFI_IP], &p);
d62a17ae 343 } else if (addr->family == AF_INET6) {
d62a17ae 344 if (IN6_IS_ADDR_UNSPECIFIED(&p.u.prefix6))
345 return;
346
347 if (IN6_IS_ADDR_LINKLOCAL(&p.u.prefix6))
348 return;
349
350 rn = bgp_node_lookup(bgp->connected_table[AFI_IP6],
351 (struct prefix *)&p);
f6bdc080 352 }
d62a17ae 353
f6bdc080
DS
354 if (!rn)
355 return;
356
357 bc = rn->info;
358 bc->refcnt--;
359 if (bc->refcnt == 0) {
360 XFREE(MTYPE_BGP_CONN, bc);
361 rn->info = NULL;
718e3744 362 }
f6bdc080
DS
363 bgp_unlock_node(rn);
364 bgp_unlock_node(rn);
718e3744 365}
366
d62a17ae 367int bgp_nexthop_self(struct bgp *bgp, struct in_addr nh_addr)
718e3744 368{
d62a17ae 369 struct bgp_addr tmp, *addr;
db0e1937 370 struct tip_addr tmp_tip, *tip;
718e3744 371
d62a17ae 372 tmp.addr = nh_addr;
10f9bf3f 373
d62a17ae 374 addr = hash_lookup(bgp->address_hash, &tmp);
375 if (addr)
376 return 1;
718e3744 377
db0e1937
MK
378 tmp_tip.addr = nh_addr;
379 tip = hash_lookup(bgp->tip_hash, &tmp_tip);
380 if (tip)
381 return 1;
382
d62a17ae 383 return 0;
718e3744 384}
6b0655a2 385
d62a17ae 386int bgp_multiaccess_check_v4(struct in_addr nexthop, struct peer *peer)
718e3744 387{
d62a17ae 388 struct bgp_node *rn1;
389 struct bgp_node *rn2;
390 struct prefix p;
391 int ret;
392
393 p.family = AF_INET;
394 p.prefixlen = IPV4_MAX_BITLEN;
395 p.u.prefix4 = nexthop;
396
397 rn1 = bgp_node_match(peer->bgp->connected_table[AFI_IP], &p);
398 if (!rn1)
399 return 0;
400
401 p.family = AF_INET;
402 p.prefixlen = IPV4_MAX_BITLEN;
403 p.u.prefix4 = peer->su.sin.sin_addr;
404
405 rn2 = bgp_node_match(peer->bgp->connected_table[AFI_IP], &p);
406 if (!rn2) {
407 bgp_unlock_node(rn1);
408 return 0;
409 }
718e3744 410
d62a17ae 411 ret = (rn1 == rn2) ? 1 : 0;
718e3744 412
d62a17ae 413 bgp_unlock_node(rn1);
414 bgp_unlock_node(rn2);
718e3744 415
d62a17ae 416 return (ret);
718e3744 417}
418
65d4e0c6
DS
419int bgp_subgrp_multiaccess_check_v4(struct in_addr nexthop,
420 struct update_subgroup *subgrp)
421{
422 struct bgp_node *rn1, *rn2;
423 struct peer_af *paf;
424 struct prefix p, np;
425 struct bgp *bgp = NULL;
426
427 np.family = AF_INET;
428 np.prefixlen = IPV4_MAX_BITLEN;
429 np.u.prefix4 = nexthop;
430
431 p.family = AF_INET;
432 p.prefixlen = IPV4_MAX_BITLEN;
433
434 rn1 = rn2 = NULL;
435
436 bgp = SUBGRP_INST(subgrp);
996c9314 437 rn1 = bgp_node_match(bgp->connected_table[AFI_IP], &np);
65d4e0c6
DS
438 if (!rn1)
439 return 0;
440
996c9314 441 SUBGRP_FOREACH_PEER (subgrp, paf) {
65d4e0c6
DS
442 p.u.prefix4 = paf->peer->su.sin.sin_addr;
443
996c9314 444 rn2 = bgp_node_match(bgp->connected_table[AFI_IP], &p);
65d4e0c6
DS
445 if (rn1 == rn2) {
446 bgp_unlock_node(rn1);
447 bgp_unlock_node(rn2);
448 return 1;
449 }
450
451 if (rn2)
452 bgp_unlock_node(rn2);
453 }
454
455 bgp_unlock_node(rn1);
456 return 0;
457}
458
996c9314 459static void bgp_show_nexthops_detail(struct vty *vty, struct bgp *bgp,
e22ac3ee
DS
460 struct bgp_nexthop_cache *bnc)
461{
462 char buf[PREFIX2STR_BUFFER];
463 struct nexthop *nexthop;
464
465 for (nexthop = bnc->nexthop; nexthop; nexthop = nexthop->next)
466 switch (nexthop->type) {
467 case NEXTHOP_TYPE_IPV6:
468 vty_out(vty, " gate %s\n",
996c9314
LB
469 inet_ntop(AF_INET6, &nexthop->gate.ipv6, buf,
470 sizeof(buf)));
e22ac3ee
DS
471 break;
472 case NEXTHOP_TYPE_IPV6_IFINDEX:
473 vty_out(vty, " gate %s, if %s\n",
996c9314
LB
474 inet_ntop(AF_INET6, &nexthop->gate.ipv6, buf,
475 sizeof(buf)),
476 ifindex2ifname(nexthop->ifindex, bgp->vrf_id));
e22ac3ee
DS
477 break;
478 case NEXTHOP_TYPE_IPV4:
479 vty_out(vty, " gate %s\n",
996c9314
LB
480 inet_ntop(AF_INET, &nexthop->gate.ipv4, buf,
481 sizeof(buf)));
e22ac3ee
DS
482 break;
483 case NEXTHOP_TYPE_IFINDEX:
484 vty_out(vty, " if %s\n",
996c9314 485 ifindex2ifname(nexthop->ifindex, bgp->vrf_id));
e22ac3ee
DS
486 break;
487 case NEXTHOP_TYPE_IPV4_IFINDEX:
488 vty_out(vty, " gate %s, if %s\n",
996c9314
LB
489 inet_ntop(AF_INET, &nexthop->gate.ipv4, buf,
490 sizeof(buf)),
491 ifindex2ifname(nexthop->ifindex, bgp->vrf_id));
e22ac3ee
DS
492 break;
493 case NEXTHOP_TYPE_BLACKHOLE:
494 vty_out(vty, " blackhole\n");
495 break;
496 default:
996c9314 497 vty_out(vty, " invalid nexthop type %u\n",
e22ac3ee
DS
498 nexthop->type);
499 }
500}
501
d62a17ae 502static void bgp_show_nexthops(struct vty *vty, struct bgp *bgp, int detail)
fb018d25 503{
d62a17ae 504 struct bgp_node *rn;
505 struct bgp_nexthop_cache *bnc;
506 char buf[PREFIX2STR_BUFFER];
d62a17ae 507 time_t tbuf;
508 afi_t afi;
509
510 vty_out(vty, "Current BGP nexthop cache:\n");
511 for (afi = AFI_IP; afi < AFI_MAX; afi++) {
512 if (!bgp->nexthop_cache_table[afi])
513 continue;
514
515 for (rn = bgp_table_top(bgp->nexthop_cache_table[afi]); rn;
516 rn = bgp_route_next(rn)) {
517 if ((bnc = rn->info) != NULL) {
518 if (CHECK_FLAG(bnc->flags, BGP_NEXTHOP_VALID)) {
519 vty_out(vty,
520 " %s valid [IGP metric %d], #paths %d\n",
521 inet_ntop(rn->p.family,
522 &rn->p.u.prefix, buf,
523 sizeof(buf)),
524 bnc->metric, bnc->path_count);
e22ac3ee
DS
525
526 if (!detail)
527 continue;
528
529 bgp_show_nexthops_detail(vty, bgp, bnc);
530
996c9314 531 } else {
d62a17ae 532 vty_out(vty, " %s invalid\n",
533 inet_ntop(rn->p.family,
534 &rn->p.u.prefix, buf,
535 sizeof(buf)));
536 if (CHECK_FLAG(bnc->flags,
537 BGP_NEXTHOP_CONNECTED))
538 vty_out(vty,
539 " Must be Connected\n");
540 }
541 tbuf = time(NULL)
542 - (bgp_clock() - bnc->last_update);
543 vty_out(vty, " Last update: %s", ctime(&tbuf));
544 vty_out(vty, "\n");
da11a696
DS
545 }
546 }
fb018d25 547 }
f186de26 548}
549
d62a17ae 550static int show_ip_bgp_nexthop_table(struct vty *vty, const char *name,
551 int detail)
f186de26 552{
d62a17ae 553 struct bgp *bgp;
554
555 if (name)
556 bgp = bgp_lookup_by_name(name);
557 else
558 bgp = bgp_get_default();
559 if (!bgp) {
560 vty_out(vty, "%% No such BGP instance exist\n");
561 return CMD_WARNING;
562 }
f186de26 563
d62a17ae 564 bgp_show_nexthops(vty, bgp, detail);
f186de26 565
d62a17ae 566 return CMD_SUCCESS;
fb018d25
DS
567}
568
d62a17ae 569static void bgp_show_all_instances_nexthops_vty(struct vty *vty)
f186de26 570{
d62a17ae 571 struct listnode *node, *nnode;
572 struct bgp *bgp;
573
574 for (ALL_LIST_ELEMENTS(bm->bgp, node, nnode, bgp)) {
575 vty_out(vty, "\nInstance %s:\n",
576 (bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)
577 ? "Default"
578 : bgp->name);
579 bgp_show_nexthops(vty, bgp, 0);
580 }
f186de26 581}
582
fb018d25
DS
583DEFUN (show_ip_bgp_nexthop,
584 show_ip_bgp_nexthop_cmd,
18c57037 585 "show [ip] bgp [<view|vrf> VIEWVRFNAME] nexthop [detail]",
50ef26d4 586 SHOW_STR
587 IP_STR
588 BGP_STR
8386ac43 589 BGP_INSTANCE_HELP_STR
3a2d747c
QY
590 "BGP nexthop table\n"
591 "Show detailed information\n")
50ef26d4 592{
d62a17ae 593 int idx = 0;
b7ada628
DS
594 char *vrf = NULL;
595
596 if (argv_find(argv, argc, "view", &idx)
597 || argv_find(argv, argc, "vrf", &idx))
598 vrf = argv[++idx]->arg;
d62a17ae 599 int detail = argv_find(argv, argc, "detail", &idx) ? 1 : 0;
600 return show_ip_bgp_nexthop_table(vty, vrf, detail);
50ef26d4 601}
602
f186de26 603DEFUN (show_ip_bgp_instance_all_nexthop,
604 show_ip_bgp_instance_all_nexthop_cmd,
bec37ba5 605 "show [ip] bgp <view|vrf> all nexthop",
f186de26 606 SHOW_STR
607 IP_STR
608 BGP_STR
609 BGP_INSTANCE_ALL_HELP_STR
610 "BGP nexthop table\n")
611{
d62a17ae 612 bgp_show_all_instances_nexthops_vty(vty);
613 return CMD_SUCCESS;
f186de26 614}
615
d62a17ae 616void bgp_scan_init(struct bgp *bgp)
718e3744 617{
d62a17ae 618 afi_t afi;
619
620 for (afi = AFI_IP; afi < AFI_MAX; afi++) {
621 bgp->nexthop_cache_table[afi] =
960035b2
PZ
622 bgp_table_init(bgp, afi, SAFI_UNICAST);
623 bgp->connected_table[afi] = bgp_table_init(bgp, afi,
624 SAFI_UNICAST);
d62a17ae 625 bgp->import_check_table[afi] =
960035b2 626 bgp_table_init(bgp, afi, SAFI_UNICAST);
d62a17ae 627 }
fc9a856f
DS
628}
629
d62a17ae 630void bgp_scan_vty_init(void)
fc9a856f 631{
d62a17ae 632 install_element(VIEW_NODE, &show_ip_bgp_nexthop_cmd);
633 install_element(VIEW_NODE, &show_ip_bgp_instance_all_nexthop_cmd);
718e3744 634}
228da428 635
d62a17ae 636void bgp_scan_finish(struct bgp *bgp)
228da428 637{
d62a17ae 638 afi_t afi;
6c88b44d 639
d62a17ae 640 for (afi = AFI_IP; afi < AFI_MAX; afi++) {
641 /* Only the current one needs to be reset. */
642 bgp_nexthop_cache_reset(bgp->nexthop_cache_table[afi]);
643 bgp_table_unlock(bgp->nexthop_cache_table[afi]);
644 bgp->nexthop_cache_table[afi] = NULL;
228da428 645
d62a17ae 646 bgp_table_unlock(bgp->connected_table[afi]);
647 bgp->connected_table[afi] = NULL;
078430f6 648
d62a17ae 649 bgp_table_unlock(bgp->import_check_table[afi]);
650 bgp->import_check_table[afi] = NULL;
651 }
228da428 652}