Remove unused GRE buffer meta-data
[vpp.git] / src / vnet / buffer.h
1 /*
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
45 /**
46  * Flags that are set in the high order bits of ((vlib_buffer*)b)->flags
47  */
48 #define foreach_vnet_buffer_flag \
49   _( 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")                     \
53   _( 5, SPAN_CLONE, "span-clone")                       \
54   _( 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)                         \
64   _(16, L4_HDR_OFFSET_VALID, 0)                         \
65   _(17, FLOW_REPORT, "flow-report")                     \
66   _(18, IS_DVR, "dvr")                                  \
67   _(19, QOS_DATA_VALID, 0)
68
69 #define VNET_BUFFER_FLAGS_VLAN_BITS \
70   (VNET_BUFFER_F_VLAN_1_DEEP | VNET_BUFFER_F_VLAN_2_DEEP)
71
72 enum
73 {
74 #define _(bit, name, v) VNET_BUFFER_F_##name  = (1 << LOG2_VLIB_BUFFER_FLAG_USER(bit)),
75   foreach_vnet_buffer_flag
76 #undef _
77 };
78
79 enum
80 {
81 #define _(bit, name, v) VNET_BUFFER_F_LOG2_##name  = LOG2_VLIB_BUFFER_FLAG_USER(bit),
82   foreach_vnet_buffer_flag
83 #undef _
84 };
85
86 #define foreach_buffer_opaque_union_subtype     \
87 _(ip)                                           \
88 _(swt)                                          \
89 _(l2)                                           \
90 _(l2t)                                          \
91 _(l2_classify)                                  \
92 _(handoff)                                      \
93 _(policer)                                      \
94 _(ipsec)                                        \
95 _(map)                                          \
96 _(map_t)                                        \
97 _(ip_frag)                                      \
98 _(mpls)                                         \
99 _(tcp)
100
101 /*
102  * 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  */
112 typedef struct
113 {
114   u32 sw_if_index[VLIB_N_RX_TX];
115   i16 l2_hdr_offset;
116   i16 l3_hdr_offset;
117   i16 l4_hdr_offset;
118   u8 feature_arc_index;
119   u8 dont_waste_me;
120
121   union
122   {
123     /* IP4/6 buffer opaque. */
124     struct
125     {
126       /* Adjacency from destination IP address lookup [VLIB_TX].
127          Adjacency from source IP address lookup [VLIB_RX].
128          This gets set to ~0 until source lookup is performed. */
129       u32 adj_index[VLIB_N_RX_TX];
130
131       union
132       {
133         struct
134         {
135           /* Flow hash value for this packet computed from IP src/dst address
136              protocol and ports. */
137           u32 flow_hash;
138
139           union
140           {
141             /* next protocol */
142             u32 save_protocol;
143
144             /* Hint for transport protocols */
145             u32 fib_index;
146           };
147
148           /* Rewrite length */
149           u32 save_rewrite_length;
150
151           /* MFIB RPF ID */
152           u32 rpf_id;
153         };
154
155         /* ICMP */
156         struct
157         {
158           u8 type;
159           u8 code;
160           u32 data;
161         } icmp;
162
163         /* reassembly */
164         union
165         {
166           /* in/out variables */
167           struct
168           {
169             u32 next_index;     /* index of next node - ignored if "feature" node */
170             u16 estimated_mtu;  /* estimated MTU calculated during reassembly */
171           };
172           /* internal variables used during reassembly */
173           struct
174           {
175             u16 fragment_first;
176             u16 fragment_last;
177             u16 range_first;
178             u16 range_last;
179             u32 next_range_bi;
180             u16 ip6_frag_hdr_offset;
181           };
182         } reass;
183       };
184
185     } ip;
186
187     /*
188      * MPLS:
189      * data copied from the MPLS header that was popped from the packet
190      * during the look-up.
191      */
192     struct
193     {
194       /* do not overlay w/ ip.adj_index[0,1] nor flow hash */
195       u32 pad[VLIB_N_RX_TX + 1];
196       u8 ttl;
197       u8 exp;
198       u8 first;
199       /* Rewrite length */
200       u32 save_rewrite_length;
201       /*
202        * BIER - the nubmer of bytes in the header.
203        *  the len field inthe header is not authoritative. It's the
204        * value in the table that counts.
205        */
206       struct
207       {
208         u8 n_bytes;
209       } bier;
210     } mpls;
211
212     /* ip4-in-ip6 softwire termination, only valid there */
213     struct
214     {
215       u8 swt_disable;
216       u32 mapping_index;
217     } swt;
218
219     /* l2 bridging path, only valid there */
220     struct opaque_l2
221     {
222       u32 feature_bitmap;
223       u16 bd_index;             /* bridge-domain index */
224       u8 l2_len;                /* ethernet header length */
225       u8 shg;                   /* split-horizon group */
226       u16 l2fib_sn;             /* l2fib bd/int seq_num */
227       u8 bd_age;                /* aging enabled */
228     } l2;
229
230     /* l2tpv3 softwire encap, only valid there */
231     struct
232     {
233       u32 pad[4];               /* do not overlay w/ ip.adj_index[0,1] */
234       u8 next_index;
235       u32 session_index;
236     } l2t;
237
238     /* L2 classify */
239     struct
240     {
241       struct opaque_l2 pad;
242       union
243       {
244         u32 table_index;
245         u32 opaque_index;
246       };
247       u64 hash;
248     } l2_classify;
249
250     /* IO - worker thread handoff */
251     struct
252     {
253       u32 next_index;
254     } handoff;
255
256     /* vnet policer */
257     struct
258     {
259       u32 pad[8 - VLIB_N_RX_TX - 1];    /* to end of opaque */
260       u32 index;
261     } policer;
262
263     /* interface output features */
264     struct
265     {
266       u32 flags;
267       u32 sad_index;
268     } ipsec;
269
270     /* MAP */
271     struct
272     {
273       u16 mtu;
274     } map;
275
276     /* MAP-T */
277     struct
278     {
279       u32 map_domain_index;
280       struct
281       {
282         u32 saddr, daddr;
283         u16 frag_offset;        //Fragmentation header offset
284         u16 l4_offset;          //L4 header overall offset
285         u8 l4_protocol;         //The final protocol number
286       } v6;                     //Used by ip6_map_t only
287       u16 checksum_offset;      //L4 checksum overall offset
288       u16 mtu;                  //Exit MTU
289     } map_t;
290
291     /* IP Fragmentation */
292     struct
293     {
294       u32 pad[2];               /* do not overlay w/ ip.adj_index[0,1] */
295       u16 header_offset;
296       u16 mtu;
297       u8 next_index;
298       u8 flags;                 //See ip_frag.h
299     } ip_frag;
300
301     /* COP - configurable junk filter(s) */
302     struct
303     {
304       /* Current configuration index. */
305       u32 current_config_index;
306     } cop;
307
308     /* LISP */
309     struct
310     {
311       /* overlay address family */
312       u16 overlay_afi;
313     } lisp;
314
315     /* Driver rx feature */
316     struct
317     {
318       u32 saved_next_index;             /**< saved by drivers for short-cut */
319       u16 buffer_advance;
320     } device_input_feat;
321
322     /* TCP */
323     struct
324     {
325       u32 connection_index;
326       u32 seq_number;
327       u32 seq_end;
328       u32 ack_number;
329       u16 hdr_offset;           /**< offset relative to ip hdr */
330       u16 data_offset;          /**< offset relative to ip hdr */
331       u16 data_len;             /**< data len */
332       u8 flags;
333     } tcp;
334
335     /* SCTP */
336     struct
337     {
338       u32 connection_index;
339       u16 sid; /**< Stream ID */
340       u16 ssn; /**< Stream Sequence Number */
341       u32 tsn; /**< Transmission Sequence Number */
342       u16 hdr_offset;           /**< offset relative to ip hdr */
343       u16 data_offset;          /**< offset relative to ip hdr */
344       u16 data_len;             /**< data len */
345       u8 subconn_idx; /**< index of the sub_connection being used */
346       u8 flags;
347     } sctp;
348
349     /* SNAT */
350     struct
351     {
352       u32 flags;
353     } snat;
354
355     u32 unused[6];
356   };
357 } vnet_buffer_opaque_t;
358
359 /*
360  * The opaque field of the vlib_buffer_t is intepreted as a
361  * vnet_buffer_opaque_t. Hence it should be big enough to accommodate one.
362  */
363 STATIC_ASSERT (sizeof (vnet_buffer_opaque_t) <=
364                STRUCT_SIZE_OF (vlib_buffer_t, opaque),
365                "VNET buffer meta-data too large for vlib_buffer");
366
367 #define vnet_buffer(b) ((vnet_buffer_opaque_t *) (b)->opaque)
368
369 /* Full cache line (64 bytes) of additional space */
370 typedef struct
371 {
372   /**
373    * QoS marking data that needs to persist from the recording nodes
374    * (nominally in the ingress path) to the marking node (in the
375    * egress path)
376    */
377   struct
378   {
379     u8 bits;
380     u8 source;
381   } qos;
382
383   u8 __unused[2];
384
385   /* Group Based Policy */
386   struct
387   {
388     u32 src_epg;
389   } gbp;
390
391   union
392   {
393     struct
394     {
395 #if VLIB_BUFFER_TRACE_TRAJECTORY > 0
396       /* buffer trajectory tracing */
397       u16 *trajectory_trace;
398 #endif
399     };
400     struct
401     {
402       u64 pad[1];
403       u64 pg_replay_timestamp;
404     };
405     u32 unused[10];
406   };
407 } vnet_buffer_opaque2_t;
408
409 #define vnet_buffer2(b) ((vnet_buffer_opaque2_t *) (b)->opaque2)
410
411 /*
412  * The opaque2 field of the vlib_buffer_t is intepreted as a
413  * vnet_buffer_opaque2_t. Hence it should be big enough to accommodate one.
414  */
415 STATIC_ASSERT (sizeof (vnet_buffer_opaque2_t) <=
416                STRUCT_SIZE_OF (vlib_buffer_t, opaque2),
417                "VNET buffer opaque2 meta-data too large for vlib_buffer");
418
419 format_function_t format_vnet_buffer;
420
421 #endif /* included_vnet_buffer_h */
422
423 /*
424  * fd.io coding-style-patch-verification: ON
425  *
426  * Local Variables:
427  * eval: (c-set-style "gnu")
428  * End:
429  */