blob: 172dcd2ee6f735b04446226d3b26c2906c774de7 [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
Florin Corasc31dc312019-10-06 14:06:14 -0700578always_inline u8
579tcp_recovery_no_snd_space (tcp_connection_t * tc)
580{
Florin Corasb3dce892019-10-30 09:22:14 -0700581 u32 space;
582
583 ASSERT (tcp_in_cong_recovery (tc));
584
585 if (tcp_in_recovery (tc))
586 space = tcp_available_output_snd_space (tc);
587 else
588 space = tcp_fastrecovery_prr_snd_space (tc);
589
590 return (space < tc->snd_mss + tc->burst_acked);
Florin Corasc31dc312019-10-06 14:06:14 -0700591}
592
Dave Barach68b0fb02017-02-28 15:15:56 -0500593/**
Florin Coras9ece3c02018-11-05 11:06:53 -0800594 * Dequeue bytes for connections that have received acks in last burst
Dave Barach68b0fb02017-02-28 15:15:56 -0500595 */
596static void
Florin Coras9ece3c02018-11-05 11:06:53 -0800597tcp_handle_postponed_dequeues (tcp_worker_ctx_t * wrk)
Dave Barach68b0fb02017-02-28 15:15:56 -0500598{
Florin Coras9ece3c02018-11-05 11:06:53 -0800599 u32 thread_index = wrk->vm->thread_index;
600 u32 *pending_deq_acked;
601 tcp_connection_t *tc;
602 int i;
Florin Coras93992a92017-05-24 18:03:56 -0700603
Florin Coras9ece3c02018-11-05 11:06:53 -0800604 if (!vec_len (wrk->pending_deq_acked))
605 return;
Dave Barach68b0fb02017-02-28 15:15:56 -0500606
Florin Coras9ece3c02018-11-05 11:06:53 -0800607 pending_deq_acked = wrk->pending_deq_acked;
608 for (i = 0; i < vec_len (pending_deq_acked); i++)
609 {
610 tc = tcp_connection_get (pending_deq_acked[i], thread_index);
611 tc->flags &= ~TCP_CONN_DEQ_PENDING;
Florin Coras93992a92017-05-24 18:03:56 -0700612
Florin Corasc31dc312019-10-06 14:06:14 -0700613 if (tc->burst_acked)
Florin Coras42ceddb2018-12-12 10:56:01 -0800614 {
Florin Corasc31dc312019-10-06 14:06:14 -0700615 /* Dequeue the newly ACKed bytes */
616 session_tx_fifo_dequeue_drop (&tc->connection, tc->burst_acked);
Florin Corasc31dc312019-10-06 14:06:14 -0700617 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
618
619 if (PREDICT_FALSE (tc->flags & TCP_CONN_PSH_PENDING))
620 {
621 if (seq_leq (tc->psh_seq, tc->snd_una))
622 tc->flags &= ~TCP_CONN_PSH_PENDING;
623 }
624
625 /* If everything has been acked, stop retransmit timer
626 * otherwise update. */
627 tcp_retransmit_timer_update (tc);
628
629 /* Update pacer based on our new cwnd estimate */
630 tcp_connection_tx_pacer_update (tc);
Florin Coras42ceddb2018-12-12 10:56:01 -0800631 }
632
Florin Corasc31dc312019-10-06 14:06:14 -0700633 /* Reset the pacer if we've been idle, i.e., no data sent or if
634 * we're in recovery and snd space constrained */
635 if (tc->data_segs_out == tc->prev_dsegs_out
Florin Corasb3dce892019-10-30 09:22:14 -0700636 || (tcp_in_cong_recovery (tc) && tcp_recovery_no_snd_space (tc)))
Florin Corasa8e71c82019-10-22 19:01:39 -0700637 transport_connection_tx_pacer_reset_bucket (&tc->connection);
Florin Corasb3dce892019-10-30 09:22:14 -0700638
Florin Corasc31dc312019-10-06 14:06:14 -0700639 tc->prev_dsegs_out = tc->data_segs_out;
Florin Corasb3dce892019-10-30 09:22:14 -0700640 tc->burst_acked = 0;
Florin Coras9ece3c02018-11-05 11:06:53 -0800641 }
642 _vec_len (wrk->pending_deq_acked) = 0;
643}
644
645static void
646tcp_program_dequeue (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
647{
648 if (!(tc->flags & TCP_CONN_DEQ_PENDING))
649 {
650 vec_add1 (wrk->pending_deq_acked, tc->c_c_index);
651 tc->flags |= TCP_CONN_DEQ_PENDING;
652 }
Florin Coras558e3e02019-09-06 12:56:58 -0700653 tc->burst_acked += tc->bytes_acked;
Dave Barach68b0fb02017-02-28 15:15:56 -0500654}
655
Filip Tehlare275bed2019-03-06 00:06:56 -0800656#ifndef CLIB_MARCH_VARIANT
Florin Coras0dbd5172018-06-25 16:19:34 -0700657static u32
658scoreboard_hole_index (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
659{
660 ASSERT (!pool_is_free_index (sb->holes, hole - sb->holes));
661 return hole - sb->holes;
662}
663
664static u32
665scoreboard_hole_bytes (sack_scoreboard_hole_t * hole)
666{
667 return hole->end - hole->start;
668}
669
670sack_scoreboard_hole_t *
671scoreboard_get_hole (sack_scoreboard_t * sb, u32 index)
672{
673 if (index != TCP_INVALID_SACK_HOLE_INDEX)
674 return pool_elt_at_index (sb->holes, index);
675 return 0;
676}
677
678sack_scoreboard_hole_t *
679scoreboard_next_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
680{
681 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
682 return pool_elt_at_index (sb->holes, hole->next);
683 return 0;
684}
685
686sack_scoreboard_hole_t *
687scoreboard_prev_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
688{
689 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
690 return pool_elt_at_index (sb->holes, hole->prev);
691 return 0;
692}
693
694sack_scoreboard_hole_t *
695scoreboard_first_hole (sack_scoreboard_t * sb)
696{
697 if (sb->head != TCP_INVALID_SACK_HOLE_INDEX)
698 return pool_elt_at_index (sb->holes, sb->head);
699 return 0;
700}
701
702sack_scoreboard_hole_t *
703scoreboard_last_hole (sack_scoreboard_t * sb)
704{
705 if (sb->tail != TCP_INVALID_SACK_HOLE_INDEX)
706 return pool_elt_at_index (sb->holes, sb->tail);
707 return 0;
708}
709
710static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500711scoreboard_remove_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
712{
713 sack_scoreboard_hole_t *next, *prev;
714
715 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
716 {
717 next = pool_elt_at_index (sb->holes, hole->next);
718 next->prev = hole->prev;
719 }
Florin Coras93992a92017-05-24 18:03:56 -0700720 else
721 {
722 sb->tail = hole->prev;
723 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500724
725 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
726 {
727 prev = pool_elt_at_index (sb->holes, hole->prev);
728 prev->next = hole->next;
729 }
730 else
731 {
732 sb->head = hole->next;
733 }
734
Florin Coras93992a92017-05-24 18:03:56 -0700735 if (scoreboard_hole_index (sb, hole) == sb->cur_rxt_hole)
736 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
737
Florin Coras3eb50622017-07-13 01:24:57 -0400738 /* Poison the entry */
739 if (CLIB_DEBUG > 0)
Dave Barachb7b92992018-10-17 10:38:51 -0400740 clib_memset (hole, 0xfe, sizeof (*hole));
Florin Coras3eb50622017-07-13 01:24:57 -0400741
Dave Barach68b0fb02017-02-28 15:15:56 -0500742 pool_put (sb->holes, hole);
743}
744
Florin Coras0dbd5172018-06-25 16:19:34 -0700745static sack_scoreboard_hole_t *
Florin Coras6792ec02017-03-13 03:49:51 -0700746scoreboard_insert_hole (sack_scoreboard_t * sb, u32 prev_index,
Dave Barach68b0fb02017-02-28 15:15:56 -0500747 u32 start, u32 end)
748{
Florin Coras6792ec02017-03-13 03:49:51 -0700749 sack_scoreboard_hole_t *hole, *next, *prev;
Dave Barach68b0fb02017-02-28 15:15:56 -0500750 u32 hole_index;
751
752 pool_get (sb->holes, hole);
Dave Barachb7b92992018-10-17 10:38:51 -0400753 clib_memset (hole, 0, sizeof (*hole));
Dave Barach68b0fb02017-02-28 15:15:56 -0500754
755 hole->start = start;
756 hole->end = end;
Florin Coras3eb50622017-07-13 01:24:57 -0400757 hole_index = scoreboard_hole_index (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500758
Florin Coras6792ec02017-03-13 03:49:51 -0700759 prev = scoreboard_get_hole (sb, prev_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500760 if (prev)
761 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700762 hole->prev = prev_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500763 hole->next = prev->next;
764
765 if ((next = scoreboard_next_hole (sb, hole)))
766 next->prev = hole_index;
Florin Corasf03a59a2017-06-09 21:07:32 -0700767 else
768 sb->tail = hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500769
770 prev->next = hole_index;
771 }
772 else
773 {
774 sb->head = hole_index;
775 hole->prev = TCP_INVALID_SACK_HOLE_INDEX;
776 hole->next = TCP_INVALID_SACK_HOLE_INDEX;
777 }
778
779 return hole;
780}
781
Florin Coras36ebcff2019-09-12 18:36:44 -0700782always_inline void
783scoreboard_update_sacked_rxt (sack_scoreboard_t * sb, u32 start, u32 end,
784 u8 has_rxt)
785{
786 if (!has_rxt || seq_geq (start, sb->high_rxt))
787 return;
788
789 sb->rxt_sacked +=
790 seq_lt (end, sb->high_rxt) ? (end - start) : (sb->high_rxt - start);
791}
Florin Coras558e3e02019-09-06 12:56:58 -0700792
793always_inline void
794scoreboard_update_bytes (sack_scoreboard_t * sb, u32 ack, u32 snd_mss)
Florin Coras93992a92017-05-24 18:03:56 -0700795{
Florin Corasecbd20b2018-10-17 23:34:54 -0700796 sack_scoreboard_hole_t *left, *right;
Florin Coras558e3e02019-09-06 12:56:58 -0700797 u32 sacked = 0, blks = 0, old_sacked;
798
799 old_sacked = sb->sacked_bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700800
Florin Corasb3f58e12019-07-05 18:31:54 -0700801 sb->last_lost_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700802 sb->lost_bytes = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700803 sb->sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700804
Florin Coras558e3e02019-09-06 12:56:58 -0700805 right = scoreboard_last_hole (sb);
806 if (!right)
Florin Coras93992a92017-05-24 18:03:56 -0700807 {
Florin Coras558e3e02019-09-06 12:56:58 -0700808 sb->sacked_bytes = sb->high_sacked - ack;
809 return;
810 }
811
812 if (seq_gt (sb->high_sacked, right->end))
813 {
814 sacked = sb->high_sacked - right->end;
Florin Coras93992a92017-05-24 18:03:56 -0700815 blks = 1;
816 }
817
Florin Coras558e3e02019-09-06 12:56:58 -0700818 while (sacked < (TCP_DUPACK_THRESHOLD - 1) * snd_mss
819 && blks < TCP_DUPACK_THRESHOLD)
Florin Coras93992a92017-05-24 18:03:56 -0700820 {
Florin Coras558e3e02019-09-06 12:56:58 -0700821 if (right->is_lost)
822 sb->lost_bytes += scoreboard_hole_bytes (right);
Florin Coras93992a92017-05-24 18:03:56 -0700823
Florin Coras558e3e02019-09-06 12:56:58 -0700824 left = scoreboard_prev_hole (sb, right);
825 if (!left)
Florin Coras9f9e9692018-10-19 17:49:00 -0700826 {
Florin Coras558e3e02019-09-06 12:56:58 -0700827 ASSERT (right->start == ack || sb->is_reneging);
828 sacked += right->start - ack;
829 right = 0;
830 break;
Florin Coras9f9e9692018-10-19 17:49:00 -0700831 }
Florin Coras558e3e02019-09-06 12:56:58 -0700832
833 sacked += right->start - left->end;
834 blks++;
835 right = left;
Florin Coras93992a92017-05-24 18:03:56 -0700836 }
Florin Coras9f9e9692018-10-19 17:49:00 -0700837
Florin Coras558e3e02019-09-06 12:56:58 -0700838 /* right is first lost */
839 while (right)
840 {
841 sb->lost_bytes += scoreboard_hole_bytes (right);
Florin Coras36ebcff2019-09-12 18:36:44 -0700842 sb->last_lost_bytes += right->is_lost ? 0 : (right->end - right->start);
Florin Coras558e3e02019-09-06 12:56:58 -0700843 right->is_lost = 1;
844 left = scoreboard_prev_hole (sb, right);
845 if (!left)
846 {
847 ASSERT (right->start == ack || sb->is_reneging);
848 sacked += right->start - ack;
849 break;
850 }
851 sacked += right->start - left->end;
852 right = left;
853 }
854
855 sb->sacked_bytes = sacked;
856 sb->last_sacked_bytes = sacked - (old_sacked - sb->last_bytes_delivered);
Florin Coras93992a92017-05-24 18:03:56 -0700857}
858
859/**
860 * Figure out the next hole to retransmit
861 *
862 * Follows logic proposed in RFC6675 Sec. 4, NextSeg()
863 */
864sack_scoreboard_hole_t *
865scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
866 sack_scoreboard_hole_t * start,
Florin Coras36ee9f12018-11-02 12:52:10 -0700867 u8 have_unsent, u8 * can_rescue, u8 * snd_limited)
Florin Coras93992a92017-05-24 18:03:56 -0700868{
869 sack_scoreboard_hole_t *hole = 0;
870
871 hole = start ? start : scoreboard_first_hole (sb);
872 while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost)
873 hole = scoreboard_next_hole (sb, hole);
874
875 /* Nothing, return */
876 if (!hole)
877 {
878 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
879 return 0;
880 }
881
882 /* Rule (1): if higher than rxt, less than high_sacked and lost */
883 if (hole->is_lost && seq_lt (hole->start, sb->high_sacked))
884 {
885 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
886 }
887 else
888 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700889 /* Rule (2): available unsent data */
890 if (have_unsent)
Florin Coras93992a92017-05-24 18:03:56 -0700891 {
Florin Coras93992a92017-05-24 18:03:56 -0700892 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
Florin Coras36ee9f12018-11-02 12:52:10 -0700893 return 0;
Florin Coras93992a92017-05-24 18:03:56 -0700894 }
895 /* Rule (3): if hole not lost */
896 else if (seq_lt (hole->start, sb->high_sacked))
897 {
Florin Coras81cb8e42019-10-22 19:44:45 -0700898 /* And we didn't already retransmit it */
899 if (seq_leq (hole->end, sb->high_rxt))
900 {
901 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
902 return 0;
903 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700904 *snd_limited = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700905 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
906 }
907 /* Rule (4): if hole beyond high_sacked */
908 else
909 {
910 ASSERT (seq_geq (hole->start, sb->high_sacked));
911 *snd_limited = 1;
912 *can_rescue = 1;
913 /* HighRxt MUST NOT be updated */
914 return 0;
915 }
916 }
917
918 if (hole && seq_lt (sb->high_rxt, hole->start))
919 sb->high_rxt = hole->start;
920
921 return hole;
922}
923
Florin Coras36ebcff2019-09-12 18:36:44 -0700924void
Florin Corasbe237bf2019-09-27 08:16:40 -0700925scoreboard_init_rxt (sack_scoreboard_t * sb, u32 snd_una)
Florin Coras93992a92017-05-24 18:03:56 -0700926{
927 sack_scoreboard_hole_t *hole;
928 hole = scoreboard_first_hole (sb);
Florin Coras3eb50622017-07-13 01:24:57 -0400929 if (hole)
930 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700931 snd_una = seq_gt (snd_una, hole->start) ? snd_una : hole->start;
Florin Coras3eb50622017-07-13 01:24:57 -0400932 sb->cur_rxt_hole = sb->head;
933 }
Florin Coras36ee9f12018-11-02 12:52:10 -0700934 sb->high_rxt = snd_una;
935 sb->rescue_rxt = snd_una - 1;
Florin Coras3eb50622017-07-13 01:24:57 -0400936}
937
Florin Coras0dbd5172018-06-25 16:19:34 -0700938void
939scoreboard_init (sack_scoreboard_t * sb)
940{
941 sb->head = TCP_INVALID_SACK_HOLE_INDEX;
942 sb->tail = TCP_INVALID_SACK_HOLE_INDEX;
943 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
944}
945
946void
947scoreboard_clear (sack_scoreboard_t * sb)
948{
949 sack_scoreboard_hole_t *hole;
950 while ((hole = scoreboard_first_hole (sb)))
951 {
952 scoreboard_remove_hole (sb, hole);
953 }
954 ASSERT (sb->head == sb->tail && sb->head == TCP_INVALID_SACK_HOLE_INDEX);
955 ASSERT (pool_elts (sb->holes) == 0);
956 sb->sacked_bytes = 0;
957 sb->last_sacked_bytes = 0;
958 sb->last_bytes_delivered = 0;
Florin Coras0dbd5172018-06-25 16:19:34 -0700959 sb->lost_bytes = 0;
Florin Corasb3f58e12019-07-05 18:31:54 -0700960 sb->last_lost_bytes = 0;
Florin Coras0dbd5172018-06-25 16:19:34 -0700961 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
Florin Coras558e3e02019-09-06 12:56:58 -0700962 sb->is_reneging = 0;
Florin Coras0dbd5172018-06-25 16:19:34 -0700963}
Florin Coras36ebcff2019-09-12 18:36:44 -0700964
965void
966scoreboard_clear_reneging (sack_scoreboard_t * sb, u32 start, u32 end)
967{
968 sack_scoreboard_hole_t *last_hole;
969
970 clib_warning ("sack reneging");
971
972 scoreboard_clear (sb);
973 last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
974 start, end);
975 last_hole->is_lost = 1;
976 sb->tail = scoreboard_hole_index (sb, last_hole);
977 sb->high_sacked = start;
Florin Corasbe237bf2019-09-27 08:16:40 -0700978 scoreboard_init_rxt (sb, start);
Florin Coras36ebcff2019-09-12 18:36:44 -0700979}
980
Filip Tehlare275bed2019-03-06 00:06:56 -0800981#endif /* CLIB_MARCH_VARIANT */
Florin Coras0dbd5172018-06-25 16:19:34 -0700982
Florin Coras3eb50622017-07-13 01:24:57 -0400983/**
984 * Test that scoreboard is sane after recovery
985 *
986 * Returns 1 if scoreboard is empty or if first hole beyond
987 * snd_una.
988 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700989static u8
Florin Coras3eb50622017-07-13 01:24:57 -0400990tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc)
991{
992 sack_scoreboard_hole_t *hole;
993 hole = scoreboard_first_hole (&tc->sack_sb);
Florin Corasecbd20b2018-10-17 23:34:54 -0700994 return (!hole || (seq_geq (hole->start, tc->snd_una)
Florin Coras47596832019-03-12 18:58:54 -0700995 && seq_lt (hole->end, tc->snd_nxt)));
Florin Coras93992a92017-05-24 18:03:56 -0700996}
997
Filip Tehlare275bed2019-03-06 00:06:56 -0800998#ifndef CLIB_MARCH_VARIANT
Florin Corasb3f58e12019-07-05 18:31:54 -0700999
Florin Coras93992a92017-05-24 18:03:56 -07001000void
Dave Barach68b0fb02017-02-28 15:15:56 -05001001tcp_rcv_sacks (tcp_connection_t * tc, u32 ack)
1002{
Florin Coras558e3e02019-09-06 12:56:58 -07001003 sack_scoreboard_hole_t *hole, *next_hole;
Florin Corasb3f58e12019-07-05 18:31:54 -07001004 sack_scoreboard_t *sb = &tc->sack_sb;
Florin Coras558e3e02019-09-06 12:56:58 -07001005 sack_block_t *blk, *rcv_sacks;
1006 u32 blk_index = 0, i, j;
Florin Coras36ebcff2019-09-12 18:36:44 -07001007 u8 has_rxt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001008
Florin Coras6792ec02017-03-13 03:49:51 -07001009 sb->last_sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001010 sb->last_bytes_delivered = 0;
Florin Coras36ebcff2019-09-12 18:36:44 -07001011 sb->rxt_sacked = 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001012
Florin Coras93992a92017-05-24 18:03:56 -07001013 if (!tcp_opts_sack (&tc->rcv_opts)
1014 && sb->head == TCP_INVALID_SACK_HOLE_INDEX)
Dave Barach68b0fb02017-02-28 15:15:56 -05001015 return;
1016
Florin Coras36ebcff2019-09-12 18:36:44 -07001017 has_rxt = tcp_in_cong_recovery (tc);
1018
Dave Barach68b0fb02017-02-28 15:15:56 -05001019 /* Remove invalid blocks */
Florin Coras93992a92017-05-24 18:03:56 -07001020 blk = tc->rcv_opts.sacks;
1021 while (blk < vec_end (tc->rcv_opts.sacks))
Florin Coras6792ec02017-03-13 03:49:51 -07001022 {
1023 if (seq_lt (blk->start, blk->end)
1024 && seq_gt (blk->start, tc->snd_una)
Florin Corasab86f862018-12-06 18:24:19 -08001025 && seq_gt (blk->start, ack)
Florin Coras47596832019-03-12 18:58:54 -07001026 && seq_lt (blk->start, tc->snd_nxt)
1027 && seq_leq (blk->end, tc->snd_nxt))
Florin Coras6792ec02017-03-13 03:49:51 -07001028 {
1029 blk++;
1030 continue;
1031 }
Florin Coras93992a92017-05-24 18:03:56 -07001032 vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks);
Florin Coras6792ec02017-03-13 03:49:51 -07001033 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001034
1035 /* Add block for cumulative ack */
1036 if (seq_gt (ack, tc->snd_una))
1037 {
Florin Coras558e3e02019-09-06 12:56:58 -07001038 vec_add2 (tc->rcv_opts.sacks, blk, 1);
1039 blk->start = tc->snd_una;
1040 blk->end = ack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001041 }
1042
Florin Coras93992a92017-05-24 18:03:56 -07001043 if (vec_len (tc->rcv_opts.sacks) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001044 return;
1045
Florin Coras3eb50622017-07-13 01:24:57 -04001046 tcp_scoreboard_trace_add (tc, ack);
1047
Dave Barach68b0fb02017-02-28 15:15:56 -05001048 /* Make sure blocks are ordered */
Florin Coras558e3e02019-09-06 12:56:58 -07001049 rcv_sacks = tc->rcv_opts.sacks;
1050 for (i = 0; i < vec_len (rcv_sacks); i++)
1051 for (j = i + 1; j < vec_len (rcv_sacks); j++)
1052 if (seq_lt (rcv_sacks[j].start, rcv_sacks[i].start))
Dave Barach68b0fb02017-02-28 15:15:56 -05001053 {
Florin Coras558e3e02019-09-06 12:56:58 -07001054 sack_block_t tmp = rcv_sacks[i];
1055 rcv_sacks[i] = rcv_sacks[j];
1056 rcv_sacks[j] = tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -05001057 }
1058
Dave Barach68b0fb02017-02-28 15:15:56 -05001059 if (sb->head == TCP_INVALID_SACK_HOLE_INDEX)
1060 {
Florin Coras558e3e02019-09-06 12:56:58 -07001061 /* Handle reneging as a special case */
1062 if (PREDICT_FALSE (sb->is_reneging))
1063 {
1064 /* No holes, only sacked bytes */
1065 if (seq_leq (tc->snd_nxt, sb->high_sacked))
1066 {
1067 /* No progress made so return */
1068 if (seq_leq (ack, tc->snd_una))
1069 return;
1070
1071 /* Update sacked bytes delivered and return */
1072 sb->last_bytes_delivered = ack - tc->snd_una;
1073 sb->sacked_bytes -= sb->last_bytes_delivered;
1074 sb->is_reneging = seq_lt (ack, sb->high_sacked);
1075 return;
1076 }
1077
1078 /* New hole above high sacked. Add it and process normally */
1079 hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
1080 sb->high_sacked, tc->snd_nxt);
1081 sb->tail = scoreboard_hole_index (sb, hole);
1082 }
1083 /* Not reneging and no holes. Insert the first that covers all
1084 * outstanding bytes */
1085 else
1086 {
1087 hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
1088 tc->snd_una, tc->snd_nxt);
1089 sb->tail = scoreboard_hole_index (sb, hole);
1090 }
1091 sb->high_sacked = rcv_sacks[vec_len (rcv_sacks) - 1].end;
Florin Coras6792ec02017-03-13 03:49:51 -07001092 }
1093 else
1094 {
Florin Coras558e3e02019-09-06 12:56:58 -07001095 /* If we have holes but snd_nxt is beyond the last hole, update
1096 * last hole end or add new hole after high sacked */
1097 hole = scoreboard_last_hole (sb);
1098 if (seq_gt (tc->snd_nxt, hole->end))
Dave Barach2c25a622017-06-26 11:35:07 -04001099 {
Florin Coras558e3e02019-09-06 12:56:58 -07001100 if (seq_geq (hole->start, sb->high_sacked))
Dave Barach2c25a622017-06-26 11:35:07 -04001101 {
Florin Coras558e3e02019-09-06 12:56:58 -07001102 hole->end = tc->snd_nxt;
Dave Barach2c25a622017-06-26 11:35:07 -04001103 }
1104 /* New hole after high sacked block */
Florin Coras47596832019-03-12 18:58:54 -07001105 else if (seq_lt (sb->high_sacked, tc->snd_nxt))
Dave Barach2c25a622017-06-26 11:35:07 -04001106 {
1107 scoreboard_insert_hole (sb, sb->tail, sb->high_sacked,
Florin Coras47596832019-03-12 18:58:54 -07001108 tc->snd_nxt);
Dave Barach2c25a622017-06-26 11:35:07 -04001109 }
1110 }
Florin Coras558e3e02019-09-06 12:56:58 -07001111
Dave Barach2c25a622017-06-26 11:35:07 -04001112 /* Keep track of max byte sacked for when the last hole
Florin Corasf03a59a2017-06-09 21:07:32 -07001113 * is acked */
Florin Coras558e3e02019-09-06 12:56:58 -07001114 sb->high_sacked = seq_max (rcv_sacks[vec_len (rcv_sacks) - 1].end,
1115 sb->high_sacked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001116 }
1117
1118 /* Walk the holes with the SACK blocks */
1119 hole = pool_elt_at_index (sb->holes, sb->head);
Florin Coras558e3e02019-09-06 12:56:58 -07001120
1121 if (PREDICT_FALSE (sb->is_reneging))
1122 sb->last_bytes_delivered += hole->start - tc->snd_una;
1123
1124 while (hole && blk_index < vec_len (rcv_sacks))
Dave Barach68b0fb02017-02-28 15:15:56 -05001125 {
Florin Coras558e3e02019-09-06 12:56:58 -07001126 blk = &rcv_sacks[blk_index];
Dave Barach68b0fb02017-02-28 15:15:56 -05001127 if (seq_leq (blk->start, hole->start))
1128 {
1129 /* Block covers hole. Remove hole */
1130 if (seq_geq (blk->end, hole->end))
1131 {
1132 next_hole = scoreboard_next_hole (sb, hole);
1133
Florin Coras558e3e02019-09-06 12:56:58 -07001134 /* If covered by ack, compute delivered bytes */
Florin Corasf03a59a2017-06-09 21:07:32 -07001135 if (blk->end == ack)
Dave Barach68b0fb02017-02-28 15:15:56 -05001136 {
Florin Coras558e3e02019-09-06 12:56:58 -07001137 u32 sacked = next_hole ? next_hole->start : sb->high_sacked;
1138 if (PREDICT_FALSE (seq_lt (ack, sacked)))
Florin Coras06d11012017-05-17 14:21:51 -07001139 {
Florin Coras558e3e02019-09-06 12:56:58 -07001140 sb->last_bytes_delivered += ack - hole->end;
1141 sb->is_reneging = 1;
Florin Coras06d11012017-05-17 14:21:51 -07001142 }
Florin Coras3eb50622017-07-13 01:24:57 -04001143 else
Florin Coras06d11012017-05-17 14:21:51 -07001144 {
Florin Coras558e3e02019-09-06 12:56:58 -07001145 sb->last_bytes_delivered += sacked - hole->end;
1146 sb->is_reneging = 0;
Florin Coras06d11012017-05-17 14:21:51 -07001147 }
1148 }
Florin Coras36ebcff2019-09-12 18:36:44 -07001149 scoreboard_update_sacked_rxt (sb, hole->start, hole->end,
1150 has_rxt);
Dave Barach68b0fb02017-02-28 15:15:56 -05001151 scoreboard_remove_hole (sb, hole);
1152 hole = next_hole;
1153 }
Florin Coras6792ec02017-03-13 03:49:51 -07001154 /* Partial 'head' overlap */
Dave Barach68b0fb02017-02-28 15:15:56 -05001155 else
1156 {
Florin Coras6792ec02017-03-13 03:49:51 -07001157 if (seq_gt (blk->end, hole->start))
1158 {
Florin Coras36ebcff2019-09-12 18:36:44 -07001159 scoreboard_update_sacked_rxt (sb, hole->start, blk->end,
1160 has_rxt);
Florin Coras6792ec02017-03-13 03:49:51 -07001161 hole->start = blk->end;
1162 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001163 blk_index++;
1164 }
1165 }
1166 else
1167 {
1168 /* Hole must be split */
Florin Coras6792ec02017-03-13 03:49:51 -07001169 if (seq_lt (blk->end, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001170 {
Florin Coras558e3e02019-09-06 12:56:58 -07001171 u32 hole_index = scoreboard_hole_index (sb, hole);
Florin Coras3eb50622017-07-13 01:24:57 -04001172 next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
1173 hole->end);
Florin Coras6792ec02017-03-13 03:49:51 -07001174 /* Pool might've moved */
1175 hole = scoreboard_get_hole (sb, hole_index);
1176 hole->end = blk->start;
Florin Coras36ebcff2019-09-12 18:36:44 -07001177
1178 scoreboard_update_sacked_rxt (sb, blk->start, blk->end,
1179 has_rxt);
1180
Dave Barach68b0fb02017-02-28 15:15:56 -05001181 blk_index++;
Florin Coras3eb50622017-07-13 01:24:57 -04001182 ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
Dave Barach68b0fb02017-02-28 15:15:56 -05001183 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001184 else if (seq_lt (blk->start, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001185 {
Florin Coras36ebcff2019-09-12 18:36:44 -07001186 scoreboard_update_sacked_rxt (sb, blk->start, hole->end,
1187 has_rxt);
Florin Coras6792ec02017-03-13 03:49:51 -07001188 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -05001189 }
Florin Coras93992a92017-05-24 18:03:56 -07001190 hole = scoreboard_next_hole (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -05001191 }
1192 }
Florin Coras6792ec02017-03-13 03:49:51 -07001193
Florin Coras558e3e02019-09-06 12:56:58 -07001194 scoreboard_update_bytes (sb, ack, tc->snd_mss);
Florin Corasb3f58e12019-07-05 18:31:54 -07001195
Florin Corasca1c8f32018-05-23 21:01:30 -07001196 ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes || tcp_in_recovery (tc));
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001197 ASSERT (sb->sacked_bytes == 0 || tcp_in_recovery (tc)
Florin Coras558e3e02019-09-06 12:56:58 -07001198 || sb->sacked_bytes <= tc->snd_nxt - seq_max (tc->snd_una, ack));
Florin Coras47596832019-03-12 18:58:54 -07001199 ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_nxt
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001200 - seq_max (tc->snd_una, ack) || tcp_in_recovery (tc));
Dave Barach2c25a622017-06-26 11:35:07 -04001201 ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
Florin Coras558e3e02019-09-06 12:56:58 -07001202 || sb->is_reneging || sb->holes[sb->head].start == ack);
Florin Corasb3f58e12019-07-05 18:31:54 -07001203 ASSERT (sb->last_lost_bytes <= sb->lost_bytes);
Florin Coras36ebcff2019-09-12 18:36:44 -07001204 ASSERT ((ack - tc->snd_una) + sb->last_sacked_bytes
1205 - sb->last_bytes_delivered >= sb->rxt_sacked);
Florin Corasbe237bf2019-09-27 08:16:40 -07001206 ASSERT ((ack - tc->snd_una) >= tc->sack_sb.last_bytes_delivered
1207 || (tc->flags & TCP_CONN_FINSNT));
Florin Corasb3f58e12019-07-05 18:31:54 -07001208
Florin Corasa436a422019-08-20 07:09:31 -07001209 TCP_EVT (TCP_EVT_CC_SCOREBOARD, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001210}
Filip Tehlare275bed2019-03-06 00:06:56 -08001211#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05001212
Florin Coras93992a92017-05-24 18:03:56 -07001213/**
1214 * Try to update snd_wnd based on feedback received from peer.
Dave Barach68b0fb02017-02-28 15:15:56 -05001215 *
Florin Coras93992a92017-05-24 18:03:56 -07001216 * If successful, and new window is 'effectively' 0, activate persist
1217 * timer.
1218 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001219static void
1220tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
1221{
Florin Coras93992a92017-05-24 18:03:56 -07001222 /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
1223 * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
Florin Coras6792ec02017-03-13 03:49:51 -07001224 if (seq_lt (tc->snd_wl1, seq)
1225 || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001226 {
1227 tc->snd_wnd = snd_wnd;
1228 tc->snd_wl1 = seq;
1229 tc->snd_wl2 = ack;
Florin Corasa436a422019-08-20 07:09:31 -07001230 TCP_EVT (TCP_EVT_SND_WND, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001231
Florin Coras9ece3c02018-11-05 11:06:53 -08001232 if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
Florin Corasbb292f42017-05-19 09:49:19 -07001233 {
Florin Coras93992a92017-05-24 18:03:56 -07001234 /* Set persist timer if not set and we just got 0 wnd */
1235 if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
1236 && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
Florin Corasbb292f42017-05-19 09:49:19 -07001237 tcp_persist_timer_set (tc);
1238 }
Florin Coras3e350af2017-03-30 02:54:28 -07001239 else
Florin Coras93992a92017-05-24 18:03:56 -07001240 {
1241 tcp_persist_timer_reset (tc);
Florin Coras9ece3c02018-11-05 11:06:53 -08001242 if (PREDICT_FALSE (!tcp_in_recovery (tc) && tc->rto_boff > 0))
Florin Coras93992a92017-05-24 18:03:56 -07001243 {
1244 tc->rto_boff = 0;
1245 tcp_update_rto (tc);
1246 }
1247 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001248 }
1249}
1250
Florin Corasd2aab832018-05-22 11:39:59 -07001251/**
1252 * Init loss recovery/fast recovery.
1253 *
1254 * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
1255 * updated in @ref tcp_cc_handle_event after fast retransmit
1256 */
Florin Coras36ebcff2019-09-12 18:36:44 -07001257static void
Florin Coras93992a92017-05-24 18:03:56 -07001258tcp_cc_init_congestion (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001259{
Florin Coras93992a92017-05-24 18:03:56 -07001260 tcp_fastrecovery_on (tc);
Florin Coras47596832019-03-12 18:58:54 -07001261 tc->snd_congestion = tc->snd_nxt;
Florin Coras62166002018-04-18 16:40:55 -07001262 tc->cwnd_acc_bytes = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001263 tc->snd_rxt_bytes = 0;
Florin Coras36ebcff2019-09-12 18:36:44 -07001264 tc->rxt_delivered = 0;
1265 tc->prr_delivered = 0;
Florin Corasbe237bf2019-09-27 08:16:40 -07001266 tc->prr_start = tc->snd_una;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001267 tc->prev_ssthresh = tc->ssthresh;
1268 tc->prev_cwnd = tc->cwnd;
Florin Coras36ebcff2019-09-12 18:36:44 -07001269
Florin Corasbe237bf2019-09-27 08:16:40 -07001270 tc->snd_rxt_ts = tcp_tstamp (tc);
Florin Coras36ebcff2019-09-12 18:36:44 -07001271 tcp_cc_congestion (tc);
1272
1273 /* Post retransmit update cwnd to ssthresh and account for the
1274 * three segments that have left the network and should've been
1275 * buffered at the receiver XXX */
1276 if (!tcp_opts_sack_permitted (&tc->rcv_opts))
1277 tc->cwnd += 3 * tc->snd_mss;
1278
Florin Corasedfe0ee2019-07-29 18:13:25 -07001279 tc->fr_occurences += 1;
Florin Corasa436a422019-08-20 07:09:31 -07001280 TCP_EVT (TCP_EVT_CC_EVT, tc, 4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001281}
Dave Barach68b0fb02017-02-28 15:15:56 -05001282
1283static void
Florin Coras93992a92017-05-24 18:03:56 -07001284tcp_cc_congestion_undo (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001285{
Florin Coras93992a92017-05-24 18:03:56 -07001286 tc->cwnd = tc->prev_cwnd;
1287 tc->ssthresh = tc->prev_ssthresh;
Florin Coraseff6b822019-07-03 19:51:02 -07001288 tcp_cc_undo_recovery (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001289 ASSERT (tc->rto_boff == 0);
Florin Corasa436a422019-08-20 07:09:31 -07001290 TCP_EVT (TCP_EVT_CC_EVT, tc, 5);
Florin Coras93992a92017-05-24 18:03:56 -07001291}
Dave Barach68b0fb02017-02-28 15:15:56 -05001292
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001293static inline u8
1294tcp_cc_is_spurious_timeout_rxt (tcp_connection_t * tc)
Florin Coras93992a92017-05-24 18:03:56 -07001295{
Florin Corasf1762d62017-09-24 19:43:08 -04001296 return (tcp_in_recovery (tc) && tc->rto_boff == 1
Dave Barach2c25a622017-06-26 11:35:07 -04001297 && tc->snd_rxt_ts
Florin Coras93992a92017-05-24 18:03:56 -07001298 && tcp_opts_tstamp (&tc->rcv_opts)
1299 && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
1300}
1301
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001302static inline u8
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001303tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
1304{
Florin Coras36ebcff2019-09-12 18:36:44 -07001305 return (tcp_cc_is_spurious_timeout_rxt (tc));
1306}
1307
1308static inline u8
1309tcp_should_fastrecover_sack (tcp_connection_t * tc)
1310{
1311 return (tc->sack_sb.lost_bytes
1312 || ((TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
1313 < tc->sack_sb.sacked_bytes));
1314}
1315
1316static inline u8
Florin Corasbe237bf2019-09-27 08:16:40 -07001317tcp_should_fastrecover (tcp_connection_t * tc, u8 has_sack)
Florin Coras36ebcff2019-09-12 18:36:44 -07001318{
Florin Corasbe237bf2019-09-27 08:16:40 -07001319 if (!has_sack)
1320 {
1321 /* If of of the two conditions lower hold, reset dupacks because
1322 * we're probably after timeout (RFC6582 heuristics).
1323 * If Cumulative ack does not cover more than congestion threshold,
1324 * and:
1325 * 1) The following doesn't hold: The congestion window is greater
1326 * than SMSS bytes and the difference between highest_ack
1327 * and prev_highest_ack is at most 4*SMSS bytes
1328 * 2) Echoed timestamp in the last non-dup ack does not equal the
1329 * stored timestamp
1330 */
1331 if (seq_leq (tc->snd_una, tc->snd_congestion)
1332 && ((!(tc->cwnd > tc->snd_mss
1333 && tc->bytes_acked <= 4 * tc->snd_mss))
1334 || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
1335 {
1336 tc->rcv_dupacks = 0;
1337 return 0;
1338 }
1339 }
Florin Coras36ebcff2019-09-12 18:36:44 -07001340 return ((tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
1341 || tcp_should_fastrecover_sack (tc));
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001342}
1343
Florin Coras0dbd5172018-06-25 16:19:34 -07001344static int
Florin Coras93992a92017-05-24 18:03:56 -07001345tcp_cc_recover (tcp_connection_t * tc)
1346{
Florin Coras321cfa52019-09-12 18:49:44 -07001347 sack_scoreboard_hole_t *hole;
Florin Coras36ebcff2019-09-12 18:36:44 -07001348 u8 is_spurious = 0;
Florin Coras321cfa52019-09-12 18:49:44 -07001349
Florin Coras93992a92017-05-24 18:03:56 -07001350 ASSERT (tcp_in_cong_recovery (tc));
Florin Coras321cfa52019-09-12 18:49:44 -07001351
Florin Coras36ebcff2019-09-12 18:36:44 -07001352 if (tcp_cc_is_spurious_retransmit (tc))
1353 {
1354 tcp_cc_congestion_undo (tc);
1355 is_spurious = 1;
1356 }
1357
Florin Corasc31dc312019-10-06 14:06:14 -07001358 tcp_connection_tx_pacer_reset (tc, tc->cwnd, 0 /* start bucket */ );
Florin Corasb3dce892019-10-30 09:22:14 -07001359 tc->rcv_dupacks = 0;
Florin Corasc31dc312019-10-06 14:06:14 -07001360
Florin Coras36ebcff2019-09-12 18:36:44 -07001361 /* Previous recovery left us congested. Continue sending as part
1362 * of the current recovery event with an updated snd_congestion */
1363 if (tc->sack_sb.sacked_bytes)
1364 {
1365 tc->snd_congestion = tc->snd_nxt;
Florin Coras36ebcff2019-09-12 18:36:44 -07001366 tcp_program_retransmit (tc);
1367 return is_spurious;
1368 }
1369
Florin Corasb3dce892019-10-30 09:22:14 -07001370 tc->rxt_delivered = 0;
1371 tc->snd_rxt_bytes = 0;
1372 tc->snd_rxt_ts = 0;
1373 tc->prr_delivered = 0;
1374 tc->rtt_ts = 0;
1375 tc->flags &= ~TCP_CONN_RXT_PENDING;
1376
Florin Coras321cfa52019-09-12 18:49:44 -07001377 hole = scoreboard_first_hole (&tc->sack_sb);
1378 if (hole && hole->start == tc->snd_una && hole->end == tc->snd_nxt)
1379 scoreboard_clear (&tc->sack_sb);
1380
Florin Coras36ebcff2019-09-12 18:36:44 -07001381 if (!tcp_in_recovery (tc) && !is_spurious)
1382 tcp_cc_recovered (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001383
Florin Coras36ebcff2019-09-12 18:36:44 -07001384 tcp_fastrecovery_off (tc);
1385 tcp_fastrecovery_first_off (tc);
1386 tcp_recovery_off (tc);
1387 TCP_EVT (TCP_EVT_CC_EVT, tc, 3);
Florin Coras93992a92017-05-24 18:03:56 -07001388
1389 ASSERT (tc->rto_boff == 0);
1390 ASSERT (!tcp_in_cong_recovery (tc));
Florin Coras3eb50622017-07-13 01:24:57 -04001391 ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
Florin Coras36ebcff2019-09-12 18:36:44 -07001392 return is_spurious;
Florin Coras93992a92017-05-24 18:03:56 -07001393}
1394
1395static void
Florin Coras52814732019-06-12 15:38:19 -07001396tcp_cc_update (tcp_connection_t * tc, tcp_rate_sample_t * rs)
Florin Coras93992a92017-05-24 18:03:56 -07001397{
Florin Coras3eb50622017-07-13 01:24:57 -04001398 ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001399
1400 /* Congestion avoidance */
Florin Coras52814732019-06-12 15:38:19 -07001401 tcp_cc_rcv_ack (tc, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001402
1403 /* If a cumulative ack, make sure dupacks is 0 */
1404 tc->rcv_dupacks = 0;
1405
1406 /* When dupacks hits the threshold we only enter fast retransmit if
1407 * cumulative ack covers more than snd_congestion. Should snd_una
1408 * wrap this test may fail under otherwise valid circumstances.
1409 * Therefore, proactively update snd_congestion when wrap detected. */
1410 if (PREDICT_FALSE
1411 (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1412 && seq_gt (tc->snd_congestion, tc->snd_una)))
1413 tc->snd_congestion = tc->snd_una - 1;
1414}
1415
Florin Corasf03a59a2017-06-09 21:07:32 -07001416/**
1417 * One function to rule them all ... and in the darkness bind them
1418 */
Florin Coras93992a92017-05-24 18:03:56 -07001419static void
Florin Coras52814732019-06-12 15:38:19 -07001420tcp_cc_handle_event (tcp_connection_t * tc, tcp_rate_sample_t * rs,
1421 u32 is_dack)
Florin Coras93992a92017-05-24 18:03:56 -07001422{
Florin Corasafef8bf2019-09-11 23:22:29 -07001423 u8 has_sack = tcp_opts_sack_permitted (&tc->rcv_opts);
Florin Corasf03a59a2017-06-09 21:07:32 -07001424
Florin Corasafef8bf2019-09-11 23:22:29 -07001425 /*
Florin Corasbe237bf2019-09-27 08:16:40 -07001426 * If not in recovery, figure out if we should enter
Florin Corasafef8bf2019-09-11 23:22:29 -07001427 */
Florin Corasbe237bf2019-09-27 08:16:40 -07001428 if (!tcp_in_cong_recovery (tc))
Florin Corasca1c8f32018-05-23 21:01:30 -07001429 {
Florin Corasbe237bf2019-09-27 08:16:40 -07001430 ASSERT (is_dack);
Florin Coras36ebcff2019-09-12 18:36:44 -07001431
Florin Coras93992a92017-05-24 18:03:56 -07001432 tc->rcv_dupacks++;
Florin Corasbe237bf2019-09-27 08:16:40 -07001433 TCP_EVT (TCP_EVT_DUPACK_RCVD, tc, 1);
1434 tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001435
Florin Corasbe237bf2019-09-27 08:16:40 -07001436 if (tcp_should_fastrecover (tc, has_sack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001437 {
Florin Coras93992a92017-05-24 18:03:56 -07001438 tcp_cc_init_congestion (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001439
Florin Corasafef8bf2019-09-11 23:22:29 -07001440 if (has_sack)
Florin Corasbe237bf2019-09-27 08:16:40 -07001441 scoreboard_init_rxt (&tc->sack_sb, tc->snd_una);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001442
Florin Coras36ebcff2019-09-12 18:36:44 -07001443 tcp_connection_tx_pacer_reset (tc, tc->cwnd, 0 /* start bucket */ );
1444 tcp_program_retransmit (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001445 }
Florin Coras93992a92017-05-24 18:03:56 -07001446
Florin Corasbe237bf2019-09-27 08:16:40 -07001447 return;
1448 }
Florin Corasd2aab832018-05-22 11:39:59 -07001449
Florin Coras93992a92017-05-24 18:03:56 -07001450 /*
Florin Corasb3dce892019-10-30 09:22:14 -07001451 * Already in recovery
Florin Coras93992a92017-05-24 18:03:56 -07001452 */
Florin Coras93992a92017-05-24 18:03:56 -07001453
Florin Coras93992a92017-05-24 18:03:56 -07001454 /*
Florin Corasbe237bf2019-09-27 08:16:40 -07001455 * Process (re)transmit feedback. Output path uses this to decide how much
1456 * more data to release into the network
1457 */
1458 if (has_sack)
1459 {
Florin Corasb3dce892019-10-30 09:22:14 -07001460 if (!tc->bytes_acked && tc->sack_sb.rxt_sacked)
1461 tcp_fastrecovery_first_on (tc);
1462
Florin Corasbe237bf2019-09-27 08:16:40 -07001463 tc->rxt_delivered += tc->sack_sb.rxt_sacked;
1464 tc->prr_delivered += tc->bytes_acked + tc->sack_sb.last_sacked_bytes
1465 - tc->sack_sb.last_bytes_delivered;
1466
1467 tcp_program_retransmit (tc);
1468 }
1469 else
1470 {
1471 if (is_dack)
1472 {
1473 tc->rcv_dupacks += 1;
1474 TCP_EVT (TCP_EVT_DUPACK_RCVD, tc, 1);
1475 }
1476 tc->rxt_delivered = clib_max (tc->rxt_delivered + tc->bytes_acked,
1477 tc->snd_rxt_bytes);
1478 if (is_dack)
Florin Corasbf1f8b72019-11-04 14:39:33 -08001479 tc->prr_delivered += clib_min (tc->snd_mss,
1480 tc->snd_nxt - tc->snd_una);
Florin Corasbe237bf2019-09-27 08:16:40 -07001481 else
Florin Corasbf1f8b72019-11-04 14:39:33 -08001482 tc->prr_delivered += tc->bytes_acked - clib_min (tc->bytes_acked,
1483 tc->snd_mss *
1484 tc->rcv_dupacks);
Florin Corasbe237bf2019-09-27 08:16:40 -07001485
1486 /* If partial ack, assume that the first un-acked segment was lost */
1487 if (tc->bytes_acked || tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
1488 tcp_fastrecovery_first_on (tc);
1489
1490 tcp_program_retransmit (tc);
1491 }
1492
1493 /*
Florin Corasb3dce892019-10-30 09:22:14 -07001494 * See if we can exit and stop retransmitting
1495 */
1496 if (seq_geq (tc->snd_una, tc->snd_congestion))
1497 {
1498 /* If spurious return, we've already updated everything */
1499 if (tcp_cc_recover (tc))
1500 {
1501 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1502 return;
1503 }
1504
1505 /* Treat as congestion avoidance ack */
1506 tcp_cc_rcv_ack (tc, rs);
1507 return;
1508 }
1509
1510 /*
Florin Corasbe237bf2019-09-27 08:16:40 -07001511 * Notify cc of the event
Florin Coras93992a92017-05-24 18:03:56 -07001512 */
Florin Coras93992a92017-05-24 18:03:56 -07001513
Florin Corasbe237bf2019-09-27 08:16:40 -07001514 if (!tc->bytes_acked)
1515 {
1516 tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
1517 return;
1518 }
1519
1520 /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
1521 * reset dupacks to 0. Also needed if in congestion recovery */
1522 tc->rcv_dupacks = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001523
Florin Coras36ebcff2019-09-12 18:36:44 -07001524 if (tcp_in_recovery (tc))
1525 tcp_cc_rcv_ack (tc, rs);
Dave Barach68b0fb02017-02-28 15:15:56 -05001526 else
Florin Coras36ebcff2019-09-12 18:36:44 -07001527 tcp_cc_rcv_cong_ack (tc, TCP_CC_PARTIALACK, rs);
Florin Corasbe237bf2019-09-27 08:16:40 -07001528}
Dave Barach68b0fb02017-02-28 15:15:56 -05001529
Florin Corasbe237bf2019-09-27 08:16:40 -07001530/**
1531 * Check if duplicate ack as per RFC5681 Sec. 2
1532 */
1533always_inline u8
1534tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd,
1535 u32 prev_snd_una)
1536{
1537 return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
1538 && seq_gt (tc->snd_nxt, tc->snd_una)
1539 && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
1540 && (prev_snd_wnd == tc->snd_wnd));
1541}
1542
1543/**
1544 * Checks if ack is a congestion control event.
1545 */
1546static u8
1547tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b,
1548 u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
1549{
1550 /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
1551 * defined to be 'duplicate' as well */
1552 *is_dack = tc->sack_sb.last_sacked_bytes
1553 || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
1554
1555 /* If reneging, wait for timer based retransmits */
1556 if (PREDICT_FALSE (tcp_is_lost_fin (tc) || tc->sack_sb.is_reneging))
1557 return 0;
1558
1559 return (*is_dack || tcp_in_cong_recovery (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -05001560}
1561
Florin Coras93992a92017-05-24 18:03:56 -07001562/**
1563 * Process incoming ACK
1564 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001565static int
Florin Coras9ece3c02018-11-05 11:06:53 -08001566tcp_rcv_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
Florin Coras7ac053b2018-11-05 15:57:21 -08001567 tcp_header_t * th, u32 * error)
Dave Barach68b0fb02017-02-28 15:15:56 -05001568{
Florin Coras93992a92017-05-24 18:03:56 -07001569 u32 prev_snd_wnd, prev_snd_una;
Florin Coras52814732019-06-12 15:38:19 -07001570 tcp_rate_sample_t rs = { 0 };
Florin Coras93992a92017-05-24 18:03:56 -07001571 u8 is_dack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001572
Florin Corasa436a422019-08-20 07:09:31 -07001573 TCP_EVT (TCP_EVT_CC_STAT, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001574
Florin Coras6792ec02017-03-13 03:49:51 -07001575 /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
Florin Coras93992a92017-05-24 18:03:56 -07001576 if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001577 {
Florin Coras47596832019-03-12 18:58:54 -07001578 /* We've probably entered recovery and the peer still has some
1579 * of the data we've sent. Update snd_nxt and accept the ack */
Florin Coras282a3cb2019-04-02 21:43:38 -07001580 if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)
1581 && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
Florin Corasca1c8f32018-05-23 21:01:30 -07001582 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001583 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
Florin Corasca1c8f32018-05-23 21:01:30 -07001584 goto process_ack;
1585 }
1586
Florin Corasedfe0ee2019-07-29 18:13:25 -07001587 tc->errors.above_ack_wnd += 1;
Florin Coras47596832019-03-12 18:58:54 -07001588 *error = TCP_ERROR_ACK_FUTURE;
Florin Corasa436a422019-08-20 07:09:31 -07001589 TCP_EVT (TCP_EVT_ACK_RCV_ERR, tc, 0, vnet_buffer (b)->tcp.ack_number);
Florin Coras47596832019-03-12 18:58:54 -07001590 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001591 }
1592
Florin Coras6792ec02017-03-13 03:49:51 -07001593 /* If old ACK, probably it's an old dupack */
Florin Coras93992a92017-05-24 18:03:56 -07001594 if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001595 {
Florin Corasedfe0ee2019-07-29 18:13:25 -07001596 tc->errors.below_ack_wnd += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001597 *error = TCP_ERROR_ACK_OLD;
Florin Corasa436a422019-08-20 07:09:31 -07001598 TCP_EVT (TCP_EVT_ACK_RCV_ERR, tc, 1, vnet_buffer (b)->tcp.ack_number);
Florin Coras6792ec02017-03-13 03:49:51 -07001599 if (tcp_in_fastrecovery (tc) && tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
Florin Coras52814732019-06-12 15:38:19 -07001600 tcp_cc_handle_event (tc, 0, 1);
Florin Corasc28764f2017-04-26 00:08:42 -07001601 /* Don't drop yet */
1602 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001603 }
1604
Florin Coras47596832019-03-12 18:58:54 -07001605process_ack:
1606
Florin Coras93992a92017-05-24 18:03:56 -07001607 /*
1608 * Looks okay, process feedback
1609 */
Florin Corasedfe0ee2019-07-29 18:13:25 -07001610
Florin Coras93992a92017-05-24 18:03:56 -07001611 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001612 tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1613
Florin Coras93992a92017-05-24 18:03:56 -07001614 prev_snd_wnd = tc->snd_wnd;
1615 prev_snd_una = tc->snd_una;
1616 tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1617 vnet_buffer (b)->tcp.ack_number,
1618 clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1619 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
Florin Coras558e3e02019-09-06 12:56:58 -07001620 tc->snd_una = vnet_buffer (b)->tcp.ack_number;
Florin Coras93992a92017-05-24 18:03:56 -07001621 tcp_validate_txf_size (tc, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001622
Florin Corasbbcfaac2019-10-10 13:52:04 -07001623 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
Florin Coras1dbda642019-09-11 13:42:57 -07001624 tcp_bt_sample_delivery_rate (tc, &rs);
1625
Florin Corasc31dc312019-10-06 14:06:14 -07001626 tcp_program_dequeue (wrk, tc);
1627
Florin Coras93992a92017-05-24 18:03:56 -07001628 if (tc->bytes_acked)
Florin Corasc31dc312019-10-06 14:06:14 -07001629 tcp_update_rtt (tc, &rs, vnet_buffer (b)->tcp.ack_number);
Florin Coras93992a92017-05-24 18:03:56 -07001630
Florin Corasa436a422019-08-20 07:09:31 -07001631 TCP_EVT (TCP_EVT_ACK_RCVD, tc);
Florin Coras6534b7a2017-07-18 05:38:03 -04001632
Florin Coras93992a92017-05-24 18:03:56 -07001633 /*
1634 * Check if we have congestion event
1635 */
1636
1637 if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001638 {
Florin Coras52814732019-06-12 15:38:19 -07001639 tcp_cc_handle_event (tc, &rs, is_dack);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001640 tc->dupacks_in += is_dack;
Florin Corasb2215d62017-08-01 16:56:58 -07001641 if (!tcp_in_cong_recovery (tc))
Florin Corasa9d5bea2018-12-17 08:24:19 -08001642 {
1643 *error = TCP_ERROR_ACK_OK;
1644 return 0;
1645 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001646 *error = TCP_ERROR_ACK_DUP;
Florin Corasca09d072018-10-01 18:31:02 -07001647 if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th))
1648 return 0;
1649 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001650 }
1651
Florin Coras6792ec02017-03-13 03:49:51 -07001652 /*
Florin Coras93992a92017-05-24 18:03:56 -07001653 * Update congestion control (slow start/congestion avoidance)
Florin Coras6792ec02017-03-13 03:49:51 -07001654 */
Florin Coras52814732019-06-12 15:38:19 -07001655 tcp_cc_update (tc, &rs);
Florin Coras00cd22d2018-04-18 13:20:18 -07001656 *error = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001657 return 0;
1658}
1659
Florin Corasb11175d2018-11-09 14:34:08 -08001660static void
1661tcp_program_disconnect (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1662{
1663 if (!tcp_disconnect_pending (tc))
1664 {
1665 vec_add1 (wrk->pending_disconnects, tc->c_c_index);
1666 tcp_disconnect_pending_on (tc);
1667 }
1668}
1669
1670static void
1671tcp_handle_disconnects (tcp_worker_ctx_t * wrk)
1672{
1673 u32 thread_index, *pending_disconnects;
1674 tcp_connection_t *tc;
1675 int i;
1676
1677 if (!vec_len (wrk->pending_disconnects))
1678 return;
1679
1680 thread_index = wrk->vm->thread_index;
1681 pending_disconnects = wrk->pending_disconnects;
1682 for (i = 0; i < vec_len (pending_disconnects); i++)
1683 {
1684 tc = tcp_connection_get (pending_disconnects[i], thread_index);
1685 tcp_disconnect_pending_off (tc);
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001686 session_transport_closing_notify (&tc->connection);
Florin Corasb11175d2018-11-09 14:34:08 -08001687 }
1688 _vec_len (wrk->pending_disconnects) = 0;
1689}
1690
1691static void
1692tcp_rcv_fin (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
1693 u32 * error)
1694{
Florin Corasf73d4c22019-06-28 09:18:48 -07001695 /* Reject out-of-order fins */
1696 if (vnet_buffer (b)->tcp.seq_end != tc->rcv_nxt)
1697 return;
1698
Florin Coras3c514d52018-12-22 11:39:33 -08001699 /* Account for the FIN and send ack */
1700 tc->rcv_nxt += 1;
Florin Corascb711a42019-10-16 19:28:17 -07001701 tc->flags |= TCP_CONN_FINRCVD;
Florin Coras26dd6de2019-07-23 23:54:47 -07001702 tcp_program_ack (tc);
Florin Corasb11175d2018-11-09 14:34:08 -08001703 /* Enter CLOSE-WAIT and notify session. To avoid lingering
1704 * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
Florin Coras3c514d52018-12-22 11:39:33 -08001705 tcp_connection_set_state (tc, TCP_STATE_CLOSE_WAIT);
Florin Corasb11175d2018-11-09 14:34:08 -08001706 tcp_program_disconnect (wrk, tc);
Florin Coras9094b5c2019-08-12 14:17:47 -07001707 tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, tcp_cfg.closewait_time);
Florin Corasa436a422019-08-20 07:09:31 -07001708 TCP_EVT (TCP_EVT_FIN_RCVD, tc);
Florin Corasb11175d2018-11-09 14:34:08 -08001709 *error = TCP_ERROR_FIN_RCVD;
1710}
1711
Filip Tehlare275bed2019-03-06 00:06:56 -08001712#ifndef CLIB_MARCH_VARIANT
Florin Coras3eb50622017-07-13 01:24:57 -04001713static u8
1714tcp_sack_vector_is_sane (sack_block_t * sacks)
1715{
1716 int i;
1717 for (i = 1; i < vec_len (sacks); i++)
1718 {
1719 if (sacks[i - 1].end == sacks[i].start)
1720 return 0;
1721 }
1722 return 1;
1723}
1724
Dave Barach68b0fb02017-02-28 15:15:56 -05001725/**
1726 * Build SACK list as per RFC2018.
1727 *
1728 * Makes sure the first block contains the segment that generated the current
1729 * ACK and the following ones are the ones most recently reported in SACK
1730 * blocks.
1731 *
1732 * @param tc TCP connection for which the SACK list is updated
1733 * @param start Start sequence number of the newest SACK block
1734 * @param end End sequence of the newest SACK block
1735 */
Florin Coras45d34962017-04-25 00:05:27 -07001736void
Dave Barach68b0fb02017-02-28 15:15:56 -05001737tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1738{
Florin Corasb691f762019-02-22 09:07:20 -08001739 sack_block_t *new_list = tc->snd_sacks_fl, *block = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001740 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001741
1742 /* If the first segment is ooo add it to the list. Last write might've moved
1743 * rcv_nxt over the first segment. */
1744 if (seq_lt (tc->rcv_nxt, start))
1745 {
Florin Coras45d34962017-04-25 00:05:27 -07001746 vec_add2 (new_list, block, 1);
1747 block->start = start;
1748 block->end = end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001749 }
1750
1751 /* Find the blocks still worth keeping. */
1752 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1753 {
Florin Coras45d34962017-04-25 00:05:27 -07001754 /* Discard if rcv_nxt advanced beyond current block */
1755 if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001756 continue;
1757
Florin Coras45d34962017-04-25 00:05:27 -07001758 /* Merge or drop if segment overlapped by the new segment */
1759 if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1760 && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1761 {
1762 if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1763 new_list[0].start = tc->snd_sacks[i].start;
1764 if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1765 new_list[0].end = tc->snd_sacks[i].end;
1766 continue;
1767 }
1768
1769 /* Save to new SACK list if we have space. */
1770 if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
Florin Coras47596832019-03-12 18:58:54 -07001771 vec_add1 (new_list, tc->snd_sacks[i]);
Dave Barach68b0fb02017-02-28 15:15:56 -05001772 }
1773
Florin Coras45d34962017-04-25 00:05:27 -07001774 ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
Florin Coras6792ec02017-03-13 03:49:51 -07001775
Dave Barach68b0fb02017-02-28 15:15:56 -05001776 /* Replace old vector with new one */
Florin Corasb691f762019-02-22 09:07:20 -08001777 vec_reset_length (tc->snd_sacks);
1778 tc->snd_sacks_fl = tc->snd_sacks;
Dave Barach68b0fb02017-02-28 15:15:56 -05001779 tc->snd_sacks = new_list;
Florin Coras3eb50622017-07-13 01:24:57 -04001780
1781 /* Segments should not 'touch' */
1782 ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
Dave Barach68b0fb02017-02-28 15:15:56 -05001783}
1784
Florin Corasca1c8f32018-05-23 21:01:30 -07001785u32
1786tcp_sack_list_bytes (tcp_connection_t * tc)
1787{
1788 u32 bytes = 0, i;
1789 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1790 bytes += tc->snd_sacks[i].end - tc->snd_sacks[i].start;
1791 return bytes;
1792}
Filip Tehlare275bed2019-03-06 00:06:56 -08001793#endif /* CLIB_MARCH_VARIANT */
Florin Corasca1c8f32018-05-23 21:01:30 -07001794
Dave Barach68b0fb02017-02-28 15:15:56 -05001795/** Enqueue data for delivery to application */
Florin Coras0dbd5172018-06-25 16:19:34 -07001796static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001797tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1798 u16 data_len)
1799{
Florin Coras1f152cd2017-08-18 19:28:03 -07001800 int written, error = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001801
Dave Barach2c25a622017-06-26 11:35:07 -04001802 ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001803 ASSERT (data_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001804 written = session_enqueue_stream_connection (&tc->connection, b, 0,
1805 1 /* queue event */ , 1);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001806 tc->bytes_in += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001807
Florin Corasa436a422019-08-20 07:09:31 -07001808 TCP_EVT (TCP_EVT_INPUT, tc, 0, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001809
Dave Barach68b0fb02017-02-28 15:15:56 -05001810 /* Update rcv_nxt */
1811 if (PREDICT_TRUE (written == data_len))
1812 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001813 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001814 }
1815 /* If more data written than expected, account for out-of-order bytes. */
1816 else if (written > data_len)
1817 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001818 tc->rcv_nxt += written;
Florin Corasa436a422019-08-20 07:09:31 -07001819 TCP_EVT (TCP_EVT_CC_INPUT, tc, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001820 }
1821 else if (written > 0)
1822 {
1823 /* We've written something but FIFO is probably full now */
1824 tc->rcv_nxt += written;
Florin Coras1f152cd2017-08-18 19:28:03 -07001825 error = TCP_ERROR_PARTIALLY_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001826 }
1827 else
1828 {
Dave Barach68b0fb02017-02-28 15:15:56 -05001829 return TCP_ERROR_FIFO_FULL;
1830 }
1831
Florin Coras6792ec02017-03-13 03:49:51 -07001832 /* Update SACK list if need be */
Florin Coras93992a92017-05-24 18:03:56 -07001833 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras6792ec02017-03-13 03:49:51 -07001834 {
1835 /* Remove SACK blocks that have been delivered */
1836 tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1837 }
1838
Florin Coras1f152cd2017-08-18 19:28:03 -07001839 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -05001840}
1841
1842/** Enqueue out-of-order data */
Florin Coras0dbd5172018-06-25 16:19:34 -07001843static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001844tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1845 u16 data_len)
1846{
Florin Coras288eaab2019-02-03 15:26:14 -08001847 session_t *s0;
Florin Coras3eb50622017-07-13 01:24:57 -04001848 int rv, offset;
Florin Coras6792ec02017-03-13 03:49:51 -07001849
Florin Corasf03a59a2017-06-09 21:07:32 -07001850 ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001851 ASSERT (data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001852
Florin Corasf03a59a2017-06-09 21:07:32 -07001853 /* Enqueue out-of-order data with relative offset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07001854 rv = session_enqueue_stream_connection (&tc->connection, b,
1855 vnet_buffer (b)->tcp.seq_number -
1856 tc->rcv_nxt, 0 /* queue event */ ,
1857 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001858
1859 /* Nothing written */
1860 if (rv)
1861 {
Florin Corasa436a422019-08-20 07:09:31 -07001862 TCP_EVT (TCP_EVT_INPUT, tc, 1, data_len, 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001863 return TCP_ERROR_FIFO_FULL;
1864 }
1865
Florin Corasa436a422019-08-20 07:09:31 -07001866 TCP_EVT (TCP_EVT_INPUT, tc, 1, data_len, data_len);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001867 tc->bytes_in += data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05001868
1869 /* Update SACK list if in use */
Florin Coras93992a92017-05-24 18:03:56 -07001870 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001871 {
1872 ooo_segment_t *newest;
1873 u32 start, end;
1874
Florin Corascea194d2017-10-02 00:18:51 -07001875 s0 = session_get (tc->c_s_index, tc->c_thread_index);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001876
Dave Barach68b0fb02017-02-28 15:15:56 -05001877 /* Get the newest segment from the fifo */
Florin Coras288eaab2019-02-03 15:26:14 -08001878 newest = svm_fifo_newest_ooo_segment (s0->rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001879 if (newest)
1880 {
Sirshak Das28aa5392019-02-05 01:33:33 -06001881 offset = ooo_segment_offset_prod (s0->rx_fifo, newest);
Florin Coras3eb50622017-07-13 01:24:57 -04001882 ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1883 start = tc->rcv_nxt + offset;
Florin Coras288eaab2019-02-03 15:26:14 -08001884 end = start + ooo_segment_length (s0->rx_fifo, newest);
Florin Corasf03a59a2017-06-09 21:07:32 -07001885 tcp_update_sack_list (tc, start, end);
Florin Coras288eaab2019-02-03 15:26:14 -08001886 svm_fifo_newest_ooo_segment_reset (s0->rx_fifo);
Florin Corasa436a422019-08-20 07:09:31 -07001887 TCP_EVT (TCP_EVT_CC_SACKS, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001888 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001889 }
1890
Florin Coras00cd22d2018-04-18 13:20:18 -07001891 return TCP_ERROR_ENQUEUED_OOO;
Dave Barach68b0fb02017-02-28 15:15:56 -05001892}
1893
1894/**
Florin Coras6792ec02017-03-13 03:49:51 -07001895 * Check if ACK could be delayed. If ack can be delayed, it should return
1896 * true for a full frame. If we're always acking return 0.
Dave Barach68b0fb02017-02-28 15:15:56 -05001897 */
1898always_inline int
1899tcp_can_delack (tcp_connection_t * tc)
1900{
Florin Coras6792ec02017-03-13 03:49:51 -07001901 /* Send ack if ... */
1902 if (TCP_ALWAYS_ACK
Florin Coras74b74372019-03-28 16:31:52 -07001903 /* just sent a rcv wnd 0
1904 || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0 */
Florin Coras6792ec02017-03-13 03:49:51 -07001905 /* constrained to send ack */
1906 || (tc->flags & TCP_CONN_SNDACK) != 0
1907 /* we're almost out of tx wnd */
Florin Corasca1c8f32018-05-23 21:01:30 -07001908 || tcp_available_cc_snd_space (tc) < 4 * tc->snd_mss)
Florin Coras6792ec02017-03-13 03:49:51 -07001909 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001910
Florin Coras6792ec02017-03-13 03:49:51 -07001911 return 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001912}
1913
1914static int
Florin Corasb2215d62017-08-01 16:56:58 -07001915tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
1916{
Florin Coras1f152cd2017-08-18 19:28:03 -07001917 u32 discard, first = b->current_length;
Florin Corasb2215d62017-08-01 16:56:58 -07001918 vlib_main_t *vm = vlib_get_main ();
1919
Florin Coras1f152cd2017-08-18 19:28:03 -07001920 /* Handle multi-buffer segments */
Florin Corasb2215d62017-08-01 16:56:58 -07001921 if (n_bytes_to_drop > b->current_length)
1922 {
1923 if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1924 return -1;
1925 do
1926 {
1927 discard = clib_min (n_bytes_to_drop, b->current_length);
1928 vlib_buffer_advance (b, discard);
1929 b = vlib_get_buffer (vm, b->next_buffer);
1930 n_bytes_to_drop -= discard;
1931 }
1932 while (n_bytes_to_drop);
Florin Coras1f152cd2017-08-18 19:28:03 -07001933 if (n_bytes_to_drop > first)
1934 b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
Florin Corasb2215d62017-08-01 16:56:58 -07001935 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001936 else
1937 vlib_buffer_advance (b, n_bytes_to_drop);
1938 vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
Florin Corasb2215d62017-08-01 16:56:58 -07001939 return 0;
1940}
1941
Florin Coras00cd22d2018-04-18 13:20:18 -07001942/**
1943 * Receive buffer for connection and handle acks
1944 *
1945 * It handles both in order or out-of-order data.
1946 */
Florin Corasb2215d62017-08-01 16:56:58 -07001947static int
Florin Coras7ac053b2018-11-05 15:57:21 -08001948tcp_segment_rcv (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1949 vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001950{
Florin Coras00cd22d2018-04-18 13:20:18 -07001951 u32 error, n_bytes_to_drop, n_data_bytes;
Florin Coras6534b7a2017-07-18 05:38:03 -04001952
1953 vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1954 n_data_bytes = vnet_buffer (b)->tcp.data_len;
1955 ASSERT (n_data_bytes);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001956 tc->data_segs_in += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001957
1958 /* Handle out-of-order data */
1959 if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1960 {
Florin Coras6792ec02017-03-13 03:49:51 -07001961 /* Old sequence numbers allowed through because they overlapped
1962 * the rx window */
1963 if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001964 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001965 /* Completely in the past (possible retransmit). Ack
1966 * retransmissions since we may not have any data to send */
Florin Corasf03a59a2017-06-09 21:07:32 -07001967 if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
Florin Coras6534b7a2017-07-18 05:38:03 -04001968 {
Florin Coras26dd6de2019-07-23 23:54:47 -07001969 tcp_program_ack (tc);
Florin Coras00cd22d2018-04-18 13:20:18 -07001970 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras6534b7a2017-07-18 05:38:03 -04001971 goto done;
1972 }
Dave Barach259cdae2017-05-15 16:27:05 -04001973
Florin Coras00cd22d2018-04-18 13:20:18 -07001974 /* Chop off the bytes in the past and see if what is left
1975 * can be enqueued in order */
Florin Corasdb84e572017-05-09 18:54:52 -07001976 n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1977 n_data_bytes -= n_bytes_to_drop;
Dave Barach2c25a622017-06-26 11:35:07 -04001978 vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001979 if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
Florin Coras00cd22d2018-04-18 13:20:18 -07001980 {
1981 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras00cd22d2018-04-18 13:20:18 -07001982 goto done;
1983 }
Florin Corasdb84e572017-05-09 18:54:52 -07001984 goto in_order;
Dave Barach68b0fb02017-02-28 15:15:56 -05001985 }
1986
Florin Coras00cd22d2018-04-18 13:20:18 -07001987 /* RFC2581: Enqueue and send DUPACK for fast retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001988 error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
Florin Coras26dd6de2019-07-23 23:54:47 -07001989 tcp_program_dupack (tc);
Florin Corasa436a422019-08-20 07:09:31 -07001990 TCP_EVT (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001991 tc->errors.above_data_wnd += seq_gt (vnet_buffer (b)->tcp.seq_end,
1992 tc->rcv_las + tc->rcv_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -05001993 goto done;
1994 }
1995
Florin Corasdb84e572017-05-09 18:54:52 -07001996in_order:
1997
Dave Barach68b0fb02017-02-28 15:15:56 -05001998 /* In order data, enqueue. Fifo figures out by itself if any out-of-order
1999 * segments can be enqueued after fifo tail offset changes. */
2000 error = tcp_session_enqueue_data (tc, b, n_data_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07002001 if (tcp_can_delack (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05002002 {
Florin Coras6792ec02017-03-13 03:49:51 -07002003 if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
Florin Coras9094b5c2019-08-12 14:17:47 -07002004 tcp_timer_set (tc, TCP_TIMER_DELACK, tcp_cfg.delack_time);
Florin Coras3e350af2017-03-30 02:54:28 -07002005 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05002006 }
2007
Florin Coras26dd6de2019-07-23 23:54:47 -07002008 tcp_program_ack (tc);
Florin Coras3e350af2017-03-30 02:54:28 -07002009
Dave Barach68b0fb02017-02-28 15:15:56 -05002010done:
2011 return error;
2012}
2013
Clement Durand6cf260c2017-04-13 13:27:04 +02002014typedef struct
2015{
2016 tcp_header_t tcp_header;
2017 tcp_connection_t tcp_connection;
2018} tcp_rx_trace_t;
2019
Florin Coras0dbd5172018-06-25 16:19:34 -07002020static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02002021format_tcp_rx_trace (u8 * s, va_list * args)
2022{
2023 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2024 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2025 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +02002026 u32 indent = format_get_indent (s);
Clement Durand6cf260c2017-04-13 13:27:04 +02002027
2028 s = format (s, "%U\n%U%U",
2029 format_tcp_header, &t->tcp_header, 128,
2030 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -07002031 format_tcp_connection, &t->tcp_connection, 1);
Clement Durand6cf260c2017-04-13 13:27:04 +02002032
2033 return s;
2034}
2035
Florin Coras0dbd5172018-06-25 16:19:34 -07002036static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02002037format_tcp_rx_trace_short (u8 * s, va_list * args)
2038{
2039 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2040 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2041 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
2042
2043 s = format (s, "%d -> %d (%U)",
Florin Coras4df38712018-06-20 12:44:16 -07002044 clib_net_to_host_u16 (t->tcp_header.dst_port),
2045 clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state,
Florin Corasbb292f42017-05-19 09:49:19 -07002046 t->tcp_connection.state);
Clement Durand6cf260c2017-04-13 13:27:04 +02002047
2048 return s;
2049}
2050
Florin Coras4df38712018-06-20 12:44:16 -07002051static void
Florin Coras82b13a82017-04-25 11:58:06 -07002052tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
2053 tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
2054{
2055 if (tc0)
2056 {
Dave Barach178cf492018-11-13 16:34:13 -05002057 clib_memcpy_fast (&t0->tcp_connection, tc0,
2058 sizeof (t0->tcp_connection));
Florin Coras82b13a82017-04-25 11:58:06 -07002059 }
2060 else
2061 {
2062 th0 = tcp_buffer_hdr (b0);
2063 }
Dave Barach178cf492018-11-13 16:34:13 -05002064 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
Florin Coras82b13a82017-04-25 11:58:06 -07002065}
2066
Florin Coras4df38712018-06-20 12:44:16 -07002067static void
2068tcp_established_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2069 vlib_frame_t * frame, u8 is_ip4)
2070{
2071 u32 *from, n_left;
2072
2073 n_left = frame->n_vectors;
2074 from = vlib_frame_vector_args (frame);
2075
2076 while (n_left >= 1)
2077 {
2078 tcp_connection_t *tc0;
2079 tcp_rx_trace_t *t0;
2080 tcp_header_t *th0;
2081 vlib_buffer_t *b0;
2082 u32 bi0;
2083
2084 bi0 = from[0];
2085 b0 = vlib_get_buffer (vm, bi0);
2086
2087 if (b0->flags & VLIB_BUFFER_IS_TRACED)
2088 {
2089 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2090 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2091 vm->thread_index);
2092 th0 = tcp_buffer_hdr (b0);
2093 tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
2094 }
2095
2096 from += 1;
2097 n_left -= 1;
2098 }
2099}
2100
Florin Coras6792ec02017-03-13 03:49:51 -07002101always_inline void
Florin Coras00cd22d2018-04-18 13:20:18 -07002102tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
2103 u8 is_ip4, u32 evt, u32 val)
Dave Barach68b0fb02017-02-28 15:15:56 -05002104{
Florin Coras6792ec02017-03-13 03:49:51 -07002105 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -07002106 vlib_node_increment_counter (vm, tcp4_node, evt, val);
Florin Coras6792ec02017-03-13 03:49:51 -07002107 else
Florin Coras3cbc04b2017-10-02 00:18:51 -07002108 vlib_node_increment_counter (vm, tcp6_node, evt, val);
Dave Barach68b0fb02017-02-28 15:15:56 -05002109}
2110
Florin Coras00cd22d2018-04-18 13:20:18 -07002111#define tcp_maybe_inc_counter(node_id, err, count) \
2112{ \
2113 if (next0 != tcp_next_drop (is_ip4)) \
2114 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2115 tcp6_##node_id##_node.index, is_ip4, err, \
2116 1); \
2117}
2118#define tcp_inc_counter(node_id, err, count) \
2119 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2120 tcp6_##node_id##_node.index, is_ip4, \
2121 err, count)
2122#define tcp_maybe_inc_err_counter(cnts, err) \
2123{ \
2124 cnts[err] += (next0 != tcp_next_drop (is_ip4)); \
2125}
2126#define tcp_inc_err_counter(cnts, err, val) \
2127{ \
2128 cnts[err] += val; \
2129}
2130#define tcp_store_err_counters(node_id, cnts) \
2131{ \
2132 int i; \
2133 for (i = 0; i < TCP_N_ERROR; i++) \
2134 if (cnts[i]) \
2135 tcp_inc_counter(node_id, i, cnts[i]); \
2136}
2137
2138
Dave Barach68b0fb02017-02-28 15:15:56 -05002139always_inline uword
2140tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07002141 vlib_frame_t * frame, int is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05002142{
Florin Coras4df38712018-06-20 12:44:16 -07002143 u32 thread_index = vm->thread_index, errors = 0;
Florin Coras9ece3c02018-11-05 11:06:53 -08002144 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08002145 u32 n_left_from, *from, *first_buffer;
Florin Coras00cd22d2018-04-18 13:20:18 -07002146 u16 err_counters[TCP_N_ERROR] = { 0 };
Dave Barach68b0fb02017-02-28 15:15:56 -05002147
Florin Coras4df38712018-06-20 12:44:16 -07002148 if (node->flags & VLIB_NODE_FLAG_TRACE)
2149 tcp_established_trace_frame (vm, node, frame, is_ip4);
2150
Florin Coras7ac053b2018-11-05 15:57:21 -08002151 first_buffer = from = vlib_frame_vector_args (frame);
Florin Coras4df38712018-06-20 12:44:16 -07002152 n_left_from = frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002153
2154 while (n_left_from > 0)
2155 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002156 u32 bi0, error0 = TCP_ERROR_ACK_OK;
2157 vlib_buffer_t *b0;
Florin Coras3c514d52018-12-22 11:39:33 -08002158 tcp_header_t *th0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002159 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002160
Florin Coras7ac053b2018-11-05 15:57:21 -08002161 if (n_left_from > 1)
Dave Barach68b0fb02017-02-28 15:15:56 -05002162 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002163 vlib_buffer_t *pb;
2164 pb = vlib_get_buffer (vm, from[1]);
2165 vlib_prefetch_buffer_header (pb, LOAD);
2166 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
Dave Barach68b0fb02017-02-28 15:15:56 -05002167 }
2168
Florin Coras7ac053b2018-11-05 15:57:21 -08002169 bi0 = from[0];
2170 from += 1;
2171 n_left_from -= 1;
2172
2173 b0 = vlib_get_buffer (vm, bi0);
2174 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2175 thread_index);
2176
2177 if (PREDICT_FALSE (tc0 == 0))
2178 {
2179 error0 = TCP_ERROR_INVALID_CONNECTION;
2180 goto done;
2181 }
2182
2183 th0 = tcp_buffer_hdr (b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002184
2185 /* TODO header prediction fast path */
2186
2187 /* 1-4: check SEQ, RST, SYN */
2188 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, th0, &error0)))
2189 {
Florin Corasa436a422019-08-20 07:09:31 -07002190 TCP_EVT (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp);
Florin Coras7ac053b2018-11-05 15:57:21 -08002191 goto done;
2192 }
2193
2194 /* 5: check the ACK field */
2195 if (PREDICT_FALSE (tcp_rcv_ack (wrk, tc0, b0, th0, &error0)))
2196 goto done;
2197
2198 /* 6: check the URG bit TODO */
2199
2200 /* 7: process the segment text */
2201 if (vnet_buffer (b0)->tcp.data_len)
2202 error0 = tcp_segment_rcv (wrk, tc0, b0);
2203
2204 /* 8: check the FIN bit */
Florin Coras3c514d52018-12-22 11:39:33 -08002205 if (PREDICT_FALSE (tcp_is_fin (th0)))
Florin Corasb11175d2018-11-09 14:34:08 -08002206 tcp_rcv_fin (wrk, tc0, b0, &error0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002207
2208 done:
2209 tcp_inc_err_counter (err_counters, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002210 }
2211
Florin Coras31c99552019-03-01 13:00:58 -08002212 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2213 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002214 err_counters[TCP_ERROR_MSG_QUEUE_FULL] = errors;
Florin Coras00cd22d2018-04-18 13:20:18 -07002215 tcp_store_err_counters (established, err_counters);
Florin Coras9ece3c02018-11-05 11:06:53 -08002216 tcp_handle_postponed_dequeues (wrk);
Florin Corasb11175d2018-11-09 14:34:08 -08002217 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08002218 vlib_buffer_free (vm, first_buffer, frame->n_vectors);
Florin Coras4df38712018-06-20 12:44:16 -07002219
2220 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002221}
2222
Filip Tehlare275bed2019-03-06 00:06:56 -08002223VLIB_NODE_FN (tcp4_established_node) (vlib_main_t * vm,
2224 vlib_node_runtime_t * node,
2225 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002226{
2227 return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2228}
2229
Filip Tehlare275bed2019-03-06 00:06:56 -08002230VLIB_NODE_FN (tcp6_established_node) (vlib_main_t * vm,
2231 vlib_node_runtime_t * node,
2232 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002233{
2234 return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2235}
2236
2237/* *INDENT-OFF* */
2238VLIB_REGISTER_NODE (tcp4_established_node) =
2239{
Dave Barach68b0fb02017-02-28 15:15:56 -05002240 .name = "tcp4-established",
2241 /* Takes a vector of packets. */
2242 .vector_size = sizeof (u32),
Florin Corase69f4952017-03-07 10:06:24 -08002243 .n_errors = TCP_N_ERROR,
2244 .error_strings = tcp_error_strings,
Dave Barach68b0fb02017-02-28 15:15:56 -05002245 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2246 .next_nodes =
2247 {
2248#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2249 foreach_tcp_state_next
2250#undef _
2251 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002252 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002253};
2254/* *INDENT-ON* */
2255
Dave Barach68b0fb02017-02-28 15:15:56 -05002256/* *INDENT-OFF* */
2257VLIB_REGISTER_NODE (tcp6_established_node) =
2258{
Dave Barach68b0fb02017-02-28 15:15:56 -05002259 .name = "tcp6-established",
2260 /* Takes a vector of packets. */
2261 .vector_size = sizeof (u32),
2262 .n_errors = TCP_N_ERROR,
2263 .error_strings = tcp_error_strings,
2264 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2265 .next_nodes =
2266 {
2267#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2268 foreach_tcp_state_next
2269#undef _
2270 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002271 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002272};
2273/* *INDENT-ON* */
2274
2275
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002276static u8
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002277tcp_lookup_is_valid (tcp_connection_t * tc, vlib_buffer_t * b,
2278 tcp_header_t * hdr)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002279{
Florin Corascea194d2017-10-02 00:18:51 -07002280 transport_connection_t *tmp = 0;
2281 u64 handle;
2282
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002283 if (!tc)
2284 return 1;
2285
Florin Coras70131132017-11-27 02:43:30 -08002286 /* Proxy case */
2287 if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
2288 return 1;
2289
Florin Coras07df7912019-11-07 08:26:06 -08002290 u8 is_ip_valid = 0, val_l, val_r;
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002291
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002292 if (tc->connection.is_ip4)
2293 {
2294 ip4_header_t *ip4_hdr = (ip4_header_t *) vlib_buffer_get_current (b);
Florin Coras07df7912019-11-07 08:26:06 -08002295
2296 val_l = !ip4_address_compare (&ip4_hdr->dst_address,
2297 &tc->connection.lcl_ip.ip4);
2298 val_l = val_l || ip_is_zero (&tc->connection.lcl_ip, 1);
2299 val_r = !ip4_address_compare (&ip4_hdr->src_address,
2300 &tc->connection.rmt_ip.ip4);
2301 val_r = val_r || tc->state == TCP_STATE_LISTEN;
2302 is_ip_valid = val_l && val_r;
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002303 }
2304 else
2305 {
2306 ip6_header_t *ip6_hdr = (ip6_header_t *) vlib_buffer_get_current (b);
Florin Coras07df7912019-11-07 08:26:06 -08002307
2308 val_l = !ip6_address_compare (&ip6_hdr->dst_address,
2309 &tc->connection.lcl_ip.ip6);
2310 val_l = val_l || ip_is_zero (&tc->connection.lcl_ip, 0);
2311 val_r = !ip6_address_compare (&ip6_hdr->src_address,
2312 &tc->connection.rmt_ip.ip6);
2313 val_r = val_r || tc->state == TCP_STATE_LISTEN;
2314 is_ip_valid = val_l && val_r;
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002315 }
2316
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002317 u8 is_valid = (tc->c_lcl_port == hdr->dst_port
2318 && (tc->state == TCP_STATE_LISTEN
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002319 || tc->c_rmt_port == hdr->src_port) && is_ip_valid);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002320
2321 if (!is_valid)
2322 {
Florin Corascea194d2017-10-02 00:18:51 -07002323 handle = session_lookup_half_open_handle (&tc->connection);
2324 tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
Florin Coras3cbc04b2017-10-02 00:18:51 -07002325 tc->c_proto, tc->c_is_ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002326
2327 if (tmp)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002328 {
2329 if (tmp->lcl_port == hdr->dst_port
2330 && tmp->rmt_port == hdr->src_port)
2331 {
Florin Corascea194d2017-10-02 00:18:51 -07002332 TCP_DBG ("half-open is valid!");
Ryujiro Shibuya3ea17d52019-11-05 07:24:32 +00002333 is_valid = 1;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002334 }
2335 }
2336 }
2337 return is_valid;
2338}
2339
2340/**
2341 * Lookup transport connection
2342 */
2343static tcp_connection_t *
Florin Corascea194d2017-10-02 00:18:51 -07002344tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
2345 u8 is_ip4)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002346{
2347 tcp_header_t *tcp;
2348 transport_connection_t *tconn;
2349 tcp_connection_t *tc;
Florin Corasdff48db2017-11-19 18:06:58 -08002350 u8 is_filtered = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002351 if (is_ip4)
2352 {
2353 ip4_header_t *ip4;
2354 ip4 = vlib_buffer_get_current (b);
2355 tcp = ip4_next_header (ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002356 tconn = session_lookup_connection_wt4 (fib_index,
2357 &ip4->dst_address,
2358 &ip4->src_address,
2359 tcp->dst_port,
2360 tcp->src_port,
2361 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002362 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002363 tc = tcp_get_connection_from_transport (tconn);
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002364 ASSERT (tcp_lookup_is_valid (tc, b, tcp));
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002365 }
2366 else
2367 {
2368 ip6_header_t *ip6;
2369 ip6 = vlib_buffer_get_current (b);
2370 tcp = ip6_next_header (ip6);
Florin Corascea194d2017-10-02 00:18:51 -07002371 tconn = session_lookup_connection_wt6 (fib_index,
2372 &ip6->dst_address,
2373 &ip6->src_address,
2374 tcp->dst_port,
2375 tcp->src_port,
2376 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002377 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002378 tc = tcp_get_connection_from_transport (tconn);
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002379 ASSERT (tcp_lookup_is_valid (tc, b, tcp));
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002380 }
2381 return tc;
2382}
2383
Simon Zhang1146ff42019-09-02 22:54:00 +08002384always_inline void
2385tcp_check_tx_offload (tcp_connection_t * tc, int is_ipv4)
2386{
2387 vnet_main_t *vnm = vnet_get_main ();
2388 const dpo_id_t *dpo;
2389 const load_balance_t *lb;
2390 vnet_hw_interface_t *hw_if;
2391 u32 sw_if_idx, lb_idx;
2392
2393 if (is_ipv4)
2394 {
2395 ip4_address_t *dst_addr = &(tc->c_rmt_ip.ip4);
2396 lb_idx = ip4_fib_forwarding_lookup (tc->c_fib_index, dst_addr);
2397 }
2398 else
2399 {
2400 ip6_address_t *dst_addr = &(tc->c_rmt_ip.ip6);
2401 lb_idx = ip6_fib_table_fwding_lookup (tc->c_fib_index, dst_addr);
2402 }
2403
2404 lb = load_balance_get (lb_idx);
2405 dpo = load_balance_get_bucket_i (lb, 0);
2406
2407 sw_if_idx = dpo->dpoi_index;
2408 hw_if = vnet_get_sup_hw_interface (vnm, sw_if_idx);
2409
Florin Corasbbcfaac2019-10-10 13:52:04 -07002410 if (hw_if->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_GSO)
2411 tc->cfg_flags |= TCP_CFG_F_TSO;
Simon Zhang1146ff42019-09-02 22:54:00 +08002412}
2413
Dave Barach68b0fb02017-02-28 15:15:56 -05002414always_inline uword
2415tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2416 vlib_frame_t * from_frame, int is_ip4)
2417{
Florin Coras7ac053b2018-11-05 15:57:21 -08002418 u32 n_left_from, *from, *first_buffer, errors = 0;
2419 u32 my_thread_index = vm->thread_index;
2420 tcp_worker_ctx_t *wrk = tcp_get_worker (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05002421
Florin Coras7ac053b2018-11-05 15:57:21 -08002422 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002423 n_left_from = from_frame->n_vectors;
2424
Dave Barach68b0fb02017-02-28 15:15:56 -05002425 while (n_left_from > 0)
2426 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002427 u32 bi0, ack0, seq0, error0 = TCP_ERROR_NONE;
2428 tcp_connection_t *tc0, *new_tc0;
2429 tcp_header_t *tcp0 = 0;
2430 tcp_rx_trace_t *t0;
2431 vlib_buffer_t *b0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002432
Florin Coras7ac053b2018-11-05 15:57:21 -08002433 bi0 = from[0];
2434 from += 1;
2435 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002436
Florin Coras7ac053b2018-11-05 15:57:21 -08002437 b0 = vlib_get_buffer (vm, bi0);
2438 tc0 =
2439 tcp_half_open_connection_get (vnet_buffer (b0)->tcp.connection_index);
2440 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002441 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002442 error0 = TCP_ERROR_INVALID_CONNECTION;
2443 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002444 }
2445
Florin Coras7ac053b2018-11-05 15:57:21 -08002446 /* Half-open completed recently but the connection was't removed
2447 * yet by the owning thread */
2448 if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2449 {
2450 /* Make sure the connection actually exists */
2451 ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2452 my_thread_index, is_ip4));
Florin Coras222e1f412019-02-16 20:47:32 -08002453 error0 = TCP_ERROR_SPURIOUS_SYN_ACK;
Florin Coras7ac053b2018-11-05 15:57:21 -08002454 goto drop;
2455 }
2456
2457 ack0 = vnet_buffer (b0)->tcp.ack_number;
2458 seq0 = vnet_buffer (b0)->tcp.seq_number;
2459 tcp0 = tcp_buffer_hdr (b0);
2460
2461 /* Crude check to see if the connection handle does not match
2462 * the packet. Probably connection just switched to established */
2463 if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2464 || tcp0->src_port != tc0->c_rmt_port))
2465 {
2466 error0 = TCP_ERROR_INVALID_CONNECTION;
2467 goto drop;
2468 }
2469
2470 if (PREDICT_FALSE (!tcp_ack (tcp0) && !tcp_rst (tcp0)
2471 && !tcp_syn (tcp0)))
2472 {
2473 error0 = TCP_ERROR_SEGMENT_INVALID;
2474 goto drop;
2475 }
2476
Florin Coras3c514d52018-12-22 11:39:33 -08002477 /* SYNs consume sequence numbers */
2478 vnet_buffer (b0)->tcp.seq_end += tcp_is_syn (tcp0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002479
2480 /*
2481 * 1. check the ACK bit
2482 */
2483
2484 /*
2485 * If the ACK bit is set
2486 * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2487 * the RST bit is set, if so drop the segment and return)
2488 * <SEQ=SEG.ACK><CTL=RST>
2489 * and discard the segment. Return.
2490 * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2491 */
2492 if (tcp_ack (tcp0))
2493 {
2494 if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
2495 {
2496 if (!tcp_rst (tcp0))
Florin Corasd4c49be2019-02-07 00:15:53 -08002497 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002498 error0 = TCP_ERROR_RCV_WND;
2499 goto drop;
2500 }
2501
2502 /* Make sure ACK is valid */
2503 if (seq_gt (tc0->snd_una, ack0))
2504 {
2505 error0 = TCP_ERROR_ACK_INVALID;
2506 goto drop;
2507 }
2508 }
2509
2510 /*
2511 * 2. check the RST bit
2512 */
2513
2514 if (tcp_rst (tcp0))
2515 {
2516 /* If ACK is acceptable, signal client that peer is not
2517 * willing to accept connection and drop connection*/
2518 if (tcp_ack (tcp0))
2519 tcp_connection_reset (tc0);
2520 error0 = TCP_ERROR_RST_RCVD;
2521 goto drop;
2522 }
2523
2524 /*
2525 * 3. check the security and precedence (skipped)
2526 */
2527
2528 /*
2529 * 4. check the SYN bit
2530 */
2531
2532 /* No SYN flag. Drop. */
2533 if (!tcp_syn (tcp0))
2534 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002535 error0 = TCP_ERROR_SEGMENT_INVALID;
2536 goto drop;
2537 }
2538
2539 /* Parse options */
Florin Coras80231112018-12-05 15:59:31 -08002540 if (tcp_options_parse (tcp0, &tc0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08002541 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002542 error0 = TCP_ERROR_OPTIONS;
2543 goto drop;
2544 }
2545
2546 /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2547 * current thread pool. */
Florin Coras12f69362019-08-16 09:44:00 -07002548 new_tc0 = tcp_connection_alloc_w_base (my_thread_index, tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002549 new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2550 new_tc0->irs = seq0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002551 new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
2552 new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
2553
2554 /* If this is not the owning thread, wait for syn retransmit to
2555 * expire and cleanup then */
2556 if (tcp_half_open_connection_cleanup (tc0))
2557 tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
2558
2559 if (tcp_opts_tstamp (&new_tc0->rcv_opts))
2560 {
2561 new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
2562 new_tc0->tsval_recent_age = tcp_time_now ();
2563 }
2564
2565 if (tcp_opts_wscale (&new_tc0->rcv_opts))
2566 new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
Florin Corase80b5912018-12-12 19:25:43 -08002567 else
2568 new_tc0->rcv_wscale = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002569
2570 new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2571 << new_tc0->snd_wscale;
2572 new_tc0->snd_wl1 = seq0;
2573 new_tc0->snd_wl2 = ack0;
2574
2575 tcp_connection_init_vars (new_tc0);
2576
2577 /* SYN-ACK: See if we can switch to ESTABLISHED state */
2578 if (PREDICT_TRUE (tcp_ack (tcp0)))
2579 {
2580 /* Our SYN is ACKed: we have iss < ack = snd_una */
2581
2582 /* TODO Dequeue acknowledged segments if we support Fast Open */
2583 new_tc0->snd_una = ack0;
2584 new_tc0->state = TCP_STATE_ESTABLISHED;
2585
2586 /* Make sure las is initialized for the wnd computation */
2587 new_tc0->rcv_las = new_tc0->rcv_nxt;
2588
2589 /* Notify app that we have connection. If session layer can't
2590 * allocate session send reset */
2591 if (session_stream_connect_notify (&new_tc0->connection, 0))
2592 {
Florin Corasd4c49be2019-02-07 00:15:53 -08002593 tcp_send_reset_w_pkt (new_tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002594 tcp_connection_cleanup (new_tc0);
Florin Coras718a0552019-06-07 07:03:01 -07002595 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
Florin Coras7ac053b2018-11-05 15:57:21 -08002596 goto drop;
2597 }
2598
Florin Coras2e31cc32018-09-25 14:00:34 -07002599 new_tc0->tx_fifo_size =
2600 transport_tx_fifo_size (&new_tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002601 /* Update rtt with the syn-ack sample */
Florin Corasefefc6b2018-11-07 12:49:19 -08002602 tcp_estimate_initial_rtt (new_tc0);
Florin Corasa436a422019-08-20 07:09:31 -07002603 TCP_EVT (TCP_EVT_SYNACK_RCVD, new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002604 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2605 }
2606 /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2607 else
2608 {
2609 new_tc0->state = TCP_STATE_SYN_RCVD;
2610
2611 /* Notify app that we have connection */
2612 if (session_stream_connect_notify (&new_tc0->connection, 0))
2613 {
2614 tcp_connection_cleanup (new_tc0);
Florin Corasd4c49be2019-02-07 00:15:53 -08002615 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Corasa436a422019-08-20 07:09:31 -07002616 TCP_EVT (TCP_EVT_RST_SENT, tc0);
Florin Coras718a0552019-06-07 07:03:01 -07002617 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
Florin Coras7ac053b2018-11-05 15:57:21 -08002618 goto drop;
2619 }
2620
Florin Coras2e31cc32018-09-25 14:00:34 -07002621 new_tc0->tx_fifo_size =
2622 transport_tx_fifo_size (&new_tc0->connection);
2623 new_tc0->rtt_ts = 0;
2624 tcp_init_snd_vars (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002625 tcp_send_synack (new_tc0);
2626 error0 = TCP_ERROR_SYNS_RCVD;
2627 goto drop;
2628 }
2629
Florin Corasbbcfaac2019-10-10 13:52:04 -07002630 if (!(new_tc0->cfg_flags & TCP_CFG_F_NO_TSO))
2631 tcp_check_tx_offload (new_tc0, is_ip4);
Simon Zhang1146ff42019-09-02 22:54:00 +08002632
Florin Coras7ac053b2018-11-05 15:57:21 -08002633 /* Read data, if any */
2634 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
2635 {
2636 clib_warning ("rcvd data in syn-sent");
2637 error0 = tcp_segment_rcv (wrk, new_tc0, b0);
2638 if (error0 == TCP_ERROR_ACK_OK)
2639 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2640 }
2641 else
2642 {
Florin Corascb711a42019-10-16 19:28:17 -07002643 /* Send ack now instead of programming it because connection was
2644 * just established and it's not optional. */
2645 tcp_send_ack (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002646 }
2647
2648 drop:
2649
2650 tcp_inc_counter (syn_sent, error0, 1);
2651 if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
2652 {
2653 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05002654 clib_memcpy_fast (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2655 clib_memcpy_fast (&t0->tcp_connection, tc0,
2656 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08002657 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002658 }
2659
Florin Coras31c99552019-03-01 13:00:58 -08002660 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2661 my_thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002662 tcp_inc_counter (syn_sent, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras7ac053b2018-11-05 15:57:21 -08002663 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
2664
Dave Barach68b0fb02017-02-28 15:15:56 -05002665 return from_frame->n_vectors;
2666}
2667
Filip Tehlare275bed2019-03-06 00:06:56 -08002668VLIB_NODE_FN (tcp4_syn_sent_node) (vlib_main_t * vm,
2669 vlib_node_runtime_t * node,
2670 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002671{
2672 return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2673}
2674
Filip Tehlare275bed2019-03-06 00:06:56 -08002675VLIB_NODE_FN (tcp6_syn_sent_node) (vlib_main_t * vm,
2676 vlib_node_runtime_t * node,
2677 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002678{
2679 return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2680}
2681
2682/* *INDENT-OFF* */
2683VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2684{
Dave Barach68b0fb02017-02-28 15:15:56 -05002685 .name = "tcp4-syn-sent",
2686 /* Takes a vector of packets. */
2687 .vector_size = sizeof (u32),
2688 .n_errors = TCP_N_ERROR,
2689 .error_strings = tcp_error_strings,
2690 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2691 .next_nodes =
2692 {
2693#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2694 foreach_tcp_state_next
2695#undef _
2696 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002697 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002698};
2699/* *INDENT-ON* */
2700
Dave Barach68b0fb02017-02-28 15:15:56 -05002701/* *INDENT-OFF* */
2702VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2703{
Dave Barach68b0fb02017-02-28 15:15:56 -05002704 .name = "tcp6-syn-sent",
2705 /* Takes a vector of packets. */
2706 .vector_size = sizeof (u32),
2707 .n_errors = TCP_N_ERROR,
2708 .error_strings = tcp_error_strings,
2709 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2710 .next_nodes =
2711 {
2712#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2713 foreach_tcp_state_next
2714#undef _
Clement Durand6cf260c2017-04-13 13:27:04 +02002715 },
2716 .format_trace = format_tcp_rx_trace_short,
2717};
Dave Barach68b0fb02017-02-28 15:15:56 -05002718/* *INDENT-ON* */
2719
Dave Barach68b0fb02017-02-28 15:15:56 -05002720/**
Florin Corasd79b41e2017-03-04 05:37:52 -08002721 * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
Dave Barach68b0fb02017-02-28 15:15:56 -05002722 * as per RFC793 p. 64
2723 */
2724always_inline uword
2725tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2726 vlib_frame_t * from_frame, int is_ip4)
2727{
Florin Coras7ac053b2018-11-05 15:57:21 -08002728 u32 thread_index = vm->thread_index, errors = 0, *first_buffer;
2729 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras78cc4b02018-12-20 18:24:49 -08002730 u32 n_left_from, *from, max_dequeue;
Dave Barach68b0fb02017-02-28 15:15:56 -05002731
Florin Coras7ac053b2018-11-05 15:57:21 -08002732 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002733 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002734
2735 while (n_left_from > 0)
2736 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002737 u32 bi0, error0 = TCP_ERROR_NONE;
2738 tcp_header_t *tcp0 = 0;
2739 tcp_connection_t *tc0;
2740 vlib_buffer_t *b0;
2741 u8 is_fin0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002742
Florin Coras7ac053b2018-11-05 15:57:21 -08002743 bi0 = from[0];
2744 from += 1;
2745 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002746
Florin Coras7ac053b2018-11-05 15:57:21 -08002747 b0 = vlib_get_buffer (vm, bi0);
2748 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2749 thread_index);
2750 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002751 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002752 error0 = TCP_ERROR_INVALID_CONNECTION;
2753 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002754 }
2755
Florin Coras7ac053b2018-11-05 15:57:21 -08002756 tcp0 = tcp_buffer_hdr (b0);
2757 is_fin0 = tcp_is_fin (tcp0);
2758
Florin Coras7ac053b2018-11-05 15:57:21 -08002759 if (CLIB_DEBUG)
2760 {
Ryujiro Shibuyac8be8512019-10-28 00:32:12 +00002761 if (!(tc0->connection.flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
Florin Coras7ac053b2018-11-05 15:57:21 -08002762 {
Ryujiro Shibuyac8be8512019-10-28 00:32:12 +00002763 tcp_connection_t *tmp;
2764 tmp = tcp_lookup_connection (tc0->c_fib_index, b0, thread_index,
2765 is_ip4);
2766 if (tmp->state != tc0->state)
2767 {
2768 if (tc0->state != TCP_STATE_CLOSED)
2769 clib_warning ("state changed");
2770 goto drop;
2771 }
Florin Coras7ac053b2018-11-05 15:57:21 -08002772 }
2773 }
2774
2775 /*
2776 * Special treatment for CLOSED
2777 */
2778 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
2779 {
2780 error0 = TCP_ERROR_CONNECTION_CLOSED;
2781 goto drop;
2782 }
2783
2784 /*
2785 * For all other states (except LISTEN)
2786 */
2787
2788 /* 1-4: check SEQ, RST, SYN */
2789 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, tcp0, &error0)))
2790 goto drop;
2791
2792 /* 5: check the ACK field */
2793 switch (tc0->state)
2794 {
2795 case TCP_STATE_SYN_RCVD:
Florin Corasf65074e2019-03-31 17:17:11 -07002796
2797 /* Make sure the segment is exactly right */
2798 if (tc0->rcv_nxt != vnet_buffer (b0)->tcp.seq_number || is_fin0)
2799 {
2800 tcp_connection_reset (tc0);
2801 error0 = TCP_ERROR_SEGMENT_INVALID;
2802 goto drop;
2803 }
2804
Florin Coras7ac053b2018-11-05 15:57:21 -08002805 /*
2806 * If the segment acknowledgment is not acceptable, form a
2807 * reset segment,
2808 * <SEQ=SEG.ACK><CTL=RST>
2809 * and send it.
2810 */
Florin Corasf65074e2019-03-31 17:17:11 -07002811 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08002812 {
Florin Corase78ac9d2018-12-16 21:33:00 -08002813 tcp_connection_reset (tc0);
Florin Coras4850e3e2018-12-12 14:34:38 -08002814 goto drop;
2815 }
2816
Florin Coras7ac053b2018-11-05 15:57:21 -08002817 /* Update rtt and rto */
Florin Corasefefc6b2018-11-07 12:49:19 -08002818 tcp_estimate_initial_rtt (tc0);
Florin Coras36ebcff2019-09-12 18:36:44 -07002819 tcp_connection_tx_pacer_update (tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002820
2821 /* Switch state to ESTABLISHED */
2822 tc0->state = TCP_STATE_ESTABLISHED;
Florin Corasa436a422019-08-20 07:09:31 -07002823 TCP_EVT (TCP_EVT_STATE_CHANGE, tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002824
Florin Corasbbcfaac2019-10-10 13:52:04 -07002825 if (!(tc0->cfg_flags & TCP_CFG_F_NO_TSO))
2826 tcp_check_tx_offload (tc0, is_ip4);
Simon Zhang1146ff42019-09-02 22:54:00 +08002827
Florin Coras7ac053b2018-11-05 15:57:21 -08002828 /* Initialize session variables */
2829 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
2830 tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2831 << tc0->rcv_opts.wscale;
2832 tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2833 tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
2834
2835 /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
2836 tcp_retransmit_timer_reset (tc0);
Florin Corasa27a46e2019-02-18 13:02:28 -08002837 if (session_stream_accept_notify (&tc0->connection))
Florin Corasa9d5bea2018-12-17 08:24:19 -08002838 {
2839 error0 = TCP_ERROR_MSG_QUEUE_FULL;
2840 tcp_connection_reset (tc0);
2841 goto drop;
2842 }
Florin Coras7ac053b2018-11-05 15:57:21 -08002843 error0 = TCP_ERROR_ACK_OK;
2844 break;
2845 case TCP_STATE_ESTABLISHED:
2846 /* We can get packets in established state here because they
2847 * were enqueued before state change */
2848 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2849 goto drop;
2850
2851 break;
2852 case TCP_STATE_FIN_WAIT_1:
2853 /* In addition to the processing for the ESTABLISHED state, if
2854 * our FIN is now acknowledged then enter FIN-WAIT-2 and
2855 * continue processing in that state. */
2856 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2857 goto drop;
2858
2859 /* Still have to send the FIN */
2860 if (tc0->flags & TCP_CONN_FINPNDG)
2861 {
2862 /* TX fifo finally drained */
Florin Coras31c99552019-03-01 13:00:58 -08002863 max_dequeue = transport_max_tx_dequeue (&tc0->connection);
Florin Coras78cc4b02018-12-20 18:24:49 -08002864 if (max_dequeue <= tc0->burst_acked)
Florin Coras7ac053b2018-11-05 15:57:21 -08002865 tcp_send_fin (tc0);
Florin Coras070fd4b2019-04-02 19:03:23 -07002866 /* If a fin was received and data was acked extend wait */
2867 else if ((tc0->flags & TCP_CONN_FINRCVD) && tc0->bytes_acked)
2868 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
Florin Coras9094b5c2019-08-12 14:17:47 -07002869 tcp_cfg.closewait_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08002870 }
2871 /* If FIN is ACKed */
Florin Coras47596832019-03-12 18:58:54 -07002872 else if (tc0->snd_una == tc0->snd_nxt)
Florin Coras7ac053b2018-11-05 15:57:21 -08002873 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002874 /* Stop all retransmit timers because we have nothing more
Florin Corasf65074e2019-03-31 17:17:11 -07002875 * to send. */
Florin Coras7ac053b2018-11-05 15:57:21 -08002876 tcp_connection_timers_reset (tc0);
Florin Corasf65074e2019-03-31 17:17:11 -07002877
2878 /* We already have a FIN but didn't transition to CLOSING
2879 * because of outstanding tx data. Close the connection. */
2880 if (tc0->flags & TCP_CONN_FINRCVD)
2881 {
2882 tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
Florin Coras9094b5c2019-08-12 14:17:47 -07002883 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE,
2884 tcp_cfg.cleanup_time);
Florin Corasa0904f02019-07-22 20:55:11 -07002885 session_transport_closed_notify (&tc0->connection);
Florin Corasf65074e2019-03-31 17:17:11 -07002886 goto drop;
2887 }
2888
2889 tcp_connection_set_state (tc0, TCP_STATE_FIN_WAIT_2);
2890 /* Enable waitclose because we're willing to wait for peer's
2891 * FIN but not indefinitely. */
Florin Coras9094b5c2019-08-12 14:17:47 -07002892 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.finwait2_time);
Florin Corasefefc6b2018-11-07 12:49:19 -08002893
2894 /* Don't try to deq the FIN acked */
2895 if (tc0->burst_acked > 1)
Florin Coras31c99552019-03-01 13:00:58 -08002896 session_tx_fifo_dequeue_drop (&tc0->connection,
2897 tc0->burst_acked - 1);
Florin Corasefefc6b2018-11-07 12:49:19 -08002898 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002899 }
2900 break;
2901 case TCP_STATE_FIN_WAIT_2:
2902 /* In addition to the processing for the ESTABLISHED state, if
2903 * the retransmission queue is empty, the user's CLOSE can be
2904 * acknowledged ("ok") but do not delete the TCB. */
Florin Corasf65074e2019-03-31 17:17:11 -07002905 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08002906 goto drop;
Florin Corasefefc6b2018-11-07 12:49:19 -08002907 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002908 break;
2909 case TCP_STATE_CLOSE_WAIT:
2910 /* Do the same processing as for the ESTABLISHED state. */
2911 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2912 goto drop;
2913
Florin Corasf65074e2019-03-31 17:17:11 -07002914 if (!(tc0->flags & TCP_CONN_FINPNDG))
2915 break;
2916
2917 /* Still have outstanding tx data */
Florin Coras182bbc12019-06-28 09:41:28 -07002918 max_dequeue = transport_max_tx_dequeue (&tc0->connection);
2919 if (max_dequeue > tc0->burst_acked)
Florin Corasf65074e2019-03-31 17:17:11 -07002920 break;
2921
2922 tcp_send_fin (tc0);
2923 tcp_connection_timers_reset (tc0);
2924 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras9094b5c2019-08-12 14:17:47 -07002925 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.lastack_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08002926 break;
2927 case TCP_STATE_CLOSING:
2928 /* In addition to the processing for the ESTABLISHED state, if
2929 * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2930 * otherwise ignore the segment. */
Florin Corasf65074e2019-03-31 17:17:11 -07002931 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2932 goto drop;
Florin Coras47596832019-03-12 18:58:54 -07002933
Florin Corasf65074e2019-03-31 17:17:11 -07002934 if (tc0->snd_una != tc0->snd_nxt)
2935 goto drop;
Florin Coras7ac053b2018-11-05 15:57:21 -08002936
Florin Coras85a3ddd2018-12-24 16:54:34 -08002937 tcp_connection_timers_reset (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002938 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras9094b5c2019-08-12 14:17:47 -07002939 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras692b9492019-07-12 15:01:53 -07002940 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002941 goto drop;
2942
2943 break;
2944 case TCP_STATE_LAST_ACK:
2945 /* The only thing that [should] arrive in this state is an
2946 * acknowledgment of our FIN. If our FIN is now acknowledged,
2947 * delete the TCB, enter the CLOSED state, and return. */
2948
Florin Corasf65074e2019-03-31 17:17:11 -07002949 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2950 goto drop;
2951
Florin Coras7ac053b2018-11-05 15:57:21 -08002952 /* Apparently our ACK for the peer's FIN was lost */
Florin Coras47596832019-03-12 18:58:54 -07002953 if (is_fin0 && tc0->snd_una != tc0->snd_nxt)
Florin Coras7ac053b2018-11-05 15:57:21 -08002954 {
2955 tcp_send_fin (tc0);
2956 goto drop;
2957 }
2958
Florin Coras3c514d52018-12-22 11:39:33 -08002959 tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
Florin Corasa0904f02019-07-22 20:55:11 -07002960 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002961
2962 /* Don't free the connection from the data path since
2963 * we can't ensure that we have no packets already enqueued
2964 * to output. Rely instead on the waitclose timer */
2965 tcp_connection_timers_reset (tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07002966 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.cleanup_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08002967
2968 goto drop;
2969
2970 break;
2971 case TCP_STATE_TIME_WAIT:
2972 /* The only thing that can arrive in this state is a
2973 * retransmission of the remote FIN. Acknowledge it, and restart
2974 * the 2 MSL timeout. */
2975
Florin Corasf65074e2019-03-31 17:17:11 -07002976 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08002977 goto drop;
2978
Florin Coras37db4302019-03-13 13:25:57 -07002979 if (!is_fin0)
2980 goto drop;
2981
Florin Coras26dd6de2019-07-23 23:54:47 -07002982 tcp_program_ack (tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07002983 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08002984 goto drop;
2985
2986 break;
2987 default:
2988 ASSERT (0);
2989 }
2990
2991 /* 6: check the URG bit TODO */
2992
2993 /* 7: process the segment text */
2994 switch (tc0->state)
2995 {
2996 case TCP_STATE_ESTABLISHED:
2997 case TCP_STATE_FIN_WAIT_1:
2998 case TCP_STATE_FIN_WAIT_2:
2999 if (vnet_buffer (b0)->tcp.data_len)
3000 error0 = tcp_segment_rcv (wrk, tc0, b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003001 break;
3002 case TCP_STATE_CLOSE_WAIT:
3003 case TCP_STATE_CLOSING:
3004 case TCP_STATE_LAST_ACK:
3005 case TCP_STATE_TIME_WAIT:
3006 /* This should not occur, since a FIN has been received from the
3007 * remote side. Ignore the segment text. */
3008 break;
3009 }
3010
3011 /* 8: check the FIN bit */
3012 if (!is_fin0)
3013 goto drop;
3014
Florin Corasa436a422019-08-20 07:09:31 -07003015 TCP_EVT (TCP_EVT_FIN_RCVD, tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08003016
Florin Coras7ac053b2018-11-05 15:57:21 -08003017 switch (tc0->state)
3018 {
3019 case TCP_STATE_ESTABLISHED:
Florin Coras3c514d52018-12-22 11:39:33 -08003020 /* Account for the FIN and send ack */
3021 tc0->rcv_nxt += 1;
Florin Coras26dd6de2019-07-23 23:54:47 -07003022 tcp_program_ack (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08003023 tcp_connection_set_state (tc0, TCP_STATE_CLOSE_WAIT);
3024 tcp_program_disconnect (wrk, tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07003025 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.closewait_time);
Florin Coras5c0f1662018-12-19 01:38:57 -08003026 break;
Florin Coras7ac053b2018-11-05 15:57:21 -08003027 case TCP_STATE_SYN_RCVD:
Florin Coras5c0f1662018-12-19 01:38:57 -08003028 /* Send FIN-ACK, enter LAST-ACK and because the app was not
3029 * notified yet, set a cleanup timer instead of relying on
3030 * disconnect notify and the implicit close call. */
Florin Coras7ac053b2018-11-05 15:57:21 -08003031 tcp_connection_timers_reset (tc0);
Florin Coras5c0f1662018-12-19 01:38:57 -08003032 tc0->rcv_nxt += 1;
Florin Coras7ac053b2018-11-05 15:57:21 -08003033 tcp_send_fin (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08003034 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras9094b5c2019-08-12 14:17:47 -07003035 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.lastack_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08003036 break;
3037 case TCP_STATE_CLOSE_WAIT:
3038 case TCP_STATE_CLOSING:
3039 case TCP_STATE_LAST_ACK:
3040 /* move along .. */
3041 break;
3042 case TCP_STATE_FIN_WAIT_1:
Florin Coras3c514d52018-12-22 11:39:33 -08003043 tc0->rcv_nxt += 1;
Florin Coras070fd4b2019-04-02 19:03:23 -07003044
Florin Coras565115e2019-02-20 19:48:31 -08003045 if (tc0->flags & TCP_CONN_FINPNDG)
3046 {
Florin Coras070fd4b2019-04-02 19:03:23 -07003047 /* If data is outstanding, stay in FIN_WAIT_1 and try to finish
3048 * sending it. Since we already received a fin, do not wait
3049 * for too long. */
Florin Corasf65074e2019-03-31 17:17:11 -07003050 tc0->flags |= TCP_CONN_FINRCVD;
Florin Coras9094b5c2019-08-12 14:17:47 -07003051 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
3052 tcp_cfg.closewait_time);
Florin Coras565115e2019-02-20 19:48:31 -08003053 }
3054 else
Florin Corasf65074e2019-03-31 17:17:11 -07003055 {
3056 tcp_connection_set_state (tc0, TCP_STATE_CLOSING);
Florin Coras26dd6de2019-07-23 23:54:47 -07003057 tcp_program_ack (tc0);
Florin Coras070fd4b2019-04-02 19:03:23 -07003058 /* Wait for ACK for our FIN but not forever */
Florin Coras9094b5c2019-08-12 14:17:47 -07003059 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
3060 tcp_cfg.closing_time);
Florin Corasf65074e2019-03-31 17:17:11 -07003061 }
Florin Coras7ac053b2018-11-05 15:57:21 -08003062 break;
3063 case TCP_STATE_FIN_WAIT_2:
3064 /* Got FIN, send ACK! Be more aggressive with resource cleanup */
Florin Coras3c514d52018-12-22 11:39:33 -08003065 tc0->rcv_nxt += 1;
3066 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras7ac053b2018-11-05 15:57:21 -08003067 tcp_connection_timers_reset (tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07003068 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras26dd6de2019-07-23 23:54:47 -07003069 tcp_program_ack (tc0);
Florin Coras692b9492019-07-12 15:01:53 -07003070 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003071 break;
3072 case TCP_STATE_TIME_WAIT:
3073 /* Remain in the TIME-WAIT state. Restart the time-wait
3074 * timeout.
3075 */
Florin Coras9094b5c2019-08-12 14:17:47 -07003076 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08003077 break;
3078 }
3079 error0 = TCP_ERROR_FIN_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -08003080
3081 drop:
3082
3083 tcp_inc_counter (rcv_process, error0, 1);
3084 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3085 {
3086 tcp_rx_trace_t *t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
3087 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
3088 }
Dave Barach68b0fb02017-02-28 15:15:56 -05003089 }
3090
Florin Coras31c99552019-03-01 13:00:58 -08003091 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
3092 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08003093 tcp_inc_counter (rcv_process, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras9ece3c02018-11-05 11:06:53 -08003094 tcp_handle_postponed_dequeues (wrk);
Florin Coras79fdfd62019-05-23 06:19:09 -07003095 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08003096 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3097
Dave Barach68b0fb02017-02-28 15:15:56 -05003098 return from_frame->n_vectors;
3099}
3100
Filip Tehlare275bed2019-03-06 00:06:56 -08003101VLIB_NODE_FN (tcp4_rcv_process_node) (vlib_main_t * vm,
3102 vlib_node_runtime_t * node,
3103 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003104{
3105 return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3106}
3107
Filip Tehlare275bed2019-03-06 00:06:56 -08003108VLIB_NODE_FN (tcp6_rcv_process_node) (vlib_main_t * vm,
3109 vlib_node_runtime_t * node,
3110 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003111{
3112 return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3113}
3114
3115/* *INDENT-OFF* */
3116VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
3117{
Dave Barach68b0fb02017-02-28 15:15:56 -05003118 .name = "tcp4-rcv-process",
3119 /* Takes a vector of packets. */
3120 .vector_size = sizeof (u32),
3121 .n_errors = TCP_N_ERROR,
3122 .error_strings = tcp_error_strings,
3123 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3124 .next_nodes =
3125 {
3126#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3127 foreach_tcp_state_next
3128#undef _
3129 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003130 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003131};
3132/* *INDENT-ON* */
3133
Dave Barach68b0fb02017-02-28 15:15:56 -05003134/* *INDENT-OFF* */
3135VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
3136{
Dave Barach68b0fb02017-02-28 15:15:56 -05003137 .name = "tcp6-rcv-process",
3138 /* Takes a vector of packets. */
3139 .vector_size = sizeof (u32),
3140 .n_errors = TCP_N_ERROR,
3141 .error_strings = tcp_error_strings,
3142 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3143 .next_nodes =
3144 {
3145#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3146 foreach_tcp_state_next
3147#undef _
3148 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003149 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003150};
3151/* *INDENT-ON* */
3152
Dave Barach68b0fb02017-02-28 15:15:56 -05003153/**
3154 * LISTEN state processing as per RFC 793 p. 65
3155 */
3156always_inline uword
3157tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3158 vlib_frame_t * from_frame, int is_ip4)
3159{
Florin Coras7ac053b2018-11-05 15:57:21 -08003160 u32 n_left_from, *from, n_syns = 0, *first_buffer;
Damjan Marion586afd72017-04-05 19:18:20 +02003161 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05003162
Florin Coras7ac053b2018-11-05 15:57:21 -08003163 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05003164 n_left_from = from_frame->n_vectors;
3165
Dave Barach68b0fb02017-02-28 15:15:56 -05003166 while (n_left_from > 0)
3167 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003168 u32 bi0;
3169 vlib_buffer_t *b0;
3170 tcp_rx_trace_t *t0;
3171 tcp_header_t *th0 = 0;
3172 tcp_connection_t *lc0;
3173 ip4_header_t *ip40;
3174 ip6_header_t *ip60;
3175 tcp_connection_t *child0;
3176 u32 error0 = TCP_ERROR_NONE;
Dave Barach68b0fb02017-02-28 15:15:56 -05003177
Florin Coras7ac053b2018-11-05 15:57:21 -08003178 bi0 = from[0];
3179 from += 1;
3180 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05003181
Florin Coras7ac053b2018-11-05 15:57:21 -08003182 b0 = vlib_get_buffer (vm, bi0);
3183 lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index);
3184
3185 if (is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003186 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003187 ip40 = vlib_buffer_get_current (b0);
3188 th0 = ip4_next_header (ip40);
3189 }
3190 else
3191 {
3192 ip60 = vlib_buffer_get_current (b0);
3193 th0 = ip6_next_header (ip60);
Dave Barach68b0fb02017-02-28 15:15:56 -05003194 }
3195
Florin Coras7ac053b2018-11-05 15:57:21 -08003196 /* Create child session. For syn-flood protection use filter */
3197
3198 /* 1. first check for an RST: handled in dispatch */
3199 /* if (tcp_rst (th0))
3200 goto drop;
3201 */
3202
3203 /* 2. second check for an ACK: handled in dispatch */
3204 /* if (tcp_ack (th0))
3205 {
3206 tcp_send_reset (b0, is_ip4);
3207 goto drop;
3208 }
3209 */
3210
3211 /* 3. check for a SYN (did that already) */
3212
3213 /* Make sure connection wasn't just created */
3214 child0 = tcp_lookup_connection (lc0->c_fib_index, b0, my_thread_index,
3215 is_ip4);
3216 if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN))
3217 {
3218 error0 = TCP_ERROR_CREATE_EXISTS;
3219 goto drop;
3220 }
3221
3222 /* Create child session and send SYN-ACK */
Florin Coras8124cb72018-12-16 20:57:29 -08003223 child0 = tcp_connection_alloc (my_thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08003224 child0->c_lcl_port = th0->dst_port;
3225 child0->c_rmt_port = th0->src_port;
3226 child0->c_is_ip4 = is_ip4;
3227 child0->state = TCP_STATE_SYN_RCVD;
3228 child0->c_fib_index = lc0->c_fib_index;
Florin Coras12f69362019-08-16 09:44:00 -07003229 child0->cc_algo = lc0->cc_algo;
Florin Coras7ac053b2018-11-05 15:57:21 -08003230
3231 if (is_ip4)
3232 {
3233 child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32;
3234 child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32;
3235 }
3236 else
3237 {
Dave Barach178cf492018-11-13 16:34:13 -05003238 clib_memcpy_fast (&child0->c_lcl_ip6, &ip60->dst_address,
3239 sizeof (ip6_address_t));
3240 clib_memcpy_fast (&child0->c_rmt_ip6, &ip60->src_address,
3241 sizeof (ip6_address_t));
Florin Coras7ac053b2018-11-05 15:57:21 -08003242 }
3243
Florin Coras80231112018-12-05 15:59:31 -08003244 if (tcp_options_parse (th0, &child0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08003245 {
Florin Coras8124cb72018-12-16 20:57:29 -08003246 error0 = TCP_ERROR_OPTIONS;
3247 tcp_connection_free (child0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003248 goto drop;
3249 }
3250
3251 child0->irs = vnet_buffer (b0)->tcp.seq_number;
3252 child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1;
3253 child0->rcv_las = child0->rcv_nxt;
3254 child0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
3255
3256 /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
3257 * segments are used to initialize PAWS. */
3258 if (tcp_opts_tstamp (&child0->rcv_opts))
3259 {
3260 child0->tsval_recent = child0->rcv_opts.tsval;
3261 child0->tsval_recent_age = tcp_time_now ();
3262 }
3263
3264 if (tcp_opts_wscale (&child0->rcv_opts))
3265 child0->snd_wscale = child0->rcv_opts.wscale;
3266
3267 child0->snd_wnd = clib_net_to_host_u16 (th0->window)
3268 << child0->snd_wscale;
3269 child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
3270 child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
3271
3272 tcp_connection_init_vars (child0);
Florin Coras865872e2019-01-18 12:12:29 -08003273 child0->rto = TCP_RTO_MIN;
Florin Coras7ac053b2018-11-05 15:57:21 -08003274
Florin Corasc9940fc2019-02-05 20:55:11 -08003275 if (session_stream_accept (&child0->connection, lc0->c_s_index,
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +02003276 lc0->c_thread_index, 0 /* notify */ ))
Florin Coras7ac053b2018-11-05 15:57:21 -08003277 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003278 tcp_connection_cleanup (child0);
3279 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
3280 goto drop;
3281 }
3282
Florin Corasa436a422019-08-20 07:09:31 -07003283 TCP_EVT (TCP_EVT_SYN_RCVD, child0, 1);
Florin Coras2e31cc32018-09-25 14:00:34 -07003284 child0->tx_fifo_size = transport_tx_fifo_size (&child0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003285 tcp_send_synack (child0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003286
3287 drop:
3288
3289 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3290 {
3291 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05003292 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
3293 clib_memcpy_fast (&t0->tcp_connection, lc0,
3294 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08003295 }
3296
3297 n_syns += (error0 == TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003298 }
Florin Coras00cd22d2018-04-18 13:20:18 -07003299
3300 tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
Florin Coras7ac053b2018-11-05 15:57:21 -08003301 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3302
Dave Barach68b0fb02017-02-28 15:15:56 -05003303 return from_frame->n_vectors;
3304}
3305
Filip Tehlare275bed2019-03-06 00:06:56 -08003306VLIB_NODE_FN (tcp4_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3307 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003308{
3309 return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3310}
3311
Filip Tehlare275bed2019-03-06 00:06:56 -08003312VLIB_NODE_FN (tcp6_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3313 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003314{
3315 return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3316}
3317
3318/* *INDENT-OFF* */
3319VLIB_REGISTER_NODE (tcp4_listen_node) =
3320{
Dave Barach68b0fb02017-02-28 15:15:56 -05003321 .name = "tcp4-listen",
3322 /* Takes a vector of packets. */
3323 .vector_size = sizeof (u32),
3324 .n_errors = TCP_N_ERROR,
3325 .error_strings = tcp_error_strings,
3326 .n_next_nodes = TCP_LISTEN_N_NEXT,
3327 .next_nodes =
3328 {
3329#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3330 foreach_tcp_state_next
3331#undef _
3332 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003333 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003334};
3335/* *INDENT-ON* */
3336
Dave Barach68b0fb02017-02-28 15:15:56 -05003337/* *INDENT-OFF* */
3338VLIB_REGISTER_NODE (tcp6_listen_node) =
3339{
Dave Barach68b0fb02017-02-28 15:15:56 -05003340 .name = "tcp6-listen",
3341 /* Takes a vector of packets. */
3342 .vector_size = sizeof (u32),
3343 .n_errors = TCP_N_ERROR,
3344 .error_strings = tcp_error_strings,
3345 .n_next_nodes = TCP_LISTEN_N_NEXT,
3346 .next_nodes =
3347 {
3348#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3349 foreach_tcp_state_next
3350#undef _
3351 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003352 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003353};
3354/* *INDENT-ON* */
3355
Dave Barach68b0fb02017-02-28 15:15:56 -05003356typedef enum _tcp_input_next
3357{
3358 TCP_INPUT_NEXT_DROP,
3359 TCP_INPUT_NEXT_LISTEN,
3360 TCP_INPUT_NEXT_RCV_PROCESS,
3361 TCP_INPUT_NEXT_SYN_SENT,
3362 TCP_INPUT_NEXT_ESTABLISHED,
3363 TCP_INPUT_NEXT_RESET,
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003364 TCP_INPUT_NEXT_PUNT,
Dave Barach68b0fb02017-02-28 15:15:56 -05003365 TCP_INPUT_N_NEXT
3366} tcp_input_next_t;
3367
3368#define foreach_tcp4_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003369 _ (DROP, "ip4-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003370 _ (LISTEN, "tcp4-listen") \
3371 _ (RCV_PROCESS, "tcp4-rcv-process") \
3372 _ (SYN_SENT, "tcp4-syn-sent") \
3373 _ (ESTABLISHED, "tcp4-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003374 _ (RESET, "tcp4-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003375 _ (PUNT, "ip4-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003376
3377#define foreach_tcp6_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003378 _ (DROP, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003379 _ (LISTEN, "tcp6-listen") \
3380 _ (RCV_PROCESS, "tcp6-rcv-process") \
3381 _ (SYN_SENT, "tcp6-syn-sent") \
3382 _ (ESTABLISHED, "tcp6-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003383 _ (RESET, "tcp6-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003384 _ (PUNT, "ip6-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003385
Dave Barach68b0fb02017-02-28 15:15:56 -05003386#define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
3387
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003388static void
3389tcp_input_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07003390 vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003391{
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003392 tcp_connection_t *tc;
3393 tcp_header_t *tcp;
3394 tcp_rx_trace_t *t;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003395 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05003396
Florin Coras4df38712018-06-20 12:44:16 -07003397 for (i = 0; i < n_bufs; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05003398 {
Florin Coras4df38712018-06-20 12:44:16 -07003399 if (bs[i]->flags & VLIB_BUFFER_IS_TRACED)
3400 {
3401 t = vlib_add_trace (vm, node, bs[i], sizeof (*t));
3402 tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index,
3403 vm->thread_index);
3404 tcp = vlib_buffer_get_current (bs[i]);
3405 tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4);
3406 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003407 }
3408}
Dave Barach68b0fb02017-02-28 15:15:56 -05003409
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003410static void
3411tcp_input_set_error_next (tcp_main_t * tm, u16 * next, u32 * error, u8 is_ip4)
3412{
Florin Corasb5e55a22019-01-10 12:42:47 -08003413 if (*error == TCP_ERROR_FILTERED || *error == TCP_ERROR_WRONG_THREAD)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003414 {
3415 *next = TCP_INPUT_NEXT_DROP;
3416 }
3417 else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6))
3418 {
3419 *next = TCP_INPUT_NEXT_PUNT;
3420 *error = TCP_ERROR_PUNT;
3421 }
3422 else
3423 {
3424 *next = TCP_INPUT_NEXT_RESET;
3425 *error = TCP_ERROR_NO_LISTENER;
3426 }
3427}
Dave Barach68b0fb02017-02-28 15:15:56 -05003428
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003429always_inline tcp_connection_t *
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003430tcp_input_lookup_buffer (vlib_buffer_t * b, u8 thread_index, u32 * error,
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003431 u8 is_ip4, u8 is_nolookup)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003432{
3433 u32 fib_index = vnet_buffer (b)->ip.fib_index;
3434 int n_advance_bytes, n_data_bytes;
3435 transport_connection_t *tc;
3436 tcp_header_t *tcp;
Florin Corasb5e55a22019-01-10 12:42:47 -08003437 u8 result = 0;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003438
3439 if (is_ip4)
3440 {
3441 ip4_header_t *ip4 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003442 int ip_hdr_bytes = ip4_header_bytes (ip4);
3443 if (PREDICT_FALSE (b->current_length < ip_hdr_bytes + sizeof (*tcp)))
3444 {
3445 *error = TCP_ERROR_LENGTH;
3446 return 0;
3447 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003448 tcp = ip4_next_header (ip4);
3449 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip4;
Florin Corasb8dda5f2018-12-05 10:03:34 -08003450 n_advance_bytes = (ip_hdr_bytes + tcp_header_bytes (tcp));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003451 n_data_bytes = clib_net_to_host_u16 (ip4->length) - n_advance_bytes;
3452
3453 /* Length check. Checksum computed by ipx_local no need to compute again */
Florin Corasb8dda5f2018-12-05 10:03:34 -08003454 if (PREDICT_FALSE (n_data_bytes < 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05003455 {
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003456 *error = TCP_ERROR_LENGTH;
3457 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003458 }
3459
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003460 if (!is_nolookup)
3461 tc = session_lookup_connection_wt4 (fib_index, &ip4->dst_address,
3462 &ip4->src_address, tcp->dst_port,
3463 tcp->src_port,
3464 TRANSPORT_PROTO_TCP, thread_index,
3465 &result);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003466 }
3467 else
3468 {
3469 ip6_header_t *ip6 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003470 if (PREDICT_FALSE (b->current_length < sizeof (*ip6) + sizeof (*tcp)))
3471 {
3472 *error = TCP_ERROR_LENGTH;
3473 return 0;
3474 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003475 tcp = ip6_next_header (ip6);
3476 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip6;
3477 n_advance_bytes = tcp_header_bytes (tcp);
3478 n_data_bytes = clib_net_to_host_u16 (ip6->payload_length)
3479 - n_advance_bytes;
3480 n_advance_bytes += sizeof (ip6[0]);
3481
Florin Corasb8dda5f2018-12-05 10:03:34 -08003482 if (PREDICT_FALSE (n_data_bytes < 0))
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003483 {
3484 *error = TCP_ERROR_LENGTH;
3485 return 0;
3486 }
3487
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003488 if (!is_nolookup)
3489 {
3490 if (PREDICT_FALSE
3491 (ip6_address_is_link_local_unicast (&ip6->dst_address)))
3492 {
3493 ip4_main_t *im = &ip4_main;
3494 fib_index = vec_elt (im->fib_index_by_sw_if_index,
3495 vnet_buffer (b)->sw_if_index[VLIB_RX]);
3496 }
3497
3498 tc = session_lookup_connection_wt6 (fib_index, &ip6->dst_address,
3499 &ip6->src_address,
3500 tcp->dst_port, tcp->src_port,
3501 TRANSPORT_PROTO_TCP,
3502 thread_index, &result);
3503 }
Dave Barach68b0fb02017-02-28 15:15:56 -05003504 }
3505
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003506 if (is_nolookup)
3507 tc =
3508 (transport_connection_t *) tcp_connection_get (vnet_buffer (b)->
3509 tcp.connection_index,
3510 thread_index);
3511
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003512 vnet_buffer (b)->tcp.seq_number = clib_net_to_host_u32 (tcp->seq_number);
3513 vnet_buffer (b)->tcp.ack_number = clib_net_to_host_u32 (tcp->ack_number);
3514 vnet_buffer (b)->tcp.data_offset = n_advance_bytes;
3515 vnet_buffer (b)->tcp.data_len = n_data_bytes;
Florin Coras3c514d52018-12-22 11:39:33 -08003516 vnet_buffer (b)->tcp.seq_end = vnet_buffer (b)->tcp.seq_number
3517 + n_data_bytes;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003518 vnet_buffer (b)->tcp.flags = 0;
3519
Florin Corasb5e55a22019-01-10 12:42:47 -08003520 *error = result ? TCP_ERROR_NONE + result : *error;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003521
3522 return tcp_get_connection_from_transport (tc);
3523}
3524
3525static inline void
3526tcp_input_dispatch_buffer (tcp_main_t * tm, tcp_connection_t * tc,
3527 vlib_buffer_t * b, u16 * next, u32 * error)
3528{
3529 tcp_header_t *tcp;
3530 u8 flags;
3531
3532 tcp = tcp_buffer_hdr (b);
3533 flags = tcp->flags & filter_flags;
3534 *next = tm->dispatch_table[tc->state][flags].next;
3535 *error = tm->dispatch_table[tc->state][flags].error;
Florin Corasedfe0ee2019-07-29 18:13:25 -07003536 tc->segs_in += 1;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003537
3538 if (PREDICT_FALSE (*error == TCP_ERROR_DISPATCH
3539 || *next == TCP_INPUT_NEXT_RESET))
3540 {
3541 /* Overload tcp flags to store state */
3542 tcp_state_t state = tc->state;
3543 vnet_buffer (b)->tcp.flags = tc->state;
3544
3545 if (*error == TCP_ERROR_DISPATCH)
Florin Corasa9d5bea2018-12-17 08:24:19 -08003546 clib_warning ("tcp conn %u disp error state %U flags %U",
3547 tc->c_c_index, format_tcp_state, state,
3548 format_tcp_flags, (int) flags);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003549 }
3550}
3551
3552always_inline uword
3553tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003554 vlib_frame_t * frame, int is_ip4, u8 is_nolookup)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003555{
3556 u32 n_left_from, *from, thread_index = vm->thread_index;
3557 tcp_main_t *tm = vnet_get_tcp_main ();
3558 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
3559 u16 nexts[VLIB_FRAME_SIZE], *next;
3560
Florin Corasbe72ae62018-11-01 11:23:03 -07003561 tcp_set_time_now (tcp_get_worker (thread_index));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003562
3563 from = vlib_frame_vector_args (frame);
3564 n_left_from = frame->n_vectors;
3565 vlib_get_buffers (vm, from, bufs, n_left_from);
3566
3567 b = bufs;
3568 next = nexts;
3569
3570 while (n_left_from >= 4)
3571 {
3572 u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER;
3573 tcp_connection_t *tc0, *tc1;
3574
3575 {
3576 vlib_prefetch_buffer_header (b[2], STORE);
3577 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3578
3579 vlib_prefetch_buffer_header (b[3], STORE);
3580 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3581 }
3582
3583 next[0] = next[1] = TCP_INPUT_NEXT_DROP;
3584
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003585 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
3586 is_nolookup);
3587 tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4,
3588 is_nolookup);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003589
3590 if (PREDICT_TRUE (!tc0 + !tc1 == 0))
3591 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003592 ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
3593 ASSERT (tcp_lookup_is_valid (tc1, b[1], tcp_buffer_hdr (b[1])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003594
3595 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3596 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3597
3598 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3599 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3600 }
3601 else
3602 {
3603 if (PREDICT_TRUE (tc0 != 0))
3604 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003605 ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003606 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3607 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3608 }
3609 else
3610 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3611
3612 if (PREDICT_TRUE (tc1 != 0))
3613 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003614 ASSERT (tcp_lookup_is_valid (tc1, b[1], tcp_buffer_hdr (b[1])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003615 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3616 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3617 }
3618 else
3619 tcp_input_set_error_next (tm, &next[1], &error1, is_ip4);
3620 }
3621
3622 b += 2;
3623 next += 2;
3624 n_left_from -= 2;
3625 }
3626 while (n_left_from > 0)
3627 {
3628 tcp_connection_t *tc0;
3629 u32 error0 = TCP_ERROR_NO_LISTENER;
3630
3631 if (n_left_from > 1)
3632 {
3633 vlib_prefetch_buffer_header (b[1], STORE);
3634 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3635 }
3636
3637 next[0] = TCP_INPUT_NEXT_DROP;
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003638 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
3639 is_nolookup);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003640 if (PREDICT_TRUE (tc0 != 0))
3641 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003642 ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003643 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3644 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3645 }
3646 else
3647 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3648
3649 b += 1;
3650 next += 1;
3651 n_left_from -= 1;
3652 }
3653
3654 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
3655 tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4);
3656
3657 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
3658 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05003659}
3660
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003661VLIB_NODE_FN (tcp4_input_nolookup_node) (vlib_main_t * vm,
3662 vlib_node_runtime_t * node,
3663 vlib_frame_t * from_frame)
3664{
3665 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
3666 1 /* is_nolookup */ );
3667}
3668
3669VLIB_NODE_FN (tcp6_input_nolookup_node) (vlib_main_t * vm,
3670 vlib_node_runtime_t * node,
3671 vlib_frame_t * from_frame)
3672{
3673 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3674 1 /* is_nolookup */ );
3675}
3676
3677/* *INDENT-OFF* */
3678VLIB_REGISTER_NODE (tcp4_input_nolookup_node) =
3679{
3680 .name = "tcp4-input-nolookup",
3681 /* Takes a vector of packets. */
3682 .vector_size = sizeof (u32),
3683 .n_errors = TCP_N_ERROR,
3684 .error_strings = tcp_error_strings,
3685 .n_next_nodes = TCP_INPUT_N_NEXT,
3686 .next_nodes =
3687 {
3688#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3689 foreach_tcp4_input_next
3690#undef _
3691 },
3692 .format_buffer = format_tcp_header,
3693 .format_trace = format_tcp_rx_trace,
3694};
3695/* *INDENT-ON* */
3696
3697/* *INDENT-OFF* */
3698VLIB_REGISTER_NODE (tcp6_input_nolookup_node) =
3699{
3700 .name = "tcp6-input-nolookup",
3701 /* Takes a vector of packets. */
3702 .vector_size = sizeof (u32),
3703 .n_errors = TCP_N_ERROR,
3704 .error_strings = tcp_error_strings,
3705 .n_next_nodes = TCP_INPUT_N_NEXT,
3706 .next_nodes =
3707 {
3708#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3709 foreach_tcp6_input_next
3710#undef _
3711 },
3712 .format_buffer = format_tcp_header,
3713 .format_trace = format_tcp_rx_trace,
3714};
3715/* *INDENT-ON* */
3716
Filip Tehlare275bed2019-03-06 00:06:56 -08003717VLIB_NODE_FN (tcp4_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3718 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003719{
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003720 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
3721 0 /* is_nolookup */ );
Dave Barach68b0fb02017-02-28 15:15:56 -05003722}
3723
Filip Tehlare275bed2019-03-06 00:06:56 -08003724VLIB_NODE_FN (tcp6_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3725 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003726{
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003727 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3728 0 /* is_nolookup */ );
Dave Barach68b0fb02017-02-28 15:15:56 -05003729}
3730
3731/* *INDENT-OFF* */
3732VLIB_REGISTER_NODE (tcp4_input_node) =
3733{
Dave Barach68b0fb02017-02-28 15:15:56 -05003734 .name = "tcp4-input",
3735 /* Takes a vector of packets. */
3736 .vector_size = sizeof (u32),
3737 .n_errors = TCP_N_ERROR,
3738 .error_strings = tcp_error_strings,
3739 .n_next_nodes = TCP_INPUT_N_NEXT,
3740 .next_nodes =
3741 {
3742#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3743 foreach_tcp4_input_next
3744#undef _
3745 },
3746 .format_buffer = format_tcp_header,
3747 .format_trace = format_tcp_rx_trace,
3748};
3749/* *INDENT-ON* */
3750
Dave Barach68b0fb02017-02-28 15:15:56 -05003751/* *INDENT-OFF* */
3752VLIB_REGISTER_NODE (tcp6_input_node) =
3753{
Dave Barach68b0fb02017-02-28 15:15:56 -05003754 .name = "tcp6-input",
3755 /* Takes a vector of packets. */
3756 .vector_size = sizeof (u32),
3757 .n_errors = TCP_N_ERROR,
3758 .error_strings = tcp_error_strings,
3759 .n_next_nodes = TCP_INPUT_N_NEXT,
3760 .next_nodes =
3761 {
3762#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3763 foreach_tcp6_input_next
3764#undef _
3765 },
3766 .format_buffer = format_tcp_header,
3767 .format_trace = format_tcp_rx_trace,
3768};
3769/* *INDENT-ON* */
3770
Filip Tehlare275bed2019-03-06 00:06:56 -08003771#ifndef CLIB_MARCH_VARIANT
Dave Barach68b0fb02017-02-28 15:15:56 -05003772static void
3773tcp_dispatch_table_init (tcp_main_t * tm)
3774{
3775 int i, j;
3776 for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3777 for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3778 {
3779 tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3780 tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3781 }
3782
3783#define _(t,f,n,e) \
3784do { \
3785 tm->dispatch_table[TCP_STATE_##t][f].next = (n); \
3786 tm->dispatch_table[TCP_STATE_##t][f].error = (e); \
3787} while (0)
3788
Florin Coras678a6572018-12-17 21:31:25 -08003789 /* RFC 793: In LISTEN if RST drop and if ACK return RST */
Florin Coras5c0f1662018-12-19 01:38:57 -08003790 _(LISTEN, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras678a6572018-12-17 21:31:25 -08003791 _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_ACK_INVALID);
3792 _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_INVALID_CONNECTION);
Dave Barach68b0fb02017-02-28 15:15:56 -05003793 _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003794 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3795 TCP_ERROR_ACK_INVALID);
3796 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3797 TCP_ERROR_SEGMENT_INVALID);
3798 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3799 TCP_ERROR_SEGMENT_INVALID);
3800 _(LISTEN, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3801 TCP_ERROR_INVALID_CONNECTION);
3802 _(LISTEN, TCP_FLAG_FIN, TCP_INPUT_NEXT_RESET, TCP_ERROR_SEGMENT_INVALID);
Dave Barach2c25a622017-06-26 11:35:07 -04003803 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
Florin Coras678a6572018-12-17 21:31:25 -08003804 TCP_ERROR_SEGMENT_INVALID);
3805 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3806 TCP_ERROR_SEGMENT_INVALID);
3807 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003808 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003809 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_DROP,
3810 TCP_ERROR_SEGMENT_INVALID);
3811 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3812 TCP_ERROR_SEGMENT_INVALID);
3813 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3814 TCP_ERROR_SEGMENT_INVALID);
3815 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3816 TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003817 /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3818 _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc28764f2017-04-26 00:08:42 -07003819 _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase8460c72018-09-24 14:40:40 -07003820 _(SYN_RCVD, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3821 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003822 _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003823 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3824 TCP_ERROR_NONE);
3825 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3826 TCP_ERROR_NONE);
3827 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3828 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3829 _(SYN_RCVD, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc01c4452018-09-20 18:36:54 -07003830 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3831 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003832 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3833 TCP_ERROR_NONE);
3834 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3835 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3836 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3837 TCP_ERROR_NONE);
3838 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3839 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3840 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3841 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3842 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3843 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3844 _(SYN_RCVD, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003845 /* SYN-ACK for a SYN */
3846 _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3847 TCP_ERROR_NONE);
3848 _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3849 _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3850 _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3851 TCP_ERROR_NONE);
Florin Coras222e1f412019-02-16 20:47:32 -08003852 _(SYN_SENT, TCP_FLAG_FIN, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3853 _(SYN_SENT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3854 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003855 /* ACK for for established connection -> tcp-established. */
3856 _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3857 /* FIN for for established connection -> tcp-established. */
3858 _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3859 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3860 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003861 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3862 TCP_ERROR_NONE);
3863 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3864 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3865 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED,
3866 TCP_ERROR_NONE);
3867 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3868 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3869 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3870 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3871 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3872 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasd79b41e2017-03-04 05:37:52 -08003873 _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003874 _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3875 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003876 _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003877 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3878 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003879 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3880 TCP_ERROR_NONE);
3881 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3882 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3883 _(ESTABLISHED, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003884 /* ACK or FIN-ACK to our FIN */
3885 _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3886 _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
3887 TCP_ERROR_NONE);
3888 /* FIN in reply to our FIN from the other side */
Florin Coras76bc1302018-12-23 23:36:36 -08003889 _(FIN_WAIT_1, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003890 _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08003891 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3892 TCP_ERROR_NONE);
3893 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3894 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3895 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3896 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3897 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3898 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3899 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3900 TCP_ERROR_NONE);
3901 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3902 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras5c0f1662018-12-19 01:38:57 -08003903 _(FIN_WAIT_1, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08003904 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3905 TCP_ERROR_NONE);
3906 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3907 TCP_ERROR_NONE);
3908 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3909 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003910 _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase96bf632018-12-18 22:44:27 -08003911 _(FIN_WAIT_1, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3912 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003913 _(CLOSING, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras56318932018-05-23 20:44:12 -07003914 _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08003915 _(CLOSING, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003916 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3917 TCP_ERROR_NONE);
3918 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3919 TCP_ERROR_NONE);
3920 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3921 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08003922 _(CLOSING, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3923 _(CLOSING, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3924 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003925 _(CLOSING, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras3c514d52018-12-22 11:39:33 -08003926 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3927 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003928 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3929 TCP_ERROR_NONE);
3930 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3931 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3932 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3933 TCP_ERROR_NONE);
3934 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3935 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras79c04d62019-08-11 19:49:05 -07003936 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3937 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003938 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3939 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003940 /* FIN confirming that the peer (app) has closed */
3941 _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasf6d68ed2017-05-07 19:12:02 -07003942 _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003943 _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3944 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003945 _(FIN_WAIT_2, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3946 _(FIN_WAIT_2, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3947 TCP_ERROR_NONE);
Florin Corasf03a59a2017-06-09 21:07:32 -07003948 _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3949 _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3950 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003951 _(CLOSE_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3952 _(CLOSE_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3953 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003954 _(LAST_ACK, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003955 _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003956 _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3957 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3958 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003959 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3960 TCP_ERROR_NONE);
3961 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3962 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3963 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3964 TCP_ERROR_NONE);
3965 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3966 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3967 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3968 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3969 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3970 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasdb84e572017-05-09 18:54:52 -07003971 _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003972 _(LAST_ACK, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3973 TCP_ERROR_NONE);
Florin Corasc01d5782018-10-17 14:53:11 -07003974 _(LAST_ACK, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003975 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3976 TCP_ERROR_NONE);
3977 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3978 TCP_ERROR_NONE);
3979 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3980 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003981 _(TIME_WAIT, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003982 _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3983 _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3984 TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003985 _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003986 _(TIME_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3987 TCP_ERROR_NONE);
Florin Coras50958952017-08-29 14:50:13 -07003988 _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003989 /* RFC793 CLOSED: An incoming segment containing a RST is discarded. An
3990 * incoming segment not containing a RST causes a RST to be sent in
3991 * response.*/
Florin Corasdc629cd2017-05-09 00:52:37 -07003992 _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08003993 _(CLOSED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003994 TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08003995 _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
3996 _(CLOSED, TCP_FLAG_SYN, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
3997 _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3998 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003999#undef _
4000}
4001
Florin Coras0dbd5172018-06-25 16:19:34 -07004002static clib_error_t *
Dave Barach68b0fb02017-02-28 15:15:56 -05004003tcp_input_init (vlib_main_t * vm)
4004{
4005 clib_error_t *error = 0;
4006 tcp_main_t *tm = vnet_get_tcp_main ();
4007
4008 if ((error = vlib_call_init_function (vm, tcp_init)))
4009 return error;
4010
4011 /* Initialize dispatch table. */
4012 tcp_dispatch_table_init (tm);
4013
4014 return error;
4015}
4016
4017VLIB_INIT_FUNCTION (tcp_input_init);
4018
Filip Tehlare275bed2019-03-06 00:06:56 -08004019#endif /* CLIB_MARCH_VARIANT */
4020
Dave Barach68b0fb02017-02-28 15:15:56 -05004021/*
4022 * fd.io coding-style-patch-verification: ON
4023 *
4024 * Local Variables:
4025 * eval: (c-set-style "gnu")
4026 * End:
4027 */