blob: 88bd7a5d8583fe25c92b58ab9984d23c507e2bc1 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Coras830fe732019-02-15 18:20:58 -08002 * Copyright (c) 2016-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vppinfra/sparse_vec.h>
17#include <vnet/tcp/tcp_packet.h>
18#include <vnet/tcp/tcp.h>
19#include <vnet/session/session.h>
20#include <math.h>
21
22static char *tcp_error_strings[] = {
23#define tcp_error(n,s) s,
24#include <vnet/tcp/tcp_error.def>
25#undef tcp_error
26};
27
28/* All TCP nodes have the same outgoing arcs */
29#define foreach_tcp_state_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080030 _ (DROP4, "ip4-drop") \
31 _ (DROP6, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -050032 _ (TCP4_OUTPUT, "tcp4-output") \
33 _ (TCP6_OUTPUT, "tcp6-output")
34
35typedef enum _tcp_established_next
36{
37#define _(s,n) TCP_ESTABLISHED_NEXT_##s,
38 foreach_tcp_state_next
39#undef _
40 TCP_ESTABLISHED_N_NEXT,
41} tcp_established_next_t;
42
43typedef enum _tcp_rcv_process_next
44{
45#define _(s,n) TCP_RCV_PROCESS_NEXT_##s,
46 foreach_tcp_state_next
47#undef _
48 TCP_RCV_PROCESS_N_NEXT,
49} tcp_rcv_process_next_t;
50
51typedef enum _tcp_syn_sent_next
52{
53#define _(s,n) TCP_SYN_SENT_NEXT_##s,
54 foreach_tcp_state_next
55#undef _
56 TCP_SYN_SENT_N_NEXT,
57} tcp_syn_sent_next_t;
58
59typedef enum _tcp_listen_next
60{
61#define _(s,n) TCP_LISTEN_NEXT_##s,
62 foreach_tcp_state_next
63#undef _
64 TCP_LISTEN_N_NEXT,
65} tcp_listen_next_t;
66
67/* Generic, state independent indices */
68typedef enum _tcp_state_next
69{
70#define _(s,n) TCP_NEXT_##s,
71 foreach_tcp_state_next
72#undef _
73 TCP_STATE_N_NEXT,
74} tcp_state_next_t;
75
76#define tcp_next_output(is_ip4) (is_ip4 ? TCP_NEXT_TCP4_OUTPUT \
77 : TCP_NEXT_TCP6_OUTPUT)
78
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080079#define tcp_next_drop(is_ip4) (is_ip4 ? TCP_NEXT_DROP4 \
80 : TCP_NEXT_DROP6)
81
Dave Barach68b0fb02017-02-28 15:15:56 -050082vlib_node_registration_t tcp4_established_node;
83vlib_node_registration_t tcp6_established_node;
84
85/**
86 * Validate segment sequence number. As per RFC793:
87 *
88 * Segment Receive Test
89 * Length Window
90 * ------- ------- -------------------------------------------
91 * 0 0 SEG.SEQ = RCV.NXT
92 * 0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
93 * >0 0 not acceptable
94 * >0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
95 * or RCV.NXT =< SEG.SEQ+SEG.LEN-1 < RCV.NXT+RCV.WND
96 *
97 * This ultimately consists in checking if segment falls within the window.
98 * The one important difference compared to RFC793 is that we use rcv_las,
99 * or the rcv_nxt at last ack sent instead of rcv_nxt since that's the
100 * peer's reference when computing our receive window.
101 *
Florin Coras6792ec02017-03-13 03:49:51 -0700102 * This:
103 * seq_leq (end_seq, tc->rcv_las + tc->rcv_wnd) && seq_geq (seq, tc->rcv_las)
104 * however, is too strict when we have retransmits. Instead we just check that
105 * the seq is not beyond the right edge and that the end of the segment is not
106 * less than the left edge.
107 *
108 * N.B. rcv_nxt and rcv_wnd are both updated in this node if acks are sent, so
109 * use rcv_nxt in the right edge window test instead of rcv_las.
110 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500111 */
112always_inline u8
113tcp_segment_in_rcv_wnd (tcp_connection_t * tc, u32 seq, u32 end_seq)
114{
Florin Coras6792ec02017-03-13 03:49:51 -0700115 return (seq_geq (end_seq, tc->rcv_las)
116 && seq_leq (seq, tc->rcv_nxt + tc->rcv_wnd));
Dave Barach68b0fb02017-02-28 15:15:56 -0500117}
118
Florin Corasdb84e572017-05-09 18:54:52 -0700119/**
120 * Parse TCP header options.
121 *
122 * @param th TCP header
123 * @param to TCP options data structure to be populated
Florin Coras80231112018-12-05 15:59:31 -0800124 * @param is_syn set if packet is syn
Florin Corasdb84e572017-05-09 18:54:52 -0700125 * @return -1 if parsing failed
126 */
Florin Coras80231112018-12-05 15:59:31 -0800127static inline int
128tcp_options_parse (tcp_header_t * th, tcp_options_t * to, u8 is_syn)
Dave Barach68b0fb02017-02-28 15:15:56 -0500129{
130 const u8 *data;
131 u8 opt_len, opts_len, kind;
132 int j;
133 sack_block_t b;
134
135 opts_len = (tcp_doff (th) << 2) - sizeof (tcp_header_t);
136 data = (const u8 *) (th + 1);
137
138 /* Zero out all flags but those set in SYN */
Florin Corasd6fe5bd2018-10-16 19:52:10 -0700139 to->flags &= (TCP_OPTS_FLAG_SACK_PERMITTED | TCP_OPTS_FLAG_WSCALE
Florin Coras80231112018-12-05 15:59:31 -0800140 | TCP_OPTS_FLAG_TSTAMP | TCP_OPTION_MSS);
Dave Barach68b0fb02017-02-28 15:15:56 -0500141
142 for (; opts_len > 0; opts_len -= opt_len, data += opt_len)
143 {
144 kind = data[0];
145
146 /* Get options length */
147 if (kind == TCP_OPTION_EOL)
148 break;
149 else if (kind == TCP_OPTION_NOOP)
Florin Corasdb84e572017-05-09 18:54:52 -0700150 {
151 opt_len = 1;
152 continue;
153 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500154 else
155 {
156 /* broken options */
157 if (opts_len < 2)
Florin Corasdb84e572017-05-09 18:54:52 -0700158 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500159 opt_len = data[1];
160
161 /* weird option length */
162 if (opt_len < 2 || opt_len > opts_len)
Florin Corasdb84e572017-05-09 18:54:52 -0700163 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500164 }
165
166 /* Parse options */
167 switch (kind)
168 {
169 case TCP_OPTION_MSS:
Florin Coras80231112018-12-05 15:59:31 -0800170 if (!is_syn)
171 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500172 if ((opt_len == TCP_OPTION_LEN_MSS) && tcp_syn (th))
173 {
174 to->flags |= TCP_OPTS_FLAG_MSS;
175 to->mss = clib_net_to_host_u16 (*(u16 *) (data + 2));
176 }
177 break;
178 case TCP_OPTION_WINDOW_SCALE:
Florin Coras80231112018-12-05 15:59:31 -0800179 if (!is_syn)
180 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500181 if ((opt_len == TCP_OPTION_LEN_WINDOW_SCALE) && tcp_syn (th))
182 {
183 to->flags |= TCP_OPTS_FLAG_WSCALE;
184 to->wscale = data[2];
185 if (to->wscale > TCP_MAX_WND_SCALE)
Florin Corasa9d5bea2018-12-17 08:24:19 -0800186 to->wscale = TCP_MAX_WND_SCALE;
Dave Barach68b0fb02017-02-28 15:15:56 -0500187 }
188 break;
189 case TCP_OPTION_TIMESTAMP:
Florin Coras80231112018-12-05 15:59:31 -0800190 if (is_syn)
191 to->flags |= TCP_OPTS_FLAG_TSTAMP;
192 if ((to->flags & TCP_OPTS_FLAG_TSTAMP)
193 && opt_len == TCP_OPTION_LEN_TIMESTAMP)
Dave Barach68b0fb02017-02-28 15:15:56 -0500194 {
Dave Barach68b0fb02017-02-28 15:15:56 -0500195 to->tsval = clib_net_to_host_u32 (*(u32 *) (data + 2));
196 to->tsecr = clib_net_to_host_u32 (*(u32 *) (data + 6));
197 }
198 break;
199 case TCP_OPTION_SACK_PERMITTED:
Florin Coras80231112018-12-05 15:59:31 -0800200 if (!is_syn)
201 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500202 if (opt_len == TCP_OPTION_LEN_SACK_PERMITTED && tcp_syn (th))
203 to->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
204 break;
205 case TCP_OPTION_SACK_BLOCK:
206 /* If SACK permitted was not advertised or a SYN, break */
207 if ((to->flags & TCP_OPTS_FLAG_SACK_PERMITTED) == 0 || tcp_syn (th))
208 break;
209
210 /* If too short or not correctly formatted, break */
211 if (opt_len < 10 || ((opt_len - 2) % TCP_OPTION_LEN_SACK_BLOCK))
212 break;
213
214 to->flags |= TCP_OPTS_FLAG_SACK;
215 to->n_sack_blocks = (opt_len - 2) / TCP_OPTION_LEN_SACK_BLOCK;
216 vec_reset_length (to->sacks);
217 for (j = 0; j < to->n_sack_blocks; j++)
218 {
Florin Coras3eb50622017-07-13 01:24:57 -0400219 b.start = clib_net_to_host_u32 (*(u32 *) (data + 2 + 8 * j));
220 b.end = clib_net_to_host_u32 (*(u32 *) (data + 6 + 8 * j));
Dave Barach68b0fb02017-02-28 15:15:56 -0500221 vec_add1 (to->sacks, b);
222 }
223 break;
224 default:
225 /* Nothing to see here */
226 continue;
227 }
228 }
Florin Corasdb84e572017-05-09 18:54:52 -0700229 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500230}
231
Florin Corasc28764f2017-04-26 00:08:42 -0700232/**
233 * RFC1323: Check against wrapped sequence numbers (PAWS). If we have
234 * timestamp to echo and it's less than tsval_recent, drop segment
235 * but still send an ACK in order to retain TCP's mechanism for detecting
236 * and recovering from half-open connections
237 *
238 * Or at least that's what the theory says. It seems that this might not work
239 * very well with packet reordering and fast retransmit. XXX
240 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500241always_inline int
242tcp_segment_check_paws (tcp_connection_t * tc)
243{
Florin Corasea41aac2018-12-06 17:24:59 -0800244 return tcp_opts_tstamp (&tc->rcv_opts)
Florin Coras93992a92017-05-24 18:03:56 -0700245 && timestamp_lt (tc->rcv_opts.tsval, tc->tsval_recent);
Dave Barach68b0fb02017-02-28 15:15:56 -0500246}
247
248/**
Florin Corasc28764f2017-04-26 00:08:42 -0700249 * Update tsval recent
250 */
251always_inline void
252tcp_update_timestamp (tcp_connection_t * tc, u32 seq, u32 seq_end)
253{
254 /*
255 * RFC1323: If Last.ACK.sent falls within the range of sequence numbers
256 * of an incoming segment:
257 * SEG.SEQ <= Last.ACK.sent < SEG.SEQ + SEG.LEN
258 * then the TSval from the segment is copied to TS.Recent;
259 * otherwise, the TSval is ignored.
260 */
Florin Corasf1762d62017-09-24 19:43:08 -0400261 if (tcp_opts_tstamp (&tc->rcv_opts) && seq_leq (seq, tc->rcv_las)
262 && seq_leq (tc->rcv_las, seq_end))
Florin Corasc28764f2017-04-26 00:08:42 -0700263 {
Dave Barach2c25a622017-06-26 11:35:07 -0400264 ASSERT (timestamp_leq (tc->tsval_recent, tc->rcv_opts.tsval));
Florin Coras93992a92017-05-24 18:03:56 -0700265 tc->tsval_recent = tc->rcv_opts.tsval;
Florin Corasbe72ae62018-11-01 11:23:03 -0700266 tc->tsval_recent_age = tcp_time_now_w_thread (tc->c_thread_index);
Florin Corasc28764f2017-04-26 00:08:42 -0700267 }
268}
269
270/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500271 * Validate incoming segment as per RFC793 p. 69 and RFC1323 p. 19
272 *
273 * It first verifies if segment has a wrapped sequence number (PAWS) and then
274 * does the processing associated to the first four steps (ignoring security
275 * and precedence): sequence number, rst bit and syn bit checks.
276 *
277 * @return 0 if segments passes validation.
278 */
279static int
Florin Coras7ac053b2018-11-05 15:57:21 -0800280tcp_segment_validate (tcp_worker_ctx_t * wrk, tcp_connection_t * tc0,
281 vlib_buffer_t * b0, tcp_header_t * th0, u32 * error0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500282{
Florin Corasca1c8f32018-05-23 21:01:30 -0700283 /* We could get a burst of RSTs interleaved with acks */
284 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
285 {
286 tcp_send_reset (tc0);
287 *error0 = TCP_ERROR_CONNECTION_CLOSED;
Florin Coras7ac053b2018-11-05 15:57:21 -0800288 goto error;
Florin Corasca1c8f32018-05-23 21:01:30 -0700289 }
290
Dave Barach68b0fb02017-02-28 15:15:56 -0500291 if (PREDICT_FALSE (!tcp_ack (th0) && !tcp_rst (th0) && !tcp_syn (th0)))
Florin Coras00cd22d2018-04-18 13:20:18 -0700292 {
293 *error0 = TCP_ERROR_SEGMENT_INVALID;
Florin Coras7ac053b2018-11-05 15:57:21 -0800294 goto error;
Florin Coras00cd22d2018-04-18 13:20:18 -0700295 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500296
Florin Coras80231112018-12-05 15:59:31 -0800297 if (PREDICT_FALSE (tcp_options_parse (th0, &tc0->rcv_opts, 0)))
Florin Corasdb84e572017-05-09 18:54:52 -0700298 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700299 *error0 = TCP_ERROR_OPTIONS;
Florin Coras7ac053b2018-11-05 15:57:21 -0800300 goto error;
Florin Corasdb84e572017-05-09 18:54:52 -0700301 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500302
Florin Coras00cd22d2018-04-18 13:20:18 -0700303 if (PREDICT_FALSE (tcp_segment_check_paws (tc0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500304 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700305 *error0 = TCP_ERROR_PAWS;
Florin Corasc28764f2017-04-26 00:08:42 -0700306 TCP_EVT_DBG (TCP_EVT_PAWS_FAIL, tc0, vnet_buffer (b0)->tcp.seq_number,
307 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500308
309 /* If it just so happens that a segment updates tsval_recent for a
310 * segment over 24 days old, invalidate tsval_recent. */
311 if (timestamp_lt (tc0->tsval_recent_age + TCP_PAWS_IDLE,
Florin Corasbe72ae62018-11-01 11:23:03 -0700312 tcp_time_now_w_thread (tc0->c_thread_index)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500313 {
Florin Corasea41aac2018-12-06 17:24:59 -0800314 tc0->tsval_recent = tc0->rcv_opts.tsval;
Florin Coras91236ce2018-12-16 11:41:45 -0800315 clib_warning ("paws failed: 24-day old segment");
Dave Barach68b0fb02017-02-28 15:15:56 -0500316 }
Florin Coras91236ce2018-12-16 11:41:45 -0800317 /* Drop after ack if not rst. Resets can fail paws check as per
318 * RFC 7323 sec. 5.2: When an <RST> segment is received, it MUST NOT
319 * be subjected to the PAWS check by verifying an acceptable value in
320 * SEG.TSval */
321 else if (!tcp_rst (th0))
Dave Barach68b0fb02017-02-28 15:15:56 -0500322 {
Florin Coras91236ce2018-12-16 11:41:45 -0800323 tcp_program_ack (wrk, tc0);
324 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
325 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500326 }
327 }
328
329 /* 1st: check sequence number */
330 if (!tcp_segment_in_rcv_wnd (tc0, vnet_buffer (b0)->tcp.seq_number,
331 vnet_buffer (b0)->tcp.seq_end))
332 {
Florin Coras830fe732019-02-15 18:20:58 -0800333 /* SYN/SYN-ACK retransmit */
334 if (tcp_syn (th0)
335 && vnet_buffer (b0)->tcp.seq_number == tc0->rcv_nxt - 1)
336 {
337 tcp_options_parse (th0, &tc0->rcv_opts, 1);
338 if (tc0->state == TCP_STATE_SYN_RCVD)
339 {
340 tcp_send_synack (tc0);
341 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, tc0, 0);
342 *error0 = TCP_ERROR_SYNS_RCVD;
343 }
344 else
345 {
346 tcp_program_ack (wrk, tc0);
347 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, tc0);
348 *error0 = TCP_ERROR_SYN_ACKS_RCVD;
349 }
350 goto error;
351 }
352
Florin Coras6792ec02017-03-13 03:49:51 -0700353 /* If our window is 0 and the packet is in sequence, let it pass
Florin Coras00cd22d2018-04-18 13:20:18 -0700354 * through for ack processing. It should be dropped later. */
Florin Coras222e1f412019-02-16 20:47:32 -0800355 if (tc0->rcv_wnd == 0
356 && tc0->rcv_nxt == vnet_buffer (b0)->tcp.seq_number)
357 goto check_reset;
358
359 /* If we entered recovery and peer did so as well, there's a chance that
360 * dup acks won't be acceptable on either end because seq_end may be less
361 * than rcv_las. This can happen if acks are lost in both directions. */
362 if (tcp_in_recovery (tc0)
363 && seq_geq (vnet_buffer (b0)->tcp.seq_number,
364 tc0->rcv_las - tc0->rcv_wnd)
365 && seq_leq (vnet_buffer (b0)->tcp.seq_end,
366 tc0->rcv_nxt + tc0->rcv_wnd))
367 goto check_reset;
368
369 *error0 = TCP_ERROR_RCV_WND;
370
371 /* If not RST, send dup ack */
372 if (!tcp_rst (th0))
Florin Coras6792ec02017-03-13 03:49:51 -0700373 {
Florin Coras222e1f412019-02-16 20:47:32 -0800374 tcp_program_dupack (wrk, tc0);
375 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
Florin Coras6792ec02017-03-13 03:49:51 -0700376 }
Florin Coras222e1f412019-02-16 20:47:32 -0800377 goto error;
378
379 check_reset:
380 ;
Dave Barach68b0fb02017-02-28 15:15:56 -0500381 }
382
383 /* 2nd: check the RST bit */
Florin Coras00cd22d2018-04-18 13:20:18 -0700384 if (PREDICT_FALSE (tcp_rst (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500385 {
Florin Corasd79b41e2017-03-04 05:37:52 -0800386 tcp_connection_reset (tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -0700387 *error0 = TCP_ERROR_RST_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -0800388 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500389 }
390
391 /* 3rd: check security and precedence (skip) */
392
Florin Coras830fe732019-02-15 18:20:58 -0800393 /* 4th: check the SYN bit (in window) */
Florin Coras00cd22d2018-04-18 13:20:18 -0700394 if (PREDICT_FALSE (tcp_syn (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500395 {
Florin Coras830fe732019-02-15 18:20:58 -0800396 *error0 = TCP_ERROR_SPURIOUS_SYN;
397 tcp_send_reset (tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -0700398 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500399 }
400
Florin Corasc28764f2017-04-26 00:08:42 -0700401 /* If segment in window, save timestamp */
402 tcp_update_timestamp (tc0, vnet_buffer (b0)->tcp.seq_number,
403 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500404 return 0;
Florin Coras00cd22d2018-04-18 13:20:18 -0700405
Florin Coras00cd22d2018-04-18 13:20:18 -0700406error:
Florin Coras00cd22d2018-04-18 13:20:18 -0700407 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500408}
409
410always_inline int
411tcp_rcv_ack_is_acceptable (tcp_connection_t * tc0, vlib_buffer_t * tb0)
412{
413 /* SND.UNA =< SEG.ACK =< SND.NXT */
414 return (seq_leq (tc0->snd_una, vnet_buffer (tb0)->tcp.ack_number)
415 && seq_leq (vnet_buffer (tb0)->tcp.ack_number, tc0->snd_nxt));
416}
417
418/**
419 * Compute smoothed RTT as per VJ's '88 SIGCOMM and RFC6298
420 *
421 * Note that although the original article, srtt and rttvar are scaled
422 * to minimize round-off errors, here we don't. Instead, we rely on
423 * better precision time measurements.
424 *
425 * TODO support us rtt resolution
426 */
427static void
428tcp_estimate_rtt (tcp_connection_t * tc, u32 mrtt)
429{
Florin Corasf03a59a2017-06-09 21:07:32 -0700430 int err, diff;
Dave Barach68b0fb02017-02-28 15:15:56 -0500431
432 if (tc->srtt != 0)
433 {
434 err = mrtt - tc->srtt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500435
436 /* XXX Drop in RTT results in RTTVAR increase and bigger RTO.
437 * The increase should be bound */
Florin Corasf03a59a2017-06-09 21:07:32 -0700438 tc->srtt = clib_max ((int) tc->srtt + (err >> 3), 1);
439 diff = (clib_abs (err) - (int) tc->rttvar) >> 2;
440 tc->rttvar = clib_max ((int) tc->rttvar + diff, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500441 }
442 else
443 {
444 /* First measurement. */
445 tc->srtt = mrtt;
Florin Coras6792ec02017-03-13 03:49:51 -0700446 tc->rttvar = mrtt >> 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500447 }
448}
449
Florin Coras93992a92017-05-24 18:03:56 -0700450void
451tcp_update_rto (tcp_connection_t * tc)
452{
453 tc->rto = clib_min (tc->srtt + (tc->rttvar << 2), TCP_RTO_MAX);
Florin Corasf03a59a2017-06-09 21:07:32 -0700454 tc->rto = clib_max (tc->rto, TCP_RTO_MIN);
Florin Coras93992a92017-05-24 18:03:56 -0700455}
456
Florin Corasf1762d62017-09-24 19:43:08 -0400457/**
458 * Update RTT estimate and RTO timer
Dave Barach68b0fb02017-02-28 15:15:56 -0500459 *
460 * Measure RTT: We have two sources of RTT measurements: TSOPT and ACK
461 * timing. Middle boxes are known to fiddle with TCP options so we
462 * should give higher priority to ACK timing.
463 *
Florin Corasf1762d62017-09-24 19:43:08 -0400464 * This should be called only if previously sent bytes have been acked.
465 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500466 * return 1 if valid rtt 0 otherwise
467 */
468static int
469tcp_update_rtt (tcp_connection_t * tc, u32 ack)
470{
471 u32 mrtt = 0;
472
473 /* Karn's rule, part 1. Don't use retransmitted segments to estimate
474 * RTT because they're ambiguous. */
Florin Corasf1762d62017-09-24 19:43:08 -0400475 if (tcp_in_cong_recovery (tc) || tc->sack_sb.sacked_bytes)
Florin Coras3ec66b02018-08-23 16:27:05 -0700476 {
477 if (tcp_in_recovery (tc))
478 return 0;
479 goto done;
480 }
Florin Corasf1762d62017-09-24 19:43:08 -0400481
482 if (tc->rtt_ts && seq_geq (ack, tc->rtt_seq))
Dave Barach68b0fb02017-02-28 15:15:56 -0500483 {
Florin Corasefefc6b2018-11-07 12:49:19 -0800484 f64 sample = tcp_time_now_us (tc->c_thread_index) - tc->rtt_ts;
485 tc->mrtt_us = tc->mrtt_us + (sample - tc->mrtt_us) * 0.125;
486 mrtt = clib_max ((u32) (sample * THZ), 1);
487 /* Allow measuring of a new RTT */
488 tc->rtt_ts = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500489 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500490 /* As per RFC7323 TSecr can be used for RTTM only if the segment advances
491 * snd_una, i.e., the left side of the send window:
Florin Corasf1762d62017-09-24 19:43:08 -0400492 * seq_lt (tc->snd_una, ack). This is a condition for calling update_rtt */
493 else if (tcp_opts_tstamp (&tc->rcv_opts) && tc->rcv_opts.tsecr)
Dave Barach68b0fb02017-02-28 15:15:56 -0500494 {
Florin Corasbe72ae62018-11-01 11:23:03 -0700495 u32 now = tcp_time_now_w_thread (tc->c_thread_index);
496 mrtt = clib_max (now - tc->rcv_opts.tsecr, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500497 }
498
Florin Corasf1762d62017-09-24 19:43:08 -0400499 /* Ignore dubious measurements */
500 if (mrtt == 0 || mrtt > TCP_RTT_MAX)
501 goto done;
502
503 tcp_estimate_rtt (tc, mrtt);
504
505done:
506
Florin Corasf1762d62017-09-24 19:43:08 -0400507 /* If we got here something must've been ACKed so make sure boff is 0,
Florin Coras3ec66b02018-08-23 16:27:05 -0700508 * even if mrtt is not valid since we update the rto lower */
Florin Corasf1762d62017-09-24 19:43:08 -0400509 tc->rto_boff = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700510 tcp_update_rto (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500511
Florin Coras3af90fc2017-05-03 21:09:42 -0700512 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500513}
514
Florin Corasefefc6b2018-11-07 12:49:19 -0800515static void
516tcp_estimate_initial_rtt (tcp_connection_t * tc)
517{
518 u8 thread_index = vlib_num_workers ()? 1 : 0;
519 int mrtt;
520
521 if (tc->rtt_ts)
522 {
523 tc->mrtt_us = tcp_time_now_us (thread_index) - tc->rtt_ts;
Florin Coras222e1f412019-02-16 20:47:32 -0800524 tc->mrtt_us = clib_max (tc->mrtt_us, 0.0001);
Florin Corasefefc6b2018-11-07 12:49:19 -0800525 mrtt = clib_max ((u32) (tc->mrtt_us * THZ), 1);
526 tc->rtt_ts = 0;
527 }
528 else
529 {
530 mrtt = tcp_time_now_w_thread (thread_index) - tc->rcv_opts.tsecr;
Florin Coras4af830c2018-12-04 09:21:36 -0800531 mrtt = clib_max (mrtt, 1);
Florin Coras222e1f412019-02-16 20:47:32 -0800532 /* Due to retransmits we don't know the initial mrtt */
533 if (tc->rto_boff && mrtt > 1 * THZ)
534 mrtt = 1 * THZ;
Florin Corasefefc6b2018-11-07 12:49:19 -0800535 tc->mrtt_us = (f64) mrtt *TCP_TICK;
Florin Corasefefc6b2018-11-07 12:49:19 -0800536 }
537
538 if (mrtt > 0 && mrtt < TCP_RTT_MAX)
539 tcp_estimate_rtt (tc, mrtt);
Florin Coras54ddf432018-12-21 13:54:09 -0800540 tcp_update_rto (tc);
Florin Corasefefc6b2018-11-07 12:49:19 -0800541}
542
Dave Barach68b0fb02017-02-28 15:15:56 -0500543/**
Florin Coras9ece3c02018-11-05 11:06:53 -0800544 * Dequeue bytes for connections that have received acks in last burst
Dave Barach68b0fb02017-02-28 15:15:56 -0500545 */
546static void
Florin Coras9ece3c02018-11-05 11:06:53 -0800547tcp_handle_postponed_dequeues (tcp_worker_ctx_t * wrk)
Dave Barach68b0fb02017-02-28 15:15:56 -0500548{
Florin Coras9ece3c02018-11-05 11:06:53 -0800549 u32 thread_index = wrk->vm->thread_index;
550 u32 *pending_deq_acked;
551 tcp_connection_t *tc;
552 int i;
Florin Coras93992a92017-05-24 18:03:56 -0700553
Florin Coras9ece3c02018-11-05 11:06:53 -0800554 if (!vec_len (wrk->pending_deq_acked))
555 return;
Dave Barach68b0fb02017-02-28 15:15:56 -0500556
Florin Coras9ece3c02018-11-05 11:06:53 -0800557 pending_deq_acked = wrk->pending_deq_acked;
558 for (i = 0; i < vec_len (pending_deq_acked); i++)
559 {
560 tc = tcp_connection_get (pending_deq_acked[i], thread_index);
561 tc->flags &= ~TCP_CONN_DEQ_PENDING;
Florin Coras93992a92017-05-24 18:03:56 -0700562
Florin Corasefefc6b2018-11-07 12:49:19 -0800563 if (PREDICT_FALSE (!tc->burst_acked))
564 continue;
565
Florin Coras9ece3c02018-11-05 11:06:53 -0800566 /* Dequeue the newly ACKed bytes */
Florin Coras565115e2019-02-20 19:48:31 -0800567 session_dequeue_drop (&tc->connection, tc->burst_acked);
Florin Coras9ece3c02018-11-05 11:06:53 -0800568 tc->burst_acked = 0;
569 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
570
Florin Coras42ceddb2018-12-12 10:56:01 -0800571 if (PREDICT_FALSE (tc->flags & TCP_CONN_PSH_PENDING))
572 {
573 if (seq_leq (tc->psh_seq, tc->snd_una))
574 tc->flags &= ~TCP_CONN_PSH_PENDING;
575 }
576
Florin Coras9ece3c02018-11-05 11:06:53 -0800577 /* If everything has been acked, stop retransmit timer
578 * otherwise update. */
579 tcp_retransmit_timer_update (tc);
Florin Corasefefc6b2018-11-07 12:49:19 -0800580
581 /* If not congested, update pacer based on our new
582 * cwnd estimate */
583 if (!tcp_in_fastrecovery (tc))
584 tcp_connection_tx_pacer_update (tc);
Florin Coras9ece3c02018-11-05 11:06:53 -0800585 }
586 _vec_len (wrk->pending_deq_acked) = 0;
587}
588
589static void
590tcp_program_dequeue (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
591{
592 if (!(tc->flags & TCP_CONN_DEQ_PENDING))
593 {
594 vec_add1 (wrk->pending_deq_acked, tc->c_c_index);
595 tc->flags |= TCP_CONN_DEQ_PENDING;
596 }
597 tc->burst_acked += tc->bytes_acked + tc->sack_sb.snd_una_adv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500598}
599
Florin Coras6792ec02017-03-13 03:49:51 -0700600/**
Florin Coras93992a92017-05-24 18:03:56 -0700601 * Check if duplicate ack as per RFC5681 Sec. 2
602 */
603static u8
604tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd,
605 u32 prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500606{
Florin Coras93992a92017-05-24 18:03:56 -0700607 return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500608 && seq_gt (tc->snd_una_max, tc->snd_una)
609 && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
Florin Coras93992a92017-05-24 18:03:56 -0700610 && (prev_snd_wnd == tc->snd_wnd));
611}
612
613/**
614 * Checks if ack is a congestion control event.
615 */
616static u8
617tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b,
618 u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
619{
620 /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
621 * defined to be 'duplicate' */
622 *is_dack = tc->sack_sb.last_sacked_bytes
623 || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
624
Dave Barach2c25a622017-06-26 11:35:07 -0400625 return ((*is_dack || tcp_in_cong_recovery (tc)) && !tcp_is_lost_fin (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -0500626}
627
Florin Coras0dbd5172018-06-25 16:19:34 -0700628static u32
629scoreboard_hole_index (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
630{
631 ASSERT (!pool_is_free_index (sb->holes, hole - sb->holes));
632 return hole - sb->holes;
633}
634
635static u32
636scoreboard_hole_bytes (sack_scoreboard_hole_t * hole)
637{
638 return hole->end - hole->start;
639}
640
641sack_scoreboard_hole_t *
642scoreboard_get_hole (sack_scoreboard_t * sb, u32 index)
643{
644 if (index != TCP_INVALID_SACK_HOLE_INDEX)
645 return pool_elt_at_index (sb->holes, index);
646 return 0;
647}
648
649sack_scoreboard_hole_t *
650scoreboard_next_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
651{
652 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
653 return pool_elt_at_index (sb->holes, hole->next);
654 return 0;
655}
656
657sack_scoreboard_hole_t *
658scoreboard_prev_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
659{
660 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
661 return pool_elt_at_index (sb->holes, hole->prev);
662 return 0;
663}
664
665sack_scoreboard_hole_t *
666scoreboard_first_hole (sack_scoreboard_t * sb)
667{
668 if (sb->head != TCP_INVALID_SACK_HOLE_INDEX)
669 return pool_elt_at_index (sb->holes, sb->head);
670 return 0;
671}
672
673sack_scoreboard_hole_t *
674scoreboard_last_hole (sack_scoreboard_t * sb)
675{
676 if (sb->tail != TCP_INVALID_SACK_HOLE_INDEX)
677 return pool_elt_at_index (sb->holes, sb->tail);
678 return 0;
679}
680
681static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500682scoreboard_remove_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
683{
684 sack_scoreboard_hole_t *next, *prev;
685
686 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
687 {
688 next = pool_elt_at_index (sb->holes, hole->next);
689 next->prev = hole->prev;
690 }
Florin Coras93992a92017-05-24 18:03:56 -0700691 else
692 {
693 sb->tail = hole->prev;
694 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500695
696 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
697 {
698 prev = pool_elt_at_index (sb->holes, hole->prev);
699 prev->next = hole->next;
700 }
701 else
702 {
703 sb->head = hole->next;
704 }
705
Florin Coras93992a92017-05-24 18:03:56 -0700706 if (scoreboard_hole_index (sb, hole) == sb->cur_rxt_hole)
707 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
708
Florin Coras3eb50622017-07-13 01:24:57 -0400709 /* Poison the entry */
710 if (CLIB_DEBUG > 0)
Dave Barachb7b92992018-10-17 10:38:51 -0400711 clib_memset (hole, 0xfe, sizeof (*hole));
Florin Coras3eb50622017-07-13 01:24:57 -0400712
Dave Barach68b0fb02017-02-28 15:15:56 -0500713 pool_put (sb->holes, hole);
714}
715
Florin Coras0dbd5172018-06-25 16:19:34 -0700716static sack_scoreboard_hole_t *
Florin Coras6792ec02017-03-13 03:49:51 -0700717scoreboard_insert_hole (sack_scoreboard_t * sb, u32 prev_index,
Dave Barach68b0fb02017-02-28 15:15:56 -0500718 u32 start, u32 end)
719{
Florin Coras6792ec02017-03-13 03:49:51 -0700720 sack_scoreboard_hole_t *hole, *next, *prev;
Dave Barach68b0fb02017-02-28 15:15:56 -0500721 u32 hole_index;
722
723 pool_get (sb->holes, hole);
Dave Barachb7b92992018-10-17 10:38:51 -0400724 clib_memset (hole, 0, sizeof (*hole));
Dave Barach68b0fb02017-02-28 15:15:56 -0500725
726 hole->start = start;
727 hole->end = end;
Florin Coras3eb50622017-07-13 01:24:57 -0400728 hole_index = scoreboard_hole_index (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500729
Florin Coras6792ec02017-03-13 03:49:51 -0700730 prev = scoreboard_get_hole (sb, prev_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500731 if (prev)
732 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700733 hole->prev = prev_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500734 hole->next = prev->next;
735
736 if ((next = scoreboard_next_hole (sb, hole)))
737 next->prev = hole_index;
Florin Corasf03a59a2017-06-09 21:07:32 -0700738 else
739 sb->tail = hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500740
741 prev->next = hole_index;
742 }
743 else
744 {
745 sb->head = hole_index;
746 hole->prev = TCP_INVALID_SACK_HOLE_INDEX;
747 hole->next = TCP_INVALID_SACK_HOLE_INDEX;
748 }
749
750 return hole;
751}
752
Florin Coras0dbd5172018-06-25 16:19:34 -0700753static void
Florin Corasf03a59a2017-06-09 21:07:32 -0700754scoreboard_update_bytes (tcp_connection_t * tc, sack_scoreboard_t * sb)
Florin Coras93992a92017-05-24 18:03:56 -0700755{
Florin Corasecbd20b2018-10-17 23:34:54 -0700756 sack_scoreboard_hole_t *left, *right;
Florin Coras93992a92017-05-24 18:03:56 -0700757 u32 bytes = 0, blks = 0;
758
759 sb->lost_bytes = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700760 sb->sacked_bytes = 0;
Florin Corasecbd20b2018-10-17 23:34:54 -0700761 left = scoreboard_last_hole (sb);
762 if (!left)
Florin Coras93992a92017-05-24 18:03:56 -0700763 return;
764
Florin Corasecbd20b2018-10-17 23:34:54 -0700765 if (seq_gt (sb->high_sacked, left->end))
Florin Coras93992a92017-05-24 18:03:56 -0700766 {
Florin Corasecbd20b2018-10-17 23:34:54 -0700767 bytes = sb->high_sacked - left->end;
Florin Coras93992a92017-05-24 18:03:56 -0700768 blks = 1;
769 }
770
Florin Coras9f9e9692018-10-19 17:49:00 -0700771 while ((right = left)
772 && bytes < (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
773 && blks < TCP_DUPACK_THRESHOLD
774 /* left not updated if above conditions fail */
775 && (left = scoreboard_prev_hole (sb, right)))
Florin Coras93992a92017-05-24 18:03:56 -0700776 {
Florin Corasecbd20b2018-10-17 23:34:54 -0700777 bytes += right->start - left->end;
Florin Coras93992a92017-05-24 18:03:56 -0700778 blks++;
Florin Coras93992a92017-05-24 18:03:56 -0700779 }
780
Florin Coras9f9e9692018-10-19 17:49:00 -0700781 /* left is first lost */
782 if (left)
Florin Coras93992a92017-05-24 18:03:56 -0700783 {
Florin Coras9f9e9692018-10-19 17:49:00 -0700784 do
785 {
786 sb->lost_bytes += scoreboard_hole_bytes (right);
787 left->is_lost = 1;
788 left = scoreboard_prev_hole (sb, right);
789 if (left)
790 bytes += right->start - left->end;
791 }
792 while ((right = left));
Florin Coras93992a92017-05-24 18:03:56 -0700793 }
Florin Coras9f9e9692018-10-19 17:49:00 -0700794
Florin Corasf03a59a2017-06-09 21:07:32 -0700795 sb->sacked_bytes = bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700796}
797
798/**
799 * Figure out the next hole to retransmit
800 *
801 * Follows logic proposed in RFC6675 Sec. 4, NextSeg()
802 */
803sack_scoreboard_hole_t *
804scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
805 sack_scoreboard_hole_t * start,
Florin Coras36ee9f12018-11-02 12:52:10 -0700806 u8 have_unsent, u8 * can_rescue, u8 * snd_limited)
Florin Coras93992a92017-05-24 18:03:56 -0700807{
808 sack_scoreboard_hole_t *hole = 0;
809
810 hole = start ? start : scoreboard_first_hole (sb);
811 while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost)
812 hole = scoreboard_next_hole (sb, hole);
813
814 /* Nothing, return */
815 if (!hole)
816 {
817 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
818 return 0;
819 }
820
821 /* Rule (1): if higher than rxt, less than high_sacked and lost */
822 if (hole->is_lost && seq_lt (hole->start, sb->high_sacked))
823 {
824 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
825 }
826 else
827 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700828 /* Rule (2): available unsent data */
829 if (have_unsent)
Florin Coras93992a92017-05-24 18:03:56 -0700830 {
Florin Coras93992a92017-05-24 18:03:56 -0700831 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
Florin Coras36ee9f12018-11-02 12:52:10 -0700832 return 0;
Florin Coras93992a92017-05-24 18:03:56 -0700833 }
834 /* Rule (3): if hole not lost */
835 else if (seq_lt (hole->start, sb->high_sacked))
836 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700837 *snd_limited = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700838 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
839 }
840 /* Rule (4): if hole beyond high_sacked */
841 else
842 {
843 ASSERT (seq_geq (hole->start, sb->high_sacked));
844 *snd_limited = 1;
845 *can_rescue = 1;
846 /* HighRxt MUST NOT be updated */
847 return 0;
848 }
849 }
850
851 if (hole && seq_lt (sb->high_rxt, hole->start))
852 sb->high_rxt = hole->start;
853
854 return hole;
855}
856
Florin Coras0dbd5172018-06-25 16:19:34 -0700857static void
Florin Coras36ee9f12018-11-02 12:52:10 -0700858scoreboard_init_high_rxt (sack_scoreboard_t * sb, u32 snd_una)
Florin Coras93992a92017-05-24 18:03:56 -0700859{
860 sack_scoreboard_hole_t *hole;
861 hole = scoreboard_first_hole (sb);
Florin Coras3eb50622017-07-13 01:24:57 -0400862 if (hole)
863 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700864 snd_una = seq_gt (snd_una, hole->start) ? snd_una : hole->start;
Florin Coras3eb50622017-07-13 01:24:57 -0400865 sb->cur_rxt_hole = sb->head;
866 }
Florin Coras36ee9f12018-11-02 12:52:10 -0700867 sb->high_rxt = snd_una;
868 sb->rescue_rxt = snd_una - 1;
Florin Coras3eb50622017-07-13 01:24:57 -0400869}
870
Florin Coras0dbd5172018-06-25 16:19:34 -0700871void
872scoreboard_init (sack_scoreboard_t * sb)
873{
874 sb->head = TCP_INVALID_SACK_HOLE_INDEX;
875 sb->tail = TCP_INVALID_SACK_HOLE_INDEX;
876 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
877}
878
879void
880scoreboard_clear (sack_scoreboard_t * sb)
881{
882 sack_scoreboard_hole_t *hole;
883 while ((hole = scoreboard_first_hole (sb)))
884 {
885 scoreboard_remove_hole (sb, hole);
886 }
887 ASSERT (sb->head == sb->tail && sb->head == TCP_INVALID_SACK_HOLE_INDEX);
888 ASSERT (pool_elts (sb->holes) == 0);
889 sb->sacked_bytes = 0;
890 sb->last_sacked_bytes = 0;
891 sb->last_bytes_delivered = 0;
892 sb->snd_una_adv = 0;
893 sb->high_sacked = 0;
894 sb->high_rxt = 0;
895 sb->lost_bytes = 0;
896 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
897}
898
Florin Coras3eb50622017-07-13 01:24:57 -0400899/**
900 * Test that scoreboard is sane after recovery
901 *
902 * Returns 1 if scoreboard is empty or if first hole beyond
903 * snd_una.
904 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700905static u8
Florin Coras3eb50622017-07-13 01:24:57 -0400906tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc)
907{
908 sack_scoreboard_hole_t *hole;
909 hole = scoreboard_first_hole (&tc->sack_sb);
Florin Corasecbd20b2018-10-17 23:34:54 -0700910 return (!hole || (seq_geq (hole->start, tc->snd_una)
911 && seq_lt (hole->end, tc->snd_una_max)));
Florin Coras93992a92017-05-24 18:03:56 -0700912}
913
914void
Dave Barach68b0fb02017-02-28 15:15:56 -0500915tcp_rcv_sacks (tcp_connection_t * tc, u32 ack)
916{
917 sack_scoreboard_t *sb = &tc->sack_sb;
918 sack_block_t *blk, tmp;
Florin Corasf03a59a2017-06-09 21:07:32 -0700919 sack_scoreboard_hole_t *hole, *next_hole, *last_hole;
Florin Coras93992a92017-05-24 18:03:56 -0700920 u32 blk_index = 0, old_sacked_bytes, hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500921 int i, j;
922
Florin Coras6792ec02017-03-13 03:49:51 -0700923 sb->last_sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700924 sb->last_bytes_delivered = 0;
Florin Coras352c2c42018-06-26 01:22:41 -0700925 sb->snd_una_adv = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700926
Florin Coras93992a92017-05-24 18:03:56 -0700927 if (!tcp_opts_sack (&tc->rcv_opts)
928 && sb->head == TCP_INVALID_SACK_HOLE_INDEX)
Dave Barach68b0fb02017-02-28 15:15:56 -0500929 return;
930
Florin Coras352c2c42018-06-26 01:22:41 -0700931 old_sacked_bytes = sb->sacked_bytes;
932
Dave Barach68b0fb02017-02-28 15:15:56 -0500933 /* Remove invalid blocks */
Florin Coras93992a92017-05-24 18:03:56 -0700934 blk = tc->rcv_opts.sacks;
935 while (blk < vec_end (tc->rcv_opts.sacks))
Florin Coras6792ec02017-03-13 03:49:51 -0700936 {
937 if (seq_lt (blk->start, blk->end)
938 && seq_gt (blk->start, tc->snd_una)
Florin Corasab86f862018-12-06 18:24:19 -0800939 && seq_gt (blk->start, ack)
940 && seq_lt (blk->start, tc->snd_una_max)
941 && seq_leq (blk->end, tc->snd_una_max))
Florin Coras6792ec02017-03-13 03:49:51 -0700942 {
943 blk++;
944 continue;
945 }
Florin Coras93992a92017-05-24 18:03:56 -0700946 vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks);
Florin Coras6792ec02017-03-13 03:49:51 -0700947 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500948
949 /* Add block for cumulative ack */
950 if (seq_gt (ack, tc->snd_una))
951 {
952 tmp.start = tc->snd_una;
953 tmp.end = ack;
Florin Coras93992a92017-05-24 18:03:56 -0700954 vec_add1 (tc->rcv_opts.sacks, tmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500955 }
956
Florin Coras93992a92017-05-24 18:03:56 -0700957 if (vec_len (tc->rcv_opts.sacks) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500958 return;
959
Florin Coras3eb50622017-07-13 01:24:57 -0400960 tcp_scoreboard_trace_add (tc, ack);
961
Dave Barach68b0fb02017-02-28 15:15:56 -0500962 /* Make sure blocks are ordered */
Florin Coras93992a92017-05-24 18:03:56 -0700963 for (i = 0; i < vec_len (tc->rcv_opts.sacks); i++)
964 for (j = i + 1; j < vec_len (tc->rcv_opts.sacks); j++)
965 if (seq_lt (tc->rcv_opts.sacks[j].start, tc->rcv_opts.sacks[i].start))
Dave Barach68b0fb02017-02-28 15:15:56 -0500966 {
Florin Coras93992a92017-05-24 18:03:56 -0700967 tmp = tc->rcv_opts.sacks[i];
968 tc->rcv_opts.sacks[i] = tc->rcv_opts.sacks[j];
969 tc->rcv_opts.sacks[j] = tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500970 }
971
Dave Barach68b0fb02017-02-28 15:15:56 -0500972 if (sb->head == TCP_INVALID_SACK_HOLE_INDEX)
973 {
Florin Coras6792ec02017-03-13 03:49:51 -0700974 /* If no holes, insert the first that covers all outstanding bytes */
975 last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
976 tc->snd_una, tc->snd_una_max);
977 sb->tail = scoreboard_hole_index (sb, last_hole);
Florin Coras93992a92017-05-24 18:03:56 -0700978 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
979 sb->high_sacked = tmp.end;
Florin Coras6792ec02017-03-13 03:49:51 -0700980 }
981 else
982 {
983 /* If we have holes but snd_una_max is beyond the last hole, update
984 * last hole end */
Florin Coras93992a92017-05-24 18:03:56 -0700985 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
Florin Coras6792ec02017-03-13 03:49:51 -0700986 last_hole = scoreboard_last_hole (sb);
Dave Barach2c25a622017-06-26 11:35:07 -0400987 if (seq_gt (tc->snd_una_max, last_hole->end))
988 {
989 if (seq_geq (last_hole->start, sb->high_sacked))
990 {
991 last_hole->end = tc->snd_una_max;
992 }
993 /* New hole after high sacked block */
994 else if (seq_lt (sb->high_sacked, tc->snd_una_max))
995 {
996 scoreboard_insert_hole (sb, sb->tail, sb->high_sacked,
997 tc->snd_una_max);
998 }
999 }
1000 /* Keep track of max byte sacked for when the last hole
Florin Corasf03a59a2017-06-09 21:07:32 -07001001 * is acked */
1002 if (seq_gt (tmp.end, sb->high_sacked))
1003 sb->high_sacked = tmp.end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001004 }
1005
1006 /* Walk the holes with the SACK blocks */
1007 hole = pool_elt_at_index (sb->holes, sb->head);
Florin Coras93992a92017-05-24 18:03:56 -07001008 while (hole && blk_index < vec_len (tc->rcv_opts.sacks))
Dave Barach68b0fb02017-02-28 15:15:56 -05001009 {
Florin Coras93992a92017-05-24 18:03:56 -07001010 blk = &tc->rcv_opts.sacks[blk_index];
Dave Barach68b0fb02017-02-28 15:15:56 -05001011 if (seq_leq (blk->start, hole->start))
1012 {
1013 /* Block covers hole. Remove hole */
1014 if (seq_geq (blk->end, hole->end))
1015 {
1016 next_hole = scoreboard_next_hole (sb, hole);
1017
Florin Corasf03a59a2017-06-09 21:07:32 -07001018 /* Byte accounting: snd_una needs to be advanced */
1019 if (blk->end == ack)
Dave Barach68b0fb02017-02-28 15:15:56 -05001020 {
Florin Corasf03a59a2017-06-09 21:07:32 -07001021 if (next_hole)
Florin Coras06d11012017-05-17 14:21:51 -07001022 {
Florin Corasf03a59a2017-06-09 21:07:32 -07001023 if (seq_lt (ack, next_hole->start))
1024 sb->snd_una_adv = next_hole->start - ack;
1025 sb->last_bytes_delivered +=
1026 next_hole->start - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -07001027 }
Florin Coras3eb50622017-07-13 01:24:57 -04001028 else
Florin Coras06d11012017-05-17 14:21:51 -07001029 {
Dave Barach2c25a622017-06-26 11:35:07 -04001030 ASSERT (seq_geq (sb->high_sacked, ack));
Florin Coras93992a92017-05-24 18:03:56 -07001031 sb->snd_una_adv = sb->high_sacked - ack;
Florin Corasf03a59a2017-06-09 21:07:32 -07001032 sb->last_bytes_delivered += sb->high_sacked - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -07001033 }
1034 }
1035
Dave Barach68b0fb02017-02-28 15:15:56 -05001036 scoreboard_remove_hole (sb, hole);
1037 hole = next_hole;
1038 }
Florin Coras6792ec02017-03-13 03:49:51 -07001039 /* Partial 'head' overlap */
Dave Barach68b0fb02017-02-28 15:15:56 -05001040 else
1041 {
Florin Coras6792ec02017-03-13 03:49:51 -07001042 if (seq_gt (blk->end, hole->start))
1043 {
Florin Coras6792ec02017-03-13 03:49:51 -07001044 hole->start = blk->end;
1045 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001046 blk_index++;
1047 }
1048 }
1049 else
1050 {
1051 /* Hole must be split */
Florin Coras6792ec02017-03-13 03:49:51 -07001052 if (seq_lt (blk->end, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001053 {
Florin Coras6792ec02017-03-13 03:49:51 -07001054 hole_index = scoreboard_hole_index (sb, hole);
Florin Coras3eb50622017-07-13 01:24:57 -04001055 next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
1056 hole->end);
Florin Coras6792ec02017-03-13 03:49:51 -07001057
1058 /* Pool might've moved */
1059 hole = scoreboard_get_hole (sb, hole_index);
1060 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -05001061 blk_index++;
Florin Coras3eb50622017-07-13 01:24:57 -04001062 ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
Dave Barach68b0fb02017-02-28 15:15:56 -05001063 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001064 else if (seq_lt (blk->start, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001065 {
Florin Coras6792ec02017-03-13 03:49:51 -07001066 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -05001067 }
Florin Coras93992a92017-05-24 18:03:56 -07001068 hole = scoreboard_next_hole (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -05001069 }
1070 }
Florin Coras6792ec02017-03-13 03:49:51 -07001071
Florin Corasecbd20b2018-10-17 23:34:54 -07001072 if (pool_elts (sb->holes) == 1)
1073 {
1074 hole = scoreboard_first_hole (sb);
1075 if (hole->start == ack + sb->snd_una_adv
1076 && hole->end == tc->snd_una_max)
1077 scoreboard_remove_hole (sb, hole);
1078 }
1079
Florin Corasf03a59a2017-06-09 21:07:32 -07001080 scoreboard_update_bytes (tc, sb);
1081 sb->last_sacked_bytes = sb->sacked_bytes
1082 - (old_sacked_bytes - sb->last_bytes_delivered);
Florin Corasca1c8f32018-05-23 21:01:30 -07001083 ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes || tcp_in_recovery (tc));
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001084 ASSERT (sb->sacked_bytes == 0 || tcp_in_recovery (tc)
Florin Corasf03a59a2017-06-09 21:07:32 -07001085 || sb->sacked_bytes < tc->snd_una_max - seq_max (tc->snd_una, ack));
1086 ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_una_max
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001087 - seq_max (tc->snd_una, ack) || tcp_in_recovery (tc));
Dave Barach2c25a622017-06-26 11:35:07 -04001088 ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
1089 || sb->holes[sb->head].start == ack + sb->snd_una_adv);
Florin Corasca1c8f32018-05-23 21:01:30 -07001090 TCP_EVT_DBG (TCP_EVT_CC_SCOREBOARD, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001091}
1092
Florin Coras93992a92017-05-24 18:03:56 -07001093/**
1094 * Try to update snd_wnd based on feedback received from peer.
Dave Barach68b0fb02017-02-28 15:15:56 -05001095 *
Florin Coras93992a92017-05-24 18:03:56 -07001096 * If successful, and new window is 'effectively' 0, activate persist
1097 * timer.
1098 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001099static void
1100tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
1101{
Florin Coras93992a92017-05-24 18:03:56 -07001102 /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
1103 * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
Florin Coras6792ec02017-03-13 03:49:51 -07001104 if (seq_lt (tc->snd_wl1, seq)
1105 || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001106 {
1107 tc->snd_wnd = snd_wnd;
1108 tc->snd_wl1 = seq;
1109 tc->snd_wl2 = ack;
Florin Coras6792ec02017-03-13 03:49:51 -07001110 TCP_EVT_DBG (TCP_EVT_SND_WND, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001111
Florin Coras9ece3c02018-11-05 11:06:53 -08001112 if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
Florin Corasbb292f42017-05-19 09:49:19 -07001113 {
Florin Coras93992a92017-05-24 18:03:56 -07001114 /* Set persist timer if not set and we just got 0 wnd */
1115 if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
1116 && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
Florin Corasbb292f42017-05-19 09:49:19 -07001117 tcp_persist_timer_set (tc);
1118 }
Florin Coras3e350af2017-03-30 02:54:28 -07001119 else
Florin Coras93992a92017-05-24 18:03:56 -07001120 {
1121 tcp_persist_timer_reset (tc);
Florin Coras9ece3c02018-11-05 11:06:53 -08001122 if (PREDICT_FALSE (!tcp_in_recovery (tc) && tc->rto_boff > 0))
Florin Coras93992a92017-05-24 18:03:56 -07001123 {
1124 tc->rto_boff = 0;
1125 tcp_update_rto (tc);
1126 }
1127 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001128 }
1129}
1130
Florin Corasd2aab832018-05-22 11:39:59 -07001131/**
1132 * Init loss recovery/fast recovery.
1133 *
1134 * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
1135 * updated in @ref tcp_cc_handle_event after fast retransmit
1136 */
Florin Coras6792ec02017-03-13 03:49:51 -07001137void
Florin Coras93992a92017-05-24 18:03:56 -07001138tcp_cc_init_congestion (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001139{
Florin Coras93992a92017-05-24 18:03:56 -07001140 tcp_fastrecovery_on (tc);
1141 tc->snd_congestion = tc->snd_una_max;
Florin Coras62166002018-04-18 16:40:55 -07001142 tc->cwnd_acc_bytes = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001143 tc->snd_rxt_bytes = 0;
1144 tc->prev_ssthresh = tc->ssthresh;
1145 tc->prev_cwnd = tc->cwnd;
Dave Barach68b0fb02017-02-28 15:15:56 -05001146 tc->cc_algo->congestion (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001147 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001148}
1149
Florin Coras93992a92017-05-24 18:03:56 -07001150static void
1151tcp_cc_recovery_exit (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001152{
Florin Coras93992a92017-05-24 18:03:56 -07001153 tc->rto_boff = 0;
Florin Corasf1762d62017-09-24 19:43:08 -04001154 tcp_update_rto (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001155 tc->snd_rxt_ts = 0;
Florin Coras84275e92017-09-26 12:30:40 -04001156 tc->snd_nxt = tc->snd_una_max;
Florin Corasefefc6b2018-11-07 12:49:19 -08001157 tc->rtt_ts = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001158 tcp_recovery_off (tc);
Florin Corasf1762d62017-09-24 19:43:08 -04001159 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Florin Coras93992a92017-05-24 18:03:56 -07001160}
Florin Coras3e350af2017-03-30 02:54:28 -07001161
Florin Coras93992a92017-05-24 18:03:56 -07001162void
1163tcp_cc_fastrecovery_exit (tcp_connection_t * tc)
1164{
Florin Coras6792ec02017-03-13 03:49:51 -07001165 tc->cc_algo->recovered (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001166 tc->snd_rxt_bytes = 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001167 tc->rcv_dupacks = 0;
Florin Coras84275e92017-09-26 12:30:40 -04001168 tc->snd_nxt = tc->snd_una_max;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001169 tc->snd_rxt_bytes = 0;
Florin Corasefefc6b2018-11-07 12:49:19 -08001170 tc->rtt_ts = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001171
Florin Coras93992a92017-05-24 18:03:56 -07001172 tcp_fastrecovery_off (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001173 tcp_fastrecovery_first_off (tc);
Florin Corasd67f1122018-05-21 17:47:40 -07001174
Florin Corasf1762d62017-09-24 19:43:08 -04001175 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Dave Barach68b0fb02017-02-28 15:15:56 -05001176}
1177
1178static void
Florin Coras93992a92017-05-24 18:03:56 -07001179tcp_cc_congestion_undo (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001180{
Florin Coras93992a92017-05-24 18:03:56 -07001181 tc->cwnd = tc->prev_cwnd;
1182 tc->ssthresh = tc->prev_ssthresh;
1183 tc->snd_nxt = tc->snd_una_max;
1184 tc->rcv_dupacks = 0;
1185 if (tcp_in_recovery (tc))
1186 tcp_cc_recovery_exit (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001187 else if (tcp_in_fastrecovery (tc))
1188 tcp_cc_fastrecovery_exit (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001189 ASSERT (tc->rto_boff == 0);
Florin Corasf1762d62017-09-24 19:43:08 -04001190 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 5);
Florin Coras93992a92017-05-24 18:03:56 -07001191}
Dave Barach68b0fb02017-02-28 15:15:56 -05001192
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001193static inline u8
1194tcp_cc_is_spurious_timeout_rxt (tcp_connection_t * tc)
Florin Coras93992a92017-05-24 18:03:56 -07001195{
Florin Corasf1762d62017-09-24 19:43:08 -04001196 return (tcp_in_recovery (tc) && tc->rto_boff == 1
Dave Barach2c25a622017-06-26 11:35:07 -04001197 && tc->snd_rxt_ts
Florin Coras93992a92017-05-24 18:03:56 -07001198 && tcp_opts_tstamp (&tc->rcv_opts)
1199 && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
1200}
1201
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001202static inline u8
1203tcp_cc_is_spurious_fast_rxt (tcp_connection_t * tc)
1204{
1205 return (tcp_in_fastrecovery (tc)
1206 && tc->cwnd > tc->ssthresh + 3 * tc->snd_mss);
1207}
1208
1209static u8
1210tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
1211{
1212 return (tcp_cc_is_spurious_timeout_rxt (tc)
1213 || tcp_cc_is_spurious_fast_rxt (tc));
1214}
1215
Florin Coras0dbd5172018-06-25 16:19:34 -07001216static int
Florin Coras93992a92017-05-24 18:03:56 -07001217tcp_cc_recover (tcp_connection_t * tc)
1218{
1219 ASSERT (tcp_in_cong_recovery (tc));
1220 if (tcp_cc_is_spurious_retransmit (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001221 {
Florin Coras93992a92017-05-24 18:03:56 -07001222 tcp_cc_congestion_undo (tc);
1223 return 1;
1224 }
1225
1226 if (tcp_in_recovery (tc))
1227 tcp_cc_recovery_exit (tc);
1228 else if (tcp_in_fastrecovery (tc))
1229 tcp_cc_fastrecovery_exit (tc);
1230
1231 ASSERT (tc->rto_boff == 0);
1232 ASSERT (!tcp_in_cong_recovery (tc));
Florin Coras3eb50622017-07-13 01:24:57 -04001233 ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001234 return 0;
1235}
1236
1237static void
1238tcp_cc_update (tcp_connection_t * tc, vlib_buffer_t * b)
1239{
Florin Coras3eb50622017-07-13 01:24:57 -04001240 ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001241
1242 /* Congestion avoidance */
Florin Corasd67f1122018-05-21 17:47:40 -07001243 tcp_cc_rcv_ack (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001244
1245 /* If a cumulative ack, make sure dupacks is 0 */
1246 tc->rcv_dupacks = 0;
1247
1248 /* When dupacks hits the threshold we only enter fast retransmit if
1249 * cumulative ack covers more than snd_congestion. Should snd_una
1250 * wrap this test may fail under otherwise valid circumstances.
1251 * Therefore, proactively update snd_congestion when wrap detected. */
1252 if (PREDICT_FALSE
1253 (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1254 && seq_gt (tc->snd_congestion, tc->snd_una)))
1255 tc->snd_congestion = tc->snd_una - 1;
1256}
1257
1258static u8
1259tcp_should_fastrecover_sack (tcp_connection_t * tc)
1260{
1261 return (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss < tc->sack_sb.sacked_bytes;
1262}
1263
1264static u8
1265tcp_should_fastrecover (tcp_connection_t * tc)
1266{
1267 return (tc->rcv_dupacks == TCP_DUPACK_THRESHOLD
1268 || tcp_should_fastrecover_sack (tc));
1269}
1270
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001271void
Florin Corasbe72ae62018-11-01 11:23:03 -07001272tcp_program_fastretransmit (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001273{
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001274 if (!(tc->flags & TCP_CONN_FRXT_PENDING))
1275 {
1276 vec_add1 (wrk->pending_fast_rxt, tc->c_c_index);
1277 tc->flags |= TCP_CONN_FRXT_PENDING;
1278 }
1279}
1280
1281void
Florin Corasbe72ae62018-11-01 11:23:03 -07001282tcp_do_fastretransmits (tcp_worker_ctx_t * wrk)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001283{
Florin Corasbe72ae62018-11-01 11:23:03 -07001284 u32 *ongoing_fast_rxt, burst_bytes, sent_bytes, thread_index;
Florin Corase55a6d72018-10-31 23:09:22 -07001285 u32 max_burst_size, burst_size, n_segs = 0, n_segs_now;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001286 tcp_connection_t *tc;
Florin Corase55a6d72018-10-31 23:09:22 -07001287 u64 last_cpu_time;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001288 int i;
1289
Florin Corase55a6d72018-10-31 23:09:22 -07001290 if (vec_len (wrk->pending_fast_rxt) == 0
1291 && vec_len (wrk->postponed_fast_rxt) == 0)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001292 return;
1293
Florin Corasbe72ae62018-11-01 11:23:03 -07001294 thread_index = wrk->vm->thread_index;
Florin Corase55a6d72018-10-31 23:09:22 -07001295 last_cpu_time = wrk->vm->clib_time.last_cpu_time;
1296 ongoing_fast_rxt = wrk->ongoing_fast_rxt;
1297 vec_append (ongoing_fast_rxt, wrk->postponed_fast_rxt);
1298 vec_append (ongoing_fast_rxt, wrk->pending_fast_rxt);
1299
1300 _vec_len (wrk->postponed_fast_rxt) = 0;
1301 _vec_len (wrk->pending_fast_rxt) = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001302
Florin Coras776f3d82018-11-02 08:23:58 -07001303 max_burst_size = VLIB_FRAME_SIZE / vec_len (ongoing_fast_rxt);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001304 max_burst_size = clib_max (max_burst_size, 1);
1305
Florin Corase55a6d72018-10-31 23:09:22 -07001306 for (i = 0; i < vec_len (ongoing_fast_rxt); i++)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001307 {
Florin Corase55a6d72018-10-31 23:09:22 -07001308 if (n_segs >= VLIB_FRAME_SIZE)
1309 {
1310 vec_add1 (wrk->postponed_fast_rxt, ongoing_fast_rxt[i]);
1311 continue;
1312 }
1313
1314 tc = tcp_connection_get (ongoing_fast_rxt[i], thread_index);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001315 tc->flags &= ~TCP_CONN_FRXT_PENDING;
1316
1317 if (!tcp_in_fastrecovery (tc))
1318 continue;
1319
Florin Corase55a6d72018-10-31 23:09:22 -07001320 burst_size = clib_min (max_burst_size, VLIB_FRAME_SIZE - n_segs);
1321 burst_bytes = transport_connection_tx_pacer_burst (&tc->connection,
1322 last_cpu_time);
1323 burst_size = clib_min (burst_size, burst_bytes / tc->snd_mss);
1324 if (!burst_size)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001325 {
Florin Corasbe72ae62018-11-01 11:23:03 -07001326 tcp_program_fastretransmit (wrk, tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001327 continue;
1328 }
1329
Florin Corasbe72ae62018-11-01 11:23:03 -07001330 n_segs_now = tcp_fast_retransmit (wrk, tc, burst_size);
Florin Corase55a6d72018-10-31 23:09:22 -07001331 sent_bytes = clib_min (n_segs_now * tc->snd_mss, burst_bytes);
1332 transport_connection_tx_pacer_update_bytes (&tc->connection,
1333 sent_bytes);
Florin Corase55a6d72018-10-31 23:09:22 -07001334 n_segs += n_segs_now;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001335 }
Florin Corase55a6d72018-10-31 23:09:22 -07001336 _vec_len (ongoing_fast_rxt) = 0;
1337 wrk->ongoing_fast_rxt = ongoing_fast_rxt;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001338}
1339
Florin Corasf03a59a2017-06-09 21:07:32 -07001340/**
1341 * One function to rule them all ... and in the darkness bind them
1342 */
Florin Coras93992a92017-05-24 18:03:56 -07001343static void
1344tcp_cc_handle_event (tcp_connection_t * tc, u32 is_dack)
1345{
Florin Corasf03a59a2017-06-09 21:07:32 -07001346 u32 rxt_delivered;
1347
Florin Corasca1c8f32018-05-23 21:01:30 -07001348 if (tcp_in_fastrecovery (tc) && tcp_opts_sack_permitted (&tc->rcv_opts))
1349 {
1350 if (tc->bytes_acked)
1351 goto partial_ack;
Florin Corasbe72ae62018-11-01 11:23:03 -07001352 tcp_program_fastretransmit (tcp_get_worker (tc->c_thread_index), tc);
Florin Corasca1c8f32018-05-23 21:01:30 -07001353 return;
1354 }
Florin Coras93992a92017-05-24 18:03:56 -07001355 /*
1356 * Duplicate ACK. Check if we should enter fast recovery, or if already in
1357 * it account for the bytes that left the network.
1358 */
Florin Corasca1c8f32018-05-23 21:01:30 -07001359 else if (is_dack && !tcp_in_recovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001360 {
Florin Corasd2aab832018-05-22 11:39:59 -07001361 TCP_EVT_DBG (TCP_EVT_DUPACK_RCVD, tc, 1);
Florin Coras93992a92017-05-24 18:03:56 -07001362 ASSERT (tc->snd_una != tc->snd_una_max
1363 || tc->sack_sb.last_sacked_bytes);
Dave Barach2c25a622017-06-26 11:35:07 -04001364
Florin Coras93992a92017-05-24 18:03:56 -07001365 tc->rcv_dupacks++;
1366
Florin Corasd2aab832018-05-22 11:39:59 -07001367 /* Pure duplicate ack. If some data got acked, it's handled lower */
Florin Coras93992a92017-05-24 18:03:56 -07001368 if (tc->rcv_dupacks > TCP_DUPACK_THRESHOLD && !tc->bytes_acked)
Dave Barach68b0fb02017-02-28 15:15:56 -05001369 {
Florin Coras93992a92017-05-24 18:03:56 -07001370 ASSERT (tcp_in_fastrecovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001371 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1372 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001373 }
Florin Coras93992a92017-05-24 18:03:56 -07001374 else if (tcp_should_fastrecover (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001375 {
Florin Corasc44a5582018-11-01 16:30:54 -07001376 u32 pacer_wnd;
1377
Florin Corasd2aab832018-05-22 11:39:59 -07001378 ASSERT (!tcp_in_fastrecovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001379
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001380 /* Heuristic to catch potential late dupacks
1381 * after fast retransmit exits */
1382 if (is_dack && tc->snd_una == tc->snd_congestion
1383 && timestamp_leq (tc->rcv_opts.tsecr, tc->tsecr_last_ack))
Florin Coras93992a92017-05-24 18:03:56 -07001384 {
1385 tc->rcv_dupacks = 0;
1386 return;
1387 }
1388
1389 tcp_cc_init_congestion (tc);
1390 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1391
Florin Coras3eb50622017-07-13 01:24:57 -04001392 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Corase55a6d72018-10-31 23:09:22 -07001393 {
1394 tc->cwnd = tc->ssthresh;
1395 scoreboard_init_high_rxt (&tc->sack_sb, tc->snd_una);
Florin Corase55a6d72018-10-31 23:09:22 -07001396 }
1397 else
1398 {
1399 /* Post retransmit update cwnd to ssthresh and account for the
1400 * three segments that have left the network and should've been
1401 * buffered at the receiver XXX */
1402 tc->cwnd = tc->ssthresh + 3 * tc->snd_mss;
1403 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001404
Florin Coras36ee9f12018-11-02 12:52:10 -07001405 /* Constrain rate until we get a partial ack */
Florin Corasc44a5582018-11-01 16:30:54 -07001406 pacer_wnd = clib_max (0.1 * tc->cwnd, 2 * tc->snd_mss);
1407 tcp_connection_tx_pacer_reset (tc, pacer_wnd,
1408 0 /* start bucket */ );
Florin Corasbe72ae62018-11-01 11:23:03 -07001409 tcp_program_fastretransmit (tcp_get_worker (tc->c_thread_index),
1410 tc);
Florin Coras93992a92017-05-24 18:03:56 -07001411 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001412 }
Florin Coras93992a92017-05-24 18:03:56 -07001413 else if (!tc->bytes_acked
1414 || (tc->bytes_acked && !tcp_in_cong_recovery (tc)))
1415 {
1416 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1417 return;
1418 }
1419 else
1420 goto partial_ack;
1421 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001422 /* Don't allow entry in fast recovery if still in recovery, for now */
1423 else if (0 && is_dack && tcp_in_recovery (tc))
1424 {
1425 /* If of of the two conditions lower hold, reset dupacks because
1426 * we're probably after timeout (RFC6582 heuristics).
1427 * If Cumulative ack does not cover more than congestion threshold,
1428 * and:
1429 * 1) The following doesn't hold: The congestion window is greater
1430 * than SMSS bytes and the difference between highest_ack
1431 * and prev_highest_ack is at most 4*SMSS bytes
1432 * 2) Echoed timestamp in the last non-dup ack does not equal the
1433 * stored timestamp
1434 */
1435 if (seq_leq (tc->snd_una, tc->snd_congestion)
1436 && ((!(tc->cwnd > tc->snd_mss
1437 && tc->bytes_acked <= 4 * tc->snd_mss))
1438 || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
1439 {
1440 tc->rcv_dupacks = 0;
1441 return;
1442 }
1443 }
Florin Coras93992a92017-05-24 18:03:56 -07001444
Florin Coras93992a92017-05-24 18:03:56 -07001445 if (!tc->bytes_acked)
1446 return;
1447
1448partial_ack:
Florin Corasd2aab832018-05-22 11:39:59 -07001449 TCP_EVT_DBG (TCP_EVT_CC_PACK, tc);
1450
Florin Coras93992a92017-05-24 18:03:56 -07001451 /*
1452 * Legitimate ACK. 1) See if we can exit recovery
1453 */
Florin Coras93992a92017-05-24 18:03:56 -07001454
Florin Corasefefc6b2018-11-07 12:49:19 -08001455 /* Update the pacing rate. For the first partial ack we move from
1456 * the artificially constrained rate to the one after congestion */
1457 tcp_connection_tx_pacer_update (tc);
1458
Florin Coras93992a92017-05-24 18:03:56 -07001459 if (seq_geq (tc->snd_una, tc->snd_congestion))
1460 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001461 tcp_retransmit_timer_update (tc);
1462
Florin Coras93992a92017-05-24 18:03:56 -07001463 /* If spurious return, we've already updated everything */
1464 if (tcp_cc_recover (tc))
Florin Corasf03a59a2017-06-09 21:07:32 -07001465 {
1466 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1467 return;
1468 }
Florin Coras93992a92017-05-24 18:03:56 -07001469
1470 tc->snd_nxt = tc->snd_una_max;
1471
1472 /* Treat as congestion avoidance ack */
Florin Corasd67f1122018-05-21 17:47:40 -07001473 tcp_cc_rcv_ack (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001474 return;
1475 }
1476
1477 /*
1478 * Legitimate ACK. 2) If PARTIAL ACK try to retransmit
1479 */
Florin Coras93992a92017-05-24 18:03:56 -07001480
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001481 /* XXX limit this only to first partial ack? */
Florin Coras2e31cc32018-09-25 14:00:34 -07001482 tcp_retransmit_timer_update (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001483
Florin Coras93992a92017-05-24 18:03:56 -07001484 /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
Florin Corasd2aab832018-05-22 11:39:59 -07001485 * reset dupacks to 0. Also needed if in congestion recovery */
Florin Coras93992a92017-05-24 18:03:56 -07001486 tc->rcv_dupacks = 0;
1487
Florin Coras93992a92017-05-24 18:03:56 -07001488 /* Post RTO timeout don't try anything fancy */
1489 if (tcp_in_recovery (tc))
Florin Corasd2aab832018-05-22 11:39:59 -07001490 {
Florin Corasd67f1122018-05-21 17:47:40 -07001491 tcp_cc_rcv_ack (tc);
Florin Coras3ec66b02018-08-23 16:27:05 -07001492 transport_add_tx_event (&tc->connection);
Florin Corasd2aab832018-05-22 11:39:59 -07001493 return;
1494 }
Florin Coras93992a92017-05-24 18:03:56 -07001495
1496 /* Remove retransmitted bytes that have been delivered */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001497 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras93992a92017-05-24 18:03:56 -07001498 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001499 ASSERT (tc->bytes_acked + tc->sack_sb.snd_una_adv
1500 >= tc->sack_sb.last_bytes_delivered
1501 || (tc->flags & TCP_CONN_FINSNT));
1502
Florin Coras93992a92017-05-24 18:03:56 -07001503 /* If we have sacks and we haven't gotten an ack beyond high_rxt,
1504 * remove sacked bytes delivered */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001505 if (seq_lt (tc->snd_una, tc->sack_sb.high_rxt))
1506 {
1507 rxt_delivered = tc->bytes_acked + tc->sack_sb.snd_una_adv
1508 - tc->sack_sb.last_bytes_delivered;
1509 ASSERT (tc->snd_rxt_bytes >= rxt_delivered);
1510 tc->snd_rxt_bytes -= rxt_delivered;
1511 }
1512 else
1513 {
1514 /* Apparently all retransmitted holes have been acked */
1515 tc->snd_rxt_bytes = 0;
Florin Coras36ee9f12018-11-02 12:52:10 -07001516 tc->sack_sb.high_rxt = tc->snd_una;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001517 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001518 }
1519 else
1520 {
Florin Coras36ee9f12018-11-02 12:52:10 -07001521 tcp_fastrecovery_first_on (tc);
1522 /* Reuse last bytes delivered to track total bytes acked */
1523 tc->sack_sb.last_bytes_delivered += tc->bytes_acked;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001524 if (tc->snd_rxt_bytes > tc->bytes_acked)
1525 tc->snd_rxt_bytes -= tc->bytes_acked;
1526 else
1527 tc->snd_rxt_bytes = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001528 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001529
Florin Coras93992a92017-05-24 18:03:56 -07001530 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_PARTIALACK);
Dave Barach68b0fb02017-02-28 15:15:56 -05001531
Florin Coras93992a92017-05-24 18:03:56 -07001532 /*
1533 * Since this was a partial ack, try to retransmit some more data
1534 */
Florin Corasbe72ae62018-11-01 11:23:03 -07001535 tcp_program_fastretransmit (tcp_get_worker (tc->c_thread_index), tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001536}
1537
Florin Coras93992a92017-05-24 18:03:56 -07001538/**
1539 * Process incoming ACK
1540 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001541static int
Florin Coras9ece3c02018-11-05 11:06:53 -08001542tcp_rcv_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
Florin Coras7ac053b2018-11-05 15:57:21 -08001543 tcp_header_t * th, u32 * error)
Dave Barach68b0fb02017-02-28 15:15:56 -05001544{
Florin Coras93992a92017-05-24 18:03:56 -07001545 u32 prev_snd_wnd, prev_snd_una;
1546 u8 is_dack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001547
Florin Corasf03a59a2017-06-09 21:07:32 -07001548 TCP_EVT_DBG (TCP_EVT_CC_STAT, tc);
1549
Florin Coras6792ec02017-03-13 03:49:51 -07001550 /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
Florin Coras93992a92017-05-24 18:03:56 -07001551 if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001552 {
Florin Coras5fd32102019-02-28 12:49:45 -08001553 /* When we entered cong recovery, we reset snd_nxt to snd_una. Seems
1554 * peer still has the data so accept the ack */
1555 if (tcp_in_cong_recovery (tc)
1556 && seq_leq (vnet_buffer (b)->tcp.ack_number,
1557 tc->snd_una + tc->snd_wnd))
Florin Corasca1c8f32018-05-23 21:01:30 -07001558 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001559 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
1560 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
1561 tc->snd_una_max = tc->snd_nxt;
Florin Corasca1c8f32018-05-23 21:01:30 -07001562 goto process_ack;
1563 }
1564
Florin Coras6792ec02017-03-13 03:49:51 -07001565 /* If we have outstanding data and this is within the window, accept it,
1566 * probably retransmit has timed out. Otherwise ACK segment and then
1567 * drop it */
1568 if (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max))
1569 {
Florin Coras7ac053b2018-11-05 15:57:21 -08001570 tcp_program_ack (wrk, tc);
Florin Coras36ee9f12018-11-02 12:52:10 -07001571 *error = TCP_ERROR_ACK_FUTURE;
Florin Coras6792ec02017-03-13 03:49:51 -07001572 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 0,
1573 vnet_buffer (b)->tcp.ack_number);
1574 return -1;
1575 }
1576
Florin Coras6792ec02017-03-13 03:49:51 -07001577 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 2,
1578 vnet_buffer (b)->tcp.ack_number);
Florin Coras3e350af2017-03-30 02:54:28 -07001579
1580 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
Florin Coras5fd32102019-02-28 12:49:45 -08001581 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
1582 tc->snd_una_max = tc->snd_nxt;
1583
1584 goto process_ack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001585 }
1586
Florin Coras6792ec02017-03-13 03:49:51 -07001587 /* If old ACK, probably it's an old dupack */
Florin Coras93992a92017-05-24 18:03:56 -07001588 if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001589 {
1590 *error = TCP_ERROR_ACK_OLD;
Florin Coras6792ec02017-03-13 03:49:51 -07001591 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 1,
1592 vnet_buffer (b)->tcp.ack_number);
1593 if (tcp_in_fastrecovery (tc) && tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
Florin Corasca1c8f32018-05-23 21:01:30 -07001594 tcp_cc_handle_event (tc, 1);
Florin Corasc28764f2017-04-26 00:08:42 -07001595 /* Don't drop yet */
1596 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001597 }
1598
Florin Coras93992a92017-05-24 18:03:56 -07001599 /*
1600 * Looks okay, process feedback
1601 */
Florin Corasca1c8f32018-05-23 21:01:30 -07001602process_ack:
Florin Coras93992a92017-05-24 18:03:56 -07001603 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001604 tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1605
Florin Coras93992a92017-05-24 18:03:56 -07001606 prev_snd_wnd = tc->snd_wnd;
1607 prev_snd_una = tc->snd_una;
1608 tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1609 vnet_buffer (b)->tcp.ack_number,
1610 clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1611 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
1612 tc->snd_una = vnet_buffer (b)->tcp.ack_number + tc->sack_sb.snd_una_adv;
1613 tcp_validate_txf_size (tc, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001614
Florin Coras93992a92017-05-24 18:03:56 -07001615 if (tc->bytes_acked)
Florin Coras9ece3c02018-11-05 11:06:53 -08001616 {
1617 tcp_program_dequeue (wrk, tc);
1618 tcp_update_rtt (tc, vnet_buffer (b)->tcp.ack_number);
1619 }
Florin Coras93992a92017-05-24 18:03:56 -07001620
Florin Coras6534b7a2017-07-18 05:38:03 -04001621 TCP_EVT_DBG (TCP_EVT_ACK_RCVD, tc);
1622
Florin Coras93992a92017-05-24 18:03:56 -07001623 /*
1624 * Check if we have congestion event
1625 */
1626
1627 if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001628 {
Florin Coras93992a92017-05-24 18:03:56 -07001629 tcp_cc_handle_event (tc, is_dack);
Florin Corasb2215d62017-08-01 16:56:58 -07001630 if (!tcp_in_cong_recovery (tc))
Florin Corasa9d5bea2018-12-17 08:24:19 -08001631 {
1632 *error = TCP_ERROR_ACK_OK;
1633 return 0;
1634 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001635 *error = TCP_ERROR_ACK_DUP;
Florin Corasca09d072018-10-01 18:31:02 -07001636 if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th))
1637 return 0;
1638 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001639 }
1640
Florin Coras6792ec02017-03-13 03:49:51 -07001641 /*
Florin Coras93992a92017-05-24 18:03:56 -07001642 * Update congestion control (slow start/congestion avoidance)
Florin Coras6792ec02017-03-13 03:49:51 -07001643 */
Florin Coras93992a92017-05-24 18:03:56 -07001644 tcp_cc_update (tc, b);
Florin Coras00cd22d2018-04-18 13:20:18 -07001645 *error = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001646 return 0;
1647}
1648
Florin Corasb11175d2018-11-09 14:34:08 -08001649static void
1650tcp_program_disconnect (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1651{
1652 if (!tcp_disconnect_pending (tc))
1653 {
1654 vec_add1 (wrk->pending_disconnects, tc->c_c_index);
1655 tcp_disconnect_pending_on (tc);
1656 }
1657}
1658
1659static void
1660tcp_handle_disconnects (tcp_worker_ctx_t * wrk)
1661{
1662 u32 thread_index, *pending_disconnects;
1663 tcp_connection_t *tc;
1664 int i;
1665
1666 if (!vec_len (wrk->pending_disconnects))
1667 return;
1668
1669 thread_index = wrk->vm->thread_index;
1670 pending_disconnects = wrk->pending_disconnects;
1671 for (i = 0; i < vec_len (pending_disconnects); i++)
1672 {
1673 tc = tcp_connection_get (pending_disconnects[i], thread_index);
1674 tcp_disconnect_pending_off (tc);
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001675 session_transport_closing_notify (&tc->connection);
Florin Corasb11175d2018-11-09 14:34:08 -08001676 }
1677 _vec_len (wrk->pending_disconnects) = 0;
1678}
1679
1680static void
1681tcp_rcv_fin (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
1682 u32 * error)
1683{
Florin Coras3c514d52018-12-22 11:39:33 -08001684 /* Account for the FIN and send ack */
1685 tc->rcv_nxt += 1;
1686 tcp_program_ack (wrk, tc);
Florin Corasb11175d2018-11-09 14:34:08 -08001687 /* Enter CLOSE-WAIT and notify session. To avoid lingering
1688 * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
Florin Coras3c514d52018-12-22 11:39:33 -08001689 tcp_connection_set_state (tc, TCP_STATE_CLOSE_WAIT);
Florin Corasb11175d2018-11-09 14:34:08 -08001690 tcp_program_disconnect (wrk, tc);
1691 tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
1692 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc);
1693 *error = TCP_ERROR_FIN_RCVD;
1694}
1695
Florin Coras3eb50622017-07-13 01:24:57 -04001696static u8
1697tcp_sack_vector_is_sane (sack_block_t * sacks)
1698{
1699 int i;
1700 for (i = 1; i < vec_len (sacks); i++)
1701 {
1702 if (sacks[i - 1].end == sacks[i].start)
1703 return 0;
1704 }
1705 return 1;
1706}
1707
Dave Barach68b0fb02017-02-28 15:15:56 -05001708/**
1709 * Build SACK list as per RFC2018.
1710 *
1711 * Makes sure the first block contains the segment that generated the current
1712 * ACK and the following ones are the ones most recently reported in SACK
1713 * blocks.
1714 *
1715 * @param tc TCP connection for which the SACK list is updated
1716 * @param start Start sequence number of the newest SACK block
1717 * @param end End sequence of the newest SACK block
1718 */
Florin Coras45d34962017-04-25 00:05:27 -07001719void
Dave Barach68b0fb02017-02-28 15:15:56 -05001720tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1721{
Florin Corasb691f762019-02-22 09:07:20 -08001722 sack_block_t *new_list = tc->snd_sacks_fl, *block = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001723 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001724
1725 /* If the first segment is ooo add it to the list. Last write might've moved
1726 * rcv_nxt over the first segment. */
1727 if (seq_lt (tc->rcv_nxt, start))
1728 {
Florin Coras45d34962017-04-25 00:05:27 -07001729 vec_add2 (new_list, block, 1);
1730 block->start = start;
1731 block->end = end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001732 }
1733
1734 /* Find the blocks still worth keeping. */
1735 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1736 {
Florin Coras45d34962017-04-25 00:05:27 -07001737 /* Discard if rcv_nxt advanced beyond current block */
1738 if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001739 continue;
1740
Florin Coras45d34962017-04-25 00:05:27 -07001741 /* Merge or drop if segment overlapped by the new segment */
1742 if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1743 && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1744 {
1745 if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1746 new_list[0].start = tc->snd_sacks[i].start;
1747 if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1748 new_list[0].end = tc->snd_sacks[i].end;
1749 continue;
1750 }
1751
1752 /* Save to new SACK list if we have space. */
1753 if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
1754 {
1755 vec_add1 (new_list, tc->snd_sacks[i]);
1756 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001757 else
1758 {
1759 clib_warning ("sack discarded");
1760 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001761 }
1762
Florin Coras45d34962017-04-25 00:05:27 -07001763 ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
Florin Coras6792ec02017-03-13 03:49:51 -07001764
Dave Barach68b0fb02017-02-28 15:15:56 -05001765 /* Replace old vector with new one */
Florin Corasb691f762019-02-22 09:07:20 -08001766 vec_reset_length (tc->snd_sacks);
1767 tc->snd_sacks_fl = tc->snd_sacks;
Dave Barach68b0fb02017-02-28 15:15:56 -05001768 tc->snd_sacks = new_list;
Florin Coras3eb50622017-07-13 01:24:57 -04001769
1770 /* Segments should not 'touch' */
1771 ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
Dave Barach68b0fb02017-02-28 15:15:56 -05001772}
1773
Florin Corasca1c8f32018-05-23 21:01:30 -07001774u32
1775tcp_sack_list_bytes (tcp_connection_t * tc)
1776{
1777 u32 bytes = 0, i;
1778 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1779 bytes += tc->snd_sacks[i].end - tc->snd_sacks[i].start;
1780 return bytes;
1781}
1782
Dave Barach68b0fb02017-02-28 15:15:56 -05001783/** Enqueue data for delivery to application */
Florin Coras0dbd5172018-06-25 16:19:34 -07001784static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001785tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1786 u16 data_len)
1787{
Florin Coras1f152cd2017-08-18 19:28:03 -07001788 int written, error = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001789
Dave Barach2c25a622017-06-26 11:35:07 -04001790 ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001791 ASSERT (data_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001792 written = session_enqueue_stream_connection (&tc->connection, b, 0,
1793 1 /* queue event */ , 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001794
Florin Coras6792ec02017-03-13 03:49:51 -07001795 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 0, data_len, written);
1796
Dave Barach68b0fb02017-02-28 15:15:56 -05001797 /* Update rcv_nxt */
1798 if (PREDICT_TRUE (written == data_len))
1799 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001800 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001801 }
1802 /* If more data written than expected, account for out-of-order bytes. */
1803 else if (written > data_len)
1804 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001805 tc->rcv_nxt += written;
Florin Corasca1c8f32018-05-23 21:01:30 -07001806 TCP_EVT_DBG (TCP_EVT_CC_INPUT, tc, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001807 }
1808 else if (written > 0)
1809 {
1810 /* We've written something but FIFO is probably full now */
1811 tc->rcv_nxt += written;
Florin Coras1f152cd2017-08-18 19:28:03 -07001812 error = TCP_ERROR_PARTIALLY_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001813 }
1814 else
1815 {
Dave Barach68b0fb02017-02-28 15:15:56 -05001816 return TCP_ERROR_FIFO_FULL;
1817 }
1818
Florin Coras6792ec02017-03-13 03:49:51 -07001819 /* Update SACK list if need be */
Florin Coras93992a92017-05-24 18:03:56 -07001820 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras6792ec02017-03-13 03:49:51 -07001821 {
1822 /* Remove SACK blocks that have been delivered */
1823 tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1824 }
1825
Florin Coras1f152cd2017-08-18 19:28:03 -07001826 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -05001827}
1828
1829/** Enqueue out-of-order data */
Florin Coras0dbd5172018-06-25 16:19:34 -07001830static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001831tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1832 u16 data_len)
1833{
Florin Coras288eaab2019-02-03 15:26:14 -08001834 session_t *s0;
Florin Coras3eb50622017-07-13 01:24:57 -04001835 int rv, offset;
Florin Coras6792ec02017-03-13 03:49:51 -07001836
Florin Corasf03a59a2017-06-09 21:07:32 -07001837 ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001838 ASSERT (data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001839
Florin Corasf03a59a2017-06-09 21:07:32 -07001840 /* Enqueue out-of-order data with relative offset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07001841 rv = session_enqueue_stream_connection (&tc->connection, b,
1842 vnet_buffer (b)->tcp.seq_number -
1843 tc->rcv_nxt, 0 /* queue event */ ,
1844 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001845
1846 /* Nothing written */
1847 if (rv)
1848 {
1849 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, 0);
1850 return TCP_ERROR_FIFO_FULL;
1851 }
1852
1853 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001854
1855 /* Update SACK list if in use */
Florin Coras93992a92017-05-24 18:03:56 -07001856 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001857 {
1858 ooo_segment_t *newest;
1859 u32 start, end;
1860
Florin Corascea194d2017-10-02 00:18:51 -07001861 s0 = session_get (tc->c_s_index, tc->c_thread_index);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001862
Dave Barach68b0fb02017-02-28 15:15:56 -05001863 /* Get the newest segment from the fifo */
Florin Coras288eaab2019-02-03 15:26:14 -08001864 newest = svm_fifo_newest_ooo_segment (s0->rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001865 if (newest)
1866 {
Florin Coras288eaab2019-02-03 15:26:14 -08001867 offset = ooo_segment_offset (s0->rx_fifo, newest);
Florin Coras3eb50622017-07-13 01:24:57 -04001868 ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1869 start = tc->rcv_nxt + offset;
Florin Coras288eaab2019-02-03 15:26:14 -08001870 end = start + ooo_segment_length (s0->rx_fifo, newest);
Florin Corasf03a59a2017-06-09 21:07:32 -07001871 tcp_update_sack_list (tc, start, end);
Florin Coras288eaab2019-02-03 15:26:14 -08001872 svm_fifo_newest_ooo_segment_reset (s0->rx_fifo);
Florin Corasca1c8f32018-05-23 21:01:30 -07001873 TCP_EVT_DBG (TCP_EVT_CC_SACKS, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001874 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001875 }
1876
Florin Coras00cd22d2018-04-18 13:20:18 -07001877 return TCP_ERROR_ENQUEUED_OOO;
Dave Barach68b0fb02017-02-28 15:15:56 -05001878}
1879
1880/**
Florin Coras6792ec02017-03-13 03:49:51 -07001881 * Check if ACK could be delayed. If ack can be delayed, it should return
1882 * true for a full frame. If we're always acking return 0.
Dave Barach68b0fb02017-02-28 15:15:56 -05001883 */
1884always_inline int
1885tcp_can_delack (tcp_connection_t * tc)
1886{
Florin Coras6792ec02017-03-13 03:49:51 -07001887 /* Send ack if ... */
1888 if (TCP_ALWAYS_ACK
1889 /* just sent a rcv wnd 0 */
1890 || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0
1891 /* constrained to send ack */
1892 || (tc->flags & TCP_CONN_SNDACK) != 0
1893 /* we're almost out of tx wnd */
Florin Corasca1c8f32018-05-23 21:01:30 -07001894 || tcp_available_cc_snd_space (tc) < 4 * tc->snd_mss)
Florin Coras6792ec02017-03-13 03:49:51 -07001895 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001896
Florin Coras6792ec02017-03-13 03:49:51 -07001897 return 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001898}
1899
1900static int
Florin Corasb2215d62017-08-01 16:56:58 -07001901tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
1902{
Florin Coras1f152cd2017-08-18 19:28:03 -07001903 u32 discard, first = b->current_length;
Florin Corasb2215d62017-08-01 16:56:58 -07001904 vlib_main_t *vm = vlib_get_main ();
1905
Florin Coras1f152cd2017-08-18 19:28:03 -07001906 /* Handle multi-buffer segments */
Florin Corasb2215d62017-08-01 16:56:58 -07001907 if (n_bytes_to_drop > b->current_length)
1908 {
1909 if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1910 return -1;
1911 do
1912 {
1913 discard = clib_min (n_bytes_to_drop, b->current_length);
1914 vlib_buffer_advance (b, discard);
1915 b = vlib_get_buffer (vm, b->next_buffer);
1916 n_bytes_to_drop -= discard;
1917 }
1918 while (n_bytes_to_drop);
Florin Coras1f152cd2017-08-18 19:28:03 -07001919 if (n_bytes_to_drop > first)
1920 b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
Florin Corasb2215d62017-08-01 16:56:58 -07001921 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001922 else
1923 vlib_buffer_advance (b, n_bytes_to_drop);
1924 vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
Florin Corasb2215d62017-08-01 16:56:58 -07001925 return 0;
1926}
1927
Florin Coras00cd22d2018-04-18 13:20:18 -07001928/**
1929 * Receive buffer for connection and handle acks
1930 *
1931 * It handles both in order or out-of-order data.
1932 */
Florin Corasb2215d62017-08-01 16:56:58 -07001933static int
Florin Coras7ac053b2018-11-05 15:57:21 -08001934tcp_segment_rcv (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1935 vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001936{
Florin Coras00cd22d2018-04-18 13:20:18 -07001937 u32 error, n_bytes_to_drop, n_data_bytes;
Florin Coras6534b7a2017-07-18 05:38:03 -04001938
1939 vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1940 n_data_bytes = vnet_buffer (b)->tcp.data_len;
1941 ASSERT (n_data_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001942
1943 /* Handle out-of-order data */
1944 if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1945 {
Florin Coras6792ec02017-03-13 03:49:51 -07001946 /* Old sequence numbers allowed through because they overlapped
1947 * the rx window */
1948 if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001949 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001950 /* Completely in the past (possible retransmit). Ack
1951 * retransmissions since we may not have any data to send */
Florin Corasf03a59a2017-06-09 21:07:32 -07001952 if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
Florin Coras6534b7a2017-07-18 05:38:03 -04001953 {
Florin Coras7ac053b2018-11-05 15:57:21 -08001954 tcp_program_ack (wrk, tc);
Florin Coras00cd22d2018-04-18 13:20:18 -07001955 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras6534b7a2017-07-18 05:38:03 -04001956 goto done;
1957 }
Dave Barach259cdae2017-05-15 16:27:05 -04001958
Florin Coras00cd22d2018-04-18 13:20:18 -07001959 /* Chop off the bytes in the past and see if what is left
1960 * can be enqueued in order */
Florin Corasdb84e572017-05-09 18:54:52 -07001961 n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1962 n_data_bytes -= n_bytes_to_drop;
Dave Barach2c25a622017-06-26 11:35:07 -04001963 vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001964 if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
Florin Coras00cd22d2018-04-18 13:20:18 -07001965 {
1966 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras00cd22d2018-04-18 13:20:18 -07001967 goto done;
1968 }
Florin Corasdb84e572017-05-09 18:54:52 -07001969 goto in_order;
Dave Barach68b0fb02017-02-28 15:15:56 -05001970 }
1971
Florin Coras00cd22d2018-04-18 13:20:18 -07001972 /* RFC2581: Enqueue and send DUPACK for fast retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001973 error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
Florin Coras7ac053b2018-11-05 15:57:21 -08001974 tcp_program_dupack (wrk, tc);
Florin Corasca1c8f32018-05-23 21:01:30 -07001975 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
Dave Barach68b0fb02017-02-28 15:15:56 -05001976 goto done;
1977 }
1978
Florin Corasdb84e572017-05-09 18:54:52 -07001979in_order:
1980
Dave Barach68b0fb02017-02-28 15:15:56 -05001981 /* In order data, enqueue. Fifo figures out by itself if any out-of-order
1982 * segments can be enqueued after fifo tail offset changes. */
1983 error = tcp_session_enqueue_data (tc, b, n_data_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001984 if (tcp_can_delack (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001985 {
Florin Coras6792ec02017-03-13 03:49:51 -07001986 if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
1987 tcp_timer_set (tc, TCP_TIMER_DELACK, TCP_DELACK_TIME);
Florin Coras3e350af2017-03-30 02:54:28 -07001988 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001989 }
1990
Florin Coras7ac053b2018-11-05 15:57:21 -08001991 tcp_program_ack (wrk, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001992
Dave Barach68b0fb02017-02-28 15:15:56 -05001993done:
1994 return error;
1995}
1996
Clement Durand6cf260c2017-04-13 13:27:04 +02001997typedef struct
1998{
1999 tcp_header_t tcp_header;
2000 tcp_connection_t tcp_connection;
2001} tcp_rx_trace_t;
2002
Florin Coras0dbd5172018-06-25 16:19:34 -07002003static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02002004format_tcp_rx_trace (u8 * s, va_list * args)
2005{
2006 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2007 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2008 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +02002009 u32 indent = format_get_indent (s);
Clement Durand6cf260c2017-04-13 13:27:04 +02002010
2011 s = format (s, "%U\n%U%U",
2012 format_tcp_header, &t->tcp_header, 128,
2013 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -07002014 format_tcp_connection, &t->tcp_connection, 1);
Clement Durand6cf260c2017-04-13 13:27:04 +02002015
2016 return s;
2017}
2018
Florin Coras0dbd5172018-06-25 16:19:34 -07002019static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02002020format_tcp_rx_trace_short (u8 * s, va_list * args)
2021{
2022 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2023 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2024 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
2025
2026 s = format (s, "%d -> %d (%U)",
Florin Coras4df38712018-06-20 12:44:16 -07002027 clib_net_to_host_u16 (t->tcp_header.dst_port),
2028 clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state,
Florin Corasbb292f42017-05-19 09:49:19 -07002029 t->tcp_connection.state);
Clement Durand6cf260c2017-04-13 13:27:04 +02002030
2031 return s;
2032}
2033
Florin Coras4df38712018-06-20 12:44:16 -07002034static void
Florin Coras82b13a82017-04-25 11:58:06 -07002035tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
2036 tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
2037{
2038 if (tc0)
2039 {
Dave Barach178cf492018-11-13 16:34:13 -05002040 clib_memcpy_fast (&t0->tcp_connection, tc0,
2041 sizeof (t0->tcp_connection));
Florin Coras82b13a82017-04-25 11:58:06 -07002042 }
2043 else
2044 {
2045 th0 = tcp_buffer_hdr (b0);
2046 }
Dave Barach178cf492018-11-13 16:34:13 -05002047 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
Florin Coras82b13a82017-04-25 11:58:06 -07002048}
2049
Florin Coras4df38712018-06-20 12:44:16 -07002050static void
2051tcp_established_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2052 vlib_frame_t * frame, u8 is_ip4)
2053{
2054 u32 *from, n_left;
2055
2056 n_left = frame->n_vectors;
2057 from = vlib_frame_vector_args (frame);
2058
2059 while (n_left >= 1)
2060 {
2061 tcp_connection_t *tc0;
2062 tcp_rx_trace_t *t0;
2063 tcp_header_t *th0;
2064 vlib_buffer_t *b0;
2065 u32 bi0;
2066
2067 bi0 = from[0];
2068 b0 = vlib_get_buffer (vm, bi0);
2069
2070 if (b0->flags & VLIB_BUFFER_IS_TRACED)
2071 {
2072 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2073 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2074 vm->thread_index);
2075 th0 = tcp_buffer_hdr (b0);
2076 tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
2077 }
2078
2079 from += 1;
2080 n_left -= 1;
2081 }
2082}
2083
Florin Coras6792ec02017-03-13 03:49:51 -07002084always_inline void
Florin Coras00cd22d2018-04-18 13:20:18 -07002085tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
2086 u8 is_ip4, u32 evt, u32 val)
Dave Barach68b0fb02017-02-28 15:15:56 -05002087{
Florin Coras6792ec02017-03-13 03:49:51 -07002088 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -07002089 vlib_node_increment_counter (vm, tcp4_node, evt, val);
Florin Coras6792ec02017-03-13 03:49:51 -07002090 else
Florin Coras3cbc04b2017-10-02 00:18:51 -07002091 vlib_node_increment_counter (vm, tcp6_node, evt, val);
Dave Barach68b0fb02017-02-28 15:15:56 -05002092}
2093
Florin Coras00cd22d2018-04-18 13:20:18 -07002094#define tcp_maybe_inc_counter(node_id, err, count) \
2095{ \
2096 if (next0 != tcp_next_drop (is_ip4)) \
2097 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2098 tcp6_##node_id##_node.index, is_ip4, err, \
2099 1); \
2100}
2101#define tcp_inc_counter(node_id, err, count) \
2102 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2103 tcp6_##node_id##_node.index, is_ip4, \
2104 err, count)
2105#define tcp_maybe_inc_err_counter(cnts, err) \
2106{ \
2107 cnts[err] += (next0 != tcp_next_drop (is_ip4)); \
2108}
2109#define tcp_inc_err_counter(cnts, err, val) \
2110{ \
2111 cnts[err] += val; \
2112}
2113#define tcp_store_err_counters(node_id, cnts) \
2114{ \
2115 int i; \
2116 for (i = 0; i < TCP_N_ERROR; i++) \
2117 if (cnts[i]) \
2118 tcp_inc_counter(node_id, i, cnts[i]); \
2119}
2120
2121
Dave Barach68b0fb02017-02-28 15:15:56 -05002122always_inline uword
2123tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07002124 vlib_frame_t * frame, int is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05002125{
Florin Coras4df38712018-06-20 12:44:16 -07002126 u32 thread_index = vm->thread_index, errors = 0;
Florin Coras9ece3c02018-11-05 11:06:53 -08002127 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08002128 u32 n_left_from, *from, *first_buffer;
Florin Coras00cd22d2018-04-18 13:20:18 -07002129 u16 err_counters[TCP_N_ERROR] = { 0 };
Dave Barach68b0fb02017-02-28 15:15:56 -05002130
Florin Coras4df38712018-06-20 12:44:16 -07002131 if (node->flags & VLIB_NODE_FLAG_TRACE)
2132 tcp_established_trace_frame (vm, node, frame, is_ip4);
2133
Florin Coras7ac053b2018-11-05 15:57:21 -08002134 first_buffer = from = vlib_frame_vector_args (frame);
Florin Coras4df38712018-06-20 12:44:16 -07002135 n_left_from = frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002136
2137 while (n_left_from > 0)
2138 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002139 u32 bi0, error0 = TCP_ERROR_ACK_OK;
2140 vlib_buffer_t *b0;
Florin Coras3c514d52018-12-22 11:39:33 -08002141 tcp_header_t *th0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002142 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002143
Florin Coras7ac053b2018-11-05 15:57:21 -08002144 if (n_left_from > 1)
Dave Barach68b0fb02017-02-28 15:15:56 -05002145 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002146 vlib_buffer_t *pb;
2147 pb = vlib_get_buffer (vm, from[1]);
2148 vlib_prefetch_buffer_header (pb, LOAD);
2149 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
Dave Barach68b0fb02017-02-28 15:15:56 -05002150 }
2151
Florin Coras7ac053b2018-11-05 15:57:21 -08002152 bi0 = from[0];
2153 from += 1;
2154 n_left_from -= 1;
2155
2156 b0 = vlib_get_buffer (vm, bi0);
2157 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2158 thread_index);
2159
2160 if (PREDICT_FALSE (tc0 == 0))
2161 {
2162 error0 = TCP_ERROR_INVALID_CONNECTION;
2163 goto done;
2164 }
2165
2166 th0 = tcp_buffer_hdr (b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002167
2168 /* TODO header prediction fast path */
2169
2170 /* 1-4: check SEQ, RST, SYN */
2171 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, th0, &error0)))
2172 {
2173 TCP_EVT_DBG (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp);
2174 goto done;
2175 }
2176
2177 /* 5: check the ACK field */
2178 if (PREDICT_FALSE (tcp_rcv_ack (wrk, tc0, b0, th0, &error0)))
2179 goto done;
2180
2181 /* 6: check the URG bit TODO */
2182
2183 /* 7: process the segment text */
2184 if (vnet_buffer (b0)->tcp.data_len)
2185 error0 = tcp_segment_rcv (wrk, tc0, b0);
2186
2187 /* 8: check the FIN bit */
Florin Coras3c514d52018-12-22 11:39:33 -08002188 if (PREDICT_FALSE (tcp_is_fin (th0)))
Florin Corasb11175d2018-11-09 14:34:08 -08002189 tcp_rcv_fin (wrk, tc0, b0, &error0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002190
2191 done:
2192 tcp_inc_err_counter (err_counters, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002193 }
2194
Florin Coras3cbc04b2017-10-02 00:18:51 -07002195 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
Florin Coras4df38712018-06-20 12:44:16 -07002196 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002197 err_counters[TCP_ERROR_MSG_QUEUE_FULL] = errors;
Florin Coras00cd22d2018-04-18 13:20:18 -07002198 tcp_store_err_counters (established, err_counters);
Florin Coras9ece3c02018-11-05 11:06:53 -08002199 tcp_handle_postponed_dequeues (wrk);
Florin Corasb11175d2018-11-09 14:34:08 -08002200 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08002201 vlib_buffer_free (vm, first_buffer, frame->n_vectors);
Florin Coras4df38712018-06-20 12:44:16 -07002202
2203 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002204}
2205
2206static uword
2207tcp4_established (vlib_main_t * vm, vlib_node_runtime_t * node,
2208 vlib_frame_t * from_frame)
2209{
2210 return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2211}
2212
2213static uword
2214tcp6_established (vlib_main_t * vm, vlib_node_runtime_t * node,
2215 vlib_frame_t * from_frame)
2216{
2217 return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2218}
2219
2220/* *INDENT-OFF* */
2221VLIB_REGISTER_NODE (tcp4_established_node) =
2222{
2223 .function = tcp4_established,
2224 .name = "tcp4-established",
2225 /* Takes a vector of packets. */
2226 .vector_size = sizeof (u32),
Florin Corase69f4952017-03-07 10:06:24 -08002227 .n_errors = TCP_N_ERROR,
2228 .error_strings = tcp_error_strings,
Dave Barach68b0fb02017-02-28 15:15:56 -05002229 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2230 .next_nodes =
2231 {
2232#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2233 foreach_tcp_state_next
2234#undef _
2235 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002236 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002237};
2238/* *INDENT-ON* */
2239
2240VLIB_NODE_FUNCTION_MULTIARCH (tcp4_established_node, tcp4_established);
2241
2242/* *INDENT-OFF* */
2243VLIB_REGISTER_NODE (tcp6_established_node) =
2244{
2245 .function = tcp6_established,
2246 .name = "tcp6-established",
2247 /* Takes a vector of packets. */
2248 .vector_size = sizeof (u32),
2249 .n_errors = TCP_N_ERROR,
2250 .error_strings = tcp_error_strings,
2251 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2252 .next_nodes =
2253 {
2254#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2255 foreach_tcp_state_next
2256#undef _
2257 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002258 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002259};
2260/* *INDENT-ON* */
2261
2262
2263VLIB_NODE_FUNCTION_MULTIARCH (tcp6_established_node, tcp6_established);
2264
2265vlib_node_registration_t tcp4_syn_sent_node;
2266vlib_node_registration_t tcp6_syn_sent_node;
2267
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002268static u8
2269tcp_lookup_is_valid (tcp_connection_t * tc, tcp_header_t * hdr)
2270{
Florin Corascea194d2017-10-02 00:18:51 -07002271 transport_connection_t *tmp = 0;
2272 u64 handle;
2273
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002274 if (!tc)
2275 return 1;
2276
Florin Coras70131132017-11-27 02:43:30 -08002277 /* Proxy case */
2278 if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
2279 return 1;
2280
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002281 u8 is_valid = (tc->c_lcl_port == hdr->dst_port
2282 && (tc->state == TCP_STATE_LISTEN
2283 || tc->c_rmt_port == hdr->src_port));
2284
2285 if (!is_valid)
2286 {
Florin Corascea194d2017-10-02 00:18:51 -07002287 handle = session_lookup_half_open_handle (&tc->connection);
2288 tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
Florin Coras3cbc04b2017-10-02 00:18:51 -07002289 tc->c_proto, tc->c_is_ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002290
2291 if (tmp)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002292 {
2293 if (tmp->lcl_port == hdr->dst_port
2294 && tmp->rmt_port == hdr->src_port)
2295 {
Florin Corascea194d2017-10-02 00:18:51 -07002296 TCP_DBG ("half-open is valid!");
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002297 }
2298 }
2299 }
2300 return is_valid;
2301}
2302
2303/**
2304 * Lookup transport connection
2305 */
2306static tcp_connection_t *
Florin Corascea194d2017-10-02 00:18:51 -07002307tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
2308 u8 is_ip4)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002309{
2310 tcp_header_t *tcp;
2311 transport_connection_t *tconn;
2312 tcp_connection_t *tc;
Florin Corasdff48db2017-11-19 18:06:58 -08002313 u8 is_filtered = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002314 if (is_ip4)
2315 {
2316 ip4_header_t *ip4;
2317 ip4 = vlib_buffer_get_current (b);
2318 tcp = ip4_next_header (ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002319 tconn = session_lookup_connection_wt4 (fib_index,
2320 &ip4->dst_address,
2321 &ip4->src_address,
2322 tcp->dst_port,
2323 tcp->src_port,
2324 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002325 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002326 tc = tcp_get_connection_from_transport (tconn);
2327 ASSERT (tcp_lookup_is_valid (tc, tcp));
2328 }
2329 else
2330 {
2331 ip6_header_t *ip6;
2332 ip6 = vlib_buffer_get_current (b);
2333 tcp = ip6_next_header (ip6);
Florin Corascea194d2017-10-02 00:18:51 -07002334 tconn = session_lookup_connection_wt6 (fib_index,
2335 &ip6->dst_address,
2336 &ip6->src_address,
2337 tcp->dst_port,
2338 tcp->src_port,
2339 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002340 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002341 tc = tcp_get_connection_from_transport (tconn);
2342 ASSERT (tcp_lookup_is_valid (tc, tcp));
2343 }
2344 return tc;
2345}
2346
Dave Barach68b0fb02017-02-28 15:15:56 -05002347always_inline uword
2348tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2349 vlib_frame_t * from_frame, int is_ip4)
2350{
2351 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras7ac053b2018-11-05 15:57:21 -08002352 u32 n_left_from, *from, *first_buffer, errors = 0;
2353 u32 my_thread_index = vm->thread_index;
2354 tcp_worker_ctx_t *wrk = tcp_get_worker (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05002355
Florin Coras7ac053b2018-11-05 15:57:21 -08002356 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002357 n_left_from = from_frame->n_vectors;
2358
Dave Barach68b0fb02017-02-28 15:15:56 -05002359 while (n_left_from > 0)
2360 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002361 u32 bi0, ack0, seq0, error0 = TCP_ERROR_NONE;
2362 tcp_connection_t *tc0, *new_tc0;
2363 tcp_header_t *tcp0 = 0;
2364 tcp_rx_trace_t *t0;
2365 vlib_buffer_t *b0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002366
Florin Coras7ac053b2018-11-05 15:57:21 -08002367 bi0 = from[0];
2368 from += 1;
2369 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002370
Florin Coras7ac053b2018-11-05 15:57:21 -08002371 b0 = vlib_get_buffer (vm, bi0);
2372 tc0 =
2373 tcp_half_open_connection_get (vnet_buffer (b0)->tcp.connection_index);
2374 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002375 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002376 error0 = TCP_ERROR_INVALID_CONNECTION;
2377 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002378 }
2379
Florin Coras7ac053b2018-11-05 15:57:21 -08002380 /* Half-open completed recently but the connection was't removed
2381 * yet by the owning thread */
2382 if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2383 {
2384 /* Make sure the connection actually exists */
2385 ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2386 my_thread_index, is_ip4));
Florin Coras222e1f412019-02-16 20:47:32 -08002387 error0 = TCP_ERROR_SPURIOUS_SYN_ACK;
Florin Coras7ac053b2018-11-05 15:57:21 -08002388 goto drop;
2389 }
2390
2391 ack0 = vnet_buffer (b0)->tcp.ack_number;
2392 seq0 = vnet_buffer (b0)->tcp.seq_number;
2393 tcp0 = tcp_buffer_hdr (b0);
2394
2395 /* Crude check to see if the connection handle does not match
2396 * the packet. Probably connection just switched to established */
2397 if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2398 || tcp0->src_port != tc0->c_rmt_port))
2399 {
2400 error0 = TCP_ERROR_INVALID_CONNECTION;
2401 goto drop;
2402 }
2403
2404 if (PREDICT_FALSE (!tcp_ack (tcp0) && !tcp_rst (tcp0)
2405 && !tcp_syn (tcp0)))
2406 {
2407 error0 = TCP_ERROR_SEGMENT_INVALID;
2408 goto drop;
2409 }
2410
Florin Coras3c514d52018-12-22 11:39:33 -08002411 /* SYNs consume sequence numbers */
2412 vnet_buffer (b0)->tcp.seq_end += tcp_is_syn (tcp0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002413
2414 /*
2415 * 1. check the ACK bit
2416 */
2417
2418 /*
2419 * If the ACK bit is set
2420 * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2421 * the RST bit is set, if so drop the segment and return)
2422 * <SEQ=SEG.ACK><CTL=RST>
2423 * and discard the segment. Return.
2424 * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2425 */
2426 if (tcp_ack (tcp0))
2427 {
2428 if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
2429 {
2430 if (!tcp_rst (tcp0))
Florin Corasd4c49be2019-02-07 00:15:53 -08002431 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002432 error0 = TCP_ERROR_RCV_WND;
2433 goto drop;
2434 }
2435
2436 /* Make sure ACK is valid */
2437 if (seq_gt (tc0->snd_una, ack0))
2438 {
2439 error0 = TCP_ERROR_ACK_INVALID;
2440 goto drop;
2441 }
2442 }
2443
2444 /*
2445 * 2. check the RST bit
2446 */
2447
2448 if (tcp_rst (tcp0))
2449 {
2450 /* If ACK is acceptable, signal client that peer is not
2451 * willing to accept connection and drop connection*/
2452 if (tcp_ack (tcp0))
2453 tcp_connection_reset (tc0);
2454 error0 = TCP_ERROR_RST_RCVD;
2455 goto drop;
2456 }
2457
2458 /*
2459 * 3. check the security and precedence (skipped)
2460 */
2461
2462 /*
2463 * 4. check the SYN bit
2464 */
2465
2466 /* No SYN flag. Drop. */
2467 if (!tcp_syn (tcp0))
2468 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002469 error0 = TCP_ERROR_SEGMENT_INVALID;
2470 goto drop;
2471 }
2472
2473 /* Parse options */
Florin Coras80231112018-12-05 15:59:31 -08002474 if (tcp_options_parse (tcp0, &tc0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08002475 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002476 error0 = TCP_ERROR_OPTIONS;
2477 goto drop;
2478 }
2479
2480 /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2481 * current thread pool. */
2482 pool_get (tm->connections[my_thread_index], new_tc0);
Dave Barach178cf492018-11-13 16:34:13 -05002483 clib_memcpy_fast (new_tc0, tc0, sizeof (*new_tc0));
Florin Coras7ac053b2018-11-05 15:57:21 -08002484 new_tc0->c_c_index = new_tc0 - tm->connections[my_thread_index];
2485 new_tc0->c_thread_index = my_thread_index;
2486 new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2487 new_tc0->irs = seq0;
Florin Coras85a3ddd2018-12-24 16:54:34 -08002488 new_tc0->timers[TCP_TIMER_ESTABLISH_AO] = TCP_TIMER_HANDLE_INVALID;
Florin Coras7ac053b2018-11-05 15:57:21 -08002489 new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
2490 new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
2491
2492 /* If this is not the owning thread, wait for syn retransmit to
2493 * expire and cleanup then */
2494 if (tcp_half_open_connection_cleanup (tc0))
2495 tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
2496
2497 if (tcp_opts_tstamp (&new_tc0->rcv_opts))
2498 {
2499 new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
2500 new_tc0->tsval_recent_age = tcp_time_now ();
2501 }
2502
2503 if (tcp_opts_wscale (&new_tc0->rcv_opts))
2504 new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
Florin Corase80b5912018-12-12 19:25:43 -08002505 else
2506 new_tc0->rcv_wscale = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002507
2508 new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2509 << new_tc0->snd_wscale;
2510 new_tc0->snd_wl1 = seq0;
2511 new_tc0->snd_wl2 = ack0;
2512
2513 tcp_connection_init_vars (new_tc0);
2514
2515 /* SYN-ACK: See if we can switch to ESTABLISHED state */
2516 if (PREDICT_TRUE (tcp_ack (tcp0)))
2517 {
2518 /* Our SYN is ACKed: we have iss < ack = snd_una */
2519
2520 /* TODO Dequeue acknowledged segments if we support Fast Open */
2521 new_tc0->snd_una = ack0;
2522 new_tc0->state = TCP_STATE_ESTABLISHED;
2523
2524 /* Make sure las is initialized for the wnd computation */
2525 new_tc0->rcv_las = new_tc0->rcv_nxt;
2526
2527 /* Notify app that we have connection. If session layer can't
2528 * allocate session send reset */
2529 if (session_stream_connect_notify (&new_tc0->connection, 0))
2530 {
2531 clib_warning ("connect notify fail");
Florin Corasd4c49be2019-02-07 00:15:53 -08002532 tcp_send_reset_w_pkt (new_tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002533 tcp_connection_cleanup (new_tc0);
2534 goto drop;
2535 }
2536
Florin Coras2e31cc32018-09-25 14:00:34 -07002537 new_tc0->tx_fifo_size =
2538 transport_tx_fifo_size (&new_tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002539 /* Update rtt with the syn-ack sample */
Florin Corasefefc6b2018-11-07 12:49:19 -08002540 tcp_estimate_initial_rtt (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002541 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, new_tc0);
2542 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2543 }
2544 /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2545 else
2546 {
2547 new_tc0->state = TCP_STATE_SYN_RCVD;
2548
2549 /* Notify app that we have connection */
2550 if (session_stream_connect_notify (&new_tc0->connection, 0))
2551 {
2552 tcp_connection_cleanup (new_tc0);
Florin Corasd4c49be2019-02-07 00:15:53 -08002553 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002554 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc0);
2555 goto drop;
2556 }
2557
Florin Coras2e31cc32018-09-25 14:00:34 -07002558 new_tc0->tx_fifo_size =
2559 transport_tx_fifo_size (&new_tc0->connection);
2560 new_tc0->rtt_ts = 0;
2561 tcp_init_snd_vars (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002562 tcp_send_synack (new_tc0);
2563 error0 = TCP_ERROR_SYNS_RCVD;
2564 goto drop;
2565 }
2566
2567 /* Read data, if any */
2568 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
2569 {
2570 clib_warning ("rcvd data in syn-sent");
2571 error0 = tcp_segment_rcv (wrk, new_tc0, b0);
2572 if (error0 == TCP_ERROR_ACK_OK)
2573 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2574 }
2575 else
2576 {
2577 tcp_program_ack (wrk, new_tc0);
2578 }
2579
2580 drop:
2581
2582 tcp_inc_counter (syn_sent, error0, 1);
2583 if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
2584 {
2585 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05002586 clib_memcpy_fast (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2587 clib_memcpy_fast (&t0->tcp_connection, tc0,
2588 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08002589 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002590 }
2591
Florin Coras3cbc04b2017-10-02 00:18:51 -07002592 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2593 my_thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002594 tcp_inc_counter (syn_sent, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras7ac053b2018-11-05 15:57:21 -08002595 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
2596
Dave Barach68b0fb02017-02-28 15:15:56 -05002597 return from_frame->n_vectors;
2598}
2599
2600static uword
2601tcp4_syn_sent (vlib_main_t * vm, vlib_node_runtime_t * node,
2602 vlib_frame_t * from_frame)
2603{
2604 return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2605}
2606
2607static uword
2608tcp6_syn_sent_rcv (vlib_main_t * vm, vlib_node_runtime_t * node,
2609 vlib_frame_t * from_frame)
2610{
2611 return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2612}
2613
2614/* *INDENT-OFF* */
2615VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2616{
2617 .function = tcp4_syn_sent,
2618 .name = "tcp4-syn-sent",
2619 /* Takes a vector of packets. */
2620 .vector_size = sizeof (u32),
2621 .n_errors = TCP_N_ERROR,
2622 .error_strings = tcp_error_strings,
2623 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2624 .next_nodes =
2625 {
2626#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2627 foreach_tcp_state_next
2628#undef _
2629 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002630 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002631};
2632/* *INDENT-ON* */
2633
2634VLIB_NODE_FUNCTION_MULTIARCH (tcp4_syn_sent_node, tcp4_syn_sent);
2635
2636/* *INDENT-OFF* */
2637VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2638{
2639 .function = tcp6_syn_sent_rcv,
2640 .name = "tcp6-syn-sent",
2641 /* Takes a vector of packets. */
2642 .vector_size = sizeof (u32),
2643 .n_errors = TCP_N_ERROR,
2644 .error_strings = tcp_error_strings,
2645 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2646 .next_nodes =
2647 {
2648#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2649 foreach_tcp_state_next
2650#undef _
Clement Durand6cf260c2017-04-13 13:27:04 +02002651 },
2652 .format_trace = format_tcp_rx_trace_short,
2653};
Dave Barach68b0fb02017-02-28 15:15:56 -05002654/* *INDENT-ON* */
2655
2656VLIB_NODE_FUNCTION_MULTIARCH (tcp6_syn_sent_node, tcp6_syn_sent_rcv);
Florin Coras6534b7a2017-07-18 05:38:03 -04002657
Florin Coras3cbc04b2017-10-02 00:18:51 -07002658vlib_node_registration_t tcp4_rcv_process_node;
2659vlib_node_registration_t tcp6_rcv_process_node;
2660
Dave Barach68b0fb02017-02-28 15:15:56 -05002661/**
Florin Corasd79b41e2017-03-04 05:37:52 -08002662 * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
Dave Barach68b0fb02017-02-28 15:15:56 -05002663 * as per RFC793 p. 64
2664 */
2665always_inline uword
2666tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2667 vlib_frame_t * from_frame, int is_ip4)
2668{
Florin Coras7ac053b2018-11-05 15:57:21 -08002669 u32 thread_index = vm->thread_index, errors = 0, *first_buffer;
2670 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras78cc4b02018-12-20 18:24:49 -08002671 u32 n_left_from, *from, max_dequeue;
Dave Barach68b0fb02017-02-28 15:15:56 -05002672
Florin Coras7ac053b2018-11-05 15:57:21 -08002673 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002674 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002675
2676 while (n_left_from > 0)
2677 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002678 u32 bi0, error0 = TCP_ERROR_NONE;
2679 tcp_header_t *tcp0 = 0;
2680 tcp_connection_t *tc0;
2681 vlib_buffer_t *b0;
2682 u8 is_fin0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002683
Florin Coras7ac053b2018-11-05 15:57:21 -08002684 bi0 = from[0];
2685 from += 1;
2686 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002687
Florin Coras7ac053b2018-11-05 15:57:21 -08002688 b0 = vlib_get_buffer (vm, bi0);
2689 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2690 thread_index);
2691 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002692 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002693 error0 = TCP_ERROR_INVALID_CONNECTION;
2694 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002695 }
2696
Florin Coras7ac053b2018-11-05 15:57:21 -08002697 tcp0 = tcp_buffer_hdr (b0);
2698 is_fin0 = tcp_is_fin (tcp0);
2699
Florin Coras7ac053b2018-11-05 15:57:21 -08002700 if (CLIB_DEBUG)
2701 {
2702 tcp_connection_t *tmp;
2703 tmp = tcp_lookup_connection (tc0->c_fib_index, b0, thread_index,
2704 is_ip4);
2705 if (tmp->state != tc0->state)
2706 {
Florin Corasb0f662f2018-12-27 14:51:46 -08002707 if (tc0->state != TCP_STATE_CLOSED)
2708 clib_warning ("state changed");
Florin Coras7ac053b2018-11-05 15:57:21 -08002709 goto drop;
2710 }
2711 }
2712
2713 /*
2714 * Special treatment for CLOSED
2715 */
2716 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
2717 {
2718 error0 = TCP_ERROR_CONNECTION_CLOSED;
2719 goto drop;
2720 }
2721
2722 /*
2723 * For all other states (except LISTEN)
2724 */
2725
2726 /* 1-4: check SEQ, RST, SYN */
2727 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, tcp0, &error0)))
2728 goto drop;
2729
2730 /* 5: check the ACK field */
2731 switch (tc0->state)
2732 {
2733 case TCP_STATE_SYN_RCVD:
2734 /*
2735 * If the segment acknowledgment is not acceptable, form a
2736 * reset segment,
2737 * <SEQ=SEG.ACK><CTL=RST>
2738 * and send it.
2739 */
2740 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
2741 {
Florin Corase78ac9d2018-12-16 21:33:00 -08002742 tcp_connection_reset (tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002743 error0 = TCP_ERROR_ACK_INVALID;
2744 goto drop;
2745 }
2746
Florin Coras4850e3e2018-12-12 14:34:38 -08002747 /* Make sure the ack is exactly right */
Florin Coras865872e2019-01-18 12:12:29 -08002748 if (tc0->rcv_nxt != vnet_buffer (b0)->tcp.seq_number || is_fin0)
Florin Coras4850e3e2018-12-12 14:34:38 -08002749 {
Florin Corase78ac9d2018-12-16 21:33:00 -08002750 tcp_connection_reset (tc0);
Florin Coras4850e3e2018-12-12 14:34:38 -08002751 error0 = TCP_ERROR_SEGMENT_INVALID;
Florin Coras4850e3e2018-12-12 14:34:38 -08002752 goto drop;
2753 }
2754
Florin Coras7ac053b2018-11-05 15:57:21 -08002755 /* Update rtt and rto */
Florin Corasefefc6b2018-11-07 12:49:19 -08002756 tcp_estimate_initial_rtt (tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002757
2758 /* Switch state to ESTABLISHED */
2759 tc0->state = TCP_STATE_ESTABLISHED;
2760 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
2761
2762 /* Initialize session variables */
2763 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
2764 tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2765 << tc0->rcv_opts.wscale;
2766 tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2767 tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
2768
2769 /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
2770 tcp_retransmit_timer_reset (tc0);
2771 tcp_timer_reset (tc0, TCP_TIMER_ESTABLISH);
Florin Corasa27a46e2019-02-18 13:02:28 -08002772 if (session_stream_accept_notify (&tc0->connection))
Florin Corasa9d5bea2018-12-17 08:24:19 -08002773 {
2774 error0 = TCP_ERROR_MSG_QUEUE_FULL;
2775 tcp_connection_reset (tc0);
2776 goto drop;
2777 }
Florin Coras7ac053b2018-11-05 15:57:21 -08002778 error0 = TCP_ERROR_ACK_OK;
2779 break;
2780 case TCP_STATE_ESTABLISHED:
2781 /* We can get packets in established state here because they
2782 * were enqueued before state change */
2783 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2784 goto drop;
2785
2786 break;
2787 case TCP_STATE_FIN_WAIT_1:
2788 /* In addition to the processing for the ESTABLISHED state, if
2789 * our FIN is now acknowledged then enter FIN-WAIT-2 and
2790 * continue processing in that state. */
2791 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2792 goto drop;
2793
2794 /* Still have to send the FIN */
2795 if (tc0->flags & TCP_CONN_FINPNDG)
2796 {
2797 /* TX fifo finally drained */
Florin Coras78cc4b02018-12-20 18:24:49 -08002798 max_dequeue = session_tx_fifo_max_dequeue (&tc0->connection);
2799 if (max_dequeue <= tc0->burst_acked)
Florin Coras7ac053b2018-11-05 15:57:21 -08002800 tcp_send_fin (tc0);
2801 }
2802 /* If FIN is ACKed */
2803 else if (tc0->snd_una == tc0->snd_una_max)
2804 {
Florin Coras3c514d52018-12-22 11:39:33 -08002805 tcp_connection_set_state (tc0, TCP_STATE_FIN_WAIT_2);
Florin Coras7ac053b2018-11-05 15:57:21 -08002806
2807 /* Stop all retransmit timers because we have nothing more
2808 * to send. Enable waitclose though because we're willing to
2809 * wait for peer's FIN but not indefinitely. */
2810 tcp_connection_timers_reset (tc0);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002811 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Corasefefc6b2018-11-07 12:49:19 -08002812
2813 /* Don't try to deq the FIN acked */
2814 if (tc0->burst_acked > 1)
Florin Coras565115e2019-02-20 19:48:31 -08002815 session_dequeue_drop (&tc0->connection, tc0->burst_acked - 1);
Florin Corasefefc6b2018-11-07 12:49:19 -08002816 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002817 }
2818 break;
2819 case TCP_STATE_FIN_WAIT_2:
2820 /* In addition to the processing for the ESTABLISHED state, if
2821 * the retransmission queue is empty, the user's CLOSE can be
2822 * acknowledged ("ok") but do not delete the TCB. */
2823 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2824 goto drop;
Florin Corasefefc6b2018-11-07 12:49:19 -08002825 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002826 break;
2827 case TCP_STATE_CLOSE_WAIT:
2828 /* Do the same processing as for the ESTABLISHED state. */
2829 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2830 goto drop;
2831
2832 if (tc0->flags & TCP_CONN_FINPNDG)
2833 {
2834 /* TX fifo finally drained */
2835 if (!session_tx_fifo_max_dequeue (&tc0->connection))
2836 {
2837 tcp_send_fin (tc0);
2838 tcp_connection_timers_reset (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002839 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002840 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002841 }
2842 }
2843 break;
2844 case TCP_STATE_CLOSING:
2845 /* In addition to the processing for the ESTABLISHED state, if
2846 * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2847 * otherwise ignore the segment. */
2848 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2849 goto drop;
2850
Florin Coras85a3ddd2018-12-24 16:54:34 -08002851 tcp_connection_timers_reset (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002852 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002853 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002854 goto drop;
2855
2856 break;
2857 case TCP_STATE_LAST_ACK:
2858 /* The only thing that [should] arrive in this state is an
2859 * acknowledgment of our FIN. If our FIN is now acknowledged,
2860 * delete the TCB, enter the CLOSED state, and return. */
2861
2862 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
2863 {
2864 error0 = TCP_ERROR_ACK_INVALID;
2865 goto drop;
2866 }
2867 error0 = TCP_ERROR_ACK_OK;
2868 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
2869 /* Apparently our ACK for the peer's FIN was lost */
2870 if (is_fin0 && tc0->snd_una != tc0->snd_una_max)
2871 {
2872 tcp_send_fin (tc0);
2873 goto drop;
2874 }
2875
Florin Coras3c514d52018-12-22 11:39:33 -08002876 tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
Florin Coras7ac053b2018-11-05 15:57:21 -08002877
2878 /* Don't free the connection from the data path since
2879 * we can't ensure that we have no packets already enqueued
2880 * to output. Rely instead on the waitclose timer */
2881 tcp_connection_timers_reset (tc0);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002882 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002883
2884 goto drop;
2885
2886 break;
2887 case TCP_STATE_TIME_WAIT:
2888 /* The only thing that can arrive in this state is a
2889 * retransmission of the remote FIN. Acknowledge it, and restart
2890 * the 2 MSL timeout. */
2891
2892 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2893 goto drop;
2894
2895 tcp_program_ack (wrk, tc0);
2896 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
2897 goto drop;
2898
2899 break;
2900 default:
2901 ASSERT (0);
2902 }
2903
2904 /* 6: check the URG bit TODO */
2905
2906 /* 7: process the segment text */
2907 switch (tc0->state)
2908 {
2909 case TCP_STATE_ESTABLISHED:
2910 case TCP_STATE_FIN_WAIT_1:
2911 case TCP_STATE_FIN_WAIT_2:
2912 if (vnet_buffer (b0)->tcp.data_len)
2913 error0 = tcp_segment_rcv (wrk, tc0, b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002914 break;
2915 case TCP_STATE_CLOSE_WAIT:
2916 case TCP_STATE_CLOSING:
2917 case TCP_STATE_LAST_ACK:
2918 case TCP_STATE_TIME_WAIT:
2919 /* This should not occur, since a FIN has been received from the
2920 * remote side. Ignore the segment text. */
2921 break;
2922 }
2923
2924 /* 8: check the FIN bit */
2925 if (!is_fin0)
2926 goto drop;
2927
Florin Coras3c514d52018-12-22 11:39:33 -08002928 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0);
2929
Florin Coras7ac053b2018-11-05 15:57:21 -08002930 switch (tc0->state)
2931 {
2932 case TCP_STATE_ESTABLISHED:
Florin Coras3c514d52018-12-22 11:39:33 -08002933 /* Account for the FIN and send ack */
2934 tc0->rcv_nxt += 1;
2935 tcp_program_ack (wrk, tc0);
2936 tcp_connection_set_state (tc0, TCP_STATE_CLOSE_WAIT);
2937 tcp_program_disconnect (wrk, tc0);
2938 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
Florin Coras5c0f1662018-12-19 01:38:57 -08002939 break;
Florin Coras7ac053b2018-11-05 15:57:21 -08002940 case TCP_STATE_SYN_RCVD:
Florin Coras5c0f1662018-12-19 01:38:57 -08002941 /* Send FIN-ACK, enter LAST-ACK and because the app was not
2942 * notified yet, set a cleanup timer instead of relying on
2943 * disconnect notify and the implicit close call. */
Florin Coras7ac053b2018-11-05 15:57:21 -08002944 tcp_connection_timers_reset (tc0);
Florin Coras5c0f1662018-12-19 01:38:57 -08002945 tc0->rcv_nxt += 1;
Florin Coras7ac053b2018-11-05 15:57:21 -08002946 tcp_send_fin (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002947 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras5c0f1662018-12-19 01:38:57 -08002948 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002949 break;
2950 case TCP_STATE_CLOSE_WAIT:
2951 case TCP_STATE_CLOSING:
2952 case TCP_STATE_LAST_ACK:
2953 /* move along .. */
2954 break;
2955 case TCP_STATE_FIN_WAIT_1:
Florin Coras3c514d52018-12-22 11:39:33 -08002956 tc0->rcv_nxt += 1;
2957 tcp_connection_set_state (tc0, TCP_STATE_CLOSING);
Florin Coras565115e2019-02-20 19:48:31 -08002958 if (tc0->flags & TCP_CONN_FINPNDG)
2959 {
2960 /* Drop all outstanding tx data. */
2961 session_dequeue_drop (&tc0->connection,
2962 transport_max_tx_dequeue
2963 (&tc0->connection));
2964 tcp_send_fin (tc0);
2965 }
2966 else
2967 tcp_program_ack (wrk, tc0);
2968 /* Wait for ACK for our FIN but not forever */
Florin Coras7ac053b2018-11-05 15:57:21 -08002969 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
2970 break;
2971 case TCP_STATE_FIN_WAIT_2:
2972 /* Got FIN, send ACK! Be more aggressive with resource cleanup */
Florin Coras3c514d52018-12-22 11:39:33 -08002973 tc0->rcv_nxt += 1;
2974 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras7ac053b2018-11-05 15:57:21 -08002975 tcp_connection_timers_reset (tc0);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002976 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002977 tcp_program_ack (wrk, tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002978 break;
2979 case TCP_STATE_TIME_WAIT:
2980 /* Remain in the TIME-WAIT state. Restart the time-wait
2981 * timeout.
2982 */
2983 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
2984 break;
2985 }
2986 error0 = TCP_ERROR_FIN_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -08002987
2988 drop:
2989
2990 tcp_inc_counter (rcv_process, error0, 1);
2991 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2992 {
2993 tcp_rx_trace_t *t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2994 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
2995 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002996 }
2997
Florin Coras3cbc04b2017-10-02 00:18:51 -07002998 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
Florin Coras7ac053b2018-11-05 15:57:21 -08002999 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08003000 tcp_inc_counter (rcv_process, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras9ece3c02018-11-05 11:06:53 -08003001 tcp_handle_postponed_dequeues (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08003002 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3003
Dave Barach68b0fb02017-02-28 15:15:56 -05003004 return from_frame->n_vectors;
3005}
3006
3007static uword
3008tcp4_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node,
3009 vlib_frame_t * from_frame)
3010{
3011 return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3012}
3013
3014static uword
3015tcp6_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node,
3016 vlib_frame_t * from_frame)
3017{
3018 return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3019}
3020
3021/* *INDENT-OFF* */
3022VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
3023{
3024 .function = tcp4_rcv_process,
3025 .name = "tcp4-rcv-process",
3026 /* Takes a vector of packets. */
3027 .vector_size = sizeof (u32),
3028 .n_errors = TCP_N_ERROR,
3029 .error_strings = tcp_error_strings,
3030 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3031 .next_nodes =
3032 {
3033#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3034 foreach_tcp_state_next
3035#undef _
3036 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003037 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003038};
3039/* *INDENT-ON* */
3040
3041VLIB_NODE_FUNCTION_MULTIARCH (tcp4_rcv_process_node, tcp4_rcv_process);
3042
3043/* *INDENT-OFF* */
3044VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
3045{
3046 .function = tcp6_rcv_process,
3047 .name = "tcp6-rcv-process",
3048 /* Takes a vector of packets. */
3049 .vector_size = sizeof (u32),
3050 .n_errors = TCP_N_ERROR,
3051 .error_strings = tcp_error_strings,
3052 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3053 .next_nodes =
3054 {
3055#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3056 foreach_tcp_state_next
3057#undef _
3058 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003059 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003060};
3061/* *INDENT-ON* */
3062
3063VLIB_NODE_FUNCTION_MULTIARCH (tcp6_rcv_process_node, tcp6_rcv_process);
3064
3065vlib_node_registration_t tcp4_listen_node;
3066vlib_node_registration_t tcp6_listen_node;
3067
3068/**
3069 * LISTEN state processing as per RFC 793 p. 65
3070 */
3071always_inline uword
3072tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3073 vlib_frame_t * from_frame, int is_ip4)
3074{
Florin Coras7ac053b2018-11-05 15:57:21 -08003075 u32 n_left_from, *from, n_syns = 0, *first_buffer;
Damjan Marion586afd72017-04-05 19:18:20 +02003076 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05003077
Florin Coras7ac053b2018-11-05 15:57:21 -08003078 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05003079 n_left_from = from_frame->n_vectors;
3080
Dave Barach68b0fb02017-02-28 15:15:56 -05003081 while (n_left_from > 0)
3082 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003083 u32 bi0;
3084 vlib_buffer_t *b0;
3085 tcp_rx_trace_t *t0;
3086 tcp_header_t *th0 = 0;
3087 tcp_connection_t *lc0;
3088 ip4_header_t *ip40;
3089 ip6_header_t *ip60;
3090 tcp_connection_t *child0;
3091 u32 error0 = TCP_ERROR_NONE;
Dave Barach68b0fb02017-02-28 15:15:56 -05003092
Florin Coras7ac053b2018-11-05 15:57:21 -08003093 bi0 = from[0];
3094 from += 1;
3095 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05003096
Florin Coras7ac053b2018-11-05 15:57:21 -08003097 b0 = vlib_get_buffer (vm, bi0);
3098 lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index);
3099
3100 if (is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003101 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003102 ip40 = vlib_buffer_get_current (b0);
3103 th0 = ip4_next_header (ip40);
3104 }
3105 else
3106 {
3107 ip60 = vlib_buffer_get_current (b0);
3108 th0 = ip6_next_header (ip60);
Dave Barach68b0fb02017-02-28 15:15:56 -05003109 }
3110
Florin Coras7ac053b2018-11-05 15:57:21 -08003111 /* Create child session. For syn-flood protection use filter */
3112
3113 /* 1. first check for an RST: handled in dispatch */
3114 /* if (tcp_rst (th0))
3115 goto drop;
3116 */
3117
3118 /* 2. second check for an ACK: handled in dispatch */
3119 /* if (tcp_ack (th0))
3120 {
3121 tcp_send_reset (b0, is_ip4);
3122 goto drop;
3123 }
3124 */
3125
3126 /* 3. check for a SYN (did that already) */
3127
3128 /* Make sure connection wasn't just created */
3129 child0 = tcp_lookup_connection (lc0->c_fib_index, b0, my_thread_index,
3130 is_ip4);
3131 if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN))
3132 {
3133 error0 = TCP_ERROR_CREATE_EXISTS;
3134 goto drop;
3135 }
3136
3137 /* Create child session and send SYN-ACK */
Florin Coras8124cb72018-12-16 20:57:29 -08003138 child0 = tcp_connection_alloc (my_thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08003139 child0->c_lcl_port = th0->dst_port;
3140 child0->c_rmt_port = th0->src_port;
3141 child0->c_is_ip4 = is_ip4;
3142 child0->state = TCP_STATE_SYN_RCVD;
3143 child0->c_fib_index = lc0->c_fib_index;
3144
3145 if (is_ip4)
3146 {
3147 child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32;
3148 child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32;
3149 }
3150 else
3151 {
Dave Barach178cf492018-11-13 16:34:13 -05003152 clib_memcpy_fast (&child0->c_lcl_ip6, &ip60->dst_address,
3153 sizeof (ip6_address_t));
3154 clib_memcpy_fast (&child0->c_rmt_ip6, &ip60->src_address,
3155 sizeof (ip6_address_t));
Florin Coras7ac053b2018-11-05 15:57:21 -08003156 }
3157
Florin Coras80231112018-12-05 15:59:31 -08003158 if (tcp_options_parse (th0, &child0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08003159 {
Florin Coras8124cb72018-12-16 20:57:29 -08003160 error0 = TCP_ERROR_OPTIONS;
3161 tcp_connection_free (child0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003162 goto drop;
3163 }
3164
3165 child0->irs = vnet_buffer (b0)->tcp.seq_number;
3166 child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1;
3167 child0->rcv_las = child0->rcv_nxt;
3168 child0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
3169
3170 /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
3171 * segments are used to initialize PAWS. */
3172 if (tcp_opts_tstamp (&child0->rcv_opts))
3173 {
3174 child0->tsval_recent = child0->rcv_opts.tsval;
3175 child0->tsval_recent_age = tcp_time_now ();
3176 }
3177
3178 if (tcp_opts_wscale (&child0->rcv_opts))
3179 child0->snd_wscale = child0->rcv_opts.wscale;
3180
3181 child0->snd_wnd = clib_net_to_host_u16 (th0->window)
3182 << child0->snd_wscale;
3183 child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
3184 child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
3185
3186 tcp_connection_init_vars (child0);
Florin Coras865872e2019-01-18 12:12:29 -08003187 child0->rto = TCP_RTO_MIN;
Florin Coras7ac053b2018-11-05 15:57:21 -08003188 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, child0, 1);
3189
Florin Corasc9940fc2019-02-05 20:55:11 -08003190 if (session_stream_accept (&child0->connection, lc0->c_s_index,
Florin Coras7ac053b2018-11-05 15:57:21 -08003191 0 /* notify */ ))
3192 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003193 tcp_connection_cleanup (child0);
3194 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
3195 goto drop;
3196 }
3197
Florin Coras2e31cc32018-09-25 14:00:34 -07003198 child0->tx_fifo_size = transport_tx_fifo_size (&child0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003199 tcp_send_synack (child0);
3200 tcp_timer_set (child0, TCP_TIMER_ESTABLISH, TCP_SYN_RCVD_TIME);
3201
3202 drop:
3203
3204 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3205 {
3206 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05003207 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
3208 clib_memcpy_fast (&t0->tcp_connection, lc0,
3209 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08003210 }
3211
3212 n_syns += (error0 == TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003213 }
Florin Coras00cd22d2018-04-18 13:20:18 -07003214
3215 tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
Florin Coras7ac053b2018-11-05 15:57:21 -08003216 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3217
Dave Barach68b0fb02017-02-28 15:15:56 -05003218 return from_frame->n_vectors;
3219}
3220
3221static uword
3222tcp4_listen (vlib_main_t * vm, vlib_node_runtime_t * node,
3223 vlib_frame_t * from_frame)
3224{
3225 return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3226}
3227
3228static uword
3229tcp6_listen (vlib_main_t * vm, vlib_node_runtime_t * node,
3230 vlib_frame_t * from_frame)
3231{
3232 return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3233}
3234
3235/* *INDENT-OFF* */
3236VLIB_REGISTER_NODE (tcp4_listen_node) =
3237{
3238 .function = tcp4_listen,
3239 .name = "tcp4-listen",
3240 /* Takes a vector of packets. */
3241 .vector_size = sizeof (u32),
3242 .n_errors = TCP_N_ERROR,
3243 .error_strings = tcp_error_strings,
3244 .n_next_nodes = TCP_LISTEN_N_NEXT,
3245 .next_nodes =
3246 {
3247#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3248 foreach_tcp_state_next
3249#undef _
3250 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003251 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003252};
3253/* *INDENT-ON* */
3254
3255VLIB_NODE_FUNCTION_MULTIARCH (tcp4_listen_node, tcp4_listen);
3256
3257/* *INDENT-OFF* */
3258VLIB_REGISTER_NODE (tcp6_listen_node) =
3259{
3260 .function = tcp6_listen,
3261 .name = "tcp6-listen",
3262 /* Takes a vector of packets. */
3263 .vector_size = sizeof (u32),
3264 .n_errors = TCP_N_ERROR,
3265 .error_strings = tcp_error_strings,
3266 .n_next_nodes = TCP_LISTEN_N_NEXT,
3267 .next_nodes =
3268 {
3269#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3270 foreach_tcp_state_next
3271#undef _
3272 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003273 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003274};
3275/* *INDENT-ON* */
3276
3277VLIB_NODE_FUNCTION_MULTIARCH (tcp6_listen_node, tcp6_listen);
3278
3279vlib_node_registration_t tcp4_input_node;
3280vlib_node_registration_t tcp6_input_node;
3281
3282typedef enum _tcp_input_next
3283{
3284 TCP_INPUT_NEXT_DROP,
3285 TCP_INPUT_NEXT_LISTEN,
3286 TCP_INPUT_NEXT_RCV_PROCESS,
3287 TCP_INPUT_NEXT_SYN_SENT,
3288 TCP_INPUT_NEXT_ESTABLISHED,
3289 TCP_INPUT_NEXT_RESET,
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003290 TCP_INPUT_NEXT_PUNT,
Dave Barach68b0fb02017-02-28 15:15:56 -05003291 TCP_INPUT_N_NEXT
3292} tcp_input_next_t;
3293
3294#define foreach_tcp4_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003295 _ (DROP, "ip4-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003296 _ (LISTEN, "tcp4-listen") \
3297 _ (RCV_PROCESS, "tcp4-rcv-process") \
3298 _ (SYN_SENT, "tcp4-syn-sent") \
3299 _ (ESTABLISHED, "tcp4-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003300 _ (RESET, "tcp4-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003301 _ (PUNT, "ip4-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003302
3303#define foreach_tcp6_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003304 _ (DROP, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003305 _ (LISTEN, "tcp6-listen") \
3306 _ (RCV_PROCESS, "tcp6-rcv-process") \
3307 _ (SYN_SENT, "tcp6-syn-sent") \
3308 _ (ESTABLISHED, "tcp6-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003309 _ (RESET, "tcp6-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003310 _ (PUNT, "ip6-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003311
Dave Barach68b0fb02017-02-28 15:15:56 -05003312#define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
3313
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003314static void
3315tcp_input_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07003316 vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003317{
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003318 tcp_connection_t *tc;
3319 tcp_header_t *tcp;
3320 tcp_rx_trace_t *t;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003321 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05003322
Florin Coras4df38712018-06-20 12:44:16 -07003323 for (i = 0; i < n_bufs; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05003324 {
Florin Coras4df38712018-06-20 12:44:16 -07003325 if (bs[i]->flags & VLIB_BUFFER_IS_TRACED)
3326 {
3327 t = vlib_add_trace (vm, node, bs[i], sizeof (*t));
3328 tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index,
3329 vm->thread_index);
3330 tcp = vlib_buffer_get_current (bs[i]);
3331 tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4);
3332 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003333 }
3334}
Dave Barach68b0fb02017-02-28 15:15:56 -05003335
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003336static void
3337tcp_input_set_error_next (tcp_main_t * tm, u16 * next, u32 * error, u8 is_ip4)
3338{
Florin Corasb5e55a22019-01-10 12:42:47 -08003339 if (*error == TCP_ERROR_FILTERED || *error == TCP_ERROR_WRONG_THREAD)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003340 {
3341 *next = TCP_INPUT_NEXT_DROP;
3342 }
3343 else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6))
3344 {
3345 *next = TCP_INPUT_NEXT_PUNT;
3346 *error = TCP_ERROR_PUNT;
3347 }
3348 else
3349 {
3350 *next = TCP_INPUT_NEXT_RESET;
3351 *error = TCP_ERROR_NO_LISTENER;
3352 }
3353}
Dave Barach68b0fb02017-02-28 15:15:56 -05003354
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003355static inline tcp_connection_t *
3356tcp_input_lookup_buffer (vlib_buffer_t * b, u8 thread_index, u32 * error,
3357 u8 is_ip4)
3358{
3359 u32 fib_index = vnet_buffer (b)->ip.fib_index;
3360 int n_advance_bytes, n_data_bytes;
3361 transport_connection_t *tc;
3362 tcp_header_t *tcp;
Florin Corasb5e55a22019-01-10 12:42:47 -08003363 u8 result = 0;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003364
3365 if (is_ip4)
3366 {
3367 ip4_header_t *ip4 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003368 int ip_hdr_bytes = ip4_header_bytes (ip4);
3369 if (PREDICT_FALSE (b->current_length < ip_hdr_bytes + sizeof (*tcp)))
3370 {
3371 *error = TCP_ERROR_LENGTH;
3372 return 0;
3373 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003374 tcp = ip4_next_header (ip4);
3375 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip4;
Florin Corasb8dda5f2018-12-05 10:03:34 -08003376 n_advance_bytes = (ip_hdr_bytes + tcp_header_bytes (tcp));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003377 n_data_bytes = clib_net_to_host_u16 (ip4->length) - n_advance_bytes;
3378
3379 /* Length check. Checksum computed by ipx_local no need to compute again */
Florin Corasb8dda5f2018-12-05 10:03:34 -08003380 if (PREDICT_FALSE (n_data_bytes < 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05003381 {
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003382 *error = TCP_ERROR_LENGTH;
3383 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003384 }
3385
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003386 tc = session_lookup_connection_wt4 (fib_index, &ip4->dst_address,
3387 &ip4->src_address, tcp->dst_port,
3388 tcp->src_port, TRANSPORT_PROTO_TCP,
Florin Corasb5e55a22019-01-10 12:42:47 -08003389 thread_index, &result);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003390 }
3391 else
3392 {
3393 ip6_header_t *ip6 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003394 if (PREDICT_FALSE (b->current_length < sizeof (*ip6) + sizeof (*tcp)))
3395 {
3396 *error = TCP_ERROR_LENGTH;
3397 return 0;
3398 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003399 tcp = ip6_next_header (ip6);
3400 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip6;
3401 n_advance_bytes = tcp_header_bytes (tcp);
3402 n_data_bytes = clib_net_to_host_u16 (ip6->payload_length)
3403 - n_advance_bytes;
3404 n_advance_bytes += sizeof (ip6[0]);
3405
Florin Corasb8dda5f2018-12-05 10:03:34 -08003406 if (PREDICT_FALSE (n_data_bytes < 0))
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003407 {
3408 *error = TCP_ERROR_LENGTH;
3409 return 0;
3410 }
Florin Coras6164e972019-02-07 10:31:08 -08003411 if (PREDICT_FALSE
3412 (ip6_address_is_link_local_unicast (&ip6->dst_address)))
3413 {
3414 ip4_main_t *im = &ip4_main;
3415 fib_index = vec_elt (im->fib_index_by_sw_if_index,
3416 vnet_buffer (b)->sw_if_index[VLIB_RX]);
3417 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003418
3419 tc = session_lookup_connection_wt6 (fib_index, &ip6->dst_address,
3420 &ip6->src_address, tcp->dst_port,
3421 tcp->src_port, TRANSPORT_PROTO_TCP,
Florin Corasb5e55a22019-01-10 12:42:47 -08003422 thread_index, &result);
Dave Barach68b0fb02017-02-28 15:15:56 -05003423 }
3424
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003425 vnet_buffer (b)->tcp.seq_number = clib_net_to_host_u32 (tcp->seq_number);
3426 vnet_buffer (b)->tcp.ack_number = clib_net_to_host_u32 (tcp->ack_number);
3427 vnet_buffer (b)->tcp.data_offset = n_advance_bytes;
3428 vnet_buffer (b)->tcp.data_len = n_data_bytes;
Florin Coras3c514d52018-12-22 11:39:33 -08003429 vnet_buffer (b)->tcp.seq_end = vnet_buffer (b)->tcp.seq_number
3430 + n_data_bytes;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003431 vnet_buffer (b)->tcp.flags = 0;
3432
Florin Corasb5e55a22019-01-10 12:42:47 -08003433 *error = result ? TCP_ERROR_NONE + result : *error;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003434
3435 return tcp_get_connection_from_transport (tc);
3436}
3437
3438static inline void
3439tcp_input_dispatch_buffer (tcp_main_t * tm, tcp_connection_t * tc,
3440 vlib_buffer_t * b, u16 * next, u32 * error)
3441{
3442 tcp_header_t *tcp;
3443 u8 flags;
3444
3445 tcp = tcp_buffer_hdr (b);
3446 flags = tcp->flags & filter_flags;
3447 *next = tm->dispatch_table[tc->state][flags].next;
3448 *error = tm->dispatch_table[tc->state][flags].error;
3449
3450 if (PREDICT_FALSE (*error == TCP_ERROR_DISPATCH
3451 || *next == TCP_INPUT_NEXT_RESET))
3452 {
3453 /* Overload tcp flags to store state */
3454 tcp_state_t state = tc->state;
3455 vnet_buffer (b)->tcp.flags = tc->state;
3456
3457 if (*error == TCP_ERROR_DISPATCH)
Florin Corasa9d5bea2018-12-17 08:24:19 -08003458 clib_warning ("tcp conn %u disp error state %U flags %U",
3459 tc->c_c_index, format_tcp_state, state,
3460 format_tcp_flags, (int) flags);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003461 }
3462}
3463
3464always_inline uword
3465tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3466 vlib_frame_t * frame, int is_ip4)
3467{
3468 u32 n_left_from, *from, thread_index = vm->thread_index;
3469 tcp_main_t *tm = vnet_get_tcp_main ();
3470 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
3471 u16 nexts[VLIB_FRAME_SIZE], *next;
3472
Florin Corasbe72ae62018-11-01 11:23:03 -07003473 tcp_set_time_now (tcp_get_worker (thread_index));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003474
3475 from = vlib_frame_vector_args (frame);
3476 n_left_from = frame->n_vectors;
3477 vlib_get_buffers (vm, from, bufs, n_left_from);
3478
3479 b = bufs;
3480 next = nexts;
3481
3482 while (n_left_from >= 4)
3483 {
3484 u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER;
3485 tcp_connection_t *tc0, *tc1;
3486
3487 {
3488 vlib_prefetch_buffer_header (b[2], STORE);
3489 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3490
3491 vlib_prefetch_buffer_header (b[3], STORE);
3492 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3493 }
3494
3495 next[0] = next[1] = TCP_INPUT_NEXT_DROP;
3496
3497 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4);
3498 tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4);
3499
3500 if (PREDICT_TRUE (!tc0 + !tc1 == 0))
3501 {
3502 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3503 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3504
3505 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3506 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3507
3508 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3509 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3510 }
3511 else
3512 {
3513 if (PREDICT_TRUE (tc0 != 0))
3514 {
3515 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3516 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3517 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3518 }
3519 else
3520 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3521
3522 if (PREDICT_TRUE (tc1 != 0))
3523 {
3524 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3525 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3526 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3527 }
3528 else
3529 tcp_input_set_error_next (tm, &next[1], &error1, is_ip4);
3530 }
3531
3532 b += 2;
3533 next += 2;
3534 n_left_from -= 2;
3535 }
3536 while (n_left_from > 0)
3537 {
3538 tcp_connection_t *tc0;
3539 u32 error0 = TCP_ERROR_NO_LISTENER;
3540
3541 if (n_left_from > 1)
3542 {
3543 vlib_prefetch_buffer_header (b[1], STORE);
3544 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3545 }
3546
3547 next[0] = TCP_INPUT_NEXT_DROP;
3548 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4);
3549 if (PREDICT_TRUE (tc0 != 0))
3550 {
3551 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3552 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3553 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3554 }
3555 else
3556 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3557
3558 b += 1;
3559 next += 1;
3560 n_left_from -= 1;
3561 }
3562
3563 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
3564 tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4);
3565
3566 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
3567 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05003568}
3569
3570static uword
3571tcp4_input (vlib_main_t * vm, vlib_node_runtime_t * node,
3572 vlib_frame_t * from_frame)
3573{
3574 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3575}
3576
3577static uword
3578tcp6_input (vlib_main_t * vm, vlib_node_runtime_t * node,
3579 vlib_frame_t * from_frame)
3580{
3581 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3582}
3583
3584/* *INDENT-OFF* */
3585VLIB_REGISTER_NODE (tcp4_input_node) =
3586{
3587 .function = tcp4_input,
3588 .name = "tcp4-input",
3589 /* Takes a vector of packets. */
3590 .vector_size = sizeof (u32),
3591 .n_errors = TCP_N_ERROR,
3592 .error_strings = tcp_error_strings,
3593 .n_next_nodes = TCP_INPUT_N_NEXT,
3594 .next_nodes =
3595 {
3596#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3597 foreach_tcp4_input_next
3598#undef _
3599 },
3600 .format_buffer = format_tcp_header,
3601 .format_trace = format_tcp_rx_trace,
3602};
3603/* *INDENT-ON* */
3604
3605VLIB_NODE_FUNCTION_MULTIARCH (tcp4_input_node, tcp4_input);
3606
3607/* *INDENT-OFF* */
3608VLIB_REGISTER_NODE (tcp6_input_node) =
3609{
3610 .function = tcp6_input,
3611 .name = "tcp6-input",
3612 /* Takes a vector of packets. */
3613 .vector_size = sizeof (u32),
3614 .n_errors = TCP_N_ERROR,
3615 .error_strings = tcp_error_strings,
3616 .n_next_nodes = TCP_INPUT_N_NEXT,
3617 .next_nodes =
3618 {
3619#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3620 foreach_tcp6_input_next
3621#undef _
3622 },
3623 .format_buffer = format_tcp_header,
3624 .format_trace = format_tcp_rx_trace,
3625};
3626/* *INDENT-ON* */
3627
3628VLIB_NODE_FUNCTION_MULTIARCH (tcp6_input_node, tcp6_input);
Dave Barach68b0fb02017-02-28 15:15:56 -05003629
3630static void
3631tcp_dispatch_table_init (tcp_main_t * tm)
3632{
3633 int i, j;
3634 for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3635 for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3636 {
3637 tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3638 tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3639 }
3640
3641#define _(t,f,n,e) \
3642do { \
3643 tm->dispatch_table[TCP_STATE_##t][f].next = (n); \
3644 tm->dispatch_table[TCP_STATE_##t][f].error = (e); \
3645} while (0)
3646
Florin Coras678a6572018-12-17 21:31:25 -08003647 /* RFC 793: In LISTEN if RST drop and if ACK return RST */
Florin Coras5c0f1662018-12-19 01:38:57 -08003648 _(LISTEN, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras678a6572018-12-17 21:31:25 -08003649 _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_ACK_INVALID);
3650 _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_INVALID_CONNECTION);
Dave Barach68b0fb02017-02-28 15:15:56 -05003651 _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003652 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3653 TCP_ERROR_ACK_INVALID);
3654 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3655 TCP_ERROR_SEGMENT_INVALID);
3656 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3657 TCP_ERROR_SEGMENT_INVALID);
3658 _(LISTEN, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3659 TCP_ERROR_INVALID_CONNECTION);
3660 _(LISTEN, TCP_FLAG_FIN, TCP_INPUT_NEXT_RESET, TCP_ERROR_SEGMENT_INVALID);
Dave Barach2c25a622017-06-26 11:35:07 -04003661 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
Florin Coras678a6572018-12-17 21:31:25 -08003662 TCP_ERROR_SEGMENT_INVALID);
3663 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3664 TCP_ERROR_SEGMENT_INVALID);
3665 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003666 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003667 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_DROP,
3668 TCP_ERROR_SEGMENT_INVALID);
3669 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3670 TCP_ERROR_SEGMENT_INVALID);
3671 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3672 TCP_ERROR_SEGMENT_INVALID);
3673 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3674 TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003675 /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3676 _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc28764f2017-04-26 00:08:42 -07003677 _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase8460c72018-09-24 14:40:40 -07003678 _(SYN_RCVD, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3679 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003680 _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003681 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3682 TCP_ERROR_NONE);
3683 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3684 TCP_ERROR_NONE);
3685 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3686 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3687 _(SYN_RCVD, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc01c4452018-09-20 18:36:54 -07003688 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3689 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003690 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3691 TCP_ERROR_NONE);
3692 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3693 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3694 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3695 TCP_ERROR_NONE);
3696 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3697 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3698 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3699 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3700 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3701 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3702 _(SYN_RCVD, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003703 /* SYN-ACK for a SYN */
3704 _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3705 TCP_ERROR_NONE);
3706 _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3707 _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3708 _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3709 TCP_ERROR_NONE);
Florin Coras222e1f412019-02-16 20:47:32 -08003710 _(SYN_SENT, TCP_FLAG_FIN, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3711 _(SYN_SENT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3712 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003713 /* ACK for for established connection -> tcp-established. */
3714 _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3715 /* FIN for for established connection -> tcp-established. */
3716 _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3717 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3718 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003719 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3720 TCP_ERROR_NONE);
3721 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3722 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3723 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED,
3724 TCP_ERROR_NONE);
3725 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3726 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3727 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3728 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3729 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3730 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasd79b41e2017-03-04 05:37:52 -08003731 _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003732 _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3733 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003734 _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003735 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3736 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003737 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3738 TCP_ERROR_NONE);
3739 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3740 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3741 _(ESTABLISHED, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003742 /* ACK or FIN-ACK to our FIN */
3743 _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3744 _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
3745 TCP_ERROR_NONE);
3746 /* FIN in reply to our FIN from the other side */
Florin Coras76bc1302018-12-23 23:36:36 -08003747 _(FIN_WAIT_1, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003748 _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08003749 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3750 TCP_ERROR_NONE);
3751 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3752 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3753 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3754 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3755 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3756 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3757 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3758 TCP_ERROR_NONE);
3759 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3760 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras5c0f1662018-12-19 01:38:57 -08003761 _(FIN_WAIT_1, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08003762 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3763 TCP_ERROR_NONE);
3764 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3765 TCP_ERROR_NONE);
3766 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3767 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003768 _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase96bf632018-12-18 22:44:27 -08003769 _(FIN_WAIT_1, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3770 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003771 _(CLOSING, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras56318932018-05-23 20:44:12 -07003772 _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08003773 _(CLOSING, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003774 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3775 TCP_ERROR_NONE);
3776 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3777 TCP_ERROR_NONE);
3778 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3779 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08003780 _(CLOSING, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3781 _(CLOSING, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3782 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003783 _(CLOSING, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras3c514d52018-12-22 11:39:33 -08003784 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3785 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003786 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3787 TCP_ERROR_NONE);
3788 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3789 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3790 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3791 TCP_ERROR_NONE);
3792 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3793 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3794 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3795 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003796 /* FIN confirming that the peer (app) has closed */
3797 _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasf6d68ed2017-05-07 19:12:02 -07003798 _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003799 _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3800 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003801 _(FIN_WAIT_2, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3802 _(FIN_WAIT_2, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3803 TCP_ERROR_NONE);
Florin Corasf03a59a2017-06-09 21:07:32 -07003804 _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3805 _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3806 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003807 _(CLOSE_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3808 _(CLOSE_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3809 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003810 _(LAST_ACK, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003811 _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003812 _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3813 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3814 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003815 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3816 TCP_ERROR_NONE);
3817 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3818 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3819 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3820 TCP_ERROR_NONE);
3821 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3822 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3823 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3824 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3825 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3826 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasdb84e572017-05-09 18:54:52 -07003827 _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003828 _(LAST_ACK, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3829 TCP_ERROR_NONE);
Florin Corasc01d5782018-10-17 14:53:11 -07003830 _(LAST_ACK, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003831 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3832 TCP_ERROR_NONE);
3833 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3834 TCP_ERROR_NONE);
3835 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3836 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003837 _(TIME_WAIT, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003838 _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3839 _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3840 TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003841 _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003842 _(TIME_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3843 TCP_ERROR_NONE);
Florin Coras50958952017-08-29 14:50:13 -07003844 _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003845 /* RFC793 CLOSED: An incoming segment containing a RST is discarded. An
3846 * incoming segment not containing a RST causes a RST to be sent in
3847 * response.*/
Florin Corasdc629cd2017-05-09 00:52:37 -07003848 _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08003849 _(CLOSED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003850 TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08003851 _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
3852 _(CLOSED, TCP_FLAG_SYN, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
3853 _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3854 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003855#undef _
3856}
3857
Florin Coras0dbd5172018-06-25 16:19:34 -07003858static clib_error_t *
Dave Barach68b0fb02017-02-28 15:15:56 -05003859tcp_input_init (vlib_main_t * vm)
3860{
3861 clib_error_t *error = 0;
3862 tcp_main_t *tm = vnet_get_tcp_main ();
3863
3864 if ((error = vlib_call_init_function (vm, tcp_init)))
3865 return error;
3866
3867 /* Initialize dispatch table. */
3868 tcp_dispatch_table_init (tm);
3869
3870 return error;
3871}
3872
3873VLIB_INIT_FUNCTION (tcp_input_init);
3874
3875/*
3876 * fd.io coding-style-patch-verification: ON
3877 *
3878 * Local Variables:
3879 * eval: (c-set-style "gnu")
3880 * End:
3881 */