tcp: fix tcp_connection_cleanup() with uninitialized elog
[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.h>
20 #include <vnet/tcp/tcp_inlines.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  * RFC1323: Check against wrapped sequence numbers (PAWS). If we have
120  * timestamp to echo and it's less than tsval_recent, drop segment
121  * but still send an ACK in order to retain TCP's mechanism for detecting
122  * and recovering from half-open connections
123  *
124  * Or at least that's what the theory says. It seems that this might not work
125  * very well with packet reordering and fast retransmit. XXX
126  */
127 always_inline int
128 tcp_segment_check_paws (tcp_connection_t * tc)
129 {
130   return tcp_opts_tstamp (&tc->rcv_opts)
131     && timestamp_lt (tc->rcv_opts.tsval, tc->tsval_recent);
132 }
133
134 /**
135  * Update tsval recent
136  */
137 always_inline void
138 tcp_update_timestamp (tcp_connection_t * tc, u32 seq, u32 seq_end)
139 {
140   /*
141    * RFC1323: If Last.ACK.sent falls within the range of sequence numbers
142    * of an incoming segment:
143    *    SEG.SEQ <= Last.ACK.sent < SEG.SEQ + SEG.LEN
144    * then the TSval from the segment is copied to TS.Recent;
145    * otherwise, the TSval is ignored.
146    */
147   if (tcp_opts_tstamp (&tc->rcv_opts) && seq_leq (seq, tc->rcv_las)
148       && seq_leq (tc->rcv_las, seq_end))
149     {
150       ASSERT (timestamp_leq (tc->tsval_recent, tc->rcv_opts.tsval));
151       tc->tsval_recent = tc->rcv_opts.tsval;
152       tc->tsval_recent_age = tcp_time_now_w_thread (tc->c_thread_index);
153     }
154 }
155
156 static void
157 tcp_handle_rst (tcp_connection_t * tc)
158 {
159   switch (tc->rst_state)
160     {
161     case TCP_STATE_SYN_RCVD:
162       /* Cleanup everything. App wasn't notified yet */
163       session_transport_delete_notify (&tc->connection);
164       tcp_connection_cleanup (tc);
165       break;
166     case TCP_STATE_SYN_SENT:
167       session_stream_connect_notify (&tc->connection, 1 /* fail */ );
168       tcp_connection_cleanup (tc);
169       break;
170     case TCP_STATE_ESTABLISHED:
171       session_transport_reset_notify (&tc->connection);
172       session_transport_closed_notify (&tc->connection);
173       break;
174     case TCP_STATE_CLOSE_WAIT:
175     case TCP_STATE_FIN_WAIT_1:
176     case TCP_STATE_FIN_WAIT_2:
177     case TCP_STATE_CLOSING:
178     case TCP_STATE_LAST_ACK:
179       session_transport_closed_notify (&tc->connection);
180       break;
181     case TCP_STATE_CLOSED:
182     case TCP_STATE_TIME_WAIT:
183       break;
184     default:
185       TCP_DBG ("reset state: %u", tc->state);
186     }
187 }
188
189 static void
190 tcp_program_reset_ntf (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
191 {
192   if (!tcp_disconnect_pending (tc))
193     {
194       tc->rst_state = tc->state;
195       vec_add1 (wrk->pending_resets, tc->c_c_index);
196       tcp_disconnect_pending_on (tc);
197     }
198 }
199
200 /**
201  * Handle reset packet
202  *
203  * Programs disconnect/reset notification that should be sent
204  * later by calling @ref tcp_handle_disconnects
205  */
206 static void
207 tcp_rcv_rst (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
208 {
209   TCP_EVT (TCP_EVT_RST_RCVD, tc);
210   switch (tc->state)
211     {
212     case TCP_STATE_SYN_RCVD:
213       tcp_program_reset_ntf (wrk, tc);
214       tcp_connection_set_state (tc, TCP_STATE_CLOSED);
215       break;
216     case TCP_STATE_SYN_SENT:
217       /* Do not program ntf because the connection is half-open */
218       tcp_handle_rst (tc);
219       break;
220     case TCP_STATE_ESTABLISHED:
221       tcp_connection_timers_reset (tc);
222       tcp_cong_recovery_off (tc);
223       tcp_program_reset_ntf (wrk, tc);
224       tcp_connection_set_state (tc, TCP_STATE_CLOSED);
225       tcp_program_cleanup (wrk, tc);
226       break;
227     case TCP_STATE_CLOSE_WAIT:
228     case TCP_STATE_FIN_WAIT_1:
229     case TCP_STATE_FIN_WAIT_2:
230     case TCP_STATE_CLOSING:
231     case TCP_STATE_LAST_ACK:
232       tcp_connection_timers_reset (tc);
233       tcp_cong_recovery_off (tc);
234       tcp_program_reset_ntf (wrk, tc);
235       /* Make sure we mark the session as closed. In some states we may
236        * be still trying to send data */
237       tcp_connection_set_state (tc, TCP_STATE_CLOSED);
238       tcp_program_cleanup (wrk, tc);
239       break;
240     case TCP_STATE_CLOSED:
241     case TCP_STATE_TIME_WAIT:
242       break;
243     default:
244       TCP_DBG ("reset state: %u", tc->state);
245     }
246 }
247
248 /**
249  * Validate incoming segment as per RFC793 p. 69 and RFC1323 p. 19
250  *
251  * It first verifies if segment has a wrapped sequence number (PAWS) and then
252  * does the processing associated to the first four steps (ignoring security
253  * and precedence): sequence number, rst bit and syn bit checks.
254  *
255  * @return 0 if segments passes validation.
256  */
257 static int
258 tcp_segment_validate (tcp_worker_ctx_t * wrk, tcp_connection_t * tc0,
259                       vlib_buffer_t * b0, tcp_header_t * th0, u32 * error0)
260 {
261   /* We could get a burst of RSTs interleaved with acks */
262   if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
263     {
264       tcp_send_reset (tc0);
265       *error0 = TCP_ERROR_CONNECTION_CLOSED;
266       goto error;
267     }
268
269   if (PREDICT_FALSE (!tcp_ack (th0) && !tcp_rst (th0) && !tcp_syn (th0)))
270     {
271       *error0 = TCP_ERROR_SEGMENT_INVALID;
272       goto error;
273     }
274
275   if (PREDICT_FALSE (tcp_options_parse (th0, &tc0->rcv_opts, 0)))
276     {
277       *error0 = TCP_ERROR_OPTIONS;
278       goto error;
279     }
280
281   if (PREDICT_FALSE (tcp_segment_check_paws (tc0)))
282     {
283       *error0 = TCP_ERROR_PAWS;
284       TCP_EVT (TCP_EVT_PAWS_FAIL, tc0, vnet_buffer (b0)->tcp.seq_number,
285                vnet_buffer (b0)->tcp.seq_end);
286
287       /* If it just so happens that a segment updates tsval_recent for a
288        * segment over 24 days old, invalidate tsval_recent. */
289       if (timestamp_lt (tc0->tsval_recent_age + TCP_PAWS_IDLE,
290                         tcp_time_now_w_thread (tc0->c_thread_index)))
291         {
292           tc0->tsval_recent = tc0->rcv_opts.tsval;
293           clib_warning ("paws failed: 24-day old segment");
294         }
295       /* Drop after ack if not rst. Resets can fail paws check as per
296        * RFC 7323 sec. 5.2: When an <RST> segment is received, it MUST NOT
297        * be subjected to the PAWS check by verifying an acceptable value in
298        * SEG.TSval */
299       else if (!tcp_rst (th0))
300         {
301           tcp_program_ack (tc0);
302           TCP_EVT (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
303           goto error;
304         }
305     }
306
307   /* 1st: check sequence number */
308   if (!tcp_segment_in_rcv_wnd (tc0, vnet_buffer (b0)->tcp.seq_number,
309                                vnet_buffer (b0)->tcp.seq_end))
310     {
311       /* SYN/SYN-ACK retransmit */
312       if (tcp_syn (th0)
313           && vnet_buffer (b0)->tcp.seq_number == tc0->rcv_nxt - 1)
314         {
315           tcp_options_parse (th0, &tc0->rcv_opts, 1);
316           if (tc0->state == TCP_STATE_SYN_RCVD)
317             {
318               tcp_send_synack (tc0);
319               TCP_EVT (TCP_EVT_SYN_RCVD, tc0, 0);
320               *error0 = TCP_ERROR_SYNS_RCVD;
321             }
322           else
323             {
324               tcp_program_ack (tc0);
325               TCP_EVT (TCP_EVT_SYNACK_RCVD, tc0);
326               *error0 = TCP_ERROR_SYN_ACKS_RCVD;
327             }
328           goto error;
329         }
330
331       /* If our window is 0 and the packet is in sequence, let it pass
332        * through for ack processing. It should be dropped later. */
333       if (tc0->rcv_wnd < tc0->snd_mss
334           && tc0->rcv_nxt == vnet_buffer (b0)->tcp.seq_number)
335         goto check_reset;
336
337       /* If we entered recovery and peer did so as well, there's a chance that
338        * dup acks won't be acceptable on either end because seq_end may be less
339        * than rcv_las. This can happen if acks are lost in both directions. */
340       if (tcp_in_recovery (tc0)
341           && seq_geq (vnet_buffer (b0)->tcp.seq_number,
342                       tc0->rcv_las - tc0->rcv_wnd)
343           && seq_leq (vnet_buffer (b0)->tcp.seq_end,
344                       tc0->rcv_nxt + tc0->rcv_wnd))
345         goto check_reset;
346
347       *error0 = TCP_ERROR_RCV_WND;
348
349       /* If we advertised a zero rcv_wnd and the segment is in the past or the
350        * next one that we expect, it is probably a window probe */
351       if ((tc0->flags & TCP_CONN_ZERO_RWND_SENT)
352           && seq_lt (vnet_buffer (b0)->tcp.seq_end,
353                      tc0->rcv_las + tc0->rcv_opts.mss))
354         *error0 = TCP_ERROR_ZERO_RWND;
355
356       tc0->errors.below_data_wnd += seq_lt (vnet_buffer (b0)->tcp.seq_end,
357                                             tc0->rcv_las);
358
359       /* If not RST, send dup ack */
360       if (!tcp_rst (th0))
361         {
362           tcp_program_dupack (tc0);
363           TCP_EVT (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
364         }
365       goto error;
366
367     check_reset:
368       ;
369     }
370
371   /* 2nd: check the RST bit */
372   if (PREDICT_FALSE (tcp_rst (th0)))
373     {
374       tcp_rcv_rst (wrk, tc0);
375       *error0 = TCP_ERROR_RST_RCVD;
376       goto error;
377     }
378
379   /* 3rd: check security and precedence (skip) */
380
381   /* 4th: check the SYN bit (in window) */
382   if (PREDICT_FALSE (tcp_syn (th0)))
383     {
384       /* As per RFC5961 send challenge ack instead of reset */
385       tcp_program_ack (tc0);
386       *error0 = TCP_ERROR_SPURIOUS_SYN;
387       goto error;
388     }
389
390   /* If segment in window, save timestamp */
391   tcp_update_timestamp (tc0, vnet_buffer (b0)->tcp.seq_number,
392                         vnet_buffer (b0)->tcp.seq_end);
393   return 0;
394
395 error:
396   return -1;
397 }
398
399 always_inline int
400 tcp_rcv_ack_no_cc (tcp_connection_t * tc, vlib_buffer_t * b, u32 * error)
401 {
402   /* SND.UNA =< SEG.ACK =< SND.NXT */
403   if (!(seq_leq (tc->snd_una, vnet_buffer (b)->tcp.ack_number)
404         && seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
405     {
406       if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)
407           && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
408         {
409           tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
410           goto acceptable;
411         }
412       *error = TCP_ERROR_ACK_INVALID;
413       return -1;
414     }
415
416 acceptable:
417   tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
418   tc->snd_una = vnet_buffer (b)->tcp.ack_number;
419   *error = TCP_ERROR_ACK_OK;
420   return 0;
421 }
422
423 /**
424  * Compute smoothed RTT as per VJ's '88 SIGCOMM and RFC6298
425  *
426  * Note that although the original article, srtt and rttvar are scaled
427  * to minimize round-off errors, here we don't. Instead, we rely on
428  * better precision time measurements.
429  */
430 static void
431 tcp_estimate_rtt (tcp_connection_t * tc, u32 mrtt)
432 {
433   int err, diff;
434
435   if (tc->srtt != 0)
436     {
437       err = mrtt - tc->srtt;
438
439       /* XXX Drop in RTT results in RTTVAR increase and bigger RTO.
440        * The increase should be bound */
441       tc->srtt = clib_max ((int) tc->srtt + (err >> 3), 1);
442       diff = (clib_abs (err) - (int) tc->rttvar) >> 2;
443       tc->rttvar = clib_max ((int) tc->rttvar + diff, 1);
444     }
445   else
446     {
447       /* First measurement. */
448       tc->srtt = mrtt;
449       tc->rttvar = mrtt >> 1;
450     }
451 }
452
453 static inline void
454 tcp_estimate_rtt_us (tcp_connection_t * tc, f64 mrtt)
455 {
456   tc->mrtt_us = tc->mrtt_us + (mrtt - tc->mrtt_us) * 0.125;
457 }
458
459 /**
460  * Update rtt estimate
461  *
462  * We have potentially three sources of rtt measurements:
463  *
464  * TSOPT        difference between current and echoed timestamp. It has ms
465  *              precision and can be computed per ack
466  * ACK timing   one sequence number is tracked per rtt with us (micro second)
467  *              precision.
468  * rate sample  if enabled, all outstanding bytes are tracked with us
469  *              precision. Every ack and sack are a rtt sample
470  *
471  * Middle boxes are known to fiddle with TCP options so we give higher
472  * priority to ACK timing.
473  *
474  * For now, rate sample rtts are only used under congestion.
475  */
476 static int
477 tcp_update_rtt (tcp_connection_t * tc, tcp_rate_sample_t * rs, u32 ack)
478 {
479   u32 mrtt = 0;
480
481   /* Karn's rule, part 1. Don't use retransmitted segments to estimate
482    * RTT because they're ambiguous. */
483   if (tcp_in_cong_recovery (tc))
484     {
485       /* Accept rtt estimates for samples that have not been retransmitted */
486       if (!(tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
487           || (rs->flags & TCP_BTS_IS_RXT))
488         goto done;
489       if (rs->rtt_time)
490         tcp_estimate_rtt_us (tc, rs->rtt_time);
491       mrtt = rs->rtt_time * THZ;
492       goto estimate_rtt;
493     }
494
495   if (tc->rtt_ts && seq_geq (ack, tc->rtt_seq))
496     {
497       f64 sample = tcp_time_now_us (tc->c_thread_index) - tc->rtt_ts;
498       tcp_estimate_rtt_us (tc, sample);
499       mrtt = clib_max ((u32) (sample * THZ), 1);
500       /* Allow measuring of a new RTT */
501       tc->rtt_ts = 0;
502     }
503   /* As per RFC7323 TSecr can be used for RTTM only if the segment advances
504    * snd_una, i.e., the left side of the send window:
505    * seq_lt (tc->snd_una, ack). This is a condition for calling update_rtt */
506   else if (tcp_opts_tstamp (&tc->rcv_opts) && tc->rcv_opts.tsecr)
507     {
508       u32 now = tcp_tstamp (tc);
509       mrtt = clib_max (now - tc->rcv_opts.tsecr, 1);
510     }
511
512 estimate_rtt:
513
514   /* Ignore dubious measurements */
515   if (mrtt == 0 || mrtt > TCP_RTT_MAX)
516     goto done;
517
518   tcp_estimate_rtt (tc, mrtt);
519
520 done:
521
522   /* If we got here something must've been ACKed so make sure boff is 0,
523    * even if mrtt is not valid since we update the rto lower */
524   tc->rto_boff = 0;
525   tcp_update_rto (tc);
526
527   return 0;
528 }
529
530 static void
531 tcp_estimate_initial_rtt (tcp_connection_t * tc)
532 {
533   u8 thread_index = vlib_num_workers ()? 1 : 0;
534   int mrtt;
535
536   if (tc->rtt_ts)
537     {
538       tc->mrtt_us = tcp_time_now_us (thread_index) - tc->rtt_ts;
539       tc->mrtt_us = clib_max (tc->mrtt_us, 0.0001);
540       mrtt = clib_max ((u32) (tc->mrtt_us * THZ), 1);
541       tc->rtt_ts = 0;
542     }
543   else
544     {
545       mrtt = tcp_time_now_w_thread (thread_index) - tc->rcv_opts.tsecr;
546       mrtt = clib_max (mrtt, 1);
547       /* Due to retransmits we don't know the initial mrtt */
548       if (tc->rto_boff && mrtt > 1 * THZ)
549         mrtt = 1 * THZ;
550       tc->mrtt_us = (f64) mrtt *TCP_TICK;
551     }
552
553   if (mrtt > 0 && mrtt < TCP_RTT_MAX)
554     tcp_estimate_rtt (tc, mrtt);
555   tcp_update_rto (tc);
556 }
557
558 /**
559  * Dequeue bytes for connections that have received acks in last burst
560  */
561 static void
562 tcp_handle_postponed_dequeues (tcp_worker_ctx_t * wrk)
563 {
564   u32 thread_index = wrk->vm->thread_index;
565   u32 *pending_deq_acked;
566   tcp_connection_t *tc;
567   int i;
568
569   if (!vec_len (wrk->pending_deq_acked))
570     return;
571
572   pending_deq_acked = wrk->pending_deq_acked;
573   for (i = 0; i < vec_len (pending_deq_acked); i++)
574     {
575       tc = tcp_connection_get (pending_deq_acked[i], thread_index);
576       tc->flags &= ~TCP_CONN_DEQ_PENDING;
577
578       if (PREDICT_FALSE (!tc->burst_acked))
579         continue;
580
581       /* Dequeue the newly ACKed bytes */
582       session_tx_fifo_dequeue_drop (&tc->connection, tc->burst_acked);
583       tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
584
585       if (PREDICT_FALSE (tc->flags & TCP_CONN_PSH_PENDING))
586         {
587           if (seq_leq (tc->psh_seq, tc->snd_una))
588             tc->flags &= ~TCP_CONN_PSH_PENDING;
589         }
590
591       if (tcp_is_descheduled (tc))
592         tcp_reschedule (tc);
593
594       /* If everything has been acked, stop retransmit timer
595        * otherwise update. */
596       tcp_retransmit_timer_update (&wrk->timer_wheel, tc);
597
598       /* Update pacer based on our new cwnd estimate */
599       tcp_connection_tx_pacer_update (tc);
600
601       tc->burst_acked = 0;
602     }
603   _vec_len (wrk->pending_deq_acked) = 0;
604 }
605
606 static void
607 tcp_program_dequeue (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
608 {
609   if (!(tc->flags & TCP_CONN_DEQ_PENDING))
610     {
611       vec_add1 (wrk->pending_deq_acked, tc->c_c_index);
612       tc->flags |= TCP_CONN_DEQ_PENDING;
613     }
614   tc->burst_acked += tc->bytes_acked;
615 }
616
617 /**
618  * Try to update snd_wnd based on feedback received from peer.
619  *
620  * If successful, and new window is 'effectively' 0, activate persist
621  * timer.
622  */
623 static void
624 tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
625 {
626   /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
627    * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
628   if (seq_lt (tc->snd_wl1, seq)
629       || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
630     {
631       tc->snd_wnd = snd_wnd;
632       tc->snd_wl1 = seq;
633       tc->snd_wl2 = ack;
634       TCP_EVT (TCP_EVT_SND_WND, tc);
635
636       if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
637         {
638           /* Set persist timer if not set and we just got 0 wnd */
639           if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
640               && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
641             {
642               tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
643               tcp_persist_timer_set (&wrk->timer_wheel, tc);
644             }
645         }
646       else
647         {
648           if (PREDICT_FALSE (tcp_timer_is_active (tc, TCP_TIMER_PERSIST)))
649             {
650               tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
651               tcp_persist_timer_reset (&wrk->timer_wheel, tc);
652             }
653
654           if (PREDICT_FALSE (tcp_is_descheduled (tc)))
655             tcp_reschedule (tc);
656
657           if (PREDICT_FALSE (!tcp_in_recovery (tc) && tc->rto_boff > 0))
658             {
659               tc->rto_boff = 0;
660               tcp_update_rto (tc);
661             }
662         }
663     }
664 }
665
666 /**
667  * Init loss recovery/fast recovery.
668  *
669  * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
670  * updated in @ref tcp_cc_handle_event after fast retransmit
671  */
672 static void
673 tcp_cc_init_congestion (tcp_connection_t * tc)
674 {
675   tcp_fastrecovery_on (tc);
676   tc->snd_congestion = tc->snd_nxt;
677   tc->cwnd_acc_bytes = 0;
678   tc->snd_rxt_bytes = 0;
679   tc->rxt_delivered = 0;
680   tc->prr_delivered = 0;
681   tc->prr_start = tc->snd_una;
682   tc->prev_ssthresh = tc->ssthresh;
683   tc->prev_cwnd = tc->cwnd;
684
685   tc->snd_rxt_ts = tcp_tstamp (tc);
686   tcp_cc_congestion (tc);
687
688   /* Post retransmit update cwnd to ssthresh and account for the
689    * three segments that have left the network and should've been
690    * buffered at the receiver XXX */
691   if (!tcp_opts_sack_permitted (&tc->rcv_opts))
692     tc->cwnd += 3 * tc->snd_mss;
693
694   tc->fr_occurences += 1;
695   TCP_EVT (TCP_EVT_CC_EVT, tc, 4);
696 }
697
698 static void
699 tcp_cc_congestion_undo (tcp_connection_t * tc)
700 {
701   tc->cwnd = tc->prev_cwnd;
702   tc->ssthresh = tc->prev_ssthresh;
703   tcp_cc_undo_recovery (tc);
704   ASSERT (tc->rto_boff == 0);
705   TCP_EVT (TCP_EVT_CC_EVT, tc, 5);
706 }
707
708 static inline u8
709 tcp_cc_is_spurious_timeout_rxt (tcp_connection_t * tc)
710 {
711   return (tcp_in_recovery (tc) && tc->rto_boff == 1
712           && tc->snd_rxt_ts
713           && tcp_opts_tstamp (&tc->rcv_opts)
714           && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
715 }
716
717 static inline u8
718 tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
719 {
720   return (tcp_cc_is_spurious_timeout_rxt (tc));
721 }
722
723 static inline u8
724 tcp_should_fastrecover_sack (tcp_connection_t * tc)
725 {
726   return (tc->sack_sb.lost_bytes
727           || ((TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
728               < tc->sack_sb.sacked_bytes));
729 }
730
731 static inline u8
732 tcp_should_fastrecover (tcp_connection_t * tc, u8 has_sack)
733 {
734   if (!has_sack)
735     {
736       /* If of of the two conditions lower hold, reset dupacks because
737        * we're probably after timeout (RFC6582 heuristics).
738        * If Cumulative ack does not cover more than congestion threshold,
739        * and:
740        * 1) The following doesn't hold: The congestion window is greater
741        *    than SMSS bytes and the difference between highest_ack
742        *    and prev_highest_ack is at most 4*SMSS bytes
743        * 2) Echoed timestamp in the last non-dup ack does not equal the
744        *    stored timestamp
745        */
746       if (seq_leq (tc->snd_una, tc->snd_congestion)
747           && ((!(tc->cwnd > tc->snd_mss
748                  && tc->bytes_acked <= 4 * tc->snd_mss))
749               || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
750         {
751           tc->rcv_dupacks = 0;
752           return 0;
753         }
754     }
755   return ((tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
756           || tcp_should_fastrecover_sack (tc));
757 }
758
759 static int
760 tcp_cc_recover (tcp_connection_t * tc)
761 {
762   sack_scoreboard_hole_t *hole;
763   u8 is_spurious = 0;
764
765   ASSERT (tcp_in_cong_recovery (tc));
766
767   if (tcp_cc_is_spurious_retransmit (tc))
768     {
769       tcp_cc_congestion_undo (tc);
770       is_spurious = 1;
771     }
772
773   tcp_connection_tx_pacer_reset (tc, tc->cwnd, 0 /* start bucket */ );
774   tc->rcv_dupacks = 0;
775
776   /* Previous recovery left us congested. Continue sending as part
777    * of the current recovery event with an updated snd_congestion */
778   if (tc->sack_sb.sacked_bytes)
779     {
780       tc->snd_congestion = tc->snd_nxt;
781       tcp_program_retransmit (tc);
782       return is_spurious;
783     }
784
785   tc->rxt_delivered = 0;
786   tc->snd_rxt_bytes = 0;
787   tc->snd_rxt_ts = 0;
788   tc->prr_delivered = 0;
789   tc->rtt_ts = 0;
790   tc->flags &= ~TCP_CONN_RXT_PENDING;
791
792   hole = scoreboard_first_hole (&tc->sack_sb);
793   if (hole && hole->start == tc->snd_una && hole->end == tc->snd_nxt)
794     scoreboard_clear (&tc->sack_sb);
795
796   if (!tcp_in_recovery (tc) && !is_spurious)
797     tcp_cc_recovered (tc);
798
799   tcp_fastrecovery_off (tc);
800   tcp_fastrecovery_first_off (tc);
801   tcp_recovery_off (tc);
802   TCP_EVT (TCP_EVT_CC_EVT, tc, 3);
803
804   ASSERT (tc->rto_boff == 0);
805   ASSERT (!tcp_in_cong_recovery (tc));
806   ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
807
808   return is_spurious;
809 }
810
811 static void
812 tcp_cc_update (tcp_connection_t * tc, tcp_rate_sample_t * rs)
813 {
814   ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
815
816   /* Congestion avoidance */
817   tcp_cc_rcv_ack (tc, rs);
818
819   /* If a cumulative ack, make sure dupacks is 0 */
820   tc->rcv_dupacks = 0;
821
822   /* When dupacks hits the threshold we only enter fast retransmit if
823    * cumulative ack covers more than snd_congestion. Should snd_una
824    * wrap this test may fail under otherwise valid circumstances.
825    * Therefore, proactively update snd_congestion when wrap detected. */
826   if (PREDICT_FALSE
827       (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
828        && seq_gt (tc->snd_congestion, tc->snd_una)))
829     tc->snd_congestion = tc->snd_una - 1;
830 }
831
832 /**
833  * One function to rule them all ... and in the darkness bind them
834  */
835 static void
836 tcp_cc_handle_event (tcp_connection_t * tc, tcp_rate_sample_t * rs,
837                      u32 is_dack)
838 {
839   u8 has_sack = tcp_opts_sack_permitted (&tc->rcv_opts);
840
841   /* If reneging, wait for timer based retransmits */
842   if (PREDICT_FALSE (tcp_is_lost_fin (tc) || tc->sack_sb.is_reneging))
843     return;
844
845   /*
846    * If not in recovery, figure out if we should enter
847    */
848   if (!tcp_in_cong_recovery (tc))
849     {
850       ASSERT (is_dack);
851
852       tc->rcv_dupacks++;
853       TCP_EVT (TCP_EVT_DUPACK_RCVD, tc, 1);
854       tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
855
856       if (tcp_should_fastrecover (tc, has_sack))
857         {
858           tcp_cc_init_congestion (tc);
859
860           if (has_sack)
861             scoreboard_init_rxt (&tc->sack_sb, tc->snd_una);
862
863           tcp_connection_tx_pacer_reset (tc, tc->cwnd, 0 /* start bucket */ );
864           tcp_program_retransmit (tc);
865         }
866
867       return;
868     }
869
870   /*
871    * Already in recovery
872    */
873
874   /*
875    * Process (re)transmit feedback. Output path uses this to decide how much
876    * more data to release into the network
877    */
878   if (has_sack)
879     {
880       if (!tc->bytes_acked && tc->sack_sb.rxt_sacked)
881         tcp_fastrecovery_first_on (tc);
882
883       tc->rxt_delivered += tc->sack_sb.rxt_sacked;
884       tc->prr_delivered += tc->bytes_acked + tc->sack_sb.last_sacked_bytes
885         - tc->sack_sb.last_bytes_delivered;
886     }
887   else
888     {
889       if (is_dack)
890         {
891           tc->rcv_dupacks += 1;
892           TCP_EVT (TCP_EVT_DUPACK_RCVD, tc, 1);
893         }
894       tc->rxt_delivered = clib_min (tc->rxt_delivered + tc->bytes_acked,
895                                     tc->snd_rxt_bytes);
896       if (is_dack)
897         tc->prr_delivered += clib_min (tc->snd_mss,
898                                        tc->snd_nxt - tc->snd_una);
899       else
900         tc->prr_delivered += tc->bytes_acked - clib_min (tc->bytes_acked,
901                                                          tc->snd_mss *
902                                                          tc->rcv_dupacks);
903
904       /* If partial ack, assume that the first un-acked segment was lost */
905       if (tc->bytes_acked || tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
906         tcp_fastrecovery_first_on (tc);
907     }
908
909   /*
910    * See if we can exit and stop retransmitting
911    */
912   if (seq_geq (tc->snd_una, tc->snd_congestion))
913     {
914       /* If spurious return, we've already updated everything */
915       if (tcp_cc_recover (tc))
916         {
917           tc->tsecr_last_ack = tc->rcv_opts.tsecr;
918           return;
919         }
920
921       /* Treat as congestion avoidance ack */
922       tcp_cc_rcv_ack (tc, rs);
923       return;
924     }
925
926   tcp_program_retransmit (tc);
927
928   /*
929    * Notify cc of the event
930    */
931
932   if (!tc->bytes_acked)
933     {
934       tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
935       return;
936     }
937
938   /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
939    * reset dupacks to 0. Also needed if in congestion recovery */
940   tc->rcv_dupacks = 0;
941
942   if (tcp_in_recovery (tc))
943     tcp_cc_rcv_ack (tc, rs);
944   else
945     tcp_cc_rcv_cong_ack (tc, TCP_CC_PARTIALACK, rs);
946 }
947
948 static void
949 tcp_handle_old_ack (tcp_connection_t * tc, tcp_rate_sample_t * rs)
950 {
951   if (!tcp_in_cong_recovery (tc))
952     return;
953
954   if (tcp_opts_sack_permitted (&tc->rcv_opts))
955     tcp_rcv_sacks (tc, tc->snd_una);
956
957   tc->bytes_acked = 0;
958
959   if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
960     tcp_bt_sample_delivery_rate (tc, rs);
961
962   tcp_cc_handle_event (tc, rs, 1);
963 }
964
965 /**
966  * Check if duplicate ack as per RFC5681 Sec. 2
967  */
968 always_inline u8
969 tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd,
970                    u32 prev_snd_una)
971 {
972   return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
973           && seq_gt (tc->snd_nxt, tc->snd_una)
974           && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
975           && (prev_snd_wnd == tc->snd_wnd));
976 }
977
978 /**
979  * Checks if ack is a congestion control event.
980  */
981 static u8
982 tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b,
983                      u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
984 {
985   /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
986    * defined to be 'duplicate' as well */
987   *is_dack = tc->sack_sb.last_sacked_bytes
988     || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
989
990   return (*is_dack || tcp_in_cong_recovery (tc));
991 }
992
993 /**
994  * Process incoming ACK
995  */
996 static int
997 tcp_rcv_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
998              tcp_header_t * th, u32 * error)
999 {
1000   u32 prev_snd_wnd, prev_snd_una;
1001   tcp_rate_sample_t rs = { 0 };
1002   u8 is_dack;
1003
1004   TCP_EVT (TCP_EVT_CC_STAT, tc);
1005
1006   /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
1007   if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
1008     {
1009       /* We've probably entered recovery and the peer still has some
1010        * of the data we've sent. Update snd_nxt and accept the ack */
1011       if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)
1012           && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
1013         {
1014           tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
1015           goto process_ack;
1016         }
1017
1018       tc->errors.above_ack_wnd += 1;
1019       *error = TCP_ERROR_ACK_FUTURE;
1020       TCP_EVT (TCP_EVT_ACK_RCV_ERR, tc, 0, vnet_buffer (b)->tcp.ack_number);
1021       return -1;
1022     }
1023
1024   /* If old ACK, probably it's an old dupack */
1025   if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
1026     {
1027       tc->errors.below_ack_wnd += 1;
1028       *error = TCP_ERROR_ACK_OLD;
1029       TCP_EVT (TCP_EVT_ACK_RCV_ERR, tc, 1, vnet_buffer (b)->tcp.ack_number);
1030
1031       if (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una - tc->rcv_wnd))
1032         return -1;
1033
1034       tcp_handle_old_ack (tc, &rs);
1035
1036       /* Don't drop yet */
1037       return 0;
1038     }
1039
1040 process_ack:
1041
1042   /*
1043    * Looks okay, process feedback
1044    */
1045
1046   if (tcp_opts_sack_permitted (&tc->rcv_opts))
1047     tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1048
1049   prev_snd_wnd = tc->snd_wnd;
1050   prev_snd_una = tc->snd_una;
1051   tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1052                       vnet_buffer (b)->tcp.ack_number,
1053                       clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1054   tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
1055   tc->snd_una = vnet_buffer (b)->tcp.ack_number;
1056   tcp_validate_txf_size (tc, tc->bytes_acked);
1057
1058   if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
1059     tcp_bt_sample_delivery_rate (tc, &rs);
1060
1061   if (tc->bytes_acked + tc->sack_sb.last_sacked_bytes)
1062     {
1063       tcp_update_rtt (tc, &rs, vnet_buffer (b)->tcp.ack_number);
1064       if (tc->bytes_acked)
1065         tcp_program_dequeue (wrk, tc);
1066     }
1067
1068   TCP_EVT (TCP_EVT_ACK_RCVD, tc);
1069
1070   /*
1071    * Check if we have congestion event
1072    */
1073
1074   if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
1075     {
1076       tcp_cc_handle_event (tc, &rs, is_dack);
1077       tc->dupacks_in += is_dack;
1078       if (!tcp_in_cong_recovery (tc))
1079         {
1080           *error = TCP_ERROR_ACK_OK;
1081           return 0;
1082         }
1083       *error = TCP_ERROR_ACK_DUP;
1084       if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th))
1085         return 0;
1086       return -1;
1087     }
1088
1089   /*
1090    * Update congestion control (slow start/congestion avoidance)
1091    */
1092   tcp_cc_update (tc, &rs);
1093   *error = TCP_ERROR_ACK_OK;
1094   return 0;
1095 }
1096
1097 static void
1098 tcp_program_disconnect (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1099 {
1100   if (!tcp_disconnect_pending (tc))
1101     {
1102       vec_add1 (wrk->pending_disconnects, tc->c_c_index);
1103       tcp_disconnect_pending_on (tc);
1104     }
1105 }
1106
1107 static void
1108 tcp_handle_disconnects (tcp_worker_ctx_t * wrk)
1109 {
1110   u32 thread_index, *pending_disconnects, *pending_resets;
1111   tcp_connection_t *tc;
1112   int i;
1113
1114   if (vec_len (wrk->pending_disconnects))
1115     {
1116       thread_index = wrk->vm->thread_index;
1117       pending_disconnects = wrk->pending_disconnects;
1118       for (i = 0; i < vec_len (pending_disconnects); i++)
1119         {
1120           tc = tcp_connection_get (pending_disconnects[i], thread_index);
1121           tcp_disconnect_pending_off (tc);
1122           session_transport_closing_notify (&tc->connection);
1123         }
1124       _vec_len (wrk->pending_disconnects) = 0;
1125     }
1126
1127   if (vec_len (wrk->pending_resets))
1128     {
1129       thread_index = wrk->vm->thread_index;
1130       pending_resets = wrk->pending_resets;
1131       for (i = 0; i < vec_len (pending_resets); i++)
1132         {
1133           tc = tcp_connection_get (pending_resets[i], thread_index);
1134           tcp_disconnect_pending_off (tc);
1135           tcp_handle_rst (tc);
1136         }
1137       _vec_len (wrk->pending_resets) = 0;
1138     }
1139 }
1140
1141 static void
1142 tcp_rcv_fin (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
1143              u32 * error)
1144 {
1145   /* Reject out-of-order fins */
1146   if (vnet_buffer (b)->tcp.seq_end != tc->rcv_nxt)
1147     return;
1148
1149   /* Account for the FIN and send ack */
1150   tc->rcv_nxt += 1;
1151   tc->flags |= TCP_CONN_FINRCVD;
1152   tcp_program_ack (tc);
1153   /* Enter CLOSE-WAIT and notify session. To avoid lingering
1154    * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
1155   tcp_connection_set_state (tc, TCP_STATE_CLOSE_WAIT);
1156   tcp_program_disconnect (wrk, tc);
1157   tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
1158                     tcp_cfg.closewait_time);
1159   TCP_EVT (TCP_EVT_FIN_RCVD, tc);
1160   *error = TCP_ERROR_FIN_RCVD;
1161 }
1162
1163 /** Enqueue data for delivery to application */
1164 static int
1165 tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1166                           u16 data_len)
1167 {
1168   int written, error = TCP_ERROR_ENQUEUED;
1169
1170   ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
1171   ASSERT (data_len);
1172   written = session_enqueue_stream_connection (&tc->connection, b, 0,
1173                                                1 /* queue event */ , 1);
1174   tc->bytes_in += written;
1175
1176   TCP_EVT (TCP_EVT_INPUT, tc, 0, data_len, written);
1177
1178   /* Update rcv_nxt */
1179   if (PREDICT_TRUE (written == data_len))
1180     {
1181       tc->rcv_nxt += written;
1182     }
1183   /* If more data written than expected, account for out-of-order bytes. */
1184   else if (written > data_len)
1185     {
1186       tc->rcv_nxt += written;
1187       TCP_EVT (TCP_EVT_CC_INPUT, tc, data_len, written);
1188     }
1189   else if (written > 0)
1190     {
1191       /* We've written something but FIFO is probably full now */
1192       tc->rcv_nxt += written;
1193       error = TCP_ERROR_PARTIALLY_ENQUEUED;
1194     }
1195   else
1196     {
1197       /* Packet made it through for ack processing */
1198       if (tc->rcv_wnd < tc->snd_mss)
1199         return TCP_ERROR_ZERO_RWND;
1200
1201       return TCP_ERROR_FIFO_FULL;
1202     }
1203
1204   /* Update SACK list if need be */
1205   if (tcp_opts_sack_permitted (&tc->rcv_opts))
1206     {
1207       /* Remove SACK blocks that have been delivered */
1208       tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1209     }
1210
1211   return error;
1212 }
1213
1214 /** Enqueue out-of-order data */
1215 static int
1216 tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1217                          u16 data_len)
1218 {
1219   session_t *s0;
1220   int rv, offset;
1221
1222   ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
1223   ASSERT (data_len);
1224
1225   /* Enqueue out-of-order data with relative offset */
1226   rv = session_enqueue_stream_connection (&tc->connection, b,
1227                                           vnet_buffer (b)->tcp.seq_number -
1228                                           tc->rcv_nxt, 0 /* queue event */ ,
1229                                           0);
1230
1231   /* Nothing written */
1232   if (rv)
1233     {
1234       TCP_EVT (TCP_EVT_INPUT, tc, 1, data_len, 0);
1235       return TCP_ERROR_FIFO_FULL;
1236     }
1237
1238   TCP_EVT (TCP_EVT_INPUT, tc, 1, data_len, data_len);
1239   tc->bytes_in += data_len;
1240
1241   /* Update SACK list if in use */
1242   if (tcp_opts_sack_permitted (&tc->rcv_opts))
1243     {
1244       ooo_segment_t *newest;
1245       u32 start, end;
1246
1247       s0 = session_get (tc->c_s_index, tc->c_thread_index);
1248
1249       /* Get the newest segment from the fifo */
1250       newest = svm_fifo_newest_ooo_segment (s0->rx_fifo);
1251       if (newest)
1252         {
1253           offset = ooo_segment_offset_prod (s0->rx_fifo, newest);
1254           ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1255           start = tc->rcv_nxt + offset;
1256           end = start + ooo_segment_length (s0->rx_fifo, newest);
1257           tcp_update_sack_list (tc, start, end);
1258           svm_fifo_newest_ooo_segment_reset (s0->rx_fifo);
1259           TCP_EVT (TCP_EVT_CC_SACKS, tc);
1260         }
1261     }
1262
1263   return TCP_ERROR_ENQUEUED_OOO;
1264 }
1265
1266 static int
1267 tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
1268 {
1269   u32 discard, first = b->current_length;
1270   vlib_main_t *vm = vlib_get_main ();
1271
1272   /* Handle multi-buffer segments */
1273   if (n_bytes_to_drop > b->current_length)
1274     {
1275       if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1276         return -1;
1277       do
1278         {
1279           discard = clib_min (n_bytes_to_drop, b->current_length);
1280           vlib_buffer_advance (b, discard);
1281           b = vlib_get_buffer (vm, b->next_buffer);
1282           n_bytes_to_drop -= discard;
1283         }
1284       while (n_bytes_to_drop);
1285       if (n_bytes_to_drop > first)
1286         b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
1287     }
1288   else
1289     vlib_buffer_advance (b, n_bytes_to_drop);
1290   vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
1291   return 0;
1292 }
1293
1294 /**
1295  * Receive buffer for connection and handle acks
1296  *
1297  * It handles both in order or out-of-order data.
1298  */
1299 static int
1300 tcp_segment_rcv (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1301                  vlib_buffer_t * b)
1302 {
1303   u32 error, n_bytes_to_drop, n_data_bytes;
1304
1305   vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1306   n_data_bytes = vnet_buffer (b)->tcp.data_len;
1307   ASSERT (n_data_bytes);
1308   tc->data_segs_in += 1;
1309
1310   /* Handle out-of-order data */
1311   if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1312     {
1313       /* Old sequence numbers allowed through because they overlapped
1314        * the rx window */
1315       if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
1316         {
1317           /* Completely in the past (possible retransmit). Ack
1318            * retransmissions since we may not have any data to send */
1319           if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
1320             {
1321               tcp_program_dupack (tc);
1322               tc->errors.below_data_wnd++;
1323               error = TCP_ERROR_SEGMENT_OLD;
1324               goto done;
1325             }
1326
1327           /* Chop off the bytes in the past and see if what is left
1328            * can be enqueued in order */
1329           n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1330           n_data_bytes -= n_bytes_to_drop;
1331           vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
1332           if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
1333             {
1334               error = TCP_ERROR_SEGMENT_OLD;
1335               goto done;
1336             }
1337           goto in_order;
1338         }
1339
1340       /* RFC2581: Enqueue and send DUPACK for fast retransmit */
1341       error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
1342       tcp_program_dupack (tc);
1343       TCP_EVT (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
1344       tc->errors.above_data_wnd += seq_gt (vnet_buffer (b)->tcp.seq_end,
1345                                            tc->rcv_las + tc->rcv_wnd);
1346       goto done;
1347     }
1348
1349 in_order:
1350
1351   /* In order data, enqueue. Fifo figures out by itself if any out-of-order
1352    * segments can be enqueued after fifo tail offset changes. */
1353   error = tcp_session_enqueue_data (tc, b, n_data_bytes);
1354   tcp_program_ack (tc);
1355
1356 done:
1357   return error;
1358 }
1359
1360 typedef struct
1361 {
1362   tcp_header_t tcp_header;
1363   tcp_connection_t tcp_connection;
1364 } tcp_rx_trace_t;
1365
1366 static u8 *
1367 format_tcp_rx_trace (u8 * s, va_list * args)
1368 {
1369   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1370   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1371   tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
1372   tcp_connection_t *tc = &t->tcp_connection;
1373   u32 indent = format_get_indent (s);
1374
1375   s = format (s, "%U state %U\n%U%U", format_tcp_connection_id, tc,
1376               format_tcp_state, tc->state, format_white_space, indent,
1377               format_tcp_header, &t->tcp_header, 128);
1378
1379   return s;
1380 }
1381
1382 static u8 *
1383 format_tcp_rx_trace_short (u8 * s, va_list * args)
1384 {
1385   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1386   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1387   tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
1388
1389   s = format (s, "%d -> %d (%U)",
1390               clib_net_to_host_u16 (t->tcp_header.dst_port),
1391               clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state,
1392               t->tcp_connection.state);
1393
1394   return s;
1395 }
1396
1397 static void
1398 tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
1399                        tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
1400 {
1401   if (tc0)
1402     {
1403       clib_memcpy_fast (&t0->tcp_connection, tc0,
1404                         sizeof (t0->tcp_connection));
1405     }
1406   else
1407     {
1408       th0 = tcp_buffer_hdr (b0);
1409     }
1410   clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
1411 }
1412
1413 static void
1414 tcp_established_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
1415                              vlib_frame_t * frame, u8 is_ip4)
1416 {
1417   u32 *from, n_left;
1418
1419   n_left = frame->n_vectors;
1420   from = vlib_frame_vector_args (frame);
1421
1422   while (n_left >= 1)
1423     {
1424       tcp_connection_t *tc0;
1425       tcp_rx_trace_t *t0;
1426       tcp_header_t *th0;
1427       vlib_buffer_t *b0;
1428       u32 bi0;
1429
1430       bi0 = from[0];
1431       b0 = vlib_get_buffer (vm, bi0);
1432
1433       if (b0->flags & VLIB_BUFFER_IS_TRACED)
1434         {
1435           t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
1436           tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
1437                                     vm->thread_index);
1438           th0 = tcp_buffer_hdr (b0);
1439           tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
1440         }
1441
1442       from += 1;
1443       n_left -= 1;
1444     }
1445 }
1446
1447 always_inline void
1448 tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
1449                         u8 is_ip4, u32 evt, u32 val)
1450 {
1451   if (is_ip4)
1452     vlib_node_increment_counter (vm, tcp4_node, evt, val);
1453   else
1454     vlib_node_increment_counter (vm, tcp6_node, evt, val);
1455 }
1456
1457 #define tcp_maybe_inc_counter(node_id, err, count)                      \
1458 {                                                                       \
1459   if (next0 != tcp_next_drop (is_ip4))                                  \
1460     tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index,            \
1461                             tcp6_##node_id##_node.index, is_ip4, err,   \
1462                             1);                                         \
1463 }
1464 #define tcp_inc_counter(node_id, err, count)                            \
1465   tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index,              \
1466                            tcp6_##node_id##_node.index, is_ip4,         \
1467                            err, count)
1468 #define tcp_maybe_inc_err_counter(cnts, err)                            \
1469 {                                                                       \
1470   cnts[err] += (next0 != tcp_next_drop (is_ip4));                       \
1471 }
1472 #define tcp_inc_err_counter(cnts, err, val)                             \
1473 {                                                                       \
1474   cnts[err] += val;                                                     \
1475 }
1476 #define tcp_store_err_counters(node_id, cnts)                           \
1477 {                                                                       \
1478   int i;                                                                \
1479   for (i = 0; i < TCP_N_ERROR; i++)                                     \
1480     if (cnts[i])                                                        \
1481       tcp_inc_counter(node_id, i, cnts[i]);                             \
1482 }
1483
1484
1485 always_inline uword
1486 tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1487                           vlib_frame_t * frame, int is_ip4)
1488 {
1489   u32 thread_index = vm->thread_index, errors = 0;
1490   tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
1491   u32 n_left_from, *from, *first_buffer;
1492   u16 err_counters[TCP_N_ERROR] = { 0 };
1493
1494   if (node->flags & VLIB_NODE_FLAG_TRACE)
1495     tcp_established_trace_frame (vm, node, frame, is_ip4);
1496
1497   first_buffer = from = vlib_frame_vector_args (frame);
1498   n_left_from = frame->n_vectors;
1499
1500   while (n_left_from > 0)
1501     {
1502       u32 bi0, error0 = TCP_ERROR_ACK_OK;
1503       vlib_buffer_t *b0;
1504       tcp_header_t *th0;
1505       tcp_connection_t *tc0;
1506
1507       if (n_left_from > 1)
1508         {
1509           vlib_buffer_t *pb;
1510           pb = vlib_get_buffer (vm, from[1]);
1511           vlib_prefetch_buffer_header (pb, LOAD);
1512           CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1513         }
1514
1515       bi0 = from[0];
1516       from += 1;
1517       n_left_from -= 1;
1518
1519       b0 = vlib_get_buffer (vm, bi0);
1520       tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
1521                                 thread_index);
1522
1523       if (PREDICT_FALSE (tc0 == 0))
1524         {
1525           error0 = TCP_ERROR_INVALID_CONNECTION;
1526           goto done;
1527         }
1528
1529       th0 = tcp_buffer_hdr (b0);
1530
1531       /* TODO header prediction fast path */
1532
1533       /* 1-4: check SEQ, RST, SYN */
1534       if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, th0, &error0)))
1535         {
1536           TCP_EVT (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp);
1537           goto done;
1538         }
1539
1540       /* 5: check the ACK field  */
1541       if (PREDICT_FALSE (tcp_rcv_ack (wrk, tc0, b0, th0, &error0)))
1542         goto done;
1543
1544       /* 6: check the URG bit TODO */
1545
1546       /* 7: process the segment text */
1547       if (vnet_buffer (b0)->tcp.data_len)
1548         error0 = tcp_segment_rcv (wrk, tc0, b0);
1549
1550       /* 8: check the FIN bit */
1551       if (PREDICT_FALSE (tcp_is_fin (th0)))
1552         tcp_rcv_fin (wrk, tc0, b0, &error0);
1553
1554     done:
1555       tcp_inc_err_counter (err_counters, error0, 1);
1556     }
1557
1558   errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
1559                                               thread_index);
1560   err_counters[TCP_ERROR_MSG_QUEUE_FULL] = errors;
1561   tcp_store_err_counters (established, err_counters);
1562   tcp_handle_postponed_dequeues (wrk);
1563   tcp_handle_disconnects (wrk);
1564   vlib_buffer_free (vm, first_buffer, frame->n_vectors);
1565
1566   return frame->n_vectors;
1567 }
1568
1569 VLIB_NODE_FN (tcp4_established_node) (vlib_main_t * vm,
1570                                       vlib_node_runtime_t * node,
1571                                       vlib_frame_t * from_frame)
1572 {
1573   return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
1574 }
1575
1576 VLIB_NODE_FN (tcp6_established_node) (vlib_main_t * vm,
1577                                       vlib_node_runtime_t * node,
1578                                       vlib_frame_t * from_frame)
1579 {
1580   return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
1581 }
1582
1583 /* *INDENT-OFF* */
1584 VLIB_REGISTER_NODE (tcp4_established_node) =
1585 {
1586   .name = "tcp4-established",
1587   /* Takes a vector of packets. */
1588   .vector_size = sizeof (u32),
1589   .n_errors = TCP_N_ERROR,
1590   .error_strings = tcp_error_strings,
1591   .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
1592   .next_nodes =
1593   {
1594 #define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
1595     foreach_tcp_state_next
1596 #undef _
1597   },
1598   .format_trace = format_tcp_rx_trace_short,
1599 };
1600 /* *INDENT-ON* */
1601
1602 /* *INDENT-OFF* */
1603 VLIB_REGISTER_NODE (tcp6_established_node) =
1604 {
1605   .name = "tcp6-established",
1606   /* Takes a vector of packets. */
1607   .vector_size = sizeof (u32),
1608   .n_errors = TCP_N_ERROR,
1609   .error_strings = tcp_error_strings,
1610   .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
1611   .next_nodes =
1612   {
1613 #define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
1614     foreach_tcp_state_next
1615 #undef _
1616   },
1617   .format_trace = format_tcp_rx_trace_short,
1618 };
1619 /* *INDENT-ON* */
1620
1621
1622 static u8
1623 tcp_lookup_is_valid (tcp_connection_t * tc, vlib_buffer_t * b,
1624                      tcp_header_t * hdr)
1625 {
1626   transport_connection_t *tmp = 0;
1627   u64 handle;
1628
1629   if (!tc)
1630     return 1;
1631
1632   /* Proxy case */
1633   if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
1634     return 1;
1635
1636   u8 is_ip_valid = 0, val_l, val_r;
1637
1638   if (tc->connection.is_ip4)
1639     {
1640       ip4_header_t *ip4_hdr = (ip4_header_t *) vlib_buffer_get_current (b);
1641
1642       val_l = !ip4_address_compare (&ip4_hdr->dst_address,
1643                                     &tc->connection.lcl_ip.ip4);
1644       val_l = val_l || ip_is_zero (&tc->connection.lcl_ip, 1);
1645       val_r = !ip4_address_compare (&ip4_hdr->src_address,
1646                                     &tc->connection.rmt_ip.ip4);
1647       val_r = val_r || tc->state == TCP_STATE_LISTEN;
1648       is_ip_valid = val_l && val_r;
1649     }
1650   else
1651     {
1652       ip6_header_t *ip6_hdr = (ip6_header_t *) vlib_buffer_get_current (b);
1653
1654       val_l = !ip6_address_compare (&ip6_hdr->dst_address,
1655                                     &tc->connection.lcl_ip.ip6);
1656       val_l = val_l || ip_is_zero (&tc->connection.lcl_ip, 0);
1657       val_r = !ip6_address_compare (&ip6_hdr->src_address,
1658                                     &tc->connection.rmt_ip.ip6);
1659       val_r = val_r || tc->state == TCP_STATE_LISTEN;
1660       is_ip_valid = val_l && val_r;
1661     }
1662
1663   u8 is_valid = (tc->c_lcl_port == hdr->dst_port
1664                  && (tc->state == TCP_STATE_LISTEN
1665                      || tc->c_rmt_port == hdr->src_port) && is_ip_valid);
1666
1667   if (!is_valid)
1668     {
1669       handle = session_lookup_half_open_handle (&tc->connection);
1670       tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
1671                                                  tc->c_proto, tc->c_is_ip4);
1672
1673       if (tmp)
1674         {
1675           if (tmp->lcl_port == hdr->dst_port
1676               && tmp->rmt_port == hdr->src_port)
1677             {
1678               TCP_DBG ("half-open is valid!");
1679               is_valid = 1;
1680             }
1681         }
1682     }
1683   return is_valid;
1684 }
1685
1686 /**
1687  * Lookup transport connection
1688  */
1689 static tcp_connection_t *
1690 tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
1691                        u8 is_ip4)
1692 {
1693   tcp_header_t *tcp;
1694   transport_connection_t *tconn;
1695   tcp_connection_t *tc;
1696   u8 is_filtered = 0;
1697   if (is_ip4)
1698     {
1699       ip4_header_t *ip4;
1700       ip4 = vlib_buffer_get_current (b);
1701       tcp = ip4_next_header (ip4);
1702       tconn = session_lookup_connection_wt4 (fib_index,
1703                                              &ip4->dst_address,
1704                                              &ip4->src_address,
1705                                              tcp->dst_port,
1706                                              tcp->src_port,
1707                                              TRANSPORT_PROTO_TCP,
1708                                              thread_index, &is_filtered);
1709       tc = tcp_get_connection_from_transport (tconn);
1710       ASSERT (tcp_lookup_is_valid (tc, b, tcp));
1711     }
1712   else
1713     {
1714       ip6_header_t *ip6;
1715       ip6 = vlib_buffer_get_current (b);
1716       tcp = ip6_next_header (ip6);
1717       tconn = session_lookup_connection_wt6 (fib_index,
1718                                              &ip6->dst_address,
1719                                              &ip6->src_address,
1720                                              tcp->dst_port,
1721                                              tcp->src_port,
1722                                              TRANSPORT_PROTO_TCP,
1723                                              thread_index, &is_filtered);
1724       tc = tcp_get_connection_from_transport (tconn);
1725       ASSERT (tcp_lookup_is_valid (tc, b, tcp));
1726     }
1727   return tc;
1728 }
1729
1730 static tcp_connection_t *
1731 tcp_lookup_listener (vlib_buffer_t * b, u32 fib_index, int is_ip4)
1732 {
1733   session_t *s;
1734
1735   if (is_ip4)
1736     {
1737       ip4_header_t *ip4 = vlib_buffer_get_current (b);
1738       tcp_header_t *tcp = tcp_buffer_hdr (b);
1739       s = session_lookup_listener4 (fib_index,
1740                                     &ip4->dst_address,
1741                                     tcp->dst_port, TRANSPORT_PROTO_TCP, 1);
1742     }
1743   else
1744     {
1745       ip6_header_t *ip6 = vlib_buffer_get_current (b);
1746       tcp_header_t *tcp = tcp_buffer_hdr (b);
1747       s = session_lookup_listener6 (fib_index,
1748                                     &ip6->dst_address,
1749                                     tcp->dst_port, TRANSPORT_PROTO_TCP, 1);
1750
1751     }
1752   if (PREDICT_TRUE (s != 0))
1753     return tcp_get_connection_from_transport (transport_get_listener
1754                                               (TRANSPORT_PROTO_TCP,
1755                                                s->connection_index));
1756   else
1757     return 0;
1758 }
1759
1760 always_inline void
1761 tcp_check_tx_offload (tcp_connection_t * tc, int is_ipv4)
1762 {
1763   vnet_main_t *vnm = vnet_get_main ();
1764   const dpo_id_t *dpo;
1765   const load_balance_t *lb;
1766   vnet_hw_interface_t *hw_if;
1767   u32 sw_if_idx, lb_idx;
1768
1769   if (is_ipv4)
1770     {
1771       ip4_address_t *dst_addr = &(tc->c_rmt_ip.ip4);
1772       lb_idx = ip4_fib_forwarding_lookup (tc->c_fib_index, dst_addr);
1773     }
1774   else
1775     {
1776       ip6_address_t *dst_addr = &(tc->c_rmt_ip.ip6);
1777       lb_idx = ip6_fib_table_fwding_lookup (tc->c_fib_index, dst_addr);
1778     }
1779
1780   lb = load_balance_get (lb_idx);
1781   if (PREDICT_FALSE (lb->lb_n_buckets > 1))
1782     return;
1783   dpo = load_balance_get_bucket_i (lb, 0);
1784
1785   sw_if_idx = dpo_get_urpf (dpo);
1786   if (PREDICT_FALSE (sw_if_idx == ~0))
1787     return;
1788
1789   hw_if = vnet_get_sup_hw_interface (vnm, sw_if_idx);
1790   if (hw_if->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_GSO)
1791     tc->cfg_flags |= TCP_CFG_F_TSO;
1792 }
1793
1794 always_inline uword
1795 tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1796                        vlib_frame_t * from_frame, int is_ip4)
1797 {
1798   u32 n_left_from, *from, *first_buffer, errors = 0;
1799   u32 my_thread_index = vm->thread_index;
1800   tcp_worker_ctx_t *wrk = tcp_get_worker (my_thread_index);
1801
1802   from = first_buffer = vlib_frame_vector_args (from_frame);
1803   n_left_from = from_frame->n_vectors;
1804
1805   while (n_left_from > 0)
1806     {
1807       u32 bi0, ack0, seq0, error0 = TCP_ERROR_NONE;
1808       tcp_connection_t *tc0, *new_tc0;
1809       tcp_header_t *tcp0 = 0;
1810       tcp_rx_trace_t *t0;
1811       vlib_buffer_t *b0;
1812
1813       bi0 = from[0];
1814       from += 1;
1815       n_left_from -= 1;
1816
1817       b0 = vlib_get_buffer (vm, bi0);
1818       tc0 =
1819         tcp_half_open_connection_get (vnet_buffer (b0)->tcp.connection_index);
1820       if (PREDICT_FALSE (tc0 == 0))
1821         {
1822           error0 = TCP_ERROR_INVALID_CONNECTION;
1823           goto drop;
1824         }
1825
1826       /* Half-open completed recently but the connection was't removed
1827        * yet by the owning thread */
1828       if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
1829         {
1830           /* Make sure the connection actually exists */
1831           ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
1832                                          my_thread_index, is_ip4));
1833           error0 = TCP_ERROR_SPURIOUS_SYN_ACK;
1834           goto drop;
1835         }
1836
1837       ack0 = vnet_buffer (b0)->tcp.ack_number;
1838       seq0 = vnet_buffer (b0)->tcp.seq_number;
1839       tcp0 = tcp_buffer_hdr (b0);
1840
1841       /* Crude check to see if the connection handle does not match
1842        * the packet. Probably connection just switched to established */
1843       if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
1844                          || tcp0->src_port != tc0->c_rmt_port))
1845         {
1846           error0 = TCP_ERROR_INVALID_CONNECTION;
1847           goto drop;
1848         }
1849
1850       if (PREDICT_FALSE (!tcp_ack (tcp0) && !tcp_rst (tcp0)
1851                          && !tcp_syn (tcp0)))
1852         {
1853           error0 = TCP_ERROR_SEGMENT_INVALID;
1854           goto drop;
1855         }
1856
1857       /* SYNs consume sequence numbers */
1858       vnet_buffer (b0)->tcp.seq_end += tcp_is_syn (tcp0);
1859
1860       /*
1861        *  1. check the ACK bit
1862        */
1863
1864       /*
1865        *   If the ACK bit is set
1866        *     If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
1867        *     the RST bit is set, if so drop the segment and return)
1868        *       <SEQ=SEG.ACK><CTL=RST>
1869        *     and discard the segment.  Return.
1870        *     If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
1871        */
1872       if (tcp_ack (tcp0))
1873         {
1874           if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
1875             {
1876               if (!tcp_rst (tcp0))
1877                 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
1878               error0 = TCP_ERROR_RCV_WND;
1879               goto drop;
1880             }
1881
1882           /* Make sure ACK is valid */
1883           if (seq_gt (tc0->snd_una, ack0))
1884             {
1885               error0 = TCP_ERROR_ACK_INVALID;
1886               goto drop;
1887             }
1888         }
1889
1890       /*
1891        * 2. check the RST bit
1892        */
1893
1894       if (tcp_rst (tcp0))
1895         {
1896           /* If ACK is acceptable, signal client that peer is not
1897            * willing to accept connection and drop connection*/
1898           if (tcp_ack (tcp0))
1899             tcp_rcv_rst (wrk, tc0);
1900           error0 = TCP_ERROR_RST_RCVD;
1901           goto drop;
1902         }
1903
1904       /*
1905        * 3. check the security and precedence (skipped)
1906        */
1907
1908       /*
1909        * 4. check the SYN bit
1910        */
1911
1912       /* No SYN flag. Drop. */
1913       if (!tcp_syn (tcp0))
1914         {
1915           error0 = TCP_ERROR_SEGMENT_INVALID;
1916           goto drop;
1917         }
1918
1919       /* Parse options */
1920       if (tcp_options_parse (tcp0, &tc0->rcv_opts, 1))
1921         {
1922           error0 = TCP_ERROR_OPTIONS;
1923           goto drop;
1924         }
1925
1926       /* Valid SYN or SYN-ACK. Move connection from half-open pool to
1927        * current thread pool. */
1928       new_tc0 = tcp_connection_alloc_w_base (my_thread_index, tc0);
1929       new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
1930       new_tc0->irs = seq0;
1931       new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
1932       new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
1933
1934       if (tcp_opts_tstamp (&new_tc0->rcv_opts))
1935         {
1936           new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
1937           new_tc0->tsval_recent_age = tcp_time_now ();
1938         }
1939
1940       if (tcp_opts_wscale (&new_tc0->rcv_opts))
1941         new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
1942       else
1943         new_tc0->rcv_wscale = 0;
1944
1945       new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
1946         << new_tc0->snd_wscale;
1947       new_tc0->snd_wl1 = seq0;
1948       new_tc0->snd_wl2 = ack0;
1949
1950       tcp_connection_init_vars (new_tc0);
1951
1952       /* SYN-ACK: See if we can switch to ESTABLISHED state */
1953       if (PREDICT_TRUE (tcp_ack (tcp0)))
1954         {
1955           /* Our SYN is ACKed: we have iss < ack = snd_una */
1956
1957           /* TODO Dequeue acknowledged segments if we support Fast Open */
1958           new_tc0->snd_una = ack0;
1959           new_tc0->state = TCP_STATE_ESTABLISHED;
1960
1961           /* Make sure las is initialized for the wnd computation */
1962           new_tc0->rcv_las = new_tc0->rcv_nxt;
1963
1964           /* Notify app that we have connection. If session layer can't
1965            * allocate session send reset */
1966           if (session_stream_connect_notify (&new_tc0->connection,
1967                                              SESSION_E_NONE))
1968             {
1969               tcp_send_reset_w_pkt (new_tc0, b0, my_thread_index, is_ip4);
1970               tcp_connection_cleanup (new_tc0);
1971               error0 = TCP_ERROR_CREATE_SESSION_FAIL;
1972               goto cleanup_ho;
1973             }
1974
1975           new_tc0->tx_fifo_size =
1976             transport_tx_fifo_size (&new_tc0->connection);
1977           /* Update rtt with the syn-ack sample */
1978           tcp_estimate_initial_rtt (new_tc0);
1979           TCP_EVT (TCP_EVT_SYNACK_RCVD, new_tc0);
1980           error0 = TCP_ERROR_SYN_ACKS_RCVD;
1981         }
1982       /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
1983       else
1984         {
1985           new_tc0->state = TCP_STATE_SYN_RCVD;
1986
1987           /* Notify app that we have connection */
1988           if (session_stream_connect_notify (&new_tc0->connection,
1989                                              SESSION_E_NONE))
1990             {
1991               tcp_connection_cleanup (new_tc0);
1992               tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
1993               TCP_EVT (TCP_EVT_RST_SENT, tc0);
1994               error0 = TCP_ERROR_CREATE_SESSION_FAIL;
1995               goto cleanup_ho;
1996             }
1997
1998           new_tc0->tx_fifo_size =
1999             transport_tx_fifo_size (&new_tc0->connection);
2000           new_tc0->rtt_ts = 0;
2001           tcp_init_snd_vars (new_tc0);
2002           tcp_send_synack (new_tc0);
2003           error0 = TCP_ERROR_SYNS_RCVD;
2004           goto cleanup_ho;
2005         }
2006
2007       if (!(new_tc0->cfg_flags & TCP_CFG_F_NO_TSO))
2008         tcp_check_tx_offload (new_tc0, is_ip4);
2009
2010       /* Read data, if any */
2011       if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
2012         {
2013           clib_warning ("rcvd data in syn-sent");
2014           error0 = tcp_segment_rcv (wrk, new_tc0, b0);
2015           if (error0 == TCP_ERROR_ACK_OK)
2016             error0 = TCP_ERROR_SYN_ACKS_RCVD;
2017         }
2018       else
2019         {
2020           /* Send ack now instead of programming it because connection was
2021            * just established and it's not optional. */
2022           tcp_send_ack (new_tc0);
2023         }
2024
2025     cleanup_ho:
2026
2027       /* If this is not the owning thread, wait for syn retransmit to
2028        * expire and cleanup then */
2029       if (tcp_half_open_connection_cleanup (tc0))
2030         tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
2031
2032     drop:
2033
2034       tcp_inc_counter (syn_sent, error0, 1);
2035       if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
2036         {
2037           t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2038           clib_memcpy_fast (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2039           clib_memcpy_fast (&t0->tcp_connection, tc0,
2040                             sizeof (t0->tcp_connection));
2041         }
2042     }
2043
2044   errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2045                                               my_thread_index);
2046   tcp_inc_counter (syn_sent, TCP_ERROR_MSG_QUEUE_FULL, errors);
2047   vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
2048   tcp_handle_disconnects (wrk);
2049
2050   return from_frame->n_vectors;
2051 }
2052
2053 VLIB_NODE_FN (tcp4_syn_sent_node) (vlib_main_t * vm,
2054                                    vlib_node_runtime_t * node,
2055                                    vlib_frame_t * from_frame)
2056 {
2057   return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2058 }
2059
2060 VLIB_NODE_FN (tcp6_syn_sent_node) (vlib_main_t * vm,
2061                                    vlib_node_runtime_t * node,
2062                                    vlib_frame_t * from_frame)
2063 {
2064   return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2065 }
2066
2067 /* *INDENT-OFF* */
2068 VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2069 {
2070   .name = "tcp4-syn-sent",
2071   /* Takes a vector of packets. */
2072   .vector_size = sizeof (u32),
2073   .n_errors = TCP_N_ERROR,
2074   .error_strings = tcp_error_strings,
2075   .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2076   .next_nodes =
2077   {
2078 #define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2079     foreach_tcp_state_next
2080 #undef _
2081   },
2082   .format_trace = format_tcp_rx_trace_short,
2083 };
2084 /* *INDENT-ON* */
2085
2086 /* *INDENT-OFF* */
2087 VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2088 {
2089   .name = "tcp6-syn-sent",
2090   /* Takes a vector of packets. */
2091   .vector_size = sizeof (u32),
2092   .n_errors = TCP_N_ERROR,
2093   .error_strings = tcp_error_strings,
2094   .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2095   .next_nodes =
2096   {
2097 #define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2098     foreach_tcp_state_next
2099 #undef _
2100   },
2101   .format_trace = format_tcp_rx_trace_short,
2102 };
2103 /* *INDENT-ON* */
2104
2105 /**
2106  * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
2107  * as per RFC793 p. 64
2108  */
2109 always_inline uword
2110 tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2111                           vlib_frame_t * from_frame, int is_ip4)
2112 {
2113   u32 thread_index = vm->thread_index, errors = 0, *first_buffer;
2114   tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
2115   u32 n_left_from, *from, max_dequeue;
2116
2117   from = first_buffer = vlib_frame_vector_args (from_frame);
2118   n_left_from = from_frame->n_vectors;
2119
2120   while (n_left_from > 0)
2121     {
2122       u32 bi0, error0 = TCP_ERROR_NONE;
2123       tcp_header_t *tcp0 = 0;
2124       tcp_connection_t *tc0;
2125       vlib_buffer_t *b0;
2126       u8 is_fin0;
2127
2128       bi0 = from[0];
2129       from += 1;
2130       n_left_from -= 1;
2131
2132       b0 = vlib_get_buffer (vm, bi0);
2133       tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2134                                 thread_index);
2135       if (PREDICT_FALSE (tc0 == 0))
2136         {
2137           error0 = TCP_ERROR_INVALID_CONNECTION;
2138           goto drop;
2139         }
2140
2141       tcp0 = tcp_buffer_hdr (b0);
2142       is_fin0 = tcp_is_fin (tcp0);
2143
2144       if (CLIB_DEBUG)
2145         {
2146           if (!(tc0->connection.flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
2147             {
2148               tcp_connection_t *tmp;
2149               tmp = tcp_lookup_connection (tc0->c_fib_index, b0, thread_index,
2150                                            is_ip4);
2151               if (tmp->state != tc0->state)
2152                 {
2153                   if (tc0->state != TCP_STATE_CLOSED)
2154                     clib_warning ("state changed");
2155                   goto drop;
2156                 }
2157             }
2158         }
2159
2160       /*
2161        * Special treatment for CLOSED
2162        */
2163       if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
2164         {
2165           error0 = TCP_ERROR_CONNECTION_CLOSED;
2166           goto drop;
2167         }
2168
2169       /*
2170        * For all other states (except LISTEN)
2171        */
2172
2173       /* 1-4: check SEQ, RST, SYN */
2174       if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, tcp0, &error0)))
2175         goto drop;
2176
2177       /* 5: check the ACK field  */
2178       switch (tc0->state)
2179         {
2180         case TCP_STATE_SYN_RCVD:
2181
2182           /* Make sure the segment is exactly right */
2183           if (tc0->rcv_nxt != vnet_buffer (b0)->tcp.seq_number || is_fin0)
2184             {
2185               tcp_send_reset_w_pkt (tc0, b0, thread_index, is_ip4);
2186               error0 = TCP_ERROR_SEGMENT_INVALID;
2187               goto drop;
2188             }
2189
2190           /*
2191            * If the segment acknowledgment is not acceptable, form a
2192            * reset segment,
2193            *  <SEQ=SEG.ACK><CTL=RST>
2194            * and send it.
2195            */
2196           if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2197             {
2198               tcp_send_reset_w_pkt (tc0, b0, thread_index, is_ip4);
2199               error0 = TCP_ERROR_SEGMENT_INVALID;
2200               goto drop;
2201             }
2202
2203           /* Update rtt and rto */
2204           tcp_estimate_initial_rtt (tc0);
2205           tcp_connection_tx_pacer_update (tc0);
2206
2207           /* Switch state to ESTABLISHED */
2208           tc0->state = TCP_STATE_ESTABLISHED;
2209           TCP_EVT (TCP_EVT_STATE_CHANGE, tc0);
2210
2211           if (!(tc0->cfg_flags & TCP_CFG_F_NO_TSO))
2212             tcp_check_tx_offload (tc0, is_ip4);
2213
2214           /* Initialize session variables */
2215           tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
2216           tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2217             << tc0->rcv_opts.wscale;
2218           tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2219           tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
2220
2221           /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
2222           tcp_retransmit_timer_reset (&wrk->timer_wheel, tc0);
2223           if (session_stream_accept_notify (&tc0->connection))
2224             {
2225               error0 = TCP_ERROR_MSG_QUEUE_FULL;
2226               tcp_send_reset (tc0);
2227               session_transport_delete_notify (&tc0->connection);
2228               tcp_connection_cleanup (tc0);
2229               goto drop;
2230             }
2231           error0 = TCP_ERROR_ACK_OK;
2232           break;
2233         case TCP_STATE_ESTABLISHED:
2234           /* We can get packets in established state here because they
2235            * were enqueued before state change */
2236           if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2237             goto drop;
2238
2239           break;
2240         case TCP_STATE_FIN_WAIT_1:
2241           /* In addition to the processing for the ESTABLISHED state, if
2242            * our FIN is now acknowledged then enter FIN-WAIT-2 and
2243            * continue processing in that state. */
2244           if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2245             goto drop;
2246
2247           /* Still have to send the FIN */
2248           if (tc0->flags & TCP_CONN_FINPNDG)
2249             {
2250               /* TX fifo finally drained */
2251               max_dequeue = transport_max_tx_dequeue (&tc0->connection);
2252               if (max_dequeue <= tc0->burst_acked)
2253                 tcp_send_fin (tc0);
2254               /* If a fin was received and data was acked extend wait */
2255               else if ((tc0->flags & TCP_CONN_FINRCVD) && tc0->bytes_acked)
2256                 tcp_timer_update (&wrk->timer_wheel, tc0, TCP_TIMER_WAITCLOSE,
2257                                   tcp_cfg.closewait_time);
2258             }
2259           /* If FIN is ACKed */
2260           else if (tc0->snd_una == tc0->snd_nxt)
2261             {
2262               /* Stop all retransmit timers because we have nothing more
2263                * to send. */
2264               tcp_connection_timers_reset (tc0);
2265
2266               /* We already have a FIN but didn't transition to CLOSING
2267                * because of outstanding tx data. Close the connection. */
2268               if (tc0->flags & TCP_CONN_FINRCVD)
2269                 {
2270                   tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
2271                   session_transport_closed_notify (&tc0->connection);
2272                   tcp_program_cleanup (wrk, tc0);
2273                   goto drop;
2274                 }
2275
2276               tcp_connection_set_state (tc0, TCP_STATE_FIN_WAIT_2);
2277               /* Enable waitclose because we're willing to wait for peer's
2278                * FIN but not indefinitely. */
2279               tcp_timer_set (&wrk->timer_wheel, tc0, TCP_TIMER_WAITCLOSE,
2280                              tcp_cfg.finwait2_time);
2281
2282               /* Don't try to deq the FIN acked */
2283               if (tc0->burst_acked > 1)
2284                 session_tx_fifo_dequeue_drop (&tc0->connection,
2285                                               tc0->burst_acked - 1);
2286               tc0->burst_acked = 0;
2287             }
2288           break;
2289         case TCP_STATE_FIN_WAIT_2:
2290           /* In addition to the processing for the ESTABLISHED state, if
2291            * the retransmission queue is empty, the user's CLOSE can be
2292            * acknowledged ("ok") but do not delete the TCB. */
2293           if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2294             goto drop;
2295           tc0->burst_acked = 0;
2296           break;
2297         case TCP_STATE_CLOSE_WAIT:
2298           /* Do the same processing as for the ESTABLISHED state. */
2299           if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2300             goto drop;
2301
2302           if (!(tc0->flags & TCP_CONN_FINPNDG))
2303             break;
2304
2305           /* Still have outstanding tx data */
2306           max_dequeue = transport_max_tx_dequeue (&tc0->connection);
2307           if (max_dequeue > tc0->burst_acked)
2308             break;
2309
2310           tcp_send_fin (tc0);
2311           tcp_connection_timers_reset (tc0);
2312           tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
2313           tcp_timer_set (&wrk->timer_wheel, tc0, TCP_TIMER_WAITCLOSE,
2314                          tcp_cfg.lastack_time);
2315           break;
2316         case TCP_STATE_CLOSING:
2317           /* In addition to the processing for the ESTABLISHED state, if
2318            * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2319            * otherwise ignore the segment. */
2320           if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2321             goto drop;
2322
2323           if (tc0->snd_una != tc0->snd_nxt)
2324             goto drop;
2325
2326           tcp_connection_timers_reset (tc0);
2327           tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
2328           tcp_timer_set (&wrk->timer_wheel, tc0, TCP_TIMER_WAITCLOSE,
2329                          tcp_cfg.timewait_time);
2330           session_transport_closed_notify (&tc0->connection);
2331           goto drop;
2332
2333           break;
2334         case TCP_STATE_LAST_ACK:
2335           /* The only thing that [should] arrive in this state is an
2336            * acknowledgment of our FIN. If our FIN is now acknowledged,
2337            * delete the TCB, enter the CLOSED state, and return. */
2338
2339           if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2340             goto drop;
2341
2342           /* Apparently our ACK for the peer's FIN was lost */
2343           if (is_fin0 && tc0->snd_una != tc0->snd_nxt)
2344             {
2345               tcp_send_fin (tc0);
2346               goto drop;
2347             }
2348
2349           tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
2350           session_transport_closed_notify (&tc0->connection);
2351
2352           /* Don't free the connection from the data path since
2353            * we can't ensure that we have no packets already enqueued
2354            * to output. Rely instead on the waitclose timer */
2355           tcp_connection_timers_reset (tc0);
2356           tcp_program_cleanup (tcp_get_worker (tc0->c_thread_index), tc0);
2357
2358           goto drop;
2359
2360           break;
2361         case TCP_STATE_TIME_WAIT:
2362           /* The only thing that can arrive in this state is a
2363            * retransmission of the remote FIN. Acknowledge it, and restart
2364            * the 2 MSL timeout. */
2365
2366           if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2367             goto drop;
2368
2369           if (!is_fin0)
2370             goto drop;
2371
2372           tcp_program_ack (tc0);
2373           tcp_timer_update (&wrk->timer_wheel, tc0, TCP_TIMER_WAITCLOSE,
2374                             tcp_cfg.timewait_time);
2375           goto drop;
2376
2377           break;
2378         default:
2379           ASSERT (0);
2380         }
2381
2382       /* 6: check the URG bit TODO */
2383
2384       /* 7: process the segment text */
2385       switch (tc0->state)
2386         {
2387         case TCP_STATE_ESTABLISHED:
2388         case TCP_STATE_FIN_WAIT_1:
2389         case TCP_STATE_FIN_WAIT_2:
2390           if (vnet_buffer (b0)->tcp.data_len)
2391             error0 = tcp_segment_rcv (wrk, tc0, b0);
2392           break;
2393         case TCP_STATE_CLOSE_WAIT:
2394         case TCP_STATE_CLOSING:
2395         case TCP_STATE_LAST_ACK:
2396         case TCP_STATE_TIME_WAIT:
2397           /* This should not occur, since a FIN has been received from the
2398            * remote side.  Ignore the segment text. */
2399           break;
2400         }
2401
2402       /* 8: check the FIN bit */
2403       if (!is_fin0)
2404         goto drop;
2405
2406       TCP_EVT (TCP_EVT_FIN_RCVD, tc0);
2407
2408       switch (tc0->state)
2409         {
2410         case TCP_STATE_ESTABLISHED:
2411           /* Account for the FIN and send ack */
2412           tc0->rcv_nxt += 1;
2413           tcp_program_ack (tc0);
2414           tcp_connection_set_state (tc0, TCP_STATE_CLOSE_WAIT);
2415           tcp_program_disconnect (wrk, tc0);
2416           tcp_timer_update (&wrk->timer_wheel, tc0, TCP_TIMER_WAITCLOSE,
2417                             tcp_cfg.closewait_time);
2418           break;
2419         case TCP_STATE_SYN_RCVD:
2420           /* Send FIN-ACK, enter LAST-ACK and because the app was not
2421            * notified yet, set a cleanup timer instead of relying on
2422            * disconnect notify and the implicit close call. */
2423           tcp_connection_timers_reset (tc0);
2424           tc0->rcv_nxt += 1;
2425           tcp_send_fin (tc0);
2426           tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
2427           tcp_timer_set (&wrk->timer_wheel, tc0, TCP_TIMER_WAITCLOSE,
2428                          tcp_cfg.lastack_time);
2429           break;
2430         case TCP_STATE_CLOSE_WAIT:
2431         case TCP_STATE_CLOSING:
2432         case TCP_STATE_LAST_ACK:
2433           /* move along .. */
2434           break;
2435         case TCP_STATE_FIN_WAIT_1:
2436           tc0->rcv_nxt += 1;
2437
2438           if (tc0->flags & TCP_CONN_FINPNDG)
2439             {
2440               /* If data is outstanding, stay in FIN_WAIT_1 and try to finish
2441                * sending it. Since we already received a fin, do not wait
2442                * for too long. */
2443               tc0->flags |= TCP_CONN_FINRCVD;
2444               tcp_timer_update (&wrk->timer_wheel, tc0, TCP_TIMER_WAITCLOSE,
2445                                 tcp_cfg.closewait_time);
2446             }
2447           else
2448             {
2449               tcp_connection_set_state (tc0, TCP_STATE_CLOSING);
2450               tcp_program_ack (tc0);
2451               /* Wait for ACK for our FIN but not forever */
2452               tcp_timer_update (&wrk->timer_wheel, tc0, TCP_TIMER_WAITCLOSE,
2453                                 tcp_cfg.closing_time);
2454             }
2455           break;
2456         case TCP_STATE_FIN_WAIT_2:
2457           /* Got FIN, send ACK! Be more aggressive with resource cleanup */
2458           tc0->rcv_nxt += 1;
2459           tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
2460           tcp_connection_timers_reset (tc0);
2461           tcp_timer_set (&wrk->timer_wheel, tc0, TCP_TIMER_WAITCLOSE,
2462                          tcp_cfg.timewait_time);
2463           tcp_program_ack (tc0);
2464           session_transport_closed_notify (&tc0->connection);
2465           break;
2466         case TCP_STATE_TIME_WAIT:
2467           /* Remain in the TIME-WAIT state. Restart the time-wait
2468            * timeout.
2469            */
2470           tcp_timer_update (&wrk->timer_wheel, tc0, TCP_TIMER_WAITCLOSE,
2471                             tcp_cfg.timewait_time);
2472           break;
2473         }
2474       error0 = TCP_ERROR_FIN_RCVD;
2475
2476     drop:
2477
2478       tcp_inc_counter (rcv_process, error0, 1);
2479       if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2480         {
2481           tcp_rx_trace_t *t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2482           tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
2483         }
2484     }
2485
2486   errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2487                                               thread_index);
2488   tcp_inc_counter (rcv_process, TCP_ERROR_MSG_QUEUE_FULL, errors);
2489   tcp_handle_postponed_dequeues (wrk);
2490   tcp_handle_disconnects (wrk);
2491   vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
2492
2493   return from_frame->n_vectors;
2494 }
2495
2496 VLIB_NODE_FN (tcp4_rcv_process_node) (vlib_main_t * vm,
2497                                       vlib_node_runtime_t * node,
2498                                       vlib_frame_t * from_frame)
2499 {
2500   return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2501 }
2502
2503 VLIB_NODE_FN (tcp6_rcv_process_node) (vlib_main_t * vm,
2504                                       vlib_node_runtime_t * node,
2505                                       vlib_frame_t * from_frame)
2506 {
2507   return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2508 }
2509
2510 /* *INDENT-OFF* */
2511 VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
2512 {
2513   .name = "tcp4-rcv-process",
2514   /* Takes a vector of packets. */
2515   .vector_size = sizeof (u32),
2516   .n_errors = TCP_N_ERROR,
2517   .error_strings = tcp_error_strings,
2518   .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2519   .next_nodes =
2520   {
2521 #define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
2522     foreach_tcp_state_next
2523 #undef _
2524   },
2525   .format_trace = format_tcp_rx_trace_short,
2526 };
2527 /* *INDENT-ON* */
2528
2529 /* *INDENT-OFF* */
2530 VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
2531 {
2532   .name = "tcp6-rcv-process",
2533   /* Takes a vector of packets. */
2534   .vector_size = sizeof (u32),
2535   .n_errors = TCP_N_ERROR,
2536   .error_strings = tcp_error_strings,
2537   .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2538   .next_nodes =
2539   {
2540 #define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
2541     foreach_tcp_state_next
2542 #undef _
2543   },
2544   .format_trace = format_tcp_rx_trace_short,
2545 };
2546 /* *INDENT-ON* */
2547
2548 /**
2549  * LISTEN state processing as per RFC 793 p. 65
2550  */
2551 always_inline uword
2552 tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2553                      vlib_frame_t * from_frame, int is_ip4)
2554 {
2555   u32 n_left_from, *from, n_syns = 0, *first_buffer;
2556   u32 thread_index = vm->thread_index;
2557
2558   from = first_buffer = vlib_frame_vector_args (from_frame);
2559   n_left_from = from_frame->n_vectors;
2560
2561   while (n_left_from > 0)
2562     {
2563       u32 bi, error = TCP_ERROR_NONE;
2564       tcp_connection_t *lc, *child;
2565       vlib_buffer_t *b;
2566
2567       bi = from[0];
2568       from += 1;
2569       n_left_from -= 1;
2570
2571       b = vlib_get_buffer (vm, bi);
2572
2573       lc = tcp_listener_get (vnet_buffer (b)->tcp.connection_index);
2574       if (PREDICT_FALSE (lc == 0))
2575         {
2576           tcp_connection_t *tc;
2577           tc = tcp_connection_get (vnet_buffer (b)->tcp.connection_index,
2578                                    thread_index);
2579           if (tc->state != TCP_STATE_TIME_WAIT)
2580             {
2581               error = TCP_ERROR_CREATE_EXISTS;
2582               goto done;
2583             }
2584           lc = tcp_lookup_listener (b, tc->c_fib_index, is_ip4);
2585           /* clean up the old session */
2586           tcp_connection_del (tc);
2587         }
2588
2589       /* Make sure connection wasn't just created */
2590       child = tcp_lookup_connection (lc->c_fib_index, b, thread_index,
2591                                      is_ip4);
2592       if (PREDICT_FALSE (child->state != TCP_STATE_LISTEN))
2593         {
2594           error = TCP_ERROR_CREATE_EXISTS;
2595           goto done;
2596         }
2597
2598       /* Create child session. For syn-flood protection use filter */
2599
2600       /* 1. first check for an RST: handled in dispatch */
2601       /* if (tcp_rst (th0))
2602          goto drop;
2603        */
2604
2605       /* 2. second check for an ACK: handled in dispatch */
2606       /* if (tcp_ack (th0))
2607          {
2608          tcp_send_reset (b0, is_ip4);
2609          goto drop;
2610          }
2611        */
2612
2613       /* 3. check for a SYN (did that already) */
2614
2615       /* Create child session and send SYN-ACK */
2616       child = tcp_connection_alloc (thread_index);
2617
2618       if (tcp_options_parse (tcp_buffer_hdr (b), &child->rcv_opts, 1))
2619         {
2620           error = TCP_ERROR_OPTIONS;
2621           tcp_connection_free (child);
2622           goto done;
2623         }
2624
2625       tcp_init_w_buffer (child, b, is_ip4);
2626
2627       child->state = TCP_STATE_SYN_RCVD;
2628       child->c_fib_index = lc->c_fib_index;
2629       child->cc_algo = lc->cc_algo;
2630       tcp_connection_init_vars (child);
2631       child->rto = TCP_RTO_MIN;
2632
2633       /*
2634        * This initializes elog track, must be done before synack.
2635        * We also do it before possible tcp_connection_cleanup() as it
2636        * generates TCP_EVT_DELETE event.
2637        */
2638       TCP_EVT (TCP_EVT_SYN_RCVD, child, 1);
2639
2640       if (session_stream_accept (&child->connection, lc->c_s_index,
2641                                  lc->c_thread_index, 0 /* notify */ ))
2642         {
2643           tcp_connection_cleanup (child);
2644           error = TCP_ERROR_CREATE_SESSION_FAIL;
2645           goto done;
2646         }
2647
2648       child->tx_fifo_size = transport_tx_fifo_size (&child->connection);
2649
2650       tcp_send_synack (child);
2651
2652     done:
2653
2654       if (PREDICT_FALSE (b->flags & VLIB_BUFFER_IS_TRACED))
2655         {
2656           tcp_rx_trace_t *t;
2657           t = vlib_add_trace (vm, node, b, sizeof (*t));
2658           clib_memcpy_fast (&t->tcp_header, tcp_buffer_hdr (b),
2659                             sizeof (t->tcp_header));
2660           clib_memcpy_fast (&t->tcp_connection, lc,
2661                             sizeof (t->tcp_connection));
2662         }
2663
2664       n_syns += (error == TCP_ERROR_NONE);
2665     }
2666
2667   tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
2668   vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
2669
2670   return from_frame->n_vectors;
2671 }
2672
2673 VLIB_NODE_FN (tcp4_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
2674                                  vlib_frame_t * from_frame)
2675 {
2676   return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2677 }
2678
2679 VLIB_NODE_FN (tcp6_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
2680                                  vlib_frame_t * from_frame)
2681 {
2682   return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2683 }
2684
2685 /* *INDENT-OFF* */
2686 VLIB_REGISTER_NODE (tcp4_listen_node) =
2687 {
2688   .name = "tcp4-listen",
2689   /* Takes a vector of packets. */
2690   .vector_size = sizeof (u32),
2691   .n_errors = TCP_N_ERROR,
2692   .error_strings = tcp_error_strings,
2693   .n_next_nodes = TCP_LISTEN_N_NEXT,
2694   .next_nodes =
2695   {
2696 #define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
2697     foreach_tcp_state_next
2698 #undef _
2699   },
2700   .format_trace = format_tcp_rx_trace_short,
2701 };
2702 /* *INDENT-ON* */
2703
2704 /* *INDENT-OFF* */
2705 VLIB_REGISTER_NODE (tcp6_listen_node) =
2706 {
2707   .name = "tcp6-listen",
2708   /* Takes a vector of packets. */
2709   .vector_size = sizeof (u32),
2710   .n_errors = TCP_N_ERROR,
2711   .error_strings = tcp_error_strings,
2712   .n_next_nodes = TCP_LISTEN_N_NEXT,
2713   .next_nodes =
2714   {
2715 #define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
2716     foreach_tcp_state_next
2717 #undef _
2718   },
2719   .format_trace = format_tcp_rx_trace_short,
2720 };
2721 /* *INDENT-ON* */
2722
2723 typedef enum _tcp_input_next
2724 {
2725   TCP_INPUT_NEXT_DROP,
2726   TCP_INPUT_NEXT_LISTEN,
2727   TCP_INPUT_NEXT_RCV_PROCESS,
2728   TCP_INPUT_NEXT_SYN_SENT,
2729   TCP_INPUT_NEXT_ESTABLISHED,
2730   TCP_INPUT_NEXT_RESET,
2731   TCP_INPUT_NEXT_PUNT,
2732   TCP_INPUT_N_NEXT
2733 } tcp_input_next_t;
2734
2735 #define foreach_tcp4_input_next                 \
2736   _ (DROP, "ip4-drop")                          \
2737   _ (LISTEN, "tcp4-listen")                     \
2738   _ (RCV_PROCESS, "tcp4-rcv-process")           \
2739   _ (SYN_SENT, "tcp4-syn-sent")                 \
2740   _ (ESTABLISHED, "tcp4-established")           \
2741   _ (RESET, "tcp4-reset")                       \
2742   _ (PUNT, "ip4-punt")
2743
2744 #define foreach_tcp6_input_next                 \
2745   _ (DROP, "ip6-drop")                          \
2746   _ (LISTEN, "tcp6-listen")                     \
2747   _ (RCV_PROCESS, "tcp6-rcv-process")           \
2748   _ (SYN_SENT, "tcp6-syn-sent")                 \
2749   _ (ESTABLISHED, "tcp6-established")           \
2750   _ (RESET, "tcp6-reset")                       \
2751   _ (PUNT, "ip6-punt")
2752
2753 #define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
2754
2755 static void
2756 tcp_input_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2757                        vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4)
2758 {
2759   tcp_connection_t *tc;
2760   tcp_header_t *tcp;
2761   tcp_rx_trace_t *t;
2762   int i;
2763
2764   for (i = 0; i < n_bufs; i++)
2765     {
2766       if (bs[i]->flags & VLIB_BUFFER_IS_TRACED)
2767         {
2768           t = vlib_add_trace (vm, node, bs[i], sizeof (*t));
2769           tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index,
2770                                    vm->thread_index);
2771           tcp = vlib_buffer_get_current (bs[i]);
2772           tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4);
2773         }
2774     }
2775 }
2776
2777 static void
2778 tcp_input_set_error_next (tcp_main_t * tm, u16 * next, u32 * error, u8 is_ip4)
2779 {
2780   if (*error == TCP_ERROR_FILTERED || *error == TCP_ERROR_WRONG_THREAD)
2781     {
2782       *next = TCP_INPUT_NEXT_DROP;
2783     }
2784   else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6))
2785     {
2786       *next = TCP_INPUT_NEXT_PUNT;
2787       *error = TCP_ERROR_PUNT;
2788     }
2789   else
2790     {
2791       *next = TCP_INPUT_NEXT_RESET;
2792       *error = TCP_ERROR_NO_LISTENER;
2793     }
2794 }
2795
2796 static inline void
2797 tcp_input_dispatch_buffer (tcp_main_t * tm, tcp_connection_t * tc,
2798                            vlib_buffer_t * b, u16 * next,
2799                            vlib_node_runtime_t * error_node)
2800 {
2801   tcp_header_t *tcp;
2802   u32 error;
2803   u8 flags;
2804
2805   tcp = tcp_buffer_hdr (b);
2806   flags = tcp->flags & filter_flags;
2807   *next = tm->dispatch_table[tc->state][flags].next;
2808   error = tm->dispatch_table[tc->state][flags].error;
2809   tc->segs_in += 1;
2810
2811   if (PREDICT_FALSE (error != TCP_ERROR_NONE))
2812     {
2813       b->error = error_node->errors[error];
2814       if (error == TCP_ERROR_DISPATCH)
2815         clib_warning ("tcp conn %u disp error state %U flags %U",
2816                       tc->c_c_index, format_tcp_state, tc->state,
2817                       format_tcp_flags, (int) flags);
2818     }
2819 }
2820
2821 always_inline uword
2822 tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2823                     vlib_frame_t * frame, int is_ip4, u8 is_nolookup)
2824 {
2825   u32 n_left_from, *from, thread_index = vm->thread_index;
2826   tcp_main_t *tm = vnet_get_tcp_main ();
2827   vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
2828   u16 nexts[VLIB_FRAME_SIZE], *next;
2829
2830   tcp_set_time_now (tcp_get_worker (thread_index));
2831
2832   from = vlib_frame_vector_args (frame);
2833   n_left_from = frame->n_vectors;
2834   vlib_get_buffers (vm, from, bufs, n_left_from);
2835
2836   b = bufs;
2837   next = nexts;
2838
2839   while (n_left_from >= 4)
2840     {
2841       u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER;
2842       tcp_connection_t *tc0, *tc1;
2843
2844       {
2845         vlib_prefetch_buffer_header (b[2], STORE);
2846         CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
2847
2848         vlib_prefetch_buffer_header (b[3], STORE);
2849         CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
2850       }
2851
2852       next[0] = next[1] = TCP_INPUT_NEXT_DROP;
2853
2854       tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
2855                                      is_nolookup);
2856       tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4,
2857                                      is_nolookup);
2858
2859       if (PREDICT_TRUE (!tc0 + !tc1 == 0))
2860         {
2861           ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
2862           ASSERT (tcp_lookup_is_valid (tc1, b[1], tcp_buffer_hdr (b[1])));
2863
2864           vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
2865           vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
2866
2867           tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], node);
2868           tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], node);
2869         }
2870       else
2871         {
2872           if (PREDICT_TRUE (tc0 != 0))
2873             {
2874               ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
2875               vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
2876               tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], node);
2877             }
2878           else
2879             {
2880               tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
2881               b[0]->error = node->errors[error0];
2882             }
2883
2884           if (PREDICT_TRUE (tc1 != 0))
2885             {
2886               ASSERT (tcp_lookup_is_valid (tc1, b[1], tcp_buffer_hdr (b[1])));
2887               vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
2888               tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], node);
2889             }
2890           else
2891             {
2892               tcp_input_set_error_next (tm, &next[1], &error1, is_ip4);
2893               b[1]->error = node->errors[error1];
2894             }
2895         }
2896
2897       b += 2;
2898       next += 2;
2899       n_left_from -= 2;
2900     }
2901   while (n_left_from > 0)
2902     {
2903       tcp_connection_t *tc0;
2904       u32 error0 = TCP_ERROR_NO_LISTENER;
2905
2906       if (n_left_from > 1)
2907         {
2908           vlib_prefetch_buffer_header (b[1], STORE);
2909           CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
2910         }
2911
2912       next[0] = TCP_INPUT_NEXT_DROP;
2913       tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
2914                                      is_nolookup);
2915       if (PREDICT_TRUE (tc0 != 0))
2916         {
2917           ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
2918           vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
2919           tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], node);
2920         }
2921       else
2922         {
2923           tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
2924           b[0]->error = node->errors[error0];
2925         }
2926
2927       b += 1;
2928       next += 1;
2929       n_left_from -= 1;
2930     }
2931
2932   if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
2933     tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4);
2934
2935   vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
2936   return frame->n_vectors;
2937 }
2938
2939 VLIB_NODE_FN (tcp4_input_nolookup_node) (vlib_main_t * vm,
2940                                          vlib_node_runtime_t * node,
2941                                          vlib_frame_t * from_frame)
2942 {
2943   return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
2944                              1 /* is_nolookup */ );
2945 }
2946
2947 VLIB_NODE_FN (tcp6_input_nolookup_node) (vlib_main_t * vm,
2948                                          vlib_node_runtime_t * node,
2949                                          vlib_frame_t * from_frame)
2950 {
2951   return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
2952                              1 /* is_nolookup */ );
2953 }
2954
2955 /* *INDENT-OFF* */
2956 VLIB_REGISTER_NODE (tcp4_input_nolookup_node) =
2957 {
2958   .name = "tcp4-input-nolookup",
2959   /* Takes a vector of packets. */
2960   .vector_size = sizeof (u32),
2961   .n_errors = TCP_N_ERROR,
2962   .error_strings = tcp_error_strings,
2963   .n_next_nodes = TCP_INPUT_N_NEXT,
2964   .next_nodes =
2965   {
2966 #define _(s,n) [TCP_INPUT_NEXT_##s] = n,
2967     foreach_tcp4_input_next
2968 #undef _
2969   },
2970   .format_buffer = format_tcp_header,
2971   .format_trace = format_tcp_rx_trace,
2972 };
2973 /* *INDENT-ON* */
2974
2975 /* *INDENT-OFF* */
2976 VLIB_REGISTER_NODE (tcp6_input_nolookup_node) =
2977 {
2978   .name = "tcp6-input-nolookup",
2979   /* Takes a vector of packets. */
2980   .vector_size = sizeof (u32),
2981   .n_errors = TCP_N_ERROR,
2982   .error_strings = tcp_error_strings,
2983   .n_next_nodes = TCP_INPUT_N_NEXT,
2984   .next_nodes =
2985   {
2986 #define _(s,n) [TCP_INPUT_NEXT_##s] = n,
2987     foreach_tcp6_input_next
2988 #undef _
2989   },
2990   .format_buffer = format_tcp_header,
2991   .format_trace = format_tcp_rx_trace,
2992 };
2993 /* *INDENT-ON* */
2994
2995 VLIB_NODE_FN (tcp4_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
2996                                 vlib_frame_t * from_frame)
2997 {
2998   return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
2999                              0 /* is_nolookup */ );
3000 }
3001
3002 VLIB_NODE_FN (tcp6_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3003                                 vlib_frame_t * from_frame)
3004 {
3005   return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3006                              0 /* is_nolookup */ );
3007 }
3008
3009 /* *INDENT-OFF* */
3010 VLIB_REGISTER_NODE (tcp4_input_node) =
3011 {
3012   .name = "tcp4-input",
3013   /* Takes a vector of packets. */
3014   .vector_size = sizeof (u32),
3015   .n_errors = TCP_N_ERROR,
3016   .error_strings = tcp_error_strings,
3017   .n_next_nodes = TCP_INPUT_N_NEXT,
3018   .next_nodes =
3019   {
3020 #define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3021     foreach_tcp4_input_next
3022 #undef _
3023   },
3024   .format_buffer = format_tcp_header,
3025   .format_trace = format_tcp_rx_trace,
3026 };
3027 /* *INDENT-ON* */
3028
3029 /* *INDENT-OFF* */
3030 VLIB_REGISTER_NODE (tcp6_input_node) =
3031 {
3032   .name = "tcp6-input",
3033   /* Takes a vector of packets. */
3034   .vector_size = sizeof (u32),
3035   .n_errors = TCP_N_ERROR,
3036   .error_strings = tcp_error_strings,
3037   .n_next_nodes = TCP_INPUT_N_NEXT,
3038   .next_nodes =
3039   {
3040 #define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3041     foreach_tcp6_input_next
3042 #undef _
3043   },
3044   .format_buffer = format_tcp_header,
3045   .format_trace = format_tcp_rx_trace,
3046 };
3047 /* *INDENT-ON* */
3048
3049 #ifndef CLIB_MARCH_VARIANT
3050 static void
3051 tcp_dispatch_table_init (tcp_main_t * tm)
3052 {
3053   int i, j;
3054   for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3055     for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3056       {
3057         tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3058         tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3059       }
3060
3061 #define _(t,f,n,e)                                              \
3062 do {                                                            \
3063     tm->dispatch_table[TCP_STATE_##t][f].next = (n);            \
3064     tm->dispatch_table[TCP_STATE_##t][f].error = (e);           \
3065 } while (0)
3066
3067   /* RFC 793: In LISTEN if RST drop and if ACK return RST */
3068   _(LISTEN, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3069   _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_ACK_INVALID);
3070   _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_INVALID_CONNECTION);
3071   _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
3072   _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3073     TCP_ERROR_ACK_INVALID);
3074   _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3075     TCP_ERROR_SEGMENT_INVALID);
3076   _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3077     TCP_ERROR_SEGMENT_INVALID);
3078   _(LISTEN, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3079     TCP_ERROR_INVALID_CONNECTION);
3080   _(LISTEN, TCP_FLAG_FIN, TCP_INPUT_NEXT_RESET, TCP_ERROR_SEGMENT_INVALID);
3081   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3082     TCP_ERROR_SEGMENT_INVALID);
3083   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3084     TCP_ERROR_SEGMENT_INVALID);
3085   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3086     TCP_ERROR_SEGMENT_INVALID);
3087   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_DROP,
3088     TCP_ERROR_SEGMENT_INVALID);
3089   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3090     TCP_ERROR_SEGMENT_INVALID);
3091   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3092     TCP_ERROR_SEGMENT_INVALID);
3093   _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3094     TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3095   /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3096   _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3097   _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3098   _(SYN_RCVD, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3099     TCP_ERROR_NONE);
3100   _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3101   _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3102     TCP_ERROR_NONE);
3103   _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3104     TCP_ERROR_NONE);
3105   _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3106     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3107   _(SYN_RCVD, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3108   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3109     TCP_ERROR_NONE);
3110   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3111     TCP_ERROR_NONE);
3112   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3113     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3114   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3115     TCP_ERROR_NONE);
3116   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3117     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3118   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3119     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3120   _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3121     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3122   _(SYN_RCVD, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3123   /* SYN-ACK for a SYN */
3124   _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3125     TCP_ERROR_NONE);
3126   _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3127   _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3128   _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3129     TCP_ERROR_NONE);
3130   _(SYN_SENT, TCP_FLAG_FIN, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3131   _(SYN_SENT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3132     TCP_ERROR_NONE);
3133   /* ACK for for established connection -> tcp-established. */
3134   _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3135   /* FIN for for established connection -> tcp-established. */
3136   _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3137   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3138     TCP_ERROR_NONE);
3139   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3140     TCP_ERROR_NONE);
3141   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3142     TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3143   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED,
3144     TCP_ERROR_NONE);
3145   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3146     TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3147   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3148     TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3149   _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3150     TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3151   _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3152   _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3153     TCP_ERROR_NONE);
3154   _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3155   _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3156     TCP_ERROR_NONE);
3157   _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3158     TCP_ERROR_NONE);
3159   _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3160     TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3161   _(ESTABLISHED, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3162   /* ACK or FIN-ACK to our FIN */
3163   _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3164   _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
3165     TCP_ERROR_NONE);
3166   /* FIN in reply to our FIN from the other side */
3167   _(FIN_WAIT_1, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3168   _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3169   _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3170     TCP_ERROR_NONE);
3171   _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3172     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3173   _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3174     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3175   _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3176     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3177   _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3178     TCP_ERROR_NONE);
3179   _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3180     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3181   _(FIN_WAIT_1, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3182   _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3183     TCP_ERROR_NONE);
3184   _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3185     TCP_ERROR_NONE);
3186   _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3187     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3188   _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3189   _(FIN_WAIT_1, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3190     TCP_ERROR_NONE);
3191   _(CLOSING, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3192   _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3193   _(CLOSING, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3194   _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3195     TCP_ERROR_NONE);
3196   _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3197     TCP_ERROR_NONE);
3198   _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3199     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3200   _(CLOSING, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3201   _(CLOSING, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3202     TCP_ERROR_NONE);
3203   _(CLOSING, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3204   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3205     TCP_ERROR_NONE);
3206   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3207     TCP_ERROR_NONE);
3208   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3209     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3210   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3211     TCP_ERROR_NONE);
3212   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3213     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3214   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3215     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3216   _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3217     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3218   /* FIN confirming that the peer (app) has closed */
3219   _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3220   _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3221   _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3222     TCP_ERROR_NONE);
3223   _(FIN_WAIT_2, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3224   _(FIN_WAIT_2, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3225     TCP_ERROR_NONE);
3226   _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3227   _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3228     TCP_ERROR_NONE);
3229   _(CLOSE_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3230   _(CLOSE_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3231     TCP_ERROR_NONE);
3232   _(LAST_ACK, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3233   _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3234   _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3235   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3236     TCP_ERROR_NONE);
3237   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3238     TCP_ERROR_NONE);
3239   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3240     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3241   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3242     TCP_ERROR_NONE);
3243   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3244     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3245   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3246     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3247   _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3248     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3249   _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3250   _(LAST_ACK, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3251     TCP_ERROR_NONE);
3252   _(LAST_ACK, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3253   _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3254     TCP_ERROR_NONE);
3255   _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3256     TCP_ERROR_NONE);
3257   _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3258     TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3259   _(TIME_WAIT, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
3260   _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3261   _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3262     TCP_ERROR_NONE);
3263   _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3264   _(TIME_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3265     TCP_ERROR_NONE);
3266   _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3267   /* RFC793 CLOSED: An incoming segment containing a RST is discarded. An
3268    * incoming segment not containing a RST causes a RST to be sent in
3269    * response.*/
3270   _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
3271   _(CLOSED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3272     TCP_ERROR_CONNECTION_CLOSED);
3273   _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_CONNECTION_CLOSED);
3274   _(CLOSED, TCP_FLAG_SYN, TCP_INPUT_NEXT_RESET, TCP_ERROR_CONNECTION_CLOSED);
3275   _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3276     TCP_ERROR_CONNECTION_CLOSED);
3277 #undef _
3278 }
3279
3280 static clib_error_t *
3281 tcp_input_init (vlib_main_t * vm)
3282 {
3283   clib_error_t *error = 0;
3284   tcp_main_t *tm = vnet_get_tcp_main ();
3285
3286   if ((error = vlib_call_init_function (vm, tcp_init)))
3287     return error;
3288
3289   /* Initialize dispatch table. */
3290   tcp_dispatch_table_init (tm);
3291
3292   return error;
3293 }
3294
3295 VLIB_INIT_FUNCTION (tcp_input_init);
3296
3297 #endif /* CLIB_MARCH_VARIANT */
3298
3299 /*
3300  * fd.io coding-style-patch-verification: ON
3301  *
3302  * Local Variables:
3303  * eval: (c-set-style "gnu")
3304  * End:
3305  */