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