blob: 124c450e35c5276d4a3f9006a1751e94f8ab2747 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* BGP attributes.
2 Copyright (C) 1996, 97, 98 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
paul00d252c2005-05-23 14:19:54 +000021#ifndef _QUAGGA_BGP_ATTR_H
22#define _QUAGGA_BGP_ATTR_H
23
paul718e3742002-12-13 20:15:29 +000024/* Simple bit mapping. */
25#define BITMAP_NBBY 8
26
27#define SET_BITMAP(MAP, NUM) \
28 SET_FLAG (MAP[(NUM) / BITMAP_NBBY], 1 << ((NUM) % BITMAP_NBBY))
29
30#define CHECK_BITMAP(MAP, NUM) \
31 CHECK_FLAG (MAP[(NUM) / BITMAP_NBBY], 1 << ((NUM) % BITMAP_NBBY))
32
paul3b424972003-10-13 09:47:32 +000033#define BGP_MED_MAX UINT32_MAX
34
paul718e3742002-12-13 20:15:29 +000035/* BGP Attribute type range. */
36#define BGP_ATTR_TYPE_RANGE 256
37#define BGP_ATTR_BITMAP_SIZE (BGP_ATTR_TYPE_RANGE / BITMAP_NBBY)
38
39/* BGP Attribute flags. */
40#define BGP_ATTR_FLAG_OPTIONAL 0x80 /* Attribute is optional. */
41#define BGP_ATTR_FLAG_TRANS 0x40 /* Attribute is transitive. */
42#define BGP_ATTR_FLAG_PARTIAL 0x20 /* Attribute is partial. */
43#define BGP_ATTR_FLAG_EXTLEN 0x10 /* Extended length flag. */
44
45/* BGP attribute header must bigger than 2. */
46#define BGP_ATTR_MIN_LEN 2 /* Attribute flag and type. */
47
48/* BGP attribute structure. */
49struct attr
50{
paul718e3742002-12-13 20:15:29 +000051 /* Attributes. */
paul718e3742002-12-13 20:15:29 +000052#ifdef HAVE_IPV6
53 struct in6_addr mp_nexthop_global;
54 struct in6_addr mp_nexthop_local;
55#endif /* HAVE_IPV6 */
paul718e3742002-12-13 20:15:29 +000056
57 /* AS Path structure */
58 struct aspath *aspath;
59
60 /* Community structure */
61 struct community *community;
62
63 /* Extended Communities attribute. */
64 struct ecommunity *ecommunity;
Paul Jakmacbdfbaa2006-03-30 13:20:48 +000065
66 /* Route-Reflector Cluster attribute */
67 struct cluster_list *cluster;
68
paul718e3742002-12-13 20:15:29 +000069 /* Unknown transitive attribute. */
70 struct transit *transit;
Paul Jakmacbdfbaa2006-03-30 13:20:48 +000071
72 /* Reference count of this attribute. */
73 unsigned long refcnt;
74
75 /* Flag of attribute is set or not. */
76 u_int32_t flag;
77
78 /* Apart from in6_addr, the remaining static attributes */
79 struct in_addr nexthop;
80 u_int32_t med;
81 u_int32_t local_pref;
82 struct in_addr aggregator_addr;
83 struct in_addr originator_id;
84 struct in_addr mp_nexthop_global_in;
85 struct in_addr mp_nexthop_local_in;
86 u_int32_t weight;
87 as_t aggregator_as;
88 u_char origin;
89 u_char mp_nexthop_len;
paul718e3742002-12-13 20:15:29 +000090};
91
92/* Router Reflector related structure. */
93struct cluster_list
94{
95 unsigned long refcnt;
96 int length;
97 struct in_addr *list;
98};
99
100/* Unknown transit attribute. */
101struct transit
102{
103 unsigned long refcnt;
104 int length;
105 u_char *val;
106};
107
108#define ATTR_FLAG_BIT(X) (1 << ((X) - 1))
109
110/* Prototypes. */
paul94f2b392005-06-28 12:44:16 +0000111extern void bgp_attr_init (void);
112extern int bgp_attr_parse (struct peer *, struct attr *, bgp_size_t,
paul718e3742002-12-13 20:15:29 +0000113 struct bgp_nlri *, struct bgp_nlri *);
paul94f2b392005-06-28 12:44:16 +0000114extern int bgp_attr_check (struct peer *, struct attr *);
115extern struct attr *bgp_attr_intern (struct attr *attr);
116extern void bgp_attr_unintern (struct attr *);
117extern void bgp_attr_flush (struct attr *);
118extern struct attr *bgp_attr_default_set (struct attr *attr, u_char);
119extern struct attr *bgp_attr_default_intern (u_char);
120extern struct attr *bgp_attr_aggregate_intern (struct bgp *, u_char,
paul5228ad22004-06-04 17:58:18 +0000121 struct aspath *,
122 struct community *, int as_set);
paul94f2b392005-06-28 12:44:16 +0000123extern bgp_size_t bgp_packet_attribute (struct bgp *bgp, struct peer *,
paul5228ad22004-06-04 17:58:18 +0000124 struct stream *, struct attr *,
125 struct prefix *, afi_t, safi_t,
Paul Jakmaa3b6ea52006-05-04 07:52:12 +0000126 struct peer *, struct prefix_rd *, u_char *);
paul94f2b392005-06-28 12:44:16 +0000127extern bgp_size_t bgp_packet_withdraw (struct peer *peer, struct stream *s,
paul5228ad22004-06-04 17:58:18 +0000128 struct prefix *p, afi_t, safi_t,
Paul Jakmaa3b6ea52006-05-04 07:52:12 +0000129 struct prefix_rd *, u_char *);
paul94f2b392005-06-28 12:44:16 +0000130extern void bgp_dump_routes_attr (struct stream *, struct attr *,
131 struct prefix *);
Paul Jakma923de652007-04-29 18:25:17 +0000132extern int attrhash_cmp (void *, void *);
133extern unsigned int attrhash_key_make (void *);
paul94f2b392005-06-28 12:44:16 +0000134extern void attr_show_all (struct vty *);
Paul Jakmacbdfbaa2006-03-30 13:20:48 +0000135extern unsigned long int attr_count (void);
136extern unsigned long int attr_unknown_count (void);
paul718e3742002-12-13 20:15:29 +0000137
138/* Cluster list prototypes. */
paul94f2b392005-06-28 12:44:16 +0000139extern int cluster_loop_check (struct cluster_list *, struct in_addr);
140extern void cluster_unintern (struct cluster_list *);
paul718e3742002-12-13 20:15:29 +0000141
142/* Transit attribute prototypes. */
143void transit_unintern (struct transit *);
paul00d252c2005-05-23 14:19:54 +0000144
145#endif /* _QUAGGA_BGP_ATTR_H */