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