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