]> git.proxmox.com Git - mirror_frr.git/blame - bgpd/bgp_aspath.h
Merge pull request #7636 from AnuradhaKaruppiah/type-0-esi
[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 24#include "lib/json.h"
e00d8008 25#include "bgpd/bgp_route.h"
f1aa5d8a 26
718e3744 27/* AS path segment type. */
28#define AS_SET 1
29#define AS_SEQUENCE 2
30#define AS_CONFED_SEQUENCE 3
31#define AS_CONFED_SET 4
32
33/* Private AS range defined in RFC2270. */
fd79ac91 34#define BGP_PRIVATE_AS_MIN 64512U
35#define BGP_PRIVATE_AS_MAX 65535U
36
2e8142b2
DS
37/* Private 4 byte AS range defined in RFC6996. */
38#define BGP_PRIVATE_AS4_MIN 4200000000U
39#define BGP_PRIVATE_AS4_MAX 4294967294U
40
0b2aa3a0 41/* we leave BGP_AS_MAX as the 16bit AS MAX number. */
33d022bc 42#define BGP_AS_ZERO 0
0b2aa3a0
PJ
43#define BGP_AS_MAX 65535U
44#define BGP_AS4_MAX 4294967295U
45/* Transition 16Bit AS as defined by IANA */
46#define BGP_AS_TRANS 23456U
718e3744 47
d62a17ae 48#define BGP_AS_IS_PRIVATE(ASN) \
49 (((ASN) >= BGP_PRIVATE_AS_MIN && (ASN) <= BGP_PRIVATE_AS_MAX) \
50 || ((ASN) >= BGP_PRIVATE_AS4_MIN && (ASN) <= BGP_PRIVATE_AS4_MAX))
5000f21c 51
fe69a505 52/* AS_PATH segment data in abstracted form, no limit is placed on length */
d62a17ae 53struct assegment {
54 struct assegment *next;
55 as_t *as;
d7c0a89a
QY
56 unsigned short length;
57 uint8_t type;
fe69a505 58};
59
718e3744 60/* AS path may be include some AsSegments. */
d62a17ae 61struct aspath {
62 /* Reference count to this aspath. */
63 unsigned long refcnt;
64
65 /* segment data */
66 struct assegment *segments;
67
68 /* AS path as a json object */
69 json_object *json;
70
71 /* String expression of AS path. This string is used by vty output
72 and AS path regular expression match. */
73 char *str;
74 unsigned short str_len;
718e3744 75};
76
77#define ASPATH_STR_DEFAULT_LEN 32
78
79/* Prototypes. */
d62a17ae 80extern void aspath_init(void);
81extern void aspath_finish(void);
82extern struct aspath *aspath_parse(struct stream *, size_t, int);
83extern struct aspath *aspath_dup(struct aspath *);
84extern struct aspath *aspath_aggregate(struct aspath *, struct aspath *);
85extern struct aspath *aspath_prepend(struct aspath *, struct aspath *);
86extern struct aspath *aspath_filter_exclude(struct aspath *, struct aspath *);
87extern struct aspath *aspath_add_seq_n(struct aspath *, as_t, unsigned);
88extern struct aspath *aspath_add_seq(struct aspath *, as_t);
89extern struct aspath *aspath_add_confed_seq(struct aspath *, as_t);
74df8d6d 90extern bool aspath_cmp(const void *as1, const void *as2);
3967f0a8 91extern bool aspath_cmp_left(const struct aspath *, const struct aspath *);
74df8d6d
DS
92extern bool aspath_cmp_left_confed(const struct aspath *as1,
93 const struct aspath *as2xs);
d62a17ae 94extern struct aspath *aspath_delete_confed_seq(struct aspath *);
95extern struct aspath *aspath_empty(void);
96extern struct aspath *aspath_empty_get(void);
97extern struct aspath *aspath_str2aspath(const char *);
68e1a55b 98extern void aspath_str_update(struct aspath *as, bool make_json);
d62a17ae 99extern void aspath_free(struct aspath *);
100extern struct aspath *aspath_intern(struct aspath *);
101extern void aspath_unintern(struct aspath **);
102extern const char *aspath_print(struct aspath *);
103extern void aspath_print_vty(struct vty *, const char *, struct aspath *,
104 const char *);
105extern void aspath_print_all_vty(struct vty *);
d8b87afe 106extern unsigned int aspath_key_make(const void *);
d62a17ae 107extern unsigned int aspath_get_first_as(struct aspath *);
108extern unsigned int aspath_get_last_as(struct aspath *);
109extern int aspath_loop_check(struct aspath *, as_t);
3967f0a8
DA
110extern bool aspath_private_as_check(struct aspath *);
111extern bool aspath_single_asn_check(struct aspath *, as_t asn);
d62a17ae 112extern struct aspath *aspath_replace_specific_asn(struct aspath *aspath,
113 as_t target_asn,
114 as_t our_asn);
115extern struct aspath *aspath_replace_private_asns(struct aspath *aspath,
bf26b80e
DS
116 as_t asn, as_t peer_asn);
117extern struct aspath *aspath_remove_private_asns(struct aspath *aspath,
118 as_t peer_asn);
3967f0a8
DA
119extern bool aspath_firstas_check(struct aspath *, as_t);
120extern bool aspath_confed_check(struct aspath *);
121extern bool aspath_left_confed_check(struct aspath *);
d62a17ae 122extern unsigned long aspath_count(void);
123extern unsigned int aspath_count_hops(const struct aspath *);
fb29348a 124extern bool aspath_check_as_sets(struct aspath *aspath);
33d022bc 125extern bool aspath_check_as_zero(struct aspath *aspath);
d62a17ae 126extern unsigned int aspath_count_confeds(struct aspath *);
127extern unsigned int aspath_size(struct aspath *);
128extern as_t aspath_highest(struct aspath *);
129extern as_t aspath_leftmost(struct aspath *);
130extern size_t aspath_put(struct stream *, struct aspath *, int);
131
132extern struct aspath *aspath_reconcile_as4(struct aspath *, struct aspath *);
3967f0a8 133extern bool aspath_has_as4(struct aspath *);
fe69a505 134
135/* For SNMP BGP4PATHATTRASPATHSEGMENT, might be useful for debug */
d7c0a89a 136extern uint8_t *aspath_snmp_pathseg(struct aspath *, size_t *);
00d252cb 137
e00d8008
NT
138extern void bgp_compute_aggregate_aspath(struct bgp_aggregate *aggregate,
139 struct aspath *aspath);
ef51a7d8 140
141extern void bgp_compute_aggregate_aspath_hash(struct bgp_aggregate *aggregate,
142 struct aspath *aspath);
143extern void bgp_compute_aggregate_aspath_val(struct bgp_aggregate *aggregate);
e00d8008
NT
144extern void bgp_remove_aspath_from_aggregate(struct bgp_aggregate *aggregate,
145 struct aspath *aspath);
ef51a7d8 146extern void bgp_remove_aspath_from_aggregate_hash(
147 struct bgp_aggregate *aggregate,
148 struct aspath *aspath);
149
e00d8008
NT
150extern void bgp_aggr_aspath_remove(void *arg);
151
00d252cb 152#endif /* _QUAGGA_BGP_ASPATH_H */