blob: 63e326af9e5a07a3eceb6b8cc0e2b5b5205ec5c7 [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
paul00d252c2005-05-23 14:19:54 +000021#ifndef _QUAGGA_BGPD_H
22#define _QUAGGA_BGPD_H
23
paul718e3742002-12-13 20:15:29 +000024/* For union sockunion. */
25#include "sockunion.h"
26
27/* Typedef BGP specific types. */
Paul Jakma0b2aa3a2007-10-14 22:32:21 +000028typedef u_int32_t as_t;
29typedef u_int16_t as16_t; /* we may still encounter 16 Bit asnums */
paul718e3742002-12-13 20:15:29 +000030typedef u_int16_t bgp_size_t;
31
32/* BGP master for system wide configurations and variables. */
33struct bgp_master
34{
35 /* BGP instance list. */
36 struct list *bgp;
37
38 /* BGP thread master. */
39 struct thread_master *master;
40
paul200df112005-06-01 11:17:05 +000041 /* work queues */
42 struct work_queue *process_main_queue;
43 struct work_queue *process_rsclient_queue;
paul200df112005-06-01 11:17:05 +000044
Paul Jakma0df7c912008-07-21 21:02:49 +000045 /* Listening sockets */
46 struct list *listen_sockets;
47
paul718e3742002-12-13 20:15:29 +000048 /* BGP port number. */
49 u_int16_t port;
50
Paul Jakma3a02d1f2007-11-01 14:29:11 +000051 /* Listener address */
52 char *address;
53
paul718e3742002-12-13 20:15:29 +000054 /* BGP start time. */
55 time_t start_time;
56
57 /* Various BGP global configuration. */
58 u_char options;
59#define BGP_OPT_NO_FIB (1 << 0)
60#define BGP_OPT_MULTIPLE_INSTANCE (1 << 1)
61#define BGP_OPT_CONFIG_CISCO (1 << 2)
Paul Jakmacccbc012012-06-14 10:40:26 +010062#define BGP_OPT_NO_LISTEN (1 << 3)
paul718e3742002-12-13 20:15:29 +000063};
64
65/* BGP instance structure. */
66struct bgp
67{
68 /* AS number of this BGP instance. */
69 as_t as;
70
71 /* Name of this BGP instance. */
72 char *name;
paul200df112005-06-01 11:17:05 +000073
Stephen Hemminger0088b5d2009-05-21 08:51:03 -070074 /* Reference count to allow peer_delete to finish after bgp_delete */
75 int lock;
76
paul718e3742002-12-13 20:15:29 +000077 /* Self peer. */
78 struct peer *peer_self;
79
80 /* BGP peer. */
81 struct list *peer;
82
83 /* BGP peer group. */
84 struct list *group;
85
paulfee0f4c2004-09-13 05:12:46 +000086 /* BGP route-server-clients. */
87 struct list *rsclient;
88
paul718e3742002-12-13 20:15:29 +000089 /* BGP configuration. */
90 u_int16_t config;
91#define BGP_CONFIG_ROUTER_ID (1 << 0)
92#define BGP_CONFIG_CLUSTER_ID (1 << 1)
93#define BGP_CONFIG_CONFEDERATION (1 << 2)
paul718e3742002-12-13 20:15:29 +000094
95 /* BGP router identifier. */
96 struct in_addr router_id;
hasso18a6dce2004-10-03 18:18:34 +000097 struct in_addr router_id_static;
paul718e3742002-12-13 20:15:29 +000098
99 /* BGP route reflector cluster ID. */
100 struct in_addr cluster_id;
101
102 /* BGP confederation information. */
103 as_t confed_id;
104 as_t *confed_peers;
105 int confed_peers_cnt;
106
107 /* BGP flags. */
108 u_int16_t flags;
109#define BGP_FLAG_ALWAYS_COMPARE_MED (1 << 0)
110#define BGP_FLAG_DETERMINISTIC_MED (1 << 1)
111#define BGP_FLAG_MED_MISSING_AS_WORST (1 << 2)
112#define BGP_FLAG_MED_CONFED (1 << 3)
113#define BGP_FLAG_NO_DEFAULT_IPV4 (1 << 4)
114#define BGP_FLAG_NO_CLIENT_TO_CLIENT (1 << 5)
115#define BGP_FLAG_ENFORCE_FIRST_AS (1 << 6)
116#define BGP_FLAG_COMPARE_ROUTER_ID (1 << 7)
117#define BGP_FLAG_ASPATH_IGNORE (1 << 8)
118#define BGP_FLAG_IMPORT_CHECK (1 << 9)
119#define BGP_FLAG_NO_FAST_EXT_FAILOVER (1 << 10)
paul848973c2003-08-13 00:32:49 +0000120#define BGP_FLAG_LOG_NEIGHBOR_CHANGES (1 << 11)
hasso538621f2004-05-21 09:31:30 +0000121#define BGP_FLAG_GRACEFUL_RESTART (1 << 12)
hasso68118452005-04-08 15:40:36 +0000122#define BGP_FLAG_ASPATH_CONFED (1 << 13)
paul718e3742002-12-13 20:15:29 +0000123
124 /* BGP Per AF flags */
125 u_int16_t af_flags[AFI_MAX][SAFI_MAX];
126#define BGP_CONFIG_DAMPENING (1 << 0)
127
128 /* Static route configuration. */
129 struct bgp_table *route[AFI_MAX][SAFI_MAX];
130
131 /* Aggregate address configuration. */
132 struct bgp_table *aggregate[AFI_MAX][SAFI_MAX];
133
134 /* BGP routing information base. */
135 struct bgp_table *rib[AFI_MAX][SAFI_MAX];
136
137 /* BGP redistribute configuration. */
138 u_char redist[AFI_MAX][ZEBRA_ROUTE_MAX];
139
140 /* BGP redistribute metric configuration. */
141 u_char redist_metric_flag[AFI_MAX][ZEBRA_ROUTE_MAX];
142 u_int32_t redist_metric[AFI_MAX][ZEBRA_ROUTE_MAX];
143
144 /* BGP redistribute route-map. */
145 struct
146 {
147 char *name;
148 struct route_map *map;
149 } rmap[AFI_MAX][ZEBRA_ROUTE_MAX];
150
151 /* BGP distance configuration. */
152 u_char distance_ebgp;
153 u_char distance_ibgp;
154 u_char distance_local;
155
156 /* BGP default local-preference. */
157 u_int32_t default_local_pref;
158
159 /* BGP default timer. */
160 u_int32_t default_holdtime;
161 u_int32_t default_keepalive;
hasso538621f2004-05-21 09:31:30 +0000162
163 /* BGP graceful restart */
hasso93406d82005-02-02 14:40:33 +0000164 u_int32_t restart_time;
165 u_int32_t stalepath_time;
Josh Bailey165b5ff2011-07-20 20:43:22 -0700166
167 /* Maximum-paths configuration */
168 struct bgp_maxpaths_cfg {
169 u_int16_t maxpaths_ebgp;
170 u_int16_t maxpaths_ibgp;
171 } maxpaths[AFI_MAX][SAFI_MAX];
paul718e3742002-12-13 20:15:29 +0000172};
173
174/* BGP peer-group support. */
175struct peer_group
176{
177 /* Name of the peer-group. */
178 char *name;
179
180 /* Pointer to BGP. */
181 struct bgp *bgp;
182
183 /* Peer-group client list. */
184 struct list *peer;
185
186 /* Peer-group config */
187 struct peer *conf;
188};
189
190/* BGP Notify message format. */
191struct bgp_notify
192{
193 u_char code;
194 u_char subcode;
195 char *data;
196 bgp_size_t length;
197};
198
199/* Next hop self address. */
200struct bgp_nexthop
201{
202 struct interface *ifp;
203 struct in_addr v4;
204#ifdef HAVE_IPV6
205 struct in6_addr v6_global;
206 struct in6_addr v6_local;
207#endif /* HAVE_IPV6 */
208};
209
210/* BGP router distinguisher value. */
211#define BGP_RD_SIZE 8
212
213struct bgp_rd
214{
215 u_char val[BGP_RD_SIZE];
216};
217
paulfee0f4c2004-09-13 05:12:46 +0000218#define RMAP_IN 0
219#define RMAP_OUT 1
220#define RMAP_IMPORT 2
221#define RMAP_EXPORT 3
222#define RMAP_MAX 4
223
paul718e3742002-12-13 20:15:29 +0000224/* BGP filter structure. */
225struct bgp_filter
226{
227 /* Distribute-list. */
228 struct
229 {
230 char *name;
231 struct access_list *alist;
232 } dlist[FILTER_MAX];
233
234 /* Prefix-list. */
235 struct
236 {
237 char *name;
238 struct prefix_list *plist;
239 } plist[FILTER_MAX];
240
241 /* Filter-list. */
242 struct
243 {
244 char *name;
245 struct as_list *aslist;
246 } aslist[FILTER_MAX];
247
248 /* Route-map. */
249 struct
250 {
251 char *name;
252 struct route_map *map;
paulfee0f4c2004-09-13 05:12:46 +0000253 } map[RMAP_MAX];
paul718e3742002-12-13 20:15:29 +0000254
255 /* Unsuppress-map. */
256 struct
257 {
258 char *name;
259 struct route_map *map;
260 } usmap;
261};
262
Jorge Boncompte [DTI2]6d85b152012-05-07 16:52:54 +0000263/* IBGP/EBGP identifier. We also have a CONFED peer, which is to say,
264 a peer who's AS is part of our Confederation. */
265typedef enum
266{
267 BGP_PEER_IBGP = 1,
268 BGP_PEER_EBGP,
269 BGP_PEER_INTERNAL,
270 BGP_PEER_CONFED,
271} bgp_peer_sort_t;
272
paul718e3742002-12-13 20:15:29 +0000273/* BGP neighbor structure. */
274struct peer
275{
276 /* BGP structure. */
277 struct bgp *bgp;
278
paul200df112005-06-01 11:17:05 +0000279 /* reference count, primarily to allow bgp_process'ing of route_node's
280 * to be done after a struct peer is deleted.
281 *
282 * named 'lock' for hysterical reasons within Quagga.
283 */
284 int lock;
285
paul718e3742002-12-13 20:15:29 +0000286 /* BGP peer group. */
287 struct peer_group *group;
288 u_char af_group[AFI_MAX][SAFI_MAX];
289
290 /* Peer's remote AS number. */
291 as_t as;
292
293 /* Peer's local AS number. */
294 as_t local_as;
295
Jorge Boncompte [DTI2]6d85b152012-05-07 16:52:54 +0000296 bgp_peer_sort_t sort;
297
paul718e3742002-12-13 20:15:29 +0000298 /* Peer's Change local AS number. */
299 as_t change_local_as;
300
301 /* Remote router ID. */
302 struct in_addr remote_id;
303
304 /* Local router ID. */
305 struct in_addr local_id;
306
paulfee0f4c2004-09-13 05:12:46 +0000307 /* Peer specific RIB when configured as route-server-client. */
308 struct bgp_table *rib[AFI_MAX][SAFI_MAX];
309
paul718e3742002-12-13 20:15:29 +0000310 /* Packet receive and send buffer. */
311 struct stream *ibuf;
312 struct stream_fifo *obuf;
313 struct stream *work;
314
315 /* Status of the peer. */
316 int status;
317 int ostatus;
318
Paul Jakma0b2aa3a2007-10-14 22:32:21 +0000319 /* Peer index, used for dumping TABLE_DUMP_V2 format */
320 uint16_t table_dump_index;
321
paul718e3742002-12-13 20:15:29 +0000322 /* Peer information */
pauleb821182004-05-01 08:44:08 +0000323 int fd; /* File descriptor */
324 int ttl; /* TTL of TCP connection to the peer. */
Nick Hilliardfa411a22011-03-23 15:33:17 +0000325 int gtsm_hops; /* minimum hopcount to peer */
pauleb821182004-05-01 08:44:08 +0000326 char *desc; /* Description of the peer. */
327 unsigned short port; /* Destination port for peer */
328 char *host; /* Printable address of the peer. */
329 union sockunion su; /* Sockunion address of the peer. */
330 time_t uptime; /* Last Up/Down time */
331 time_t readtime; /* Last read time */
332 time_t resettime; /* Last reset time */
paul718e3742002-12-13 20:15:29 +0000333
pauleb821182004-05-01 08:44:08 +0000334 unsigned int ifindex; /* ifindex of the BGP connection. */
335 char *ifname; /* bind interface name. */
336 char *update_if;
337 union sockunion *update_source;
338 struct zlog *log;
paul718e3742002-12-13 20:15:29 +0000339
pauleb821182004-05-01 08:44:08 +0000340 union sockunion *su_local; /* Sockunion of local address. */
341 union sockunion *su_remote; /* Sockunion of remote address. */
342 int shared_network; /* Is this peer shared same network. */
343 struct bgp_nexthop nexthop; /* Nexthop */
paul718e3742002-12-13 20:15:29 +0000344
345 /* Peer address family configuration. */
346 u_char afc[AFI_MAX][SAFI_MAX];
347 u_char afc_nego[AFI_MAX][SAFI_MAX];
348 u_char afc_adv[AFI_MAX][SAFI_MAX];
349 u_char afc_recv[AFI_MAX][SAFI_MAX];
350
hasso0a486e52005-02-01 20:57:17 +0000351 /* Capability flags (reset in bgp_stop) */
Paul Jakma0b2aa3a2007-10-14 22:32:21 +0000352 u_int16_t cap;
paul718e3742002-12-13 20:15:29 +0000353#define PEER_CAP_REFRESH_ADV (1 << 0) /* refresh advertised */
354#define PEER_CAP_REFRESH_OLD_RCV (1 << 1) /* refresh old received */
355#define PEER_CAP_REFRESH_NEW_RCV (1 << 2) /* refresh rfc received */
356#define PEER_CAP_DYNAMIC_ADV (1 << 3) /* dynamic advertised */
357#define PEER_CAP_DYNAMIC_RCV (1 << 4) /* dynamic received */
hasso538621f2004-05-21 09:31:30 +0000358#define PEER_CAP_RESTART_ADV (1 << 5) /* restart advertised */
359#define PEER_CAP_RESTART_RCV (1 << 6) /* restart received */
Paul Jakma0b2aa3a2007-10-14 22:32:21 +0000360#define PEER_CAP_AS4_ADV (1 << 7) /* as4 advertised */
361#define PEER_CAP_AS4_RCV (1 << 8) /* as4 received */
paul718e3742002-12-13 20:15:29 +0000362
hasso0a486e52005-02-01 20:57:17 +0000363 /* Capability flags (reset in bgp_stop) */
paul718e3742002-12-13 20:15:29 +0000364 u_int16_t af_cap[AFI_MAX][SAFI_MAX];
365#define PEER_CAP_ORF_PREFIX_SM_ADV (1 << 0) /* send-mode advertised */
366#define PEER_CAP_ORF_PREFIX_RM_ADV (1 << 1) /* receive-mode advertised */
367#define PEER_CAP_ORF_PREFIX_SM_RCV (1 << 2) /* send-mode received */
368#define PEER_CAP_ORF_PREFIX_RM_RCV (1 << 3) /* receive-mode received */
369#define PEER_CAP_ORF_PREFIX_SM_OLD_RCV (1 << 4) /* send-mode received */
370#define PEER_CAP_ORF_PREFIX_RM_OLD_RCV (1 << 5) /* receive-mode received */
hasso93406d82005-02-02 14:40:33 +0000371#define PEER_CAP_RESTART_AF_RCV (1 << 6) /* graceful restart afi/safi received */
372#define PEER_CAP_RESTART_AF_PRESERVE_RCV (1 << 7) /* graceful restart afi/safi F-bit received */
paul718e3742002-12-13 20:15:29 +0000373
374 /* Global configuration flags. */
375 u_int32_t flags;
376#define PEER_FLAG_PASSIVE (1 << 0) /* passive mode */
377#define PEER_FLAG_SHUTDOWN (1 << 1) /* shutdown */
378#define PEER_FLAG_DONT_CAPABILITY (1 << 2) /* dont-capability */
379#define PEER_FLAG_OVERRIDE_CAPABILITY (1 << 3) /* override-capability */
380#define PEER_FLAG_STRICT_CAP_MATCH (1 << 4) /* strict-match */
hassoc9502432005-02-01 22:01:48 +0000381#define PEER_FLAG_DYNAMIC_CAPABILITY (1 << 5) /* dynamic capability */
hasso6ffd2072005-02-02 14:50:11 +0000382#define PEER_FLAG_DISABLE_CONNECTED_CHECK (1 << 6) /* disable-connected-check */
hassoc9502432005-02-01 22:01:48 +0000383#define PEER_FLAG_LOCAL_AS_NO_PREPEND (1 << 7) /* local-as no-prepend */
paul718e3742002-12-13 20:15:29 +0000384
hasso93406d82005-02-02 14:40:33 +0000385 /* NSF mode (graceful restart) */
386 u_char nsf[AFI_MAX][SAFI_MAX];
387
paul718e3742002-12-13 20:15:29 +0000388 /* Per AF configuration flags. */
389 u_int32_t af_flags[AFI_MAX][SAFI_MAX];
390#define PEER_FLAG_SEND_COMMUNITY (1 << 0) /* send-community */
391#define PEER_FLAG_SEND_EXT_COMMUNITY (1 << 1) /* send-community ext. */
392#define PEER_FLAG_NEXTHOP_SELF (1 << 2) /* next-hop-self */
393#define PEER_FLAG_REFLECTOR_CLIENT (1 << 3) /* reflector-client */
394#define PEER_FLAG_RSERVER_CLIENT (1 << 4) /* route-server-client */
395#define PEER_FLAG_SOFT_RECONFIG (1 << 5) /* soft-reconfiguration */
396#define PEER_FLAG_AS_PATH_UNCHANGED (1 << 6) /* transparent-as */
397#define PEER_FLAG_NEXTHOP_UNCHANGED (1 << 7) /* transparent-next-hop */
398#define PEER_FLAG_MED_UNCHANGED (1 << 8) /* transparent-next-hop */
399#define PEER_FLAG_DEFAULT_ORIGINATE (1 << 9) /* default-originate */
400#define PEER_FLAG_REMOVE_PRIVATE_AS (1 << 10) /* remove-private-as */
401#define PEER_FLAG_ALLOWAS_IN (1 << 11) /* set allowas-in */
402#define PEER_FLAG_ORF_PREFIX_SM (1 << 12) /* orf capability send-mode */
403#define PEER_FLAG_ORF_PREFIX_RM (1 << 13) /* orf capability receive-mode */
404#define PEER_FLAG_MAX_PREFIX (1 << 14) /* maximum prefix */
405#define PEER_FLAG_MAX_PREFIX_WARNING (1 << 15) /* maximum prefix warning-only */
Paul Jakma0df7c912008-07-21 21:02:49 +0000406#define PEER_FLAG_NEXTHOP_LOCAL_UNCHANGED (1 << 16) /* leave link-local nexthop unchanged */
407
408 /* MD5 password */
409 char *password;
paul718e3742002-12-13 20:15:29 +0000410
411 /* default-originate route-map. */
412 struct
413 {
414 char *name;
415 struct route_map *map;
416 } default_rmap[AFI_MAX][SAFI_MAX];
417
418 /* Peer status flags. */
419 u_int16_t sflags;
420#define PEER_STATUS_ACCEPT_PEER (1 << 0) /* accept peer */
421#define PEER_STATUS_PREFIX_OVERFLOW (1 << 1) /* prefix-overflow */
422#define PEER_STATUS_CAPABILITY_OPEN (1 << 2) /* capability open send */
423#define PEER_STATUS_HAVE_ACCEPT (1 << 3) /* accept peer's parent */
424#define PEER_STATUS_GROUP (1 << 4) /* peer-group conf */
hasso93406d82005-02-02 14:40:33 +0000425#define PEER_STATUS_NSF_MODE (1 << 5) /* NSF aware peer */
426#define PEER_STATUS_NSF_WAIT (1 << 6) /* wait comeback peer */
paul718e3742002-12-13 20:15:29 +0000427
hasso0a486e52005-02-01 20:57:17 +0000428 /* Peer status af flags (reset in bgp_stop) */
paul718e3742002-12-13 20:15:29 +0000429 u_int16_t af_sflags[AFI_MAX][SAFI_MAX];
430#define PEER_STATUS_ORF_PREFIX_SEND (1 << 0) /* prefix-list send peer */
431#define PEER_STATUS_ORF_WAIT_REFRESH (1 << 1) /* wait refresh received peer */
432#define PEER_STATUS_DEFAULT_ORIGINATE (1 << 2) /* default-originate peer */
hassoe0701b72004-05-20 09:19:34 +0000433#define PEER_STATUS_PREFIX_THRESHOLD (1 << 3) /* exceed prefix-threshold */
434#define PEER_STATUS_PREFIX_LIMIT (1 << 4) /* exceed prefix-limit */
hasso93406d82005-02-02 14:40:33 +0000435#define PEER_STATUS_EOR_SEND (1 << 5) /* end-of-rib send to peer */
436#define PEER_STATUS_EOR_RECEIVED (1 << 6) /* end-of-rib received from peer */
hassoe0701b72004-05-20 09:19:34 +0000437
paul718e3742002-12-13 20:15:29 +0000438 /* Default attribute value for the peer. */
439 u_int32_t config;
440#define PEER_CONFIG_WEIGHT (1 << 0) /* Default weight. */
441#define PEER_CONFIG_TIMER (1 << 1) /* keepalive & holdtime */
442#define PEER_CONFIG_CONNECT (1 << 2) /* connect */
443#define PEER_CONFIG_ROUTEADV (1 << 3) /* route advertise */
444 u_int32_t weight;
445 u_int32_t holdtime;
446 u_int32_t keepalive;
447 u_int32_t connect;
448 u_int32_t routeadv;
449
450 /* Timer values. */
451 u_int32_t v_start;
452 u_int32_t v_connect;
453 u_int32_t v_holdtime;
454 u_int32_t v_keepalive;
455 u_int32_t v_asorig;
456 u_int32_t v_routeadv;
hasso0a486e52005-02-01 20:57:17 +0000457 u_int32_t v_pmax_restart;
hasso93406d82005-02-02 14:40:33 +0000458 u_int32_t v_gr_restart;
paul718e3742002-12-13 20:15:29 +0000459
460 /* Threads. */
461 struct thread *t_read;
462 struct thread *t_write;
463 struct thread *t_start;
464 struct thread *t_connect;
465 struct thread *t_holdtime;
466 struct thread *t_keepalive;
467 struct thread *t_asorig;
468 struct thread *t_routeadv;
hasso0a486e52005-02-01 20:57:17 +0000469 struct thread *t_pmax_restart;
hasso93406d82005-02-02 14:40:33 +0000470 struct thread *t_gr_restart;
471 struct thread *t_gr_stale;
Paul Jakma64e580a2006-02-21 01:09:01 +0000472
473 /* workqueues */
474 struct work_queue *clear_node_queue;
475
paul718e3742002-12-13 20:15:29 +0000476 /* Statistics field */
477 u_int32_t open_in; /* Open message input count */
478 u_int32_t open_out; /* Open message output count */
479 u_int32_t update_in; /* Update message input count */
480 u_int32_t update_out; /* Update message ouput count */
481 time_t update_time; /* Update message received time. */
482 u_int32_t keepalive_in; /* Keepalive input count */
483 u_int32_t keepalive_out; /* Keepalive output count */
484 u_int32_t notify_in; /* Notify input count */
485 u_int32_t notify_out; /* Notify output count */
486 u_int32_t refresh_in; /* Route Refresh input count */
487 u_int32_t refresh_out; /* Route Refresh output count */
488 u_int32_t dynamic_cap_in; /* Dynamic Capability input count. */
489 u_int32_t dynamic_cap_out; /* Dynamic Capability output count. */
490
491 /* BGP state count */
492 u_int32_t established; /* Established */
493 u_int32_t dropped; /* Dropped */
494
495 /* Syncronization list and time. */
496 struct bgp_synchronize *sync[AFI_MAX][SAFI_MAX];
497 time_t synctime;
498
499 /* Send prefix count. */
500 unsigned long scount[AFI_MAX][SAFI_MAX];
501
502 /* Announcement attribute hash. */
503 struct hash *hash[AFI_MAX][SAFI_MAX];
504
505 /* Notify data. */
506 struct bgp_notify notify;
507
508 /* Whole packet size to be read. */
509 unsigned long packet_size;
510
511 /* Filter structure. */
512 struct bgp_filter filter[AFI_MAX][SAFI_MAX];
513
514 /* ORF Prefix-list */
515 struct prefix_list *orf_plist[AFI_MAX][SAFI_MAX];
516
517 /* Prefix count. */
518 unsigned long pcount[AFI_MAX][SAFI_MAX];
519
520 /* Max prefix count. */
521 unsigned long pmax[AFI_MAX][SAFI_MAX];
hassoe0701b72004-05-20 09:19:34 +0000522 u_char pmax_threshold[AFI_MAX][SAFI_MAX];
hasso0a486e52005-02-01 20:57:17 +0000523 u_int16_t pmax_restart[AFI_MAX][SAFI_MAX];
hassoe0701b72004-05-20 09:19:34 +0000524#define MAXIMUM_PREFIX_THRESHOLD_DEFAULT 75
paul718e3742002-12-13 20:15:29 +0000525
526 /* allowas-in. */
527 char allowas_in[AFI_MAX][SAFI_MAX];
paulac41b2a2003-08-12 05:32:27 +0000528
hassoe0701b72004-05-20 09:19:34 +0000529 /* peer reset cause */
530 char last_reset;
531#define PEER_DOWN_RID_CHANGE 1 /* bgp router-id command */
532#define PEER_DOWN_REMOTE_AS_CHANGE 2 /* neighbor remote-as command */
533#define PEER_DOWN_LOCAL_AS_CHANGE 3 /* neighbor local-as command */
534#define PEER_DOWN_CLID_CHANGE 4 /* bgp cluster-id command */
535#define PEER_DOWN_CONFED_ID_CHANGE 5 /* bgp confederation identifier command */
536#define PEER_DOWN_CONFED_PEER_CHANGE 6 /* bgp confederation peer command */
537#define PEER_DOWN_RR_CLIENT_CHANGE 7 /* neighbor route-reflector-client command */
538#define PEER_DOWN_RS_CLIENT_CHANGE 8 /* neighbor route-server-client command */
539#define PEER_DOWN_UPDATE_SOURCE_CHANGE 9 /* neighbor update-source command */
540#define PEER_DOWN_AF_ACTIVATE 10 /* neighbor activate command */
541#define PEER_DOWN_USER_SHUTDOWN 11 /* neighbor shutdown command */
542#define PEER_DOWN_USER_RESET 12 /* clear ip bgp command */
543#define PEER_DOWN_NOTIFY_RECEIVED 13 /* notification received */
544#define PEER_DOWN_NOTIFY_SEND 14 /* notification send */
545#define PEER_DOWN_CLOSE_SESSION 15 /* tcp session close */
546#define PEER_DOWN_NEIGHBOR_DELETE 16 /* neghbor delete */
547#define PEER_DOWN_RMAP_BIND 17 /* neghbor peer-group command */
548#define PEER_DOWN_RMAP_UNBIND 18 /* no neighbor peer-group command */
549#define PEER_DOWN_CAPABILITY_CHANGE 19 /* neighbor capability command */
550#define PEER_DOWN_PASSIVE_CHANGE 20 /* neighbor passive command */
551#define PEER_DOWN_MULTIHOP_CHANGE 21 /* neighbor multihop command */
hasso93406d82005-02-02 14:40:33 +0000552#define PEER_DOWN_NSF_CLOSE_SESSION 22 /* NSF tcp session close */
hassoe0701b72004-05-20 09:19:34 +0000553
paulac41b2a2003-08-12 05:32:27 +0000554 /* The kind of route-map Flags.*/
555 u_char rmap_type;
556#define PEER_RMAP_TYPE_IN (1 << 0) /* neighbor route-map in */
557#define PEER_RMAP_TYPE_OUT (1 << 1) /* neighbor route-map out */
558#define PEER_RMAP_TYPE_NETWORK (1 << 2) /* network route-map */
559#define PEER_RMAP_TYPE_REDISTRIBUTE (1 << 3) /* redistribute route-map */
560#define PEER_RMAP_TYPE_DEFAULT (1 << 4) /* default-originate route-map */
561#define PEER_RMAP_TYPE_NOSET (1 << 5) /* not allow to set commands */
paulfee0f4c2004-09-13 05:12:46 +0000562#define PEER_RMAP_TYPE_IMPORT (1 << 6) /* neighbor route-map import */
563#define PEER_RMAP_TYPE_EXPORT (1 << 7) /* neighbor route-map export */
paul718e3742002-12-13 20:15:29 +0000564};
565
Paul Jakma0df7c912008-07-21 21:02:49 +0000566#define PEER_PASSWORD_MINLEN (1)
567#define PEER_PASSWORD_MAXLEN (80)
568
paul718e3742002-12-13 20:15:29 +0000569/* This structure's member directly points incoming packet data
570 stream. */
571struct bgp_nlri
572{
573 /* AFI. */
574 afi_t afi;
575
576 /* SAFI. */
577 safi_t safi;
578
579 /* Pointer to NLRI byte stream. */
580 u_char *nlri;
581
582 /* Length of whole NLRI. */
583 bgp_size_t length;
584};
585
586/* BGP versions. */
587#define BGP_VERSION_4 4
paul718e3742002-12-13 20:15:29 +0000588
589/* Default BGP port number. */
590#define BGP_PORT_DEFAULT 179
591
592/* BGP message header and packet size. */
593#define BGP_MARKER_SIZE 16
594#define BGP_HEADER_SIZE 19
595#define BGP_MAX_PACKET_SIZE 4096
596
597/* BGP minimum message size. */
598#define BGP_MSG_OPEN_MIN_SIZE (BGP_HEADER_SIZE + 10)
599#define BGP_MSG_UPDATE_MIN_SIZE (BGP_HEADER_SIZE + 4)
600#define BGP_MSG_NOTIFY_MIN_SIZE (BGP_HEADER_SIZE + 2)
601#define BGP_MSG_KEEPALIVE_MIN_SIZE (BGP_HEADER_SIZE + 0)
602#define BGP_MSG_ROUTE_REFRESH_MIN_SIZE (BGP_HEADER_SIZE + 4)
603#define BGP_MSG_CAPABILITY_MIN_SIZE (BGP_HEADER_SIZE + 3)
604
605/* BGP message types. */
606#define BGP_MSG_OPEN 1
607#define BGP_MSG_UPDATE 2
608#define BGP_MSG_NOTIFY 3
609#define BGP_MSG_KEEPALIVE 4
610#define BGP_MSG_ROUTE_REFRESH_NEW 5
611#define BGP_MSG_CAPABILITY 6
612#define BGP_MSG_ROUTE_REFRESH_OLD 128
613
614/* BGP open optional parameter. */
615#define BGP_OPEN_OPT_AUTH 1
616#define BGP_OPEN_OPT_CAP 2
617
618/* BGP4 attribute type codes. */
619#define BGP_ATTR_ORIGIN 1
620#define BGP_ATTR_AS_PATH 2
621#define BGP_ATTR_NEXT_HOP 3
622#define BGP_ATTR_MULTI_EXIT_DISC 4
623#define BGP_ATTR_LOCAL_PREF 5
624#define BGP_ATTR_ATOMIC_AGGREGATE 6
625#define BGP_ATTR_AGGREGATOR 7
626#define BGP_ATTR_COMMUNITIES 8
627#define BGP_ATTR_ORIGINATOR_ID 9
628#define BGP_ATTR_CLUSTER_LIST 10
629#define BGP_ATTR_DPA 11
630#define BGP_ATTR_ADVERTISER 12
631#define BGP_ATTR_RCID_PATH 13
632#define BGP_ATTR_MP_REACH_NLRI 14
633#define BGP_ATTR_MP_UNREACH_NLRI 15
634#define BGP_ATTR_EXT_COMMUNITIES 16
Paul Jakma0b2aa3a2007-10-14 22:32:21 +0000635#define BGP_ATTR_AS4_PATH 17
636#define BGP_ATTR_AS4_AGGREGATOR 18
Paul Jakma41367172007-08-06 15:24:51 +0000637#define BGP_ATTR_AS_PATHLIMIT 21
paul718e3742002-12-13 20:15:29 +0000638
639/* BGP update origin. */
640#define BGP_ORIGIN_IGP 0
641#define BGP_ORIGIN_EGP 1
642#define BGP_ORIGIN_INCOMPLETE 2
643
644/* BGP notify message codes. */
645#define BGP_NOTIFY_HEADER_ERR 1
646#define BGP_NOTIFY_OPEN_ERR 2
647#define BGP_NOTIFY_UPDATE_ERR 3
648#define BGP_NOTIFY_HOLD_ERR 4
649#define BGP_NOTIFY_FSM_ERR 5
650#define BGP_NOTIFY_CEASE 6
651#define BGP_NOTIFY_CAPABILITY_ERR 7
652#define BGP_NOTIFY_MAX 8
653
Dmitrij Tejblum4b4e07d2011-09-21 23:13:22 +0400654#define BGP_NOTIFY_SUBCODE_UNSPECIFIC 0
655
paul718e3742002-12-13 20:15:29 +0000656/* BGP_NOTIFY_HEADER_ERR sub codes. */
657#define BGP_NOTIFY_HEADER_NOT_SYNC 1
658#define BGP_NOTIFY_HEADER_BAD_MESLEN 2
659#define BGP_NOTIFY_HEADER_BAD_MESTYPE 3
660#define BGP_NOTIFY_HEADER_MAX 4
661
662/* BGP_NOTIFY_OPEN_ERR sub codes. */
663#define BGP_NOTIFY_OPEN_UNSUP_VERSION 1
664#define BGP_NOTIFY_OPEN_BAD_PEER_AS 2
665#define BGP_NOTIFY_OPEN_BAD_BGP_IDENT 3
666#define BGP_NOTIFY_OPEN_UNSUP_PARAM 4
667#define BGP_NOTIFY_OPEN_AUTH_FAILURE 5
668#define BGP_NOTIFY_OPEN_UNACEP_HOLDTIME 6
669#define BGP_NOTIFY_OPEN_UNSUP_CAPBL 7
670#define BGP_NOTIFY_OPEN_MAX 8
671
672/* BGP_NOTIFY_UPDATE_ERR sub codes. */
673#define BGP_NOTIFY_UPDATE_MAL_ATTR 1
674#define BGP_NOTIFY_UPDATE_UNREC_ATTR 2
675#define BGP_NOTIFY_UPDATE_MISS_ATTR 3
676#define BGP_NOTIFY_UPDATE_ATTR_FLAG_ERR 4
677#define BGP_NOTIFY_UPDATE_ATTR_LENG_ERR 5
678#define BGP_NOTIFY_UPDATE_INVAL_ORIGIN 6
679#define BGP_NOTIFY_UPDATE_AS_ROUTE_LOOP 7
680#define BGP_NOTIFY_UPDATE_INVAL_NEXT_HOP 8
681#define BGP_NOTIFY_UPDATE_OPT_ATTR_ERR 9
682#define BGP_NOTIFY_UPDATE_INVAL_NETWORK 10
683#define BGP_NOTIFY_UPDATE_MAL_AS_PATH 11
684#define BGP_NOTIFY_UPDATE_MAX 12
685
Dmitrij Tejblum4b4e07d2011-09-21 23:13:22 +0400686/* BGP_NOTIFY_CEASE sub codes (RFC 4486). */
paul718e3742002-12-13 20:15:29 +0000687#define BGP_NOTIFY_CEASE_MAX_PREFIX 1
688#define BGP_NOTIFY_CEASE_ADMIN_SHUTDOWN 2
689#define BGP_NOTIFY_CEASE_PEER_UNCONFIG 3
690#define BGP_NOTIFY_CEASE_ADMIN_RESET 4
691#define BGP_NOTIFY_CEASE_CONNECT_REJECT 5
692#define BGP_NOTIFY_CEASE_CONFIG_CHANGE 6
paul545acaf2004-04-20 15:13:15 +0000693#define BGP_NOTIFY_CEASE_COLLISION_RESOLUTION 7
694#define BGP_NOTIFY_CEASE_OUT_OF_RESOURCE 8
695#define BGP_NOTIFY_CEASE_MAX 9
paul718e3742002-12-13 20:15:29 +0000696
697/* BGP_NOTIFY_CAPABILITY_ERR sub codes (draft-ietf-idr-dynamic-cap-02). */
698#define BGP_NOTIFY_CAPABILITY_INVALID_ACTION 1
699#define BGP_NOTIFY_CAPABILITY_INVALID_LENGTH 2
700#define BGP_NOTIFY_CAPABILITY_MALFORMED_CODE 3
701#define BGP_NOTIFY_CAPABILITY_MAX 4
702
703/* BGP finite state machine status. */
704#define Idle 1
705#define Connect 2
706#define Active 3
707#define OpenSent 4
708#define OpenConfirm 5
709#define Established 6
Paul Jakmaca058a32006-09-14 02:58:49 +0000710#define Clearing 7
711#define Deleted 8
712#define BGP_STATUS_MAX 9
paul718e3742002-12-13 20:15:29 +0000713
714/* BGP finite state machine events. */
715#define BGP_Start 1
716#define BGP_Stop 2
717#define TCP_connection_open 3
718#define TCP_connection_closed 4
719#define TCP_connection_open_failed 5
720#define TCP_fatal_error 6
721#define ConnectRetry_timer_expired 7
722#define Hold_Timer_expired 8
723#define KeepAlive_timer_expired 9
724#define Receive_OPEN_message 10
725#define Receive_KEEPALIVE_message 11
726#define Receive_UPDATE_message 12
727#define Receive_NOTIFICATION_message 13
Paul Jakmaca058a32006-09-14 02:58:49 +0000728#define Clearing_Completed 14
729#define BGP_EVENTS_MAX 15
paul718e3742002-12-13 20:15:29 +0000730
731/* BGP timers default value. */
732#define BGP_INIT_START_TIMER 5
733#define BGP_ERROR_START_TIMER 30
734#define BGP_DEFAULT_HOLDTIME 180
735#define BGP_DEFAULT_KEEPALIVE 60
736#define BGP_DEFAULT_ASORIGINATE 15
737#define BGP_DEFAULT_EBGP_ROUTEADV 30
738#define BGP_DEFAULT_IBGP_ROUTEADV 5
739#define BGP_CLEAR_CONNECT_RETRY 20
740#define BGP_DEFAULT_CONNECT_RETRY 120
741
742/* BGP default local preference. */
743#define BGP_DEFAULT_LOCAL_PREF 100
744
hasso538621f2004-05-21 09:31:30 +0000745/* BGP graceful restart */
746#define BGP_DEFAULT_RESTART_TIME 120
747#define BGP_DEFAULT_STALEPATH_TIME 360
748
Denis Ovsienko42e6d742011-07-14 12:36:19 +0400749/* RFC4364 */
750#define SAFI_MPLS_LABELED_VPN 128
paul718e3742002-12-13 20:15:29 +0000751
752/* Max TTL value. */
753#define TTL_MAX 255
754
755/* BGP uptime string length. */
756#define BGP_UPTIME_LEN 25
757
758/* Default configuration settings for bgpd. */
759#define BGP_VTY_PORT 2605
paul718e3742002-12-13 20:15:29 +0000760#define BGP_DEFAULT_CONFIG "bgpd.conf"
761
762/* Check AS path loop when we send NLRI. */
763/* #define BGP_SEND_ASPATH_CHECK */
764
paul718e3742002-12-13 20:15:29 +0000765/* Flag for peer_clear_soft(). */
766enum bgp_clear_type
767{
768 BGP_CLEAR_SOFT_NONE,
769 BGP_CLEAR_SOFT_OUT,
770 BGP_CLEAR_SOFT_IN,
771 BGP_CLEAR_SOFT_BOTH,
paulfee0f4c2004-09-13 05:12:46 +0000772 BGP_CLEAR_SOFT_IN_ORF_PREFIX,
773 BGP_CLEAR_SOFT_RSCLIENT
paul718e3742002-12-13 20:15:29 +0000774};
775
776/* Macros. */
777#define BGP_INPUT(P) ((P)->ibuf)
778#define BGP_INPUT_PNT(P) (STREAM_PNT(BGP_INPUT(P)))
779
paul718e3742002-12-13 20:15:29 +0000780/* Count prefix size from mask length */
781#define PSIZE(a) (((a) + 7) / (8))
782
783/* BGP error codes. */
784#define BGP_SUCCESS 0
785#define BGP_ERR_INVALID_VALUE -1
786#define BGP_ERR_INVALID_FLAG -2
787#define BGP_ERR_INVALID_AS -3
788#define BGP_ERR_INVALID_BGP -4
789#define BGP_ERR_PEER_GROUP_MEMBER -5
790#define BGP_ERR_MULTIPLE_INSTANCE_USED -6
791#define BGP_ERR_PEER_GROUP_MEMBER_EXISTS -7
792#define BGP_ERR_PEER_BELONGS_TO_GROUP -8
793#define BGP_ERR_PEER_GROUP_AF_UNCONFIGURED -9
794#define BGP_ERR_PEER_GROUP_NO_REMOTE_AS -10
795#define BGP_ERR_PEER_GROUP_CANT_CHANGE -11
796#define BGP_ERR_PEER_GROUP_MISMATCH -12
797#define BGP_ERR_PEER_GROUP_PEER_TYPE_DIFFERENT -13
798#define BGP_ERR_MULTIPLE_INSTANCE_NOT_SET -14
799#define BGP_ERR_AS_MISMATCH -15
800#define BGP_ERR_PEER_INACTIVE -16
801#define BGP_ERR_INVALID_FOR_PEER_GROUP_MEMBER -17
802#define BGP_ERR_PEER_GROUP_HAS_THE_FLAG -18
803#define BGP_ERR_PEER_FLAG_CONFLICT -19
804#define BGP_ERR_PEER_GROUP_SHUTDOWN -20
805#define BGP_ERR_PEER_FILTER_CONFLICT -21
806#define BGP_ERR_NOT_INTERNAL_PEER -22
807#define BGP_ERR_REMOVE_PRIVATE_AS -23
808#define BGP_ERR_AF_UNCONFIGURED -24
809#define BGP_ERR_SOFT_RECONFIG_UNCONFIGURED -25
810#define BGP_ERR_INSTANCE_MISMATCH -26
811#define BGP_ERR_LOCAL_AS_ALLOWED_ONLY_FOR_EBGP -27
812#define BGP_ERR_CANNOT_HAVE_LOCAL_AS_SAME_AS -28
Paul Jakma0df7c912008-07-21 21:02:49 +0000813#define BGP_ERR_TCPSIG_FAILED -29
Nick Hilliardfa411a22011-03-23 15:33:17 +0000814#define BGP_ERR_NO_EBGP_MULTIHOP_WITH_TTLHACK -30
Stephen Hemmingerf5a48272011-03-24 17:30:21 +0000815#define BGP_ERR_NO_IBGP_WITH_TTLHACK -31
816#define BGP_ERR_MAX -32
paul718e3742002-12-13 20:15:29 +0000817
818extern struct bgp_master *bm;
819
820extern struct thread_master *master;
821
822/* Prototypes. */
paul94f2b392005-06-28 12:44:16 +0000823extern void bgp_terminate (void);
824extern void bgp_reset (void);
Stephen Hemminger65957882010-01-15 16:22:10 +0300825extern time_t bgp_clock (void);
paul94f2b392005-06-28 12:44:16 +0000826extern void bgp_zclient_reset (void);
827extern int bgp_nexthop_set (union sockunion *, union sockunion *,
paul718e3742002-12-13 20:15:29 +0000828 struct bgp_nexthop *, struct peer *);
paul94f2b392005-06-28 12:44:16 +0000829extern struct bgp *bgp_get_default (void);
830extern struct bgp *bgp_lookup (as_t, const char *);
831extern struct bgp *bgp_lookup_by_name (const char *);
832extern struct peer *peer_lookup (struct bgp *, union sockunion *);
833extern struct peer_group *peer_group_lookup (struct bgp *, const char *);
834extern struct peer_group *peer_group_get (struct bgp *, const char *);
835extern struct peer *peer_lookup_with_open (union sockunion *, as_t, struct in_addr *,
paul718e3742002-12-13 20:15:29 +0000836 int *);
paul200df112005-06-01 11:17:05 +0000837extern struct peer *peer_lock (struct peer *);
838extern struct peer *peer_unlock (struct peer *);
Jorge Boncompte [DTI2]6d85b152012-05-07 16:52:54 +0000839extern bgp_peer_sort_t peer_sort (struct peer *peer);
paul94f2b392005-06-28 12:44:16 +0000840extern int peer_active (struct peer *);
841extern int peer_active_nego (struct peer *);
842extern struct peer *peer_create_accept (struct bgp *);
843extern char *peer_uptime (time_t, char *, size_t);
844extern int bgp_config_write (struct vty *);
845extern void bgp_config_write_family_header (struct vty *, afi_t, safi_t, int *);
paul718e3742002-12-13 20:15:29 +0000846
paul94f2b392005-06-28 12:44:16 +0000847extern void bgp_master_init (void);
paul718e3742002-12-13 20:15:29 +0000848
paul94f2b392005-06-28 12:44:16 +0000849extern void bgp_init (void);
850extern void bgp_route_map_init (void);
paul718e3742002-12-13 20:15:29 +0000851
paul94f2b392005-06-28 12:44:16 +0000852extern int bgp_option_set (int);
853extern int bgp_option_unset (int);
854extern int bgp_option_check (int);
paul718e3742002-12-13 20:15:29 +0000855
paul94f2b392005-06-28 12:44:16 +0000856extern int bgp_get (struct bgp **, as_t *, const char *);
857extern int bgp_delete (struct bgp *);
paul718e3742002-12-13 20:15:29 +0000858
paul94f2b392005-06-28 12:44:16 +0000859extern int bgp_flag_set (struct bgp *, int);
860extern int bgp_flag_unset (struct bgp *, int);
861extern int bgp_flag_check (struct bgp *, int);
paul718e3742002-12-13 20:15:29 +0000862
Stephen Hemminger0088b5d2009-05-21 08:51:03 -0700863extern void bgp_lock (struct bgp *);
864extern void bgp_unlock (struct bgp *);
865
paul94f2b392005-06-28 12:44:16 +0000866extern int bgp_router_id_set (struct bgp *, struct in_addr *);
paul718e3742002-12-13 20:15:29 +0000867
paul94f2b392005-06-28 12:44:16 +0000868extern int bgp_cluster_id_set (struct bgp *, struct in_addr *);
869extern int bgp_cluster_id_unset (struct bgp *);
paul718e3742002-12-13 20:15:29 +0000870
paul94f2b392005-06-28 12:44:16 +0000871extern int bgp_confederation_id_set (struct bgp *, as_t);
872extern int bgp_confederation_id_unset (struct bgp *);
873extern int bgp_confederation_peers_check (struct bgp *, as_t);
paul718e3742002-12-13 20:15:29 +0000874
paul94f2b392005-06-28 12:44:16 +0000875extern int bgp_confederation_peers_add (struct bgp *, as_t);
876extern int bgp_confederation_peers_remove (struct bgp *, as_t);
paul718e3742002-12-13 20:15:29 +0000877
paul94f2b392005-06-28 12:44:16 +0000878extern int bgp_timers_set (struct bgp *, u_int32_t, u_int32_t);
879extern int bgp_timers_unset (struct bgp *);
paul718e3742002-12-13 20:15:29 +0000880
paul94f2b392005-06-28 12:44:16 +0000881extern int bgp_default_local_preference_set (struct bgp *, u_int32_t);
882extern int bgp_default_local_preference_unset (struct bgp *);
paul718e3742002-12-13 20:15:29 +0000883
paul94f2b392005-06-28 12:44:16 +0000884extern int peer_rsclient_active (struct peer *);
paulfee0f4c2004-09-13 05:12:46 +0000885
paul94f2b392005-06-28 12:44:16 +0000886extern int peer_remote_as (struct bgp *, union sockunion *, as_t *, afi_t, safi_t);
887extern int peer_group_remote_as (struct bgp *, const char *, as_t *);
888extern int peer_delete (struct peer *peer);
889extern int peer_group_delete (struct peer_group *);
890extern int peer_group_remote_as_delete (struct peer_group *);
paul718e3742002-12-13 20:15:29 +0000891
paul94f2b392005-06-28 12:44:16 +0000892extern int peer_activate (struct peer *, afi_t, safi_t);
893extern int peer_deactivate (struct peer *, afi_t, safi_t);
paul718e3742002-12-13 20:15:29 +0000894
paul94f2b392005-06-28 12:44:16 +0000895extern int peer_group_bind (struct bgp *, union sockunion *, struct peer_group *,
paul718e3742002-12-13 20:15:29 +0000896 afi_t, safi_t, as_t *);
paul94f2b392005-06-28 12:44:16 +0000897extern int peer_group_unbind (struct bgp *, struct peer *, struct peer_group *,
paul718e3742002-12-13 20:15:29 +0000898 afi_t, safi_t);
899
paul94f2b392005-06-28 12:44:16 +0000900extern int peer_flag_set (struct peer *, u_int32_t);
901extern int peer_flag_unset (struct peer *, u_int32_t);
paul718e3742002-12-13 20:15:29 +0000902
paul94f2b392005-06-28 12:44:16 +0000903extern int peer_af_flag_set (struct peer *, afi_t, safi_t, u_int32_t);
904extern int peer_af_flag_unset (struct peer *, afi_t, safi_t, u_int32_t);
905extern int peer_af_flag_check (struct peer *, afi_t, safi_t, u_int32_t);
paul718e3742002-12-13 20:15:29 +0000906
paul94f2b392005-06-28 12:44:16 +0000907extern int peer_ebgp_multihop_set (struct peer *, int);
908extern int peer_ebgp_multihop_unset (struct peer *);
paul718e3742002-12-13 20:15:29 +0000909
paul94f2b392005-06-28 12:44:16 +0000910extern int peer_description_set (struct peer *, char *);
911extern int peer_description_unset (struct peer *);
paul718e3742002-12-13 20:15:29 +0000912
paul94f2b392005-06-28 12:44:16 +0000913extern int peer_update_source_if_set (struct peer *, const char *);
914extern int peer_update_source_addr_set (struct peer *, union sockunion *);
915extern int peer_update_source_unset (struct peer *);
paul718e3742002-12-13 20:15:29 +0000916
paul94f2b392005-06-28 12:44:16 +0000917extern int peer_default_originate_set (struct peer *, afi_t, safi_t, const char *);
918extern int peer_default_originate_unset (struct peer *, afi_t, safi_t);
paul718e3742002-12-13 20:15:29 +0000919
paul94f2b392005-06-28 12:44:16 +0000920extern int peer_port_set (struct peer *, u_int16_t);
921extern int peer_port_unset (struct peer *);
paul718e3742002-12-13 20:15:29 +0000922
paul94f2b392005-06-28 12:44:16 +0000923extern int peer_weight_set (struct peer *, u_int16_t);
924extern int peer_weight_unset (struct peer *);
paul718e3742002-12-13 20:15:29 +0000925
paul94f2b392005-06-28 12:44:16 +0000926extern int peer_timers_set (struct peer *, u_int32_t, u_int32_t);
927extern int peer_timers_unset (struct peer *);
paul718e3742002-12-13 20:15:29 +0000928
paul94f2b392005-06-28 12:44:16 +0000929extern int peer_timers_connect_set (struct peer *, u_int32_t);
930extern int peer_timers_connect_unset (struct peer *);
paul718e3742002-12-13 20:15:29 +0000931
paul94f2b392005-06-28 12:44:16 +0000932extern int peer_advertise_interval_set (struct peer *, u_int32_t);
933extern int peer_advertise_interval_unset (struct peer *);
paul718e3742002-12-13 20:15:29 +0000934
paul94f2b392005-06-28 12:44:16 +0000935extern int peer_interface_set (struct peer *, const char *);
936extern int peer_interface_unset (struct peer *);
paul718e3742002-12-13 20:15:29 +0000937
paul94f2b392005-06-28 12:44:16 +0000938extern int peer_distribute_set (struct peer *, afi_t, safi_t, int, const char *);
939extern int peer_distribute_unset (struct peer *, afi_t, safi_t, int);
paul718e3742002-12-13 20:15:29 +0000940
paul94f2b392005-06-28 12:44:16 +0000941extern int peer_allowas_in_set (struct peer *, afi_t, safi_t, int);
942extern int peer_allowas_in_unset (struct peer *, afi_t, safi_t);
paul718e3742002-12-13 20:15:29 +0000943
paul94f2b392005-06-28 12:44:16 +0000944extern int peer_local_as_set (struct peer *, as_t, int);
945extern int peer_local_as_unset (struct peer *);
paul718e3742002-12-13 20:15:29 +0000946
paul94f2b392005-06-28 12:44:16 +0000947extern int peer_prefix_list_set (struct peer *, afi_t, safi_t, int, const char *);
948extern int peer_prefix_list_unset (struct peer *, afi_t, safi_t, int);
paul718e3742002-12-13 20:15:29 +0000949
paul94f2b392005-06-28 12:44:16 +0000950extern int peer_aslist_set (struct peer *, afi_t, safi_t, int, const char *);
951extern int peer_aslist_unset (struct peer *,afi_t, safi_t, int);
paul718e3742002-12-13 20:15:29 +0000952
paul94f2b392005-06-28 12:44:16 +0000953extern int peer_route_map_set (struct peer *, afi_t, safi_t, int, const char *);
954extern int peer_route_map_unset (struct peer *, afi_t, safi_t, int);
paul718e3742002-12-13 20:15:29 +0000955
paul94f2b392005-06-28 12:44:16 +0000956extern int peer_unsuppress_map_set (struct peer *, afi_t, safi_t, const char *);
Paul Jakma0df7c912008-07-21 21:02:49 +0000957
958extern int peer_password_set (struct peer *, const char *);
959extern int peer_password_unset (struct peer *);
960
paul94f2b392005-06-28 12:44:16 +0000961extern int peer_unsuppress_map_unset (struct peer *, afi_t, safi_t);
paul718e3742002-12-13 20:15:29 +0000962
paul94f2b392005-06-28 12:44:16 +0000963extern int peer_maximum_prefix_set (struct peer *, afi_t, safi_t, u_int32_t, u_char, int, u_int16_t);
964extern int peer_maximum_prefix_unset (struct peer *, afi_t, safi_t);
paul718e3742002-12-13 20:15:29 +0000965
paul94f2b392005-06-28 12:44:16 +0000966extern int peer_clear (struct peer *);
967extern int peer_clear_soft (struct peer *, afi_t, safi_t, enum bgp_clear_type);
hasso93406d82005-02-02 14:40:33 +0000968
Nick Hilliardfa411a22011-03-23 15:33:17 +0000969extern int peer_ttl_security_hops_set (struct peer *, int);
970extern int peer_ttl_security_hops_unset (struct peer *);
971
paul00d252c2005-05-23 14:19:54 +0000972#endif /* _QUAGGA_BGPD_H */