2000-03-20 06:09:07 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- The Border Gateway Protocol
|
|
|
|
*
|
|
|
|
* (c) 2000 Martin Mares <mj@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_BGP_H_
|
|
|
|
#define _BIRD_BGP_H_
|
|
|
|
|
2009-09-17 23:52:36 +08:00
|
|
|
#include <stdint.h>
|
2000-04-12 22:09:26 +08:00
|
|
|
#include "nest/route.h"
|
2013-11-23 05:49:04 +08:00
|
|
|
#include "nest/bfd.h"
|
2013-11-27 05:37:24 +08:00
|
|
|
#include "lib/hash.h"
|
2000-04-12 22:09:26 +08:00
|
|
|
|
2000-04-01 07:21:37 +08:00
|
|
|
struct linpool;
|
2000-04-01 18:21:11 +08:00
|
|
|
struct eattr;
|
2000-04-01 07:21:37 +08:00
|
|
|
|
2000-03-20 06:09:07 +08:00
|
|
|
struct bgp_config {
|
|
|
|
struct proto_config c;
|
2008-10-27 05:36:08 +08:00
|
|
|
u32 local_as, remote_as;
|
2000-03-20 06:09:07 +08:00
|
|
|
ip_addr remote_ip;
|
2012-01-08 22:28:27 +08:00
|
|
|
ip_addr source_addr; /* Source address to use */
|
|
|
|
struct iface *iface; /* Interface for link-local addresses */
|
2014-10-02 17:33:55 +08:00
|
|
|
u16 remote_port; /* Neighbor destination port */
|
2000-03-20 06:09:07 +08:00
|
|
|
int multihop; /* Number of hops if multihop */
|
2011-08-17 05:05:35 +08:00
|
|
|
int ttl_security; /* Enable TTL security [RFC5082] */
|
2000-04-10 19:21:40 +08:00
|
|
|
int next_hop_self; /* Always set next hop to local IP address */
|
2013-04-16 23:27:34 +08:00
|
|
|
int next_hop_keep; /* Do not touch next hop attribute */
|
2009-11-19 03:32:36 +08:00
|
|
|
int missing_lladdr; /* What we will do when we don' know link-local addr, see MLL_* */
|
2010-07-13 18:48:23 +08:00
|
|
|
int gw_mode; /* How we compute route gateway from next_hop attr, see GW_* */
|
2000-04-17 20:46:07 +08:00
|
|
|
int compare_path_lengths; /* Use path lengths when selecting best route */
|
2011-04-22 22:13:27 +08:00
|
|
|
int med_metric; /* Compare MULTI_EXIT_DISC even between routes from differen ASes */
|
2010-07-31 07:04:32 +08:00
|
|
|
int igp_metric; /* Use IGP metrics when selecting best route */
|
2009-11-17 18:41:29 +08:00
|
|
|
int prefer_older; /* Prefer older routes according to RFC 5004 */
|
2011-12-22 20:20:29 +08:00
|
|
|
int deterministic_med; /* Use more complicated algo to have strict RFC 4271 MED comparison */
|
2000-04-17 20:46:07 +08:00
|
|
|
u32 default_local_pref; /* Default value for LOCAL_PREF attribute */
|
|
|
|
u32 default_med; /* Default value for MULTI_EXIT_DISC attribute */
|
2009-03-13 19:49:44 +08:00
|
|
|
int capabilities; /* Enable capability handshake [RFC3392] */
|
2009-11-27 03:47:59 +08:00
|
|
|
int enable_refresh; /* Enable local support for route refresh [RFC2918] */
|
2008-10-27 05:48:02 +08:00
|
|
|
int enable_as4; /* Enable local support for 4B AS numbers [RFC4893] */
|
2015-07-18 19:38:21 +08:00
|
|
|
int enable_extended_messages; /* Enable local support for extended messages [draft] */
|
2008-10-27 05:45:09 +08:00
|
|
|
u32 rr_cluster_id; /* Route reflector cluster ID, if different from local ID */
|
|
|
|
int rr_client; /* Whether neighbor is RR client of me */
|
2008-11-01 19:55:43 +08:00
|
|
|
int rs_client; /* Whether neighbor is RS client of me */
|
2009-03-05 18:52:47 +08:00
|
|
|
int advertise_ipv4; /* Whether we should add IPv4 capability advertisement to OPEN message */
|
2009-09-25 04:12:11 +08:00
|
|
|
int passive; /* Do not initiate outgoing connection */
|
2010-01-28 22:59:18 +08:00
|
|
|
int interpret_communities; /* Hardwired handling of well-known communities */
|
2012-04-15 21:07:58 +08:00
|
|
|
int secondary; /* Accept also non-best routes (i.e. RA_ACCEPTED) */
|
2017-02-19 19:02:39 +08:00
|
|
|
int add_path; /* Use ADD-PATH extension [RFC7911] */
|
2013-10-21 20:58:32 +08:00
|
|
|
int allow_local_as; /* Allow that number of local ASNs in incoming AS_PATHs */
|
2017-02-23 23:32:07 +08:00
|
|
|
int allow_local_pref; /* Allow LOCAL_PREF in EBGP sessions */
|
2014-03-20 21:07:12 +08:00
|
|
|
int gr_mode; /* Graceful restart mode (BGP_GR_*) */
|
2016-04-13 20:30:28 +08:00
|
|
|
int setkey; /* Set MD5 password to system SA/SP database */
|
2014-03-20 21:07:12 +08:00
|
|
|
unsigned gr_time; /* Graceful restart timeout */
|
2015-02-22 23:08:28 +08:00
|
|
|
unsigned connect_delay_time; /* Minimum delay between connect attempts */
|
|
|
|
unsigned connect_retry_time; /* Timeout for connect attempts */
|
2000-03-30 18:44:20 +08:00
|
|
|
unsigned hold_time, initial_hold_time;
|
|
|
|
unsigned keepalive_time;
|
2000-04-26 07:08:31 +08:00
|
|
|
unsigned error_amnesia_time; /* Errors are forgotten after */
|
|
|
|
unsigned error_delay_time_min; /* Time to wait after an error is detected */
|
|
|
|
unsigned error_delay_time_max;
|
|
|
|
unsigned disable_after_error; /* Disable the protocol when error is detected */
|
2013-11-20 05:33:48 +08:00
|
|
|
|
2008-10-27 05:42:39 +08:00
|
|
|
char *password; /* Password used for MD5 authentication */
|
2010-07-05 23:50:19 +08:00
|
|
|
struct rtable_config *igp_table; /* Table used for recursive next hop lookups */
|
2015-02-21 18:46:14 +08:00
|
|
|
int check_link; /* Use iface link state for liveness detection */
|
2013-11-20 05:33:48 +08:00
|
|
|
int bfd; /* Use BFD for liveness detection */
|
2000-03-21 05:50:17 +08:00
|
|
|
};
|
|
|
|
|
2009-11-19 03:32:36 +08:00
|
|
|
#define MLL_SELF 1
|
|
|
|
#define MLL_DROP 2
|
|
|
|
#define MLL_IGNORE 3
|
|
|
|
|
2010-07-13 18:48:23 +08:00
|
|
|
#define GW_DIRECT 1
|
|
|
|
#define GW_RECURSIVE 2
|
|
|
|
|
2012-08-14 22:25:22 +08:00
|
|
|
#define ADD_PATH_RX 1
|
|
|
|
#define ADD_PATH_TX 2
|
|
|
|
#define ADD_PATH_FULL 3
|
|
|
|
|
2014-03-20 21:07:12 +08:00
|
|
|
#define BGP_GR_ABLE 1
|
|
|
|
#define BGP_GR_AWARE 2
|
|
|
|
|
|
|
|
/* For peer_gr_flags */
|
|
|
|
#define BGP_GRF_RESTART 0x80
|
|
|
|
|
|
|
|
/* For peer_gr_aflags */
|
|
|
|
#define BGP_GRF_FORWARDING 0x80
|
|
|
|
|
2012-08-14 22:25:22 +08:00
|
|
|
|
2000-03-21 05:50:17 +08:00
|
|
|
struct bgp_conn {
|
|
|
|
struct bgp_proto *bgp;
|
|
|
|
struct birdsock *sk;
|
2015-05-19 14:53:34 +08:00
|
|
|
uint state; /* State of connection state machine */
|
2000-03-21 05:50:17 +08:00
|
|
|
struct timer *connect_retry_timer;
|
|
|
|
struct timer *hold_timer;
|
|
|
|
struct timer *keepalive_timer;
|
2008-12-19 08:34:39 +08:00
|
|
|
struct event *tx_ev;
|
2000-03-30 18:44:20 +08:00
|
|
|
int packets_to_send; /* Bitmap of packet types to be sent */
|
2000-04-26 05:13:25 +08:00
|
|
|
int notify_code, notify_subcode, notify_size;
|
|
|
|
byte *notify_data;
|
2008-10-27 05:36:08 +08:00
|
|
|
u32 advertised_as; /* Temporary value for AS number received */
|
2008-12-25 00:24:41 +08:00
|
|
|
int start_state; /* protocol start_state snapshot when connection established */
|
2012-08-14 22:25:22 +08:00
|
|
|
u8 peer_refresh_support; /* Peer supports route refresh [RFC2918] */
|
|
|
|
u8 peer_as4_support; /* Peer supports 4B AS numbers [RFC4893] */
|
2017-02-19 19:02:39 +08:00
|
|
|
u8 peer_add_path; /* Peer supports ADD-PATH [RFC7911] */
|
2015-03-30 00:27:13 +08:00
|
|
|
u8 peer_enhanced_refresh_support; /* Peer supports enhanced refresh [RFC7313] */
|
2014-03-20 21:07:12 +08:00
|
|
|
u8 peer_gr_aware;
|
|
|
|
u8 peer_gr_able;
|
|
|
|
u16 peer_gr_time;
|
|
|
|
u8 peer_gr_flags;
|
|
|
|
u8 peer_gr_aflags;
|
2015-07-18 19:38:21 +08:00
|
|
|
u8 peer_ext_messages_support; /* Peer supports extended message length [draft] */
|
2000-03-30 18:44:20 +08:00
|
|
|
unsigned hold_time, keepalive_time; /* Times calculated from my and neighbor's requirements */
|
2000-03-20 06:09:07 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct bgp_proto {
|
|
|
|
struct proto p;
|
2000-03-21 05:50:17 +08:00
|
|
|
struct bgp_config *cf; /* Shortcut to BGP configuration */
|
2008-10-27 05:36:08 +08:00
|
|
|
u32 local_as, remote_as;
|
2008-12-19 08:34:39 +08:00
|
|
|
int start_state; /* Substates that partitions BS_START */
|
2012-08-14 22:25:22 +08:00
|
|
|
u8 is_internal; /* Internal BGP connection (local_as == remote_as) */
|
|
|
|
u8 as4_session; /* Session uses 4B AS numbers in AS_PATH (both sides support it) */
|
|
|
|
u8 add_path_rx; /* Session expects receive of ADD-PATH extended NLRI */
|
|
|
|
u8 add_path_tx; /* Session expects transmit of ADD-PATH extended NLRI */
|
2015-07-18 19:38:21 +08:00
|
|
|
u8 ext_messages; /* Session allows to use extended messages (both sides support it) */
|
2000-03-21 05:50:17 +08:00
|
|
|
u32 local_id; /* BGP identifier of this router */
|
|
|
|
u32 remote_id; /* BGP identifier of the neighbor */
|
2008-10-27 05:45:09 +08:00
|
|
|
u32 rr_cluster_id; /* Route reflector cluster ID */
|
|
|
|
int rr_client; /* Whether neighbor is RR client of me */
|
2008-11-01 19:55:43 +08:00
|
|
|
int rs_client; /* Whether neighbor is RS client of me */
|
2014-03-20 21:07:12 +08:00
|
|
|
u8 gr_ready; /* Neighbor could do graceful restart */
|
|
|
|
u8 gr_active; /* Neighbor is doing graceful restart */
|
2015-03-30 00:27:13 +08:00
|
|
|
u8 feed_state; /* Feed state (TX) for EoR, RR packets, see BFS_* */
|
|
|
|
u8 load_state; /* Load state (RX) for EoR, RR packets, see BFS_* */
|
2000-03-31 01:39:48 +08:00
|
|
|
struct bgp_conn *conn; /* Connection we have established */
|
|
|
|
struct bgp_conn outgoing_conn; /* Outgoing connection we're working with */
|
2000-03-21 05:50:17 +08:00
|
|
|
struct bgp_conn incoming_conn; /* Incoming connection we have neither accepted nor rejected yet */
|
|
|
|
struct object_lock *lock; /* Lock for neighbor connection */
|
2010-07-12 23:39:39 +08:00
|
|
|
struct neighbor *neigh; /* Neighbor entry corresponding to remote ip, NULL if multihop */
|
2013-11-20 05:33:48 +08:00
|
|
|
struct bfd_request *bfd_req; /* BFD request, if BFD is used */
|
2010-07-12 23:39:39 +08:00
|
|
|
ip_addr source_addr; /* Local address used as an advertised next hop */
|
2010-07-05 23:50:19 +08:00
|
|
|
rtable *igp_table; /* Table used for recursive next hop lookups */
|
2008-12-19 08:34:39 +08:00
|
|
|
struct event *event; /* Event for respawning and shutting process */
|
2009-06-07 00:16:22 +08:00
|
|
|
struct timer *startup_timer; /* Timer used to delay protocol startup due to previous errors (startup_delay) */
|
2014-03-20 21:07:12 +08:00
|
|
|
struct timer *gr_timer; /* Timer waiting for reestablishment after graceful restart */
|
2000-04-12 22:09:26 +08:00
|
|
|
struct bgp_bucket **bucket_hash; /* Hash table of attribute buckets */
|
2015-05-19 14:53:34 +08:00
|
|
|
uint hash_size, hash_count, hash_limit;
|
2013-11-27 05:37:24 +08:00
|
|
|
HASH(struct bgp_prefix) prefix_hash; /* Prefixes to be sent */
|
2012-08-14 22:25:22 +08:00
|
|
|
slab *prefix_slab; /* Slab holding prefix nodes */
|
2000-04-12 22:09:26 +08:00
|
|
|
list bucket_queue; /* Queue of buckets to send */
|
|
|
|
struct bgp_bucket *withdraw_bucket; /* Withdrawn routes */
|
2000-04-26 07:08:31 +08:00
|
|
|
unsigned startup_delay; /* Time to delay protocol startup by due to errors */
|
2008-12-19 08:34:39 +08:00
|
|
|
bird_clock_t last_proto_error; /* Time of last error that leads to protocol stop */
|
|
|
|
u8 last_error_class; /* Error class of last error */
|
|
|
|
u32 last_error_code; /* Error code of last error. BGP protocol errors
|
|
|
|
are encoded as (bgp_err_code << 16 | bgp_err_subcode) */
|
2000-05-04 17:03:31 +08:00
|
|
|
#ifdef IPV6
|
|
|
|
byte *mp_reach_start, *mp_unreach_start; /* Multiprotocol BGP attribute notes */
|
|
|
|
unsigned mp_reach_len, mp_unreach_len;
|
2010-07-12 23:39:39 +08:00
|
|
|
ip_addr local_link; /* Link-level version of source_addr */
|
2000-05-04 17:03:31 +08:00
|
|
|
#endif
|
2000-04-12 22:09:26 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct bgp_prefix {
|
2012-08-14 22:25:22 +08:00
|
|
|
struct {
|
|
|
|
ip_addr prefix;
|
|
|
|
int pxlen;
|
|
|
|
} n;
|
|
|
|
u32 path_id;
|
|
|
|
struct bgp_prefix *next;
|
2000-04-12 22:09:26 +08:00
|
|
|
node bucket_node; /* Node in per-bucket list */
|
|
|
|
};
|
|
|
|
|
|
|
|
struct bgp_bucket {
|
|
|
|
node send_node; /* Node in send queue */
|
2000-04-17 17:37:31 +08:00
|
|
|
struct bgp_bucket *hash_next, *hash_prev; /* Node in bucket hash table */
|
2000-04-12 22:09:26 +08:00
|
|
|
unsigned hash; /* Hash over extended attributes */
|
|
|
|
list prefixes; /* Prefixes in this buckets */
|
|
|
|
ea_list eattrs[0]; /* Per-bucket extended attributes */
|
2000-03-20 06:09:07 +08:00
|
|
|
};
|
|
|
|
|
2000-03-21 23:53:50 +08:00
|
|
|
#define BGP_PORT 179
|
|
|
|
#define BGP_VERSION 4
|
|
|
|
#define BGP_HEADER_LENGTH 19
|
2015-07-18 19:38:21 +08:00
|
|
|
#define BGP_MAX_MESSAGE_LENGTH 4096
|
|
|
|
#define BGP_MAX_EXT_MSG_LENGTH 65535
|
2000-03-21 23:53:50 +08:00
|
|
|
#define BGP_RX_BUFFER_SIZE 4096
|
2015-07-18 19:38:21 +08:00
|
|
|
#define BGP_TX_BUFFER_SIZE 4096
|
|
|
|
#define BGP_RX_BUFFER_EXT_SIZE 65535
|
|
|
|
#define BGP_TX_BUFFER_EXT_SIZE 65535
|
|
|
|
|
2016-10-14 21:37:04 +08:00
|
|
|
static inline uint bgp_max_packet_length(struct bgp_proto *p)
|
2015-07-18 19:38:21 +08:00
|
|
|
{ return p->ext_messages ? BGP_MAX_EXT_MSG_LENGTH : BGP_MAX_MESSAGE_LENGTH; }
|
2000-03-20 06:09:07 +08:00
|
|
|
|
2000-03-31 02:44:23 +08:00
|
|
|
extern struct linpool *bgp_linpool;
|
|
|
|
|
2008-10-27 05:36:08 +08:00
|
|
|
|
2000-03-30 18:44:20 +08:00
|
|
|
void bgp_start_timer(struct timer *t, int value);
|
2011-11-07 07:31:23 +08:00
|
|
|
void bgp_check_config(struct bgp_config *c);
|
2000-04-26 05:13:25 +08:00
|
|
|
void bgp_error(struct bgp_conn *c, unsigned code, unsigned subcode, byte *data, int len);
|
2000-03-31 01:39:48 +08:00
|
|
|
void bgp_close_conn(struct bgp_conn *c);
|
2009-06-07 06:38:38 +08:00
|
|
|
void bgp_update_startup_delay(struct bgp_proto *p);
|
2010-01-03 19:17:52 +08:00
|
|
|
void bgp_conn_enter_openconfirm_state(struct bgp_conn *conn);
|
2008-12-19 08:34:39 +08:00
|
|
|
void bgp_conn_enter_established_state(struct bgp_conn *conn);
|
|
|
|
void bgp_conn_enter_close_state(struct bgp_conn *conn);
|
|
|
|
void bgp_conn_enter_idle_state(struct bgp_conn *conn);
|
2014-03-20 21:07:12 +08:00
|
|
|
void bgp_handle_graceful_restart(struct bgp_proto *p);
|
|
|
|
void bgp_graceful_restart_done(struct bgp_proto *p);
|
2015-03-30 00:27:13 +08:00
|
|
|
void bgp_refresh_begin(struct bgp_proto *p);
|
|
|
|
void bgp_refresh_end(struct bgp_proto *p);
|
2008-12-19 08:34:39 +08:00
|
|
|
void bgp_store_error(struct bgp_proto *p, struct bgp_conn *c, u8 class, u32 code);
|
2017-09-20 01:55:37 +08:00
|
|
|
void bgp_stop(struct bgp_proto *p, uint subcode, byte *data, uint len);
|
2009-06-07 06:38:38 +08:00
|
|
|
|
2012-08-14 22:25:22 +08:00
|
|
|
struct rte_source *bgp_find_source(struct bgp_proto *p, u32 path_id);
|
|
|
|
struct rte_source *bgp_get_source(struct bgp_proto *p, u32 path_id);
|
|
|
|
|
2008-12-19 08:34:39 +08:00
|
|
|
|
2000-03-20 06:09:07 +08:00
|
|
|
|
2000-05-03 00:07:41 +08:00
|
|
|
#ifdef LOCAL_DEBUG
|
|
|
|
#define BGP_FORCE_DEBUG 1
|
|
|
|
#else
|
|
|
|
#define BGP_FORCE_DEBUG 0
|
|
|
|
#endif
|
|
|
|
#define BGP_TRACE(flags, msg, args...) do { if ((p->p.debug & flags) || BGP_FORCE_DEBUG) \
|
|
|
|
log(L_TRACE "%s: " msg, p->p.name , ## args ); } while(0)
|
|
|
|
|
2009-02-26 21:23:54 +08:00
|
|
|
#define BGP_TRACE_RL(rl, flags, msg, args...) do { if ((p->p.debug & flags) || BGP_FORCE_DEBUG) \
|
|
|
|
log_rl(rl, L_TRACE "%s: " msg, p->p.name , ## args ); } while(0)
|
|
|
|
|
|
|
|
|
2000-03-21 05:50:17 +08:00
|
|
|
/* attrs.c */
|
|
|
|
|
2009-04-30 00:58:24 +08:00
|
|
|
/* Hack: although BA_NEXT_HOP attribute has type EAF_TYPE_IP_ADDRESS, in IPv6
|
|
|
|
* we store two addesses in it - a global address and a link local address.
|
|
|
|
*/
|
|
|
|
#ifdef IPV6
|
|
|
|
#define NEXT_HOP_LENGTH (2*sizeof(ip_addr))
|
|
|
|
static inline void set_next_hop(byte *b, ip_addr addr) { ((ip_addr *) b)[0] = addr; ((ip_addr *) b)[1] = IPA_NONE; }
|
|
|
|
#else
|
|
|
|
#define NEXT_HOP_LENGTH sizeof(ip_addr)
|
|
|
|
static inline void set_next_hop(byte *b, ip_addr addr) { ((ip_addr *) b)[0] = addr; }
|
|
|
|
#endif
|
|
|
|
|
2008-10-27 05:45:09 +08:00
|
|
|
void bgp_attach_attr(struct ea_list **to, struct linpool *pool, unsigned attr, uintptr_t val);
|
|
|
|
byte *bgp_attach_attr_wa(struct ea_list **to, struct linpool *pool, unsigned attr, unsigned len);
|
2015-05-19 14:53:34 +08:00
|
|
|
struct rta *bgp_decode_attrs(struct bgp_conn *conn, byte *a, uint len, struct linpool *pool, int mandatory);
|
2008-11-09 06:33:22 +08:00
|
|
|
int bgp_get_attr(struct eattr *e, byte *buf, int buflen);
|
2000-04-10 06:05:02 +08:00
|
|
|
int bgp_rte_better(struct rte *, struct rte *);
|
2015-06-08 08:20:43 +08:00
|
|
|
int bgp_rte_mergable(rte *pri, rte *sec);
|
2011-12-22 20:20:29 +08:00
|
|
|
int bgp_rte_recalculate(rtable *table, net *net, rte *new, rte *old, rte *old_best);
|
2010-02-13 19:26:26 +08:00
|
|
|
void bgp_rt_notify(struct proto *P, rtable *tbl UNUSED, net *n, rte *new, rte *old UNUSED, ea_list *attrs);
|
2000-04-10 06:05:02 +08:00
|
|
|
int bgp_import_control(struct proto *, struct rte **, struct ea_list **, struct linpool *);
|
2012-08-14 22:25:22 +08:00
|
|
|
void bgp_init_bucket_table(struct bgp_proto *);
|
2016-11-25 18:51:38 +08:00
|
|
|
void bgp_free_bucket_table(struct bgp_proto *p);
|
2000-04-17 17:37:31 +08:00
|
|
|
void bgp_free_bucket(struct bgp_proto *p, struct bgp_bucket *buck);
|
2012-08-14 22:25:22 +08:00
|
|
|
void bgp_init_prefix_table(struct bgp_proto *p, u32 order);
|
2016-11-25 18:51:38 +08:00
|
|
|
void bgp_free_prefix_table(struct bgp_proto *p);
|
2012-08-14 22:25:22 +08:00
|
|
|
void bgp_free_prefix(struct bgp_proto *p, struct bgp_prefix *bp);
|
2015-05-19 14:53:34 +08:00
|
|
|
uint bgp_encode_attrs(struct bgp_proto *p, byte *w, ea_list *attrs, int remains);
|
2000-05-19 19:01:41 +08:00
|
|
|
void bgp_get_route_info(struct rte *, byte *buf, struct ea_list *attrs);
|
2000-04-01 07:21:37 +08:00
|
|
|
|
2008-10-27 05:45:09 +08:00
|
|
|
inline static void bgp_attach_attr_ip(struct ea_list **to, struct linpool *pool, unsigned attr, ip_addr a)
|
|
|
|
{ *(ip_addr *) bgp_attach_attr_wa(to, pool, attr, sizeof(ip_addr)) = a; }
|
|
|
|
|
2000-03-21 05:50:17 +08:00
|
|
|
/* packets.c */
|
|
|
|
|
2010-01-03 19:17:52 +08:00
|
|
|
void mrt_dump_bgp_state_change(struct bgp_conn *conn, unsigned old, unsigned new);
|
2000-03-21 23:53:50 +08:00
|
|
|
void bgp_schedule_packet(struct bgp_conn *conn, int type);
|
2008-12-19 08:34:39 +08:00
|
|
|
void bgp_kick_tx(void *vconn);
|
2000-03-21 23:53:50 +08:00
|
|
|
void bgp_tx(struct birdsock *sk);
|
2016-10-14 21:37:04 +08:00
|
|
|
int bgp_rx(struct birdsock *sk, uint size);
|
2010-04-07 06:19:23 +08:00
|
|
|
const char * bgp_error_dsc(unsigned code, unsigned subcode);
|
2009-06-07 06:38:38 +08:00
|
|
|
void bgp_log_error(struct bgp_proto *p, u8 class, char *msg, unsigned code, unsigned subcode, byte *data, unsigned len);
|
2000-03-21 23:53:50 +08:00
|
|
|
|
2000-03-21 05:50:17 +08:00
|
|
|
/* Packet types */
|
|
|
|
|
|
|
|
#define PKT_OPEN 0x01
|
|
|
|
#define PKT_UPDATE 0x02
|
|
|
|
#define PKT_NOTIFICATION 0x03
|
|
|
|
#define PKT_KEEPALIVE 0x04
|
2015-03-30 00:27:13 +08:00
|
|
|
#define PKT_ROUTE_REFRESH 0x05 /* [RFC2918] */
|
|
|
|
#define PKT_BEGIN_REFRESH 0x1e /* Dummy type for BoRR packet [RFC7313] */
|
2000-03-21 23:53:50 +08:00
|
|
|
#define PKT_SCHEDULE_CLOSE 0x1f /* Used internally to schedule socket close */
|
2000-03-21 05:50:17 +08:00
|
|
|
|
|
|
|
/* Attributes */
|
|
|
|
|
|
|
|
#define BAF_OPTIONAL 0x80
|
|
|
|
#define BAF_TRANSITIVE 0x40
|
|
|
|
#define BAF_PARTIAL 0x20
|
|
|
|
#define BAF_EXT_LEN 0x10
|
|
|
|
|
|
|
|
#define BA_ORIGIN 0x01 /* [RFC1771] */ /* WM */
|
|
|
|
#define BA_AS_PATH 0x02 /* WM */
|
|
|
|
#define BA_NEXT_HOP 0x03 /* WM */
|
|
|
|
#define BA_MULTI_EXIT_DISC 0x04 /* ON */
|
2000-04-01 07:21:37 +08:00
|
|
|
#define BA_LOCAL_PREF 0x05 /* WD */
|
2000-03-21 05:50:17 +08:00
|
|
|
#define BA_ATOMIC_AGGR 0x06 /* WD */
|
|
|
|
#define BA_AGGREGATOR 0x07 /* OT */
|
|
|
|
#define BA_COMMUNITY 0x08 /* [RFC1997] */ /* OT */
|
|
|
|
#define BA_ORIGINATOR_ID 0x09 /* [RFC1966] */ /* ON */
|
|
|
|
#define BA_CLUSTER_LIST 0x0a /* ON */
|
|
|
|
/* We don't support these: */
|
|
|
|
#define BA_DPA 0x0b /* ??? */
|
|
|
|
#define BA_ADVERTISER 0x0c /* [RFC1863] */
|
|
|
|
#define BA_RCID_PATH 0x0d
|
|
|
|
#define BA_MP_REACH_NLRI 0x0e /* [RFC2283] */
|
|
|
|
#define BA_MP_UNREACH_NLRI 0x0f
|
2011-08-13 03:03:43 +08:00
|
|
|
#define BA_EXT_COMMUNITY 0x10 /* [RFC4360] */
|
2008-10-27 05:36:08 +08:00
|
|
|
#define BA_AS4_PATH 0x11 /* [RFC4893] */
|
|
|
|
#define BA_AS4_AGGREGATOR 0x12
|
2017-02-19 19:02:39 +08:00
|
|
|
#define BA_LARGE_COMMUNITY 0x20 /* [RFC8092] */
|
2000-03-21 05:50:17 +08:00
|
|
|
|
2008-12-19 08:34:39 +08:00
|
|
|
/* BGP connection states */
|
2000-03-21 05:50:17 +08:00
|
|
|
|
|
|
|
#define BS_IDLE 0
|
|
|
|
#define BS_CONNECT 1 /* Attempting to connect */
|
|
|
|
#define BS_ACTIVE 2 /* Waiting for connection retry & listening */
|
|
|
|
#define BS_OPENSENT 3
|
|
|
|
#define BS_OPENCONFIRM 4
|
|
|
|
#define BS_ESTABLISHED 5
|
2008-12-19 08:34:39 +08:00
|
|
|
#define BS_CLOSE 6 /* Used during transition to BS_IDLE */
|
|
|
|
|
2013-07-25 19:55:24 +08:00
|
|
|
#define BS_MAX 7
|
|
|
|
|
2008-12-19 08:34:39 +08:00
|
|
|
/* BGP start states
|
2015-03-30 00:27:13 +08:00
|
|
|
*
|
2008-12-19 08:34:39 +08:00
|
|
|
* Used in PS_START for fine-grained specification of starting state.
|
|
|
|
*
|
2015-03-30 00:27:13 +08:00
|
|
|
* When BGP protocol is started by core, it goes to BSS_PREPARE. When BGP
|
|
|
|
* protocol done what is neccessary to start itself (like acquiring the lock),
|
|
|
|
* it goes to BSS_CONNECT. When some connection attempt failed because of
|
|
|
|
* option or capability error, it goes to BSS_CONNECT_NOCAP.
|
2008-12-19 08:34:39 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define BSS_PREPARE 0 /* Used before ordinary BGP started, i. e. waiting for lock */
|
2009-06-07 00:16:22 +08:00
|
|
|
#define BSS_DELAY 1 /* Startup delay due to previous errors */
|
|
|
|
#define BSS_CONNECT 2 /* Ordinary BGP connecting */
|
|
|
|
#define BSS_CONNECT_NOCAP 3 /* Legacy BGP connecting (without capabilities) */
|
2008-12-19 08:34:39 +08:00
|
|
|
|
2015-03-30 00:27:13 +08:00
|
|
|
|
|
|
|
/* BGP feed states (TX)
|
|
|
|
*
|
|
|
|
* RFC 4724 specifies that an initial feed should end with End-of-RIB mark.
|
|
|
|
*
|
|
|
|
* RFC 7313 specifies that a route refresh should be demarcated by BoRR and EoRR packets.
|
|
|
|
*
|
|
|
|
* These states (stored in p->feed_state) are used to keep track of these
|
|
|
|
* requirements. When such feed is started, BFS_LOADING / BFS_REFRESHING is
|
|
|
|
* set. When it ended, BFS_LOADED / BFS_REFRESHED is set to schedule End-of-RIB
|
|
|
|
* or EoRR packet. When the packet is sent, the state returned to BFS_NONE.
|
|
|
|
*
|
|
|
|
* Note that when a non-demarcated feed (e.g. plain RFC 4271 initial load
|
|
|
|
* without End-of-RIB or plain RFC 2918 route refresh without BoRR/EoRR
|
|
|
|
* demarcation) is active, BFS_NONE is set.
|
|
|
|
*
|
|
|
|
* BFS_NONE, BFS_LOADING and BFS_REFRESHING are also used as load states (RX)
|
|
|
|
* with correspondent semantics (-, expecting End-of-RIB, expecting EoRR).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define BFS_NONE 0 /* No feed or original non-demarcated feed */
|
|
|
|
#define BFS_LOADING 1 /* Initial feed active, End-of-RIB planned */
|
|
|
|
#define BFS_LOADED 2 /* Loading done, End-of-RIB marker scheduled */
|
|
|
|
#define BFS_REFRESHING 3 /* Route refresh (introduced by BoRR) active */
|
|
|
|
#define BFS_REFRESHED 4 /* Refresh done, EoRR packet scheduled */
|
|
|
|
|
|
|
|
|
2008-12-19 08:34:39 +08:00
|
|
|
/* Error classes */
|
|
|
|
|
|
|
|
#define BE_NONE 0
|
|
|
|
#define BE_MISC 1 /* Miscellaneous error */
|
|
|
|
#define BE_SOCKET 2 /* Socket error */
|
|
|
|
#define BE_BGP_RX 3 /* BGP protocol error notification received */
|
|
|
|
#define BE_BGP_TX 4 /* BGP protocol error notification sent */
|
|
|
|
#define BE_AUTO_DOWN 5 /* Automatic shutdown */
|
|
|
|
#define BE_MAN_DOWN 6 /* Manual shutdown */
|
|
|
|
|
|
|
|
/* Misc error codes */
|
|
|
|
|
|
|
|
#define BEM_NEIGHBOR_LOST 1
|
|
|
|
#define BEM_INVALID_NEXT_HOP 2
|
2009-06-04 19:31:09 +08:00
|
|
|
#define BEM_INVALID_MD5 3 /* MD5 authentication kernel request failed (possibly not supported) */
|
2010-05-31 17:35:29 +08:00
|
|
|
#define BEM_NO_SOCKET 4
|
2015-02-21 18:46:14 +08:00
|
|
|
#define BEM_LINK_DOWN 5
|
|
|
|
#define BEM_BFD_DOWN 6
|
|
|
|
#define BEM_GRACEFUL_RESTART 7
|
2008-12-19 08:34:39 +08:00
|
|
|
|
2009-06-04 19:31:09 +08:00
|
|
|
/* Automatic shutdown error codes */
|
|
|
|
|
|
|
|
#define BEA_ROUTE_LIMIT_EXCEEDED 1
|
2000-03-21 05:50:17 +08:00
|
|
|
|
2000-04-17 21:13:08 +08:00
|
|
|
/* Well-known communities */
|
|
|
|
|
|
|
|
#define BGP_COMM_NO_EXPORT 0xffffff01 /* Don't export outside local AS / confed. */
|
|
|
|
#define BGP_COMM_NO_ADVERTISE 0xffffff02 /* Don't export at all */
|
|
|
|
#define BGP_COMM_NO_EXPORT_SUBCONFED 0xffffff03 /* NO_EXPORT even in local confederation */
|
|
|
|
|
2000-04-28 23:13:29 +08:00
|
|
|
/* Origins */
|
|
|
|
|
|
|
|
#define ORIGIN_IGP 0
|
|
|
|
#define ORIGIN_EGP 1
|
|
|
|
#define ORIGIN_INCOMPLETE 2
|
|
|
|
|
2000-05-04 17:03:31 +08:00
|
|
|
/* Address families */
|
|
|
|
|
2009-03-05 18:52:47 +08:00
|
|
|
#define BGP_AF_IPV4 1
|
2000-05-04 17:03:31 +08:00
|
|
|
#define BGP_AF_IPV6 2
|
|
|
|
|
2010-01-03 19:17:52 +08:00
|
|
|
#ifdef IPV6
|
|
|
|
#define BGP_AF BGP_AF_IPV6
|
|
|
|
#else
|
|
|
|
#define BGP_AF BGP_AF_IPV4
|
|
|
|
#endif
|
|
|
|
|
2000-03-20 06:09:07 +08:00
|
|
|
#endif
|