blob: d160ae8c9af46f3158b9954710af281c093739ce [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
Dave Baracha5fb0ec2018-12-03 19:07:09 -050047 *
Neale Rannsf068c3e2018-01-03 04:18:48 -080048 */
Dave Barach7fff3d22018-11-27 16:52:59 -050049#define foreach_vnet_buffer_flag \
50 _( 1, L4_CHECKSUM_COMPUTED, "l4-cksum-computed", 1) \
51 _( 2, L4_CHECKSUM_CORRECT, "l4-cksum-correct", 1) \
52 _( 3, VLAN_2_DEEP, "vlan-2-deep", 1) \
53 _( 4, VLAN_1_DEEP, "vlan-1-deep", 1) \
54 _( 5, SPAN_CLONE, "span-clone", 1) \
55 _( 6, LOOP_COUNTER_VALID, "loop-counter-valid", 0) \
56 _( 7, LOCALLY_ORIGINATED, "local", 1) \
57 _( 8, IS_IP4, "ip4", 1) \
58 _( 9, IS_IP6, "ip6", 1) \
59 _(10, OFFLOAD_IP_CKSUM, "offload-ip-cksum", 1) \
60 _(11, OFFLOAD_TCP_CKSUM, "offload-tcp-cksum", 1) \
61 _(12, OFFLOAD_UDP_CKSUM, "offload-udp-cksum", 1) \
62 _(13, IS_NATED, "natted", 1) \
63 _(14, L2_HDR_OFFSET_VALID, "l2_hdr_offset_valid", 0) \
64 _(15, L3_HDR_OFFSET_VALID, "l3_hdr_offset_valid", 0) \
65 _(16, L4_HDR_OFFSET_VALID, "l4_hdr_offset_valid", 0) \
66 _(17, FLOW_REPORT, "flow-report", 1) \
67 _(18, IS_DVR, "dvr", 1) \
Dave Baracha5fb0ec2018-12-03 19:07:09 -050068 _(19, QOS_DATA_VALID, "qos-data-valid", 0) \
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +020069 _(20, GSO, "gso", 0) \
70 _(21, AVAIL1, "avail1", 1) \
71 _(22, AVAIL2, "avail2", 1) \
72 _(23, AVAIL3, "avail3", 1) \
73 _(24, AVAIL4, "avail4", 1) \
74 _(25, AVAIL5, "avail5", 1) \
75 _(26, AVAIL6, "avail6", 1) \
76 _(27, AVAIL7, "avail7", 1)
Dave Baracha5fb0ec2018-12-03 19:07:09 -050077
78/*
79 * Please allocate the FIRST available bit, redefine
80 * AVAIL 1 ... AVAILn-1, and remove AVAILn. Please maintain the
81 * VNET_BUFFER_FLAGS_ALL_AVAIL definition.
82 */
83
84#define VNET_BUFFER_FLAGS_ALL_AVAIL \
85 (VNET_BUFFER_F_AVAIL1 | VNET_BUFFER_F_AVAIL2 | VNET_BUFFER_F_AVAIL3 | \
86 VNET_BUFFER_F_AVAIL4 | VNET_BUFFER_F_AVAIL5 | VNET_BUFFER_F_AVAIL6 | \
87 VNET_BUFFER_F_AVAIL7)
Ed Warnickecb9cada2015-12-08 15:45:58 -070088
Damjan Marion213b5aa2017-07-13 21:19:27 +020089#define VNET_BUFFER_FLAGS_VLAN_BITS \
90 (VNET_BUFFER_F_VLAN_1_DEEP | VNET_BUFFER_F_VLAN_2_DEEP)
Chris Luke194ebc52016-04-25 14:26:55 -040091
Damjan Marion213b5aa2017-07-13 21:19:27 +020092enum
93{
Dave Barach7fff3d22018-11-27 16:52:59 -050094#define _(bit, name, s, v) VNET_BUFFER_F_##name = (1 << LOG2_VLIB_BUFFER_FLAG_USER(bit)),
Damjan Mariondac03522018-02-01 15:30:13 +010095 foreach_vnet_buffer_flag
Damjan Marion213b5aa2017-07-13 21:19:27 +020096#undef _
97};
Damjan Marion0247b462016-06-08 01:37:11 +020098
Damjan Marion213b5aa2017-07-13 21:19:27 +020099enum
100{
Dave Barach7fff3d22018-11-27 16:52:59 -0500101#define _(bit, name, s, v) VNET_BUFFER_F_LOG2_##name = LOG2_VLIB_BUFFER_FLAG_USER(bit),
Damjan Mariondac03522018-02-01 15:30:13 +0100102 foreach_vnet_buffer_flag
Damjan Marion213b5aa2017-07-13 21:19:27 +0200103#undef _
104};
Damjan Marion67655492016-11-15 12:50:28 +0100105
Dave Baracha5fb0ec2018-12-03 19:07:09 -0500106/* Make sure that the vnet and vlib bits are disjoint */
107STATIC_ASSERT (((VNET_BUFFER_FLAGS_ALL_AVAIL & VLIB_BUFFER_FLAGS_ALL) == 0),
108 "VLIB / VNET buffer flags overlap");
109
Ed Warnickecb9cada2015-12-08 15:45:58 -0700110#define foreach_buffer_opaque_union_subtype \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700111_(ip) \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112_(l2) \
113_(l2t) \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114_(l2_classify) \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115_(policer) \
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100116_(ipsec) \
Ole Troancda94822016-01-07 14:37:25 +0100117_(map) \
118_(map_t) \
Florin Coras82b13a82017-04-25 11:58:06 -0700119_(ip_frag) \
Neale Rannsd792d9c2017-10-21 10:53:20 -0700120_(mpls) \
Florin Coras82b13a82017-04-25 11:58:06 -0700121_(tcp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122
Dave Barachba868bb2016-08-08 09:51:21 -0400123/*
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124 * vnet stack buffer opaque array overlay structure.
125 * The vnet_buffer_opaque_t *must* be the same size as the
126 * vlib_buffer_t "opaque" structure member, 32 bytes.
127 *
128 * When adding a union type, please add a stanza to
129 * foreach_buffer_opaque_union_subtype (directly above).
130 * Code in vnet_interface_init(...) verifies the size
131 * of the union, and will announce any deviations in an
132 * impossible-to-miss manner.
133 */
Dave Barachba868bb2016-08-08 09:51:21 -0400134typedef struct
135{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136 u32 sw_if_index[VLIB_N_RX_TX];
Damjan Marion072401e2017-07-13 18:53:27 +0200137 i16 l2_hdr_offset;
138 i16 l3_hdr_offset;
139 i16 l4_hdr_offset;
Damjan Marionaa682a32018-04-26 22:45:40 +0200140 u8 feature_arc_index;
141 u8 dont_waste_me;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142
Dave Barachba868bb2016-08-08 09:51:21 -0400143 union
144 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145 /* IP4/6 buffer opaque. */
Dave Barachba868bb2016-08-08 09:51:21 -0400146 struct
147 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148 /* Adjacency from destination IP address lookup [VLIB_TX].
Dave Barachba868bb2016-08-08 09:51:21 -0400149 Adjacency from source IP address lookup [VLIB_RX].
150 This gets set to ~0 until source lookup is performed. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151 u32 adj_index[VLIB_N_RX_TX];
152
Dave Barachba868bb2016-08-08 09:51:21 -0400153 union
154 {
155 struct
156 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157 /* Flow hash value for this packet computed from IP src/dst address
158 protocol and ports. */
159 u32 flow_hash;
160
Florin Corascea194d2017-10-02 00:18:51 -0700161 union
162 {
163 /* next protocol */
164 u32 save_protocol;
165
166 /* Hint for transport protocols */
167 u32 fib_index;
168 };
Dave Barachc7493e12016-08-24 18:36:03 -0400169
170 /* Rewrite length */
171 u32 save_rewrite_length;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800172
173 /* MFIB RPF ID */
174 u32 rpf_id;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175 };
176
Ole Troancda94822016-01-07 14:37:25 +0100177 /* ICMP */
Dave Barachba868bb2016-08-08 09:51:21 -0400178 struct
179 {
Ole Troancda94822016-01-07 14:37:25 +0100180 u8 type;
181 u8 code;
182 u32 data;
183 } icmp;
Klement Sekera75e7d132017-09-20 08:26:30 +0200184
185 /* reassembly */
Klement Sekera4c533132018-02-22 11:41:12 +0100186 union
Klement Sekera75e7d132017-09-20 08:26:30 +0200187 {
Klement Sekerade34c352019-06-25 11:19:22 +0000188 /* group input/handoff as handoff is done before input is consumed,
189 * this way we can handoff while keeping input variables intact */
Klement Sekera4c533132018-02-22 11:41:12 +0100190 struct
191 {
Klement Sekerade34c352019-06-25 11:19:22 +0000192 /* input variables */
193 struct
194 {
195 u32 next_index; /* index of next node - used by custom apps */
196 u32 error_next_index; /* index of next node if error - used by custom apps */
197 };
198 /* handoff variables */
199 struct
200 {
201 u16 owner_thread_index;
202 };
203 };
204 /* output variables */
205 struct
206 {
207 union
208 {
209 /* shallow virtual reassembly output variables */
210 struct
211 {
212 u8 ip_proto; /* protocol in ip header */
213 u16 l4_src_port; /* tcp/udp/icmp src port */
214 u16 l4_dst_port; /* tcp/udp/icmp dst port */
215 };
216 /* full reassembly output variables */
217 struct
218 {
219 u16 estimated_mtu; /* estimated MTU calculated during reassembly */
220 };
221 };
Klement Sekera4c533132018-02-22 11:41:12 +0100222 };
223 /* internal variables used during reassembly */
224 struct
225 {
226 u16 fragment_first;
227 u16 fragment_last;
228 u16 range_first;
229 u16 range_last;
230 u32 next_range_bi;
231 u16 ip6_frag_hdr_offset;
232 };
Klement Sekera75e7d132017-09-20 08:26:30 +0200233 } reass;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234 };
235 } ip;
236
Neale Rannsad422ed2016-11-02 14:20:04 +0000237 /*
238 * MPLS:
239 * data copied from the MPLS header that was popped from the packet
240 * during the look-up.
241 */
242 struct
243 {
Neale Ranns31ed7442018-02-23 05:29:09 -0800244 /* do not overlay w/ ip.adj_index[0,1] nor flow hash */
245 u32 pad[VLIB_N_RX_TX + 1];
Neale Rannsad422ed2016-11-02 14:20:04 +0000246 u8 ttl;
247 u8 exp;
248 u8 first;
Rajesh Goeld6f1c9c2019-10-06 13:17:36 +0530249 u8 pyld_proto:3; /* dpo_proto_t */
250 u8 rsvd:5;
Neale Ranns039cbfe2018-02-27 03:45:38 -0800251 /* Rewrite length */
252 u32 save_rewrite_length;
Rajesh Goeld6f1c9c2019-10-06 13:17:36 +0530253 /* Save the mpls header length including all label stack */
254 u8 mpls_hdr_length;
Neale Ranns91286372017-12-05 13:24:04 -0800255 /*
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700256 * BIER - the number of bytes in the header.
257 * the len field in the header is not authoritative. It's the
Neale Ranns91286372017-12-05 13:24:04 -0800258 * value in the table that counts.
259 */
260 struct
261 {
262 u8 n_bytes;
263 } bier;
Neale Rannsad422ed2016-11-02 14:20:04 +0000264 } mpls;
265
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266 /* l2 bridging path, only valid there */
Eyal Baria11832f2017-06-21 15:32:13 +0300267 struct opaque_l2
Dave Barachba868bb2016-08-08 09:51:21 -0400268 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269 u32 feature_bitmap;
John Loda1f2c72017-03-24 20:11:15 -0400270 u16 bd_index; /* bridge-domain index */
Neale Rannsa342da22019-06-06 10:35:07 +0000271 u16 l2fib_sn; /* l2fib bd/int seq_num */
John Loda1f2c72017-03-24 20:11:15 -0400272 u8 l2_len; /* ethernet header length */
273 u8 shg; /* split-horizon group */
John Lo5a6508d2017-10-03 13:13:47 -0400274 u8 bd_age; /* aging enabled */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275 } l2;
276
277 /* l2tpv3 softwire encap, only valid there */
Dave Barachba868bb2016-08-08 09:51:21 -0400278 struct
279 {
280 u32 pad[4]; /* do not overlay w/ ip.adj_index[0,1] */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281 u8 next_index;
282 u32 session_index;
283 } l2t;
284
Ed Warnickecb9cada2015-12-08 15:45:58 -0700285 /* L2 classify */
Dave Barachba868bb2016-08-08 09:51:21 -0400286 struct
287 {
Eyal Baria11832f2017-06-21 15:32:13 +0300288 struct opaque_l2 pad;
Eyal Bari0f360dc2017-06-14 13:11:20 +0300289 union
290 {
291 u32 table_index;
292 u32 opaque_index;
293 };
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294 u64 hash;
295 } l2_classify;
296
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297 /* vnet policer */
Dave Barachba868bb2016-08-08 09:51:21 -0400298 struct
299 {
300 u32 pad[8 - VLIB_N_RX_TX - 1]; /* to end of opaque */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700301 u32 index;
302 } policer;
303
304 /* interface output features */
Dave Barachba868bb2016-08-08 09:51:21 -0400305 struct
306 {
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100307 u32 sad_index;
Neale Rannsc87b66c2019-02-07 07:26:12 -0800308 u32 protect_index;
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100309 } ipsec;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310
Ed Warnickecb9cada2015-12-08 15:45:58 -0700311 /* MAP */
Dave Barachba868bb2016-08-08 09:51:21 -0400312 struct
313 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700314 u16 mtu;
315 } map;
316
317 /* MAP-T */
Dave Barachba868bb2016-08-08 09:51:21 -0400318 struct
319 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700320 u32 map_domain_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400321 struct
322 {
323 u32 saddr, daddr;
324 u16 frag_offset; //Fragmentation header offset
325 u16 l4_offset; //L4 header overall offset
326 u8 l4_protocol; //The final protocol number
327 } v6; //Used by ip6_map_t only
328 u16 checksum_offset; //L4 checksum overall offset
329 u16 mtu; //Exit MTU
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330 } map_t;
331
332 /* IP Fragmentation */
Dave Barachba868bb2016-08-08 09:51:21 -0400333 struct
334 {
Vijayabhaskar Katamreddyc592ca52018-01-25 15:12:11 -0800335 u32 pad[2]; /* do not overlay w/ ip.adj_index[0,1] */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336 u16 mtu;
337 u8 next_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400338 u8 flags; //See ip_frag.h
Ed Warnickecb9cada2015-12-08 15:45:58 -0700339 } ip_frag;
340
Dave Barachc07bf5d2016-02-17 17:52:26 -0500341 /* COP - configurable junk filter(s) */
Dave Barachba868bb2016-08-08 09:51:21 -0400342 struct
343 {
344 /* Current configuration index. */
345 u32 current_config_index;
Dave Barachc07bf5d2016-02-17 17:52:26 -0500346 } cop;
347
Florin Coras1a1adc72016-07-22 01:45:30 +0200348 /* LISP */
Dave Barachba868bb2016-08-08 09:51:21 -0400349 struct
350 {
Florin Coras1a1adc72016-07-22 01:45:30 +0200351 /* overlay address family */
352 u16 overlay_afi;
353 } lisp;
354
Dave Barach68b0fb02017-02-28 15:15:56 -0500355 /* TCP */
356 struct
357 {
358 u32 connection_index;
Florin Coras07beade2019-06-20 12:18:31 -0700359 union
360 {
361 u32 seq_number;
362 u32 next_node_opaque;
363 };
Dave Barach68b0fb02017-02-28 15:15:56 -0500364 u32 seq_end;
365 u32 ack_number;
Florin Coras82b13a82017-04-25 11:58:06 -0700366 u16 hdr_offset; /**< offset relative to ip hdr */
367 u16 data_offset; /**< offset relative to ip hdr */
368 u16 data_len; /**< data len */
Dave Barach68b0fb02017-02-28 15:15:56 -0500369 u8 flags;
370 } tcp;
371
Matus Fabian161c59c2017-07-21 03:46:03 -0700372 /* SNAT */
373 struct
374 {
375 u32 flags;
376 } snat;
377
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378 u32 unused[6];
379 };
380} vnet_buffer_opaque_t;
381
Neale Rannsad422ed2016-11-02 14:20:04 +0000382/*
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700383 * The opaque field of the vlib_buffer_t is interpreted as a
Neale Rannsad422ed2016-11-02 14:20:04 +0000384 * vnet_buffer_opaque_t. Hence it should be big enough to accommodate one.
385 */
Eyal Baria11832f2017-06-21 15:32:13 +0300386STATIC_ASSERT (sizeof (vnet_buffer_opaque_t) <=
387 STRUCT_SIZE_OF (vlib_buffer_t, opaque),
Neale Rannsad422ed2016-11-02 14:20:04 +0000388 "VNET buffer meta-data too large for vlib_buffer");
389
Ed Warnickecb9cada2015-12-08 15:45:58 -0700390#define vnet_buffer(b) ((vnet_buffer_opaque_t *) (b)->opaque)
391
392/* Full cache line (64 bytes) of additional space */
Dave Barachba868bb2016-08-08 09:51:21 -0400393typedef struct
394{
Neale Ranns039cbfe2018-02-27 03:45:38 -0800395 /**
396 * QoS marking data that needs to persist from the recording nodes
397 * (nominally in the ingress path) to the marking node (in the
398 * egress path)
399 */
400 struct
401 {
402 u8 bits;
403 u8 source;
404 } qos;
405
Neale Rannsce9e0b42018-08-01 12:53:17 -0700406 u8 loop_counter;
407 u8 __unused[1];
Neale Ranns039cbfe2018-02-27 03:45:38 -0800408
Neale Ranns25b04942018-04-04 09:34:50 -0700409 /* Group Based Policy */
410 struct
411 {
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200412 u8 __unused;
413 u8 flags;
Neale Ranns4ba67722019-02-28 11:11:39 +0000414 u16 sclass;
Neale Ranns25b04942018-04-04 09:34:50 -0700415 } gbp;
416
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200417 /**
418 * The L4 payload size set on input on GSO enabled interfaces
419 * when we receive a GSO packet (a chain of buffers with the first one
420 * having GSO bit set), and needs to persist all the way to the interface-output,
421 * in case the egress interface is not GSO-enabled - then we need to perform
422 * the segmentation, and use this value to cut the payload appropriately.
423 */
424 u16 gso_size;
425 /* size of L4 prototol header */
426 u16 gso_l4_hdr_sz;
427
428 /* The union below has a u64 alignment, so this space is unused */
429 u32 __unused2[1];
430
Dave Barachba868bb2016-08-08 09:51:21 -0400431 union
432 {
Dave Barach7bee7732017-10-18 18:48:11 -0400433 struct
434 {
Neale Ranns039cbfe2018-02-27 03:45:38 -0800435#if VLIB_BUFFER_TRACE_TRAJECTORY > 0
436 /* buffer trajectory tracing */
Dave Barach7bee7732017-10-18 18:48:11 -0400437 u16 *trajectory_trace;
Dave Barach7bee7732017-10-18 18:48:11 -0400438#endif
Neale Ranns039cbfe2018-02-27 03:45:38 -0800439 };
Dave Barach78c56892018-05-16 11:34:35 -0400440 struct
441 {
442 u64 pad[1];
443 u64 pg_replay_timestamp;
444 };
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200445 u32 unused[8];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700446 };
447} vnet_buffer_opaque2_t;
448
Dave Barach7bee7732017-10-18 18:48:11 -0400449#define vnet_buffer2(b) ((vnet_buffer_opaque2_t *) (b)->opaque2)
450
451/*
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700452 * The opaque2 field of the vlib_buffer_t is interpreted as a
Dave Barach7bee7732017-10-18 18:48:11 -0400453 * vnet_buffer_opaque2_t. Hence it should be big enough to accommodate one.
454 */
455STATIC_ASSERT (sizeof (vnet_buffer_opaque2_t) <=
456 STRUCT_SIZE_OF (vlib_buffer_t, opaque2),
457 "VNET buffer opaque2 meta-data too large for vlib_buffer");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700458
Mohsin Kazmi0f09a472019-07-12 13:18:16 +0200459#define gso_mtu_sz(b) (vnet_buffer2(b)->gso_size + \
460 vnet_buffer2(b)->gso_l4_hdr_sz + \
461 vnet_buffer(b)->l4_hdr_offset - \
462 vnet_buffer (b)->l3_hdr_offset)
Andrew Yourtchenko6a7cff72018-10-12 16:09:22 +0200463
464
Damjan Marionbd846cd2017-11-21 13:12:41 +0100465format_function_t format_vnet_buffer;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700466
467#endif /* included_vnet_buffer_h */
Dave Barachba868bb2016-08-08 09:51:21 -0400468
469/*
470 * fd.io coding-style-patch-verification: ON
471 *
472 * Local Variables:
473 * eval: (c-set-style "gnu")
474 * End:
475 */