tcp: fix duplicate sack whith reneging
[vpp.git] / src / vnet / tcp / tcp_input.c
1 /*
2  * Copyright (c) 2016-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 #include <vppinfra/sparse_vec.h>
17 #include <vnet/fib/ip4_fib.h>
18 #include <vnet/fib/ip6_fib.h>
19 #include <vnet/tcp/tcp_packet.h>
20 #include <vnet/tcp/tcp.h>
21 #include <vnet/session/session.h>
22 #include <math.h>
23
24 static char *tcp_error_strings[] = {
25 #define tcp_error(n,s) s,
26 #include <vnet/tcp/tcp_error.def>
27 #undef tcp_error
28 };
29
30 /* All TCP nodes have the same outgoing arcs */
31 #define foreach_tcp_state_next                  \
32   _ (DROP4, "ip4-drop")                         \
33   _ (DROP6, "ip6-drop")                         \
34   _ (TCP4_OUTPUT, "tcp4-output")                \
35   _ (TCP6_OUTPUT, "tcp6-output")
36
37 typedef enum _tcp_established_next
38 {
39 #define _(s,n) TCP_ESTABLISHED_NEXT_##s,
40   foreach_tcp_state_next
41 #undef _
42     TCP_ESTABLISHED_N_NEXT,
43 } tcp_established_next_t;
44
45 typedef enum _tcp_rcv_process_next
46 {
47 #define _(s,n) TCP_RCV_PROCESS_NEXT_##s,
48   foreach_tcp_state_next
49 #undef _
50     TCP_RCV_PROCESS_N_NEXT,
51 } tcp_rcv_process_next_t;
52
53 typedef enum _tcp_syn_sent_next
54 {
55 #define _(s,n) TCP_SYN_SENT_NEXT_##s,
56   foreach_tcp_state_next
57 #undef _
58     TCP_SYN_SENT_N_NEXT,
59 } tcp_syn_sent_next_t;
60
61 typedef enum _tcp_listen_next
62 {
63 #define _(s,n) TCP_LISTEN_NEXT_##s,
64   foreach_tcp_state_next
65 #undef _
66     TCP_LISTEN_N_NEXT,
67 } tcp_listen_next_t;
68
69 /* Generic, state independent indices */
70 typedef enum _tcp_state_next
71 {
72 #define _(s,n) TCP_NEXT_##s,
73   foreach_tcp_state_next
74 #undef _
75     TCP_STATE_N_NEXT,
76 } tcp_state_next_t;
77
78 #define tcp_next_output(is_ip4) (is_ip4 ? TCP_NEXT_TCP4_OUTPUT          \
79                                         : TCP_NEXT_TCP6_OUTPUT)
80
81 #define tcp_next_drop(is_ip4) (is_ip4 ? TCP_NEXT_DROP4                  \
82                                       : TCP_NEXT_DROP6)
83
84 /**
85  * Validate segment sequence number. As per RFC793:
86  *
87  * Segment Receive Test
88  *      Length  Window
89  *      ------- -------  -------------------------------------------
90  *      0       0       SEG.SEQ = RCV.NXT
91  *      0       >0      RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
92  *      >0      0       not acceptable
93  *      >0      >0      RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
94  *                      or RCV.NXT =< SEG.SEQ+SEG.LEN-1 < RCV.NXT+RCV.WND
95  *
96  * This ultimately consists in checking if segment falls within the window.
97  * The one important difference compared to RFC793 is that we use rcv_las,
98  * or the rcv_nxt at last ack sent instead of rcv_nxt since that's the
99  * peer's reference when computing our receive window.
100  *
101  * This:
102  *  seq_leq (end_seq, tc->rcv_las + tc->rcv_wnd) && seq_geq (seq, tc->rcv_las)
103  * however, is too strict when we have retransmits. Instead we just check that
104  * the seq is not beyond the right edge and that the end of the segment is not
105  * less than the left edge.
106  *
107  * N.B. rcv_nxt and rcv_wnd are both updated in this node if acks are sent, so
108  * use rcv_nxt in the right edge window test instead of rcv_las.
109  *
110  */
111 always_inline u8
112 tcp_segment_in_rcv_wnd (tcp_connection_t * tc, u32 seq, u32 end_seq)
113 {
114   return (seq_geq (end_seq, tc->rcv_las)
115           && seq_leq (seq, tc->rcv_nxt + tc->rcv_wnd));
116 }
117
118 /**
119  * Parse TCP header options.
120  *
121  * @param th TCP header
122  * @param to TCP options data structure to be populated
123  * @param is_syn set if packet is syn
124  * @return -1 if parsing failed
125  */
126 static inline int
127 tcp_options_parse (tcp_header_t * th, tcp_options_t * to, u8 is_syn)
128 {
129   const u8 *data;
130   u8 opt_len, opts_len, kind;
131   int j;
132   sack_block_t b;
133
134   opts_len = (tcp_doff (th) << 2) - sizeof (tcp_header_t);
135   data = (const u8 *) (th + 1);
136
137   /* Zero out all flags but those set in SYN */
138   to->flags &= (TCP_OPTS_FLAG_SACK_PERMITTED | TCP_OPTS_FLAG_WSCALE
139                 | TCP_OPTS_FLAG_TSTAMP | TCP_OPTS_FLAG_MSS);
140
141   for (; opts_len > 0; opts_len -= opt_len, data += opt_len)
142     {
143       kind = data[0];
144
145       /* Get options length */
146       if (kind == TCP_OPTION_EOL)
147         break;
148       else if (kind == TCP_OPTION_NOOP)
149         {
150           opt_len = 1;
151           continue;
152         }
153       else
154         {
155           /* broken options */
156           if (opts_len < 2)
157             return -1;
158           opt_len = data[1];
159
160           /* weird option length */
161           if (opt_len < 2 || opt_len > opts_len)
162             return -1;
163         }
164
165       /* Parse options */
166       switch (kind)
167         {
168         case TCP_OPTION_MSS:
169           if (!is_syn)
170             break;
171           if ((opt_len == TCP_OPTION_LEN_MSS) && tcp_syn (th))
172             {
173               to->flags |= TCP_OPTS_FLAG_MSS;
174               to->mss = clib_net_to_host_u16 (*(u16 *) (data + 2));
175             }
176           break;
177         case TCP_OPTION_WINDOW_SCALE:
178           if (!is_syn)
179             break;
180           if ((opt_len == TCP_OPTION_LEN_WINDOW_SCALE) && tcp_syn (th))
181             {
182               to->flags |= TCP_OPTS_FLAG_WSCALE;
183               to->wscale = data[2];
184               if (to->wscale > TCP_MAX_WND_SCALE)
185                 to->wscale = TCP_MAX_WND_SCALE;
186             }
187           break;
188         case TCP_OPTION_TIMESTAMP:
189           if (is_syn)
190             to->flags |= TCP_OPTS_FLAG_TSTAMP;
191           if ((to->flags & TCP_OPTS_FLAG_TSTAMP)
192               && opt_len == TCP_OPTION_LEN_TIMESTAMP)
193             {
194               to->tsval = clib_net_to_host_u32 (*(u32 *) (data + 2));
195               to->tsecr = clib_net_to_host_u32 (*(u32 *) (data + 6));
196             }
197           break;
198         case TCP_OPTION_SACK_PERMITTED:
199           if (!is_syn)
200             break;
201           if (opt_len == TCP_OPTION_LEN_SACK_PERMITTED && tcp_syn (th))
202             to->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
203           break;
204         case TCP_OPTION_SACK_BLOCK:
205           /* If SACK permitted was not advertised or a SYN, break */
206           if ((to->flags & TCP_OPTS_FLAG_SACK_PERMITTED) == 0 || tcp_syn (th))
207             break;
208
209           /* If too short or not correctly formatted, break */
210           if (opt_len < 10 || ((opt_len - 2) % TCP_OPTION_LEN_SACK_BLOCK))
211             break;
212
213           to->flags |= TCP_OPTS_FLAG_SACK;
214           to->n_sack_blocks = (opt_len - 2) / TCP_OPTION_LEN_SACK_BLOCK;
215           vec_reset_length (to->sacks);
216           for (j = 0; j < to->n_sack_blocks; j++)
217             {
218               b.start = clib_net_to_host_u32 (*(u32 *) (data + 2 + 8 * j));
219               b.end = clib_net_to_host_u32 (*(u32 *) (data + 6 + 8 * j));
220               vec_add1 (to->sacks, b);
221             }
222           break;
223         default:
224           /* Nothing to see here */
225           continue;
226         }
227     }
228   return 0;
229 }
230
231 /**
232  * RFC1323: Check against wrapped sequence numbers (PAWS). If we have
233  * timestamp to echo and it's less than tsval_recent, drop segment
234  * but still send an ACK in order to retain TCP's mechanism for detecting
235  * and recovering from half-open connections
236  *
237  * Or at least that's what the theory says. It seems that this might not work
238  * very well with packet reordering and fast retransmit. XXX
239  */
240 always_inline int
241 tcp_segment_check_paws (tcp_connection_t * tc)
242 {
243   return tcp_opts_tstamp (&tc->rcv_opts)
244     && timestamp_lt (tc->rcv_opts.tsval, tc->tsval_recent);
245 }
246
247 /**
248  * Update tsval recent
249  */
250 always_inline void
251 tcp_update_timestamp (tcp_connection_t * tc, u32 seq, u32 seq_end)
252 {
253   /*
254    * RFC1323: If Last.ACK.sent falls within the range of sequence numbers
255    * of an incoming segment:
256    *    SEG.SEQ <= Last.ACK.sent < SEG.SEQ + SEG.LEN
257    * then the TSval from the segment is copied to TS.Recent;
258    * otherwise, the TSval is ignored.
259    */
260   if (tcp_opts_tstamp (&tc->rcv_opts) && seq_leq (seq, tc->rcv_las)
261       && seq_leq (tc->rcv_las, seq_end))
262     {
263       ASSERT (timestamp_leq (tc->tsval_recent, tc->rcv_opts.tsval));
264       tc->tsval_recent = tc->rcv_opts.tsval;
265       tc->tsval_recent_age = tcp_time_now_w_thread (tc->c_thread_index);
266     }
267 }
268
269 /**
270  * Validate incoming segment as per RFC793 p. 69 and RFC1323 p. 19
271  *
272  * It first verifies if segment has a wrapped sequence number (PAWS) and then
273  * does the processing associated to the first four steps (ignoring security
274  * and precedence): sequence number, rst bit and syn bit checks.
275  *
276  * @return 0 if segments passes validation.
277  */
278 static int
279 tcp_segment_validate (tcp_worker_ctx_t * wrk, tcp_connection_t * tc0,
280                       vlib_buffer_t * b0, tcp_header_t * th0, u32 * error0)
281 {
282   /* We could get a burst of RSTs interleaved with acks */
283   if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
284     {
285       tcp_send_reset (tc0);
286       *error0 = TCP_ERROR_CONNECTION_CLOSED;
287       goto error;
288     }
289
290   if (PREDICT_FALSE (!tcp_ack (th0) && !tcp_rst (th0) && !tcp_syn (th0)))
291     {
292       *error0 = TCP_ERROR_SEGMENT_INVALID;
293       goto error;
294     }
295
296   if (PREDICT_FALSE (tcp_options_parse (th0, &tc0->rcv_opts, 0)))
297     {
298       *error0 = TCP_ERROR_OPTIONS;
299       goto error;
300     }
301
302   if (PREDICT_FALSE (tcp_segment_check_paws (tc0)))
303     {
304       *error0 = TCP_ERROR_PAWS;
305       TCP_EVT (TCP_EVT_PAWS_FAIL, tc0, vnet_buffer (b0)->tcp.seq_number,
306                vnet_buffer (b0)->tcp.seq_end);
307
308       /* If it just so happens that a segment updates tsval_recent for a
309        * segment over 24 days old, invalidate tsval_recent. */
310       if (timestamp_lt (tc0->tsval_recent_age + TCP_PAWS_IDLE,
311                         tcp_time_now_w_thread (tc0->c_thread_index)))
312         {
313           tc0->tsval_recent = tc0->rcv_opts.tsval;
314           clib_warning ("paws failed: 24-day old segment");
315         }
316       /* Drop after ack if not rst. Resets can fail paws check as per
317        * RFC 7323 sec. 5.2: When an <RST> segment is received, it MUST NOT
318        * be subjected to the PAWS check by verifying an acceptable value in
319        * SEG.TSval */
320       else if (!tcp_rst (th0))
321         {
322           tcp_program_ack (tc0);
323           TCP_EVT (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
324           goto error;
325         }
326     }
327
328   /* 1st: check sequence number */
329   if (!tcp_segment_in_rcv_wnd (tc0, vnet_buffer (b0)->tcp.seq_number,
330                                vnet_buffer (b0)->tcp.seq_end))
331     {
332       /* SYN/SYN-ACK retransmit */
333       if (tcp_syn (th0)
334           && vnet_buffer (b0)->tcp.seq_number == tc0->rcv_nxt - 1)
335         {
336           tcp_options_parse (th0, &tc0->rcv_opts, 1);
337           if (tc0->state == TCP_STATE_SYN_RCVD)
338             {
339               tcp_send_synack (tc0);
340               TCP_EVT (TCP_EVT_SYN_RCVD, tc0, 0);
341               *error0 = TCP_ERROR_SYNS_RCVD;
342             }
343           else
344             {
345               tcp_program_ack (tc0);
346               TCP_EVT (TCP_EVT_SYNACK_RCVD, tc0);
347               *error0 = TCP_ERROR_SYN_ACKS_RCVD;
348             }
349           goto error;
350         }
351
352       /* If our window is 0 and the packet is in sequence, let it pass
353        * through for ack processing. It should be dropped later. */
354       if (tc0->rcv_wnd < tc0->snd_mss
355           && tc0->rcv_nxt == vnet_buffer (b0)->tcp.seq_number)
356         goto check_reset;
357
358       /* If we entered recovery and peer did so as well, there's a chance that
359        * dup acks won't be acceptable on either end because seq_end may be less
360        * than rcv_las. This can happen if acks are lost in both directions. */
361       if (tcp_in_recovery (tc0)
362           && seq_geq (vnet_buffer (b0)->tcp.seq_number,
363                       tc0->rcv_las - tc0->rcv_wnd)
364           && seq_leq (vnet_buffer (b0)->tcp.seq_end,
365                       tc0->rcv_nxt + tc0->rcv_wnd))
366         goto check_reset;
367
368       *error0 = TCP_ERROR_RCV_WND;
369
370       /* If we advertised a zero rcv_wnd and the segment is in the past or the
371        * next one that we expect, it is probably a window probe */
372       if ((tc0->flags & TCP_CONN_ZERO_RWND_SENT)
373           && seq_lt (vnet_buffer (b0)->tcp.seq_end,
374                      tc0->rcv_las + tc0->rcv_opts.mss))
375         *error0 = TCP_ERROR_ZERO_RWND;
376
377       tc0->errors.below_data_wnd += seq_lt (vnet_buffer (b0)->tcp.seq_end,
378                                             tc0->rcv_las);
379
380       /* If not RST, send dup ack */
381       if (!tcp_rst (th0))
382         {
383           tcp_program_dupack (tc0);
384           TCP_EVT (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
385         }
386       goto error;
387
388     check_reset:
389       ;
390     }
391
392   /* 2nd: check the RST bit */
393   if (PREDICT_FALSE (tcp_rst (th0)))
394     {
395       tcp_connection_reset (tc0);
396       *error0 = TCP_ERROR_RST_RCVD;
397       goto error;
398     }
399
400   /* 3rd: check security and precedence (skip) */
401
402   /* 4th: check the SYN bit (in window) */
403   if (PREDICT_FALSE (tcp_syn (th0)))
404     {
405       /* As per RFC5961 send challenge ack instead of reset */
406       tcp_program_ack (tc0);
407       *error0 = TCP_ERROR_SPURIOUS_SYN;
408       goto error;
409     }
410
411   /* If segment in window, save timestamp */
412   tcp_update_timestamp (tc0, vnet_buffer (b0)->tcp.seq_number,
413                         vnet_buffer (b0)->tcp.seq_end);
414   return 0;
415
416 error:
417   return -1;
418 }
419
420 always_inline int
421 tcp_rcv_ack_no_cc (tcp_connection_t * tc, vlib_buffer_t * b, u32 * error)
422 {
423   /* SND.UNA =< SEG.ACK =< SND.NXT */
424   if (!(seq_leq (tc->snd_una, vnet_buffer (b)->tcp.ack_number)
425         && seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
426     {
427       if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)
428           && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
429         {
430           tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
431           goto acceptable;
432         }
433       *error = TCP_ERROR_ACK_INVALID;
434       return -1;
435     }
436
437 acceptable:
438   tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
439   tc->snd_una = vnet_buffer (b)->tcp.ack_number;
440   *error = TCP_ERROR_ACK_OK;
441   return 0;
442 }
443
444 /**
445  * Compute smoothed RTT as per VJ's '88 SIGCOMM and RFC6298
446  *
447  * Note that although the original article, srtt and rttvar are scaled
448  * to minimize round-off errors, here we don't. Instead, we rely on
449  * better precision time measurements.
450  *
451  * TODO support us rtt resolution
452  */
453 static void
454 tcp_estimate_rtt (tcp_connection_t * tc, u32 mrtt)
455 {
456   int err, diff;
457
458   if (tc->srtt != 0)
459     {
460       err = mrtt - tc->srtt;
461
462       /* XXX Drop in RTT results in RTTVAR increase and bigger RTO.
463        * The increase should be bound */
464       tc->srtt = clib_max ((int) tc->srtt + (err >> 3), 1);
465       diff = (clib_abs (err) - (int) tc->rttvar) >> 2;
466       tc->rttvar = clib_max ((int) tc->rttvar + diff, 1);
467     }
468   else
469     {
470       /* First measurement. */
471       tc->srtt = mrtt;
472       tc->rttvar = mrtt >> 1;
473     }
474 }
475
476 #ifndef CLIB_MARCH_VARIANT
477 void
478 tcp_update_rto (tcp_connection_t * tc)
479 {
480   tc->rto = clib_min (tc->srtt + (tc->rttvar << 2), TCP_RTO_MAX);
481   tc->rto = clib_max (tc->rto, TCP_RTO_MIN);
482 }
483 #endif /* CLIB_MARCH_VARIANT */
484
485 /**
486  * Update RTT estimate and RTO timer
487  *
488  * Measure RTT: We have two sources of RTT measurements: TSOPT and ACK
489  * timing. Middle boxes are known to fiddle with TCP options so we
490  * should give higher priority to ACK timing.
491  *
492  * This should be called only if previously sent bytes have been acked.
493  *
494  * return 1 if valid rtt 0 otherwise
495  */
496 static int
497 tcp_update_rtt (tcp_connection_t * tc, tcp_rate_sample_t * rs, u32 ack)
498 {
499   u32 mrtt = 0;
500
501   /* Karn's rule, part 1. Don't use retransmitted segments to estimate
502    * RTT because they're ambiguous. */
503   if (tcp_in_cong_recovery (tc))
504     {
505       /* Accept rtt estimates for samples that have not been retransmitted */
506       if ((tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
507           && !(rs->flags & TCP_BTS_IS_RXT))
508         {
509           mrtt = rs->rtt_time * THZ;
510           goto estimate_rtt;
511         }
512       goto done;
513     }
514
515   if (tc->rtt_ts && seq_geq (ack, tc->rtt_seq))
516     {
517       f64 sample = tcp_time_now_us (tc->c_thread_index) - tc->rtt_ts;
518       tc->mrtt_us = tc->mrtt_us + (sample - tc->mrtt_us) * 0.125;
519       mrtt = clib_max ((u32) (sample * THZ), 1);
520       /* Allow measuring of a new RTT */
521       tc->rtt_ts = 0;
522     }
523   /* As per RFC7323 TSecr can be used for RTTM only if the segment advances
524    * snd_una, i.e., the left side of the send window:
525    * seq_lt (tc->snd_una, ack). This is a condition for calling update_rtt */
526   else if (tcp_opts_tstamp (&tc->rcv_opts) && tc->rcv_opts.tsecr)
527     {
528       u32 now = tcp_tstamp (tc);
529       mrtt = clib_max (now - tc->rcv_opts.tsecr, 1);
530     }
531
532 estimate_rtt:
533
534   /* Ignore dubious measurements */
535   if (mrtt == 0 || mrtt > TCP_RTT_MAX)
536     goto done;
537
538   tcp_estimate_rtt (tc, mrtt);
539
540 done:
541
542   /* If we got here something must've been ACKed so make sure boff is 0,
543    * even if mrtt is not valid since we update the rto lower */
544   tc->rto_boff = 0;
545   tcp_update_rto (tc);
546
547   return 0;
548 }
549
550 static void
551 tcp_estimate_initial_rtt (tcp_connection_t * tc)
552 {
553   u8 thread_index = vlib_num_workers ()? 1 : 0;
554   int mrtt;
555
556   if (tc->rtt_ts)
557     {
558       tc->mrtt_us = tcp_time_now_us (thread_index) - tc->rtt_ts;
559       tc->mrtt_us = clib_max (tc->mrtt_us, 0.0001);
560       mrtt = clib_max ((u32) (tc->mrtt_us * THZ), 1);
561       tc->rtt_ts = 0;
562     }
563   else
564     {
565       mrtt = tcp_time_now_w_thread (thread_index) - tc->rcv_opts.tsecr;
566       mrtt = clib_max (mrtt, 1);
567       /* Due to retransmits we don't know the initial mrtt */
568       if (tc->rto_boff && mrtt > 1 * THZ)
569         mrtt = 1 * THZ;
570       tc->mrtt_us = (f64) mrtt *TCP_TICK;
571     }
572
573   if (mrtt > 0 && mrtt < TCP_RTT_MAX)
574     tcp_estimate_rtt (tc, mrtt);
575   tcp_update_rto (tc);
576 }
577
578 /**
579  * Dequeue bytes for connections that have received acks in last burst
580  */
581 static void
582 tcp_handle_postponed_dequeues (tcp_worker_ctx_t * wrk)
583 {
584   u32 thread_index = wrk->vm->thread_index;
585   u32 *pending_deq_acked;
586   tcp_connection_t *tc;
587   int i;
588
589   if (!vec_len (wrk->pending_deq_acked))
590     return;
591
592   pending_deq_acked = wrk->pending_deq_acked;
593   for (i = 0; i < vec_len (pending_deq_acked); i++)
594     {
595       tc = tcp_connection_get (pending_deq_acked[i], thread_index);
596       tc->flags &= ~TCP_CONN_DEQ_PENDING;
597
598       if (PREDICT_FALSE (!tc->burst_acked))
599         continue;
600
601       /* Dequeue the newly ACKed bytes */
602       session_tx_fifo_dequeue_drop (&tc->connection, tc->burst_acked);
603       tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
604
605       if (PREDICT_FALSE (tc->flags & TCP_CONN_PSH_PENDING))
606         {
607           if (seq_leq (tc->psh_seq, tc->snd_una))
608             tc->flags &= ~TCP_CONN_PSH_PENDING;
609         }
610
611       /* If everything has been acked, stop retransmit timer
612        * otherwise update. */
613       tcp_retransmit_timer_update (tc);
614
615       /* Update pacer based on our new cwnd estimate */
616       tcp_connection_tx_pacer_update (tc);
617
618       tc->burst_acked = 0;
619     }
620   _vec_len (wrk->pending_deq_acked) = 0;
621 }
622
623 static void
624 tcp_program_dequeue (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
625 {
626   if (!(tc->flags & TCP_CONN_DEQ_PENDING))
627     {
628       vec_add1 (wrk->pending_deq_acked, tc->c_c_index);
629       tc->flags |= TCP_CONN_DEQ_PENDING;
630     }
631   tc->burst_acked += tc->bytes_acked;
632 }
633
634 #ifndef CLIB_MARCH_VARIANT
635 static u32
636 scoreboard_hole_index (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
637 {
638   ASSERT (!pool_is_free_index (sb->holes, hole - sb->holes));
639   return hole - sb->holes;
640 }
641
642 static u32
643 scoreboard_hole_bytes (sack_scoreboard_hole_t * hole)
644 {
645   return hole->end - hole->start;
646 }
647
648 sack_scoreboard_hole_t *
649 scoreboard_get_hole (sack_scoreboard_t * sb, u32 index)
650 {
651   if (index != TCP_INVALID_SACK_HOLE_INDEX)
652     return pool_elt_at_index (sb->holes, index);
653   return 0;
654 }
655
656 sack_scoreboard_hole_t *
657 scoreboard_next_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
658 {
659   if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
660     return pool_elt_at_index (sb->holes, hole->next);
661   return 0;
662 }
663
664 sack_scoreboard_hole_t *
665 scoreboard_prev_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
666 {
667   if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
668     return pool_elt_at_index (sb->holes, hole->prev);
669   return 0;
670 }
671
672 sack_scoreboard_hole_t *
673 scoreboard_first_hole (sack_scoreboard_t * sb)
674 {
675   if (sb->head != TCP_INVALID_SACK_HOLE_INDEX)
676     return pool_elt_at_index (sb->holes, sb->head);
677   return 0;
678 }
679
680 sack_scoreboard_hole_t *
681 scoreboard_last_hole (sack_scoreboard_t * sb)
682 {
683   if (sb->tail != TCP_INVALID_SACK_HOLE_INDEX)
684     return pool_elt_at_index (sb->holes, sb->tail);
685   return 0;
686 }
687
688 static void
689 scoreboard_remove_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
690 {
691   sack_scoreboard_hole_t *next, *prev;
692
693   if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
694     {
695       next = pool_elt_at_index (sb->holes, hole->next);
696       next->prev = hole->prev;
697     }
698   else
699     {
700       sb->tail = hole->prev;
701     }
702
703   if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
704     {
705       prev = pool_elt_at_index (sb->holes, hole->prev);
706       prev->next = hole->next;
707     }
708   else
709     {
710       sb->head = hole->next;
711     }
712
713   if (scoreboard_hole_index (sb, hole) == sb->cur_rxt_hole)
714     sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
715
716   /* Poison the entry */
717   if (CLIB_DEBUG > 0)
718     clib_memset (hole, 0xfe, sizeof (*hole));
719
720   pool_put (sb->holes, hole);
721 }
722
723 static sack_scoreboard_hole_t *
724 scoreboard_insert_hole (sack_scoreboard_t * sb, u32 prev_index,
725                         u32 start, u32 end)
726 {
727   sack_scoreboard_hole_t *hole, *next, *prev;
728   u32 hole_index;
729
730   pool_get (sb->holes, hole);
731   clib_memset (hole, 0, sizeof (*hole));
732
733   hole->start = start;
734   hole->end = end;
735   hole_index = scoreboard_hole_index (sb, hole);
736
737   prev = scoreboard_get_hole (sb, prev_index);
738   if (prev)
739     {
740       hole->prev = prev_index;
741       hole->next = prev->next;
742
743       if ((next = scoreboard_next_hole (sb, hole)))
744         next->prev = hole_index;
745       else
746         sb->tail = hole_index;
747
748       prev->next = hole_index;
749     }
750   else
751     {
752       sb->head = hole_index;
753       hole->prev = TCP_INVALID_SACK_HOLE_INDEX;
754       hole->next = TCP_INVALID_SACK_HOLE_INDEX;
755     }
756
757   return hole;
758 }
759
760 always_inline void
761 scoreboard_update_sacked_rxt (sack_scoreboard_t * sb, u32 start, u32 end,
762                               u8 has_rxt)
763 {
764   if (!has_rxt || seq_geq (start, sb->high_rxt))
765     return;
766
767   sb->rxt_sacked +=
768     seq_lt (end, sb->high_rxt) ? (end - start) : (sb->high_rxt - start);
769 }
770
771 always_inline void
772 scoreboard_update_bytes (sack_scoreboard_t * sb, u32 ack, u32 snd_mss)
773 {
774   sack_scoreboard_hole_t *left, *right;
775   u32 sacked = 0, blks = 0, old_sacked;
776
777   old_sacked = sb->sacked_bytes;
778
779   sb->last_lost_bytes = 0;
780   sb->lost_bytes = 0;
781   sb->sacked_bytes = 0;
782
783   right = scoreboard_last_hole (sb);
784   if (!right)
785     {
786       sb->sacked_bytes = sb->high_sacked - ack;
787       return;
788     }
789
790   if (seq_gt (sb->high_sacked, right->end))
791     {
792       sacked = sb->high_sacked - right->end;
793       blks = 1;
794     }
795
796   while (sacked < (TCP_DUPACK_THRESHOLD - 1) * snd_mss
797          && blks < TCP_DUPACK_THRESHOLD)
798     {
799       if (right->is_lost)
800         sb->lost_bytes += scoreboard_hole_bytes (right);
801
802       left = scoreboard_prev_hole (sb, right);
803       if (!left)
804         {
805           ASSERT (right->start == ack || sb->is_reneging);
806           sacked += right->start - ack;
807           right = 0;
808           break;
809         }
810
811       sacked += right->start - left->end;
812       blks++;
813       right = left;
814     }
815
816   /* right is first lost */
817   while (right)
818     {
819       sb->lost_bytes += scoreboard_hole_bytes (right);
820       sb->last_lost_bytes += right->is_lost ? 0 : (right->end - right->start);
821       right->is_lost = 1;
822       left = scoreboard_prev_hole (sb, right);
823       if (!left)
824         {
825           ASSERT (right->start == ack || sb->is_reneging);
826           sacked += right->start - ack;
827           break;
828         }
829       sacked += right->start - left->end;
830       right = left;
831     }
832
833   sb->sacked_bytes = sacked;
834   sb->last_sacked_bytes = sacked - (old_sacked - sb->last_bytes_delivered);
835 }
836
837 /**
838  * Figure out the next hole to retransmit
839  *
840  * Follows logic proposed in RFC6675 Sec. 4, NextSeg()
841  */
842 sack_scoreboard_hole_t *
843 scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
844                           sack_scoreboard_hole_t * start,
845                           u8 have_unsent, u8 * can_rescue, u8 * snd_limited)
846 {
847   sack_scoreboard_hole_t *hole = 0;
848
849   hole = start ? start : scoreboard_first_hole (sb);
850   while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost)
851     hole = scoreboard_next_hole (sb, hole);
852
853   /* Nothing, return */
854   if (!hole)
855     {
856       sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
857       return 0;
858     }
859
860   /* Rule (1): if higher than rxt, less than high_sacked and lost */
861   if (hole->is_lost && seq_lt (hole->start, sb->high_sacked))
862     {
863       sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
864     }
865   else
866     {
867       /* Rule (2): available unsent data */
868       if (have_unsent)
869         {
870           sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
871           return 0;
872         }
873       /* Rule (3): if hole not lost */
874       else if (seq_lt (hole->start, sb->high_sacked))
875         {
876           /* And we didn't already retransmit it */
877           if (seq_leq (hole->end, sb->high_rxt))
878             {
879               sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
880               return 0;
881             }
882           *snd_limited = 0;
883           sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
884         }
885       /* Rule (4): if hole beyond high_sacked */
886       else
887         {
888           ASSERT (seq_geq (hole->start, sb->high_sacked));
889           *snd_limited = 1;
890           *can_rescue = 1;
891           /* HighRxt MUST NOT be updated */
892           return 0;
893         }
894     }
895
896   if (hole && seq_lt (sb->high_rxt, hole->start))
897     sb->high_rxt = hole->start;
898
899   return hole;
900 }
901
902 void
903 scoreboard_init_rxt (sack_scoreboard_t * sb, u32 snd_una)
904 {
905   sack_scoreboard_hole_t *hole;
906   hole = scoreboard_first_hole (sb);
907   if (hole)
908     {
909       snd_una = seq_gt (snd_una, hole->start) ? snd_una : hole->start;
910       sb->cur_rxt_hole = sb->head;
911     }
912   sb->high_rxt = snd_una;
913   sb->rescue_rxt = snd_una - 1;
914 }
915
916 void
917 scoreboard_init (sack_scoreboard_t * sb)
918 {
919   sb->head = TCP_INVALID_SACK_HOLE_INDEX;
920   sb->tail = TCP_INVALID_SACK_HOLE_INDEX;
921   sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
922 }
923
924 void
925 scoreboard_clear (sack_scoreboard_t * sb)
926 {
927   sack_scoreboard_hole_t *hole;
928   while ((hole = scoreboard_first_hole (sb)))
929     {
930       scoreboard_remove_hole (sb, hole);
931     }
932   ASSERT (sb->head == sb->tail && sb->head == TCP_INVALID_SACK_HOLE_INDEX);
933   ASSERT (pool_elts (sb->holes) == 0);
934   sb->sacked_bytes = 0;
935   sb->last_sacked_bytes = 0;
936   sb->last_bytes_delivered = 0;
937   sb->lost_bytes = 0;
938   sb->last_lost_bytes = 0;
939   sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
940   sb->is_reneging = 0;
941 }
942
943 void
944 scoreboard_clear_reneging (sack_scoreboard_t * sb, u32 start, u32 end)
945 {
946   sack_scoreboard_hole_t *last_hole;
947
948   clib_warning ("sack reneging");
949
950   scoreboard_clear (sb);
951   last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
952                                       start, end);
953   last_hole->is_lost = 1;
954   sb->tail = scoreboard_hole_index (sb, last_hole);
955   sb->high_sacked = start;
956   scoreboard_init_rxt (sb, start);
957 }
958
959 #endif /* CLIB_MARCH_VARIANT */
960
961 /**
962  * Test that scoreboard is sane after recovery
963  *
964  * Returns 1 if scoreboard is empty or if first hole beyond
965  * snd_una.
966  */
967 static u8
968 tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc)
969 {
970   sack_scoreboard_hole_t *hole;
971   hole = scoreboard_first_hole (&tc->sack_sb);
972   return (!hole || (seq_geq (hole->start, tc->snd_una)
973                     && seq_lt (hole->end, tc->snd_nxt)));
974 }
975
976 #ifndef CLIB_MARCH_VARIANT
977
978 void
979 tcp_rcv_sacks (tcp_connection_t * tc, u32 ack)
980 {
981   sack_scoreboard_hole_t *hole, *next_hole;
982   sack_scoreboard_t *sb = &tc->sack_sb;
983   sack_block_t *blk, *rcv_sacks;
984   u32 blk_index = 0, i, j;
985   u8 has_rxt;
986
987   sb->last_sacked_bytes = 0;
988   sb->last_bytes_delivered = 0;
989   sb->rxt_sacked = 0;
990
991   if (!tcp_opts_sack (&tc->rcv_opts)
992       && sb->head == TCP_INVALID_SACK_HOLE_INDEX)
993     return;
994
995   has_rxt = tcp_in_cong_recovery (tc);
996
997   /* Remove invalid blocks */
998   blk = tc->rcv_opts.sacks;
999   while (blk < vec_end (tc->rcv_opts.sacks))
1000     {
1001       if (seq_lt (blk->start, blk->end)
1002           && seq_gt (blk->start, tc->snd_una)
1003           && seq_gt (blk->start, ack)
1004           && seq_lt (blk->start, tc->snd_nxt)
1005           && seq_leq (blk->end, tc->snd_nxt))
1006         {
1007           blk++;
1008           continue;
1009         }
1010       vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks);
1011     }
1012
1013   /* Add block for cumulative ack */
1014   if (seq_gt (ack, tc->snd_una))
1015     {
1016       vec_add2 (tc->rcv_opts.sacks, blk, 1);
1017       blk->start = tc->snd_una;
1018       blk->end = ack;
1019     }
1020
1021   if (vec_len (tc->rcv_opts.sacks) == 0)
1022     return;
1023
1024   tcp_scoreboard_trace_add (tc, ack);
1025
1026   /* Make sure blocks are ordered */
1027   rcv_sacks = tc->rcv_opts.sacks;
1028   for (i = 0; i < vec_len (rcv_sacks); i++)
1029     for (j = i + 1; j < vec_len (rcv_sacks); j++)
1030       if (seq_lt (rcv_sacks[j].start, rcv_sacks[i].start))
1031         {
1032           sack_block_t tmp = rcv_sacks[i];
1033           rcv_sacks[i] = rcv_sacks[j];
1034           rcv_sacks[j] = tmp;
1035         }
1036
1037   if (sb->head == TCP_INVALID_SACK_HOLE_INDEX)
1038     {
1039       /* Handle reneging as a special case */
1040       if (PREDICT_FALSE (sb->is_reneging))
1041         {
1042           /* No holes, only sacked bytes */
1043           if (seq_leq (tc->snd_nxt, sb->high_sacked))
1044             {
1045               /* No progress made so return */
1046               if (seq_leq (ack, tc->snd_una))
1047                 return;
1048
1049               /* Update sacked bytes delivered and return */
1050               sb->last_bytes_delivered = ack - tc->snd_una;
1051               sb->sacked_bytes -= sb->last_bytes_delivered;
1052               sb->is_reneging = seq_lt (ack, sb->high_sacked);
1053               return;
1054             }
1055
1056           /* New hole above high sacked. Add it and process normally */
1057           hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
1058                                          sb->high_sacked, tc->snd_nxt);
1059           sb->tail = scoreboard_hole_index (sb, hole);
1060         }
1061       /* Not reneging and no holes. Insert the first that covers all
1062        * outstanding bytes */
1063       else
1064         {
1065           hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
1066                                          tc->snd_una, tc->snd_nxt);
1067           sb->tail = scoreboard_hole_index (sb, hole);
1068         }
1069       sb->high_sacked = rcv_sacks[vec_len (rcv_sacks) - 1].end;
1070     }
1071   else
1072     {
1073       /* If we have holes but snd_nxt is beyond the last hole, update
1074        * last hole end or add new hole after high sacked */
1075       hole = scoreboard_last_hole (sb);
1076       if (seq_gt (tc->snd_nxt, hole->end))
1077         {
1078           if (seq_geq (hole->start, sb->high_sacked))
1079             {
1080               hole->end = tc->snd_nxt;
1081             }
1082           /* New hole after high sacked block */
1083           else if (seq_lt (sb->high_sacked, tc->snd_nxt))
1084             {
1085               scoreboard_insert_hole (sb, sb->tail, sb->high_sacked,
1086                                       tc->snd_nxt);
1087             }
1088         }
1089
1090       /* Keep track of max byte sacked for when the last hole
1091        * is acked */
1092       sb->high_sacked = seq_max (rcv_sacks[vec_len (rcv_sacks) - 1].end,
1093                                  sb->high_sacked);
1094     }
1095
1096   /* Walk the holes with the SACK blocks */
1097   hole = pool_elt_at_index (sb->holes, sb->head);
1098
1099   if (PREDICT_FALSE (sb->is_reneging))
1100     {
1101       sb->last_bytes_delivered += clib_min (hole->start - tc->snd_una,
1102                                             ack - tc->snd_una);
1103       sb->is_reneging = seq_lt (ack, hole->start);
1104     }
1105
1106   while (hole && blk_index < vec_len (rcv_sacks))
1107     {
1108       blk = &rcv_sacks[blk_index];
1109       if (seq_leq (blk->start, hole->start))
1110         {
1111           /* Block covers hole. Remove hole */
1112           if (seq_geq (blk->end, hole->end))
1113             {
1114               next_hole = scoreboard_next_hole (sb, hole);
1115
1116               /* If covered by ack, compute delivered bytes */
1117               if (blk->end == ack)
1118                 {
1119                   u32 sacked = next_hole ? next_hole->start : sb->high_sacked;
1120                   if (PREDICT_FALSE (seq_lt (ack, sacked)))
1121                     {
1122                       sb->last_bytes_delivered += ack - hole->end;
1123                       sb->is_reneging = 1;
1124                     }
1125                   else
1126                     {
1127                       sb->last_bytes_delivered += sacked - hole->end;
1128                       sb->is_reneging = 0;
1129                     }
1130                 }
1131               scoreboard_update_sacked_rxt (sb, hole->start, hole->end,
1132                                             has_rxt);
1133               scoreboard_remove_hole (sb, hole);
1134               hole = next_hole;
1135             }
1136           /* Partial 'head' overlap */
1137           else
1138             {
1139               if (seq_gt (blk->end, hole->start))
1140                 {
1141                   scoreboard_update_sacked_rxt (sb, hole->start, blk->end,
1142                                                 has_rxt);
1143                   hole->start = blk->end;
1144                 }
1145               blk_index++;
1146             }
1147         }
1148       else
1149         {
1150           /* Hole must be split */
1151           if (seq_lt (blk->end, hole->end))
1152             {
1153               u32 hole_index = scoreboard_hole_index (sb, hole);
1154               next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
1155                                                   hole->end);
1156               /* Pool might've moved */
1157               hole = scoreboard_get_hole (sb, hole_index);
1158               hole->end = blk->start;
1159
1160               scoreboard_update_sacked_rxt (sb, blk->start, blk->end,
1161                                             has_rxt);
1162
1163               blk_index++;
1164               ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
1165             }
1166           else if (seq_lt (blk->start, hole->end))
1167             {
1168               scoreboard_update_sacked_rxt (sb, blk->start, hole->end,
1169                                             has_rxt);
1170               hole->end = blk->start;
1171             }
1172           hole = scoreboard_next_hole (sb, hole);
1173         }
1174     }
1175
1176   scoreboard_update_bytes (sb, ack, tc->snd_mss);
1177
1178   ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes || tcp_in_recovery (tc));
1179   ASSERT (sb->sacked_bytes == 0 || tcp_in_recovery (tc)
1180           || sb->sacked_bytes <= tc->snd_nxt - seq_max (tc->snd_una, ack));
1181   ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_nxt
1182           - seq_max (tc->snd_una, ack) || tcp_in_recovery (tc));
1183   ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
1184           || sb->is_reneging || sb->holes[sb->head].start == ack);
1185   ASSERT (sb->last_lost_bytes <= sb->lost_bytes);
1186   ASSERT ((ack - tc->snd_una) + sb->last_sacked_bytes
1187           - sb->last_bytes_delivered >= sb->rxt_sacked || sb->is_reneging);
1188   ASSERT ((ack - tc->snd_una) >= tc->sack_sb.last_bytes_delivered
1189           || (tc->flags & TCP_CONN_FINSNT));
1190
1191   TCP_EVT (TCP_EVT_CC_SCOREBOARD, tc);
1192 }
1193 #endif /* CLIB_MARCH_VARIANT */
1194
1195 /**
1196  * Try to update snd_wnd based on feedback received from peer.
1197  *
1198  * If successful, and new window is 'effectively' 0, activate persist
1199  * timer.
1200  */
1201 static void
1202 tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
1203 {
1204   /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
1205    * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
1206   if (seq_lt (tc->snd_wl1, seq)
1207       || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
1208     {
1209       tc->snd_wnd = snd_wnd;
1210       tc->snd_wl1 = seq;
1211       tc->snd_wl2 = ack;
1212       TCP_EVT (TCP_EVT_SND_WND, tc);
1213
1214       if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
1215         {
1216           /* Set persist timer if not set and we just got 0 wnd */
1217           if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
1218               && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
1219             tcp_persist_timer_set (tc);
1220         }
1221       else
1222         {
1223           tcp_persist_timer_reset (tc);
1224           if (PREDICT_FALSE (!tcp_in_recovery (tc) && tc->rto_boff > 0))
1225             {
1226               tc->rto_boff = 0;
1227               tcp_update_rto (tc);
1228             }
1229         }
1230     }
1231 }
1232
1233 /**
1234  * Init loss recovery/fast recovery.
1235  *
1236  * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
1237  * updated in @ref tcp_cc_handle_event after fast retransmit
1238  */
1239 static void
1240 tcp_cc_init_congestion (tcp_connection_t * tc)
1241 {
1242   tcp_fastrecovery_on (tc);
1243   tc->snd_congestion = tc->snd_nxt;
1244   tc->cwnd_acc_bytes = 0;
1245   tc->snd_rxt_bytes = 0;
1246   tc->rxt_delivered = 0;
1247   tc->prr_delivered = 0;
1248   tc->prr_start = tc->snd_una;
1249   tc->prev_ssthresh = tc->ssthresh;
1250   tc->prev_cwnd = tc->cwnd;
1251
1252   tc->snd_rxt_ts = tcp_tstamp (tc);
1253   tcp_cc_congestion (tc);
1254
1255   /* Post retransmit update cwnd to ssthresh and account for the
1256    * three segments that have left the network and should've been
1257    * buffered at the receiver XXX */
1258   if (!tcp_opts_sack_permitted (&tc->rcv_opts))
1259     tc->cwnd += 3 * tc->snd_mss;
1260
1261   tc->fr_occurences += 1;
1262   TCP_EVT (TCP_EVT_CC_EVT, tc, 4);
1263 }
1264
1265 static void
1266 tcp_cc_congestion_undo (tcp_connection_t * tc)
1267 {
1268   tc->cwnd = tc->prev_cwnd;
1269   tc->ssthresh = tc->prev_ssthresh;
1270   tcp_cc_undo_recovery (tc);
1271   ASSERT (tc->rto_boff == 0);
1272   TCP_EVT (TCP_EVT_CC_EVT, tc, 5);
1273 }
1274
1275 static inline u8
1276 tcp_cc_is_spurious_timeout_rxt (tcp_connection_t * tc)
1277 {
1278   return (tcp_in_recovery (tc) && tc->rto_boff == 1
1279           && tc->snd_rxt_ts
1280           && tcp_opts_tstamp (&tc->rcv_opts)
1281           && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
1282 }
1283
1284 static inline u8
1285 tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
1286 {
1287   return (tcp_cc_is_spurious_timeout_rxt (tc));
1288 }
1289
1290 static inline u8
1291 tcp_should_fastrecover_sack (tcp_connection_t * tc)
1292 {
1293   return (tc->sack_sb.lost_bytes
1294           || ((TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
1295               < tc->sack_sb.sacked_bytes));
1296 }
1297
1298 static inline u8
1299 tcp_should_fastrecover (tcp_connection_t * tc, u8 has_sack)
1300 {
1301   if (!has_sack)
1302     {
1303       /* If of of the two conditions lower hold, reset dupacks because
1304        * we're probably after timeout (RFC6582 heuristics).
1305        * If Cumulative ack does not cover more than congestion threshold,
1306        * and:
1307        * 1) The following doesn't hold: The congestion window is greater
1308        *    than SMSS bytes and the difference between highest_ack
1309        *    and prev_highest_ack is at most 4*SMSS bytes
1310        * 2) Echoed timestamp in the last non-dup ack does not equal the
1311        *    stored timestamp
1312        */
1313       if (seq_leq (tc->snd_una, tc->snd_congestion)
1314           && ((!(tc->cwnd > tc->snd_mss
1315                  && tc->bytes_acked <= 4 * tc->snd_mss))
1316               || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
1317         {
1318           tc->rcv_dupacks = 0;
1319           return 0;
1320         }
1321     }
1322   return ((tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
1323           || tcp_should_fastrecover_sack (tc));
1324 }
1325
1326 static int
1327 tcp_cc_recover (tcp_connection_t * tc)
1328 {
1329   sack_scoreboard_hole_t *hole;
1330   u8 is_spurious = 0;
1331
1332   ASSERT (tcp_in_cong_recovery (tc));
1333
1334   if (tcp_cc_is_spurious_retransmit (tc))
1335     {
1336       tcp_cc_congestion_undo (tc);
1337       is_spurious = 1;
1338     }
1339
1340   tcp_connection_tx_pacer_reset (tc, tc->cwnd, 0 /* start bucket */ );
1341   tc->rcv_dupacks = 0;
1342
1343   /* Previous recovery left us congested. Continue sending as part
1344    * of the current recovery event with an updated snd_congestion */
1345   if (tc->sack_sb.sacked_bytes)
1346     {
1347       tc->snd_congestion = tc->snd_nxt;
1348       tcp_program_retransmit (tc);
1349       return is_spurious;
1350     }
1351
1352   tc->rxt_delivered = 0;
1353   tc->snd_rxt_bytes = 0;
1354   tc->snd_rxt_ts = 0;
1355   tc->prr_delivered = 0;
1356   tc->rtt_ts = 0;
1357   tc->flags &= ~TCP_CONN_RXT_PENDING;
1358
1359   hole = scoreboard_first_hole (&tc->sack_sb);
1360   if (hole && hole->start == tc->snd_una && hole->end == tc->snd_nxt)
1361     scoreboard_clear (&tc->sack_sb);
1362
1363   if (!tcp_in_recovery (tc) && !is_spurious)
1364     tcp_cc_recovered (tc);
1365
1366   tcp_fastrecovery_off (tc);
1367   tcp_fastrecovery_first_off (tc);
1368   tcp_recovery_off (tc);
1369   TCP_EVT (TCP_EVT_CC_EVT, tc, 3);
1370
1371   ASSERT (tc->rto_boff == 0);
1372   ASSERT (!tcp_in_cong_recovery (tc));
1373   ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
1374   return is_spurious;
1375 }
1376
1377 static void
1378 tcp_cc_update (tcp_connection_t * tc, tcp_rate_sample_t * rs)
1379 {
1380   ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
1381
1382   /* Congestion avoidance */
1383   tcp_cc_rcv_ack (tc, rs);
1384
1385   /* If a cumulative ack, make sure dupacks is 0 */
1386   tc->rcv_dupacks = 0;
1387
1388   /* When dupacks hits the threshold we only enter fast retransmit if
1389    * cumulative ack covers more than snd_congestion. Should snd_una
1390    * wrap this test may fail under otherwise valid circumstances.
1391    * Therefore, proactively update snd_congestion when wrap detected. */
1392   if (PREDICT_FALSE
1393       (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1394        && seq_gt (tc->snd_congestion, tc->snd_una)))
1395     tc->snd_congestion = tc->snd_una - 1;
1396 }
1397
1398 /**
1399  * One function to rule them all ... and in the darkness bind them
1400  */
1401 static void
1402 tcp_cc_handle_event (tcp_connection_t * tc, tcp_rate_sample_t * rs,
1403                      u32 is_dack)
1404 {
1405   u8 has_sack = tcp_opts_sack_permitted (&tc->rcv_opts);
1406
1407   /* If reneging, wait for timer based retransmits */
1408   if (PREDICT_FALSE (tcp_is_lost_fin (tc) || tc->sack_sb.is_reneging))
1409     return;
1410
1411   /*
1412    * If not in recovery, figure out if we should enter
1413    */
1414   if (!tcp_in_cong_recovery (tc))
1415     {
1416       ASSERT (is_dack);
1417
1418       tc->rcv_dupacks++;
1419       TCP_EVT (TCP_EVT_DUPACK_RCVD, tc, 1);
1420       tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
1421
1422       if (tcp_should_fastrecover (tc, has_sack))
1423         {
1424           tcp_cc_init_congestion (tc);
1425
1426           if (has_sack)
1427             scoreboard_init_rxt (&tc->sack_sb, tc->snd_una);
1428
1429           tcp_connection_tx_pacer_reset (tc, tc->cwnd, 0 /* start bucket */ );
1430           tcp_program_retransmit (tc);
1431         }
1432
1433       return;
1434     }
1435
1436   /*
1437    * Already in recovery
1438    */
1439
1440   /*
1441    * Process (re)transmit feedback. Output path uses this to decide how much
1442    * more data to release into the network
1443    */
1444   if (has_sack)
1445     {
1446       if (!tc->bytes_acked && tc->sack_sb.rxt_sacked)
1447         tcp_fastrecovery_first_on (tc);
1448
1449       tc->rxt_delivered += tc->sack_sb.rxt_sacked;
1450       tc->prr_delivered += tc->bytes_acked + tc->sack_sb.last_sacked_bytes
1451         - tc->sack_sb.last_bytes_delivered;
1452
1453       tcp_program_retransmit (tc);
1454     }
1455   else
1456     {
1457       if (is_dack)
1458         {
1459           tc->rcv_dupacks += 1;
1460           TCP_EVT (TCP_EVT_DUPACK_RCVD, tc, 1);
1461         }
1462       tc->rxt_delivered = clib_max (tc->rxt_delivered + tc->bytes_acked,
1463                                     tc->snd_rxt_bytes);
1464       if (is_dack)
1465         tc->prr_delivered += clib_min (tc->snd_mss,
1466                                        tc->snd_nxt - tc->snd_una);
1467       else
1468         tc->prr_delivered += tc->bytes_acked - clib_min (tc->bytes_acked,
1469                                                          tc->snd_mss *
1470                                                          tc->rcv_dupacks);
1471
1472       /* If partial ack, assume that the first un-acked segment was lost */
1473       if (tc->bytes_acked || tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
1474         tcp_fastrecovery_first_on (tc);
1475
1476       tcp_program_retransmit (tc);
1477     }
1478
1479   /*
1480    * See if we can exit and stop retransmitting
1481    */
1482   if (seq_geq (tc->snd_una, tc->snd_congestion))
1483     {
1484       /* If spurious return, we've already updated everything */
1485       if (tcp_cc_recover (tc))
1486         {
1487           tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1488           return;
1489         }
1490
1491       /* Treat as congestion avoidance ack */
1492       tcp_cc_rcv_ack (tc, rs);
1493       return;
1494     }
1495
1496   /*
1497    * Notify cc of the event
1498    */
1499
1500   if (!tc->bytes_acked)
1501     {
1502       tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
1503       return;
1504     }
1505
1506   /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
1507    * reset dupacks to 0. Also needed if in congestion recovery */
1508   tc->rcv_dupacks = 0;
1509
1510   if (tcp_in_recovery (tc))
1511     tcp_cc_rcv_ack (tc, rs);
1512   else
1513     tcp_cc_rcv_cong_ack (tc, TCP_CC_PARTIALACK, rs);
1514 }
1515
1516 static void
1517 tcp_handle_old_ack (tcp_connection_t * tc, tcp_rate_sample_t * rs)
1518 {
1519   if (!tcp_in_cong_recovery (tc))
1520     return;
1521
1522   if (tcp_opts_sack_permitted (&tc->rcv_opts))
1523     tcp_rcv_sacks (tc, tc->snd_una);
1524
1525   tc->bytes_acked = 0;
1526
1527   if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
1528     tcp_bt_sample_delivery_rate (tc, rs);
1529
1530   tcp_cc_handle_event (tc, rs, 1);
1531 }
1532
1533 /**
1534  * Check if duplicate ack as per RFC5681 Sec. 2
1535  */
1536 always_inline u8
1537 tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd,
1538                    u32 prev_snd_una)
1539 {
1540   return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
1541           && seq_gt (tc->snd_nxt, tc->snd_una)
1542           && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
1543           && (prev_snd_wnd == tc->snd_wnd));
1544 }
1545
1546 /**
1547  * Checks if ack is a congestion control event.
1548  */
1549 static u8
1550 tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b,
1551                      u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
1552 {
1553   /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
1554    * defined to be 'duplicate' as well */
1555   *is_dack = tc->sack_sb.last_sacked_bytes
1556     || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
1557
1558   return (*is_dack || tcp_in_cong_recovery (tc));
1559 }
1560
1561 /**
1562  * Process incoming ACK
1563  */
1564 static int
1565 tcp_rcv_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
1566              tcp_header_t * th, u32 * error)
1567 {
1568   u32 prev_snd_wnd, prev_snd_una;
1569   tcp_rate_sample_t rs = { 0 };
1570   u8 is_dack;
1571
1572   TCP_EVT (TCP_EVT_CC_STAT, tc);
1573
1574   /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
1575   if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
1576     {
1577       /* We've probably entered recovery and the peer still has some
1578        * of the data we've sent. Update snd_nxt and accept the ack */
1579       if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)
1580           && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
1581         {
1582           tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
1583           goto process_ack;
1584         }
1585
1586       tc->errors.above_ack_wnd += 1;
1587       *error = TCP_ERROR_ACK_FUTURE;
1588       TCP_EVT (TCP_EVT_ACK_RCV_ERR, tc, 0, vnet_buffer (b)->tcp.ack_number);
1589       return -1;
1590     }
1591
1592   /* If old ACK, probably it's an old dupack */
1593   if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
1594     {
1595       tc->errors.below_ack_wnd += 1;
1596       *error = TCP_ERROR_ACK_OLD;
1597       TCP_EVT (TCP_EVT_ACK_RCV_ERR, tc, 1, vnet_buffer (b)->tcp.ack_number);
1598
1599       if (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una - tc->rcv_wnd))
1600         return -1;
1601
1602       tcp_handle_old_ack (tc, &rs);
1603
1604       /* Don't drop yet */
1605       return 0;
1606     }
1607
1608 process_ack:
1609
1610   /*
1611    * Looks okay, process feedback
1612    */
1613
1614   if (tcp_opts_sack_permitted (&tc->rcv_opts))
1615     tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1616
1617   prev_snd_wnd = tc->snd_wnd;
1618   prev_snd_una = tc->snd_una;
1619   tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1620                       vnet_buffer (b)->tcp.ack_number,
1621                       clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1622   tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
1623   tc->snd_una = vnet_buffer (b)->tcp.ack_number;
1624   tcp_validate_txf_size (tc, tc->bytes_acked);
1625
1626   if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
1627     tcp_bt_sample_delivery_rate (tc, &rs);
1628
1629   if (tc->bytes_acked)
1630     {
1631       tcp_program_dequeue (wrk, tc);
1632       tcp_update_rtt (tc, &rs, vnet_buffer (b)->tcp.ack_number);
1633     }
1634
1635   TCP_EVT (TCP_EVT_ACK_RCVD, tc);
1636
1637   /*
1638    * Check if we have congestion event
1639    */
1640
1641   if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
1642     {
1643       tcp_cc_handle_event (tc, &rs, is_dack);
1644       tc->dupacks_in += is_dack;
1645       if (!tcp_in_cong_recovery (tc))
1646         {
1647           *error = TCP_ERROR_ACK_OK;
1648           return 0;
1649         }
1650       *error = TCP_ERROR_ACK_DUP;
1651       if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th))
1652         return 0;
1653       return -1;
1654     }
1655
1656   /*
1657    * Update congestion control (slow start/congestion avoidance)
1658    */
1659   tcp_cc_update (tc, &rs);
1660   *error = TCP_ERROR_ACK_OK;
1661   return 0;
1662 }
1663
1664 static void
1665 tcp_program_disconnect (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1666 {
1667   if (!tcp_disconnect_pending (tc))
1668     {
1669       vec_add1 (wrk->pending_disconnects, tc->c_c_index);
1670       tcp_disconnect_pending_on (tc);
1671     }
1672 }
1673
1674 static void
1675 tcp_handle_disconnects (tcp_worker_ctx_t * wrk)
1676 {
1677   u32 thread_index, *pending_disconnects;
1678   tcp_connection_t *tc;
1679   int i;
1680
1681   if (!vec_len (wrk->pending_disconnects))
1682     return;
1683
1684   thread_index = wrk->vm->thread_index;
1685   pending_disconnects = wrk->pending_disconnects;
1686   for (i = 0; i < vec_len (pending_disconnects); i++)
1687     {
1688       tc = tcp_connection_get (pending_disconnects[i], thread_index);
1689       tcp_disconnect_pending_off (tc);
1690       session_transport_closing_notify (&tc->connection);
1691     }
1692   _vec_len (wrk->pending_disconnects) = 0;
1693 }
1694
1695 static void
1696 tcp_rcv_fin (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
1697              u32 * error)
1698 {
1699   /* Reject out-of-order fins */
1700   if (vnet_buffer (b)->tcp.seq_end != tc->rcv_nxt)
1701     return;
1702
1703   /* Account for the FIN and send ack */
1704   tc->rcv_nxt += 1;
1705   tc->flags |= TCP_CONN_FINRCVD;
1706   tcp_program_ack (tc);
1707   /* Enter CLOSE-WAIT and notify session. To avoid lingering
1708    * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
1709   tcp_connection_set_state (tc, TCP_STATE_CLOSE_WAIT);
1710   tcp_program_disconnect (wrk, tc);
1711   tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, tcp_cfg.closewait_time);
1712   TCP_EVT (TCP_EVT_FIN_RCVD, tc);
1713   *error = TCP_ERROR_FIN_RCVD;
1714 }
1715
1716 #ifndef CLIB_MARCH_VARIANT
1717 static u8
1718 tcp_sack_vector_is_sane (sack_block_t * sacks)
1719 {
1720   int i;
1721   for (i = 1; i < vec_len (sacks); i++)
1722     {
1723       if (sacks[i - 1].end == sacks[i].start)
1724         return 0;
1725     }
1726   return 1;
1727 }
1728
1729 /**
1730  * Build SACK list as per RFC2018.
1731  *
1732  * Makes sure the first block contains the segment that generated the current
1733  * ACK and the following ones are the ones most recently reported in SACK
1734  * blocks.
1735  *
1736  * @param tc TCP connection for which the SACK list is updated
1737  * @param start Start sequence number of the newest SACK block
1738  * @param end End sequence of the newest SACK block
1739  */
1740 void
1741 tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1742 {
1743   sack_block_t *new_list = tc->snd_sacks_fl, *block = 0;
1744   int i;
1745
1746   /* If the first segment is ooo add it to the list. Last write might've moved
1747    * rcv_nxt over the first segment. */
1748   if (seq_lt (tc->rcv_nxt, start))
1749     {
1750       vec_add2 (new_list, block, 1);
1751       block->start = start;
1752       block->end = end;
1753     }
1754
1755   /* Find the blocks still worth keeping. */
1756   for (i = 0; i < vec_len (tc->snd_sacks); i++)
1757     {
1758       /* Discard if rcv_nxt advanced beyond current block */
1759       if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
1760         continue;
1761
1762       /* Merge or drop if segment overlapped by the new segment */
1763       if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1764                     && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1765         {
1766           if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1767             new_list[0].start = tc->snd_sacks[i].start;
1768           if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1769             new_list[0].end = tc->snd_sacks[i].end;
1770           continue;
1771         }
1772
1773       /* Save to new SACK list if we have space. */
1774       if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
1775         vec_add1 (new_list, tc->snd_sacks[i]);
1776     }
1777
1778   ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
1779
1780   /* Replace old vector with new one */
1781   vec_reset_length (tc->snd_sacks);
1782   tc->snd_sacks_fl = tc->snd_sacks;
1783   tc->snd_sacks = new_list;
1784
1785   /* Segments should not 'touch' */
1786   ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
1787 }
1788
1789 u32
1790 tcp_sack_list_bytes (tcp_connection_t * tc)
1791 {
1792   u32 bytes = 0, i;
1793   for (i = 0; i < vec_len (tc->snd_sacks); i++)
1794     bytes += tc->snd_sacks[i].end - tc->snd_sacks[i].start;
1795   return bytes;
1796 }
1797 #endif /* CLIB_MARCH_VARIANT */
1798
1799 /** Enqueue data for delivery to application */
1800 static int
1801 tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1802                           u16 data_len)
1803 {
1804   int written, error = TCP_ERROR_ENQUEUED;
1805
1806   ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
1807   ASSERT (data_len);
1808   written = session_enqueue_stream_connection (&tc->connection, b, 0,
1809                                                1 /* queue event */ , 1);
1810   tc->bytes_in += written;
1811
1812   TCP_EVT (TCP_EVT_INPUT, tc, 0, data_len, written);
1813
1814   /* Update rcv_nxt */
1815   if (PREDICT_TRUE (written == data_len))
1816     {
1817       tc->rcv_nxt += written;
1818     }
1819   /* If more data written than expected, account for out-of-order bytes. */
1820   else if (written > data_len)
1821     {
1822       tc->rcv_nxt += written;
1823       TCP_EVT (TCP_EVT_CC_INPUT, tc, data_len, written);
1824     }
1825   else if (written > 0)
1826     {
1827       /* We've written something but FIFO is probably full now */
1828       tc->rcv_nxt += written;
1829       error = TCP_ERROR_PARTIALLY_ENQUEUED;
1830     }
1831   else
1832     {
1833       return TCP_ERROR_FIFO_FULL;
1834     }
1835
1836   /* Update SACK list if need be */
1837   if (tcp_opts_sack_permitted (&tc->rcv_opts))
1838     {
1839       /* Remove SACK blocks that have been delivered */
1840       tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1841     }
1842
1843   return error;
1844 }
1845
1846 /** Enqueue out-of-order data */
1847 static int
1848 tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1849                          u16 data_len)
1850 {
1851   session_t *s0;
1852   int rv, offset;
1853
1854   ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
1855   ASSERT (data_len);
1856
1857   /* Enqueue out-of-order data with relative offset */
1858   rv = session_enqueue_stream_connection (&tc->connection, b,
1859                                           vnet_buffer (b)->tcp.seq_number -
1860                                           tc->rcv_nxt, 0 /* queue event */ ,
1861                                           0);
1862
1863   /* Nothing written */
1864   if (rv)
1865     {
1866       TCP_EVT (TCP_EVT_INPUT, tc, 1, data_len, 0);
1867       return TCP_ERROR_FIFO_FULL;
1868     }
1869
1870   TCP_EVT (TCP_EVT_INPUT, tc, 1, data_len, data_len);
1871   tc->bytes_in += data_len;
1872
1873   /* Update SACK list if in use */
1874   if (tcp_opts_sack_permitted (&tc->rcv_opts))
1875     {
1876       ooo_segment_t *newest;
1877       u32 start, end;
1878
1879       s0 = session_get (tc->c_s_index, tc->c_thread_index);
1880
1881       /* Get the newest segment from the fifo */
1882       newest = svm_fifo_newest_ooo_segment (s0->rx_fifo);
1883       if (newest)
1884         {
1885           offset = ooo_segment_offset_prod (s0->rx_fifo, newest);
1886           ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1887           start = tc->rcv_nxt + offset;
1888           end = start + ooo_segment_length (s0->rx_fifo, newest);
1889           tcp_update_sack_list (tc, start, end);
1890           svm_fifo_newest_ooo_segment_reset (s0->rx_fifo);
1891           TCP_EVT (TCP_EVT_CC_SACKS, tc);
1892         }
1893     }
1894
1895   return TCP_ERROR_ENQUEUED_OOO;
1896 }
1897
1898 /**
1899  * Check if ACK could be delayed. If ack can be delayed, it should return
1900  * true for a full frame. If we're always acking return 0.
1901  */
1902 always_inline int
1903 tcp_can_delack (tcp_connection_t * tc)
1904 {
1905   /* Send ack if ... */
1906   if (TCP_ALWAYS_ACK
1907       /* just sent a rcv wnd 0
1908          || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0 */
1909       /* constrained to send ack */
1910       || (tc->flags & TCP_CONN_SNDACK) != 0
1911       /* we're almost out of tx wnd */
1912       || tcp_available_cc_snd_space (tc) < 4 * tc->snd_mss)
1913     return 0;
1914
1915   return 1;
1916 }
1917
1918 static int
1919 tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
1920 {
1921   u32 discard, first = b->current_length;
1922   vlib_main_t *vm = vlib_get_main ();
1923
1924   /* Handle multi-buffer segments */
1925   if (n_bytes_to_drop > b->current_length)
1926     {
1927       if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1928         return -1;
1929       do
1930         {
1931           discard = clib_min (n_bytes_to_drop, b->current_length);
1932           vlib_buffer_advance (b, discard);
1933           b = vlib_get_buffer (vm, b->next_buffer);
1934           n_bytes_to_drop -= discard;
1935         }
1936       while (n_bytes_to_drop);
1937       if (n_bytes_to_drop > first)
1938         b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
1939     }
1940   else
1941     vlib_buffer_advance (b, n_bytes_to_drop);
1942   vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
1943   return 0;
1944 }
1945
1946 /**
1947  * Receive buffer for connection and handle acks
1948  *
1949  * It handles both in order or out-of-order data.
1950  */
1951 static int
1952 tcp_segment_rcv (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1953                  vlib_buffer_t * b)
1954 {
1955   u32 error, n_bytes_to_drop, n_data_bytes;
1956
1957   vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1958   n_data_bytes = vnet_buffer (b)->tcp.data_len;
1959   ASSERT (n_data_bytes);
1960   tc->data_segs_in += 1;
1961
1962   /* Handle out-of-order data */
1963   if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1964     {
1965       /* Old sequence numbers allowed through because they overlapped
1966        * the rx window */
1967       if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
1968         {
1969           /* Completely in the past (possible retransmit). Ack
1970            * retransmissions since we may not have any data to send */
1971           if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
1972             {
1973               tcp_program_ack (tc);
1974               error = TCP_ERROR_SEGMENT_OLD;
1975               goto done;
1976             }
1977
1978           /* Chop off the bytes in the past and see if what is left
1979            * can be enqueued in order */
1980           n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1981           n_data_bytes -= n_bytes_to_drop;
1982           vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
1983           if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
1984             {
1985               error = TCP_ERROR_SEGMENT_OLD;
1986               goto done;
1987             }
1988           goto in_order;
1989         }
1990
1991       /* RFC2581: Enqueue and send DUPACK for fast retransmit */
1992       error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
1993       tcp_program_dupack (tc);
1994       TCP_EVT (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
1995       tc->errors.above_data_wnd += seq_gt (vnet_buffer (b)->tcp.seq_end,
1996                                            tc->rcv_las + tc->rcv_wnd);
1997       goto done;
1998     }
1999
2000 in_order:
2001
2002   /* In order data, enqueue. Fifo figures out by itself if any out-of-order
2003    * segments can be enqueued after fifo tail offset changes. */
2004   error = tcp_session_enqueue_data (tc, b, n_data_bytes);
2005   if (tcp_can_delack (tc))
2006     {
2007       if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
2008         tcp_timer_set (tc, TCP_TIMER_DELACK, tcp_cfg.delack_time);
2009       goto done;
2010     }
2011
2012   tcp_program_ack (tc);
2013
2014 done:
2015   return error;
2016 }
2017
2018 typedef struct
2019 {
2020   tcp_header_t tcp_header;
2021   tcp_connection_t tcp_connection;
2022 } tcp_rx_trace_t;
2023
2024 static u8 *
2025 format_tcp_rx_trace (u8 * s, va_list * args)
2026 {
2027   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2028   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2029   tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
2030   u32 indent = format_get_indent (s);
2031
2032   s = format (s, "%U\n%U%U",
2033               format_tcp_header, &t->tcp_header, 128,
2034               format_white_space, indent,
2035               format_tcp_connection, &t->tcp_connection, 1);
2036
2037   return s;
2038 }
2039
2040 static u8 *
2041 format_tcp_rx_trace_short (u8 * s, va_list * args)
2042 {
2043   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2044   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2045   tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
2046
2047   s = format (s, "%d -> %d (%U)",
2048               clib_net_to_host_u16 (t->tcp_header.dst_port),
2049               clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state,
2050               t->tcp_connection.state);
2051
2052   return s;
2053 }
2054
2055 static void
2056 tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
2057                        tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
2058 {
2059   if (tc0)
2060     {
2061       clib_memcpy_fast (&t0->tcp_connection, tc0,
2062                         sizeof (t0->tcp_connection));
2063     }
2064   else
2065     {
2066       th0 = tcp_buffer_hdr (b0);
2067     }
2068   clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
2069 }
2070
2071 static void
2072 tcp_established_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2073                              vlib_frame_t * frame, u8 is_ip4)
2074 {
2075   u32 *from, n_left;
2076
2077   n_left = frame->n_vectors;
2078   from = vlib_frame_vector_args (frame);
2079
2080   while (n_left >= 1)
2081     {
2082       tcp_connection_t *tc0;
2083       tcp_rx_trace_t *t0;
2084       tcp_header_t *th0;
2085       vlib_buffer_t *b0;
2086       u32 bi0;
2087
2088       bi0 = from[0];
2089       b0 = vlib_get_buffer (vm, bi0);
2090
2091       if (b0->flags & VLIB_BUFFER_IS_TRACED)
2092         {
2093           t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2094           tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2095                                     vm->thread_index);
2096           th0 = tcp_buffer_hdr (b0);
2097           tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
2098         }
2099
2100       from += 1;
2101       n_left -= 1;
2102     }
2103 }
2104
2105 always_inline void
2106 tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
2107                         u8 is_ip4, u32 evt, u32 val)
2108 {
2109   if (is_ip4)
2110     vlib_node_increment_counter (vm, tcp4_node, evt, val);
2111   else
2112     vlib_node_increment_counter (vm, tcp6_node, evt, val);
2113 }
2114
2115 #define tcp_maybe_inc_counter(node_id, err, count)                      \
2116 {                                                                       \
2117   if (next0 != tcp_next_drop (is_ip4))                                  \
2118     tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index,            \
2119                             tcp6_##node_id##_node.index, is_ip4, err,   \
2120                             1);                                         \
2121 }
2122 #define tcp_inc_counter(node_id, err, count)                            \
2123   tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index,              \
2124                            tcp6_##node_id##_node.index, is_ip4,         \
2125                            err, count)
2126 #define tcp_maybe_inc_err_counter(cnts, err)                            \
2127 {                                                                       \
2128   cnts[err] += (next0 != tcp_next_drop (is_ip4));                       \
2129 }
2130 #define tcp_inc_err_counter(cnts, err, val)                             \
2131 {                                                                       \
2132   cnts[err] += val;                                                     \
2133 }
2134 #define tcp_store_err_counters(node_id, cnts)                           \
2135 {                                                                       \
2136   int i;                                                                \
2137   for (i = 0; i < TCP_N_ERROR; i++)                                     \
2138     if (cnts[i])                                                        \
2139       tcp_inc_counter(node_id, i, cnts[i]);                             \
2140 }
2141
2142
2143 always_inline uword
2144 tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2145                           vlib_frame_t * frame, int is_ip4)
2146 {
2147   u32 thread_index = vm->thread_index, errors = 0;
2148   tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
2149   u32 n_left_from, *from, *first_buffer;
2150   u16 err_counters[TCP_N_ERROR] = { 0 };
2151
2152   if (node->flags & VLIB_NODE_FLAG_TRACE)
2153     tcp_established_trace_frame (vm, node, frame, is_ip4);
2154
2155   first_buffer = from = vlib_frame_vector_args (frame);
2156   n_left_from = frame->n_vectors;
2157
2158   while (n_left_from > 0)
2159     {
2160       u32 bi0, error0 = TCP_ERROR_ACK_OK;
2161       vlib_buffer_t *b0;
2162       tcp_header_t *th0;
2163       tcp_connection_t *tc0;
2164
2165       if (n_left_from > 1)
2166         {
2167           vlib_buffer_t *pb;
2168           pb = vlib_get_buffer (vm, from[1]);
2169           vlib_prefetch_buffer_header (pb, LOAD);
2170           CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
2171         }
2172
2173       bi0 = from[0];
2174       from += 1;
2175       n_left_from -= 1;
2176
2177       b0 = vlib_get_buffer (vm, bi0);
2178       tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2179                                 thread_index);
2180
2181       if (PREDICT_FALSE (tc0 == 0))
2182         {
2183           error0 = TCP_ERROR_INVALID_CONNECTION;
2184           goto done;
2185         }
2186
2187       th0 = tcp_buffer_hdr (b0);
2188
2189       /* TODO header prediction fast path */
2190
2191       /* 1-4: check SEQ, RST, SYN */
2192       if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, th0, &error0)))
2193         {
2194           TCP_EVT (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp);
2195           goto done;
2196         }
2197
2198       /* 5: check the ACK field  */
2199       if (PREDICT_FALSE (tcp_rcv_ack (wrk, tc0, b0, th0, &error0)))
2200         goto done;
2201
2202       /* 6: check the URG bit TODO */
2203
2204       /* 7: process the segment text */
2205       if (vnet_buffer (b0)->tcp.data_len)
2206         error0 = tcp_segment_rcv (wrk, tc0, b0);
2207
2208       /* 8: check the FIN bit */
2209       if (PREDICT_FALSE (tcp_is_fin (th0)))
2210         tcp_rcv_fin (wrk, tc0, b0, &error0);
2211
2212     done:
2213       tcp_inc_err_counter (err_counters, error0, 1);
2214     }
2215
2216   errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2217                                               thread_index);
2218   err_counters[TCP_ERROR_MSG_QUEUE_FULL] = errors;
2219   tcp_store_err_counters (established, err_counters);
2220   tcp_handle_postponed_dequeues (wrk);
2221   tcp_handle_disconnects (wrk);
2222   vlib_buffer_free (vm, first_buffer, frame->n_vectors);
2223
2224   return frame->n_vectors;
2225 }
2226
2227 VLIB_NODE_FN (tcp4_established_node) (vlib_main_t * vm,
2228                                       vlib_node_runtime_t * node,
2229                                       vlib_frame_t * from_frame)
2230 {
2231   return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2232 }
2233
2234 VLIB_NODE_FN (tcp6_established_node) (vlib_main_t * vm,
2235                                       vlib_node_runtime_t * node,
2236                                       vlib_frame_t * from_frame)
2237 {
2238   return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2239 }
2240
2241 /* *INDENT-OFF* */
2242 VLIB_REGISTER_NODE (tcp4_established_node) =
2243 {
2244   .name = "tcp4-established",
2245   /* Takes a vector of packets. */
2246   .vector_size = sizeof (u32),
2247   .n_errors = TCP_N_ERROR,
2248   .error_strings = tcp_error_strings,
2249   .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2250   .next_nodes =
2251   {
2252 #define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2253     foreach_tcp_state_next
2254 #undef _
2255   },
2256   .format_trace = format_tcp_rx_trace_short,
2257 };
2258 /* *INDENT-ON* */
2259
2260 /* *INDENT-OFF* */
2261 VLIB_REGISTER_NODE (tcp6_established_node) =
2262 {
2263   .name = "tcp6-established",
2264   /* Takes a vector of packets. */
2265   .vector_size = sizeof (u32),
2266   .n_errors = TCP_N_ERROR,
2267   .error_strings = tcp_error_strings,
2268   .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2269   .next_nodes =
2270   {
2271 #define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2272     foreach_tcp_state_next
2273 #undef _
2274   },
2275   .format_trace = format_tcp_rx_trace_short,
2276 };
2277 /* *INDENT-ON* */
2278
2279
2280 static u8
2281 tcp_lookup_is_valid (tcp_connection_t * tc, vlib_buffer_t * b,
2282                      tcp_header_t * hdr)
2283 {
2284   transport_connection_t *tmp = 0;
2285   u64 handle;
2286
2287   if (!tc)
2288     return 1;
2289
2290   /* Proxy case */
2291   if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
2292     return 1;
2293
2294   u8 is_ip_valid = 0, val_l, val_r;
2295
2296   if (tc->connection.is_ip4)
2297     {
2298       ip4_header_t *ip4_hdr = (ip4_header_t *) vlib_buffer_get_current (b);
2299
2300       val_l = !ip4_address_compare (&ip4_hdr->dst_address,
2301                                     &tc->connection.lcl_ip.ip4);
2302       val_l = val_l || ip_is_zero (&tc->connection.lcl_ip, 1);
2303       val_r = !ip4_address_compare (&ip4_hdr->src_address,
2304                                     &tc->connection.rmt_ip.ip4);
2305       val_r = val_r || tc->state == TCP_STATE_LISTEN;
2306       is_ip_valid = val_l && val_r;
2307     }
2308   else
2309     {
2310       ip6_header_t *ip6_hdr = (ip6_header_t *) vlib_buffer_get_current (b);
2311
2312       val_l = !ip6_address_compare (&ip6_hdr->dst_address,
2313                                     &tc->connection.lcl_ip.ip6);
2314       val_l = val_l || ip_is_zero (&tc->connection.lcl_ip, 0);
2315       val_r = !ip6_address_compare (&ip6_hdr->src_address,
2316                                     &tc->connection.rmt_ip.ip6);
2317       val_r = val_r || tc->state == TCP_STATE_LISTEN;
2318       is_ip_valid = val_l && val_r;
2319     }
2320
2321   u8 is_valid = (tc->c_lcl_port == hdr->dst_port
2322                  && (tc->state == TCP_STATE_LISTEN
2323                      || tc->c_rmt_port == hdr->src_port) && is_ip_valid);
2324
2325   if (!is_valid)
2326     {
2327       handle = session_lookup_half_open_handle (&tc->connection);
2328       tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
2329                                                  tc->c_proto, tc->c_is_ip4);
2330
2331       if (tmp)
2332         {
2333           if (tmp->lcl_port == hdr->dst_port
2334               && tmp->rmt_port == hdr->src_port)
2335             {
2336               TCP_DBG ("half-open is valid!");
2337               is_valid = 1;
2338             }
2339         }
2340     }
2341   return is_valid;
2342 }
2343
2344 /**
2345  * Lookup transport connection
2346  */
2347 static tcp_connection_t *
2348 tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
2349                        u8 is_ip4)
2350 {
2351   tcp_header_t *tcp;
2352   transport_connection_t *tconn;
2353   tcp_connection_t *tc;
2354   u8 is_filtered = 0;
2355   if (is_ip4)
2356     {
2357       ip4_header_t *ip4;
2358       ip4 = vlib_buffer_get_current (b);
2359       tcp = ip4_next_header (ip4);
2360       tconn = session_lookup_connection_wt4 (fib_index,
2361                                              &ip4->dst_address,
2362                                              &ip4->src_address,
2363                                              tcp->dst_port,
2364                                              tcp->src_port,
2365                                              TRANSPORT_PROTO_TCP,
2366                                              thread_index, &is_filtered);
2367       tc = tcp_get_connection_from_transport (tconn);
2368       ASSERT (tcp_lookup_is_valid (tc, b, tcp));
2369     }
2370   else
2371     {
2372       ip6_header_t *ip6;
2373       ip6 = vlib_buffer_get_current (b);
2374       tcp = ip6_next_header (ip6);
2375       tconn = session_lookup_connection_wt6 (fib_index,
2376                                              &ip6->dst_address,
2377                                              &ip6->src_address,
2378                                              tcp->dst_port,
2379                                              tcp->src_port,
2380                                              TRANSPORT_PROTO_TCP,
2381                                              thread_index, &is_filtered);
2382       tc = tcp_get_connection_from_transport (tconn);
2383       ASSERT (tcp_lookup_is_valid (tc, b, tcp));
2384     }
2385   return tc;
2386 }
2387
2388 static tcp_connection_t *
2389 tcp_lookup_listener (vlib_buffer_t * b, u32 fib_index, int is_ip4)
2390 {
2391   session_t *s;
2392
2393   if (is_ip4)
2394     {
2395       ip4_header_t *ip4 = vlib_buffer_get_current (b);
2396       tcp_header_t *tcp = tcp_buffer_hdr (b);
2397       s = session_lookup_listener4 (fib_index,
2398                                     &ip4->dst_address,
2399                                     tcp->dst_port, TRANSPORT_PROTO_TCP, 1);
2400     }
2401   else
2402     {
2403       ip6_header_t *ip6 = vlib_buffer_get_current (b);
2404       tcp_header_t *tcp = tcp_buffer_hdr (b);
2405       s = session_lookup_listener6 (fib_index,
2406                                     &ip6->dst_address,
2407                                     tcp->dst_port, TRANSPORT_PROTO_TCP, 1);
2408
2409     }
2410   if (PREDICT_TRUE (s != 0))
2411     return tcp_get_connection_from_transport (transport_get_listener
2412                                               (TRANSPORT_PROTO_TCP,
2413                                                s->connection_index));
2414   else
2415     return 0;
2416 }
2417
2418 always_inline void
2419 tcp_check_tx_offload (tcp_connection_t * tc, int is_ipv4)
2420 {
2421   vnet_main_t *vnm = vnet_get_main ();
2422   const dpo_id_t *dpo;
2423   const load_balance_t *lb;
2424   vnet_hw_interface_t *hw_if;
2425   u32 sw_if_idx, lb_idx;
2426
2427   if (is_ipv4)
2428     {
2429       ip4_address_t *dst_addr = &(tc->c_rmt_ip.ip4);
2430       lb_idx = ip4_fib_forwarding_lookup (tc->c_fib_index, dst_addr);
2431     }
2432   else
2433     {
2434       ip6_address_t *dst_addr = &(tc->c_rmt_ip.ip6);
2435       lb_idx = ip6_fib_table_fwding_lookup (tc->c_fib_index, dst_addr);
2436     }
2437
2438   lb = load_balance_get (lb_idx);
2439   dpo = load_balance_get_bucket_i (lb, 0);
2440
2441   sw_if_idx = dpo->dpoi_index;
2442   hw_if = vnet_get_sup_hw_interface (vnm, sw_if_idx);
2443
2444   if (hw_if->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_GSO)
2445     tc->cfg_flags |= TCP_CFG_F_TSO;
2446 }
2447
2448 always_inline uword
2449 tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2450                        vlib_frame_t * from_frame, int is_ip4)
2451 {
2452   u32 n_left_from, *from, *first_buffer, errors = 0;
2453   u32 my_thread_index = vm->thread_index;
2454   tcp_worker_ctx_t *wrk = tcp_get_worker (my_thread_index);
2455
2456   from = first_buffer = vlib_frame_vector_args (from_frame);
2457   n_left_from = from_frame->n_vectors;
2458
2459   while (n_left_from > 0)
2460     {
2461       u32 bi0, ack0, seq0, error0 = TCP_ERROR_NONE;
2462       tcp_connection_t *tc0, *new_tc0;
2463       tcp_header_t *tcp0 = 0;
2464       tcp_rx_trace_t *t0;
2465       vlib_buffer_t *b0;
2466
2467       bi0 = from[0];
2468       from += 1;
2469       n_left_from -= 1;
2470
2471       b0 = vlib_get_buffer (vm, bi0);
2472       tc0 =
2473         tcp_half_open_connection_get (vnet_buffer (b0)->tcp.connection_index);
2474       if (PREDICT_FALSE (tc0 == 0))
2475         {
2476           error0 = TCP_ERROR_INVALID_CONNECTION;
2477           goto drop;
2478         }
2479
2480       /* Half-open completed recently but the connection was't removed
2481        * yet by the owning thread */
2482       if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2483         {
2484           /* Make sure the connection actually exists */
2485           ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2486                                          my_thread_index, is_ip4));
2487           error0 = TCP_ERROR_SPURIOUS_SYN_ACK;
2488           goto drop;
2489         }
2490
2491       ack0 = vnet_buffer (b0)->tcp.ack_number;
2492       seq0 = vnet_buffer (b0)->tcp.seq_number;
2493       tcp0 = tcp_buffer_hdr (b0);
2494
2495       /* Crude check to see if the connection handle does not match
2496        * the packet. Probably connection just switched to established */
2497       if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2498                          || tcp0->src_port != tc0->c_rmt_port))
2499         {
2500           error0 = TCP_ERROR_INVALID_CONNECTION;
2501           goto drop;
2502         }
2503
2504       if (PREDICT_FALSE (!tcp_ack (tcp0) && !tcp_rst (tcp0)
2505                          && !tcp_syn (tcp0)))
2506         {
2507           error0 = TCP_ERROR_SEGMENT_INVALID;
2508           goto drop;
2509         }
2510
2511       /* SYNs consume sequence numbers */
2512       vnet_buffer (b0)->tcp.seq_end += tcp_is_syn (tcp0);
2513
2514       /*
2515        *  1. check the ACK bit
2516        */
2517
2518       /*
2519        *   If the ACK bit is set
2520        *     If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2521        *     the RST bit is set, if so drop the segment and return)
2522        *       <SEQ=SEG.ACK><CTL=RST>
2523        *     and discard the segment.  Return.
2524        *     If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2525        */
2526       if (tcp_ack (tcp0))
2527         {
2528           if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
2529             {
2530               if (!tcp_rst (tcp0))
2531                 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
2532               error0 = TCP_ERROR_RCV_WND;
2533               goto drop;
2534             }
2535
2536           /* Make sure ACK is valid */
2537           if (seq_gt (tc0->snd_una, ack0))
2538             {
2539               error0 = TCP_ERROR_ACK_INVALID;
2540               goto drop;
2541             }
2542         }
2543
2544       /*
2545        * 2. check the RST bit
2546        */
2547
2548       if (tcp_rst (tcp0))
2549         {
2550           /* If ACK is acceptable, signal client that peer is not
2551            * willing to accept connection and drop connection*/
2552           if (tcp_ack (tcp0))
2553             tcp_connection_reset (tc0);
2554           error0 = TCP_ERROR_RST_RCVD;
2555           goto drop;
2556         }
2557
2558       /*
2559        * 3. check the security and precedence (skipped)
2560        */
2561
2562       /*
2563        * 4. check the SYN bit
2564        */
2565
2566       /* No SYN flag. Drop. */
2567       if (!tcp_syn (tcp0))
2568         {
2569           error0 = TCP_ERROR_SEGMENT_INVALID;
2570           goto drop;
2571         }
2572
2573       /* Parse options */
2574       if (tcp_options_parse (tcp0, &tc0->rcv_opts, 1))
2575         {
2576           error0 = TCP_ERROR_OPTIONS;
2577           goto drop;
2578         }
2579
2580       /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2581        * current thread pool. */
2582       new_tc0 = tcp_connection_alloc_w_base (my_thread_index, tc0);
2583       new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2584       new_tc0->irs = seq0;
2585       new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
2586       new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
2587
2588       /* If this is not the owning thread, wait for syn retransmit to
2589        * expire and cleanup then */
2590       if (tcp_half_open_connection_cleanup (tc0))
2591         tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
2592
2593       if (tcp_opts_tstamp (&new_tc0->rcv_opts))
2594         {
2595           new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
2596           new_tc0->tsval_recent_age = tcp_time_now ();
2597         }
2598
2599       if (tcp_opts_wscale (&new_tc0->rcv_opts))
2600         new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
2601       else
2602         new_tc0->rcv_wscale = 0;
2603
2604       new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2605         << new_tc0->snd_wscale;
2606       new_tc0->snd_wl1 = seq0;
2607       new_tc0->snd_wl2 = ack0;
2608
2609       tcp_connection_init_vars (new_tc0);
2610
2611       /* SYN-ACK: See if we can switch to ESTABLISHED state */
2612       if (PREDICT_TRUE (tcp_ack (tcp0)))
2613         {
2614           /* Our SYN is ACKed: we have iss < ack = snd_una */
2615
2616           /* TODO Dequeue acknowledged segments if we support Fast Open */
2617           new_tc0->snd_una = ack0;
2618           new_tc0->state = TCP_STATE_ESTABLISHED;
2619
2620           /* Make sure las is initialized for the wnd computation */
2621           new_tc0->rcv_las = new_tc0->rcv_nxt;
2622
2623           /* Notify app that we have connection. If session layer can't
2624            * allocate session send reset */
2625           if (session_stream_connect_notify (&new_tc0->connection, 0))
2626             {
2627               tcp_send_reset_w_pkt (new_tc0, b0, my_thread_index, is_ip4);
2628               tcp_connection_cleanup (new_tc0);
2629               error0 = TCP_ERROR_CREATE_SESSION_FAIL;
2630               goto drop;
2631             }
2632
2633           new_tc0->tx_fifo_size =
2634             transport_tx_fifo_size (&new_tc0->connection);
2635           /* Update rtt with the syn-ack sample */
2636           tcp_estimate_initial_rtt (new_tc0);
2637           TCP_EVT (TCP_EVT_SYNACK_RCVD, new_tc0);
2638           error0 = TCP_ERROR_SYN_ACKS_RCVD;
2639         }
2640       /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2641       else
2642         {
2643           new_tc0->state = TCP_STATE_SYN_RCVD;
2644
2645           /* Notify app that we have connection */
2646           if (session_stream_connect_notify (&new_tc0->connection, 0))
2647             {
2648               tcp_connection_cleanup (new_tc0);
2649               tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
2650               TCP_EVT (TCP_EVT_RST_SENT, tc0);
2651               error0 = TCP_ERROR_CREATE_SESSION_FAIL;
2652               goto drop;
2653             }
2654
2655           new_tc0->tx_fifo_size =
2656             transport_tx_fifo_size (&new_tc0->connection);
2657           new_tc0->rtt_ts = 0;
2658           tcp_init_snd_vars (new_tc0);
2659           tcp_send_synack (new_tc0);
2660           error0 = TCP_ERROR_SYNS_RCVD;
2661           goto drop;
2662         }
2663
2664       if (!(new_tc0->cfg_flags & TCP_CFG_F_NO_TSO))
2665         tcp_check_tx_offload (new_tc0, is_ip4);
2666
2667       /* Read data, if any */
2668       if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
2669         {
2670           clib_warning ("rcvd data in syn-sent");
2671           error0 = tcp_segment_rcv (wrk, new_tc0, b0);
2672           if (error0 == TCP_ERROR_ACK_OK)
2673             error0 = TCP_ERROR_SYN_ACKS_RCVD;
2674         }
2675       else
2676         {
2677           /* Send ack now instead of programming it because connection was
2678            * just established and it's not optional. */
2679           tcp_send_ack (new_tc0);
2680         }
2681
2682     drop:
2683
2684       tcp_inc_counter (syn_sent, error0, 1);
2685       if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
2686         {
2687           t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2688           clib_memcpy_fast (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2689           clib_memcpy_fast (&t0->tcp_connection, tc0,
2690                             sizeof (t0->tcp_connection));
2691         }
2692     }
2693
2694   errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2695                                               my_thread_index);
2696   tcp_inc_counter (syn_sent, TCP_ERROR_MSG_QUEUE_FULL, errors);
2697   vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
2698
2699   return from_frame->n_vectors;
2700 }
2701
2702 VLIB_NODE_FN (tcp4_syn_sent_node) (vlib_main_t * vm,
2703                                    vlib_node_runtime_t * node,
2704                                    vlib_frame_t * from_frame)
2705 {
2706   return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2707 }
2708
2709 VLIB_NODE_FN (tcp6_syn_sent_node) (vlib_main_t * vm,
2710                                    vlib_node_runtime_t * node,
2711                                    vlib_frame_t * from_frame)
2712 {
2713   return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2714 }
2715
2716 /* *INDENT-OFF* */
2717 VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2718 {
2719   .name = "tcp4-syn-sent",
2720   /* Takes a vector of packets. */
2721   .vector_size = sizeof (u32),
2722   .n_errors = TCP_N_ERROR,
2723   .error_strings = tcp_error_strings,
2724   .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2725   .next_nodes =
2726   {
2727 #define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2728     foreach_tcp_state_next
2729 #undef _
2730   },
2731   .format_trace = format_tcp_rx_trace_short,
2732 };
2733 /* *INDENT-ON* */
2734
2735 /* *INDENT-OFF* */
2736 VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2737 {
2738   .name = "tcp6-syn-sent",
2739   /* Takes a vector of packets. */
2740   .vector_size = sizeof (u32),
2741   .n_errors = TCP_N_ERROR,
2742   .error_strings = tcp_error_strings,
2743   .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2744   .next_nodes =
2745   {
2746 #define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2747     foreach_tcp_state_next
2748 #undef _
2749   },
2750   .format_trace = format_tcp_rx_trace_short,
2751 };
2752 /* *INDENT-ON* */
2753
2754 /**
2755  * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
2756  * as per RFC793 p. 64
2757  */
2758 always_inline uword
2759 tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2760                           vlib_frame_t * from_frame, int is_ip4)
2761 {
2762   u32 thread_index = vm->thread_index, errors = 0, *first_buffer;
2763   tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
2764   u32 n_left_from, *from, max_dequeue;
2765
2766   from = first_buffer = vlib_frame_vector_args (from_frame);
2767   n_left_from = from_frame->n_vectors;
2768
2769   while (n_left_from > 0)
2770     {
2771       u32 bi0, error0 = TCP_ERROR_NONE;
2772       tcp_header_t *tcp0 = 0;
2773       tcp_connection_t *tc0;
2774       vlib_buffer_t *b0;
2775       u8 is_fin0;
2776
2777       bi0 = from[0];
2778       from += 1;
2779       n_left_from -= 1;
2780
2781       b0 = vlib_get_buffer (vm, bi0);
2782       tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2783                                 thread_index);
2784       if (PREDICT_FALSE (tc0 == 0))
2785         {
2786           error0 = TCP_ERROR_INVALID_CONNECTION;
2787           goto drop;
2788         }
2789
2790       tcp0 = tcp_buffer_hdr (b0);
2791       is_fin0 = tcp_is_fin (tcp0);
2792
2793       if (CLIB_DEBUG)
2794         {
2795           if (!(tc0->connection.flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
2796             {
2797               tcp_connection_t *tmp;
2798               tmp = tcp_lookup_connection (tc0->c_fib_index, b0, thread_index,
2799                                            is_ip4);
2800               if (tmp->state != tc0->state)
2801                 {
2802                   if (tc0->state != TCP_STATE_CLOSED)
2803                     clib_warning ("state changed");
2804                   goto drop;
2805                 }
2806             }
2807         }
2808
2809       /*
2810        * Special treatment for CLOSED
2811        */
2812       if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
2813         {
2814           error0 = TCP_ERROR_CONNECTION_CLOSED;
2815           goto drop;
2816         }
2817
2818       /*
2819        * For all other states (except LISTEN)
2820        */
2821
2822       /* 1-4: check SEQ, RST, SYN */
2823       if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, tcp0, &error0)))
2824         goto drop;
2825
2826       /* 5: check the ACK field  */
2827       switch (tc0->state)
2828         {
2829         case TCP_STATE_SYN_RCVD:
2830
2831           /* Make sure the segment is exactly right */
2832           if (tc0->rcv_nxt != vnet_buffer (b0)->tcp.seq_number || is_fin0)
2833             {
2834               tcp_connection_reset (tc0);
2835               error0 = TCP_ERROR_SEGMENT_INVALID;
2836               goto drop;
2837             }
2838
2839           /*
2840            * If the segment acknowledgment is not acceptable, form a
2841            * reset segment,
2842            *  <SEQ=SEG.ACK><CTL=RST>
2843            * and send it.
2844            */
2845           if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2846             {
2847               tcp_connection_reset (tc0);
2848               goto drop;
2849             }
2850
2851           /* Update rtt and rto */
2852           tcp_estimate_initial_rtt (tc0);
2853           tcp_connection_tx_pacer_update (tc0);
2854
2855           /* Switch state to ESTABLISHED */
2856           tc0->state = TCP_STATE_ESTABLISHED;
2857           TCP_EVT (TCP_EVT_STATE_CHANGE, tc0);
2858
2859           if (!(tc0->cfg_flags & TCP_CFG_F_NO_TSO))
2860             tcp_check_tx_offload (tc0, is_ip4);
2861
2862           /* Initialize session variables */
2863           tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
2864           tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2865             << tc0->rcv_opts.wscale;
2866           tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2867           tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
2868
2869           /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
2870           tcp_retransmit_timer_reset (tc0);
2871           if (session_stream_accept_notify (&tc0->connection))
2872             {
2873               error0 = TCP_ERROR_MSG_QUEUE_FULL;
2874               tcp_connection_reset (tc0);
2875               goto drop;
2876             }
2877           error0 = TCP_ERROR_ACK_OK;
2878           break;
2879         case TCP_STATE_ESTABLISHED:
2880           /* We can get packets in established state here because they
2881            * were enqueued before state change */
2882           if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2883             goto drop;
2884
2885           break;
2886         case TCP_STATE_FIN_WAIT_1:
2887           /* In addition to the processing for the ESTABLISHED state, if
2888            * our FIN is now acknowledged then enter FIN-WAIT-2 and
2889            * continue processing in that state. */
2890           if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2891             goto drop;
2892
2893           /* Still have to send the FIN */
2894           if (tc0->flags & TCP_CONN_FINPNDG)
2895             {
2896               /* TX fifo finally drained */
2897               max_dequeue = transport_max_tx_dequeue (&tc0->connection);
2898               if (max_dequeue <= tc0->burst_acked)
2899                 tcp_send_fin (tc0);
2900               /* If a fin was received and data was acked extend wait */
2901               else if ((tc0->flags & TCP_CONN_FINRCVD) && tc0->bytes_acked)
2902                 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
2903                                   tcp_cfg.closewait_time);
2904             }
2905           /* If FIN is ACKed */
2906           else if (tc0->snd_una == tc0->snd_nxt)
2907             {
2908               /* Stop all retransmit timers because we have nothing more
2909                * to send. */
2910               tcp_connection_timers_reset (tc0);
2911
2912               /* We already have a FIN but didn't transition to CLOSING
2913                * because of outstanding tx data. Close the connection. */
2914               if (tc0->flags & TCP_CONN_FINRCVD)
2915                 {
2916                   tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
2917                   tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE,
2918                                  tcp_cfg.cleanup_time);
2919                   session_transport_closed_notify (&tc0->connection);
2920                   goto drop;
2921                 }
2922
2923               tcp_connection_set_state (tc0, TCP_STATE_FIN_WAIT_2);
2924               /* Enable waitclose because we're willing to wait for peer's
2925                * FIN but not indefinitely. */
2926               tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.finwait2_time);
2927
2928               /* Don't try to deq the FIN acked */
2929               if (tc0->burst_acked > 1)
2930                 session_tx_fifo_dequeue_drop (&tc0->connection,
2931                                               tc0->burst_acked - 1);
2932               tc0->burst_acked = 0;
2933             }
2934           break;
2935         case TCP_STATE_FIN_WAIT_2:
2936           /* In addition to the processing for the ESTABLISHED state, if
2937            * the retransmission queue is empty, the user's CLOSE can be
2938            * acknowledged ("ok") but do not delete the TCB. */
2939           if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2940             goto drop;
2941           tc0->burst_acked = 0;
2942           break;
2943         case TCP_STATE_CLOSE_WAIT:
2944           /* Do the same processing as for the ESTABLISHED state. */
2945           if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2946             goto drop;
2947
2948           if (!(tc0->flags & TCP_CONN_FINPNDG))
2949             break;
2950
2951           /* Still have outstanding tx data */
2952           max_dequeue = transport_max_tx_dequeue (&tc0->connection);
2953           if (max_dequeue > tc0->burst_acked)
2954             break;
2955
2956           tcp_send_fin (tc0);
2957           tcp_connection_timers_reset (tc0);
2958           tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
2959           tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.lastack_time);
2960           break;
2961         case TCP_STATE_CLOSING:
2962           /* In addition to the processing for the ESTABLISHED state, if
2963            * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2964            * otherwise ignore the segment. */
2965           if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2966             goto drop;
2967
2968           if (tc0->snd_una != tc0->snd_nxt)
2969             goto drop;
2970
2971           tcp_connection_timers_reset (tc0);
2972           tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
2973           tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
2974           session_transport_closed_notify (&tc0->connection);
2975           goto drop;
2976
2977           break;
2978         case TCP_STATE_LAST_ACK:
2979           /* The only thing that [should] arrive in this state is an
2980            * acknowledgment of our FIN. If our FIN is now acknowledged,
2981            * delete the TCB, enter the CLOSED state, and return. */
2982
2983           if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2984             goto drop;
2985
2986           /* Apparently our ACK for the peer's FIN was lost */
2987           if (is_fin0 && tc0->snd_una != tc0->snd_nxt)
2988             {
2989               tcp_send_fin (tc0);
2990               goto drop;
2991             }
2992
2993           tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
2994           session_transport_closed_notify (&tc0->connection);
2995
2996           /* Don't free the connection from the data path since
2997            * we can't ensure that we have no packets already enqueued
2998            * to output. Rely instead on the waitclose timer */
2999           tcp_connection_timers_reset (tc0);
3000           tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.cleanup_time);
3001
3002           goto drop;
3003
3004           break;
3005         case TCP_STATE_TIME_WAIT:
3006           /* The only thing that can arrive in this state is a
3007            * retransmission of the remote FIN. Acknowledge it, and restart
3008            * the 2 MSL timeout. */
3009
3010           if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
3011             goto drop;
3012
3013           if (!is_fin0)
3014             goto drop;
3015
3016           tcp_program_ack (tc0);
3017           tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
3018           goto drop;
3019
3020           break;
3021         default:
3022           ASSERT (0);
3023         }
3024
3025       /* 6: check the URG bit TODO */
3026
3027       /* 7: process the segment text */
3028       switch (tc0->state)
3029         {
3030         case TCP_STATE_ESTABLISHED:
3031         case TCP_STATE_FIN_WAIT_1:
3032         case TCP_STATE_FIN_WAIT_2:
3033           if (vnet_buffer (b0)->tcp.data_len)
3034             error0 = tcp_segment_rcv (wrk, tc0, b0);
3035           break;
3036         case TCP_STATE_CLOSE_WAIT:
3037         case TCP_STATE_CLOSING:
3038         case TCP_STATE_LAST_ACK:
3039         case TCP_STATE_TIME_WAIT:
3040           /* This should not occur, since a FIN has been received from the
3041            * remote side.  Ignore the segment text. */
3042           break;
3043         }
3044
3045       /* 8: check the FIN bit */
3046       if (!is_fin0)
3047         goto drop;
3048
3049       TCP_EVT (TCP_EVT_FIN_RCVD, tc0);
3050
3051       switch (tc0->state)
3052         {
3053         case TCP_STATE_ESTABLISHED:
3054           /* Account for the FIN and send ack */
3055           tc0->rcv_nxt += 1;
3056           tcp_program_ack (tc0);
3057           tcp_connection_set_state (tc0, TCP_STATE_CLOSE_WAIT);
3058           tcp_program_disconnect (wrk, tc0);
3059           tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.closewait_time);
3060           break;
3061         case TCP_STATE_SYN_RCVD:
3062           /* Send FIN-ACK, enter LAST-ACK and because the app was not
3063            * notified yet, set a cleanup timer instead of relying on
3064            * disconnect notify and the implicit close call. */
3065           tcp_connection_timers_reset (tc0);
3066           tc0->rcv_nxt += 1;
3067           tcp_send_fin (tc0);
3068           tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
3069           tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.lastack_time);
3070           break;
3071         case TCP_STATE_CLOSE_WAIT:
3072         case TCP_STATE_CLOSING:
3073         case TCP_STATE_LAST_ACK:
3074           /* move along .. */
3075           break;
3076         case TCP_STATE_FIN_WAIT_1:
3077           tc0->rcv_nxt += 1;
3078
3079           if (tc0->flags & TCP_CONN_FINPNDG)
3080             {
3081               /* If data is outstanding, stay in FIN_WAIT_1 and try to finish
3082                * sending it. Since we already received a fin, do not wait
3083                * for too long. */
3084               tc0->flags |= TCP_CONN_FINRCVD;
3085               tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
3086                                 tcp_cfg.closewait_time);
3087             }
3088           else
3089             {
3090               tcp_connection_set_state (tc0, TCP_STATE_CLOSING);
3091               tcp_program_ack (tc0);
3092               /* Wait for ACK for our FIN but not forever */
3093               tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
3094                                 tcp_cfg.closing_time);
3095             }
3096           break;
3097         case TCP_STATE_FIN_WAIT_2:
3098           /* Got FIN, send ACK! Be more aggressive with resource cleanup */
3099           tc0->rcv_nxt += 1;
3100           tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
3101           tcp_connection_timers_reset (tc0);
3102           tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
3103           tcp_program_ack (tc0);
3104           session_transport_closed_notify (&tc0->connection);
3105           break;
3106         case TCP_STATE_TIME_WAIT:
3107           /* Remain in the TIME-WAIT state. Restart the time-wait
3108            * timeout.
3109            */
3110           tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
3111           break;
3112         }
3113       error0 = TCP_ERROR_FIN_RCVD;
3114
3115     drop:
3116
3117       tcp_inc_counter (rcv_process, error0, 1);
3118       if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3119         {
3120           tcp_rx_trace_t *t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
3121           tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
3122         }
3123     }
3124
3125   errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
3126                                               thread_index);
3127   tcp_inc_counter (rcv_process, TCP_ERROR_MSG_QUEUE_FULL, errors);
3128   tcp_handle_postponed_dequeues (wrk);
3129   tcp_handle_disconnects (wrk);
3130   vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3131
3132   return from_frame->n_vectors;
3133 }
3134
3135 VLIB_NODE_FN (tcp4_rcv_process_node) (vlib_main_t * vm,
3136                                       vlib_node_runtime_t * node,
3137                                       vlib_frame_t * from_frame)
3138 {
3139   return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3140 }
3141
3142 VLIB_NODE_FN (tcp6_rcv_process_node) (vlib_main_t * vm,
3143                                       vlib_node_runtime_t * node,
3144                                       vlib_frame_t * from_frame)
3145 {
3146   return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3147 }
3148
3149 /* *INDENT-OFF* */
3150 VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
3151 {
3152   .name = "tcp4-rcv-process",
3153   /* Takes a vector of packets. */
3154   .vector_size = sizeof (u32),
3155   .n_errors = TCP_N_ERROR,
3156   .error_strings = tcp_error_strings,
3157   .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3158   .next_nodes =
3159   {
3160 #define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3161     foreach_tcp_state_next
3162 #undef _
3163   },
3164   .format_trace = format_tcp_rx_trace_short,
3165 };
3166 /* *INDENT-ON* */
3167
3168 /* *INDENT-OFF* */
3169 VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
3170 {
3171   .name = "tcp6-rcv-process",
3172   /* Takes a vector of packets. */
3173   .vector_size = sizeof (u32),
3174   .n_errors = TCP_N_ERROR,
3175   .error_strings = tcp_error_strings,
3176   .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3177   .next_nodes =
3178   {
3179 #define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3180     foreach_tcp_state_next
3181 #undef _
3182   },
3183   .format_trace = format_tcp_rx_trace_short,
3184 };
3185 /* *INDENT-ON* */
3186
3187 /**
3188  * LISTEN state processing as per RFC 793 p. 65
3189  */
3190 always_inline uword
3191 tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3192                      vlib_frame_t * from_frame, int is_ip4)
3193 {
3194   u32 n_left_from, *from, n_syns = 0, *first_buffer;
3195   u32 my_thread_index = vm->thread_index;
3196   tcp_connection_t *tc0;
3197
3198   from = first_buffer = vlib_frame_vector_args (from_frame);
3199   n_left_from = from_frame->n_vectors;
3200
3201   while (n_left_from > 0)
3202     {
3203       u32 bi0;
3204       vlib_buffer_t *b0;
3205       tcp_rx_trace_t *t0;
3206       tcp_header_t *th0 = 0;
3207       tcp_connection_t *lc0;
3208       ip4_header_t *ip40;
3209       ip6_header_t *ip60;
3210       tcp_connection_t *child0;
3211       u32 error0 = TCP_ERROR_NONE;
3212
3213       bi0 = from[0];
3214       from += 1;
3215       n_left_from -= 1;
3216
3217       b0 = vlib_get_buffer (vm, bi0);
3218       lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index);
3219       if (PREDICT_FALSE (lc0 == 0))
3220         {
3221           tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
3222                                     my_thread_index);
3223           if (tc0->state != TCP_STATE_TIME_WAIT)
3224             {
3225               error0 = TCP_ERROR_CREATE_EXISTS;
3226               goto drop;
3227             }
3228           lc0 = tcp_lookup_listener (b0, tc0->c_fib_index, is_ip4);
3229           /* clean up the old session */
3230           tcp_connection_del (tc0);
3231         }
3232
3233       if (is_ip4)
3234         {
3235           ip40 = vlib_buffer_get_current (b0);
3236           th0 = tcp_buffer_hdr (b0);
3237         }
3238       else
3239         {
3240           ip60 = vlib_buffer_get_current (b0);
3241           th0 = tcp_buffer_hdr (b0);
3242         }
3243
3244       /* Create child session. For syn-flood protection use filter */
3245
3246       /* 1. first check for an RST: handled in dispatch */
3247       /* if (tcp_rst (th0))
3248          goto drop;
3249        */
3250
3251       /* 2. second check for an ACK: handled in dispatch */
3252       /* if (tcp_ack (th0))
3253          {
3254          tcp_send_reset (b0, is_ip4);
3255          goto drop;
3256          }
3257        */
3258
3259       /* 3. check for a SYN (did that already) */
3260
3261       /* Make sure connection wasn't just created */
3262       child0 = tcp_lookup_connection (lc0->c_fib_index, b0, my_thread_index,
3263                                       is_ip4);
3264       if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN))
3265         {
3266           error0 = TCP_ERROR_CREATE_EXISTS;
3267           goto drop;
3268         }
3269
3270       /* Create child session and send SYN-ACK */
3271       child0 = tcp_connection_alloc (my_thread_index);
3272       child0->c_lcl_port = th0->dst_port;
3273       child0->c_rmt_port = th0->src_port;
3274       child0->c_is_ip4 = is_ip4;
3275       child0->state = TCP_STATE_SYN_RCVD;
3276       child0->c_fib_index = lc0->c_fib_index;
3277       child0->cc_algo = lc0->cc_algo;
3278
3279       if (is_ip4)
3280         {
3281           child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32;
3282           child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32;
3283         }
3284       else
3285         {
3286           clib_memcpy_fast (&child0->c_lcl_ip6, &ip60->dst_address,
3287                             sizeof (ip6_address_t));
3288           clib_memcpy_fast (&child0->c_rmt_ip6, &ip60->src_address,
3289                             sizeof (ip6_address_t));
3290         }
3291
3292       if (tcp_options_parse (th0, &child0->rcv_opts, 1))
3293         {
3294           error0 = TCP_ERROR_OPTIONS;
3295           tcp_connection_free (child0);
3296           goto drop;
3297         }
3298
3299       child0->irs = vnet_buffer (b0)->tcp.seq_number;
3300       child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1;
3301       child0->rcv_las = child0->rcv_nxt;
3302       child0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
3303
3304       /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
3305        * segments are used to initialize PAWS. */
3306       if (tcp_opts_tstamp (&child0->rcv_opts))
3307         {
3308           child0->tsval_recent = child0->rcv_opts.tsval;
3309           child0->tsval_recent_age = tcp_time_now ();
3310         }
3311
3312       if (tcp_opts_wscale (&child0->rcv_opts))
3313         child0->snd_wscale = child0->rcv_opts.wscale;
3314
3315       child0->snd_wnd = clib_net_to_host_u16 (th0->window)
3316         << child0->snd_wscale;
3317       child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
3318       child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
3319
3320       tcp_connection_init_vars (child0);
3321       child0->rto = TCP_RTO_MIN;
3322
3323       if (session_stream_accept (&child0->connection, lc0->c_s_index,
3324                                  lc0->c_thread_index, 0 /* notify */ ))
3325         {
3326           tcp_connection_cleanup (child0);
3327           error0 = TCP_ERROR_CREATE_SESSION_FAIL;
3328           goto drop;
3329         }
3330
3331       TCP_EVT (TCP_EVT_SYN_RCVD, child0, 1);
3332       child0->tx_fifo_size = transport_tx_fifo_size (&child0->connection);
3333       tcp_send_synack (child0);
3334
3335     drop:
3336
3337       if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3338         {
3339           t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
3340           clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
3341           clib_memcpy_fast (&t0->tcp_connection, lc0,
3342                             sizeof (t0->tcp_connection));
3343         }
3344
3345       n_syns += (error0 == TCP_ERROR_NONE);
3346     }
3347
3348   tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
3349   vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3350
3351   return from_frame->n_vectors;
3352 }
3353
3354 VLIB_NODE_FN (tcp4_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3355                                  vlib_frame_t * from_frame)
3356 {
3357   return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3358 }
3359
3360 VLIB_NODE_FN (tcp6_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3361                                  vlib_frame_t * from_frame)
3362 {
3363   return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3364 }
3365
3366 /* *INDENT-OFF* */
3367 VLIB_REGISTER_NODE (tcp4_listen_node) =
3368 {
3369   .name = "tcp4-listen",
3370   /* Takes a vector of packets. */
3371   .vector_size = sizeof (u32),
3372   .n_errors = TCP_N_ERROR,
3373   .error_strings = tcp_error_strings,
3374   .n_next_nodes = TCP_LISTEN_N_NEXT,
3375   .next_nodes =
3376   {
3377 #define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3378     foreach_tcp_state_next
3379 #undef _
3380   },
3381   .format_trace = format_tcp_rx_trace_short,
3382 };
3383 /* *INDENT-ON* */
3384
3385 /* *INDENT-OFF* */
3386 VLIB_REGISTER_NODE (tcp6_listen_node) =
3387 {
3388   .name = "tcp6-listen",
3389   /* Takes a vector of packets. */
3390   .vector_size = sizeof (u32),
3391   .n_errors = TCP_N_ERROR,
3392   .error_strings = tcp_error_strings,
3393   .n_next_nodes = TCP_LISTEN_N_NEXT,
3394   .next_nodes =
3395   {
3396 #define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3397     foreach_tcp_state_next
3398 #undef _
3399   },
3400   .format_trace = format_tcp_rx_trace_short,
3401 };
3402 /* *INDENT-ON* */
3403
3404 typedef enum _tcp_input_next
3405 {
3406   TCP_INPUT_NEXT_DROP,
3407   TCP_INPUT_NEXT_LISTEN,
3408   TCP_INPUT_NEXT_RCV_PROCESS,
3409   TCP_INPUT_NEXT_SYN_SENT,
3410   TCP_INPUT_NEXT_ESTABLISHED,
3411   TCP_INPUT_NEXT_RESET,
3412   TCP_INPUT_NEXT_PUNT,
3413   TCP_INPUT_N_NEXT
3414 } tcp_input_next_t;
3415
3416 #define foreach_tcp4_input_next                 \
3417   _ (DROP, "ip4-drop")                          \
3418   _ (LISTEN, "tcp4-listen")                     \
3419   _ (RCV_PROCESS, "tcp4-rcv-process")           \
3420   _ (SYN_SENT, "tcp4-syn-sent")                 \
3421   _ (ESTABLISHED, "tcp4-established")           \
3422   _ (RESET, "tcp4-reset")                       \
3423   _ (PUNT, "ip4-punt")
3424
3425 #define foreach_tcp6_input_next                 \
3426   _ (DROP, "ip6-drop")                          \
3427   _ (LISTEN, "tcp6-listen")                     \
3428   _ (RCV_PROCESS, "tcp6-rcv-process")           \
3429   _ (SYN_SENT, "tcp6-syn-sent")                 \
3430   _ (ESTABLISHED, "tcp6-established")           \
3431   _ (RESET, "tcp6-reset")                       \
3432   _ (PUNT, "ip6-punt")
3433
3434 #define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
3435
3436 static void
3437 tcp_input_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
3438                        vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4)
3439 {
3440   tcp_connection_t *tc;
3441   tcp_header_t *tcp;
3442   tcp_rx_trace_t *t;
3443   int i;
3444
3445   for (i = 0; i < n_bufs; i++)
3446     {
3447       if (bs[i]->flags & VLIB_BUFFER_IS_TRACED)
3448         {
3449           t = vlib_add_trace (vm, node, bs[i], sizeof (*t));
3450           tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index,
3451                                    vm->thread_index);
3452           tcp = vlib_buffer_get_current (bs[i]);
3453           tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4);
3454         }
3455     }
3456 }
3457
3458 static void
3459 tcp_input_set_error_next (tcp_main_t * tm, u16 * next, u32 * error, u8 is_ip4)
3460 {
3461   if (*error == TCP_ERROR_FILTERED || *error == TCP_ERROR_WRONG_THREAD)
3462     {
3463       *next = TCP_INPUT_NEXT_DROP;
3464     }
3465   else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6))
3466     {
3467       *next = TCP_INPUT_NEXT_PUNT;
3468       *error = TCP_ERROR_PUNT;
3469     }
3470   else
3471     {
3472       *next = TCP_INPUT_NEXT_RESET;
3473       *error = TCP_ERROR_NO_LISTENER;
3474     }
3475 }
3476
3477 always_inline tcp_connection_t *
3478 tcp_input_lookup_buffer (vlib_buffer_t * b, u8 thread_index, u32 * error,
3479                          u8 is_ip4, u8 is_nolookup)
3480 {
3481   u32 fib_index = vnet_buffer (b)->ip.fib_index;
3482   int n_advance_bytes, n_data_bytes;
3483   transport_connection_t *tc;
3484   tcp_header_t *tcp;
3485   u8 result = 0;
3486
3487   if (is_ip4)
3488     {
3489       ip4_header_t *ip4 = vlib_buffer_get_current (b);
3490       int ip_hdr_bytes = ip4_header_bytes (ip4);
3491       if (PREDICT_FALSE (b->current_length < ip_hdr_bytes + sizeof (*tcp)))
3492         {
3493           *error = TCP_ERROR_LENGTH;
3494           return 0;
3495         }
3496       tcp = ip4_next_header (ip4);
3497       vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip4;
3498       n_advance_bytes = (ip_hdr_bytes + tcp_header_bytes (tcp));
3499       n_data_bytes = clib_net_to_host_u16 (ip4->length) - n_advance_bytes;
3500
3501       /* Length check. Checksum computed by ipx_local no need to compute again */
3502       if (PREDICT_FALSE (n_data_bytes < 0))
3503         {
3504           *error = TCP_ERROR_LENGTH;
3505           return 0;
3506         }
3507
3508       if (!is_nolookup)
3509         tc = session_lookup_connection_wt4 (fib_index, &ip4->dst_address,
3510                                             &ip4->src_address, tcp->dst_port,
3511                                             tcp->src_port,
3512                                             TRANSPORT_PROTO_TCP, thread_index,
3513                                             &result);
3514     }
3515   else
3516     {
3517       ip6_header_t *ip6 = vlib_buffer_get_current (b);
3518       if (PREDICT_FALSE (b->current_length < sizeof (*ip6) + sizeof (*tcp)))
3519         {
3520           *error = TCP_ERROR_LENGTH;
3521           return 0;
3522         }
3523       tcp = ip6_next_header (ip6);
3524       vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip6;
3525       n_advance_bytes = tcp_header_bytes (tcp);
3526       n_data_bytes = clib_net_to_host_u16 (ip6->payload_length)
3527         - n_advance_bytes;
3528       n_advance_bytes += sizeof (ip6[0]);
3529
3530       if (PREDICT_FALSE (n_data_bytes < 0))
3531         {
3532           *error = TCP_ERROR_LENGTH;
3533           return 0;
3534         }
3535
3536       if (!is_nolookup)
3537         {
3538           if (PREDICT_FALSE
3539               (ip6_address_is_link_local_unicast (&ip6->dst_address)))
3540             {
3541               ip4_main_t *im = &ip4_main;
3542               fib_index = vec_elt (im->fib_index_by_sw_if_index,
3543                                    vnet_buffer (b)->sw_if_index[VLIB_RX]);
3544             }
3545
3546           tc = session_lookup_connection_wt6 (fib_index, &ip6->dst_address,
3547                                               &ip6->src_address,
3548                                               tcp->dst_port, tcp->src_port,
3549                                               TRANSPORT_PROTO_TCP,
3550                                               thread_index, &result);
3551         }
3552     }
3553
3554   if (is_nolookup)
3555     tc =
3556       (transport_connection_t *) tcp_connection_get (vnet_buffer (b)->
3557                                                      tcp.connection_index,
3558                                                      thread_index);
3559
3560   vnet_buffer (b)->tcp.seq_number = clib_net_to_host_u32 (tcp->seq_number);
3561   vnet_buffer (b)->tcp.ack_number = clib_net_to_host_u32 (tcp->ack_number);
3562   vnet_buffer (b)->tcp.data_offset = n_advance_bytes;
3563   vnet_buffer (b)->tcp.data_len = n_data_bytes;
3564   vnet_buffer (b)->tcp.seq_end = vnet_buffer (b)->tcp.seq_number
3565     + n_data_bytes;
3566   vnet_buffer (b)->tcp.flags = 0;
3567
3568   *error = result ? TCP_ERROR_NONE + result : *error;
3569
3570   return tcp_get_connection_from_transport (tc);
3571 }
3572
3573 static inline void
3574 tcp_input_dispatch_buffer (tcp_main_t * tm, tcp_connection_t * tc,
3575                            vlib_buffer_t * b, u16 * next, u32 * error)
3576 {
3577   tcp_header_t *tcp;
3578   u8 flags;
3579
3580   tcp = tcp_buffer_hdr (b);
3581   flags = tcp->flags & filter_flags;
3582   *next = tm->dispatch_table[tc->state][flags].next;
3583   *error = tm->dispatch_table[tc->state][flags].error;
3584   tc->segs_in += 1;
3585
3586   if (PREDICT_FALSE (*error == TCP_ERROR_DISPATCH
3587                      || *next == TCP_INPUT_NEXT_RESET))
3588     {
3589       /* Overload tcp flags to store state */
3590       tcp_state_t state = tc->state;
3591       vnet_buffer (b)->tcp.flags = tc->state;
3592
3593       if (*error == TCP_ERROR_DISPATCH)
3594         clib_warning ("tcp conn %u disp error state %U flags %U",
3595                       tc->c_c_index, format_tcp_state, state,
3596                       format_tcp_flags, (int) flags);
3597     }
3598 }
3599
3600 always_inline uword
3601 tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3602                     vlib_frame_t * frame, int is_ip4, u8 is_nolookup)
3603 {
3604   u32 n_left_from, *from, thread_index = vm->thread_index;
3605   tcp_main_t *tm = vnet_get_tcp_main ();
3606   vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
3607   u16 nexts[VLIB_FRAME_SIZE], *next;
3608
3609   tcp_set_time_now (tcp_get_worker (thread_index));
3610
3611   from = vlib_frame_vector_args (frame);
3612   n_left_from = frame->n_vectors;
3613   vlib_get_buffers (vm, from, bufs, n_left_from);
3614
3615   b = bufs;
3616   next = nexts;
3617
3618   while (n_left_from >= 4)
3619     {
3620       u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER;
3621       tcp_connection_t *tc0, *tc1;
3622
3623       {
3624         vlib_prefetch_buffer_header (b[2], STORE);
3625         CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3626
3627         vlib_prefetch_buffer_header (b[3], STORE);
3628         CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3629       }
3630
3631       next[0] = next[1] = TCP_INPUT_NEXT_DROP;
3632
3633       tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
3634                                      is_nolookup);
3635       tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4,
3636                                      is_nolookup);
3637
3638       if (PREDICT_TRUE (!tc0 + !tc1 == 0))
3639         {
3640           ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
3641           ASSERT (tcp_lookup_is_valid (tc1, b[1], tcp_buffer_hdr (b[1])));
3642
3643           vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3644           vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3645
3646           tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3647           tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3648         }
3649       else
3650         {
3651           if (PREDICT_TRUE (tc0 != 0))
3652             {
3653               ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
3654               vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3655               tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3656             }
3657           else
3658             tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3659
3660           if (PREDICT_TRUE (tc1 != 0))
3661             {
3662               ASSERT (tcp_lookup_is_valid (tc1, b[1], tcp_buffer_hdr (b[1])));
3663               vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3664               tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3665             }
3666           else
3667             tcp_input_set_error_next (tm, &next[1], &error1, is_ip4);
3668         }
3669
3670       b += 2;
3671       next += 2;
3672       n_left_from -= 2;
3673     }
3674   while (n_left_from > 0)
3675     {
3676       tcp_connection_t *tc0;
3677       u32 error0 = TCP_ERROR_NO_LISTENER;
3678
3679       if (n_left_from > 1)
3680         {
3681           vlib_prefetch_buffer_header (b[1], STORE);
3682           CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3683         }
3684
3685       next[0] = TCP_INPUT_NEXT_DROP;
3686       tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
3687                                      is_nolookup);
3688       if (PREDICT_TRUE (tc0 != 0))
3689         {
3690           ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
3691           vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3692           tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3693         }
3694       else
3695         tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3696
3697       b += 1;
3698       next += 1;
3699       n_left_from -= 1;
3700     }
3701
3702   if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
3703     tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4);
3704
3705   vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
3706   return frame->n_vectors;
3707 }
3708
3709 VLIB_NODE_FN (tcp4_input_nolookup_node) (vlib_main_t * vm,
3710                                          vlib_node_runtime_t * node,
3711                                          vlib_frame_t * from_frame)
3712 {
3713   return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
3714                              1 /* is_nolookup */ );
3715 }
3716
3717 VLIB_NODE_FN (tcp6_input_nolookup_node) (vlib_main_t * vm,
3718                                          vlib_node_runtime_t * node,
3719                                          vlib_frame_t * from_frame)
3720 {
3721   return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3722                              1 /* is_nolookup */ );
3723 }
3724
3725 /* *INDENT-OFF* */
3726 VLIB_REGISTER_NODE (tcp4_input_nolookup_node) =
3727 {
3728   .name = "tcp4-input-nolookup",
3729   /* Takes a vector of packets. */
3730   .vector_size = sizeof (u32),
3731   .n_errors = TCP_N_ERROR,
3732   .error_strings = tcp_error_strings,
3733   .n_next_nodes = TCP_INPUT_N_NEXT,
3734   .next_nodes =
3735   {
3736 #define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3737     foreach_tcp4_input_next
3738 #undef _
3739   },
3740   .format_buffer = format_tcp_header,
3741   .format_trace = format_tcp_rx_trace,
3742 };
3743 /* *INDENT-ON* */
3744
3745 /* *INDENT-OFF* */
3746 VLIB_REGISTER_NODE (tcp6_input_nolookup_node) =
3747 {
3748   .name = "tcp6-input-nolookup",
3749   /* Takes a vector of packets. */
3750   .vector_size = sizeof (u32),
3751   .n_errors = TCP_N_ERROR,
3752   .error_strings = tcp_error_strings,
3753   .n_next_nodes = TCP_INPUT_N_NEXT,
3754   .next_nodes =
3755   {
3756 #define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3757     foreach_tcp6_input_next
3758 #undef _
3759   },
3760   .format_buffer = format_tcp_header,
3761   .format_trace = format_tcp_rx_trace,
3762 };
3763 /* *INDENT-ON* */
3764
3765 VLIB_NODE_FN (tcp4_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3766                                 vlib_frame_t * from_frame)
3767 {
3768   return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
3769                              0 /* is_nolookup */ );
3770 }
3771
3772 VLIB_NODE_FN (tcp6_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3773                                 vlib_frame_t * from_frame)
3774 {
3775   return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3776                              0 /* is_nolookup */ );
3777 }
3778
3779 /* *INDENT-OFF* */
3780 VLIB_REGISTER_NODE (tcp4_input_node) =
3781 {
3782   .name = "tcp4-input",
3783   /* Takes a vector of packets. */
3784   .vector_size = sizeof (u32),
3785   .n_errors = TCP_N_ERROR,
3786   .error_strings = tcp_error_strings,
3787   .n_next_nodes = TCP_INPUT_N_NEXT,
3788   .next_nodes =
3789   {
3790 #define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3791     foreach_tcp4_input_next
3792 #undef _
3793   },
3794   .format_buffer = format_tcp_header,
3795   .format_trace = format_tcp_rx_trace,
3796 };
3797 /* *INDENT-ON* */
3798
3799 /* *INDENT-OFF* */
3800 VLIB_REGISTER_NODE (tcp6_input_node) =
3801 {
3802   .name = "tcp6-input",
3803   /* Takes a vector of packets. */
3804   .vector_size = sizeof (u32),
3805   .n_errors = TCP_N_ERROR,
3806   .error_strings = tcp_error_strings,
3807   .n_next_nodes = TCP_INPUT_N_NEXT,
3808   .next_nodes =
3809   {
3810 #define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3811     foreach_tcp6_input_next
3812 #undef _
3813   },
3814   .format_buffer = format_tcp_header,
3815   .format_trace = format_tcp_rx_trace,
3816 };
3817 /* *INDENT-ON* */
3818
3819 #ifndef CLIB_MARCH_VARIANT
3820 static void
3821 tcp_dispatch_table_init (tcp_main_t * tm)
3822 {
3823   int i, j;
3824   for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3825     for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3826       {
3827         tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3828         tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3829       }
3830
3831 #define _(t,f,n,e)                                              \
3832 do {                                                            \
3833     tm->dispatch_table[TCP_STATE_##t][f].next = (n);            \
3834     tm->dispatch_table[TCP_STATE_##t][f].error = (e);           \
3835 } while (0)
3836
3837   /* RFC 793: In LISTEN if RST drop and if ACK return RST */
3838   _(LISTEN, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3839   _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_ACK_INVALID);
3840   _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_INVALID_CONNECTION);
3841   _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
3842   _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3843     TCP_ERROR_ACK_INVALID);
3844   _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3845     TCP_ERROR_SEGMENT_INVALID);
3846   _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3847     TCP_ERROR_SEGMENT_INVALID);
3848   _(LISTEN, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3849     TCP_ERROR_INVALID_CONNECTION);
3850   _(LISTEN, TCP_FLAG_FIN, TCP_INPUT_NEXT_RESET, TCP_ERROR_SEGMENT_INVALID);
3851   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3852     TCP_ERROR_SEGMENT_INVALID);
3853   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3854     TCP_ERROR_SEGMENT_INVALID);
3855   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3856     TCP_ERROR_NONE);
3857   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_DROP,
3858     TCP_ERROR_SEGMENT_INVALID);
3859   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3860     TCP_ERROR_SEGMENT_INVALID);
3861   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3862     TCP_ERROR_SEGMENT_INVALID);
3863   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3864     TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3865   /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3866   _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3867   _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3868   _(SYN_RCVD, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3869     TCP_ERROR_NONE);
3870   _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3871   _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3872     TCP_ERROR_NONE);
3873   _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3874     TCP_ERROR_NONE);
3875   _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3876     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3877   _(SYN_RCVD, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3878   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3879     TCP_ERROR_NONE);
3880   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3881     TCP_ERROR_NONE);
3882   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3883     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3884   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3885     TCP_ERROR_NONE);
3886   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3887     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3888   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3889     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3890   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3891     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3892   _(SYN_RCVD, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3893   /* SYN-ACK for a SYN */
3894   _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3895     TCP_ERROR_NONE);
3896   _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3897   _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3898   _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3899     TCP_ERROR_NONE);
3900   _(SYN_SENT, TCP_FLAG_FIN, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3901   _(SYN_SENT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3902     TCP_ERROR_NONE);
3903   /* ACK for for established connection -> tcp-established. */
3904   _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3905   /* FIN for for established connection -> tcp-established. */
3906   _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3907   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3908     TCP_ERROR_NONE);
3909   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3910     TCP_ERROR_NONE);
3911   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3912     TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3913   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED,
3914     TCP_ERROR_NONE);
3915   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3916     TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3917   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3918     TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3919   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3920     TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3921   _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3922   _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3923     TCP_ERROR_NONE);
3924   _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3925   _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3926     TCP_ERROR_NONE);
3927   _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3928     TCP_ERROR_NONE);
3929   _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3930     TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3931   _(ESTABLISHED, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3932   /* ACK or FIN-ACK to our FIN */
3933   _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3934   _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
3935     TCP_ERROR_NONE);
3936   /* FIN in reply to our FIN from the other side */
3937   _(FIN_WAIT_1, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3938   _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3939   _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3940     TCP_ERROR_NONE);
3941   _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3942     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3943   _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3944     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3945   _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3946     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3947   _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3948     TCP_ERROR_NONE);
3949   _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3950     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3951   _(FIN_WAIT_1, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3952   _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3953     TCP_ERROR_NONE);
3954   _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3955     TCP_ERROR_NONE);
3956   _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3957     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3958   _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3959   _(FIN_WAIT_1, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3960     TCP_ERROR_NONE);
3961   _(CLOSING, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3962   _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3963   _(CLOSING, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3964   _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3965     TCP_ERROR_NONE);
3966   _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3967     TCP_ERROR_NONE);
3968   _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3969     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3970   _(CLOSING, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3971   _(CLOSING, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3972     TCP_ERROR_NONE);
3973   _(CLOSING, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3974   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3975     TCP_ERROR_NONE);
3976   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3977     TCP_ERROR_NONE);
3978   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3979     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3980   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3981     TCP_ERROR_NONE);
3982   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3983     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3984   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3985     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3986   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3987     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3988   /* FIN confirming that the peer (app) has closed */
3989   _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3990   _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3991   _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3992     TCP_ERROR_NONE);
3993   _(FIN_WAIT_2, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3994   _(FIN_WAIT_2, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3995     TCP_ERROR_NONE);
3996   _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3997   _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3998     TCP_ERROR_NONE);
3999   _(CLOSE_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4000   _(CLOSE_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4001     TCP_ERROR_NONE);
4002   _(LAST_ACK, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
4003   _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4004   _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4005   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4006     TCP_ERROR_NONE);
4007   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
4008     TCP_ERROR_NONE);
4009   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
4010     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4011   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
4012     TCP_ERROR_NONE);
4013   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
4014     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4015   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
4016     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4017   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4018     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4019   _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4020   _(LAST_ACK, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4021     TCP_ERROR_NONE);
4022   _(LAST_ACK, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4023   _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4024     TCP_ERROR_NONE);
4025   _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
4026     TCP_ERROR_NONE);
4027   _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4028     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4029   _(TIME_WAIT, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
4030   _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4031   _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4032     TCP_ERROR_NONE);
4033   _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4034   _(TIME_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4035     TCP_ERROR_NONE);
4036   _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4037   /* RFC793 CLOSED: An incoming segment containing a RST is discarded. An
4038    * incoming segment not containing a RST causes a RST to be sent in
4039    * response.*/
4040   _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
4041   _(CLOSED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
4042     TCP_ERROR_CONNECTION_CLOSED);
4043   _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
4044   _(CLOSED, TCP_FLAG_SYN, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
4045   _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
4046     TCP_ERROR_NONE);
4047 #undef _
4048 }
4049
4050 static clib_error_t *
4051 tcp_input_init (vlib_main_t * vm)
4052 {
4053   clib_error_t *error = 0;
4054   tcp_main_t *tm = vnet_get_tcp_main ();
4055
4056   if ((error = vlib_call_init_function (vm, tcp_init)))
4057     return error;
4058
4059   /* Initialize dispatch table. */
4060   tcp_dispatch_table_init (tm);
4061
4062   return error;
4063 }
4064
4065 VLIB_INIT_FUNCTION (tcp_input_init);
4066
4067 #endif /* CLIB_MARCH_VARIANT */
4068
4069 /*
4070  * fd.io coding-style-patch-verification: ON
4071  *
4072  * Local Variables:
4073  * eval: (c-set-style "gnu")
4074  * End:
4075  */