paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* AS path related definitions. |
| 2 | Copyright (C) 1997, 98, 99 Kunihiro Ishiguro |
| 3 | |
| 4 | This file is part of GNU Zebra. |
| 5 | |
| 6 | GNU Zebra is free software; you can redistribute it and/or modify it |
| 7 | under the terms of the GNU General Public License as published by the |
| 8 | Free Software Foundation; either version 2, or (at your option) any |
| 9 | later version. |
| 10 | |
| 11 | GNU Zebra is distributed in the hope that it will be useful, but |
| 12 | WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | General Public License for more details. |
| 15 | |
| 16 | You should have received a copy of the GNU General Public License |
| 17 | along with GNU Zebra; see the file COPYING. If not, write to the Free |
| 18 | Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
| 19 | 02111-1307, USA. */ |
| 20 | |
paul | 00d252c | 2005-05-23 14:19:54 +0000 | [diff] [blame] | 21 | #ifndef _QUAGGA_BGP_ASPATH_H |
| 22 | #define _QUAGGA_BGP_ASPATH_H |
| 23 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 24 | /* 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. */ |
paul | fd79ac9 | 2004-10-13 05:06:08 +0000 | [diff] [blame] | 31 | #define BGP_PRIVATE_AS_MIN 64512U |
| 32 | #define BGP_PRIVATE_AS_MAX 65535U |
| 33 | |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 34 | /* we leave BGP_AS_MAX as the 16bit AS MAX number. */ |
| 35 | #define BGP_AS_MAX 65535U |
| 36 | #define BGP_AS4_MAX 4294967295U |
| 37 | /* Transition 16Bit AS as defined by IANA */ |
| 38 | #define BGP_AS_TRANS 23456U |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 39 | |
paul | fe69a50 | 2005-09-10 16:55:02 +0000 | [diff] [blame] | 40 | /* AS_PATH segment data in abstracted form, no limit is placed on length */ |
| 41 | struct assegment |
| 42 | { |
| 43 | struct assegment *next; |
| 44 | as_t *as; |
| 45 | u_short length; |
| 46 | u_char type; |
| 47 | }; |
| 48 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 49 | /* AS path may be include some AsSegments. */ |
| 50 | struct aspath |
| 51 | { |
| 52 | /* Reference count to this aspath. */ |
| 53 | unsigned long refcnt; |
| 54 | |
paul | fe69a50 | 2005-09-10 16:55:02 +0000 | [diff] [blame] | 55 | /* segment data */ |
| 56 | struct assegment *segments; |
hasso | 6811845 | 2005-04-08 15:40:36 +0000 | [diff] [blame] | 57 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 58 | /* String expression of AS path. This string is used by vty output |
| 59 | and AS path regular expression match. */ |
| 60 | char *str; |
| 61 | }; |
| 62 | |
| 63 | #define ASPATH_STR_DEFAULT_LEN 32 |
| 64 | |
| 65 | /* Prototypes. */ |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 66 | extern void aspath_init (void); |
paul | 8fdc32a | 2006-01-16 12:01:29 +0000 | [diff] [blame] | 67 | extern void aspath_finish (void); |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 68 | extern struct aspath *aspath_parse (struct stream *, size_t, int); |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 69 | extern struct aspath *aspath_dup (struct aspath *); |
| 70 | extern struct aspath *aspath_aggregate (struct aspath *, struct aspath *); |
| 71 | extern struct aspath *aspath_prepend (struct aspath *, struct aspath *); |
Denis Ovsienko | 841f7a5 | 2008-04-10 11:47:45 +0000 | [diff] [blame] | 72 | extern struct aspath *aspath_filter_exclude (struct aspath *, struct aspath *); |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 73 | extern struct aspath *aspath_add_seq (struct aspath *, as_t); |
| 74 | extern struct aspath *aspath_add_confed_seq (struct aspath *, as_t); |
Stephen Hemminger | ffe11cf | 2008-08-14 16:25:25 +0100 | [diff] [blame] | 75 | extern int aspath_cmp_left (const struct aspath *, const struct aspath *); |
| 76 | extern int aspath_cmp_left_confed (const struct aspath *, const struct aspath *); |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 77 | extern struct aspath *aspath_delete_confed_seq (struct aspath *); |
| 78 | extern struct aspath *aspath_empty (void); |
| 79 | extern struct aspath *aspath_empty_get (void); |
| 80 | extern struct aspath *aspath_str2aspath (const char *); |
| 81 | extern void aspath_free (struct aspath *); |
| 82 | extern struct aspath *aspath_intern (struct aspath *); |
| 83 | extern void aspath_unintern (struct aspath *); |
| 84 | extern const char *aspath_print (struct aspath *); |
Denis Ovsienko | 841f7a5 | 2008-04-10 11:47:45 +0000 | [diff] [blame] | 85 | extern void aspath_print_vty (struct vty *, const char *, struct aspath *, const char *); |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 86 | extern void aspath_print_all_vty (struct vty *); |
Paul Jakma | 923de65 | 2007-04-29 18:25:17 +0000 | [diff] [blame] | 87 | extern unsigned int aspath_key_make (void *); |
paul | 94f2b39 | 2005-06-28 12:44:16 +0000 | [diff] [blame] | 88 | extern int aspath_loop_check (struct aspath *, as_t); |
| 89 | extern int aspath_private_as_check (struct aspath *); |
| 90 | extern int aspath_firstas_check (struct aspath *, as_t); |
| 91 | extern unsigned long aspath_count (void); |
paul | fe69a50 | 2005-09-10 16:55:02 +0000 | [diff] [blame] | 92 | extern unsigned int aspath_count_hops (struct aspath *); |
| 93 | extern unsigned int aspath_count_confeds (struct aspath *); |
| 94 | extern unsigned int aspath_size (struct aspath *); |
Paul Jakma | 2815e61 | 2006-09-14 02:56:07 +0000 | [diff] [blame] | 95 | extern as_t aspath_highest (struct aspath *); |
Paul Jakma | 0b2aa3a | 2007-10-14 22:32:21 +0000 | [diff] [blame] | 96 | extern size_t aspath_put (struct stream *, struct aspath *, int); |
| 97 | |
| 98 | extern struct aspath *aspath_reconcile_as4 (struct aspath *, struct aspath *); |
| 99 | extern unsigned int aspath_has_as4 (struct aspath *); |
| 100 | extern unsigned int aspath_count_numas (struct aspath *); |
paul | fe69a50 | 2005-09-10 16:55:02 +0000 | [diff] [blame] | 101 | |
| 102 | /* For SNMP BGP4PATHATTRASPATHSEGMENT, might be useful for debug */ |
| 103 | extern u_char *aspath_snmp_pathseg (struct aspath *, size_t *); |
paul | 00d252c | 2005-05-23 14:19:54 +0000 | [diff] [blame] | 104 | |
| 105 | #endif /* _QUAGGA_BGP_ASPATH_H */ |