]> git.proxmox.com Git - mirror_frr.git/blame - bgpd/bgp_route.h
bgpd: Convert binfo to path
[mirror_frr.git] / bgpd / bgp_route.h
CommitLineData
718e3744 1/* BGP routing information base
896014f4
DL
2 * Copyright (C) 1996, 97, 98, 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
00d252cb 21#ifndef _QUAGGA_BGP_ROUTE_H
22#define _QUAGGA_BGP_ROUTE_H
23
fb018d25 24#include "queue.h"
74489921 25#include "nexthop.h"
200df115 26#include "bgp_table.h"
27
fb018d25 28struct bgp_nexthop_cache;
7ef5a232 29struct bgp_route_evpn;
fb018d25 30
d62a17ae 31enum bgp_show_type {
32 bgp_show_type_normal,
33 bgp_show_type_regexp,
34 bgp_show_type_prefix_list,
35 bgp_show_type_filter_list,
36 bgp_show_type_route_map,
37 bgp_show_type_neighbor,
38 bgp_show_type_cidr_only,
39 bgp_show_type_prefix_longer,
40 bgp_show_type_community_all,
41 bgp_show_type_community,
42 bgp_show_type_community_exact,
43 bgp_show_type_community_list,
44 bgp_show_type_community_list_exact,
45 bgp_show_type_lcommunity_all,
46 bgp_show_type_lcommunity,
47 bgp_show_type_lcommunity_list,
48 bgp_show_type_flap_statistics,
49 bgp_show_type_flap_neighbor,
50 bgp_show_type_dampend_paths,
dba3c1d3
PG
51 bgp_show_type_damp_neighbor,
52 bgp_show_type_detail,
b2f0fa55
PG
53};
54
6392aaa6
PM
55enum bgp_show_adj_route_type {
56 bgp_show_adj_route_advertised,
57 bgp_show_adj_route_received,
58 bgp_show_adj_route_filtered,
59};
60
b2f0fa55 61
d62a17ae 62#define BGP_SHOW_SCODE_HEADER \
9df8b37c 63 "Status codes: s suppressed, d damped, " \
d62a17ae 64 "h history, * valid, > best, = multipath,\n" \
9df8b37c
PZ
65 " i internal, r RIB-failure, S Stale, R Removed\n"
66#define BGP_SHOW_OCODE_HEADER "Origin codes: i - IGP, e - EGP, ? - incomplete\n\n"
67#define BGP_SHOW_NCODE_HEADER "Nexthop codes: @NNN nexthop's vrf id, < announce-nh-self\n"
181039f3 68#define BGP_SHOW_HEADER " Network Next Hop Metric LocPrf Weight Path\n"
3f9c7369 69
b57ba6d2
MK
70/* Maximum number of labels we can process or send with a prefix. We
71 * really do only 1 for MPLS (BGP-LU) but we can do 2 for EVPN-VxLAN.
72 */
73#define BGP_MAX_LABELS 2
74
4b7e6066 75/* Ancillary information to struct bgp_path_info,
fb982c25
PJ
76 * used for uncommonly used data (aggregation, MPLS, etc.)
77 * and lazily allocated to save memory.
78 */
4b7e6066 79struct bgp_path_info_extra {
d62a17ae 80 /* Pointer to dampening structure. */
81 struct bgp_damp_info *damp_info;
fb982c25 82
d62a17ae 83 /* This route is suppressed with aggregation. */
84 int suppress;
fb982c25 85
d62a17ae 86 /* Nexthop reachability check. */
d7c0a89a 87 uint32_t igpmetric;
fb982c25 88
b57ba6d2
MK
89 /* MPLS label(s) - VNI(s) for EVPN-VxLAN */
90 mpls_label_t label[BGP_MAX_LABELS];
d7c0a89a 91 uint32_t num_labels;
342dd0c6 92
65efcfce 93#if ENABLE_BGP_VNC
d62a17ae 94 union {
95
96 struct {
97 void *rfapi_handle; /* export: NVE advertising this
98 route */
99 struct list *local_nexthops; /* optional, for static
100 routes */
101 } export;
102
103 struct {
104 struct thread *timer;
105 void *hme; /* encap monitor, if this is a VPN route */
106 struct prefix_rd
107 rd; /* import: route's route-distinguisher */
d7c0a89a 108 uint8_t un_family; /* family of cached un address, 0 if
d62a17ae 109 unset */
110 union {
111 struct in_addr addr4;
112 struct in6_addr addr6;
113 } un; /* cached un address */
114 time_t create_time;
996c9314
LB
115 struct prefix aux_prefix; /* AFI_L2VPN: the IP addr,
116 if family set */
d62a17ae 117 } import;
118
119 } vnc;
65efcfce 120#endif
128ea8ab 121
d62a17ae 122 /* For imported routes into a VNI (or VRF), this points to the parent.
123 */
124 void *parent;
ddb5b488
PZ
125
126 /*
127 * Some tunnelish parameters follow. Maybe consolidate into an
128 * internal tunnel structure?
129 */
130
131 /*
132 * Original bgp instance for imported routes. Needed for:
133 * 1. Find all routes from a specific vrf for deletion
134 * 2. vrf context of original nexthop
135 *
136 * Store pointer to bgp instance rather than bgp->vrf_id because
137 * bgp->vrf_id is not always valid (or may change?).
138 *
139 * Set to NULL if route is not imported from another bgp instance.
140 */
141 struct bgp *bgp_orig;
142
143 /*
144 * Nexthop in context of original bgp instance. Needed
145 * for label resolution of core mpls routes exported to a vrf.
146 * Set nexthop_orig.family to 0 if not valid.
147 */
148 struct prefix nexthop_orig;
b588b642 149 /* presence of FS pbr entry */
c26edcda 150 struct list *bgp_fs_pbr;
fb982c25
PJ
151};
152
4b7e6066 153struct bgp_path_info {
d62a17ae 154 /* For linked list. */
4b7e6066
DS
155 struct bgp_path_info *next;
156 struct bgp_path_info *prev;
d62a17ae 157
158 /* For nexthop linked list */
4b7e6066 159 LIST_ENTRY(bgp_path_info) nh_thread;
d62a17ae 160
161 /* Back pointer to the prefix node */
162 struct bgp_node *net;
163
164 /* Back pointer to the nexthop structure */
165 struct bgp_nexthop_cache *nexthop;
fb018d25 166
d62a17ae 167 /* Peer structure. */
168 struct peer *peer;
fb018d25 169
d62a17ae 170 /* Attribute structure. */
171 struct attr *attr;
fb018d25 172
d62a17ae 173 /* Extra information */
4b7e6066 174 struct bgp_path_info_extra *extra;
fb018d25 175
cbdfbaa5 176
d62a17ae 177 /* Multipath information */
4b7e6066 178 struct bgp_path_info_mpath *mpath;
de8d5dff 179
d62a17ae 180 /* Uptime. */
181 time_t uptime;
de8d5dff 182
d62a17ae 183 /* reference count */
184 int lock;
cbdfbaa5 185
d62a17ae 186 /* BGP information status. */
d7c0a89a 187 uint16_t flags;
1defdda8
DS
188#define BGP_PATH_IGP_CHANGED (1 << 0)
189#define BGP_PATH_DAMPED (1 << 1)
190#define BGP_PATH_HISTORY (1 << 2)
191#define BGP_PATH_SELECTED (1 << 3)
192#define BGP_PATH_VALID (1 << 4)
193#define BGP_PATH_ATTR_CHANGED (1 << 5)
194#define BGP_PATH_DMED_CHECK (1 << 6)
195#define BGP_PATH_DMED_SELECTED (1 << 7)
196#define BGP_PATH_STALE (1 << 8)
197#define BGP_PATH_REMOVED (1 << 9)
198#define BGP_PATH_COUNTED (1 << 10)
199#define BGP_PATH_MULTIPATH (1 << 11)
200#define BGP_PATH_MULTIPATH_CHG (1 << 12)
201#define BGP_PATH_RIB_ATTR_CHG (1 << 13)
202#define BGP_PATH_ANNC_NH_SELF (1 << 14)
718e3744 203
d62a17ae 204 /* BGP route type. This can be static, RIP, OSPF, BGP etc. */
d7c0a89a 205 uint8_t type;
cbdfbaa5 206
d62a17ae 207 /* When above type is BGP. This sub type specify BGP sub type
208 information. */
d7c0a89a 209 uint8_t sub_type;
cbdfbaa5
PJ
210#define BGP_ROUTE_NORMAL 0
211#define BGP_ROUTE_STATIC 1
212#define BGP_ROUTE_AGGREGATE 2
213#define BGP_ROUTE_REDISTRIBUTE 3
65efcfce
LB
214#ifdef ENABLE_BGP_VNC
215# define BGP_ROUTE_RFP 4
216#endif
ddb5b488 217#define BGP_ROUTE_IMPORTED 5 /* from another bgp instance/safi */
7c8ff89e 218
d7c0a89a 219 unsigned short instance;
a82478b9 220
d62a17ae 221 /* Addpath identifiers */
d7c0a89a
QY
222 uint32_t addpath_rx_id;
223 uint32_t addpath_tx_id;
718e3744 224};
225
128ea8ab 226/* Structure used in BGP path selection */
4b7e6066
DS
227struct bgp_path_info_pair {
228 struct bgp_path_info *old;
229 struct bgp_path_info *new;
128ea8ab 230};
231
718e3744 232/* BGP static route configuration. */
d62a17ae 233struct bgp_static {
234 /* Backdoor configuration. */
235 int backdoor;
718e3744 236
d62a17ae 237 /* Label index configuration; applies to LU prefixes. */
d7c0a89a 238 uint32_t label_index;
1b6d5c7e
VV
239#define BGP_INVALID_LABEL_INDEX 0xFFFFFFFF
240
d62a17ae 241 /* Import check status. */
d7c0a89a 242 uint8_t valid;
718e3744 243
d62a17ae 244 /* IGP metric. */
d7c0a89a 245 uint32_t igpmetric;
718e3744 246
d62a17ae 247 /* IGP nexthop. */
248 struct in_addr igpnexthop;
718e3744 249
d62a17ae 250 /* Atomic set reference count (ie cause of pathlimit) */
d7c0a89a 251 uint32_t atomic;
718e3744 252
d62a17ae 253 /* BGP redistribute route-map. */
254 struct {
255 char *name;
256 struct route_map *map;
257 } rmap;
137446f9 258
d62a17ae 259 /* Route Distinguisher */
260 struct prefix_rd prd;
684a7227 261
d62a17ae 262 /* MPLS label. */
263 mpls_label_t label;
264
265 /* EVPN */
266 struct eth_segment_id *eth_s_id;
267 struct ethaddr *router_mac;
268 uint16_t encap_tunneltype;
269 struct prefix gatewayIp;
718e3744 270};
271
d62a17ae 272#define BGP_NEXTHOP_AFI_FROM_NHLEN(nhlen) \
273 ((nhlen) < IPV4_MAX_BYTELEN \
274 ? 0 \
275 : ((nhlen) < IPV6_MAX_BYTELEN ? AFI_IP : AFI_IP6))
fe3ca08f 276
d62a17ae 277#define BGP_ATTR_NEXTHOP_AFI_IP6(attr) \
278 (!CHECK_FLAG(attr->flag, ATTR_FLAG_BIT(BGP_ATTR_NEXT_HOP)) \
279 && ((attr)->mp_nexthop_len == 16 || (attr)->mp_nexthop_len == 32))
1defdda8
DS
280#define BGP_PATH_COUNTABLE(BI) \
281 (!CHECK_FLAG((BI)->flags, BGP_PATH_HISTORY) \
282 && !CHECK_FLAG((BI)->flags, BGP_PATH_REMOVED))
80e0ad24 283
1a392d46 284/* Flags which indicate a route is unuseable in some form */
1defdda8
DS
285#define BGP_PATH_UNUSEABLE \
286 (BGP_PATH_HISTORY | BGP_PATH_DAMPED | BGP_PATH_REMOVED)
1a392d46
PJ
287/* Macro to check BGP information is alive or not. Sadly,
288 * not equivalent to just checking previous, because of the
289 * sense of the additional VALID flag.
290 */
1defdda8
DS
291#define BGP_PATH_HOLDDOWN(BI) \
292 (!CHECK_FLAG((BI)->flags, BGP_PATH_VALID) \
293 || CHECK_FLAG((BI)->flags, BGP_PATH_UNUSEABLE))
1a392d46 294
718e3744 295#define DISTRIBUTE_IN_NAME(F) ((F)->dlist[FILTER_IN].name)
296#define DISTRIBUTE_IN(F) ((F)->dlist[FILTER_IN].alist)
297#define DISTRIBUTE_OUT_NAME(F) ((F)->dlist[FILTER_OUT].name)
298#define DISTRIBUTE_OUT(F) ((F)->dlist[FILTER_OUT].alist)
299
300#define PREFIX_LIST_IN_NAME(F) ((F)->plist[FILTER_IN].name)
301#define PREFIX_LIST_IN(F) ((F)->plist[FILTER_IN].plist)
302#define PREFIX_LIST_OUT_NAME(F) ((F)->plist[FILTER_OUT].name)
303#define PREFIX_LIST_OUT(F) ((F)->plist[FILTER_OUT].plist)
304
305#define FILTER_LIST_IN_NAME(F) ((F)->aslist[FILTER_IN].name)
306#define FILTER_LIST_IN(F) ((F)->aslist[FILTER_IN].aslist)
307#define FILTER_LIST_OUT_NAME(F) ((F)->aslist[FILTER_OUT].name)
308#define FILTER_LIST_OUT(F) ((F)->aslist[FILTER_OUT].aslist)
309
fee0f4c6 310#define ROUTE_MAP_IN_NAME(F) ((F)->map[RMAP_IN].name)
311#define ROUTE_MAP_IN(F) ((F)->map[RMAP_IN].map)
312#define ROUTE_MAP_OUT_NAME(F) ((F)->map[RMAP_OUT].name)
313#define ROUTE_MAP_OUT(F) ((F)->map[RMAP_OUT].map)
314
718e3744 315#define UNSUPPRESS_MAP_NAME(F) ((F)->usmap.name)
316#define UNSUPPRESS_MAP(F) ((F)->usmap.map)
317
2ec1e66f
DW
318/* path PREFIX (addpath rxid NUMBER) */
319#define PATH_ADDPATH_STR_BUFFER PREFIX2STR_BUFFER + 32
320
360660c6
DS
321enum bgp_path_type {
322 BGP_PATH_SHOW_ALL,
323 BGP_PATH_SHOW_BESTPATH,
324 BGP_PATH_SHOW_MULTIPATH
325};
4092b06c 326
d62a17ae 327static inline void bgp_bump_version(struct bgp_node *node)
3f9c7369 328{
d62a17ae 329 node->version = bgp_table_next_version(bgp_node_table(node));
3f9c7369
DS
330}
331
d62a17ae 332static inline int bgp_fibupd_safi(safi_t safi)
cd1964ff 333{
d62a17ae 334 if (safi == SAFI_UNICAST || safi == SAFI_MULTICAST
529efa23
PG
335 || safi == SAFI_LABELED_UNICAST
336 || safi == SAFI_FLOWSPEC)
d62a17ae 337 return 1;
338 return 0;
cd1964ff
DS
339}
340
718e3744 341/* Prototypes. */
4b7e6066 342extern void bgp_rib_remove(struct bgp_node *rn, struct bgp_path_info *ri,
db0e1937 343 struct peer *peer, afi_t afi, safi_t safi);
d62a17ae 344extern void bgp_process_queue_init(void);
345extern void bgp_route_init(void);
346extern void bgp_route_finish(void);
347extern void bgp_cleanup_routes(struct bgp *);
348extern void bgp_announce_route(struct peer *, afi_t, safi_t);
3f9c7369 349extern void bgp_stop_announce_route_timer(struct peer_af *paf);
d62a17ae 350extern void bgp_announce_route_all(struct peer *);
351extern void bgp_default_originate(struct peer *, afi_t, safi_t, int);
352extern void bgp_soft_reconfig_in(struct peer *, afi_t, safi_t);
353extern void bgp_clear_route(struct peer *, afi_t, safi_t);
354extern void bgp_clear_route_all(struct peer *);
355extern void bgp_clear_adj_in(struct peer *, afi_t, safi_t);
356extern void bgp_clear_stale_route(struct peer *, afi_t, safi_t);
357
358extern struct bgp_node *bgp_afi_node_get(struct bgp_table *table, afi_t afi,
359 safi_t safi, struct prefix *p,
360 struct prefix_rd *prd);
18ee8310
DS
361extern struct bgp_path_info *bgp_path_info_lock(struct bgp_path_info *path);
362extern struct bgp_path_info *bgp_path_info_unlock(struct bgp_path_info *path);
363extern void bgp_path_info_add(struct bgp_node *rn, struct bgp_path_info *ri);
364extern void bgp_path_info_reap(struct bgp_node *rn, struct bgp_path_info *ri);
365extern void bgp_path_info_delete(struct bgp_node *rn, struct bgp_path_info *ri);
4b7e6066 366extern struct bgp_path_info_extra *
18ee8310
DS
367bgp_path_info_extra_get(struct bgp_path_info *path);
368extern void bgp_path_info_set_flag(struct bgp_node *rn,
369 struct bgp_path_info *path, uint32_t flag);
370extern void bgp_path_info_unset_flag(struct bgp_node *rn,
371 struct bgp_path_info *path, uint32_t flag);
372extern void bgp_path_info_path_with_addpath_rx_str(struct bgp_path_info *ri,
373 char *buf);
d62a17ae 374
375extern int bgp_nlri_parse_ip(struct peer *, struct attr *, struct bgp_nlri *);
376
377extern int bgp_maximum_prefix_overflow(struct peer *, afi_t, safi_t, int);
378
9de1f7ff
DS
379extern void bgp_redistribute_add(struct bgp *bgp, struct prefix *p,
380 const union g_addr *nexthop, ifindex_t ifindex,
381 enum nexthop_types_t nhtype, uint32_t metric,
d7c0a89a 382 uint8_t type, unsigned short instance,
9de1f7ff 383 route_tag_t tag);
d7c0a89a
QY
384extern void bgp_redistribute_delete(struct bgp *, struct prefix *, uint8_t,
385 unsigned short);
386extern void bgp_redistribute_withdraw(struct bgp *, afi_t, int, unsigned short);
d62a17ae 387
388extern void bgp_static_add(struct bgp *);
389extern void bgp_static_delete(struct bgp *);
390extern void bgp_static_redo_import_check(struct bgp *);
391extern void bgp_purge_static_redist_routes(struct bgp *bgp);
392extern void bgp_static_update(struct bgp *, struct prefix *,
393 struct bgp_static *, afi_t, safi_t);
394extern void bgp_static_withdraw(struct bgp *, struct prefix *, afi_t, safi_t);
395
396extern int bgp_static_set_safi(afi_t afi, safi_t safi, struct vty *vty,
397 const char *, const char *, const char *,
398 const char *, int, const char *, const char *,
399 const char *, const char *);
400
401extern int bgp_static_unset_safi(afi_t afi, safi_t safi, struct vty *,
402 const char *, const char *, const char *, int,
403 const char *, const char *, const char *);
718e3744 404
94f2b392 405/* this is primarily for MPLS-VPN */
d7c0a89a 406extern int bgp_update(struct peer *, struct prefix *, uint32_t, struct attr *,
d62a17ae 407 afi_t, safi_t, int, int, struct prefix_rd *,
d7c0a89a
QY
408 mpls_label_t *, uint32_t, int, struct bgp_route_evpn *);
409extern int bgp_withdraw(struct peer *, struct prefix *, uint32_t, struct attr *,
410 afi_t, safi_t, int, int, struct prefix_rd *,
411 mpls_label_t *, uint32_t, struct bgp_route_evpn *);
718e3744 412
94f2b392 413/* for bgp_nexthop and bgp_damp */
d62a17ae 414extern void bgp_process(struct bgp *, struct bgp_node *, afi_t, safi_t);
cb1faec9
DS
415
416/*
417 * Add an end-of-initial-update marker to the process queue. This is just a
418 * queue element with NULL bgp node.
419 */
d62a17ae 420extern void bgp_add_eoiu_mark(struct bgp *);
60466a63
QY
421extern void bgp_config_write_table_map(struct vty *, struct bgp *, afi_t,
422 safi_t);
2b791107 423extern void bgp_config_write_network(struct vty *, struct bgp *, afi_t, safi_t);
60466a63
QY
424extern void bgp_config_write_distance(struct vty *, struct bgp *, afi_t,
425 safi_t);
d62a17ae 426
4b7e6066
DS
427extern void bgp_aggregate_increment(struct bgp *bgp, struct prefix *p,
428 struct bgp_path_info *path, afi_t afi,
429 safi_t safi);
430extern void bgp_aggregate_decrement(struct bgp *bgp, struct prefix *p,
431 struct bgp_path_info *path, afi_t afi,
432 safi_t safi);
d62a17ae 433
4b7e6066
DS
434extern uint8_t bgp_distance_apply(struct prefix *p, struct bgp_path_info *path,
435 afi_t afi, safi_t safi, struct bgp *bgp);
d62a17ae 436
437extern afi_t bgp_node_afi(struct vty *);
438extern safi_t bgp_node_safi(struct vty *);
439
4b7e6066
DS
440extern struct bgp_path_info *info_make(int type, int sub_type,
441 unsigned short instance,
442 struct peer *peer, struct attr *attr,
443 struct bgp_node *rn);
444
445extern void route_vty_out(struct vty *vty, struct prefix *p,
446 struct bgp_path_info *path, int display, safi_t safi,
447 json_object *json_paths);
448extern void route_vty_out_tag(struct vty *vty, struct prefix *p,
449 struct bgp_path_info *path, int display,
450 safi_t safi, json_object *json);
94d4c685
DS
451extern void route_vty_out_tmp(struct vty *vty, struct prefix *p,
452 struct attr *attr, safi_t safi, bool use_json,
453 json_object *json_ar);
d62a17ae 454extern void route_vty_out_overlay(struct vty *vty, struct prefix *p,
9b6d8fcf 455 struct bgp_path_info *path, int display,
d62a17ae 456 json_object *json);
457
458extern int subgroup_process_announce_selected(struct update_subgroup *subgrp,
4b7e6066 459 struct bgp_path_info *selected,
d62a17ae 460 struct bgp_node *rn,
d7c0a89a 461 uint32_t addpath_tx_id);
3f9c7369 462
4b7e6066
DS
463extern int subgroup_announce_check(struct bgp_node *rn,
464 struct bgp_path_info *ri,
3f9c7369
DS
465 struct update_subgroup *subgrp,
466 struct prefix *p, struct attr *attr);
467
d62a17ae 468extern void bgp_peer_clear_node_queue_drain_immediate(struct peer *peer);
469extern void bgp_process_queues_drain_immediate(void);
bb86c601 470
65efcfce 471/* for encap/vpn */
d62a17ae 472extern struct bgp_node *bgp_afi_node_lookup(struct bgp_table *table, afi_t afi,
473 safi_t safi, struct prefix *p,
474 struct prefix_rd *prd);
18ee8310
DS
475extern struct bgp_path_info *bgp_path_info_new(void);
476extern void bgp_path_info_restore(struct bgp_node *rn,
477 struct bgp_path_info *path);
478
479extern int bgp_path_info_cmp_compatible(struct bgp *bgp,
480 struct bgp_path_info *new,
481 struct bgp_path_info *exist,
482 char *pfx_buf, afi_t afi, safi_t safi);
7f323236 483extern void bgp_attr_add_gshut_community(struct attr *attr);
d62a17ae 484
485extern void bgp_best_selection(struct bgp *bgp, struct bgp_node *rn,
486 struct bgp_maxpaths_cfg *mpath_cfg,
4b7e6066 487 struct bgp_path_info_pair *result, afi_t afi,
d62a17ae 488 safi_t safi);
489extern void bgp_zebra_clear_route_change_flags(struct bgp_node *rn);
490extern int bgp_zebra_has_route_changed(struct bgp_node *rn,
4b7e6066 491 struct bgp_path_info *selected);
d62a17ae 492
493extern void route_vty_out_detail_header(struct vty *vty, struct bgp *bgp,
494 struct bgp_node *rn,
495 struct prefix_rd *prd, afi_t afi,
496 safi_t safi, json_object *json);
497extern void route_vty_out_detail(struct vty *vty, struct bgp *bgp,
9b6d8fcf 498 struct prefix *p, struct bgp_path_info *path,
d62a17ae 499 afi_t afi, safi_t safi,
500 json_object *json_paths);
1ae44dfc
LB
501extern int bgp_show_table_rd(struct vty *vty, struct bgp *bgp, safi_t safi,
502 struct bgp_table *table, struct prefix_rd *prd,
503 enum bgp_show_type type, void *output_arg,
9f049418 504 bool use_json);
00d252cb 505#endif /* _QUAGGA_BGP_ROUTE_H */