]> git.proxmox.com Git - mirror_frr.git/blame - bgpd/bgp_aspath.h
bgpd: use loops to reduce code duplication
[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
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
5000f21c
DS
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))
49
fe69a505 50/* AS_PATH segment data in abstracted form, no limit is placed on length */
51struct assegment
52{
53 struct assegment *next;
54 as_t *as;
55 u_short length;
56 u_char type;
57};
58
718e3744 59/* AS path may be include some AsSegments. */
60struct aspath
61{
62 /* Reference count to this aspath. */
63 unsigned long refcnt;
64
fe69a505 65 /* segment data */
66 struct assegment *segments;
6811845b 67
f1aa5d8a
DS
68 /* AS path as a json object */
69 json_object *json;
70
718e3744 71 /* String expression of AS path. This string is used by vty output
72 and AS path regular expression match. */
73 char *str;
f669f7d2 74 unsigned short str_len;
718e3744 75};
76
77#define ASPATH_STR_DEFAULT_LEN 32
78
79/* Prototypes. */
94f2b392 80extern void aspath_init (void);
8fdc32ab 81extern void aspath_finish (void);
ab005298 82extern struct aspath *aspath_parse (struct stream *, size_t, int);
94f2b392 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 *);
841f7a57 86extern struct aspath *aspath_filter_exclude (struct aspath *, struct aspath *);
bc3dd427 87extern struct aspath *aspath_add_seq_n (struct aspath *, as_t, unsigned);
94f2b392 88extern struct aspath *aspath_add_seq (struct aspath *, as_t);
89extern struct aspath *aspath_add_confed_seq (struct aspath *, as_t);
96450faf 90extern int aspath_cmp (const void *, const void *);
ffe11cfb
SH
91extern int aspath_cmp_left (const struct aspath *, const struct aspath *);
92extern int aspath_cmp_left_confed (const struct aspath *, const struct aspath *);
94f2b392 93extern struct aspath *aspath_delete_confed_seq (struct aspath *);
94extern struct aspath *aspath_empty (void);
95extern struct aspath *aspath_empty_get (void);
96extern struct aspath *aspath_str2aspath (const char *);
97extern void aspath_free (struct aspath *);
98extern struct aspath *aspath_intern (struct aspath *);
f6f434b2 99extern void aspath_unintern (struct aspath **);
94f2b392 100extern const char *aspath_print (struct aspath *);
841f7a57 101extern void aspath_print_vty (struct vty *, const char *, struct aspath *, const char *);
94f2b392 102extern void aspath_print_all_vty (struct vty *);
923de654 103extern unsigned int aspath_key_make (void *);
aac9ef6c
DW
104extern unsigned int aspath_get_first_as (struct aspath *);
105extern unsigned int aspath_get_last_as (struct aspath *);
94f2b392 106extern int aspath_loop_check (struct aspath *, as_t);
107extern int aspath_private_as_check (struct aspath *);
c7122e14
DS
108extern int aspath_single_asn_check (struct aspath *, as_t asn);
109extern struct aspath *aspath_replace_specific_asn (struct aspath *aspath, as_t target_asn, as_t our_asn);
5000f21c
DS
110extern struct aspath *aspath_replace_private_asns(struct aspath *aspath, as_t asn);
111extern struct aspath *aspath_remove_private_asns (struct aspath *aspath);
94f2b392 112extern int aspath_firstas_check (struct aspath *, as_t);
ca87e1d3
VT
113extern int aspath_confed_check (struct aspath *);
114extern int aspath_left_confed_check (struct aspath *);
94f2b392 115extern unsigned long aspath_count (void);
ffd0c037 116extern unsigned int aspath_count_hops (const struct aspath *);
fe69a505 117extern unsigned int aspath_count_confeds (struct aspath *);
118extern unsigned int aspath_size (struct aspath *);
2815e61f 119extern as_t aspath_highest (struct aspath *);
bc3dd427 120extern as_t aspath_leftmost (struct aspath *);
0b2aa3a0
PJ
121extern size_t aspath_put (struct stream *, struct aspath *, int);
122
123extern struct aspath *aspath_reconcile_as4 (struct aspath *, struct aspath *);
124extern unsigned int aspath_has_as4 (struct aspath *);
fe69a505 125
126/* For SNMP BGP4PATHATTRASPATHSEGMENT, might be useful for debug */
127extern u_char *aspath_snmp_pathseg (struct aspath *, size_t *);
00d252cb 128
129#endif /* _QUAGGA_BGP_ASPATH_H */