blob: c7649318c4366e4cb364fed2e31e065b0ed21081 [file] [log] [blame]
Mohsin Kazmif382b062020-08-11 15:00:44 +02001/*
2 * Copyright (c) 2020 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_gro_func_h
17#define included_gro_func_h
18
19#include <vnet/ethernet/ethernet.h>
20#include <vnet/gso/gro.h>
21#include <vnet/gso/hdr_offset_parser.h>
Florin Corasb040f982020-10-20 14:59:43 -070022#include <vnet/ip/ip4.h>
23#include <vnet/ip/ip6.h>
Aloys Augustin86490da2021-09-15 16:06:04 +020024#include <vnet/ip/ip6_inlines.h>
Mohsin Kazmif382b062020-08-11 15:00:44 +020025#include <vnet/udp/udp_packet.h>
Florin Coras97f96942020-10-20 13:45:51 -070026#include <vnet/tcp/tcp_packet.h>
Mohsin Kazmif382b062020-08-11 15:00:44 +020027#include <vnet/vnet.h>
Mohsin Kazmib7e4e6d2021-12-13 18:32:42 +000028#include <vnet/interface.h>
Mohsin Kazmif382b062020-08-11 15:00:44 +020029
Aloys Augustin86490da2021-09-15 16:06:04 +020030#define GRO_MIN_PACKET_SIZE 256
31#define GRO_PADDED_PACKET_SIZE 64
32
Mohsin Kazmif382b062020-08-11 15:00:44 +020033static_always_inline u8
34gro_is_bad_packet (vlib_buffer_t * b, u8 flags, i16 l234_sz)
35{
Mohsin Kazmi8758a942021-05-28 17:11:23 +020036 if (((b->current_length - l234_sz) <= 0) ||
37 ((flags &= ~(TCP_FLAG_ACK | TCP_FLAG_PSH)) != 0))
Mohsin Kazmif382b062020-08-11 15:00:44 +020038 return 1;
39 return 0;
40}
41
42static_always_inline void
43gro_get_ip4_flow_from_packet (u32 * sw_if_index,
44 ip4_header_t * ip4, tcp_header_t * tcp,
45 gro_flow_key_t * flow_key, int is_l2)
46{
47 flow_key->sw_if_index[VLIB_RX] = sw_if_index[VLIB_RX];
48 flow_key->sw_if_index[VLIB_TX] = sw_if_index[VLIB_TX];
49 ip46_address_set_ip4 (&flow_key->src_address, &ip4->src_address);
50 ip46_address_set_ip4 (&flow_key->dst_address, &ip4->dst_address);
51 flow_key->src_port = tcp->src_port;
52 flow_key->dst_port = tcp->dst_port;
53}
54
55static_always_inline void
56gro_get_ip6_flow_from_packet (u32 * sw_if_index,
57 ip6_header_t * ip6, tcp_header_t * tcp,
58 gro_flow_key_t * flow_key, int is_l2)
59{
60 flow_key->sw_if_index[VLIB_RX] = sw_if_index[VLIB_RX];
61 flow_key->sw_if_index[VLIB_TX] = sw_if_index[VLIB_TX];
62 ip46_address_set_ip6 (&flow_key->src_address, &ip6->src_address);
63 ip46_address_set_ip6 (&flow_key->dst_address, &ip6->dst_address);
64 flow_key->src_port = tcp->src_port;
65 flow_key->dst_port = tcp->dst_port;
66}
67
68static_always_inline u32
Mohsin Kazmi8758a942021-05-28 17:11:23 +020069gro_is_ip4_or_ip6_packet (vlib_buffer_t *b0, u8 is_l2)
Mohsin Kazmif382b062020-08-11 15:00:44 +020070{
71 if (b0->flags & VNET_BUFFER_F_IS_IP4)
72 return VNET_BUFFER_F_IS_IP4;
73 if (b0->flags & VNET_BUFFER_F_IS_IP6)
74 return VNET_BUFFER_F_IS_IP6;
75 if (is_l2)
76 {
77 ethernet_header_t *eh =
78 (ethernet_header_t *) vlib_buffer_get_current (b0);
79 u16 ethertype = clib_net_to_host_u16 (eh->type);
80
81 if (ethernet_frame_is_tagged (ethertype))
82 {
83 ethernet_vlan_header_t *vlan = (ethernet_vlan_header_t *) (eh + 1);
84
85 ethertype = clib_net_to_host_u16 (vlan->type);
86 if (ethertype == ETHERNET_TYPE_VLAN)
87 {
88 vlan++;
89 ethertype = clib_net_to_host_u16 (vlan->type);
90 }
91 }
92 if (ethertype == ETHERNET_TYPE_IP4)
93 return VNET_BUFFER_F_IS_IP4;
94 if (ethertype == ETHERNET_TYPE_IP6)
95 return VNET_BUFFER_F_IS_IP6;
96 }
97 else
98 {
99 if ((((u8 *) vlib_buffer_get_current (b0))[0] & 0xf0) == 0x40)
100 return VNET_BUFFER_F_IS_IP4;
101 if ((((u8 *) vlib_buffer_get_current (b0))[0] & 0xf0) == 0x60)
102 return VNET_BUFFER_F_IS_IP6;
103 }
104
105 return 0;
106}
107
108typedef enum
109{
110 GRO_PACKET_ACTION_NONE = 0,
111 GRO_PACKET_ACTION_ENQUEUE = 1,
112 GRO_PACKET_ACTION_FLUSH = 2,
113} gro_packet_action_t;
114
115static_always_inline gro_packet_action_t
116gro_tcp_sequence_check (tcp_header_t * tcp0, tcp_header_t * tcp1,
117 u32 payload_len0)
118{
119 u32 next_tcp_seq0 = clib_net_to_host_u32 (tcp0->seq_number);
120 u32 next_tcp_seq1 = clib_net_to_host_u32 (tcp1->seq_number);
121
122 /* next packet, enqueue */
123 if (PREDICT_TRUE (next_tcp_seq0 + payload_len0 == next_tcp_seq1))
124 return GRO_PACKET_ACTION_ENQUEUE;
125 /* flush all packets */
126 else
127 return GRO_PACKET_ACTION_FLUSH;
128}
129
130static_always_inline void
131gro_merge_buffers (vlib_main_t * vm, vlib_buffer_t * b0,
132 vlib_buffer_t * b1, u32 bi1, u32 payload_len1,
133 u16 l234_sz1)
134{
135 vlib_buffer_t *pb = b0;
136
137 if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_NEXT_PRESENT) == 0))
138 b0->total_length_not_including_first_buffer = 0;
139
140 while (pb->flags & VLIB_BUFFER_NEXT_PRESENT)
141 pb = vlib_get_buffer (vm, pb->next_buffer);
142
143 vlib_buffer_advance (b1, l234_sz1);
144 pb->flags |= VLIB_BUFFER_NEXT_PRESENT;
145 pb->next_buffer = bi1;
146 b0->total_length_not_including_first_buffer += payload_len1;
147 b0->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
148}
149
150static_always_inline u32
Mohsin Kazmif8d421f2020-10-06 11:58:40 +0200151gro_validate_checksum (vlib_main_t * vm, vlib_buffer_t * b0,
152 generic_header_offset_t * gho0, int is_ip4)
153{
154 u32 flags = 0;
155
Mohsin Kazmi68095382021-02-10 11:26:24 +0100156 if (b0->flags & VNET_BUFFER_F_OFFLOAD)
Mohsin Kazmif8d421f2020-10-06 11:58:40 +0200157 return VNET_BUFFER_F_L4_CHECKSUM_CORRECT;
158 vlib_buffer_advance (b0, gho0->l3_hdr_offset);
159 if (is_ip4)
160 flags = ip4_tcp_udp_validate_checksum (vm, b0);
161 else
162 flags = ip6_tcp_udp_icmp_validate_checksum (vm, b0);
163 vlib_buffer_advance (b0, -gho0->l3_hdr_offset);
164 return flags;
165}
166
167static_always_inline u32
Aloys Augustin86490da2021-09-15 16:06:04 +0200168gro_fix_padded_packet_len (vlib_buffer_t *b0, generic_header_offset_t *gho0,
169 ip4_header_t *ip4_0, ip6_header_t *ip6_0,
170 u32 pkt_len0, u16 l234_sz0)
171{
172 u32 tcp_payload_len0 = 0;
173 if (gho0->gho_flags & GHO_F_IP4)
174 {
175 tcp_payload_len0 = clib_net_to_host_u16 (ip4_0->length) -
176 ip4_header_bytes (ip4_0) - gho0->l4_hdr_sz;
177 }
178 else
179 {
180 tcp_payload_len0 =
181 clib_net_to_host_u16 (ip6_0->payload_length) - gho0->l4_hdr_sz;
182 }
183
184 ASSERT (l234_sz0 + tcp_payload_len0 <= pkt_len0);
185
186 if (PREDICT_FALSE (l234_sz0 + tcp_payload_len0 < pkt_len0))
187 {
188 /* small packet with padding at the end, remove padding */
189 b0->current_length = l234_sz0 + tcp_payload_len0;
190 pkt_len0 = b0->current_length;
191 }
192 return pkt_len0;
193}
194
195static_always_inline u32
Mohsin Kazmi8758a942021-05-28 17:11:23 +0200196gro_get_packet_data (vlib_main_t *vm, vlib_buffer_t *b0,
197 generic_header_offset_t *gho0, gro_flow_key_t *flow_key0,
198 u8 is_l2)
Mohsin Kazmif382b062020-08-11 15:00:44 +0200199{
200 ip4_header_t *ip4_0 = 0;
201 ip6_header_t *ip6_0 = 0;
202 tcp_header_t *tcp0 = 0;
Mohsin Kazmif8d421f2020-10-06 11:58:40 +0200203 u32 flags = 0;
Mohsin Kazmif382b062020-08-11 15:00:44 +0200204 u32 pkt_len0 = 0;
205 u16 l234_sz0 = 0;
206 u32 sw_if_index0[VLIB_N_RX_TX] = { ~0 };
207
208 u32 is_ip0 = gro_is_ip4_or_ip6_packet (b0, is_l2);
209
210 if (is_ip0 & VNET_BUFFER_F_IS_IP4)
211 vnet_generic_header_offset_parser (b0, gho0, is_l2, 1 /* is_ip4 */ ,
212 0 /* is_ip6 */ );
213 else if (is_ip0 & VNET_BUFFER_F_IS_IP6)
214 vnet_generic_header_offset_parser (b0, gho0, is_l2, 0 /* is_ip4 */ ,
215 1 /* is_ip6 */ );
216 else
217 return 0;
218
219 if (PREDICT_FALSE ((gho0->gho_flags & GHO_F_TCP) == 0))
220 return 0;
221
222 ip4_0 =
223 (ip4_header_t *) (vlib_buffer_get_current (b0) + gho0->l3_hdr_offset);
224 ip6_0 =
225 (ip6_header_t *) (vlib_buffer_get_current (b0) + gho0->l3_hdr_offset);
226 tcp0 =
227 (tcp_header_t *) (vlib_buffer_get_current (b0) + gho0->l4_hdr_offset);
228
229 l234_sz0 = gho0->hdr_sz;
230 if (PREDICT_FALSE (gro_is_bad_packet (b0, tcp0->flags, l234_sz0)))
231 return 0;
232
233 sw_if_index0[VLIB_RX] = vnet_buffer (b0)->sw_if_index[VLIB_RX];
234 sw_if_index0[VLIB_TX] = vnet_buffer (b0)->sw_if_index[VLIB_TX];
235
236 if (gho0->gho_flags & GHO_F_IP4)
237 {
Mohsin Kazmif8d421f2020-10-06 11:58:40 +0200238 flags = gro_validate_checksum (vm, b0, gho0, 1);
Mohsin Kazmif382b062020-08-11 15:00:44 +0200239 gro_get_ip4_flow_from_packet (sw_if_index0, ip4_0, tcp0, flow_key0,
240 is_l2);
241 }
242 else if (gho0->gho_flags & GHO_F_IP6)
243 {
Mohsin Kazmif8d421f2020-10-06 11:58:40 +0200244 flags = gro_validate_checksum (vm, b0, gho0, 0);
Mohsin Kazmif382b062020-08-11 15:00:44 +0200245 gro_get_ip6_flow_from_packet (sw_if_index0, ip6_0, tcp0, flow_key0,
246 is_l2);
247 }
248 else
249 return 0;
250
Mohsin Kazmi8758a942021-05-28 17:11:23 +0200251 if (PREDICT_FALSE ((flags & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) == 0))
Mohsin Kazmif8d421f2020-10-06 11:58:40 +0200252 return 0;
253
Mohsin Kazmif382b062020-08-11 15:00:44 +0200254 pkt_len0 = vlib_buffer_length_in_chain (vm, b0);
255 if (PREDICT_FALSE (pkt_len0 >= TCP_MAX_GSO_SZ))
256 return 0;
257
Aloys Augustin86490da2021-09-15 16:06:04 +0200258 if (PREDICT_FALSE (pkt_len0 <= GRO_PADDED_PACKET_SIZE))
259 {
260 pkt_len0 =
261 gro_fix_padded_packet_len (b0, gho0, ip4_0, ip6_0, pkt_len0, l234_sz0);
262 }
Mohsin Kazmif382b062020-08-11 15:00:44 +0200263 return pkt_len0;
264}
265
266static_always_inline u32
Mohsin Kazmi8758a942021-05-28 17:11:23 +0200267gro_coalesce_buffers (vlib_main_t *vm, vlib_buffer_t *b0, vlib_buffer_t *b1,
268 u32 bi1, u8 is_l2)
Mohsin Kazmif382b062020-08-11 15:00:44 +0200269{
270 generic_header_offset_t gho0 = { 0 };
271 generic_header_offset_t gho1 = { 0 };
272 gro_flow_key_t flow_key0, flow_key1;
273 ip4_header_t *ip4_0, *ip4_1;
274 ip6_header_t *ip6_0, *ip6_1;
275 tcp_header_t *tcp0, *tcp1;
276 u16 l234_sz0, l234_sz1;
277 u32 pkt_len0, pkt_len1, payload_len0, payload_len1;
278 u32 sw_if_index0[VLIB_N_RX_TX] = { ~0 };
279 u32 sw_if_index1[VLIB_N_RX_TX] = { ~0 };
280
281 u32 is_ip0 = gro_is_ip4_or_ip6_packet (b0, is_l2);
282 u32 is_ip1 = gro_is_ip4_or_ip6_packet (b1, is_l2);
283
284 if (is_ip0 & VNET_BUFFER_F_IS_IP4)
285 vnet_generic_header_offset_parser (b0, &gho0, is_l2, 1 /* is_ip4 */ ,
286 0 /* is_ip6 */ );
287 else if (is_ip0 & VNET_BUFFER_F_IS_IP6)
288 vnet_generic_header_offset_parser (b0, &gho0, is_l2, 0 /* is_ip4 */ ,
289 1 /* is_ip6 */ );
290 else
291 return 0;
292
293 if (is_ip1 & VNET_BUFFER_F_IS_IP4)
294 vnet_generic_header_offset_parser (b1, &gho1, is_l2, 1 /* is_ip4 */ ,
295 0 /* is_ip6 */ );
296 else if (is_ip1 & VNET_BUFFER_F_IS_IP6)
297 vnet_generic_header_offset_parser (b1, &gho1, is_l2, 0 /* is_ip4 */ ,
298 1 /* is_ip6 */ );
299 else
300 return 0;
301
302 pkt_len0 = vlib_buffer_length_in_chain (vm, b0);
303 pkt_len1 = vlib_buffer_length_in_chain (vm, b1);
304
Aloys Augustin86490da2021-09-15 16:06:04 +0200305 if (((gho0.gho_flags & GHO_F_TCP) == 0 || pkt_len0 <= GRO_MIN_PACKET_SIZE) ||
306 ((gho1.gho_flags & GHO_F_TCP) == 0 || pkt_len1 <= GRO_MIN_PACKET_SIZE))
Mohsin Kazmif382b062020-08-11 15:00:44 +0200307 return 0;
308
309 ip4_0 =
310 (ip4_header_t *) (vlib_buffer_get_current (b0) + gho0.l3_hdr_offset);
311 ip4_1 =
312 (ip4_header_t *) (vlib_buffer_get_current (b1) + gho1.l3_hdr_offset);
313 ip6_0 =
314 (ip6_header_t *) (vlib_buffer_get_current (b0) + gho0.l3_hdr_offset);
315 ip6_1 =
316 (ip6_header_t *) (vlib_buffer_get_current (b1) + gho1.l3_hdr_offset);
317
318 tcp0 = (tcp_header_t *) (vlib_buffer_get_current (b0) + gho0.l4_hdr_offset);
319 tcp1 = (tcp_header_t *) (vlib_buffer_get_current (b1) + gho1.l4_hdr_offset);
320
321 l234_sz0 = gho0.hdr_sz;
322 l234_sz1 = gho1.hdr_sz;
323
324 if (gro_is_bad_packet (b0, tcp0->flags, l234_sz0)
325 || gro_is_bad_packet (b1, tcp1->flags, l234_sz1))
326 return 0;
327
328 sw_if_index0[VLIB_RX] = vnet_buffer (b0)->sw_if_index[VLIB_RX];
329 sw_if_index0[VLIB_TX] = vnet_buffer (b0)->sw_if_index[VLIB_TX];
330
331 sw_if_index1[VLIB_RX] = vnet_buffer (b1)->sw_if_index[VLIB_RX];
332 sw_if_index1[VLIB_TX] = vnet_buffer (b1)->sw_if_index[VLIB_TX];
333
334 if ((gho0.gho_flags & GHO_F_IP4) && (gho1.gho_flags & GHO_F_IP4))
335 {
336 gro_get_ip4_flow_from_packet (sw_if_index0, ip4_0, tcp0, &flow_key0,
337 is_l2);
338 gro_get_ip4_flow_from_packet (sw_if_index1, ip4_1, tcp1, &flow_key1,
339 is_l2);
340 }
341 else if ((gho0.gho_flags & GHO_F_IP6) && (gho1.gho_flags & GHO_F_IP6))
342 {
343 gro_get_ip6_flow_from_packet (sw_if_index0, ip6_0, tcp0, &flow_key0,
344 is_l2);
345 gro_get_ip6_flow_from_packet (sw_if_index1, ip6_1, tcp1, &flow_key1,
346 is_l2);
347 }
348 else
349 return 0;
350
351 if (gro_flow_is_equal (&flow_key0, &flow_key1) == 0)
352 return 0;
353
354 payload_len0 = pkt_len0 - l234_sz0;
355 payload_len1 = pkt_len1 - l234_sz1;
356
357 if (pkt_len0 >= TCP_MAX_GSO_SZ || pkt_len1 >= TCP_MAX_GSO_SZ
358 || (pkt_len0 + payload_len1) >= TCP_MAX_GSO_SZ)
359 return 0;
360
361 if (gro_tcp_sequence_check (tcp0, tcp1, payload_len0) ==
362 GRO_PACKET_ACTION_ENQUEUE)
363 {
364 gro_merge_buffers (vm, b0, b1, bi1, payload_len1, l234_sz1);
Mohsin Kazmi8758a942021-05-28 17:11:23 +0200365 tcp0->flags |= tcp1->flags;
Mohsin Kazmif382b062020-08-11 15:00:44 +0200366 return tcp1->ack_number;
367 }
368
369 return 0;
370}
371
372static_always_inline void
Mohsin Kazmi8758a942021-05-28 17:11:23 +0200373gro_fixup_header (vlib_main_t *vm, vlib_buffer_t *b0, u32 ack_number, u8 is_l2)
Mohsin Kazmif382b062020-08-11 15:00:44 +0200374{
375 generic_header_offset_t gho0 = { 0 };
376
377 u32 is_ip0 = gro_is_ip4_or_ip6_packet (b0, is_l2);
378
379 if (is_ip0 & VNET_BUFFER_F_IS_IP4)
380 vnet_generic_header_offset_parser (b0, &gho0, is_l2, 1 /* is_ip4 */ ,
381 0 /* is_ip6 */ );
382 else if (is_ip0 & VNET_BUFFER_F_IS_IP6)
383 vnet_generic_header_offset_parser (b0, &gho0, is_l2, 0 /* is_ip4 */ ,
384 1 /* is_ip6 */ );
385
386 vnet_buffer2 (b0)->gso_size = b0->current_length - gho0.hdr_sz;
387
388 if (gho0.gho_flags & GHO_F_IP4)
389 {
390 ip4_header_t *ip4 =
391 (ip4_header_t *) (vlib_buffer_get_current (b0) + gho0.l3_hdr_offset);
392 ip4->length =
393 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0) -
394 gho0.l3_hdr_offset);
Mohsin Kazmi68095382021-02-10 11:26:24 +0100395 b0->flags |= (VNET_BUFFER_F_GSO | VNET_BUFFER_F_IS_IP4);
396 vnet_buffer_offload_flags_set (b0, (VNET_BUFFER_OFFLOAD_F_TCP_CKSUM |
397 VNET_BUFFER_OFFLOAD_F_IP_CKSUM));
Mohsin Kazmif382b062020-08-11 15:00:44 +0200398 }
399 else if (gho0.gho_flags & GHO_F_IP6)
400 {
401 ip6_header_t *ip6 =
402 (ip6_header_t *) (vlib_buffer_get_current (b0) + gho0.l3_hdr_offset);
403 ip6->payload_length =
404 clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0) -
405 gho0.l4_hdr_offset);
Mohsin Kazmi68095382021-02-10 11:26:24 +0100406 b0->flags |= (VNET_BUFFER_F_GSO | VNET_BUFFER_F_IS_IP6);
407 vnet_buffer_offload_flags_set (b0, VNET_BUFFER_OFFLOAD_F_TCP_CKSUM);
Mohsin Kazmif382b062020-08-11 15:00:44 +0200408 }
409
410 tcp_header_t *tcp0 =
411 (tcp_header_t *) (vlib_buffer_get_current (b0) + gho0.l4_hdr_offset);
412 tcp0->ack_number = ack_number;
413 b0->flags &= ~VLIB_BUFFER_IS_TRACED;
414}
415
416static_always_inline u32
417vnet_gro_flow_table_flush (vlib_main_t * vm, gro_flow_table_t * flow_table,
418 u32 * to)
419{
420 if (flow_table->flow_table_size > 0)
421 {
422 gro_flow_t *gro_flow;
423 u32 i = 0, j = 0;
424 while (i < GRO_FLOW_TABLE_MAX_SIZE)
425 {
426 gro_flow = &flow_table->gro_flow[i];
427 if (gro_flow->n_buffers && gro_flow_is_timeout (vm, gro_flow))
428 {
429 // flush the packet
430 vlib_buffer_t *b0 =
431 vlib_get_buffer (vm, gro_flow->buffer_index);
432 gro_fixup_header (vm, b0, gro_flow->last_ack_number,
433 flow_table->is_l2);
434 to[j] = gro_flow->buffer_index;
435 gro_flow_table_reset_flow (flow_table, gro_flow);
436 flow_table->n_vectors++;
437 j++;
438 }
439 i++;
440 }
441
442 return j;
443 }
444 return 0;
445}
446
447static_always_inline void
Mohsin Kazmib7e4e6d2021-12-13 18:32:42 +0000448vnet_gro_flow_table_schedule_node_on_dispatcher (vlib_main_t *vm,
449 vnet_hw_if_tx_queue_t *txq,
450 gro_flow_table_t *flow_table)
Mohsin Kazmif382b062020-08-11 15:00:44 +0200451{
452 if (gro_flow_table_is_timeout (vm, flow_table))
453 {
454 u32 to[GRO_FLOW_TABLE_MAX_SIZE] = { 0 };
455 u32 n_to = vnet_gro_flow_table_flush (vm, flow_table, to);
456
457 if (n_to > 0)
458 {
459 u32 node_index = flow_table->node_index;
460 vlib_frame_t *f = vlib_get_frame_to_node (vm, node_index);
Mohsin Kazmib7e4e6d2021-12-13 18:32:42 +0000461 vnet_hw_if_tx_frame_t *ft = vlib_frame_scalar_args (f);
Mohsin Kazmif382b062020-08-11 15:00:44 +0200462 u32 *f_to = vlib_frame_vector_args (f);
463 u32 i = 0;
464
Mohsin Kazmib7e4e6d2021-12-13 18:32:42 +0000465 ft->shared_queue = txq->shared_queue;
466 ft->queue_id = txq->queue_id;
467
Mohsin Kazmif382b062020-08-11 15:00:44 +0200468 while (i < n_to)
469 {
470 f_to[f->n_vectors] = to[i];
471 i++;
472 f->n_vectors++;
473 }
474 vlib_put_frame_to_node (vm, node_index, f);
475 }
476 gro_flow_table_set_timeout (vm, flow_table, GRO_FLOW_TABLE_FLUSH);
477 }
478}
479
480static_always_inline u32
Mohsin Kazmi8758a942021-05-28 17:11:23 +0200481vnet_gro_flush_all_packets (vlib_main_t *vm, gro_flow_table_t *flow_table,
482 gro_flow_t *gro_flow, vlib_buffer_t *b_s, u32 *to,
483 u32 bi_s, u32 bi0, u8 is_l2)
484{
485 flow_table->n_vectors++;
486 flow_table->total_vectors++;
487 gro_fixup_header (vm, b_s, gro_flow->last_ack_number, is_l2);
488 gro_flow->n_buffers = 0;
489 gro_flow_table_reset_flow (flow_table, gro_flow);
490 to[0] = bi_s;
491 to[1] = bi0;
492 return 2;
493}
494
495static_always_inline u32
Mohsin Kazmif382b062020-08-11 15:00:44 +0200496vnet_gro_flow_table_inline (vlib_main_t * vm, gro_flow_table_t * flow_table,
497 u32 bi0, u32 * to)
498{
499 vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
500 generic_header_offset_t gho0 = { 0 };
501 gro_flow_t *gro_flow = 0;
502 gro_flow_key_t flow_key0 = { };
503 tcp_header_t *tcp0 = 0;
504 u32 pkt_len0 = 0;
Mohsin Kazmi8758a942021-05-28 17:11:23 +0200505 u32 is_flush = 0;
506 u8 is_l2 = flow_table->is_l2;
Mohsin Kazmif382b062020-08-11 15:00:44 +0200507
508 if (!gro_flow_table_is_enable (flow_table))
509 {
510 to[0] = bi0;
511 return 1;
512 }
513
514 if (PREDICT_FALSE (b0->flags & VNET_BUFFER_F_GSO))
515 {
516 to[0] = bi0;
517 return 1;
518 }
519
520 pkt_len0 = gro_get_packet_data (vm, b0, &gho0, &flow_key0, is_l2);
521 if (pkt_len0 == 0)
522 {
523 to[0] = bi0;
524 return 1;
525 }
526
Mohsin Kazmi8758a942021-05-28 17:11:23 +0200527 tcp0 = (tcp_header_t *) (vlib_buffer_get_current (b0) + gho0.l4_hdr_offset);
Aloys Augustin86490da2021-09-15 16:06:04 +0200528 if (PREDICT_TRUE (((tcp0->flags & TCP_FLAG_PSH) == 0) &&
529 (pkt_len0 > GRO_MIN_PACKET_SIZE)))
Mohsin Kazmi8758a942021-05-28 17:11:23 +0200530 gro_flow = gro_flow_table_find_or_add_flow (flow_table, &flow_key0);
531 else
532 {
533 is_flush = 1;
534 gro_flow = gro_flow_table_get_flow (flow_table, &flow_key0);
535 }
536
Mohsin Kazmif382b062020-08-11 15:00:44 +0200537 if (!gro_flow)
538 {
539 to[0] = bi0;
540 return 1;
541 }
542
543 if (PREDICT_FALSE (gro_flow->n_buffers == 0))
544 {
545 flow_table->total_vectors++;
546 gro_flow_store_packet (gro_flow, bi0);
Mohsin Kazmif382b062020-08-11 15:00:44 +0200547 gro_flow->last_ack_number = tcp0->ack_number;
548 gro_flow_set_timeout (vm, gro_flow, GRO_FLOW_TIMEOUT);
549 return 0;
550 }
551 else
552 {
Mohsin Kazmif382b062020-08-11 15:00:44 +0200553 generic_header_offset_t gho_s = { 0 };
554 tcp_header_t *tcp_s;
555 u16 l234_sz0, l234_sz_s;
556 u32 pkt_len_s, payload_len0, payload_len_s;
557 u32 bi_s = gro_flow->buffer_index;
558
559 vlib_buffer_t *b_s = vlib_get_buffer (vm, bi_s);
560 u32 is_ip_s = gro_is_ip4_or_ip6_packet (b_s, is_l2);
561 if (is_ip_s & VNET_BUFFER_F_IS_IP4)
562 vnet_generic_header_offset_parser (b_s, &gho_s, is_l2,
563 1 /* is_ip4 */ , 0 /* is_ip6 */ );
564 else if (is_ip_s & VNET_BUFFER_F_IS_IP6)
565 vnet_generic_header_offset_parser (b_s, &gho_s, is_l2,
566 0 /* is_ip4 */ , 1 /* is_ip6 */ );
567
568 tcp_s =
569 (tcp_header_t *) (vlib_buffer_get_current (b_s) +
570 gho_s.l4_hdr_offset);
571 pkt_len_s = vlib_buffer_length_in_chain (vm, b_s);
572 l234_sz0 = gho0.hdr_sz;
573 l234_sz_s = gho_s.hdr_sz;
574 payload_len0 = pkt_len0 - l234_sz0;
575 payload_len_s = pkt_len_s - l234_sz_s;
576 gro_packet_action_t action =
577 gro_tcp_sequence_check (tcp_s, tcp0, payload_len_s);
578
579 if (PREDICT_TRUE (action == GRO_PACKET_ACTION_ENQUEUE))
580 {
Mohsin Kazmi9314ed82021-05-05 16:25:39 +0000581 if (PREDICT_TRUE (((pkt_len_s + payload_len0) < TCP_MAX_GSO_SZ) &&
Mohsin Kazmi8758a942021-05-28 17:11:23 +0200582 (gro_flow->n_buffers < GRO_FLOW_N_BUFFERS)))
Mohsin Kazmif382b062020-08-11 15:00:44 +0200583 {
584 flow_table->total_vectors++;
585 gro_merge_buffers (vm, b_s, b0, bi0, payload_len0, l234_sz0);
586 gro_flow_store_packet (gro_flow, bi0);
587 gro_flow->last_ack_number = tcp0->ack_number;
Mohsin Kazmi8758a942021-05-28 17:11:23 +0200588 if (PREDICT_FALSE (is_flush))
589 {
590 flow_table->n_vectors++;
591 tcp_s->flags |= tcp0->flags;
592 gro_fixup_header (vm, b_s, gro_flow->last_ack_number, is_l2);
593 gro_flow->n_buffers = 0;
594 gro_flow_table_reset_flow (flow_table, gro_flow);
595 to[0] = bi_s;
596 return 1;
597 }
Mohsin Kazmif382b062020-08-11 15:00:44 +0200598 return 0;
599 }
Mohsin Kazmi8758a942021-05-28 17:11:23 +0200600 else if (PREDICT_FALSE (is_flush))
601 // flush the all (current and stored) packets
602 return vnet_gro_flush_all_packets (vm, flow_table, gro_flow, b_s,
603 to, bi_s, bi0, is_l2);
Mohsin Kazmif382b062020-08-11 15:00:44 +0200604 else
605 {
606 // flush the stored GSO size packet and buffer the current packet
607 flow_table->n_vectors++;
608 flow_table->total_vectors++;
609 gro_fixup_header (vm, b_s, gro_flow->last_ack_number, is_l2);
610 gro_flow->n_buffers = 0;
611 gro_flow_store_packet (gro_flow, bi0);
612 gro_flow->last_ack_number = tcp0->ack_number;
613 gro_flow_set_timeout (vm, gro_flow, GRO_FLOW_TIMEOUT);
614 to[0] = bi_s;
615 return 1;
616 }
617 }
618 else
619 {
620 // flush the all (current and stored) packets
Mohsin Kazmi8758a942021-05-28 17:11:23 +0200621 return vnet_gro_flush_all_packets (vm, flow_table, gro_flow, b_s, to,
622 bi_s, bi0, is_l2);
Mohsin Kazmif382b062020-08-11 15:00:44 +0200623 }
624 }
625}
626
627/**
628 * coalesce buffers with flow tables
629 */
630static_always_inline u32
631vnet_gro_inline (vlib_main_t * vm, gro_flow_table_t * flow_table, u32 * from,
632 u16 n_left_from, u32 * to)
633{
634 u16 count = 0, i = 0;
635
636 for (i = 0; i < n_left_from; i++)
637 count += vnet_gro_flow_table_inline (vm, flow_table, from[i], &to[count]);
638
639 return count;
640}
641
642/**
643 * coalesce buffers in opportunistic way without flow tables
644 */
645static_always_inline u32
646vnet_gro_simple_inline (vlib_main_t * vm, u32 * from, u16 n_left_from,
647 int is_l2)
648{
649 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
650 vlib_get_buffers (vm, from, b, n_left_from);
651 u32 bi = 1, ack_number = 0;
652 if (PREDICT_TRUE (((b[0]->flags & VNET_BUFFER_F_GSO) == 0)))
653 {
654 while (n_left_from > 1)
655 {
656 if (PREDICT_TRUE (((b[bi]->flags & VNET_BUFFER_F_GSO) == 0)))
657 {
658 u32 ret;
659 if ((ret =
660 gro_coalesce_buffers (vm, b[0], b[bi], from[bi],
661 is_l2)) != 0)
662 {
663 n_left_from -= 1;
664 bi += 1;
665 ack_number = ret;
666 continue;
667 }
668 else
669 break;
670 }
671 else
672 break;
673 }
674
675 if (bi >= 2)
676 {
677 gro_fixup_header (vm, b[0], ack_number, is_l2);
678 }
679 }
680 return bi;
681}
682#endif /* included_gro_func_h */
683
684/*
685 * fd.io coding-style-patch-verification: ON
686 *
687 * Local Variables:
688 * eval: (c-set-style "gnu")
689 * End:
690 */