blob: 5aedb431654b85c23e706f2bafd4c7da2c30f508 [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
Neale Rannsf068c3e2018-01-03 04:18:48 -080045/**
46 * Flags that are set in the high order bits of ((vlib_buffer*)b)->flags
47 */
Damjan Mariondac03522018-02-01 15:30:13 +010048#define foreach_vnet_buffer_flag \
Damjan Marionbd846cd2017-11-21 13:12:41 +010049 _( 1, L4_CHECKSUM_COMPUTED, "l4-cksum-computed") \
50 _( 2, L4_CHECKSUM_CORRECT, "l4-cksum-correct") \
51 _( 3, VLAN_2_DEEP, "vlan-2-deep") \
52 _( 4, VLAN_1_DEEP, "vlan-1-deep") \
Damjan Marion4edb2e42018-01-31 20:03:18 +010053 _( 5, SPAN_CLONE, "span-clone") \
Damjan Marionbd846cd2017-11-21 13:12:41 +010054 _( 6, HANDOFF_NEXT_VALID, "handoff-next-valid") \
55 _( 7, LOCALLY_ORIGINATED, "local") \
56 _( 8, IS_IP4, "ip4") \
57 _( 9, IS_IP6, "ip6") \
58 _(10, OFFLOAD_IP_CKSUM, "offload-ip-cksum") \
59 _(11, OFFLOAD_TCP_CKSUM, "offload-tcp-cksum") \
60 _(12, OFFLOAD_UDP_CKSUM, "offload-udp-cksum") \
61 _(13, IS_NATED, "nated") \
62 _(14, L2_HDR_OFFSET_VALID, 0) \
63 _(15, L3_HDR_OFFSET_VALID, 0) \
Damjan Mariondac03522018-02-01 15:30:13 +010064 _(16, L4_HDR_OFFSET_VALID, 0) \
65 _(17, FLOW_REPORT, "flow-report") \
66 _(18, IS_DVR, "dvr")
Ed Warnickecb9cada2015-12-08 15:45:58 -070067
Damjan Marion213b5aa2017-07-13 21:19:27 +020068#define VNET_BUFFER_FLAGS_VLAN_BITS \
69 (VNET_BUFFER_F_VLAN_1_DEEP | VNET_BUFFER_F_VLAN_2_DEEP)
Chris Luke194ebc52016-04-25 14:26:55 -040070
Damjan Marion213b5aa2017-07-13 21:19:27 +020071enum
72{
Damjan Marionbd846cd2017-11-21 13:12:41 +010073#define _(bit, name, v) VNET_BUFFER_F_##name = (1 << LOG2_VLIB_BUFFER_FLAG_USER(bit)),
Damjan Mariondac03522018-02-01 15:30:13 +010074 foreach_vnet_buffer_flag
Damjan Marion213b5aa2017-07-13 21:19:27 +020075#undef _
76};
Damjan Marion0247b462016-06-08 01:37:11 +020077
Damjan Marion213b5aa2017-07-13 21:19:27 +020078enum
79{
Damjan Marionbd846cd2017-11-21 13:12:41 +010080#define _(bit, name, v) VNET_BUFFER_F_LOG2_##name = LOG2_VLIB_BUFFER_FLAG_USER(bit),
Damjan Mariondac03522018-02-01 15:30:13 +010081 foreach_vnet_buffer_flag
Damjan Marion213b5aa2017-07-13 21:19:27 +020082#undef _
83};
Damjan Marion67655492016-11-15 12:50:28 +010084
Ed Warnickecb9cada2015-12-08 15:45:58 -070085#define foreach_buffer_opaque_union_subtype \
Ed Warnickecb9cada2015-12-08 15:45:58 -070086_(ip) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070087_(swt) \
88_(l2) \
89_(l2t) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070090_(gre) \
91_(l2_classify) \
Damjan Marion0247b462016-06-08 01:37:11 +020092_(handoff) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070093_(policer) \
Damjan Marion9c6ae5f2016-11-15 23:20:01 +010094_(ipsec) \
Ole Troancda94822016-01-07 14:37:25 +010095_(map) \
96_(map_t) \
Florin Coras82b13a82017-04-25 11:58:06 -070097_(ip_frag) \
Neale Rannsd792d9c2017-10-21 10:53:20 -070098_(mpls) \
Florin Coras82b13a82017-04-25 11:58:06 -070099_(tcp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100
Dave Barachba868bb2016-08-08 09:51:21 -0400101/*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102 * vnet stack buffer opaque array overlay structure.
103 * The vnet_buffer_opaque_t *must* be the same size as the
104 * vlib_buffer_t "opaque" structure member, 32 bytes.
105 *
106 * When adding a union type, please add a stanza to
107 * foreach_buffer_opaque_union_subtype (directly above).
108 * Code in vnet_interface_init(...) verifies the size
109 * of the union, and will announce any deviations in an
110 * impossible-to-miss manner.
111 */
Dave Barachba868bb2016-08-08 09:51:21 -0400112typedef struct
113{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114 u32 sw_if_index[VLIB_N_RX_TX];
Damjan Marion072401e2017-07-13 18:53:27 +0200115 i16 l2_hdr_offset;
116 i16 l3_hdr_offset;
117 i16 l4_hdr_offset;
Damjan Mariondac03522018-02-01 15:30:13 +0100118 u16 dont_waste_me;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119
Dave Barachba868bb2016-08-08 09:51:21 -0400120 union
121 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122 /* IP4/6 buffer opaque. */
Dave Barachba868bb2016-08-08 09:51:21 -0400123 struct
124 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125 /* Adjacency from destination IP address lookup [VLIB_TX].
Dave Barachba868bb2016-08-08 09:51:21 -0400126 Adjacency from source IP address lookup [VLIB_RX].
127 This gets set to ~0 until source lookup is performed. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128 u32 adj_index[VLIB_N_RX_TX];
129
Dave Barachba868bb2016-08-08 09:51:21 -0400130 union
131 {
132 struct
133 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134 /* Flow hash value for this packet computed from IP src/dst address
135 protocol and ports. */
136 u32 flow_hash;
137
Florin Corascea194d2017-10-02 00:18:51 -0700138 union
139 {
140 /* next protocol */
141 u32 save_protocol;
142
143 /* Hint for transport protocols */
144 u32 fib_index;
145 };
Dave Barachc7493e12016-08-24 18:36:03 -0400146
147 /* Rewrite length */
148 u32 save_rewrite_length;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800149
150 /* MFIB RPF ID */
151 u32 rpf_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152 };
153
Ole Troancda94822016-01-07 14:37:25 +0100154 /* ICMP */
Dave Barachba868bb2016-08-08 09:51:21 -0400155 struct
156 {
Ole Troancda94822016-01-07 14:37:25 +0100157 u8 type;
158 u8 code;
159 u32 data;
160 } icmp;
Klement Sekera75e7d132017-09-20 08:26:30 +0200161
162 /* reassembly */
163 struct
164 {
165 u16 fragment_first;
166 u16 fragment_last;
167 u16 range_first;
168 u16 range_last;
169 u32 next_range_bi;
170 u16 ip6_frag_hdr_offset;
171 u16 estimated_mtu;
172 } reass;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700173 };
Klement Sekera0e3c0de2016-09-29 14:43:44 +0200174
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175 } ip;
176
Neale Rannsad422ed2016-11-02 14:20:04 +0000177 /*
178 * MPLS:
179 * data copied from the MPLS header that was popped from the packet
180 * during the look-up.
181 */
182 struct
183 {
184 u8 ttl;
185 u8 exp;
186 u8 first;
Neale Ranns91286372017-12-05 13:24:04 -0800187 /*
188 * BIER - the nubmer of bytes in the header.
189 * the len field inthe header is not authoritative. It's the
190 * value in the table that counts.
191 */
192 struct
193 {
194 u8 n_bytes;
195 } bier;
Neale Rannsad422ed2016-11-02 14:20:04 +0000196 } mpls;
197
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198 /* ip4-in-ip6 softwire termination, only valid there */
Dave Barachba868bb2016-08-08 09:51:21 -0400199 struct
200 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201 u8 swt_disable;
202 u32 mapping_index;
203 } swt;
204
205 /* l2 bridging path, only valid there */
Eyal Baria11832f2017-06-21 15:32:13 +0300206 struct opaque_l2
Dave Barachba868bb2016-08-08 09:51:21 -0400207 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208 u32 feature_bitmap;
John Loda1f2c72017-03-24 20:11:15 -0400209 u16 bd_index; /* bridge-domain index */
210 u8 l2_len; /* ethernet header length */
211 u8 shg; /* split-horizon group */
Eyal Bari7537e712017-04-27 14:07:55 +0300212 u16 l2fib_sn; /* l2fib bd/int seq_num */
John Lo5a6508d2017-10-03 13:13:47 -0400213 u8 bd_age; /* aging enabled */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700214 } l2;
215
216 /* l2tpv3 softwire encap, only valid there */
Dave Barachba868bb2016-08-08 09:51:21 -0400217 struct
218 {
219 u32 pad[4]; /* do not overlay w/ ip.adj_index[0,1] */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700220 u8 next_index;
221 u32 session_index;
222 } l2t;
223
Dave Barachba868bb2016-08-08 09:51:21 -0400224 struct
225 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226 u32 src, dst;
227 } gre;
228
229 /* L2 classify */
Dave Barachba868bb2016-08-08 09:51:21 -0400230 struct
231 {
Eyal Baria11832f2017-06-21 15:32:13 +0300232 struct opaque_l2 pad;
Eyal Bari0f360dc2017-06-14 13:11:20 +0300233 union
234 {
235 u32 table_index;
236 u32 opaque_index;
237 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700238 u64 hash;
239 } l2_classify;
240
241 /* IO - worker thread handoff */
Dave Barachba868bb2016-08-08 09:51:21 -0400242 struct
243 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244 u32 next_index;
Damjan Marion0247b462016-06-08 01:37:11 +0200245 } handoff;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700246
247 /* vnet policer */
Dave Barachba868bb2016-08-08 09:51:21 -0400248 struct
249 {
250 u32 pad[8 - VLIB_N_RX_TX - 1]; /* to end of opaque */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251 u32 index;
252 } policer;
253
254 /* interface output features */
Dave Barachba868bb2016-08-08 09:51:21 -0400255 struct
256 {
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100257 u32 flags;
258 u32 sad_index;
259 } ipsec;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261 /* MAP */
Dave Barachba868bb2016-08-08 09:51:21 -0400262 struct
263 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264 u16 mtu;
265 } map;
266
267 /* MAP-T */
Dave Barachba868bb2016-08-08 09:51:21 -0400268 struct
269 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270 u32 map_domain_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400271 struct
272 {
273 u32 saddr, daddr;
274 u16 frag_offset; //Fragmentation header offset
275 u16 l4_offset; //L4 header overall offset
276 u8 l4_protocol; //The final protocol number
277 } v6; //Used by ip6_map_t only
278 u16 checksum_offset; //L4 checksum overall offset
279 u16 mtu; //Exit MTU
Ed Warnickecb9cada2015-12-08 15:45:58 -0700280 } map_t;
281
282 /* IP Fragmentation */
Dave Barachba868bb2016-08-08 09:51:21 -0400283 struct
284 {
Vijayabhaskar Katamreddyc592ca52018-01-25 15:12:11 -0800285 u32 pad[2]; /* do not overlay w/ ip.adj_index[0,1] */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286 u16 header_offset;
287 u16 mtu;
288 u8 next_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400289 u8 flags; //See ip_frag.h
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290 } ip_frag;
291
Dave Barachc07bf5d2016-02-17 17:52:26 -0500292 /* COP - configurable junk filter(s) */
Dave Barachba868bb2016-08-08 09:51:21 -0400293 struct
294 {
295 /* Current configuration index. */
296 u32 current_config_index;
Dave Barachc07bf5d2016-02-17 17:52:26 -0500297 } cop;
298
Florin Coras1a1adc72016-07-22 01:45:30 +0200299 /* LISP */
Dave Barachba868bb2016-08-08 09:51:21 -0400300 struct
301 {
Florin Coras1a1adc72016-07-22 01:45:30 +0200302 /* overlay address family */
303 u16 overlay_afi;
304 } lisp;
305
Damjan Marion22311502016-10-28 20:30:15 +0200306 /* Driver rx feature */
307 struct
308 {
309 u32 saved_next_index; /**< saved by drivers for short-cut */
310 u16 buffer_advance;
311 } device_input_feat;
312
Dave Barach68b0fb02017-02-28 15:15:56 -0500313 /* TCP */
314 struct
315 {
316 u32 connection_index;
317 u32 seq_number;
318 u32 seq_end;
319 u32 ack_number;
Florin Coras82b13a82017-04-25 11:58:06 -0700320 u16 hdr_offset; /**< offset relative to ip hdr */
321 u16 data_offset; /**< offset relative to ip hdr */
322 u16 data_len; /**< data len */
Dave Barach68b0fb02017-02-28 15:15:56 -0500323 u8 flags;
324 } tcp;
325
Marco Varlese191a5942017-10-30 18:17:21 +0100326 /* SCTP */
327 struct
328 {
329 u32 connection_index;
330 u16 sid; /**< Stream ID */
331 u16 ssn; /**< Stream Sequence Number */
332 u32 tsn; /**< Transmission Sequence Number */
333 u16 hdr_offset; /**< offset relative to ip hdr */
334 u16 data_offset; /**< offset relative to ip hdr */
335 u16 data_len; /**< data len */
Marco Varlese15cc6a82018-02-21 12:39:52 +0100336 u8 subconn_idx; /**< index of the sub_connection being used */
Marco Varlese191a5942017-10-30 18:17:21 +0100337 u8 flags;
338 } sctp;
339
Matus Fabian161c59c2017-07-21 03:46:03 -0700340 /* SNAT */
341 struct
342 {
343 u32 flags;
344 } snat;
345
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346 u32 unused[6];
347 };
348} vnet_buffer_opaque_t;
349
Neale Rannsad422ed2016-11-02 14:20:04 +0000350/*
351 * The opaque field of the vlib_buffer_t is intepreted as a
352 * vnet_buffer_opaque_t. Hence it should be big enough to accommodate one.
353 */
Eyal Baria11832f2017-06-21 15:32:13 +0300354STATIC_ASSERT (sizeof (vnet_buffer_opaque_t) <=
355 STRUCT_SIZE_OF (vlib_buffer_t, opaque),
Neale Rannsad422ed2016-11-02 14:20:04 +0000356 "VNET buffer meta-data too large for vlib_buffer");
357
Ed Warnickecb9cada2015-12-08 15:45:58 -0700358#define vnet_buffer(b) ((vnet_buffer_opaque_t *) (b)->opaque)
359
360/* Full cache line (64 bytes) of additional space */
Dave Barachba868bb2016-08-08 09:51:21 -0400361typedef struct
362{
363 union
364 {
Dave Barach7bee7732017-10-18 18:48:11 -0400365#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
366 /* buffer trajectory tracing */
367 struct
368 {
369 u16 *trajectory_trace;
370 };
371#endif
372 u32 unused[12];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700373 };
374} vnet_buffer_opaque2_t;
375
Dave Barach7bee7732017-10-18 18:48:11 -0400376#define vnet_buffer2(b) ((vnet_buffer_opaque2_t *) (b)->opaque2)
377
378/*
379 * The opaque2 field of the vlib_buffer_t is intepreted as a
380 * vnet_buffer_opaque2_t. Hence it should be big enough to accommodate one.
381 */
382STATIC_ASSERT (sizeof (vnet_buffer_opaque2_t) <=
383 STRUCT_SIZE_OF (vlib_buffer_t, opaque2),
384 "VNET buffer opaque2 meta-data too large for vlib_buffer");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385
Damjan Marionbd846cd2017-11-21 13:12:41 +0100386format_function_t format_vnet_buffer;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700387
388#endif /* included_vnet_buffer_h */
Dave Barachba868bb2016-08-08 09:51:21 -0400389
390/*
391 * fd.io coding-style-patch-verification: ON
392 *
393 * Local Variables:
394 * eval: (c-set-style "gnu")
395 * End:
396 */