blob: 8fa5cad56d1812b0df12b8abf98a0786297a3f4f [file] [log] [blame]
Mohsin Kazmi0b042092020-04-17 16:50:56 +00001/*
2 * Copyright (c) 2019 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#ifndef included_hdr_offset_parser_h
17#define included_hdr_offset_parser_h
18
19#include <vnet/ethernet/ethernet.h>
20#include <vnet/ip/ip4_packet.h>
21#include <vnet/ip/ip6_packet.h>
22#include <vnet/udp/udp.h>
23#include <vnet/udp/udp_packet.h>
24#include <vnet/vnet.h>
25#include <vnet/vxlan/vxlan_packet.h>
26
27#define foreach_gho_flag \
28 _( 0, IP4) \
29 _( 1, IP6) \
30 _( 2, TCP) \
31 _( 3, UDP) \
32 _( 4, OUTER_IP4) \
33 _( 5, OUTER_IP6) \
34 _( 6, OUTER_TCP) \
35 _( 7, OUTER_UDP) \
36 _( 8, VXLAN_TUNNEL) \
37 _( 9, GRE_TUNNEL) \
38 _( 10, IPIP_TUNNEL) \
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +020039 _( 11, IPIP6_TUNNEL) \
40 _( 12, GENEVE_TUNNEL)
Mohsin Kazmi0b042092020-04-17 16:50:56 +000041
42typedef enum gho_flag_t_
43{
44#define _(bit, name) GHO_F_##name = (1 << bit),
45 foreach_gho_flag
46#undef _
47} gho_flag_t;
48
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +020049#define GHO_F_TUNNEL (GHO_F_VXLAN_TUNNEL | \
50 GHO_F_GENEVE_TUNNEL | \
51 GHO_F_IPIP_TUNNEL | \
52 GHO_F_IPIP6_TUNNEL | \
Mohsin Kazmi0b042092020-04-17 16:50:56 +000053 GHO_F_GRE_TUNNEL)
54
55#define GHO_F_OUTER_HDR (GHO_F_OUTER_IP4 | \
56 GHO_F_OUTER_IP6 | \
57 GHO_F_OUTER_TCP | \
58 GHO_F_OUTER_UDP)
59
60#define GHO_F_INNER_HDR (GHO_F_IP4 | \
61 GHO_F_IP6 | \
62 GHO_F_UDP | \
63 GHO_F_TCP)
64
65typedef struct
66{
67 i16 outer_l2_hdr_offset;
68 i16 outer_l3_hdr_offset;
69 i16 outer_l4_hdr_offset;
70 u16 outer_l4_hdr_sz;
71 u16 outer_hdr_sz;
72 i16 l2_hdr_offset;
73 i16 l3_hdr_offset;
74 i16 l4_hdr_offset;
75 u16 l4_hdr_sz;
76 u16 hdr_sz;
77 gho_flag_t gho_flags;
78} generic_header_offset_t;
79
80static_always_inline u8 *
81format_generic_header_offset (u8 * s, va_list * args)
82{
83 generic_header_offset_t *gho = va_arg (*args, generic_header_offset_t *);
84
85 s = format (s, "\n\t");
86 if (gho->gho_flags & GHO_F_TUNNEL)
87 {
88 if (gho->gho_flags & GHO_F_VXLAN_TUNNEL)
89 s = format (s, "vxlan-tunnel ");
90 else if (gho->gho_flags & GHO_F_IPIP_TUNNEL)
91 s = format (s, "ipip-tunnel ");
92 else if (gho->gho_flags & GHO_F_GRE_TUNNEL)
93 s = format (s, "gre-tunnel ");
94 else if (gho->gho_flags & GHO_F_GENEVE_TUNNEL)
95 s = format (s, "geneve-tunnel ");
96
97 if (gho->gho_flags & GHO_F_OUTER_IP4)
98 s = format (s, "outer-ipv4 ");
99 else if (gho->gho_flags & GHO_F_OUTER_IP6)
100 s = format (s, "outer-ipv6 ");
101
102 if (gho->gho_flags & GHO_F_OUTER_UDP)
103 s = format (s, "outer-udp ");
104 else if (gho->gho_flags & GHO_F_OUTER_TCP)
105 s = format (s, "outer-tcp ");
106
107 s = format (s, "outer-hdr-sz %u outer-l2-hdr-offset %d "
108 "outer-l3-hdr-offset %d outer-l4-hdr-offset %d "
109 "outer-l4-hdr-sz %u\n\t",
110 gho->outer_hdr_sz, gho->outer_l2_hdr_offset,
111 gho->outer_l3_hdr_offset, gho->outer_l4_hdr_offset,
112 gho->outer_l4_hdr_sz);
113 }
114
115 if (gho->gho_flags & GHO_F_IP4)
116 s = format (s, "ipv4 ");
117 else if (gho->gho_flags & GHO_F_IP6)
118 s = format (s, "ipv6 ");
119
120 if (gho->gho_flags & GHO_F_TCP)
121 s = format (s, "tcp ");
122 else if (gho->gho_flags & GHO_F_UDP)
123 s = format (s, "udp ");
124
125 s = format (s, "hdr-sz %u l2-hdr-offset %d "
126 "l3-hdr-offset %d l4-hdr-offset %d "
127 "l4-hdr-sz %u",
128 gho->hdr_sz, gho->l2_hdr_offset, gho->l3_hdr_offset,
129 gho->l4_hdr_offset, gho->l4_hdr_sz);
130
131 return s;
132}
133
134static_always_inline void
135vnet_get_inner_header (vlib_buffer_t * b0, generic_header_offset_t * gho)
136{
137 if ((gho->gho_flags & GHO_F_TUNNEL)
138 && (gho->gho_flags & GHO_F_OUTER_HDR)
139 && (b0->current_data == gho->outer_l2_hdr_offset))
140 vlib_buffer_advance (b0, gho->outer_hdr_sz);
141}
142
143static_always_inline void
144vnet_get_outer_header (vlib_buffer_t * b0, generic_header_offset_t * gho)
145{
146 if ((gho->gho_flags & GHO_F_TUNNEL)
147 && (gho->gho_flags & GHO_F_OUTER_HDR)
148 && (b0->current_data == gho->l2_hdr_offset))
149 vlib_buffer_advance (b0, -gho->outer_hdr_sz);
150}
151
152static_always_inline void
153vnet_geneve_inner_header_parser_inline (vlib_buffer_t * b0,
154 generic_header_offset_t * gho)
155{
156 /* not supported yet */
157 if ((gho->gho_flags & GHO_F_GENEVE_TUNNEL) == 0)
158 return;
159
160 ASSERT (0);
161}
162
163static_always_inline void
164vnet_gre_inner_header_parser_inline (vlib_buffer_t * b0,
165 generic_header_offset_t * gho)
166{
167 /* not supported yet */
168 if ((gho->gho_flags & GHO_F_GRE_TUNNEL) == 0)
169 return;
170
171 ASSERT (0);
172}
173
174static_always_inline void
175vnet_ipip_inner_header_parser_inline (vlib_buffer_t * b0,
176 generic_header_offset_t * gho)
177{
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200178 if ((gho->gho_flags & (GHO_F_IPIP_TUNNEL | GHO_F_IPIP6_TUNNEL)) == 0)
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000179 return;
180
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200181 u8 l4_proto = 0;
182 u8 l4_hdr_sz = 0;
183
184 gho->outer_l2_hdr_offset = gho->l2_hdr_offset;
185 gho->outer_l3_hdr_offset = gho->l3_hdr_offset;
186 gho->outer_l4_hdr_offset = gho->l4_hdr_offset;
187 gho->outer_l4_hdr_sz = gho->l4_hdr_sz;
188 gho->outer_hdr_sz = gho->hdr_sz;
189
190 gho->l2_hdr_offset = 0;
191 gho->l3_hdr_offset = 0;
192 gho->l4_hdr_offset = 0;
193 gho->l4_hdr_sz = 0;
194 gho->hdr_sz = 0;
195
196 if (gho->gho_flags & GHO_F_IP4)
197 {
198 gho->gho_flags |= GHO_F_OUTER_IP4;
199 }
200 else if (gho->gho_flags & GHO_F_IP6)
201 {
202 gho->gho_flags |= GHO_F_OUTER_IP6;
203 }
204
205 gho->gho_flags &= ~GHO_F_INNER_HDR;
206
207 vnet_get_inner_header (b0, gho);
208
209 gho->l2_hdr_offset = b0->current_data;
210 gho->l3_hdr_offset = 0;
211
212 if (PREDICT_TRUE (gho->gho_flags & GHO_F_IPIP_TUNNEL))
213 {
214 ip4_header_t *ip4 = (ip4_header_t *) vlib_buffer_get_current (b0);
215 gho->l4_hdr_offset = ip4_header_bytes (ip4);
216 l4_proto = ip4->protocol;
217 gho->gho_flags |= GHO_F_IP4;
218 }
219 else if (PREDICT_TRUE (gho->gho_flags & GHO_F_IPIP6_TUNNEL))
220 {
221 ip6_header_t *ip6 = (ip6_header_t *) vlib_buffer_get_current (b0);
222 /* FIXME IPv6 EH traversal */
223 gho->l4_hdr_offset = sizeof (ip6_header_t);
224 l4_proto = ip6->protocol;
225 gho->gho_flags |= GHO_F_IP6;
226 }
227 if (l4_proto == IP_PROTOCOL_TCP)
228 {
229 tcp_header_t *tcp = (tcp_header_t *) (vlib_buffer_get_current (b0) +
230 gho->l4_hdr_offset);
231 l4_hdr_sz = tcp_header_bytes (tcp);
232
233 gho->gho_flags |= GHO_F_TCP;
234
235 }
236 else if (l4_proto == IP_PROTOCOL_UDP)
237 {
238 udp_header_t *udp = (udp_header_t *) (vlib_buffer_get_current (b0) +
239 gho->l4_hdr_offset);
240 l4_hdr_sz = sizeof (*udp);
241
242 gho->gho_flags |= GHO_F_UDP;
243 }
244
245 gho->l4_hdr_sz = l4_hdr_sz;
246 gho->hdr_sz += gho->l4_hdr_offset + l4_hdr_sz;
247
248 vnet_get_outer_header (b0, gho);
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000249}
250
251static_always_inline void
252vnet_vxlan_inner_header_parser_inline (vlib_buffer_t * b0,
253 generic_header_offset_t * gho)
254{
255 u8 l4_proto = 0;
256 u8 l4_hdr_sz = 0;
257
258 if ((gho->gho_flags & GHO_F_VXLAN_TUNNEL) == 0)
259 return;
260
261 gho->outer_l2_hdr_offset = gho->l2_hdr_offset;
262 gho->outer_l3_hdr_offset = gho->l3_hdr_offset;
263 gho->outer_l4_hdr_offset = gho->l4_hdr_offset;
264 gho->outer_l4_hdr_sz = gho->l4_hdr_sz;
265 gho->outer_hdr_sz = gho->hdr_sz;
266
267 gho->l2_hdr_offset = 0;
268 gho->l3_hdr_offset = 0;
269 gho->l4_hdr_offset = 0;
270 gho->l4_hdr_sz = 0;
271 gho->hdr_sz = 0;
272
273 if (gho->gho_flags & GHO_F_IP4)
274 {
275 gho->gho_flags |= GHO_F_OUTER_IP4;
276 }
277 else if (gho->gho_flags & GHO_F_IP6)
278 {
279 gho->gho_flags |= GHO_F_OUTER_IP6;
280 }
281
282 if (gho->gho_flags & GHO_F_UDP)
283 {
284 gho->gho_flags |= GHO_F_OUTER_UDP;
285 }
286
287 gho->gho_flags &= ~GHO_F_INNER_HDR;
288
289 vnet_get_inner_header (b0, gho);
290
291 gho->l2_hdr_offset = b0->current_data;
292
293 ethernet_header_t *eh = (ethernet_header_t *) vlib_buffer_get_current (b0);
294 u16 ethertype = clib_net_to_host_u16 (eh->type);
295 u16 l2hdr_sz = sizeof (ethernet_header_t);
296
297 if (ethernet_frame_is_tagged (ethertype))
298 {
299 ethernet_vlan_header_t *vlan = (ethernet_vlan_header_t *) (eh + 1);
300
301 ethertype = clib_net_to_host_u16 (vlan->type);
302 l2hdr_sz += sizeof (*vlan);
303 if (ethertype == ETHERNET_TYPE_VLAN)
304 {
305 vlan++;
306 ethertype = clib_net_to_host_u16 (vlan->type);
307 l2hdr_sz += sizeof (*vlan);
308 }
309 }
310
311 gho->l3_hdr_offset = l2hdr_sz;
312
313 if (PREDICT_TRUE (ethertype == ETHERNET_TYPE_IP4))
314 {
315 ip4_header_t *ip4 =
316 (ip4_header_t *) (vlib_buffer_get_current (b0) + gho->l3_hdr_offset);
317 gho->l4_hdr_offset = gho->l3_hdr_offset + ip4_header_bytes (ip4);
318 l4_proto = ip4->protocol;
319 gho->gho_flags |= GHO_F_IP4;
320 }
321 else if (PREDICT_TRUE (ethertype == ETHERNET_TYPE_IP6))
322 {
323 ip6_header_t *ip6 =
324 (ip6_header_t *) (vlib_buffer_get_current (b0) + gho->l3_hdr_offset);
325 /* FIXME IPv6 EH traversal */
326 gho->l4_hdr_offset = gho->l3_hdr_offset + sizeof (ip6_header_t);
327 l4_proto = ip6->protocol;
328 gho->gho_flags |= GHO_F_IP6;
329 }
330 if (l4_proto == IP_PROTOCOL_TCP)
331 {
332 tcp_header_t *tcp = (tcp_header_t *) (vlib_buffer_get_current (b0) +
333 gho->l4_hdr_offset);
334 l4_hdr_sz = tcp_header_bytes (tcp);
335
336 gho->gho_flags |= GHO_F_TCP;
337
338 }
339 else if (l4_proto == IP_PROTOCOL_UDP)
340 {
341 udp_header_t *udp = (udp_header_t *) (vlib_buffer_get_current (b0) +
342 gho->l4_hdr_offset);
343 l4_hdr_sz = sizeof (*udp);
344
345 gho->gho_flags |= GHO_F_UDP;
346 }
347
348 gho->l4_hdr_sz = l4_hdr_sz;
349 gho->hdr_sz += gho->l4_hdr_offset + l4_hdr_sz;
350
351 vnet_get_outer_header (b0, gho);
352}
353
354static_always_inline void
355vnet_generic_inner_header_parser_inline (vlib_buffer_t * b0,
356 generic_header_offset_t * gho)
357{
358
359 if (gho->gho_flags & GHO_F_VXLAN_TUNNEL)
360 vnet_vxlan_inner_header_parser_inline (b0, gho);
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200361 else if (gho->gho_flags & (GHO_F_IPIP_TUNNEL | GHO_F_IPIP6_TUNNEL))
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000362 vnet_ipip_inner_header_parser_inline (b0, gho);
363 else if (gho->gho_flags & GHO_F_GRE_TUNNEL)
364 vnet_gre_inner_header_parser_inline (b0, gho);
365 else if (gho->gho_flags & GHO_F_GENEVE_TUNNEL)
366 vnet_geneve_inner_header_parser_inline (b0, gho);
367}
368
369static_always_inline void
370vnet_generic_outer_header_parser_inline (vlib_buffer_t * b0,
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200371 generic_header_offset_t * gho,
372 int is_l2, int is_ip4, int is_ip6)
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000373{
374 u8 l4_proto = 0;
375 u8 l4_hdr_sz = 0;
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200376 u16 ethertype = 0;
377 u16 l2hdr_sz = 0;
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000378
Vladimir Isaev698eb872020-05-21 16:34:17 +0300379 ASSERT (!(is_ip4 && is_ip6));
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000380
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200381 if (is_l2)
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000382 {
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200383 ethernet_header_t *eh =
384 (ethernet_header_t *) vlib_buffer_get_current (b0);
385 ethertype = clib_net_to_host_u16 (eh->type);
386 l2hdr_sz = sizeof (ethernet_header_t);
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000387
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200388 if (ethernet_frame_is_tagged (ethertype))
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000389 {
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200390 ethernet_vlan_header_t *vlan = (ethernet_vlan_header_t *) (eh + 1);
391
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000392 ethertype = clib_net_to_host_u16 (vlan->type);
393 l2hdr_sz += sizeof (*vlan);
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200394 if (ethertype == ETHERNET_TYPE_VLAN)
395 {
396 vlan++;
397 ethertype = clib_net_to_host_u16 (vlan->type);
398 l2hdr_sz += sizeof (*vlan);
399 }
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000400 }
401 }
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200402 else
403 l2hdr_sz = vnet_buffer (b0)->ip.save_rewrite_length;
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000404
405 gho->l2_hdr_offset = b0->current_data;
406 gho->l3_hdr_offset = l2hdr_sz;
407
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200408 if (PREDICT_TRUE (is_ip4))
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000409 {
410 ip4_header_t *ip4 =
411 (ip4_header_t *) (vlib_buffer_get_current (b0) + l2hdr_sz);
412 gho->l4_hdr_offset = l2hdr_sz + ip4_header_bytes (ip4);
413 l4_proto = ip4->protocol;
414 gho->gho_flags |= GHO_F_IP4;
415 }
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200416 else if (PREDICT_TRUE (is_ip6))
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000417 {
418 ip6_header_t *ip6 =
419 (ip6_header_t *) (vlib_buffer_get_current (b0) + l2hdr_sz);
420 /* FIXME IPv6 EH traversal */
421 gho->l4_hdr_offset = l2hdr_sz + sizeof (ip6_header_t);
422 l4_proto = ip6->protocol;
423 gho->gho_flags |= GHO_F_IP6;
424 }
425 if (l4_proto == IP_PROTOCOL_TCP)
426 {
427 tcp_header_t *tcp = (tcp_header_t *) (vlib_buffer_get_current (b0) +
428 gho->l4_hdr_offset);
429 l4_hdr_sz = tcp_header_bytes (tcp);
430
431 gho->gho_flags |= GHO_F_TCP;
432 }
433 else if (l4_proto == IP_PROTOCOL_UDP)
434 {
435 udp_header_t *udp = (udp_header_t *) (vlib_buffer_get_current (b0) +
436 gho->l4_hdr_offset);
437 l4_hdr_sz = sizeof (*udp);
438
439 gho->gho_flags |= GHO_F_UDP;
440
441 if (UDP_DST_PORT_vxlan == clib_net_to_host_u16 (udp->dst_port))
442 {
443 gho->gho_flags |= GHO_F_VXLAN_TUNNEL;
444 gho->hdr_sz += sizeof (vxlan_header_t);
445 }
446 else if (UDP_DST_PORT_geneve == clib_net_to_host_u16 (udp->dst_port))
447 {
448 gho->gho_flags |= GHO_F_GENEVE_TUNNEL;
449 }
450 }
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200451 else if (l4_proto == IP_PROTOCOL_IP_IN_IP)
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000452 {
453 l4_hdr_sz = 0;
454 gho->gho_flags |= GHO_F_IPIP_TUNNEL;
455 }
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200456 else if (l4_proto == IP_PROTOCOL_IPV6)
457 {
458 l4_hdr_sz = 0;
459 gho->gho_flags |= GHO_F_IPIP6_TUNNEL;
460 }
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000461 else if (l4_proto == IP_PROTOCOL_GRE)
462 {
463 l4_hdr_sz = 0;
464 gho->gho_flags |= GHO_F_GRE_TUNNEL;
465 }
466
467 gho->l4_hdr_sz = l4_hdr_sz;
468 gho->hdr_sz += gho->l4_hdr_offset + l4_hdr_sz;
469}
470
471static_always_inline void
472vnet_generic_header_offset_parser (vlib_buffer_t * b0,
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200473 generic_header_offset_t * gho, int is_l2,
474 int is_ip4, int is_ip6)
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000475{
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200476 vnet_generic_outer_header_parser_inline (b0, gho, is_l2, is_ip4, is_ip6);
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000477
478 if (gho->gho_flags & GHO_F_TUNNEL)
479 {
480 vnet_generic_inner_header_parser_inline (b0, gho);
481 }
482}
483
484#endif /* included_hdr_offset_parser_h */
485
486/*
487 * fd.io coding-style-patch-verification: ON
488 *
489 * Local Variables:
490 * eval: (c-set-style "gnu")
491 * End:
492 */