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