blob: e785145c0b53ce861cfb16b49cb08bae6aadab46 [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") \
Neale Ranns039cbfe2018-02-27 03:45:38 -080066 _(18, IS_DVR, "dvr") \
67 _(19, QOS_DATA_VALID, 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -070068
Damjan Marion213b5aa2017-07-13 21:19:27 +020069#define VNET_BUFFER_FLAGS_VLAN_BITS \
70 (VNET_BUFFER_F_VLAN_1_DEEP | VNET_BUFFER_F_VLAN_2_DEEP)
Chris Luke194ebc52016-04-25 14:26:55 -040071
Damjan Marion213b5aa2017-07-13 21:19:27 +020072enum
73{
Damjan Marionbd846cd2017-11-21 13:12:41 +010074#define _(bit, name, v) VNET_BUFFER_F_##name = (1 << LOG2_VLIB_BUFFER_FLAG_USER(bit)),
Damjan Mariondac03522018-02-01 15:30:13 +010075 foreach_vnet_buffer_flag
Damjan Marion213b5aa2017-07-13 21:19:27 +020076#undef _
77};
Damjan Marion0247b462016-06-08 01:37:11 +020078
Damjan Marion213b5aa2017-07-13 21:19:27 +020079enum
80{
Damjan Marionbd846cd2017-11-21 13:12:41 +010081#define _(bit, name, v) VNET_BUFFER_F_LOG2_##name = LOG2_VLIB_BUFFER_FLAG_USER(bit),
Damjan Mariondac03522018-02-01 15:30:13 +010082 foreach_vnet_buffer_flag
Damjan Marion213b5aa2017-07-13 21:19:27 +020083#undef _
84};
Damjan Marion67655492016-11-15 12:50:28 +010085
Ed Warnickecb9cada2015-12-08 15:45:58 -070086#define foreach_buffer_opaque_union_subtype \
Ed Warnickecb9cada2015-12-08 15:45:58 -070087_(ip) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070088_(swt) \
89_(l2) \
90_(l2t) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070091_(gre) \
92_(l2_classify) \
Damjan Marion0247b462016-06-08 01:37:11 +020093_(handoff) \
Ed Warnickecb9cada2015-12-08 15:45:58 -070094_(policer) \
Damjan Marion9c6ae5f2016-11-15 23:20:01 +010095_(ipsec) \
Ole Troancda94822016-01-07 14:37:25 +010096_(map) \
97_(map_t) \
Florin Coras82b13a82017-04-25 11:58:06 -070098_(ip_frag) \
Neale Rannsd792d9c2017-10-21 10:53:20 -070099_(mpls) \
Florin Coras82b13a82017-04-25 11:58:06 -0700100_(tcp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700101
Dave Barachba868bb2016-08-08 09:51:21 -0400102/*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103 * vnet stack buffer opaque array overlay structure.
104 * The vnet_buffer_opaque_t *must* be the same size as the
105 * vlib_buffer_t "opaque" structure member, 32 bytes.
106 *
107 * When adding a union type, please add a stanza to
108 * foreach_buffer_opaque_union_subtype (directly above).
109 * Code in vnet_interface_init(...) verifies the size
110 * of the union, and will announce any deviations in an
111 * impossible-to-miss manner.
112 */
Dave Barachba868bb2016-08-08 09:51:21 -0400113typedef struct
114{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115 u32 sw_if_index[VLIB_N_RX_TX];
Damjan Marion072401e2017-07-13 18:53:27 +0200116 i16 l2_hdr_offset;
117 i16 l3_hdr_offset;
118 i16 l4_hdr_offset;
Damjan Mariondac03522018-02-01 15:30:13 +0100119 u16 dont_waste_me;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120
Dave Barachba868bb2016-08-08 09:51:21 -0400121 union
122 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123 /* IP4/6 buffer opaque. */
Dave Barachba868bb2016-08-08 09:51:21 -0400124 struct
125 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126 /* Adjacency from destination IP address lookup [VLIB_TX].
Dave Barachba868bb2016-08-08 09:51:21 -0400127 Adjacency from source IP address lookup [VLIB_RX].
128 This gets set to ~0 until source lookup is performed. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129 u32 adj_index[VLIB_N_RX_TX];
130
Dave Barachba868bb2016-08-08 09:51:21 -0400131 union
132 {
133 struct
134 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700135 /* Flow hash value for this packet computed from IP src/dst address
136 protocol and ports. */
137 u32 flow_hash;
138
Florin Corascea194d2017-10-02 00:18:51 -0700139 union
140 {
141 /* next protocol */
142 u32 save_protocol;
143
144 /* Hint for transport protocols */
145 u32 fib_index;
146 };
Dave Barachc7493e12016-08-24 18:36:03 -0400147
148 /* Rewrite length */
149 u32 save_rewrite_length;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800150
151 /* MFIB RPF ID */
152 u32 rpf_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153 };
154
Ole Troancda94822016-01-07 14:37:25 +0100155 /* ICMP */
Dave Barachba868bb2016-08-08 09:51:21 -0400156 struct
157 {
Ole Troancda94822016-01-07 14:37:25 +0100158 u8 type;
159 u8 code;
160 u32 data;
161 } icmp;
Klement Sekera75e7d132017-09-20 08:26:30 +0200162
163 /* reassembly */
164 struct
165 {
166 u16 fragment_first;
167 u16 fragment_last;
168 u16 range_first;
169 u16 range_last;
170 u32 next_range_bi;
171 u16 ip6_frag_hdr_offset;
172 u16 estimated_mtu;
173 } reass;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174 };
Klement Sekera0e3c0de2016-09-29 14:43:44 +0200175
Ed Warnickecb9cada2015-12-08 15:45:58 -0700176 } ip;
177
Neale Rannsad422ed2016-11-02 14:20:04 +0000178 /*
179 * MPLS:
180 * data copied from the MPLS header that was popped from the packet
181 * during the look-up.
182 */
183 struct
184 {
Neale Ranns31ed7442018-02-23 05:29:09 -0800185 /* do not overlay w/ ip.adj_index[0,1] nor flow hash */
186 u32 pad[VLIB_N_RX_TX + 1];
Neale Rannsad422ed2016-11-02 14:20:04 +0000187 u8 ttl;
188 u8 exp;
189 u8 first;
Neale Ranns039cbfe2018-02-27 03:45:38 -0800190 /* Rewrite length */
191 u32 save_rewrite_length;
Neale Ranns91286372017-12-05 13:24:04 -0800192 /*
193 * BIER - the nubmer of bytes in the header.
194 * the len field inthe header is not authoritative. It's the
195 * value in the table that counts.
196 */
197 struct
198 {
199 u8 n_bytes;
200 } bier;
Neale Rannsad422ed2016-11-02 14:20:04 +0000201 } mpls;
202
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203 /* ip4-in-ip6 softwire termination, only valid there */
Dave Barachba868bb2016-08-08 09:51:21 -0400204 struct
205 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700206 u8 swt_disable;
207 u32 mapping_index;
208 } swt;
209
210 /* l2 bridging path, only valid there */
Eyal Baria11832f2017-06-21 15:32:13 +0300211 struct opaque_l2
Dave Barachba868bb2016-08-08 09:51:21 -0400212 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700213 u32 feature_bitmap;
John Loda1f2c72017-03-24 20:11:15 -0400214 u16 bd_index; /* bridge-domain index */
215 u8 l2_len; /* ethernet header length */
216 u8 shg; /* split-horizon group */
Eyal Bari7537e712017-04-27 14:07:55 +0300217 u16 l2fib_sn; /* l2fib bd/int seq_num */
John Lo5a6508d2017-10-03 13:13:47 -0400218 u8 bd_age; /* aging enabled */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219 } l2;
220
221 /* l2tpv3 softwire encap, only valid there */
Dave Barachba868bb2016-08-08 09:51:21 -0400222 struct
223 {
224 u32 pad[4]; /* do not overlay w/ ip.adj_index[0,1] */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225 u8 next_index;
226 u32 session_index;
227 } l2t;
228
Dave Barachba868bb2016-08-08 09:51:21 -0400229 struct
230 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231 u32 src, dst;
232 } gre;
233
234 /* L2 classify */
Dave Barachba868bb2016-08-08 09:51:21 -0400235 struct
236 {
Eyal Baria11832f2017-06-21 15:32:13 +0300237 struct opaque_l2 pad;
Eyal Bari0f360dc2017-06-14 13:11:20 +0300238 union
239 {
240 u32 table_index;
241 u32 opaque_index;
242 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700243 u64 hash;
244 } l2_classify;
245
246 /* IO - worker thread handoff */
Dave Barachba868bb2016-08-08 09:51:21 -0400247 struct
248 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249 u32 next_index;
Damjan Marion0247b462016-06-08 01:37:11 +0200250 } handoff;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251
252 /* vnet policer */
Dave Barachba868bb2016-08-08 09:51:21 -0400253 struct
254 {
255 u32 pad[8 - VLIB_N_RX_TX - 1]; /* to end of opaque */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256 u32 index;
257 } policer;
258
259 /* interface output features */
Dave Barachba868bb2016-08-08 09:51:21 -0400260 struct
261 {
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100262 u32 flags;
263 u32 sad_index;
264 } ipsec;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700265
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266 /* MAP */
Dave Barachba868bb2016-08-08 09:51:21 -0400267 struct
268 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269 u16 mtu;
270 } map;
271
272 /* MAP-T */
Dave Barachba868bb2016-08-08 09:51:21 -0400273 struct
274 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275 u32 map_domain_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400276 struct
277 {
278 u32 saddr, daddr;
279 u16 frag_offset; //Fragmentation header offset
280 u16 l4_offset; //L4 header overall offset
281 u8 l4_protocol; //The final protocol number
282 } v6; //Used by ip6_map_t only
283 u16 checksum_offset; //L4 checksum overall offset
284 u16 mtu; //Exit MTU
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285 } map_t;
286
287 /* IP Fragmentation */
Dave Barachba868bb2016-08-08 09:51:21 -0400288 struct
289 {
Vijayabhaskar Katamreddyc592ca52018-01-25 15:12:11 -0800290 u32 pad[2]; /* do not overlay w/ ip.adj_index[0,1] */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291 u16 header_offset;
292 u16 mtu;
293 u8 next_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400294 u8 flags; //See ip_frag.h
Ed Warnickecb9cada2015-12-08 15:45:58 -0700295 } ip_frag;
296
Dave Barachc07bf5d2016-02-17 17:52:26 -0500297 /* COP - configurable junk filter(s) */
Dave Barachba868bb2016-08-08 09:51:21 -0400298 struct
299 {
300 /* Current configuration index. */
301 u32 current_config_index;
Dave Barachc07bf5d2016-02-17 17:52:26 -0500302 } cop;
303
Florin Coras1a1adc72016-07-22 01:45:30 +0200304 /* LISP */
Dave Barachba868bb2016-08-08 09:51:21 -0400305 struct
306 {
Florin Coras1a1adc72016-07-22 01:45:30 +0200307 /* overlay address family */
308 u16 overlay_afi;
309 } lisp;
310
Damjan Marion22311502016-10-28 20:30:15 +0200311 /* Driver rx feature */
312 struct
313 {
314 u32 saved_next_index; /**< saved by drivers for short-cut */
315 u16 buffer_advance;
316 } device_input_feat;
317
Dave Barach68b0fb02017-02-28 15:15:56 -0500318 /* TCP */
319 struct
320 {
321 u32 connection_index;
322 u32 seq_number;
323 u32 seq_end;
324 u32 ack_number;
Florin Coras82b13a82017-04-25 11:58:06 -0700325 u16 hdr_offset; /**< offset relative to ip hdr */
326 u16 data_offset; /**< offset relative to ip hdr */
327 u16 data_len; /**< data len */
Dave Barach68b0fb02017-02-28 15:15:56 -0500328 u8 flags;
329 } tcp;
330
Marco Varlese191a5942017-10-30 18:17:21 +0100331 /* SCTP */
332 struct
333 {
334 u32 connection_index;
335 u16 sid; /**< Stream ID */
336 u16 ssn; /**< Stream Sequence Number */
337 u32 tsn; /**< Transmission Sequence Number */
338 u16 hdr_offset; /**< offset relative to ip hdr */
339 u16 data_offset; /**< offset relative to ip hdr */
340 u16 data_len; /**< data len */
Marco Varlese15cc6a82018-02-21 12:39:52 +0100341 u8 subconn_idx; /**< index of the sub_connection being used */
Marco Varlese191a5942017-10-30 18:17:21 +0100342 u8 flags;
343 } sctp;
344
Matus Fabian161c59c2017-07-21 03:46:03 -0700345 /* SNAT */
346 struct
347 {
348 u32 flags;
349 } snat;
350
Ed Warnickecb9cada2015-12-08 15:45:58 -0700351 u32 unused[6];
352 };
353} vnet_buffer_opaque_t;
354
Neale Rannsad422ed2016-11-02 14:20:04 +0000355/*
356 * The opaque field of the vlib_buffer_t is intepreted as a
357 * vnet_buffer_opaque_t. Hence it should be big enough to accommodate one.
358 */
Eyal Baria11832f2017-06-21 15:32:13 +0300359STATIC_ASSERT (sizeof (vnet_buffer_opaque_t) <=
360 STRUCT_SIZE_OF (vlib_buffer_t, opaque),
Neale Rannsad422ed2016-11-02 14:20:04 +0000361 "VNET buffer meta-data too large for vlib_buffer");
362
Ed Warnickecb9cada2015-12-08 15:45:58 -0700363#define vnet_buffer(b) ((vnet_buffer_opaque_t *) (b)->opaque)
364
365/* Full cache line (64 bytes) of additional space */
Dave Barachba868bb2016-08-08 09:51:21 -0400366typedef struct
367{
Neale Ranns039cbfe2018-02-27 03:45:38 -0800368 /**
369 * QoS marking data that needs to persist from the recording nodes
370 * (nominally in the ingress path) to the marking node (in the
371 * egress path)
372 */
373 struct
374 {
375 u8 bits;
376 u8 source;
377 } qos;
378
379 u8 __unused[2];
380
Dave Barachba868bb2016-08-08 09:51:21 -0400381 union
382 {
Dave Barach7bee7732017-10-18 18:48:11 -0400383 struct
384 {
Neale Ranns039cbfe2018-02-27 03:45:38 -0800385#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
386 /* buffer trajectory tracing */
Dave Barach7bee7732017-10-18 18:48:11 -0400387 u16 *trajectory_trace;
Dave Barach7bee7732017-10-18 18:48:11 -0400388#endif
Neale Ranns039cbfe2018-02-27 03:45:38 -0800389 };
390 u32 unused[11];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700391 };
392} vnet_buffer_opaque2_t;
393
Dave Barach7bee7732017-10-18 18:48:11 -0400394#define vnet_buffer2(b) ((vnet_buffer_opaque2_t *) (b)->opaque2)
395
396/*
397 * The opaque2 field of the vlib_buffer_t is intepreted as a
398 * vnet_buffer_opaque2_t. Hence it should be big enough to accommodate one.
399 */
400STATIC_ASSERT (sizeof (vnet_buffer_opaque2_t) <=
401 STRUCT_SIZE_OF (vlib_buffer_t, opaque2),
402 "VNET buffer opaque2 meta-data too large for vlib_buffer");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700403
Damjan Marionbd846cd2017-11-21 13:12:41 +0100404format_function_t format_vnet_buffer;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700405
406#endif /* included_vnet_buffer_h */
Dave Barachba868bb2016-08-08 09:51:21 -0400407
408/*
409 * fd.io coding-style-patch-verification: ON
410 *
411 * Local Variables:
412 * eval: (c-set-style "gnu")
413 * End:
414 */