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