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