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