]> git.proxmox.com Git - mirror_frr.git/blob - bgpd/bgp_nexthop.c
Merge branch 'master' into stylechecker
[mirror_frr.git] / bgpd / bgp_nexthop.c
1 /* BGP nexthop scan
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 */
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"
31 #include "hash.h"
32 #include "jhash.h"
33 #include "nexthop.h"
34 #include "queue.h"
35 #include "filter.h"
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"
42 #include "bgpd/bgp_nht.h"
43 #include "bgpd/bgp_debug.h"
44 #include "bgpd/bgp_damp.h"
45 #include "bgpd/bgp_fsm.h"
46 #include "bgpd/bgp_vty.h"
47 #include "zebra/rib.h"
48 #include "zebra/zserv.h" /* For ZEBRA_SERV_PATH. */
49
50 char *bnc_str(struct bgp_nexthop_cache *bnc, char *buf, int size)
51 {
52 prefix2str(&(bnc->node->p), buf, size);
53 return buf;
54 }
55
56 void bnc_nexthop_free(struct bgp_nexthop_cache *bnc)
57 {
58 nexthops_free(bnc->nexthop);
59 }
60
61 struct bgp_nexthop_cache *bnc_new(void)
62 {
63 struct bgp_nexthop_cache *bnc;
64
65 bnc = XCALLOC(MTYPE_BGP_NEXTHOP_CACHE,
66 sizeof(struct bgp_nexthop_cache));
67 LIST_INIT(&(bnc->paths));
68 return bnc;
69 }
70
71 void bnc_free(struct bgp_nexthop_cache *bnc)
72 {
73 bnc_nexthop_free(bnc);
74 XFREE(MTYPE_BGP_NEXTHOP_CACHE, bnc);
75 }
76
77 /* Reset and free all BGP nexthop cache. */
78 static void bgp_nexthop_cache_reset(struct bgp_table *table)
79 {
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 }
89 }
90
91 static void *bgp_tip_hash_alloc(void *p)
92 {
93 const struct in_addr *val = (const struct in_addr *)p;
94 struct tip_addr *addr;
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
103 static void bgp_tip_hash_free(void *addr)
104 {
105 XFREE(MTYPE_TIP_ADDR, addr);
106 }
107
108 static unsigned int bgp_tip_hash_key_make(void *p)
109 {
110 const struct tip_addr *addr = p;
111
112 return jhash_1word(addr->addr.s_addr, 0);
113 }
114
115 static int bgp_tip_hash_cmp(const void *p1, const void *p2)
116 {
117 const struct tip_addr *addr1 = p1;
118 const struct tip_addr *addr2 = p2;
119
120 return addr1->addr.s_addr == addr2->addr.s_addr;
121 }
122
123 void bgp_tip_hash_init(struct bgp *bgp)
124 {
125 bgp->tip_hash = hash_create(bgp_tip_hash_key_make, bgp_tip_hash_cmp,
126 "BGP TIP hash");
127 }
128
129 void 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
138 void bgp_tip_add(struct bgp *bgp, struct in_addr *tip)
139 {
140 struct tip_addr tmp;
141 struct tip_addr *addr;
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
152 void bgp_tip_del(struct bgp *bgp, struct in_addr *tip)
153 {
154 struct tip_addr tmp;
155 struct tip_addr *addr;
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 }
171
172 static void *bgp_address_hash_alloc(void *p)
173 {
174 const struct in_addr *val = (const struct in_addr *)p;
175 struct bgp_addr *addr;
176
177 addr = XMALLOC(MTYPE_BGP_ADDR, sizeof(struct bgp_addr));
178 addr->refcnt = 0;
179 addr->addr.s_addr = val->s_addr;
180
181 return addr;
182 }
183
184 static void bgp_address_hash_free(void *addr)
185 {
186 XFREE(MTYPE_BGP_ADDR, addr);
187 }
188
189 static unsigned int bgp_address_hash_key_make(void *p)
190 {
191 const struct bgp_addr *addr = p;
192
193 return jhash_1word(addr->addr.s_addr, 0);
194 }
195
196 static int bgp_address_hash_cmp(const void *p1, const void *p2)
197 {
198 const struct bgp_addr *addr1 = p1;
199 const struct bgp_addr *addr2 = p2;
200
201 return addr1->addr.s_addr == addr2->addr.s_addr;
202 }
203
204 void bgp_address_init(struct bgp *bgp)
205 {
206 bgp->address_hash =
207 hash_create(bgp_address_hash_key_make, bgp_address_hash_cmp,
208 "BGP Address Hash");
209 }
210
211 void bgp_address_destroy(struct bgp *bgp)
212 {
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;
218 }
219
220 static void bgp_address_add(struct bgp *bgp, struct prefix *p)
221 {
222 struct bgp_addr tmp;
223 struct bgp_addr *addr;
224
225 tmp.addr = p->u.prefix4;
226
227 addr = hash_get(bgp->address_hash, &tmp, bgp_address_hash_alloc);
228 if (!addr)
229 return;
230
231 addr->refcnt++;
232 }
233
234 static void bgp_address_del(struct bgp *bgp, struct prefix *p)
235 {
236 struct bgp_addr tmp;
237 struct bgp_addr *addr;
238
239 tmp.addr = p->u.prefix4;
240
241 addr = hash_lookup(bgp->address_hash, &tmp);
242 /* may have been deleted earlier by bgp_interface_down() */
243 if (addr == NULL)
244 return;
245
246 addr->refcnt--;
247
248 if (addr->refcnt == 0) {
249 hash_release(bgp->address_hash, addr);
250 XFREE(MTYPE_BGP_ADDR, addr);
251 }
252 }
253
254
255 struct bgp_connected_ref {
256 unsigned int refcnt;
257 };
258
259 void bgp_connected_add(struct bgp *bgp, struct connected *ifc)
260 {
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 }
290
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 }
322 }
323 }
324
325 void bgp_connected_delete(struct bgp *bgp, struct connected *ifc)
326 {
327 struct prefix p;
328 struct prefix *addr;
329 struct bgp_node *rn;
330 struct bgp_connected_ref *bc;
331
332 addr = ifc->address;
333
334 p = *(CONNECTED_PREFIX(ifc));
335 if (addr->family == AF_INET) {
336 apply_mask_ipv4((struct prefix_ipv4 *)&p);
337
338 if (prefix_ipv4_any((struct prefix_ipv4 *)&p))
339 return;
340
341 bgp_address_del(bgp, addr);
342
343 rn = bgp_node_lookup(bgp->connected_table[AFI_IP], &p);
344 if (!rn)
345 return;
346
347 bc = rn->info;
348 bc->refcnt--;
349 if (bc->refcnt == 0) {
350 XFREE(MTYPE_BGP_CONN, bc);
351 rn->info = NULL;
352 }
353 bgp_unlock_node(rn);
354 bgp_unlock_node(rn);
355 } else if (addr->family == AF_INET6) {
356 apply_mask_ipv6((struct prefix_ipv6 *)&p);
357
358 if (IN6_IS_ADDR_UNSPECIFIED(&p.u.prefix6))
359 return;
360
361 if (IN6_IS_ADDR_LINKLOCAL(&p.u.prefix6))
362 return;
363
364 rn = bgp_node_lookup(bgp->connected_table[AFI_IP6],
365 (struct prefix *)&p);
366 if (!rn)
367 return;
368
369 bc = rn->info;
370 bc->refcnt--;
371 if (bc->refcnt == 0) {
372 XFREE(MTYPE_BGP_CONN, bc);
373 rn->info = NULL;
374 }
375 bgp_unlock_node(rn);
376 bgp_unlock_node(rn);
377 }
378 }
379
380 int bgp_nexthop_self(struct bgp *bgp, struct in_addr nh_addr)
381 {
382 struct bgp_addr tmp, *addr;
383 struct tip_addr tmp_tip, *tip;
384
385 tmp.addr = nh_addr;
386
387 addr = hash_lookup(bgp->address_hash, &tmp);
388 if (addr)
389 return 1;
390
391 tmp_tip.addr = nh_addr;
392 tip = hash_lookup(bgp->tip_hash, &tmp_tip);
393 if (tip)
394 return 1;
395
396 return 0;
397 }
398
399 int bgp_multiaccess_check_v4(struct in_addr nexthop, struct peer *peer)
400 {
401 struct bgp_node *rn1;
402 struct bgp_node *rn2;
403 struct prefix p;
404 int ret;
405
406 p.family = AF_INET;
407 p.prefixlen = IPV4_MAX_BITLEN;
408 p.u.prefix4 = nexthop;
409
410 rn1 = bgp_node_match(peer->bgp->connected_table[AFI_IP], &p);
411 if (!rn1)
412 return 0;
413
414 p.family = AF_INET;
415 p.prefixlen = IPV4_MAX_BITLEN;
416 p.u.prefix4 = peer->su.sin.sin_addr;
417
418 rn2 = bgp_node_match(peer->bgp->connected_table[AFI_IP], &p);
419 if (!rn2) {
420 bgp_unlock_node(rn1);
421 return 0;
422 }
423
424 ret = (rn1 == rn2) ? 1 : 0;
425
426 bgp_unlock_node(rn1);
427 bgp_unlock_node(rn2);
428
429 return (ret);
430 }
431
432 int bgp_subgrp_multiaccess_check_v4(struct in_addr nexthop,
433 struct update_subgroup *subgrp)
434 {
435 struct bgp_node *rn1, *rn2;
436 struct peer_af *paf;
437 struct prefix p, np;
438 struct bgp *bgp = NULL;
439
440 np.family = AF_INET;
441 np.prefixlen = IPV4_MAX_BITLEN;
442 np.u.prefix4 = nexthop;
443
444 p.family = AF_INET;
445 p.prefixlen = IPV4_MAX_BITLEN;
446
447 rn1 = rn2 = NULL;
448
449 bgp = SUBGRP_INST(subgrp);
450 rn1 = bgp_node_match(bgp->connected_table[AFI_IP], &np);
451 if (!rn1)
452 return 0;
453
454 SUBGRP_FOREACH_PEER (subgrp, paf) {
455 p.u.prefix4 = paf->peer->su.sin.sin_addr;
456
457 rn2 = bgp_node_match(bgp->connected_table[AFI_IP], &p);
458 if (rn1 == rn2) {
459 bgp_unlock_node(rn1);
460 bgp_unlock_node(rn2);
461 return 1;
462 }
463
464 if (rn2)
465 bgp_unlock_node(rn2);
466 }
467
468 bgp_unlock_node(rn1);
469 return 0;
470 }
471
472 static void bgp_show_nexthops_detail(struct vty *vty, struct bgp *bgp,
473 struct bgp_nexthop_cache *bnc)
474 {
475 char buf[PREFIX2STR_BUFFER];
476 struct nexthop *nexthop;
477
478 for (nexthop = bnc->nexthop; nexthop; nexthop = nexthop->next)
479 switch (nexthop->type) {
480 case NEXTHOP_TYPE_IPV6:
481 vty_out(vty, " gate %s\n",
482 inet_ntop(AF_INET6, &nexthop->gate.ipv6, buf,
483 sizeof(buf)));
484 break;
485 case NEXTHOP_TYPE_IPV6_IFINDEX:
486 vty_out(vty, " gate %s, if %s\n",
487 inet_ntop(AF_INET6, &nexthop->gate.ipv6, buf,
488 sizeof(buf)),
489 ifindex2ifname(nexthop->ifindex, bgp->vrf_id));
490 break;
491 case NEXTHOP_TYPE_IPV4:
492 vty_out(vty, " gate %s\n",
493 inet_ntop(AF_INET, &nexthop->gate.ipv4, buf,
494 sizeof(buf)));
495 break;
496 case NEXTHOP_TYPE_IFINDEX:
497 vty_out(vty, " if %s\n",
498 ifindex2ifname(nexthop->ifindex, bgp->vrf_id));
499 break;
500 case NEXTHOP_TYPE_IPV4_IFINDEX:
501 vty_out(vty, " gate %s, if %s\n",
502 inet_ntop(AF_INET, &nexthop->gate.ipv4, buf,
503 sizeof(buf)),
504 ifindex2ifname(nexthop->ifindex, bgp->vrf_id));
505 break;
506 case NEXTHOP_TYPE_BLACKHOLE:
507 vty_out(vty, " blackhole\n");
508 break;
509 default:
510 vty_out(vty, " invalid nexthop type %u\n",
511 nexthop->type);
512 }
513 }
514
515 static void bgp_show_nexthops(struct vty *vty, struct bgp *bgp, int detail)
516 {
517 struct bgp_node *rn;
518 struct bgp_nexthop_cache *bnc;
519 char buf[PREFIX2STR_BUFFER];
520 time_t tbuf;
521 afi_t afi;
522
523 vty_out(vty, "Current BGP nexthop cache:\n");
524 for (afi = AFI_IP; afi < AFI_MAX; afi++) {
525 if (!bgp->nexthop_cache_table[afi])
526 continue;
527
528 for (rn = bgp_table_top(bgp->nexthop_cache_table[afi]); rn;
529 rn = bgp_route_next(rn)) {
530 if ((bnc = rn->info) != NULL) {
531 if (CHECK_FLAG(bnc->flags, BGP_NEXTHOP_VALID)) {
532 vty_out(vty,
533 " %s valid [IGP metric %d], #paths %d\n",
534 inet_ntop(rn->p.family,
535 &rn->p.u.prefix, buf,
536 sizeof(buf)),
537 bnc->metric, bnc->path_count);
538
539 if (!detail)
540 continue;
541
542 bgp_show_nexthops_detail(vty, bgp, bnc);
543
544 } else {
545 vty_out(vty, " %s invalid\n",
546 inet_ntop(rn->p.family,
547 &rn->p.u.prefix, buf,
548 sizeof(buf)));
549 if (CHECK_FLAG(bnc->flags,
550 BGP_NEXTHOP_CONNECTED))
551 vty_out(vty,
552 " Must be Connected\n");
553 }
554 tbuf = time(NULL)
555 - (bgp_clock() - bnc->last_update);
556 vty_out(vty, " Last update: %s", ctime(&tbuf));
557 vty_out(vty, "\n");
558 }
559 }
560 }
561 }
562
563 static int show_ip_bgp_nexthop_table(struct vty *vty, const char *name,
564 int detail)
565 {
566 struct bgp *bgp;
567
568 if (name)
569 bgp = bgp_lookup_by_name(name);
570 else
571 bgp = bgp_get_default();
572 if (!bgp) {
573 vty_out(vty, "%% No such BGP instance exist\n");
574 return CMD_WARNING;
575 }
576
577 bgp_show_nexthops(vty, bgp, detail);
578
579 return CMD_SUCCESS;
580 }
581
582 static void bgp_show_all_instances_nexthops_vty(struct vty *vty)
583 {
584 struct listnode *node, *nnode;
585 struct bgp *bgp;
586
587 for (ALL_LIST_ELEMENTS(bm->bgp, node, nnode, bgp)) {
588 vty_out(vty, "\nInstance %s:\n",
589 (bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)
590 ? "Default"
591 : bgp->name);
592 bgp_show_nexthops(vty, bgp, 0);
593 }
594 }
595
596 DEFUN (show_ip_bgp_nexthop,
597 show_ip_bgp_nexthop_cmd,
598 "show [ip] bgp [<view|vrf> VIEWVRFNAME] nexthop [detail]",
599 SHOW_STR
600 IP_STR
601 BGP_STR
602 BGP_INSTANCE_HELP_STR
603 "BGP nexthop table\n"
604 "Show detailed information\n")
605 {
606 int idx = 0;
607 char *vrf = NULL;
608
609 if (argv_find(argv, argc, "view", &idx)
610 || argv_find(argv, argc, "vrf", &idx))
611 vrf = argv[++idx]->arg;
612 int detail = argv_find(argv, argc, "detail", &idx) ? 1 : 0;
613 return show_ip_bgp_nexthop_table(vty, vrf, detail);
614 }
615
616 DEFUN (show_ip_bgp_instance_all_nexthop,
617 show_ip_bgp_instance_all_nexthop_cmd,
618 "show [ip] bgp <view|vrf> all nexthop",
619 SHOW_STR
620 IP_STR
621 BGP_STR
622 BGP_INSTANCE_ALL_HELP_STR
623 "BGP nexthop table\n")
624 {
625 bgp_show_all_instances_nexthops_vty(vty);
626 return CMD_SUCCESS;
627 }
628
629 void bgp_scan_init(struct bgp *bgp)
630 {
631 afi_t afi;
632
633 for (afi = AFI_IP; afi < AFI_MAX; afi++) {
634 bgp->nexthop_cache_table[afi] =
635 bgp_table_init(afi, SAFI_UNICAST);
636 bgp->connected_table[afi] = bgp_table_init(afi, SAFI_UNICAST);
637 bgp->import_check_table[afi] =
638 bgp_table_init(afi, SAFI_UNICAST);
639 }
640 }
641
642 void bgp_scan_vty_init(void)
643 {
644 install_element(VIEW_NODE, &show_ip_bgp_nexthop_cmd);
645 install_element(VIEW_NODE, &show_ip_bgp_instance_all_nexthop_cmd);
646 }
647
648 void bgp_scan_finish(struct bgp *bgp)
649 {
650 afi_t afi;
651
652 for (afi = AFI_IP; afi < AFI_MAX; afi++) {
653 /* Only the current one needs to be reset. */
654 bgp_nexthop_cache_reset(bgp->nexthop_cache_table[afi]);
655 bgp_table_unlock(bgp->nexthop_cache_table[afi]);
656 bgp->nexthop_cache_table[afi] = NULL;
657
658 bgp_table_unlock(bgp->connected_table[afi]);
659 bgp->connected_table[afi] = NULL;
660
661 bgp_table_unlock(bgp->import_check_table[afi]);
662 bgp->import_check_table[afi] = NULL;
663 }
664 }