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