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