blob: b9df88227b530299dfa38098f3983b096c831f4b [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>
Simon Zhang1146ff42019-09-02 22:54:00 +080017#include <vnet/fib/ip4_fib.h>
18#include <vnet/fib/ip6_fib.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050019#include <vnet/tcp/tcp_packet.h>
20#include <vnet/tcp/tcp.h>
21#include <vnet/session/session.h>
22#include <math.h>
23
24static char *tcp_error_strings[] = {
25#define tcp_error(n,s) s,
26#include <vnet/tcp/tcp_error.def>
27#undef tcp_error
28};
29
30/* All TCP nodes have the same outgoing arcs */
31#define foreach_tcp_state_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080032 _ (DROP4, "ip4-drop") \
33 _ (DROP6, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -050034 _ (TCP4_OUTPUT, "tcp4-output") \
35 _ (TCP6_OUTPUT, "tcp6-output")
36
37typedef enum _tcp_established_next
38{
39#define _(s,n) TCP_ESTABLISHED_NEXT_##s,
40 foreach_tcp_state_next
41#undef _
42 TCP_ESTABLISHED_N_NEXT,
43} tcp_established_next_t;
44
45typedef enum _tcp_rcv_process_next
46{
47#define _(s,n) TCP_RCV_PROCESS_NEXT_##s,
48 foreach_tcp_state_next
49#undef _
50 TCP_RCV_PROCESS_N_NEXT,
51} tcp_rcv_process_next_t;
52
53typedef enum _tcp_syn_sent_next
54{
55#define _(s,n) TCP_SYN_SENT_NEXT_##s,
56 foreach_tcp_state_next
57#undef _
58 TCP_SYN_SENT_N_NEXT,
59} tcp_syn_sent_next_t;
60
61typedef enum _tcp_listen_next
62{
63#define _(s,n) TCP_LISTEN_NEXT_##s,
64 foreach_tcp_state_next
65#undef _
66 TCP_LISTEN_N_NEXT,
67} tcp_listen_next_t;
68
69/* Generic, state independent indices */
70typedef enum _tcp_state_next
71{
72#define _(s,n) TCP_NEXT_##s,
73 foreach_tcp_state_next
74#undef _
75 TCP_STATE_N_NEXT,
76} tcp_state_next_t;
77
78#define tcp_next_output(is_ip4) (is_ip4 ? TCP_NEXT_TCP4_OUTPUT \
79 : TCP_NEXT_TCP6_OUTPUT)
80
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080081#define tcp_next_drop(is_ip4) (is_ip4 ? TCP_NEXT_DROP4 \
82 : TCP_NEXT_DROP6)
83
Dave Barach68b0fb02017-02-28 15:15:56 -050084/**
85 * Validate segment sequence number. As per RFC793:
86 *
87 * Segment Receive Test
88 * Length Window
89 * ------- ------- -------------------------------------------
90 * 0 0 SEG.SEQ = RCV.NXT
91 * 0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
92 * >0 0 not acceptable
93 * >0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
94 * or RCV.NXT =< SEG.SEQ+SEG.LEN-1 < RCV.NXT+RCV.WND
95 *
96 * This ultimately consists in checking if segment falls within the window.
97 * The one important difference compared to RFC793 is that we use rcv_las,
98 * or the rcv_nxt at last ack sent instead of rcv_nxt since that's the
99 * peer's reference when computing our receive window.
100 *
Florin Coras6792ec02017-03-13 03:49:51 -0700101 * This:
102 * seq_leq (end_seq, tc->rcv_las + tc->rcv_wnd) && seq_geq (seq, tc->rcv_las)
103 * however, is too strict when we have retransmits. Instead we just check that
104 * the seq is not beyond the right edge and that the end of the segment is not
105 * less than the left edge.
106 *
107 * N.B. rcv_nxt and rcv_wnd are both updated in this node if acks are sent, so
108 * use rcv_nxt in the right edge window test instead of rcv_las.
109 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500110 */
111always_inline u8
112tcp_segment_in_rcv_wnd (tcp_connection_t * tc, u32 seq, u32 end_seq)
113{
Florin Coras6792ec02017-03-13 03:49:51 -0700114 return (seq_geq (end_seq, tc->rcv_las)
115 && seq_leq (seq, tc->rcv_nxt + tc->rcv_wnd));
Dave Barach68b0fb02017-02-28 15:15:56 -0500116}
117
Florin Corasdb84e572017-05-09 18:54:52 -0700118/**
119 * Parse TCP header options.
120 *
121 * @param th TCP header
122 * @param to TCP options data structure to be populated
Florin Coras80231112018-12-05 15:59:31 -0800123 * @param is_syn set if packet is syn
Florin Corasdb84e572017-05-09 18:54:52 -0700124 * @return -1 if parsing failed
125 */
Florin Coras80231112018-12-05 15:59:31 -0800126static inline int
127tcp_options_parse (tcp_header_t * th, tcp_options_t * to, u8 is_syn)
Dave Barach68b0fb02017-02-28 15:15:56 -0500128{
129 const u8 *data;
130 u8 opt_len, opts_len, kind;
131 int j;
132 sack_block_t b;
133
134 opts_len = (tcp_doff (th) << 2) - sizeof (tcp_header_t);
135 data = (const u8 *) (th + 1);
136
137 /* Zero out all flags but those set in SYN */
Florin Corasd6fe5bd2018-10-16 19:52:10 -0700138 to->flags &= (TCP_OPTS_FLAG_SACK_PERMITTED | TCP_OPTS_FLAG_WSCALE
Florin Corasa9e1f7b2019-10-16 12:26:51 -0700139 | TCP_OPTS_FLAG_TSTAMP | TCP_OPTS_FLAG_MSS);
Dave Barach68b0fb02017-02-28 15:15:56 -0500140
141 for (; opts_len > 0; opts_len -= opt_len, data += opt_len)
142 {
143 kind = data[0];
144
145 /* Get options length */
146 if (kind == TCP_OPTION_EOL)
147 break;
148 else if (kind == TCP_OPTION_NOOP)
Florin Corasdb84e572017-05-09 18:54:52 -0700149 {
150 opt_len = 1;
151 continue;
152 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500153 else
154 {
155 /* broken options */
156 if (opts_len < 2)
Florin Corasdb84e572017-05-09 18:54:52 -0700157 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500158 opt_len = data[1];
159
160 /* weird option length */
161 if (opt_len < 2 || opt_len > opts_len)
Florin Corasdb84e572017-05-09 18:54:52 -0700162 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500163 }
164
165 /* Parse options */
166 switch (kind)
167 {
168 case TCP_OPTION_MSS:
Florin Coras80231112018-12-05 15:59:31 -0800169 if (!is_syn)
170 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500171 if ((opt_len == TCP_OPTION_LEN_MSS) && tcp_syn (th))
172 {
173 to->flags |= TCP_OPTS_FLAG_MSS;
174 to->mss = clib_net_to_host_u16 (*(u16 *) (data + 2));
175 }
176 break;
177 case TCP_OPTION_WINDOW_SCALE:
Florin Coras80231112018-12-05 15:59:31 -0800178 if (!is_syn)
179 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500180 if ((opt_len == TCP_OPTION_LEN_WINDOW_SCALE) && tcp_syn (th))
181 {
182 to->flags |= TCP_OPTS_FLAG_WSCALE;
183 to->wscale = data[2];
184 if (to->wscale > TCP_MAX_WND_SCALE)
Florin Corasa9d5bea2018-12-17 08:24:19 -0800185 to->wscale = TCP_MAX_WND_SCALE;
Dave Barach68b0fb02017-02-28 15:15:56 -0500186 }
187 break;
188 case TCP_OPTION_TIMESTAMP:
Florin Coras80231112018-12-05 15:59:31 -0800189 if (is_syn)
190 to->flags |= TCP_OPTS_FLAG_TSTAMP;
191 if ((to->flags & TCP_OPTS_FLAG_TSTAMP)
192 && opt_len == TCP_OPTION_LEN_TIMESTAMP)
Dave Barach68b0fb02017-02-28 15:15:56 -0500193 {
Dave Barach68b0fb02017-02-28 15:15:56 -0500194 to->tsval = clib_net_to_host_u32 (*(u32 *) (data + 2));
195 to->tsecr = clib_net_to_host_u32 (*(u32 *) (data + 6));
196 }
197 break;
198 case TCP_OPTION_SACK_PERMITTED:
Florin Coras80231112018-12-05 15:59:31 -0800199 if (!is_syn)
200 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500201 if (opt_len == TCP_OPTION_LEN_SACK_PERMITTED && tcp_syn (th))
202 to->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
203 break;
204 case TCP_OPTION_SACK_BLOCK:
205 /* If SACK permitted was not advertised or a SYN, break */
206 if ((to->flags & TCP_OPTS_FLAG_SACK_PERMITTED) == 0 || tcp_syn (th))
207 break;
208
209 /* If too short or not correctly formatted, break */
210 if (opt_len < 10 || ((opt_len - 2) % TCP_OPTION_LEN_SACK_BLOCK))
211 break;
212
213 to->flags |= TCP_OPTS_FLAG_SACK;
214 to->n_sack_blocks = (opt_len - 2) / TCP_OPTION_LEN_SACK_BLOCK;
215 vec_reset_length (to->sacks);
216 for (j = 0; j < to->n_sack_blocks; j++)
217 {
Florin Coras3eb50622017-07-13 01:24:57 -0400218 b.start = clib_net_to_host_u32 (*(u32 *) (data + 2 + 8 * j));
219 b.end = clib_net_to_host_u32 (*(u32 *) (data + 6 + 8 * j));
Dave Barach68b0fb02017-02-28 15:15:56 -0500220 vec_add1 (to->sacks, b);
221 }
222 break;
223 default:
224 /* Nothing to see here */
225 continue;
226 }
227 }
Florin Corasdb84e572017-05-09 18:54:52 -0700228 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500229}
230
Florin Corasc28764f2017-04-26 00:08:42 -0700231/**
232 * RFC1323: Check against wrapped sequence numbers (PAWS). If we have
233 * timestamp to echo and it's less than tsval_recent, drop segment
234 * but still send an ACK in order to retain TCP's mechanism for detecting
235 * and recovering from half-open connections
236 *
237 * Or at least that's what the theory says. It seems that this might not work
238 * very well with packet reordering and fast retransmit. XXX
239 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500240always_inline int
241tcp_segment_check_paws (tcp_connection_t * tc)
242{
Florin Corasea41aac2018-12-06 17:24:59 -0800243 return tcp_opts_tstamp (&tc->rcv_opts)
Florin Coras93992a92017-05-24 18:03:56 -0700244 && timestamp_lt (tc->rcv_opts.tsval, tc->tsval_recent);
Dave Barach68b0fb02017-02-28 15:15:56 -0500245}
246
247/**
Florin Corasc28764f2017-04-26 00:08:42 -0700248 * Update tsval recent
249 */
250always_inline void
251tcp_update_timestamp (tcp_connection_t * tc, u32 seq, u32 seq_end)
252{
253 /*
254 * RFC1323: If Last.ACK.sent falls within the range of sequence numbers
255 * of an incoming segment:
256 * SEG.SEQ <= Last.ACK.sent < SEG.SEQ + SEG.LEN
257 * then the TSval from the segment is copied to TS.Recent;
258 * otherwise, the TSval is ignored.
259 */
Florin Corasf1762d62017-09-24 19:43:08 -0400260 if (tcp_opts_tstamp (&tc->rcv_opts) && seq_leq (seq, tc->rcv_las)
261 && seq_leq (tc->rcv_las, seq_end))
Florin Corasc28764f2017-04-26 00:08:42 -0700262 {
Dave Barach2c25a622017-06-26 11:35:07 -0400263 ASSERT (timestamp_leq (tc->tsval_recent, tc->rcv_opts.tsval));
Florin Coras93992a92017-05-24 18:03:56 -0700264 tc->tsval_recent = tc->rcv_opts.tsval;
Florin Corasbe72ae62018-11-01 11:23:03 -0700265 tc->tsval_recent_age = tcp_time_now_w_thread (tc->c_thread_index);
Florin Corasc28764f2017-04-26 00:08:42 -0700266 }
267}
268
269/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500270 * Validate incoming segment as per RFC793 p. 69 and RFC1323 p. 19
271 *
272 * It first verifies if segment has a wrapped sequence number (PAWS) and then
273 * does the processing associated to the first four steps (ignoring security
274 * and precedence): sequence number, rst bit and syn bit checks.
275 *
276 * @return 0 if segments passes validation.
277 */
278static int
Florin Coras7ac053b2018-11-05 15:57:21 -0800279tcp_segment_validate (tcp_worker_ctx_t * wrk, tcp_connection_t * tc0,
280 vlib_buffer_t * b0, tcp_header_t * th0, u32 * error0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500281{
Florin Corasca1c8f32018-05-23 21:01:30 -0700282 /* We could get a burst of RSTs interleaved with acks */
283 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
284 {
285 tcp_send_reset (tc0);
286 *error0 = TCP_ERROR_CONNECTION_CLOSED;
Florin Coras7ac053b2018-11-05 15:57:21 -0800287 goto error;
Florin Corasca1c8f32018-05-23 21:01:30 -0700288 }
289
Dave Barach68b0fb02017-02-28 15:15:56 -0500290 if (PREDICT_FALSE (!tcp_ack (th0) && !tcp_rst (th0) && !tcp_syn (th0)))
Florin Coras00cd22d2018-04-18 13:20:18 -0700291 {
292 *error0 = TCP_ERROR_SEGMENT_INVALID;
Florin Coras7ac053b2018-11-05 15:57:21 -0800293 goto error;
Florin Coras00cd22d2018-04-18 13:20:18 -0700294 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500295
Florin Coras80231112018-12-05 15:59:31 -0800296 if (PREDICT_FALSE (tcp_options_parse (th0, &tc0->rcv_opts, 0)))
Florin Corasdb84e572017-05-09 18:54:52 -0700297 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700298 *error0 = TCP_ERROR_OPTIONS;
Florin Coras7ac053b2018-11-05 15:57:21 -0800299 goto error;
Florin Corasdb84e572017-05-09 18:54:52 -0700300 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500301
Florin Coras00cd22d2018-04-18 13:20:18 -0700302 if (PREDICT_FALSE (tcp_segment_check_paws (tc0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500303 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700304 *error0 = TCP_ERROR_PAWS;
Florin Corasa436a422019-08-20 07:09:31 -0700305 TCP_EVT (TCP_EVT_PAWS_FAIL, tc0, vnet_buffer (b0)->tcp.seq_number,
306 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500307
308 /* If it just so happens that a segment updates tsval_recent for a
309 * segment over 24 days old, invalidate tsval_recent. */
310 if (timestamp_lt (tc0->tsval_recent_age + TCP_PAWS_IDLE,
Florin Corasbe72ae62018-11-01 11:23:03 -0700311 tcp_time_now_w_thread (tc0->c_thread_index)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500312 {
Florin Corasea41aac2018-12-06 17:24:59 -0800313 tc0->tsval_recent = tc0->rcv_opts.tsval;
Florin Coras91236ce2018-12-16 11:41:45 -0800314 clib_warning ("paws failed: 24-day old segment");
Dave Barach68b0fb02017-02-28 15:15:56 -0500315 }
Florin Coras91236ce2018-12-16 11:41:45 -0800316 /* Drop after ack if not rst. Resets can fail paws check as per
317 * RFC 7323 sec. 5.2: When an <RST> segment is received, it MUST NOT
318 * be subjected to the PAWS check by verifying an acceptable value in
319 * SEG.TSval */
320 else if (!tcp_rst (th0))
Dave Barach68b0fb02017-02-28 15:15:56 -0500321 {
Florin Coras26dd6de2019-07-23 23:54:47 -0700322 tcp_program_ack (tc0);
Florin Corasa436a422019-08-20 07:09:31 -0700323 TCP_EVT (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
Florin Coras91236ce2018-12-16 11:41:45 -0800324 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500325 }
326 }
327
328 /* 1st: check sequence number */
329 if (!tcp_segment_in_rcv_wnd (tc0, vnet_buffer (b0)->tcp.seq_number,
330 vnet_buffer (b0)->tcp.seq_end))
331 {
Florin Coras830fe732019-02-15 18:20:58 -0800332 /* SYN/SYN-ACK retransmit */
333 if (tcp_syn (th0)
334 && vnet_buffer (b0)->tcp.seq_number == tc0->rcv_nxt - 1)
335 {
336 tcp_options_parse (th0, &tc0->rcv_opts, 1);
337 if (tc0->state == TCP_STATE_SYN_RCVD)
338 {
339 tcp_send_synack (tc0);
Florin Corasa436a422019-08-20 07:09:31 -0700340 TCP_EVT (TCP_EVT_SYN_RCVD, tc0, 0);
Florin Coras830fe732019-02-15 18:20:58 -0800341 *error0 = TCP_ERROR_SYNS_RCVD;
342 }
343 else
344 {
Florin Coras26dd6de2019-07-23 23:54:47 -0700345 tcp_program_ack (tc0);
Florin Corasa436a422019-08-20 07:09:31 -0700346 TCP_EVT (TCP_EVT_SYNACK_RCVD, tc0);
Florin Coras830fe732019-02-15 18:20:58 -0800347 *error0 = TCP_ERROR_SYN_ACKS_RCVD;
348 }
349 goto error;
350 }
351
Florin Coras6792ec02017-03-13 03:49:51 -0700352 /* If our window is 0 and the packet is in sequence, let it pass
Florin Coras00cd22d2018-04-18 13:20:18 -0700353 * through for ack processing. It should be dropped later. */
Florin Coras7e74bf32019-03-06 16:51:58 -0800354 if (tc0->rcv_wnd < tc0->snd_mss
Florin Coras222e1f412019-02-16 20:47:32 -0800355 && tc0->rcv_nxt == vnet_buffer (b0)->tcp.seq_number)
356 goto check_reset;
357
358 /* If we entered recovery and peer did so as well, there's a chance that
359 * dup acks won't be acceptable on either end because seq_end may be less
360 * than rcv_las. This can happen if acks are lost in both directions. */
361 if (tcp_in_recovery (tc0)
362 && seq_geq (vnet_buffer (b0)->tcp.seq_number,
363 tc0->rcv_las - tc0->rcv_wnd)
364 && seq_leq (vnet_buffer (b0)->tcp.seq_end,
365 tc0->rcv_nxt + tc0->rcv_wnd))
366 goto check_reset;
367
368 *error0 = TCP_ERROR_RCV_WND;
369
Florin Corasa495a3e2019-08-29 18:33:24 -0700370 /* If we advertised a zero rcv_wnd and the segment is in the past or the
371 * next one that we expect, it is probably a window probe */
372 if ((tc0->flags & TCP_CONN_ZERO_RWND_SENT)
373 && seq_lt (vnet_buffer (b0)->tcp.seq_end,
374 tc0->rcv_las + tc0->rcv_opts.mss))
375 *error0 = TCP_ERROR_ZERO_RWND;
376
Florin Corasedfe0ee2019-07-29 18:13:25 -0700377 tc0->errors.below_data_wnd += seq_lt (vnet_buffer (b0)->tcp.seq_end,
378 tc0->rcv_las);
379
Florin Coras222e1f412019-02-16 20:47:32 -0800380 /* If not RST, send dup ack */
381 if (!tcp_rst (th0))
Florin Coras6792ec02017-03-13 03:49:51 -0700382 {
Florin Coras26dd6de2019-07-23 23:54:47 -0700383 tcp_program_dupack (tc0);
Florin Corasa436a422019-08-20 07:09:31 -0700384 TCP_EVT (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
Florin Coras6792ec02017-03-13 03:49:51 -0700385 }
Florin Coras222e1f412019-02-16 20:47:32 -0800386 goto error;
387
388 check_reset:
389 ;
Dave Barach68b0fb02017-02-28 15:15:56 -0500390 }
391
392 /* 2nd: check the RST bit */
Florin Coras00cd22d2018-04-18 13:20:18 -0700393 if (PREDICT_FALSE (tcp_rst (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500394 {
Florin Corasd79b41e2017-03-04 05:37:52 -0800395 tcp_connection_reset (tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -0700396 *error0 = TCP_ERROR_RST_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -0800397 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500398 }
399
400 /* 3rd: check security and precedence (skip) */
401
Florin Coras830fe732019-02-15 18:20:58 -0800402 /* 4th: check the SYN bit (in window) */
Florin Coras00cd22d2018-04-18 13:20:18 -0700403 if (PREDICT_FALSE (tcp_syn (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500404 {
Florin Corasd567a8d2019-06-07 12:38:55 -0700405 /* As per RFC5961 send challenge ack instead of reset */
Florin Coras26dd6de2019-07-23 23:54:47 -0700406 tcp_program_ack (tc0);
Florin Coras830fe732019-02-15 18:20:58 -0800407 *error0 = TCP_ERROR_SPURIOUS_SYN;
Florin Coras00cd22d2018-04-18 13:20:18 -0700408 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500409 }
410
Florin Corasc28764f2017-04-26 00:08:42 -0700411 /* If segment in window, save timestamp */
412 tcp_update_timestamp (tc0, vnet_buffer (b0)->tcp.seq_number,
413 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500414 return 0;
Florin Coras00cd22d2018-04-18 13:20:18 -0700415
Florin Coras00cd22d2018-04-18 13:20:18 -0700416error:
Florin Coras00cd22d2018-04-18 13:20:18 -0700417 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500418}
419
420always_inline int
Florin Corasf65074e2019-03-31 17:17:11 -0700421tcp_rcv_ack_no_cc (tcp_connection_t * tc, vlib_buffer_t * b, u32 * error)
Dave Barach68b0fb02017-02-28 15:15:56 -0500422{
423 /* SND.UNA =< SEG.ACK =< SND.NXT */
Florin Corasf65074e2019-03-31 17:17:11 -0700424 if (!(seq_leq (tc->snd_una, vnet_buffer (b)->tcp.ack_number)
425 && seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
426 {
Florin Coras282a3cb2019-04-02 21:43:38 -0700427 if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)
428 && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
Florin Corasf65074e2019-03-31 17:17:11 -0700429 {
430 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
431 goto acceptable;
432 }
433 *error = TCP_ERROR_ACK_INVALID;
434 return -1;
435 }
436
437acceptable:
438 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
439 tc->snd_una = vnet_buffer (b)->tcp.ack_number;
440 *error = TCP_ERROR_ACK_OK;
441 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500442}
443
444/**
445 * Compute smoothed RTT as per VJ's '88 SIGCOMM and RFC6298
446 *
447 * Note that although the original article, srtt and rttvar are scaled
448 * to minimize round-off errors, here we don't. Instead, we rely on
449 * better precision time measurements.
450 *
451 * TODO support us rtt resolution
452 */
453static void
454tcp_estimate_rtt (tcp_connection_t * tc, u32 mrtt)
455{
Florin Corasf03a59a2017-06-09 21:07:32 -0700456 int err, diff;
Dave Barach68b0fb02017-02-28 15:15:56 -0500457
458 if (tc->srtt != 0)
459 {
460 err = mrtt - tc->srtt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500461
462 /* XXX Drop in RTT results in RTTVAR increase and bigger RTO.
463 * The increase should be bound */
Florin Corasf03a59a2017-06-09 21:07:32 -0700464 tc->srtt = clib_max ((int) tc->srtt + (err >> 3), 1);
465 diff = (clib_abs (err) - (int) tc->rttvar) >> 2;
466 tc->rttvar = clib_max ((int) tc->rttvar + diff, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500467 }
468 else
469 {
470 /* First measurement. */
471 tc->srtt = mrtt;
Florin Coras6792ec02017-03-13 03:49:51 -0700472 tc->rttvar = mrtt >> 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500473 }
474}
475
Filip Tehlare275bed2019-03-06 00:06:56 -0800476#ifndef CLIB_MARCH_VARIANT
Florin Coras93992a92017-05-24 18:03:56 -0700477void
478tcp_update_rto (tcp_connection_t * tc)
479{
480 tc->rto = clib_min (tc->srtt + (tc->rttvar << 2), TCP_RTO_MAX);
Florin Corasf03a59a2017-06-09 21:07:32 -0700481 tc->rto = clib_max (tc->rto, TCP_RTO_MIN);
Florin Coras93992a92017-05-24 18:03:56 -0700482}
Filip Tehlare275bed2019-03-06 00:06:56 -0800483#endif /* CLIB_MARCH_VARIANT */
Florin Coras93992a92017-05-24 18:03:56 -0700484
Florin Corasf1762d62017-09-24 19:43:08 -0400485/**
486 * Update RTT estimate and RTO timer
Dave Barach68b0fb02017-02-28 15:15:56 -0500487 *
488 * Measure RTT: We have two sources of RTT measurements: TSOPT and ACK
489 * timing. Middle boxes are known to fiddle with TCP options so we
490 * should give higher priority to ACK timing.
491 *
Florin Corasf1762d62017-09-24 19:43:08 -0400492 * This should be called only if previously sent bytes have been acked.
493 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500494 * return 1 if valid rtt 0 otherwise
495 */
496static int
Florin Coras1dbda642019-09-11 13:42:57 -0700497tcp_update_rtt (tcp_connection_t * tc, tcp_rate_sample_t * rs, u32 ack)
Dave Barach68b0fb02017-02-28 15:15:56 -0500498{
499 u32 mrtt = 0;
500
501 /* Karn's rule, part 1. Don't use retransmitted segments to estimate
502 * RTT because they're ambiguous. */
Florin Coras1dbda642019-09-11 13:42:57 -0700503 if (tcp_in_cong_recovery (tc))
Florin Coras3ec66b02018-08-23 16:27:05 -0700504 {
Florin Coras1dbda642019-09-11 13:42:57 -0700505 /* Accept rtt estimates for samples that have not been retransmitted */
Florin Corasbbcfaac2019-10-10 13:52:04 -0700506 if ((tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
507 && !(rs->flags & TCP_BTS_IS_RXT))
Florin Coras1dbda642019-09-11 13:42:57 -0700508 {
509 mrtt = rs->rtt_time * THZ;
510 goto estimate_rtt;
511 }
Florin Coras3ec66b02018-08-23 16:27:05 -0700512 goto done;
513 }
Florin Corasf1762d62017-09-24 19:43:08 -0400514
515 if (tc->rtt_ts && seq_geq (ack, tc->rtt_seq))
Dave Barach68b0fb02017-02-28 15:15:56 -0500516 {
Florin Corasefefc6b2018-11-07 12:49:19 -0800517 f64 sample = tcp_time_now_us (tc->c_thread_index) - tc->rtt_ts;
518 tc->mrtt_us = tc->mrtt_us + (sample - tc->mrtt_us) * 0.125;
519 mrtt = clib_max ((u32) (sample * THZ), 1);
520 /* Allow measuring of a new RTT */
521 tc->rtt_ts = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500522 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500523 /* As per RFC7323 TSecr can be used for RTTM only if the segment advances
524 * snd_una, i.e., the left side of the send window:
Florin Corasf1762d62017-09-24 19:43:08 -0400525 * seq_lt (tc->snd_una, ack). This is a condition for calling update_rtt */
526 else if (tcp_opts_tstamp (&tc->rcv_opts) && tc->rcv_opts.tsecr)
Dave Barach68b0fb02017-02-28 15:15:56 -0500527 {
Vladimir Kropylev1cfcb782019-07-02 11:25:26 +0300528 u32 now = tcp_tstamp (tc);
Florin Corasbe72ae62018-11-01 11:23:03 -0700529 mrtt = clib_max (now - tc->rcv_opts.tsecr, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500530 }
531
Florin Coras1dbda642019-09-11 13:42:57 -0700532estimate_rtt:
533
Florin Corasf1762d62017-09-24 19:43:08 -0400534 /* Ignore dubious measurements */
535 if (mrtt == 0 || mrtt > TCP_RTT_MAX)
536 goto done;
537
538 tcp_estimate_rtt (tc, mrtt);
539
540done:
541
Florin Corasf1762d62017-09-24 19:43:08 -0400542 /* If we got here something must've been ACKed so make sure boff is 0,
Florin Coras3ec66b02018-08-23 16:27:05 -0700543 * even if mrtt is not valid since we update the rto lower */
Florin Corasf1762d62017-09-24 19:43:08 -0400544 tc->rto_boff = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700545 tcp_update_rto (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500546
Florin Coras3af90fc2017-05-03 21:09:42 -0700547 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500548}
549
Florin Corasefefc6b2018-11-07 12:49:19 -0800550static void
551tcp_estimate_initial_rtt (tcp_connection_t * tc)
552{
553 u8 thread_index = vlib_num_workers ()? 1 : 0;
554 int mrtt;
555
556 if (tc->rtt_ts)
557 {
558 tc->mrtt_us = tcp_time_now_us (thread_index) - tc->rtt_ts;
Florin Coras222e1f412019-02-16 20:47:32 -0800559 tc->mrtt_us = clib_max (tc->mrtt_us, 0.0001);
Florin Corasefefc6b2018-11-07 12:49:19 -0800560 mrtt = clib_max ((u32) (tc->mrtt_us * THZ), 1);
561 tc->rtt_ts = 0;
562 }
563 else
564 {
565 mrtt = tcp_time_now_w_thread (thread_index) - tc->rcv_opts.tsecr;
Florin Coras4af830c2018-12-04 09:21:36 -0800566 mrtt = clib_max (mrtt, 1);
Florin Coras222e1f412019-02-16 20:47:32 -0800567 /* Due to retransmits we don't know the initial mrtt */
568 if (tc->rto_boff && mrtt > 1 * THZ)
569 mrtt = 1 * THZ;
Florin Corasefefc6b2018-11-07 12:49:19 -0800570 tc->mrtt_us = (f64) mrtt *TCP_TICK;
Florin Corasefefc6b2018-11-07 12:49:19 -0800571 }
572
573 if (mrtt > 0 && mrtt < TCP_RTT_MAX)
574 tcp_estimate_rtt (tc, mrtt);
Florin Coras54ddf432018-12-21 13:54:09 -0800575 tcp_update_rto (tc);
Florin Corasefefc6b2018-11-07 12:49:19 -0800576}
577
Dave Barach68b0fb02017-02-28 15:15:56 -0500578/**
Florin Coras9ece3c02018-11-05 11:06:53 -0800579 * Dequeue bytes for connections that have received acks in last burst
Dave Barach68b0fb02017-02-28 15:15:56 -0500580 */
581static void
Florin Coras9ece3c02018-11-05 11:06:53 -0800582tcp_handle_postponed_dequeues (tcp_worker_ctx_t * wrk)
Dave Barach68b0fb02017-02-28 15:15:56 -0500583{
Florin Coras9ece3c02018-11-05 11:06:53 -0800584 u32 thread_index = wrk->vm->thread_index;
585 u32 *pending_deq_acked;
586 tcp_connection_t *tc;
587 int i;
Florin Coras93992a92017-05-24 18:03:56 -0700588
Florin Coras9ece3c02018-11-05 11:06:53 -0800589 if (!vec_len (wrk->pending_deq_acked))
590 return;
Dave Barach68b0fb02017-02-28 15:15:56 -0500591
Florin Coras9ece3c02018-11-05 11:06:53 -0800592 pending_deq_acked = wrk->pending_deq_acked;
593 for (i = 0; i < vec_len (pending_deq_acked); i++)
594 {
595 tc = tcp_connection_get (pending_deq_acked[i], thread_index);
596 tc->flags &= ~TCP_CONN_DEQ_PENDING;
Florin Coras93992a92017-05-24 18:03:56 -0700597
Florin Coras11e9e352019-11-13 19:09:47 -0800598 if (PREDICT_FALSE (!tc->burst_acked))
599 continue;
600
601 /* Dequeue the newly ACKed bytes */
602 session_tx_fifo_dequeue_drop (&tc->connection, tc->burst_acked);
603 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
604
605 if (PREDICT_FALSE (tc->flags & TCP_CONN_PSH_PENDING))
Florin Coras42ceddb2018-12-12 10:56:01 -0800606 {
Florin Coras11e9e352019-11-13 19:09:47 -0800607 if (seq_leq (tc->psh_seq, tc->snd_una))
608 tc->flags &= ~TCP_CONN_PSH_PENDING;
Florin Coras42ceddb2018-12-12 10:56:01 -0800609 }
610
Florin Coras11e9e352019-11-13 19:09:47 -0800611 /* If everything has been acked, stop retransmit timer
612 * otherwise update. */
613 tcp_retransmit_timer_update (tc);
Florin Corasb3dce892019-10-30 09:22:14 -0700614
Florin Coras11e9e352019-11-13 19:09:47 -0800615 /* Update pacer based on our new cwnd estimate */
616 tcp_connection_tx_pacer_update (tc);
617
Florin Corasb3dce892019-10-30 09:22:14 -0700618 tc->burst_acked = 0;
Florin Coras9ece3c02018-11-05 11:06:53 -0800619 }
620 _vec_len (wrk->pending_deq_acked) = 0;
621}
622
623static void
624tcp_program_dequeue (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
625{
626 if (!(tc->flags & TCP_CONN_DEQ_PENDING))
627 {
628 vec_add1 (wrk->pending_deq_acked, tc->c_c_index);
629 tc->flags |= TCP_CONN_DEQ_PENDING;
630 }
Florin Coras558e3e02019-09-06 12:56:58 -0700631 tc->burst_acked += tc->bytes_acked;
Dave Barach68b0fb02017-02-28 15:15:56 -0500632}
633
Filip Tehlare275bed2019-03-06 00:06:56 -0800634#ifndef CLIB_MARCH_VARIANT
Florin Coras0dbd5172018-06-25 16:19:34 -0700635static u32
636scoreboard_hole_index (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
637{
638 ASSERT (!pool_is_free_index (sb->holes, hole - sb->holes));
639 return hole - sb->holes;
640}
641
642static u32
643scoreboard_hole_bytes (sack_scoreboard_hole_t * hole)
644{
645 return hole->end - hole->start;
646}
647
648sack_scoreboard_hole_t *
649scoreboard_get_hole (sack_scoreboard_t * sb, u32 index)
650{
651 if (index != TCP_INVALID_SACK_HOLE_INDEX)
652 return pool_elt_at_index (sb->holes, index);
653 return 0;
654}
655
656sack_scoreboard_hole_t *
657scoreboard_next_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
658{
659 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
660 return pool_elt_at_index (sb->holes, hole->next);
661 return 0;
662}
663
664sack_scoreboard_hole_t *
665scoreboard_prev_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
666{
667 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
668 return pool_elt_at_index (sb->holes, hole->prev);
669 return 0;
670}
671
672sack_scoreboard_hole_t *
673scoreboard_first_hole (sack_scoreboard_t * sb)
674{
675 if (sb->head != TCP_INVALID_SACK_HOLE_INDEX)
676 return pool_elt_at_index (sb->holes, sb->head);
677 return 0;
678}
679
680sack_scoreboard_hole_t *
681scoreboard_last_hole (sack_scoreboard_t * sb)
682{
683 if (sb->tail != TCP_INVALID_SACK_HOLE_INDEX)
684 return pool_elt_at_index (sb->holes, sb->tail);
685 return 0;
686}
687
688static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500689scoreboard_remove_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
690{
691 sack_scoreboard_hole_t *next, *prev;
692
693 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
694 {
695 next = pool_elt_at_index (sb->holes, hole->next);
696 next->prev = hole->prev;
697 }
Florin Coras93992a92017-05-24 18:03:56 -0700698 else
699 {
700 sb->tail = hole->prev;
701 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500702
703 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
704 {
705 prev = pool_elt_at_index (sb->holes, hole->prev);
706 prev->next = hole->next;
707 }
708 else
709 {
710 sb->head = hole->next;
711 }
712
Florin Coras93992a92017-05-24 18:03:56 -0700713 if (scoreboard_hole_index (sb, hole) == sb->cur_rxt_hole)
714 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
715
Florin Coras3eb50622017-07-13 01:24:57 -0400716 /* Poison the entry */
717 if (CLIB_DEBUG > 0)
Dave Barachb7b92992018-10-17 10:38:51 -0400718 clib_memset (hole, 0xfe, sizeof (*hole));
Florin Coras3eb50622017-07-13 01:24:57 -0400719
Dave Barach68b0fb02017-02-28 15:15:56 -0500720 pool_put (sb->holes, hole);
721}
722
Florin Coras0dbd5172018-06-25 16:19:34 -0700723static sack_scoreboard_hole_t *
Florin Coras6792ec02017-03-13 03:49:51 -0700724scoreboard_insert_hole (sack_scoreboard_t * sb, u32 prev_index,
Dave Barach68b0fb02017-02-28 15:15:56 -0500725 u32 start, u32 end)
726{
Florin Coras6792ec02017-03-13 03:49:51 -0700727 sack_scoreboard_hole_t *hole, *next, *prev;
Dave Barach68b0fb02017-02-28 15:15:56 -0500728 u32 hole_index;
729
730 pool_get (sb->holes, hole);
Dave Barachb7b92992018-10-17 10:38:51 -0400731 clib_memset (hole, 0, sizeof (*hole));
Dave Barach68b0fb02017-02-28 15:15:56 -0500732
733 hole->start = start;
734 hole->end = end;
Florin Coras3eb50622017-07-13 01:24:57 -0400735 hole_index = scoreboard_hole_index (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500736
Florin Coras6792ec02017-03-13 03:49:51 -0700737 prev = scoreboard_get_hole (sb, prev_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500738 if (prev)
739 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700740 hole->prev = prev_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500741 hole->next = prev->next;
742
743 if ((next = scoreboard_next_hole (sb, hole)))
744 next->prev = hole_index;
Florin Corasf03a59a2017-06-09 21:07:32 -0700745 else
746 sb->tail = hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500747
748 prev->next = hole_index;
749 }
750 else
751 {
752 sb->head = hole_index;
753 hole->prev = TCP_INVALID_SACK_HOLE_INDEX;
754 hole->next = TCP_INVALID_SACK_HOLE_INDEX;
755 }
756
757 return hole;
758}
759
Florin Coras36ebcff2019-09-12 18:36:44 -0700760always_inline void
761scoreboard_update_sacked_rxt (sack_scoreboard_t * sb, u32 start, u32 end,
762 u8 has_rxt)
763{
764 if (!has_rxt || seq_geq (start, sb->high_rxt))
765 return;
766
767 sb->rxt_sacked +=
768 seq_lt (end, sb->high_rxt) ? (end - start) : (sb->high_rxt - start);
769}
Florin Coras558e3e02019-09-06 12:56:58 -0700770
771always_inline void
772scoreboard_update_bytes (sack_scoreboard_t * sb, u32 ack, u32 snd_mss)
Florin Coras93992a92017-05-24 18:03:56 -0700773{
Florin Corasecbd20b2018-10-17 23:34:54 -0700774 sack_scoreboard_hole_t *left, *right;
Florin Coras558e3e02019-09-06 12:56:58 -0700775 u32 sacked = 0, blks = 0, old_sacked;
776
777 old_sacked = sb->sacked_bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700778
Florin Corasb3f58e12019-07-05 18:31:54 -0700779 sb->last_lost_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700780 sb->lost_bytes = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700781 sb->sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700782
Florin Coras558e3e02019-09-06 12:56:58 -0700783 right = scoreboard_last_hole (sb);
784 if (!right)
Florin Coras93992a92017-05-24 18:03:56 -0700785 {
Florin Coras558e3e02019-09-06 12:56:58 -0700786 sb->sacked_bytes = sb->high_sacked - ack;
Florin Coras479f7fe2020-01-08 00:33:02 +0000787 sb->last_sacked_bytes = sb->sacked_bytes
788 - (old_sacked - sb->last_bytes_delivered);
Florin Coras558e3e02019-09-06 12:56:58 -0700789 return;
790 }
791
792 if (seq_gt (sb->high_sacked, right->end))
793 {
794 sacked = sb->high_sacked - right->end;
Florin Coras93992a92017-05-24 18:03:56 -0700795 blks = 1;
796 }
797
Florin Coras558e3e02019-09-06 12:56:58 -0700798 while (sacked < (TCP_DUPACK_THRESHOLD - 1) * snd_mss
799 && blks < TCP_DUPACK_THRESHOLD)
Florin Coras93992a92017-05-24 18:03:56 -0700800 {
Florin Coras558e3e02019-09-06 12:56:58 -0700801 if (right->is_lost)
802 sb->lost_bytes += scoreboard_hole_bytes (right);
Florin Coras93992a92017-05-24 18:03:56 -0700803
Florin Coras558e3e02019-09-06 12:56:58 -0700804 left = scoreboard_prev_hole (sb, right);
805 if (!left)
Florin Coras9f9e9692018-10-19 17:49:00 -0700806 {
Florin Coras558e3e02019-09-06 12:56:58 -0700807 ASSERT (right->start == ack || sb->is_reneging);
808 sacked += right->start - ack;
809 right = 0;
810 break;
Florin Coras9f9e9692018-10-19 17:49:00 -0700811 }
Florin Coras558e3e02019-09-06 12:56:58 -0700812
813 sacked += right->start - left->end;
814 blks++;
815 right = left;
Florin Coras93992a92017-05-24 18:03:56 -0700816 }
Florin Coras9f9e9692018-10-19 17:49:00 -0700817
Florin Coras558e3e02019-09-06 12:56:58 -0700818 /* right is first lost */
819 while (right)
820 {
821 sb->lost_bytes += scoreboard_hole_bytes (right);
Florin Coras36ebcff2019-09-12 18:36:44 -0700822 sb->last_lost_bytes += right->is_lost ? 0 : (right->end - right->start);
Florin Coras558e3e02019-09-06 12:56:58 -0700823 right->is_lost = 1;
824 left = scoreboard_prev_hole (sb, right);
825 if (!left)
826 {
827 ASSERT (right->start == ack || sb->is_reneging);
828 sacked += right->start - ack;
829 break;
830 }
831 sacked += right->start - left->end;
832 right = left;
833 }
834
835 sb->sacked_bytes = sacked;
836 sb->last_sacked_bytes = sacked - (old_sacked - sb->last_bytes_delivered);
Florin Coras93992a92017-05-24 18:03:56 -0700837}
838
839/**
840 * Figure out the next hole to retransmit
841 *
842 * Follows logic proposed in RFC6675 Sec. 4, NextSeg()
843 */
844sack_scoreboard_hole_t *
845scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
846 sack_scoreboard_hole_t * start,
Florin Coras36ee9f12018-11-02 12:52:10 -0700847 u8 have_unsent, u8 * can_rescue, u8 * snd_limited)
Florin Coras93992a92017-05-24 18:03:56 -0700848{
849 sack_scoreboard_hole_t *hole = 0;
850
851 hole = start ? start : scoreboard_first_hole (sb);
852 while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost)
853 hole = scoreboard_next_hole (sb, hole);
854
855 /* Nothing, return */
856 if (!hole)
857 {
858 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
859 return 0;
860 }
861
862 /* Rule (1): if higher than rxt, less than high_sacked and lost */
863 if (hole->is_lost && seq_lt (hole->start, sb->high_sacked))
864 {
865 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
866 }
867 else
868 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700869 /* Rule (2): available unsent data */
870 if (have_unsent)
Florin Coras93992a92017-05-24 18:03:56 -0700871 {
Florin Coras93992a92017-05-24 18:03:56 -0700872 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
Florin Coras36ee9f12018-11-02 12:52:10 -0700873 return 0;
Florin Coras93992a92017-05-24 18:03:56 -0700874 }
875 /* Rule (3): if hole not lost */
876 else if (seq_lt (hole->start, sb->high_sacked))
877 {
Florin Coras81cb8e42019-10-22 19:44:45 -0700878 /* And we didn't already retransmit it */
879 if (seq_leq (hole->end, sb->high_rxt))
880 {
881 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
882 return 0;
883 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700884 *snd_limited = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700885 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
886 }
887 /* Rule (4): if hole beyond high_sacked */
888 else
889 {
890 ASSERT (seq_geq (hole->start, sb->high_sacked));
891 *snd_limited = 1;
892 *can_rescue = 1;
893 /* HighRxt MUST NOT be updated */
894 return 0;
895 }
896 }
897
898 if (hole && seq_lt (sb->high_rxt, hole->start))
899 sb->high_rxt = hole->start;
900
901 return hole;
902}
903
Florin Coras36ebcff2019-09-12 18:36:44 -0700904void
Florin Corasbe237bf2019-09-27 08:16:40 -0700905scoreboard_init_rxt (sack_scoreboard_t * sb, u32 snd_una)
Florin Coras93992a92017-05-24 18:03:56 -0700906{
907 sack_scoreboard_hole_t *hole;
908 hole = scoreboard_first_hole (sb);
Florin Coras3eb50622017-07-13 01:24:57 -0400909 if (hole)
910 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700911 snd_una = seq_gt (snd_una, hole->start) ? snd_una : hole->start;
Florin Coras3eb50622017-07-13 01:24:57 -0400912 sb->cur_rxt_hole = sb->head;
913 }
Florin Coras36ee9f12018-11-02 12:52:10 -0700914 sb->high_rxt = snd_una;
915 sb->rescue_rxt = snd_una - 1;
Florin Coras3eb50622017-07-13 01:24:57 -0400916}
917
Florin Coras0dbd5172018-06-25 16:19:34 -0700918void
919scoreboard_init (sack_scoreboard_t * sb)
920{
921 sb->head = TCP_INVALID_SACK_HOLE_INDEX;
922 sb->tail = TCP_INVALID_SACK_HOLE_INDEX;
923 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
924}
925
926void
927scoreboard_clear (sack_scoreboard_t * sb)
928{
929 sack_scoreboard_hole_t *hole;
930 while ((hole = scoreboard_first_hole (sb)))
931 {
932 scoreboard_remove_hole (sb, hole);
933 }
934 ASSERT (sb->head == sb->tail && sb->head == TCP_INVALID_SACK_HOLE_INDEX);
935 ASSERT (pool_elts (sb->holes) == 0);
936 sb->sacked_bytes = 0;
937 sb->last_sacked_bytes = 0;
938 sb->last_bytes_delivered = 0;
Florin Coras0dbd5172018-06-25 16:19:34 -0700939 sb->lost_bytes = 0;
Florin Corasb3f58e12019-07-05 18:31:54 -0700940 sb->last_lost_bytes = 0;
Florin Coras0dbd5172018-06-25 16:19:34 -0700941 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
Florin Coras558e3e02019-09-06 12:56:58 -0700942 sb->is_reneging = 0;
Florin Coras0dbd5172018-06-25 16:19:34 -0700943}
Florin Coras36ebcff2019-09-12 18:36:44 -0700944
945void
946scoreboard_clear_reneging (sack_scoreboard_t * sb, u32 start, u32 end)
947{
948 sack_scoreboard_hole_t *last_hole;
949
950 clib_warning ("sack reneging");
951
952 scoreboard_clear (sb);
953 last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
954 start, end);
955 last_hole->is_lost = 1;
956 sb->tail = scoreboard_hole_index (sb, last_hole);
957 sb->high_sacked = start;
Florin Corasbe237bf2019-09-27 08:16:40 -0700958 scoreboard_init_rxt (sb, start);
Florin Coras36ebcff2019-09-12 18:36:44 -0700959}
960
Filip Tehlare275bed2019-03-06 00:06:56 -0800961#endif /* CLIB_MARCH_VARIANT */
Florin Coras0dbd5172018-06-25 16:19:34 -0700962
Florin Coras3eb50622017-07-13 01:24:57 -0400963/**
964 * Test that scoreboard is sane after recovery
965 *
966 * Returns 1 if scoreboard is empty or if first hole beyond
967 * snd_una.
968 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700969static u8
Florin Coras3eb50622017-07-13 01:24:57 -0400970tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc)
971{
972 sack_scoreboard_hole_t *hole;
973 hole = scoreboard_first_hole (&tc->sack_sb);
Florin Corasecbd20b2018-10-17 23:34:54 -0700974 return (!hole || (seq_geq (hole->start, tc->snd_una)
Florin Coras47596832019-03-12 18:58:54 -0700975 && seq_lt (hole->end, tc->snd_nxt)));
Florin Coras93992a92017-05-24 18:03:56 -0700976}
977
Filip Tehlare275bed2019-03-06 00:06:56 -0800978#ifndef CLIB_MARCH_VARIANT
Florin Corasb3f58e12019-07-05 18:31:54 -0700979
Florin Coras93992a92017-05-24 18:03:56 -0700980void
Dave Barach68b0fb02017-02-28 15:15:56 -0500981tcp_rcv_sacks (tcp_connection_t * tc, u32 ack)
982{
Florin Coras558e3e02019-09-06 12:56:58 -0700983 sack_scoreboard_hole_t *hole, *next_hole;
Florin Corasb3f58e12019-07-05 18:31:54 -0700984 sack_scoreboard_t *sb = &tc->sack_sb;
Florin Coras558e3e02019-09-06 12:56:58 -0700985 sack_block_t *blk, *rcv_sacks;
986 u32 blk_index = 0, i, j;
Florin Coras36ebcff2019-09-12 18:36:44 -0700987 u8 has_rxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500988
Florin Coras6792ec02017-03-13 03:49:51 -0700989 sb->last_sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700990 sb->last_bytes_delivered = 0;
Florin Coras36ebcff2019-09-12 18:36:44 -0700991 sb->rxt_sacked = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700992
Florin Coras93992a92017-05-24 18:03:56 -0700993 if (!tcp_opts_sack (&tc->rcv_opts)
994 && sb->head == TCP_INVALID_SACK_HOLE_INDEX)
Dave Barach68b0fb02017-02-28 15:15:56 -0500995 return;
996
Florin Coras36ebcff2019-09-12 18:36:44 -0700997 has_rxt = tcp_in_cong_recovery (tc);
998
Dave Barach68b0fb02017-02-28 15:15:56 -0500999 /* Remove invalid blocks */
Florin Coras93992a92017-05-24 18:03:56 -07001000 blk = tc->rcv_opts.sacks;
1001 while (blk < vec_end (tc->rcv_opts.sacks))
Florin Coras6792ec02017-03-13 03:49:51 -07001002 {
1003 if (seq_lt (blk->start, blk->end)
1004 && seq_gt (blk->start, tc->snd_una)
Florin Corasab86f862018-12-06 18:24:19 -08001005 && seq_gt (blk->start, ack)
Florin Coras47596832019-03-12 18:58:54 -07001006 && seq_lt (blk->start, tc->snd_nxt)
1007 && seq_leq (blk->end, tc->snd_nxt))
Florin Coras6792ec02017-03-13 03:49:51 -07001008 {
1009 blk++;
1010 continue;
1011 }
Florin Coras93992a92017-05-24 18:03:56 -07001012 vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks);
Florin Coras6792ec02017-03-13 03:49:51 -07001013 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001014
1015 /* Add block for cumulative ack */
1016 if (seq_gt (ack, tc->snd_una))
1017 {
Florin Coras558e3e02019-09-06 12:56:58 -07001018 vec_add2 (tc->rcv_opts.sacks, blk, 1);
1019 blk->start = tc->snd_una;
1020 blk->end = ack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001021 }
1022
Florin Coras93992a92017-05-24 18:03:56 -07001023 if (vec_len (tc->rcv_opts.sacks) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001024 return;
1025
Florin Coras3eb50622017-07-13 01:24:57 -04001026 tcp_scoreboard_trace_add (tc, ack);
1027
Dave Barach68b0fb02017-02-28 15:15:56 -05001028 /* Make sure blocks are ordered */
Florin Coras558e3e02019-09-06 12:56:58 -07001029 rcv_sacks = tc->rcv_opts.sacks;
1030 for (i = 0; i < vec_len (rcv_sacks); i++)
1031 for (j = i + 1; j < vec_len (rcv_sacks); j++)
1032 if (seq_lt (rcv_sacks[j].start, rcv_sacks[i].start))
Dave Barach68b0fb02017-02-28 15:15:56 -05001033 {
Florin Coras558e3e02019-09-06 12:56:58 -07001034 sack_block_t tmp = rcv_sacks[i];
1035 rcv_sacks[i] = rcv_sacks[j];
1036 rcv_sacks[j] = tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -05001037 }
1038
Dave Barach68b0fb02017-02-28 15:15:56 -05001039 if (sb->head == TCP_INVALID_SACK_HOLE_INDEX)
1040 {
Florin Coras558e3e02019-09-06 12:56:58 -07001041 /* Handle reneging as a special case */
1042 if (PREDICT_FALSE (sb->is_reneging))
1043 {
1044 /* No holes, only sacked bytes */
1045 if (seq_leq (tc->snd_nxt, sb->high_sacked))
1046 {
1047 /* No progress made so return */
1048 if (seq_leq (ack, tc->snd_una))
1049 return;
1050
1051 /* Update sacked bytes delivered and return */
1052 sb->last_bytes_delivered = ack - tc->snd_una;
1053 sb->sacked_bytes -= sb->last_bytes_delivered;
1054 sb->is_reneging = seq_lt (ack, sb->high_sacked);
1055 return;
1056 }
1057
1058 /* New hole above high sacked. Add it and process normally */
1059 hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
1060 sb->high_sacked, tc->snd_nxt);
1061 sb->tail = scoreboard_hole_index (sb, hole);
1062 }
1063 /* Not reneging and no holes. Insert the first that covers all
1064 * outstanding bytes */
1065 else
1066 {
1067 hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
1068 tc->snd_una, tc->snd_nxt);
1069 sb->tail = scoreboard_hole_index (sb, hole);
1070 }
1071 sb->high_sacked = rcv_sacks[vec_len (rcv_sacks) - 1].end;
Florin Coras6792ec02017-03-13 03:49:51 -07001072 }
1073 else
1074 {
Florin Coras558e3e02019-09-06 12:56:58 -07001075 /* If we have holes but snd_nxt is beyond the last hole, update
1076 * last hole end or add new hole after high sacked */
1077 hole = scoreboard_last_hole (sb);
1078 if (seq_gt (tc->snd_nxt, hole->end))
Dave Barach2c25a622017-06-26 11:35:07 -04001079 {
Florin Coras558e3e02019-09-06 12:56:58 -07001080 if (seq_geq (hole->start, sb->high_sacked))
Dave Barach2c25a622017-06-26 11:35:07 -04001081 {
Florin Coras558e3e02019-09-06 12:56:58 -07001082 hole->end = tc->snd_nxt;
Dave Barach2c25a622017-06-26 11:35:07 -04001083 }
1084 /* New hole after high sacked block */
Florin Coras47596832019-03-12 18:58:54 -07001085 else if (seq_lt (sb->high_sacked, tc->snd_nxt))
Dave Barach2c25a622017-06-26 11:35:07 -04001086 {
1087 scoreboard_insert_hole (sb, sb->tail, sb->high_sacked,
Florin Coras47596832019-03-12 18:58:54 -07001088 tc->snd_nxt);
Dave Barach2c25a622017-06-26 11:35:07 -04001089 }
1090 }
Florin Coras558e3e02019-09-06 12:56:58 -07001091
Dave Barach2c25a622017-06-26 11:35:07 -04001092 /* Keep track of max byte sacked for when the last hole
Florin Corasf03a59a2017-06-09 21:07:32 -07001093 * is acked */
Florin Coras558e3e02019-09-06 12:56:58 -07001094 sb->high_sacked = seq_max (rcv_sacks[vec_len (rcv_sacks) - 1].end,
1095 sb->high_sacked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001096 }
1097
1098 /* Walk the holes with the SACK blocks */
1099 hole = pool_elt_at_index (sb->holes, sb->head);
Florin Coras558e3e02019-09-06 12:56:58 -07001100
1101 if (PREDICT_FALSE (sb->is_reneging))
Florin Coras067f8f92020-01-04 00:53:04 +00001102 {
1103 sb->last_bytes_delivered += clib_min (hole->start - tc->snd_una,
1104 ack - tc->snd_una);
1105 sb->is_reneging = seq_lt (ack, hole->start);
1106 }
Florin Coras558e3e02019-09-06 12:56:58 -07001107
1108 while (hole && blk_index < vec_len (rcv_sacks))
Dave Barach68b0fb02017-02-28 15:15:56 -05001109 {
Florin Coras558e3e02019-09-06 12:56:58 -07001110 blk = &rcv_sacks[blk_index];
Dave Barach68b0fb02017-02-28 15:15:56 -05001111 if (seq_leq (blk->start, hole->start))
1112 {
1113 /* Block covers hole. Remove hole */
1114 if (seq_geq (blk->end, hole->end))
1115 {
1116 next_hole = scoreboard_next_hole (sb, hole);
1117
Florin Coras558e3e02019-09-06 12:56:58 -07001118 /* If covered by ack, compute delivered bytes */
Florin Corasf03a59a2017-06-09 21:07:32 -07001119 if (blk->end == ack)
Dave Barach68b0fb02017-02-28 15:15:56 -05001120 {
Florin Coras558e3e02019-09-06 12:56:58 -07001121 u32 sacked = next_hole ? next_hole->start : sb->high_sacked;
1122 if (PREDICT_FALSE (seq_lt (ack, sacked)))
Florin Coras06d11012017-05-17 14:21:51 -07001123 {
Florin Coras558e3e02019-09-06 12:56:58 -07001124 sb->last_bytes_delivered += ack - hole->end;
1125 sb->is_reneging = 1;
Florin Coras06d11012017-05-17 14:21:51 -07001126 }
Florin Coras3eb50622017-07-13 01:24:57 -04001127 else
Florin Coras06d11012017-05-17 14:21:51 -07001128 {
Florin Coras558e3e02019-09-06 12:56:58 -07001129 sb->last_bytes_delivered += sacked - hole->end;
1130 sb->is_reneging = 0;
Florin Coras06d11012017-05-17 14:21:51 -07001131 }
1132 }
Florin Coras36ebcff2019-09-12 18:36:44 -07001133 scoreboard_update_sacked_rxt (sb, hole->start, hole->end,
1134 has_rxt);
Dave Barach68b0fb02017-02-28 15:15:56 -05001135 scoreboard_remove_hole (sb, hole);
1136 hole = next_hole;
1137 }
Florin Coras6792ec02017-03-13 03:49:51 -07001138 /* Partial 'head' overlap */
Dave Barach68b0fb02017-02-28 15:15:56 -05001139 else
1140 {
Florin Coras6792ec02017-03-13 03:49:51 -07001141 if (seq_gt (blk->end, hole->start))
1142 {
Florin Coras36ebcff2019-09-12 18:36:44 -07001143 scoreboard_update_sacked_rxt (sb, hole->start, blk->end,
1144 has_rxt);
Florin Coras6792ec02017-03-13 03:49:51 -07001145 hole->start = blk->end;
1146 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001147 blk_index++;
1148 }
1149 }
1150 else
1151 {
1152 /* Hole must be split */
Florin Coras6792ec02017-03-13 03:49:51 -07001153 if (seq_lt (blk->end, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001154 {
Florin Coras558e3e02019-09-06 12:56:58 -07001155 u32 hole_index = scoreboard_hole_index (sb, hole);
Florin Coras3eb50622017-07-13 01:24:57 -04001156 next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
1157 hole->end);
Florin Coras6792ec02017-03-13 03:49:51 -07001158 /* Pool might've moved */
1159 hole = scoreboard_get_hole (sb, hole_index);
1160 hole->end = blk->start;
Florin Coras36ebcff2019-09-12 18:36:44 -07001161
1162 scoreboard_update_sacked_rxt (sb, blk->start, blk->end,
1163 has_rxt);
1164
Dave Barach68b0fb02017-02-28 15:15:56 -05001165 blk_index++;
Florin Coras3eb50622017-07-13 01:24:57 -04001166 ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
Dave Barach68b0fb02017-02-28 15:15:56 -05001167 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001168 else if (seq_lt (blk->start, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001169 {
Florin Coras36ebcff2019-09-12 18:36:44 -07001170 scoreboard_update_sacked_rxt (sb, blk->start, hole->end,
1171 has_rxt);
Florin Coras6792ec02017-03-13 03:49:51 -07001172 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -05001173 }
Florin Coras93992a92017-05-24 18:03:56 -07001174 hole = scoreboard_next_hole (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -05001175 }
1176 }
Florin Coras6792ec02017-03-13 03:49:51 -07001177
Florin Coras558e3e02019-09-06 12:56:58 -07001178 scoreboard_update_bytes (sb, ack, tc->snd_mss);
Florin Corasb3f58e12019-07-05 18:31:54 -07001179
Florin Corasca1c8f32018-05-23 21:01:30 -07001180 ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes || tcp_in_recovery (tc));
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001181 ASSERT (sb->sacked_bytes == 0 || tcp_in_recovery (tc)
Florin Coras558e3e02019-09-06 12:56:58 -07001182 || sb->sacked_bytes <= tc->snd_nxt - seq_max (tc->snd_una, ack));
Florin Coras47596832019-03-12 18:58:54 -07001183 ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_nxt
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001184 - seq_max (tc->snd_una, ack) || tcp_in_recovery (tc));
Dave Barach2c25a622017-06-26 11:35:07 -04001185 ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
Florin Coras558e3e02019-09-06 12:56:58 -07001186 || sb->is_reneging || sb->holes[sb->head].start == ack);
Florin Corasb3f58e12019-07-05 18:31:54 -07001187 ASSERT (sb->last_lost_bytes <= sb->lost_bytes);
Florin Coras36ebcff2019-09-12 18:36:44 -07001188 ASSERT ((ack - tc->snd_una) + sb->last_sacked_bytes
Florin Coras067f8f92020-01-04 00:53:04 +00001189 - sb->last_bytes_delivered >= sb->rxt_sacked || sb->is_reneging);
Florin Corasbe237bf2019-09-27 08:16:40 -07001190 ASSERT ((ack - tc->snd_una) >= tc->sack_sb.last_bytes_delivered
1191 || (tc->flags & TCP_CONN_FINSNT));
Florin Corasb3f58e12019-07-05 18:31:54 -07001192
Florin Corasa436a422019-08-20 07:09:31 -07001193 TCP_EVT (TCP_EVT_CC_SCOREBOARD, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001194}
Filip Tehlare275bed2019-03-06 00:06:56 -08001195#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05001196
Florin Coras93992a92017-05-24 18:03:56 -07001197/**
1198 * Try to update snd_wnd based on feedback received from peer.
Dave Barach68b0fb02017-02-28 15:15:56 -05001199 *
Florin Coras93992a92017-05-24 18:03:56 -07001200 * If successful, and new window is 'effectively' 0, activate persist
1201 * timer.
1202 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001203static void
1204tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
1205{
Florin Coras93992a92017-05-24 18:03:56 -07001206 /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
1207 * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
Florin Coras6792ec02017-03-13 03:49:51 -07001208 if (seq_lt (tc->snd_wl1, seq)
1209 || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001210 {
1211 tc->snd_wnd = snd_wnd;
1212 tc->snd_wl1 = seq;
1213 tc->snd_wl2 = ack;
Florin Corasa436a422019-08-20 07:09:31 -07001214 TCP_EVT (TCP_EVT_SND_WND, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001215
Florin Coras9ece3c02018-11-05 11:06:53 -08001216 if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
Florin Corasbb292f42017-05-19 09:49:19 -07001217 {
Florin Coras93992a92017-05-24 18:03:56 -07001218 /* Set persist timer if not set and we just got 0 wnd */
1219 if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
1220 && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
Florin Corasbb292f42017-05-19 09:49:19 -07001221 tcp_persist_timer_set (tc);
1222 }
Florin Coras3e350af2017-03-30 02:54:28 -07001223 else
Florin Coras93992a92017-05-24 18:03:56 -07001224 {
1225 tcp_persist_timer_reset (tc);
Florin Coras9ece3c02018-11-05 11:06:53 -08001226 if (PREDICT_FALSE (!tcp_in_recovery (tc) && tc->rto_boff > 0))
Florin Coras93992a92017-05-24 18:03:56 -07001227 {
1228 tc->rto_boff = 0;
1229 tcp_update_rto (tc);
1230 }
1231 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001232 }
1233}
1234
Florin Corasd2aab832018-05-22 11:39:59 -07001235/**
1236 * Init loss recovery/fast recovery.
1237 *
1238 * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
1239 * updated in @ref tcp_cc_handle_event after fast retransmit
1240 */
Florin Coras36ebcff2019-09-12 18:36:44 -07001241static void
Florin Coras93992a92017-05-24 18:03:56 -07001242tcp_cc_init_congestion (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001243{
Florin Coras93992a92017-05-24 18:03:56 -07001244 tcp_fastrecovery_on (tc);
Florin Coras47596832019-03-12 18:58:54 -07001245 tc->snd_congestion = tc->snd_nxt;
Florin Coras62166002018-04-18 16:40:55 -07001246 tc->cwnd_acc_bytes = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001247 tc->snd_rxt_bytes = 0;
Florin Coras36ebcff2019-09-12 18:36:44 -07001248 tc->rxt_delivered = 0;
1249 tc->prr_delivered = 0;
Florin Corasbe237bf2019-09-27 08:16:40 -07001250 tc->prr_start = tc->snd_una;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001251 tc->prev_ssthresh = tc->ssthresh;
1252 tc->prev_cwnd = tc->cwnd;
Florin Coras36ebcff2019-09-12 18:36:44 -07001253
Florin Corasbe237bf2019-09-27 08:16:40 -07001254 tc->snd_rxt_ts = tcp_tstamp (tc);
Florin Coras36ebcff2019-09-12 18:36:44 -07001255 tcp_cc_congestion (tc);
1256
1257 /* Post retransmit update cwnd to ssthresh and account for the
1258 * three segments that have left the network and should've been
1259 * buffered at the receiver XXX */
1260 if (!tcp_opts_sack_permitted (&tc->rcv_opts))
1261 tc->cwnd += 3 * tc->snd_mss;
1262
Florin Corasedfe0ee2019-07-29 18:13:25 -07001263 tc->fr_occurences += 1;
Florin Corasa436a422019-08-20 07:09:31 -07001264 TCP_EVT (TCP_EVT_CC_EVT, tc, 4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001265}
Dave Barach68b0fb02017-02-28 15:15:56 -05001266
1267static void
Florin Coras93992a92017-05-24 18:03:56 -07001268tcp_cc_congestion_undo (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001269{
Florin Coras93992a92017-05-24 18:03:56 -07001270 tc->cwnd = tc->prev_cwnd;
1271 tc->ssthresh = tc->prev_ssthresh;
Florin Coraseff6b822019-07-03 19:51:02 -07001272 tcp_cc_undo_recovery (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001273 ASSERT (tc->rto_boff == 0);
Florin Corasa436a422019-08-20 07:09:31 -07001274 TCP_EVT (TCP_EVT_CC_EVT, tc, 5);
Florin Coras93992a92017-05-24 18:03:56 -07001275}
Dave Barach68b0fb02017-02-28 15:15:56 -05001276
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001277static inline u8
1278tcp_cc_is_spurious_timeout_rxt (tcp_connection_t * tc)
Florin Coras93992a92017-05-24 18:03:56 -07001279{
Florin Corasf1762d62017-09-24 19:43:08 -04001280 return (tcp_in_recovery (tc) && tc->rto_boff == 1
Dave Barach2c25a622017-06-26 11:35:07 -04001281 && tc->snd_rxt_ts
Florin Coras93992a92017-05-24 18:03:56 -07001282 && tcp_opts_tstamp (&tc->rcv_opts)
1283 && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
1284}
1285
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001286static inline u8
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001287tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
1288{
Florin Coras36ebcff2019-09-12 18:36:44 -07001289 return (tcp_cc_is_spurious_timeout_rxt (tc));
1290}
1291
1292static inline u8
1293tcp_should_fastrecover_sack (tcp_connection_t * tc)
1294{
1295 return (tc->sack_sb.lost_bytes
1296 || ((TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
1297 < tc->sack_sb.sacked_bytes));
1298}
1299
1300static inline u8
Florin Corasbe237bf2019-09-27 08:16:40 -07001301tcp_should_fastrecover (tcp_connection_t * tc, u8 has_sack)
Florin Coras36ebcff2019-09-12 18:36:44 -07001302{
Florin Corasbe237bf2019-09-27 08:16:40 -07001303 if (!has_sack)
1304 {
1305 /* If of of the two conditions lower hold, reset dupacks because
1306 * we're probably after timeout (RFC6582 heuristics).
1307 * If Cumulative ack does not cover more than congestion threshold,
1308 * and:
1309 * 1) The following doesn't hold: The congestion window is greater
1310 * than SMSS bytes and the difference between highest_ack
1311 * and prev_highest_ack is at most 4*SMSS bytes
1312 * 2) Echoed timestamp in the last non-dup ack does not equal the
1313 * stored timestamp
1314 */
1315 if (seq_leq (tc->snd_una, tc->snd_congestion)
1316 && ((!(tc->cwnd > tc->snd_mss
1317 && tc->bytes_acked <= 4 * tc->snd_mss))
1318 || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
1319 {
1320 tc->rcv_dupacks = 0;
1321 return 0;
1322 }
1323 }
Florin Coras36ebcff2019-09-12 18:36:44 -07001324 return ((tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
1325 || tcp_should_fastrecover_sack (tc));
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001326}
1327
Florin Coras0dbd5172018-06-25 16:19:34 -07001328static int
Florin Coras93992a92017-05-24 18:03:56 -07001329tcp_cc_recover (tcp_connection_t * tc)
1330{
Florin Coras321cfa52019-09-12 18:49:44 -07001331 sack_scoreboard_hole_t *hole;
Florin Coras36ebcff2019-09-12 18:36:44 -07001332 u8 is_spurious = 0;
Florin Coras321cfa52019-09-12 18:49:44 -07001333
Florin Coras93992a92017-05-24 18:03:56 -07001334 ASSERT (tcp_in_cong_recovery (tc));
Florin Coras321cfa52019-09-12 18:49:44 -07001335
Florin Coras36ebcff2019-09-12 18:36:44 -07001336 if (tcp_cc_is_spurious_retransmit (tc))
1337 {
1338 tcp_cc_congestion_undo (tc);
1339 is_spurious = 1;
1340 }
1341
Florin Corasc31dc312019-10-06 14:06:14 -07001342 tcp_connection_tx_pacer_reset (tc, tc->cwnd, 0 /* start bucket */ );
Florin Corasb3dce892019-10-30 09:22:14 -07001343 tc->rcv_dupacks = 0;
Florin Corasc31dc312019-10-06 14:06:14 -07001344
Florin Coras36ebcff2019-09-12 18:36:44 -07001345 /* Previous recovery left us congested. Continue sending as part
1346 * of the current recovery event with an updated snd_congestion */
1347 if (tc->sack_sb.sacked_bytes)
1348 {
1349 tc->snd_congestion = tc->snd_nxt;
Florin Coras36ebcff2019-09-12 18:36:44 -07001350 tcp_program_retransmit (tc);
1351 return is_spurious;
1352 }
1353
Florin Corasb3dce892019-10-30 09:22:14 -07001354 tc->rxt_delivered = 0;
1355 tc->snd_rxt_bytes = 0;
1356 tc->snd_rxt_ts = 0;
1357 tc->prr_delivered = 0;
1358 tc->rtt_ts = 0;
1359 tc->flags &= ~TCP_CONN_RXT_PENDING;
1360
Florin Coras321cfa52019-09-12 18:49:44 -07001361 hole = scoreboard_first_hole (&tc->sack_sb);
1362 if (hole && hole->start == tc->snd_una && hole->end == tc->snd_nxt)
1363 scoreboard_clear (&tc->sack_sb);
1364
Florin Coras36ebcff2019-09-12 18:36:44 -07001365 if (!tcp_in_recovery (tc) && !is_spurious)
1366 tcp_cc_recovered (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001367
Florin Coras36ebcff2019-09-12 18:36:44 -07001368 tcp_fastrecovery_off (tc);
1369 tcp_fastrecovery_first_off (tc);
1370 tcp_recovery_off (tc);
1371 TCP_EVT (TCP_EVT_CC_EVT, tc, 3);
Florin Coras93992a92017-05-24 18:03:56 -07001372
1373 ASSERT (tc->rto_boff == 0);
1374 ASSERT (!tcp_in_cong_recovery (tc));
Florin Coras3eb50622017-07-13 01:24:57 -04001375 ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
Florin Coras36ebcff2019-09-12 18:36:44 -07001376 return is_spurious;
Florin Coras93992a92017-05-24 18:03:56 -07001377}
1378
1379static void
Florin Coras52814732019-06-12 15:38:19 -07001380tcp_cc_update (tcp_connection_t * tc, tcp_rate_sample_t * rs)
Florin Coras93992a92017-05-24 18:03:56 -07001381{
Florin Coras3eb50622017-07-13 01:24:57 -04001382 ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001383
1384 /* Congestion avoidance */
Florin Coras52814732019-06-12 15:38:19 -07001385 tcp_cc_rcv_ack (tc, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001386
1387 /* If a cumulative ack, make sure dupacks is 0 */
1388 tc->rcv_dupacks = 0;
1389
1390 /* When dupacks hits the threshold we only enter fast retransmit if
1391 * cumulative ack covers more than snd_congestion. Should snd_una
1392 * wrap this test may fail under otherwise valid circumstances.
1393 * Therefore, proactively update snd_congestion when wrap detected. */
1394 if (PREDICT_FALSE
1395 (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1396 && seq_gt (tc->snd_congestion, tc->snd_una)))
1397 tc->snd_congestion = tc->snd_una - 1;
1398}
1399
Florin Corasf03a59a2017-06-09 21:07:32 -07001400/**
1401 * One function to rule them all ... and in the darkness bind them
1402 */
Florin Coras93992a92017-05-24 18:03:56 -07001403static void
Florin Coras52814732019-06-12 15:38:19 -07001404tcp_cc_handle_event (tcp_connection_t * tc, tcp_rate_sample_t * rs,
1405 u32 is_dack)
Florin Coras93992a92017-05-24 18:03:56 -07001406{
Florin Corasafef8bf2019-09-11 23:22:29 -07001407 u8 has_sack = tcp_opts_sack_permitted (&tc->rcv_opts);
Florin Corasf03a59a2017-06-09 21:07:32 -07001408
Florin Coras1de71672019-12-22 09:20:26 -08001409 /* If reneging, wait for timer based retransmits */
1410 if (PREDICT_FALSE (tcp_is_lost_fin (tc) || tc->sack_sb.is_reneging))
1411 return;
1412
Florin Corasafef8bf2019-09-11 23:22:29 -07001413 /*
Florin Corasbe237bf2019-09-27 08:16:40 -07001414 * If not in recovery, figure out if we should enter
Florin Corasafef8bf2019-09-11 23:22:29 -07001415 */
Florin Corasbe237bf2019-09-27 08:16:40 -07001416 if (!tcp_in_cong_recovery (tc))
Florin Corasca1c8f32018-05-23 21:01:30 -07001417 {
Florin Corasbe237bf2019-09-27 08:16:40 -07001418 ASSERT (is_dack);
Florin Coras36ebcff2019-09-12 18:36:44 -07001419
Florin Coras93992a92017-05-24 18:03:56 -07001420 tc->rcv_dupacks++;
Florin Corasbe237bf2019-09-27 08:16:40 -07001421 TCP_EVT (TCP_EVT_DUPACK_RCVD, tc, 1);
1422 tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001423
Florin Corasbe237bf2019-09-27 08:16:40 -07001424 if (tcp_should_fastrecover (tc, has_sack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001425 {
Florin Coras93992a92017-05-24 18:03:56 -07001426 tcp_cc_init_congestion (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001427
Florin Corasafef8bf2019-09-11 23:22:29 -07001428 if (has_sack)
Florin Corasbe237bf2019-09-27 08:16:40 -07001429 scoreboard_init_rxt (&tc->sack_sb, tc->snd_una);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001430
Florin Coras36ebcff2019-09-12 18:36:44 -07001431 tcp_connection_tx_pacer_reset (tc, tc->cwnd, 0 /* start bucket */ );
1432 tcp_program_retransmit (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001433 }
Florin Coras93992a92017-05-24 18:03:56 -07001434
Florin Corasbe237bf2019-09-27 08:16:40 -07001435 return;
1436 }
Florin Corasd2aab832018-05-22 11:39:59 -07001437
Florin Coras93992a92017-05-24 18:03:56 -07001438 /*
Florin Corasb3dce892019-10-30 09:22:14 -07001439 * Already in recovery
Florin Coras93992a92017-05-24 18:03:56 -07001440 */
Florin Coras93992a92017-05-24 18:03:56 -07001441
Florin Coras93992a92017-05-24 18:03:56 -07001442 /*
Florin Corasbe237bf2019-09-27 08:16:40 -07001443 * Process (re)transmit feedback. Output path uses this to decide how much
1444 * more data to release into the network
1445 */
1446 if (has_sack)
1447 {
Florin Corasb3dce892019-10-30 09:22:14 -07001448 if (!tc->bytes_acked && tc->sack_sb.rxt_sacked)
1449 tcp_fastrecovery_first_on (tc);
1450
Florin Corasbe237bf2019-09-27 08:16:40 -07001451 tc->rxt_delivered += tc->sack_sb.rxt_sacked;
1452 tc->prr_delivered += tc->bytes_acked + tc->sack_sb.last_sacked_bytes
1453 - tc->sack_sb.last_bytes_delivered;
1454
1455 tcp_program_retransmit (tc);
1456 }
1457 else
1458 {
1459 if (is_dack)
1460 {
1461 tc->rcv_dupacks += 1;
1462 TCP_EVT (TCP_EVT_DUPACK_RCVD, tc, 1);
1463 }
1464 tc->rxt_delivered = clib_max (tc->rxt_delivered + tc->bytes_acked,
1465 tc->snd_rxt_bytes);
1466 if (is_dack)
Florin Corasbf1f8b72019-11-04 14:39:33 -08001467 tc->prr_delivered += clib_min (tc->snd_mss,
1468 tc->snd_nxt - tc->snd_una);
Florin Corasbe237bf2019-09-27 08:16:40 -07001469 else
Florin Corasbf1f8b72019-11-04 14:39:33 -08001470 tc->prr_delivered += tc->bytes_acked - clib_min (tc->bytes_acked,
1471 tc->snd_mss *
1472 tc->rcv_dupacks);
Florin Corasbe237bf2019-09-27 08:16:40 -07001473
1474 /* If partial ack, assume that the first un-acked segment was lost */
1475 if (tc->bytes_acked || tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
1476 tcp_fastrecovery_first_on (tc);
1477
1478 tcp_program_retransmit (tc);
1479 }
1480
1481 /*
Florin Corasb3dce892019-10-30 09:22:14 -07001482 * See if we can exit and stop retransmitting
1483 */
1484 if (seq_geq (tc->snd_una, tc->snd_congestion))
1485 {
1486 /* If spurious return, we've already updated everything */
1487 if (tcp_cc_recover (tc))
1488 {
1489 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1490 return;
1491 }
1492
1493 /* Treat as congestion avoidance ack */
1494 tcp_cc_rcv_ack (tc, rs);
1495 return;
1496 }
1497
1498 /*
Florin Corasbe237bf2019-09-27 08:16:40 -07001499 * Notify cc of the event
Florin Coras93992a92017-05-24 18:03:56 -07001500 */
Florin Coras93992a92017-05-24 18:03:56 -07001501
Florin Corasbe237bf2019-09-27 08:16:40 -07001502 if (!tc->bytes_acked)
1503 {
1504 tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
1505 return;
1506 }
1507
1508 /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
1509 * reset dupacks to 0. Also needed if in congestion recovery */
1510 tc->rcv_dupacks = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001511
Florin Coras36ebcff2019-09-12 18:36:44 -07001512 if (tcp_in_recovery (tc))
1513 tcp_cc_rcv_ack (tc, rs);
Dave Barach68b0fb02017-02-28 15:15:56 -05001514 else
Florin Coras36ebcff2019-09-12 18:36:44 -07001515 tcp_cc_rcv_cong_ack (tc, TCP_CC_PARTIALACK, rs);
Florin Corasbe237bf2019-09-27 08:16:40 -07001516}
Dave Barach68b0fb02017-02-28 15:15:56 -05001517
Florin Coras2f04cb92019-12-23 10:03:27 -08001518static void
Florin Coras067f8f92020-01-04 00:53:04 +00001519tcp_handle_old_ack (tcp_connection_t * tc, tcp_rate_sample_t * rs)
Florin Coras2f04cb92019-12-23 10:03:27 -08001520{
1521 if (!tcp_in_cong_recovery (tc))
1522 return;
1523
1524 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras067f8f92020-01-04 00:53:04 +00001525 tcp_rcv_sacks (tc, tc->snd_una);
Florin Coras2f04cb92019-12-23 10:03:27 -08001526
1527 tc->bytes_acked = 0;
1528
1529 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
1530 tcp_bt_sample_delivery_rate (tc, rs);
1531
1532 tcp_cc_handle_event (tc, rs, 1);
1533}
1534
Florin Corasbe237bf2019-09-27 08:16:40 -07001535/**
1536 * Check if duplicate ack as per RFC5681 Sec. 2
1537 */
1538always_inline u8
1539tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd,
1540 u32 prev_snd_una)
1541{
1542 return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
1543 && seq_gt (tc->snd_nxt, tc->snd_una)
1544 && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
1545 && (prev_snd_wnd == tc->snd_wnd));
1546}
1547
1548/**
1549 * Checks if ack is a congestion control event.
1550 */
1551static u8
1552tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b,
1553 u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
1554{
1555 /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
1556 * defined to be 'duplicate' as well */
1557 *is_dack = tc->sack_sb.last_sacked_bytes
1558 || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
1559
Florin Corasbe237bf2019-09-27 08:16:40 -07001560 return (*is_dack || tcp_in_cong_recovery (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -05001561}
1562
Florin Coras93992a92017-05-24 18:03:56 -07001563/**
1564 * Process incoming ACK
1565 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001566static int
Florin Coras9ece3c02018-11-05 11:06:53 -08001567tcp_rcv_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
Florin Coras7ac053b2018-11-05 15:57:21 -08001568 tcp_header_t * th, u32 * error)
Dave Barach68b0fb02017-02-28 15:15:56 -05001569{
Florin Coras93992a92017-05-24 18:03:56 -07001570 u32 prev_snd_wnd, prev_snd_una;
Florin Coras52814732019-06-12 15:38:19 -07001571 tcp_rate_sample_t rs = { 0 };
Florin Coras93992a92017-05-24 18:03:56 -07001572 u8 is_dack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001573
Florin Corasa436a422019-08-20 07:09:31 -07001574 TCP_EVT (TCP_EVT_CC_STAT, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001575
Florin Coras6792ec02017-03-13 03:49:51 -07001576 /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
Florin Coras93992a92017-05-24 18:03:56 -07001577 if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001578 {
Florin Coras47596832019-03-12 18:58:54 -07001579 /* We've probably entered recovery and the peer still has some
1580 * of the data we've sent. Update snd_nxt and accept the ack */
Florin Coras282a3cb2019-04-02 21:43:38 -07001581 if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)
1582 && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
Florin Corasca1c8f32018-05-23 21:01:30 -07001583 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001584 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
Florin Corasca1c8f32018-05-23 21:01:30 -07001585 goto process_ack;
1586 }
1587
Florin Corasedfe0ee2019-07-29 18:13:25 -07001588 tc->errors.above_ack_wnd += 1;
Florin Coras47596832019-03-12 18:58:54 -07001589 *error = TCP_ERROR_ACK_FUTURE;
Florin Corasa436a422019-08-20 07:09:31 -07001590 TCP_EVT (TCP_EVT_ACK_RCV_ERR, tc, 0, vnet_buffer (b)->tcp.ack_number);
Florin Coras47596832019-03-12 18:58:54 -07001591 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001592 }
1593
Florin Coras6792ec02017-03-13 03:49:51 -07001594 /* If old ACK, probably it's an old dupack */
Florin Coras93992a92017-05-24 18:03:56 -07001595 if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001596 {
Florin Corasedfe0ee2019-07-29 18:13:25 -07001597 tc->errors.below_ack_wnd += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001598 *error = TCP_ERROR_ACK_OLD;
Florin Corasa436a422019-08-20 07:09:31 -07001599 TCP_EVT (TCP_EVT_ACK_RCV_ERR, tc, 1, vnet_buffer (b)->tcp.ack_number);
Florin Coras2f04cb92019-12-23 10:03:27 -08001600
1601 if (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una - tc->rcv_wnd))
1602 return -1;
1603
Florin Coras067f8f92020-01-04 00:53:04 +00001604 tcp_handle_old_ack (tc, &rs);
Florin Coras2f04cb92019-12-23 10:03:27 -08001605
Florin Corasc28764f2017-04-26 00:08:42 -07001606 /* Don't drop yet */
1607 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001608 }
1609
Florin Coras47596832019-03-12 18:58:54 -07001610process_ack:
1611
Florin Coras93992a92017-05-24 18:03:56 -07001612 /*
1613 * Looks okay, process feedback
1614 */
Florin Corasedfe0ee2019-07-29 18:13:25 -07001615
Florin Coras93992a92017-05-24 18:03:56 -07001616 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001617 tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1618
Florin Coras93992a92017-05-24 18:03:56 -07001619 prev_snd_wnd = tc->snd_wnd;
1620 prev_snd_una = tc->snd_una;
1621 tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1622 vnet_buffer (b)->tcp.ack_number,
1623 clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1624 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
Florin Coras558e3e02019-09-06 12:56:58 -07001625 tc->snd_una = vnet_buffer (b)->tcp.ack_number;
Florin Coras93992a92017-05-24 18:03:56 -07001626 tcp_validate_txf_size (tc, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001627
Florin Corasbbcfaac2019-10-10 13:52:04 -07001628 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
Florin Coras1dbda642019-09-11 13:42:57 -07001629 tcp_bt_sample_delivery_rate (tc, &rs);
1630
Florin Coras93992a92017-05-24 18:03:56 -07001631 if (tc->bytes_acked)
Florin Coras11e9e352019-11-13 19:09:47 -08001632 {
1633 tcp_program_dequeue (wrk, tc);
1634 tcp_update_rtt (tc, &rs, vnet_buffer (b)->tcp.ack_number);
1635 }
Florin Coras93992a92017-05-24 18:03:56 -07001636
Florin Corasa436a422019-08-20 07:09:31 -07001637 TCP_EVT (TCP_EVT_ACK_RCVD, tc);
Florin Coras6534b7a2017-07-18 05:38:03 -04001638
Florin Coras93992a92017-05-24 18:03:56 -07001639 /*
1640 * Check if we have congestion event
1641 */
1642
1643 if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001644 {
Florin Coras52814732019-06-12 15:38:19 -07001645 tcp_cc_handle_event (tc, &rs, is_dack);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001646 tc->dupacks_in += is_dack;
Florin Corasb2215d62017-08-01 16:56:58 -07001647 if (!tcp_in_cong_recovery (tc))
Florin Corasa9d5bea2018-12-17 08:24:19 -08001648 {
1649 *error = TCP_ERROR_ACK_OK;
1650 return 0;
1651 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001652 *error = TCP_ERROR_ACK_DUP;
Florin Corasca09d072018-10-01 18:31:02 -07001653 if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th))
1654 return 0;
1655 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001656 }
1657
Florin Coras6792ec02017-03-13 03:49:51 -07001658 /*
Florin Coras93992a92017-05-24 18:03:56 -07001659 * Update congestion control (slow start/congestion avoidance)
Florin Coras6792ec02017-03-13 03:49:51 -07001660 */
Florin Coras52814732019-06-12 15:38:19 -07001661 tcp_cc_update (tc, &rs);
Florin Coras00cd22d2018-04-18 13:20:18 -07001662 *error = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001663 return 0;
1664}
1665
Florin Corasb11175d2018-11-09 14:34:08 -08001666static void
1667tcp_program_disconnect (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1668{
1669 if (!tcp_disconnect_pending (tc))
1670 {
1671 vec_add1 (wrk->pending_disconnects, tc->c_c_index);
1672 tcp_disconnect_pending_on (tc);
1673 }
1674}
1675
1676static void
1677tcp_handle_disconnects (tcp_worker_ctx_t * wrk)
1678{
1679 u32 thread_index, *pending_disconnects;
1680 tcp_connection_t *tc;
1681 int i;
1682
1683 if (!vec_len (wrk->pending_disconnects))
1684 return;
1685
1686 thread_index = wrk->vm->thread_index;
1687 pending_disconnects = wrk->pending_disconnects;
1688 for (i = 0; i < vec_len (pending_disconnects); i++)
1689 {
1690 tc = tcp_connection_get (pending_disconnects[i], thread_index);
1691 tcp_disconnect_pending_off (tc);
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001692 session_transport_closing_notify (&tc->connection);
Florin Corasb11175d2018-11-09 14:34:08 -08001693 }
1694 _vec_len (wrk->pending_disconnects) = 0;
1695}
1696
1697static void
1698tcp_rcv_fin (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
1699 u32 * error)
1700{
Florin Corasf73d4c22019-06-28 09:18:48 -07001701 /* Reject out-of-order fins */
1702 if (vnet_buffer (b)->tcp.seq_end != tc->rcv_nxt)
1703 return;
1704
Florin Coras3c514d52018-12-22 11:39:33 -08001705 /* Account for the FIN and send ack */
1706 tc->rcv_nxt += 1;
Florin Corascb711a42019-10-16 19:28:17 -07001707 tc->flags |= TCP_CONN_FINRCVD;
Florin Coras26dd6de2019-07-23 23:54:47 -07001708 tcp_program_ack (tc);
Florin Corasb11175d2018-11-09 14:34:08 -08001709 /* Enter CLOSE-WAIT and notify session. To avoid lingering
1710 * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
Florin Coras3c514d52018-12-22 11:39:33 -08001711 tcp_connection_set_state (tc, TCP_STATE_CLOSE_WAIT);
Florin Corasb11175d2018-11-09 14:34:08 -08001712 tcp_program_disconnect (wrk, tc);
Florin Coras9094b5c2019-08-12 14:17:47 -07001713 tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, tcp_cfg.closewait_time);
Florin Corasa436a422019-08-20 07:09:31 -07001714 TCP_EVT (TCP_EVT_FIN_RCVD, tc);
Florin Corasb11175d2018-11-09 14:34:08 -08001715 *error = TCP_ERROR_FIN_RCVD;
1716}
1717
Filip Tehlare275bed2019-03-06 00:06:56 -08001718#ifndef CLIB_MARCH_VARIANT
Florin Coras3eb50622017-07-13 01:24:57 -04001719static u8
1720tcp_sack_vector_is_sane (sack_block_t * sacks)
1721{
1722 int i;
1723 for (i = 1; i < vec_len (sacks); i++)
1724 {
1725 if (sacks[i - 1].end == sacks[i].start)
1726 return 0;
1727 }
1728 return 1;
1729}
1730
Dave Barach68b0fb02017-02-28 15:15:56 -05001731/**
1732 * Build SACK list as per RFC2018.
1733 *
1734 * Makes sure the first block contains the segment that generated the current
1735 * ACK and the following ones are the ones most recently reported in SACK
1736 * blocks.
1737 *
1738 * @param tc TCP connection for which the SACK list is updated
1739 * @param start Start sequence number of the newest SACK block
1740 * @param end End sequence of the newest SACK block
1741 */
Florin Coras45d34962017-04-25 00:05:27 -07001742void
Dave Barach68b0fb02017-02-28 15:15:56 -05001743tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1744{
Florin Corasb691f762019-02-22 09:07:20 -08001745 sack_block_t *new_list = tc->snd_sacks_fl, *block = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001746 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001747
1748 /* If the first segment is ooo add it to the list. Last write might've moved
1749 * rcv_nxt over the first segment. */
1750 if (seq_lt (tc->rcv_nxt, start))
1751 {
Florin Coras45d34962017-04-25 00:05:27 -07001752 vec_add2 (new_list, block, 1);
1753 block->start = start;
1754 block->end = end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001755 }
1756
1757 /* Find the blocks still worth keeping. */
1758 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1759 {
Florin Coras45d34962017-04-25 00:05:27 -07001760 /* Discard if rcv_nxt advanced beyond current block */
1761 if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001762 continue;
1763
Florin Coras45d34962017-04-25 00:05:27 -07001764 /* Merge or drop if segment overlapped by the new segment */
1765 if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1766 && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1767 {
1768 if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1769 new_list[0].start = tc->snd_sacks[i].start;
1770 if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1771 new_list[0].end = tc->snd_sacks[i].end;
1772 continue;
1773 }
1774
1775 /* Save to new SACK list if we have space. */
1776 if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
Florin Coras47596832019-03-12 18:58:54 -07001777 vec_add1 (new_list, tc->snd_sacks[i]);
Dave Barach68b0fb02017-02-28 15:15:56 -05001778 }
1779
Florin Coras45d34962017-04-25 00:05:27 -07001780 ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
Florin Coras6792ec02017-03-13 03:49:51 -07001781
Dave Barach68b0fb02017-02-28 15:15:56 -05001782 /* Replace old vector with new one */
Florin Corasb691f762019-02-22 09:07:20 -08001783 vec_reset_length (tc->snd_sacks);
1784 tc->snd_sacks_fl = tc->snd_sacks;
Dave Barach68b0fb02017-02-28 15:15:56 -05001785 tc->snd_sacks = new_list;
Florin Coras3eb50622017-07-13 01:24:57 -04001786
1787 /* Segments should not 'touch' */
1788 ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
Dave Barach68b0fb02017-02-28 15:15:56 -05001789}
1790
Florin Corasca1c8f32018-05-23 21:01:30 -07001791u32
1792tcp_sack_list_bytes (tcp_connection_t * tc)
1793{
1794 u32 bytes = 0, i;
1795 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1796 bytes += tc->snd_sacks[i].end - tc->snd_sacks[i].start;
1797 return bytes;
1798}
Filip Tehlare275bed2019-03-06 00:06:56 -08001799#endif /* CLIB_MARCH_VARIANT */
Florin Corasca1c8f32018-05-23 21:01:30 -07001800
Dave Barach68b0fb02017-02-28 15:15:56 -05001801/** Enqueue data for delivery to application */
Florin Coras0dbd5172018-06-25 16:19:34 -07001802static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001803tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1804 u16 data_len)
1805{
Florin Coras1f152cd2017-08-18 19:28:03 -07001806 int written, error = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001807
Dave Barach2c25a622017-06-26 11:35:07 -04001808 ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001809 ASSERT (data_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001810 written = session_enqueue_stream_connection (&tc->connection, b, 0,
1811 1 /* queue event */ , 1);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001812 tc->bytes_in += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001813
Florin Corasa436a422019-08-20 07:09:31 -07001814 TCP_EVT (TCP_EVT_INPUT, tc, 0, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001815
Dave Barach68b0fb02017-02-28 15:15:56 -05001816 /* Update rcv_nxt */
1817 if (PREDICT_TRUE (written == data_len))
1818 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001819 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001820 }
1821 /* If more data written than expected, account for out-of-order bytes. */
1822 else if (written > data_len)
1823 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001824 tc->rcv_nxt += written;
Florin Corasa436a422019-08-20 07:09:31 -07001825 TCP_EVT (TCP_EVT_CC_INPUT, tc, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001826 }
1827 else if (written > 0)
1828 {
1829 /* We've written something but FIFO is probably full now */
1830 tc->rcv_nxt += written;
Florin Coras1f152cd2017-08-18 19:28:03 -07001831 error = TCP_ERROR_PARTIALLY_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001832 }
1833 else
1834 {
Dave Barach68b0fb02017-02-28 15:15:56 -05001835 return TCP_ERROR_FIFO_FULL;
1836 }
1837
Florin Coras6792ec02017-03-13 03:49:51 -07001838 /* Update SACK list if need be */
Florin Coras93992a92017-05-24 18:03:56 -07001839 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras6792ec02017-03-13 03:49:51 -07001840 {
1841 /* Remove SACK blocks that have been delivered */
1842 tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1843 }
1844
Florin Coras1f152cd2017-08-18 19:28:03 -07001845 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -05001846}
1847
1848/** Enqueue out-of-order data */
Florin Coras0dbd5172018-06-25 16:19:34 -07001849static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001850tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1851 u16 data_len)
1852{
Florin Coras288eaab2019-02-03 15:26:14 -08001853 session_t *s0;
Florin Coras3eb50622017-07-13 01:24:57 -04001854 int rv, offset;
Florin Coras6792ec02017-03-13 03:49:51 -07001855
Florin Corasf03a59a2017-06-09 21:07:32 -07001856 ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001857 ASSERT (data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001858
Florin Corasf03a59a2017-06-09 21:07:32 -07001859 /* Enqueue out-of-order data with relative offset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07001860 rv = session_enqueue_stream_connection (&tc->connection, b,
1861 vnet_buffer (b)->tcp.seq_number -
1862 tc->rcv_nxt, 0 /* queue event */ ,
1863 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001864
1865 /* Nothing written */
1866 if (rv)
1867 {
Florin Corasa436a422019-08-20 07:09:31 -07001868 TCP_EVT (TCP_EVT_INPUT, tc, 1, data_len, 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001869 return TCP_ERROR_FIFO_FULL;
1870 }
1871
Florin Corasa436a422019-08-20 07:09:31 -07001872 TCP_EVT (TCP_EVT_INPUT, tc, 1, data_len, data_len);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001873 tc->bytes_in += data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05001874
1875 /* Update SACK list if in use */
Florin Coras93992a92017-05-24 18:03:56 -07001876 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001877 {
1878 ooo_segment_t *newest;
1879 u32 start, end;
1880
Florin Corascea194d2017-10-02 00:18:51 -07001881 s0 = session_get (tc->c_s_index, tc->c_thread_index);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001882
Dave Barach68b0fb02017-02-28 15:15:56 -05001883 /* Get the newest segment from the fifo */
Florin Coras288eaab2019-02-03 15:26:14 -08001884 newest = svm_fifo_newest_ooo_segment (s0->rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001885 if (newest)
1886 {
Sirshak Das28aa5392019-02-05 01:33:33 -06001887 offset = ooo_segment_offset_prod (s0->rx_fifo, newest);
Florin Coras3eb50622017-07-13 01:24:57 -04001888 ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1889 start = tc->rcv_nxt + offset;
Florin Coras288eaab2019-02-03 15:26:14 -08001890 end = start + ooo_segment_length (s0->rx_fifo, newest);
Florin Corasf03a59a2017-06-09 21:07:32 -07001891 tcp_update_sack_list (tc, start, end);
Florin Coras288eaab2019-02-03 15:26:14 -08001892 svm_fifo_newest_ooo_segment_reset (s0->rx_fifo);
Florin Corasa436a422019-08-20 07:09:31 -07001893 TCP_EVT (TCP_EVT_CC_SACKS, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001894 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001895 }
1896
Florin Coras00cd22d2018-04-18 13:20:18 -07001897 return TCP_ERROR_ENQUEUED_OOO;
Dave Barach68b0fb02017-02-28 15:15:56 -05001898}
1899
1900/**
Florin Coras6792ec02017-03-13 03:49:51 -07001901 * Check if ACK could be delayed. If ack can be delayed, it should return
1902 * true for a full frame. If we're always acking return 0.
Dave Barach68b0fb02017-02-28 15:15:56 -05001903 */
1904always_inline int
1905tcp_can_delack (tcp_connection_t * tc)
1906{
Florin Coras6792ec02017-03-13 03:49:51 -07001907 /* Send ack if ... */
1908 if (TCP_ALWAYS_ACK
Florin Coras74b74372019-03-28 16:31:52 -07001909 /* just sent a rcv wnd 0
1910 || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0 */
Florin Coras6792ec02017-03-13 03:49:51 -07001911 /* constrained to send ack */
1912 || (tc->flags & TCP_CONN_SNDACK) != 0
1913 /* we're almost out of tx wnd */
Florin Corasca1c8f32018-05-23 21:01:30 -07001914 || tcp_available_cc_snd_space (tc) < 4 * tc->snd_mss)
Florin Coras6792ec02017-03-13 03:49:51 -07001915 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001916
Florin Coras6792ec02017-03-13 03:49:51 -07001917 return 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001918}
1919
1920static int
Florin Corasb2215d62017-08-01 16:56:58 -07001921tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
1922{
Florin Coras1f152cd2017-08-18 19:28:03 -07001923 u32 discard, first = b->current_length;
Florin Corasb2215d62017-08-01 16:56:58 -07001924 vlib_main_t *vm = vlib_get_main ();
1925
Florin Coras1f152cd2017-08-18 19:28:03 -07001926 /* Handle multi-buffer segments */
Florin Corasb2215d62017-08-01 16:56:58 -07001927 if (n_bytes_to_drop > b->current_length)
1928 {
1929 if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1930 return -1;
1931 do
1932 {
1933 discard = clib_min (n_bytes_to_drop, b->current_length);
1934 vlib_buffer_advance (b, discard);
1935 b = vlib_get_buffer (vm, b->next_buffer);
1936 n_bytes_to_drop -= discard;
1937 }
1938 while (n_bytes_to_drop);
Florin Coras1f152cd2017-08-18 19:28:03 -07001939 if (n_bytes_to_drop > first)
1940 b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
Florin Corasb2215d62017-08-01 16:56:58 -07001941 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001942 else
1943 vlib_buffer_advance (b, n_bytes_to_drop);
1944 vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
Florin Corasb2215d62017-08-01 16:56:58 -07001945 return 0;
1946}
1947
Florin Coras00cd22d2018-04-18 13:20:18 -07001948/**
1949 * Receive buffer for connection and handle acks
1950 *
1951 * It handles both in order or out-of-order data.
1952 */
Florin Corasb2215d62017-08-01 16:56:58 -07001953static int
Florin Coras7ac053b2018-11-05 15:57:21 -08001954tcp_segment_rcv (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1955 vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001956{
Florin Coras00cd22d2018-04-18 13:20:18 -07001957 u32 error, n_bytes_to_drop, n_data_bytes;
Florin Coras6534b7a2017-07-18 05:38:03 -04001958
1959 vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1960 n_data_bytes = vnet_buffer (b)->tcp.data_len;
1961 ASSERT (n_data_bytes);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001962 tc->data_segs_in += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001963
1964 /* Handle out-of-order data */
1965 if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1966 {
Florin Coras6792ec02017-03-13 03:49:51 -07001967 /* Old sequence numbers allowed through because they overlapped
1968 * the rx window */
1969 if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001970 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001971 /* Completely in the past (possible retransmit). Ack
1972 * retransmissions since we may not have any data to send */
Florin Corasf03a59a2017-06-09 21:07:32 -07001973 if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
Florin Coras6534b7a2017-07-18 05:38:03 -04001974 {
Florin Coras26dd6de2019-07-23 23:54:47 -07001975 tcp_program_ack (tc);
Florin Coras00cd22d2018-04-18 13:20:18 -07001976 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras6534b7a2017-07-18 05:38:03 -04001977 goto done;
1978 }
Dave Barach259cdae2017-05-15 16:27:05 -04001979
Florin Coras00cd22d2018-04-18 13:20:18 -07001980 /* Chop off the bytes in the past and see if what is left
1981 * can be enqueued in order */
Florin Corasdb84e572017-05-09 18:54:52 -07001982 n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1983 n_data_bytes -= n_bytes_to_drop;
Dave Barach2c25a622017-06-26 11:35:07 -04001984 vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001985 if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
Florin Coras00cd22d2018-04-18 13:20:18 -07001986 {
1987 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras00cd22d2018-04-18 13:20:18 -07001988 goto done;
1989 }
Florin Corasdb84e572017-05-09 18:54:52 -07001990 goto in_order;
Dave Barach68b0fb02017-02-28 15:15:56 -05001991 }
1992
Florin Coras00cd22d2018-04-18 13:20:18 -07001993 /* RFC2581: Enqueue and send DUPACK for fast retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001994 error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
Florin Coras26dd6de2019-07-23 23:54:47 -07001995 tcp_program_dupack (tc);
Florin Corasa436a422019-08-20 07:09:31 -07001996 TCP_EVT (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001997 tc->errors.above_data_wnd += seq_gt (vnet_buffer (b)->tcp.seq_end,
1998 tc->rcv_las + tc->rcv_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -05001999 goto done;
2000 }
2001
Florin Corasdb84e572017-05-09 18:54:52 -07002002in_order:
2003
Dave Barach68b0fb02017-02-28 15:15:56 -05002004 /* In order data, enqueue. Fifo figures out by itself if any out-of-order
2005 * segments can be enqueued after fifo tail offset changes. */
2006 error = tcp_session_enqueue_data (tc, b, n_data_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07002007 if (tcp_can_delack (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05002008 {
Florin Coras6792ec02017-03-13 03:49:51 -07002009 if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
Florin Coras9094b5c2019-08-12 14:17:47 -07002010 tcp_timer_set (tc, TCP_TIMER_DELACK, tcp_cfg.delack_time);
Florin Coras3e350af2017-03-30 02:54:28 -07002011 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05002012 }
2013
Florin Coras26dd6de2019-07-23 23:54:47 -07002014 tcp_program_ack (tc);
Florin Coras3e350af2017-03-30 02:54:28 -07002015
Dave Barach68b0fb02017-02-28 15:15:56 -05002016done:
2017 return error;
2018}
2019
Clement Durand6cf260c2017-04-13 13:27:04 +02002020typedef struct
2021{
2022 tcp_header_t tcp_header;
2023 tcp_connection_t tcp_connection;
2024} tcp_rx_trace_t;
2025
Florin Coras0dbd5172018-06-25 16:19:34 -07002026static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02002027format_tcp_rx_trace (u8 * s, va_list * args)
2028{
2029 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2030 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2031 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +02002032 u32 indent = format_get_indent (s);
Clement Durand6cf260c2017-04-13 13:27:04 +02002033
2034 s = format (s, "%U\n%U%U",
2035 format_tcp_header, &t->tcp_header, 128,
2036 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -07002037 format_tcp_connection, &t->tcp_connection, 1);
Clement Durand6cf260c2017-04-13 13:27:04 +02002038
2039 return s;
2040}
2041
Florin Coras0dbd5172018-06-25 16:19:34 -07002042static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02002043format_tcp_rx_trace_short (u8 * s, va_list * args)
2044{
2045 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2046 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2047 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
2048
2049 s = format (s, "%d -> %d (%U)",
Florin Coras4df38712018-06-20 12:44:16 -07002050 clib_net_to_host_u16 (t->tcp_header.dst_port),
2051 clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state,
Florin Corasbb292f42017-05-19 09:49:19 -07002052 t->tcp_connection.state);
Clement Durand6cf260c2017-04-13 13:27:04 +02002053
2054 return s;
2055}
2056
Florin Coras4df38712018-06-20 12:44:16 -07002057static void
Florin Coras82b13a82017-04-25 11:58:06 -07002058tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
2059 tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
2060{
2061 if (tc0)
2062 {
Dave Barach178cf492018-11-13 16:34:13 -05002063 clib_memcpy_fast (&t0->tcp_connection, tc0,
2064 sizeof (t0->tcp_connection));
Florin Coras82b13a82017-04-25 11:58:06 -07002065 }
2066 else
2067 {
2068 th0 = tcp_buffer_hdr (b0);
2069 }
Dave Barach178cf492018-11-13 16:34:13 -05002070 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
Florin Coras82b13a82017-04-25 11:58:06 -07002071}
2072
Florin Coras4df38712018-06-20 12:44:16 -07002073static void
2074tcp_established_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2075 vlib_frame_t * frame, u8 is_ip4)
2076{
2077 u32 *from, n_left;
2078
2079 n_left = frame->n_vectors;
2080 from = vlib_frame_vector_args (frame);
2081
2082 while (n_left >= 1)
2083 {
2084 tcp_connection_t *tc0;
2085 tcp_rx_trace_t *t0;
2086 tcp_header_t *th0;
2087 vlib_buffer_t *b0;
2088 u32 bi0;
2089
2090 bi0 = from[0];
2091 b0 = vlib_get_buffer (vm, bi0);
2092
2093 if (b0->flags & VLIB_BUFFER_IS_TRACED)
2094 {
2095 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2096 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2097 vm->thread_index);
2098 th0 = tcp_buffer_hdr (b0);
2099 tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
2100 }
2101
2102 from += 1;
2103 n_left -= 1;
2104 }
2105}
2106
Florin Coras6792ec02017-03-13 03:49:51 -07002107always_inline void
Florin Coras00cd22d2018-04-18 13:20:18 -07002108tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
2109 u8 is_ip4, u32 evt, u32 val)
Dave Barach68b0fb02017-02-28 15:15:56 -05002110{
Florin Coras6792ec02017-03-13 03:49:51 -07002111 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -07002112 vlib_node_increment_counter (vm, tcp4_node, evt, val);
Florin Coras6792ec02017-03-13 03:49:51 -07002113 else
Florin Coras3cbc04b2017-10-02 00:18:51 -07002114 vlib_node_increment_counter (vm, tcp6_node, evt, val);
Dave Barach68b0fb02017-02-28 15:15:56 -05002115}
2116
Florin Coras00cd22d2018-04-18 13:20:18 -07002117#define tcp_maybe_inc_counter(node_id, err, count) \
2118{ \
2119 if (next0 != tcp_next_drop (is_ip4)) \
2120 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2121 tcp6_##node_id##_node.index, is_ip4, err, \
2122 1); \
2123}
2124#define tcp_inc_counter(node_id, err, count) \
2125 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2126 tcp6_##node_id##_node.index, is_ip4, \
2127 err, count)
2128#define tcp_maybe_inc_err_counter(cnts, err) \
2129{ \
2130 cnts[err] += (next0 != tcp_next_drop (is_ip4)); \
2131}
2132#define tcp_inc_err_counter(cnts, err, val) \
2133{ \
2134 cnts[err] += val; \
2135}
2136#define tcp_store_err_counters(node_id, cnts) \
2137{ \
2138 int i; \
2139 for (i = 0; i < TCP_N_ERROR; i++) \
2140 if (cnts[i]) \
2141 tcp_inc_counter(node_id, i, cnts[i]); \
2142}
2143
2144
Dave Barach68b0fb02017-02-28 15:15:56 -05002145always_inline uword
2146tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07002147 vlib_frame_t * frame, int is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05002148{
Florin Coras4df38712018-06-20 12:44:16 -07002149 u32 thread_index = vm->thread_index, errors = 0;
Florin Coras9ece3c02018-11-05 11:06:53 -08002150 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08002151 u32 n_left_from, *from, *first_buffer;
Florin Coras00cd22d2018-04-18 13:20:18 -07002152 u16 err_counters[TCP_N_ERROR] = { 0 };
Dave Barach68b0fb02017-02-28 15:15:56 -05002153
Florin Coras4df38712018-06-20 12:44:16 -07002154 if (node->flags & VLIB_NODE_FLAG_TRACE)
2155 tcp_established_trace_frame (vm, node, frame, is_ip4);
2156
Florin Coras7ac053b2018-11-05 15:57:21 -08002157 first_buffer = from = vlib_frame_vector_args (frame);
Florin Coras4df38712018-06-20 12:44:16 -07002158 n_left_from = frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002159
2160 while (n_left_from > 0)
2161 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002162 u32 bi0, error0 = TCP_ERROR_ACK_OK;
2163 vlib_buffer_t *b0;
Florin Coras3c514d52018-12-22 11:39:33 -08002164 tcp_header_t *th0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002165 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002166
Florin Coras7ac053b2018-11-05 15:57:21 -08002167 if (n_left_from > 1)
Dave Barach68b0fb02017-02-28 15:15:56 -05002168 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002169 vlib_buffer_t *pb;
2170 pb = vlib_get_buffer (vm, from[1]);
2171 vlib_prefetch_buffer_header (pb, LOAD);
2172 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
Dave Barach68b0fb02017-02-28 15:15:56 -05002173 }
2174
Florin Coras7ac053b2018-11-05 15:57:21 -08002175 bi0 = from[0];
2176 from += 1;
2177 n_left_from -= 1;
2178
2179 b0 = vlib_get_buffer (vm, bi0);
2180 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2181 thread_index);
2182
2183 if (PREDICT_FALSE (tc0 == 0))
2184 {
2185 error0 = TCP_ERROR_INVALID_CONNECTION;
2186 goto done;
2187 }
2188
2189 th0 = tcp_buffer_hdr (b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002190
2191 /* TODO header prediction fast path */
2192
2193 /* 1-4: check SEQ, RST, SYN */
2194 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, th0, &error0)))
2195 {
Florin Corasa436a422019-08-20 07:09:31 -07002196 TCP_EVT (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp);
Florin Coras7ac053b2018-11-05 15:57:21 -08002197 goto done;
2198 }
2199
2200 /* 5: check the ACK field */
2201 if (PREDICT_FALSE (tcp_rcv_ack (wrk, tc0, b0, th0, &error0)))
2202 goto done;
2203
2204 /* 6: check the URG bit TODO */
2205
2206 /* 7: process the segment text */
2207 if (vnet_buffer (b0)->tcp.data_len)
2208 error0 = tcp_segment_rcv (wrk, tc0, b0);
2209
2210 /* 8: check the FIN bit */
Florin Coras3c514d52018-12-22 11:39:33 -08002211 if (PREDICT_FALSE (tcp_is_fin (th0)))
Florin Corasb11175d2018-11-09 14:34:08 -08002212 tcp_rcv_fin (wrk, tc0, b0, &error0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002213
2214 done:
2215 tcp_inc_err_counter (err_counters, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002216 }
2217
Florin Coras31c99552019-03-01 13:00:58 -08002218 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2219 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002220 err_counters[TCP_ERROR_MSG_QUEUE_FULL] = errors;
Florin Coras00cd22d2018-04-18 13:20:18 -07002221 tcp_store_err_counters (established, err_counters);
Florin Coras9ece3c02018-11-05 11:06:53 -08002222 tcp_handle_postponed_dequeues (wrk);
Florin Corasb11175d2018-11-09 14:34:08 -08002223 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08002224 vlib_buffer_free (vm, first_buffer, frame->n_vectors);
Florin Coras4df38712018-06-20 12:44:16 -07002225
2226 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002227}
2228
Filip Tehlare275bed2019-03-06 00:06:56 -08002229VLIB_NODE_FN (tcp4_established_node) (vlib_main_t * vm,
2230 vlib_node_runtime_t * node,
2231 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002232{
2233 return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2234}
2235
Filip Tehlare275bed2019-03-06 00:06:56 -08002236VLIB_NODE_FN (tcp6_established_node) (vlib_main_t * vm,
2237 vlib_node_runtime_t * node,
2238 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002239{
2240 return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2241}
2242
2243/* *INDENT-OFF* */
2244VLIB_REGISTER_NODE (tcp4_established_node) =
2245{
Dave Barach68b0fb02017-02-28 15:15:56 -05002246 .name = "tcp4-established",
2247 /* Takes a vector of packets. */
2248 .vector_size = sizeof (u32),
Florin Corase69f4952017-03-07 10:06:24 -08002249 .n_errors = TCP_N_ERROR,
2250 .error_strings = tcp_error_strings,
Dave Barach68b0fb02017-02-28 15:15:56 -05002251 .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
Dave Barach68b0fb02017-02-28 15:15:56 -05002262/* *INDENT-OFF* */
2263VLIB_REGISTER_NODE (tcp6_established_node) =
2264{
Dave Barach68b0fb02017-02-28 15:15:56 -05002265 .name = "tcp6-established",
2266 /* Takes a vector of packets. */
2267 .vector_size = sizeof (u32),
2268 .n_errors = TCP_N_ERROR,
2269 .error_strings = tcp_error_strings,
2270 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2271 .next_nodes =
2272 {
2273#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2274 foreach_tcp_state_next
2275#undef _
2276 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002277 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002278};
2279/* *INDENT-ON* */
2280
2281
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002282static u8
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002283tcp_lookup_is_valid (tcp_connection_t * tc, vlib_buffer_t * b,
2284 tcp_header_t * hdr)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002285{
Florin Corascea194d2017-10-02 00:18:51 -07002286 transport_connection_t *tmp = 0;
2287 u64 handle;
2288
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002289 if (!tc)
2290 return 1;
2291
Florin Coras70131132017-11-27 02:43:30 -08002292 /* Proxy case */
2293 if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
2294 return 1;
2295
Florin Coras07df7912019-11-07 08:26:06 -08002296 u8 is_ip_valid = 0, val_l, val_r;
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002297
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002298 if (tc->connection.is_ip4)
2299 {
2300 ip4_header_t *ip4_hdr = (ip4_header_t *) vlib_buffer_get_current (b);
Florin Coras07df7912019-11-07 08:26:06 -08002301
2302 val_l = !ip4_address_compare (&ip4_hdr->dst_address,
2303 &tc->connection.lcl_ip.ip4);
2304 val_l = val_l || ip_is_zero (&tc->connection.lcl_ip, 1);
2305 val_r = !ip4_address_compare (&ip4_hdr->src_address,
2306 &tc->connection.rmt_ip.ip4);
2307 val_r = val_r || tc->state == TCP_STATE_LISTEN;
2308 is_ip_valid = val_l && val_r;
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002309 }
2310 else
2311 {
2312 ip6_header_t *ip6_hdr = (ip6_header_t *) vlib_buffer_get_current (b);
Florin Coras07df7912019-11-07 08:26:06 -08002313
2314 val_l = !ip6_address_compare (&ip6_hdr->dst_address,
2315 &tc->connection.lcl_ip.ip6);
2316 val_l = val_l || ip_is_zero (&tc->connection.lcl_ip, 0);
2317 val_r = !ip6_address_compare (&ip6_hdr->src_address,
2318 &tc->connection.rmt_ip.ip6);
2319 val_r = val_r || tc->state == TCP_STATE_LISTEN;
2320 is_ip_valid = val_l && val_r;
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002321 }
2322
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002323 u8 is_valid = (tc->c_lcl_port == hdr->dst_port
2324 && (tc->state == TCP_STATE_LISTEN
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002325 || tc->c_rmt_port == hdr->src_port) && is_ip_valid);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002326
2327 if (!is_valid)
2328 {
Florin Corascea194d2017-10-02 00:18:51 -07002329 handle = session_lookup_half_open_handle (&tc->connection);
2330 tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
Florin Coras3cbc04b2017-10-02 00:18:51 -07002331 tc->c_proto, tc->c_is_ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002332
2333 if (tmp)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002334 {
2335 if (tmp->lcl_port == hdr->dst_port
2336 && tmp->rmt_port == hdr->src_port)
2337 {
Florin Corascea194d2017-10-02 00:18:51 -07002338 TCP_DBG ("half-open is valid!");
Ryujiro Shibuya3ea17d52019-11-05 07:24:32 +00002339 is_valid = 1;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002340 }
2341 }
2342 }
2343 return is_valid;
2344}
2345
2346/**
2347 * Lookup transport connection
2348 */
2349static tcp_connection_t *
Florin Corascea194d2017-10-02 00:18:51 -07002350tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
2351 u8 is_ip4)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002352{
2353 tcp_header_t *tcp;
2354 transport_connection_t *tconn;
2355 tcp_connection_t *tc;
Florin Corasdff48db2017-11-19 18:06:58 -08002356 u8 is_filtered = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002357 if (is_ip4)
2358 {
2359 ip4_header_t *ip4;
2360 ip4 = vlib_buffer_get_current (b);
2361 tcp = ip4_next_header (ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002362 tconn = session_lookup_connection_wt4 (fib_index,
2363 &ip4->dst_address,
2364 &ip4->src_address,
2365 tcp->dst_port,
2366 tcp->src_port,
2367 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002368 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002369 tc = tcp_get_connection_from_transport (tconn);
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002370 ASSERT (tcp_lookup_is_valid (tc, b, tcp));
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002371 }
2372 else
2373 {
2374 ip6_header_t *ip6;
2375 ip6 = vlib_buffer_get_current (b);
2376 tcp = ip6_next_header (ip6);
Florin Corascea194d2017-10-02 00:18:51 -07002377 tconn = session_lookup_connection_wt6 (fib_index,
2378 &ip6->dst_address,
2379 &ip6->src_address,
2380 tcp->dst_port,
2381 tcp->src_port,
2382 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002383 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002384 tc = tcp_get_connection_from_transport (tconn);
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002385 ASSERT (tcp_lookup_is_valid (tc, b, tcp));
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002386 }
2387 return tc;
2388}
2389
Yu Pingb092b772019-12-27 04:04:33 +08002390static tcp_connection_t *
2391tcp_lookup_listener (vlib_buffer_t * b, u32 fib_index, int is_ip4)
2392{
2393 session_t *s;
2394
2395 if (is_ip4)
2396 {
2397 ip4_header_t *ip4 = vlib_buffer_get_current (b);
2398 tcp_header_t *tcp = tcp_buffer_hdr (b);
2399 s = session_lookup_listener4 (fib_index,
2400 &ip4->dst_address,
2401 tcp->dst_port, TRANSPORT_PROTO_TCP, 1);
2402 }
2403 else
2404 {
2405 ip6_header_t *ip6 = vlib_buffer_get_current (b);
2406 tcp_header_t *tcp = tcp_buffer_hdr (b);
2407 s = session_lookup_listener6 (fib_index,
2408 &ip6->dst_address,
2409 tcp->dst_port, TRANSPORT_PROTO_TCP, 1);
2410
2411 }
2412 if (PREDICT_TRUE (s != 0))
2413 return tcp_get_connection_from_transport (transport_get_listener
2414 (TRANSPORT_PROTO_TCP,
2415 s->connection_index));
2416 else
2417 return 0;
2418}
2419
Simon Zhang1146ff42019-09-02 22:54:00 +08002420always_inline void
2421tcp_check_tx_offload (tcp_connection_t * tc, int is_ipv4)
2422{
2423 vnet_main_t *vnm = vnet_get_main ();
2424 const dpo_id_t *dpo;
2425 const load_balance_t *lb;
2426 vnet_hw_interface_t *hw_if;
2427 u32 sw_if_idx, lb_idx;
2428
2429 if (is_ipv4)
2430 {
2431 ip4_address_t *dst_addr = &(tc->c_rmt_ip.ip4);
2432 lb_idx = ip4_fib_forwarding_lookup (tc->c_fib_index, dst_addr);
2433 }
2434 else
2435 {
2436 ip6_address_t *dst_addr = &(tc->c_rmt_ip.ip6);
2437 lb_idx = ip6_fib_table_fwding_lookup (tc->c_fib_index, dst_addr);
2438 }
2439
2440 lb = load_balance_get (lb_idx);
2441 dpo = load_balance_get_bucket_i (lb, 0);
2442
2443 sw_if_idx = dpo->dpoi_index;
2444 hw_if = vnet_get_sup_hw_interface (vnm, sw_if_idx);
2445
Florin Corasbbcfaac2019-10-10 13:52:04 -07002446 if (hw_if->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_GSO)
2447 tc->cfg_flags |= TCP_CFG_F_TSO;
Simon Zhang1146ff42019-09-02 22:54:00 +08002448}
2449
Dave Barach68b0fb02017-02-28 15:15:56 -05002450always_inline uword
2451tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2452 vlib_frame_t * from_frame, int is_ip4)
2453{
Florin Coras7ac053b2018-11-05 15:57:21 -08002454 u32 n_left_from, *from, *first_buffer, errors = 0;
2455 u32 my_thread_index = vm->thread_index;
2456 tcp_worker_ctx_t *wrk = tcp_get_worker (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05002457
Florin Coras7ac053b2018-11-05 15:57:21 -08002458 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002459 n_left_from = from_frame->n_vectors;
2460
Dave Barach68b0fb02017-02-28 15:15:56 -05002461 while (n_left_from > 0)
2462 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002463 u32 bi0, ack0, seq0, error0 = TCP_ERROR_NONE;
2464 tcp_connection_t *tc0, *new_tc0;
2465 tcp_header_t *tcp0 = 0;
2466 tcp_rx_trace_t *t0;
2467 vlib_buffer_t *b0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002468
Florin Coras7ac053b2018-11-05 15:57:21 -08002469 bi0 = from[0];
2470 from += 1;
2471 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002472
Florin Coras7ac053b2018-11-05 15:57:21 -08002473 b0 = vlib_get_buffer (vm, bi0);
2474 tc0 =
2475 tcp_half_open_connection_get (vnet_buffer (b0)->tcp.connection_index);
2476 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002477 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002478 error0 = TCP_ERROR_INVALID_CONNECTION;
2479 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002480 }
2481
Florin Coras7ac053b2018-11-05 15:57:21 -08002482 /* Half-open completed recently but the connection was't removed
2483 * yet by the owning thread */
2484 if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2485 {
2486 /* Make sure the connection actually exists */
2487 ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2488 my_thread_index, is_ip4));
Florin Coras222e1f412019-02-16 20:47:32 -08002489 error0 = TCP_ERROR_SPURIOUS_SYN_ACK;
Florin Coras7ac053b2018-11-05 15:57:21 -08002490 goto drop;
2491 }
2492
2493 ack0 = vnet_buffer (b0)->tcp.ack_number;
2494 seq0 = vnet_buffer (b0)->tcp.seq_number;
2495 tcp0 = tcp_buffer_hdr (b0);
2496
2497 /* Crude check to see if the connection handle does not match
2498 * the packet. Probably connection just switched to established */
2499 if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2500 || tcp0->src_port != tc0->c_rmt_port))
2501 {
2502 error0 = TCP_ERROR_INVALID_CONNECTION;
2503 goto drop;
2504 }
2505
2506 if (PREDICT_FALSE (!tcp_ack (tcp0) && !tcp_rst (tcp0)
2507 && !tcp_syn (tcp0)))
2508 {
2509 error0 = TCP_ERROR_SEGMENT_INVALID;
2510 goto drop;
2511 }
2512
Florin Coras3c514d52018-12-22 11:39:33 -08002513 /* SYNs consume sequence numbers */
2514 vnet_buffer (b0)->tcp.seq_end += tcp_is_syn (tcp0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002515
2516 /*
2517 * 1. check the ACK bit
2518 */
2519
2520 /*
2521 * If the ACK bit is set
2522 * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2523 * the RST bit is set, if so drop the segment and return)
2524 * <SEQ=SEG.ACK><CTL=RST>
2525 * and discard the segment. Return.
2526 * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2527 */
2528 if (tcp_ack (tcp0))
2529 {
2530 if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
2531 {
2532 if (!tcp_rst (tcp0))
Florin Corasd4c49be2019-02-07 00:15:53 -08002533 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002534 error0 = TCP_ERROR_RCV_WND;
2535 goto drop;
2536 }
2537
2538 /* Make sure ACK is valid */
2539 if (seq_gt (tc0->snd_una, ack0))
2540 {
2541 error0 = TCP_ERROR_ACK_INVALID;
2542 goto drop;
2543 }
2544 }
2545
2546 /*
2547 * 2. check the RST bit
2548 */
2549
2550 if (tcp_rst (tcp0))
2551 {
2552 /* If ACK is acceptable, signal client that peer is not
2553 * willing to accept connection and drop connection*/
2554 if (tcp_ack (tcp0))
2555 tcp_connection_reset (tc0);
2556 error0 = TCP_ERROR_RST_RCVD;
2557 goto drop;
2558 }
2559
2560 /*
2561 * 3. check the security and precedence (skipped)
2562 */
2563
2564 /*
2565 * 4. check the SYN bit
2566 */
2567
2568 /* No SYN flag. Drop. */
2569 if (!tcp_syn (tcp0))
2570 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002571 error0 = TCP_ERROR_SEGMENT_INVALID;
2572 goto drop;
2573 }
2574
2575 /* Parse options */
Florin Coras80231112018-12-05 15:59:31 -08002576 if (tcp_options_parse (tcp0, &tc0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08002577 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002578 error0 = TCP_ERROR_OPTIONS;
2579 goto drop;
2580 }
2581
2582 /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2583 * current thread pool. */
Florin Coras12f69362019-08-16 09:44:00 -07002584 new_tc0 = tcp_connection_alloc_w_base (my_thread_index, tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002585 new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2586 new_tc0->irs = seq0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002587 new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
2588 new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
2589
2590 /* If this is not the owning thread, wait for syn retransmit to
2591 * expire and cleanup then */
2592 if (tcp_half_open_connection_cleanup (tc0))
2593 tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
2594
2595 if (tcp_opts_tstamp (&new_tc0->rcv_opts))
2596 {
2597 new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
2598 new_tc0->tsval_recent_age = tcp_time_now ();
2599 }
2600
2601 if (tcp_opts_wscale (&new_tc0->rcv_opts))
2602 new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
Florin Corase80b5912018-12-12 19:25:43 -08002603 else
2604 new_tc0->rcv_wscale = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002605
2606 new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2607 << new_tc0->snd_wscale;
2608 new_tc0->snd_wl1 = seq0;
2609 new_tc0->snd_wl2 = ack0;
2610
2611 tcp_connection_init_vars (new_tc0);
2612
2613 /* SYN-ACK: See if we can switch to ESTABLISHED state */
2614 if (PREDICT_TRUE (tcp_ack (tcp0)))
2615 {
2616 /* Our SYN is ACKed: we have iss < ack = snd_una */
2617
2618 /* TODO Dequeue acknowledged segments if we support Fast Open */
2619 new_tc0->snd_una = ack0;
2620 new_tc0->state = TCP_STATE_ESTABLISHED;
2621
2622 /* Make sure las is initialized for the wnd computation */
2623 new_tc0->rcv_las = new_tc0->rcv_nxt;
2624
2625 /* Notify app that we have connection. If session layer can't
2626 * allocate session send reset */
2627 if (session_stream_connect_notify (&new_tc0->connection, 0))
2628 {
Florin Corasd4c49be2019-02-07 00:15:53 -08002629 tcp_send_reset_w_pkt (new_tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002630 tcp_connection_cleanup (new_tc0);
Florin Coras718a0552019-06-07 07:03:01 -07002631 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
Florin Coras7ac053b2018-11-05 15:57:21 -08002632 goto drop;
2633 }
2634
Florin Coras2e31cc32018-09-25 14:00:34 -07002635 new_tc0->tx_fifo_size =
2636 transport_tx_fifo_size (&new_tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002637 /* Update rtt with the syn-ack sample */
Florin Corasefefc6b2018-11-07 12:49:19 -08002638 tcp_estimate_initial_rtt (new_tc0);
Florin Corasa436a422019-08-20 07:09:31 -07002639 TCP_EVT (TCP_EVT_SYNACK_RCVD, new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002640 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2641 }
2642 /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2643 else
2644 {
2645 new_tc0->state = TCP_STATE_SYN_RCVD;
2646
2647 /* Notify app that we have connection */
2648 if (session_stream_connect_notify (&new_tc0->connection, 0))
2649 {
2650 tcp_connection_cleanup (new_tc0);
Florin Corasd4c49be2019-02-07 00:15:53 -08002651 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Corasa436a422019-08-20 07:09:31 -07002652 TCP_EVT (TCP_EVT_RST_SENT, tc0);
Florin Coras718a0552019-06-07 07:03:01 -07002653 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
Florin Coras7ac053b2018-11-05 15:57:21 -08002654 goto drop;
2655 }
2656
Florin Coras2e31cc32018-09-25 14:00:34 -07002657 new_tc0->tx_fifo_size =
2658 transport_tx_fifo_size (&new_tc0->connection);
2659 new_tc0->rtt_ts = 0;
2660 tcp_init_snd_vars (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002661 tcp_send_synack (new_tc0);
2662 error0 = TCP_ERROR_SYNS_RCVD;
2663 goto drop;
2664 }
2665
Florin Corasbbcfaac2019-10-10 13:52:04 -07002666 if (!(new_tc0->cfg_flags & TCP_CFG_F_NO_TSO))
2667 tcp_check_tx_offload (new_tc0, is_ip4);
Simon Zhang1146ff42019-09-02 22:54:00 +08002668
Florin Coras7ac053b2018-11-05 15:57:21 -08002669 /* Read data, if any */
2670 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
2671 {
2672 clib_warning ("rcvd data in syn-sent");
2673 error0 = tcp_segment_rcv (wrk, new_tc0, b0);
2674 if (error0 == TCP_ERROR_ACK_OK)
2675 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2676 }
2677 else
2678 {
Florin Corascb711a42019-10-16 19:28:17 -07002679 /* Send ack now instead of programming it because connection was
2680 * just established and it's not optional. */
2681 tcp_send_ack (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002682 }
2683
2684 drop:
2685
2686 tcp_inc_counter (syn_sent, error0, 1);
2687 if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
2688 {
2689 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05002690 clib_memcpy_fast (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2691 clib_memcpy_fast (&t0->tcp_connection, tc0,
2692 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08002693 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002694 }
2695
Florin Coras31c99552019-03-01 13:00:58 -08002696 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2697 my_thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002698 tcp_inc_counter (syn_sent, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras7ac053b2018-11-05 15:57:21 -08002699 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
2700
Dave Barach68b0fb02017-02-28 15:15:56 -05002701 return from_frame->n_vectors;
2702}
2703
Filip Tehlare275bed2019-03-06 00:06:56 -08002704VLIB_NODE_FN (tcp4_syn_sent_node) (vlib_main_t * vm,
2705 vlib_node_runtime_t * node,
2706 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002707{
2708 return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2709}
2710
Filip Tehlare275bed2019-03-06 00:06:56 -08002711VLIB_NODE_FN (tcp6_syn_sent_node) (vlib_main_t * vm,
2712 vlib_node_runtime_t * node,
2713 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002714{
2715 return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2716}
2717
2718/* *INDENT-OFF* */
2719VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2720{
Dave Barach68b0fb02017-02-28 15:15:56 -05002721 .name = "tcp4-syn-sent",
2722 /* Takes a vector of packets. */
2723 .vector_size = sizeof (u32),
2724 .n_errors = TCP_N_ERROR,
2725 .error_strings = tcp_error_strings,
2726 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2727 .next_nodes =
2728 {
2729#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2730 foreach_tcp_state_next
2731#undef _
2732 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002733 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002734};
2735/* *INDENT-ON* */
2736
Dave Barach68b0fb02017-02-28 15:15:56 -05002737/* *INDENT-OFF* */
2738VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2739{
Dave Barach68b0fb02017-02-28 15:15:56 -05002740 .name = "tcp6-syn-sent",
2741 /* Takes a vector of packets. */
2742 .vector_size = sizeof (u32),
2743 .n_errors = TCP_N_ERROR,
2744 .error_strings = tcp_error_strings,
2745 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2746 .next_nodes =
2747 {
2748#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2749 foreach_tcp_state_next
2750#undef _
Clement Durand6cf260c2017-04-13 13:27:04 +02002751 },
2752 .format_trace = format_tcp_rx_trace_short,
2753};
Dave Barach68b0fb02017-02-28 15:15:56 -05002754/* *INDENT-ON* */
2755
Dave Barach68b0fb02017-02-28 15:15:56 -05002756/**
Florin Corasd79b41e2017-03-04 05:37:52 -08002757 * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
Dave Barach68b0fb02017-02-28 15:15:56 -05002758 * as per RFC793 p. 64
2759 */
2760always_inline uword
2761tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2762 vlib_frame_t * from_frame, int is_ip4)
2763{
Florin Coras7ac053b2018-11-05 15:57:21 -08002764 u32 thread_index = vm->thread_index, errors = 0, *first_buffer;
2765 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras78cc4b02018-12-20 18:24:49 -08002766 u32 n_left_from, *from, max_dequeue;
Dave Barach68b0fb02017-02-28 15:15:56 -05002767
Florin Coras7ac053b2018-11-05 15:57:21 -08002768 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002769 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002770
2771 while (n_left_from > 0)
2772 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002773 u32 bi0, error0 = TCP_ERROR_NONE;
2774 tcp_header_t *tcp0 = 0;
2775 tcp_connection_t *tc0;
2776 vlib_buffer_t *b0;
2777 u8 is_fin0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002778
Florin Coras7ac053b2018-11-05 15:57:21 -08002779 bi0 = from[0];
2780 from += 1;
2781 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002782
Florin Coras7ac053b2018-11-05 15:57:21 -08002783 b0 = vlib_get_buffer (vm, bi0);
2784 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2785 thread_index);
2786 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002787 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002788 error0 = TCP_ERROR_INVALID_CONNECTION;
2789 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002790 }
2791
Florin Coras7ac053b2018-11-05 15:57:21 -08002792 tcp0 = tcp_buffer_hdr (b0);
2793 is_fin0 = tcp_is_fin (tcp0);
2794
Florin Coras7ac053b2018-11-05 15:57:21 -08002795 if (CLIB_DEBUG)
2796 {
Ryujiro Shibuyac8be8512019-10-28 00:32:12 +00002797 if (!(tc0->connection.flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
Florin Coras7ac053b2018-11-05 15:57:21 -08002798 {
Ryujiro Shibuyac8be8512019-10-28 00:32:12 +00002799 tcp_connection_t *tmp;
2800 tmp = tcp_lookup_connection (tc0->c_fib_index, b0, thread_index,
2801 is_ip4);
2802 if (tmp->state != tc0->state)
2803 {
2804 if (tc0->state != TCP_STATE_CLOSED)
2805 clib_warning ("state changed");
2806 goto drop;
2807 }
Florin Coras7ac053b2018-11-05 15:57:21 -08002808 }
2809 }
2810
2811 /*
2812 * Special treatment for CLOSED
2813 */
2814 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
2815 {
2816 error0 = TCP_ERROR_CONNECTION_CLOSED;
2817 goto drop;
2818 }
2819
2820 /*
2821 * For all other states (except LISTEN)
2822 */
2823
2824 /* 1-4: check SEQ, RST, SYN */
2825 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, tcp0, &error0)))
2826 goto drop;
2827
2828 /* 5: check the ACK field */
2829 switch (tc0->state)
2830 {
2831 case TCP_STATE_SYN_RCVD:
Florin Corasf65074e2019-03-31 17:17:11 -07002832
2833 /* Make sure the segment is exactly right */
2834 if (tc0->rcv_nxt != vnet_buffer (b0)->tcp.seq_number || is_fin0)
2835 {
2836 tcp_connection_reset (tc0);
2837 error0 = TCP_ERROR_SEGMENT_INVALID;
2838 goto drop;
2839 }
2840
Florin Coras7ac053b2018-11-05 15:57:21 -08002841 /*
2842 * If the segment acknowledgment is not acceptable, form a
2843 * reset segment,
2844 * <SEQ=SEG.ACK><CTL=RST>
2845 * and send it.
2846 */
Florin Corasf65074e2019-03-31 17:17:11 -07002847 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08002848 {
Florin Corase78ac9d2018-12-16 21:33:00 -08002849 tcp_connection_reset (tc0);
Florin Coras4850e3e2018-12-12 14:34:38 -08002850 goto drop;
2851 }
2852
Florin Coras7ac053b2018-11-05 15:57:21 -08002853 /* Update rtt and rto */
Florin Corasefefc6b2018-11-07 12:49:19 -08002854 tcp_estimate_initial_rtt (tc0);
Florin Coras36ebcff2019-09-12 18:36:44 -07002855 tcp_connection_tx_pacer_update (tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002856
2857 /* Switch state to ESTABLISHED */
2858 tc0->state = TCP_STATE_ESTABLISHED;
Florin Corasa436a422019-08-20 07:09:31 -07002859 TCP_EVT (TCP_EVT_STATE_CHANGE, tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002860
Florin Corasbbcfaac2019-10-10 13:52:04 -07002861 if (!(tc0->cfg_flags & TCP_CFG_F_NO_TSO))
2862 tcp_check_tx_offload (tc0, is_ip4);
Simon Zhang1146ff42019-09-02 22:54:00 +08002863
Florin Coras7ac053b2018-11-05 15:57:21 -08002864 /* Initialize session variables */
2865 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
2866 tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2867 << tc0->rcv_opts.wscale;
2868 tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2869 tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
2870
2871 /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
2872 tcp_retransmit_timer_reset (tc0);
Florin Corasa27a46e2019-02-18 13:02:28 -08002873 if (session_stream_accept_notify (&tc0->connection))
Florin Corasa9d5bea2018-12-17 08:24:19 -08002874 {
2875 error0 = TCP_ERROR_MSG_QUEUE_FULL;
2876 tcp_connection_reset (tc0);
2877 goto drop;
2878 }
Florin Coras7ac053b2018-11-05 15:57:21 -08002879 error0 = TCP_ERROR_ACK_OK;
2880 break;
2881 case TCP_STATE_ESTABLISHED:
2882 /* We can get packets in established state here because they
2883 * were enqueued before state change */
2884 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2885 goto drop;
2886
2887 break;
2888 case TCP_STATE_FIN_WAIT_1:
2889 /* In addition to the processing for the ESTABLISHED state, if
2890 * our FIN is now acknowledged then enter FIN-WAIT-2 and
2891 * continue processing in that state. */
2892 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2893 goto drop;
2894
2895 /* Still have to send the FIN */
2896 if (tc0->flags & TCP_CONN_FINPNDG)
2897 {
2898 /* TX fifo finally drained */
Florin Coras31c99552019-03-01 13:00:58 -08002899 max_dequeue = transport_max_tx_dequeue (&tc0->connection);
Florin Coras78cc4b02018-12-20 18:24:49 -08002900 if (max_dequeue <= tc0->burst_acked)
Florin Coras7ac053b2018-11-05 15:57:21 -08002901 tcp_send_fin (tc0);
Florin Coras070fd4b2019-04-02 19:03:23 -07002902 /* If a fin was received and data was acked extend wait */
2903 else if ((tc0->flags & TCP_CONN_FINRCVD) && tc0->bytes_acked)
2904 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
Florin Coras9094b5c2019-08-12 14:17:47 -07002905 tcp_cfg.closewait_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08002906 }
2907 /* If FIN is ACKed */
Florin Coras47596832019-03-12 18:58:54 -07002908 else if (tc0->snd_una == tc0->snd_nxt)
Florin Coras7ac053b2018-11-05 15:57:21 -08002909 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002910 /* Stop all retransmit timers because we have nothing more
Florin Corasf65074e2019-03-31 17:17:11 -07002911 * to send. */
Florin Coras7ac053b2018-11-05 15:57:21 -08002912 tcp_connection_timers_reset (tc0);
Florin Corasf65074e2019-03-31 17:17:11 -07002913
2914 /* We already have a FIN but didn't transition to CLOSING
2915 * because of outstanding tx data. Close the connection. */
2916 if (tc0->flags & TCP_CONN_FINRCVD)
2917 {
2918 tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
Florin Coras9094b5c2019-08-12 14:17:47 -07002919 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE,
2920 tcp_cfg.cleanup_time);
Florin Corasa0904f02019-07-22 20:55:11 -07002921 session_transport_closed_notify (&tc0->connection);
Florin Corasf65074e2019-03-31 17:17:11 -07002922 goto drop;
2923 }
2924
2925 tcp_connection_set_state (tc0, TCP_STATE_FIN_WAIT_2);
2926 /* Enable waitclose because we're willing to wait for peer's
2927 * FIN but not indefinitely. */
Florin Coras9094b5c2019-08-12 14:17:47 -07002928 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.finwait2_time);
Florin Corasefefc6b2018-11-07 12:49:19 -08002929
2930 /* Don't try to deq the FIN acked */
2931 if (tc0->burst_acked > 1)
Florin Coras31c99552019-03-01 13:00:58 -08002932 session_tx_fifo_dequeue_drop (&tc0->connection,
2933 tc0->burst_acked - 1);
Florin Corasefefc6b2018-11-07 12:49:19 -08002934 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002935 }
2936 break;
2937 case TCP_STATE_FIN_WAIT_2:
2938 /* In addition to the processing for the ESTABLISHED state, if
2939 * the retransmission queue is empty, the user's CLOSE can be
2940 * acknowledged ("ok") but do not delete the TCB. */
Florin Corasf65074e2019-03-31 17:17:11 -07002941 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08002942 goto drop;
Florin Corasefefc6b2018-11-07 12:49:19 -08002943 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002944 break;
2945 case TCP_STATE_CLOSE_WAIT:
2946 /* Do the same processing as for the ESTABLISHED state. */
2947 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2948 goto drop;
2949
Florin Corasf65074e2019-03-31 17:17:11 -07002950 if (!(tc0->flags & TCP_CONN_FINPNDG))
2951 break;
2952
2953 /* Still have outstanding tx data */
Florin Coras182bbc12019-06-28 09:41:28 -07002954 max_dequeue = transport_max_tx_dequeue (&tc0->connection);
2955 if (max_dequeue > tc0->burst_acked)
Florin Corasf65074e2019-03-31 17:17:11 -07002956 break;
2957
2958 tcp_send_fin (tc0);
2959 tcp_connection_timers_reset (tc0);
2960 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras9094b5c2019-08-12 14:17:47 -07002961 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.lastack_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08002962 break;
2963 case TCP_STATE_CLOSING:
2964 /* In addition to the processing for the ESTABLISHED state, if
2965 * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2966 * otherwise ignore the segment. */
Florin Corasf65074e2019-03-31 17:17:11 -07002967 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2968 goto drop;
Florin Coras47596832019-03-12 18:58:54 -07002969
Florin Corasf65074e2019-03-31 17:17:11 -07002970 if (tc0->snd_una != tc0->snd_nxt)
2971 goto drop;
Florin Coras7ac053b2018-11-05 15:57:21 -08002972
Florin Coras85a3ddd2018-12-24 16:54:34 -08002973 tcp_connection_timers_reset (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002974 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras9094b5c2019-08-12 14:17:47 -07002975 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras692b9492019-07-12 15:01:53 -07002976 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002977 goto drop;
2978
2979 break;
2980 case TCP_STATE_LAST_ACK:
2981 /* The only thing that [should] arrive in this state is an
2982 * acknowledgment of our FIN. If our FIN is now acknowledged,
2983 * delete the TCB, enter the CLOSED state, and return. */
2984
Florin Corasf65074e2019-03-31 17:17:11 -07002985 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2986 goto drop;
2987
Florin Coras7ac053b2018-11-05 15:57:21 -08002988 /* Apparently our ACK for the peer's FIN was lost */
Florin Coras47596832019-03-12 18:58:54 -07002989 if (is_fin0 && tc0->snd_una != tc0->snd_nxt)
Florin Coras7ac053b2018-11-05 15:57:21 -08002990 {
2991 tcp_send_fin (tc0);
2992 goto drop;
2993 }
2994
Florin Coras3c514d52018-12-22 11:39:33 -08002995 tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
Florin Corasa0904f02019-07-22 20:55:11 -07002996 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002997
2998 /* Don't free the connection from the data path since
2999 * we can't ensure that we have no packets already enqueued
3000 * to output. Rely instead on the waitclose timer */
3001 tcp_connection_timers_reset (tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07003002 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.cleanup_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08003003
3004 goto drop;
3005
3006 break;
3007 case TCP_STATE_TIME_WAIT:
3008 /* The only thing that can arrive in this state is a
3009 * retransmission of the remote FIN. Acknowledge it, and restart
3010 * the 2 MSL timeout. */
3011
Florin Corasf65074e2019-03-31 17:17:11 -07003012 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08003013 goto drop;
3014
Florin Coras37db4302019-03-13 13:25:57 -07003015 if (!is_fin0)
3016 goto drop;
3017
Florin Coras26dd6de2019-07-23 23:54:47 -07003018 tcp_program_ack (tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07003019 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08003020 goto drop;
3021
3022 break;
3023 default:
3024 ASSERT (0);
3025 }
3026
3027 /* 6: check the URG bit TODO */
3028
3029 /* 7: process the segment text */
3030 switch (tc0->state)
3031 {
3032 case TCP_STATE_ESTABLISHED:
3033 case TCP_STATE_FIN_WAIT_1:
3034 case TCP_STATE_FIN_WAIT_2:
3035 if (vnet_buffer (b0)->tcp.data_len)
3036 error0 = tcp_segment_rcv (wrk, tc0, b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003037 break;
3038 case TCP_STATE_CLOSE_WAIT:
3039 case TCP_STATE_CLOSING:
3040 case TCP_STATE_LAST_ACK:
3041 case TCP_STATE_TIME_WAIT:
3042 /* This should not occur, since a FIN has been received from the
3043 * remote side. Ignore the segment text. */
3044 break;
3045 }
3046
3047 /* 8: check the FIN bit */
3048 if (!is_fin0)
3049 goto drop;
3050
Florin Corasa436a422019-08-20 07:09:31 -07003051 TCP_EVT (TCP_EVT_FIN_RCVD, tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08003052
Florin Coras7ac053b2018-11-05 15:57:21 -08003053 switch (tc0->state)
3054 {
3055 case TCP_STATE_ESTABLISHED:
Florin Coras3c514d52018-12-22 11:39:33 -08003056 /* Account for the FIN and send ack */
3057 tc0->rcv_nxt += 1;
Florin Coras26dd6de2019-07-23 23:54:47 -07003058 tcp_program_ack (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08003059 tcp_connection_set_state (tc0, TCP_STATE_CLOSE_WAIT);
3060 tcp_program_disconnect (wrk, tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07003061 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.closewait_time);
Florin Coras5c0f1662018-12-19 01:38:57 -08003062 break;
Florin Coras7ac053b2018-11-05 15:57:21 -08003063 case TCP_STATE_SYN_RCVD:
Florin Coras5c0f1662018-12-19 01:38:57 -08003064 /* Send FIN-ACK, enter LAST-ACK and because the app was not
3065 * notified yet, set a cleanup timer instead of relying on
3066 * disconnect notify and the implicit close call. */
Florin Coras7ac053b2018-11-05 15:57:21 -08003067 tcp_connection_timers_reset (tc0);
Florin Coras5c0f1662018-12-19 01:38:57 -08003068 tc0->rcv_nxt += 1;
Florin Coras7ac053b2018-11-05 15:57:21 -08003069 tcp_send_fin (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08003070 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras9094b5c2019-08-12 14:17:47 -07003071 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.lastack_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08003072 break;
3073 case TCP_STATE_CLOSE_WAIT:
3074 case TCP_STATE_CLOSING:
3075 case TCP_STATE_LAST_ACK:
3076 /* move along .. */
3077 break;
3078 case TCP_STATE_FIN_WAIT_1:
Florin Coras3c514d52018-12-22 11:39:33 -08003079 tc0->rcv_nxt += 1;
Florin Coras070fd4b2019-04-02 19:03:23 -07003080
Florin Coras565115e2019-02-20 19:48:31 -08003081 if (tc0->flags & TCP_CONN_FINPNDG)
3082 {
Florin Coras070fd4b2019-04-02 19:03:23 -07003083 /* If data is outstanding, stay in FIN_WAIT_1 and try to finish
3084 * sending it. Since we already received a fin, do not wait
3085 * for too long. */
Florin Corasf65074e2019-03-31 17:17:11 -07003086 tc0->flags |= TCP_CONN_FINRCVD;
Florin Coras9094b5c2019-08-12 14:17:47 -07003087 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
3088 tcp_cfg.closewait_time);
Florin Coras565115e2019-02-20 19:48:31 -08003089 }
3090 else
Florin Corasf65074e2019-03-31 17:17:11 -07003091 {
3092 tcp_connection_set_state (tc0, TCP_STATE_CLOSING);
Florin Coras26dd6de2019-07-23 23:54:47 -07003093 tcp_program_ack (tc0);
Florin Coras070fd4b2019-04-02 19:03:23 -07003094 /* Wait for ACK for our FIN but not forever */
Florin Coras9094b5c2019-08-12 14:17:47 -07003095 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
3096 tcp_cfg.closing_time);
Florin Corasf65074e2019-03-31 17:17:11 -07003097 }
Florin Coras7ac053b2018-11-05 15:57:21 -08003098 break;
3099 case TCP_STATE_FIN_WAIT_2:
3100 /* Got FIN, send ACK! Be more aggressive with resource cleanup */
Florin Coras3c514d52018-12-22 11:39:33 -08003101 tc0->rcv_nxt += 1;
3102 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras7ac053b2018-11-05 15:57:21 -08003103 tcp_connection_timers_reset (tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07003104 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras26dd6de2019-07-23 23:54:47 -07003105 tcp_program_ack (tc0);
Florin Coras692b9492019-07-12 15:01:53 -07003106 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003107 break;
3108 case TCP_STATE_TIME_WAIT:
3109 /* Remain in the TIME-WAIT state. Restart the time-wait
3110 * timeout.
3111 */
Florin Coras9094b5c2019-08-12 14:17:47 -07003112 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08003113 break;
3114 }
3115 error0 = TCP_ERROR_FIN_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -08003116
3117 drop:
3118
3119 tcp_inc_counter (rcv_process, error0, 1);
3120 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3121 {
3122 tcp_rx_trace_t *t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
3123 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
3124 }
Dave Barach68b0fb02017-02-28 15:15:56 -05003125 }
3126
Florin Coras31c99552019-03-01 13:00:58 -08003127 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
3128 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08003129 tcp_inc_counter (rcv_process, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras9ece3c02018-11-05 11:06:53 -08003130 tcp_handle_postponed_dequeues (wrk);
Florin Coras79fdfd62019-05-23 06:19:09 -07003131 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08003132 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3133
Dave Barach68b0fb02017-02-28 15:15:56 -05003134 return from_frame->n_vectors;
3135}
3136
Filip Tehlare275bed2019-03-06 00:06:56 -08003137VLIB_NODE_FN (tcp4_rcv_process_node) (vlib_main_t * vm,
3138 vlib_node_runtime_t * node,
3139 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003140{
3141 return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3142}
3143
Filip Tehlare275bed2019-03-06 00:06:56 -08003144VLIB_NODE_FN (tcp6_rcv_process_node) (vlib_main_t * vm,
3145 vlib_node_runtime_t * node,
3146 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003147{
3148 return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3149}
3150
3151/* *INDENT-OFF* */
3152VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
3153{
Dave Barach68b0fb02017-02-28 15:15:56 -05003154 .name = "tcp4-rcv-process",
3155 /* Takes a vector of packets. */
3156 .vector_size = sizeof (u32),
3157 .n_errors = TCP_N_ERROR,
3158 .error_strings = tcp_error_strings,
3159 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3160 .next_nodes =
3161 {
3162#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3163 foreach_tcp_state_next
3164#undef _
3165 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003166 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003167};
3168/* *INDENT-ON* */
3169
Dave Barach68b0fb02017-02-28 15:15:56 -05003170/* *INDENT-OFF* */
3171VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
3172{
Dave Barach68b0fb02017-02-28 15:15:56 -05003173 .name = "tcp6-rcv-process",
3174 /* Takes a vector of packets. */
3175 .vector_size = sizeof (u32),
3176 .n_errors = TCP_N_ERROR,
3177 .error_strings = tcp_error_strings,
3178 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3179 .next_nodes =
3180 {
3181#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3182 foreach_tcp_state_next
3183#undef _
3184 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003185 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003186};
3187/* *INDENT-ON* */
3188
Dave Barach68b0fb02017-02-28 15:15:56 -05003189/**
3190 * LISTEN state processing as per RFC 793 p. 65
3191 */
3192always_inline uword
3193tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3194 vlib_frame_t * from_frame, int is_ip4)
3195{
Florin Coras7ac053b2018-11-05 15:57:21 -08003196 u32 n_left_from, *from, n_syns = 0, *first_buffer;
Damjan Marion586afd72017-04-05 19:18:20 +02003197 u32 my_thread_index = vm->thread_index;
Yu Pingb092b772019-12-27 04:04:33 +08003198 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003199
Florin Coras7ac053b2018-11-05 15:57:21 -08003200 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05003201 n_left_from = from_frame->n_vectors;
3202
Dave Barach68b0fb02017-02-28 15:15:56 -05003203 while (n_left_from > 0)
3204 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003205 u32 bi0;
3206 vlib_buffer_t *b0;
3207 tcp_rx_trace_t *t0;
3208 tcp_header_t *th0 = 0;
3209 tcp_connection_t *lc0;
3210 ip4_header_t *ip40;
3211 ip6_header_t *ip60;
3212 tcp_connection_t *child0;
3213 u32 error0 = TCP_ERROR_NONE;
Dave Barach68b0fb02017-02-28 15:15:56 -05003214
Florin Coras7ac053b2018-11-05 15:57:21 -08003215 bi0 = from[0];
3216 from += 1;
3217 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05003218
Florin Coras7ac053b2018-11-05 15:57:21 -08003219 b0 = vlib_get_buffer (vm, bi0);
3220 lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index);
Yu Pingb092b772019-12-27 04:04:33 +08003221 if (PREDICT_FALSE (lc0 == 0))
3222 {
3223 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
3224 my_thread_index);
Florin Corasb7f035f2019-12-27 09:27:52 -08003225 if (tc0->state != TCP_STATE_TIME_WAIT)
3226 {
3227 error0 = TCP_ERROR_CREATE_EXISTS;
3228 goto drop;
3229 }
Yu Pingb092b772019-12-27 04:04:33 +08003230 lc0 = tcp_lookup_listener (b0, tc0->c_fib_index, is_ip4);
Florin Corasb7f035f2019-12-27 09:27:52 -08003231 /* clean up the old session */
Yu Pingb092b772019-12-27 04:04:33 +08003232 tcp_connection_del (tc0);
3233 }
Florin Coras7ac053b2018-11-05 15:57:21 -08003234
3235 if (is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003236 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003237 ip40 = vlib_buffer_get_current (b0);
Florin Corasb7f035f2019-12-27 09:27:52 -08003238 th0 = tcp_buffer_hdr (b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003239 }
3240 else
3241 {
3242 ip60 = vlib_buffer_get_current (b0);
Florin Corasb7f035f2019-12-27 09:27:52 -08003243 th0 = tcp_buffer_hdr (b0);
Dave Barach68b0fb02017-02-28 15:15:56 -05003244 }
3245
Florin Coras7ac053b2018-11-05 15:57:21 -08003246 /* Create child session. For syn-flood protection use filter */
3247
3248 /* 1. first check for an RST: handled in dispatch */
3249 /* if (tcp_rst (th0))
3250 goto drop;
3251 */
3252
3253 /* 2. second check for an ACK: handled in dispatch */
3254 /* if (tcp_ack (th0))
3255 {
3256 tcp_send_reset (b0, is_ip4);
3257 goto drop;
3258 }
3259 */
3260
3261 /* 3. check for a SYN (did that already) */
3262
3263 /* Make sure connection wasn't just created */
3264 child0 = tcp_lookup_connection (lc0->c_fib_index, b0, my_thread_index,
3265 is_ip4);
3266 if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN))
3267 {
3268 error0 = TCP_ERROR_CREATE_EXISTS;
3269 goto drop;
3270 }
3271
3272 /* Create child session and send SYN-ACK */
Florin Coras8124cb72018-12-16 20:57:29 -08003273 child0 = tcp_connection_alloc (my_thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08003274 child0->c_lcl_port = th0->dst_port;
3275 child0->c_rmt_port = th0->src_port;
3276 child0->c_is_ip4 = is_ip4;
3277 child0->state = TCP_STATE_SYN_RCVD;
3278 child0->c_fib_index = lc0->c_fib_index;
Florin Coras12f69362019-08-16 09:44:00 -07003279 child0->cc_algo = lc0->cc_algo;
Florin Coras7ac053b2018-11-05 15:57:21 -08003280
3281 if (is_ip4)
3282 {
3283 child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32;
3284 child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32;
3285 }
3286 else
3287 {
Dave Barach178cf492018-11-13 16:34:13 -05003288 clib_memcpy_fast (&child0->c_lcl_ip6, &ip60->dst_address,
3289 sizeof (ip6_address_t));
3290 clib_memcpy_fast (&child0->c_rmt_ip6, &ip60->src_address,
3291 sizeof (ip6_address_t));
Florin Coras7ac053b2018-11-05 15:57:21 -08003292 }
3293
Florin Coras80231112018-12-05 15:59:31 -08003294 if (tcp_options_parse (th0, &child0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08003295 {
Florin Coras8124cb72018-12-16 20:57:29 -08003296 error0 = TCP_ERROR_OPTIONS;
3297 tcp_connection_free (child0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003298 goto drop;
3299 }
3300
3301 child0->irs = vnet_buffer (b0)->tcp.seq_number;
3302 child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1;
3303 child0->rcv_las = child0->rcv_nxt;
3304 child0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
3305
3306 /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
3307 * segments are used to initialize PAWS. */
3308 if (tcp_opts_tstamp (&child0->rcv_opts))
3309 {
3310 child0->tsval_recent = child0->rcv_opts.tsval;
3311 child0->tsval_recent_age = tcp_time_now ();
3312 }
3313
3314 if (tcp_opts_wscale (&child0->rcv_opts))
3315 child0->snd_wscale = child0->rcv_opts.wscale;
3316
3317 child0->snd_wnd = clib_net_to_host_u16 (th0->window)
3318 << child0->snd_wscale;
3319 child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
3320 child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
3321
3322 tcp_connection_init_vars (child0);
Florin Coras865872e2019-01-18 12:12:29 -08003323 child0->rto = TCP_RTO_MIN;
Florin Coras7ac053b2018-11-05 15:57:21 -08003324
Florin Corasc9940fc2019-02-05 20:55:11 -08003325 if (session_stream_accept (&child0->connection, lc0->c_s_index,
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +02003326 lc0->c_thread_index, 0 /* notify */ ))
Florin Coras7ac053b2018-11-05 15:57:21 -08003327 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003328 tcp_connection_cleanup (child0);
3329 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
3330 goto drop;
3331 }
3332
Florin Corasa436a422019-08-20 07:09:31 -07003333 TCP_EVT (TCP_EVT_SYN_RCVD, child0, 1);
Florin Coras2e31cc32018-09-25 14:00:34 -07003334 child0->tx_fifo_size = transport_tx_fifo_size (&child0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003335 tcp_send_synack (child0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003336
3337 drop:
3338
3339 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3340 {
3341 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05003342 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
3343 clib_memcpy_fast (&t0->tcp_connection, lc0,
3344 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08003345 }
3346
3347 n_syns += (error0 == TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003348 }
Florin Coras00cd22d2018-04-18 13:20:18 -07003349
3350 tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
Florin Coras7ac053b2018-11-05 15:57:21 -08003351 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3352
Dave Barach68b0fb02017-02-28 15:15:56 -05003353 return from_frame->n_vectors;
3354}
3355
Filip Tehlare275bed2019-03-06 00:06:56 -08003356VLIB_NODE_FN (tcp4_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3357 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003358{
3359 return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3360}
3361
Filip Tehlare275bed2019-03-06 00:06:56 -08003362VLIB_NODE_FN (tcp6_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3363 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003364{
3365 return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3366}
3367
3368/* *INDENT-OFF* */
3369VLIB_REGISTER_NODE (tcp4_listen_node) =
3370{
Dave Barach68b0fb02017-02-28 15:15:56 -05003371 .name = "tcp4-listen",
3372 /* Takes a vector of packets. */
3373 .vector_size = sizeof (u32),
3374 .n_errors = TCP_N_ERROR,
3375 .error_strings = tcp_error_strings,
3376 .n_next_nodes = TCP_LISTEN_N_NEXT,
3377 .next_nodes =
3378 {
3379#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3380 foreach_tcp_state_next
3381#undef _
3382 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003383 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003384};
3385/* *INDENT-ON* */
3386
Dave Barach68b0fb02017-02-28 15:15:56 -05003387/* *INDENT-OFF* */
3388VLIB_REGISTER_NODE (tcp6_listen_node) =
3389{
Dave Barach68b0fb02017-02-28 15:15:56 -05003390 .name = "tcp6-listen",
3391 /* Takes a vector of packets. */
3392 .vector_size = sizeof (u32),
3393 .n_errors = TCP_N_ERROR,
3394 .error_strings = tcp_error_strings,
3395 .n_next_nodes = TCP_LISTEN_N_NEXT,
3396 .next_nodes =
3397 {
3398#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3399 foreach_tcp_state_next
3400#undef _
3401 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003402 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003403};
3404/* *INDENT-ON* */
3405
Dave Barach68b0fb02017-02-28 15:15:56 -05003406typedef enum _tcp_input_next
3407{
3408 TCP_INPUT_NEXT_DROP,
3409 TCP_INPUT_NEXT_LISTEN,
3410 TCP_INPUT_NEXT_RCV_PROCESS,
3411 TCP_INPUT_NEXT_SYN_SENT,
3412 TCP_INPUT_NEXT_ESTABLISHED,
3413 TCP_INPUT_NEXT_RESET,
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003414 TCP_INPUT_NEXT_PUNT,
Dave Barach68b0fb02017-02-28 15:15:56 -05003415 TCP_INPUT_N_NEXT
3416} tcp_input_next_t;
3417
3418#define foreach_tcp4_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003419 _ (DROP, "ip4-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003420 _ (LISTEN, "tcp4-listen") \
3421 _ (RCV_PROCESS, "tcp4-rcv-process") \
3422 _ (SYN_SENT, "tcp4-syn-sent") \
3423 _ (ESTABLISHED, "tcp4-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003424 _ (RESET, "tcp4-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003425 _ (PUNT, "ip4-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003426
3427#define foreach_tcp6_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003428 _ (DROP, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003429 _ (LISTEN, "tcp6-listen") \
3430 _ (RCV_PROCESS, "tcp6-rcv-process") \
3431 _ (SYN_SENT, "tcp6-syn-sent") \
3432 _ (ESTABLISHED, "tcp6-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003433 _ (RESET, "tcp6-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003434 _ (PUNT, "ip6-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003435
Dave Barach68b0fb02017-02-28 15:15:56 -05003436#define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
3437
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003438static void
3439tcp_input_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07003440 vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003441{
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003442 tcp_connection_t *tc;
3443 tcp_header_t *tcp;
3444 tcp_rx_trace_t *t;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003445 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05003446
Florin Coras4df38712018-06-20 12:44:16 -07003447 for (i = 0; i < n_bufs; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05003448 {
Florin Coras4df38712018-06-20 12:44:16 -07003449 if (bs[i]->flags & VLIB_BUFFER_IS_TRACED)
3450 {
3451 t = vlib_add_trace (vm, node, bs[i], sizeof (*t));
3452 tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index,
3453 vm->thread_index);
3454 tcp = vlib_buffer_get_current (bs[i]);
3455 tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4);
3456 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003457 }
3458}
Dave Barach68b0fb02017-02-28 15:15:56 -05003459
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003460static void
3461tcp_input_set_error_next (tcp_main_t * tm, u16 * next, u32 * error, u8 is_ip4)
3462{
Florin Corasb5e55a22019-01-10 12:42:47 -08003463 if (*error == TCP_ERROR_FILTERED || *error == TCP_ERROR_WRONG_THREAD)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003464 {
3465 *next = TCP_INPUT_NEXT_DROP;
3466 }
3467 else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6))
3468 {
3469 *next = TCP_INPUT_NEXT_PUNT;
3470 *error = TCP_ERROR_PUNT;
3471 }
3472 else
3473 {
3474 *next = TCP_INPUT_NEXT_RESET;
3475 *error = TCP_ERROR_NO_LISTENER;
3476 }
3477}
Dave Barach68b0fb02017-02-28 15:15:56 -05003478
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003479always_inline tcp_connection_t *
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003480tcp_input_lookup_buffer (vlib_buffer_t * b, u8 thread_index, u32 * error,
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003481 u8 is_ip4, u8 is_nolookup)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003482{
3483 u32 fib_index = vnet_buffer (b)->ip.fib_index;
3484 int n_advance_bytes, n_data_bytes;
3485 transport_connection_t *tc;
3486 tcp_header_t *tcp;
Florin Corasb5e55a22019-01-10 12:42:47 -08003487 u8 result = 0;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003488
3489 if (is_ip4)
3490 {
3491 ip4_header_t *ip4 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003492 int ip_hdr_bytes = ip4_header_bytes (ip4);
3493 if (PREDICT_FALSE (b->current_length < ip_hdr_bytes + sizeof (*tcp)))
3494 {
3495 *error = TCP_ERROR_LENGTH;
3496 return 0;
3497 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003498 tcp = ip4_next_header (ip4);
3499 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip4;
Florin Corasb8dda5f2018-12-05 10:03:34 -08003500 n_advance_bytes = (ip_hdr_bytes + tcp_header_bytes (tcp));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003501 n_data_bytes = clib_net_to_host_u16 (ip4->length) - n_advance_bytes;
3502
3503 /* Length check. Checksum computed by ipx_local no need to compute again */
Florin Corasb8dda5f2018-12-05 10:03:34 -08003504 if (PREDICT_FALSE (n_data_bytes < 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05003505 {
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003506 *error = TCP_ERROR_LENGTH;
3507 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003508 }
3509
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003510 if (!is_nolookup)
3511 tc = session_lookup_connection_wt4 (fib_index, &ip4->dst_address,
3512 &ip4->src_address, tcp->dst_port,
3513 tcp->src_port,
3514 TRANSPORT_PROTO_TCP, thread_index,
3515 &result);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003516 }
3517 else
3518 {
3519 ip6_header_t *ip6 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003520 if (PREDICT_FALSE (b->current_length < sizeof (*ip6) + sizeof (*tcp)))
3521 {
3522 *error = TCP_ERROR_LENGTH;
3523 return 0;
3524 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003525 tcp = ip6_next_header (ip6);
3526 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip6;
3527 n_advance_bytes = tcp_header_bytes (tcp);
3528 n_data_bytes = clib_net_to_host_u16 (ip6->payload_length)
3529 - n_advance_bytes;
3530 n_advance_bytes += sizeof (ip6[0]);
3531
Florin Corasb8dda5f2018-12-05 10:03:34 -08003532 if (PREDICT_FALSE (n_data_bytes < 0))
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003533 {
3534 *error = TCP_ERROR_LENGTH;
3535 return 0;
3536 }
3537
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003538 if (!is_nolookup)
3539 {
3540 if (PREDICT_FALSE
3541 (ip6_address_is_link_local_unicast (&ip6->dst_address)))
3542 {
3543 ip4_main_t *im = &ip4_main;
3544 fib_index = vec_elt (im->fib_index_by_sw_if_index,
3545 vnet_buffer (b)->sw_if_index[VLIB_RX]);
3546 }
3547
3548 tc = session_lookup_connection_wt6 (fib_index, &ip6->dst_address,
3549 &ip6->src_address,
3550 tcp->dst_port, tcp->src_port,
3551 TRANSPORT_PROTO_TCP,
3552 thread_index, &result);
3553 }
Dave Barach68b0fb02017-02-28 15:15:56 -05003554 }
3555
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003556 if (is_nolookup)
3557 tc =
3558 (transport_connection_t *) tcp_connection_get (vnet_buffer (b)->
3559 tcp.connection_index,
3560 thread_index);
3561
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003562 vnet_buffer (b)->tcp.seq_number = clib_net_to_host_u32 (tcp->seq_number);
3563 vnet_buffer (b)->tcp.ack_number = clib_net_to_host_u32 (tcp->ack_number);
3564 vnet_buffer (b)->tcp.data_offset = n_advance_bytes;
3565 vnet_buffer (b)->tcp.data_len = n_data_bytes;
Florin Coras3c514d52018-12-22 11:39:33 -08003566 vnet_buffer (b)->tcp.seq_end = vnet_buffer (b)->tcp.seq_number
3567 + n_data_bytes;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003568 vnet_buffer (b)->tcp.flags = 0;
3569
Florin Corasb5e55a22019-01-10 12:42:47 -08003570 *error = result ? TCP_ERROR_NONE + result : *error;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003571
3572 return tcp_get_connection_from_transport (tc);
3573}
3574
3575static inline void
3576tcp_input_dispatch_buffer (tcp_main_t * tm, tcp_connection_t * tc,
3577 vlib_buffer_t * b, u16 * next, u32 * error)
3578{
3579 tcp_header_t *tcp;
3580 u8 flags;
3581
3582 tcp = tcp_buffer_hdr (b);
3583 flags = tcp->flags & filter_flags;
3584 *next = tm->dispatch_table[tc->state][flags].next;
3585 *error = tm->dispatch_table[tc->state][flags].error;
Florin Corasedfe0ee2019-07-29 18:13:25 -07003586 tc->segs_in += 1;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003587
3588 if (PREDICT_FALSE (*error == TCP_ERROR_DISPATCH
3589 || *next == TCP_INPUT_NEXT_RESET))
3590 {
3591 /* Overload tcp flags to store state */
3592 tcp_state_t state = tc->state;
3593 vnet_buffer (b)->tcp.flags = tc->state;
3594
3595 if (*error == TCP_ERROR_DISPATCH)
Florin Corasa9d5bea2018-12-17 08:24:19 -08003596 clib_warning ("tcp conn %u disp error state %U flags %U",
3597 tc->c_c_index, format_tcp_state, state,
3598 format_tcp_flags, (int) flags);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003599 }
3600}
3601
3602always_inline uword
3603tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003604 vlib_frame_t * frame, int is_ip4, u8 is_nolookup)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003605{
3606 u32 n_left_from, *from, thread_index = vm->thread_index;
3607 tcp_main_t *tm = vnet_get_tcp_main ();
3608 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
3609 u16 nexts[VLIB_FRAME_SIZE], *next;
3610
Florin Corasbe72ae62018-11-01 11:23:03 -07003611 tcp_set_time_now (tcp_get_worker (thread_index));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003612
3613 from = vlib_frame_vector_args (frame);
3614 n_left_from = frame->n_vectors;
3615 vlib_get_buffers (vm, from, bufs, n_left_from);
3616
3617 b = bufs;
3618 next = nexts;
3619
3620 while (n_left_from >= 4)
3621 {
3622 u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER;
3623 tcp_connection_t *tc0, *tc1;
3624
3625 {
3626 vlib_prefetch_buffer_header (b[2], STORE);
3627 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3628
3629 vlib_prefetch_buffer_header (b[3], STORE);
3630 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3631 }
3632
3633 next[0] = next[1] = TCP_INPUT_NEXT_DROP;
3634
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003635 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
3636 is_nolookup);
3637 tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4,
3638 is_nolookup);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003639
3640 if (PREDICT_TRUE (!tc0 + !tc1 == 0))
3641 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003642 ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
3643 ASSERT (tcp_lookup_is_valid (tc1, b[1], tcp_buffer_hdr (b[1])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003644
3645 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3646 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3647
3648 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3649 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3650 }
3651 else
3652 {
3653 if (PREDICT_TRUE (tc0 != 0))
3654 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003655 ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003656 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3657 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3658 }
3659 else
3660 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3661
3662 if (PREDICT_TRUE (tc1 != 0))
3663 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003664 ASSERT (tcp_lookup_is_valid (tc1, b[1], tcp_buffer_hdr (b[1])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003665 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3666 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3667 }
3668 else
3669 tcp_input_set_error_next (tm, &next[1], &error1, is_ip4);
3670 }
3671
3672 b += 2;
3673 next += 2;
3674 n_left_from -= 2;
3675 }
3676 while (n_left_from > 0)
3677 {
3678 tcp_connection_t *tc0;
3679 u32 error0 = TCP_ERROR_NO_LISTENER;
3680
3681 if (n_left_from > 1)
3682 {
3683 vlib_prefetch_buffer_header (b[1], STORE);
3684 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3685 }
3686
3687 next[0] = TCP_INPUT_NEXT_DROP;
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003688 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
3689 is_nolookup);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003690 if (PREDICT_TRUE (tc0 != 0))
3691 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003692 ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003693 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3694 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3695 }
3696 else
3697 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3698
3699 b += 1;
3700 next += 1;
3701 n_left_from -= 1;
3702 }
3703
3704 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
3705 tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4);
3706
3707 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
3708 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05003709}
3710
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003711VLIB_NODE_FN (tcp4_input_nolookup_node) (vlib_main_t * vm,
3712 vlib_node_runtime_t * node,
3713 vlib_frame_t * from_frame)
3714{
3715 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
3716 1 /* is_nolookup */ );
3717}
3718
3719VLIB_NODE_FN (tcp6_input_nolookup_node) (vlib_main_t * vm,
3720 vlib_node_runtime_t * node,
3721 vlib_frame_t * from_frame)
3722{
3723 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3724 1 /* is_nolookup */ );
3725}
3726
3727/* *INDENT-OFF* */
3728VLIB_REGISTER_NODE (tcp4_input_nolookup_node) =
3729{
3730 .name = "tcp4-input-nolookup",
3731 /* Takes a vector of packets. */
3732 .vector_size = sizeof (u32),
3733 .n_errors = TCP_N_ERROR,
3734 .error_strings = tcp_error_strings,
3735 .n_next_nodes = TCP_INPUT_N_NEXT,
3736 .next_nodes =
3737 {
3738#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3739 foreach_tcp4_input_next
3740#undef _
3741 },
3742 .format_buffer = format_tcp_header,
3743 .format_trace = format_tcp_rx_trace,
3744};
3745/* *INDENT-ON* */
3746
3747/* *INDENT-OFF* */
3748VLIB_REGISTER_NODE (tcp6_input_nolookup_node) =
3749{
3750 .name = "tcp6-input-nolookup",
3751 /* Takes a vector of packets. */
3752 .vector_size = sizeof (u32),
3753 .n_errors = TCP_N_ERROR,
3754 .error_strings = tcp_error_strings,
3755 .n_next_nodes = TCP_INPUT_N_NEXT,
3756 .next_nodes =
3757 {
3758#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3759 foreach_tcp6_input_next
3760#undef _
3761 },
3762 .format_buffer = format_tcp_header,
3763 .format_trace = format_tcp_rx_trace,
3764};
3765/* *INDENT-ON* */
3766
Filip Tehlare275bed2019-03-06 00:06:56 -08003767VLIB_NODE_FN (tcp4_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3768 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003769{
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003770 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
3771 0 /* is_nolookup */ );
Dave Barach68b0fb02017-02-28 15:15:56 -05003772}
3773
Filip Tehlare275bed2019-03-06 00:06:56 -08003774VLIB_NODE_FN (tcp6_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3775 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003776{
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003777 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3778 0 /* is_nolookup */ );
Dave Barach68b0fb02017-02-28 15:15:56 -05003779}
3780
3781/* *INDENT-OFF* */
3782VLIB_REGISTER_NODE (tcp4_input_node) =
3783{
Dave Barach68b0fb02017-02-28 15:15:56 -05003784 .name = "tcp4-input",
3785 /* Takes a vector of packets. */
3786 .vector_size = sizeof (u32),
3787 .n_errors = TCP_N_ERROR,
3788 .error_strings = tcp_error_strings,
3789 .n_next_nodes = TCP_INPUT_N_NEXT,
3790 .next_nodes =
3791 {
3792#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3793 foreach_tcp4_input_next
3794#undef _
3795 },
3796 .format_buffer = format_tcp_header,
3797 .format_trace = format_tcp_rx_trace,
3798};
3799/* *INDENT-ON* */
3800
Dave Barach68b0fb02017-02-28 15:15:56 -05003801/* *INDENT-OFF* */
3802VLIB_REGISTER_NODE (tcp6_input_node) =
3803{
Dave Barach68b0fb02017-02-28 15:15:56 -05003804 .name = "tcp6-input",
3805 /* Takes a vector of packets. */
3806 .vector_size = sizeof (u32),
3807 .n_errors = TCP_N_ERROR,
3808 .error_strings = tcp_error_strings,
3809 .n_next_nodes = TCP_INPUT_N_NEXT,
3810 .next_nodes =
3811 {
3812#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3813 foreach_tcp6_input_next
3814#undef _
3815 },
3816 .format_buffer = format_tcp_header,
3817 .format_trace = format_tcp_rx_trace,
3818};
3819/* *INDENT-ON* */
3820
Filip Tehlare275bed2019-03-06 00:06:56 -08003821#ifndef CLIB_MARCH_VARIANT
Dave Barach68b0fb02017-02-28 15:15:56 -05003822static void
3823tcp_dispatch_table_init (tcp_main_t * tm)
3824{
3825 int i, j;
3826 for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3827 for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3828 {
3829 tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3830 tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3831 }
3832
3833#define _(t,f,n,e) \
3834do { \
3835 tm->dispatch_table[TCP_STATE_##t][f].next = (n); \
3836 tm->dispatch_table[TCP_STATE_##t][f].error = (e); \
3837} while (0)
3838
Florin Coras678a6572018-12-17 21:31:25 -08003839 /* RFC 793: In LISTEN if RST drop and if ACK return RST */
Florin Coras5c0f1662018-12-19 01:38:57 -08003840 _(LISTEN, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras678a6572018-12-17 21:31:25 -08003841 _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_ACK_INVALID);
3842 _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_INVALID_CONNECTION);
Dave Barach68b0fb02017-02-28 15:15:56 -05003843 _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003844 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3845 TCP_ERROR_ACK_INVALID);
3846 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3847 TCP_ERROR_SEGMENT_INVALID);
3848 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3849 TCP_ERROR_SEGMENT_INVALID);
3850 _(LISTEN, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3851 TCP_ERROR_INVALID_CONNECTION);
3852 _(LISTEN, TCP_FLAG_FIN, TCP_INPUT_NEXT_RESET, TCP_ERROR_SEGMENT_INVALID);
Dave Barach2c25a622017-06-26 11:35:07 -04003853 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
Florin Coras678a6572018-12-17 21:31:25 -08003854 TCP_ERROR_SEGMENT_INVALID);
3855 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3856 TCP_ERROR_SEGMENT_INVALID);
3857 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003858 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003859 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_DROP,
3860 TCP_ERROR_SEGMENT_INVALID);
3861 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3862 TCP_ERROR_SEGMENT_INVALID);
3863 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3864 TCP_ERROR_SEGMENT_INVALID);
3865 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3866 TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003867 /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3868 _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc28764f2017-04-26 00:08:42 -07003869 _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase8460c72018-09-24 14:40:40 -07003870 _(SYN_RCVD, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3871 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003872 _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003873 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3874 TCP_ERROR_NONE);
3875 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3876 TCP_ERROR_NONE);
3877 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3878 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3879 _(SYN_RCVD, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc01c4452018-09-20 18:36:54 -07003880 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3881 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003882 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3883 TCP_ERROR_NONE);
3884 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3885 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3886 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3887 TCP_ERROR_NONE);
3888 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3889 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3890 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3891 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3892 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3893 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3894 _(SYN_RCVD, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003895 /* SYN-ACK for a SYN */
3896 _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3897 TCP_ERROR_NONE);
3898 _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3899 _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3900 _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3901 TCP_ERROR_NONE);
Florin Coras222e1f412019-02-16 20:47:32 -08003902 _(SYN_SENT, TCP_FLAG_FIN, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3903 _(SYN_SENT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3904 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003905 /* ACK for for established connection -> tcp-established. */
3906 _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3907 /* FIN for for established connection -> tcp-established. */
3908 _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3909 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3910 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003911 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3912 TCP_ERROR_NONE);
3913 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3914 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3915 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED,
3916 TCP_ERROR_NONE);
3917 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3918 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3919 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3920 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3921 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3922 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasd79b41e2017-03-04 05:37:52 -08003923 _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003924 _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3925 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003926 _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003927 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3928 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003929 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3930 TCP_ERROR_NONE);
3931 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3932 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3933 _(ESTABLISHED, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003934 /* ACK or FIN-ACK to our FIN */
3935 _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3936 _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
3937 TCP_ERROR_NONE);
3938 /* FIN in reply to our FIN from the other side */
Florin Coras76bc1302018-12-23 23:36:36 -08003939 _(FIN_WAIT_1, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003940 _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08003941 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3942 TCP_ERROR_NONE);
3943 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3944 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3945 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3946 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3947 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3948 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3949 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3950 TCP_ERROR_NONE);
3951 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3952 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras5c0f1662018-12-19 01:38:57 -08003953 _(FIN_WAIT_1, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08003954 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3955 TCP_ERROR_NONE);
3956 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3957 TCP_ERROR_NONE);
3958 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3959 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003960 _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase96bf632018-12-18 22:44:27 -08003961 _(FIN_WAIT_1, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3962 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003963 _(CLOSING, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras56318932018-05-23 20:44:12 -07003964 _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08003965 _(CLOSING, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003966 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3967 TCP_ERROR_NONE);
3968 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3969 TCP_ERROR_NONE);
3970 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3971 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08003972 _(CLOSING, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3973 _(CLOSING, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3974 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003975 _(CLOSING, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras3c514d52018-12-22 11:39:33 -08003976 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3977 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003978 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3979 TCP_ERROR_NONE);
3980 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3981 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3982 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3983 TCP_ERROR_NONE);
3984 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3985 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras79c04d62019-08-11 19:49:05 -07003986 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3987 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003988 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3989 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003990 /* FIN confirming that the peer (app) has closed */
3991 _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasf6d68ed2017-05-07 19:12:02 -07003992 _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003993 _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3994 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003995 _(FIN_WAIT_2, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3996 _(FIN_WAIT_2, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3997 TCP_ERROR_NONE);
Florin Corasf03a59a2017-06-09 21:07:32 -07003998 _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3999 _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4000 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08004001 _(CLOSE_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4002 _(CLOSE_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4003 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08004004 _(LAST_ACK, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05004005 _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07004006 _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4007 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4008 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08004009 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
4010 TCP_ERROR_NONE);
4011 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
4012 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4013 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
4014 TCP_ERROR_NONE);
4015 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
4016 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4017 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
4018 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4019 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4020 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasdb84e572017-05-09 18:54:52 -07004021 _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08004022 _(LAST_ACK, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4023 TCP_ERROR_NONE);
Florin Corasc01d5782018-10-17 14:53:11 -07004024 _(LAST_ACK, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08004025 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4026 TCP_ERROR_NONE);
4027 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
4028 TCP_ERROR_NONE);
4029 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4030 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Yu Pingb092b772019-12-27 04:04:33 +08004031 _(TIME_WAIT, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07004032 _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4033 _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4034 TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04004035 _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08004036 _(TIME_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4037 TCP_ERROR_NONE);
Florin Coras50958952017-08-29 14:50:13 -07004038 _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08004039 /* RFC793 CLOSED: An incoming segment containing a RST is discarded. An
4040 * incoming segment not containing a RST causes a RST to be sent in
4041 * response.*/
Florin Corasdc629cd2017-05-09 00:52:37 -07004042 _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08004043 _(CLOSED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04004044 TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08004045 _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
4046 _(CLOSED, TCP_FLAG_SYN, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
4047 _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
4048 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05004049#undef _
4050}
4051
Florin Coras0dbd5172018-06-25 16:19:34 -07004052static clib_error_t *
Dave Barach68b0fb02017-02-28 15:15:56 -05004053tcp_input_init (vlib_main_t * vm)
4054{
4055 clib_error_t *error = 0;
4056 tcp_main_t *tm = vnet_get_tcp_main ();
4057
4058 if ((error = vlib_call_init_function (vm, tcp_init)))
4059 return error;
4060
4061 /* Initialize dispatch table. */
4062 tcp_dispatch_table_init (tm);
4063
4064 return error;
4065}
4066
4067VLIB_INIT_FUNCTION (tcp_input_init);
4068
Filip Tehlare275bed2019-03-06 00:06:56 -08004069#endif /* CLIB_MARCH_VARIANT */
4070
Dave Barach68b0fb02017-02-28 15:15:56 -05004071/*
4072 * fd.io coding-style-patch-verification: ON
4073 *
4074 * Local Variables:
4075 * eval: (c-set-style "gnu")
4076 * End:
4077 */