From Hannes Gredler:
[obnox/wireshark/wip.git] / packet-bgp.h
1 /* packet-bgp.c
2  * Definitions for BGP packet disassembly structures and routine
3  *
4  * $Id: packet-bgp.h,v 1.19 2002/08/24 10:22:29 guy Exp $
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@ethereal.com>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  * 
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  * 
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 #ifndef __PACKET_BGP_H__
26 #define __PACKET_BGP_H__
27
28 /* some handy things to know */
29 #define BGP_MAX_PACKET_SIZE             4096
30 #define BGP_MARKER_SIZE                 16
31 #define BGP_HEADER_SIZE                 19
32 #define BGP_MIN_OPEN_MSG_SIZE           29
33 #define BGP_MIN_UPDATE_MSG_SIZE         23
34 #define BGP_MIN_NOTIFICATION_MSG_SIZE   21
35 #define BGP_MIN_KEEPALVE_MSG_SIZE       BGP_HEADER_SIZE
36 #define BGP_TCP_PORT                    179
37
38 /* BGP message types */
39 #define BGP_OPEN                1
40 #define BGP_UPDATE              2
41 #define BGP_NOTIFICATION        3
42 #define BGP_KEEPALIVE           4
43 #define BGP_ROUTE_REFRESH       5
44 #define BGP_ROUTE_REFRESH_CISCO 0x80
45
46 /* BGP header */
47 struct bgp {
48     guint8 bgp_marker[BGP_MARKER_SIZE];
49     guint16 bgp_len;
50     guint8 bgp_type;
51 };
52
53 /* BGP OPEN message */
54 struct bgp_open {
55     guint8 bgpo_marker[BGP_MARKER_SIZE];
56     guint16 bgpo_len;
57     guint8 bgpo_type;
58     guint8 bgpo_version;
59     guint16 bgpo_myas;
60     guint16 bgpo_holdtime;
61     guint32 bgpo_id;
62     guint8 bgpo_optlen;
63     /* options should follow */
64 };
65
66 /* BGP NOTIFICATION message */
67 struct bgp_notification {
68     guint8 bgpn_marker[BGP_MARKER_SIZE];
69     guint16 bgpn_len;
70     guint8 bgpn_type;
71     guint8 bgpn_major;
72     guint8 bgpn_minor;
73     /* data should follow */
74 };
75
76 /* BGP ROUTE-REFRESH message */
77 struct bgp_route_refresh {
78     guint8 bgpr_marker[BGP_MARKER_SIZE];
79     guint16 bgpr_len;
80     guint8 bgpr_type;
81     guint16 bgpr_afi;
82     guint8 bgpr_reserved;
83     guint8 bgpr_safi;
84 };
85
86 /* path attribute */
87 struct bgp_attr {
88     guint8 bgpa_flags;
89     guint8 bgpa_type;
90 };
91
92 /* attribute flags, from RFC1771 */
93 #define BGP_ATTR_FLAG_OPTIONAL        0x80
94 #define BGP_ATTR_FLAG_TRANSITIVE      0x40
95 #define BGP_ATTR_FLAG_PARTIAL         0x20
96 #define BGP_ATTR_FLAG_EXTENDED_LENGTH 0x10
97
98 /* AS_PATH segment types */
99 #define AS_SET             1   /* RFC1771 */
100 #define AS_SEQUENCE        2   /* RFC1771 */
101 #define AS_CONFED_SET      4   /* RFC1965 has the wrong values, corrected in  */
102 #define AS_CONFED_SEQUENCE 3   /* draft-ietf-idr-bgp-confed-rfc1965bis-01.txt */
103
104 /* OPEN message Optional Parameter types  */
105 #define BGP_OPTION_AUTHENTICATION       1   /* RFC1771 */
106 #define BGP_OPTION_CAPABILITY           2   /* RFC2842 */
107
108 /* BGP capability code */
109 #define BGP_CAPABILITY_RESERVED         0   /* RFC2434 */
110 #define BGP_CAPABILITY_MULTIPROTOCOL    1   /* RFC2858 */
111 #define BGP_CAPABILITY_ROUTE_REFRESH    2   /* RFC2918 */
112 #define BGP_CAPABILITY_COOPERATIVE_ROUTE_FILTERING      3       /* draft-ietf-idr-route-filter-04.txt */
113 #define BGP_CAPABILITY_ORF_CISCO        0x82    /* Cisco */
114 #define BGP_CAPABILITY_ROUTE_REFRESH_CISCO      0x80   /* Cisco */
115
116 #define BGP_ORF_PREFIX_CISCO    0x80 /* Cisco */
117 #define BGP_ORF_COMM_CISCO      0x81 /* Cisco */
118 #define BGP_ORF_EXTCOMM_CISCO   0x82 /* Cisco */
119 #define BGP_ORF_ASPATH_CISCO    0x83 /* Cisco */
120 #define BGP_ORF_COMM            0x02 /* draft-ietf-idr-route-filter-06.txt */
121 #define BGP_ORF_EXTCOMM         0x03 /* draft-ietf-idr-route-filter-06.txt */
122 #define BGP_ORF_ASPATH          0x04 /* draft-ietf-idr-aspath-orf-02.txt */
123 /* draft-ietf-idr-route-filter-06.txt */
124 #define BGP_ORF_ACTION          0xc0
125 #define BGP_ORF_ADD             0x00
126 #define BGP_ORF_REMOVE          0x40
127 #define BGP_ORF_REMOVEALL       0x80
128 #define BGP_ORF_MATCH           0x10
129 #define BGP_ORF_PERMIT          0x00
130 #define BGP_ORF_DENY            0x10
131
132 /* well-known communities, from RFC1997 */
133 #define BGP_COMM_NO_EXPORT           0xFFFFFF01
134 #define BGP_COMM_NO_ADVERTISE        0xFFFFFF02
135 #define BGP_COMM_NO_EXPORT_SUBCONFED 0xFFFFFF03
136 #define FOURHEX0                     0x00000000
137 #define FOURHEXF                     0xFFFF0000
138
139 /* attribute types */
140 #define BGPTYPE_ORIGIN            1   /* RFC1771          */
141 #define BGPTYPE_AS_PATH           2   /* RFC1771          */
142 #define BGPTYPE_NEXT_HOP          3   /* RFC1771          */
143 #define BGPTYPE_MULTI_EXIT_DISC   4   /* RFC1771          */
144 #define BGPTYPE_LOCAL_PREF        5   /* RFC1771          */
145 #define BGPTYPE_ATOMIC_AGGREGATE  6   /* RFC1771          */
146 #define BGPTYPE_AGGREGATOR        7   /* RFC1771          */
147 #define BGPTYPE_COMMUNITIES       8   /* RFC1997          */
148 #define BGPTYPE_ORIGINATOR_ID     9   /* RFC2796          */
149 #define BGPTYPE_CLUSTER_LIST     10   /* RFC2796          */
150 #define BGPTYPE_DPA              11   /* work in progress */
151 #define BGPTYPE_ADVERTISER       12   /* RFC1863          */
152 #define BGPTYPE_RCID_PATH        13   /* RFC1863          */
153 #define BGPTYPE_MP_REACH_NLRI    14   /* RFC2858          */
154 #define BGPTYPE_MP_UNREACH_NLRI  15   /* RFC2858          */
155 #define BGPTYPE_EXTENDED_COMMUNITY 16 /* Draft Ramachandra */
156
157 /* Extended community type */
158                                         /* draft-ramachandra-bgp-ext-communities */
159 #define BGP_EXT_COM_RT_0        0x0002  /* Route Target,Format AS(2bytes):AN(4bytes) */
160 #define BGP_EXT_COM_RT_1        0x0102  /* Route Target,Format IP address:AN(2bytes) */
161 #define BGP_EXT_COM_RO_0        0x0003  /* Route Origin,Format AS(2bytes):AN(4bytes) */
162 #define BGP_EXT_COM_RO_1        0x0103  /* Route Origin,Format IP address:AN(2bytes) */
163 #define BGP_EXT_COM_LINKBAND    0x4004  /* Link Bandwidth,Format AS(2B):Bandwidth(4B) */
164                                         /* rfc2547 bgp-mpls-vpns */
165 #define BGP_EXT_COM_VPN_ORIGIN  0x0005  /* OSPF Domin ID / VPN of Origin  */
166                                         /* draft-rosen-vpns-ospf-bgp-mpls */
167 #define BGP_EXT_COM_OSPF_RTYPE  0X8000  /* OSPF Route Type,Format Area(4B):RouteType(1B):Options(1B) */
168 #define BGP_EXT_COM_OSPF_RID    0x8001  /* OSPF Router ID,Format RouterID(4B):Unused(2B) */
169 #define BGP_EXT_COM_L2INFO      0x800a  /* draft-kompella-ppvpn-l2vpn */
170
171
172 /* OSPF codes for  BGP_EXT_COM_OSPF_RTYPE draft-rosen-vpns-ospf-bgp-mpls  */
173 #define BGP_OSPF_RTYPE_RTR      1 /* OSPF Router LSA */
174 #define BGP_OSPF_RTYPE_NET      2 /* OSPF Network LSA */
175 #define BGP_OSPF_RTYPE_SUM      3 /* OSPF Summary LSA */
176 #define BGP_OSPF_RTYPE_EXT      5 /* OSPF External LSA, note that ASBR doesn't apply to MPLS-VPN */
177 #define BGP_OSPF_RTYPE_NSSA     7 /* OSPF NSSA External*/
178 #define BGP_OSPF_RTYPE_SHAM     129 /* OSPF-MPLS-VPN Sham link */
179 #define BGP_OSPF_RTYPE_METRIC_TYPE 0x1 /* LSB of RTYPE Options Field */
180
181 /* Extended community & Route dinstinguisher formats */
182 #define FORMAT_AS2_LOC      0x00    /* Format AS(2bytes):AN(4bytes) */
183 #define FORMAT_IP_LOC       0x01    /* Format IP address:AN(2bytes) */
184 #define FORMAT_AS4_LOC      0x02    /* FOrmat AS(4bytes):AN(2bytes) */
185
186 /* RFC 2858 subsequent address family numbers */
187 #define SAFNUM_UNICAST  1
188 #define SAFNUM_MULCAST  2
189 #define SAFNUM_UNIMULC  3
190 #define SAFNUM_MPLS_LABEL 4     /* rfc3107 */
191 #define SAFNUM_LAB_VPNUNICAST  128     /* Draft-rosen-rfc2547bis-03 */
192 #define SAFNUM_LAB_VPNMULCAST  129 
193 #define SAFNUM_LAB_VPNUNIMULC  130 
194
195 #ifndef offsetof
196 #define offsetof(type, member)  ((size_t)(&((type *)0)->member))
197 #endif
198
199 #endif