tcp: Enable TCP timewait port use
[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     sb->last_bytes_delivered += hole->start - tc->snd_una;
1101
1102   while (hole && blk_index < vec_len (rcv_sacks))
1103     {
1104       blk = &rcv_sacks[blk_index];
1105       if (seq_leq (blk->start, hole->start))
1106         {
1107           /* Block covers hole. Remove hole */
1108           if (seq_geq (blk->end, hole->end))
1109             {
1110               next_hole = scoreboard_next_hole (sb, hole);
1111
1112               /* If covered by ack, compute delivered bytes */
1113               if (blk->end == ack)
1114                 {
1115                   u32 sacked = next_hole ? next_hole->start : sb->high_sacked;
1116                   if (PREDICT_FALSE (seq_lt (ack, sacked)))
1117                     {
1118                       sb->last_bytes_delivered += ack - hole->end;
1119                       sb->is_reneging = 1;
1120                     }
1121                   else
1122                     {
1123                       sb->last_bytes_delivered += sacked - hole->end;
1124                       sb->is_reneging = 0;
1125                     }
1126                 }
1127               scoreboard_update_sacked_rxt (sb, hole->start, hole->end,
1128                                             has_rxt);
1129               scoreboard_remove_hole (sb, hole);
1130               hole = next_hole;
1131             }
1132           /* Partial 'head' overlap */
1133           else
1134             {
1135               if (seq_gt (blk->end, hole->start))
1136                 {
1137                   scoreboard_update_sacked_rxt (sb, hole->start, blk->end,
1138                                                 has_rxt);
1139                   hole->start = blk->end;
1140                 }
1141               blk_index++;
1142             }
1143         }
1144       else
1145         {
1146           /* Hole must be split */
1147           if (seq_lt (blk->end, hole->end))
1148             {
1149               u32 hole_index = scoreboard_hole_index (sb, hole);
1150               next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
1151                                                   hole->end);
1152               /* Pool might've moved */
1153               hole = scoreboard_get_hole (sb, hole_index);
1154               hole->end = blk->start;
1155
1156               scoreboard_update_sacked_rxt (sb, blk->start, blk->end,
1157                                             has_rxt);
1158
1159               blk_index++;
1160               ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
1161             }
1162           else if (seq_lt (blk->start, hole->end))
1163             {
1164               scoreboard_update_sacked_rxt (sb, blk->start, hole->end,
1165                                             has_rxt);
1166               hole->end = blk->start;
1167             }
1168           hole = scoreboard_next_hole (sb, hole);
1169         }
1170     }
1171
1172   scoreboard_update_bytes (sb, ack, tc->snd_mss);
1173
1174   ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes || tcp_in_recovery (tc));
1175   ASSERT (sb->sacked_bytes == 0 || tcp_in_recovery (tc)
1176           || sb->sacked_bytes <= tc->snd_nxt - seq_max (tc->snd_una, ack));
1177   ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_nxt
1178           - seq_max (tc->snd_una, ack) || tcp_in_recovery (tc));
1179   ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
1180           || sb->is_reneging || sb->holes[sb->head].start == ack);
1181   ASSERT (sb->last_lost_bytes <= sb->lost_bytes);
1182   ASSERT ((ack - tc->snd_una) + sb->last_sacked_bytes
1183           - sb->last_bytes_delivered >= sb->rxt_sacked);
1184   ASSERT ((ack - tc->snd_una) >= tc->sack_sb.last_bytes_delivered
1185           || (tc->flags & TCP_CONN_FINSNT));
1186
1187   TCP_EVT (TCP_EVT_CC_SCOREBOARD, tc);
1188 }
1189 #endif /* CLIB_MARCH_VARIANT */
1190
1191 /**
1192  * Try to update snd_wnd based on feedback received from peer.
1193  *
1194  * If successful, and new window is 'effectively' 0, activate persist
1195  * timer.
1196  */
1197 static void
1198 tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
1199 {
1200   /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
1201    * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
1202   if (seq_lt (tc->snd_wl1, seq)
1203       || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
1204     {
1205       tc->snd_wnd = snd_wnd;
1206       tc->snd_wl1 = seq;
1207       tc->snd_wl2 = ack;
1208       TCP_EVT (TCP_EVT_SND_WND, tc);
1209
1210       if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
1211         {
1212           /* Set persist timer if not set and we just got 0 wnd */
1213           if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
1214               && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
1215             tcp_persist_timer_set (tc);
1216         }
1217       else
1218         {
1219           tcp_persist_timer_reset (tc);
1220           if (PREDICT_FALSE (!tcp_in_recovery (tc) && tc->rto_boff > 0))
1221             {
1222               tc->rto_boff = 0;
1223               tcp_update_rto (tc);
1224             }
1225         }
1226     }
1227 }
1228
1229 /**
1230  * Init loss recovery/fast recovery.
1231  *
1232  * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
1233  * updated in @ref tcp_cc_handle_event after fast retransmit
1234  */
1235 static void
1236 tcp_cc_init_congestion (tcp_connection_t * tc)
1237 {
1238   tcp_fastrecovery_on (tc);
1239   tc->snd_congestion = tc->snd_nxt;
1240   tc->cwnd_acc_bytes = 0;
1241   tc->snd_rxt_bytes = 0;
1242   tc->rxt_delivered = 0;
1243   tc->prr_delivered = 0;
1244   tc->prr_start = tc->snd_una;
1245   tc->prev_ssthresh = tc->ssthresh;
1246   tc->prev_cwnd = tc->cwnd;
1247
1248   tc->snd_rxt_ts = tcp_tstamp (tc);
1249   tcp_cc_congestion (tc);
1250
1251   /* Post retransmit update cwnd to ssthresh and account for the
1252    * three segments that have left the network and should've been
1253    * buffered at the receiver XXX */
1254   if (!tcp_opts_sack_permitted (&tc->rcv_opts))
1255     tc->cwnd += 3 * tc->snd_mss;
1256
1257   tc->fr_occurences += 1;
1258   TCP_EVT (TCP_EVT_CC_EVT, tc, 4);
1259 }
1260
1261 static void
1262 tcp_cc_congestion_undo (tcp_connection_t * tc)
1263 {
1264   tc->cwnd = tc->prev_cwnd;
1265   tc->ssthresh = tc->prev_ssthresh;
1266   tcp_cc_undo_recovery (tc);
1267   ASSERT (tc->rto_boff == 0);
1268   TCP_EVT (TCP_EVT_CC_EVT, tc, 5);
1269 }
1270
1271 static inline u8
1272 tcp_cc_is_spurious_timeout_rxt (tcp_connection_t * tc)
1273 {
1274   return (tcp_in_recovery (tc) && tc->rto_boff == 1
1275           && tc->snd_rxt_ts
1276           && tcp_opts_tstamp (&tc->rcv_opts)
1277           && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
1278 }
1279
1280 static inline u8
1281 tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
1282 {
1283   return (tcp_cc_is_spurious_timeout_rxt (tc));
1284 }
1285
1286 static inline u8
1287 tcp_should_fastrecover_sack (tcp_connection_t * tc)
1288 {
1289   return (tc->sack_sb.lost_bytes
1290           || ((TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
1291               < tc->sack_sb.sacked_bytes));
1292 }
1293
1294 static inline u8
1295 tcp_should_fastrecover (tcp_connection_t * tc, u8 has_sack)
1296 {
1297   if (!has_sack)
1298     {
1299       /* If of of the two conditions lower hold, reset dupacks because
1300        * we're probably after timeout (RFC6582 heuristics).
1301        * If Cumulative ack does not cover more than congestion threshold,
1302        * and:
1303        * 1) The following doesn't hold: The congestion window is greater
1304        *    than SMSS bytes and the difference between highest_ack
1305        *    and prev_highest_ack is at most 4*SMSS bytes
1306        * 2) Echoed timestamp in the last non-dup ack does not equal the
1307        *    stored timestamp
1308        */
1309       if (seq_leq (tc->snd_una, tc->snd_congestion)
1310           && ((!(tc->cwnd > tc->snd_mss
1311                  && tc->bytes_acked <= 4 * tc->snd_mss))
1312               || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
1313         {
1314           tc->rcv_dupacks = 0;
1315           return 0;
1316         }
1317     }
1318   return ((tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
1319           || tcp_should_fastrecover_sack (tc));
1320 }
1321
1322 static int
1323 tcp_cc_recover (tcp_connection_t * tc)
1324 {
1325   sack_scoreboard_hole_t *hole;
1326   u8 is_spurious = 0;
1327
1328   ASSERT (tcp_in_cong_recovery (tc));
1329
1330   if (tcp_cc_is_spurious_retransmit (tc))
1331     {
1332       tcp_cc_congestion_undo (tc);
1333       is_spurious = 1;
1334     }
1335
1336   tcp_connection_tx_pacer_reset (tc, tc->cwnd, 0 /* start bucket */ );
1337   tc->rcv_dupacks = 0;
1338
1339   /* Previous recovery left us congested. Continue sending as part
1340    * of the current recovery event with an updated snd_congestion */
1341   if (tc->sack_sb.sacked_bytes)
1342     {
1343       tc->snd_congestion = tc->snd_nxt;
1344       tcp_program_retransmit (tc);
1345       return is_spurious;
1346     }
1347
1348   tc->rxt_delivered = 0;
1349   tc->snd_rxt_bytes = 0;
1350   tc->snd_rxt_ts = 0;
1351   tc->prr_delivered = 0;
1352   tc->rtt_ts = 0;
1353   tc->flags &= ~TCP_CONN_RXT_PENDING;
1354
1355   hole = scoreboard_first_hole (&tc->sack_sb);
1356   if (hole && hole->start == tc->snd_una && hole->end == tc->snd_nxt)
1357     scoreboard_clear (&tc->sack_sb);
1358
1359   if (!tcp_in_recovery (tc) && !is_spurious)
1360     tcp_cc_recovered (tc);
1361
1362   tcp_fastrecovery_off (tc);
1363   tcp_fastrecovery_first_off (tc);
1364   tcp_recovery_off (tc);
1365   TCP_EVT (TCP_EVT_CC_EVT, tc, 3);
1366
1367   ASSERT (tc->rto_boff == 0);
1368   ASSERT (!tcp_in_cong_recovery (tc));
1369   ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
1370   return is_spurious;
1371 }
1372
1373 static void
1374 tcp_cc_update (tcp_connection_t * tc, tcp_rate_sample_t * rs)
1375 {
1376   ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
1377
1378   /* Congestion avoidance */
1379   tcp_cc_rcv_ack (tc, rs);
1380
1381   /* If a cumulative ack, make sure dupacks is 0 */
1382   tc->rcv_dupacks = 0;
1383
1384   /* When dupacks hits the threshold we only enter fast retransmit if
1385    * cumulative ack covers more than snd_congestion. Should snd_una
1386    * wrap this test may fail under otherwise valid circumstances.
1387    * Therefore, proactively update snd_congestion when wrap detected. */
1388   if (PREDICT_FALSE
1389       (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1390        && seq_gt (tc->snd_congestion, tc->snd_una)))
1391     tc->snd_congestion = tc->snd_una - 1;
1392 }
1393
1394 /**
1395  * One function to rule them all ... and in the darkness bind them
1396  */
1397 static void
1398 tcp_cc_handle_event (tcp_connection_t * tc, tcp_rate_sample_t * rs,
1399                      u32 is_dack)
1400 {
1401   u8 has_sack = tcp_opts_sack_permitted (&tc->rcv_opts);
1402
1403   /* If reneging, wait for timer based retransmits */
1404   if (PREDICT_FALSE (tcp_is_lost_fin (tc) || tc->sack_sb.is_reneging))
1405     return;
1406
1407   /*
1408    * If not in recovery, figure out if we should enter
1409    */
1410   if (!tcp_in_cong_recovery (tc))
1411     {
1412       ASSERT (is_dack);
1413
1414       tc->rcv_dupacks++;
1415       TCP_EVT (TCP_EVT_DUPACK_RCVD, tc, 1);
1416       tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
1417
1418       if (tcp_should_fastrecover (tc, has_sack))
1419         {
1420           tcp_cc_init_congestion (tc);
1421
1422           if (has_sack)
1423             scoreboard_init_rxt (&tc->sack_sb, tc->snd_una);
1424
1425           tcp_connection_tx_pacer_reset (tc, tc->cwnd, 0 /* start bucket */ );
1426           tcp_program_retransmit (tc);
1427         }
1428
1429       return;
1430     }
1431
1432   /*
1433    * Already in recovery
1434    */
1435
1436   /*
1437    * Process (re)transmit feedback. Output path uses this to decide how much
1438    * more data to release into the network
1439    */
1440   if (has_sack)
1441     {
1442       if (!tc->bytes_acked && tc->sack_sb.rxt_sacked)
1443         tcp_fastrecovery_first_on (tc);
1444
1445       tc->rxt_delivered += tc->sack_sb.rxt_sacked;
1446       tc->prr_delivered += tc->bytes_acked + tc->sack_sb.last_sacked_bytes
1447         - tc->sack_sb.last_bytes_delivered;
1448
1449       tcp_program_retransmit (tc);
1450     }
1451   else
1452     {
1453       if (is_dack)
1454         {
1455           tc->rcv_dupacks += 1;
1456           TCP_EVT (TCP_EVT_DUPACK_RCVD, tc, 1);
1457         }
1458       tc->rxt_delivered = clib_max (tc->rxt_delivered + tc->bytes_acked,
1459                                     tc->snd_rxt_bytes);
1460       if (is_dack)
1461         tc->prr_delivered += clib_min (tc->snd_mss,
1462                                        tc->snd_nxt - tc->snd_una);
1463       else
1464         tc->prr_delivered += tc->bytes_acked - clib_min (tc->bytes_acked,
1465                                                          tc->snd_mss *
1466                                                          tc->rcv_dupacks);
1467
1468       /* If partial ack, assume that the first un-acked segment was lost */
1469       if (tc->bytes_acked || tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
1470         tcp_fastrecovery_first_on (tc);
1471
1472       tcp_program_retransmit (tc);
1473     }
1474
1475   /*
1476    * See if we can exit and stop retransmitting
1477    */
1478   if (seq_geq (tc->snd_una, tc->snd_congestion))
1479     {
1480       /* If spurious return, we've already updated everything */
1481       if (tcp_cc_recover (tc))
1482         {
1483           tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1484           return;
1485         }
1486
1487       /* Treat as congestion avoidance ack */
1488       tcp_cc_rcv_ack (tc, rs);
1489       return;
1490     }
1491
1492   /*
1493    * Notify cc of the event
1494    */
1495
1496   if (!tc->bytes_acked)
1497     {
1498       tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
1499       return;
1500     }
1501
1502   /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
1503    * reset dupacks to 0. Also needed if in congestion recovery */
1504   tc->rcv_dupacks = 0;
1505
1506   if (tcp_in_recovery (tc))
1507     tcp_cc_rcv_ack (tc, rs);
1508   else
1509     tcp_cc_rcv_cong_ack (tc, TCP_CC_PARTIALACK, rs);
1510 }
1511
1512 /**
1513  * Check if duplicate ack as per RFC5681 Sec. 2
1514  */
1515 always_inline u8
1516 tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd,
1517                    u32 prev_snd_una)
1518 {
1519   return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
1520           && seq_gt (tc->snd_nxt, tc->snd_una)
1521           && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
1522           && (prev_snd_wnd == tc->snd_wnd));
1523 }
1524
1525 /**
1526  * Checks if ack is a congestion control event.
1527  */
1528 static u8
1529 tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b,
1530                      u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
1531 {
1532   /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
1533    * defined to be 'duplicate' as well */
1534   *is_dack = tc->sack_sb.last_sacked_bytes
1535     || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
1536
1537   return (*is_dack || tcp_in_cong_recovery (tc));
1538 }
1539
1540 /**
1541  * Process incoming ACK
1542  */
1543 static int
1544 tcp_rcv_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
1545              tcp_header_t * th, u32 * error)
1546 {
1547   u32 prev_snd_wnd, prev_snd_una;
1548   tcp_rate_sample_t rs = { 0 };
1549   u8 is_dack;
1550
1551   TCP_EVT (TCP_EVT_CC_STAT, tc);
1552
1553   /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
1554   if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
1555     {
1556       /* We've probably entered recovery and the peer still has some
1557        * of the data we've sent. Update snd_nxt and accept the ack */
1558       if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)
1559           && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
1560         {
1561           tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
1562           goto process_ack;
1563         }
1564
1565       tc->errors.above_ack_wnd += 1;
1566       *error = TCP_ERROR_ACK_FUTURE;
1567       TCP_EVT (TCP_EVT_ACK_RCV_ERR, tc, 0, vnet_buffer (b)->tcp.ack_number);
1568       return -1;
1569     }
1570
1571   /* If old ACK, probably it's an old dupack */
1572   if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
1573     {
1574       tc->errors.below_ack_wnd += 1;
1575       *error = TCP_ERROR_ACK_OLD;
1576       TCP_EVT (TCP_EVT_ACK_RCV_ERR, tc, 1, vnet_buffer (b)->tcp.ack_number);
1577       if (tcp_in_fastrecovery (tc) && tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
1578         tcp_cc_handle_event (tc, 0, 1);
1579       /* Don't drop yet */
1580       return 0;
1581     }
1582
1583 process_ack:
1584
1585   /*
1586    * Looks okay, process feedback
1587    */
1588
1589   if (tcp_opts_sack_permitted (&tc->rcv_opts))
1590     tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1591
1592   prev_snd_wnd = tc->snd_wnd;
1593   prev_snd_una = tc->snd_una;
1594   tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1595                       vnet_buffer (b)->tcp.ack_number,
1596                       clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1597   tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
1598   tc->snd_una = vnet_buffer (b)->tcp.ack_number;
1599   tcp_validate_txf_size (tc, tc->bytes_acked);
1600
1601   if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
1602     tcp_bt_sample_delivery_rate (tc, &rs);
1603
1604   if (tc->bytes_acked)
1605     {
1606       tcp_program_dequeue (wrk, tc);
1607       tcp_update_rtt (tc, &rs, vnet_buffer (b)->tcp.ack_number);
1608     }
1609
1610   TCP_EVT (TCP_EVT_ACK_RCVD, tc);
1611
1612   /*
1613    * Check if we have congestion event
1614    */
1615
1616   if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
1617     {
1618       tcp_cc_handle_event (tc, &rs, is_dack);
1619       tc->dupacks_in += is_dack;
1620       if (!tcp_in_cong_recovery (tc))
1621         {
1622           *error = TCP_ERROR_ACK_OK;
1623           return 0;
1624         }
1625       *error = TCP_ERROR_ACK_DUP;
1626       if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th))
1627         return 0;
1628       return -1;
1629     }
1630
1631   /*
1632    * Update congestion control (slow start/congestion avoidance)
1633    */
1634   tcp_cc_update (tc, &rs);
1635   *error = TCP_ERROR_ACK_OK;
1636   return 0;
1637 }
1638
1639 static void
1640 tcp_program_disconnect (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1641 {
1642   if (!tcp_disconnect_pending (tc))
1643     {
1644       vec_add1 (wrk->pending_disconnects, tc->c_c_index);
1645       tcp_disconnect_pending_on (tc);
1646     }
1647 }
1648
1649 static void
1650 tcp_handle_disconnects (tcp_worker_ctx_t * wrk)
1651 {
1652   u32 thread_index, *pending_disconnects;
1653   tcp_connection_t *tc;
1654   int i;
1655
1656   if (!vec_len (wrk->pending_disconnects))
1657     return;
1658
1659   thread_index = wrk->vm->thread_index;
1660   pending_disconnects = wrk->pending_disconnects;
1661   for (i = 0; i < vec_len (pending_disconnects); i++)
1662     {
1663       tc = tcp_connection_get (pending_disconnects[i], thread_index);
1664       tcp_disconnect_pending_off (tc);
1665       session_transport_closing_notify (&tc->connection);
1666     }
1667   _vec_len (wrk->pending_disconnects) = 0;
1668 }
1669
1670 static void
1671 tcp_rcv_fin (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
1672              u32 * error)
1673 {
1674   /* Reject out-of-order fins */
1675   if (vnet_buffer (b)->tcp.seq_end != tc->rcv_nxt)
1676     return;
1677
1678   /* Account for the FIN and send ack */
1679   tc->rcv_nxt += 1;
1680   tc->flags |= TCP_CONN_FINRCVD;
1681   tcp_program_ack (tc);
1682   /* Enter CLOSE-WAIT and notify session. To avoid lingering
1683    * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
1684   tcp_connection_set_state (tc, TCP_STATE_CLOSE_WAIT);
1685   tcp_program_disconnect (wrk, tc);
1686   tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, tcp_cfg.closewait_time);
1687   TCP_EVT (TCP_EVT_FIN_RCVD, tc);
1688   *error = TCP_ERROR_FIN_RCVD;
1689 }
1690
1691 #ifndef CLIB_MARCH_VARIANT
1692 static u8
1693 tcp_sack_vector_is_sane (sack_block_t * sacks)
1694 {
1695   int i;
1696   for (i = 1; i < vec_len (sacks); i++)
1697     {
1698       if (sacks[i - 1].end == sacks[i].start)
1699         return 0;
1700     }
1701   return 1;
1702 }
1703
1704 /**
1705  * Build SACK list as per RFC2018.
1706  *
1707  * Makes sure the first block contains the segment that generated the current
1708  * ACK and the following ones are the ones most recently reported in SACK
1709  * blocks.
1710  *
1711  * @param tc TCP connection for which the SACK list is updated
1712  * @param start Start sequence number of the newest SACK block
1713  * @param end End sequence of the newest SACK block
1714  */
1715 void
1716 tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1717 {
1718   sack_block_t *new_list = tc->snd_sacks_fl, *block = 0;
1719   int i;
1720
1721   /* If the first segment is ooo add it to the list. Last write might've moved
1722    * rcv_nxt over the first segment. */
1723   if (seq_lt (tc->rcv_nxt, start))
1724     {
1725       vec_add2 (new_list, block, 1);
1726       block->start = start;
1727       block->end = end;
1728     }
1729
1730   /* Find the blocks still worth keeping. */
1731   for (i = 0; i < vec_len (tc->snd_sacks); i++)
1732     {
1733       /* Discard if rcv_nxt advanced beyond current block */
1734       if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
1735         continue;
1736
1737       /* Merge or drop if segment overlapped by the new segment */
1738       if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1739                     && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1740         {
1741           if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1742             new_list[0].start = tc->snd_sacks[i].start;
1743           if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1744             new_list[0].end = tc->snd_sacks[i].end;
1745           continue;
1746         }
1747
1748       /* Save to new SACK list if we have space. */
1749       if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
1750         vec_add1 (new_list, tc->snd_sacks[i]);
1751     }
1752
1753   ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
1754
1755   /* Replace old vector with new one */
1756   vec_reset_length (tc->snd_sacks);
1757   tc->snd_sacks_fl = tc->snd_sacks;
1758   tc->snd_sacks = new_list;
1759
1760   /* Segments should not 'touch' */
1761   ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
1762 }
1763
1764 u32
1765 tcp_sack_list_bytes (tcp_connection_t * tc)
1766 {
1767   u32 bytes = 0, i;
1768   for (i = 0; i < vec_len (tc->snd_sacks); i++)
1769     bytes += tc->snd_sacks[i].end - tc->snd_sacks[i].start;
1770   return bytes;
1771 }
1772 #endif /* CLIB_MARCH_VARIANT */
1773
1774 /** Enqueue data for delivery to application */
1775 static int
1776 tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1777                           u16 data_len)
1778 {
1779   int written, error = TCP_ERROR_ENQUEUED;
1780
1781   ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
1782   ASSERT (data_len);
1783   written = session_enqueue_stream_connection (&tc->connection, b, 0,
1784                                                1 /* queue event */ , 1);
1785   tc->bytes_in += written;
1786
1787   TCP_EVT (TCP_EVT_INPUT, tc, 0, data_len, written);
1788
1789   /* Update rcv_nxt */
1790   if (PREDICT_TRUE (written == data_len))
1791     {
1792       tc->rcv_nxt += written;
1793     }
1794   /* If more data written than expected, account for out-of-order bytes. */
1795   else if (written > data_len)
1796     {
1797       tc->rcv_nxt += written;
1798       TCP_EVT (TCP_EVT_CC_INPUT, tc, data_len, written);
1799     }
1800   else if (written > 0)
1801     {
1802       /* We've written something but FIFO is probably full now */
1803       tc->rcv_nxt += written;
1804       error = TCP_ERROR_PARTIALLY_ENQUEUED;
1805     }
1806   else
1807     {
1808       return TCP_ERROR_FIFO_FULL;
1809     }
1810
1811   /* Update SACK list if need be */
1812   if (tcp_opts_sack_permitted (&tc->rcv_opts))
1813     {
1814       /* Remove SACK blocks that have been delivered */
1815       tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1816     }
1817
1818   return error;
1819 }
1820
1821 /** Enqueue out-of-order data */
1822 static int
1823 tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1824                          u16 data_len)
1825 {
1826   session_t *s0;
1827   int rv, offset;
1828
1829   ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
1830   ASSERT (data_len);
1831
1832   /* Enqueue out-of-order data with relative offset */
1833   rv = session_enqueue_stream_connection (&tc->connection, b,
1834                                           vnet_buffer (b)->tcp.seq_number -
1835                                           tc->rcv_nxt, 0 /* queue event */ ,
1836                                           0);
1837
1838   /* Nothing written */
1839   if (rv)
1840     {
1841       TCP_EVT (TCP_EVT_INPUT, tc, 1, data_len, 0);
1842       return TCP_ERROR_FIFO_FULL;
1843     }
1844
1845   TCP_EVT (TCP_EVT_INPUT, tc, 1, data_len, data_len);
1846   tc->bytes_in += data_len;
1847
1848   /* Update SACK list if in use */
1849   if (tcp_opts_sack_permitted (&tc->rcv_opts))
1850     {
1851       ooo_segment_t *newest;
1852       u32 start, end;
1853
1854       s0 = session_get (tc->c_s_index, tc->c_thread_index);
1855
1856       /* Get the newest segment from the fifo */
1857       newest = svm_fifo_newest_ooo_segment (s0->rx_fifo);
1858       if (newest)
1859         {
1860           offset = ooo_segment_offset_prod (s0->rx_fifo, newest);
1861           ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1862           start = tc->rcv_nxt + offset;
1863           end = start + ooo_segment_length (s0->rx_fifo, newest);
1864           tcp_update_sack_list (tc, start, end);
1865           svm_fifo_newest_ooo_segment_reset (s0->rx_fifo);
1866           TCP_EVT (TCP_EVT_CC_SACKS, tc);
1867         }
1868     }
1869
1870   return TCP_ERROR_ENQUEUED_OOO;
1871 }
1872
1873 /**
1874  * Check if ACK could be delayed. If ack can be delayed, it should return
1875  * true for a full frame. If we're always acking return 0.
1876  */
1877 always_inline int
1878 tcp_can_delack (tcp_connection_t * tc)
1879 {
1880   /* Send ack if ... */
1881   if (TCP_ALWAYS_ACK
1882       /* just sent a rcv wnd 0
1883          || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0 */
1884       /* constrained to send ack */
1885       || (tc->flags & TCP_CONN_SNDACK) != 0
1886       /* we're almost out of tx wnd */
1887       || tcp_available_cc_snd_space (tc) < 4 * tc->snd_mss)
1888     return 0;
1889
1890   return 1;
1891 }
1892
1893 static int
1894 tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
1895 {
1896   u32 discard, first = b->current_length;
1897   vlib_main_t *vm = vlib_get_main ();
1898
1899   /* Handle multi-buffer segments */
1900   if (n_bytes_to_drop > b->current_length)
1901     {
1902       if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1903         return -1;
1904       do
1905         {
1906           discard = clib_min (n_bytes_to_drop, b->current_length);
1907           vlib_buffer_advance (b, discard);
1908           b = vlib_get_buffer (vm, b->next_buffer);
1909           n_bytes_to_drop -= discard;
1910         }
1911       while (n_bytes_to_drop);
1912       if (n_bytes_to_drop > first)
1913         b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
1914     }
1915   else
1916     vlib_buffer_advance (b, n_bytes_to_drop);
1917   vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
1918   return 0;
1919 }
1920
1921 /**
1922  * Receive buffer for connection and handle acks
1923  *
1924  * It handles both in order or out-of-order data.
1925  */
1926 static int
1927 tcp_segment_rcv (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1928                  vlib_buffer_t * b)
1929 {
1930   u32 error, n_bytes_to_drop, n_data_bytes;
1931
1932   vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1933   n_data_bytes = vnet_buffer (b)->tcp.data_len;
1934   ASSERT (n_data_bytes);
1935   tc->data_segs_in += 1;
1936
1937   /* Handle out-of-order data */
1938   if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1939     {
1940       /* Old sequence numbers allowed through because they overlapped
1941        * the rx window */
1942       if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
1943         {
1944           /* Completely in the past (possible retransmit). Ack
1945            * retransmissions since we may not have any data to send */
1946           if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
1947             {
1948               tcp_program_ack (tc);
1949               error = TCP_ERROR_SEGMENT_OLD;
1950               goto done;
1951             }
1952
1953           /* Chop off the bytes in the past and see if what is left
1954            * can be enqueued in order */
1955           n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1956           n_data_bytes -= n_bytes_to_drop;
1957           vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
1958           if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
1959             {
1960               error = TCP_ERROR_SEGMENT_OLD;
1961               goto done;
1962             }
1963           goto in_order;
1964         }
1965
1966       /* RFC2581: Enqueue and send DUPACK for fast retransmit */
1967       error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
1968       tcp_program_dupack (tc);
1969       TCP_EVT (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
1970       tc->errors.above_data_wnd += seq_gt (vnet_buffer (b)->tcp.seq_end,
1971                                            tc->rcv_las + tc->rcv_wnd);
1972       goto done;
1973     }
1974
1975 in_order:
1976
1977   /* In order data, enqueue. Fifo figures out by itself if any out-of-order
1978    * segments can be enqueued after fifo tail offset changes. */
1979   error = tcp_session_enqueue_data (tc, b, n_data_bytes);
1980   if (tcp_can_delack (tc))
1981     {
1982       if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
1983         tcp_timer_set (tc, TCP_TIMER_DELACK, tcp_cfg.delack_time);
1984       goto done;
1985     }
1986
1987   tcp_program_ack (tc);
1988
1989 done:
1990   return error;
1991 }
1992
1993 typedef struct
1994 {
1995   tcp_header_t tcp_header;
1996   tcp_connection_t tcp_connection;
1997 } tcp_rx_trace_t;
1998
1999 static u8 *
2000 format_tcp_rx_trace (u8 * s, va_list * args)
2001 {
2002   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2003   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2004   tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
2005   u32 indent = format_get_indent (s);
2006
2007   s = format (s, "%U\n%U%U",
2008               format_tcp_header, &t->tcp_header, 128,
2009               format_white_space, indent,
2010               format_tcp_connection, &t->tcp_connection, 1);
2011
2012   return s;
2013 }
2014
2015 static u8 *
2016 format_tcp_rx_trace_short (u8 * s, va_list * args)
2017 {
2018   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2019   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2020   tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
2021
2022   s = format (s, "%d -> %d (%U)",
2023               clib_net_to_host_u16 (t->tcp_header.dst_port),
2024               clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state,
2025               t->tcp_connection.state);
2026
2027   return s;
2028 }
2029
2030 static void
2031 tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
2032                        tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
2033 {
2034   if (tc0)
2035     {
2036       clib_memcpy_fast (&t0->tcp_connection, tc0,
2037                         sizeof (t0->tcp_connection));
2038     }
2039   else
2040     {
2041       th0 = tcp_buffer_hdr (b0);
2042     }
2043   clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
2044 }
2045
2046 static void
2047 tcp_established_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2048                              vlib_frame_t * frame, u8 is_ip4)
2049 {
2050   u32 *from, n_left;
2051
2052   n_left = frame->n_vectors;
2053   from = vlib_frame_vector_args (frame);
2054
2055   while (n_left >= 1)
2056     {
2057       tcp_connection_t *tc0;
2058       tcp_rx_trace_t *t0;
2059       tcp_header_t *th0;
2060       vlib_buffer_t *b0;
2061       u32 bi0;
2062
2063       bi0 = from[0];
2064       b0 = vlib_get_buffer (vm, bi0);
2065
2066       if (b0->flags & VLIB_BUFFER_IS_TRACED)
2067         {
2068           t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2069           tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2070                                     vm->thread_index);
2071           th0 = tcp_buffer_hdr (b0);
2072           tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
2073         }
2074
2075       from += 1;
2076       n_left -= 1;
2077     }
2078 }
2079
2080 always_inline void
2081 tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
2082                         u8 is_ip4, u32 evt, u32 val)
2083 {
2084   if (is_ip4)
2085     vlib_node_increment_counter (vm, tcp4_node, evt, val);
2086   else
2087     vlib_node_increment_counter (vm, tcp6_node, evt, val);
2088 }
2089
2090 #define tcp_maybe_inc_counter(node_id, err, count)                      \
2091 {                                                                       \
2092   if (next0 != tcp_next_drop (is_ip4))                                  \
2093     tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index,            \
2094                             tcp6_##node_id##_node.index, is_ip4, err,   \
2095                             1);                                         \
2096 }
2097 #define tcp_inc_counter(node_id, err, count)                            \
2098   tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index,              \
2099                            tcp6_##node_id##_node.index, is_ip4,         \
2100                            err, count)
2101 #define tcp_maybe_inc_err_counter(cnts, err)                            \
2102 {                                                                       \
2103   cnts[err] += (next0 != tcp_next_drop (is_ip4));                       \
2104 }
2105 #define tcp_inc_err_counter(cnts, err, val)                             \
2106 {                                                                       \
2107   cnts[err] += val;                                                     \
2108 }
2109 #define tcp_store_err_counters(node_id, cnts)                           \
2110 {                                                                       \
2111   int i;                                                                \
2112   for (i = 0; i < TCP_N_ERROR; i++)                                     \
2113     if (cnts[i])                                                        \
2114       tcp_inc_counter(node_id, i, cnts[i]);                             \
2115 }
2116
2117
2118 always_inline uword
2119 tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2120                           vlib_frame_t * frame, int is_ip4)
2121 {
2122   u32 thread_index = vm->thread_index, errors = 0;
2123   tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
2124   u32 n_left_from, *from, *first_buffer;
2125   u16 err_counters[TCP_N_ERROR] = { 0 };
2126
2127   if (node->flags & VLIB_NODE_FLAG_TRACE)
2128     tcp_established_trace_frame (vm, node, frame, is_ip4);
2129
2130   first_buffer = from = vlib_frame_vector_args (frame);
2131   n_left_from = frame->n_vectors;
2132
2133   while (n_left_from > 0)
2134     {
2135       u32 bi0, error0 = TCP_ERROR_ACK_OK;
2136       vlib_buffer_t *b0;
2137       tcp_header_t *th0;
2138       tcp_connection_t *tc0;
2139
2140       if (n_left_from > 1)
2141         {
2142           vlib_buffer_t *pb;
2143           pb = vlib_get_buffer (vm, from[1]);
2144           vlib_prefetch_buffer_header (pb, LOAD);
2145           CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
2146         }
2147
2148       bi0 = from[0];
2149       from += 1;
2150       n_left_from -= 1;
2151
2152       b0 = vlib_get_buffer (vm, bi0);
2153       tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2154                                 thread_index);
2155
2156       if (PREDICT_FALSE (tc0 == 0))
2157         {
2158           error0 = TCP_ERROR_INVALID_CONNECTION;
2159           goto done;
2160         }
2161
2162       th0 = tcp_buffer_hdr (b0);
2163
2164       /* TODO header prediction fast path */
2165
2166       /* 1-4: check SEQ, RST, SYN */
2167       if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, th0, &error0)))
2168         {
2169           TCP_EVT (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp);
2170           goto done;
2171         }
2172
2173       /* 5: check the ACK field  */
2174       if (PREDICT_FALSE (tcp_rcv_ack (wrk, tc0, b0, th0, &error0)))
2175         goto done;
2176
2177       /* 6: check the URG bit TODO */
2178
2179       /* 7: process the segment text */
2180       if (vnet_buffer (b0)->tcp.data_len)
2181         error0 = tcp_segment_rcv (wrk, tc0, b0);
2182
2183       /* 8: check the FIN bit */
2184       if (PREDICT_FALSE (tcp_is_fin (th0)))
2185         tcp_rcv_fin (wrk, tc0, b0, &error0);
2186
2187     done:
2188       tcp_inc_err_counter (err_counters, error0, 1);
2189     }
2190
2191   errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2192                                               thread_index);
2193   err_counters[TCP_ERROR_MSG_QUEUE_FULL] = errors;
2194   tcp_store_err_counters (established, err_counters);
2195   tcp_handle_postponed_dequeues (wrk);
2196   tcp_handle_disconnects (wrk);
2197   vlib_buffer_free (vm, first_buffer, frame->n_vectors);
2198
2199   return frame->n_vectors;
2200 }
2201
2202 VLIB_NODE_FN (tcp4_established_node) (vlib_main_t * vm,
2203                                       vlib_node_runtime_t * node,
2204                                       vlib_frame_t * from_frame)
2205 {
2206   return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2207 }
2208
2209 VLIB_NODE_FN (tcp6_established_node) (vlib_main_t * vm,
2210                                       vlib_node_runtime_t * node,
2211                                       vlib_frame_t * from_frame)
2212 {
2213   return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2214 }
2215
2216 /* *INDENT-OFF* */
2217 VLIB_REGISTER_NODE (tcp4_established_node) =
2218 {
2219   .name = "tcp4-established",
2220   /* Takes a vector of packets. */
2221   .vector_size = sizeof (u32),
2222   .n_errors = TCP_N_ERROR,
2223   .error_strings = tcp_error_strings,
2224   .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2225   .next_nodes =
2226   {
2227 #define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2228     foreach_tcp_state_next
2229 #undef _
2230   },
2231   .format_trace = format_tcp_rx_trace_short,
2232 };
2233 /* *INDENT-ON* */
2234
2235 /* *INDENT-OFF* */
2236 VLIB_REGISTER_NODE (tcp6_established_node) =
2237 {
2238   .name = "tcp6-established",
2239   /* Takes a vector of packets. */
2240   .vector_size = sizeof (u32),
2241   .n_errors = TCP_N_ERROR,
2242   .error_strings = tcp_error_strings,
2243   .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2244   .next_nodes =
2245   {
2246 #define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2247     foreach_tcp_state_next
2248 #undef _
2249   },
2250   .format_trace = format_tcp_rx_trace_short,
2251 };
2252 /* *INDENT-ON* */
2253
2254
2255 static u8
2256 tcp_lookup_is_valid (tcp_connection_t * tc, vlib_buffer_t * b,
2257                      tcp_header_t * hdr)
2258 {
2259   transport_connection_t *tmp = 0;
2260   u64 handle;
2261
2262   if (!tc)
2263     return 1;
2264
2265   /* Proxy case */
2266   if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
2267     return 1;
2268
2269   u8 is_ip_valid = 0, val_l, val_r;
2270
2271   if (tc->connection.is_ip4)
2272     {
2273       ip4_header_t *ip4_hdr = (ip4_header_t *) vlib_buffer_get_current (b);
2274
2275       val_l = !ip4_address_compare (&ip4_hdr->dst_address,
2276                                     &tc->connection.lcl_ip.ip4);
2277       val_l = val_l || ip_is_zero (&tc->connection.lcl_ip, 1);
2278       val_r = !ip4_address_compare (&ip4_hdr->src_address,
2279                                     &tc->connection.rmt_ip.ip4);
2280       val_r = val_r || tc->state == TCP_STATE_LISTEN;
2281       is_ip_valid = val_l && val_r;
2282     }
2283   else
2284     {
2285       ip6_header_t *ip6_hdr = (ip6_header_t *) vlib_buffer_get_current (b);
2286
2287       val_l = !ip6_address_compare (&ip6_hdr->dst_address,
2288                                     &tc->connection.lcl_ip.ip6);
2289       val_l = val_l || ip_is_zero (&tc->connection.lcl_ip, 0);
2290       val_r = !ip6_address_compare (&ip6_hdr->src_address,
2291                                     &tc->connection.rmt_ip.ip6);
2292       val_r = val_r || tc->state == TCP_STATE_LISTEN;
2293       is_ip_valid = val_l && val_r;
2294     }
2295
2296   u8 is_valid = (tc->c_lcl_port == hdr->dst_port
2297                  && (tc->state == TCP_STATE_LISTEN
2298                      || tc->c_rmt_port == hdr->src_port) && is_ip_valid);
2299
2300   if (!is_valid)
2301     {
2302       handle = session_lookup_half_open_handle (&tc->connection);
2303       tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
2304                                                  tc->c_proto, tc->c_is_ip4);
2305
2306       if (tmp)
2307         {
2308           if (tmp->lcl_port == hdr->dst_port
2309               && tmp->rmt_port == hdr->src_port)
2310             {
2311               TCP_DBG ("half-open is valid!");
2312               is_valid = 1;
2313             }
2314         }
2315     }
2316   return is_valid;
2317 }
2318
2319 /**
2320  * Lookup transport connection
2321  */
2322 static tcp_connection_t *
2323 tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
2324                        u8 is_ip4)
2325 {
2326   tcp_header_t *tcp;
2327   transport_connection_t *tconn;
2328   tcp_connection_t *tc;
2329   u8 is_filtered = 0;
2330   if (is_ip4)
2331     {
2332       ip4_header_t *ip4;
2333       ip4 = vlib_buffer_get_current (b);
2334       tcp = ip4_next_header (ip4);
2335       tconn = session_lookup_connection_wt4 (fib_index,
2336                                              &ip4->dst_address,
2337                                              &ip4->src_address,
2338                                              tcp->dst_port,
2339                                              tcp->src_port,
2340                                              TRANSPORT_PROTO_TCP,
2341                                              thread_index, &is_filtered);
2342       tc = tcp_get_connection_from_transport (tconn);
2343       ASSERT (tcp_lookup_is_valid (tc, b, tcp));
2344     }
2345   else
2346     {
2347       ip6_header_t *ip6;
2348       ip6 = vlib_buffer_get_current (b);
2349       tcp = ip6_next_header (ip6);
2350       tconn = session_lookup_connection_wt6 (fib_index,
2351                                              &ip6->dst_address,
2352                                              &ip6->src_address,
2353                                              tcp->dst_port,
2354                                              tcp->src_port,
2355                                              TRANSPORT_PROTO_TCP,
2356                                              thread_index, &is_filtered);
2357       tc = tcp_get_connection_from_transport (tconn);
2358       ASSERT (tcp_lookup_is_valid (tc, b, tcp));
2359     }
2360   return tc;
2361 }
2362
2363 static tcp_connection_t *
2364 tcp_lookup_listener (vlib_buffer_t * b, u32 fib_index, int is_ip4)
2365 {
2366   session_t *s;
2367
2368   if (is_ip4)
2369     {
2370       ip4_header_t *ip4 = vlib_buffer_get_current (b);
2371       tcp_header_t *tcp = tcp_buffer_hdr (b);
2372       s = session_lookup_listener4 (fib_index,
2373                                     &ip4->dst_address,
2374                                     tcp->dst_port, TRANSPORT_PROTO_TCP, 1);
2375     }
2376   else
2377     {
2378       ip6_header_t *ip6 = vlib_buffer_get_current (b);
2379       tcp_header_t *tcp = tcp_buffer_hdr (b);
2380       s = session_lookup_listener6 (fib_index,
2381                                     &ip6->dst_address,
2382                                     tcp->dst_port, TRANSPORT_PROTO_TCP, 1);
2383
2384     }
2385   if (PREDICT_TRUE (s != 0))
2386     return tcp_get_connection_from_transport (transport_get_listener
2387                                               (TRANSPORT_PROTO_TCP,
2388                                                s->connection_index));
2389   else
2390     return 0;
2391 }
2392
2393 always_inline void
2394 tcp_check_tx_offload (tcp_connection_t * tc, int is_ipv4)
2395 {
2396   vnet_main_t *vnm = vnet_get_main ();
2397   const dpo_id_t *dpo;
2398   const load_balance_t *lb;
2399   vnet_hw_interface_t *hw_if;
2400   u32 sw_if_idx, lb_idx;
2401
2402   if (is_ipv4)
2403     {
2404       ip4_address_t *dst_addr = &(tc->c_rmt_ip.ip4);
2405       lb_idx = ip4_fib_forwarding_lookup (tc->c_fib_index, dst_addr);
2406     }
2407   else
2408     {
2409       ip6_address_t *dst_addr = &(tc->c_rmt_ip.ip6);
2410       lb_idx = ip6_fib_table_fwding_lookup (tc->c_fib_index, dst_addr);
2411     }
2412
2413   lb = load_balance_get (lb_idx);
2414   dpo = load_balance_get_bucket_i (lb, 0);
2415
2416   sw_if_idx = dpo->dpoi_index;
2417   hw_if = vnet_get_sup_hw_interface (vnm, sw_if_idx);
2418
2419   if (hw_if->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_GSO)
2420     tc->cfg_flags |= TCP_CFG_F_TSO;
2421 }
2422
2423 always_inline uword
2424 tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2425                        vlib_frame_t * from_frame, int is_ip4)
2426 {
2427   u32 n_left_from, *from, *first_buffer, errors = 0;
2428   u32 my_thread_index = vm->thread_index;
2429   tcp_worker_ctx_t *wrk = tcp_get_worker (my_thread_index);
2430
2431   from = first_buffer = vlib_frame_vector_args (from_frame);
2432   n_left_from = from_frame->n_vectors;
2433
2434   while (n_left_from > 0)
2435     {
2436       u32 bi0, ack0, seq0, error0 = TCP_ERROR_NONE;
2437       tcp_connection_t *tc0, *new_tc0;
2438       tcp_header_t *tcp0 = 0;
2439       tcp_rx_trace_t *t0;
2440       vlib_buffer_t *b0;
2441
2442       bi0 = from[0];
2443       from += 1;
2444       n_left_from -= 1;
2445
2446       b0 = vlib_get_buffer (vm, bi0);
2447       tc0 =
2448         tcp_half_open_connection_get (vnet_buffer (b0)->tcp.connection_index);
2449       if (PREDICT_FALSE (tc0 == 0))
2450         {
2451           error0 = TCP_ERROR_INVALID_CONNECTION;
2452           goto drop;
2453         }
2454
2455       /* Half-open completed recently but the connection was't removed
2456        * yet by the owning thread */
2457       if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2458         {
2459           /* Make sure the connection actually exists */
2460           ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2461                                          my_thread_index, is_ip4));
2462           error0 = TCP_ERROR_SPURIOUS_SYN_ACK;
2463           goto drop;
2464         }
2465
2466       ack0 = vnet_buffer (b0)->tcp.ack_number;
2467       seq0 = vnet_buffer (b0)->tcp.seq_number;
2468       tcp0 = tcp_buffer_hdr (b0);
2469
2470       /* Crude check to see if the connection handle does not match
2471        * the packet. Probably connection just switched to established */
2472       if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2473                          || tcp0->src_port != tc0->c_rmt_port))
2474         {
2475           error0 = TCP_ERROR_INVALID_CONNECTION;
2476           goto drop;
2477         }
2478
2479       if (PREDICT_FALSE (!tcp_ack (tcp0) && !tcp_rst (tcp0)
2480                          && !tcp_syn (tcp0)))
2481         {
2482           error0 = TCP_ERROR_SEGMENT_INVALID;
2483           goto drop;
2484         }
2485
2486       /* SYNs consume sequence numbers */
2487       vnet_buffer (b0)->tcp.seq_end += tcp_is_syn (tcp0);
2488
2489       /*
2490        *  1. check the ACK bit
2491        */
2492
2493       /*
2494        *   If the ACK bit is set
2495        *     If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2496        *     the RST bit is set, if so drop the segment and return)
2497        *       <SEQ=SEG.ACK><CTL=RST>
2498        *     and discard the segment.  Return.
2499        *     If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2500        */
2501       if (tcp_ack (tcp0))
2502         {
2503           if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
2504             {
2505               if (!tcp_rst (tcp0))
2506                 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
2507               error0 = TCP_ERROR_RCV_WND;
2508               goto drop;
2509             }
2510
2511           /* Make sure ACK is valid */
2512           if (seq_gt (tc0->snd_una, ack0))
2513             {
2514               error0 = TCP_ERROR_ACK_INVALID;
2515               goto drop;
2516             }
2517         }
2518
2519       /*
2520        * 2. check the RST bit
2521        */
2522
2523       if (tcp_rst (tcp0))
2524         {
2525           /* If ACK is acceptable, signal client that peer is not
2526            * willing to accept connection and drop connection*/
2527           if (tcp_ack (tcp0))
2528             tcp_connection_reset (tc0);
2529           error0 = TCP_ERROR_RST_RCVD;
2530           goto drop;
2531         }
2532
2533       /*
2534        * 3. check the security and precedence (skipped)
2535        */
2536
2537       /*
2538        * 4. check the SYN bit
2539        */
2540
2541       /* No SYN flag. Drop. */
2542       if (!tcp_syn (tcp0))
2543         {
2544           error0 = TCP_ERROR_SEGMENT_INVALID;
2545           goto drop;
2546         }
2547
2548       /* Parse options */
2549       if (tcp_options_parse (tcp0, &tc0->rcv_opts, 1))
2550         {
2551           error0 = TCP_ERROR_OPTIONS;
2552           goto drop;
2553         }
2554
2555       /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2556        * current thread pool. */
2557       new_tc0 = tcp_connection_alloc_w_base (my_thread_index, tc0);
2558       new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2559       new_tc0->irs = seq0;
2560       new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
2561       new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
2562
2563       /* If this is not the owning thread, wait for syn retransmit to
2564        * expire and cleanup then */
2565       if (tcp_half_open_connection_cleanup (tc0))
2566         tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
2567
2568       if (tcp_opts_tstamp (&new_tc0->rcv_opts))
2569         {
2570           new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
2571           new_tc0->tsval_recent_age = tcp_time_now ();
2572         }
2573
2574       if (tcp_opts_wscale (&new_tc0->rcv_opts))
2575         new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
2576       else
2577         new_tc0->rcv_wscale = 0;
2578
2579       new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2580         << new_tc0->snd_wscale;
2581       new_tc0->snd_wl1 = seq0;
2582       new_tc0->snd_wl2 = ack0;
2583
2584       tcp_connection_init_vars (new_tc0);
2585
2586       /* SYN-ACK: See if we can switch to ESTABLISHED state */
2587       if (PREDICT_TRUE (tcp_ack (tcp0)))
2588         {
2589           /* Our SYN is ACKed: we have iss < ack = snd_una */
2590
2591           /* TODO Dequeue acknowledged segments if we support Fast Open */
2592           new_tc0->snd_una = ack0;
2593           new_tc0->state = TCP_STATE_ESTABLISHED;
2594
2595           /* Make sure las is initialized for the wnd computation */
2596           new_tc0->rcv_las = new_tc0->rcv_nxt;
2597
2598           /* Notify app that we have connection. If session layer can't
2599            * allocate session send reset */
2600           if (session_stream_connect_notify (&new_tc0->connection, 0))
2601             {
2602               tcp_send_reset_w_pkt (new_tc0, b0, my_thread_index, is_ip4);
2603               tcp_connection_cleanup (new_tc0);
2604               error0 = TCP_ERROR_CREATE_SESSION_FAIL;
2605               goto drop;
2606             }
2607
2608           new_tc0->tx_fifo_size =
2609             transport_tx_fifo_size (&new_tc0->connection);
2610           /* Update rtt with the syn-ack sample */
2611           tcp_estimate_initial_rtt (new_tc0);
2612           TCP_EVT (TCP_EVT_SYNACK_RCVD, new_tc0);
2613           error0 = TCP_ERROR_SYN_ACKS_RCVD;
2614         }
2615       /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2616       else
2617         {
2618           new_tc0->state = TCP_STATE_SYN_RCVD;
2619
2620           /* Notify app that we have connection */
2621           if (session_stream_connect_notify (&new_tc0->connection, 0))
2622             {
2623               tcp_connection_cleanup (new_tc0);
2624               tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
2625               TCP_EVT (TCP_EVT_RST_SENT, tc0);
2626               error0 = TCP_ERROR_CREATE_SESSION_FAIL;
2627               goto drop;
2628             }
2629
2630           new_tc0->tx_fifo_size =
2631             transport_tx_fifo_size (&new_tc0->connection);
2632           new_tc0->rtt_ts = 0;
2633           tcp_init_snd_vars (new_tc0);
2634           tcp_send_synack (new_tc0);
2635           error0 = TCP_ERROR_SYNS_RCVD;
2636           goto drop;
2637         }
2638
2639       if (!(new_tc0->cfg_flags & TCP_CFG_F_NO_TSO))
2640         tcp_check_tx_offload (new_tc0, is_ip4);
2641
2642       /* Read data, if any */
2643       if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
2644         {
2645           clib_warning ("rcvd data in syn-sent");
2646           error0 = tcp_segment_rcv (wrk, new_tc0, b0);
2647           if (error0 == TCP_ERROR_ACK_OK)
2648             error0 = TCP_ERROR_SYN_ACKS_RCVD;
2649         }
2650       else
2651         {
2652           /* Send ack now instead of programming it because connection was
2653            * just established and it's not optional. */
2654           tcp_send_ack (new_tc0);
2655         }
2656
2657     drop:
2658
2659       tcp_inc_counter (syn_sent, error0, 1);
2660       if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
2661         {
2662           t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2663           clib_memcpy_fast (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2664           clib_memcpy_fast (&t0->tcp_connection, tc0,
2665                             sizeof (t0->tcp_connection));
2666         }
2667     }
2668
2669   errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2670                                               my_thread_index);
2671   tcp_inc_counter (syn_sent, TCP_ERROR_MSG_QUEUE_FULL, errors);
2672   vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
2673
2674   return from_frame->n_vectors;
2675 }
2676
2677 VLIB_NODE_FN (tcp4_syn_sent_node) (vlib_main_t * vm,
2678                                    vlib_node_runtime_t * node,
2679                                    vlib_frame_t * from_frame)
2680 {
2681   return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2682 }
2683
2684 VLIB_NODE_FN (tcp6_syn_sent_node) (vlib_main_t * vm,
2685                                    vlib_node_runtime_t * node,
2686                                    vlib_frame_t * from_frame)
2687 {
2688   return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2689 }
2690
2691 /* *INDENT-OFF* */
2692 VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2693 {
2694   .name = "tcp4-syn-sent",
2695   /* Takes a vector of packets. */
2696   .vector_size = sizeof (u32),
2697   .n_errors = TCP_N_ERROR,
2698   .error_strings = tcp_error_strings,
2699   .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2700   .next_nodes =
2701   {
2702 #define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2703     foreach_tcp_state_next
2704 #undef _
2705   },
2706   .format_trace = format_tcp_rx_trace_short,
2707 };
2708 /* *INDENT-ON* */
2709
2710 /* *INDENT-OFF* */
2711 VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2712 {
2713   .name = "tcp6-syn-sent",
2714   /* Takes a vector of packets. */
2715   .vector_size = sizeof (u32),
2716   .n_errors = TCP_N_ERROR,
2717   .error_strings = tcp_error_strings,
2718   .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2719   .next_nodes =
2720   {
2721 #define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2722     foreach_tcp_state_next
2723 #undef _
2724   },
2725   .format_trace = format_tcp_rx_trace_short,
2726 };
2727 /* *INDENT-ON* */
2728
2729 /**
2730  * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
2731  * as per RFC793 p. 64
2732  */
2733 always_inline uword
2734 tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2735                           vlib_frame_t * from_frame, int is_ip4)
2736 {
2737   u32 thread_index = vm->thread_index, errors = 0, *first_buffer;
2738   tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
2739   u32 n_left_from, *from, max_dequeue;
2740
2741   from = first_buffer = vlib_frame_vector_args (from_frame);
2742   n_left_from = from_frame->n_vectors;
2743
2744   while (n_left_from > 0)
2745     {
2746       u32 bi0, error0 = TCP_ERROR_NONE;
2747       tcp_header_t *tcp0 = 0;
2748       tcp_connection_t *tc0;
2749       vlib_buffer_t *b0;
2750       u8 is_fin0;
2751
2752       bi0 = from[0];
2753       from += 1;
2754       n_left_from -= 1;
2755
2756       b0 = vlib_get_buffer (vm, bi0);
2757       tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2758                                 thread_index);
2759       if (PREDICT_FALSE (tc0 == 0))
2760         {
2761           error0 = TCP_ERROR_INVALID_CONNECTION;
2762           goto drop;
2763         }
2764
2765       tcp0 = tcp_buffer_hdr (b0);
2766       is_fin0 = tcp_is_fin (tcp0);
2767
2768       if (CLIB_DEBUG)
2769         {
2770           if (!(tc0->connection.flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
2771             {
2772               tcp_connection_t *tmp;
2773               tmp = tcp_lookup_connection (tc0->c_fib_index, b0, thread_index,
2774                                            is_ip4);
2775               if (tmp->state != tc0->state)
2776                 {
2777                   if (tc0->state != TCP_STATE_CLOSED)
2778                     clib_warning ("state changed");
2779                   goto drop;
2780                 }
2781             }
2782         }
2783
2784       /*
2785        * Special treatment for CLOSED
2786        */
2787       if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
2788         {
2789           error0 = TCP_ERROR_CONNECTION_CLOSED;
2790           goto drop;
2791         }
2792
2793       /*
2794        * For all other states (except LISTEN)
2795        */
2796
2797       /* 1-4: check SEQ, RST, SYN */
2798       if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, tcp0, &error0)))
2799         goto drop;
2800
2801       /* 5: check the ACK field  */
2802       switch (tc0->state)
2803         {
2804         case TCP_STATE_SYN_RCVD:
2805
2806           /* Make sure the segment is exactly right */
2807           if (tc0->rcv_nxt != vnet_buffer (b0)->tcp.seq_number || is_fin0)
2808             {
2809               tcp_connection_reset (tc0);
2810               error0 = TCP_ERROR_SEGMENT_INVALID;
2811               goto drop;
2812             }
2813
2814           /*
2815            * If the segment acknowledgment is not acceptable, form a
2816            * reset segment,
2817            *  <SEQ=SEG.ACK><CTL=RST>
2818            * and send it.
2819            */
2820           if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2821             {
2822               tcp_connection_reset (tc0);
2823               goto drop;
2824             }
2825
2826           /* Update rtt and rto */
2827           tcp_estimate_initial_rtt (tc0);
2828           tcp_connection_tx_pacer_update (tc0);
2829
2830           /* Switch state to ESTABLISHED */
2831           tc0->state = TCP_STATE_ESTABLISHED;
2832           TCP_EVT (TCP_EVT_STATE_CHANGE, tc0);
2833
2834           if (!(tc0->cfg_flags & TCP_CFG_F_NO_TSO))
2835             tcp_check_tx_offload (tc0, is_ip4);
2836
2837           /* Initialize session variables */
2838           tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
2839           tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2840             << tc0->rcv_opts.wscale;
2841           tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2842           tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
2843
2844           /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
2845           tcp_retransmit_timer_reset (tc0);
2846           if (session_stream_accept_notify (&tc0->connection))
2847             {
2848               error0 = TCP_ERROR_MSG_QUEUE_FULL;
2849               tcp_connection_reset (tc0);
2850               goto drop;
2851             }
2852           error0 = TCP_ERROR_ACK_OK;
2853           break;
2854         case TCP_STATE_ESTABLISHED:
2855           /* We can get packets in established state here because they
2856            * were enqueued before state change */
2857           if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2858             goto drop;
2859
2860           break;
2861         case TCP_STATE_FIN_WAIT_1:
2862           /* In addition to the processing for the ESTABLISHED state, if
2863            * our FIN is now acknowledged then enter FIN-WAIT-2 and
2864            * continue processing in that state. */
2865           if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2866             goto drop;
2867
2868           /* Still have to send the FIN */
2869           if (tc0->flags & TCP_CONN_FINPNDG)
2870             {
2871               /* TX fifo finally drained */
2872               max_dequeue = transport_max_tx_dequeue (&tc0->connection);
2873               if (max_dequeue <= tc0->burst_acked)
2874                 tcp_send_fin (tc0);
2875               /* If a fin was received and data was acked extend wait */
2876               else if ((tc0->flags & TCP_CONN_FINRCVD) && tc0->bytes_acked)
2877                 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
2878                                   tcp_cfg.closewait_time);
2879             }
2880           /* If FIN is ACKed */
2881           else if (tc0->snd_una == tc0->snd_nxt)
2882             {
2883               /* Stop all retransmit timers because we have nothing more
2884                * to send. */
2885               tcp_connection_timers_reset (tc0);
2886
2887               /* We already have a FIN but didn't transition to CLOSING
2888                * because of outstanding tx data. Close the connection. */
2889               if (tc0->flags & TCP_CONN_FINRCVD)
2890                 {
2891                   tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
2892                   tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE,
2893                                  tcp_cfg.cleanup_time);
2894                   session_transport_closed_notify (&tc0->connection);
2895                   goto drop;
2896                 }
2897
2898               tcp_connection_set_state (tc0, TCP_STATE_FIN_WAIT_2);
2899               /* Enable waitclose because we're willing to wait for peer's
2900                * FIN but not indefinitely. */
2901               tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.finwait2_time);
2902
2903               /* Don't try to deq the FIN acked */
2904               if (tc0->burst_acked > 1)
2905                 session_tx_fifo_dequeue_drop (&tc0->connection,
2906                                               tc0->burst_acked - 1);
2907               tc0->burst_acked = 0;
2908             }
2909           break;
2910         case TCP_STATE_FIN_WAIT_2:
2911           /* In addition to the processing for the ESTABLISHED state, if
2912            * the retransmission queue is empty, the user's CLOSE can be
2913            * acknowledged ("ok") but do not delete the TCB. */
2914           if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2915             goto drop;
2916           tc0->burst_acked = 0;
2917           break;
2918         case TCP_STATE_CLOSE_WAIT:
2919           /* Do the same processing as for the ESTABLISHED state. */
2920           if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2921             goto drop;
2922
2923           if (!(tc0->flags & TCP_CONN_FINPNDG))
2924             break;
2925
2926           /* Still have outstanding tx data */
2927           max_dequeue = transport_max_tx_dequeue (&tc0->connection);
2928           if (max_dequeue > tc0->burst_acked)
2929             break;
2930
2931           tcp_send_fin (tc0);
2932           tcp_connection_timers_reset (tc0);
2933           tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
2934           tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.lastack_time);
2935           break;
2936         case TCP_STATE_CLOSING:
2937           /* In addition to the processing for the ESTABLISHED state, if
2938            * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2939            * otherwise ignore the segment. */
2940           if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2941             goto drop;
2942
2943           if (tc0->snd_una != tc0->snd_nxt)
2944             goto drop;
2945
2946           tcp_connection_timers_reset (tc0);
2947           tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
2948           tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
2949           session_transport_closed_notify (&tc0->connection);
2950           goto drop;
2951
2952           break;
2953         case TCP_STATE_LAST_ACK:
2954           /* The only thing that [should] arrive in this state is an
2955            * acknowledgment of our FIN. If our FIN is now acknowledged,
2956            * delete the TCB, enter the CLOSED state, and return. */
2957
2958           if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2959             goto drop;
2960
2961           /* Apparently our ACK for the peer's FIN was lost */
2962           if (is_fin0 && tc0->snd_una != tc0->snd_nxt)
2963             {
2964               tcp_send_fin (tc0);
2965               goto drop;
2966             }
2967
2968           tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
2969           session_transport_closed_notify (&tc0->connection);
2970
2971           /* Don't free the connection from the data path since
2972            * we can't ensure that we have no packets already enqueued
2973            * to output. Rely instead on the waitclose timer */
2974           tcp_connection_timers_reset (tc0);
2975           tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.cleanup_time);
2976
2977           goto drop;
2978
2979           break;
2980         case TCP_STATE_TIME_WAIT:
2981           /* The only thing that can arrive in this state is a
2982            * retransmission of the remote FIN. Acknowledge it, and restart
2983            * the 2 MSL timeout. */
2984
2985           if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2986             goto drop;
2987
2988           if (!is_fin0)
2989             goto drop;
2990
2991           tcp_program_ack (tc0);
2992           tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
2993           goto drop;
2994
2995           break;
2996         default:
2997           ASSERT (0);
2998         }
2999
3000       /* 6: check the URG bit TODO */
3001
3002       /* 7: process the segment text */
3003       switch (tc0->state)
3004         {
3005         case TCP_STATE_ESTABLISHED:
3006         case TCP_STATE_FIN_WAIT_1:
3007         case TCP_STATE_FIN_WAIT_2:
3008           if (vnet_buffer (b0)->tcp.data_len)
3009             error0 = tcp_segment_rcv (wrk, tc0, b0);
3010           break;
3011         case TCP_STATE_CLOSE_WAIT:
3012         case TCP_STATE_CLOSING:
3013         case TCP_STATE_LAST_ACK:
3014         case TCP_STATE_TIME_WAIT:
3015           /* This should not occur, since a FIN has been received from the
3016            * remote side.  Ignore the segment text. */
3017           break;
3018         }
3019
3020       /* 8: check the FIN bit */
3021       if (!is_fin0)
3022         goto drop;
3023
3024       TCP_EVT (TCP_EVT_FIN_RCVD, tc0);
3025
3026       switch (tc0->state)
3027         {
3028         case TCP_STATE_ESTABLISHED:
3029           /* Account for the FIN and send ack */
3030           tc0->rcv_nxt += 1;
3031           tcp_program_ack (tc0);
3032           tcp_connection_set_state (tc0, TCP_STATE_CLOSE_WAIT);
3033           tcp_program_disconnect (wrk, tc0);
3034           tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.closewait_time);
3035           break;
3036         case TCP_STATE_SYN_RCVD:
3037           /* Send FIN-ACK, enter LAST-ACK and because the app was not
3038            * notified yet, set a cleanup timer instead of relying on
3039            * disconnect notify and the implicit close call. */
3040           tcp_connection_timers_reset (tc0);
3041           tc0->rcv_nxt += 1;
3042           tcp_send_fin (tc0);
3043           tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
3044           tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.lastack_time);
3045           break;
3046         case TCP_STATE_CLOSE_WAIT:
3047         case TCP_STATE_CLOSING:
3048         case TCP_STATE_LAST_ACK:
3049           /* move along .. */
3050           break;
3051         case TCP_STATE_FIN_WAIT_1:
3052           tc0->rcv_nxt += 1;
3053
3054           if (tc0->flags & TCP_CONN_FINPNDG)
3055             {
3056               /* If data is outstanding, stay in FIN_WAIT_1 and try to finish
3057                * sending it. Since we already received a fin, do not wait
3058                * for too long. */
3059               tc0->flags |= TCP_CONN_FINRCVD;
3060               tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
3061                                 tcp_cfg.closewait_time);
3062             }
3063           else
3064             {
3065               tcp_connection_set_state (tc0, TCP_STATE_CLOSING);
3066               tcp_program_ack (tc0);
3067               /* Wait for ACK for our FIN but not forever */
3068               tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
3069                                 tcp_cfg.closing_time);
3070             }
3071           break;
3072         case TCP_STATE_FIN_WAIT_2:
3073           /* Got FIN, send ACK! Be more aggressive with resource cleanup */
3074           tc0->rcv_nxt += 1;
3075           tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
3076           tcp_connection_timers_reset (tc0);
3077           tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
3078           tcp_program_ack (tc0);
3079           session_transport_closed_notify (&tc0->connection);
3080           break;
3081         case TCP_STATE_TIME_WAIT:
3082           /* Remain in the TIME-WAIT state. Restart the time-wait
3083            * timeout.
3084            */
3085           tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
3086           break;
3087         }
3088       error0 = TCP_ERROR_FIN_RCVD;
3089
3090     drop:
3091
3092       tcp_inc_counter (rcv_process, error0, 1);
3093       if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3094         {
3095           tcp_rx_trace_t *t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
3096           tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
3097         }
3098     }
3099
3100   errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
3101                                               thread_index);
3102   tcp_inc_counter (rcv_process, TCP_ERROR_MSG_QUEUE_FULL, errors);
3103   tcp_handle_postponed_dequeues (wrk);
3104   tcp_handle_disconnects (wrk);
3105   vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3106
3107   return from_frame->n_vectors;
3108 }
3109
3110 VLIB_NODE_FN (tcp4_rcv_process_node) (vlib_main_t * vm,
3111                                       vlib_node_runtime_t * node,
3112                                       vlib_frame_t * from_frame)
3113 {
3114   return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3115 }
3116
3117 VLIB_NODE_FN (tcp6_rcv_process_node) (vlib_main_t * vm,
3118                                       vlib_node_runtime_t * node,
3119                                       vlib_frame_t * from_frame)
3120 {
3121   return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3122 }
3123
3124 /* *INDENT-OFF* */
3125 VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
3126 {
3127   .name = "tcp4-rcv-process",
3128   /* Takes a vector of packets. */
3129   .vector_size = sizeof (u32),
3130   .n_errors = TCP_N_ERROR,
3131   .error_strings = tcp_error_strings,
3132   .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3133   .next_nodes =
3134   {
3135 #define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3136     foreach_tcp_state_next
3137 #undef _
3138   },
3139   .format_trace = format_tcp_rx_trace_short,
3140 };
3141 /* *INDENT-ON* */
3142
3143 /* *INDENT-OFF* */
3144 VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
3145 {
3146   .name = "tcp6-rcv-process",
3147   /* Takes a vector of packets. */
3148   .vector_size = sizeof (u32),
3149   .n_errors = TCP_N_ERROR,
3150   .error_strings = tcp_error_strings,
3151   .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3152   .next_nodes =
3153   {
3154 #define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3155     foreach_tcp_state_next
3156 #undef _
3157   },
3158   .format_trace = format_tcp_rx_trace_short,
3159 };
3160 /* *INDENT-ON* */
3161
3162 /**
3163  * LISTEN state processing as per RFC 793 p. 65
3164  */
3165 always_inline uword
3166 tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3167                      vlib_frame_t * from_frame, int is_ip4)
3168 {
3169   u32 n_left_from, *from, n_syns = 0, *first_buffer;
3170   u32 my_thread_index = vm->thread_index;
3171   tcp_connection_t *tc0;
3172
3173   from = first_buffer = vlib_frame_vector_args (from_frame);
3174   n_left_from = from_frame->n_vectors;
3175
3176   while (n_left_from > 0)
3177     {
3178       u32 bi0;
3179       vlib_buffer_t *b0;
3180       tcp_rx_trace_t *t0;
3181       tcp_header_t *th0 = 0;
3182       tcp_connection_t *lc0;
3183       ip4_header_t *ip40;
3184       ip6_header_t *ip60;
3185       tcp_connection_t *child0;
3186       u32 error0 = TCP_ERROR_NONE;
3187
3188       bi0 = from[0];
3189       from += 1;
3190       n_left_from -= 1;
3191
3192       b0 = vlib_get_buffer (vm, bi0);
3193       lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index);
3194       if (PREDICT_FALSE (lc0 == 0))
3195         {
3196           tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
3197                                     my_thread_index);
3198           /* clean up the old session */
3199           lc0 = tcp_lookup_listener (b0, tc0->c_fib_index, is_ip4);
3200           tcp_connection_del (tc0);
3201         }
3202
3203       if (is_ip4)
3204         {
3205           ip40 = vlib_buffer_get_current (b0);
3206           th0 = ip4_next_header (ip40);
3207         }
3208       else
3209         {
3210           ip60 = vlib_buffer_get_current (b0);
3211           th0 = ip6_next_header (ip60);
3212         }
3213
3214       /* Create child session. For syn-flood protection use filter */
3215
3216       /* 1. first check for an RST: handled in dispatch */
3217       /* if (tcp_rst (th0))
3218          goto drop;
3219        */
3220
3221       /* 2. second check for an ACK: handled in dispatch */
3222       /* if (tcp_ack (th0))
3223          {
3224          tcp_send_reset (b0, is_ip4);
3225          goto drop;
3226          }
3227        */
3228
3229       /* 3. check for a SYN (did that already) */
3230
3231       /* Make sure connection wasn't just created */
3232       child0 = tcp_lookup_connection (lc0->c_fib_index, b0, my_thread_index,
3233                                       is_ip4);
3234       if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN))
3235         {
3236           error0 = TCP_ERROR_CREATE_EXISTS;
3237           goto drop;
3238         }
3239
3240       /* Create child session and send SYN-ACK */
3241       child0 = tcp_connection_alloc (my_thread_index);
3242       child0->c_lcl_port = th0->dst_port;
3243       child0->c_rmt_port = th0->src_port;
3244       child0->c_is_ip4 = is_ip4;
3245       child0->state = TCP_STATE_SYN_RCVD;
3246       child0->c_fib_index = lc0->c_fib_index;
3247       child0->cc_algo = lc0->cc_algo;
3248
3249       if (is_ip4)
3250         {
3251           child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32;
3252           child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32;
3253         }
3254       else
3255         {
3256           clib_memcpy_fast (&child0->c_lcl_ip6, &ip60->dst_address,
3257                             sizeof (ip6_address_t));
3258           clib_memcpy_fast (&child0->c_rmt_ip6, &ip60->src_address,
3259                             sizeof (ip6_address_t));
3260         }
3261
3262       if (tcp_options_parse (th0, &child0->rcv_opts, 1))
3263         {
3264           error0 = TCP_ERROR_OPTIONS;
3265           tcp_connection_free (child0);
3266           goto drop;
3267         }
3268
3269       child0->irs = vnet_buffer (b0)->tcp.seq_number;
3270       child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1;
3271       child0->rcv_las = child0->rcv_nxt;
3272       child0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
3273
3274       /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
3275        * segments are used to initialize PAWS. */
3276       if (tcp_opts_tstamp (&child0->rcv_opts))
3277         {
3278           child0->tsval_recent = child0->rcv_opts.tsval;
3279           child0->tsval_recent_age = tcp_time_now ();
3280         }
3281
3282       if (tcp_opts_wscale (&child0->rcv_opts))
3283         child0->snd_wscale = child0->rcv_opts.wscale;
3284
3285       child0->snd_wnd = clib_net_to_host_u16 (th0->window)
3286         << child0->snd_wscale;
3287       child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
3288       child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
3289
3290       tcp_connection_init_vars (child0);
3291       child0->rto = TCP_RTO_MIN;
3292
3293       if (session_stream_accept (&child0->connection, lc0->c_s_index,
3294                                  lc0->c_thread_index, 0 /* notify */ ))
3295         {
3296           tcp_connection_cleanup (child0);
3297           error0 = TCP_ERROR_CREATE_SESSION_FAIL;
3298           goto drop;
3299         }
3300
3301       TCP_EVT (TCP_EVT_SYN_RCVD, child0, 1);
3302       child0->tx_fifo_size = transport_tx_fifo_size (&child0->connection);
3303       tcp_send_synack (child0);
3304
3305     drop:
3306
3307       if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3308         {
3309           t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
3310           clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
3311           clib_memcpy_fast (&t0->tcp_connection, lc0,
3312                             sizeof (t0->tcp_connection));
3313         }
3314
3315       n_syns += (error0 == TCP_ERROR_NONE);
3316     }
3317
3318   tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
3319   vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3320
3321   return from_frame->n_vectors;
3322 }
3323
3324 VLIB_NODE_FN (tcp4_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3325                                  vlib_frame_t * from_frame)
3326 {
3327   return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3328 }
3329
3330 VLIB_NODE_FN (tcp6_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3331                                  vlib_frame_t * from_frame)
3332 {
3333   return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3334 }
3335
3336 /* *INDENT-OFF* */
3337 VLIB_REGISTER_NODE (tcp4_listen_node) =
3338 {
3339   .name = "tcp4-listen",
3340   /* Takes a vector of packets. */
3341   .vector_size = sizeof (u32),
3342   .n_errors = TCP_N_ERROR,
3343   .error_strings = tcp_error_strings,
3344   .n_next_nodes = TCP_LISTEN_N_NEXT,
3345   .next_nodes =
3346   {
3347 #define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3348     foreach_tcp_state_next
3349 #undef _
3350   },
3351   .format_trace = format_tcp_rx_trace_short,
3352 };
3353 /* *INDENT-ON* */
3354
3355 /* *INDENT-OFF* */
3356 VLIB_REGISTER_NODE (tcp6_listen_node) =
3357 {
3358   .name = "tcp6-listen",
3359   /* Takes a vector of packets. */
3360   .vector_size = sizeof (u32),
3361   .n_errors = TCP_N_ERROR,
3362   .error_strings = tcp_error_strings,
3363   .n_next_nodes = TCP_LISTEN_N_NEXT,
3364   .next_nodes =
3365   {
3366 #define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3367     foreach_tcp_state_next
3368 #undef _
3369   },
3370   .format_trace = format_tcp_rx_trace_short,
3371 };
3372 /* *INDENT-ON* */
3373
3374 typedef enum _tcp_input_next
3375 {
3376   TCP_INPUT_NEXT_DROP,
3377   TCP_INPUT_NEXT_LISTEN,
3378   TCP_INPUT_NEXT_RCV_PROCESS,
3379   TCP_INPUT_NEXT_SYN_SENT,
3380   TCP_INPUT_NEXT_ESTABLISHED,
3381   TCP_INPUT_NEXT_RESET,
3382   TCP_INPUT_NEXT_PUNT,
3383   TCP_INPUT_N_NEXT
3384 } tcp_input_next_t;
3385
3386 #define foreach_tcp4_input_next                 \
3387   _ (DROP, "ip4-drop")                          \
3388   _ (LISTEN, "tcp4-listen")                     \
3389   _ (RCV_PROCESS, "tcp4-rcv-process")           \
3390   _ (SYN_SENT, "tcp4-syn-sent")                 \
3391   _ (ESTABLISHED, "tcp4-established")           \
3392   _ (RESET, "tcp4-reset")                       \
3393   _ (PUNT, "ip4-punt")
3394
3395 #define foreach_tcp6_input_next                 \
3396   _ (DROP, "ip6-drop")                          \
3397   _ (LISTEN, "tcp6-listen")                     \
3398   _ (RCV_PROCESS, "tcp6-rcv-process")           \
3399   _ (SYN_SENT, "tcp6-syn-sent")                 \
3400   _ (ESTABLISHED, "tcp6-established")           \
3401   _ (RESET, "tcp6-reset")                       \
3402   _ (PUNT, "ip6-punt")
3403
3404 #define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
3405
3406 static void
3407 tcp_input_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
3408                        vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4)
3409 {
3410   tcp_connection_t *tc;
3411   tcp_header_t *tcp;
3412   tcp_rx_trace_t *t;
3413   int i;
3414
3415   for (i = 0; i < n_bufs; i++)
3416     {
3417       if (bs[i]->flags & VLIB_BUFFER_IS_TRACED)
3418         {
3419           t = vlib_add_trace (vm, node, bs[i], sizeof (*t));
3420           tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index,
3421                                    vm->thread_index);
3422           tcp = vlib_buffer_get_current (bs[i]);
3423           tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4);
3424         }
3425     }
3426 }
3427
3428 static void
3429 tcp_input_set_error_next (tcp_main_t * tm, u16 * next, u32 * error, u8 is_ip4)
3430 {
3431   if (*error == TCP_ERROR_FILTERED || *error == TCP_ERROR_WRONG_THREAD)
3432     {
3433       *next = TCP_INPUT_NEXT_DROP;
3434     }
3435   else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6))
3436     {
3437       *next = TCP_INPUT_NEXT_PUNT;
3438       *error = TCP_ERROR_PUNT;
3439     }
3440   else
3441     {
3442       *next = TCP_INPUT_NEXT_RESET;
3443       *error = TCP_ERROR_NO_LISTENER;
3444     }
3445 }
3446
3447 always_inline tcp_connection_t *
3448 tcp_input_lookup_buffer (vlib_buffer_t * b, u8 thread_index, u32 * error,
3449                          u8 is_ip4, u8 is_nolookup)
3450 {
3451   u32 fib_index = vnet_buffer (b)->ip.fib_index;
3452   int n_advance_bytes, n_data_bytes;
3453   transport_connection_t *tc;
3454   tcp_header_t *tcp;
3455   u8 result = 0;
3456
3457   if (is_ip4)
3458     {
3459       ip4_header_t *ip4 = vlib_buffer_get_current (b);
3460       int ip_hdr_bytes = ip4_header_bytes (ip4);
3461       if (PREDICT_FALSE (b->current_length < ip_hdr_bytes + sizeof (*tcp)))
3462         {
3463           *error = TCP_ERROR_LENGTH;
3464           return 0;
3465         }
3466       tcp = ip4_next_header (ip4);
3467       vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip4;
3468       n_advance_bytes = (ip_hdr_bytes + tcp_header_bytes (tcp));
3469       n_data_bytes = clib_net_to_host_u16 (ip4->length) - n_advance_bytes;
3470
3471       /* Length check. Checksum computed by ipx_local no need to compute again */
3472       if (PREDICT_FALSE (n_data_bytes < 0))
3473         {
3474           *error = TCP_ERROR_LENGTH;
3475           return 0;
3476         }
3477
3478       if (!is_nolookup)
3479         tc = session_lookup_connection_wt4 (fib_index, &ip4->dst_address,
3480                                             &ip4->src_address, tcp->dst_port,
3481                                             tcp->src_port,
3482                                             TRANSPORT_PROTO_TCP, thread_index,
3483                                             &result);
3484     }
3485   else
3486     {
3487       ip6_header_t *ip6 = vlib_buffer_get_current (b);
3488       if (PREDICT_FALSE (b->current_length < sizeof (*ip6) + sizeof (*tcp)))
3489         {
3490           *error = TCP_ERROR_LENGTH;
3491           return 0;
3492         }
3493       tcp = ip6_next_header (ip6);
3494       vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip6;
3495       n_advance_bytes = tcp_header_bytes (tcp);
3496       n_data_bytes = clib_net_to_host_u16 (ip6->payload_length)
3497         - n_advance_bytes;
3498       n_advance_bytes += sizeof (ip6[0]);
3499
3500       if (PREDICT_FALSE (n_data_bytes < 0))
3501         {
3502           *error = TCP_ERROR_LENGTH;
3503           return 0;
3504         }
3505
3506       if (!is_nolookup)
3507         {
3508           if (PREDICT_FALSE
3509               (ip6_address_is_link_local_unicast (&ip6->dst_address)))
3510             {
3511               ip4_main_t *im = &ip4_main;
3512               fib_index = vec_elt (im->fib_index_by_sw_if_index,
3513                                    vnet_buffer (b)->sw_if_index[VLIB_RX]);
3514             }
3515
3516           tc = session_lookup_connection_wt6 (fib_index, &ip6->dst_address,
3517                                               &ip6->src_address,
3518                                               tcp->dst_port, tcp->src_port,
3519                                               TRANSPORT_PROTO_TCP,
3520                                               thread_index, &result);
3521         }
3522     }
3523
3524   if (is_nolookup)
3525     tc =
3526       (transport_connection_t *) tcp_connection_get (vnet_buffer (b)->
3527                                                      tcp.connection_index,
3528                                                      thread_index);
3529
3530   vnet_buffer (b)->tcp.seq_number = clib_net_to_host_u32 (tcp->seq_number);
3531   vnet_buffer (b)->tcp.ack_number = clib_net_to_host_u32 (tcp->ack_number);
3532   vnet_buffer (b)->tcp.data_offset = n_advance_bytes;
3533   vnet_buffer (b)->tcp.data_len = n_data_bytes;
3534   vnet_buffer (b)->tcp.seq_end = vnet_buffer (b)->tcp.seq_number
3535     + n_data_bytes;
3536   vnet_buffer (b)->tcp.flags = 0;
3537
3538   *error = result ? TCP_ERROR_NONE + result : *error;
3539
3540   return tcp_get_connection_from_transport (tc);
3541 }
3542
3543 static inline void
3544 tcp_input_dispatch_buffer (tcp_main_t * tm, tcp_connection_t * tc,
3545                            vlib_buffer_t * b, u16 * next, u32 * error)
3546 {
3547   tcp_header_t *tcp;
3548   u8 flags;
3549
3550   tcp = tcp_buffer_hdr (b);
3551   flags = tcp->flags & filter_flags;
3552   *next = tm->dispatch_table[tc->state][flags].next;
3553   *error = tm->dispatch_table[tc->state][flags].error;
3554   tc->segs_in += 1;
3555
3556   if (PREDICT_FALSE (*error == TCP_ERROR_DISPATCH
3557                      || *next == TCP_INPUT_NEXT_RESET))
3558     {
3559       /* Overload tcp flags to store state */
3560       tcp_state_t state = tc->state;
3561       vnet_buffer (b)->tcp.flags = tc->state;
3562
3563       if (*error == TCP_ERROR_DISPATCH)
3564         clib_warning ("tcp conn %u disp error state %U flags %U",
3565                       tc->c_c_index, format_tcp_state, state,
3566                       format_tcp_flags, (int) flags);
3567     }
3568 }
3569
3570 always_inline uword
3571 tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3572                     vlib_frame_t * frame, int is_ip4, u8 is_nolookup)
3573 {
3574   u32 n_left_from, *from, thread_index = vm->thread_index;
3575   tcp_main_t *tm = vnet_get_tcp_main ();
3576   vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
3577   u16 nexts[VLIB_FRAME_SIZE], *next;
3578
3579   tcp_set_time_now (tcp_get_worker (thread_index));
3580
3581   from = vlib_frame_vector_args (frame);
3582   n_left_from = frame->n_vectors;
3583   vlib_get_buffers (vm, from, bufs, n_left_from);
3584
3585   b = bufs;
3586   next = nexts;
3587
3588   while (n_left_from >= 4)
3589     {
3590       u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER;
3591       tcp_connection_t *tc0, *tc1;
3592
3593       {
3594         vlib_prefetch_buffer_header (b[2], STORE);
3595         CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3596
3597         vlib_prefetch_buffer_header (b[3], STORE);
3598         CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3599       }
3600
3601       next[0] = next[1] = TCP_INPUT_NEXT_DROP;
3602
3603       tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
3604                                      is_nolookup);
3605       tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4,
3606                                      is_nolookup);
3607
3608       if (PREDICT_TRUE (!tc0 + !tc1 == 0))
3609         {
3610           ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
3611           ASSERT (tcp_lookup_is_valid (tc1, b[1], tcp_buffer_hdr (b[1])));
3612
3613           vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3614           vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3615
3616           tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3617           tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3618         }
3619       else
3620         {
3621           if (PREDICT_TRUE (tc0 != 0))
3622             {
3623               ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
3624               vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3625               tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3626             }
3627           else
3628             tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3629
3630           if (PREDICT_TRUE (tc1 != 0))
3631             {
3632               ASSERT (tcp_lookup_is_valid (tc1, b[1], tcp_buffer_hdr (b[1])));
3633               vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3634               tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3635             }
3636           else
3637             tcp_input_set_error_next (tm, &next[1], &error1, is_ip4);
3638         }
3639
3640       b += 2;
3641       next += 2;
3642       n_left_from -= 2;
3643     }
3644   while (n_left_from > 0)
3645     {
3646       tcp_connection_t *tc0;
3647       u32 error0 = TCP_ERROR_NO_LISTENER;
3648
3649       if (n_left_from > 1)
3650         {
3651           vlib_prefetch_buffer_header (b[1], STORE);
3652           CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3653         }
3654
3655       next[0] = TCP_INPUT_NEXT_DROP;
3656       tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
3657                                      is_nolookup);
3658       if (PREDICT_TRUE (tc0 != 0))
3659         {
3660           ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
3661           vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3662           tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3663         }
3664       else
3665         tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3666
3667       b += 1;
3668       next += 1;
3669       n_left_from -= 1;
3670     }
3671
3672   if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
3673     tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4);
3674
3675   vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
3676   return frame->n_vectors;
3677 }
3678
3679 VLIB_NODE_FN (tcp4_input_nolookup_node) (vlib_main_t * vm,
3680                                          vlib_node_runtime_t * node,
3681                                          vlib_frame_t * from_frame)
3682 {
3683   return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
3684                              1 /* is_nolookup */ );
3685 }
3686
3687 VLIB_NODE_FN (tcp6_input_nolookup_node) (vlib_main_t * vm,
3688                                          vlib_node_runtime_t * node,
3689                                          vlib_frame_t * from_frame)
3690 {
3691   return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3692                              1 /* is_nolookup */ );
3693 }
3694
3695 /* *INDENT-OFF* */
3696 VLIB_REGISTER_NODE (tcp4_input_nolookup_node) =
3697 {
3698   .name = "tcp4-input-nolookup",
3699   /* Takes a vector of packets. */
3700   .vector_size = sizeof (u32),
3701   .n_errors = TCP_N_ERROR,
3702   .error_strings = tcp_error_strings,
3703   .n_next_nodes = TCP_INPUT_N_NEXT,
3704   .next_nodes =
3705   {
3706 #define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3707     foreach_tcp4_input_next
3708 #undef _
3709   },
3710   .format_buffer = format_tcp_header,
3711   .format_trace = format_tcp_rx_trace,
3712 };
3713 /* *INDENT-ON* */
3714
3715 /* *INDENT-OFF* */
3716 VLIB_REGISTER_NODE (tcp6_input_nolookup_node) =
3717 {
3718   .name = "tcp6-input-nolookup",
3719   /* Takes a vector of packets. */
3720   .vector_size = sizeof (u32),
3721   .n_errors = TCP_N_ERROR,
3722   .error_strings = tcp_error_strings,
3723   .n_next_nodes = TCP_INPUT_N_NEXT,
3724   .next_nodes =
3725   {
3726 #define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3727     foreach_tcp6_input_next
3728 #undef _
3729   },
3730   .format_buffer = format_tcp_header,
3731   .format_trace = format_tcp_rx_trace,
3732 };
3733 /* *INDENT-ON* */
3734
3735 VLIB_NODE_FN (tcp4_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3736                                 vlib_frame_t * from_frame)
3737 {
3738   return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
3739                              0 /* is_nolookup */ );
3740 }
3741
3742 VLIB_NODE_FN (tcp6_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3743                                 vlib_frame_t * from_frame)
3744 {
3745   return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3746                              0 /* is_nolookup */ );
3747 }
3748
3749 /* *INDENT-OFF* */
3750 VLIB_REGISTER_NODE (tcp4_input_node) =
3751 {
3752   .name = "tcp4-input",
3753   /* Takes a vector of packets. */
3754   .vector_size = sizeof (u32),
3755   .n_errors = TCP_N_ERROR,
3756   .error_strings = tcp_error_strings,
3757   .n_next_nodes = TCP_INPUT_N_NEXT,
3758   .next_nodes =
3759   {
3760 #define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3761     foreach_tcp4_input_next
3762 #undef _
3763   },
3764   .format_buffer = format_tcp_header,
3765   .format_trace = format_tcp_rx_trace,
3766 };
3767 /* *INDENT-ON* */
3768
3769 /* *INDENT-OFF* */
3770 VLIB_REGISTER_NODE (tcp6_input_node) =
3771 {
3772   .name = "tcp6-input",
3773   /* Takes a vector of packets. */
3774   .vector_size = sizeof (u32),
3775   .n_errors = TCP_N_ERROR,
3776   .error_strings = tcp_error_strings,
3777   .n_next_nodes = TCP_INPUT_N_NEXT,
3778   .next_nodes =
3779   {
3780 #define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3781     foreach_tcp6_input_next
3782 #undef _
3783   },
3784   .format_buffer = format_tcp_header,
3785   .format_trace = format_tcp_rx_trace,
3786 };
3787 /* *INDENT-ON* */
3788
3789 #ifndef CLIB_MARCH_VARIANT
3790 static void
3791 tcp_dispatch_table_init (tcp_main_t * tm)
3792 {
3793   int i, j;
3794   for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3795     for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3796       {
3797         tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3798         tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3799       }
3800
3801 #define _(t,f,n,e)                                              \
3802 do {                                                            \
3803     tm->dispatch_table[TCP_STATE_##t][f].next = (n);            \
3804     tm->dispatch_table[TCP_STATE_##t][f].error = (e);           \
3805 } while (0)
3806
3807   /* RFC 793: In LISTEN if RST drop and if ACK return RST */
3808   _(LISTEN, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3809   _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_ACK_INVALID);
3810   _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_INVALID_CONNECTION);
3811   _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
3812   _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3813     TCP_ERROR_ACK_INVALID);
3814   _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3815     TCP_ERROR_SEGMENT_INVALID);
3816   _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3817     TCP_ERROR_SEGMENT_INVALID);
3818   _(LISTEN, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3819     TCP_ERROR_INVALID_CONNECTION);
3820   _(LISTEN, TCP_FLAG_FIN, TCP_INPUT_NEXT_RESET, TCP_ERROR_SEGMENT_INVALID);
3821   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3822     TCP_ERROR_SEGMENT_INVALID);
3823   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3824     TCP_ERROR_SEGMENT_INVALID);
3825   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3826     TCP_ERROR_NONE);
3827   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_DROP,
3828     TCP_ERROR_SEGMENT_INVALID);
3829   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3830     TCP_ERROR_SEGMENT_INVALID);
3831   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3832     TCP_ERROR_SEGMENT_INVALID);
3833   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3834     TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3835   /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3836   _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3837   _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3838   _(SYN_RCVD, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3839     TCP_ERROR_NONE);
3840   _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3841   _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3842     TCP_ERROR_NONE);
3843   _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3844     TCP_ERROR_NONE);
3845   _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3846     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3847   _(SYN_RCVD, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3848   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3849     TCP_ERROR_NONE);
3850   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3851     TCP_ERROR_NONE);
3852   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3853     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3854   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3855     TCP_ERROR_NONE);
3856   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3857     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3858   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3859     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3860   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3861     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3862   _(SYN_RCVD, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3863   /* SYN-ACK for a SYN */
3864   _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3865     TCP_ERROR_NONE);
3866   _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3867   _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3868   _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3869     TCP_ERROR_NONE);
3870   _(SYN_SENT, TCP_FLAG_FIN, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3871   _(SYN_SENT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3872     TCP_ERROR_NONE);
3873   /* ACK for for established connection -> tcp-established. */
3874   _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3875   /* FIN for for established connection -> tcp-established. */
3876   _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3877   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3878     TCP_ERROR_NONE);
3879   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3880     TCP_ERROR_NONE);
3881   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3882     TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3883   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED,
3884     TCP_ERROR_NONE);
3885   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3886     TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3887   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3888     TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3889   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3890     TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3891   _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3892   _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3893     TCP_ERROR_NONE);
3894   _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3895   _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3896     TCP_ERROR_NONE);
3897   _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3898     TCP_ERROR_NONE);
3899   _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3900     TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3901   _(ESTABLISHED, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3902   /* ACK or FIN-ACK to our FIN */
3903   _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3904   _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
3905     TCP_ERROR_NONE);
3906   /* FIN in reply to our FIN from the other side */
3907   _(FIN_WAIT_1, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3908   _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3909   _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3910     TCP_ERROR_NONE);
3911   _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3912     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3913   _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3914     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3915   _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3916     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3917   _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3918     TCP_ERROR_NONE);
3919   _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3920     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3921   _(FIN_WAIT_1, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3922   _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3923     TCP_ERROR_NONE);
3924   _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3925     TCP_ERROR_NONE);
3926   _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3927     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3928   _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3929   _(FIN_WAIT_1, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3930     TCP_ERROR_NONE);
3931   _(CLOSING, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3932   _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3933   _(CLOSING, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3934   _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3935     TCP_ERROR_NONE);
3936   _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3937     TCP_ERROR_NONE);
3938   _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3939     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3940   _(CLOSING, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3941   _(CLOSING, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3942     TCP_ERROR_NONE);
3943   _(CLOSING, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3944   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3945     TCP_ERROR_NONE);
3946   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3947     TCP_ERROR_NONE);
3948   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3949     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3950   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3951     TCP_ERROR_NONE);
3952   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3953     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3954   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3955     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3956   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3957     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3958   /* FIN confirming that the peer (app) has closed */
3959   _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3960   _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3961   _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3962     TCP_ERROR_NONE);
3963   _(FIN_WAIT_2, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3964   _(FIN_WAIT_2, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3965     TCP_ERROR_NONE);
3966   _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3967   _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3968     TCP_ERROR_NONE);
3969   _(CLOSE_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3970   _(CLOSE_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3971     TCP_ERROR_NONE);
3972   _(LAST_ACK, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3973   _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3974   _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3975   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3976     TCP_ERROR_NONE);
3977   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3978     TCP_ERROR_NONE);
3979   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3980     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3981   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3982     TCP_ERROR_NONE);
3983   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3984     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3985   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3986     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3987   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3988     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3989   _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3990   _(LAST_ACK, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3991     TCP_ERROR_NONE);
3992   _(LAST_ACK, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3993   _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3994     TCP_ERROR_NONE);
3995   _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3996     TCP_ERROR_NONE);
3997   _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3998     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3999   _(TIME_WAIT, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
4000   _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4001   _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4002     TCP_ERROR_NONE);
4003   _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4004   _(TIME_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4005     TCP_ERROR_NONE);
4006   _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4007   /* RFC793 CLOSED: An incoming segment containing a RST is discarded. An
4008    * incoming segment not containing a RST causes a RST to be sent in
4009    * response.*/
4010   _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
4011   _(CLOSED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
4012     TCP_ERROR_CONNECTION_CLOSED);
4013   _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
4014   _(CLOSED, TCP_FLAG_SYN, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
4015   _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
4016     TCP_ERROR_NONE);
4017 #undef _
4018 }
4019
4020 static clib_error_t *
4021 tcp_input_init (vlib_main_t * vm)
4022 {
4023   clib_error_t *error = 0;
4024   tcp_main_t *tm = vnet_get_tcp_main ();
4025
4026   if ((error = vlib_call_init_function (vm, tcp_init)))
4027     return error;
4028
4029   /* Initialize dispatch table. */
4030   tcp_dispatch_table_init (tm);
4031
4032   return error;
4033 }
4034
4035 VLIB_INIT_FUNCTION (tcp_input_init);
4036
4037 #endif /* CLIB_MARCH_VARIANT */
4038
4039 /*
4040  * fd.io coding-style-patch-verification: ON
4041  *
4042  * Local Variables:
4043  * eval: (c-set-style "gnu")
4044  * End:
4045  */