1f50b28cc201de4966427a4cfe2d6cc080d9e381
[vpp.git] / src / vnet / gso / gro_func.h
1 /*
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>
22 #include <vnet/ip/ip4.h>
23 #include <vnet/ip/ip6.h>
24 #include <vnet/ip/ip6_inlines.h>
25 #include <vnet/udp/udp_packet.h>
26 #include <vnet/tcp/tcp_packet.h>
27 #include <vnet/vnet.h>
28 #include <vnet/interface.h>
29
30 #define GRO_MIN_PACKET_SIZE    256
31 #define GRO_PADDED_PACKET_SIZE 64
32
33 static_always_inline u8
34 gro_is_bad_packet (vlib_buffer_t * b, u8 flags, i16 l234_sz)
35 {
36   if (((b->current_length - l234_sz) <= 0) ||
37       ((flags &= ~(TCP_FLAG_ACK | TCP_FLAG_PSH)) != 0))
38     return 1;
39   return 0;
40 }
41
42 static_always_inline void
43 gro_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
55 static_always_inline void
56 gro_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
68 static_always_inline u32
69 gro_is_ip4_or_ip6_packet (vlib_buffer_t *b0, u8 is_l2)
70 {
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
108 typedef 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
115 static_always_inline gro_packet_action_t
116 gro_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
130 static_always_inline void
131 gro_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
150 static_always_inline u32
151 gro_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
156   if (b0->flags & VNET_BUFFER_F_OFFLOAD)
157     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
167 static_always_inline u32
168 gro_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
195 static_always_inline u32
196 gro_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)
199 {
200   ip4_header_t *ip4_0 = 0;
201   ip6_header_t *ip6_0 = 0;
202   tcp_header_t *tcp0 = 0;
203   u32 flags = 0;
204   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     {
238       flags = gro_validate_checksum (vm, b0, gho0, 1);
239       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     {
244       flags = gro_validate_checksum (vm, b0, gho0, 0);
245       gro_get_ip6_flow_from_packet (sw_if_index0, ip6_0, tcp0, flow_key0,
246                                     is_l2);
247     }
248   else
249     return 0;
250
251   if (PREDICT_FALSE ((flags & VNET_BUFFER_F_L4_CHECKSUM_CORRECT) == 0))
252     return 0;
253
254   pkt_len0 = vlib_buffer_length_in_chain (vm, b0);
255   if (PREDICT_FALSE (pkt_len0 >= TCP_MAX_GSO_SZ))
256     return 0;
257
258   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     }
263   return pkt_len0;
264 }
265
266 static_always_inline u32
267 gro_coalesce_buffers (vlib_main_t *vm, vlib_buffer_t *b0, vlib_buffer_t *b1,
268                       u32 bi1, u8 is_l2)
269 {
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
305   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))
307     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);
365       tcp0->flags |= tcp1->flags;
366       return tcp1->ack_number;
367     }
368
369   return 0;
370 }
371
372 static_always_inline void
373 gro_fixup_header (vlib_main_t *vm, vlib_buffer_t *b0, u32 ack_number, u8 is_l2)
374 {
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);
395       vnet_buffer (b0)->l3_hdr_offset = (u8 *) ip4 - b0->data;
396       b0->flags |= (VNET_BUFFER_F_GSO | VNET_BUFFER_F_IS_IP4);
397       vnet_buffer_offload_flags_set (b0, (VNET_BUFFER_OFFLOAD_F_TCP_CKSUM |
398                                           VNET_BUFFER_OFFLOAD_F_IP_CKSUM));
399     }
400   else if (gho0.gho_flags & GHO_F_IP6)
401     {
402       ip6_header_t *ip6 =
403         (ip6_header_t *) (vlib_buffer_get_current (b0) + gho0.l3_hdr_offset);
404       ip6->payload_length =
405         clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, b0) -
406                               gho0.l4_hdr_offset);
407       vnet_buffer (b0)->l3_hdr_offset = (u8 *) ip6 - b0->data;
408       b0->flags |= (VNET_BUFFER_F_GSO | VNET_BUFFER_F_IS_IP6);
409       vnet_buffer_offload_flags_set (b0, VNET_BUFFER_OFFLOAD_F_TCP_CKSUM);
410     }
411
412   tcp_header_t *tcp0 =
413     (tcp_header_t *) (vlib_buffer_get_current (b0) + gho0.l4_hdr_offset);
414   vnet_buffer (b0)->l4_hdr_offset = (u8 *) tcp0 - b0->data;
415   tcp0->ack_number = ack_number;
416   b0->flags &= ~VLIB_BUFFER_IS_TRACED;
417 }
418
419 static_always_inline u32
420 vnet_gro_flow_table_flush (vlib_main_t * vm, gro_flow_table_t * flow_table,
421                            u32 * to)
422 {
423   if (flow_table->flow_table_size > 0)
424     {
425       gro_flow_t *gro_flow;
426       u32 i = 0, j = 0;
427       while (i < GRO_FLOW_TABLE_MAX_SIZE)
428         {
429           gro_flow = &flow_table->gro_flow[i];
430           if (gro_flow->n_buffers && gro_flow_is_timeout (vm, gro_flow))
431             {
432               // flush the packet
433               vlib_buffer_t *b0 =
434                 vlib_get_buffer (vm, gro_flow->buffer_index);
435               gro_fixup_header (vm, b0, gro_flow->last_ack_number,
436                                 flow_table->is_l2);
437               to[j] = gro_flow->buffer_index;
438               gro_flow_table_reset_flow (flow_table, gro_flow);
439               flow_table->n_vectors++;
440               j++;
441             }
442           i++;
443         }
444
445       return j;
446     }
447   return 0;
448 }
449
450 static_always_inline void
451 vnet_gro_flow_table_schedule_node_on_dispatcher (vlib_main_t *vm,
452                                                  vnet_hw_if_tx_queue_t *txq,
453                                                  gro_flow_table_t *flow_table)
454 {
455   if (gro_flow_table_is_timeout (vm, flow_table))
456     {
457       u32 to[GRO_FLOW_TABLE_MAX_SIZE] = { 0 };
458       u32 n_to = vnet_gro_flow_table_flush (vm, flow_table, to);
459
460       if (n_to > 0)
461         {
462           u32 node_index = flow_table->node_index;
463           vlib_frame_t *f = vlib_get_frame_to_node (vm, node_index);
464           vnet_hw_if_tx_frame_t *ft = vlib_frame_scalar_args (f);
465           u32 *f_to = vlib_frame_vector_args (f);
466           u32 i = 0;
467
468           ft->shared_queue = txq->shared_queue;
469           ft->queue_id = txq->queue_id;
470
471           while (i < n_to)
472             {
473               f_to[f->n_vectors] = to[i];
474               i++;
475               f->n_vectors++;
476             }
477           vlib_put_frame_to_node (vm, node_index, f);
478         }
479       gro_flow_table_set_timeout (vm, flow_table, GRO_FLOW_TABLE_FLUSH);
480     }
481 }
482
483 static_always_inline u32
484 vnet_gro_flush_all_packets (vlib_main_t *vm, gro_flow_table_t *flow_table,
485                             gro_flow_t *gro_flow, vlib_buffer_t *b_s, u32 *to,
486                             u32 bi_s, u32 bi0, u8 is_l2)
487 {
488   flow_table->n_vectors++;
489   flow_table->total_vectors++;
490   gro_fixup_header (vm, b_s, gro_flow->last_ack_number, is_l2);
491   gro_flow->n_buffers = 0;
492   gro_flow_table_reset_flow (flow_table, gro_flow);
493   to[0] = bi_s;
494   to[1] = bi0;
495   return 2;
496 }
497
498 static_always_inline u32
499 vnet_gro_flow_table_inline (vlib_main_t * vm, gro_flow_table_t * flow_table,
500                             u32 bi0, u32 * to)
501 {
502   vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
503   generic_header_offset_t gho0 = { 0 };
504   gro_flow_t *gro_flow = 0;
505   gro_flow_key_t flow_key0 = { };
506   tcp_header_t *tcp0 = 0;
507   u32 pkt_len0 = 0;
508   u32 is_flush = 0;
509   u8 is_l2 = flow_table->is_l2;
510
511   if (!gro_flow_table_is_enable (flow_table))
512     {
513       to[0] = bi0;
514       return 1;
515     }
516
517   if (PREDICT_FALSE (b0->flags & VNET_BUFFER_F_GSO))
518     {
519       to[0] = bi0;
520       return 1;
521     }
522
523   pkt_len0 = gro_get_packet_data (vm, b0, &gho0, &flow_key0, is_l2);
524   if (pkt_len0 == 0)
525     {
526       to[0] = bi0;
527       return 1;
528     }
529
530   tcp0 = (tcp_header_t *) (vlib_buffer_get_current (b0) + gho0.l4_hdr_offset);
531   if (PREDICT_TRUE (((tcp0->flags & TCP_FLAG_PSH) == 0) &&
532                     (pkt_len0 > GRO_MIN_PACKET_SIZE)))
533     gro_flow = gro_flow_table_find_or_add_flow (flow_table, &flow_key0);
534   else
535     {
536       is_flush = 1;
537       gro_flow = gro_flow_table_get_flow (flow_table, &flow_key0);
538     }
539
540   if (!gro_flow)
541     {
542       to[0] = bi0;
543       return 1;
544     }
545
546   if (PREDICT_FALSE (gro_flow->n_buffers == 0))
547     {
548       flow_table->total_vectors++;
549       gro_flow_store_packet (gro_flow, bi0);
550       gro_flow->last_ack_number = tcp0->ack_number;
551       gro_flow_set_timeout (vm, gro_flow, GRO_FLOW_TIMEOUT);
552       return 0;
553     }
554   else
555     {
556       generic_header_offset_t gho_s = { 0 };
557       tcp_header_t *tcp_s;
558       u16 l234_sz0, l234_sz_s;
559       u32 pkt_len_s, payload_len0, payload_len_s;
560       u32 bi_s = gro_flow->buffer_index;
561
562       vlib_buffer_t *b_s = vlib_get_buffer (vm, bi_s);
563       u32 is_ip_s = gro_is_ip4_or_ip6_packet (b_s, is_l2);
564       if (is_ip_s & VNET_BUFFER_F_IS_IP4)
565         vnet_generic_header_offset_parser (b_s, &gho_s, is_l2,
566                                            1 /* is_ip4 */ , 0 /* is_ip6 */ );
567       else if (is_ip_s & VNET_BUFFER_F_IS_IP6)
568         vnet_generic_header_offset_parser (b_s, &gho_s, is_l2,
569                                            0 /* is_ip4 */ , 1 /* is_ip6 */ );
570
571       tcp_s =
572         (tcp_header_t *) (vlib_buffer_get_current (b_s) +
573                           gho_s.l4_hdr_offset);
574       pkt_len_s = vlib_buffer_length_in_chain (vm, b_s);
575       l234_sz0 = gho0.hdr_sz;
576       l234_sz_s = gho_s.hdr_sz;
577       payload_len0 = pkt_len0 - l234_sz0;
578       payload_len_s = pkt_len_s - l234_sz_s;
579       gro_packet_action_t action =
580         gro_tcp_sequence_check (tcp_s, tcp0, payload_len_s);
581
582       if (PREDICT_TRUE (action == GRO_PACKET_ACTION_ENQUEUE))
583         {
584           if (PREDICT_TRUE (((pkt_len_s + payload_len0) < TCP_MAX_GSO_SZ) &&
585                             (gro_flow->n_buffers < GRO_FLOW_N_BUFFERS)))
586             {
587               flow_table->total_vectors++;
588               gro_merge_buffers (vm, b_s, b0, bi0, payload_len0, l234_sz0);
589               gro_flow_store_packet (gro_flow, bi0);
590               gro_flow->last_ack_number = tcp0->ack_number;
591               if (PREDICT_FALSE (is_flush))
592                 {
593                   flow_table->n_vectors++;
594                   tcp_s->flags |= tcp0->flags;
595                   gro_fixup_header (vm, b_s, gro_flow->last_ack_number, is_l2);
596                   gro_flow->n_buffers = 0;
597                   gro_flow_table_reset_flow (flow_table, gro_flow);
598                   to[0] = bi_s;
599                   return 1;
600                 }
601               return 0;
602             }
603           else if (PREDICT_FALSE (is_flush))
604             // flush the all (current and stored) packets
605             return vnet_gro_flush_all_packets (vm, flow_table, gro_flow, b_s,
606                                                to, bi_s, bi0, is_l2);
607           else
608             {
609               // flush the stored GSO size packet and buffer the current packet
610               flow_table->n_vectors++;
611               flow_table->total_vectors++;
612               gro_fixup_header (vm, b_s, gro_flow->last_ack_number, is_l2);
613               gro_flow->n_buffers = 0;
614               gro_flow_store_packet (gro_flow, bi0);
615               gro_flow->last_ack_number = tcp0->ack_number;
616               gro_flow_set_timeout (vm, gro_flow, GRO_FLOW_TIMEOUT);
617               to[0] = bi_s;
618               return 1;
619             }
620         }
621       else
622         {
623           // flush the all (current and stored) packets
624           return vnet_gro_flush_all_packets (vm, flow_table, gro_flow, b_s, to,
625                                              bi_s, bi0, is_l2);
626         }
627     }
628 }
629
630 /**
631  * coalesce buffers with flow tables
632  */
633 static_always_inline u32
634 vnet_gro_inline (vlib_main_t * vm, gro_flow_table_t * flow_table, u32 * from,
635                  u16 n_left_from, u32 * to)
636 {
637   u16 count = 0, i = 0;
638
639   for (i = 0; i < n_left_from; i++)
640     count += vnet_gro_flow_table_inline (vm, flow_table, from[i], &to[count]);
641
642   return count;
643 }
644
645 /**
646  * coalesce buffers in opportunistic way without flow tables
647  */
648 static_always_inline u32
649 vnet_gro_simple_inline (vlib_main_t * vm, u32 * from, u16 n_left_from,
650                         int is_l2)
651 {
652   vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b = bufs;
653   vlib_get_buffers (vm, from, b, n_left_from);
654   u32 bi = 1, ack_number = 0;
655   if (PREDICT_TRUE (((b[0]->flags & VNET_BUFFER_F_GSO) == 0)))
656     {
657       while (n_left_from > 1)
658         {
659           if (PREDICT_TRUE (((b[bi]->flags & VNET_BUFFER_F_GSO) == 0)))
660             {
661               u32 ret;
662               if ((ret =
663                    gro_coalesce_buffers (vm, b[0], b[bi], from[bi],
664                                          is_l2)) != 0)
665                 {
666                   n_left_from -= 1;
667                   bi += 1;
668                   ack_number = ret;
669                   continue;
670                 }
671               else
672                 break;
673             }
674           else
675             break;
676         }
677
678       if (bi >= 2)
679         {
680           gro_fixup_header (vm, b[0], ack_number, is_l2);
681         }
682     }
683   return bi;
684 }
685 #endif /* included_gro_func_h */
686
687 /*
688  * fd.io coding-style-patch-verification: ON
689  *
690  * Local Variables:
691  * eval: (c-set-style "gnu")
692  * End:
693  */