blob: b40a68c80b8822b19c50b9a5de24fda084a1f50f [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* BGP message definition header.
2 Copyright (C) 1996, 97, 98, 99, 2000 Kunihiro Ishiguro
3
4This file is part of GNU Zebra.
5
6GNU Zebra is free software; you can redistribute it and/or modify it
7under the terms of the GNU General Public License as published by the
8Free Software Foundation; either version 2, or (at your option) any
9later version.
10
11GNU Zebra is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Zebra; see the file COPYING. If not, write to the Free
18Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
1902111-1307, USA. */
20
21/* For union sockunion. */
22#include "sockunion.h"
23
24/* Typedef BGP specific types. */
25typedef u_int16_t as_t;
26typedef u_int16_t bgp_size_t;
27
28/* BGP master for system wide configurations and variables. */
29struct bgp_master
30{
31 /* BGP instance list. */
32 struct list *bgp;
33
34 /* BGP thread master. */
35 struct thread_master *master;
36
37 /* BGP port number. */
38 u_int16_t port;
39
40 /* BGP start time. */
41 time_t start_time;
42
43 /* Various BGP global configuration. */
44 u_char options;
45#define BGP_OPT_NO_FIB (1 << 0)
46#define BGP_OPT_MULTIPLE_INSTANCE (1 << 1)
47#define BGP_OPT_CONFIG_CISCO (1 << 2)
48};
49
50/* BGP instance structure. */
51struct bgp
52{
53 /* AS number of this BGP instance. */
54 as_t as;
55
56 /* Name of this BGP instance. */
57 char *name;
58
59 /* Self peer. */
60 struct peer *peer_self;
61
62 /* BGP peer. */
63 struct list *peer;
64
65 /* BGP peer group. */
66 struct list *group;
67
68 /* BGP configuration. */
69 u_int16_t config;
70#define BGP_CONFIG_ROUTER_ID (1 << 0)
71#define BGP_CONFIG_CLUSTER_ID (1 << 1)
72#define BGP_CONFIG_CONFEDERATION (1 << 2)
73#define BGP_CONFIG_DEFAULT_LOCAL_PREF (1 << 3)
74
75 /* BGP router identifier. */
76 struct in_addr router_id;
77
78 /* BGP route reflector cluster ID. */
79 struct in_addr cluster_id;
80
81 /* BGP confederation information. */
82 as_t confed_id;
83 as_t *confed_peers;
84 int confed_peers_cnt;
85
86 /* BGP flags. */
87 u_int16_t flags;
88#define BGP_FLAG_ALWAYS_COMPARE_MED (1 << 0)
89#define BGP_FLAG_DETERMINISTIC_MED (1 << 1)
90#define BGP_FLAG_MED_MISSING_AS_WORST (1 << 2)
91#define BGP_FLAG_MED_CONFED (1 << 3)
92#define BGP_FLAG_NO_DEFAULT_IPV4 (1 << 4)
93#define BGP_FLAG_NO_CLIENT_TO_CLIENT (1 << 5)
94#define BGP_FLAG_ENFORCE_FIRST_AS (1 << 6)
95#define BGP_FLAG_COMPARE_ROUTER_ID (1 << 7)
96#define BGP_FLAG_ASPATH_IGNORE (1 << 8)
97#define BGP_FLAG_IMPORT_CHECK (1 << 9)
98#define BGP_FLAG_NO_FAST_EXT_FAILOVER (1 << 10)
paul848973c2003-08-13 00:32:49 +000099#define BGP_FLAG_LOG_NEIGHBOR_CHANGES (1 << 11)
paul718e3742002-12-13 20:15:29 +0000100
101 /* BGP Per AF flags */
102 u_int16_t af_flags[AFI_MAX][SAFI_MAX];
103#define BGP_CONFIG_DAMPENING (1 << 0)
104
105 /* Static route configuration. */
106 struct bgp_table *route[AFI_MAX][SAFI_MAX];
107
108 /* Aggregate address configuration. */
109 struct bgp_table *aggregate[AFI_MAX][SAFI_MAX];
110
111 /* BGP routing information base. */
112 struct bgp_table *rib[AFI_MAX][SAFI_MAX];
113
114 /* BGP redistribute configuration. */
115 u_char redist[AFI_MAX][ZEBRA_ROUTE_MAX];
116
117 /* BGP redistribute metric configuration. */
118 u_char redist_metric_flag[AFI_MAX][ZEBRA_ROUTE_MAX];
119 u_int32_t redist_metric[AFI_MAX][ZEBRA_ROUTE_MAX];
120
121 /* BGP redistribute route-map. */
122 struct
123 {
124 char *name;
125 struct route_map *map;
126 } rmap[AFI_MAX][ZEBRA_ROUTE_MAX];
127
128 /* BGP distance configuration. */
129 u_char distance_ebgp;
130 u_char distance_ibgp;
131 u_char distance_local;
132
133 /* BGP default local-preference. */
134 u_int32_t default_local_pref;
135
136 /* BGP default timer. */
137 u_int32_t default_holdtime;
138 u_int32_t default_keepalive;
139};
140
141/* BGP peer-group support. */
142struct peer_group
143{
144 /* Name of the peer-group. */
145 char *name;
146
147 /* Pointer to BGP. */
148 struct bgp *bgp;
149
150 /* Peer-group client list. */
151 struct list *peer;
152
153 /* Peer-group config */
154 struct peer *conf;
155};
156
157/* BGP Notify message format. */
158struct bgp_notify
159{
160 u_char code;
161 u_char subcode;
162 char *data;
163 bgp_size_t length;
164};
165
166/* Next hop self address. */
167struct bgp_nexthop
168{
169 struct interface *ifp;
170 struct in_addr v4;
171#ifdef HAVE_IPV6
172 struct in6_addr v6_global;
173 struct in6_addr v6_local;
174#endif /* HAVE_IPV6 */
175};
176
177/* BGP router distinguisher value. */
178#define BGP_RD_SIZE 8
179
180struct bgp_rd
181{
182 u_char val[BGP_RD_SIZE];
183};
184
185/* BGP filter structure. */
186struct bgp_filter
187{
188 /* Distribute-list. */
189 struct
190 {
191 char *name;
192 struct access_list *alist;
193 } dlist[FILTER_MAX];
194
195 /* Prefix-list. */
196 struct
197 {
198 char *name;
199 struct prefix_list *plist;
200 } plist[FILTER_MAX];
201
202 /* Filter-list. */
203 struct
204 {
205 char *name;
206 struct as_list *aslist;
207 } aslist[FILTER_MAX];
208
209 /* Route-map. */
210 struct
211 {
212 char *name;
213 struct route_map *map;
214 } map[FILTER_MAX];
215
216 /* Unsuppress-map. */
217 struct
218 {
219 char *name;
220 struct route_map *map;
221 } usmap;
222};
223
224/* BGP neighbor structure. */
225struct peer
226{
227 /* BGP structure. */
228 struct bgp *bgp;
229
230 /* BGP peer group. */
231 struct peer_group *group;
232 u_char af_group[AFI_MAX][SAFI_MAX];
233
234 /* Peer's remote AS number. */
235 as_t as;
236
237 /* Peer's local AS number. */
238 as_t local_as;
239
240 /* Peer's Change local AS number. */
241 as_t change_local_as;
242
243 /* Remote router ID. */
244 struct in_addr remote_id;
245
246 /* Local router ID. */
247 struct in_addr local_id;
248
249 /* Packet receive and send buffer. */
250 struct stream *ibuf;
251 struct stream_fifo *obuf;
252 struct stream *work;
253
254 /* Status of the peer. */
255 int status;
256 int ostatus;
257
258 /* Peer information */
pauleb821182004-05-01 08:44:08 +0000259 int fd; /* File descriptor */
260 int ttl; /* TTL of TCP connection to the peer. */
261 char *desc; /* Description of the peer. */
262 unsigned short port; /* Destination port for peer */
263 char *host; /* Printable address of the peer. */
264 union sockunion su; /* Sockunion address of the peer. */
265 time_t uptime; /* Last Up/Down time */
266 time_t readtime; /* Last read time */
267 time_t resettime; /* Last reset time */
paul718e3742002-12-13 20:15:29 +0000268
pauleb821182004-05-01 08:44:08 +0000269 unsigned int ifindex; /* ifindex of the BGP connection. */
270 char *ifname; /* bind interface name. */
271 char *update_if;
272 union sockunion *update_source;
273 struct zlog *log;
274 u_char version; /* Peer BGP version. */
paul718e3742002-12-13 20:15:29 +0000275
pauleb821182004-05-01 08:44:08 +0000276 union sockunion *su_local; /* Sockunion of local address. */
277 union sockunion *su_remote; /* Sockunion of remote address. */
278 int shared_network; /* Is this peer shared same network. */
279 struct bgp_nexthop nexthop; /* Nexthop */
paul718e3742002-12-13 20:15:29 +0000280
281 /* Peer address family configuration. */
282 u_char afc[AFI_MAX][SAFI_MAX];
283 u_char afc_nego[AFI_MAX][SAFI_MAX];
284 u_char afc_adv[AFI_MAX][SAFI_MAX];
285 u_char afc_recv[AFI_MAX][SAFI_MAX];
286
287 /* Capability Flags.*/
288 u_char cap;
289#define PEER_CAP_REFRESH_ADV (1 << 0) /* refresh advertised */
290#define PEER_CAP_REFRESH_OLD_RCV (1 << 1) /* refresh old received */
291#define PEER_CAP_REFRESH_NEW_RCV (1 << 2) /* refresh rfc received */
292#define PEER_CAP_DYNAMIC_ADV (1 << 3) /* dynamic advertised */
293#define PEER_CAP_DYNAMIC_RCV (1 << 4) /* dynamic received */
294
295 /* Capability Flags.*/
296 u_int16_t af_cap[AFI_MAX][SAFI_MAX];
297#define PEER_CAP_ORF_PREFIX_SM_ADV (1 << 0) /* send-mode advertised */
298#define PEER_CAP_ORF_PREFIX_RM_ADV (1 << 1) /* receive-mode advertised */
299#define PEER_CAP_ORF_PREFIX_SM_RCV (1 << 2) /* send-mode received */
300#define PEER_CAP_ORF_PREFIX_RM_RCV (1 << 3) /* receive-mode received */
301#define PEER_CAP_ORF_PREFIX_SM_OLD_RCV (1 << 4) /* send-mode received */
302#define PEER_CAP_ORF_PREFIX_RM_OLD_RCV (1 << 5) /* receive-mode received */
303
304 /* Global configuration flags. */
305 u_int32_t flags;
306#define PEER_FLAG_PASSIVE (1 << 0) /* passive mode */
307#define PEER_FLAG_SHUTDOWN (1 << 1) /* shutdown */
308#define PEER_FLAG_DONT_CAPABILITY (1 << 2) /* dont-capability */
309#define PEER_FLAG_OVERRIDE_CAPABILITY (1 << 3) /* override-capability */
310#define PEER_FLAG_STRICT_CAP_MATCH (1 << 4) /* strict-match */
311#define PEER_FLAG_NO_ROUTE_REFRESH_CAP (1 << 5) /* route-refresh */
312#define PEER_FLAG_DYNAMIC_CAPABILITY (1 << 6) /* dynamic capability */
313#define PEER_FLAG_ENFORCE_MULTIHOP (1 << 7) /* enforce-multihop */
314#define PEER_FLAG_LOCAL_AS_NO_PREPEND (1 << 8) /* local-as no-prepend */
315
316 /* Per AF configuration flags. */
317 u_int32_t af_flags[AFI_MAX][SAFI_MAX];
318#define PEER_FLAG_SEND_COMMUNITY (1 << 0) /* send-community */
319#define PEER_FLAG_SEND_EXT_COMMUNITY (1 << 1) /* send-community ext. */
320#define PEER_FLAG_NEXTHOP_SELF (1 << 2) /* next-hop-self */
321#define PEER_FLAG_REFLECTOR_CLIENT (1 << 3) /* reflector-client */
322#define PEER_FLAG_RSERVER_CLIENT (1 << 4) /* route-server-client */
323#define PEER_FLAG_SOFT_RECONFIG (1 << 5) /* soft-reconfiguration */
324#define PEER_FLAG_AS_PATH_UNCHANGED (1 << 6) /* transparent-as */
325#define PEER_FLAG_NEXTHOP_UNCHANGED (1 << 7) /* transparent-next-hop */
326#define PEER_FLAG_MED_UNCHANGED (1 << 8) /* transparent-next-hop */
327#define PEER_FLAG_DEFAULT_ORIGINATE (1 << 9) /* default-originate */
328#define PEER_FLAG_REMOVE_PRIVATE_AS (1 << 10) /* remove-private-as */
329#define PEER_FLAG_ALLOWAS_IN (1 << 11) /* set allowas-in */
330#define PEER_FLAG_ORF_PREFIX_SM (1 << 12) /* orf capability send-mode */
331#define PEER_FLAG_ORF_PREFIX_RM (1 << 13) /* orf capability receive-mode */
332#define PEER_FLAG_MAX_PREFIX (1 << 14) /* maximum prefix */
333#define PEER_FLAG_MAX_PREFIX_WARNING (1 << 15) /* maximum prefix warning-only */
334
335 /* default-originate route-map. */
336 struct
337 {
338 char *name;
339 struct route_map *map;
340 } default_rmap[AFI_MAX][SAFI_MAX];
341
342 /* Peer status flags. */
343 u_int16_t sflags;
344#define PEER_STATUS_ACCEPT_PEER (1 << 0) /* accept peer */
345#define PEER_STATUS_PREFIX_OVERFLOW (1 << 1) /* prefix-overflow */
346#define PEER_STATUS_CAPABILITY_OPEN (1 << 2) /* capability open send */
347#define PEER_STATUS_HAVE_ACCEPT (1 << 3) /* accept peer's parent */
348#define PEER_STATUS_GROUP (1 << 4) /* peer-group conf */
349
350 /* Peer status af flags. */
351 u_int16_t af_sflags[AFI_MAX][SAFI_MAX];
352#define PEER_STATUS_ORF_PREFIX_SEND (1 << 0) /* prefix-list send peer */
353#define PEER_STATUS_ORF_WAIT_REFRESH (1 << 1) /* wait refresh received peer */
354#define PEER_STATUS_DEFAULT_ORIGINATE (1 << 2) /* default-originate peer */
hassoe0701b72004-05-20 09:19:34 +0000355#define PEER_STATUS_PREFIX_THRESHOLD (1 << 3) /* exceed prefix-threshold */
356#define PEER_STATUS_PREFIX_LIMIT (1 << 4) /* exceed prefix-limit */
357
paul718e3742002-12-13 20:15:29 +0000358
359 /* Default attribute value for the peer. */
360 u_int32_t config;
361#define PEER_CONFIG_WEIGHT (1 << 0) /* Default weight. */
362#define PEER_CONFIG_TIMER (1 << 1) /* keepalive & holdtime */
363#define PEER_CONFIG_CONNECT (1 << 2) /* connect */
364#define PEER_CONFIG_ROUTEADV (1 << 3) /* route advertise */
365 u_int32_t weight;
366 u_int32_t holdtime;
367 u_int32_t keepalive;
368 u_int32_t connect;
369 u_int32_t routeadv;
370
371 /* Timer values. */
372 u_int32_t v_start;
373 u_int32_t v_connect;
374 u_int32_t v_holdtime;
375 u_int32_t v_keepalive;
376 u_int32_t v_asorig;
377 u_int32_t v_routeadv;
378
379 /* Threads. */
380 struct thread *t_read;
381 struct thread *t_write;
382 struct thread *t_start;
383 struct thread *t_connect;
384 struct thread *t_holdtime;
385 struct thread *t_keepalive;
386 struct thread *t_asorig;
387 struct thread *t_routeadv;
388
389 /* Statistics field */
390 u_int32_t open_in; /* Open message input count */
391 u_int32_t open_out; /* Open message output count */
392 u_int32_t update_in; /* Update message input count */
393 u_int32_t update_out; /* Update message ouput count */
394 time_t update_time; /* Update message received time. */
395 u_int32_t keepalive_in; /* Keepalive input count */
396 u_int32_t keepalive_out; /* Keepalive output count */
397 u_int32_t notify_in; /* Notify input count */
398 u_int32_t notify_out; /* Notify output count */
399 u_int32_t refresh_in; /* Route Refresh input count */
400 u_int32_t refresh_out; /* Route Refresh output count */
401 u_int32_t dynamic_cap_in; /* Dynamic Capability input count. */
402 u_int32_t dynamic_cap_out; /* Dynamic Capability output count. */
403
404 /* BGP state count */
405 u_int32_t established; /* Established */
406 u_int32_t dropped; /* Dropped */
407
408 /* Syncronization list and time. */
409 struct bgp_synchronize *sync[AFI_MAX][SAFI_MAX];
410 time_t synctime;
411
412 /* Send prefix count. */
413 unsigned long scount[AFI_MAX][SAFI_MAX];
414
415 /* Announcement attribute hash. */
416 struct hash *hash[AFI_MAX][SAFI_MAX];
417
418 /* Notify data. */
419 struct bgp_notify notify;
420
421 /* Whole packet size to be read. */
422 unsigned long packet_size;
423
424 /* Filter structure. */
425 struct bgp_filter filter[AFI_MAX][SAFI_MAX];
426
427 /* ORF Prefix-list */
428 struct prefix_list *orf_plist[AFI_MAX][SAFI_MAX];
429
430 /* Prefix count. */
431 unsigned long pcount[AFI_MAX][SAFI_MAX];
432
433 /* Max prefix count. */
434 unsigned long pmax[AFI_MAX][SAFI_MAX];
hassoe0701b72004-05-20 09:19:34 +0000435 u_char pmax_threshold[AFI_MAX][SAFI_MAX];
436#define MAXIMUM_PREFIX_THRESHOLD_DEFAULT 75
paul718e3742002-12-13 20:15:29 +0000437
438 /* allowas-in. */
439 char allowas_in[AFI_MAX][SAFI_MAX];
paulac41b2a2003-08-12 05:32:27 +0000440
hassoe0701b72004-05-20 09:19:34 +0000441 /* peer reset cause */
442 char last_reset;
443#define PEER_DOWN_RID_CHANGE 1 /* bgp router-id command */
444#define PEER_DOWN_REMOTE_AS_CHANGE 2 /* neighbor remote-as command */
445#define PEER_DOWN_LOCAL_AS_CHANGE 3 /* neighbor local-as command */
446#define PEER_DOWN_CLID_CHANGE 4 /* bgp cluster-id command */
447#define PEER_DOWN_CONFED_ID_CHANGE 5 /* bgp confederation identifier command */
448#define PEER_DOWN_CONFED_PEER_CHANGE 6 /* bgp confederation peer command */
449#define PEER_DOWN_RR_CLIENT_CHANGE 7 /* neighbor route-reflector-client command */
450#define PEER_DOWN_RS_CLIENT_CHANGE 8 /* neighbor route-server-client command */
451#define PEER_DOWN_UPDATE_SOURCE_CHANGE 9 /* neighbor update-source command */
452#define PEER_DOWN_AF_ACTIVATE 10 /* neighbor activate command */
453#define PEER_DOWN_USER_SHUTDOWN 11 /* neighbor shutdown command */
454#define PEER_DOWN_USER_RESET 12 /* clear ip bgp command */
455#define PEER_DOWN_NOTIFY_RECEIVED 13 /* notification received */
456#define PEER_DOWN_NOTIFY_SEND 14 /* notification send */
457#define PEER_DOWN_CLOSE_SESSION 15 /* tcp session close */
458#define PEER_DOWN_NEIGHBOR_DELETE 16 /* neghbor delete */
459#define PEER_DOWN_RMAP_BIND 17 /* neghbor peer-group command */
460#define PEER_DOWN_RMAP_UNBIND 18 /* no neighbor peer-group command */
461#define PEER_DOWN_CAPABILITY_CHANGE 19 /* neighbor capability command */
462#define PEER_DOWN_PASSIVE_CHANGE 20 /* neighbor passive command */
463#define PEER_DOWN_MULTIHOP_CHANGE 21 /* neighbor multihop command */
464
paulac41b2a2003-08-12 05:32:27 +0000465 /* The kind of route-map Flags.*/
466 u_char rmap_type;
467#define PEER_RMAP_TYPE_IN (1 << 0) /* neighbor route-map in */
468#define PEER_RMAP_TYPE_OUT (1 << 1) /* neighbor route-map out */
469#define PEER_RMAP_TYPE_NETWORK (1 << 2) /* network route-map */
470#define PEER_RMAP_TYPE_REDISTRIBUTE (1 << 3) /* redistribute route-map */
471#define PEER_RMAP_TYPE_DEFAULT (1 << 4) /* default-originate route-map */
472#define PEER_RMAP_TYPE_NOSET (1 << 5) /* not allow to set commands */
paul718e3742002-12-13 20:15:29 +0000473};
474
475/* This structure's member directly points incoming packet data
476 stream. */
477struct bgp_nlri
478{
479 /* AFI. */
480 afi_t afi;
481
482 /* SAFI. */
483 safi_t safi;
484
485 /* Pointer to NLRI byte stream. */
486 u_char *nlri;
487
488 /* Length of whole NLRI. */
489 bgp_size_t length;
490};
491
492/* BGP versions. */
493#define BGP_VERSION_4 4
494#define BGP_VERSION_MP_4_DRAFT_00 40
495
496/* Default BGP port number. */
497#define BGP_PORT_DEFAULT 179
498
499/* BGP message header and packet size. */
500#define BGP_MARKER_SIZE 16
501#define BGP_HEADER_SIZE 19
502#define BGP_MAX_PACKET_SIZE 4096
503
504/* BGP minimum message size. */
505#define BGP_MSG_OPEN_MIN_SIZE (BGP_HEADER_SIZE + 10)
506#define BGP_MSG_UPDATE_MIN_SIZE (BGP_HEADER_SIZE + 4)
507#define BGP_MSG_NOTIFY_MIN_SIZE (BGP_HEADER_SIZE + 2)
508#define BGP_MSG_KEEPALIVE_MIN_SIZE (BGP_HEADER_SIZE + 0)
509#define BGP_MSG_ROUTE_REFRESH_MIN_SIZE (BGP_HEADER_SIZE + 4)
510#define BGP_MSG_CAPABILITY_MIN_SIZE (BGP_HEADER_SIZE + 3)
511
512/* BGP message types. */
513#define BGP_MSG_OPEN 1
514#define BGP_MSG_UPDATE 2
515#define BGP_MSG_NOTIFY 3
516#define BGP_MSG_KEEPALIVE 4
517#define BGP_MSG_ROUTE_REFRESH_NEW 5
518#define BGP_MSG_CAPABILITY 6
519#define BGP_MSG_ROUTE_REFRESH_OLD 128
520
521/* BGP open optional parameter. */
522#define BGP_OPEN_OPT_AUTH 1
523#define BGP_OPEN_OPT_CAP 2
524
525/* BGP4 attribute type codes. */
526#define BGP_ATTR_ORIGIN 1
527#define BGP_ATTR_AS_PATH 2
528#define BGP_ATTR_NEXT_HOP 3
529#define BGP_ATTR_MULTI_EXIT_DISC 4
530#define BGP_ATTR_LOCAL_PREF 5
531#define BGP_ATTR_ATOMIC_AGGREGATE 6
532#define BGP_ATTR_AGGREGATOR 7
533#define BGP_ATTR_COMMUNITIES 8
534#define BGP_ATTR_ORIGINATOR_ID 9
535#define BGP_ATTR_CLUSTER_LIST 10
536#define BGP_ATTR_DPA 11
537#define BGP_ATTR_ADVERTISER 12
538#define BGP_ATTR_RCID_PATH 13
539#define BGP_ATTR_MP_REACH_NLRI 14
540#define BGP_ATTR_MP_UNREACH_NLRI 15
541#define BGP_ATTR_EXT_COMMUNITIES 16
542
543/* BGP update origin. */
544#define BGP_ORIGIN_IGP 0
545#define BGP_ORIGIN_EGP 1
546#define BGP_ORIGIN_INCOMPLETE 2
547
548/* BGP notify message codes. */
549#define BGP_NOTIFY_HEADER_ERR 1
550#define BGP_NOTIFY_OPEN_ERR 2
551#define BGP_NOTIFY_UPDATE_ERR 3
552#define BGP_NOTIFY_HOLD_ERR 4
553#define BGP_NOTIFY_FSM_ERR 5
554#define BGP_NOTIFY_CEASE 6
555#define BGP_NOTIFY_CAPABILITY_ERR 7
556#define BGP_NOTIFY_MAX 8
557
558/* BGP_NOTIFY_HEADER_ERR sub codes. */
559#define BGP_NOTIFY_HEADER_NOT_SYNC 1
560#define BGP_NOTIFY_HEADER_BAD_MESLEN 2
561#define BGP_NOTIFY_HEADER_BAD_MESTYPE 3
562#define BGP_NOTIFY_HEADER_MAX 4
563
564/* BGP_NOTIFY_OPEN_ERR sub codes. */
565#define BGP_NOTIFY_OPEN_UNSUP_VERSION 1
566#define BGP_NOTIFY_OPEN_BAD_PEER_AS 2
567#define BGP_NOTIFY_OPEN_BAD_BGP_IDENT 3
568#define BGP_NOTIFY_OPEN_UNSUP_PARAM 4
569#define BGP_NOTIFY_OPEN_AUTH_FAILURE 5
570#define BGP_NOTIFY_OPEN_UNACEP_HOLDTIME 6
571#define BGP_NOTIFY_OPEN_UNSUP_CAPBL 7
572#define BGP_NOTIFY_OPEN_MAX 8
573
574/* BGP_NOTIFY_UPDATE_ERR sub codes. */
575#define BGP_NOTIFY_UPDATE_MAL_ATTR 1
576#define BGP_NOTIFY_UPDATE_UNREC_ATTR 2
577#define BGP_NOTIFY_UPDATE_MISS_ATTR 3
578#define BGP_NOTIFY_UPDATE_ATTR_FLAG_ERR 4
579#define BGP_NOTIFY_UPDATE_ATTR_LENG_ERR 5
580#define BGP_NOTIFY_UPDATE_INVAL_ORIGIN 6
581#define BGP_NOTIFY_UPDATE_AS_ROUTE_LOOP 7
582#define BGP_NOTIFY_UPDATE_INVAL_NEXT_HOP 8
583#define BGP_NOTIFY_UPDATE_OPT_ATTR_ERR 9
584#define BGP_NOTIFY_UPDATE_INVAL_NETWORK 10
585#define BGP_NOTIFY_UPDATE_MAL_AS_PATH 11
586#define BGP_NOTIFY_UPDATE_MAX 12
587
paul545acaf2004-04-20 15:13:15 +0000588/* BGP_NOTIFY_CEASE sub codes (draft-ietf-idr-cease-subcode-05). */
paul718e3742002-12-13 20:15:29 +0000589#define BGP_NOTIFY_CEASE_MAX_PREFIX 1
590#define BGP_NOTIFY_CEASE_ADMIN_SHUTDOWN 2
591#define BGP_NOTIFY_CEASE_PEER_UNCONFIG 3
592#define BGP_NOTIFY_CEASE_ADMIN_RESET 4
593#define BGP_NOTIFY_CEASE_CONNECT_REJECT 5
594#define BGP_NOTIFY_CEASE_CONFIG_CHANGE 6
paul545acaf2004-04-20 15:13:15 +0000595#define BGP_NOTIFY_CEASE_COLLISION_RESOLUTION 7
596#define BGP_NOTIFY_CEASE_OUT_OF_RESOURCE 8
597#define BGP_NOTIFY_CEASE_MAX 9
paul718e3742002-12-13 20:15:29 +0000598
599/* BGP_NOTIFY_CAPABILITY_ERR sub codes (draft-ietf-idr-dynamic-cap-02). */
600#define BGP_NOTIFY_CAPABILITY_INVALID_ACTION 1
601#define BGP_NOTIFY_CAPABILITY_INVALID_LENGTH 2
602#define BGP_NOTIFY_CAPABILITY_MALFORMED_CODE 3
603#define BGP_NOTIFY_CAPABILITY_MAX 4
604
605/* BGP finite state machine status. */
606#define Idle 1
607#define Connect 2
608#define Active 3
609#define OpenSent 4
610#define OpenConfirm 5
611#define Established 6
612#define BGP_STATUS_MAX 7
613
614/* BGP finite state machine events. */
615#define BGP_Start 1
616#define BGP_Stop 2
617#define TCP_connection_open 3
618#define TCP_connection_closed 4
619#define TCP_connection_open_failed 5
620#define TCP_fatal_error 6
621#define ConnectRetry_timer_expired 7
622#define Hold_Timer_expired 8
623#define KeepAlive_timer_expired 9
624#define Receive_OPEN_message 10
625#define Receive_KEEPALIVE_message 11
626#define Receive_UPDATE_message 12
627#define Receive_NOTIFICATION_message 13
628#define BGP_EVENTS_MAX 14
629
630/* BGP timers default value. */
631#define BGP_INIT_START_TIMER 5
632#define BGP_ERROR_START_TIMER 30
633#define BGP_DEFAULT_HOLDTIME 180
634#define BGP_DEFAULT_KEEPALIVE 60
635#define BGP_DEFAULT_ASORIGINATE 15
636#define BGP_DEFAULT_EBGP_ROUTEADV 30
637#define BGP_DEFAULT_IBGP_ROUTEADV 5
638#define BGP_CLEAR_CONNECT_RETRY 20
639#define BGP_DEFAULT_CONNECT_RETRY 120
640
641/* BGP default local preference. */
642#define BGP_DEFAULT_LOCAL_PREF 100
643
644/* SAFI which used in open capability negotiation. */
645#define BGP_SAFI_VPNV4 128
646#define BGP_SAFI_VPNV6 129
647
648/* Max TTL value. */
649#define TTL_MAX 255
650
651/* BGP uptime string length. */
652#define BGP_UPTIME_LEN 25
653
654/* Default configuration settings for bgpd. */
655#define BGP_VTY_PORT 2605
paul718e3742002-12-13 20:15:29 +0000656#define BGP_DEFAULT_CONFIG "bgpd.conf"
657
658/* Check AS path loop when we send NLRI. */
659/* #define BGP_SEND_ASPATH_CHECK */
660
661/* IBGP/EBGP identifier. We also have a CONFED peer, which is to say,
662 a peer who's AS is part of our Confederation. */
663enum
664{
665 BGP_PEER_IBGP,
666 BGP_PEER_EBGP,
667 BGP_PEER_INTERNAL,
668 BGP_PEER_CONFED
669};
670
671/* Flag for peer_clear_soft(). */
672enum bgp_clear_type
673{
674 BGP_CLEAR_SOFT_NONE,
675 BGP_CLEAR_SOFT_OUT,
676 BGP_CLEAR_SOFT_IN,
677 BGP_CLEAR_SOFT_BOTH,
678 BGP_CLEAR_SOFT_IN_ORF_PREFIX
679};
680
681/* Macros. */
682#define BGP_INPUT(P) ((P)->ibuf)
683#define BGP_INPUT_PNT(P) (STREAM_PNT(BGP_INPUT(P)))
684
685/* Macro to check BGP information is alive or not. */
686#define BGP_INFO_HOLDDOWN(BI) \
687 (! CHECK_FLAG ((BI)->flags, BGP_INFO_VALID) \
688 || CHECK_FLAG ((BI)->flags, BGP_INFO_HISTORY) \
689 || CHECK_FLAG ((BI)->flags, BGP_INFO_DAMPED))
690
691/* Count prefix size from mask length */
692#define PSIZE(a) (((a) + 7) / (8))
693
694/* BGP error codes. */
695#define BGP_SUCCESS 0
696#define BGP_ERR_INVALID_VALUE -1
697#define BGP_ERR_INVALID_FLAG -2
698#define BGP_ERR_INVALID_AS -3
699#define BGP_ERR_INVALID_BGP -4
700#define BGP_ERR_PEER_GROUP_MEMBER -5
701#define BGP_ERR_MULTIPLE_INSTANCE_USED -6
702#define BGP_ERR_PEER_GROUP_MEMBER_EXISTS -7
703#define BGP_ERR_PEER_BELONGS_TO_GROUP -8
704#define BGP_ERR_PEER_GROUP_AF_UNCONFIGURED -9
705#define BGP_ERR_PEER_GROUP_NO_REMOTE_AS -10
706#define BGP_ERR_PEER_GROUP_CANT_CHANGE -11
707#define BGP_ERR_PEER_GROUP_MISMATCH -12
708#define BGP_ERR_PEER_GROUP_PEER_TYPE_DIFFERENT -13
709#define BGP_ERR_MULTIPLE_INSTANCE_NOT_SET -14
710#define BGP_ERR_AS_MISMATCH -15
711#define BGP_ERR_PEER_INACTIVE -16
712#define BGP_ERR_INVALID_FOR_PEER_GROUP_MEMBER -17
713#define BGP_ERR_PEER_GROUP_HAS_THE_FLAG -18
714#define BGP_ERR_PEER_FLAG_CONFLICT -19
715#define BGP_ERR_PEER_GROUP_SHUTDOWN -20
716#define BGP_ERR_PEER_FILTER_CONFLICT -21
717#define BGP_ERR_NOT_INTERNAL_PEER -22
718#define BGP_ERR_REMOVE_PRIVATE_AS -23
719#define BGP_ERR_AF_UNCONFIGURED -24
720#define BGP_ERR_SOFT_RECONFIG_UNCONFIGURED -25
721#define BGP_ERR_INSTANCE_MISMATCH -26
722#define BGP_ERR_LOCAL_AS_ALLOWED_ONLY_FOR_EBGP -27
723#define BGP_ERR_CANNOT_HAVE_LOCAL_AS_SAME_AS -28
724#define BGP_ERR_MAX -29
725
726extern struct bgp_master *bm;
727
728extern struct thread_master *master;
729
730/* Prototypes. */
731void bgp_terminate (void);
732void bgp_reset (void);
733void bgp_zclient_reset ();
734int bgp_nexthop_set (union sockunion *, union sockunion *,
735 struct bgp_nexthop *, struct peer *);
paul6cbbc3c2003-04-28 17:11:02 +0000736struct bgp_master *bgp_get_master ();
paul718e3742002-12-13 20:15:29 +0000737struct bgp *bgp_get_default ();
738struct bgp *bgp_lookup (as_t, char *);
739struct bgp *bgp_lookup_by_name (char *);
740struct peer *peer_lookup (struct bgp *, union sockunion *);
741struct peer_group *peer_group_lookup (struct bgp *, char *);
742struct peer_group *peer_group_get (struct bgp *, char *);
743struct peer *peer_lookup_with_open (union sockunion *, as_t, struct in_addr *,
744 int *);
745int peer_sort (struct peer *peer);
746int peer_active (struct peer *);
747int peer_active_nego (struct peer *);
748struct peer *peer_create_accept (struct bgp *);
749char *peer_uptime (time_t, char *, size_t);
750void bgp_config_write_family_header (struct vty *, afi_t, safi_t, int *);
751
752void bgp_master_init ();
753
754void bgp_init ();
755
756int bgp_option_set (int);
757int bgp_option_unset (int);
758int bgp_option_check (int);
759
760int bgp_get (struct bgp **, as_t *, char *);
761int bgp_delete (struct bgp *);
762
763int bgp_flag_set (struct bgp *, int);
764int bgp_flag_unset (struct bgp *, int);
765int bgp_flag_check (struct bgp *, int);
766
767int bgp_router_id_set (struct bgp *, struct in_addr *);
768int bgp_router_id_unset (struct bgp *);
769
770int bgp_cluster_id_set (struct bgp *, struct in_addr *);
771int bgp_cluster_id_unset (struct bgp *);
772
773int bgp_confederation_id_set (struct bgp *, as_t);
774int bgp_confederation_id_unset (struct bgp *);
775int bgp_confederation_peers_check (struct bgp *, as_t);
776
777int bgp_confederation_peers_add (struct bgp *, as_t);
778int bgp_confederation_peers_remove (struct bgp *, as_t);
779
780int bgp_timers_set (struct bgp *, u_int32_t, u_int32_t);
781int bgp_timers_unset (struct bgp *);
782
783int bgp_default_local_preference_set (struct bgp *, u_int32_t);
784int bgp_default_local_preference_unset (struct bgp *);
785
786int peer_remote_as (struct bgp *, union sockunion *, as_t *, afi_t, safi_t);
787int peer_group_remote_as (struct bgp *, char *, as_t *);
788int peer_delete (struct peer *peer);
789int peer_group_delete (struct peer_group *);
790int peer_group_remote_as_delete (struct peer_group *);
791
792int peer_activate (struct peer *, afi_t, safi_t);
793int peer_deactivate (struct peer *, afi_t, safi_t);
794
795int peer_group_bind (struct bgp *, union sockunion *, struct peer_group *,
796 afi_t, safi_t, as_t *);
797int peer_group_unbind (struct bgp *, struct peer *, struct peer_group *,
798 afi_t, safi_t);
799
800int peer_flag_set (struct peer *, u_int32_t);
801int peer_flag_unset (struct peer *, u_int32_t);
802
803int peer_af_flag_set (struct peer *, afi_t, safi_t, u_int32_t);
804int peer_af_flag_unset (struct peer *, afi_t, safi_t, u_int32_t);
805int peer_af_flag_check (struct peer *, afi_t, safi_t, u_int32_t);
806
807int peer_ebgp_multihop_set (struct peer *, int);
808int peer_ebgp_multihop_unset (struct peer *);
809
810int peer_description_set (struct peer *, char *);
811int peer_description_unset (struct peer *);
812
813int peer_update_source_if_set (struct peer *, char *);
814int peer_update_source_addr_set (struct peer *, union sockunion *);
815int peer_update_source_unset (struct peer *);
816
817int peer_default_originate_set (struct peer *, afi_t, safi_t, char *);
818int peer_default_originate_unset (struct peer *, afi_t, safi_t);
819
820int peer_port_set (struct peer *, u_int16_t);
821int peer_port_unset (struct peer *);
822
823int peer_weight_set (struct peer *, u_int16_t);
824int peer_weight_unset (struct peer *);
825
826int peer_timers_set (struct peer *, u_int32_t, u_int32_t);
827int peer_timers_unset (struct peer *);
828
829int peer_timers_connect_set (struct peer *, u_int32_t);
830int peer_timers_connect_unset (struct peer *);
831
832int peer_advertise_interval_set (struct peer *, u_int32_t);
833int peer_advertise_interval_unset (struct peer *);
834
835int peer_version_set (struct peer *, int);
836int peer_version_unset (struct peer *);
837
838int peer_interface_set (struct peer *, char *);
839int peer_interface_unset (struct peer *);
840
841int peer_distribute_set (struct peer *, afi_t, safi_t, int, char *);
842int peer_distribute_unset (struct peer *, afi_t, safi_t, int);
843
844int peer_allowas_in_set (struct peer *, afi_t, safi_t, int);
845int peer_allowas_in_unset (struct peer *, afi_t, safi_t);
846
847int peer_local_as_set (struct peer *, as_t, int);
848int peer_local_as_unset (struct peer *);
849
850int peer_prefix_list_set (struct peer *, afi_t, safi_t, int, char *);
851int peer_prefix_list_unset (struct peer *, afi_t, safi_t, int);
852
853int peer_aslist_set (struct peer *, afi_t, safi_t, int, char *);
854int peer_aslist_unset (struct peer *,afi_t, safi_t, int);
855
856int peer_route_map_set (struct peer *, afi_t, safi_t, int, char *);
857int peer_route_map_unset (struct peer *, afi_t, safi_t, int);
858
859int peer_unsuppress_map_set (struct peer *, afi_t, safi_t, char *);
860int peer_unsuppress_map_unset (struct peer *, afi_t, safi_t);
861
hassoe0701b72004-05-20 09:19:34 +0000862int peer_maximum_prefix_set (struct peer *, afi_t, safi_t, u_int32_t, u_char, int);
paul718e3742002-12-13 20:15:29 +0000863int peer_maximum_prefix_unset (struct peer *, afi_t, safi_t);
864
865int peer_clear (struct peer *);
866int peer_clear_soft (struct peer *, afi_t, safi_t, enum bgp_clear_type);