]> git.proxmox.com Git - mirror_frr.git/blame - bgpd/bgp_aspath.h
Merge pull request #3448 from chiragshah6/evpn_dev1
[mirror_frr.git] / bgpd / bgp_aspath.h
CommitLineData
718e3744 1/* AS path related definitions.
896014f4
DL
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 along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
718e3744 20
00d252cb 21#ifndef _QUAGGA_BGP_ASPATH_H
22#define _QUAGGA_BGP_ASPATH_H
23
f1aa5d8a
DS
24#include "lib/json.h"
25
718e3744 26/* AS path segment type. */
27#define AS_SET 1
28#define AS_SEQUENCE 2
29#define AS_CONFED_SEQUENCE 3
30#define AS_CONFED_SET 4
31
32/* Private AS range defined in RFC2270. */
fd79ac91 33#define BGP_PRIVATE_AS_MIN 64512U
34#define BGP_PRIVATE_AS_MAX 65535U
35
2e8142b2
DS
36/* Private 4 byte AS range defined in RFC6996. */
37#define BGP_PRIVATE_AS4_MIN 4200000000U
38#define BGP_PRIVATE_AS4_MAX 4294967294U
39
0b2aa3a0
PJ
40/* we leave BGP_AS_MAX as the 16bit AS MAX number. */
41#define BGP_AS_MAX 65535U
42#define BGP_AS4_MAX 4294967295U
43/* Transition 16Bit AS as defined by IANA */
44#define BGP_AS_TRANS 23456U
718e3744 45
d62a17ae 46#define BGP_AS_IS_PRIVATE(ASN) \
47 (((ASN) >= BGP_PRIVATE_AS_MIN && (ASN) <= BGP_PRIVATE_AS_MAX) \
48 || ((ASN) >= BGP_PRIVATE_AS4_MIN && (ASN) <= BGP_PRIVATE_AS4_MAX))
5000f21c 49
fe69a505 50/* AS_PATH segment data in abstracted form, no limit is placed on length */
d62a17ae 51struct assegment {
52 struct assegment *next;
53 as_t *as;
d7c0a89a
QY
54 unsigned short length;
55 uint8_t type;
fe69a505 56};
57
718e3744 58/* AS path may be include some AsSegments. */
d62a17ae 59struct aspath {
60 /* Reference count to this aspath. */
61 unsigned long refcnt;
62
63 /* segment data */
64 struct assegment *segments;
65
66 /* AS path as a json object */
67 json_object *json;
68
69 /* String expression of AS path. This string is used by vty output
70 and AS path regular expression match. */
71 char *str;
72 unsigned short str_len;
718e3744 73};
74
75#define ASPATH_STR_DEFAULT_LEN 32
76
77/* Prototypes. */
d62a17ae 78extern void aspath_init(void);
79extern void aspath_finish(void);
80extern struct aspath *aspath_parse(struct stream *, size_t, int);
81extern struct aspath *aspath_dup(struct aspath *);
82extern struct aspath *aspath_aggregate(struct aspath *, struct aspath *);
83extern struct aspath *aspath_prepend(struct aspath *, struct aspath *);
84extern struct aspath *aspath_filter_exclude(struct aspath *, struct aspath *);
85extern struct aspath *aspath_add_seq_n(struct aspath *, as_t, unsigned);
86extern struct aspath *aspath_add_seq(struct aspath *, as_t);
87extern struct aspath *aspath_add_confed_seq(struct aspath *, as_t);
74df8d6d 88extern bool aspath_cmp(const void *as1, const void *as2);
d62a17ae 89extern int aspath_cmp_left(const struct aspath *, const struct aspath *);
74df8d6d
DS
90extern bool aspath_cmp_left_confed(const struct aspath *as1,
91 const struct aspath *as2xs);
d62a17ae 92extern struct aspath *aspath_delete_confed_seq(struct aspath *);
93extern struct aspath *aspath_empty(void);
94extern struct aspath *aspath_empty_get(void);
95extern struct aspath *aspath_str2aspath(const char *);
68e1a55b 96extern void aspath_str_update(struct aspath *as, bool make_json);
d62a17ae 97extern void aspath_free(struct aspath *);
98extern struct aspath *aspath_intern(struct aspath *);
99extern void aspath_unintern(struct aspath **);
100extern const char *aspath_print(struct aspath *);
101extern void aspath_print_vty(struct vty *, const char *, struct aspath *,
102 const char *);
103extern void aspath_print_all_vty(struct vty *);
104extern unsigned int aspath_key_make(void *);
105extern unsigned int aspath_get_first_as(struct aspath *);
106extern unsigned int aspath_get_last_as(struct aspath *);
107extern int aspath_loop_check(struct aspath *, as_t);
108extern int aspath_private_as_check(struct aspath *);
109extern int aspath_single_asn_check(struct aspath *, as_t asn);
110extern struct aspath *aspath_replace_specific_asn(struct aspath *aspath,
111 as_t target_asn,
112 as_t our_asn);
113extern struct aspath *aspath_replace_private_asns(struct aspath *aspath,
114 as_t asn);
115extern struct aspath *aspath_remove_private_asns(struct aspath *aspath);
116extern int aspath_firstas_check(struct aspath *, as_t);
117extern int aspath_confed_check(struct aspath *);
118extern int aspath_left_confed_check(struct aspath *);
119extern unsigned long aspath_count(void);
120extern unsigned int aspath_count_hops(const struct aspath *);
121extern unsigned int aspath_count_confeds(struct aspath *);
122extern unsigned int aspath_size(struct aspath *);
123extern as_t aspath_highest(struct aspath *);
124extern as_t aspath_leftmost(struct aspath *);
125extern size_t aspath_put(struct stream *, struct aspath *, int);
126
127extern struct aspath *aspath_reconcile_as4(struct aspath *, struct aspath *);
128extern unsigned int aspath_has_as4(struct aspath *);
fe69a505 129
130/* For SNMP BGP4PATHATTRASPATHSEGMENT, might be useful for debug */
d7c0a89a 131extern uint8_t *aspath_snmp_pathseg(struct aspath *, size_t *);
00d252cb 132
133#endif /* _QUAGGA_BGP_ASPATH_H */