blob: aa13daa17906dde1f69ddbdf8b01e1caa24a4da3 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* AS path related definitions.
2 Copyright (C) 1997, 98, 99 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_BGP_ASPATH_H
22#define _QUAGGA_BGP_ASPATH_H
23
paul718e3742002-12-13 20:15:29 +000024/* AS path segment type. */
25#define AS_SET 1
26#define AS_SEQUENCE 2
27#define AS_CONFED_SEQUENCE 3
28#define AS_CONFED_SET 4
29
30/* Private AS range defined in RFC2270. */
paulfd79ac92004-10-13 05:06:08 +000031#define BGP_PRIVATE_AS_MIN 64512U
32#define BGP_PRIVATE_AS_MAX 65535U
33
Vipin Kumardcc21852015-05-19 17:47:20 -070034/* Private 4 byte AS range defined in RFC6996. */
35#define BGP_PRIVATE_AS4_MIN 4200000000U
36#define BGP_PRIVATE_AS4_MAX 4294967294U
37
Paul Jakma0b2aa3a2007-10-14 22:32:21 +000038/* we leave BGP_AS_MAX as the 16bit AS MAX number. */
39#define BGP_AS_MAX 65535U
40#define BGP_AS4_MAX 4294967295U
41/* Transition 16Bit AS as defined by IANA */
42#define BGP_AS_TRANS 23456U
paul718e3742002-12-13 20:15:29 +000043
Daniel Waltond0aa6e82016-06-17 14:45:42 +010044#define BGP_AS_IS_PRIVATE(ASN) \
45 (((ASN) >= BGP_PRIVATE_AS_MIN && (ASN) <= BGP_PRIVATE_AS_MAX) || \
46 ((ASN) >= BGP_PRIVATE_AS4_MIN && (ASN) <= BGP_PRIVATE_AS4_MAX))
47
paulfe69a502005-09-10 16:55:02 +000048/* AS_PATH segment data in abstracted form, no limit is placed on length */
49struct assegment
50{
51 struct assegment *next;
52 as_t *as;
53 u_short length;
54 u_char type;
55};
56
paul718e3742002-12-13 20:15:29 +000057/* AS path may be include some AsSegments. */
58struct aspath
59{
60 /* Reference count to this aspath. */
61 unsigned long refcnt;
62
paulfe69a502005-09-10 16:55:02 +000063 /* segment data */
64 struct assegment *segments;
hasso68118452005-04-08 15:40:36 +000065
paul718e3742002-12-13 20:15:29 +000066 /* String expression of AS path. This string is used by vty output
67 and AS path regular expression match. */
68 char *str;
Jorge Boncompte [DTI2]f669f7d2012-05-07 16:52:51 +000069 unsigned short str_len;
paul718e3742002-12-13 20:15:29 +000070};
71
72#define ASPATH_STR_DEFAULT_LEN 32
73
74/* Prototypes. */
paul94f2b392005-06-28 12:44:16 +000075extern void aspath_init (void);
paul8fdc32a2006-01-16 12:01:29 +000076extern void aspath_finish (void);
Paul Jakmaab005292010-11-27 22:48:34 +000077extern struct aspath *aspath_parse (struct stream *, size_t, int);
paul94f2b392005-06-28 12:44:16 +000078extern struct aspath *aspath_dup (struct aspath *);
79extern struct aspath *aspath_aggregate (struct aspath *, struct aspath *);
Boian Boneva3936d02014-06-25 20:26:44 +030080extern struct aspath *aspath_aggregate_mpath (struct aspath *, struct aspath *);
paul94f2b392005-06-28 12:44:16 +000081extern struct aspath *aspath_prepend (struct aspath *, struct aspath *);
Denis Ovsienko841f7a52008-04-10 11:47:45 +000082extern struct aspath *aspath_filter_exclude (struct aspath *, struct aspath *);
Timo Teräs85c854a2014-09-30 11:31:53 +030083extern struct aspath *aspath_add_seq_n (struct aspath *, as_t, unsigned);
paul94f2b392005-06-28 12:44:16 +000084extern struct aspath *aspath_add_seq (struct aspath *, as_t);
85extern struct aspath *aspath_add_confed_seq (struct aspath *, as_t);
Josh Bailey96450fa2011-07-20 20:45:12 -070086extern int aspath_cmp (const void *, const void *);
Stephen Hemmingerffe11cf2008-08-14 16:25:25 +010087extern int aspath_cmp_left (const struct aspath *, const struct aspath *);
88extern int aspath_cmp_left_confed (const struct aspath *, const struct aspath *);
paul94f2b392005-06-28 12:44:16 +000089extern struct aspath *aspath_delete_confed_seq (struct aspath *);
90extern struct aspath *aspath_empty (void);
91extern struct aspath *aspath_empty_get (void);
92extern struct aspath *aspath_str2aspath (const char *);
93extern void aspath_free (struct aspath *);
94extern struct aspath *aspath_intern (struct aspath *);
Paul Jakmaf6f434b2010-11-23 21:28:03 +000095extern void aspath_unintern (struct aspath **);
paul94f2b392005-06-28 12:44:16 +000096extern const char *aspath_print (struct aspath *);
Denis Ovsienko841f7a52008-04-10 11:47:45 +000097extern void aspath_print_vty (struct vty *, const char *, struct aspath *, const char *);
paul94f2b392005-06-28 12:44:16 +000098extern void aspath_print_all_vty (struct vty *);
Paul Jakma923de652007-04-29 18:25:17 +000099extern unsigned int aspath_key_make (void *);
paul94f2b392005-06-28 12:44:16 +0000100extern int aspath_loop_check (struct aspath *, as_t);
101extern int aspath_private_as_check (struct aspath *);
102extern int aspath_firstas_check (struct aspath *, as_t);
Vasilis Tsiligiannisca87e1d2009-07-20 01:28:35 +0300103extern int aspath_confed_check (struct aspath *);
104extern int aspath_left_confed_check (struct aspath *);
paul94f2b392005-06-28 12:44:16 +0000105extern unsigned long aspath_count (void);
paulfe69a502005-09-10 16:55:02 +0000106extern unsigned int aspath_count_hops (struct aspath *);
107extern unsigned int aspath_count_confeds (struct aspath *);
108extern unsigned int aspath_size (struct aspath *);
Paul Jakma2815e612006-09-14 02:56:07 +0000109extern as_t aspath_highest (struct aspath *);
Timo Teräs85c854a2014-09-30 11:31:53 +0300110extern as_t aspath_leftmost (struct aspath *);
Paul Jakma0b2aa3a2007-10-14 22:32:21 +0000111extern size_t aspath_put (struct stream *, struct aspath *, int);
112
113extern struct aspath *aspath_reconcile_as4 (struct aspath *, struct aspath *);
114extern unsigned int aspath_has_as4 (struct aspath *);
paulfe69a502005-09-10 16:55:02 +0000115
116/* For SNMP BGP4PATHATTRASPATHSEGMENT, might be useful for debug */
117extern u_char *aspath_snmp_pathseg (struct aspath *, size_t *);
paul00d252c2005-05-23 14:19:54 +0000118
119#endif /* _QUAGGA_BGP_ASPATH_H */