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