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