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