]> git.proxmox.com Git - mirror_frr.git/blame - bgpd/bgpd.h
Merge pull request #12642 from anlancs/fix/bgpd-debug-name
[mirror_frr.git] / bgpd / bgpd.h
CommitLineData
718e3744 1/* BGP message definition header.
896014f4
DL
2 * Copyright (C) 1996, 97, 98, 99, 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_BGPD_H
22#define _QUAGGA_BGPD_H
23
19df7279 24#include "qobj.h"
d3ecc69e
QY
25#include <pthread.h>
26
2b9bcf30 27#include "hook.h"
1ac267a2 28#include "frr_pthread.h"
856ca177 29#include "lib/json.h"
6aeb9e78 30#include "vrf.h"
94c60424 31#include "vty.h"
92a9e6f2 32#include "srv6.h"
17136bf2 33#include "iana_afi.h"
6aeb9e78 34
718e3744 35/* For union sockunion. */
3f9c7369 36#include "queue.h"
718e3744 37#include "sockunion.h"
518f0eb1 38#include "routemap.h"
ffd0c037 39#include "linklist.h"
8efe88ea 40#include "defaults.h"
4a1ab8e4 41#include "bgp_memory.h"
14c1a7bf 42#include "bitfield.h"
fe1dc5a3 43#include "vxlan.h"
955bfd98 44#include "bgp_labelpool.h"
dcc68b5e 45#include "bgp_addpath_types.h"
f663c581 46#include "bgp_nexthop.h"
338f4a78 47#include "bgp_io.h"
718e3744 48
21bfce98 49#include "lib/bfd.h"
70cd87ca 50#include "lib/orr_msg.h"
21bfce98 51
04b6bdc0 52#define BGP_MAX_HOSTNAME 64 /* Linux max, is larger than most other sys */
40520c36 53#define BGP_PEER_MAX_HASH_SIZE 16384
04b6bdc0 54
5c81b96a 55/* Default interval for IPv6 RAs when triggered by BGP unnumbered neighbor. */
56#define BGP_UNNUM_DEFAULT_RA_INTERVAL 10
57
3f9c7369
DS
58struct update_subgroup;
59struct bpacket;
4762c213 60struct bgp_pbr_config;
3f9c7369 61
0299c004
DS
62/*
63 * Allow the neighbor XXXX remote-as to take internal or external
d62a17ae 64 * AS_SPECIFIED is zero to auto-inherit original non-feature/enhancement
65 * behavior
0299c004
DS
66 * in the system.
67 */
d62a17ae 68enum { AS_UNSPECIFIED = 0,
69 AS_SPECIFIED,
70 AS_INTERNAL,
71 AS_EXTERNAL,
0299c004
DS
72};
73
2d3dd828 74/* Zebra Gracaful Restart states */
75enum zebra_gr_mode {
76 ZEBRA_GR_DISABLE = 0,
77 ZEBRA_GR_ENABLE
78};
79
718e3744 80/* Typedef BGP specific types. */
d7c0a89a
QY
81typedef uint32_t as_t;
82typedef uint16_t as16_t; /* we may still encounter 16 Bit asnums */
83typedef uint16_t bgp_size_t;
718e3744 84
d62a17ae 85enum bgp_af_index {
86 BGP_AF_START,
87 BGP_AF_IPV4_UNICAST = BGP_AF_START,
88 BGP_AF_IPV4_MULTICAST,
89 BGP_AF_IPV4_VPN,
90 BGP_AF_IPV6_UNICAST,
91 BGP_AF_IPV6_MULTICAST,
92 BGP_AF_IPV6_VPN,
93 BGP_AF_IPV4_ENCAP,
94 BGP_AF_IPV6_ENCAP,
95 BGP_AF_L2VPN_EVPN,
96 BGP_AF_IPV4_LBL_UNICAST,
97 BGP_AF_IPV6_LBL_UNICAST,
7c40bf39 98 BGP_AF_IPV4_FLOWSPEC,
99 BGP_AF_IPV6_FLOWSPEC,
d62a17ae 100 BGP_AF_MAX
3f9c7369
DS
101};
102
d62a17ae 103#define AF_FOREACH(af) for ((af) = BGP_AF_START; (af) < BGP_AF_MAX; (af)++)
3f9c7369 104
d1927ebe
AS
105#define FOREACH_SAFI(safi) \
106 for (safi = SAFI_UNICAST; safi < SAFI_MAX; safi++)
3f9c7369 107
1ac267a2
DL
108extern struct frr_pthread *bgp_pth_io;
109extern struct frr_pthread *bgp_pth_ka;
110
718e3744 111/* BGP master for system wide configurations and variables. */
d62a17ae 112struct bgp_master {
113 /* BGP instance list. */
114 struct list *bgp;
115
116 /* BGP thread master. */
117 struct thread_master *master;
718e3744 118
d62a17ae 119 /* Listening sockets */
120 struct list *listen_sockets;
718e3744 121
d62a17ae 122 /* BGP port number. */
d7c0a89a 123 uint16_t port;
3a02d1f7 124
85e9cd9a
AMR
125 /* Listener addresses */
126 struct list *addresses;
718e3744 127
48ecf8f5
DS
128 /* The Mac table */
129 struct hash *self_mac_hash;
130
d62a17ae 131 /* BGP start time. */
132 time_t start_time;
133
134 /* Various BGP global configuration. */
d7c0a89a 135 uint8_t options;
d1adb448 136
718e3744 137#define BGP_OPT_NO_FIB (1 << 0)
d8a9922d
DS
138#define BGP_OPT_NO_LISTEN (1 << 1)
139#define BGP_OPT_NO_ZEBRA (1 << 2)
3f9c7369 140
d62a17ae 141 uint64_t updgrp_idspace;
142 uint64_t subgrp_idspace;
5fe9f963 143
d62a17ae 144 /* timer to dampen route map changes */
145 struct thread *t_rmap_update; /* Handle route map updates */
d7c0a89a 146 uint32_t rmap_update_timer; /* Route map update timer */
5fe9f963 147#define RMAP_DEFAULT_UPDATE_TIMER 5 /* disabled by default */
19df7279 148
e9eb5f63 149 /* Id space for automatic RD derivation for an EVI/VRF */
150 bitfield_t rd_idspace;
151
955bfd98
PZ
152 /* dynamic mpls label allocation pool */
153 struct labelpool labelpool;
154
e2f3a930
T
155 /* BGP-EVPN VRF ID. Defaults to default VRF (if any) */
156 struct bgp* bgp_evpn;
157
c2d020ad
DS
158 /* How big should we set the socket buffer size */
159 uint32_t socket_buffer;
160
9acb67cb
DS
161 /* Should we do wait for fib install globally? */
162 bool wait_for_fib;
163
c44ab6f1
AK
164 /* EVPN multihoming */
165 struct bgp_evpn_mh_info *mh_info;
166
d70583f7
D
167 /* global update-delay timer values */
168 uint16_t v_update_delay;
169 uint16_t v_establish_wait;
170
05bd726c 171 uint32_t flags;
172#define BM_FLAG_GRACEFUL_SHUTDOWN (1 << 0)
ec0acb80 173#define BM_FLAG_SEND_EXTRA_DATA_TO_ZEBRA (1 << 1)
e46723a5 174
97b4a0ec 175 bool terminating; /* global flag that sigint terminate seen */
425bd64b
PS
176
177 /* DSCP value for TCP sessions */
178 uint8_t tcp_dscp;
179
a0b937de
SW
180#define BM_DEFAULT_INQ_LIMIT 10000
181 uint32_t inq_limit;
182
96244aca 183 QOBJ_FIELDS;
718e3744 184};
96244aca 185DECLARE_QOBJ_TYPE(bgp_master);
718e3744 186
73ac8160 187/* BGP route-map structure. */
d62a17ae 188struct bgp_rmap {
189 char *name;
190 struct route_map *map;
73ac8160
DS
191};
192
d62a17ae 193struct bgp_redist {
d7c0a89a 194 unsigned short instance;
7c8ff89e 195
d62a17ae 196 /* BGP redistribute metric configuration. */
d7c0a89a
QY
197 uint8_t redist_metric_flag;
198 uint32_t redist_metric;
7c8ff89e 199
d62a17ae 200 /* BGP redistribute route-map. */
201 struct bgp_rmap rmap;
7c8ff89e
DS
202};
203
70cd87ca
MK
204struct bgp_orr_igp_metric {
205 struct prefix prefix;
206 uint32_t igp_metric;
207};
208
209struct bgp_orr_group {
210 /* Name of this ORR group */
211 char *name;
212
213 /* Address Family Identifiers */
214 afi_t afi;
215 safi_t safi;
216
217 /* Pointer to BGP */
218 struct bgp *bgp;
219
220 /* Root Routers of the group */
221 struct peer *primary;
222 struct peer *secondary;
223 struct peer *tertiary;
224
225 /* Active Root Router of the group */
226 struct peer *active;
227
228 /* RR clients belong to this group */
229 struct list *rr_client_list;
230
231 /* IGP metric data from active root */
232 struct list *igp_metric_info;
233
234 /* Route table calculated from active root for this group */
235 struct bgp_table *route_table;
236};
237
9c2fd3fe 238enum vpn_policy_direction {
ddb5b488
PZ
239 BGP_VPN_POLICY_DIR_FROMVPN = 0,
240 BGP_VPN_POLICY_DIR_TOVPN = 1,
241 BGP_VPN_POLICY_DIR_MAX = 2
9c2fd3fe 242};
ddb5b488 243
e70e9f8e
PZ
244struct vpn_policy {
245 struct bgp *bgp; /* parent */
246 afi_t afi;
247 struct ecommunity *rtlist[BGP_VPN_POLICY_DIR_MAX];
248 struct ecommunity *import_redirect_rtlist;
249 char *rmap_name[BGP_VPN_POLICY_DIR_MAX];
250 struct route_map *rmap[BGP_VPN_POLICY_DIR_MAX];
251
252 /* should be mpls_label_t? */
253 uint32_t tovpn_label; /* may be MPLS_LABEL_NONE */
254 uint32_t tovpn_zebra_vrf_label_last_sent;
255 struct prefix_rd tovpn_rd;
256 struct prefix tovpn_nexthop; /* unset => set to 0 */
257 uint32_t flags;
258#define BGP_VPN_POLICY_TOVPN_LABEL_AUTO (1 << 0)
259#define BGP_VPN_POLICY_TOVPN_RD_SET (1 << 1)
260#define BGP_VPN_POLICY_TOVPN_NEXTHOP_SET (1 << 2)
92a9e6f2 261#define BGP_VPN_POLICY_TOVPN_SID_AUTO (1 << 3)
12a844a5 262
1d4e8b0d
DS
263 /*
264 * If we are importing another vrf into us keep a list of
265 * vrf names that are being imported into us.
266 */
12a844a5 267 struct list *import_vrf;
1d4e8b0d
DS
268
269 /*
270 * if we are being exported to another vrf keep a list of
271 * vrf names that we are being exported to.
272 */
12a844a5 273 struct list *export_vrf;
92a9e6f2
HS
274
275 /*
276 * Segment-Routing SRv6 Mode
277 */
278 uint32_t tovpn_sid_index; /* unset => set to 0 */
279 struct in6_addr *tovpn_sid;
bee2e7d0 280 struct srv6_locator_chunk *tovpn_sid_locator;
a45cd34e 281 uint32_t tovpn_sid_transpose_label;
92a9e6f2 282 struct in6_addr *tovpn_zebra_vrf_sid_last_sent;
e70e9f8e
PZ
283};
284
ad4cbda1 285/*
286 * Type of 'struct bgp'.
287 * - Default: The default instance
288 * - VRF: A specific (non-default) VRF
289 * - View: An instance used for route exchange
290 * The "default" instance is treated separately to simplify the code. Note
291 * that if deployed in a Multi-VRF environment, it may not exist.
292 */
d62a17ae 293enum bgp_instance_type {
294 BGP_INSTANCE_TYPE_DEFAULT,
295 BGP_INSTANCE_TYPE_VRF,
296 BGP_INSTANCE_TYPE_VIEW
ad4cbda1 297};
298
36235319 299#define BGP_SEND_EOR(bgp, afi, safi) \
892fedb6 300 (!CHECK_FLAG(bgp->flags, BGP_FLAG_GR_DISABLE_EOR) \
36235319
QY
301 && ((bgp->gr_info[afi][safi].t_select_deferral == NULL) \
302 || (bgp->gr_info[afi][safi].eor_required \
303 == bgp->gr_info[afi][safi].eor_received)))
b0965c44 304
305/* BGP GR Global ds */
306
2ba1fe69 307#define BGP_GLOBAL_GR_MODE 4
308#define BGP_GLOBAL_GR_EVENT_CMD 4
b0965c44 309
b0965c44 310/* Graceful restart selection deferral timer info */
311struct graceful_restart_info {
312 /* Count of EOR message expected */
313 uint32_t eor_required;
314 /* Count of EOR received */
315 uint32_t eor_received;
316 /* Deferral Timer */
317 struct thread *t_select_deferral;
26742171
DS
318 /* Routes Deferred */
319 uint32_t gr_deferred;
b0965c44 320 /* Best route select */
321 struct thread *t_route_select;
2d3dd828 322 /* AFI, SAFI enabled */
323 bool af_enabled[AFI_MAX][SAFI_MAX];
324 /* Route update completed */
325 bool route_sync[AFI_MAX][SAFI_MAX];
b0965c44 326};
327
b0965c44 328enum global_mode {
329 GLOBAL_HELPER = 0, /* This is the default mode */
330 GLOBAL_GR,
331 GLOBAL_DISABLE,
332 GLOBAL_INVALID
333};
334
335enum global_gr_command {
336 GLOBAL_GR_CMD = 0,
337 NO_GLOBAL_GR_CMD,
338 GLOBAL_DISABLE_CMD,
339 NO_GLOBAL_DISABLE_CMD
340};
341
342#define BGP_GR_SUCCESS 0
343#define BGP_GR_FAILURE 1
344
f7e1c681 345/* Handling of BGP link bandwidth (LB) on receiver - whether and how to
346 * do weighted ECMP. Note: This applies after multipath computation.
347 */
348enum bgp_link_bw_handling {
349 /* Do ECMP if some paths don't have LB - default */
350 BGP_LINK_BW_ECMP,
351 /* Completely ignore LB, just do regular ECMP */
352 BGP_LINK_BW_IGNORE_BW,
353 /* Skip paths without LB, do wECMP on others */
354 BGP_LINK_BW_SKIP_MISSING,
355 /* Do wECMP with default weight for paths not having LB */
356 BGP_LINK_BW_DEFWT_4_MISSING
357};
358
c589d847
AK
359RB_HEAD(bgp_es_vrf_rb_head, bgp_evpn_es_vrf);
360RB_PROTOTYPE(bgp_es_vrf_rb_head, bgp_evpn_es_vrf, rb_node, bgp_es_vrf_rb_cmp);
361
0d020cd6
PR
362struct bgp_snmp_stats {
363 /* SNMP variables for mplsL3Vpn*/
364 time_t creation_time;
365 time_t modify_time;
366 bool active;
7fd28dd2
PR
367 uint32_t routes_added;
368 uint32_t routes_deleted;
0d020cd6
PR
369};
370
92a9e6f2
HS
371struct bgp_srv6_function {
372 struct in6_addr sid;
373 char locator_name[SRV6_LOCNAME_SIZE];
374};
375
718e3744 376/* BGP instance structure. */
d62a17ae 377struct bgp {
378 /* AS number of this BGP instance. */
379 as_t as;
380
381 /* Name of this BGP instance. */
382 char *name;
3572fb26 383 char *name_pretty; /* printable "VRF|VIEW name|default" */
d62a17ae 384
385 /* Type of instance and VRF id. */
386 enum bgp_instance_type inst_type;
387 vrf_id_t vrf_id;
388
389 /* Reference count to allow peer_delete to finish after bgp_delete */
390 int lock;
391
392 /* Self peer. */
393 struct peer *peer_self;
394
395 /* BGP peer. */
396 struct list *peer;
397 struct hash *peerhash;
398
399 /* BGP peer group. */
400 struct list *group;
401
402 /* The maximum number of BGP dynamic neighbors that can be created */
403 int dynamic_neighbors_limit;
404
405 /* The current number of BGP dynamic neighbors */
406 int dynamic_neighbors_count;
407
408 struct hash *update_groups[BGP_AF_MAX];
409
410 /*
411 * Global statistics for update groups.
412 */
413 struct {
d7c0a89a
QY
414 uint32_t join_events;
415 uint32_t prune_events;
416 uint32_t merge_events;
417 uint32_t split_events;
418 uint32_t updgrp_switch_events;
419 uint32_t peer_refreshes_combined;
420 uint32_t adj_count;
421 uint32_t merge_checks_triggered;
422
423 uint32_t updgrps_created;
424 uint32_t updgrps_deleted;
425 uint32_t subgrps_created;
426 uint32_t subgrps_deleted;
d62a17ae 427 } update_group_stats;
428
0d020cd6
PR
429 struct bgp_snmp_stats *snmp_stats;
430
d62a17ae 431 /* BGP configuration. */
d7c0a89a 432 uint16_t config;
c2d58d6d 433#define BGP_CONFIG_CLUSTER_ID (1 << 0)
434#define BGP_CONFIG_CONFEDERATION (1 << 1)
718e3744 435
d62a17ae 436 /* BGP router identifier. */
437 struct in_addr router_id;
438 struct in_addr router_id_static;
439 struct in_addr router_id_zebra;
718e3744 440
d62a17ae 441 /* BGP route reflector cluster ID. */
442 struct in_addr cluster_id;
718e3744 443
d62a17ae 444 /* BGP confederation information. */
445 as_t confed_id;
446 as_t *confed_peers;
447 int confed_peers_cnt;
718e3744 448
d62a17ae 449 struct thread
450 *t_startup; /* start-up timer on only once at the beginning */
abc920f8 451
d7c0a89a 452 uint32_t v_maxmed_onstartup; /* Duration of max-med on start-up */
abc920f8 453#define BGP_MAXMED_ONSTARTUP_UNCONFIGURED 0 /* 0 means off, its the default */
d7c0a89a
QY
454 uint32_t maxmed_onstartup_value; /* Max-med value when active on
455 start-up */
d62a17ae 456 struct thread
457 *t_maxmed_onstartup; /* non-null when max-med onstartup is on */
d7c0a89a 458 uint8_t maxmed_onstartup_over; /* Flag to make it effective only once */
d62a17ae 459
ff8a8a7a
CS
460 bool v_maxmed_admin; /* true/false if max-med administrative is on/off
461 */
462#define BGP_MAXMED_ADMIN_UNCONFIGURED false /* Off by default */
d7c0a89a
QY
463 uint32_t maxmed_admin_value; /* Max-med value when administrative in on
464 */
abc920f8
DS
465#define BGP_MAXMED_VALUE_DEFAULT 4294967294 /* Maximum by default */
466
d7c0a89a
QY
467 uint8_t maxmed_active; /* 1/0 if max-med is active or not */
468 uint32_t maxmed_value; /* Max-med value when its active */
d62a17ae 469
470 /* BGP update delay on startup */
471 struct thread *t_update_delay;
472 struct thread *t_establish_wait;
7f1f9314
DS
473 struct thread *t_revalidate[AFI_MAX][SAFI_MAX];
474
d7c0a89a
QY
475 uint8_t update_delay_over;
476 uint8_t main_zebra_update_hold;
477 uint8_t main_peers_update_hold;
478 uint16_t v_update_delay;
479 uint16_t v_establish_wait;
d62a17ae 480 char update_delay_begin_time[64];
481 char update_delay_end_time[64];
482 char update_delay_zebra_resume_time[64];
483 char update_delay_peers_resume_time[64];
d7c0a89a
QY
484 uint32_t established;
485 uint32_t restarted_peers;
486 uint32_t implicit_eors;
487 uint32_t explicit_eors;
f188f2c4
DS
488#define BGP_UPDATE_DELAY_DEF 0
489#define BGP_UPDATE_DELAY_MIN 0
490#define BGP_UPDATE_DELAY_MAX 3600
491
b1875e65 492 /* Reference bandwidth for BGP link-bandwidth. Used when
493 * the LB value has to be computed based on some other
494 * factor (e.g., number of multipaths for the prefix)
495 * Value is in Mbps
496 */
497 uint32_t lb_ref_bw;
498#define BGP_LINK_BW_REF_BW 1
499
d62a17ae 500 /* BGP flags. */
fd6b4f06 501 uint64_t flags;
97a52c82
DA
502#define BGP_FLAG_ALWAYS_COMPARE_MED (1ULL << 0)
503#define BGP_FLAG_DETERMINISTIC_MED (1ULL << 1)
504#define BGP_FLAG_MED_MISSING_AS_WORST (1ULL << 2)
505#define BGP_FLAG_MED_CONFED (1ULL << 3)
506#define BGP_FLAG_NO_CLIENT_TO_CLIENT (1ULL << 4)
507#define BGP_FLAG_COMPARE_ROUTER_ID (1ULL << 5)
508#define BGP_FLAG_ASPATH_IGNORE (1ULL << 6)
509#define BGP_FLAG_IMPORT_CHECK (1ULL << 7)
510#define BGP_FLAG_NO_FAST_EXT_FAILOVER (1ULL << 8)
511#define BGP_FLAG_LOG_NEIGHBOR_CHANGES (1ULL << 9)
b0965c44 512
513/* This flag is set when we have full BGP Graceful-Restart mode enable */
97a52c82
DA
514#define BGP_FLAG_GRACEFUL_RESTART (1ULL << 10)
515
516#define BGP_FLAG_ASPATH_CONFED (1ULL << 11)
517#define BGP_FLAG_ASPATH_MULTIPATH_RELAX (1ULL << 12)
518#define BGP_FLAG_RR_ALLOW_OUTBOUND_POLICY (1ULL << 13)
519#define BGP_FLAG_DISABLE_NH_CONNECTED_CHK (1ULL << 14)
520#define BGP_FLAG_MULTIPATH_RELAX_AS_SET (1ULL << 15)
521#define BGP_FLAG_FORCE_STATIC_PROCESS (1ULL << 16)
522#define BGP_FLAG_SHOW_HOSTNAME (1ULL << 17)
523#define BGP_FLAG_GR_PRESERVE_FWD (1ULL << 18)
524#define BGP_FLAG_GRACEFUL_SHUTDOWN (1ULL << 19)
525#define BGP_FLAG_DELETE_IN_PROGRESS (1ULL << 20)
526#define BGP_FLAG_SELECT_DEFER_DISABLE (1ULL << 21)
527#define BGP_FLAG_GR_DISABLE_EOR (1ULL << 22)
528#define BGP_FLAG_EBGP_REQUIRES_POLICY (1ULL << 23)
529#define BGP_FLAG_SHOW_NEXTHOP_HOSTNAME (1ULL << 24)
b0965c44 530
9cf59432 531/* This flag is set if the instance is in administrative shutdown */
97a52c82
DA
532#define BGP_FLAG_SHUTDOWN (1ULL << 25)
533#define BGP_FLAG_SUPPRESS_FIB_PENDING (1ULL << 26)
534#define BGP_FLAG_SUPPRESS_DUPLICATES (1ULL << 27)
535#define BGP_FLAG_PEERTYPE_MULTIPATH_RELAX (1ULL << 29)
f2ca5c5b 536/* Indicate Graceful Restart support for BGP NOTIFICATION messages */
97a52c82 537#define BGP_FLAG_GRACEFUL_NOTIFICATION (1ULL << 30)
1ae314be 538/* Send Hard Reset CEASE Notification for 'Administrative Reset' */
97a52c82
DA
539#define BGP_FLAG_HARD_ADMIN_RESET (1ULL << 31)
540/* Evaluate the AIGP attribute during the best path selection process */
541#define BGP_FLAG_COMPARE_AIGP (1ULL << 32)
b16bcbba
TA
542
543 /* BGP default address-families.
544 * New peers inherit enabled afi/safis from bgp instance.
545 */
546 uint16_t default_af[AFI_MAX][SAFI_MAX];
9cf59432 547
2ba1fe69 548 enum global_mode GLOBAL_GR_FSM[BGP_GLOBAL_GR_MODE]
36235319 549 [BGP_GLOBAL_GR_EVENT_CMD];
b0965c44 550 enum global_mode global_gr_present_state;
551
2d3dd828 552 /* This variable stores the current Graceful Restart state of Zebra
553 * - ZEBRA_GR_ENABLE / ZEBRA_GR_DISABLE
554 */
555 enum zebra_gr_mode present_zebra_gr_state;
556
d62a17ae 557 /* BGP Per AF flags */
d7c0a89a 558 uint16_t af_flags[AFI_MAX][SAFI_MAX];
f4882003 559#define BGP_CONFIG_DAMPENING (1 << 0)
2c29b18a 560/* l2vpn evpn flags - 1 << 0 is used for DAMPENNG */
d4a88de3
AD
561#define BGP_L2VPN_EVPN_ADV_IPV4_UNICAST (1 << 1)
562#define BGP_L2VPN_EVPN_ADV_IPV4_UNICAST_GW_IP (1 << 2)
563#define BGP_L2VPN_EVPN_ADV_IPV6_UNICAST (1 << 3)
564#define BGP_L2VPN_EVPN_ADV_IPV6_UNICAST_GW_IP (1 << 4)
565#define BGP_L2VPN_EVPN_DEFAULT_ORIGINATE_IPV4 (1 << 5)
566#define BGP_L2VPN_EVPN_DEFAULT_ORIGINATE_IPV6 (1 << 6)
f4882003 567/* import/export between address families */
d4a88de3
AD
568#define BGP_CONFIG_VRF_TO_MPLSVPN_EXPORT (1 << 7)
569#define BGP_CONFIG_MPLSVPN_TO_VRF_IMPORT (1 << 8)
f4882003 570/* vrf-route leaking flags */
d4a88de3
AD
571#define BGP_CONFIG_VRF_TO_VRF_IMPORT (1 << 9)
572#define BGP_CONFIG_VRF_TO_VRF_EXPORT (1 << 10)
a486300b
PG
573/* vpnvx retain flag */
574#define BGP_VPNVX_RETAIN_ROUTE_TARGET_ALL (1 << 11)
154faa50 575
210ec2a0
AS
576 /* BGP per AF peer count */
577 uint32_t af_peer_count[AFI_MAX][SAFI_MAX];
578
f663c581
RW
579 /* Tree for next-hop lookup cache. */
580 struct bgp_nexthop_cache_head nexthop_cache_table[AFI_MAX];
6aeb9e78 581
f663c581
RW
582 /* Tree for import-check */
583 struct bgp_nexthop_cache_head import_check_table[AFI_MAX];
6aeb9e78 584
d62a17ae 585 struct bgp_table *connected_table[AFI_MAX];
6aeb9e78 586
d62a17ae 587 struct hash *address_hash;
6aeb9e78 588
db0e1937
MK
589 /* DB for all local tunnel-ips - used mainly for martian checks
590 Currently it only has all VxLan tunnel IPs*/
591 struct hash *tip_hash;
592
d62a17ae 593 /* Static route configuration. */
594 struct bgp_table *route[AFI_MAX][SAFI_MAX];
718e3744 595
d62a17ae 596 /* Aggregate address configuration. */
597 struct bgp_table *aggregate[AFI_MAX][SAFI_MAX];
718e3744 598
d62a17ae 599 /* BGP routing information base. */
600 struct bgp_table *rib[AFI_MAX][SAFI_MAX];
718e3744 601
d62a17ae 602 /* BGP table route-map. */
603 struct bgp_rmap table_map[AFI_MAX][SAFI_MAX];
73ac8160 604
d62a17ae 605 /* BGP redistribute configuration. */
606 struct list *redist[AFI_MAX][ZEBRA_ROUTE_MAX];
718e3744 607
318cac96 608 /* Allocate MPLS labels */
d7c0a89a 609 uint8_t allocate_mpls_labels[AFI_MAX][SAFI_MAX];
318cac96 610
f3d32faa
PG
611 /* Allocate hash entries to store policy routing information
612 * The hash are used to host pbr rules somewhere.
613 * Actually, pbr will only be used by flowspec
614 * those hash elements will have relationship together as
615 * illustrated in below diagram:
616 *
617 * pbr_action a <----- pbr_match i <--- pbr_match_entry 1..n
618 * <----- pbr_match j <--- pbr_match_entry 1..m
27e376d4 619 * <----- pbr_rule k
f3d32faa
PG
620 *
621 * - here in BGP structure, the list of match and actions will
622 * stand for the list of ipset sets, and table_ids in the kernel
623 * - the arrow above between pbr_match and pbr_action indicate
624 * that a backpointer permits match to find the action
625 * - the arrow betwen match_entry and match is a hash list
626 * contained in match, that lists the whole set of entries
627 */
628 struct hash *pbr_match_hash;
27e376d4 629 struct hash *pbr_rule_hash;
f3d32faa
PG
630 struct hash *pbr_action_hash;
631
d62a17ae 632 /* timer to re-evaluate neighbor default-originate route-maps */
633 struct thread *t_rmap_def_originate_eval;
0de4848d
DS
634#define RMAP_DEFAULT_ORIGINATE_EVAL_TIMER 5
635
d62a17ae 636 /* BGP distance configuration. */
d7c0a89a
QY
637 uint8_t distance_ebgp[AFI_MAX][SAFI_MAX];
638 uint8_t distance_ibgp[AFI_MAX][SAFI_MAX];
639 uint8_t distance_local[AFI_MAX][SAFI_MAX];
d62a17ae 640
641 /* BGP default local-preference. */
d7c0a89a 642 uint32_t default_local_pref;
d62a17ae 643
644 /* BGP default subgroup pkt queue max */
d7c0a89a 645 uint32_t default_subgroup_pkt_queue_max;
d62a17ae 646
647 /* BGP default timer. */
d7c0a89a
QY
648 uint32_t default_holdtime;
649 uint32_t default_keepalive;
5d5393b9 650 uint32_t default_connect_retry;
6c537a18 651 uint32_t default_delayopen;
d62a17ae 652
b042667a
TI
653 /* BGP minimum holdtime. */
654 uint16_t default_min_holdtime;
655
d62a17ae 656 /* BGP graceful restart */
d7c0a89a
QY
657 uint32_t restart_time;
658 uint32_t stalepath_time;
b0965c44 659 uint32_t select_defer_time;
660 struct graceful_restart_info gr_info[AFI_MAX][SAFI_MAX];
2d3dd828 661 uint32_t rib_stale_time;
662
8606be87
DA
663 /* BGP Long-lived Graceful Restart */
664 uint32_t llgr_stale_time;
665
cfd47646 666#define BGP_ROUTE_SELECT_DELAY 1
667#define BGP_MAX_BEST_ROUTE_SELECT 10000
d62a17ae 668 /* Maximum-paths configuration */
669 struct bgp_maxpaths_cfg {
d7c0a89a
QY
670 uint16_t maxpaths_ebgp;
671 uint16_t maxpaths_ibgp;
aa53c036 672 bool same_clusterlen;
d62a17ae 673 } maxpaths[AFI_MAX][SAFI_MAX];
cb1faec9 674
555e09d4
QY
675 _Atomic uint32_t wpkt_quanta; // max # packets to write per i/o cycle
676 _Atomic uint32_t rpkt_quanta; // max # packets to read per i/o cycle
677
37a333fe
QY
678 /* Automatic coalesce adjust on/off */
679 bool heuristic_coalesce;
14b8641a
QY
680 /* Actual coalesce time */
681 uint32_t coalesce_time;
adbac85e 682
f26845f9
QY
683 /* Auto-shutdown new peers */
684 bool autoshutdown;
685
dcc68b5e 686 struct bgp_addpath_bgp_data tx_addpath;
65efcfce 687
1e20238a 688#ifdef ENABLE_BGP_VNC
d62a17ae 689 struct rfapi_cfg *rfapi_cfg;
690 struct rfapi *rfapi;
65efcfce 691#endif
19df7279 692
d62a17ae 693 /* EVPN related information */
14c1a7bf 694
d62a17ae 695 /* EVI hash table */
696 struct hash *vnihash;
14c1a7bf 697
021b6596
AD
698 /*
699 * VNI hash table based on SVI ifindex as its key.
700 * We use SVI ifindex as key to lookup a VNI table for gateway IP
701 * overlay index recursive lookup.
702 * For this purpose, a hashtable is added which optimizes this lookup.
703 */
704 struct hash *vni_svi_hash;
705
1a98c087
MK
706 /* EVPN enable - advertise gateway macip routes */
707 int advertise_gw_macip;
708
d62a17ae 709 /* EVPN enable - advertise local VNIs and their MACs etc. */
710 int advertise_all_vni;
14c1a7bf 711
fb29348a
DA
712 /* draft-ietf-idr-deprecate-as-set-confed-set
713 * Reject aspaths with AS_SET and/or AS_CONFED_SET.
714 */
715 bool reject_as_sets;
fb29348a 716
85c8d83b
CS
717 struct bgp_evpn_info *evpn_info;
718
bf1061d8
VB
719 /* EVPN - use RFC 8365 to auto-derive RT */
720 int advertise_autort_rfc8365;
721
fd069644
DS
722 /*
723 * Flooding mechanism for BUM packets for VxLAN-EVPN.
724 */
725 enum vxlan_flood_control vxlan_flood_ctrl;
726
d62a17ae 727 /* Hash table of Import RTs to EVIs */
728 struct hash *import_rt_hash;
14c1a7bf 729
10ebe1ab
MK
730 /* Hash table of VRF import RTs to VRFs */
731 struct hash *vrf_import_rt_hash;
732
fe1dc5a3
MK
733 /* L3-VNI corresponding to this vrf */
734 vni_t l3vni;
735
736 /* router-mac to be used in mac-ip routes for this vrf */
737 struct ethaddr rmac;
738
b67a60d2 739 /* originator ip - to be used as NH for type-5 routes */
740 struct in_addr originator_ip;
741
0483af6e 742 /* SVI associated with the L3-VNI corresponding to this vrf */
743 ifindex_t l3vni_svi_ifindex;
744
c589d847
AK
745 /* RB tree of ES-VRFs */
746 struct bgp_es_vrf_rb_head es_vrf_rb_tree;
747
090efa2f
AK
748 /* Hash table of EVPN nexthops maintained per-tenant-VRF */
749 struct hash *evpn_nh_table;
750
dc6cef73
AD
751 /*
752 * Flag resolve_overlay_index is used for recursive resolution
753 * procedures for EVPN type-5 route's gateway IP overlay index.
754 * When this flag is set, we build remote-ip-hash for
755 * all L2VNIs and resolve overlay index nexthops using this hash.
756 * Overlay index nexthops remain unresolved if this flag is not set.
757 */
758 bool resolve_overlay_index;
759
fe1dc5a3
MK
760 /* vrf flags */
761 uint32_t vrf_flags;
676f83b9 762#define BGP_VRF_AUTO (1 << 0)
154faa50
MK
763#define BGP_VRF_IMPORT_RT_CFGD (1 << 1)
764#define BGP_VRF_EXPORT_RT_CFGD (1 << 2)
58d8948c
SW
765#define BGP_VRF_IMPORT_AUTO_RT_CFGD (1 << 3) /* retain auto when cfgd */
766#define BGP_VRF_EXPORT_AUTO_RT_CFGD (1 << 4) /* retain auto when cfgd */
767#define BGP_VRF_RD_CFGD (1 << 5)
768#define BGP_VRF_L3VNI_PREFIX_ROUTES_ONLY (1 << 6)
527588aa
CS
769/* per-VRF toVPN SID */
770#define BGP_VRF_TOVPN_SID_AUTO (1 << 7)
23e386ac 771
676f83b9 772 /* unique ID for auto derivation of RD for this vrf */
773 uint16_t vrf_rd_id;
774
92708db6 775 /* Automatically derived RD for this VRF */
776 struct prefix_rd vrf_prd_auto;
777
676f83b9 778 /* RD for this VRF */
779 struct prefix_rd vrf_prd;
c581d8b0
MK
780
781 /* import rt list for the vrf instance */
782 struct list *vrf_import_rtl;
783
784 /* export rt list for the vrf instance */
785 struct list *vrf_export_rtl;
fe1dc5a3 786
6a8657d0
MK
787 /* list of corresponding l2vnis (struct bgpevpn) */
788 struct list *l2vnis;
789
53c84f78
MK
790 /* route map for advertise ipv4/ipv6 unicast (type-5 routes) */
791 struct bgp_rmap adv_cmd_rmap[AFI_MAX][SAFI_MAX];
792
e70e9f8e 793 struct vpn_policy vpn_policy[AFI_MAX];
ddb5b488 794
4762c213
PG
795 struct bgp_pbr_config *bgp_pbr_cfg;
796
36dc7588 797 /* Count of peers in established state */
798 uint32_t established_peers;
799
f7e1c681 800 /* Weighted ECMP related config. */
801 enum bgp_link_bw_handling lb_handling;
802
b6c386bb
DS
803 /* Process Queue for handling routes */
804 struct work_queue *process_queue;
e73c112e 805
f852eb98
PG
806 bool fast_convergence;
807
7f7940e6 808 /* BGP Conditional advertisement */
389e4f92 809 uint32_t condition_check_period;
c385f82a 810 uint32_t condition_filter_count;
7f7940e6 811 struct thread *t_condition_check;
b6c386bb 812
92a9e6f2
HS
813 /* BGP VPN SRv6 backend */
814 bool srv6_enabled;
815 char srv6_locator_name[SRV6_LOCNAME_SIZE];
816 struct list *srv6_locator_chunks;
817 struct list *srv6_functions;
527588aa
CS
818 uint32_t tovpn_sid_index; /* unset => set to 0 */
819 struct in6_addr *tovpn_sid;
820 struct srv6_locator_chunk *tovpn_sid_locator;
821 uint32_t tovpn_sid_transpose_label;
822 struct in6_addr *tovpn_zebra_vrf_sid_last_sent;
823
d1adb448
PG
824 /* TCP keepalive parameters for BGP connection */
825 uint16_t tcp_keepalive_idle;
826 uint16_t tcp_keepalive_intvl;
827 uint16_t tcp_keepalive_probes;
92a9e6f2 828
b17826b7
DS
829 struct timeval ebgprequirespolicywarning;
830#define FIFTEENMINUTE2USEC (int64_t)15 * 60 * 1000000
831
8666265e
DS
832 bool allow_martian;
833
70cd87ca
MK
834 /* BGP optimal route reflection group and Root Router configuration */
835 uint32_t orr_group_count;
836 struct list *orr_group[AFI_MAX][SAFI_MAX];
837
96244aca 838 QOBJ_FIELDS;
718e3744 839};
96244aca 840DECLARE_QOBJ_TYPE(bgp);
718e3744 841
4cd690ae
PG
842struct bgp_interface {
843#define BGP_INTERFACE_MPLS_BGP_FORWARDING (1 << 0)
844 uint32_t flags;
845};
846
8451921b 847DECLARE_HOOK(bgp_inst_delete, (struct bgp *bgp), (bgp));
2b9bcf30
DL
848DECLARE_HOOK(bgp_inst_config_write,
849 (struct bgp *bgp, struct vty *vty),
8451921b 850 (bgp, vty));
aa24a36a 851DECLARE_HOOK(bgp_config_end, (struct bgp *bgp), (bgp));
2b9bcf30 852
36235319
QY
853/* Thread callback information */
854struct afi_safi_info {
855 afi_t afi;
856 safi_t safi;
857 struct bgp *bgp;
858};
cfd47646 859
2a3d5731 860#define BGP_ROUTE_ADV_HOLD(bgp) (bgp->main_peers_update_hold)
d889623f 861
d62a17ae 862#define IS_BGP_INST_KNOWN_TO_ZEBRA(bgp) \
863 (bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT \
864 || (bgp->inst_type == BGP_INSTANCE_TYPE_VRF \
865 && bgp->vrf_id != VRF_UNKNOWN))
ad4cbda1 866
36235319 867#define BGP_SELECT_DEFER_DISABLE(bgp) \
892fedb6 868 (CHECK_FLAG(bgp->flags, BGP_FLAG_SELECT_DEFER_DISABLE))
cfd47646 869
9acb67cb
DS
870#define BGP_SUPPRESS_FIB_ENABLED(bgp) \
871 (CHECK_FLAG(bgp->flags, BGP_FLAG_SUPPRESS_FIB_PENDING) \
872 || bm->wait_for_fib)
c208c586 873
718e3744 874/* BGP peer-group support. */
d62a17ae 875struct peer_group {
876 /* Name of the peer-group. */
877 char *name;
718e3744 878
d62a17ae 879 /* Pointer to BGP. */
880 struct bgp *bgp;
718e3744 881
d62a17ae 882 /* Peer-group client list. */
883 struct list *peer;
f14e6fdb 884
d62a17ae 885 /** Dynamic neighbor listening ranges */
886 struct list *listen_range[AFI_MAX];
887
888 /* Peer-group config */
889 struct peer *conf;
718e3744 890};
891
892/* BGP Notify message format. */
d62a17ae 893struct bgp_notify {
d7c0a89a
QY
894 uint8_t code;
895 uint8_t subcode;
d62a17ae 896 char *data;
897 bgp_size_t length;
d7c0a89a 898 uint8_t *raw_data;
eea685b6 899 bool hard_reset;
718e3744 900};
901
902/* Next hop self address. */
d62a17ae 903struct bgp_nexthop {
904 struct interface *ifp;
905 struct in_addr v4;
906 struct in6_addr v6_global;
907 struct in6_addr v6_local;
718e3744 908};
909
a82478b9
DS
910/* BGP addpath values */
911#define BGP_ADDPATH_RX 1
912#define BGP_ADDPATH_TX 2
913#define BGP_ADDPATH_ID_LEN 4
914
adbac85e
DW
915#define BGP_ADDPATH_TX_ID_FOR_DEFAULT_ORIGINATE 1
916
3f54c705 917/* Route map direction */
2a3d5731
DW
918#define RMAP_IN 0
919#define RMAP_OUT 1
920#define RMAP_MAX 2
fee0f4c6 921
e2521429
DA
922#define BGP_DEFAULT_TTL 1
923#define BGP_GTSM_HOPS_DISABLED 0
924#define BGP_GTSM_HOPS_CONNECTED 1
a0903cd2 925
7f7940e6 926/* Advertise map */
cf2ad4d8
MK
927#define CONDITION_NON_EXIST false
928#define CONDITION_EXIST true
c385f82a 929
ecf2b628 930enum update_type { UPDATE_TYPE_WITHDRAW, UPDATE_TYPE_ADVERTISE };
7f7940e6 931
65efcfce
LB
932#include "filter.h"
933
718e3744 934/* BGP filter structure. */
d62a17ae 935struct bgp_filter {
936 /* Distribute-list. */
937 struct {
938 char *name;
939 struct access_list *alist;
940 } dlist[FILTER_MAX];
941
942 /* Prefix-list. */
943 struct {
944 char *name;
945 struct prefix_list *plist;
946 } plist[FILTER_MAX];
947
948 /* Filter-list. */
949 struct {
950 char *name;
951 struct as_list *aslist;
952 } aslist[FILTER_MAX];
953
954 /* Route-map. */
955 struct {
956 char *name;
957 struct route_map *map;
958 } map[RMAP_MAX];
959
960 /* Unsuppress-map. */
961 struct {
962 char *name;
963 struct route_map *map;
964 } usmap;
7f7940e6
MK
965
966 /* Advertise-map */
967 struct {
968 char *aname;
969 struct route_map *amap;
970
971 bool condition;
972
973 char *cname;
974 struct route_map *cmap;
975
fa36596c 976 enum update_type update_type;
7f7940e6 977 } advmap;
718e3744 978};
979
6d85b15b
JBD
980/* IBGP/EBGP identifier. We also have a CONFED peer, which is to say,
981 a peer who's AS is part of our Confederation. */
3061acc2 982enum bgp_peer_sort {
faa16034
DS
983 BGP_PEER_UNSPECIFIED,
984 BGP_PEER_IBGP,
d62a17ae 985 BGP_PEER_EBGP,
986 BGP_PEER_INTERNAL,
987 BGP_PEER_CONFED,
3061acc2 988};
6d85b15b 989
d6661008
DS
990/* BGP message header and packet size. */
991#define BGP_MARKER_SIZE 16
992#define BGP_HEADER_SIZE 19
556beacf
QY
993#define BGP_STANDARD_MESSAGE_MAX_PACKET_SIZE 4096
994#define BGP_EXTENDED_MESSAGE_MAX_PACKET_SIZE 65535
995#define BGP_MAX_PACKET_SIZE BGP_EXTENDED_MESSAGE_MAX_PACKET_SIZE
0a91ff55 996#define BGP_MAX_PACKET_SIZE_OVERFLOW 1024
d6661008 997
3f9c7369
DS
998/*
999 * Trigger delay for bgp_announce_route().
1000 */
1001#define BGP_ANNOUNCE_ROUTE_SHORT_DELAY_MS 100
1002#define BGP_ANNOUNCE_ROUTE_DELAY_MS 500
1003
d62a17ae 1004struct peer_af {
1005 /* back pointer to the peer */
1006 struct peer *peer;
3f9c7369 1007
d62a17ae 1008 /* which subgroup the peer_af belongs to */
1009 struct update_subgroup *subgroup;
3f9c7369 1010
d62a17ae 1011 /* for being part of an update subgroup's peer list */
1012 LIST_ENTRY(peer_af) subgrp_train;
3f9c7369 1013
d62a17ae 1014 /* for being part of a packet's peer list */
1015 LIST_ENTRY(peer_af) pkt_train;
3f9c7369 1016
d62a17ae 1017 struct bpacket *next_pkt_to_send;
3f9c7369 1018
d62a17ae 1019 /*
1020 * Trigger timer for bgp_announce_route().
1021 */
1022 struct thread *t_announce_route;
3f9c7369 1023
d62a17ae 1024 afi_t afi;
1025 safi_t safi;
1026 int afid;
3f9c7369 1027};
b0965c44 1028/* BGP GR per peer ds */
1029
2ba1fe69 1030#define BGP_PEER_GR_MODE 5
1031#define BGP_PEER_GR_EVENT_CMD 6
b0965c44 1032
1033enum peer_mode {
1034 PEER_HELPER = 0,
1035 PEER_GR,
1036 PEER_DISABLE,
1037 PEER_INVALID,
1038 PEER_GLOBAL_INHERIT /* This is the default mode */
1039
1040};
1041
1042enum peer_gr_command {
1043 PEER_GR_CMD = 0,
1044 NO_PEER_GR_CMD,
2ba1fe69 1045 PEER_DISABLE_CMD,
b0965c44 1046 NO_PEER_DISABLE_CMD,
1047 PEER_HELPER_CMD,
1048 NO_PEER_HELPER_CMD
1049};
1050
1051typedef unsigned int (*bgp_peer_gr_action_ptr)(struct peer *, int, int);
1052
1053struct bgp_peer_gr {
1054 enum peer_mode next_state;
1055 bgp_peer_gr_action_ptr action_fun;
1056};
1057
21e8caa2
QY
1058/*
1059 * BGP FSM event codes, per RFC 4271 ss. 8.1
1060 */
1061enum bgp_fsm_rfc_codes {
1062 BGP_FSM_ManualStart = 1,
1063 BGP_FSM_ManualStop = 2,
1064 BGP_FSM_AutomaticStart = 3,
1065 BGP_FSM_ManualStart_with_PassiveTcpEstablishment = 4,
1066 BGP_FSM_AutomaticStart_with_PassiveTcpEstablishment = 5,
1067 BGP_FSM_AutomaticStart_with_DampPeerOscillations = 6,
1068 BGP_FSM_AutomaticStart_with_DampPeerOscillations_and_PassiveTcpEstablishment =
1069 7,
1070 BGP_FSM_AutomaticStop = 8,
1071 BGP_FSM_ConnectRetryTimer_Expires = 9,
1072 BGP_FSM_HoldTimer_Expires = 10,
1073 BGP_FSM_KeepaliveTimer_Expires = 11,
1074 BGP_FSM_DelayOpenTimer_Expires = 12,
1075 BGP_FSM_IdleHoldTimer_Expires = 13,
1076 BGP_FSM_TcpConnection_Valid = 14,
1077 BGP_FSM_Tcp_CR_Invalid = 15,
1078 BGP_FSM_Tcp_CR_Acked = 16,
1079 BGP_FSM_TcpConnectionConfirmed = 17,
1080 BGP_FSM_TcpConnectionFails = 18,
1081 BGP_FSM_BGPOpen = 19,
1082 BGP_FSM_BGPOpen_with_DelayOpenTimer_running = 20,
1083 BGP_FSM_BGPHeaderErr = 21,
1084 BGP_FSM_BGPOpenMsgErr = 22,
1085 BGP_FSM_OpenCollisionDump = 23,
1086 BGP_FSM_NotifMsgVerErr = 24,
1087 BGP_FSM_NotifMsg = 25,
1088 BGP_FSM_KeepAliveMsg = 26,
1089 BGP_FSM_UpdateMsg = 27,
1090 BGP_FSM_UpdateMsgErr = 28
1091};
1092
1093/*
1094 * BGP finite state machine events
1095 *
1096 * Note: these do not correspond to RFC-defined event codes. Those are
1097 * defined elsewhere.
1098 */
d1060698
DS
1099enum bgp_fsm_events {
1100 BGP_Start = 1,
1101 BGP_Stop,
1102 TCP_connection_open,
6c537a18 1103 TCP_connection_open_w_delay,
d1060698
DS
1104 TCP_connection_closed,
1105 TCP_connection_open_failed,
1106 TCP_fatal_error,
1107 ConnectRetry_timer_expired,
1108 Hold_Timer_expired,
1109 KeepAlive_timer_expired,
6c537a18 1110 DelayOpen_timer_expired,
d1060698
DS
1111 Receive_OPEN_message,
1112 Receive_KEEPALIVE_message,
1113 Receive_UPDATE_message,
1114 Receive_NOTIFICATION_message,
1115 Clearing_Completed,
1116 BGP_EVENTS_MAX,
1117};
3f9c7369 1118
8398b5d5
DS
1119/* BGP finite state machine status. */
1120enum bgp_fsm_status {
1121 Idle = 1,
1122 Connect,
1123 Active,
1124 OpenSent,
1125 OpenConfirm,
1126 Established,
1127 Clearing,
1128 Deleted,
1129 BGP_STATUS_MAX,
1130};
1131
169afe9d
QY
1132#define PEER_HOSTNAME(peer) ((peer)->host ? (peer)->host : "(unknown peer)")
1133
8606be87
DA
1134struct llgr_info {
1135 uint32_t stale_time;
1136 uint8_t flags;
1137};
1138
718e3744 1139/* BGP neighbor structure. */
d62a17ae 1140struct peer {
1141 /* BGP structure. */
1142 struct bgp *bgp;
1143
1144 /* reference count, primarily to allow bgp_process'ing of route_node's
1145 * to be done after a struct peer is deleted.
1146 *
1147 * named 'lock' for hysterical reasons within Quagga.
1148 */
1149 int lock;
1150
1151 /* BGP peer group. */
1152 struct peer_group *group;
1153 uint64_t version[AFI_MAX][SAFI_MAX];
1154
1155 /* BGP peer_af structures, per configured AF on this peer */
1156 struct peer_af *peer_af_array[BGP_AF_MAX];
1157
1158 /* Peer's remote AS number. */
1159 int as_type;
1160 as_t as;
1161
1162 /* Peer's local AS number. */
1163 as_t local_as;
1164
3061acc2 1165 enum bgp_peer_sort sort;
d62a17ae 1166
1167 /* Peer's Change local AS number. */
1168 as_t change_local_as;
1169
1170 /* Remote router ID. */
1171 struct in_addr remote_id;
1172
1173 /* Local router ID. */
1174 struct in_addr local_id;
1175
1176 /* Packet receive and send buffer. */
424ab01d
QY
1177 pthread_mutex_t io_mtx; // guards ibuf, obuf
1178 struct stream_fifo *ibuf; // packets waiting to be processed
1179 struct stream_fifo *obuf; // packets waiting to be written
1180
338f4a78 1181 /* used as a block to deposit raw wire data to */
556beacf 1182 uint8_t ibuf_scratch[BGP_EXTENDED_MESSAGE_MAX_PACKET_SIZE
338f4a78 1183 * BGP_READ_PACKET_MAX];
74ffbfe6
QY
1184 struct ringbuf *ibuf_work; // WiP buffer used by bgp_read() only
1185 struct stream *obuf_work; // WiP buffer used to construct packets
424ab01d
QY
1186
1187 struct stream *curr; // the current packet being parsed
d62a17ae 1188
1189 /* We use a separate stream to encode MP_REACH_NLRI for efficient
424ab01d 1190 * NLRI packing. peer->obuf_work stores all the other attributes. The
d62a17ae 1191 * actual packet is then constructed by concatenating the two.
1192 */
1193 struct stream *scratch;
1194
1195 /* the doppelganger peer structure, due to dual TCP conn setup */
1196 struct peer *doppelganger;
1197
1198 /* Status of the peer. */
8398b5d5
DS
1199 enum bgp_fsm_status status;
1200 enum bgp_fsm_status ostatus;
d62a17ae 1201
1202 /* FSM events, stored for debug purposes.
1203 * Note: uchar used for reduced memory usage.
1204 */
d1060698
DS
1205 enum bgp_fsm_events cur_event;
1206 enum bgp_fsm_events last_event;
1207 enum bgp_fsm_events last_major_event;
d62a17ae 1208
1209 /* Peer index, used for dumping TABLE_DUMP_V2 format */
1210 uint16_t table_dump_index;
1211
1212 /* Peer information */
1213 int fd; /* File descriptor */
1214 int ttl; /* TTL of TCP connection to the peer. */
1215 int rtt; /* Estimated round-trip-time from TCP_INFO */
8336c896
DA
1216 int rtt_expected; /* Expected round-trip-time for a peer */
1217 uint8_t rtt_keepalive_rcv; /* Received count for RTT shutdown */
1218 uint8_t rtt_keepalive_conf; /* Configured count for RTT shutdown */
d62a17ae 1219 int gtsm_hops; /* minimum hopcount to peer */
1220 char *desc; /* Description of the peer. */
1221 unsigned short port; /* Destination port for peer */
1222 char *host; /* Printable address of the peer. */
1223 union sockunion su; /* Sockunion address of the peer. */
a80beece 1224#define BGP_PEER_SU_UNSPEC(peer) (peer->su.sa.sa_family == AF_UNSPEC)
d62a17ae 1225 time_t uptime; /* Last Up/Down time */
1226 time_t readtime; /* Last read time */
1227 time_t resettime; /* Last reset time */
1228
d62a17ae 1229 char *conf_if; /* neighbor interface config name. */
1230 struct interface *ifp; /* corresponding interface */
1231 char *ifname; /* bind interface name. */
1232 char *update_if;
1233 union sockunion *update_source;
1234
1235 union sockunion *su_local; /* Sockunion of local address. */
1236 union sockunion *su_remote; /* Sockunion of remote address. */
1237 int shared_network; /* Is this peer shared same network. */
1238 struct bgp_nexthop nexthop; /* Nexthop */
1239
d864dd9e
EB
1240 /* Roles in bgp session */
1241 uint8_t local_role;
8f2d6021 1242 uint8_t remote_role;
d864dd9e
EB
1243#define ROLE_PROVIDER 0
1244#define ROLE_RS_SERVER 1
1245#define ROLE_RS_CLIENT 2
1246#define ROLE_CUSTOMER 3
1247#define ROLE_PEER 4
8f2d6021 1248#define ROLE_UNDEFINED 255
d864dd9e
EB
1249
1250#define ROLE_NAME_MAX_LEN 20
1251
d62a17ae 1252 /* Peer address family configuration. */
d7c0a89a
QY
1253 uint8_t afc[AFI_MAX][SAFI_MAX];
1254 uint8_t afc_nego[AFI_MAX][SAFI_MAX];
1255 uint8_t afc_adv[AFI_MAX][SAFI_MAX];
1256 uint8_t afc_recv[AFI_MAX][SAFI_MAX];
d62a17ae 1257
1258 /* Capability flags (reset in bgp_stop) */
d7c0a89a 1259 uint32_t cap;
e9faf4be
QY
1260#define PEER_CAP_REFRESH_ADV (1U << 0) /* refresh advertised */
1261#define PEER_CAP_REFRESH_OLD_RCV (1U << 1) /* refresh old received */
1262#define PEER_CAP_REFRESH_NEW_RCV (1U << 2) /* refresh rfc received */
1263#define PEER_CAP_DYNAMIC_ADV (1U << 3) /* dynamic advertised */
1264#define PEER_CAP_DYNAMIC_RCV (1U << 4) /* dynamic received */
1265#define PEER_CAP_RESTART_ADV (1U << 5) /* restart advertised */
1266#define PEER_CAP_RESTART_RCV (1U << 6) /* restart received */
1267#define PEER_CAP_AS4_ADV (1U << 7) /* as4 advertised */
1268#define PEER_CAP_AS4_RCV (1U << 8) /* as4 received */
54394daa
DA
1269/* sent graceful-restart restart (R) bit */
1270#define PEER_CAP_GRACEFUL_RESTART_R_BIT_ADV (1U << 9)
1271/* received graceful-restart restart (R) bit */
1272#define PEER_CAP_GRACEFUL_RESTART_R_BIT_RCV (1U << 10)
e9faf4be
QY
1273#define PEER_CAP_ADDPATH_ADV (1U << 11) /* addpath advertised */
1274#define PEER_CAP_ADDPATH_RCV (1U << 12) /* addpath received */
1275#define PEER_CAP_ENHE_ADV (1U << 13) /* Extended nexthop advertised */
1276#define PEER_CAP_ENHE_RCV (1U << 14) /* Extended nexthop received */
1277#define PEER_CAP_HOSTNAME_ADV (1U << 15) /* hostname advertised */
1278#define PEER_CAP_HOSTNAME_RCV (1U << 16) /* hostname received */
9af52ccf
DA
1279#define PEER_CAP_ENHANCED_RR_ADV (1U << 17) /* enhanced rr advertised */
1280#define PEER_CAP_ENHANCED_RR_RCV (1U << 18) /* enhanced rr received */
ef56aee4
DA
1281#define PEER_CAP_EXTENDED_MESSAGE_ADV (1U << 19)
1282#define PEER_CAP_EXTENDED_MESSAGE_RCV (1U << 20)
8606be87
DA
1283#define PEER_CAP_LLGR_ADV (1U << 21)
1284#define PEER_CAP_LLGR_RCV (1U << 22)
eea685b6
DA
1285/* sent graceful-restart notification (N) bit */
1286#define PEER_CAP_GRACEFUL_RESTART_N_BIT_ADV (1U << 23)
1287/* received graceful-restart notification (N) bit */
1288#define PEER_CAP_GRACEFUL_RESTART_N_BIT_RCV (1U << 24)
d864dd9e
EB
1289#define PEER_CAP_ROLE_ADV (1U << 25) /* role advertised */
1290#define PEER_CAP_ROLE_RCV (1U << 26) /* role received */
718e3744 1291
d62a17ae 1292 /* Capability flags (reset in bgp_stop) */
d7c0a89a 1293 uint32_t af_cap[AFI_MAX][SAFI_MAX];
e9faf4be
QY
1294#define PEER_CAP_ORF_PREFIX_SM_ADV (1U << 0) /* send-mode advertised */
1295#define PEER_CAP_ORF_PREFIX_RM_ADV (1U << 1) /* receive-mode advertised */
1296#define PEER_CAP_ORF_PREFIX_SM_RCV (1U << 2) /* send-mode received */
1297#define PEER_CAP_ORF_PREFIX_RM_RCV (1U << 3) /* receive-mode received */
1298#define PEER_CAP_ORF_PREFIX_SM_OLD_RCV (1U << 4) /* send-mode received */
1299#define PEER_CAP_ORF_PREFIX_RM_OLD_RCV (1U << 5) /* receive-mode received */
1300#define PEER_CAP_RESTART_AF_RCV (1U << 6) /* graceful restart afi/safi received */
1301#define PEER_CAP_RESTART_AF_PRESERVE_RCV (1U << 7) /* graceful restart afi/safi F-bit received */
1302#define PEER_CAP_ADDPATH_AF_TX_ADV (1U << 8) /* addpath tx advertised */
1303#define PEER_CAP_ADDPATH_AF_TX_RCV (1U << 9) /* addpath tx received */
1304#define PEER_CAP_ADDPATH_AF_RX_ADV (1U << 10) /* addpath rx advertised */
1305#define PEER_CAP_ADDPATH_AF_RX_RCV (1U << 11) /* addpath rx received */
1306#define PEER_CAP_ENHE_AF_ADV (1U << 12) /* Extended nexthopi afi/safi advertised */
1307#define PEER_CAP_ENHE_AF_RCV (1U << 13) /* Extended nexthop afi/safi received */
1308#define PEER_CAP_ENHE_AF_NEGO (1U << 14) /* Extended nexthop afi/safi negotiated */
8606be87
DA
1309#define PEER_CAP_LLGR_AF_ADV (1U << 15)
1310#define PEER_CAP_LLGR_AF_RCV (1U << 16)
718e3744 1311
d62a17ae 1312 /* Global configuration flags. */
9fb964de
PM
1313 /*
1314 * Parallel array to flags that indicates whether each flag originates
1315 * from a peer-group or if it is config that is specific to this
1316 * individual peer. If a flag is set independent of the peer-group, the
1317 * same bit should be set here. If this peer is a peer-group, this
1318 * memory region should be all zeros.
1319 *
1320 * The assumption is that the default state for all flags is unset,
1321 * so if a flag is unset, the corresponding override flag is unset too.
1322 * However if a flag is set, the corresponding override flag is set.
1323 */
1324 uint32_t flags_override;
1325 /*
1326 * Parallel array to flags that indicates whether the default behavior
1327 * of *flags_override* should be inverted. If a flag is unset and the
1328 * corresponding invert flag is set, the corresponding override flag
1329 * would be set. However if a flag is set and the corresponding invert
1330 * flag is unset, the corresponding override flag would be unset.
1331 *
1332 * This can be used for attributes like *send-community*, which are
1333 * implicitely enabled and have to be disabled explicitely, compared to
1334 * 'normal' attributes like *next-hop-self* which are implicitely set.
1335 *
1336 * All operations dealing with flags should apply the following boolean
1337 * logic to keep the internal flag system in a sane state:
1338 *
1339 * value=0 invert=0 Inherit flag if member, otherwise unset flag
1340 * value=0 invert=1 Unset flag unconditionally
1341 * value=1 invert=0 Set flag unconditionally
1342 * value=1 invert=1 Inherit flag if member, otherwise set flag
1343 *
1344 * Contrary to the implementation of *flags_override*, the flag
1345 * inversion state can be set either on the peer OR the peer *and* the
1346 * peer-group. This was done on purpose, as the inversion state of a
1347 * flag can be determined on either the peer or the peer-group.
1348 *
1349 * Example: Enabling the cisco configuration mode inverts all flags
1350 * related to *send-community* unconditionally for both peer-groups and
1351 * peers.
1352 *
1353 * This behavior is different for interface peers though, which enable
1354 * the *extended-nexthop* flag by default, which regular peers do not.
1355 * As the peer-group can contain both regular and interface peers, the
1356 * flag inversion state must be set on the peer only.
1357 *
1358 * When a peer inherits the configuration from a peer-group and the
1359 * inversion state of the flag differs between peer and peer-group, the
1360 * newly set value must equal to the inverted state of the peer-group.
1361 */
1362 uint32_t flags_invert;
1363 /*
1364 * Effective array for storing the peer/peer-group flags. In case of a
1365 * peer-group, the peer-specific overrides (see flags_override and
1366 * flags_invert) must be respected.
1367 */
0ebabd41 1368 uint64_t flags;
83194f39
DA
1369#define PEER_FLAG_PASSIVE (1ULL << 0) /* passive mode */
1370#define PEER_FLAG_SHUTDOWN (1ULL << 1) /* shutdown */
1371#define PEER_FLAG_DONT_CAPABILITY (1ULL << 2) /* dont-capability */
1372#define PEER_FLAG_OVERRIDE_CAPABILITY (1ULL << 3) /* override-capability */
1373#define PEER_FLAG_STRICT_CAP_MATCH (1ULL << 4) /* strict-match */
1374#define PEER_FLAG_DYNAMIC_CAPABILITY (1ULL << 5) /* dynamic capability */
1375#define PEER_FLAG_DISABLE_CONNECTED_CHECK (1ULL << 6) /* disable-connected-check */
1376#define PEER_FLAG_LOCAL_AS_NO_PREPEND (1ULL << 7) /* local-as no-prepend */
1377#define PEER_FLAG_LOCAL_AS_REPLACE_AS (1ULL << 8) /* local-as no-prepend replace-as */
1378#define PEER_FLAG_DELETE (1ULL << 9) /* mark the peer for deleting */
1379#define PEER_FLAG_CONFIG_NODE (1ULL << 10) /* the node to update configs on */
1380#define PEER_FLAG_LONESOUL (1ULL << 11)
1381#define PEER_FLAG_DYNAMIC_NEIGHBOR (1ULL << 12) /* dynamic neighbor */
1382#define PEER_FLAG_CAPABILITY_ENHE (1ULL << 13) /* Extended next-hop (rfc 5549)*/
1383#define PEER_FLAG_IFPEER_V6ONLY (1ULL << 14) /* if-based peer is v6 only */
1384#define PEER_FLAG_IS_RFAPI_HD (1ULL << 15) /* attached to rfapi HD */
1385#define PEER_FLAG_ENFORCE_FIRST_AS (1ULL << 16) /* enforce-first-as */
1386#define PEER_FLAG_ROUTEADV (1ULL << 17) /* route advertise */
1387#define PEER_FLAG_TIMER (1ULL << 18) /* keepalive & holdtime */
1388#define PEER_FLAG_TIMER_CONNECT (1ULL << 19) /* connect timer */
1389#define PEER_FLAG_PASSWORD (1ULL << 20) /* password */
1390#define PEER_FLAG_LOCAL_AS (1ULL << 21) /* local-as */
1391#define PEER_FLAG_UPDATE_SOURCE (1ULL << 22) /* update-source */
02a82b47 1392
b0965c44 1393 /* BGP-GR Peer related flags */
83194f39
DA
1394#define PEER_FLAG_GRACEFUL_RESTART_HELPER (1ULL << 23) /* Helper */
1395#define PEER_FLAG_GRACEFUL_RESTART (1ULL << 24) /* Graceful Restart */
1396#define PEER_FLAG_GRACEFUL_RESTART_GLOBAL_INHERIT (1ULL << 25) /* Global-Inherit */
1397#define PEER_FLAG_RTT_SHUTDOWN (1ULL << 26) /* shutdown rtt */
1398#define PEER_FLAG_TIMER_DELAYOPEN (1ULL << 27) /* delayopen timer */
1399#define PEER_FLAG_TCP_MSS (1ULL << 28) /* tcp-mss */
27aa23a4
DA
1400/* Disable IEEE floating-point link bandwidth encoding in
1401 * extended communities.
1402 */
83194f39 1403#define PEER_FLAG_DISABLE_LINK_BW_ENCODING_IEEE (1ULL << 29)
d08c0c80 1404/* force the extended format for Optional Parameters in OPEN message */
83194f39 1405#define PEER_FLAG_EXTENDED_OPT_PARAMS (1ULL << 30)
b0965c44 1406
d864dd9e 1407 /* BGP Open Policy flags.
7dddd1f7
DA
1408 * Enforce using roles on both sides:
1409 * `local-role ROLE strict-mode` configured.
d864dd9e 1410 */
7dddd1f7
DA
1411#define PEER_FLAG_ROLE_STRICT_MODE (1ULL << 31)
1412 /* `local-role` configured */
1413#define PEER_FLAG_ROLE (1ULL << 32)
c41e9372 1414#define PEER_FLAG_PORT (1ULL << 33)
97a52c82 1415#define PEER_FLAG_AIGP (1ULL << 34)
4f770cf1 1416#define PEER_FLAG_GRACEFUL_SHUTDOWN (1ULL << 35)
d864dd9e 1417
b0965c44 1418 /*
1419 *GR-Disabled mode means unset PEER_FLAG_GRACEFUL_RESTART
1420 *& PEER_FLAG_GRACEFUL_RESTART_HELPER
1421 *and PEER_FLAG_GRACEFUL_RESTART_GLOBAL_INHERIT
1422 */
1423
2ba1fe69 1424 struct bgp_peer_gr PEER_GR_FSM[BGP_PEER_GR_MODE][BGP_PEER_GR_EVENT_CMD];
b0965c44 1425 enum peer_mode peer_gr_present_state;
1426 /* Non stop forwarding afi-safi count for BGP gr feature*/
1427 uint8_t nsf_af_count;
1428
1429 uint8_t peer_gr_new_status_flag;
e9faf4be
QY
1430#define PEER_GRACEFUL_RESTART_NEW_STATE_HELPER (1U << 0)
1431#define PEER_GRACEFUL_RESTART_NEW_STATE_RESTART (1U << 1)
1432#define PEER_GRACEFUL_RESTART_NEW_STATE_INHERIT (1U << 2)
b0965c44 1433
d62a17ae 1434 /* outgoing message sent in CEASE_ADMIN_SHUTDOWN notify */
1435 char *tx_shutdown_message;
718e3744 1436
d62a17ae 1437 /* NSF mode (graceful restart) */
d7c0a89a 1438 uint8_t nsf[AFI_MAX][SAFI_MAX];
9e3b51a7 1439 /* EOR Send time */
1440 time_t eor_stime[AFI_MAX][SAFI_MAX];
1441 /* Last update packet sent time */
1442 time_t pkt_stime[AFI_MAX][SAFI_MAX];
93406d87 1443
04e1c5bb
QY
1444 /* Peer Per AF flags */
1445 /*
9fb964de
PM
1446 * Please consult the comments for *flags_override*, *flags_invert* and
1447 * *flags* to understand what these three arrays do. The address-family
1448 * specific attributes are being treated the exact same way as global
1449 * peer attributes.
04e1c5bb 1450 */
da5e1a58
DA
1451 uint64_t af_flags_override[AFI_MAX][SAFI_MAX];
1452 uint64_t af_flags_invert[AFI_MAX][SAFI_MAX];
1453 uint64_t af_flags[AFI_MAX][SAFI_MAX];
b6a3df6b
DA
1454#define PEER_FLAG_SEND_COMMUNITY (1ULL << 0)
1455#define PEER_FLAG_SEND_EXT_COMMUNITY (1ULL << 1)
1456#define PEER_FLAG_NEXTHOP_SELF (1ULL << 2)
1457#define PEER_FLAG_REFLECTOR_CLIENT (1ULL << 3)
1458#define PEER_FLAG_RSERVER_CLIENT (1ULL << 4)
1459#define PEER_FLAG_SOFT_RECONFIG (1ULL << 5)
1460#define PEER_FLAG_AS_PATH_UNCHANGED (1ULL << 6)
1461#define PEER_FLAG_NEXTHOP_UNCHANGED (1ULL << 7)
1462#define PEER_FLAG_MED_UNCHANGED (1ULL << 8)
1463#define PEER_FLAG_DEFAULT_ORIGINATE (1ULL << 9)
1464#define PEER_FLAG_REMOVE_PRIVATE_AS (1ULL << 10)
1465#define PEER_FLAG_ALLOWAS_IN (1ULL << 11)
1466#define PEER_FLAG_ORF_PREFIX_SM (1ULL << 12)
1467#define PEER_FLAG_ORF_PREFIX_RM (1ULL << 13)
1468#define PEER_FLAG_MAX_PREFIX (1ULL << 14)
1469#define PEER_FLAG_MAX_PREFIX_WARNING (1ULL << 15)
1470#define PEER_FLAG_NEXTHOP_LOCAL_UNCHANGED (1ULL << 16)
1471#define PEER_FLAG_FORCE_NEXTHOP_SELF (1ULL << 17)
1472#define PEER_FLAG_REMOVE_PRIVATE_AS_ALL (1ULL << 18)
1473#define PEER_FLAG_REMOVE_PRIVATE_AS_REPLACE (1ULL << 19)
1474#define PEER_FLAG_AS_OVERRIDE (1ULL << 20)
1475#define PEER_FLAG_REMOVE_PRIVATE_AS_ALL_REPLACE (1ULL << 21)
1476#define PEER_FLAG_WEIGHT (1ULL << 24)
1477#define PEER_FLAG_ALLOWAS_IN_ORIGIN (1ULL << 25)
1478#define PEER_FLAG_SEND_LARGE_COMMUNITY (1ULL << 26)
1479#define PEER_FLAG_MAX_PREFIX_OUT (1ULL << 27)
1480#define PEER_FLAG_MAX_PREFIX_FORCE (1ULL << 28)
1481#define PEER_FLAG_DISABLE_ADDPATH_RX (1ULL << 29)
1482#define PEER_FLAG_SOO (1ULL << 30)
70cd87ca 1483#define PEER_FLAG_ORR_GROUP (1ULL << 31) /* Optimal-Route-Reflection */
46dbf9d0 1484#define PEER_FLAG_ACCEPT_OWN (1ULL << 32)
70cd87ca
MK
1485
1486 /* BGP Optimal Route Reflection Group name */
1487 char *orr_group_name[AFI_MAX][SAFI_MAX];
0df7c91f 1488
dcc68b5e
MS
1489 enum bgp_addpath_strat addpath_type[AFI_MAX][SAFI_MAX];
1490
d62a17ae 1491 /* MD5 password */
1492 char *password;
718e3744 1493
d62a17ae 1494 /* default-originate route-map. */
1495 struct {
1496 char *name;
1497 struct route_map *map;
1498 } default_rmap[AFI_MAX][SAFI_MAX];
718e3744 1499
d62a17ae 1500 /* Peer status flags. */
d7c0a89a 1501 uint16_t sflags;
e9faf4be
QY
1502#define PEER_STATUS_ACCEPT_PEER (1U << 0) /* accept peer */
1503#define PEER_STATUS_PREFIX_OVERFLOW (1U << 1) /* prefix-overflow */
1504#define PEER_STATUS_CAPABILITY_OPEN (1U << 2) /* capability open send */
1505#define PEER_STATUS_HAVE_ACCEPT (1U << 3) /* accept peer's parent */
1506#define PEER_STATUS_GROUP (1U << 4) /* peer-group conf */
1507#define PEER_STATUS_NSF_MODE (1U << 5) /* NSF aware peer */
1508#define PEER_STATUS_NSF_WAIT (1U << 6) /* wait comeback peer */
d08c0c80
DA
1509/* received extended format encoding for OPEN message */
1510#define PEER_STATUS_EXT_OPT_PARAMS_LENGTH (1U << 7)
718e3744 1511
d62a17ae 1512 /* Peer status af flags (reset in bgp_stop) */
d7c0a89a 1513 uint16_t af_sflags[AFI_MAX][SAFI_MAX];
e9faf4be
QY
1514#define PEER_STATUS_ORF_PREFIX_SEND (1U << 0) /* prefix-list send peer */
1515#define PEER_STATUS_ORF_WAIT_REFRESH (1U << 1) /* wait refresh received peer */
1516#define PEER_STATUS_PREFIX_THRESHOLD (1U << 2) /* exceed prefix-threshold */
1517#define PEER_STATUS_PREFIX_LIMIT (1U << 3) /* exceed prefix-limit */
1518#define PEER_STATUS_EOR_SEND (1U << 4) /* end-of-rib send to peer */
1519#define PEER_STATUS_EOR_RECEIVED (1U << 5) /* end-of-rib received from peer */
9af52ccf
DA
1520#define PEER_STATUS_ENHANCED_REFRESH (1U << 6) /* Enhanced Route Refresh */
1521#define PEER_STATUS_BORR_SEND (1U << 7) /* BoRR send to peer */
1522#define PEER_STATUS_BORR_RECEIVED (1U << 8) /* BoRR received from peer */
1523#define PEER_STATUS_EORR_SEND (1U << 9) /* EoRR send to peer */
1524#define PEER_STATUS_EORR_RECEIVED (1U << 10) /* EoRR received from peer */
1479ed2f
DA
1525/* LLGR aware peer */
1526#define PEER_STATUS_LLGR_WAIT (1U << 11)
a783cc05 1527#define PEER_STATUS_REFRESH_PENDING (1U << 12) /* refresh request from peer */
5597214c 1528#define PEER_STATUS_RTT_SHUTDOWN (1U << 13) /* In shutdown state due to RTT */
e0701b79 1529
b90a8e13 1530 /* Configured timer values. */
1588f6f4
QY
1531 _Atomic uint32_t holdtime;
1532 _Atomic uint32_t keepalive;
1533 _Atomic uint32_t connect;
1534 _Atomic uint32_t routeadv;
6c537a18 1535 _Atomic uint32_t delayopen;
d62a17ae 1536
1537 /* Timer values. */
1588f6f4
QY
1538 _Atomic uint32_t v_start;
1539 _Atomic uint32_t v_connect;
1540 _Atomic uint32_t v_holdtime;
1541 _Atomic uint32_t v_keepalive;
1542 _Atomic uint32_t v_routeadv;
6c537a18 1543 _Atomic uint32_t v_delayopen;
1588f6f4
QY
1544 _Atomic uint32_t v_pmax_restart;
1545 _Atomic uint32_t v_gr_restart;
d62a17ae 1546
1547 /* Threads. */
1548 struct thread *t_read;
424ab01d 1549 struct thread *t_write;
d62a17ae 1550 struct thread *t_start;
387f984e
QY
1551 struct thread *t_connect_check_r;
1552 struct thread *t_connect_check_w;
d62a17ae 1553 struct thread *t_connect;
1554 struct thread *t_holdtime;
d62a17ae 1555 struct thread *t_routeadv;
6c537a18 1556 struct thread *t_delayopen;
d62a17ae 1557 struct thread *t_pmax_restart;
1558 struct thread *t_gr_restart;
1559 struct thread *t_gr_stale;
1479ed2f 1560 struct thread *t_llgr_stale[AFI_MAX][SAFI_MAX];
7651f277 1561 struct thread *t_revalidate_all[AFI_MAX][SAFI_MAX];
56257a44 1562 struct thread *t_generate_updgrp_packets;
424ab01d 1563 struct thread *t_process_packet;
1fae5c8e 1564 struct thread *t_process_packet_error;
9af52ccf 1565 struct thread *t_refresh_stalepath;
d62a17ae 1566
49507a6f 1567 /* Thread flags. */
0545c373 1568 _Atomic uint32_t thread_flags;
e9faf4be
QY
1569#define PEER_THREAD_WRITES_ON (1U << 0)
1570#define PEER_THREAD_READS_ON (1U << 1)
1571#define PEER_THREAD_KEEPALIVES_ON (1U << 2)
a77e2f4b
S
1572#define PEER_THREAD_SUBGRP_ADV_DELAY (1U << 3)
1573
d62a17ae 1574 /* workqueues */
1575 struct work_queue *clear_node_queue;
1576
a4d82a8a
PZ
1577#define PEER_TOTAL_RX(peer) \
1578 atomic_load_explicit(&peer->open_in, memory_order_relaxed) \
1579 + atomic_load_explicit(&peer->update_in, memory_order_relaxed) \
1580 + atomic_load_explicit(&peer->notify_in, memory_order_relaxed) \
1581 + atomic_load_explicit(&peer->refresh_in, \
1582 memory_order_relaxed) \
1583 + atomic_load_explicit(&peer->keepalive_in, \
1584 memory_order_relaxed) \
1585 + atomic_load_explicit(&peer->dynamic_cap_in, \
1586 memory_order_relaxed)
1587
1588#define PEER_TOTAL_TX(peer) \
1589 atomic_load_explicit(&peer->open_out, memory_order_relaxed) \
1590 + atomic_load_explicit(&peer->update_out, \
1591 memory_order_relaxed) \
1592 + atomic_load_explicit(&peer->notify_out, \
1593 memory_order_relaxed) \
1594 + atomic_load_explicit(&peer->refresh_out, \
1595 memory_order_relaxed) \
1596 + atomic_load_explicit(&peer->keepalive_out, \
1597 memory_order_relaxed) \
1598 + atomic_load_explicit(&peer->dynamic_cap_out, \
1599 memory_order_relaxed)
0112e9e0 1600
d62a17ae 1601 /* Statistics field */
996c9314
LB
1602 _Atomic uint32_t open_in; /* Open message input count */
1603 _Atomic uint32_t open_out; /* Open message output count */
1588f6f4
QY
1604 _Atomic uint32_t update_in; /* Update message input count */
1605 _Atomic uint32_t update_out; /* Update message ouput count */
1606 _Atomic time_t update_time; /* Update message received time. */
1607 _Atomic uint32_t keepalive_in; /* Keepalive input count */
1608 _Atomic uint32_t keepalive_out; /* Keepalive output count */
1609 _Atomic uint32_t notify_in; /* Notify input count */
1610 _Atomic uint32_t notify_out; /* Notify output count */
1611 _Atomic uint32_t refresh_in; /* Route Refresh input count */
1612 _Atomic uint32_t refresh_out; /* Route Refresh output count */
1613 _Atomic uint32_t dynamic_cap_in; /* Dynamic Capability input count. */
a4d82a8a 1614 _Atomic uint32_t dynamic_cap_out; /* Dynamic Capability output count. */
d62a17ae 1615
b4d46cc9
DL
1616 uint32_t stat_pfx_filter;
1617 uint32_t stat_pfx_aspath_loop;
1618 uint32_t stat_pfx_originator_loop;
1619 uint32_t stat_pfx_cluster_loop;
1620 uint32_t stat_pfx_nh_invalid;
1621 uint32_t stat_pfx_dup_withdraw;
1622 uint32_t stat_upd_7606; /* RFC7606: treat-as-withdraw */
1623
d62a17ae 1624 /* BGP state count */
d7c0a89a
QY
1625 uint32_t established; /* Established */
1626 uint32_t dropped; /* Dropped */
d62a17ae 1627
1628 /* Update delay related fields */
d7c0a89a 1629 uint8_t update_delay_over; /* When this is set, BGP is no more waiting
d62a17ae 1630 for EOR */
1631
1632 /* Syncronization list and time. */
1633 struct bgp_synchronize *sync[AFI_MAX][SAFI_MAX];
1634 time_t synctime;
1588f6f4
QY
1635 /* timestamp when the last UPDATE msg was written */
1636 _Atomic time_t last_write;
1637 /* timestamp when the last msg was written */
1638 _Atomic time_t last_update;
d62a17ae 1639
bd9fb6f3
DL
1640 /* only updated under io_mtx.
1641 * last_sendq_warn is only for ratelimiting log warning messages.
1642 */
1643 time_t last_sendq_ok, last_sendq_warn;
1644
d62a17ae 1645 /* Notify data. */
1646 struct bgp_notify notify;
1647
d62a17ae 1648 /* Filter structure. */
1649 struct bgp_filter filter[AFI_MAX][SAFI_MAX];
1650
70ee29b4
PM
1651 /*
1652 * Parallel array to filter that indicates whether each filter
1653 * originates from a peer-group or if it is config that is specific to
1654 * this individual peer. If a filter is set independent of the
1655 * peer-group the appropriate bit should be set here. If this peer is a
1656 * peer-group, this memory region should be all zeros. The assumption
1657 * is that the default state for all flags is unset. Due to filters
1658 * having a direction (e.g. in/out/...), this array has a third
1659 * dimension for storing the overrides independently per direction.
1660 *
1661 * Notes:
1662 * - if a filter for an individual peer is unset, the corresponding
1663 * override flag is unset and the peer is considered to be back in
1664 * sync with the peer-group.
1665 * - This does *not* contain the filter values, rather it contains
1666 * whether the filter in filter (struct bgp_filter) is peer-specific.
1667 */
73b1082e 1668 uint8_t filter_override[AFI_MAX][SAFI_MAX][FILTER_MAX];
e9faf4be
QY
1669#define PEER_FT_DISTRIBUTE_LIST (1U << 0) /* distribute-list */
1670#define PEER_FT_FILTER_LIST (1U << 1) /* filter-list */
1671#define PEER_FT_PREFIX_LIST (1U << 2) /* prefix-list */
1672#define PEER_FT_ROUTE_MAP (1U << 3) /* route-map */
1673#define PEER_FT_UNSUPPRESS_MAP (1U << 4) /* unsuppress-map */
7f7940e6 1674#define PEER_FT_ADVERTISE_MAP (1U << 5) /* advertise-map */
70ee29b4 1675
d62a17ae 1676 /* ORF Prefix-list */
1677 struct prefix_list *orf_plist[AFI_MAX][SAFI_MAX];
1678
1679 /* Text description of last attribute rcvd */
1680 char rcvd_attr_str[BUFSIZ];
1681
1682 /* Track if we printed the attribute in debugs */
1683 int rcvd_attr_printed;
1684
9cbd06e0 1685 /* Accepted prefix count */
a0a87037 1686 uint32_t pcount[AFI_MAX][SAFI_MAX];
d62a17ae 1687
1688 /* Max prefix count. */
a0a87037 1689 uint32_t pmax[AFI_MAX][SAFI_MAX];
d7c0a89a
QY
1690 uint8_t pmax_threshold[AFI_MAX][SAFI_MAX];
1691 uint16_t pmax_restart[AFI_MAX][SAFI_MAX];
e0701b79 1692#define MAXIMUM_PREFIX_THRESHOLD_DEFAULT 75
718e3744 1693
fde246e8
DA
1694 /* Send prefix count. */
1695 uint32_t pmax_out[AFI_MAX][SAFI_MAX];
1696
d62a17ae 1697 /* allowas-in. */
1698 char allowas_in[AFI_MAX][SAFI_MAX];
ac41b2a2 1699
01da2d26
DA
1700 /* soo */
1701 struct ecommunity *soo[AFI_MAX][SAFI_MAX];
1702
d62a17ae 1703 /* weight */
1704 unsigned long weight[AFI_MAX][SAFI_MAX];
d93f7ffc 1705
d62a17ae 1706 /* peer reset cause */
1a1f4534 1707 uint8_t last_reset;
e9faf4be
QY
1708#define PEER_DOWN_RID_CHANGE 1U /* bgp router-id command */
1709#define PEER_DOWN_REMOTE_AS_CHANGE 2U /* neighbor remote-as command */
1710#define PEER_DOWN_LOCAL_AS_CHANGE 3U /* neighbor local-as command */
1711#define PEER_DOWN_CLID_CHANGE 4U /* bgp cluster-id command */
1712#define PEER_DOWN_CONFED_ID_CHANGE 5U /* bgp confederation id command */
1713#define PEER_DOWN_CONFED_PEER_CHANGE 6U /* bgp confederation peer command */
1714#define PEER_DOWN_RR_CLIENT_CHANGE 7U /* neighbor rr-client command */
1715#define PEER_DOWN_RS_CLIENT_CHANGE 8U /* neighbor rs-client command */
1716#define PEER_DOWN_UPDATE_SOURCE_CHANGE 9U /* neighbor update-source command */
1717#define PEER_DOWN_AF_ACTIVATE 10U /* neighbor activate command */
1718#define PEER_DOWN_USER_SHUTDOWN 11U /* neighbor shutdown command */
1719#define PEER_DOWN_USER_RESET 12U /* clear ip bgp command */
1720#define PEER_DOWN_NOTIFY_RECEIVED 13U /* notification received */
1721#define PEER_DOWN_NOTIFY_SEND 14U /* notification send */
1722#define PEER_DOWN_CLOSE_SESSION 15U /* tcp session close */
1723#define PEER_DOWN_NEIGHBOR_DELETE 16U /* neghbor delete */
1724#define PEER_DOWN_RMAP_BIND 17U /* neghbor peer-group command */
1725#define PEER_DOWN_RMAP_UNBIND 18U /* no neighbor peer-group command */
1726#define PEER_DOWN_CAPABILITY_CHANGE 19U /* neighbor capability command */
1727#define PEER_DOWN_PASSIVE_CHANGE 20U /* neighbor passive command */
1728#define PEER_DOWN_MULTIHOP_CHANGE 21U /* neighbor multihop command */
1729#define PEER_DOWN_NSF_CLOSE_SESSION 22U /* NSF tcp session close */
1730#define PEER_DOWN_V6ONLY_CHANGE 23U /* if-based peering v6only toggled */
1731#define PEER_DOWN_BFD_DOWN 24U /* BFD down */
1732#define PEER_DOWN_IF_DOWN 25U /* Interface down */
1733#define PEER_DOWN_NBR_ADDR_DEL 26U /* Peer address lost */
1734#define PEER_DOWN_WAITING_NHT 27U /* Waiting for NHT to resolve */
1735#define PEER_DOWN_NBR_ADDR 28U /* Waiting for peer IPv6 IP Addr */
1736#define PEER_DOWN_VRF_UNINIT 29U /* Associated VRF is not init yet */
1737#define PEER_DOWN_NOAFI_ACTIVATED 30U /* No AFI/SAFI activated for peer */
1738#define PEER_DOWN_AS_SETS_REJECT 31U /* Reject routes with AS_SET */
1739#define PEER_DOWN_WAITING_OPEN 32U /* Waiting for open to succeed */
1740#define PEER_DOWN_PFX_COUNT 33U /* Reached received prefix count */
c5fe9095 1741#define PEER_DOWN_SOCKET_ERROR 34U /* Some socket error happened */
5597214c 1742#define PEER_DOWN_RTT_SHUTDOWN 35U /* Automatically shutdown due to RTT */
1e91f1d1
DS
1743 /*
1744 * Remember to update peer_down_str in bgp_fsm.c when you add
1745 * a new value to the last_reset reason
1746 */
1747
8dcad8e9 1748 uint16_t last_reset_cause_size;
d7c0a89a 1749 uint8_t last_reset_cause[BGP_MAX_PACKET_SIZE];
e0701b79 1750
d62a17ae 1751 /* The kind of route-map Flags.*/
a3116965 1752 uint16_t rmap_type;
e9faf4be
QY
1753#define PEER_RMAP_TYPE_IN (1U << 0) /* neighbor route-map in */
1754#define PEER_RMAP_TYPE_OUT (1U << 1) /* neighbor route-map out */
1755#define PEER_RMAP_TYPE_NETWORK (1U << 2) /* network route-map */
1756#define PEER_RMAP_TYPE_REDISTRIBUTE (1U << 3) /* redistribute route-map */
1757#define PEER_RMAP_TYPE_DEFAULT (1U << 4) /* default-originate route-map */
1758#define PEER_RMAP_TYPE_NOSET (1U << 5) /* not allow to set commands */
1759#define PEER_RMAP_TYPE_IMPORT (1U << 6) /* neighbor route-map import */
1760#define PEER_RMAP_TYPE_EXPORT (1U << 7) /* neighbor route-map export */
1761#define PEER_RMAP_TYPE_AGGREGATE (1U << 8) /* aggregate-address route-map */
6410e93a 1762
21bfce98
RZ
1763 /** Peer overwrite configuration. */
1764 struct bfd_session_config {
1765 /**
1766 * Manual configuration bit.
1767 *
1768 * This flag only makes sense for real peers (and not groups),
1769 * it keeps track if the user explicitly configured BFD for a
1770 * peer.
1771 */
1772 bool manual;
1773 /** Control Plane Independent. */
1774 bool cbit;
1775 /** Detection multiplier. */
1776 uint8_t detection_multiplier;
1777 /** Minimum required RX interval. */
1778 uint32_t min_rx;
1779 /** Minimum required TX interval. */
1780 uint32_t min_tx;
1781 /** Profile name. */
1782 char profile[BFD_PROFILE_NAME_LEN];
1783 /** Peer BFD session */
1784 struct bfd_session_params *session;
1785 } * bfd_config;
04b6bdc0 1786
d62a17ae 1787 /* hostname and domainname advertised by host */
1788 char *hostname;
1789 char *domainname;
19df7279 1790
2b31007c
RZ
1791 /* Sender side AS path loop detection. */
1792 bool as_path_loop_detection;
1793
ef56aee4
DA
1794 /* Extended Message Support */
1795 uint16_t max_packet_size;
1796
7f7940e6 1797 /* Conditional advertisement */
c385f82a
MK
1798 bool advmap_config_change[AFI_MAX][SAFI_MAX];
1799 bool advmap_table_change;
7f7940e6 1800
4ab46701
AR
1801 /* set TCP max segment size */
1802 uint32_t tcp_mss;
1803
8606be87
DA
1804 /* Long-lived Graceful Restart */
1805 struct llgr_info llgr[AFI_MAX][SAFI_MAX];
1806
aa24a36a
DA
1807 bool shut_during_cfg;
1808
96244aca 1809 QOBJ_FIELDS;
718e3744 1810};
96244aca 1811DECLARE_QOBJ_TYPE(peer);
718e3744 1812
598ce6bd 1813/* Inherit peer attribute from peer-group. */
e7103a96
PM
1814#define PEER_ATTR_INHERIT(peer, group, attr) \
1815 ((peer)->attr = (group)->conf->attr)
1816#define PEER_STR_ATTR_INHERIT(peer, group, attr, mt) \
598ce6bd 1817 do { \
e1b36e13 1818 XFREE(mt, (peer)->attr); \
e7103a96
PM
1819 if ((group)->conf->attr) \
1820 (peer)->attr = XSTRDUP(mt, (group)->conf->attr); \
598ce6bd
PM
1821 else \
1822 (peer)->attr = NULL; \
1823 } while (0)
a14810f4
PM
1824#define PEER_SU_ATTR_INHERIT(peer, group, attr) \
1825 do { \
1826 if ((peer)->attr) \
1827 sockunion_free((peer)->attr); \
1828 if ((group)->conf->attr) \
1829 (peer)->attr = sockunion_dup((group)->conf->attr); \
1830 else \
1831 (peer)->attr = NULL; \
1832 } while (0)
598ce6bd 1833
ad4cbda1 1834/* Check if suppress start/restart of sessions to peer. */
d62a17ae 1835#define BGP_PEER_START_SUPPRESSED(P) \
aa24a36a
DA
1836 (CHECK_FLAG((P)->flags, PEER_FLAG_SHUTDOWN) || \
1837 CHECK_FLAG((P)->sflags, PEER_STATUS_PREFIX_OVERFLOW) || \
1838 CHECK_FLAG((P)->bgp->flags, BGP_FLAG_SHUTDOWN) || \
1839 (P)->shut_during_cfg)
ad4cbda1 1840
a77e2f4b
S
1841#define PEER_ROUTE_ADV_DELAY(peer) \
1842 (CHECK_FLAG(peer->thread_flags, PEER_THREAD_SUBGRP_ADV_DELAY))
c208c586 1843
0df7c91f
PJ
1844#define PEER_PASSWORD_MINLEN (1)
1845#define PEER_PASSWORD_MAXLEN (80)
1846
718e3744 1847/* This structure's member directly points incoming packet data
1848 stream. */
d62a17ae 1849struct bgp_nlri {
1850 /* AFI. */
a46a2e9b 1851 uint16_t afi; /* iana_afi_t */
718e3744 1852
d62a17ae 1853 /* SAFI. */
a46a2e9b 1854 uint8_t safi; /* iana_safi_t */
718e3744 1855
d62a17ae 1856 /* Pointer to NLRI byte stream. */
d7c0a89a 1857 uint8_t *nlri;
718e3744 1858
d62a17ae 1859 /* Length of whole NLRI. */
1860 bgp_size_t length;
718e3744 1861};
1862
1863/* BGP versions. */
1864#define BGP_VERSION_4 4
718e3744 1865
1866/* Default BGP port number. */
1867#define BGP_PORT_DEFAULT 179
1868
9f33eea3
DA
1869/* Extended BGP Administrative Shutdown Communication */
1870#define BGP_ADMIN_SHUTDOWN_MSG_LEN 255
1871
718e3744 1872/* BGP minimum message size. */
1873#define BGP_MSG_OPEN_MIN_SIZE (BGP_HEADER_SIZE + 10)
1874#define BGP_MSG_UPDATE_MIN_SIZE (BGP_HEADER_SIZE + 4)
1875#define BGP_MSG_NOTIFY_MIN_SIZE (BGP_HEADER_SIZE + 2)
1876#define BGP_MSG_KEEPALIVE_MIN_SIZE (BGP_HEADER_SIZE + 0)
1877#define BGP_MSG_ROUTE_REFRESH_MIN_SIZE (BGP_HEADER_SIZE + 4)
1878#define BGP_MSG_CAPABILITY_MIN_SIZE (BGP_HEADER_SIZE + 3)
1879
1880/* BGP message types. */
1881#define BGP_MSG_OPEN 1
1882#define BGP_MSG_UPDATE 2
1883#define BGP_MSG_NOTIFY 3
1884#define BGP_MSG_KEEPALIVE 4
1885#define BGP_MSG_ROUTE_REFRESH_NEW 5
1886#define BGP_MSG_CAPABILITY 6
1887#define BGP_MSG_ROUTE_REFRESH_OLD 128
1888
1889/* BGP open optional parameter. */
1890#define BGP_OPEN_OPT_AUTH 1
1891#define BGP_OPEN_OPT_CAP 2
1892
1893/* BGP4 attribute type codes. */
1894#define BGP_ATTR_ORIGIN 1
1895#define BGP_ATTR_AS_PATH 2
1896#define BGP_ATTR_NEXT_HOP 3
1897#define BGP_ATTR_MULTI_EXIT_DISC 4
1898#define BGP_ATTR_LOCAL_PREF 5
1899#define BGP_ATTR_ATOMIC_AGGREGATE 6
1900#define BGP_ATTR_AGGREGATOR 7
1901#define BGP_ATTR_COMMUNITIES 8
1902#define BGP_ATTR_ORIGINATOR_ID 9
1903#define BGP_ATTR_CLUSTER_LIST 10
718e3744 1904#define BGP_ATTR_MP_REACH_NLRI 14
1905#define BGP_ATTR_MP_UNREACH_NLRI 15
1906#define BGP_ATTR_EXT_COMMUNITIES 16
0b2aa3a0
PJ
1907#define BGP_ATTR_AS4_PATH 17
1908#define BGP_ATTR_AS4_AGGREGATOR 18
a21bd7a3 1909#define BGP_ATTR_PMSI_TUNNEL 22
f4c89855 1910#define BGP_ATTR_ENCAP 23
9a659715 1911#define BGP_ATTR_IPV6_EXT_COMMUNITIES 25
97a52c82 1912#define BGP_ATTR_AIGP 26
57d187bc 1913#define BGP_ATTR_LARGE_COMMUNITIES 32
d864dd9e 1914#define BGP_ATTR_OTC 35
c5a543b4 1915#define BGP_ATTR_PREFIX_SID 40
ef3e0d04 1916#define BGP_ATTR_SRTE_COLOR 51
1e20238a 1917#ifdef ENABLE_BGP_VNC_ATTR
65efcfce
LB
1918#define BGP_ATTR_VNC 255
1919#endif
718e3744 1920
1921/* BGP update origin. */
1922#define BGP_ORIGIN_IGP 0
1923#define BGP_ORIGIN_EGP 1
1924#define BGP_ORIGIN_INCOMPLETE 2
229757f1 1925#define BGP_ORIGIN_UNSPECIFIED 255
718e3744 1926
1927/* BGP notify message codes. */
1928#define BGP_NOTIFY_HEADER_ERR 1
1929#define BGP_NOTIFY_OPEN_ERR 2
1930#define BGP_NOTIFY_UPDATE_ERR 3
1931#define BGP_NOTIFY_HOLD_ERR 4
1932#define BGP_NOTIFY_FSM_ERR 5
1933#define BGP_NOTIFY_CEASE 6
9af52ccf 1934#define BGP_NOTIFY_ROUTE_REFRESH_ERR 7
718e3744 1935
3893aeee
DA
1936/* Subcodes for BGP Finite State Machine Error */
1937#define BGP_NOTIFY_FSM_ERR_SUBCODE_UNSPECIFIC 0
1938#define BGP_NOTIFY_FSM_ERR_SUBCODE_OPENSENT 1
1939#define BGP_NOTIFY_FSM_ERR_SUBCODE_OPENCONFIRM 2
1940#define BGP_NOTIFY_FSM_ERR_SUBCODE_ESTABLISHED 3
1941
4b4e07d2
DT
1942#define BGP_NOTIFY_SUBCODE_UNSPECIFIC 0
1943
718e3744 1944/* BGP_NOTIFY_HEADER_ERR sub codes. */
1945#define BGP_NOTIFY_HEADER_NOT_SYNC 1
1946#define BGP_NOTIFY_HEADER_BAD_MESLEN 2
1947#define BGP_NOTIFY_HEADER_BAD_MESTYPE 3
718e3744 1948
1949/* BGP_NOTIFY_OPEN_ERR sub codes. */
14051b36 1950#define BGP_NOTIFY_OPEN_MALFORMED_ATTR 0
718e3744 1951#define BGP_NOTIFY_OPEN_UNSUP_VERSION 1
1952#define BGP_NOTIFY_OPEN_BAD_PEER_AS 2
1953#define BGP_NOTIFY_OPEN_BAD_BGP_IDENT 3
1954#define BGP_NOTIFY_OPEN_UNSUP_PARAM 4
1955#define BGP_NOTIFY_OPEN_AUTH_FAILURE 5
1956#define BGP_NOTIFY_OPEN_UNACEP_HOLDTIME 6
1957#define BGP_NOTIFY_OPEN_UNSUP_CAPBL 7
d864dd9e 1958#define BGP_NOTIFY_OPEN_ROLE_MISMATCH 11
718e3744 1959
1960/* BGP_NOTIFY_UPDATE_ERR sub codes. */
1961#define BGP_NOTIFY_UPDATE_MAL_ATTR 1
1962#define BGP_NOTIFY_UPDATE_UNREC_ATTR 2
1963#define BGP_NOTIFY_UPDATE_MISS_ATTR 3
1964#define BGP_NOTIFY_UPDATE_ATTR_FLAG_ERR 4
1965#define BGP_NOTIFY_UPDATE_ATTR_LENG_ERR 5
1966#define BGP_NOTIFY_UPDATE_INVAL_ORIGIN 6
1967#define BGP_NOTIFY_UPDATE_AS_ROUTE_LOOP 7
1968#define BGP_NOTIFY_UPDATE_INVAL_NEXT_HOP 8
1969#define BGP_NOTIFY_UPDATE_OPT_ATTR_ERR 9
1970#define BGP_NOTIFY_UPDATE_INVAL_NETWORK 10
1971#define BGP_NOTIFY_UPDATE_MAL_AS_PATH 11
718e3744 1972
4b4e07d2 1973/* BGP_NOTIFY_CEASE sub codes (RFC 4486). */
718e3744 1974#define BGP_NOTIFY_CEASE_MAX_PREFIX 1
1975#define BGP_NOTIFY_CEASE_ADMIN_SHUTDOWN 2
1976#define BGP_NOTIFY_CEASE_PEER_UNCONFIG 3
1977#define BGP_NOTIFY_CEASE_ADMIN_RESET 4
1978#define BGP_NOTIFY_CEASE_CONNECT_REJECT 5
1979#define BGP_NOTIFY_CEASE_CONFIG_CHANGE 6
545acafb 1980#define BGP_NOTIFY_CEASE_COLLISION_RESOLUTION 7
1981#define BGP_NOTIFY_CEASE_OUT_OF_RESOURCE 8
eea685b6 1982#define BGP_NOTIFY_CEASE_HARD_RESET 9
aebe2e37 1983#define BGP_NOTIFY_CEASE_BFD_DOWN 10
718e3744 1984
9af52ccf
DA
1985/* BGP_NOTIFY_ROUTE_REFRESH_ERR sub codes (RFC 7313). */
1986#define BGP_NOTIFY_ROUTE_REFRESH_INVALID_MSG_LEN 1
1987
1988/* BGP route refresh optional subtypes. */
1989#define BGP_ROUTE_REFRESH_NORMAL 0
1990#define BGP_ROUTE_REFRESH_BORR 1
1991#define BGP_ROUTE_REFRESH_EORR 2
718e3744 1992
718e3744 1993/* BGP timers default value. */
5ca5f1c8 1994#define BGP_INIT_START_TIMER 1
5d5393b9
DL
1995/* The following 3 are RFC defaults that are overridden in bgp_vty.c with
1996 * version-/profile-specific values. The values here do not matter, they only
1997 * exist to provide a clear layering separation between core and CLI.
1998 */
1999#define BGP_DEFAULT_HOLDTIME 180
2000#define BGP_DEFAULT_KEEPALIVE 60
2001#define BGP_DEFAULT_CONNECT_RETRY 120
2002
12179ba3 2003#define BGP_DEFAULT_EBGP_ROUTEADV 0
1670355a 2004#define BGP_DEFAULT_IBGP_ROUTEADV 0
718e3744 2005
6c537a18
DS
2006/* BGP RFC 4271 DelayOpenTime default value */
2007#define BGP_DEFAULT_DELAYOPEN 120
2008
718e3744 2009/* BGP default local preference. */
2010#define BGP_DEFAULT_LOCAL_PREF 100
2011
7f323236
DW
2012/* BGP local-preference to send when 'bgp graceful-shutdown'
2013 * is configured */
2014#define BGP_GSHUT_LOCAL_PREF 0
2015
3f9c7369
DS
2016/* BGP default subgroup packet queue max . */
2017#define BGP_DEFAULT_SUBGROUP_PKT_QUEUE_MAX 40
2018
538621f2 2019/* BGP graceful restart */
2020#define BGP_DEFAULT_RESTART_TIME 120
2021#define BGP_DEFAULT_STALEPATH_TIME 360
cfd47646 2022#define BGP_DEFAULT_SELECT_DEFERRAL_TIME 360
2d3dd828 2023#define BGP_DEFAULT_RIB_STALE_TIME 500
c208c586 2024#define BGP_DEFAULT_UPDATE_ADVERTISEMENT_TIME 1
538621f2 2025
8606be87 2026/* BGP Long-lived Graceful Restart */
7f8a9a24 2027#define BGP_DEFAULT_LLGR_STALE_TIME 0
8606be87 2028
718e3744 2029/* BGP uptime string length. */
2030#define BGP_UPTIME_LEN 25
2031
2032/* Default configuration settings for bgpd. */
2033#define BGP_VTY_PORT 2605
718e3744 2034#define BGP_DEFAULT_CONFIG "bgpd.conf"
2035
f14e6fdb
DS
2036/* BGP Dynamic Neighbors feature */
2037#define BGP_DYNAMIC_NEIGHBORS_LIMIT_DEFAULT 100
2038#define BGP_DYNAMIC_NEIGHBORS_LIMIT_MIN 1
5b1b6b8b 2039#define BGP_DYNAMIC_NEIGHBORS_LIMIT_MAX 65535
f14e6fdb 2040
97a52c82
DA
2041/* BGP AIGP */
2042#define BGP_AIGP_TLV_RESERVED 0 /* AIGP Reserved */
2043#define BGP_AIGP_TLV_METRIC 1 /* AIGP Metric */
2044#define BGP_AIGP_TLV_METRIC_LEN 11
2045#define BGP_AIGP_TLV_METRIC_MAX 0xffffffffffffffffULL
2046#define BGP_AIGP_TLV_METRIC_DESC "Accumulated IGP Metric"
2047
718e3744 2048/* Flag for peer_clear_soft(). */
d62a17ae 2049enum bgp_clear_type {
2050 BGP_CLEAR_SOFT_NONE,
2051 BGP_CLEAR_SOFT_OUT,
2052 BGP_CLEAR_SOFT_IN,
2053 BGP_CLEAR_SOFT_BOTH,
3cb14f26
DS
2054 BGP_CLEAR_SOFT_IN_ORF_PREFIX,
2055 BGP_CLEAR_MESSAGE_STATS
718e3744 2056};
2057
2058/* Macros. */
424ab01d 2059#define BGP_INPUT(P) ((P)->curr)
2d34fb80 2060#define BGP_INPUT_PNT(P) (stream_pnt(BGP_INPUT(P)))
d62a17ae 2061#define BGP_IS_VALID_STATE_FOR_NOTIF(S) \
2062 (((S) == OpenSent) || ((S) == OpenConfirm) || ((S) == Established))
718e3744 2063
718e3744 2064/* BGP error codes. */
4b7e23e9
DS
2065enum bgp_create_error_code {
2066 BGP_SUCCESS = 0,
2067 BGP_CREATED = 1,
2068 BGP_ERR_INVALID_VALUE = -1,
2069 BGP_ERR_INVALID_FLAG = -2,
2070 BGP_ERR_INVALID_AS = -3,
e4aa4745
DS
2071 BGP_ERR_PEER_GROUP_MEMBER = -4,
2072 BGP_ERR_PEER_GROUP_NO_REMOTE_AS = -5,
2073 BGP_ERR_PEER_GROUP_CANT_CHANGE = -6,
2074 BGP_ERR_PEER_GROUP_MISMATCH = -7,
2075 BGP_ERR_PEER_GROUP_PEER_TYPE_DIFFERENT = -8,
2076 BGP_ERR_AS_MISMATCH = -9,
2077 BGP_ERR_PEER_FLAG_CONFLICT = -10,
2078 BGP_ERR_PEER_GROUP_SHUTDOWN = -11,
2079 BGP_ERR_PEER_FILTER_CONFLICT = -12,
2080 BGP_ERR_NOT_INTERNAL_PEER = -13,
2081 BGP_ERR_REMOVE_PRIVATE_AS = -14,
2082 BGP_ERR_AF_UNCONFIGURED = -15,
2083 BGP_ERR_SOFT_RECONFIG_UNCONFIGURED = -16,
2084 BGP_ERR_INSTANCE_MISMATCH = -17,
e4aa4745
DS
2085 BGP_ERR_CANNOT_HAVE_LOCAL_AS_SAME_AS = -19,
2086 BGP_ERR_TCPSIG_FAILED = -20,
2087 BGP_ERR_NO_EBGP_MULTIHOP_WITH_TTLHACK = -21,
2088 BGP_ERR_NO_IBGP_WITH_TTLHACK = -22,
2089 BGP_ERR_NO_INTERFACE_CONFIG = -23,
e4aa4745
DS
2090 BGP_ERR_AS_OVERRIDE = -25,
2091 BGP_ERR_INVALID_DYNAMIC_NEIGHBORS_LIMIT = -26,
2092 BGP_ERR_DYNAMIC_NEIGHBORS_RANGE_EXISTS = -27,
2093 BGP_ERR_DYNAMIC_NEIGHBORS_RANGE_NOT_FOUND = -28,
2094 BGP_ERR_INVALID_FOR_DYNAMIC_PEER = -29,
2095 BGP_ERR_INVALID_FOR_DIRECT_PEER = -30,
2096 BGP_ERR_PEER_SAFI_CONFLICT = -31,
4b7e23e9
DS
2097
2098 /* BGP GR ERRORS */
e4aa4745
DS
2099 BGP_ERR_GR_INVALID_CMD = -32,
2100 BGP_ERR_GR_OPERATION_FAILED = -33,
2101 BGP_GR_NO_OPERATION = -34,
d864dd9e
EB
2102
2103 /*BGP Open Policy ERRORS */
2104 BGP_ERR_INVALID_ROLE_NAME = -35,
70cd87ca
MK
2105 BGP_ERR_INVALID_INTERNAL_ROLE = -36,
2106
2107 /* BGP ORR ERRORS */
2108 BGP_ERR_PEER_ORR_CONFIGURED = -37,
4b7e23e9 2109};
b0965c44 2110
3f9c7369
DS
2111/*
2112 * Enumeration of different policy kinds a peer can be configured with.
2113 */
d54f55f2 2114enum bgp_policy_type {
d62a17ae 2115 BGP_POLICY_ROUTE_MAP,
2116 BGP_POLICY_FILTER_LIST,
2117 BGP_POLICY_PREFIX_LIST,
2118 BGP_POLICY_DISTRIBUTE_LIST,
d54f55f2 2119};
3f9c7369 2120
dcc68b5e
MS
2121/* peer_flag_change_type. */
2122enum peer_change_type {
2123 peer_change_none,
2124 peer_change_reset,
2125 peer_change_reset_in,
2126 peer_change_reset_out,
2127};
2128
718e3744 2129extern struct bgp_master *bm;
37fe7731 2130extern unsigned int multipath_num;
718e3744 2131
718e3744 2132/* Prototypes. */
d62a17ae 2133extern void bgp_terminate(void);
2134extern void bgp_reset(void);
d62a17ae 2135extern void bgp_zclient_reset(void);
d62a17ae 2136extern struct bgp *bgp_get_default(void);
2137extern struct bgp *bgp_lookup(as_t, const char *);
2138extern struct bgp *bgp_lookup_by_name(const char *);
2139extern struct bgp *bgp_lookup_by_vrf_id(vrf_id_t);
e2f3a930
T
2140extern struct bgp *bgp_get_evpn(void);
2141extern void bgp_set_evpn(struct bgp *bgp);
d62a17ae 2142extern struct peer *peer_lookup(struct bgp *, union sockunion *);
2143extern struct peer *peer_lookup_by_conf_if(struct bgp *, const char *);
04b6bdc0 2144extern struct peer *peer_lookup_by_hostname(struct bgp *, const char *);
d62a17ae 2145extern void bgp_peer_conf_if_to_su_update(struct peer *);
ffd0c037 2146extern int peer_group_listen_range_del(struct peer_group *, struct prefix *);
d62a17ae 2147extern struct peer_group *peer_group_lookup(struct bgp *, const char *);
2148extern struct peer_group *peer_group_get(struct bgp *, const char *);
2149extern struct peer *peer_create_bind_dynamic_neighbor(struct bgp *,
2150 union sockunion *,
2151 struct peer_group *);
2152extern struct prefix *
2153peer_group_lookup_dynamic_neighbor_range(struct peer_group *, struct prefix *);
2154extern struct peer_group *peer_group_lookup_dynamic_neighbor(struct bgp *,
2155 struct prefix *,
2156 struct prefix **);
2157extern struct peer *peer_lookup_dynamic_neighbor(struct bgp *,
2158 union sockunion *);
28066f4b 2159
70cd87ca 2160extern bool peer_orr_rrclient_check(struct peer *peer, afi_t afi, safi_t safi);
28066f4b
DS
2161/*
2162 * Peers are incredibly easy to memory leak
2163 * due to the various ways that they are actually used
2164 * Provide some functionality to debug locks and unlocks
2165 */
2166extern struct peer *peer_lock_with_caller(const char *, struct peer *);
2167extern struct peer *peer_unlock_with_caller(const char *, struct peer *);
2168#define peer_unlock(A) peer_unlock_with_caller(__FUNCTION__, (A))
2169#define peer_lock(B) peer_lock_with_caller(__FUNCTION__, (B))
2170
3061acc2
DA
2171extern enum bgp_peer_sort peer_sort(struct peer *peer);
2172extern enum bgp_peer_sort peer_sort_lookup(struct peer *peer);
bf0d28dc 2173
3dc339cd
DA
2174extern bool peer_active(struct peer *);
2175extern bool peer_active_nego(struct peer *);
10711563
DA
2176extern bool peer_afc_received(struct peer *peer);
2177extern bool peer_afc_advertised(struct peer *peer);
d62a17ae 2178extern void bgp_recalculate_all_bestpaths(struct bgp *bgp);
534db980
DS
2179extern struct peer *peer_create(union sockunion *su, const char *conf_if,
2180 struct bgp *bgp, as_t local_as, as_t remote_as,
2181 int as_type, struct peer_group *group,
2182 bool config_node);
d62a17ae 2183extern struct peer *peer_create_accept(struct bgp *);
2184extern void peer_xfer_config(struct peer *dst, struct peer *src);
94d4c685
DS
2185extern char *peer_uptime(time_t uptime2, char *buf, size_t len, bool use_json,
2186 json_object *json);
856ca177 2187
d62a17ae 2188extern int bgp_config_write(struct vty *);
6b0655a2 2189
85e9cd9a
AMR
2190extern void bgp_master_init(struct thread_master *master, const int buffer_size,
2191 struct list *addresses);
718e3744 2192
f533be73 2193extern void bgp_init(unsigned short instance);
419dfe6a 2194extern void bgp_pthreads_run(void);
2d4ee774 2195extern void bgp_pthreads_finish(void);
d62a17ae 2196extern void bgp_route_map_init(void);
2197extern void bgp_session_reset(struct peer *);
718e3744 2198
d62a17ae 2199extern int bgp_option_set(int);
2200extern int bgp_option_unset(int);
2201extern int bgp_option_check(int);
718e3744 2202
c163f297
DS
2203/* set the bgp no-rib option during runtime and remove installed routes */
2204extern void bgp_option_norib_set_runtime(void);
2205
2206/* unset the bgp no-rib option during runtime and reset all peers */
2207extern void bgp_option_norib_unset_runtime(void);
2208
d62a17ae 2209extern int bgp_get(struct bgp **, as_t *, const char *, enum bgp_instance_type);
2210extern void bgp_instance_up(struct bgp *);
2211extern void bgp_instance_down(struct bgp *);
2212extern int bgp_delete(struct bgp *);
718e3744 2213
e5619c28
PG
2214extern int bgp_handle_socket(struct bgp *bgp, struct vrf *vrf,
2215 vrf_id_t old_vrf_id, bool create);
2216
d62a17ae 2217extern void bgp_router_id_zebra_bump(vrf_id_t, const struct prefix *);
3dc339cd 2218extern void bgp_router_id_static_set(struct bgp *, struct in_addr);
718e3744 2219
9acb67cb 2220extern void bm_wait_for_fib_set(bool set);
c208c586 2221extern void bgp_suppress_fib_pending_set(struct bgp *bgp, bool set);
0b1fb52c
DA
2222extern void bgp_cluster_id_set(struct bgp *bgp, struct in_addr *cluster_id);
2223extern void bgp_cluster_id_unset(struct bgp *bgp);
718e3744 2224
0b1fb52c
DA
2225extern void bgp_confederation_id_set(struct bgp *bgp, as_t as);
2226extern void bgp_confederation_id_unset(struct bgp *bgp);
3dc339cd 2227extern bool bgp_confederation_peers_check(struct bgp *, as_t);
718e3744 2228
0b1fb52c
DA
2229extern void bgp_confederation_peers_add(struct bgp *bgp, as_t as);
2230extern void bgp_confederation_peers_remove(struct bgp *bgp, as_t as);
718e3744 2231
3dc339cd 2232extern void bgp_timers_set(struct bgp *, uint32_t keepalive, uint32_t holdtime,
6c537a18 2233 uint32_t connect_retry, uint32_t delayopen);
3dc339cd 2234extern void bgp_timers_unset(struct bgp *);
718e3744 2235
0b1fb52c
DA
2236extern void bgp_default_local_preference_set(struct bgp *bgp,
2237 uint32_t local_pref);
2238extern void bgp_default_local_preference_unset(struct bgp *bgp);
718e3744 2239
0b1fb52c
DA
2240extern void bgp_default_subgroup_pkt_queue_max_set(struct bgp *bgp,
2241 uint32_t queue_size);
2242extern void bgp_default_subgroup_pkt_queue_max_unset(struct bgp *bgp);
3f9c7369 2243
0b1fb52c
DA
2244extern void bgp_listen_limit_set(struct bgp *bgp, int listen_limit);
2245extern void bgp_listen_limit_unset(struct bgp *bgp);
f14e6fdb 2246
3dc339cd
DA
2247extern bool bgp_update_delay_active(struct bgp *);
2248extern bool bgp_update_delay_configured(struct bgp *);
0b1fb52c 2249extern bool bgp_afi_safi_peer_exists(struct bgp *bgp, afi_t afi, safi_t safi);
d62a17ae 2250extern void peer_as_change(struct peer *, as_t, int);
2251extern int peer_remote_as(struct bgp *, union sockunion *, const char *, as_t *,
e84c59af 2252 int);
d62a17ae 2253extern int peer_group_remote_as(struct bgp *, const char *, as_t *, int);
2254extern int peer_delete(struct peer *peer);
3dc339cd 2255extern void peer_notify_unconfig(struct peer *peer);
d62a17ae 2256extern int peer_group_delete(struct peer_group *);
2257extern int peer_group_remote_as_delete(struct peer_group *);
f14e6fdb 2258extern int peer_group_listen_range_add(struct peer_group *, struct prefix *);
3dc339cd 2259extern void peer_group_notify_unconfig(struct peer_group *group);
718e3744 2260
d62a17ae 2261extern int peer_activate(struct peer *, afi_t, safi_t);
2262extern int peer_deactivate(struct peer *, afi_t, safi_t);
718e3744 2263
d62a17ae 2264extern int peer_group_bind(struct bgp *, union sockunion *, struct peer *,
2265 struct peer_group *, as_t *);
718e3744 2266
83194f39
DA
2267extern int peer_flag_set(struct peer *peer, uint64_t flag);
2268extern int peer_flag_unset(struct peer *peer, uint64_t flag);
2269extern void peer_flag_inherit(struct peer *peer, uint64_t flag);
718e3744 2270
da5e1a58
DA
2271extern int peer_af_flag_set(struct peer *peer, afi_t afi, safi_t safi,
2272 uint64_t flag);
2273extern int peer_af_flag_unset(struct peer *peer, afi_t afi, safi_t safi,
2274 uint64_t flag);
d7c0a89a 2275extern int peer_af_flag_check(struct peer *, afi_t, safi_t, uint32_t);
cf9ac8bf 2276extern void peer_af_flag_inherit(struct peer *peer, afi_t afi, safi_t safi,
da5e1a58 2277 uint64_t flag);
dcc68b5e
MS
2278extern void peer_change_action(struct peer *peer, afi_t afi, safi_t safi,
2279 enum peer_change_type type);
718e3744 2280
d62a17ae 2281extern int peer_ebgp_multihop_set(struct peer *, int);
2282extern int peer_ebgp_multihop_unset(struct peer *);
2283extern int is_ebgp_multihop_configured(struct peer *peer);
718e3744 2284
8f2d6021 2285extern int peer_role_set(struct peer *peer, uint8_t role, bool strict_mode);
d864dd9e
EB
2286extern int peer_role_unset(struct peer *peer);
2287
3dc339cd
DA
2288extern void peer_description_set(struct peer *, const char *);
2289extern void peer_description_unset(struct peer *);
718e3744 2290
d62a17ae 2291extern int peer_update_source_if_set(struct peer *, const char *);
0b1fb52c
DA
2292extern void peer_update_source_addr_set(struct peer *peer,
2293 const union sockunion *su);
2294extern void peer_update_source_unset(struct peer *peer);
718e3744 2295
1de27621
DA
2296extern int peer_default_originate_set(struct peer *peer, afi_t afi, safi_t safi,
2297 const char *rmap,
2298 struct route_map *route_map);
d62a17ae 2299extern int peer_default_originate_unset(struct peer *, afi_t, safi_t);
d1adb448
PG
2300extern void bgp_tcp_keepalive_set(struct bgp *bgp, uint16_t idle,
2301 uint16_t interval, uint16_t probes);
2302extern void bgp_tcp_keepalive_unset(struct bgp *bgp);
718e3744 2303
3dc339cd
DA
2304extern void peer_port_set(struct peer *, uint16_t);
2305extern void peer_port_unset(struct peer *);
718e3744 2306
d7c0a89a 2307extern int peer_weight_set(struct peer *, afi_t, safi_t, uint16_t);
d62a17ae 2308extern int peer_weight_unset(struct peer *, afi_t, safi_t);
718e3744 2309
d7c0a89a
QY
2310extern int peer_timers_set(struct peer *, uint32_t keepalive,
2311 uint32_t holdtime);
d62a17ae 2312extern int peer_timers_unset(struct peer *);
718e3744 2313
d7c0a89a 2314extern int peer_timers_connect_set(struct peer *, uint32_t);
d62a17ae 2315extern int peer_timers_connect_unset(struct peer *);
718e3744 2316
d7c0a89a 2317extern int peer_advertise_interval_set(struct peer *, uint32_t);
d62a17ae 2318extern int peer_advertise_interval_unset(struct peer *);
718e3744 2319
6c537a18
DS
2320extern int peer_timers_delayopen_set(struct peer *peer, uint32_t delayopen);
2321extern int peer_timers_delayopen_unset(struct peer *peer);
2322
d62a17ae 2323extern void peer_interface_set(struct peer *, const char *);
2324extern void peer_interface_unset(struct peer *);
718e3744 2325
d62a17ae 2326extern int peer_distribute_set(struct peer *, afi_t, safi_t, int, const char *);
2327extern int peer_distribute_unset(struct peer *, afi_t, safi_t, int);
718e3744 2328
d62a17ae 2329extern int peer_allowas_in_set(struct peer *, afi_t, safi_t, int, int);
2330extern int peer_allowas_in_unset(struct peer *, afi_t, safi_t);
718e3744 2331
f4b8ec07
CS
2332extern int peer_local_as_set(struct peer *, as_t, bool no_prepend,
2333 bool replace_as);
d62a17ae 2334extern int peer_local_as_unset(struct peer *);
718e3744 2335
d62a17ae 2336extern int peer_prefix_list_set(struct peer *, afi_t, safi_t, int,
2337 const char *);
2338extern int peer_prefix_list_unset(struct peer *, afi_t, safi_t, int);
718e3744 2339
d62a17ae 2340extern int peer_aslist_set(struct peer *, afi_t, safi_t, int, const char *);
2341extern int peer_aslist_unset(struct peer *, afi_t, safi_t, int);
718e3744 2342
1de27621
DA
2343extern int peer_route_map_set(struct peer *peer, afi_t afi, safi_t safi, int,
2344 const char *name, struct route_map *route_map);
d62a17ae 2345extern int peer_route_map_unset(struct peer *, afi_t, safi_t, int);
718e3744 2346
1de27621
DA
2347extern int peer_unsuppress_map_set(struct peer *peer, afi_t afi, safi_t safi,
2348 const char *name,
2349 struct route_map *route_map);
0df7c91f 2350
7f7940e6
MK
2351extern int peer_advertise_map_set(struct peer *peer, afi_t afi, safi_t safi,
2352 const char *advertise_name,
2353 struct route_map *advertise_map,
cf2ad4d8
MK
2354 const char *condition_name,
2355 struct route_map *condition_map,
2356 bool condition);
7f7940e6 2357
d62a17ae 2358extern int peer_password_set(struct peer *, const char *);
2359extern int peer_password_unset(struct peer *);
0df7c91f 2360
d62a17ae 2361extern int peer_unsuppress_map_unset(struct peer *, afi_t, safi_t);
718e3744 2362
7f7940e6
MK
2363extern int peer_advertise_map_unset(struct peer *peer, afi_t afi, safi_t safi,
2364 const char *advertise_name,
2365 struct route_map *advertise_map,
cf2ad4d8
MK
2366 const char *condition_name,
2367 struct route_map *condition_map,
2368 bool condition);
7f7940e6 2369
d7c0a89a 2370extern int peer_maximum_prefix_set(struct peer *, afi_t, safi_t, uint32_t,
9cbd06e0 2371 uint8_t, int, uint16_t, bool force);
d62a17ae 2372extern int peer_maximum_prefix_unset(struct peer *, afi_t, safi_t);
718e3744 2373
d0bf49ec
LS
2374extern void peer_maximum_prefix_out_refresh_routes(struct peer *peer, afi_t afi,
2375 safi_t safi);
80444d30
LS
2376extern int peer_maximum_prefix_out_set(struct peer *peer, afi_t afi,
2377 safi_t safi, uint32_t max);
2378extern int peer_maximum_prefix_out_unset(struct peer *peer, afi_t afi,
2379 safi_t safi);
d0bf49ec 2380
d62a17ae 2381extern int peer_clear(struct peer *, struct listnode **);
2382extern int peer_clear_soft(struct peer *, afi_t, safi_t, enum bgp_clear_type);
93406d87 2383
d62a17ae 2384extern int peer_ttl_security_hops_set(struct peer *, int);
2385extern int peer_ttl_security_hops_unset(struct peer *);
fa411a21 2386
3dc339cd
DA
2387extern void peer_tx_shutdown_message_set(struct peer *, const char *msg);
2388extern void peer_tx_shutdown_message_unset(struct peer *);
73d70fa6 2389
cc9f21da 2390extern void bgp_route_map_update_timer(struct thread *thread);
8f2d6021 2391extern const char *bgp_get_name_by_role(uint8_t role);
d864dd9e 2392
518f0eb1 2393extern void bgp_route_map_terminate(void);
16286195 2394
d62a17ae 2395extern int peer_cmp(struct peer *p1, struct peer *p2);
3f9c7369 2396
5c525538 2397extern int bgp_map_afi_safi_iana2int(iana_afi_t pkt_afi, iana_safi_t pkt_safi,
d62a17ae 2398 afi_t *afi, safi_t *safi);
2399extern int bgp_map_afi_safi_int2iana(afi_t afi, safi_t safi,
a4d82a8a
PZ
2400 iana_afi_t *pkt_afi,
2401 iana_safi_t *pkt_safi);
9cabb64b 2402
d62a17ae 2403extern struct peer_af *peer_af_create(struct peer *, afi_t, safi_t);
2404extern struct peer_af *peer_af_find(struct peer *, afi_t, safi_t);
2405extern int peer_af_delete(struct peer *, afi_t, safi_t);
3f9c7369 2406
736b68f3 2407extern void bgp_shutdown_enable(struct bgp *bgp, const char *msg);
9cf59432
DS
2408extern void bgp_shutdown_disable(struct bgp *bgp);
2409
ffd0c037 2410extern void bgp_close(void);
92375c91 2411extern void bgp_free(struct bgp *);
b0965c44 2412void bgp_gr_apply_running_config(void);
70cd87ca
MK
2413extern int bgp_afi_safi_orr_group_set(struct bgp *bgp, afi_t afi, safi_t safi,
2414 const char *name, struct peer *primary,
2415 struct peer *secondary,
2416 struct peer *tertiary);
2417extern int bgp_afi_safi_orr_group_unset(struct bgp *bgp, afi_t afi, safi_t safi,
2418 const char *name);
b0965c44 2419
2420/* BGP GR */
b0965c44 2421int bgp_global_gr_init(struct bgp *bgp);
2422int bgp_peer_gr_init(struct peer *peer);
92375c91 2423
2d3dd828 2424
36235319
QY
2425#define BGP_GR_ROUTER_DETECT_AND_SEND_CAPABILITY_TO_ZEBRA(_bgp, _peer_list) \
2426 do { \
2427 struct peer *peer_loop; \
2428 bool gr_router_detected = false; \
2429 struct listnode *node = {0}; \
2430 for (ALL_LIST_ELEMENTS_RO(_peer_list, node, peer_loop)) { \
2431 if (CHECK_FLAG(peer_loop->flags, \
2432 PEER_FLAG_GRACEFUL_RESTART)) \
2433 gr_router_detected = true; \
2434 } \
2435 if (gr_router_detected \
2436 && _bgp->present_zebra_gr_state == ZEBRA_GR_DISABLE) { \
2437 bgp_zebra_send_capabilities(_bgp, false); \
2438 } else if (!gr_router_detected \
2439 && _bgp->present_zebra_gr_state \
2440 == ZEBRA_GR_ENABLE) { \
2441 bgp_zebra_send_capabilities(_bgp, true); \
2442 } \
2443 } while (0)
2d3dd828 2444
92375c91
JB
2445static inline struct bgp *bgp_lock(struct bgp *bgp)
2446{
2447 bgp->lock++;
2448 return bgp;
2449}
2450
2451static inline void bgp_unlock(struct bgp *bgp)
2452{
2453 assert(bgp->lock > 0);
2454 if (--bgp->lock == 0)
2455 bgp_free(bgp);
2456}
ffd0c037 2457
d62a17ae 2458static inline int afindex(afi_t afi, safi_t safi)
3f9c7369 2459{
d62a17ae 2460 switch (afi) {
2461 case AFI_IP:
2462 switch (safi) {
2463 case SAFI_UNICAST:
2464 return BGP_AF_IPV4_UNICAST;
d62a17ae 2465 case SAFI_MULTICAST:
2466 return BGP_AF_IPV4_MULTICAST;
d62a17ae 2467 case SAFI_LABELED_UNICAST:
2468 return BGP_AF_IPV4_LBL_UNICAST;
d62a17ae 2469 case SAFI_MPLS_VPN:
2470 return BGP_AF_IPV4_VPN;
d62a17ae 2471 case SAFI_ENCAP:
2472 return BGP_AF_IPV4_ENCAP;
7c40bf39 2473 case SAFI_FLOWSPEC:
2474 return BGP_AF_IPV4_FLOWSPEC;
d62a17ae 2475 default:
2476 return BGP_AF_MAX;
d62a17ae 2477 }
2478 break;
2479 case AFI_IP6:
2480 switch (safi) {
2481 case SAFI_UNICAST:
2482 return BGP_AF_IPV6_UNICAST;
d62a17ae 2483 case SAFI_MULTICAST:
2484 return BGP_AF_IPV6_MULTICAST;
d62a17ae 2485 case SAFI_LABELED_UNICAST:
2486 return BGP_AF_IPV6_LBL_UNICAST;
d62a17ae 2487 case SAFI_MPLS_VPN:
2488 return BGP_AF_IPV6_VPN;
d62a17ae 2489 case SAFI_ENCAP:
2490 return BGP_AF_IPV6_ENCAP;
7c40bf39 2491 case SAFI_FLOWSPEC:
2492 return BGP_AF_IPV6_FLOWSPEC;
d62a17ae 2493 default:
2494 return BGP_AF_MAX;
d62a17ae 2495 }
2496 break;
2497 case AFI_L2VPN:
2498 switch (safi) {
2499 case SAFI_EVPN:
2500 return BGP_AF_L2VPN_EVPN;
d62a17ae 2501 default:
2502 return BGP_AF_MAX;
d62a17ae 2503 }
3f9c7369 2504 default:
d62a17ae 2505 return BGP_AF_MAX;
3f9c7369 2506 }
3f9c7369
DS
2507}
2508
c8560b44 2509/* If the peer is not a peer-group but is bound to a peer-group return 1 */
d62a17ae 2510static inline int peer_group_active(struct peer *peer)
3f9c7369 2511{
d62a17ae 2512 if (!CHECK_FLAG(peer->sflags, PEER_STATUS_GROUP) && peer->group)
2513 return 1;
2514 return 0;
3f9c7369
DS
2515}
2516
2517/* If peer is negotiated at least one address family return 1. */
d62a17ae 2518static inline int peer_afi_active_nego(const struct peer *peer, afi_t afi)
3f9c7369 2519{
d62a17ae 2520 if (peer->afc_nego[afi][SAFI_UNICAST]
2521 || peer->afc_nego[afi][SAFI_MULTICAST]
2522 || peer->afc_nego[afi][SAFI_LABELED_UNICAST]
2523 || peer->afc_nego[afi][SAFI_MPLS_VPN]
2524 || peer->afc_nego[afi][SAFI_ENCAP]
7c40bf39 2525 || peer->afc_nego[afi][SAFI_FLOWSPEC]
d62a17ae 2526 || peer->afc_nego[afi][SAFI_EVPN])
2527 return 1;
2528 return 0;
3f9c7369
DS
2529}
2530
f14e6fdb 2531/* If at least one address family activated for group, return 1. */
d62a17ae 2532static inline int peer_group_af_configured(struct peer_group *group)
f14e6fdb 2533{
d62a17ae 2534 struct peer *peer = group->conf;
2535
2536 if (peer->afc[AFI_IP][SAFI_UNICAST] || peer->afc[AFI_IP][SAFI_MULTICAST]
2537 || peer->afc[AFI_IP][SAFI_LABELED_UNICAST]
7c40bf39 2538 || peer->afc[AFI_IP][SAFI_FLOWSPEC]
d62a17ae 2539 || peer->afc[AFI_IP][SAFI_MPLS_VPN] || peer->afc[AFI_IP][SAFI_ENCAP]
2540 || peer->afc[AFI_IP6][SAFI_UNICAST]
2541 || peer->afc[AFI_IP6][SAFI_MULTICAST]
2542 || peer->afc[AFI_IP6][SAFI_LABELED_UNICAST]
2543 || peer->afc[AFI_IP6][SAFI_MPLS_VPN]
ba0fcaf6 2544 || peer->afc[AFI_IP6][SAFI_ENCAP]
7c40bf39 2545 || peer->afc[AFI_IP6][SAFI_FLOWSPEC]
ba0fcaf6 2546 || peer->afc[AFI_L2VPN][SAFI_EVPN])
d62a17ae 2547 return 1;
2548 return 0;
f14e6fdb
DS
2549}
2550
d62a17ae 2551static inline char *timestamp_string(time_t ts)
3f9c7369 2552{
d62a17ae 2553 time_t tbuf;
083ec940 2554 tbuf = time(NULL) - (monotime(NULL) - ts);
d62a17ae 2555 return ctime(&tbuf);
3f9c7369
DS
2556}
2557
feb17238 2558static inline bool peer_established(struct peer *peer)
3f9c7369 2559{
feb17238 2560 return peer->status == Established;
3f9c7369
DS
2561}
2562
af8496af 2563static inline bool peer_dynamic_neighbor(struct peer *peer)
f14e6fdb 2564{
af8496af
DA
2565 return CHECK_FLAG(peer->flags, PEER_FLAG_DYNAMIC_NEIGHBOR);
2566}
2567
2568static inline bool peer_dynamic_neighbor_no_nsf(struct peer *peer)
2569{
2570 return (peer_dynamic_neighbor(peer) &&
2571 !CHECK_FLAG(peer->sflags, PEER_STATUS_NSF_WAIT));
f14e6fdb
DS
2572}
2573
d62a17ae 2574static inline int peer_cap_enhe(struct peer *peer, afi_t afi, safi_t safi)
8a92a8a0 2575{
d62a17ae 2576 return (CHECK_FLAG(peer->af_cap[afi][safi], PEER_CAP_ENHE_AF_NEGO));
8a92a8a0
DS
2577}
2578
d1be1f08 2579/* Lookup VRF for BGP instance based on its type. */
d62a17ae 2580static inline struct vrf *bgp_vrf_lookup_by_instance_type(struct bgp *bgp)
d1be1f08 2581{
d62a17ae 2582 struct vrf *vrf;
d1be1f08 2583
d62a17ae 2584 if (bgp->inst_type == BGP_INSTANCE_TYPE_DEFAULT)
2585 vrf = vrf_lookup_by_id(VRF_DEFAULT);
2586 else if (bgp->inst_type == BGP_INSTANCE_TYPE_VRF)
2587 vrf = vrf_lookup_by_name(bgp->name);
2588 else
2589 vrf = NULL;
d1be1f08 2590
d62a17ae 2591 return vrf;
d1be1f08 2592}
2593
0d020cd6
PR
2594static inline uint32_t bgp_vrf_interfaces(struct bgp *bgp, bool active)
2595{
2596 struct vrf *vrf;
2597 struct interface *ifp;
2598 uint32_t count = 0;
2599
2600 /* if there is one interface in the vrf which is up then it is deemed
2601 * active
2602 */
2603 vrf = bgp_vrf_lookup_by_instance_type(bgp);
2604 if (vrf == NULL)
2605 return 0;
2606 RB_FOREACH (ifp, if_name_head, &vrf->ifaces_by_name) {
5bcc6b46 2607 if (strcmp(ifp->name, bgp->name) == 0)
0d020cd6
PR
2608 continue;
2609 if (!active || if_is_up(ifp))
2610 count++;
2611 }
2612 return count;
2613}
2614
d1be1f08 2615/* Link BGP instance to VRF. */
d62a17ae 2616static inline void bgp_vrf_link(struct bgp *bgp, struct vrf *vrf)
d1be1f08 2617{
d62a17ae 2618 bgp->vrf_id = vrf->vrf_id;
92375c91
JB
2619 if (vrf->info != (void *)bgp)
2620 vrf->info = (void *)bgp_lock(bgp);
d1be1f08 2621}
2622
2623/* Unlink BGP instance from VRF. */
d62a17ae 2624static inline void bgp_vrf_unlink(struct bgp *bgp, struct vrf *vrf)
d1be1f08 2625{
d62a17ae 2626 if (vrf->info == (void *)bgp) {
2627 vrf->info = NULL;
2628 bgp_unlock(bgp);
2629 }
2630 bgp->vrf_id = VRF_UNKNOWN;
d1be1f08 2631}
2632
637e5ba4 2633static inline bool bgp_in_graceful_shutdown(struct bgp *bgp)
2634{
05bd726c 2635 /* True if either set for this instance or globally */
2636 return (!!CHECK_FLAG(bgp->flags, BGP_FLAG_GRACEFUL_SHUTDOWN) ||
2637 !!CHECK_FLAG(bm->flags, BM_FLAG_GRACEFUL_SHUTDOWN));
637e5ba4 2638}
2639
65efcfce 2640/* For benefit of rfapi */
d62a17ae 2641extern struct peer *peer_new(struct bgp *bgp);
dcc1615e
DD
2642
2643extern struct peer *peer_lookup_in_view(struct vty *vty, struct bgp *bgp,
2644 const char *ip_str, bool use_json);
bdaadb91
CS
2645extern int bgp_lookup_by_as_name_type(struct bgp **bgp_val, as_t *as,
2646 const char *name,
2647 enum bgp_instance_type inst_type);
dcc1615e 2648
7d8d0eab 2649/* Hooks */
0d020cd6 2650DECLARE_HOOK(bgp_vrf_status_changed, (struct bgp *bgp, struct interface *ifp),
8451921b
DL
2651 (bgp, ifp));
2652DECLARE_HOOK(peer_status_changed, (struct peer *peer), (peer));
2653DECLARE_HOOK(bgp_snmp_init_stats, (struct bgp *bgp), (bgp));
2654DECLARE_HOOK(bgp_snmp_update_last_changed, (struct bgp *bgp), (bgp));
7fd28dd2
PR
2655DECLARE_HOOK(bgp_snmp_update_stats,
2656 (struct bgp_node *rn, struct bgp_path_info *pi, bool added),
8451921b 2657 (rn, pi, added));
b5b99af8
DS
2658DECLARE_HOOK(bgp_rpki_prefix_status,
2659 (struct peer * peer, struct attr *attr,
2660 const struct prefix *prefix),
8451921b 2661 (peer, attr, prefix));
b5b99af8 2662
d7b3cda6 2663void peer_nsf_stop(struct peer *peer);
7d8d0eab 2664
4ab46701
AR
2665void peer_tcp_mss_set(struct peer *peer, uint32_t tcp_mss);
2666void peer_tcp_mss_unset(struct peer *peer);
1479ed2f
DA
2667
2668extern void bgp_recalculate_afi_safi_bestpaths(struct bgp *bgp, afi_t afi,
2669 safi_t safi);
e85e4a8d
MK
2670extern void peer_on_policy_change(struct peer *peer, afi_t afi, safi_t safi,
2671 int outbound);
f70c91dc
DA
2672#ifdef _FRR_ATTRIBUTE_PRINTFRR
2673/* clang-format off */
2674#pragma FRR printfrr_ext "%pBP" (struct peer *)
2675/* clang-format on */
2676#endif
2677
00d252cb 2678#endif /* _QUAGGA_BGPD_H */