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