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