blob: 7fa7f20ba04befb7b716c8cf6ce28bdc12574b62 [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
34#define BGP_AS_MAX 65535U
paul718e3742002-12-13 20:15:29 +000035
paulfe69a502005-09-10 16:55:02 +000036/* AS_PATH segment data in abstracted form, no limit is placed on length */
37struct assegment
38{
39 struct assegment *next;
40 as_t *as;
41 u_short length;
42 u_char type;
43};
44
paul718e3742002-12-13 20:15:29 +000045/* AS path may be include some AsSegments. */
46struct aspath
47{
48 /* Reference count to this aspath. */
49 unsigned long refcnt;
50
paulfe69a502005-09-10 16:55:02 +000051 /* segment data */
52 struct assegment *segments;
hasso68118452005-04-08 15:40:36 +000053
paul718e3742002-12-13 20:15:29 +000054 /* String expression of AS path. This string is used by vty output
55 and AS path regular expression match. */
56 char *str;
57};
58
59#define ASPATH_STR_DEFAULT_LEN 32
60
61/* Prototypes. */
paul94f2b392005-06-28 12:44:16 +000062extern void aspath_init (void);
paul8fdc32a2006-01-16 12:01:29 +000063extern void aspath_finish (void);
paulfe69a502005-09-10 16:55:02 +000064extern struct aspath *aspath_parse (struct stream *, size_t);
paul94f2b392005-06-28 12:44:16 +000065extern struct aspath *aspath_dup (struct aspath *);
66extern struct aspath *aspath_aggregate (struct aspath *, struct aspath *);
67extern struct aspath *aspath_prepend (struct aspath *, struct aspath *);
68extern struct aspath *aspath_add_seq (struct aspath *, as_t);
69extern struct aspath *aspath_add_confed_seq (struct aspath *, as_t);
70extern int aspath_cmp_left (struct aspath *, struct aspath *);
71extern int aspath_cmp_left_confed (struct aspath *, struct aspath *);
72extern struct aspath *aspath_delete_confed_seq (struct aspath *);
73extern struct aspath *aspath_empty (void);
74extern struct aspath *aspath_empty_get (void);
75extern struct aspath *aspath_str2aspath (const char *);
76extern void aspath_free (struct aspath *);
77extern struct aspath *aspath_intern (struct aspath *);
78extern void aspath_unintern (struct aspath *);
79extern const char *aspath_print (struct aspath *);
80extern void aspath_print_vty (struct vty *, struct aspath *);
81extern void aspath_print_all_vty (struct vty *);
82extern unsigned int aspath_key_make (struct aspath *);
83extern int aspath_loop_check (struct aspath *, as_t);
84extern int aspath_private_as_check (struct aspath *);
85extern int aspath_firstas_check (struct aspath *, as_t);
86extern unsigned long aspath_count (void);
paulfe69a502005-09-10 16:55:02 +000087extern unsigned int aspath_count_hops (struct aspath *);
88extern unsigned int aspath_count_confeds (struct aspath *);
89extern unsigned int aspath_size (struct aspath *);
90extern void aspath_put (struct stream *, struct aspath *);
91
92/* For SNMP BGP4PATHATTRASPATHSEGMENT, might be useful for debug */
93extern u_char *aspath_snmp_pathseg (struct aspath *, size_t *);
paul00d252c2005-05-23 14:19:54 +000094
95#endif /* _QUAGGA_BGP_ASPATH_H */