]> git.proxmox.com Git - mirror_frr.git/blame - bgpd/bgp_aspath.h
bgpd: bgpd-warnings.patch
[mirror_frr.git] / bgpd / bgp_aspath.h
CommitLineData
718e3744 1/* 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
00d252cb 21#ifndef _QUAGGA_BGP_ASPATH_H
22#define _QUAGGA_BGP_ASPATH_H
23
718e3744 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. */
fd79ac91 31#define BGP_PRIVATE_AS_MIN 64512U
32#define BGP_PRIVATE_AS_MAX 65535U
33
2e8142b2
DS
34/* Private 4 byte AS range defined in RFC6996. */
35#define BGP_PRIVATE_AS4_MIN 4200000000U
36#define BGP_PRIVATE_AS4_MAX 4294967294U
37
0b2aa3a0
PJ
38/* 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
718e3744 43
5000f21c
DS
44#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
fe69a505 48/* 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
718e3744 57/* AS path may be include some AsSegments. */
58struct aspath
59{
60 /* Reference count to this aspath. */
61 unsigned long refcnt;
62
fe69a505 63 /* segment data */
64 struct assegment *segments;
6811845b 65
718e3744 66 /* String expression of AS path. This string is used by vty output
67 and AS path regular expression match. */
68 char *str;
f669f7d2 69 unsigned short str_len;
718e3744 70};
71
72#define ASPATH_STR_DEFAULT_LEN 32
73
74/* Prototypes. */
94f2b392 75extern void aspath_init (void);
8fdc32ab 76extern void aspath_finish (void);
ab005298 77extern struct aspath *aspath_parse (struct stream *, size_t, int);
94f2b392 78extern struct aspath *aspath_dup (struct aspath *);
79extern struct aspath *aspath_aggregate (struct aspath *, struct aspath *);
80extern struct aspath *aspath_prepend (struct aspath *, struct aspath *);
841f7a57 81extern struct aspath *aspath_filter_exclude (struct aspath *, struct aspath *);
94f2b392 82extern struct aspath *aspath_add_seq (struct aspath *, as_t);
83extern struct aspath *aspath_add_confed_seq (struct aspath *, as_t);
96450faf 84extern int aspath_cmp (const void *, const void *);
ffe11cfb
SH
85extern int aspath_cmp_left (const struct aspath *, const struct aspath *);
86extern int aspath_cmp_left_confed (const struct aspath *, const struct aspath *);
94f2b392 87extern struct aspath *aspath_delete_confed_seq (struct aspath *);
88extern struct aspath *aspath_empty (void);
89extern struct aspath *aspath_empty_get (void);
90extern struct aspath *aspath_str2aspath (const char *);
91extern void aspath_free (struct aspath *);
92extern struct aspath *aspath_intern (struct aspath *);
f6f434b2 93extern void aspath_unintern (struct aspath **);
94f2b392 94extern const char *aspath_print (struct aspath *);
841f7a57 95extern void aspath_print_vty (struct vty *, const char *, struct aspath *, const char *);
94f2b392 96extern void aspath_print_all_vty (struct vty *);
923de654 97extern unsigned int aspath_key_make (void *);
94f2b392 98extern int aspath_loop_check (struct aspath *, as_t);
99extern int aspath_private_as_check (struct aspath *);
c7122e14
DS
100extern int aspath_single_asn_check (struct aspath *, as_t asn);
101extern struct aspath *aspath_replace_specific_asn (struct aspath *aspath, as_t target_asn, as_t our_asn);
5000f21c
DS
102extern struct aspath *aspath_replace_private_asns(struct aspath *aspath, as_t asn);
103extern struct aspath *aspath_remove_private_asns (struct aspath *aspath);
94f2b392 104extern int aspath_firstas_check (struct aspath *, as_t);
ca87e1d3
VT
105extern int aspath_confed_check (struct aspath *);
106extern int aspath_left_confed_check (struct aspath *);
94f2b392 107extern unsigned long aspath_count (void);
ffd0c037 108extern unsigned int aspath_count_hops (const struct aspath *);
fe69a505 109extern unsigned int aspath_count_confeds (struct aspath *);
110extern unsigned int aspath_size (struct aspath *);
2815e61f 111extern as_t aspath_highest (struct aspath *);
0b2aa3a0
PJ
112extern size_t aspath_put (struct stream *, struct aspath *, int);
113
114extern struct aspath *aspath_reconcile_as4 (struct aspath *, struct aspath *);
115extern unsigned int aspath_has_as4 (struct aspath *);
fe69a505 116
117/* For SNMP BGP4PATHATTRASPATHSEGMENT, might be useful for debug */
118extern u_char *aspath_snmp_pathseg (struct aspath *, size_t *);
00d252cb 119
120#endif /* _QUAGGA_BGP_ASPATH_H */