blob: 45fc352acf72da448337b8570bd9ac7ffae3469e [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
45/* VLIB buffer flags for ip4/ip6 packets. Set by input interfaces for ip4/ip6
46 tcp/udp packets with hardware computed checksums. */
47#define LOG2_IP_BUFFER_L4_CHECKSUM_COMPUTED LOG2_VLIB_BUFFER_FLAG_USER(1)
48#define LOG2_IP_BUFFER_L4_CHECKSUM_CORRECT LOG2_VLIB_BUFFER_FLAG_USER(2)
49#define IP_BUFFER_L4_CHECKSUM_COMPUTED (1 << LOG2_IP_BUFFER_L4_CHECKSUM_COMPUTED)
50#define IP_BUFFER_L4_CHECKSUM_CORRECT (1 << LOG2_IP_BUFFER_L4_CHECKSUM_CORRECT)
51
Chris Luke194ebc52016-04-25 14:26:55 -040052/* VLAN header flags.
53 * These bits are zeroed in vlib_buffer_init_for_free_list()
54 * meaning wherever the buffer comes from they have a reasonable
55 * value (eg, if ip4/ip6 generates the packet.)
56 */
57#define LOG2_ETH_BUFFER_VLAN_2_DEEP LOG2_VLIB_BUFFER_FLAG_USER(3)
58#define LOG2_ETH_BUFFER_VLAN_1_DEEP LOG2_VLIB_BUFFER_FLAG_USER(4)
59#define ETH_BUFFER_VLAN_2_DEEP (1 << LOG2_ETH_BUFFER_VLAN_2_DEEP)
60#define ETH_BUFFER_VLAN_1_DEEP (1 << LOG2_ETH_BUFFER_VLAN_1_DEEP)
61#define ETH_BUFFER_VLAN_BITS (ETH_BUFFER_VLAN_1_DEEP | \
62 ETH_BUFFER_VLAN_2_DEEP)
63
Damjan Marion22766b82016-11-15 12:50:28 +010064#define LOG2_VNET_BUFFER_RTE_MBUF_VALID LOG2_VLIB_BUFFER_FLAG_USER(5)
65#define VNET_BUFFER_RTE_MBUF_VALID (1 << LOG2_VNET_BUFFER_RTE_MBUF_VALID)
Chris Luke194ebc52016-04-25 14:26:55 -040066
Damjan Marion0247b462016-06-08 01:37:11 +020067#define LOG2_BUFFER_HANDOFF_NEXT_VALID LOG2_VLIB_BUFFER_FLAG_USER(6)
68#define BUFFER_HANDOFF_NEXT_VALID (1 << LOG2_BUFFER_HANDOFF_NEXT_VALID)
69
Neale Rannsf06aea52016-11-29 06:51:37 -080070#define LOG2_VNET_BUFFER_LOCALLY_ORIGINATED LOG2_VLIB_BUFFER_FLAG_USER(7)
71#define VNET_BUFFER_LOCALLY_ORIGINATED (1 << LOG2_VNET_BUFFER_LOCALLY_ORIGINATED)
Damjan Marion67655492016-11-15 12:50:28 +010072
Pavel Kotucek3a2a1c42016-12-06 10:10:10 +010073#define LOG2_VNET_BUFFER_SPAN_CLONE LOG2_VLIB_BUFFER_FLAG_USER(8)
74#define VNET_BUFFER_SPAN_CLONE (1 << LOG2_VNET_BUFFER_SPAN_CLONE)
75
Ed Warnickecb9cada2015-12-08 15:45:58 -070076#define foreach_buffer_opaque_union_subtype \
77_(ethernet) \
78_(ip) \
79_(mcast) \
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) \
90_(ip_frag)
Ed Warnickecb9cada2015-12-08 15:45:58 -070091
Dave Barachba868bb2016-08-08 09:51:21 -040092/*
Ed Warnickecb9cada2015-12-08 15:45:58 -070093 * vnet stack buffer opaque array overlay structure.
94 * The vnet_buffer_opaque_t *must* be the same size as the
95 * vlib_buffer_t "opaque" structure member, 32 bytes.
96 *
97 * When adding a union type, please add a stanza to
98 * foreach_buffer_opaque_union_subtype (directly above).
99 * Code in vnet_interface_init(...) verifies the size
100 * of the union, and will announce any deviations in an
101 * impossible-to-miss manner.
102 */
Dave Barachba868bb2016-08-08 09:51:21 -0400103typedef struct
104{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700105 u32 sw_if_index[VLIB_N_RX_TX];
106
Dave Barachba868bb2016-08-08 09:51:21 -0400107 union
108 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109 /* Ethernet. */
Dave Barachba868bb2016-08-08 09:51:21 -0400110 struct
111 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700112 /* Saved value of current header by ethernet-input. */
113 i32 start_of_ethernet_header;
114 } ethernet;
115
116 /* IP4/6 buffer opaque. */
Dave Barachba868bb2016-08-08 09:51:21 -0400117 struct
118 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119 /* Adjacency from destination IP address lookup [VLIB_TX].
Dave Barachba868bb2016-08-08 09:51:21 -0400120 Adjacency from source IP address lookup [VLIB_RX].
121 This gets set to ~0 until source lookup is performed. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122 u32 adj_index[VLIB_N_RX_TX];
123
Dave Barachba868bb2016-08-08 09:51:21 -0400124 union
125 {
126 struct
127 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700128 /* Flow hash value for this packet computed from IP src/dst address
129 protocol and ports. */
130 u32 flow_hash;
131
Dave Barachba868bb2016-08-08 09:51:21 -0400132 /* next protocol */
133 u32 save_protocol;
Dave Barachc7493e12016-08-24 18:36:03 -0400134
135 /* Rewrite length */
136 u32 save_rewrite_length;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137 };
138
Ole Troancda94822016-01-07 14:37:25 +0100139 /* ICMP */
Dave Barachba868bb2016-08-08 09:51:21 -0400140 struct
141 {
Ole Troancda94822016-01-07 14:37:25 +0100142 u8 type;
143 u8 code;
144 u32 data;
145 } icmp;
Klement Sekera0e3c0de2016-09-29 14:43:44 +0200146
Klement Sekera0c1519b2016-12-08 05:03:32 +0100147 /* IP header offset from vlib_buffer.data - saved by ip*_local nodes */
148 i32 start_of_ip_header;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149 };
Klement Sekera0e3c0de2016-09-29 14:43:44 +0200150
Ed Warnickecb9cada2015-12-08 15:45:58 -0700151 } ip;
152
Neale Rannsad422ed2016-11-02 14:20:04 +0000153 /*
154 * MPLS:
155 * data copied from the MPLS header that was popped from the packet
156 * during the look-up.
157 */
158 struct
159 {
160 u8 ttl;
161 u8 exp;
162 u8 first;
163 } mpls;
164
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165 /* Multicast replication */
Dave Barachba868bb2016-08-08 09:51:21 -0400166 struct
167 {
168 u32 pad[3];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169 u32 mcast_group_index;
170 u32 mcast_current_index;
171 u32 original_free_list_index;
172 } mcast;
173
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174 /* ip4-in-ip6 softwire termination, only valid there */
Dave Barachba868bb2016-08-08 09:51:21 -0400175 struct
176 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700177 u8 swt_disable;
178 u32 mapping_index;
179 } swt;
180
181 /* l2 bridging path, only valid there */
Dave Barachba868bb2016-08-08 09:51:21 -0400182 struct
183 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184 u32 feature_bitmap;
Dave Barachba868bb2016-08-08 09:51:21 -0400185 u16 bd_index; // bridge-domain index
186 u8 l2_len; // ethernet header length
187 u8 shg; // split-horizon group
Ed Warnickecb9cada2015-12-08 15:45:58 -0700188 } l2;
189
190 /* l2tpv3 softwire encap, only valid there */
Dave Barachba868bb2016-08-08 09:51:21 -0400191 struct
192 {
193 u32 pad[4]; /* do not overlay w/ ip.adj_index[0,1] */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700194 u8 next_index;
195 u32 session_index;
196 } l2t;
197
Dave Barachba868bb2016-08-08 09:51:21 -0400198 struct
199 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700200 u32 src, dst;
201 } gre;
202
203 /* L2 classify */
Dave Barachba868bb2016-08-08 09:51:21 -0400204 struct
205 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700206 u64 pad;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207 u32 table_index;
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530208 u32 opaque_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209 u64 hash;
210 } l2_classify;
211
212 /* IO - worker thread handoff */
Dave Barachba868bb2016-08-08 09:51:21 -0400213 struct
214 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700215 u32 next_index;
Damjan Marion0247b462016-06-08 01:37:11 +0200216 } handoff;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217
218 /* vnet policer */
Dave Barachba868bb2016-08-08 09:51:21 -0400219 struct
220 {
221 u32 pad[8 - VLIB_N_RX_TX - 1]; /* to end of opaque */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700222 u32 index;
223 } policer;
224
225 /* interface output features */
Dave Barachba868bb2016-08-08 09:51:21 -0400226 struct
227 {
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100228 u32 flags;
229 u32 sad_index;
230 } ipsec;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232 /* MAP */
Dave Barachba868bb2016-08-08 09:51:21 -0400233 struct
234 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700235 u16 mtu;
236 } map;
237
238 /* MAP-T */
Dave Barachba868bb2016-08-08 09:51:21 -0400239 struct
240 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241 u32 map_domain_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400242 struct
243 {
244 u32 saddr, daddr;
245 u16 frag_offset; //Fragmentation header offset
246 u16 l4_offset; //L4 header overall offset
247 u8 l4_protocol; //The final protocol number
248 } v6; //Used by ip6_map_t only
249 u16 checksum_offset; //L4 checksum overall offset
250 u16 mtu; //Exit MTU
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251 } map_t;
252
253 /* IP Fragmentation */
Dave Barachba868bb2016-08-08 09:51:21 -0400254 struct
255 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700256 u16 header_offset;
257 u16 mtu;
258 u8 next_index;
Dave Barachba868bb2016-08-08 09:51:21 -0400259 u8 flags; //See ip_frag.h
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260 } ip_frag;
261
Dave Barachc07bf5d2016-02-17 17:52:26 -0500262 /* COP - configurable junk filter(s) */
Dave Barachba868bb2016-08-08 09:51:21 -0400263 struct
264 {
265 /* Current configuration index. */
266 u32 current_config_index;
Dave Barachc07bf5d2016-02-17 17:52:26 -0500267 } cop;
268
Florin Coras1a1adc72016-07-22 01:45:30 +0200269 /* LISP */
Dave Barachba868bb2016-08-08 09:51:21 -0400270 struct
271 {
Florin Coras1a1adc72016-07-22 01:45:30 +0200272 /* overlay address family */
273 u16 overlay_afi;
274 } lisp;
275
Damjan Marion22311502016-10-28 20:30:15 +0200276 /* Driver rx feature */
277 struct
278 {
279 u32 saved_next_index; /**< saved by drivers for short-cut */
280 u16 buffer_advance;
281 } device_input_feat;
282
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283 u32 unused[6];
284 };
285} vnet_buffer_opaque_t;
286
Neale Rannsad422ed2016-11-02 14:20:04 +0000287/*
288 * The opaque field of the vlib_buffer_t is intepreted as a
289 * vnet_buffer_opaque_t. Hence it should be big enough to accommodate one.
290 */
291STATIC_ASSERT (sizeof (vnet_buffer_opaque_t) <= STRUCT_SIZE_OF (vlib_buffer_t,
292 opaque),
293 "VNET buffer meta-data too large for vlib_buffer");
294
Ed Warnickecb9cada2015-12-08 15:45:58 -0700295#define vnet_buffer(b) ((vnet_buffer_opaque_t *) (b)->opaque)
296
297/* Full cache line (64 bytes) of additional space */
Dave Barachba868bb2016-08-08 09:51:21 -0400298typedef struct
299{
300 union
301 {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700302 };
303} vnet_buffer_opaque2_t;
304
305
306
307#endif /* included_vnet_buffer_h */
Dave Barachba868bb2016-08-08 09:51:21 -0400308
309/*
310 * fd.io coding-style-patch-verification: ON
311 *
312 * Local Variables:
313 * eval: (c-set-style "gnu")
314 * End:
315 */