2 Copyright (C) 1996, 97, 98 Kunihiro Ishiguro
4 This file is part of GNU Zebra.
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
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.
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
21 #ifndef _QUAGGA_BGP_ATTR_H
22 #define _QUAGGA_BGP_ATTR_H
24 #include "bgp_attr_evpn.h"
26 /* Simple bit mapping. */
29 #define SET_BITMAP(MAP, NUM) \
30 SET_FLAG (MAP[(NUM) / BITMAP_NBBY], 1 << ((NUM) % BITMAP_NBBY))
32 #define CHECK_BITMAP(MAP, NUM) \
33 CHECK_FLAG (MAP[(NUM) / BITMAP_NBBY], 1 << ((NUM) % BITMAP_NBBY))
35 #define BGP_MED_MAX UINT32_MAX
38 /* BGP Attribute type range. */
39 #define BGP_ATTR_TYPE_RANGE 256
40 #define BGP_ATTR_BITMAP_SIZE (BGP_ATTR_TYPE_RANGE / BITMAP_NBBY)
42 /* BGP Attribute flags. */
43 #define BGP_ATTR_FLAG_OPTIONAL 0x80 /* Attribute is optional. */
44 #define BGP_ATTR_FLAG_TRANS 0x40 /* Attribute is transitive. */
45 #define BGP_ATTR_FLAG_PARTIAL 0x20 /* Attribute is partial. */
46 #define BGP_ATTR_FLAG_EXTLEN 0x10 /* Extended length flag. */
48 /* BGP attribute header must bigger than 2. */
49 #define BGP_ATTR_MIN_LEN 3 /* Attribute flag, type length. */
50 #define BGP_ATTR_DEFAULT_WEIGHT 32768
52 /* Valid lengths for mp_nexthop_len */
53 #define BGP_ATTR_NHLEN_IPV4 IPV4_MAX_BYTELEN
54 #define BGP_ATTR_NHLEN_VPNV4 8+IPV4_MAX_BYTELEN
55 #define BGP_ATTR_NHLEN_IPV6_GLOBAL IPV6_MAX_BYTELEN
56 #define BGP_ATTR_NHLEN_IPV6_GLOBAL_AND_LL (IPV6_MAX_BYTELEN * 2)
57 #define BGP_ATTR_NHLEN_VPNV6_GLOBAL 8+IPV6_MAX_BYTELEN
58 #define BGP_ATTR_NHLEN_VPNV6_GLOBAL_AND_LL ((8+IPV6_MAX_BYTELEN) * 2)
60 /* Prefix SID types */
61 #define BGP_PREFIX_SID_LABEL_INDEX 1
62 #define BGP_PREFIX_SID_IPV6 2
63 #define BGP_PREFIX_SID_ORIGINATOR_SRGB 3
65 #define BGP_PREFIX_SID_LABEL_INDEX_LENGTH 7
66 #define BGP_PREFIX_SID_IPV6_LENGTH 19
67 #define BGP_PREFIX_SID_ORIGINATOR_SRGB_LENGTH 6
69 struct bgp_attr_encap_subtlv
{
70 struct bgp_attr_encap_subtlv
*next
; /* for chaining */
71 /* Reference count of this attribute. */
75 uint8_t value
[1]; /* will be extended */
80 * old rfp<->rfapi representation
82 struct bgp_tea_options
{
83 struct bgp_tea_options
*next
;
84 uint8_t options_count
;
85 uint16_t options_length
; /* each TLV may be 256 in length */
88 void *value
; /* pointer to data */
93 /* Overlay Index Info */
96 struct eth_segment_id eth_s_id
;
100 /* Additional/uncommon BGP attributes.
101 * lazily allocated as and when a struct attr
106 /* Multi-Protocol Nexthop, AFI IPv6 */
107 struct in6_addr mp_nexthop_global
;
108 struct in6_addr mp_nexthop_local
;
110 /* Extended Communities attribute. */
111 struct ecommunity
*ecommunity
;
113 /* Large Communities attribute. */
114 struct lcommunity
*lcommunity
;
116 /* Route-Reflector Cluster attribute */
117 struct cluster_list
*cluster
;
119 /* Unknown transitive attribute. */
120 struct transit
*transit
;
122 struct in_addr mp_nexthop_global_in
;
124 /* Aggregator Router ID attribute */
125 struct in_addr aggregator_addr
;
127 /* Route Reflector Originator attribute */
128 struct in_addr originator_id
;
130 /* Local weight, not actually an attribute */
136 /* MP Nexthop length */
137 u_char mp_nexthop_len
;
139 /* MP Nexthop preference */
140 u_char mp_nexthop_prefer_global
;
146 u_int32_t label_index
;
148 uint16_t encap_tunneltype
; /* grr */
149 struct bgp_attr_encap_subtlv
*encap_subtlvs
; /* rfc5512 */
152 struct bgp_attr_encap_subtlv
*vnc_subtlvs
; /* VNC-specific */
155 struct overlay_index evpn_overlay
;
158 /* BGP core attribute structure. */
161 /* AS Path structure */
162 struct aspath
*aspath
;
164 /* Community structure */
165 struct community
*community
;
167 /* Lazily allocated pointer to extra attributes */
168 struct attr_extra
*extra
;
170 /* Reference count of this attribute. */
171 unsigned long refcnt
;
173 /* Flag of attribute is set or not. */
176 /* Apart from in6_addr, the remaining static attributes */
177 struct in_addr nexthop
;
179 u_int32_t local_pref
;
180 ifindex_t nh_ifindex
;
182 /* Path origin attribute */
185 /* has the route-map changed any attribute?
186 Used on the peer outbound side. */
187 u_int32_t rmap_change_flags
;
190 /* rmap_change_flags definition */
191 #define BATTR_RMAP_IPV4_NHOP_CHANGED (1 << 0)
192 #define BATTR_RMAP_NEXTHOP_PEER_ADDRESS (1 << 1)
193 #define BATTR_REFLECTED (1 << 2)
194 #define BATTR_RMAP_NEXTHOP_UNCHANGED (1 << 3)
195 #define BATTR_RMAP_IPV6_GLOBAL_NHOP_CHANGED (1 << 4)
196 #define BATTR_RMAP_IPV6_LL_NHOP_CHANGED (1 << 5)
197 #define BATTR_RMAP_IPV6_PREFER_GLOBAL_CHANGED (1 << 6)
199 /* Router Reflector related structure. */
202 unsigned long refcnt
;
204 struct in_addr
*list
;
207 /* Unknown transit attribute. */
210 unsigned long refcnt
;
215 #define ATTR_FLAG_BIT(X) (1ULL << ((X) - 1))
217 #define BGP_CLUSTER_LIST_LENGTH(attr) \
218 (((attr)->flag & ATTR_FLAG_BIT(BGP_ATTR_CLUSTER_LIST)) ? \
219 (attr)->extra->cluster->length : 0)
222 BGP_ATTR_PARSE_PROCEED
= 0,
223 BGP_ATTR_PARSE_ERROR
= -1,
224 BGP_ATTR_PARSE_WITHDRAW
= -2,
226 /* only used internally, send notify + convert to BGP_ATTR_PARSE_ERROR */
227 BGP_ATTR_PARSE_ERROR_NOTIFYPLS
= -3,
228 } bgp_attr_parse_ret_t
;
230 struct bpacket_attr_vec_arr
;
233 extern void bgp_attr_init (void);
234 extern void bgp_attr_finish (void);
235 extern bgp_attr_parse_ret_t
bgp_attr_parse (struct peer
*, struct attr
*,
236 bgp_size_t
, struct bgp_nlri
*,
238 extern struct attr_extra
*bgp_attr_extra_get (struct attr
*);
239 extern void bgp_attr_extra_free (struct attr
*);
240 extern void bgp_attr_dup (struct attr
*, struct attr
*);
241 extern void bgp_attr_deep_dup (struct attr
*, struct attr
*);
242 extern void bgp_attr_deep_free (struct attr
*);
243 extern struct attr
*bgp_attr_intern (struct attr
*attr
);
244 extern struct attr
*bgp_attr_refcount (struct attr
*attr
);
245 extern void bgp_attr_unintern_sub (struct attr
*);
246 extern void bgp_attr_unintern (struct attr
**);
247 extern void bgp_attr_flush (struct attr
*);
248 extern struct attr
*bgp_attr_default_set (struct attr
*attr
, u_char
);
249 extern struct attr
*bgp_attr_default_intern (u_char
);
250 extern struct attr
*bgp_attr_aggregate_intern (struct bgp
*, u_char
,
252 struct community
*, int as_set
, u_char
);
253 extern bgp_size_t
bgp_packet_attribute (struct bgp
*bgp
, struct peer
*,
254 struct stream
*, struct attr
*,
255 struct bpacket_attr_vec_arr
*vecarr
,
256 struct prefix
*, afi_t
, safi_t
,
257 struct peer
*, struct prefix_rd
*,
258 u_char
*, int, u_int32_t
);
259 extern void bgp_dump_routes_attr (struct stream
*, struct attr
*,
261 extern int attrhash_cmp (const void *, const void *);
262 extern unsigned int attrhash_key_make (void *);
263 extern void attr_show_all (struct vty
*);
264 extern unsigned long int attr_count (void);
265 extern unsigned long int attr_unknown_count (void);
267 /* Cluster list prototypes. */
268 extern int cluster_loop_check (struct cluster_list
*, struct in_addr
);
269 extern void cluster_unintern (struct cluster_list
*);
271 /* Transit attribute prototypes. */
272 void transit_unintern (struct transit
*);
274 /* Below exported for unit-test purposes only */
275 struct bgp_attr_parser_args
{
277 bgp_size_t length
; /* attribute data length; */
278 bgp_size_t total
; /* total length, inc header */
284 extern int bgp_mp_reach_parse (struct bgp_attr_parser_args
*args
,
286 extern int bgp_mp_unreach_parse (struct bgp_attr_parser_args
*args
,
289 extern struct bgp_attr_encap_subtlv
*
290 encap_tlv_dup(struct bgp_attr_encap_subtlv
*orig
);
293 bgp_attr_flush_encap(struct attr
*attr
);
296 * Set of functions to encode MP_REACH_NLRI and MP_UNREACH_NLRI attributes.
297 * Typical call sequence is to call _start(), followed by multiple _prefix(),
298 * one for each NLRI that needs to be encoded into the UPDATE message, and
299 * finally the _end() function.
301 extern size_t bgp_packet_mpattr_start(struct stream
*s
, afi_t afi
, safi_t safi
,
303 struct bpacket_attr_vec_arr
*vecarr
,
305 extern void bgp_packet_mpattr_prefix(struct stream
*s
, afi_t afi
, safi_t safi
,
306 struct prefix
*p
, struct prefix_rd
*prd
,
307 u_char
*tag
, int addpath_encode
,
308 u_int32_t addpath_tx_id
,
310 extern size_t bgp_packet_mpattr_prefix_size(afi_t afi
, safi_t safi
,
312 extern void bgp_packet_mpattr_end(struct stream
*s
, size_t sizep
);
314 extern size_t bgp_packet_mpunreach_start (struct stream
*s
, afi_t afi
,
316 extern void bgp_packet_mpunreach_prefix (struct stream
*s
, struct prefix
*p
,
317 afi_t afi
, safi_t safi
, struct prefix_rd
*prd
,
318 u_char
*tag
, int, u_int32_t
, struct attr
*);
319 extern void bgp_packet_mpunreach_end (struct stream
*s
, size_t attrlen_pnt
);
322 bgp_rmap_nhop_changed(u_int32_t out_rmap_flags
, u_int32_t in_rmap_flags
)
324 return ((CHECK_FLAG(out_rmap_flags
, BATTR_RMAP_NEXTHOP_PEER_ADDRESS
) ||
325 CHECK_FLAG(out_rmap_flags
, BATTR_RMAP_NEXTHOP_UNCHANGED
) ||
326 CHECK_FLAG(out_rmap_flags
, BATTR_RMAP_IPV4_NHOP_CHANGED
) ||
327 CHECK_FLAG(out_rmap_flags
, BATTR_RMAP_IPV6_GLOBAL_NHOP_CHANGED
) ||
328 CHECK_FLAG(out_rmap_flags
, BATTR_RMAP_IPV6_PREFER_GLOBAL_CHANGED
) ||
329 CHECK_FLAG(out_rmap_flags
, BATTR_RMAP_IPV6_LL_NHOP_CHANGED
) ||
330 CHECK_FLAG(in_rmap_flags
, BATTR_RMAP_NEXTHOP_UNCHANGED
)) ? 1 : 0);
333 #endif /* _QUAGGA_BGP_ATTR_H */