blob: 045328816cd107a570aaf8ca5ef25cb30042c1ce [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) \
Matus Fabian87da4762017-10-04 08:03:56 -070057 _(12, OFFLOAD_UDP_CKSUM) \
58 _(13, IS_NATED)
Ed Warnickecb9cada2015-12-08 15:45:58 -070059
Damjan Marion213b5aa2017-07-13 21:19:27 +020060#define VNET_BUFFER_FLAGS_VLAN_BITS \
61 (VNET_BUFFER_F_VLAN_1_DEEP | VNET_BUFFER_F_VLAN_2_DEEP)
Chris Luke194ebc52016-04-25 14:26:55 -040062
Damjan Marion213b5aa2017-07-13 21:19:27 +020063enum
64{
65#define _(bit, name) VNET_BUFFER_F_##name = (1 << LOG2_VLIB_BUFFER_FLAG_USER(bit)),
66 foreach_vnet_buffer_field
67#undef _
68};
Damjan Marion0247b462016-06-08 01:37:11 +020069
Damjan Marion213b5aa2017-07-13 21:19:27 +020070enum
71{
72#define _(bit, name) VNET_BUFFER_F_LOG2_##name = LOG2_VLIB_BUFFER_FLAG_USER(bit),
73 foreach_vnet_buffer_field
74#undef _
75};
Damjan Marion67655492016-11-15 12:50:28 +010076
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010077
Ed Warnickecb9cada2015-12-08 15:45:58 -070078#define foreach_buffer_opaque_union_subtype \
Ed Warnickecb9cada2015-12-08 15:45:58 -070079_(ip) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070080_(swt) \
81_(l2) \
82_(l2t) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070083_(gre) \
84_(l2_classify) \
Damjan Marion0247b462016-06-08 01:37:11 +020085_(handoff) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070086_(policer) \
Damjan Marion9c6ae5f2016-11-15 23:20:01 +010087_(ipsec) \
Ole Troancda94822016-01-07 14:37:25 +010088_(map) \
89_(map_t) \
Florin Coras82b13a82017-04-25 11:58:06 -070090_(ip_frag) \
91_(tcp)
Ed Warnickecb9cada2015-12-08 15:45:58 -070092
Dave Barachba868bb2016-08-08 09:51:21 -040093/*
Ed Warnickecb9cada2015-12-08 15:45:58 -070094 * vnet stack buffer opaque array overlay structure.
95 * The vnet_buffer_opaque_t *must* be the same size as the
96 * vlib_buffer_t "opaque" structure member, 32 bytes.
97 *
98 * When adding a union type, please add a stanza to
99 * foreach_buffer_opaque_union_subtype (directly above).
100 * Code in vnet_interface_init(...) verifies the size
101 * of the union, and will announce any deviations in an
102 * impossible-to-miss manner.
103 */
Dave Barachba868bb2016-08-08 09:51:21 -0400104typedef struct
105{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106 u32 sw_if_index[VLIB_N_RX_TX];
Damjan Marion072401e2017-07-13 18:53:27 +0200107 i16 l2_hdr_offset;
108 i16 l3_hdr_offset;
109 i16 l4_hdr_offset;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110
Dave Barachba868bb2016-08-08 09:51:21 -0400111 union
112 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113 /* IP4/6 buffer opaque. */
Dave Barachba868bb2016-08-08 09:51:21 -0400114 struct
115 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116 /* Adjacency from destination IP address lookup [VLIB_TX].
Dave Barachba868bb2016-08-08 09:51:21 -0400117 Adjacency from source IP address lookup [VLIB_RX].
118 This gets set to ~0 until source lookup is performed. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119 u32 adj_index[VLIB_N_RX_TX];
120
Dave Barachba868bb2016-08-08 09:51:21 -0400121 union
122 {
123 struct
124 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125 /* Flow hash value for this packet computed from IP src/dst address
126 protocol and ports. */
127 u32 flow_hash;
128
Florin Corascea194d2017-10-02 00:18:51 -0700129 union
130 {
131 /* next protocol */
132 u32 save_protocol;
133
134 /* Hint for transport protocols */
135 u32 fib_index;
136 };
Dave Barachc7493e12016-08-24 18:36:03 -0400137
138 /* Rewrite length */
139 u32 save_rewrite_length;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800140
141 /* MFIB RPF ID */
142 u32 rpf_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700143 };
144
Ole Troancda94822016-01-07 14:37:25 +0100145 /* ICMP */
Dave Barachba868bb2016-08-08 09:51:21 -0400146 struct
147 {
Ole Troancda94822016-01-07 14:37:25 +0100148 u8 type;
149 u8 code;
150 u32 data;
151 } icmp;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152 };
Klement Sekera0e3c0de2016-09-29 14:43:44 +0200153
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154 } ip;
155
Neale Rannsad422ed2016-11-02 14:20:04 +0000156 /*
157 * MPLS:
158 * data copied from the MPLS header that was popped from the packet
159 * during the look-up.
160 */
161 struct
162 {
163 u8 ttl;
164 u8 exp;
165 u8 first;
166 } mpls;
167
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168 /* ip4-in-ip6 softwire termination, only valid there */
Dave Barachba868bb2016-08-08 09:51:21 -0400169 struct
170 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171 u8 swt_disable;
172 u32 mapping_index;
173 } swt;
174
175 /* l2 bridging path, only valid there */
Eyal Baria11832f2017-06-21 15:32:13 +0300176 struct opaque_l2
Dave Barachba868bb2016-08-08 09:51:21 -0400177 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178 u32 feature_bitmap;
John Loda1f2c72017-03-24 20:11:15 -0400179 u16 bd_index; /* bridge-domain index */
180 u8 l2_len; /* ethernet header length */
181 u8 shg; /* split-horizon group */
Eyal Bari7537e712017-04-27 14:07:55 +0300182 u16 l2fib_sn; /* l2fib bd/int seq_num */
John Lo5a6508d2017-10-03 13:13:47 -0400183 u8 bd_age; /* aging enabled */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184 } l2;
185
186 /* l2tpv3 softwire encap, only valid there */
Dave Barachba868bb2016-08-08 09:51:21 -0400187 struct
188 {
189 u32 pad[4]; /* do not overlay w/ ip.adj_index[0,1] */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700190 u8 next_index;
191 u32 session_index;
192 } l2t;
193
Dave Barachba868bb2016-08-08 09:51:21 -0400194 struct
195 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700196 u32 src, dst;
197 } gre;
198
199 /* L2 classify */
Dave Barachba868bb2016-08-08 09:51:21 -0400200 struct
201 {
Eyal Baria11832f2017-06-21 15:32:13 +0300202 struct opaque_l2 pad;
Eyal Bari0f360dc2017-06-14 13:11:20 +0300203 union
204 {
205 u32 table_index;
206 u32 opaque_index;
207 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208 u64 hash;
209 } l2_classify;
210
211 /* IO - worker thread handoff */
Dave Barachba868bb2016-08-08 09:51:21 -0400212 struct
213 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700214 u32 next_index;
Damjan Marion0247b462016-06-08 01:37:11 +0200215 } handoff;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216
217 /* vnet policer */
Dave Barachba868bb2016-08-08 09:51:21 -0400218 struct
219 {
220 u32 pad[8 - VLIB_N_RX_TX - 1]; /* to end of opaque */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700221 u32 index;
222 } policer;
223
224 /* interface output features */
Dave Barachba868bb2016-08-08 09:51:21 -0400225 struct
226 {
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100227 u32 flags;
228 u32 sad_index;
229 } ipsec;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700230
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231 /* MAP */
Dave Barachba868bb2016-08-08 09:51:21 -0400232 struct
233 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234 u16 mtu;
235 } map;
236
237 /* MAP-T */
Dave Barachba868bb2016-08-08 09:51:21 -0400238 struct
239 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700240 u32 map_domain_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400241 struct
242 {
243 u32 saddr, daddr;
244 u16 frag_offset; //Fragmentation header offset
245 u16 l4_offset; //L4 header overall offset
246 u8 l4_protocol; //The final protocol number
247 } v6; //Used by ip6_map_t only
248 u16 checksum_offset; //L4 checksum overall offset
249 u16 mtu; //Exit MTU
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250 } map_t;
251
252 /* IP Fragmentation */
Dave Barachba868bb2016-08-08 09:51:21 -0400253 struct
254 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255 u16 header_offset;
256 u16 mtu;
257 u8 next_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400258 u8 flags; //See ip_frag.h
Ed Warnickecb9cada2015-12-08 15:45:58 -0700259 } ip_frag;
260
Dave Barachc07bf5d2016-02-17 17:52:26 -0500261 /* COP - configurable junk filter(s) */
Dave Barachba868bb2016-08-08 09:51:21 -0400262 struct
263 {
264 /* Current configuration index. */
265 u32 current_config_index;
Dave Barachc07bf5d2016-02-17 17:52:26 -0500266 } cop;
267
Florin Coras1a1adc72016-07-22 01:45:30 +0200268 /* LISP */
Dave Barachba868bb2016-08-08 09:51:21 -0400269 struct
270 {
Florin Coras1a1adc72016-07-22 01:45:30 +0200271 /* overlay address family */
272 u16 overlay_afi;
273 } lisp;
274
Damjan Marion22311502016-10-28 20:30:15 +0200275 /* Driver rx feature */
276 struct
277 {
278 u32 saved_next_index; /**< saved by drivers for short-cut */
279 u16 buffer_advance;
280 } device_input_feat;
281
Dave Barach68b0fb02017-02-28 15:15:56 -0500282 /* TCP */
283 struct
284 {
285 u32 connection_index;
286 u32 seq_number;
287 u32 seq_end;
288 u32 ack_number;
Florin Coras82b13a82017-04-25 11:58:06 -0700289 u16 hdr_offset; /**< offset relative to ip hdr */
290 u16 data_offset; /**< offset relative to ip hdr */
291 u16 data_len; /**< data len */
Dave Barach68b0fb02017-02-28 15:15:56 -0500292 u8 flags;
293 } tcp;
294
Matus Fabian161c59c2017-07-21 03:46:03 -0700295 /* SNAT */
296 struct
297 {
298 u32 flags;
299 } snat;
300
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301 u32 unused[6];
302 };
303} vnet_buffer_opaque_t;
304
Neale Rannsad422ed2016-11-02 14:20:04 +0000305/*
306 * The opaque field of the vlib_buffer_t is intepreted as a
307 * vnet_buffer_opaque_t. Hence it should be big enough to accommodate one.
308 */
Eyal Baria11832f2017-06-21 15:32:13 +0300309STATIC_ASSERT (sizeof (vnet_buffer_opaque_t) <=
310 STRUCT_SIZE_OF (vlib_buffer_t, opaque),
Neale Rannsad422ed2016-11-02 14:20:04 +0000311 "VNET buffer meta-data too large for vlib_buffer");
312
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313#define vnet_buffer(b) ((vnet_buffer_opaque_t *) (b)->opaque)
314
315/* Full cache line (64 bytes) of additional space */
Dave Barachba868bb2016-08-08 09:51:21 -0400316typedef struct
317{
318 union
319 {
Dave Barach7bee7732017-10-18 18:48:11 -0400320#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
321 /* buffer trajectory tracing */
322 struct
323 {
324 u16 *trajectory_trace;
325 };
326#endif
327 u32 unused[12];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700328 };
329} vnet_buffer_opaque2_t;
330
Dave Barach7bee7732017-10-18 18:48:11 -0400331#define vnet_buffer2(b) ((vnet_buffer_opaque2_t *) (b)->opaque2)
332
333/*
334 * The opaque2 field of the vlib_buffer_t is intepreted as a
335 * vnet_buffer_opaque2_t. Hence it should be big enough to accommodate one.
336 */
337STATIC_ASSERT (sizeof (vnet_buffer_opaque2_t) <=
338 STRUCT_SIZE_OF (vlib_buffer_t, opaque2),
339 "VNET buffer opaque2 meta-data too large for vlib_buffer");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340
341
342#endif /* included_vnet_buffer_h */
Dave Barachba868bb2016-08-08 09:51:21 -0400343
344/*
345 * fd.io coding-style-patch-verification: ON
346 *
347 * Local Variables:
348 * eval: (c-set-style "gnu")
349 * End:
350 */