FD.io VPP  v21.10.1-2-g0a485f517
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/fib/ip4_fib.h>
18 #include <vnet/fib/ip6_fib.h>
19 #include <vnet/tcp/tcp.h>
20 #include <vnet/tcp/tcp_inlines.h>
21 #include <vnet/session/session.h>
22 #include <math.h>
23 
24 static char *tcp_error_strings[] = {
25 #define tcp_error(n,s) s,
26 #include <vnet/tcp/tcp_error.def>
27 #undef tcp_error
28 };
29 
30 /* All TCP nodes have the same outgoing arcs */
31 #define foreach_tcp_state_next \
32  _ (DROP4, "ip4-drop") \
33  _ (DROP6, "ip6-drop") \
34  _ (TCP4_OUTPUT, "tcp4-output") \
35  _ (TCP6_OUTPUT, "tcp6-output")
36 
37 typedef enum _tcp_established_next
38 {
39 #define _(s,n) TCP_ESTABLISHED_NEXT_##s,
41 #undef _
44 
45 typedef enum _tcp_rcv_process_next
46 {
47 #define _(s,n) TCP_RCV_PROCESS_NEXT_##s,
49 #undef _
52 
53 typedef enum _tcp_syn_sent_next
54 {
55 #define _(s,n) TCP_SYN_SENT_NEXT_##s,
57 #undef _
60 
61 typedef enum _tcp_listen_next
62 {
63 #define _(s,n) TCP_LISTEN_NEXT_##s,
65 #undef _
68 
69 /* Generic, state independent indices */
70 typedef enum _tcp_state_next
71 {
72 #define _(s,n) TCP_NEXT_##s,
74 #undef _
77 
78 #define tcp_next_output(is_ip4) (is_ip4 ? TCP_NEXT_TCP4_OUTPUT \
79  : TCP_NEXT_TCP6_OUTPUT)
80 
81 #define tcp_next_drop(is_ip4) (is_ip4 ? TCP_NEXT_DROP4 \
82  : TCP_NEXT_DROP6)
83 
84 /**
85  * Validate segment sequence number. As per RFC793:
86  *
87  * Segment Receive Test
88  * Length Window
89  * ------- ------- -------------------------------------------
90  * 0 0 SEG.SEQ = RCV.NXT
91  * 0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
92  * >0 0 not acceptable
93  * >0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
94  * or RCV.NXT =< SEG.SEQ+SEG.LEN-1 < RCV.NXT+RCV.WND
95  *
96  * This ultimately consists in checking if segment falls within the window.
97  * The one important difference compared to RFC793 is that we use rcv_las,
98  * or the rcv_nxt at last ack sent instead of rcv_nxt since that's the
99  * peer's reference when computing our receive window.
100  *
101  * This:
102  * seq_leq (end_seq, tc->rcv_las + tc->rcv_wnd) && seq_geq (seq, tc->rcv_las)
103  * however, is too strict when we have retransmits. Instead we just check that
104  * the seq is not beyond the right edge and that the end of the segment is not
105  * less than the left edge.
106  *
107  * N.B. rcv_nxt and rcv_wnd are both updated in this node if acks are sent, so
108  * use rcv_nxt in the right edge window test instead of rcv_las.
109  *
110  */
113 {
114  return (seq_geq (end_seq, tc->rcv_las)
115  && seq_leq (seq, tc->rcv_nxt + tc->rcv_wnd));
116 }
117 
118 /**
119  * RFC1323: Check against wrapped sequence numbers (PAWS). If we have
120  * timestamp to echo and it's less than tsval_recent, drop segment
121  * but still send an ACK in order to retain TCP's mechanism for detecting
122  * and recovering from half-open connections
123  *
124  * Or at least that's what the theory says. It seems that this might not work
125  * very well with packet reordering and fast retransmit. XXX
126  */
127 always_inline int
129 {
130  return tcp_opts_tstamp (&tc->rcv_opts)
131  && timestamp_lt (tc->rcv_opts.tsval, tc->tsval_recent);
132 }
133 
134 /**
135  * Update tsval recent
136  */
137 always_inline void
139 {
140  /*
141  * RFC1323: If Last.ACK.sent falls within the range of sequence numbers
142  * of an incoming segment:
143  * SEG.SEQ <= Last.ACK.sent < SEG.SEQ + SEG.LEN
144  * then the TSval from the segment is copied to TS.Recent;
145  * otherwise, the TSval is ignored.
146  */
147  if (tcp_opts_tstamp (&tc->rcv_opts) && seq_leq (seq, tc->rcv_las)
148  && seq_leq (tc->rcv_las, seq_end))
149  {
150  ASSERT (timestamp_leq (tc->tsval_recent, tc->rcv_opts.tsval));
151  tc->tsval_recent = tc->rcv_opts.tsval;
152  tc->tsval_recent_age = tcp_time_tstamp (tc->c_thread_index);
153  }
154 }
155 
156 static void
158 {
159  switch (tc->rst_state)
160  {
161  case TCP_STATE_SYN_RCVD:
162  /* Cleanup everything. App wasn't notified yet */
163  session_transport_delete_notify (&tc->connection);
165  break;
166  case TCP_STATE_SYN_SENT:
167  session_stream_connect_notify (&tc->connection, SESSION_E_REFUSED);
169  break;
170  case TCP_STATE_ESTABLISHED:
171  session_transport_reset_notify (&tc->connection);
172  session_transport_closed_notify (&tc->connection);
173  break;
174  case TCP_STATE_CLOSE_WAIT:
175  case TCP_STATE_FIN_WAIT_1:
176  case TCP_STATE_FIN_WAIT_2:
177  case TCP_STATE_CLOSING:
178  case TCP_STATE_LAST_ACK:
179  session_transport_closed_notify (&tc->connection);
180  break;
181  case TCP_STATE_CLOSED:
182  case TCP_STATE_TIME_WAIT:
183  break;
184  default:
185  TCP_DBG ("reset state: %u", tc->state);
186  }
187 }
188 
189 static void
191 {
192  if (!tcp_disconnect_pending (tc))
193  {
194  tc->rst_state = tc->state;
195  vec_add1 (wrk->pending_resets, tc->c_c_index);
197  }
198 }
199 
200 /**
201  * Handle reset packet
202  *
203  * Programs disconnect/reset notification that should be sent
204  * later by calling @ref tcp_handle_disconnects
205  */
206 static void
208 {
209  TCP_EVT (TCP_EVT_RST_RCVD, tc);
210  switch (tc->state)
211  {
212  case TCP_STATE_SYN_RCVD:
214  tcp_connection_set_state (tc, TCP_STATE_CLOSED);
215  break;
216  case TCP_STATE_SYN_SENT:
217  /* Do not program ntf because the connection is half-open */
218  tc->rst_state = tc->state;
219  tcp_handle_rst (tc);
220  break;
221  case TCP_STATE_ESTABLISHED:
225  tcp_connection_set_state (tc, TCP_STATE_CLOSED);
226  tcp_program_cleanup (wrk, tc);
227  break;
228  case TCP_STATE_CLOSE_WAIT:
229  case TCP_STATE_FIN_WAIT_1:
230  case TCP_STATE_FIN_WAIT_2:
231  case TCP_STATE_CLOSING:
232  case TCP_STATE_LAST_ACK:
236  /* Make sure we mark the session as closed. In some states we may
237  * be still trying to send data */
238  tcp_connection_set_state (tc, TCP_STATE_CLOSED);
239  tcp_program_cleanup (wrk, tc);
240  break;
241  case TCP_STATE_CLOSED:
242  case TCP_STATE_TIME_WAIT:
243  break;
244  default:
245  TCP_DBG ("reset state: %u", tc->state);
246  }
247 }
248 
249 /**
250  * Validate incoming segment as per RFC793 p. 69 and RFC1323 p. 19
251  *
252  * It first verifies if segment has a wrapped sequence number (PAWS) and then
253  * does the processing associated to the first four steps (ignoring security
254  * and precedence): sequence number, rst bit and syn bit checks.
255  *
256  * @return 0 if segments passes validation.
257  */
258 static int
260  vlib_buffer_t * b0, tcp_header_t * th0, u32 * error0)
261 {
262  /* We could get a burst of RSTs interleaved with acks */
263  if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
264  {
265  tcp_send_reset (tc0);
266  *error0 = TCP_ERROR_CONNECTION_CLOSED;
267  goto error;
268  }
269 
270  if (PREDICT_FALSE (!tcp_ack (th0) && !tcp_rst (th0) && !tcp_syn (th0)))
271  {
272  *error0 = TCP_ERROR_SEGMENT_INVALID;
273  goto error;
274  }
275 
276  if (PREDICT_FALSE (tcp_options_parse (th0, &tc0->rcv_opts, 0)))
277  {
278  *error0 = TCP_ERROR_OPTIONS;
279  goto error;
280  }
281 
283  {
284  *error0 = TCP_ERROR_PAWS;
285  TCP_EVT (TCP_EVT_PAWS_FAIL, tc0, vnet_buffer (b0)->tcp.seq_number,
286  vnet_buffer (b0)->tcp.seq_end);
287 
288  /* If it just so happens that a segment updates tsval_recent for a
289  * segment over 24 days old, invalidate tsval_recent. */
290  if (timestamp_lt (tc0->tsval_recent_age + TCP_PAWS_IDLE,
291  tcp_time_tstamp (tc0->c_thread_index)))
292  {
293  tc0->tsval_recent = tc0->rcv_opts.tsval;
294  clib_warning ("paws failed: 24-day old segment");
295  }
296  /* Drop after ack if not rst. Resets can fail paws check as per
297  * RFC 7323 sec. 5.2: When an <RST> segment is received, it MUST NOT
298  * be subjected to the PAWS check by verifying an acceptable value in
299  * SEG.TSval */
300  else if (!tcp_rst (th0))
301  {
302  tcp_program_ack (tc0);
303  TCP_EVT (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
304  goto error;
305  }
306  }
307 
308  /* 1st: check sequence number */
309  if (!tcp_segment_in_rcv_wnd (tc0, vnet_buffer (b0)->tcp.seq_number,
310  vnet_buffer (b0)->tcp.seq_end))
311  {
312  /* SYN/SYN-ACK retransmit */
313  if (tcp_syn (th0)
314  && vnet_buffer (b0)->tcp.seq_number == tc0->rcv_nxt - 1)
315  {
316  tcp_options_parse (th0, &tc0->rcv_opts, 1);
317  if (tc0->state == TCP_STATE_SYN_RCVD)
318  {
319  tcp_send_synack (tc0);
320  TCP_EVT (TCP_EVT_SYN_RCVD, tc0, 0);
321  *error0 = TCP_ERROR_SYNS_RCVD;
322  }
323  else
324  {
325  tcp_program_ack (tc0);
326  TCP_EVT (TCP_EVT_SYNACK_RCVD, tc0);
327  *error0 = TCP_ERROR_SYN_ACKS_RCVD;
328  }
329  goto error;
330  }
331 
332  /* If our window is 0 and the packet is in sequence, let it pass
333  * through for ack processing. It should be dropped later. */
334  if (tc0->rcv_wnd < tc0->snd_mss
335  && tc0->rcv_nxt == vnet_buffer (b0)->tcp.seq_number)
336  goto check_reset;
337 
338  /* If we entered recovery and peer did so as well, there's a chance that
339  * dup acks won't be acceptable on either end because seq_end may be less
340  * than rcv_las. This can happen if acks are lost in both directions. */
341  if (tcp_in_recovery (tc0)
342  && seq_geq (vnet_buffer (b0)->tcp.seq_number,
343  tc0->rcv_las - tc0->rcv_wnd)
344  && seq_leq (vnet_buffer (b0)->tcp.seq_end,
345  tc0->rcv_nxt + tc0->rcv_wnd))
346  goto check_reset;
347 
348  *error0 = TCP_ERROR_RCV_WND;
349 
350  /* If we advertised a zero rcv_wnd and the segment is in the past or the
351  * next one that we expect, it is probably a window probe */
352  if ((tc0->flags & TCP_CONN_ZERO_RWND_SENT)
353  && seq_lt (vnet_buffer (b0)->tcp.seq_end,
354  tc0->rcv_las + tc0->rcv_opts.mss))
355  *error0 = TCP_ERROR_ZERO_RWND;
356 
357  tc0->errors.below_data_wnd += seq_lt (vnet_buffer (b0)->tcp.seq_end,
358  tc0->rcv_las);
359 
360  /* If not RST, send dup ack */
361  if (!tcp_rst (th0))
362  {
363  tcp_program_dupack (tc0);
364  TCP_EVT (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
365  }
366  goto error;
367 
368  check_reset:
369  ;
370  }
371 
372  /* 2nd: check the RST bit */
373  if (PREDICT_FALSE (tcp_rst (th0)))
374  {
375  tcp_rcv_rst (wrk, tc0);
376  *error0 = TCP_ERROR_RST_RCVD;
377  goto error;
378  }
379 
380  /* 3rd: check security and precedence (skip) */
381 
382  /* 4th: check the SYN bit (in window) */
383  if (PREDICT_FALSE (tcp_syn (th0)))
384  {
385  /* As per RFC5961 send challenge ack instead of reset */
386  tcp_program_ack (tc0);
387  *error0 = TCP_ERROR_SPURIOUS_SYN;
388  goto error;
389  }
390 
391  /* If segment in window, save timestamp */
392  tcp_update_timestamp (tc0, vnet_buffer (b0)->tcp.seq_number,
393  vnet_buffer (b0)->tcp.seq_end);
394  return 0;
395 
396 error:
397  return -1;
398 }
399 
400 always_inline int
402 {
403  /* SND.UNA =< SEG.ACK =< SND.NXT */
404  if (!(seq_leq (tc->snd_una, vnet_buffer (b)->tcp.ack_number)
405  && seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
406  {
407  if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)
408  && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
409  {
410  tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
411  goto acceptable;
412  }
413  *error = TCP_ERROR_ACK_INVALID;
414  return -1;
415  }
416 
417 acceptable:
418  tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
419  tc->snd_una = vnet_buffer (b)->tcp.ack_number;
420  *error = TCP_ERROR_ACK_OK;
421  return 0;
422 }
423 
424 /**
425  * Compute smoothed RTT as per VJ's '88 SIGCOMM and RFC6298
426  *
427  * Note that although in the original article srtt and rttvar are scaled
428  * to minimize round-off errors, here we don't. Instead, we rely on
429  * better precision time measurements.
430  *
431  * A known limitation of the algorithm is that a drop in rtt results in a
432  * rttvar increase and bigger RTO.
433  *
434  * mrtt must be provided in @ref TCP_TICK multiples, i.e., in us. Note that
435  * timestamps are measured as ms ticks so they must be converted before
436  * calling this function.
437  */
438 static void
440 {
441  int err, diff;
442 
443  err = mrtt - tc->srtt;
444  tc->srtt = clib_max ((int) tc->srtt + (err >> 3), 1);
445  diff = (clib_abs (err) - (int) tc->rttvar) >> 2;
446  tc->rttvar = clib_max ((int) tc->rttvar + diff, 1);
447 }
448 
449 static inline void
451 {
452  tc->mrtt_us = tc->mrtt_us + (mrtt - tc->mrtt_us) * 0.125;
453 }
454 
455 /**
456  * Update rtt estimate
457  *
458  * We have potentially three sources of rtt measurements:
459  *
460  * TSOPT difference between current and echoed timestamp. It has ms
461  * precision and can be computed per ack
462  * ACK timing one sequence number is tracked per rtt with us (micro second)
463  * precision.
464  * rate sample if enabled, all outstanding bytes are tracked with us
465  * precision. Every ack and sack are a rtt sample
466  *
467  * Middle boxes are known to fiddle with TCP options so we give higher
468  * priority to ACK timing.
469  *
470  * For now, rate sample rtts are only used under congestion.
471  */
472 static int
474 {
475  u32 mrtt = 0;
476 
477  /* Karn's rule, part 1. Don't use retransmitted segments to estimate
478  * RTT because they're ambiguous. */
479  if (tcp_in_cong_recovery (tc))
480  {
481  /* Accept rtt estimates for samples that have not been retransmitted */
482  if (!(tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
483  || (rs->flags & TCP_BTS_IS_RXT))
484  goto done;
485  if (rs->rtt_time)
486  tcp_estimate_rtt_us (tc, rs->rtt_time);
487  mrtt = rs->rtt_time * THZ;
488  goto estimate_rtt;
489  }
490 
491  if (tc->rtt_ts && seq_geq (ack, tc->rtt_seq))
492  {
493  f64 sample = tcp_time_now_us (tc->c_thread_index) - tc->rtt_ts;
494  tcp_estimate_rtt_us (tc, sample);
495  mrtt = clib_max ((u32) (sample * THZ), 1);
496  /* Allow measuring of a new RTT */
497  tc->rtt_ts = 0;
498  }
499  /* As per RFC7323 TSecr can be used for RTTM only if the segment advances
500  * snd_una, i.e., the left side of the send window:
501  * seq_lt (tc->snd_una, ack). This is a condition for calling update_rtt */
502  else if (tcp_opts_tstamp (&tc->rcv_opts) && tc->rcv_opts.tsecr)
503  {
504  mrtt = clib_max (tcp_tstamp (tc) - tc->rcv_opts.tsecr, 1);
505  mrtt *= TCP_TSTP_TO_HZ;
506  }
507 
508 estimate_rtt:
509 
510  /* Ignore dubious measurements */
511  if (mrtt == 0 || mrtt > TCP_RTT_MAX)
512  goto done;
513 
514  tcp_estimate_rtt (tc, mrtt);
515 
516 done:
517 
518  /* If we got here something must've been ACKed so make sure boff is 0,
519  * even if mrtt is not valid since we update the rto lower */
520  tc->rto_boff = 0;
521  tcp_update_rto (tc);
522 
523  return 0;
524 }
525 
526 static void
528 {
529  u8 thread_index = vlib_num_workers ()? 1 : 0;
530  int mrtt;
531 
532  if (tc->rtt_ts)
533  {
534  tc->mrtt_us = tcp_time_now_us (thread_index) - tc->rtt_ts;
535  tc->mrtt_us = clib_max (tc->mrtt_us, 0.0001);
536  mrtt = clib_max ((u32) (tc->mrtt_us * THZ), 1);
537  tc->rtt_ts = 0;
538  }
539  else
540  {
541  mrtt = tcp_tstamp (tc) - tc->rcv_opts.tsecr;
542  mrtt = clib_max (mrtt, 1) * TCP_TSTP_TO_HZ;
543  /* Due to retransmits we don't know the initial mrtt */
544  if (tc->rto_boff && mrtt > 1 * THZ)
545  mrtt = 1 * THZ;
546  tc->mrtt_us = (f64) mrtt *TCP_TICK;
547  }
548 
549  if (mrtt > 0 && mrtt < TCP_RTT_MAX)
550  {
551  /* First measurement as per RFC 6298 */
552  tc->srtt = mrtt;
553  tc->rttvar = mrtt >> 1;
554  }
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 {
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  tcp_validate_txf_size (tc, tc->snd_nxt - tc->snd_una);
584 
585  if (tcp_is_descheduled (tc))
586  tcp_reschedule (tc);
587 
588  /* If everything has been acked, stop retransmit timer
589  * otherwise update. */
590  tcp_retransmit_timer_update (&wrk->timer_wheel, tc);
591 
592  /* Update pacer based on our new cwnd estimate */
594 
595  tc->burst_acked = 0;
596  }
597  _vec_len (wrk->pending_deq_acked) = 0;
598 }
599 
600 static void
602 {
603  if (!(tc->flags & TCP_CONN_DEQ_PENDING))
604  {
605  vec_add1 (wrk->pending_deq_acked, tc->c_c_index);
606  tc->flags |= TCP_CONN_DEQ_PENDING;
607  }
608  tc->burst_acked += tc->bytes_acked;
609 }
610 
611 /**
612  * Try to update snd_wnd based on feedback received from peer.
613  *
614  * If successful, and new window is 'effectively' 0, activate persist
615  * timer.
616  */
617 static void
618 tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
619 {
620  /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
621  * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
622  if (seq_lt (tc->snd_wl1, seq)
623  || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
624  {
625  tc->snd_wnd = snd_wnd;
626  tc->snd_wl1 = seq;
627  tc->snd_wl2 = ack;
628  TCP_EVT (TCP_EVT_SND_WND, tc);
629 
630  if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
631  {
632  /* Set persist timer if not set and we just got 0 wnd */
633  if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
634  && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
635  {
636  tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
637  tcp_persist_timer_set (&wrk->timer_wheel, tc);
638  }
639  }
640  else
641  {
642  if (PREDICT_FALSE (tcp_timer_is_active (tc, TCP_TIMER_PERSIST)))
643  {
644  tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
645  tcp_persist_timer_reset (&wrk->timer_wheel, tc);
646  }
647 
649  tcp_reschedule (tc);
650 
651  if (PREDICT_FALSE (!tcp_in_recovery (tc) && tc->rto_boff > 0))
652  {
653  tc->rto_boff = 0;
654  tcp_update_rto (tc);
655  }
656  }
657  }
658 }
659 
660 /**
661  * Init loss recovery/fast recovery.
662  *
663  * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
664  * updated in @ref tcp_cc_handle_event after fast retransmit
665  */
666 static void
668 {
669  tcp_fastrecovery_on (tc);
670  tc->snd_congestion = tc->snd_nxt;
671  tc->cwnd_acc_bytes = 0;
672  tc->snd_rxt_bytes = 0;
673  tc->rxt_delivered = 0;
674  tc->prr_delivered = 0;
675  tc->prr_start = tc->snd_una;
676  tc->prev_ssthresh = tc->ssthresh;
677  tc->prev_cwnd = tc->cwnd;
678 
679  tc->snd_rxt_ts = tcp_tstamp (tc);
680  tcp_cc_congestion (tc);
681 
682  /* Post retransmit update cwnd to ssthresh and account for the
683  * three segments that have left the network and should've been
684  * buffered at the receiver XXX */
685  if (!tcp_opts_sack_permitted (&tc->rcv_opts))
686  tc->cwnd += TCP_DUPACK_THRESHOLD * tc->snd_mss;
687 
688  tc->fr_occurences += 1;
689  TCP_EVT (TCP_EVT_CC_EVT, tc, 4);
690 }
691 
692 static void
694 {
695  tc->cwnd = tc->prev_cwnd;
696  tc->ssthresh = tc->prev_ssthresh;
698  ASSERT (tc->rto_boff == 0);
699  TCP_EVT (TCP_EVT_CC_EVT, tc, 5);
700 }
701 
702 static inline u8
704 {
705  return (tcp_in_recovery (tc) && tc->rto_boff == 1
706  && tc->snd_rxt_ts
707  && tcp_opts_tstamp (&tc->rcv_opts)
708  && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
709 }
710 
711 static inline u8
713 {
714  return (tcp_cc_is_spurious_timeout_rxt (tc));
715 }
716 
717 static inline u8
719 {
720  if (!has_sack)
721  {
722  /* If of of the two conditions lower hold, reset dupacks because
723  * we're probably after timeout (RFC6582 heuristics).
724  * If Cumulative ack does not cover more than congestion threshold,
725  * and:
726  * 1) The following doesn't hold: The congestion window is greater
727  * than SMSS bytes and the difference between highest_ack
728  * and prev_highest_ack is at most 4*SMSS bytes
729  * 2) Echoed timestamp in the last non-dup ack does not equal the
730  * stored timestamp
731  */
732  if (seq_leq (tc->snd_una, tc->snd_congestion)
733  && ((!(tc->cwnd > tc->snd_mss
734  && tc->bytes_acked <= 4 * tc->snd_mss))
735  || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
736  {
737  tc->rcv_dupacks = 0;
738  return 0;
739  }
740  }
741  return tc->sack_sb.lost_bytes || tc->rcv_dupacks >= tc->sack_sb.reorder;
742 }
743 
744 static int
746 {
748  u8 is_spurious = 0;
749 
751 
753  {
755  is_spurious = 1;
756  }
757 
758  tcp_connection_tx_pacer_reset (tc, tc->cwnd, 0 /* start bucket */ );
759  tc->rcv_dupacks = 0;
760 
761  /* Previous recovery left us congested. Continue sending as part
762  * of the current recovery event with an updated snd_congestion */
763  if (tc->sack_sb.sacked_bytes)
764  {
765  tc->snd_congestion = tc->snd_nxt;
767  return is_spurious;
768  }
769 
770  tc->rxt_delivered = 0;
771  tc->snd_rxt_bytes = 0;
772  tc->snd_rxt_ts = 0;
773  tc->prr_delivered = 0;
774  tc->rtt_ts = 0;
775  tc->flags &= ~TCP_CONN_RXT_PENDING;
776 
777  hole = scoreboard_first_hole (&tc->sack_sb);
778  if (hole && hole->start == tc->snd_una && hole->end == tc->snd_nxt)
779  scoreboard_clear (&tc->sack_sb);
780 
781  if (!tcp_in_recovery (tc) && !is_spurious)
782  tcp_cc_recovered (tc);
783 
786  tcp_recovery_off (tc);
787  TCP_EVT (TCP_EVT_CC_EVT, tc, 3);
788 
789  ASSERT (tc->rto_boff == 0);
792 
793  return is_spurious;
794 }
795 
796 static void
798 {
800 
801  /* Congestion avoidance */
802  tcp_cc_rcv_ack (tc, rs);
803 
804  /* If a cumulative ack, make sure dupacks is 0 */
805  tc->rcv_dupacks = 0;
806 
807  /* When dupacks hits the threshold we only enter fast retransmit if
808  * cumulative ack covers more than snd_congestion. Should snd_una
809  * wrap this test may fail under otherwise valid circumstances.
810  * Therefore, proactively update snd_congestion when wrap detected. */
811  if (PREDICT_FALSE
812  (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
813  && seq_gt (tc->snd_congestion, tc->snd_una)))
814  tc->snd_congestion = tc->snd_una - 1;
815 }
816 
817 /**
818  * One function to rule them all ... and in the darkness bind them
819  */
820 static void
822  u32 is_dack)
823 {
824  u8 has_sack = tcp_opts_sack_permitted (&tc->rcv_opts);
825 
826  /* If reneging, wait for timer based retransmits */
827  if (PREDICT_FALSE (tcp_is_lost_fin (tc) || tc->sack_sb.is_reneging))
828  return;
829 
830  /*
831  * If not in recovery, figure out if we should enter
832  */
833  if (!tcp_in_cong_recovery (tc))
834  {
835  ASSERT (is_dack);
836 
837  tc->rcv_dupacks++;
838  TCP_EVT (TCP_EVT_DUPACK_RCVD, tc, 1);
840 
841  if (tcp_should_fastrecover (tc, has_sack))
842  {
844 
845  if (has_sack)
846  scoreboard_init_rxt (&tc->sack_sb, tc->snd_una);
847 
848  tcp_connection_tx_pacer_reset (tc, tc->cwnd, 0 /* start bucket */ );
850  }
851 
852  return;
853  }
854 
855  /*
856  * Already in recovery
857  */
858 
859  /*
860  * Process (re)transmit feedback. Output path uses this to decide how much
861  * more data to release into the network
862  */
863  if (has_sack)
864  {
865  if (!tc->bytes_acked && tc->sack_sb.rxt_sacked)
867 
868  tc->rxt_delivered += tc->sack_sb.rxt_sacked;
869  tc->prr_delivered += tc->bytes_acked + tc->sack_sb.last_sacked_bytes
870  - tc->sack_sb.last_bytes_delivered;
871  }
872  else
873  {
874  if (is_dack)
875  {
876  tc->rcv_dupacks += 1;
877  TCP_EVT (TCP_EVT_DUPACK_RCVD, tc, 1);
878  }
879  tc->rxt_delivered = clib_min (tc->rxt_delivered + tc->bytes_acked,
880  tc->snd_rxt_bytes);
881  if (is_dack)
882  tc->prr_delivered += clib_min (tc->snd_mss,
883  tc->snd_nxt - tc->snd_una);
884  else
885  tc->prr_delivered += tc->bytes_acked - clib_min (tc->bytes_acked,
886  tc->snd_mss *
887  tc->rcv_dupacks);
888 
889  /* If partial ack, assume that the first un-acked segment was lost */
890  if (tc->bytes_acked || tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
892  }
893 
894  /*
895  * See if we can exit and stop retransmitting
896  */
897  if (seq_geq (tc->snd_una, tc->snd_congestion))
898  {
899  /* If spurious return, we've already updated everything */
900  if (tcp_cc_recover (tc))
901  {
902  tc->tsecr_last_ack = tc->rcv_opts.tsecr;
903  return;
904  }
905 
906  /* Treat as congestion avoidance ack */
907  tcp_cc_rcv_ack (tc, rs);
908  return;
909  }
910 
912 
913  /*
914  * Notify cc of the event
915  */
916 
917  if (!tc->bytes_acked)
918  {
920  return;
921  }
922 
923  /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
924  * reset dupacks to 0. Also needed if in congestion recovery */
925  tc->rcv_dupacks = 0;
926 
927  if (tcp_in_recovery (tc))
928  tcp_cc_rcv_ack (tc, rs);
929  else
931 }
932 
933 static void
935 {
936  if (!tcp_in_cong_recovery (tc))
937  return;
938 
939  if (tcp_opts_sack_permitted (&tc->rcv_opts))
940  tcp_rcv_sacks (tc, tc->snd_una);
941 
942  tc->bytes_acked = 0;
943 
944  if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
946 
947  tcp_cc_handle_event (tc, rs, 1);
948 }
949 
950 /**
951  * Check if duplicate ack as per RFC5681 Sec. 2
952  */
955  u32 prev_snd_una)
956 {
957  return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
958  && seq_gt (tc->snd_nxt, tc->snd_una)
959  && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
960  && (prev_snd_wnd == tc->snd_wnd));
961 }
962 
963 /**
964  * Checks if ack is a congestion control event.
965  */
966 static u8
968  u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
969 {
970  /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
971  * defined to be 'duplicate' as well */
972  *is_dack = tc->sack_sb.last_sacked_bytes
973  || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
974 
975  return (*is_dack || tcp_in_cong_recovery (tc));
976 }
977 
978 /**
979  * Process incoming ACK
980  */
981 static int
983  tcp_header_t * th, u32 * error)
984 {
985  u32 prev_snd_wnd, prev_snd_una;
986  tcp_rate_sample_t rs = { 0 };
987  u8 is_dack;
988 
989  TCP_EVT (TCP_EVT_CC_STAT, tc);
990 
991  /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
992  if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
993  {
994  /* We've probably entered recovery and the peer still has some
995  * of the data we've sent. Update snd_nxt and accept the ack */
996  if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)
997  && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
998  {
999  tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
1000  goto process_ack;
1001  }
1002 
1003  tc->errors.above_ack_wnd += 1;
1004  *error = TCP_ERROR_ACK_FUTURE;
1005  TCP_EVT (TCP_EVT_ACK_RCV_ERR, tc, 0, vnet_buffer (b)->tcp.ack_number);
1006  return -1;
1007  }
1008 
1009  /* If old ACK, probably it's an old dupack */
1010  if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
1011  {
1012  tc->errors.below_ack_wnd += 1;
1013  *error = TCP_ERROR_ACK_OLD;
1014  TCP_EVT (TCP_EVT_ACK_RCV_ERR, tc, 1, vnet_buffer (b)->tcp.ack_number);
1015 
1016  if (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una - tc->rcv_wnd))
1017  return -1;
1018 
1019  tcp_handle_old_ack (tc, &rs);
1020 
1021  /* Don't drop yet */
1022  return 0;
1023  }
1024 
1025 process_ack:
1026 
1027  /*
1028  * Looks okay, process feedback
1029  */
1030 
1031  if (tcp_opts_sack_permitted (&tc->rcv_opts))
1032  tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1033 
1034  prev_snd_wnd = tc->snd_wnd;
1035  prev_snd_una = tc->snd_una;
1036  tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1037  vnet_buffer (b)->tcp.ack_number,
1038  clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1039  tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
1040  tc->snd_una = vnet_buffer (b)->tcp.ack_number;
1041  tcp_validate_txf_size (tc, tc->bytes_acked);
1042 
1043  if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
1044  tcp_bt_sample_delivery_rate (tc, &rs);
1045 
1046  if (tc->bytes_acked + tc->sack_sb.last_sacked_bytes)
1047  {
1048  tcp_update_rtt (tc, &rs, vnet_buffer (b)->tcp.ack_number);
1049  if (tc->bytes_acked)
1050  tcp_program_dequeue (wrk, tc);
1051  }
1052 
1053  TCP_EVT (TCP_EVT_ACK_RCVD, tc);
1054 
1055  /*
1056  * Check if we have congestion event
1057  */
1058 
1059  if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
1060  {
1061  tcp_cc_handle_event (tc, &rs, is_dack);
1062  tc->dupacks_in += is_dack;
1063  if (!tcp_in_cong_recovery (tc))
1064  {
1065  *error = TCP_ERROR_ACK_OK;
1066  return 0;
1067  }
1068  *error = TCP_ERROR_ACK_DUP;
1069  if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th))
1070  return 0;
1071  return -1;
1072  }
1073 
1074  /*
1075  * Update congestion control (slow start/congestion avoidance)
1076  */
1077  tcp_cc_update (tc, &rs);
1078  *error = TCP_ERROR_ACK_OK;
1079  return 0;
1080 }
1081 
1082 static void
1084 {
1085  if (!tcp_disconnect_pending (tc))
1086  {
1087  vec_add1 (wrk->pending_disconnects, tc->c_c_index);
1089  }
1090 }
1091 
1092 static void
1094 {
1095  u32 thread_index, *pending_disconnects, *pending_resets;
1096  tcp_connection_t *tc;
1097  int i;
1098 
1099  if (vec_len (wrk->pending_disconnects))
1100  {
1102  pending_disconnects = wrk->pending_disconnects;
1103  for (i = 0; i < vec_len (pending_disconnects); i++)
1104  {
1105  tc = tcp_connection_get (pending_disconnects[i], thread_index);
1107  session_transport_closing_notify (&tc->connection);
1108  }
1109  _vec_len (wrk->pending_disconnects) = 0;
1110  }
1111 
1112  if (vec_len (wrk->pending_resets))
1113  {
1115  pending_resets = wrk->pending_resets;
1116  for (i = 0; i < vec_len (pending_resets); i++)
1117  {
1118  tc = tcp_connection_get (pending_resets[i], thread_index);
1120  tcp_handle_rst (tc);
1121  }
1122  _vec_len (wrk->pending_resets) = 0;
1123  }
1124 }
1125 
1126 static void
1128  u32 * error)
1129 {
1130  /* Reject out-of-order fins */
1131  if (vnet_buffer (b)->tcp.seq_end != tc->rcv_nxt)
1132  return;
1133 
1134  /* Account for the FIN and send ack */
1135  tc->rcv_nxt += 1;
1136  tc->flags |= TCP_CONN_FINRCVD;
1137  tcp_program_ack (tc);
1138  /* Enter CLOSE-WAIT and notify session. To avoid lingering
1139  * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
1140  tcp_connection_set_state (tc, TCP_STATE_CLOSE_WAIT);
1142  tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
1143  tcp_cfg.closewait_time);
1144  TCP_EVT (TCP_EVT_FIN_RCVD, tc);
1145  *error = TCP_ERROR_FIN_RCVD;
1146 }
1147 
1148 /** Enqueue data for delivery to application */
1149 static int
1151  u16 data_len)
1152 {
1153  int written, error = TCP_ERROR_ENQUEUED;
1154 
1155  ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
1156  ASSERT (data_len);
1157  written = session_enqueue_stream_connection (&tc->connection, b, 0,
1158  1 /* queue event */ , 1);
1159  tc->bytes_in += written;
1160 
1161  TCP_EVT (TCP_EVT_INPUT, tc, 0, data_len, written);
1162 
1163  /* Update rcv_nxt */
1164  if (PREDICT_TRUE (written == data_len))
1165  {
1166  tc->rcv_nxt += written;
1167  }
1168  /* If more data written than expected, account for out-of-order bytes. */
1169  else if (written > data_len)
1170  {
1171  tc->rcv_nxt += written;
1172  TCP_EVT (TCP_EVT_CC_INPUT, tc, data_len, written);
1173  }
1174  else if (written > 0)
1175  {
1176  /* We've written something but FIFO is probably full now */
1177  tc->rcv_nxt += written;
1178  error = TCP_ERROR_PARTIALLY_ENQUEUED;
1179  }
1180  else
1181  {
1182  /* Packet made it through for ack processing */
1183  if (tc->rcv_wnd < tc->snd_mss)
1184  return TCP_ERROR_ZERO_RWND;
1185 
1186  return TCP_ERROR_FIFO_FULL;
1187  }
1188 
1189  /* Update SACK list if need be */
1190  if (tcp_opts_sack_permitted (&tc->rcv_opts) && vec_len (tc->snd_sacks))
1191  {
1192  /* Remove SACK blocks that have been delivered */
1193  tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1194  }
1195 
1196  return error;
1197 }
1198 
1199 /** Enqueue out-of-order data */
1200 static int
1202  u16 data_len)
1203 {
1204  session_t *s0;
1205  int rv, offset;
1206 
1207  ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
1208  ASSERT (data_len);
1209 
1210  /* Enqueue out-of-order data with relative offset */
1211  rv = session_enqueue_stream_connection (&tc->connection, b,
1212  vnet_buffer (b)->tcp.seq_number -
1213  tc->rcv_nxt, 0 /* queue event */ ,
1214  0);
1215 
1216  /* Nothing written */
1217  if (rv)
1218  {
1219  TCP_EVT (TCP_EVT_INPUT, tc, 1, data_len, 0);
1220  return TCP_ERROR_FIFO_FULL;
1221  }
1222 
1223  TCP_EVT (TCP_EVT_INPUT, tc, 1, data_len, data_len);
1224  tc->bytes_in += data_len;
1225 
1226  /* Update SACK list if in use */
1227  if (tcp_opts_sack_permitted (&tc->rcv_opts))
1228  {
1229  ooo_segment_t *newest;
1230  u32 start, end;
1231 
1232  s0 = session_get (tc->c_s_index, tc->c_thread_index);
1233 
1234  /* Get the newest segment from the fifo */
1235  newest = svm_fifo_newest_ooo_segment (s0->rx_fifo);
1236  if (newest)
1237  {
1238  offset = ooo_segment_offset_prod (s0->rx_fifo, newest);
1239  ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1240  start = tc->rcv_nxt + offset;
1241  end = start + ooo_segment_length (s0->rx_fifo, newest);
1242  tcp_update_sack_list (tc, start, end);
1244  TCP_EVT (TCP_EVT_CC_SACKS, tc);
1245  }
1246  }
1247 
1248  return TCP_ERROR_ENQUEUED_OOO;
1249 }
1250 
1251 static int
1253 {
1254  u32 discard, first = b->current_length;
1256 
1257  /* Handle multi-buffer segments */
1258  if (n_bytes_to_drop > b->current_length)
1259  {
1260  if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1261  return -1;
1262  do
1263  {
1264  discard = clib_min (n_bytes_to_drop, b->current_length);
1265  vlib_buffer_advance (b, discard);
1267  n_bytes_to_drop -= discard;
1268  }
1269  while (n_bytes_to_drop);
1270  if (n_bytes_to_drop > first)
1271  b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
1272  }
1273  else
1274  vlib_buffer_advance (b, n_bytes_to_drop);
1275  vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
1276  return 0;
1277 }
1278 
1279 /**
1280  * Receive buffer for connection and handle acks
1281  *
1282  * It handles both in order or out-of-order data.
1283  */
1284 static int
1286  vlib_buffer_t * b)
1287 {
1288  u32 error, n_bytes_to_drop, n_data_bytes;
1289 
1290  vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1291  n_data_bytes = vnet_buffer (b)->tcp.data_len;
1292  ASSERT (n_data_bytes);
1293  tc->data_segs_in += 1;
1294 
1295  /* Make sure we don't consume trailing bytes */
1296  if (PREDICT_FALSE (b->current_length > n_data_bytes))
1297  b->current_length = n_data_bytes;
1298 
1299  /* Handle out-of-order data */
1300  if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1301  {
1302  /* Old sequence numbers allowed through because they overlapped
1303  * the rx window */
1304  if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
1305  {
1306  /* Completely in the past (possible retransmit). Ack
1307  * retransmissions since we may not have any data to send */
1308  if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
1309  {
1310  tcp_program_dupack (tc);
1311  tc->errors.below_data_wnd++;
1312  error = TCP_ERROR_SEGMENT_OLD;
1313  goto done;
1314  }
1315 
1316  /* Chop off the bytes in the past and see if what is left
1317  * can be enqueued in order */
1318  n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1319  n_data_bytes -= n_bytes_to_drop;
1320  vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
1321  if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
1322  {
1323  error = TCP_ERROR_SEGMENT_OLD;
1324  goto done;
1325  }
1326  goto in_order;
1327  }
1328 
1329  /* RFC2581: Enqueue and send DUPACK for fast retransmit */
1330  error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
1331  tcp_program_dupack (tc);
1332  TCP_EVT (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
1333  tc->errors.above_data_wnd += seq_gt (vnet_buffer (b)->tcp.seq_end,
1334  tc->rcv_las + tc->rcv_wnd);
1335  goto done;
1336  }
1337 
1338 in_order:
1339 
1340  /* In order data, enqueue. Fifo figures out by itself if any out-of-order
1341  * segments can be enqueued after fifo tail offset changes. */
1342  error = tcp_session_enqueue_data (tc, b, n_data_bytes);
1343  tcp_program_ack (tc);
1344 
1345 done:
1346  return error;
1347 }
1348 
1349 typedef struct
1350 {
1353 } tcp_rx_trace_t;
1354 
1355 static u8 *
1356 format_tcp_rx_trace (u8 * s, va_list * args)
1357 {
1358  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1359  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1360  tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
1361  tcp_connection_t *tc = &t->tcp_connection;
1362  u32 indent = format_get_indent (s);
1363 
1364  s = format (s, "%U state %U\n%U%U", format_tcp_connection_id, tc,
1365  format_tcp_state, tc->state, format_white_space, indent,
1366  format_tcp_header, &t->tcp_header, 128);
1367 
1368  return s;
1369 }
1370 
1371 static u8 *
1372 format_tcp_rx_trace_short (u8 * s, va_list * args)
1373 {
1374  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1375  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1376  tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
1377 
1378  s = format (s, "%d -> %d (%U)",
1379  clib_net_to_host_u16 (t->tcp_header.dst_port),
1380  clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state,
1381  t->tcp_connection.state);
1382 
1383  return s;
1384 }
1385 
1386 static void
1388  tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
1389 {
1390  if (tc0)
1391  {
1392  clib_memcpy_fast (&t0->tcp_connection, tc0,
1393  sizeof (t0->tcp_connection));
1394  }
1395  else
1396  {
1397  th0 = tcp_buffer_hdr (b0);
1398  }
1399  clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
1400 }
1401 
1402 static void
1404  vlib_frame_t * frame, u8 is_ip4)
1405 {
1406  u32 *from, n_left;
1407 
1408  n_left = frame->n_vectors;
1410 
1411  while (n_left >= 1)
1412  {
1413  tcp_connection_t *tc0;
1414  tcp_rx_trace_t *t0;
1415  tcp_header_t *th0;
1416  vlib_buffer_t *b0;
1417  u32 bi0;
1418 
1419  bi0 = from[0];
1420  b0 = vlib_get_buffer (vm, bi0);
1421 
1422  if (b0->flags & VLIB_BUFFER_IS_TRACED)
1423  {
1424  t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
1425  tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
1426  vm->thread_index);
1427  th0 = tcp_buffer_hdr (b0);
1428  tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
1429  }
1430 
1431  from += 1;
1432  n_left -= 1;
1433  }
1434 }
1435 
1436 always_inline void
1437 tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
1438  u8 is_ip4, u32 evt, u32 val)
1439 {
1440  if (is_ip4)
1441  vlib_node_increment_counter (vm, tcp4_node, evt, val);
1442  else
1443  vlib_node_increment_counter (vm, tcp6_node, evt, val);
1444 }
1445 
1446 #define tcp_maybe_inc_counter(node_id, err, count) \
1447 { \
1448  if (next0 != tcp_next_drop (is_ip4)) \
1449  tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
1450  tcp6_##node_id##_node.index, is_ip4, err, \
1451  1); \
1452 }
1453 #define tcp_inc_counter(node_id, err, count) \
1454  tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
1455  tcp6_##node_id##_node.index, is_ip4, \
1456  err, count)
1457 #define tcp_maybe_inc_err_counter(cnts, err) \
1458 { \
1459  cnts[err] += (next0 != tcp_next_drop (is_ip4)); \
1460 }
1461 #define tcp_inc_err_counter(cnts, err, val) \
1462 { \
1463  cnts[err] += val; \
1464 }
1465 #define tcp_store_err_counters(node_id, cnts) \
1466 { \
1467  int i; \
1468  for (i = 0; i < TCP_N_ERROR; i++) \
1469  if (cnts[i]) \
1470  tcp_inc_counter(node_id, i, cnts[i]); \
1471 }
1472 
1473 
1476  vlib_frame_t * frame, int is_ip4)
1477 {
1478  u32 thread_index = vm->thread_index, errors = 0;
1481  u16 err_counters[TCP_N_ERROR] = { 0 };
1482  u32 n_left_from, *from;
1483 
1484  if (node->flags & VLIB_NODE_FLAG_TRACE)
1486 
1488  n_left_from = frame->n_vectors;
1489 
1491  b = bufs;
1492 
1493  while (n_left_from > 0)
1494  {
1495  u32 error = TCP_ERROR_ACK_OK;
1496  tcp_connection_t *tc;
1497  tcp_header_t *th;
1498 
1499  if (n_left_from > 1)
1500  {
1501  vlib_prefetch_buffer_header (b[1], LOAD);
1502  CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1503  }
1504 
1505  tc = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index,
1506  thread_index);
1507 
1508  if (PREDICT_FALSE (tc == 0))
1509  {
1510  error = TCP_ERROR_INVALID_CONNECTION;
1511  goto done;
1512  }
1513 
1514  th = tcp_buffer_hdr (b[0]);
1515 
1516  /* TODO header prediction fast path */
1517 
1518  /* 1-4: check SEQ, RST, SYN */
1519  if (PREDICT_FALSE (tcp_segment_validate (wrk, tc, b[0], th, &error)))
1520  {
1521  TCP_EVT (TCP_EVT_SEG_INVALID, tc, vnet_buffer (b[0])->tcp);
1522  goto done;
1523  }
1524 
1525  /* 5: check the ACK field */
1526  if (PREDICT_FALSE (tcp_rcv_ack (wrk, tc, b[0], th, &error)))
1527  goto done;
1528 
1529  /* 6: check the URG bit TODO */
1530 
1531  /* 7: process the segment text */
1532  if (vnet_buffer (b[0])->tcp.data_len)
1533  error = tcp_segment_rcv (wrk, tc, b[0]);
1534 
1535  /* 8: check the FIN bit */
1536  if (PREDICT_FALSE (tcp_is_fin (th)))
1537  tcp_rcv_fin (wrk, tc, b[0], &error);
1538 
1539  done:
1540  tcp_inc_err_counter (err_counters, error, 1);
1541 
1542  n_left_from -= 1;
1543  b += 1;
1544  }
1545 
1546  errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
1547  thread_index);
1548  err_counters[TCP_ERROR_MSG_QUEUE_FULL] = errors;
1549  tcp_store_err_counters (established, err_counters);
1552  vlib_buffer_free (vm, from, frame->n_vectors);
1553 
1554  return frame->n_vectors;
1555 }
1556 
1560 {
1561  return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
1562 }
1563 
1567 {
1568  return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
1569 }
1570 
1571 /* *INDENT-OFF* */
1573 {
1574  .name = "tcp4-established",
1575  /* Takes a vector of packets. */
1576  .vector_size = sizeof (u32),
1577  .n_errors = TCP_N_ERROR,
1578  .error_strings = tcp_error_strings,
1579  .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
1580  .next_nodes =
1581  {
1582 #define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
1584 #undef _
1585  },
1586  .format_trace = format_tcp_rx_trace_short,
1587 };
1588 /* *INDENT-ON* */
1589 
1590 /* *INDENT-OFF* */
1592 {
1593  .name = "tcp6-established",
1594  /* Takes a vector of packets. */
1595  .vector_size = sizeof (u32),
1596  .n_errors = TCP_N_ERROR,
1597  .error_strings = tcp_error_strings,
1598  .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
1599  .next_nodes =
1600  {
1601 #define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
1603 #undef _
1604  },
1605  .format_trace = format_tcp_rx_trace_short,
1606 };
1607 /* *INDENT-ON* */
1608 
1609 
1610 static u8
1612  tcp_header_t * hdr)
1613 {
1615  u64 handle;
1616 
1617  if (!tc)
1618  return 1;
1619 
1620  /* Proxy case */
1621  if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
1622  return 1;
1623 
1624  u8 is_ip_valid = 0, val_l, val_r;
1625 
1626  if (tc->connection.is_ip4)
1627  {
1629 
1630  val_l = !ip4_address_compare (&ip4_hdr->dst_address,
1631  &tc->connection.lcl_ip.ip4);
1632  val_l = val_l || ip_is_zero (&tc->connection.lcl_ip, 1);
1633  val_r = !ip4_address_compare (&ip4_hdr->src_address,
1634  &tc->connection.rmt_ip.ip4);
1635  val_r = val_r || tc->state == TCP_STATE_LISTEN;
1636  is_ip_valid = val_l && val_r;
1637  }
1638  else
1639  {
1641 
1642  val_l = !ip6_address_compare (&ip6_hdr->dst_address,
1643  &tc->connection.lcl_ip.ip6);
1644  val_l = val_l || ip_is_zero (&tc->connection.lcl_ip, 0);
1645  val_r = !ip6_address_compare (&ip6_hdr->src_address,
1646  &tc->connection.rmt_ip.ip6);
1647  val_r = val_r || tc->state == TCP_STATE_LISTEN;
1648  is_ip_valid = val_l && val_r;
1649  }
1650 
1651  u8 is_valid = (tc->c_lcl_port == hdr->dst_port
1652  && (tc->state == TCP_STATE_LISTEN
1653  || tc->c_rmt_port == hdr->src_port) && is_ip_valid);
1654 
1655  if (!is_valid)
1656  {
1657  handle = session_lookup_half_open_handle (&tc->connection);
1658  tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
1659  tc->c_proto, tc->c_is_ip4);
1660 
1661  if (tmp)
1662  {
1663  if (tmp->lcl_port == hdr->dst_port
1664  && tmp->rmt_port == hdr->src_port)
1665  {
1666  TCP_DBG ("half-open is valid!");
1667  is_valid = 1;
1668  }
1669  }
1670  }
1671  return is_valid;
1672 }
1673 
1674 /**
1675  * Lookup transport connection
1676  */
1677 static tcp_connection_t *
1679  u8 is_ip4)
1680 {
1681  tcp_header_t *tcp;
1682  transport_connection_t *tconn;
1683  tcp_connection_t *tc;
1684  u8 is_filtered = 0;
1685  if (is_ip4)
1686  {
1687  ip4_header_t *ip4;
1689  tcp = ip4_next_header (ip4);
1690  tconn = session_lookup_connection_wt4 (fib_index,
1691  &ip4->dst_address,
1692  &ip4->src_address,
1693  tcp->dst_port,
1694  tcp->src_port,
1695  TRANSPORT_PROTO_TCP,
1696  thread_index, &is_filtered);
1697  tc = tcp_get_connection_from_transport (tconn);
1698  ASSERT (tcp_lookup_is_valid (tc, b, tcp));
1699  }
1700  else
1701  {
1702  ip6_header_t *ip6;
1704  tcp = ip6_next_header (ip6);
1705  tconn = session_lookup_connection_wt6 (fib_index,
1706  &ip6->dst_address,
1707  &ip6->src_address,
1708  tcp->dst_port,
1709  tcp->src_port,
1710  TRANSPORT_PROTO_TCP,
1711  thread_index, &is_filtered);
1712  tc = tcp_get_connection_from_transport (tconn);
1713  ASSERT (tcp_lookup_is_valid (tc, b, tcp));
1714  }
1715  return tc;
1716 }
1717 
1718 static tcp_connection_t *
1719 tcp_lookup_listener (vlib_buffer_t * b, u32 fib_index, int is_ip4)
1720 {
1721  session_t *s;
1722 
1723  if (is_ip4)
1724  {
1726  tcp_header_t *tcp = tcp_buffer_hdr (b);
1727  s = session_lookup_listener4 (fib_index,
1728  &ip4->dst_address,
1729  tcp->dst_port, TRANSPORT_PROTO_TCP, 1);
1730  }
1731  else
1732  {
1734  tcp_header_t *tcp = tcp_buffer_hdr (b);
1735  s = session_lookup_listener6 (fib_index,
1736  &ip6->dst_address,
1737  tcp->dst_port, TRANSPORT_PROTO_TCP, 1);
1738 
1739  }
1740  if (PREDICT_TRUE (s != 0))
1742  (TRANSPORT_PROTO_TCP,
1743  s->connection_index));
1744  else
1745  return 0;
1746 }
1747 
1748 static void
1750  u32 *from, u32 n_bufs)
1751 {
1752  tcp_connection_t *tc = 0;
1753  tcp_rx_trace_t *t;
1754  vlib_buffer_t *b;
1755  int i;
1756 
1757  for (i = 0; i < n_bufs; i++)
1758  {
1759  b = vlib_get_buffer (vm, from[i]);
1760  if (!(b->flags & VLIB_BUFFER_IS_TRACED))
1761  continue;
1762  tc =
1763  tcp_half_open_connection_get (vnet_buffer (b)->tcp.connection_index);
1764  t = vlib_add_trace (vm, node, b, sizeof (*t));
1765  tcp_set_rx_trace_data (t, tc, tcp_buffer_hdr (b), b, 1);
1766  }
1767 }
1768 
1769 always_inline void
1771 {
1772  vnet_main_t *vnm = vnet_get_main ();
1773  const dpo_id_t *dpo;
1774  const load_balance_t *lb;
1775  vnet_hw_interface_t *hw_if;
1776  u32 sw_if_idx, lb_idx;
1777 
1778  if (is_ipv4)
1779  {
1780  ip4_address_t *dst_addr = &(tc->c_rmt_ip.ip4);
1781  lb_idx = ip4_fib_forwarding_lookup (tc->c_fib_index, dst_addr);
1782  }
1783  else
1784  {
1785  ip6_address_t *dst_addr = &(tc->c_rmt_ip.ip6);
1786  lb_idx = ip6_fib_table_fwding_lookup (tc->c_fib_index, dst_addr);
1787  }
1788 
1789  lb = load_balance_get (lb_idx);
1790  if (PREDICT_FALSE (lb->lb_n_buckets > 1))
1791  return;
1792  dpo = load_balance_get_bucket_i (lb, 0);
1793 
1794  sw_if_idx = dpo_get_urpf (dpo);
1795  if (PREDICT_FALSE (sw_if_idx == ~0))
1796  return;
1797 
1798  hw_if = vnet_get_sup_hw_interface (vnm, sw_if_idx);
1800  tc->cfg_flags |= TCP_CFG_F_TSO;
1801 }
1802 
1805  vlib_frame_t *frame, int is_ip4)
1806 {
1807  u32 n_left_from, *from, thread_index = vm->thread_index, errors = 0;
1810 
1812  n_left_from = frame->n_vectors;
1813 
1814  if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
1816 
1818  b = bufs;
1819 
1820  while (n_left_from > 0)
1821  {
1822  u32 ack, seq, error = TCP_ERROR_NONE;
1823  tcp_connection_t *tc, *new_tc;
1824  tcp_header_t *tcp;
1825 
1827  vnet_buffer (b[0])->tcp.connection_index);
1828  if (PREDICT_FALSE (tc == 0))
1829  {
1830  error = TCP_ERROR_INVALID_CONNECTION;
1831  goto drop;
1832  }
1833 
1834  /* Half-open completed or cancelled recently but the connection
1835  * was't removed yet by the owning thread */
1836  if (PREDICT_FALSE (tc->flags & TCP_CONN_HALF_OPEN_DONE))
1837  {
1838  error = TCP_ERROR_SPURIOUS_SYN_ACK;
1839  goto drop;
1840  }
1841 
1842  ack = vnet_buffer (b[0])->tcp.ack_number;
1843  seq = vnet_buffer (b[0])->tcp.seq_number;
1844  tcp = tcp_buffer_hdr (b[0]);
1845 
1846  /* Crude check to see if the connection handle does not match
1847  * the packet. Probably connection just switched to established */
1848  if (PREDICT_FALSE (tcp->dst_port != tc->c_lcl_port ||
1849  tcp->src_port != tc->c_rmt_port))
1850  {
1851  error = TCP_ERROR_INVALID_CONNECTION;
1852  goto drop;
1853  }
1854 
1855  if (PREDICT_FALSE (!tcp_ack (tcp) && !tcp_rst (tcp) && !tcp_syn (tcp)))
1856  {
1857  error = TCP_ERROR_SEGMENT_INVALID;
1858  goto drop;
1859  }
1860 
1861  /* SYNs consume sequence numbers */
1862  vnet_buffer (b[0])->tcp.seq_end += tcp_is_syn (tcp);
1863 
1864  /*
1865  * 1. check the ACK bit
1866  */
1867 
1868  /*
1869  * If the ACK bit is set
1870  * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
1871  * the RST bit is set, if so drop the segment and return)
1872  * <SEQ=SEG.ACK><CTL=RST>
1873  * and discard the segment. Return.
1874  * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
1875  */
1876  if (tcp_ack (tcp))
1877  {
1878  if (seq_leq (ack, tc->iss) || seq_gt (ack, tc->snd_nxt))
1879  {
1880  if (!tcp_rst (tcp))
1881  tcp_send_reset_w_pkt (tc, b[0], thread_index, is_ip4);
1882  error = TCP_ERROR_RCV_WND;
1883  goto drop;
1884  }
1885 
1886  /* Make sure ACK is valid */
1887  if (seq_gt (tc->snd_una, ack))
1888  {
1889  error = TCP_ERROR_ACK_INVALID;
1890  goto drop;
1891  }
1892  }
1893 
1894  /*
1895  * 2. check the RST bit
1896  */
1897 
1898  if (tcp_rst (tcp))
1899  {
1900  /* If ACK is acceptable, signal client that peer is not
1901  * willing to accept connection and drop connection*/
1902  if (tcp_ack (tcp))
1903  tcp_rcv_rst (wrk, tc);
1904  error = TCP_ERROR_RST_RCVD;
1905  goto drop;
1906  }
1907 
1908  /*
1909  * 3. check the security and precedence (skipped)
1910  */
1911 
1912  /*
1913  * 4. check the SYN bit
1914  */
1915 
1916  /* No SYN flag. Drop. */
1917  if (!tcp_syn (tcp))
1918  {
1919  error = TCP_ERROR_SEGMENT_INVALID;
1920  goto drop;
1921  }
1922 
1923  /* Parse options */
1924  if (tcp_options_parse (tcp, &tc->rcv_opts, 1))
1925  {
1926  error = TCP_ERROR_OPTIONS;
1927  goto drop;
1928  }
1929 
1930  /* Valid SYN or SYN-ACK. Move connection from half-open pool to
1931  * current thread pool. */
1932  new_tc = tcp_connection_alloc_w_base (thread_index, &tc);
1933  new_tc->rcv_nxt = vnet_buffer (b[0])->tcp.seq_end;
1934  new_tc->irs = seq;
1935  new_tc->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
1936 
1937  if (tcp_opts_tstamp (&new_tc->rcv_opts))
1938  {
1939  new_tc->tsval_recent = new_tc->rcv_opts.tsval;
1940  new_tc->tsval_recent_age = tcp_time_tstamp (thread_index);
1941  }
1942 
1943  if (tcp_opts_wscale (&new_tc->rcv_opts))
1944  new_tc->snd_wscale = new_tc->rcv_opts.wscale;
1945  else
1946  new_tc->rcv_wscale = 0;
1947 
1948  new_tc->snd_wnd = clib_net_to_host_u16 (tcp->window)
1949  << new_tc->snd_wscale;
1950  new_tc->snd_wl1 = seq;
1951  new_tc->snd_wl2 = ack;
1952 
1953  tcp_connection_init_vars (new_tc);
1954 
1955  /* SYN-ACK: See if we can switch to ESTABLISHED state */
1956  if (PREDICT_TRUE (tcp_ack (tcp)))
1957  {
1958  /* Our SYN is ACKed: we have iss < ack = snd_una */
1959 
1960  /* TODO Dequeue acknowledged segments if we support Fast Open */
1961  new_tc->snd_una = ack;
1962  new_tc->state = TCP_STATE_ESTABLISHED;
1963 
1964  /* Make sure las is initialized for the wnd computation */
1965  new_tc->rcv_las = new_tc->rcv_nxt;
1966 
1967  /* Notify app that we have connection. If session layer can't
1968  * allocate session send reset */
1969  if (session_stream_connect_notify (&new_tc->connection,
1970  SESSION_E_NONE))
1971  {
1972  tcp_send_reset_w_pkt (new_tc, b[0], thread_index, is_ip4);
1973  tcp_connection_cleanup (new_tc);
1974  error = TCP_ERROR_CREATE_SESSION_FAIL;
1975  goto cleanup_ho;
1976  }
1977 
1978  transport_fifos_init_ooo (&new_tc->connection);
1979  new_tc->tx_fifo_size = transport_tx_fifo_size (&new_tc->connection);
1980  /* Update rtt with the syn-ack sample */
1981  tcp_estimate_initial_rtt (new_tc);
1982  TCP_EVT (TCP_EVT_SYNACK_RCVD, new_tc);
1983  error = TCP_ERROR_SYN_ACKS_RCVD;
1984  }
1985  /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
1986  else
1987  {
1988  new_tc->state = TCP_STATE_SYN_RCVD;
1989 
1990  /* Notify app that we have connection */
1991  if (session_stream_connect_notify (&new_tc->connection,
1992  SESSION_E_NONE))
1993  {
1994  tcp_connection_cleanup (new_tc);
1995  tcp_send_reset_w_pkt (tc, b[0], thread_index, is_ip4);
1996  TCP_EVT (TCP_EVT_RST_SENT, tc);
1997  error = TCP_ERROR_CREATE_SESSION_FAIL;
1998  goto cleanup_ho;
1999  }
2000 
2001  transport_fifos_init_ooo (&new_tc->connection);
2002  new_tc->tx_fifo_size = transport_tx_fifo_size (&new_tc->connection);
2003  new_tc->rtt_ts = 0;
2004  tcp_init_snd_vars (new_tc);
2005  tcp_send_synack (new_tc);
2006  error = TCP_ERROR_SYNS_RCVD;
2007  goto cleanup_ho;
2008  }
2009 
2010  if (!(new_tc->cfg_flags & TCP_CFG_F_NO_TSO))
2011  tcp_check_tx_offload (new_tc, is_ip4);
2012 
2013  /* Read data, if any */
2014  if (PREDICT_FALSE (vnet_buffer (b[0])->tcp.data_len))
2015  {
2016  clib_warning ("rcvd data in syn-sent");
2017  error = tcp_segment_rcv (wrk, new_tc, b[0]);
2018  if (error == TCP_ERROR_ACK_OK)
2019  error = TCP_ERROR_SYN_ACKS_RCVD;
2020  }
2021  else
2022  {
2023  /* Send ack now instead of programming it because connection was
2024  * just established and it's not optional. */
2025  tcp_send_ack (new_tc);
2026  }
2027 
2028  cleanup_ho:
2029 
2030  /* If this is not the owning thread, wait for syn retransmit to
2031  * expire and cleanup then */
2033  tc->flags |= TCP_CONN_HALF_OPEN_DONE;
2034 
2035  drop:
2036 
2037  b += 1;
2038  n_left_from -= 1;
2039  tcp_inc_counter (syn_sent, error, 1);
2040  }
2041 
2042  errors =
2043  session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP, thread_index);
2044  tcp_inc_counter (syn_sent, TCP_ERROR_MSG_QUEUE_FULL, errors);
2045  vlib_buffer_free (vm, from, frame->n_vectors);
2047 
2048  return frame->n_vectors;
2049 }
2050 
2054 {
2055  return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2056 }
2057 
2061 {
2062  return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2063 }
2064 
2065 /* *INDENT-OFF* */
2067 {
2068  .name = "tcp4-syn-sent",
2069  /* Takes a vector of packets. */
2070  .vector_size = sizeof (u32),
2071  .n_errors = TCP_N_ERROR,
2072  .error_strings = tcp_error_strings,
2073  .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2074  .next_nodes =
2075  {
2076 #define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2078 #undef _
2079  },
2080  .format_trace = format_tcp_rx_trace_short,
2081 };
2082 /* *INDENT-ON* */
2083 
2084 /* *INDENT-OFF* */
2086 {
2087  .name = "tcp6-syn-sent",
2088  /* Takes a vector of packets. */
2089  .vector_size = sizeof (u32),
2090  .n_errors = TCP_N_ERROR,
2091  .error_strings = tcp_error_strings,
2092  .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2093  .next_nodes =
2094  {
2095 #define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2097 #undef _
2098  },
2099  .format_trace = format_tcp_rx_trace_short,
2100 };
2101 /* *INDENT-ON* */
2102 
2103 static void
2105  u32 *from, u32 n_bufs)
2106 {
2108  tcp_connection_t *tc = 0;
2109  tcp_rx_trace_t *t;
2110  vlib_buffer_t *b;
2111  int i;
2112 
2113  for (i = 0; i < n_bufs; i++)
2114  {
2115  b = vlib_get_buffer (vm, from[i]);
2116  if (!(b->flags & VLIB_BUFFER_IS_TRACED))
2117  continue;
2118  tc = tcp_connection_get (vnet_buffer (b)->tcp.connection_index,
2119  thread_index);
2120  t = vlib_add_trace (vm, node, b, sizeof (*t));
2121  tcp_set_rx_trace_data (t, tc, tcp_buffer_hdr (b), b, 1);
2122  }
2123 }
2124 
2125 /**
2126  * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
2127  * as per RFC793 p. 64
2128  */
2131  vlib_frame_t *frame, int is_ip4)
2132 {
2133  u32 thread_index = vm->thread_index, errors, n_left_from, *from, max_deq;
2136 
2138  n_left_from = frame->n_vectors;
2139 
2140  if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
2142 
2144  b = bufs;
2145 
2146  while (n_left_from > 0)
2147  {
2148  u32 error = TCP_ERROR_NONE;
2149  tcp_header_t *tcp = 0;
2150  tcp_connection_t *tc;
2151  u8 is_fin;
2152 
2153  tc = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index,
2154  thread_index);
2155  if (PREDICT_FALSE (tc == 0))
2156  {
2157  error = TCP_ERROR_INVALID_CONNECTION;
2158  goto drop;
2159  }
2160 
2161  tcp = tcp_buffer_hdr (b[0]);
2162  is_fin = tcp_is_fin (tcp);
2163 
2164  if (CLIB_DEBUG)
2165  {
2166  if (!(tc->connection.flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
2167  {
2169  tmp = tcp_lookup_connection (tc->c_fib_index, b[0], thread_index,
2170  is_ip4);
2171  if (tmp->state != tc->state)
2172  {
2173  if (tc->state != TCP_STATE_CLOSED)
2174  clib_warning ("state changed");
2175  goto drop;
2176  }
2177  }
2178  }
2179 
2180  /*
2181  * Special treatment for CLOSED
2182  */
2183  if (PREDICT_FALSE (tc->state == TCP_STATE_CLOSED))
2184  {
2185  error = TCP_ERROR_CONNECTION_CLOSED;
2186  goto drop;
2187  }
2188 
2189  /*
2190  * For all other states (except LISTEN)
2191  */
2192 
2193  /* 1-4: check SEQ, RST, SYN */
2194  if (PREDICT_FALSE (tcp_segment_validate (wrk, tc, b[0], tcp, &error)))
2195  goto drop;
2196 
2197  /* 5: check the ACK field */
2198  switch (tc->state)
2199  {
2200  case TCP_STATE_SYN_RCVD:
2201 
2202  /* Make sure the segment is exactly right */
2203  if (tc->rcv_nxt != vnet_buffer (b[0])->tcp.seq_number || is_fin)
2204  {
2205  tcp_send_reset_w_pkt (tc, b[0], thread_index, is_ip4);
2206  error = TCP_ERROR_SEGMENT_INVALID;
2207  goto drop;
2208  }
2209 
2210  /*
2211  * If the segment acknowledgment is not acceptable, form a
2212  * reset segment,
2213  * <SEQ=SEG.ACK><CTL=RST>
2214  * and send it.
2215  */
2216  if (tcp_rcv_ack_no_cc (tc, b[0], &error))
2217  {
2218  tcp_send_reset_w_pkt (tc, b[0], thread_index, is_ip4);
2219  error = TCP_ERROR_SEGMENT_INVALID;
2220  goto drop;
2221  }
2222 
2223  /* Update rtt and rto */
2226 
2227  /* Switch state to ESTABLISHED */
2228  tc->state = TCP_STATE_ESTABLISHED;
2229  TCP_EVT (TCP_EVT_STATE_CHANGE, tc);
2230 
2231  if (!(tc->cfg_flags & TCP_CFG_F_NO_TSO))
2232  tcp_check_tx_offload (tc, is_ip4);
2233 
2234  /* Initialize session variables */
2235  tc->snd_una = vnet_buffer (b[0])->tcp.ack_number;
2236  tc->snd_wnd = clib_net_to_host_u16 (tcp->window)
2237  << tc->rcv_opts.wscale;
2238  tc->snd_wl1 = vnet_buffer (b[0])->tcp.seq_number;
2239  tc->snd_wl2 = vnet_buffer (b[0])->tcp.ack_number;
2240 
2241  /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
2242  tcp_retransmit_timer_reset (&wrk->timer_wheel, tc);
2243  if (session_stream_accept_notify (&tc->connection))
2244  {
2245  error = TCP_ERROR_MSG_QUEUE_FULL;
2246  tcp_send_reset (tc);
2247  session_transport_delete_notify (&tc->connection);
2249  goto drop;
2250  }
2251  error = TCP_ERROR_ACK_OK;
2252  break;
2253  case TCP_STATE_ESTABLISHED:
2254  /* We can get packets in established state here because they
2255  * were enqueued before state change */
2256  if (tcp_rcv_ack (wrk, tc, b[0], tcp, &error))
2257  goto drop;
2258 
2259  break;
2260  case TCP_STATE_FIN_WAIT_1:
2261  /* In addition to the processing for the ESTABLISHED state, if
2262  * our FIN is now acknowledged then enter FIN-WAIT-2 and
2263  * continue processing in that state. */
2264  if (tcp_rcv_ack (wrk, tc, b[0], tcp, &error))
2265  goto drop;
2266 
2267  /* Still have to send the FIN */
2268  if (tc->flags & TCP_CONN_FINPNDG)
2269  {
2270  /* TX fifo finally drained */
2271  max_deq = transport_max_tx_dequeue (&tc->connection);
2272  if (max_deq <= tc->burst_acked)
2273  tcp_send_fin (tc);
2274  /* If a fin was received and data was acked extend wait */
2275  else if ((tc->flags & TCP_CONN_FINRCVD) && tc->bytes_acked)
2276  tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
2277  tcp_cfg.closewait_time);
2278  }
2279  /* If FIN is ACKed */
2280  else if (tc->snd_una == tc->snd_nxt)
2281  {
2282  /* Stop all retransmit timers because we have nothing more
2283  * to send. */
2285 
2286  /* We already have a FIN but didn't transition to CLOSING
2287  * because of outstanding tx data. Close the connection. */
2288  if (tc->flags & TCP_CONN_FINRCVD)
2289  {
2290  tcp_connection_set_state (tc, TCP_STATE_CLOSED);
2291  session_transport_closed_notify (&tc->connection);
2292  tcp_program_cleanup (wrk, tc);
2293  goto drop;
2294  }
2295 
2296  tcp_connection_set_state (tc, TCP_STATE_FIN_WAIT_2);
2297  /* Enable waitclose because we're willing to wait for peer's
2298  * FIN but not indefinitely. */
2299  tcp_timer_set (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
2300  tcp_cfg.finwait2_time);
2301 
2302  /* Don't try to deq the FIN acked */
2303  if (tc->burst_acked > 1)
2304  session_tx_fifo_dequeue_drop (&tc->connection,
2305  tc->burst_acked - 1);
2306  tc->burst_acked = 0;
2307  }
2308  break;
2309  case TCP_STATE_FIN_WAIT_2:
2310  /* In addition to the processing for the ESTABLISHED state, if
2311  * the retransmission queue is empty, the user's CLOSE can be
2312  * acknowledged ("ok") but do not delete the TCB. */
2313  if (tcp_rcv_ack_no_cc (tc, b[0], &error))
2314  goto drop;
2315  tc->burst_acked = 0;
2316  break;
2317  case TCP_STATE_CLOSE_WAIT:
2318  /* Do the same processing as for the ESTABLISHED state. */
2319  if (tcp_rcv_ack (wrk, tc, b[0], tcp, &error))
2320  goto drop;
2321 
2322  if (!(tc->flags & TCP_CONN_FINPNDG))
2323  break;
2324 
2325  /* Still have outstanding tx data */
2326  max_deq = transport_max_tx_dequeue (&tc->connection);
2327  if (max_deq > tc->burst_acked)
2328  break;
2329 
2330  tcp_send_fin (tc);
2332  tcp_connection_set_state (tc, TCP_STATE_LAST_ACK);
2333  tcp_timer_set (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
2334  tcp_cfg.lastack_time);
2335  break;
2336  case TCP_STATE_CLOSING:
2337  /* In addition to the processing for the ESTABLISHED state, if
2338  * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2339  * otherwise ignore the segment. */
2340  if (tcp_rcv_ack_no_cc (tc, b[0], &error))
2341  goto drop;
2342 
2343  if (tc->snd_una != tc->snd_nxt)
2344  goto drop;
2345 
2347  tcp_connection_set_state (tc, TCP_STATE_TIME_WAIT);
2348  tcp_timer_set (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
2349  tcp_cfg.timewait_time);
2350  session_transport_closed_notify (&tc->connection);
2351  goto drop;
2352 
2353  break;
2354  case TCP_STATE_LAST_ACK:
2355  /* The only thing that [should] arrive in this state is an
2356  * acknowledgment of our FIN. If our FIN is now acknowledged,
2357  * delete the TCB, enter the CLOSED state, and return. */
2358 
2359  if (tcp_rcv_ack_no_cc (tc, b[0], &error))
2360  goto drop;
2361 
2362  /* Apparently our ACK for the peer's FIN was lost */
2363  if (is_fin && tc->snd_una != tc->snd_nxt)
2364  {
2365  tcp_send_fin (tc);
2366  goto drop;
2367  }
2368 
2369  tcp_connection_set_state (tc, TCP_STATE_CLOSED);
2370  session_transport_closed_notify (&tc->connection);
2371 
2372  /* Don't free the connection from the data path since
2373  * we can't ensure that we have no packets already enqueued
2374  * to output. Rely instead on the waitclose timer */
2376  tcp_program_cleanup (tcp_get_worker (tc->c_thread_index), tc);
2377 
2378  goto drop;
2379 
2380  break;
2381  case TCP_STATE_TIME_WAIT:
2382  /* The only thing that can arrive in this state is a
2383  * retransmission of the remote FIN. Acknowledge it, and restart
2384  * the 2 MSL timeout. */
2385 
2386  if (tcp_rcv_ack_no_cc (tc, b[0], &error))
2387  goto drop;
2388 
2389  if (!is_fin)
2390  goto drop;
2391 
2392  tcp_program_ack (tc);
2393  tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
2394  tcp_cfg.timewait_time);
2395  goto drop;
2396 
2397  break;
2398  default:
2399  ASSERT (0);
2400  }
2401 
2402  /* 6: check the URG bit TODO */
2403 
2404  /* 7: process the segment text */
2405  switch (tc->state)
2406  {
2407  case TCP_STATE_ESTABLISHED:
2408  case TCP_STATE_FIN_WAIT_1:
2409  case TCP_STATE_FIN_WAIT_2:
2410  if (vnet_buffer (b[0])->tcp.data_len)
2411  error = tcp_segment_rcv (wrk, tc, b[0]);
2412  /* Don't accept out of order fins lower */
2413  if (vnet_buffer (b[0])->tcp.seq_end != tc->rcv_nxt)
2414  goto drop;
2415  break;
2416  case TCP_STATE_CLOSE_WAIT:
2417  case TCP_STATE_CLOSING:
2418  case TCP_STATE_LAST_ACK:
2419  case TCP_STATE_TIME_WAIT:
2420  /* This should not occur, since a FIN has been received from the
2421  * remote side. Ignore the segment text. */
2422  break;
2423  }
2424 
2425  /* 8: check the FIN bit */
2426  if (!is_fin)
2427  goto drop;
2428 
2429  TCP_EVT (TCP_EVT_FIN_RCVD, tc);
2430 
2431  switch (tc->state)
2432  {
2433  case TCP_STATE_ESTABLISHED:
2434  /* Account for the FIN and send ack */
2435  tc->rcv_nxt += 1;
2436  tcp_program_ack (tc);
2437  tcp_connection_set_state (tc, TCP_STATE_CLOSE_WAIT);
2439  tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
2440  tcp_cfg.closewait_time);
2441  break;
2442  case TCP_STATE_SYN_RCVD:
2443  /* Send FIN-ACK, enter LAST-ACK and because the app was not
2444  * notified yet, set a cleanup timer instead of relying on
2445  * disconnect notify and the implicit close call. */
2447  tc->rcv_nxt += 1;
2448  tcp_send_fin (tc);
2449  tcp_connection_set_state (tc, TCP_STATE_LAST_ACK);
2450  tcp_timer_set (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
2451  tcp_cfg.lastack_time);
2452  break;
2453  case TCP_STATE_CLOSE_WAIT:
2454  case TCP_STATE_CLOSING:
2455  case TCP_STATE_LAST_ACK:
2456  /* move along .. */
2457  break;
2458  case TCP_STATE_FIN_WAIT_1:
2459  tc->rcv_nxt += 1;
2460 
2461  if (tc->flags & TCP_CONN_FINPNDG)
2462  {
2463  /* If data is outstanding, stay in FIN_WAIT_1 and try to finish
2464  * sending it. Since we already received a fin, do not wait
2465  * for too long. */
2466  tc->flags |= TCP_CONN_FINRCVD;
2467  tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
2468  tcp_cfg.closewait_time);
2469  }
2470  else
2471  {
2472  tcp_connection_set_state (tc, TCP_STATE_CLOSING);
2473  tcp_program_ack (tc);
2474  /* Wait for ACK for our FIN but not forever */
2475  tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
2476  tcp_cfg.closing_time);
2477  }
2478  break;
2479  case TCP_STATE_FIN_WAIT_2:
2480  /* Got FIN, send ACK! Be more aggressive with resource cleanup */
2481  tc->rcv_nxt += 1;
2482  tcp_connection_set_state (tc, TCP_STATE_TIME_WAIT);
2484  tcp_timer_set (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
2485  tcp_cfg.timewait_time);
2486  tcp_program_ack (tc);
2487  session_transport_closed_notify (&tc->connection);
2488  break;
2489  case TCP_STATE_TIME_WAIT:
2490  /* Remain in the TIME-WAIT state. Restart the time-wait
2491  * timeout.
2492  */
2493  tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
2494  tcp_cfg.timewait_time);
2495  break;
2496  }
2497  error = TCP_ERROR_FIN_RCVD;
2498 
2499  drop:
2500 
2501  b += 1;
2502  n_left_from -= 1;
2503  tcp_inc_counter (rcv_process, error, 1);
2504  }
2505 
2506  errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2507  thread_index);
2508  tcp_inc_counter (rcv_process, TCP_ERROR_MSG_QUEUE_FULL, errors);
2511  vlib_buffer_free (vm, from, frame->n_vectors);
2512 
2513  return frame->n_vectors;
2514 }
2515 
2519 {
2520  return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2521 }
2522 
2526 {
2527  return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2528 }
2529 
2530 /* *INDENT-OFF* */
2532 {
2533  .name = "tcp4-rcv-process",
2534  /* Takes a vector of packets. */
2535  .vector_size = sizeof (u32),
2536  .n_errors = TCP_N_ERROR,
2537  .error_strings = tcp_error_strings,
2538  .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2539  .next_nodes =
2540  {
2541 #define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
2543 #undef _
2544  },
2545  .format_trace = format_tcp_rx_trace_short,
2546 };
2547 /* *INDENT-ON* */
2548 
2549 /* *INDENT-OFF* */
2551 {
2552  .name = "tcp6-rcv-process",
2553  /* Takes a vector of packets. */
2554  .vector_size = sizeof (u32),
2555  .n_errors = TCP_N_ERROR,
2556  .error_strings = tcp_error_strings,
2557  .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2558  .next_nodes =
2559  {
2560 #define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
2562 #undef _
2563  },
2564  .format_trace = format_tcp_rx_trace_short,
2565 };
2566 /* *INDENT-ON* */
2567 
2568 static void
2570  u32 *to_next, u32 n_bufs)
2571 {
2572  tcp_connection_t *tc = 0;
2573  tcp_rx_trace_t *t;
2574  vlib_buffer_t *b;
2575  int i;
2576 
2577  for (i = 0; i < n_bufs; i++)
2578  {
2579  b = vlib_get_buffer (vm, to_next[i]);
2580  if (!(b->flags & VLIB_BUFFER_IS_TRACED))
2581  continue;
2582  if (vnet_buffer (b)->tcp.flags == TCP_STATE_LISTEN)
2583  tc = tcp_listener_get (vnet_buffer (b)->tcp.connection_index);
2584  t = vlib_add_trace (vm, node, b, sizeof (*t));
2585  tcp_set_rx_trace_data (t, tc, tcp_buffer_hdr (b), b, 1);
2586  }
2587 }
2588 
2589 /**
2590  * LISTEN state processing as per RFC 793 p. 65
2591  */
2594  vlib_frame_t *frame, int is_ip4)
2595 {
2596  u32 n_left_from, *from, n_syns = 0;
2599 
2601  n_left_from = frame->n_vectors;
2602 
2603  if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
2605 
2607  b = bufs;
2608 
2609  while (n_left_from > 0)
2610  {
2611  u32 error = TCP_ERROR_NONE;
2612  tcp_connection_t *lc, *child;
2613 
2614  /* Flags initialized with connection state after lookup */
2615  if (vnet_buffer (b[0])->tcp.flags == TCP_STATE_LISTEN)
2616  {
2617  lc = tcp_listener_get (vnet_buffer (b[0])->tcp.connection_index);
2618  }
2619  else
2620  {
2621  tcp_connection_t *tc;
2622  tc = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index,
2623  thread_index);
2624  if (tc->state != TCP_STATE_TIME_WAIT)
2625  {
2626  error = TCP_ERROR_CREATE_EXISTS;
2627  goto done;
2628  }
2629  lc = tcp_lookup_listener (b[0], tc->c_fib_index, is_ip4);
2630  /* clean up the old session */
2631  tcp_connection_del (tc);
2632  /* listener was cleaned up */
2633  if (!lc)
2634  {
2635  error = TCP_ERROR_NO_LISTENER;
2636  goto done;
2637  }
2638  }
2639 
2640  /* Make sure connection wasn't just created */
2641  child =
2642  tcp_lookup_connection (lc->c_fib_index, b[0], thread_index, is_ip4);
2643  if (PREDICT_FALSE (child->state != TCP_STATE_LISTEN))
2644  {
2645  error = TCP_ERROR_CREATE_EXISTS;
2646  goto done;
2647  }
2648 
2649  /* Create child session. For syn-flood protection use filter */
2650 
2651  /* 1. first check for an RST: handled by input dispatch */
2652 
2653  /* 2. second check for an ACK: handled by input dispatch */
2654 
2655  /* 3. check for a SYN (did that already) */
2656 
2657  /* Create child session and send SYN-ACK */
2659 
2660  if (tcp_options_parse (tcp_buffer_hdr (b[0]), &child->rcv_opts, 1))
2661  {
2662  error = TCP_ERROR_OPTIONS;
2663  tcp_connection_free (child);
2664  goto done;
2665  }
2666 
2667  tcp_init_w_buffer (child, b[0], is_ip4);
2668 
2669  child->state = TCP_STATE_SYN_RCVD;
2670  child->c_fib_index = lc->c_fib_index;
2671  child->cc_algo = lc->cc_algo;
2672  tcp_connection_init_vars (child);
2673  child->rto = TCP_RTO_MIN;
2674 
2675  /*
2676  * This initializes elog track, must be done before synack.
2677  * We also do it before possible tcp_connection_cleanup() as it
2678  * generates TCP_EVT_DELETE event.
2679  */
2680  TCP_EVT (TCP_EVT_SYN_RCVD, child, 1);
2681 
2682  if (session_stream_accept (&child->connection, lc->c_s_index,
2683  lc->c_thread_index, 0 /* notify */ ))
2684  {
2685  tcp_connection_cleanup (child);
2686  error = TCP_ERROR_CREATE_SESSION_FAIL;
2687  goto done;
2688  }
2689 
2690  transport_fifos_init_ooo (&child->connection);
2691  child->tx_fifo_size = transport_tx_fifo_size (&child->connection);
2692 
2693  tcp_send_synack (child);
2694 
2695  done:
2696 
2697  b += 1;
2698  n_left_from -= 1;
2699  n_syns += (error == TCP_ERROR_NONE);
2700  }
2701 
2702  tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
2703  vlib_buffer_free (vm, from, frame->n_vectors);
2704 
2705  return frame->n_vectors;
2706 }
2707 
2710 {
2711  return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2712 }
2713 
2716 {
2717  return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2718 }
2719 
2720 /* *INDENT-OFF* */
2722 {
2723  .name = "tcp4-listen",
2724  /* Takes a vector of packets. */
2725  .vector_size = sizeof (u32),
2726  .n_errors = TCP_N_ERROR,
2727  .error_strings = tcp_error_strings,
2728  .n_next_nodes = TCP_LISTEN_N_NEXT,
2729  .next_nodes =
2730  {
2731 #define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
2733 #undef _
2734  },
2735  .format_trace = format_tcp_rx_trace_short,
2736 };
2737 /* *INDENT-ON* */
2738 
2739 /* *INDENT-OFF* */
2741 {
2742  .name = "tcp6-listen",
2743  /* Takes a vector of packets. */
2744  .vector_size = sizeof (u32),
2745  .n_errors = TCP_N_ERROR,
2746  .error_strings = tcp_error_strings,
2747  .n_next_nodes = TCP_LISTEN_N_NEXT,
2748  .next_nodes =
2749  {
2750 #define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
2752 #undef _
2753  },
2754  .format_trace = format_tcp_rx_trace_short,
2755 };
2756 /* *INDENT-ON* */
2757 
2758 typedef enum _tcp_input_next
2759 {
2769 
2770 #define foreach_tcp4_input_next \
2771  _ (DROP, "ip4-drop") \
2772  _ (LISTEN, "tcp4-listen") \
2773  _ (RCV_PROCESS, "tcp4-rcv-process") \
2774  _ (SYN_SENT, "tcp4-syn-sent") \
2775  _ (ESTABLISHED, "tcp4-established") \
2776  _ (RESET, "tcp4-reset") \
2777  _ (PUNT, "ip4-punt")
2778 
2779 #define foreach_tcp6_input_next \
2780  _ (DROP, "ip6-drop") \
2781  _ (LISTEN, "tcp6-listen") \
2782  _ (RCV_PROCESS, "tcp6-rcv-process") \
2783  _ (SYN_SENT, "tcp6-syn-sent") \
2784  _ (ESTABLISHED, "tcp6-established") \
2785  _ (RESET, "tcp6-reset") \
2786  _ (PUNT, "ip6-punt")
2787 
2788 #define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
2789 
2790 static void
2792  vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4)
2793 {
2794  tcp_connection_t *tc;
2795  tcp_header_t *tcp;
2796  tcp_rx_trace_t *t;
2797  int i;
2798 
2799  for (i = 0; i < n_bufs; i++)
2800  {
2801  if (bs[i]->flags & VLIB_BUFFER_IS_TRACED)
2802  {
2803  t = vlib_add_trace (vm, node, bs[i], sizeof (*t));
2804  tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index,
2805  vm->thread_index);
2806  tcp = vlib_buffer_get_current (bs[i]);
2807  tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4);
2808  }
2809  }
2810 }
2811 
2812 static void
2814 {
2815  if (*error == TCP_ERROR_FILTERED || *error == TCP_ERROR_WRONG_THREAD)
2816  {
2818  }
2819  else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6))
2820  {
2822  *error = TCP_ERROR_PUNT;
2823  }
2824  else
2825  {
2827  *error = TCP_ERROR_NO_LISTENER;
2828  }
2829 }
2830 
2831 static inline void
2833  vlib_buffer_t * b, u16 * next,
2834  vlib_node_runtime_t * error_node)
2835 {
2836  tcp_header_t *tcp;
2837  u32 error;
2838  u8 flags;
2839 
2840  tcp = tcp_buffer_hdr (b);
2841  flags = tcp->flags & filter_flags;
2842  *next = tm->dispatch_table[tc->state][flags].next;
2843  error = tm->dispatch_table[tc->state][flags].error;
2844  tc->segs_in += 1;
2845 
2846  /* Track connection state when packet was received. It helps
2847  * @ref tcp46_listen_inline detect port reuse */
2848  vnet_buffer (b)->tcp.flags = tc->state;
2849 
2850  if (PREDICT_FALSE (error != TCP_ERROR_NONE))
2851  {
2852  b->error = error_node->errors[error];
2853  if (error == TCP_ERROR_DISPATCH)
2854  clib_warning ("tcp conn %u disp error state %U flags %U",
2855  tc->c_c_index, format_tcp_state, tc->state,
2856  format_tcp_flags, (int) flags);
2857  }
2858 }
2859 
2862  vlib_frame_t * frame, int is_ip4, u8 is_nolookup)
2863 {
2865  tcp_main_t *tm = vnet_get_tcp_main ();
2868 
2870 
2872  n_left_from = frame->n_vectors;
2874 
2875  b = bufs;
2876  next = nexts;
2877 
2878  while (n_left_from >= 4)
2879  {
2880  u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER;
2881  tcp_connection_t *tc0, *tc1;
2882 
2883  {
2884  vlib_prefetch_buffer_header (b[2], STORE);
2885  CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
2886 
2887  vlib_prefetch_buffer_header (b[3], STORE);
2888  CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
2889  }
2890 
2891  next[0] = next[1] = TCP_INPUT_NEXT_DROP;
2892 
2893  tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
2894  is_nolookup);
2895  tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4,
2896  is_nolookup);
2897 
2898  if (PREDICT_TRUE (!tc0 + !tc1 == 0))
2899  {
2900  ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
2901  ASSERT (tcp_lookup_is_valid (tc1, b[1], tcp_buffer_hdr (b[1])));
2902 
2903  vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
2904  vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
2905 
2906  tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], node);
2907  tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], node);
2908  }
2909  else
2910  {
2911  if (PREDICT_TRUE (tc0 != 0))
2912  {
2913  ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
2914  vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
2915  tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], node);
2916  }
2917  else
2918  {
2919  tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
2920  b[0]->error = node->errors[error0];
2921  }
2922 
2923  if (PREDICT_TRUE (tc1 != 0))
2924  {
2925  ASSERT (tcp_lookup_is_valid (tc1, b[1], tcp_buffer_hdr (b[1])));
2926  vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
2927  tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], node);
2928  }
2929  else
2930  {
2931  tcp_input_set_error_next (tm, &next[1], &error1, is_ip4);
2932  b[1]->error = node->errors[error1];
2933  }
2934  }
2935 
2936  b += 2;
2937  next += 2;
2938  n_left_from -= 2;
2939  }
2940  while (n_left_from > 0)
2941  {
2942  tcp_connection_t *tc0;
2943  u32 error0 = TCP_ERROR_NO_LISTENER;
2944 
2945  if (n_left_from > 1)
2946  {
2947  vlib_prefetch_buffer_header (b[1], STORE);
2948  CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
2949  }
2950 
2952  tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
2953  is_nolookup);
2954  if (PREDICT_TRUE (tc0 != 0))
2955  {
2956  ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
2957  vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
2958  tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], node);
2959  }
2960  else
2961  {
2962  tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
2963  b[0]->error = node->errors[error0];
2964  }
2965 
2966  b += 1;
2967  next += 1;
2968  n_left_from -= 1;
2969  }
2970 
2971  if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
2972  tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4);
2973 
2975  return frame->n_vectors;
2976 }
2977 
2981 {
2982  return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
2983  1 /* is_nolookup */ );
2984 }
2985 
2989 {
2990  return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
2991  1 /* is_nolookup */ );
2992 }
2993 
2994 /* *INDENT-OFF* */
2996 {
2997  .name = "tcp4-input-nolookup",
2998  /* Takes a vector of packets. */
2999  .vector_size = sizeof (u32),
3000  .n_errors = TCP_N_ERROR,
3001  .error_strings = tcp_error_strings,
3002  .n_next_nodes = TCP_INPUT_N_NEXT,
3003  .next_nodes =
3004  {
3005 #define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3007 #undef _
3008  },
3009  .format_buffer = format_tcp_header,
3010  .format_trace = format_tcp_rx_trace,
3011 };
3012 /* *INDENT-ON* */
3013 
3014 /* *INDENT-OFF* */
3016 {
3017  .name = "tcp6-input-nolookup",
3018  /* Takes a vector of packets. */
3019  .vector_size = sizeof (u32),
3020  .n_errors = TCP_N_ERROR,
3021  .error_strings = tcp_error_strings,
3022  .n_next_nodes = TCP_INPUT_N_NEXT,
3023  .next_nodes =
3024  {
3025 #define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3027 #undef _
3028  },
3029  .format_buffer = format_tcp_header,
3030  .format_trace = format_tcp_rx_trace,
3031 };
3032 /* *INDENT-ON* */
3033 
3036 {
3037  return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
3038  0 /* is_nolookup */ );
3039 }
3040 
3043 {
3044  return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3045  0 /* is_nolookup */ );
3046 }
3047 
3048 /* *INDENT-OFF* */
3050 {
3051  .name = "tcp4-input",
3052  /* Takes a vector of packets. */
3053  .vector_size = sizeof (u32),
3054  .n_errors = TCP_N_ERROR,
3055  .error_strings = tcp_error_strings,
3056  .n_next_nodes = TCP_INPUT_N_NEXT,
3057  .next_nodes =
3058  {
3059 #define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3061 #undef _
3062  },
3063  .format_buffer = format_tcp_header,
3064  .format_trace = format_tcp_rx_trace,
3065 };
3066 /* *INDENT-ON* */
3067 
3068 /* *INDENT-OFF* */
3070 {
3071  .name = "tcp6-input",
3072  /* Takes a vector of packets. */
3073  .vector_size = sizeof (u32),
3074  .n_errors = TCP_N_ERROR,
3075  .error_strings = tcp_error_strings,
3076  .n_next_nodes = TCP_INPUT_N_NEXT,
3077  .next_nodes =
3078  {
3079 #define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3081 #undef _
3082  },
3083  .format_buffer = format_tcp_header,
3084  .format_trace = format_tcp_rx_trace,
3085 };
3086 /* *INDENT-ON* */
3087 
3088 #ifndef CLIB_MARCH_VARIANT
3089 void
3091 {
3092  tcp_check_tx_offload (tc, tc->c_is_ip4);
3093 }
3094 
3095 static void
3097 {
3098  int i, j;
3099  for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3100  for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3101  {
3102  tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3103  tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3104  }
3105 
3106 #define _(t,f,n,e) \
3107 do { \
3108  tm->dispatch_table[TCP_STATE_##t][f].next = (n); \
3109  tm->dispatch_table[TCP_STATE_##t][f].error = (e); \
3110 } while (0)
3111 
3112  /* RFC 793: In LISTEN if RST drop and if ACK return RST */
3113  _(LISTEN, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3114  _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_ACK_INVALID);
3115  _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_INVALID_CONNECTION);
3116  _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
3118  TCP_ERROR_ACK_INVALID);
3120  TCP_ERROR_SEGMENT_INVALID);
3122  TCP_ERROR_SEGMENT_INVALID);
3124  TCP_ERROR_INVALID_CONNECTION);
3125  _(LISTEN, TCP_FLAG_FIN, TCP_INPUT_NEXT_RESET, TCP_ERROR_SEGMENT_INVALID);
3127  TCP_ERROR_SEGMENT_INVALID);
3129  TCP_ERROR_SEGMENT_INVALID);
3131  TCP_ERROR_SEGMENT_INVALID);
3133  TCP_ERROR_SEGMENT_INVALID);
3135  TCP_ERROR_SEGMENT_INVALID);
3137  TCP_ERROR_SEGMENT_INVALID);
3139  TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3140  /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3141  _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3142  _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3144  TCP_ERROR_NONE);
3145  _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3147  TCP_ERROR_NONE);
3149  TCP_ERROR_NONE);
3150  _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3151  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3152  _(SYN_RCVD, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3154  TCP_ERROR_NONE);
3156  TCP_ERROR_NONE);
3157  _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3158  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3160  TCP_ERROR_NONE);
3161  _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3162  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3163  _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3164  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3166  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3167  _(SYN_RCVD, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3168  /* SYN-ACK for a SYN */
3170  TCP_ERROR_NONE);
3171  _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3172  _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3174  TCP_ERROR_NONE);
3175  _(SYN_SENT, TCP_FLAG_FIN, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3177  TCP_ERROR_NONE);
3178  /* ACK for for established connection -> tcp-established. */
3179  _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3180  /* FIN for for established connection -> tcp-established. */
3181  _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3183  TCP_ERROR_NONE);
3185  TCP_ERROR_NONE);
3186  _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3187  TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3189  TCP_ERROR_NONE);
3190  _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3191  TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3192  _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3193  TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3194  _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3195  TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3196  _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3198  TCP_ERROR_NONE);
3199  _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3201  TCP_ERROR_NONE);
3203  TCP_ERROR_NONE);
3204  _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3205  TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3206  _(ESTABLISHED, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3207  /* ACK or FIN-ACK to our FIN */
3208  _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3210  TCP_ERROR_NONE);
3211  /* FIN in reply to our FIN from the other side */
3212  _(FIN_WAIT_1, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3213  _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3215  TCP_ERROR_NONE);
3216  _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3217  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3218  _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3219  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3220  _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3221  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3223  TCP_ERROR_NONE);
3224  _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3225  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3226  _(FIN_WAIT_1, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3228  TCP_ERROR_NONE);
3230  TCP_ERROR_NONE);
3231  _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3232  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3233  _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3235  TCP_ERROR_NONE);
3236  _(CLOSING, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3237  _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3238  _(CLOSING, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3240  TCP_ERROR_NONE);
3242  TCP_ERROR_NONE);
3243  _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3244  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3245  _(CLOSING, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3247  TCP_ERROR_NONE);
3248  _(CLOSING, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3250  TCP_ERROR_NONE);
3252  TCP_ERROR_NONE);
3253  _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3254  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3256  TCP_ERROR_NONE);
3257  _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3258  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3259  _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3260  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3262  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3263  /* FIN confirming that the peer (app) has closed */
3264  _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3265  _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3267  TCP_ERROR_NONE);
3268  _(FIN_WAIT_2, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3270  TCP_ERROR_NONE);
3271  _(FIN_WAIT_2, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3272  _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3274  TCP_ERROR_NONE);
3275  _(CLOSE_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3277  TCP_ERROR_NONE);
3278  _(CLOSE_WAIT, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3279  _(LAST_ACK, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
3280  _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3281  _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3283  TCP_ERROR_NONE);
3285  TCP_ERROR_NONE);
3286  _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3287  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3289  TCP_ERROR_NONE);
3290  _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3291  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3292  _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3293  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3295  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3296  _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3298  TCP_ERROR_NONE);
3299  _(LAST_ACK, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3301  TCP_ERROR_NONE);
3303  TCP_ERROR_NONE);
3304  _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3305  TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3306  _(TIME_WAIT, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
3307  _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3309  TCP_ERROR_NONE);
3310  _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3312  TCP_ERROR_NONE);
3313  _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3314  /* RFC793 CLOSED: An incoming segment containing a RST is discarded. An
3315  * incoming segment not containing a RST causes a RST to be sent in
3316  * response.*/
3317  _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
3319  TCP_ERROR_CONNECTION_CLOSED);
3320  _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_CONNECTION_CLOSED);
3321  _(CLOSED, TCP_FLAG_SYN, TCP_INPUT_NEXT_RESET, TCP_ERROR_CONNECTION_CLOSED);
3323  TCP_ERROR_CONNECTION_CLOSED);
3324 #undef _
3325 }
3326 
3327 static clib_error_t *
3329 {
3330  clib_error_t *error = 0;
3331  tcp_main_t *tm = vnet_get_tcp_main ();
3332 
3334  return error;
3335 
3336  /* Initialize dispatch table. */
3338 
3339  return error;
3340 }
3341 
3343 
3344 #endif /* CLIB_MARCH_VARIANT */
3345 
3346 /*
3347  * fd.io coding-style-patch-verification: ON
3348  *
3349  * Local Variables:
3350  * eval: (c-set-style "gnu")
3351  * End:
3352  */
TCP_ESTABLISHED_N_NEXT
@ TCP_ESTABLISHED_N_NEXT
Definition: tcp_input.c:42
tmp
u32 * tmp
Definition: interface_output.c:1096
vlib_buffer_t::next_buffer
u32 next_buffer
Next buffer for this linked-list of buffers.
Definition: buffer.h:149
seq_gt
#define seq_gt(_s1, _s2)
Definition: tcp_packet.h:180
tcp_send_reset_w_pkt
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:656
TCP_INPUT_NEXT_PUNT
@ TCP_INPUT_NEXT_PUNT
Definition: tcp_input.c:2766
tcp_rx_trace_t::tcp_header
tcp_header_t tcp_header
Definition: tcp_input.c:1351
vlib_buffer_free
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:979
vlib_num_workers
static u32 vlib_num_workers()
Definition: threads.h:333
tcp_rcv_sacks
void tcp_rcv_sacks(tcp_connection_t *tc, u32 ack)
Definition: tcp_sack.c:326
tcp_rst
#define tcp_rst(_th)
Definition: tcp_packet.h:81
load_balance_t_::lb_n_buckets
u16 lb_n_buckets
number of buckets in the load-balance.
Definition: load_balance.h:116
tcp_connection_cleanup
void tcp_connection_cleanup(tcp_connection_t *tc)
Cleans up connection state.
Definition: tcp.c:233
TCP_RCV_PROCESS_N_NEXT
@ TCP_RCV_PROCESS_N_NEXT
Definition: tcp_input.c:50
seq_geq
#define seq_geq(_s1, _s2)
Definition: tcp_packet.h:181
TCP_FLAG_RST
#define TCP_FLAG_RST
Definition: fa_node.h:14
tcp_fastrecovery_off
#define tcp_fastrecovery_off(tc)
Definition: tcp_types.h:412
thread_index
u32 thread_index
Definition: nat44_ei_hairpinning.c:495
tcp_reschedule
void tcp_reschedule(tcp_connection_t *tc)
Definition: tcp.c:1391
bufs
vlib_buffer_t * bufs[VLIB_FRAME_SIZE]
Definition: nat44_ei_out2in.c:717
tcp_half_open_connection_get
static tcp_connection_t * tcp_half_open_connection_get(u32 conn_index)
Definition: tcp_inlines.h:67
tcp_opts_tstamp
#define tcp_opts_tstamp(_to)
Definition: tcp_packet.h:156
format_tcp_rx_trace
static u8 * format_tcp_rx_trace(u8 *s, va_list *args)
Definition: tcp_input.c:1356
TCP_FLAG_FIN
#define TCP_FLAG_FIN
Definition: fa_node.h:12
vlib_prefetch_buffer_header
#define vlib_prefetch_buffer_header(b, type)
Prefetch buffer metadata.
Definition: buffer.h:231
frame
vlib_main_t vlib_node_runtime_t vlib_frame_t * frame
Definition: nat44_ei.c:3048
vnet_hw_interface_t::caps
vnet_hw_interface_capabilities_t caps
Definition: interface.h:645
session_lookup_connection_wt4
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.
Definition: session_lookup.c:905
TCP_INPUT_NEXT_LISTEN
@ TCP_INPUT_NEXT_LISTEN
Definition: tcp_input.c:2761
tcp_inlines.h
format_tcp_state
format_function_t format_tcp_state
Definition: tcp.h:340
ip4
vl_api_ip4_address_t ip4
Definition: one.api:376
tcp_segment_check_paws
static int tcp_segment_check_paws(tcp_connection_t *tc)
RFC1323: Check against wrapped sequence numbers (PAWS).
Definition: tcp_input.c:128
tcp_input_set_error_next
static void tcp_input_set_error_next(tcp_main_t *tm, u16 *next, u32 *error, u8 is_ip4)
Definition: tcp_input.c:2813
clib_max
#define clib_max(x, y)
Definition: clib.h:335
tcp_ack
#define tcp_ack(_th)
Definition: tcp_packet.h:83
session_transport_closing_notify
void session_transport_closing_notify(transport_connection_t *tc)
Notification from transport that connection is being closed.
Definition: session.c:1062
vlib_get_buffer
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:111
tcp_connection_alloc
tcp_connection_t * tcp_connection_alloc(u8 thread_index)
Definition: tcp.c:287
tcp_session_enqueue_ooo
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:1201
tcp_program_dequeue
static void tcp_program_dequeue(tcp_worker_ctx_t *wrk, tcp_connection_t *tc)
Definition: tcp_input.c:601
tcp_send_synack
void tcp_send_synack(tcp_connection_t *tc)
Definition: tcp_output.c:819
tcp6_established_node
vlib_node_registration_t tcp6_established_node
(constructor) VLIB_REGISTER_NODE (tcp6_established_node)
Definition: tcp_input.c:1591
tcp_update_snd_wnd
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:618
ip6_address_compare
int ip6_address_compare(ip6_address_t *a1, ip6_address_t *a2)
Definition: ip46_cli.c:60
format_tcp_header
format_function_t format_tcp_header
Definition: format.h:100
tcp_header_t
struct _tcp_header tcp_header_t
tcp_send_ack
void tcp_send_ack(tcp_connection_t *tc)
Definition: tcp_output.c:999
tcp_update_rtt
static int tcp_update_rtt(tcp_connection_t *tc, tcp_rate_sample_t *rs, u32 ack)
Update rtt estimate.
Definition: tcp_input.c:473
vlib_get_buffers
vlib_get_buffers(vm, from, b, n_left_from)
next
u16 * next
Definition: nat44_ei_out2in.c:718
tcp4_established_node
vlib_node_registration_t tcp4_established_node
(constructor) VLIB_REGISTER_NODE (tcp4_established_node)
Definition: tcp_input.c:1572
VLIB_FRAME_SIZE
#define VLIB_FRAME_SIZE
Definition: node.h:368
dpo_get_urpf
u32 dpo_get_urpf(const dpo_id_t *dpo)
Get a uRPF interface for the DPO.
Definition: dpo.c:389
foreach_tcp_state_next
#define foreach_tcp_state_next
Definition: tcp_input.c:31
node
vlib_main_t vlib_node_runtime_t * node
Definition: nat44_ei.c:3047
tcp_connection_t
struct _tcp_connection tcp_connection_t
tcp_input_dispatch_buffer
static void tcp_input_dispatch_buffer(tcp_main_t *tm, tcp_connection_t *tc, vlib_buffer_t *b, u16 *next, vlib_node_runtime_t *error_node)
Definition: tcp_input.c:2832
TCP_BTS_IS_RXT
@ TCP_BTS_IS_RXT
Definition: tcp_types.h:200
session_
Definition: session_types.h:175
TCP_INPUT_NEXT_RESET
@ TCP_INPUT_NEXT_RESET
Definition: tcp_input.c:2765
tcp_listener_get
static tcp_connection_t * tcp_listener_get(u32 tli)
Definition: tcp_inlines.h:58
tcp46_syn_sent_inline
static uword tcp46_syn_sent_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, int is_ip4)
Definition: tcp_input.c:1804
TCP_DBG
#define TCP_DBG(_fmt, _args...)
Definition: tcp_debug.h:146
tcp_bt_sample_delivery_rate
void tcp_bt_sample_delivery_rate(tcp_connection_t *tc, tcp_rate_sample_t *rs)
Generate a delivery rate sample from recently acked bytes.
Definition: tcp_bt.c:596
tcp_rate_sample_::flags
tcp_bts_flags_t flags
Rate sample flags from bt sample.
Definition: tcp_types.h:234
wrk
session_worker_t * wrk
Definition: application.c:490
vnet_get_tcp_main
static tcp_main_t * vnet_get_tcp_main()
Definition: tcp.h:277
tcp_input_init
static clib_error_t * tcp_input_init(vlib_main_t *vm)
Definition: tcp_input.c:3328
tcp_input_next_t
enum _tcp_input_next tcp_input_next_t
tcp_rcv_ack
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:982
u16
unsigned short u16
Definition: types.h:57
tcp_get_worker
static tcp_worker_ctx_t * tcp_get_worker(u32 thread_index)
Definition: tcp.h:283
TCP_DUPACK_THRESHOLD
#define TCP_DUPACK_THRESHOLD
Definition: tcp_types.h:37
first
static heap_elt_t * first(heap_header_t *h)
Definition: heap.c:59
vlib_call_init_function
#define vlib_call_init_function(vm, x)
Definition: init.h:259
tcp_handle_disconnects
static void tcp_handle_disconnects(tcp_worker_ctx_t *wrk)
Definition: tcp_input.c:1093
tcp_handle_old_ack
static void tcp_handle_old_ack(tcp_connection_t *tc, tcp_rate_sample_t *rs)
Definition: tcp_input.c:934
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
tcp_timer_update
static void tcp_timer_update(tcp_timer_wheel_t *tw, tcp_connection_t *tc, u8 timer_id, u32 interval)
Definition: tcp_timer.h:43
tcp_time_tstamp
static u32 tcp_time_tstamp(u32 thread_index)
Time used to generate timestamps, not the timestamp.
Definition: tcp_inlines.h:189
clib_abs
#define clib_abs(x)
Definition: clib.h:357
tcp_cc_recover
static int tcp_cc_recover(tcp_connection_t *tc)
Definition: tcp_input.c:745
tcp_estimate_initial_rtt
static void tcp_estimate_initial_rtt(tcp_connection_t *tc)
Definition: tcp_input.c:527
session_transport_closed_notify
void session_transport_closed_notify(transport_connection_t *tc)
Notification from transport that it is closed.
Definition: session.c:1150
tcp_cc_congestion
static void tcp_cc_congestion(tcp_connection_t *tc)
Definition: tcp_cc.h:36
tcp_init_snd_vars
void tcp_init_snd_vars(tcp_connection_t *tc)
Initialize connection send variables.
Definition: tcp.c:694
tcp_is_lost_fin
static u8 tcp_is_lost_fin(tcp_connection_t *tc)
Definition: tcp_inlines.h:178
from_frame
vlib_main_t vlib_node_runtime_t vlib_frame_t * from_frame
Definition: esp_encrypt.c:1328
vlib_buffer_enqueue_to_next
vlib_buffer_enqueue_to_next(vm, node, from,(u16 *) nexts, frame->n_vectors)
tcp46_syn_sent_trace_frame
static void tcp46_syn_sent_trace_frame(vlib_main_t *vm, vlib_node_runtime_t *node, u32 *from, u32 n_bufs)
Definition: tcp_input.c:1749
TCP_PAWS_IDLE
#define TCP_PAWS_IDLE
24 days
Definition: tcp_types.h:29
transport_connection_t
struct _transport_connection transport_connection_t
tcp_inc_err_counter
#define tcp_inc_err_counter(cnts, err, val)
Definition: tcp_input.c:1461
ip6_next_header
static void * ip6_next_header(ip6_header_t *i)
Definition: ip6_packet.h:407
vlib_frame_t
Definition: node.h:372
tcp_ack_is_dupack
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:954
clib_memcpy_fast
static_always_inline void * clib_memcpy_fast(void *restrict dst, const void *restrict src, size_t n)
Definition: string.h:92
tcp_cc_update
static void tcp_cc_update(tcp_connection_t *tc, tcp_rate_sample_t *rs)
Definition: tcp_input.c:797
tcp_disconnect_pending_off
#define tcp_disconnect_pending_off(tc)
Definition: tcp_types.h:420
tcp46_listen_inline
static uword tcp46_listen_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, int is_ip4)
LISTEN state processing as per RFC 793 p.
Definition: tcp_input.c:2593
ip4_header_t
Definition: ip4_packet.h:87
error
Definition: cJSON.c:88
tcp_syn
#define tcp_syn(_th)
Definition: tcp_packet.h:80
tcp_main_t
struct _tcp_main tcp_main_t
tcp_set_rx_trace_data
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:1387
TCP_FLAG_SYN
#define TCP_FLAG_SYN
Definition: fa_node.h:13
tcp_input_lookup_buffer
static tcp_connection_t * tcp_input_lookup_buffer(vlib_buffer_t *b, u8 thread_index, u32 *error, u8 is_ip4, u8 is_nolookup)
Definition: tcp_inlines.h:231
tcp_buffer_discard_bytes
static int tcp_buffer_discard_bytes(vlib_buffer_t *b, u32 n_bytes_to_drop)
Definition: tcp_input.c:1252
tcp_program_disconnect
static void tcp_program_disconnect(tcp_worker_ctx_t *wrk, tcp_connection_t *tc)
Definition: tcp_input.c:1083
tcp_inc_counter
#define tcp_inc_counter(node_id, err, count)
Definition: tcp_input.c:1453
tcp_fastrecovery_on
#define tcp_fastrecovery_on(tc)
Definition: tcp_types.h:411
tcp_cong_recovery_off
static void tcp_cong_recovery_off(tcp_connection_t *tc)
Definition: tcp_types.h:429
tcp_session_enqueue_data
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:1150
tcp_rcv_process_next_t
enum _tcp_rcv_process_next tcp_rcv_process_next_t
TCP_INPUT_NEXT_SYN_SENT
@ TCP_INPUT_NEXT_SYN_SENT
Definition: tcp_input.c:2763
tcp_update_rto
static void tcp_update_rto(tcp_connection_t *tc)
Definition: tcp_inlines.h:378
CLIB_PREFETCH
#define CLIB_PREFETCH(addr, size, type)
Definition: cache.h:76
tcp6_listen_node
vlib_node_registration_t tcp6_listen_node
(constructor) VLIB_REGISTER_NODE (tcp6_listen_node)
Definition: tcp_input.c:2740
tcp_established_trace_frame
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:1403
session_stream_accept
int session_stream_accept(transport_connection_t *tc, u32 listener_index, u32 thread_index, u8 notify)
Accept a stream session.
Definition: session.c:1228
vlib_node_runtime_t::errors
vlib_error_t * errors
Vector of errors for this node.
Definition: node.h:460
timestamp_leq
#define timestamp_leq(_t1, _t2)
Definition: tcp_packet.h:186
vlib_buffer_advance
static void vlib_buffer_advance(vlib_buffer_t *b, word l)
Advance current data pointer by the supplied (signed!) amount.
Definition: buffer.h:276
tcp_retransmit_timer_reset
static void tcp_retransmit_timer_reset(tcp_timer_wheel_t *tw, tcp_connection_t *tc)
Definition: tcp_timer.h:63
seq_leq
#define seq_leq(_s1, _s2)
Definition: tcp_packet.h:179
session_::rx_fifo
svm_fifo_t * rx_fifo
Pointers to rx/tx buffers.
Definition: session_types.h:178
vec_len
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
Definition: vec_bootstrap.h:142
vlib_buffer_t::error
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:145
math.h
scoreboard_clear
void scoreboard_clear(sack_scoreboard_t *sb)
Definition: tcp_sack.c:277
tcp_program_cleanup
void tcp_program_cleanup(tcp_worker_ctx_t *wrk, tcp_connection_t *tc)
Definition: tcp.c:336
VLIB_NODE_FN
#define VLIB_NODE_FN(node)
Definition: node.h:202
TCP_INPUT_NEXT_RCV_PROCESS
@ TCP_INPUT_NEXT_RCV_PROCESS
Definition: tcp_input.c:2762
vec_add1
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:606
session_enqueue_stream_connection
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:564
tcp46_established_inline
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:1475
tcp_opts_wscale
#define tcp_opts_wscale(_to)
Definition: tcp_packet.h:157
tcp_validate_txf_size
#define tcp_validate_txf_size(_tc, _a)
Definition: tcp.h:347
tcp_check_gso
void tcp_check_gso(tcp_connection_t *tc)
Definition: tcp_input.c:3090
CLIB_UNUSED
#define CLIB_UNUSED(x)
Definition: clib.h:90
vnet_buffer
#define vnet_buffer(b)
Definition: buffer.h:441
tcp_error_strings
static char * tcp_error_strings[]
Definition: tcp_input.c:24
tcp_in_recovery
#define tcp_in_recovery(tc)
Definition: tcp_types.h:416
vnet_get_main
vnet_main_t * vnet_get_main(void)
Definition: pnat_test_stubs.h:56
tcp_ack_is_cc_event
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:967
VLIB_NODE_FLAG_TRACE
#define VLIB_NODE_FLAG_TRACE
Definition: node.h:291
tcp_rx_trace_t::tcp_connection
tcp_connection_t tcp_connection
Definition: tcp_input.c:1352
tcp_timer_is_active
static u8 tcp_timer_is_active(tcp_connection_t *tc, tcp_timers_e timer)
Definition: tcp_timer.h:110
tcp_update_sack_list
void tcp_update_sack_list(tcp_connection_t *tc, u32 start, u32 end)
Build SACK list as per RFC2018.
Definition: tcp_sack.c:568
offset
struct clib_bihash_value offset
template key/value backing page structure
tcp4_rcv_process_node
vlib_node_registration_t tcp4_rcv_process_node
(constructor) VLIB_REGISTER_NODE (tcp4_rcv_process_node)
Definition: tcp_input.c:2531
PREDICT_FALSE
#define PREDICT_FALSE(x)
Definition: clib.h:124
VNET_HW_INTERFACE_CAP_SUPPORTS_TCP_GSO
@ VNET_HW_INTERFACE_CAP_SUPPORTS_TCP_GSO
Definition: interface.h:537
tcp_cc_recovered
static void tcp_cc_recovered(tcp_connection_t *tc)
Definition: tcp_cc.h:48
tcp_rx_trace_t
Definition: tcp_input.c:1349
TCP_INPUT_N_NEXT
@ TCP_INPUT_N_NEXT
Definition: tcp_input.c:2767
ARRAY_LEN
#define ARRAY_LEN(x)
Definition: clib.h:70
vlib_frame_vector_args
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:301
format_tcp_connection_id
format_function_t format_tcp_connection_id
Definition: tcp.h:345
end
f64 end
end of the time range
Definition: mactime.api:44
session_lookup_half_open_connection
transport_connection_t * session_lookup_half_open_connection(u64 handle, u8 proto, u8 is_ip4)
Definition: session_lookup.c:868
tcp_fastrecovery_first_on
#define tcp_fastrecovery_first_on(tc)
Definition: tcp_types.h:422
tcp_node_inc_counter_i
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:1437
format_tcp_flags
format_function_t format_tcp_flags
Definition: tcp.h:341
svm_fifo_newest_ooo_segment
static ooo_segment_t * svm_fifo_newest_ooo_segment(svm_fifo_t *f)
Definition: svm_fifo.h:667
tcp_cc_is_spurious_retransmit
static u8 tcp_cc_is_spurious_retransmit(tcp_connection_t *tc)
Definition: tcp_input.c:712
tcp_input_trace_frame
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:2791
transport_fifos_init_ooo
void transport_fifos_init_ooo(transport_connection_t *tc)
Definition: transport.c:807
uword
u64 uword
Definition: types.h:112
TCP_TSTP_TO_HZ
#define TCP_TSTP_TO_HZ
Definition: tcp_types.h:30
ooo_segment_offset_prod
static u32 ooo_segment_offset_prod(svm_fifo_t *f, ooo_segment_t *s)
Definition: svm_fifo.h:681
tcp_estimate_rtt
static void tcp_estimate_rtt(tcp_connection_t *tc, u32 mrtt)
Compute smoothed RTT as per VJ's '88 SIGCOMM and RFC6298.
Definition: tcp_input.c:439
sparse_vec.h
tcp_disconnect_pending_on
#define tcp_disconnect_pending_on(tc)
Definition: tcp_types.h:419
transport_max_tx_dequeue
static u32 transport_max_tx_dequeue(transport_connection_t *tc)
Definition: session.h:544
vlib_main_t::thread_index
u32 thread_index
Definition: main.h:215
tcp_connection_set_state
static void tcp_connection_set_state(tcp_connection_t *tc, tcp_state_t state)
Definition: tcp_inlines.h:51
vlib_node_increment_counter
static void vlib_node_increment_counter(vlib_main_t *vm, u32 node_index, u32 counter_index, u64 increment)
Definition: node_funcs.h:1244
tcp_is_syn
#define tcp_is_syn(_th)
Definition: tcp_packet.h:89
tcp_cc_rcv_ack
static void tcp_cc_rcv_ack(tcp_connection_t *tc, tcp_rate_sample_t *rs)
Definition: tcp_cc.h:22
tcp_connection_timers_reset
void tcp_connection_timers_reset(tcp_connection_t *tc)
Stop all connection timers.
Definition: tcp.c:517
load_balance_get_bucket_i
static const dpo_id_t * load_balance_get_bucket_i(const load_balance_t *lb, u32 bucket)
Definition: load_balance.h:229
dst_addr
vl_api_mac_address_t dst_addr
Definition: flow_types.api:65
tcp_retransmit_timer_update
static void tcp_retransmit_timer_update(tcp_timer_wheel_t *tw, tcp_connection_t *tc)
Definition: tcp_timer.h:96
tcp_timer_set
static void tcp_timer_set(tcp_timer_wheel_t *tw, tcp_connection_t *tc, u8 timer_id, u32 interval)
Definition: tcp_timer.h:21
f64
double f64
Definition: types.h:142
session_main_flush_enqueue_events
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:846
ip6_header_t::dst_address
ip6_address_t dst_address
Definition: ip6_packet.h:310
tcp_program_ack
void tcp_program_ack(tcp_connection_t *tc)
Definition: tcp_output.c:1019
tcp_opts_sack_permitted
#define tcp_opts_sack_permitted(_to)
Definition: tcp_packet.h:159
tcp6_rcv_process_node
vlib_node_registration_t tcp6_rcv_process_node
(constructor) VLIB_REGISTER_NODE (tcp6_rcv_process_node)
Definition: tcp_input.c:2550
tcp_program_dupack
void tcp_program_dupack(tcp_connection_t *tc)
Definition: tcp_output.c:1029
tcp_state_next_t
enum _tcp_state_next tcp_state_next_t
TCP_EVT
#define TCP_EVT(_evt, _args...)
Definition: tcp_debug.h:145
ip4_address_t
Definition: ip4_packet.h:50
clib_min
#define clib_min(x, y)
Definition: clib.h:342
CLIB_CACHE_LINE_BYTES
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:58
tcp_tstamp
static u32 tcp_tstamp(tcp_connection_t *tc)
Generate timestamp for tcp connection.
Definition: tcp_inlines.h:198
tcp6_input_node
vlib_node_registration_t tcp6_input_node
(constructor) VLIB_REGISTER_NODE (tcp6_input_node)
Definition: tcp_input.c:3069
tcp_rcv_fin
static void tcp_rcv_fin(tcp_worker_ctx_t *wrk, tcp_connection_t *tc, vlib_buffer_t *b, u32 *error)
Definition: tcp_input.c:1127
vlib_node_registration_t
struct _vlib_node_registration vlib_node_registration_t
session_get
static session_t * session_get(u32 si, u32 thread_index)
Definition: session.h:337
TCP_STATE_N_NEXT
@ TCP_STATE_N_NEXT
Definition: tcp_input.c:75
tcp_dispatch_table_init
static void tcp_dispatch_table_init(tcp_main_t *tm)
Definition: tcp_input.c:3096
session_transport_delete_notify
void session_transport_delete_notify(transport_connection_t *tc)
Notification from transport that connection is being deleted.
Definition: session.c:1084
ip6_fib_table_fwding_lookup
static u32 ip6_fib_table_fwding_lookup(u32 fib_index, const ip6_address_t *dst)
Definition: ip6_fib.h:115
ip4_header_t::dst_address
ip4_address_t dst_address
Definition: ip4_packet.h:125
tcp_init_w_buffer
static void tcp_init_w_buffer(tcp_connection_t *tc, vlib_buffer_t *b, u8 is_ip4)
Initialize connection by gleaning network and rcv params from buffer.
Definition: tcp_inlines.h:333
vlib_buffer_t::current_length
u16 current_length
Nbytes between current data and the end of this buffer.
Definition: buffer.h:122
tcp_is_fin
#define tcp_is_fin(_th)
Definition: tcp_packet.h:90
ip4_address_compare
int ip4_address_compare(ip4_address_t *a1, ip4_address_t *a2)
Definition: ip46_cli.c:53
tcp_segment_validate
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:259
TCP_CC_DUPACK
@ TCP_CC_DUPACK
Definition: tcp_types.h:258
tcp_program_retransmit
void tcp_program_retransmit(tcp_connection_t *tc)
Definition: tcp_output.c:1041
TCP_LISTEN_N_NEXT
@ TCP_LISTEN_N_NEXT
Definition: tcp_input.c:66
tcp_connection_alloc_w_base
tcp_connection_t * tcp_connection_alloc_w_base(u8 thread_index, tcp_connection_t **base)
Definition: tcp.c:300
tcp_time_now_us
static f64 tcp_time_now_us(u32 thread_index)
Definition: tcp_inlines.h:205
ooo_segment_length
static u32 ooo_segment_length(svm_fifo_t *f, ooo_segment_t *s)
Definition: svm_fifo.h:691
tcp_init
static clib_error_t * tcp_init(vlib_main_t *vm)
Definition: tcp.c:1599
tcp_established_next_t
enum _tcp_established_next tcp_established_next_t
data
u8 data[128]
Definition: ipsec_types.api:95
tcp_check_tx_offload
static void tcp_check_tx_offload(tcp_connection_t *tc, int is_ipv4)
Definition: tcp_input.c:1770
tcp_send_reset
void tcp_send_reset(tcp_connection_t *tc)
Build and set reset packet for connection.
Definition: tcp_output.c:739
tcp_buffer_hdr
static tcp_header_t * tcp_buffer_hdr(vlib_buffer_t *b)
Definition: tcp_inlines.h:22
vnet_hw_interface_t
Definition: interface.h:638
vnet_main_t
Definition: vnet.h:76
tcp_cc_init_congestion
static void tcp_cc_init_congestion(tcp_connection_t *tc)
Init loss recovery/fast recovery.
Definition: tcp_input.c:667
always_inline
#define always_inline
Definition: rdma_mlx5dv.h:23
clib_bihash_value
template key/value backing page structure
Definition: bihash_doc.h:44
tcp46_rcv_process_inline
static uword tcp46_rcv_process_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, int is_ip4)
Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED as per RFC793 p.
Definition: tcp_input.c:2130
sack_scoreboard_hole_t
struct _sack_scoreboard_hole sack_scoreboard_hole_t
TCP_INPUT_NEXT_DROP
@ TCP_INPUT_NEXT_DROP
Definition: tcp_input.c:2760
ip4_header_t::src_address
ip4_address_t src_address
Definition: ip4_packet.h:125
tcp46_rcv_process_trace_frame
static void tcp46_rcv_process_trace_frame(vlib_main_t *vm, vlib_node_runtime_t *node, u32 *from, u32 n_bufs)
Definition: tcp_input.c:2104
TRANSPORT_CONNECTION_F_NO_LOOKUP
@ TRANSPORT_CONNECTION_F_NO_LOOKUP
Don't register connection in lookup.
Definition: transport_types.h:52
session_tx_fifo_dequeue_drop
u32 session_tx_fifo_dequeue_drop(transport_connection_t *tc, u32 max_bytes)
Definition: session.c:692
tcp_rate_sample_
Definition: tcp_types.h:221
u64
unsigned long u64
Definition: types.h:89
tcp_handle_postponed_dequeues
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
format
description fragment has unexpected format
Definition: map.api:433
tcp_connection_tx_pacer_reset
void tcp_connection_tx_pacer_reset(tcp_connection_t *tc, u32 window, u32 start_bucket)
Definition: tcp.c:1380
ASSERT
#define ASSERT(truth)
Definition: error_bootstrap.h:69
tcp46_input_inline
static uword tcp46_input_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, int is_ip4, u8 is_nolookup)
Definition: tcp_input.c:2861
tcp_cc_is_spurious_timeout_rxt
static u8 tcp_cc_is_spurious_timeout_rxt(tcp_connection_t *tc)
Definition: tcp_input.c:703
format_get_indent
static u32 format_get_indent(u8 *s)
Definition: format.h:72
data_len
u8 data_len
Definition: ikev2_types.api:24
tcp_cc_undo_recovery
static void tcp_cc_undo_recovery(tcp_connection_t *tc)
Definition: tcp_cc.h:54
seq_lt
#define seq_lt(_s1, _s2)
Definition: tcp_packet.h:178
filter_flags
#define filter_flags
Definition: tcp_input.c:2788
transport_tx_fifo_size
static u32 transport_tx_fifo_size(transport_connection_t *tc)
Definition: session.h:565
session_lookup_connection_wt6
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.
Definition: session_lookup.c:1129
tcp_update_timestamp
static void tcp_update_timestamp(tcp_connection_t *tc, u32 seq, u32 seq_end)
Update tsval recent.
Definition: tcp_input.c:138
u32
unsigned int u32
Definition: types.h:88
VLIB_INIT_FUNCTION
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:172
vnet_get_sup_hw_interface
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
Definition: interface_funcs.h:92
tcp_lookup_listener
static tcp_connection_t * tcp_lookup_listener(vlib_buffer_t *b, u32 fib_index, int is_ip4)
Definition: tcp_input.c:1719
tcp.h
tcp_listen_next_t
enum _tcp_listen_next tcp_listen_next_t
ip6
vl_api_ip6_address_t ip6
Definition: one.api:424
scoreboard_init_rxt
void scoreboard_init_rxt(sack_scoreboard_t *sb, u32 snd_una)
Definition: tcp_sack.c:254
tcp_connection_get
static tcp_connection_t * tcp_connection_get(u32 conn_index, u32 thread_index)
Definition: tcp_inlines.h:30
tcp_lookup_is_valid
static u8 tcp_lookup_is_valid(tcp_connection_t *tc, vlib_buffer_t *b, tcp_header_t *hdr)
Definition: tcp_input.c:1611
tcp_cc_congestion_undo
static void tcp_cc_congestion_undo(tcp_connection_t *tc)
Definition: tcp_input.c:693
ooo_segment_t
Definition: fifo_types.h:48
session_worker_::vm
vlib_main_t * vm
Convenience pointer to this worker's vlib_main.
Definition: session.h:104
tcp_in_cong_recovery
#define tcp_in_cong_recovery(tc)
Definition: tcp_types.h:425
tcp_recovery_off
#define tcp_recovery_off(tc)
Definition: tcp_types.h:414
TCP_N_ERROR
@ TCP_N_ERROR
Definition: tcp.h:40
load_balance_get
static load_balance_t * load_balance_get(index_t lbi)
Definition: load_balance.h:220
tcp_rate_sample_::rtt_time
f64 rtt_time
RTT for sample.
Definition: tcp_types.h:227
format_tcp_rx_trace_short
static u8 * format_tcp_rx_trace_short(u8 *s, va_list *args)
Definition: tcp_input.c:1372
n_left
u32 n_left
Definition: interface_output.c:1096
session_lookup_half_open_handle
u64 session_lookup_half_open_handle(transport_connection_t *tc)
Definition: session_lookup.c:837
ip6_header_t
Definition: ip6_packet.h:294
ip4_fib.h
tcp_cc_rcv_cong_ack
static void tcp_cc_rcv_cong_ack(tcp_connection_t *tc, tcp_cc_ack_t ack_type, tcp_rate_sample_t *rs)
Definition: tcp_cc.h:29
ip6_fib.h
tcp_update_time_now
static void tcp_update_time_now(tcp_worker_ctx_t *wrk)
Definition: tcp_inlines.h:221
tcp6_syn_sent_node
vlib_node_registration_t tcp6_syn_sent_node
(constructor) VLIB_REGISTER_NODE (tcp6_syn_sent_node)
Definition: tcp_input.c:2085
tcp_syn_sent_next_t
enum _tcp_syn_sent_next tcp_syn_sent_next_t
tcp4_input_node
vlib_node_registration_t tcp4_input_node
(constructor) VLIB_REGISTER_NODE (tcp4_input_node)
Definition: tcp_input.c:3049
tcp_connection_free
void tcp_connection_free(tcp_connection_t *tc)
Definition: tcp.c:323
TCP_RTT_MAX
#define TCP_RTT_MAX
Definition: tcp_types.h:87
tcp_rcv_rst
static void tcp_rcv_rst(tcp_worker_ctx_t *wrk, tcp_connection_t *tc)
Handle reset packet.
Definition: tcp_input.c:207
ip6_header_t::src_address
ip6_address_t src_address
Definition: ip6_packet.h:310
tcp_program_reset_ntf
static void tcp_program_reset_ntf(tcp_worker_ctx_t *wrk, tcp_connection_t *tc)
Definition: tcp_input.c:190
vlib_main_t
Definition: main.h:102
tcp46_listen_trace_frame
static void tcp46_listen_trace_frame(vlib_main_t *vm, vlib_node_runtime_t *node, u32 *to_next, u32 n_bufs)
Definition: tcp_input.c:2569
foreach_tcp4_input_next
#define foreach_tcp4_input_next
Definition: tcp_input.c:2770
vlib_node_t
Definition: node.h:247
tcp_get_connection_from_transport
static tcp_connection_t * tcp_get_connection_from_transport(transport_connection_t *tconn)
Definition: tcp_types.h:442
TCP_RTO_MIN
#define TCP_RTO_MIN
Definition: tcp_types.h:86
vlib_add_trace
void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
Definition: trace.c:628
TCP_FLAG_ACK
#define TCP_FLAG_ACK
Definition: fa_node.h:16
vlib_get_main
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:38
tcp_connection_tx_pacer_update
void tcp_connection_tx_pacer_update(tcp_connection_t *tc)
Definition: tcp.c:1367
b
vlib_buffer_t ** b
Definition: nat44_ei_out2in.c:717
tcp_cc_handle_event
static void tcp_cc_handle_event(tcp_connection_t *tc, tcp_rate_sample_t *rs, u32 is_dack)
One function to rule them all ...
Definition: tcp_input.c:821
u8
unsigned char u8
Definition: types.h:56
THZ
#define THZ
TCP tick frequency.
Definition: tcp_types.h:25
clib_error_t
Definition: clib_error.h:21
tcp_segment_in_rcv_wnd
static u8 tcp_segment_in_rcv_wnd(tcp_connection_t *tc, u32 seq, u32 end_seq)
Validate segment sequence number.
Definition: tcp_input.c:112
vlib_buffer_get_current
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:257
scoreboard_first_hole
static sack_scoreboard_hole_t * scoreboard_first_hole(sack_scoreboard_t *sb)
Definition: tcp_sack.h:59
vlib_init_function_t
clib_error_t *() vlib_init_function_t(struct vlib_main_t *vm)
Definition: init.h:51
session_lookup_listener4
session_t * session_lookup_listener4(u32 fib_index, ip4_address_t *lcl, u16 lcl_port, u8 proto, u8 use_wildcard)
Definition: session_lookup.c:693
session.h
i
int i
Definition: flowhash_template.h:376
tcp_cfg
#define tcp_cfg
Definition: tcp.h:272
TCP_SYN_SENT_N_NEXT
@ TCP_SYN_SENT_N_NEXT
Definition: tcp_input.c:58
tcp_should_fastrecover
static u8 tcp_should_fastrecover(tcp_connection_t *tc, u8 has_sack)
Definition: tcp_input.c:718
TCP_CC_PARTIALACK
@ TCP_CC_PARTIALACK
Definition: tcp_types.h:259
clib_warning
#define clib_warning(format, args...)
Definition: error.h:59
tcp_fastrecovery_first_off
#define tcp_fastrecovery_first_off(tc)
Definition: tcp_types.h:423
TCP_INPUT_NEXT_ESTABLISHED
@ TCP_INPUT_NEXT_ESTABLISHED
Definition: tcp_input.c:2764
tcp_handle_rst
static void tcp_handle_rst(tcp_connection_t *tc)
Definition: tcp_input.c:157
dpo_id_t_
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:172
nexts
u16 nexts[VLIB_FRAME_SIZE]
Definition: nat44_ei_out2in.c:718
tcp_error.def
tcp_lookup_connection
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:1678
rv
int __clib_unused rv
Definition: application.c:491
tcp_store_err_counters
#define tcp_store_err_counters(node_id, cnts)
Definition: tcp_input.c:1465
ip4_fib_forwarding_lookup
static index_t ip4_fib_forwarding_lookup(u32 fib_index, const ip4_address_t *addr)
Definition: ip4_fib.h:223
load_balance_t_
The FIB DPO provieds;.
Definition: load_balance.h:106
tcp_connection_init_vars
void tcp_connection_init_vars(tcp_connection_t *tc)
Initialize tcp connection variables.
Definition: tcp.c:728
transport_get_listener
static transport_connection_t * transport_get_listener(transport_proto_t tp, u32 conn_index)
Definition: transport.h:163
vlib_node_runtime_t
Definition: node.h:454
tcp_segment_rcv
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:1285
tcp_persist_timer_set
static void tcp_persist_timer_set(tcp_timer_wheel_t *tw, tcp_connection_t *tc)
Definition: tcp_timer.h:69
tcp_estimate_rtt_us
static void tcp_estimate_rtt_us(tcp_connection_t *tc, f64 mrtt)
Definition: tcp_input.c:450
tcp_worker_ctx_
Definition: tcp.h:75
TCP_TICK
#define TCP_TICK
TCP tick period (s)
Definition: tcp_types.h:24
tcp_disconnect_pending
#define tcp_disconnect_pending(tc)
Definition: tcp_types.h:418
session_lookup_listener6
session_t * session_lookup_listener6(u32 fib_index, ip6_address_t *lcl, u16 lcl_port, u8 proto, u8 use_wildcard)
Definition: session_lookup.c:736
session_transport_reset_notify
void session_transport_reset_notify(transport_connection_t *tc)
Notify application that connection has been reset.
Definition: session.c:1187
from
from
Definition: nat44_ei_hairpinning.c:415
PREDICT_TRUE
#define PREDICT_TRUE(x)
Definition: clib.h:125
timestamp_lt
#define timestamp_lt(_t1, _t2)
Definition: tcp_packet.h:185
vlib_buffer_t::total_length_not_including_first_buffer
u32 total_length_not_including_first_buffer
Only valid for first buffer in chain.
Definition: buffer.h:176
tcp6_input_nolookup_node
vlib_node_registration_t tcp6_input_nolookup_node
(constructor) VLIB_REGISTER_NODE (tcp6_input_nolookup_node)
Definition: tcp_input.c:3015
TCP_TIMER_HANDLE_INVALID
#define TCP_TIMER_HANDLE_INVALID
Definition: tcp_types.h:79
tcp_options_parse
static int tcp_options_parse(tcp_header_t *th, tcp_options_t *to, u8 is_syn)
Parse TCP header options.
Definition: tcp_packet.h:197
tcp4_syn_sent_node
vlib_node_registration_t tcp4_syn_sent_node
(constructor) VLIB_REGISTER_NODE (tcp4_syn_sent_node)
Definition: tcp_input.c:2066
tcp_scoreboard_is_sane_post_recovery
u8 tcp_scoreboard_is_sane_post_recovery(tcp_connection_t *tc)
Test that scoreboard is sane after recovery.
Definition: tcp_sack.c:317
tcp_connection_del
void tcp_connection_del(tcp_connection_t *tc)
Connection removal.
Definition: tcp.c:280
n_left_from
n_left_from
Definition: nat44_ei_hairpinning.c:416
session_::connection_index
u32 connection_index
Index of the transport connection associated to the session.
Definition: session_types.h:200
tcp_send_fin
void tcp_send_fin(tcp_connection_t *tc)
Send FIN.
Definition: tcp_output.c:849
tcp_persist_timer_reset
static void tcp_persist_timer_reset(tcp_timer_wheel_t *tw, tcp_connection_t *tc)
Definition: tcp_timer.h:90
tcp_is_descheduled
static u8 tcp_is_descheduled(tcp_connection_t *tc)
Definition: tcp_inlines.h:385
format_white_space
u8 * format_white_space(u8 *s, va_list *va)
Definition: std-formats.c:129
tcp4_input_nolookup_node
vlib_node_registration_t tcp4_input_nolookup_node
(constructor) VLIB_REGISTER_NODE (tcp4_input_nolookup_node)
Definition: tcp_input.c:2995
ip4_next_header
static void * ip4_next_header(ip4_header_t *i)
Definition: ip4_packet.h:196
tcp_rcv_ack_no_cc
static int tcp_rcv_ack_no_cc(tcp_connection_t *tc, vlib_buffer_t *b, u32 *error)
Definition: tcp_input.c:401
vlib_buffer_t::flags
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index,...
Definition: buffer.h:133
session_stream_accept_notify
int session_stream_accept_notify(transport_connection_t *tc)
Definition: session.c:1202
foreach_tcp6_input_next
#define foreach_tcp6_input_next
Definition: tcp_input.c:2779
tcp4_listen_node
vlib_node_registration_t tcp4_listen_node
(constructor) VLIB_REGISTER_NODE (tcp4_listen_node)
Definition: tcp_input.c:2721
session_stream_connect_notify
int session_stream_connect_notify(transport_connection_t *tc, session_error_t err)
Definition: session.c:888
vlib_buffer_t
VLIB buffer representation.
Definition: buffer.h:111
VLIB_REGISTER_NODE
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
ip_is_zero
u8 ip_is_zero(ip46_address_t *ip46_address, u8 is_ip4)
Definition: ip.c:22
tcp_half_open_connection_cleanup
int tcp_half_open_connection_cleanup(tcp_connection_t *tc)
Try to cleanup half-open connection.
Definition: tcp.c:212
flags
vl_api_wireguard_peer_flags_t flags
Definition: wireguard.api:105
svm_fifo_newest_ooo_segment_reset
static void svm_fifo_newest_ooo_segment_reset(svm_fifo_t *f)
Definition: svm_fifo.h:675