blob: 7dfc6b99baf1aedf0829217f146b75448449e14e [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*
16 * vnet/buffer.h: vnet buffer flags
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
40#ifndef included_vnet_buffer_h
41#define included_vnet_buffer_h
42
43#include <vlib/vlib.h>
44
Damjan Marion213b5aa2017-07-13 21:19:27 +020045#define foreach_vnet_buffer_field \
46 _( 1, L4_CHECKSUM_COMPUTED) \
47 _( 2, L4_CHECKSUM_CORRECT) \
48 _( 3, VLAN_2_DEEP) \
49 _( 4, VLAN_1_DEEP) \
Dave Barach2c0a4f42017-06-29 09:30:15 -040050 _( 8, SPAN_CLONE) \
Damjan Marion213b5aa2017-07-13 21:19:27 +020051 _( 6, HANDOFF_NEXT_VALID) \
52 _( 7, LOCALLY_ORIGINATED) \
Dave Barach2c0a4f42017-06-29 09:30:15 -040053 _( 8, IS_IP4) \
54 _( 9, IS_IP6) \
55 _(10, OFFLOAD_IP_CKSUM) \
56 _(11, OFFLOAD_TCP_CKSUM) \
57 _(12, OFFLOAD_UDP_CKSUM)
Ed Warnickecb9cada2015-12-08 15:45:58 -070058
Damjan Marion213b5aa2017-07-13 21:19:27 +020059#define VNET_BUFFER_FLAGS_VLAN_BITS \
60 (VNET_BUFFER_F_VLAN_1_DEEP | VNET_BUFFER_F_VLAN_2_DEEP)
Chris Luke194ebc52016-04-25 14:26:55 -040061
Damjan Marion213b5aa2017-07-13 21:19:27 +020062enum
63{
64#define _(bit, name) VNET_BUFFER_F_##name = (1 << LOG2_VLIB_BUFFER_FLAG_USER(bit)),
65 foreach_vnet_buffer_field
66#undef _
67};
Damjan Marion0247b462016-06-08 01:37:11 +020068
Damjan Marion213b5aa2017-07-13 21:19:27 +020069enum
70{
71#define _(bit, name) VNET_BUFFER_F_LOG2_##name = LOG2_VLIB_BUFFER_FLAG_USER(bit),
72 foreach_vnet_buffer_field
73#undef _
74};
Damjan Marion67655492016-11-15 12:50:28 +010075
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010076
Ed Warnickecb9cada2015-12-08 15:45:58 -070077#define foreach_buffer_opaque_union_subtype \
Ed Warnickecb9cada2015-12-08 15:45:58 -070078_(ip) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070079_(swt) \
80_(l2) \
81_(l2t) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070082_(gre) \
83_(l2_classify) \
Damjan Marion0247b462016-06-08 01:37:11 +020084_(handoff) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070085_(policer) \
Damjan Marion9c6ae5f2016-11-15 23:20:01 +010086_(ipsec) \
Ole Troancda94822016-01-07 14:37:25 +010087_(map) \
88_(map_t) \
Florin Coras82b13a82017-04-25 11:58:06 -070089_(ip_frag) \
90_(tcp)
Ed Warnickecb9cada2015-12-08 15:45:58 -070091
Dave Barachba868bb2016-08-08 09:51:21 -040092/*
Ed Warnickecb9cada2015-12-08 15:45:58 -070093 * vnet stack buffer opaque array overlay structure.
94 * The vnet_buffer_opaque_t *must* be the same size as the
95 * vlib_buffer_t "opaque" structure member, 32 bytes.
96 *
97 * When adding a union type, please add a stanza to
98 * foreach_buffer_opaque_union_subtype (directly above).
99 * Code in vnet_interface_init(...) verifies the size
100 * of the union, and will announce any deviations in an
101 * impossible-to-miss manner.
102 */
Dave Barachba868bb2016-08-08 09:51:21 -0400103typedef struct
104{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105 u32 sw_if_index[VLIB_N_RX_TX];
Damjan Marion072401e2017-07-13 18:53:27 +0200106 i16 l2_hdr_offset;
107 i16 l3_hdr_offset;
108 i16 l4_hdr_offset;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109
Dave Barachba868bb2016-08-08 09:51:21 -0400110 union
111 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112 /* IP4/6 buffer opaque. */
Dave Barachba868bb2016-08-08 09:51:21 -0400113 struct
114 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115 /* Adjacency from destination IP address lookup [VLIB_TX].
Dave Barachba868bb2016-08-08 09:51:21 -0400116 Adjacency from source IP address lookup [VLIB_RX].
117 This gets set to ~0 until source lookup is performed. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700118 u32 adj_index[VLIB_N_RX_TX];
119
Dave Barachba868bb2016-08-08 09:51:21 -0400120 union
121 {
122 struct
123 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124 /* Flow hash value for this packet computed from IP src/dst address
125 protocol and ports. */
126 u32 flow_hash;
127
Dave Barachba868bb2016-08-08 09:51:21 -0400128 /* next protocol */
129 u32 save_protocol;
Dave Barachc7493e12016-08-24 18:36:03 -0400130
131 /* Rewrite length */
132 u32 save_rewrite_length;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800133
134 /* MFIB RPF ID */
135 u32 rpf_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136 };
137
Ole Troancda94822016-01-07 14:37:25 +0100138 /* ICMP */
Dave Barachba868bb2016-08-08 09:51:21 -0400139 struct
140 {
Ole Troancda94822016-01-07 14:37:25 +0100141 u8 type;
142 u8 code;
143 u32 data;
144 } icmp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145 };
Klement Sekera0e3c0de2016-09-29 14:43:44 +0200146
Ed Warnickecb9cada2015-12-08 15:45:58 -0700147 } ip;
148
Neale Rannsad422ed2016-11-02 14:20:04 +0000149 /*
150 * MPLS:
151 * data copied from the MPLS header that was popped from the packet
152 * during the look-up.
153 */
154 struct
155 {
156 u8 ttl;
157 u8 exp;
158 u8 first;
159 } mpls;
160
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161 /* ip4-in-ip6 softwire termination, only valid there */
Dave Barachba868bb2016-08-08 09:51:21 -0400162 struct
163 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164 u8 swt_disable;
165 u32 mapping_index;
166 } swt;
167
168 /* l2 bridging path, only valid there */
Eyal Baria11832f2017-06-21 15:32:13 +0300169 struct opaque_l2
Dave Barachba868bb2016-08-08 09:51:21 -0400170 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171 u32 feature_bitmap;
John Loda1f2c72017-03-24 20:11:15 -0400172 u16 bd_index; /* bridge-domain index */
173 u8 l2_len; /* ethernet header length */
174 u8 shg; /* split-horizon group */
Eyal Bari7537e712017-04-27 14:07:55 +0300175 u16 l2fib_sn; /* l2fib bd/int seq_num */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176 } l2;
177
178 /* l2tpv3 softwire encap, only valid there */
Dave Barachba868bb2016-08-08 09:51:21 -0400179 struct
180 {
181 u32 pad[4]; /* do not overlay w/ ip.adj_index[0,1] */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182 u8 next_index;
183 u32 session_index;
184 } l2t;
185
Dave Barachba868bb2016-08-08 09:51:21 -0400186 struct
187 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188 u32 src, dst;
189 } gre;
190
191 /* L2 classify */
Dave Barachba868bb2016-08-08 09:51:21 -0400192 struct
193 {
Eyal Baria11832f2017-06-21 15:32:13 +0300194 struct opaque_l2 pad;
Eyal Bari0f360dc2017-06-14 13:11:20 +0300195 union
196 {
197 u32 table_index;
198 u32 opaque_index;
199 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700200 u64 hash;
201 } l2_classify;
202
203 /* IO - worker thread handoff */
Dave Barachba868bb2016-08-08 09:51:21 -0400204 struct
205 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700206 u32 next_index;
Damjan Marion0247b462016-06-08 01:37:11 +0200207 } handoff;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208
209 /* vnet policer */
Dave Barachba868bb2016-08-08 09:51:21 -0400210 struct
211 {
212 u32 pad[8 - VLIB_N_RX_TX - 1]; /* to end of opaque */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213 u32 index;
214 } policer;
215
216 /* interface output features */
Dave Barachba868bb2016-08-08 09:51:21 -0400217 struct
218 {
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100219 u32 flags;
220 u32 sad_index;
221 } ipsec;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700222
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223 /* MAP */
Dave Barachba868bb2016-08-08 09:51:21 -0400224 struct
225 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226 u16 mtu;
227 } map;
228
229 /* MAP-T */
Dave Barachba868bb2016-08-08 09:51:21 -0400230 struct
231 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232 u32 map_domain_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400233 struct
234 {
235 u32 saddr, daddr;
236 u16 frag_offset; //Fragmentation header offset
237 u16 l4_offset; //L4 header overall offset
238 u8 l4_protocol; //The final protocol number
239 } v6; //Used by ip6_map_t only
240 u16 checksum_offset; //L4 checksum overall offset
241 u16 mtu; //Exit MTU
Ed Warnickecb9cada2015-12-08 15:45:58 -0700242 } map_t;
243
244 /* IP Fragmentation */
Dave Barachba868bb2016-08-08 09:51:21 -0400245 struct
246 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247 u16 header_offset;
248 u16 mtu;
249 u8 next_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400250 u8 flags; //See ip_frag.h
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251 } ip_frag;
252
Dave Barachc07bf5d2016-02-17 17:52:26 -0500253 /* COP - configurable junk filter(s) */
Dave Barachba868bb2016-08-08 09:51:21 -0400254 struct
255 {
256 /* Current configuration index. */
257 u32 current_config_index;
Dave Barachc07bf5d2016-02-17 17:52:26 -0500258 } cop;
259
Florin Coras1a1adc72016-07-22 01:45:30 +0200260 /* LISP */
Dave Barachba868bb2016-08-08 09:51:21 -0400261 struct
262 {
Florin Coras1a1adc72016-07-22 01:45:30 +0200263 /* overlay address family */
264 u16 overlay_afi;
265 } lisp;
266
Damjan Marion22311502016-10-28 20:30:15 +0200267 /* Driver rx feature */
268 struct
269 {
270 u32 saved_next_index; /**< saved by drivers for short-cut */
271 u16 buffer_advance;
272 } device_input_feat;
273
Dave Barach68b0fb02017-02-28 15:15:56 -0500274 /* TCP */
275 struct
276 {
277 u32 connection_index;
278 u32 seq_number;
279 u32 seq_end;
280 u32 ack_number;
Florin Coras82b13a82017-04-25 11:58:06 -0700281 u16 hdr_offset; /**< offset relative to ip hdr */
282 u16 data_offset; /**< offset relative to ip hdr */
283 u16 data_len; /**< data len */
Dave Barach68b0fb02017-02-28 15:15:56 -0500284 u8 flags;
285 } tcp;
286
Matus Fabian161c59c2017-07-21 03:46:03 -0700287 /* SNAT */
288 struct
289 {
290 u32 flags;
291 } snat;
292
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293 u32 unused[6];
294 };
295} vnet_buffer_opaque_t;
296
Neale Rannsad422ed2016-11-02 14:20:04 +0000297/*
298 * The opaque field of the vlib_buffer_t is intepreted as a
299 * vnet_buffer_opaque_t. Hence it should be big enough to accommodate one.
300 */
Eyal Baria11832f2017-06-21 15:32:13 +0300301STATIC_ASSERT (sizeof (vnet_buffer_opaque_t) <=
302 STRUCT_SIZE_OF (vlib_buffer_t, opaque),
Neale Rannsad422ed2016-11-02 14:20:04 +0000303 "VNET buffer meta-data too large for vlib_buffer");
304
Ed Warnickecb9cada2015-12-08 15:45:58 -0700305#define vnet_buffer(b) ((vnet_buffer_opaque_t *) (b)->opaque)
306
307/* Full cache line (64 bytes) of additional space */
Dave Barachba868bb2016-08-08 09:51:21 -0400308typedef struct
309{
310 union
311 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700312 };
313} vnet_buffer_opaque2_t;
314
315
316
317#endif /* included_vnet_buffer_h */
Dave Barachba868bb2016-08-08 09:51:21 -0400318
319/*
320 * fd.io coding-style-patch-verification: ON
321 *
322 * Local Variables:
323 * eval: (c-set-style "gnu")
324 * End:
325 */