blob: c690835af48494e849cf3a7c7a5223e73d0c511c [file] [log] [blame]
Mohsin Kazmi29467b52019-10-08 19:42:38 +02001/*
2 * Copyright (c) 2018 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#include <vlib/vlib.h>
17#include <vnet/vnet.h>
18#include <vppinfra/error.h>
19#include <vnet/ethernet/ethernet.h>
20#include <vnet/feature/feature.h>
21#include <vnet/gso/gso.h>
Mohsin Kazmi0b042092020-04-17 16:50:56 +000022#include <vnet/gso/hdr_offset_parser.h>
Mohsin Kazmi29467b52019-10-08 19:42:38 +020023#include <vnet/ip/icmp46_packet.h>
24#include <vnet/ip/ip4.h>
25#include <vnet/ip/ip6.h>
26#include <vnet/udp/udp_packet.h>
27
28typedef struct
29{
30 u32 flags;
31 u16 gso_size;
32 u8 gso_l4_hdr_sz;
Mohsin Kazmi0b042092020-04-17 16:50:56 +000033 generic_header_offset_t gho;
Mohsin Kazmi29467b52019-10-08 19:42:38 +020034} gso_trace_t;
35
36static u8 *
37format_gso_trace (u8 * s, va_list * args)
38{
39 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
40 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
41 gso_trace_t *t = va_arg (*args, gso_trace_t *);
42
43 if (t->flags & VNET_BUFFER_F_GSO)
44 {
Mohsin Kazmi0b042092020-04-17 16:50:56 +000045 s = format (s, "gso_sz %d gso_l4_hdr_sz %d %U",
46 t->gso_size, t->gso_l4_hdr_sz, format_generic_header_offset,
47 &t->gho);
Mohsin Kazmi29467b52019-10-08 19:42:38 +020048 }
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +010049 else
50 {
Mohsin Kazmi0b042092020-04-17 16:50:56 +000051 s =
52 format (s, "non-gso buffer %U", format_generic_header_offset,
53 &t->gho);
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +010054 }
Mohsin Kazmi29467b52019-10-08 19:42:38 +020055
56 return s;
57}
58
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +020059static_always_inline u16
60tso_segment_ipip_tunnel_fixup (vlib_main_t * vm,
61 vnet_interface_per_thread_data_t * ptd,
62 vlib_buffer_t * sb0,
63 generic_header_offset_t * gho)
64{
65 u16 n_tx_bufs = vec_len (ptd->split_buffers);
66 u16 i = 0, n_tx_bytes = 0;
67
68 while (i < n_tx_bufs)
69 {
70 vlib_buffer_t *b0 = vlib_get_buffer (vm, ptd->split_buffers[i]);
71 vnet_get_outer_header (b0, gho);
72 clib_memcpy_fast (vlib_buffer_get_current (b0),
73 vlib_buffer_get_current (sb0), gho->outer_hdr_sz);
74
75 ip4_header_t *ip4 =
76 (ip4_header_t *) (vlib_buffer_get_current (b0) +
77 gho->outer_l3_hdr_offset);
78 ip6_header_t *ip6 =
79 (ip6_header_t *) (vlib_buffer_get_current (b0) +
80 gho->outer_l3_hdr_offset);
81
82 if (gho->gho_flags & GHO_F_OUTER_IP4)
83 {
84 ip4->length =
85 clib_host_to_net_u16 (b0->current_length -
86 gho->outer_l3_hdr_offset);
87 ip4->checksum = ip4_header_checksum (ip4);
88 }
89 else if (gho->gho_flags & GHO_F_OUTER_IP6)
90 {
91 ip6->payload_length =
92 clib_host_to_net_u16 (b0->current_length -
93 gho->outer_l4_hdr_offset);
94 }
95
96 n_tx_bytes += gho->outer_hdr_sz;
97 i++;
98 }
99 return n_tx_bytes;
100
101}
102
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000103static_always_inline void
104tso_segment_vxlan_tunnel_headers_fixup (vlib_main_t * vm, vlib_buffer_t * b,
105 generic_header_offset_t * gho)
106{
107 u8 proto = 0;
108 ip4_header_t *ip4 = 0;
109 ip6_header_t *ip6 = 0;
110 udp_header_t *udp = 0;
111
112 ip4 =
113 (ip4_header_t *) (vlib_buffer_get_current (b) + gho->outer_l3_hdr_offset);
114 ip6 =
115 (ip6_header_t *) (vlib_buffer_get_current (b) + gho->outer_l3_hdr_offset);
116 udp =
117 (udp_header_t *) (vlib_buffer_get_current (b) + gho->outer_l4_hdr_offset);
118
119 if (gho->gho_flags & GHO_F_OUTER_IP4)
120 {
121 proto = ip4->protocol;
122 ip4->length =
123 clib_host_to_net_u16 (b->current_length - gho->outer_l3_hdr_offset);
124 ip4->checksum = ip4_header_checksum (ip4);
125 }
126 else if (gho->gho_flags & GHO_F_OUTER_IP6)
127 {
128 proto = ip6->protocol;
129 ip6->payload_length =
130 clib_host_to_net_u16 (b->current_length - gho->outer_l4_hdr_offset);
131 }
132 if (proto == IP_PROTOCOL_UDP)
133 {
134 int bogus;
135 udp->length =
136 clib_host_to_net_u16 (b->current_length - gho->outer_l4_hdr_offset);
137 udp->checksum = 0;
138 if (gho->gho_flags & GHO_F_OUTER_IP6)
139 {
140 udp->checksum =
141 ip6_tcp_udp_icmp_compute_checksum (vm, b, ip6, &bogus);
142 }
143 else if (gho->gho_flags & GHO_F_OUTER_IP4)
144 {
145 udp->checksum = ip4_tcp_udp_compute_checksum (vm, b, ip4);
146 }
147 b->flags &= ~VNET_BUFFER_F_OFFLOAD_UDP_CKSUM;
148 }
149}
150
151static_always_inline u16
152tso_segment_vxlan_tunnel_fixup (vlib_main_t * vm,
153 vnet_interface_per_thread_data_t * ptd,
154 vlib_buffer_t * sb0,
155 generic_header_offset_t * gho)
156{
157 u16 n_tx_bufs = vec_len (ptd->split_buffers);
158 u16 i = 0, n_tx_bytes = 0;
159
160 while (i < n_tx_bufs)
161 {
162 vlib_buffer_t *b0 = vlib_get_buffer (vm, ptd->split_buffers[i]);
163 vnet_get_outer_header (b0, gho);
164 clib_memcpy_fast (vlib_buffer_get_current (b0),
165 vlib_buffer_get_current (sb0), gho->outer_hdr_sz);
166
167 tso_segment_vxlan_tunnel_headers_fixup (vm, b0, gho);
168 n_tx_bytes += gho->outer_hdr_sz;
169 i++;
170 }
171 return n_tx_bytes;
172}
173
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200174static_always_inline u16
175tso_alloc_tx_bufs (vlib_main_t * vm,
176 vnet_interface_per_thread_data_t * ptd,
177 vlib_buffer_t * b0, u32 n_bytes_b0, u16 l234_sz,
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000178 u16 gso_size, u16 first_data_size,
179 generic_header_offset_t * gho)
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200180{
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000181 u16 n_alloc, size;
182 u16 first_packet_length = l234_sz + first_data_size;
183
184 /*
185 * size is the amount of data per segmented buffer except the 1st
186 * segmented buffer.
187 * l2_hdr_offset is an offset == current_data of vlib_buffer_t.
188 * l234_sz is hdr_sz from l2_hdr_offset.
189 */
190 size =
Mohsin Kazmi222b7092019-12-25 00:12:52 +0100191 clib_min (gso_size, vlib_buffer_get_default_data_size (vm) - l234_sz
192 - gho->l2_hdr_offset);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200193
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000194 /*
195 * First segmented buffer length is calculated separately.
196 * As it may contain less data than gso_size (when gso_size is
197 * greater than current_length of 1st buffer from GSO chained
198 * buffers) and/or size calculated above.
199 */
200 u16 n_bufs = 1;
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200201
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000202 /*
203 * Total packet length minus first packet length including l234 header.
204 * rounded-up division
205 */
206 ASSERT (n_bytes_b0 > first_packet_length);
207 n_bufs += ((n_bytes_b0 - first_packet_length + (size - 1)) / size);
208
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200209 vec_validate (ptd->split_buffers, n_bufs - 1);
210
211 n_alloc = vlib_buffer_alloc (vm, ptd->split_buffers, n_bufs);
212 if (n_alloc < n_bufs)
213 {
214 vlib_buffer_free (vm, ptd->split_buffers, n_alloc);
215 return 0;
216 }
217 return n_alloc;
218}
219
220static_always_inline void
221tso_init_buf_from_template_base (vlib_buffer_t * nb0, vlib_buffer_t * b0,
222 u32 flags, u16 length)
223{
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200224 /* copying objects from cacheline 0 */
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200225 nb0->current_data = b0->current_data;
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200226 nb0->current_length = length;
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200227 nb0->flags = VLIB_BUFFER_TOTAL_LENGTH_VALID | flags;
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200228 nb0->flow_id = b0->flow_id;
229 nb0->error = b0->error;
230 nb0->current_config_index = b0->current_config_index;
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200231 clib_memcpy_fast (&nb0->opaque, &b0->opaque, sizeof (nb0->opaque));
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200232
233 /* copying objects from cacheline 1 */
234 nb0->trace_handle = b0->trace_handle;
235 nb0->total_length_not_including_first_buffer = 0;
236
237 /* copying data */
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200238 clib_memcpy_fast (vlib_buffer_get_current (nb0),
239 vlib_buffer_get_current (b0), length);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200240}
241
242static_always_inline void
243tso_init_buf_from_template (vlib_main_t * vm, vlib_buffer_t * nb0,
244 vlib_buffer_t * b0, u16 template_data_sz,
245 u16 gso_size, u8 ** p_dst_ptr, u16 * p_dst_left,
Mohsin Kazmi72e73122019-10-22 13:33:13 +0200246 u32 next_tcp_seq, u32 flags,
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000247 generic_header_offset_t * gho)
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200248{
249 tso_init_buf_from_template_base (nb0, b0, flags, template_data_sz);
250
251 *p_dst_left =
252 clib_min (gso_size,
253 vlib_buffer_get_default_data_size (vm) - (template_data_sz +
254 nb0->current_data));
255 *p_dst_ptr = vlib_buffer_get_current (nb0) + template_data_sz;
256
257 tcp_header_t *tcp =
Mohsin Kazmi72e73122019-10-22 13:33:13 +0200258 (tcp_header_t *) (vlib_buffer_get_current (nb0) + gho->l4_hdr_offset);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200259 tcp->seq_number = clib_host_to_net_u32 (next_tcp_seq);
260}
261
262static_always_inline void
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000263tso_fixup_segmented_buf (vlib_main_t * vm, vlib_buffer_t * b0, u8 tcp_flags,
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200264 int is_ip6, generic_header_offset_t * gho)
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200265{
Mohsin Kazmi72e73122019-10-22 13:33:13 +0200266 ip4_header_t *ip4 =
267 (ip4_header_t *) (vlib_buffer_get_current (b0) + gho->l3_hdr_offset);
268 ip6_header_t *ip6 =
269 (ip6_header_t *) (vlib_buffer_get_current (b0) + gho->l3_hdr_offset);
270 tcp_header_t *tcp =
271 (tcp_header_t *) (vlib_buffer_get_current (b0) + gho->l4_hdr_offset);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200272
273 tcp->flags = tcp_flags;
274
275 if (is_ip6)
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000276 {
277 ip6->payload_length =
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200278 clib_host_to_net_u16 (b0->current_length - gho->l4_hdr_offset);
279 if (gho->gho_flags & GHO_F_TCP)
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000280 {
281 int bogus = 0;
282 tcp->checksum = 0;
283 tcp->checksum =
284 ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip6, &bogus);
285 b0->flags &= ~VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
286 }
287 }
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200288 else
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000289 {
290 ip4->length =
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200291 clib_host_to_net_u16 (b0->current_length - gho->l3_hdr_offset);
292 if (gho->gho_flags & GHO_F_IP4)
293 ip4->checksum = ip4_header_checksum (ip4);
294 if (gho->gho_flags & GHO_F_TCP)
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000295 {
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200296 tcp->checksum = 0;
297 tcp->checksum = ip4_tcp_udp_compute_checksum (vm, b0, ip4);
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000298 }
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200299 b0->flags &= ~VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
300 b0->flags &= ~VNET_BUFFER_F_OFFLOAD_IP_CKSUM;
301 }
302
303 if ((gho->gho_flags & GHO_F_TUNNEL) == 0)
304 {
305 u32 adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
306
307 ip_adjacency_t *adj0 = adj_get (adj_index0);
308
309 if (adj0->lookup_next_index == IP_LOOKUP_NEXT_MIDCHAIN &&
310 adj0->sub_type.midchain.fixup_func)
311 /* calls e.g. ipip44_fixup */
312 adj0->sub_type.midchain.fixup_func
313 (vm, adj0, b0, adj0->sub_type.midchain.fixup_data);
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000314 }
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200315}
316
317/**
318 * Allocate the necessary number of ptd->split_buffers,
319 * and segment the possibly chained buffer(s) from b0 into
320 * there.
321 *
322 * Return the cumulative number of bytes sent or zero
323 * if allocation failed.
324 */
325
326static_always_inline u32
327tso_segment_buffer (vlib_main_t * vm, vnet_interface_per_thread_data_t * ptd,
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000328 u32 sbi0, vlib_buffer_t * sb0,
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200329 generic_header_offset_t * gho, u32 n_bytes_b0, int is_ip6)
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200330{
331 u32 n_tx_bytes = 0;
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200332 u16 gso_size = vnet_buffer2 (sb0)->gso_size;
333
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200334 u8 save_tcp_flags = 0;
335 u8 tcp_flags_no_fin_psh = 0;
336 u32 next_tcp_seq = 0;
337
338 tcp_header_t *tcp =
Mohsin Kazmi72e73122019-10-22 13:33:13 +0200339 (tcp_header_t *) (vlib_buffer_get_current (sb0) + gho->l4_hdr_offset);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200340 next_tcp_seq = clib_net_to_host_u32 (tcp->seq_number);
341 /* store original flags for last packet and reset FIN and PSH */
342 save_tcp_flags = tcp->flags;
343 tcp_flags_no_fin_psh = tcp->flags & ~(TCP_FLAG_FIN | TCP_FLAG_PSH);
344 tcp->checksum = 0;
345
346 u32 default_bflags =
347 sb0->flags & ~(VNET_BUFFER_F_GSO | VLIB_BUFFER_NEXT_PRESENT);
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000348 u16 l234_sz = gho->hdr_sz;
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200349 int first_data_size = clib_min (gso_size, sb0->current_length - l234_sz);
350 next_tcp_seq += first_data_size;
351
352 if (PREDICT_FALSE
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000353 (!tso_alloc_tx_bufs
354 (vm, ptd, sb0, n_bytes_b0, l234_sz, gso_size, first_data_size, gho)))
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200355 return 0;
356
357 vlib_buffer_t *b0 = vlib_get_buffer (vm, ptd->split_buffers[0]);
358 tso_init_buf_from_template_base (b0, sb0, default_bflags,
359 l234_sz + first_data_size);
360
361 u32 total_src_left = n_bytes_b0 - l234_sz - first_data_size;
362 if (total_src_left)
363 {
364 /* Need to copy more segments */
365 u8 *src_ptr, *dst_ptr;
366 u16 src_left, dst_left;
367 /* current source buffer */
368 vlib_buffer_t *csb0 = sb0;
369 u32 csbi0 = sbi0;
370 /* current dest buffer */
371 vlib_buffer_t *cdb0;
372 u16 dbi = 1; /* the buffer [0] is b0 */
373
374 src_ptr = vlib_buffer_get_current (sb0) + l234_sz + first_data_size;
375 src_left = sb0->current_length - l234_sz - first_data_size;
376
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200377 tso_fixup_segmented_buf (vm, b0, tcp_flags_no_fin_psh, is_ip6, gho);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200378
379 /* grab a second buffer and prepare the loop */
380 ASSERT (dbi < vec_len (ptd->split_buffers));
381 cdb0 = vlib_get_buffer (vm, ptd->split_buffers[dbi++]);
382 tso_init_buf_from_template (vm, cdb0, b0, l234_sz, gso_size, &dst_ptr,
Mohsin Kazmi72e73122019-10-22 13:33:13 +0200383 &dst_left, next_tcp_seq, default_bflags,
384 gho);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200385
386 /* an arbitrary large number to catch the runaway loops */
387 int nloops = 2000;
388 while (total_src_left)
389 {
390 if (nloops-- <= 0)
391 clib_panic ("infinite loop detected");
392 u16 bytes_to_copy = clib_min (src_left, dst_left);
393
394 clib_memcpy_fast (dst_ptr, src_ptr, bytes_to_copy);
395
396 src_left -= bytes_to_copy;
397 src_ptr += bytes_to_copy;
398 total_src_left -= bytes_to_copy;
399 dst_left -= bytes_to_copy;
400 dst_ptr += bytes_to_copy;
401 next_tcp_seq += bytes_to_copy;
402 cdb0->current_length += bytes_to_copy;
403
404 if (0 == src_left)
405 {
406 int has_next = (csb0->flags & VLIB_BUFFER_NEXT_PRESENT);
407 u32 next_bi = csb0->next_buffer;
408
409 /* init src to the next buffer in chain */
410 if (has_next)
411 {
412 csbi0 = next_bi;
413 csb0 = vlib_get_buffer (vm, csbi0);
414 src_left = csb0->current_length;
415 src_ptr = vlib_buffer_get_current (csb0);
416 }
417 else
418 {
419 ASSERT (total_src_left == 0);
420 break;
421 }
422 }
423 if (0 == dst_left && total_src_left)
424 {
425 n_tx_bytes += cdb0->current_length;
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000426 tso_fixup_segmented_buf (vm, cdb0, tcp_flags_no_fin_psh, is_ip6,
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200427 gho);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200428 ASSERT (dbi < vec_len (ptd->split_buffers));
429 cdb0 = vlib_get_buffer (vm, ptd->split_buffers[dbi++]);
430 tso_init_buf_from_template (vm, cdb0, b0, l234_sz,
431 gso_size, &dst_ptr, &dst_left,
Mohsin Kazmi72e73122019-10-22 13:33:13 +0200432 next_tcp_seq, default_bflags, gho);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200433 }
434 }
435
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200436 tso_fixup_segmented_buf (vm, cdb0, save_tcp_flags, is_ip6, gho);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200437
438 n_tx_bytes += cdb0->current_length;
439 }
440 n_tx_bytes += b0->current_length;
441 return n_tx_bytes;
442}
443
444static_always_inline void
445drop_one_buffer_and_count (vlib_main_t * vm, vnet_main_t * vnm,
446 vlib_node_runtime_t * node, u32 * pbi0,
447 u32 sw_if_index, u32 drop_error_code)
448{
449 u32 thread_index = vm->thread_index;
450
451 vlib_simple_counter_main_t *cm;
452 cm =
453 vec_elt_at_index (vnm->interface_main.sw_if_counters,
454 VNET_INTERFACE_COUNTER_TX_ERROR);
455 vlib_increment_simple_counter (cm, thread_index, sw_if_index, 1);
456
457 vlib_error_drop_buffers (vm, node, pbi0,
458 /* buffer stride */ 1,
459 /* n_buffers */ 1,
460 VNET_INTERFACE_OUTPUT_NEXT_DROP,
461 node->node_index, drop_error_code);
462}
463
464static_always_inline uword
465vnet_gso_node_inline (vlib_main_t * vm,
466 vlib_node_runtime_t * node,
467 vlib_frame_t * frame,
468 vnet_main_t * vnm,
469 vnet_hw_interface_t * hi,
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200470 int is_l2, int is_ip4, int is_ip6, int do_segmentation)
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200471{
472 u32 *to_next;
473 u32 next_index = node->cached_next_index;
474 u32 *from = vlib_frame_vector_args (frame);
475 u32 n_left_from = frame->n_vectors;
476 u32 *from_end = from + n_left_from;
477 u32 thread_index = vm->thread_index;
478 vnet_interface_main_t *im = &vnm->interface_main;
479 vnet_interface_per_thread_data_t *ptd =
480 vec_elt_at_index (im->per_thread_data, thread_index);
481 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
482
483 vlib_get_buffers (vm, from, b, n_left_from);
484
485 while (n_left_from > 0)
486 {
487 u32 n_left_to_next;
488
489 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
490
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100491 if (!do_segmentation)
492 while (from + 8 <= from_end && n_left_to_next >= 4)
493 {
494 u32 bi0, bi1, bi2, bi3;
495 u32 next0, next1, next2, next3;
496 u32 swif0, swif1, swif2, swif3;
497 gso_trace_t *t0, *t1, *t2, *t3;
498 vnet_hw_interface_t *hi0, *hi1, *hi2, *hi3;
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200499
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100500 /* Prefetch next iteration. */
501 vlib_prefetch_buffer_header (b[4], LOAD);
502 vlib_prefetch_buffer_header (b[5], LOAD);
503 vlib_prefetch_buffer_header (b[6], LOAD);
504 vlib_prefetch_buffer_header (b[7], LOAD);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200505
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100506 bi0 = from[0];
507 bi1 = from[1];
508 bi2 = from[2];
509 bi3 = from[3];
510 to_next[0] = bi0;
511 to_next[1] = bi1;
512 to_next[2] = bi2;
513 to_next[3] = bi3;
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200514
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100515 swif0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
516 swif1 = vnet_buffer (b[1])->sw_if_index[VLIB_TX];
517 swif2 = vnet_buffer (b[2])->sw_if_index[VLIB_TX];
518 swif3 = vnet_buffer (b[3])->sw_if_index[VLIB_TX];
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200519
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100520 if (PREDICT_FALSE (hi->sw_if_index != swif0))
521 {
522 hi0 = vnet_get_sup_hw_interface (vnm, swif0);
523 if ((hi0->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_GSO) == 0 &&
524 (b[0]->flags & VNET_BUFFER_F_GSO))
525 break;
526 }
527 if (PREDICT_FALSE (hi->sw_if_index != swif1))
528 {
Steven Luonga420c5e2020-01-16 09:57:22 -0800529 hi1 = vnet_get_sup_hw_interface (vnm, swif1);
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100530 if (!(hi1->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_GSO) &&
531 (b[1]->flags & VNET_BUFFER_F_GSO))
532 break;
533 }
534 if (PREDICT_FALSE (hi->sw_if_index != swif2))
535 {
Steven Luonga420c5e2020-01-16 09:57:22 -0800536 hi2 = vnet_get_sup_hw_interface (vnm, swif2);
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100537 if ((hi2->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_GSO) == 0 &&
538 (b[2]->flags & VNET_BUFFER_F_GSO))
539 break;
540 }
541 if (PREDICT_FALSE (hi->sw_if_index != swif3))
542 {
Steven Luonga420c5e2020-01-16 09:57:22 -0800543 hi3 = vnet_get_sup_hw_interface (vnm, swif3);
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100544 if (!(hi3->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_GSO) &&
545 (b[3]->flags & VNET_BUFFER_F_GSO))
546 break;
547 }
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200548
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100549 if (b[0]->flags & VLIB_BUFFER_IS_TRACED)
550 {
551 t0 = vlib_add_trace (vm, node, b[0], sizeof (t0[0]));
552 t0->flags = b[0]->flags & VNET_BUFFER_F_GSO;
553 t0->gso_size = vnet_buffer2 (b[0])->gso_size;
554 t0->gso_l4_hdr_sz = vnet_buffer2 (b[0])->gso_l4_hdr_sz;
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200555 vnet_generic_header_offset_parser (b[0], &t0->gho, is_l2,
556 is_ip4, is_ip6);
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100557 }
558 if (b[1]->flags & VLIB_BUFFER_IS_TRACED)
559 {
560 t1 = vlib_add_trace (vm, node, b[1], sizeof (t1[0]));
561 t1->flags = b[1]->flags & VNET_BUFFER_F_GSO;
562 t1->gso_size = vnet_buffer2 (b[1])->gso_size;
563 t1->gso_l4_hdr_sz = vnet_buffer2 (b[1])->gso_l4_hdr_sz;
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200564 vnet_generic_header_offset_parser (b[1], &t1->gho, is_l2,
565 is_ip4, is_ip6);
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100566 }
567 if (b[2]->flags & VLIB_BUFFER_IS_TRACED)
568 {
569 t2 = vlib_add_trace (vm, node, b[2], sizeof (t2[0]));
570 t2->flags = b[2]->flags & VNET_BUFFER_F_GSO;
571 t2->gso_size = vnet_buffer2 (b[2])->gso_size;
572 t2->gso_l4_hdr_sz = vnet_buffer2 (b[2])->gso_l4_hdr_sz;
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200573 vnet_generic_header_offset_parser (b[2], &t2->gho, is_l2,
574 is_ip4, is_ip6);
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100575 }
576 if (b[3]->flags & VLIB_BUFFER_IS_TRACED)
577 {
578 t3 = vlib_add_trace (vm, node, b[3], sizeof (t3[0]));
579 t3->flags = b[3]->flags & VNET_BUFFER_F_GSO;
580 t3->gso_size = vnet_buffer2 (b[3])->gso_size;
581 t3->gso_l4_hdr_sz = vnet_buffer2 (b[3])->gso_l4_hdr_sz;
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200582 vnet_generic_header_offset_parser (b[3], &t3->gho, is_l2,
583 is_ip4, is_ip6);
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100584 }
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200585
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100586 from += 4;
587 to_next += 4;
588 n_left_to_next -= 4;
589 n_left_from -= 4;
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200590
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100591 next0 = next1 = 0;
592 next2 = next3 = 0;
593 vnet_feature_next (&next0, b[0]);
594 vnet_feature_next (&next1, b[1]);
595 vnet_feature_next (&next2, b[2]);
596 vnet_feature_next (&next3, b[3]);
597 vlib_validate_buffer_enqueue_x4 (vm, node, next_index, to_next,
598 n_left_to_next, bi0, bi1, bi2,
599 bi3, next0, next1, next2, next3);
600 b += 4;
601 }
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200602
603 while (from + 1 <= from_end && n_left_to_next > 0)
604 {
605 u32 bi0, swif0;
606 gso_trace_t *t0;
607 vnet_hw_interface_t *hi0;
608 u32 next0 = 0;
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100609 u32 do_segmentation0 = 0;
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200610
611 swif0 = vnet_buffer (b[0])->sw_if_index[VLIB_TX];
612 if (PREDICT_FALSE (hi->sw_if_index != swif0))
613 {
614 hi0 = vnet_get_sup_hw_interface (vnm, swif0);
615 if ((hi0->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_GSO) == 0 &&
616 (b[0]->flags & VNET_BUFFER_F_GSO))
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100617 do_segmentation0 = 1;
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200618 }
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100619 else
620 do_segmentation0 = do_segmentation;
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200621
622 /* speculatively enqueue b0 to the current next frame */
623 to_next[0] = bi0 = from[0];
624 to_next += 1;
625 n_left_to_next -= 1;
626 from += 1;
627 n_left_from -= 1;
628
629 if (b[0]->flags & VLIB_BUFFER_IS_TRACED)
630 {
631 t0 = vlib_add_trace (vm, node, b[0], sizeof (t0[0]));
632 t0->flags = b[0]->flags & VNET_BUFFER_F_GSO;
633 t0->gso_size = vnet_buffer2 (b[0])->gso_size;
634 t0->gso_l4_hdr_sz = vnet_buffer2 (b[0])->gso_l4_hdr_sz;
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200635 vnet_generic_header_offset_parser (b[0], &t0->gho, is_l2,
636 is_ip4, is_ip6);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200637 }
638
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100639 if (do_segmentation0)
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200640 {
641 if (PREDICT_FALSE (b[0]->flags & VNET_BUFFER_F_GSO))
642 {
643 /*
644 * Undo the enqueue of the b0 - it is not going anywhere,
645 * and will be freed either after it's segmented or
646 * when dropped, if there is no buffers to segment into.
647 */
648 to_next -= 1;
649 n_left_to_next += 1;
650 /* undo the counting. */
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000651 generic_header_offset_t gho = { 0 };
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200652 u32 n_bytes_b0 = vlib_buffer_length_in_chain (vm, b[0]);
653 u32 n_tx_bytes = 0;
Mohsin Kazmibe03b5c2020-05-28 20:56:43 +0200654 u32 inner_is_ip6 = is_ip6;
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200655
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200656 vnet_generic_header_offset_parser (b[0], &gho, is_l2,
657 is_ip4, is_ip6);
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000658
659 if (PREDICT_FALSE (gho.gho_flags & GHO_F_TUNNEL))
660 {
661 if (PREDICT_FALSE
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200662 (gho.gho_flags & (GHO_F_GRE_TUNNEL |
663 GHO_F_GENEVE_TUNNEL)))
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000664 {
665 /* not supported yet */
666 drop_one_buffer_and_count (vm, vnm, node, from - 1,
667 hi->sw_if_index,
668 VNET_INTERFACE_OUTPUT_ERROR_UNHANDLED_GSO_TYPE);
669 b += 1;
670 continue;
671 }
672
673 vnet_get_inner_header (b[0], &gho);
674
675 n_bytes_b0 -= gho.outer_hdr_sz;
Mohsin Kazmibe03b5c2020-05-28 20:56:43 +0200676 inner_is_ip6 = (gho.gho_flags & GHO_F_IP6) != 0;
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000677 }
678
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200679 n_tx_bytes =
Mohsin Kazmi72e73122019-10-22 13:33:13 +0200680 tso_segment_buffer (vm, ptd, bi0, b[0], &gho, n_bytes_b0,
Mohsin Kazmibe03b5c2020-05-28 20:56:43 +0200681 inner_is_ip6);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200682
683 if (PREDICT_FALSE (n_tx_bytes == 0))
684 {
685 drop_one_buffer_and_count (vm, vnm, node, from - 1,
686 hi->sw_if_index,
687 VNET_INTERFACE_OUTPUT_ERROR_NO_BUFFERS_FOR_GSO);
688 b += 1;
689 continue;
690 }
691
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200692
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000693 if (PREDICT_FALSE (gho.gho_flags & GHO_F_VXLAN_TUNNEL))
694 {
695 vnet_get_outer_header (b[0], &gho);
696 n_tx_bytes +=
697 tso_segment_vxlan_tunnel_fixup (vm, ptd, b[0], &gho);
698 }
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200699 else
700 if (PREDICT_FALSE
701 (gho.gho_flags & (GHO_F_IPIP_TUNNEL |
702 GHO_F_IPIP6_TUNNEL)))
703 {
704 vnet_get_outer_header (b[0], &gho);
705 n_tx_bytes +=
706 tso_segment_ipip_tunnel_fixup (vm, ptd, b[0], &gho);
707 }
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000708
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200709 u16 n_tx_bufs = vec_len (ptd->split_buffers);
710 u32 *from_seg = ptd->split_buffers;
711
712 while (n_tx_bufs > 0)
713 {
714 u32 sbi0;
715 vlib_buffer_t *sb0;
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200716 while (n_tx_bufs > 0 && n_left_to_next > 0)
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200717 {
718 sbi0 = to_next[0] = from_seg[0];
719 sb0 = vlib_get_buffer (vm, sbi0);
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000720 ASSERT (sb0->current_length > 0);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200721 to_next += 1;
722 from_seg += 1;
723 n_left_to_next -= 1;
724 n_tx_bufs -= 1;
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200725 next0 = 0;
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200726 vnet_feature_next (&next0, sb0);
727 vlib_validate_buffer_enqueue_x1 (vm, node,
728 next_index,
729 to_next,
730 n_left_to_next,
731 sbi0, next0);
732 }
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200733 vlib_put_next_frame (vm, node, next_index,
734 n_left_to_next);
735 if (n_tx_bufs > 0)
736 vlib_get_next_frame (vm, node, next_index,
737 to_next, n_left_to_next);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200738 }
739 /* The buffers were enqueued. Reset the length */
740 _vec_len (ptd->split_buffers) = 0;
741 /* Free the now segmented buffer */
742 vlib_buffer_free_one (vm, bi0);
743 b += 1;
744 continue;
745 }
746 }
747
748 vnet_feature_next (&next0, b[0]);
749 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
750 n_left_to_next, bi0, next0);
751 b += 1;
752 }
753 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
754 }
755
756 return frame->n_vectors;
757}
758
759static_always_inline uword
760vnet_gso_inline (vlib_main_t * vm,
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200761 vlib_node_runtime_t * node, vlib_frame_t * frame, int is_l2,
762 int is_ip4, int is_ip6)
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200763{
764 vnet_main_t *vnm = vnet_get_main ();
765 vnet_hw_interface_t *hi;
766
767 if (frame->n_vectors > 0)
768 {
769 u32 *from = vlib_frame_vector_args (frame);
770 vlib_buffer_t *b = vlib_get_buffer (vm, from[0]);
771 hi = vnet_get_sup_hw_interface (vnm,
772 vnet_buffer (b)->sw_if_index[VLIB_TX]);
Mohsin Kazmi70ae4ef2019-12-09 11:46:01 +0100773
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200774 if (hi->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_GSO)
775 return vnet_gso_node_inline (vm, node, frame, vnm, hi,
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200776 is_l2, is_ip4, is_ip6,
777 /* do_segmentation */ 0);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200778 else
779 return vnet_gso_node_inline (vm, node, frame, vnm, hi,
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200780 is_l2, is_ip4, is_ip6,
781 /* do_segmentation */ 1);
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200782 }
783 return 0;
784}
785
786VLIB_NODE_FN (gso_l2_ip4_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
787 vlib_frame_t * frame)
788{
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200789 return vnet_gso_inline (vm, node, frame, 1 /* l2 */ , 1 /* ip4 */ ,
790 0 /* ip6 */ );
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200791}
792
793VLIB_NODE_FN (gso_l2_ip6_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
794 vlib_frame_t * frame)
795{
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200796 return vnet_gso_inline (vm, node, frame, 1 /* l2 */ , 0 /* ip4 */ ,
797 1 /* ip6 */ );
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200798}
799
800VLIB_NODE_FN (gso_ip4_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
801 vlib_frame_t * frame)
802{
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200803 return vnet_gso_inline (vm, node, frame, 0 /* l2 */ , 1 /* ip4 */ ,
804 0 /* ip6 */ );
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200805}
806
807VLIB_NODE_FN (gso_ip6_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
808 vlib_frame_t * frame)
809{
Mohsin Kazmi84f91fa2020-04-23 17:59:49 +0200810 return vnet_gso_inline (vm, node, frame, 0 /* l2 */ , 0 /* ip4 */ ,
811 1 /* ip6 */ );
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200812}
813
814/* *INDENT-OFF* */
815
816VLIB_REGISTER_NODE (gso_l2_ip4_node) = {
817 .vector_size = sizeof (u32),
818 .format_trace = format_gso_trace,
819 .type = VLIB_NODE_TYPE_INTERNAL,
820 .n_errors = 0,
821 .n_next_nodes = 0,
822 .name = "gso-l2-ip4",
823};
824
825VLIB_REGISTER_NODE (gso_l2_ip6_node) = {
826 .vector_size = sizeof (u32),
827 .format_trace = format_gso_trace,
828 .type = VLIB_NODE_TYPE_INTERNAL,
829 .n_errors = 0,
830 .n_next_nodes = 0,
831 .name = "gso-l2-ip6",
832};
833
834VLIB_REGISTER_NODE (gso_ip4_node) = {
835 .vector_size = sizeof (u32),
836 .format_trace = format_gso_trace,
837 .type = VLIB_NODE_TYPE_INTERNAL,
838 .n_errors = 0,
839 .n_next_nodes = 0,
840 .name = "gso-ip4",
841};
842
843VLIB_REGISTER_NODE (gso_ip6_node) = {
844 .vector_size = sizeof (u32),
845 .format_trace = format_gso_trace,
846 .type = VLIB_NODE_TYPE_INTERNAL,
847 .n_errors = 0,
848 .n_next_nodes = 0,
849 .name = "gso-ip6",
850};
851
852VNET_FEATURE_INIT (gso_l2_ip4_node, static) = {
853 .arc_name = "l2-output-ip4",
854 .node_name = "gso-l2-ip4",
855 .runs_before = VNET_FEATURES ("l2-output-feat-arc-end"),
856};
857
858VNET_FEATURE_INIT (gso_l2_ip6_node, static) = {
859 .arc_name = "l2-output-ip6",
860 .node_name = "gso-l2-ip6",
861 .runs_before = VNET_FEATURES ("l2-output-feat-arc-end"),
862};
863
864VNET_FEATURE_INIT (gso_ip4_node, static) = {
865 .arc_name = "ip4-output",
866 .node_name = "gso-ip4",
Neale Ranns83d12982020-05-11 15:24:39 +0000867 .runs_before = VNET_FEATURES ("ipsec4-output-feature"),
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200868};
869
870VNET_FEATURE_INIT (gso_ip6_node, static) = {
871 .arc_name = "ip6-output",
872 .node_name = "gso-ip6",
Neale Ranns83d12982020-05-11 15:24:39 +0000873 .runs_before = VNET_FEATURES ("ipsec6-output-feature"),
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200874};
875
876/*
877 * fd.io coding-style-patch-verification: ON
878 *
879 * Local Variables:
880 * eval: (c-set-style "gnu")
881 * End:
882 */