blob: e93e8bae273da680775f214bbd5985d3d88cb08a [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
Florin Coras6939d5e2020-02-10 23:22:34 +0000269static void
270tcp_handle_rst (tcp_connection_t * tc)
271{
272 switch (tc->rst_state)
273 {
274 case TCP_STATE_SYN_RCVD:
275 /* Cleanup everything. App wasn't notified yet */
276 session_transport_delete_notify (&tc->connection);
277 tcp_connection_cleanup (tc);
278 break;
279 case TCP_STATE_SYN_SENT:
280 session_stream_connect_notify (&tc->connection, 1 /* fail */ );
281 tcp_connection_cleanup (tc);
282 break;
283 case TCP_STATE_ESTABLISHED:
284 session_transport_reset_notify (&tc->connection);
285 session_transport_closed_notify (&tc->connection);
286 break;
287 case TCP_STATE_CLOSE_WAIT:
288 case TCP_STATE_FIN_WAIT_1:
289 case TCP_STATE_FIN_WAIT_2:
290 case TCP_STATE_CLOSING:
291 case TCP_STATE_LAST_ACK:
292 session_transport_closed_notify (&tc->connection);
293 break;
294 case TCP_STATE_CLOSED:
295 case TCP_STATE_TIME_WAIT:
296 break;
297 default:
298 TCP_DBG ("reset state: %u", tc->state);
299 }
300}
301
302static void
303tcp_program_reset_ntf (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
304{
305 if (!tcp_disconnect_pending (tc))
306 {
307 tc->rst_state = tc->state;
308 vec_add1 (wrk->pending_resets, tc->c_c_index);
309 tcp_disconnect_pending_on (tc);
310 }
311}
312
313/**
314 * Handle reset packet
315 *
316 * Programs disconnect/reset notification that should be sent
317 * later by calling @ref tcp_handle_disconnects
318 */
319static void
320tcp_rcv_rst (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
321{
322 TCP_EVT (TCP_EVT_RST_RCVD, tc);
323 switch (tc->state)
324 {
325 case TCP_STATE_SYN_RCVD:
326 tcp_program_reset_ntf (wrk, tc);
327 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
328 break;
329 case TCP_STATE_SYN_SENT:
Florin Coras96acc9b2020-02-18 22:51:26 +0000330 /* Do not program ntf because the connection is half-open */
331 tcp_handle_rst (tc);
Florin Coras6939d5e2020-02-10 23:22:34 +0000332 break;
333 case TCP_STATE_ESTABLISHED:
334 tcp_connection_timers_reset (tc);
Florin Coras6939d5e2020-02-10 23:22:34 +0000335 tcp_cong_recovery_off (tc);
336 tcp_program_reset_ntf (wrk, tc);
337 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
Florin Coras7a3a8662020-02-22 02:27:21 +0000338 tcp_program_cleanup (wrk, tc);
Florin Coras6939d5e2020-02-10 23:22:34 +0000339 break;
340 case TCP_STATE_CLOSE_WAIT:
341 case TCP_STATE_FIN_WAIT_1:
342 case TCP_STATE_FIN_WAIT_2:
343 case TCP_STATE_CLOSING:
344 case TCP_STATE_LAST_ACK:
345 tcp_connection_timers_reset (tc);
Florin Coras6939d5e2020-02-10 23:22:34 +0000346 tcp_cong_recovery_off (tc);
347 tcp_program_reset_ntf (wrk, tc);
348 /* Make sure we mark the session as closed. In some states we may
349 * be still trying to send data */
350 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
Florin Coras7a3a8662020-02-22 02:27:21 +0000351 tcp_program_cleanup (wrk, tc);
Florin Coras6939d5e2020-02-10 23:22:34 +0000352 break;
353 case TCP_STATE_CLOSED:
354 case TCP_STATE_TIME_WAIT:
355 break;
356 default:
357 TCP_DBG ("reset state: %u", tc->state);
358 }
359}
360
Florin Corasc28764f2017-04-26 00:08:42 -0700361/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500362 * Validate incoming segment as per RFC793 p. 69 and RFC1323 p. 19
363 *
364 * It first verifies if segment has a wrapped sequence number (PAWS) and then
365 * does the processing associated to the first four steps (ignoring security
366 * and precedence): sequence number, rst bit and syn bit checks.
367 *
368 * @return 0 if segments passes validation.
369 */
370static int
Florin Coras7ac053b2018-11-05 15:57:21 -0800371tcp_segment_validate (tcp_worker_ctx_t * wrk, tcp_connection_t * tc0,
372 vlib_buffer_t * b0, tcp_header_t * th0, u32 * error0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500373{
Florin Corasca1c8f32018-05-23 21:01:30 -0700374 /* We could get a burst of RSTs interleaved with acks */
375 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
376 {
377 tcp_send_reset (tc0);
378 *error0 = TCP_ERROR_CONNECTION_CLOSED;
Florin Coras7ac053b2018-11-05 15:57:21 -0800379 goto error;
Florin Corasca1c8f32018-05-23 21:01:30 -0700380 }
381
Dave Barach68b0fb02017-02-28 15:15:56 -0500382 if (PREDICT_FALSE (!tcp_ack (th0) && !tcp_rst (th0) && !tcp_syn (th0)))
Florin Coras00cd22d2018-04-18 13:20:18 -0700383 {
384 *error0 = TCP_ERROR_SEGMENT_INVALID;
Florin Coras7ac053b2018-11-05 15:57:21 -0800385 goto error;
Florin Coras00cd22d2018-04-18 13:20:18 -0700386 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500387
Florin Coras80231112018-12-05 15:59:31 -0800388 if (PREDICT_FALSE (tcp_options_parse (th0, &tc0->rcv_opts, 0)))
Florin Corasdb84e572017-05-09 18:54:52 -0700389 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700390 *error0 = TCP_ERROR_OPTIONS;
Florin Coras7ac053b2018-11-05 15:57:21 -0800391 goto error;
Florin Corasdb84e572017-05-09 18:54:52 -0700392 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500393
Florin Coras00cd22d2018-04-18 13:20:18 -0700394 if (PREDICT_FALSE (tcp_segment_check_paws (tc0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500395 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700396 *error0 = TCP_ERROR_PAWS;
Florin Corasa436a422019-08-20 07:09:31 -0700397 TCP_EVT (TCP_EVT_PAWS_FAIL, tc0, vnet_buffer (b0)->tcp.seq_number,
398 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500399
400 /* If it just so happens that a segment updates tsval_recent for a
401 * segment over 24 days old, invalidate tsval_recent. */
402 if (timestamp_lt (tc0->tsval_recent_age + TCP_PAWS_IDLE,
Florin Corasbe72ae62018-11-01 11:23:03 -0700403 tcp_time_now_w_thread (tc0->c_thread_index)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500404 {
Florin Corasea41aac2018-12-06 17:24:59 -0800405 tc0->tsval_recent = tc0->rcv_opts.tsval;
Florin Coras91236ce2018-12-16 11:41:45 -0800406 clib_warning ("paws failed: 24-day old segment");
Dave Barach68b0fb02017-02-28 15:15:56 -0500407 }
Florin Coras91236ce2018-12-16 11:41:45 -0800408 /* Drop after ack if not rst. Resets can fail paws check as per
409 * RFC 7323 sec. 5.2: When an <RST> segment is received, it MUST NOT
410 * be subjected to the PAWS check by verifying an acceptable value in
411 * SEG.TSval */
412 else if (!tcp_rst (th0))
Dave Barach68b0fb02017-02-28 15:15:56 -0500413 {
Florin Coras26dd6de2019-07-23 23:54:47 -0700414 tcp_program_ack (tc0);
Florin Corasa436a422019-08-20 07:09:31 -0700415 TCP_EVT (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
Florin Coras91236ce2018-12-16 11:41:45 -0800416 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500417 }
418 }
419
420 /* 1st: check sequence number */
421 if (!tcp_segment_in_rcv_wnd (tc0, vnet_buffer (b0)->tcp.seq_number,
422 vnet_buffer (b0)->tcp.seq_end))
423 {
Florin Coras830fe732019-02-15 18:20:58 -0800424 /* SYN/SYN-ACK retransmit */
425 if (tcp_syn (th0)
426 && vnet_buffer (b0)->tcp.seq_number == tc0->rcv_nxt - 1)
427 {
428 tcp_options_parse (th0, &tc0->rcv_opts, 1);
429 if (tc0->state == TCP_STATE_SYN_RCVD)
430 {
431 tcp_send_synack (tc0);
Florin Corasa436a422019-08-20 07:09:31 -0700432 TCP_EVT (TCP_EVT_SYN_RCVD, tc0, 0);
Florin Coras830fe732019-02-15 18:20:58 -0800433 *error0 = TCP_ERROR_SYNS_RCVD;
434 }
435 else
436 {
Florin Coras26dd6de2019-07-23 23:54:47 -0700437 tcp_program_ack (tc0);
Florin Corasa436a422019-08-20 07:09:31 -0700438 TCP_EVT (TCP_EVT_SYNACK_RCVD, tc0);
Florin Coras830fe732019-02-15 18:20:58 -0800439 *error0 = TCP_ERROR_SYN_ACKS_RCVD;
440 }
441 goto error;
442 }
443
Florin Coras6792ec02017-03-13 03:49:51 -0700444 /* If our window is 0 and the packet is in sequence, let it pass
Florin Coras00cd22d2018-04-18 13:20:18 -0700445 * through for ack processing. It should be dropped later. */
Florin Coras7e74bf32019-03-06 16:51:58 -0800446 if (tc0->rcv_wnd < tc0->snd_mss
Florin Coras222e1f412019-02-16 20:47:32 -0800447 && tc0->rcv_nxt == vnet_buffer (b0)->tcp.seq_number)
448 goto check_reset;
449
450 /* If we entered recovery and peer did so as well, there's a chance that
451 * dup acks won't be acceptable on either end because seq_end may be less
452 * than rcv_las. This can happen if acks are lost in both directions. */
453 if (tcp_in_recovery (tc0)
454 && seq_geq (vnet_buffer (b0)->tcp.seq_number,
455 tc0->rcv_las - tc0->rcv_wnd)
456 && seq_leq (vnet_buffer (b0)->tcp.seq_end,
457 tc0->rcv_nxt + tc0->rcv_wnd))
458 goto check_reset;
459
460 *error0 = TCP_ERROR_RCV_WND;
461
Florin Corasa495a3e2019-08-29 18:33:24 -0700462 /* If we advertised a zero rcv_wnd and the segment is in the past or the
463 * next one that we expect, it is probably a window probe */
464 if ((tc0->flags & TCP_CONN_ZERO_RWND_SENT)
465 && seq_lt (vnet_buffer (b0)->tcp.seq_end,
466 tc0->rcv_las + tc0->rcv_opts.mss))
467 *error0 = TCP_ERROR_ZERO_RWND;
468
Florin Corasedfe0ee2019-07-29 18:13:25 -0700469 tc0->errors.below_data_wnd += seq_lt (vnet_buffer (b0)->tcp.seq_end,
470 tc0->rcv_las);
471
Florin Coras222e1f412019-02-16 20:47:32 -0800472 /* If not RST, send dup ack */
473 if (!tcp_rst (th0))
Florin Coras6792ec02017-03-13 03:49:51 -0700474 {
Florin Coras26dd6de2019-07-23 23:54:47 -0700475 tcp_program_dupack (tc0);
Florin Corasa436a422019-08-20 07:09:31 -0700476 TCP_EVT (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
Florin Coras6792ec02017-03-13 03:49:51 -0700477 }
Florin Coras222e1f412019-02-16 20:47:32 -0800478 goto error;
479
480 check_reset:
481 ;
Dave Barach68b0fb02017-02-28 15:15:56 -0500482 }
483
484 /* 2nd: check the RST bit */
Florin Coras00cd22d2018-04-18 13:20:18 -0700485 if (PREDICT_FALSE (tcp_rst (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500486 {
Florin Coras6939d5e2020-02-10 23:22:34 +0000487 tcp_rcv_rst (wrk, tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -0700488 *error0 = TCP_ERROR_RST_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -0800489 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500490 }
491
492 /* 3rd: check security and precedence (skip) */
493
Florin Coras830fe732019-02-15 18:20:58 -0800494 /* 4th: check the SYN bit (in window) */
Florin Coras00cd22d2018-04-18 13:20:18 -0700495 if (PREDICT_FALSE (tcp_syn (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500496 {
Florin Corasd567a8d2019-06-07 12:38:55 -0700497 /* As per RFC5961 send challenge ack instead of reset */
Florin Coras26dd6de2019-07-23 23:54:47 -0700498 tcp_program_ack (tc0);
Florin Coras830fe732019-02-15 18:20:58 -0800499 *error0 = TCP_ERROR_SPURIOUS_SYN;
Florin Coras00cd22d2018-04-18 13:20:18 -0700500 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500501 }
502
Florin Corasc28764f2017-04-26 00:08:42 -0700503 /* If segment in window, save timestamp */
504 tcp_update_timestamp (tc0, vnet_buffer (b0)->tcp.seq_number,
505 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500506 return 0;
Florin Coras00cd22d2018-04-18 13:20:18 -0700507
Florin Coras00cd22d2018-04-18 13:20:18 -0700508error:
Florin Coras00cd22d2018-04-18 13:20:18 -0700509 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500510}
511
512always_inline int
Florin Corasf65074e2019-03-31 17:17:11 -0700513tcp_rcv_ack_no_cc (tcp_connection_t * tc, vlib_buffer_t * b, u32 * error)
Dave Barach68b0fb02017-02-28 15:15:56 -0500514{
515 /* SND.UNA =< SEG.ACK =< SND.NXT */
Florin Corasf65074e2019-03-31 17:17:11 -0700516 if (!(seq_leq (tc->snd_una, vnet_buffer (b)->tcp.ack_number)
517 && seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
518 {
Florin Coras282a3cb2019-04-02 21:43:38 -0700519 if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)
520 && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
Florin Corasf65074e2019-03-31 17:17:11 -0700521 {
522 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
523 goto acceptable;
524 }
525 *error = TCP_ERROR_ACK_INVALID;
526 return -1;
527 }
528
529acceptable:
530 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
531 tc->snd_una = vnet_buffer (b)->tcp.ack_number;
532 *error = TCP_ERROR_ACK_OK;
533 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500534}
535
536/**
537 * Compute smoothed RTT as per VJ's '88 SIGCOMM and RFC6298
538 *
539 * Note that although the original article, srtt and rttvar are scaled
540 * to minimize round-off errors, here we don't. Instead, we rely on
541 * better precision time measurements.
542 *
543 * TODO support us rtt resolution
544 */
545static void
546tcp_estimate_rtt (tcp_connection_t * tc, u32 mrtt)
547{
Florin Corasf03a59a2017-06-09 21:07:32 -0700548 int err, diff;
Dave Barach68b0fb02017-02-28 15:15:56 -0500549
550 if (tc->srtt != 0)
551 {
552 err = mrtt - tc->srtt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500553
554 /* XXX Drop in RTT results in RTTVAR increase and bigger RTO.
555 * The increase should be bound */
Florin Corasf03a59a2017-06-09 21:07:32 -0700556 tc->srtt = clib_max ((int) tc->srtt + (err >> 3), 1);
557 diff = (clib_abs (err) - (int) tc->rttvar) >> 2;
558 tc->rttvar = clib_max ((int) tc->rttvar + diff, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500559 }
560 else
561 {
562 /* First measurement. */
563 tc->srtt = mrtt;
Florin Coras6792ec02017-03-13 03:49:51 -0700564 tc->rttvar = mrtt >> 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500565 }
566}
567
Filip Tehlare275bed2019-03-06 00:06:56 -0800568#ifndef CLIB_MARCH_VARIANT
Florin Coras93992a92017-05-24 18:03:56 -0700569void
570tcp_update_rto (tcp_connection_t * tc)
571{
572 tc->rto = clib_min (tc->srtt + (tc->rttvar << 2), TCP_RTO_MAX);
Florin Corasf03a59a2017-06-09 21:07:32 -0700573 tc->rto = clib_max (tc->rto, TCP_RTO_MIN);
Florin Coras93992a92017-05-24 18:03:56 -0700574}
Filip Tehlare275bed2019-03-06 00:06:56 -0800575#endif /* CLIB_MARCH_VARIANT */
Florin Coras93992a92017-05-24 18:03:56 -0700576
Florin Corasf1762d62017-09-24 19:43:08 -0400577/**
578 * Update RTT estimate and RTO timer
Dave Barach68b0fb02017-02-28 15:15:56 -0500579 *
580 * Measure RTT: We have two sources of RTT measurements: TSOPT and ACK
581 * timing. Middle boxes are known to fiddle with TCP options so we
582 * should give higher priority to ACK timing.
583 *
Florin Corasf1762d62017-09-24 19:43:08 -0400584 * This should be called only if previously sent bytes have been acked.
585 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500586 * return 1 if valid rtt 0 otherwise
587 */
588static int
Florin Coras1dbda642019-09-11 13:42:57 -0700589tcp_update_rtt (tcp_connection_t * tc, tcp_rate_sample_t * rs, u32 ack)
Dave Barach68b0fb02017-02-28 15:15:56 -0500590{
591 u32 mrtt = 0;
592
593 /* Karn's rule, part 1. Don't use retransmitted segments to estimate
594 * RTT because they're ambiguous. */
Florin Coras1dbda642019-09-11 13:42:57 -0700595 if (tcp_in_cong_recovery (tc))
Florin Coras3ec66b02018-08-23 16:27:05 -0700596 {
Florin Coras1dbda642019-09-11 13:42:57 -0700597 /* Accept rtt estimates for samples that have not been retransmitted */
Florin Corasbbcfaac2019-10-10 13:52:04 -0700598 if ((tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
599 && !(rs->flags & TCP_BTS_IS_RXT))
Florin Coras1dbda642019-09-11 13:42:57 -0700600 {
601 mrtt = rs->rtt_time * THZ;
602 goto estimate_rtt;
603 }
Florin Coras3ec66b02018-08-23 16:27:05 -0700604 goto done;
605 }
Florin Corasf1762d62017-09-24 19:43:08 -0400606
607 if (tc->rtt_ts && seq_geq (ack, tc->rtt_seq))
Dave Barach68b0fb02017-02-28 15:15:56 -0500608 {
Florin Corasefefc6b2018-11-07 12:49:19 -0800609 f64 sample = tcp_time_now_us (tc->c_thread_index) - tc->rtt_ts;
610 tc->mrtt_us = tc->mrtt_us + (sample - tc->mrtt_us) * 0.125;
611 mrtt = clib_max ((u32) (sample * THZ), 1);
612 /* Allow measuring of a new RTT */
613 tc->rtt_ts = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500614 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500615 /* As per RFC7323 TSecr can be used for RTTM only if the segment advances
616 * snd_una, i.e., the left side of the send window:
Florin Corasf1762d62017-09-24 19:43:08 -0400617 * seq_lt (tc->snd_una, ack). This is a condition for calling update_rtt */
618 else if (tcp_opts_tstamp (&tc->rcv_opts) && tc->rcv_opts.tsecr)
Dave Barach68b0fb02017-02-28 15:15:56 -0500619 {
Vladimir Kropylev1cfcb782019-07-02 11:25:26 +0300620 u32 now = tcp_tstamp (tc);
Florin Corasbe72ae62018-11-01 11:23:03 -0700621 mrtt = clib_max (now - tc->rcv_opts.tsecr, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500622 }
623
Florin Coras1dbda642019-09-11 13:42:57 -0700624estimate_rtt:
625
Florin Corasf1762d62017-09-24 19:43:08 -0400626 /* Ignore dubious measurements */
627 if (mrtt == 0 || mrtt > TCP_RTT_MAX)
628 goto done;
629
630 tcp_estimate_rtt (tc, mrtt);
631
632done:
633
Florin Corasf1762d62017-09-24 19:43:08 -0400634 /* If we got here something must've been ACKed so make sure boff is 0,
Florin Coras3ec66b02018-08-23 16:27:05 -0700635 * even if mrtt is not valid since we update the rto lower */
Florin Corasf1762d62017-09-24 19:43:08 -0400636 tc->rto_boff = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700637 tcp_update_rto (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500638
Florin Coras3af90fc2017-05-03 21:09:42 -0700639 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500640}
641
Florin Corasefefc6b2018-11-07 12:49:19 -0800642static void
643tcp_estimate_initial_rtt (tcp_connection_t * tc)
644{
645 u8 thread_index = vlib_num_workers ()? 1 : 0;
646 int mrtt;
647
648 if (tc->rtt_ts)
649 {
650 tc->mrtt_us = tcp_time_now_us (thread_index) - tc->rtt_ts;
Florin Coras222e1f412019-02-16 20:47:32 -0800651 tc->mrtt_us = clib_max (tc->mrtt_us, 0.0001);
Florin Corasefefc6b2018-11-07 12:49:19 -0800652 mrtt = clib_max ((u32) (tc->mrtt_us * THZ), 1);
653 tc->rtt_ts = 0;
654 }
655 else
656 {
657 mrtt = tcp_time_now_w_thread (thread_index) - tc->rcv_opts.tsecr;
Florin Coras4af830c2018-12-04 09:21:36 -0800658 mrtt = clib_max (mrtt, 1);
Florin Coras222e1f412019-02-16 20:47:32 -0800659 /* Due to retransmits we don't know the initial mrtt */
660 if (tc->rto_boff && mrtt > 1 * THZ)
661 mrtt = 1 * THZ;
Florin Corasefefc6b2018-11-07 12:49:19 -0800662 tc->mrtt_us = (f64) mrtt *TCP_TICK;
Florin Corasefefc6b2018-11-07 12:49:19 -0800663 }
664
665 if (mrtt > 0 && mrtt < TCP_RTT_MAX)
666 tcp_estimate_rtt (tc, mrtt);
Florin Coras54ddf432018-12-21 13:54:09 -0800667 tcp_update_rto (tc);
Florin Corasefefc6b2018-11-07 12:49:19 -0800668}
669
Dave Barach68b0fb02017-02-28 15:15:56 -0500670/**
Florin Coras9ece3c02018-11-05 11:06:53 -0800671 * Dequeue bytes for connections that have received acks in last burst
Dave Barach68b0fb02017-02-28 15:15:56 -0500672 */
673static void
Florin Coras9ece3c02018-11-05 11:06:53 -0800674tcp_handle_postponed_dequeues (tcp_worker_ctx_t * wrk)
Dave Barach68b0fb02017-02-28 15:15:56 -0500675{
Florin Coras9ece3c02018-11-05 11:06:53 -0800676 u32 thread_index = wrk->vm->thread_index;
677 u32 *pending_deq_acked;
678 tcp_connection_t *tc;
679 int i;
Florin Coras93992a92017-05-24 18:03:56 -0700680
Florin Coras9ece3c02018-11-05 11:06:53 -0800681 if (!vec_len (wrk->pending_deq_acked))
682 return;
Dave Barach68b0fb02017-02-28 15:15:56 -0500683
Florin Coras9ece3c02018-11-05 11:06:53 -0800684 pending_deq_acked = wrk->pending_deq_acked;
685 for (i = 0; i < vec_len (pending_deq_acked); i++)
686 {
687 tc = tcp_connection_get (pending_deq_acked[i], thread_index);
688 tc->flags &= ~TCP_CONN_DEQ_PENDING;
Florin Coras93992a92017-05-24 18:03:56 -0700689
Florin Coras11e9e352019-11-13 19:09:47 -0800690 if (PREDICT_FALSE (!tc->burst_acked))
691 continue;
692
693 /* Dequeue the newly ACKed bytes */
694 session_tx_fifo_dequeue_drop (&tc->connection, tc->burst_acked);
695 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
696
697 if (PREDICT_FALSE (tc->flags & TCP_CONN_PSH_PENDING))
Florin Coras42ceddb2018-12-12 10:56:01 -0800698 {
Florin Coras11e9e352019-11-13 19:09:47 -0800699 if (seq_leq (tc->psh_seq, tc->snd_una))
700 tc->flags &= ~TCP_CONN_PSH_PENDING;
Florin Coras42ceddb2018-12-12 10:56:01 -0800701 }
702
Florin Coras11e9e352019-11-13 19:09:47 -0800703 /* If everything has been acked, stop retransmit timer
704 * otherwise update. */
705 tcp_retransmit_timer_update (tc);
Florin Corasb3dce892019-10-30 09:22:14 -0700706
Florin Coras11e9e352019-11-13 19:09:47 -0800707 /* Update pacer based on our new cwnd estimate */
708 tcp_connection_tx_pacer_update (tc);
709
Florin Corasb3dce892019-10-30 09:22:14 -0700710 tc->burst_acked = 0;
Florin Coras9ece3c02018-11-05 11:06:53 -0800711 }
712 _vec_len (wrk->pending_deq_acked) = 0;
713}
714
715static void
716tcp_program_dequeue (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
717{
718 if (!(tc->flags & TCP_CONN_DEQ_PENDING))
719 {
720 vec_add1 (wrk->pending_deq_acked, tc->c_c_index);
721 tc->flags |= TCP_CONN_DEQ_PENDING;
722 }
Florin Coras558e3e02019-09-06 12:56:58 -0700723 tc->burst_acked += tc->bytes_acked;
Dave Barach68b0fb02017-02-28 15:15:56 -0500724}
725
Filip Tehlare275bed2019-03-06 00:06:56 -0800726#ifndef CLIB_MARCH_VARIANT
Florin Coras0dbd5172018-06-25 16:19:34 -0700727static u32
728scoreboard_hole_index (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
729{
730 ASSERT (!pool_is_free_index (sb->holes, hole - sb->holes));
731 return hole - sb->holes;
732}
733
734static u32
735scoreboard_hole_bytes (sack_scoreboard_hole_t * hole)
736{
737 return hole->end - hole->start;
738}
739
740sack_scoreboard_hole_t *
741scoreboard_get_hole (sack_scoreboard_t * sb, u32 index)
742{
743 if (index != TCP_INVALID_SACK_HOLE_INDEX)
744 return pool_elt_at_index (sb->holes, index);
745 return 0;
746}
747
748sack_scoreboard_hole_t *
749scoreboard_next_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
750{
751 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
752 return pool_elt_at_index (sb->holes, hole->next);
753 return 0;
754}
755
756sack_scoreboard_hole_t *
757scoreboard_prev_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
758{
759 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
760 return pool_elt_at_index (sb->holes, hole->prev);
761 return 0;
762}
763
764sack_scoreboard_hole_t *
765scoreboard_first_hole (sack_scoreboard_t * sb)
766{
767 if (sb->head != TCP_INVALID_SACK_HOLE_INDEX)
768 return pool_elt_at_index (sb->holes, sb->head);
769 return 0;
770}
771
772sack_scoreboard_hole_t *
773scoreboard_last_hole (sack_scoreboard_t * sb)
774{
775 if (sb->tail != TCP_INVALID_SACK_HOLE_INDEX)
776 return pool_elt_at_index (sb->holes, sb->tail);
777 return 0;
778}
779
780static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500781scoreboard_remove_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
782{
783 sack_scoreboard_hole_t *next, *prev;
784
785 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
786 {
787 next = pool_elt_at_index (sb->holes, hole->next);
788 next->prev = hole->prev;
789 }
Florin Coras93992a92017-05-24 18:03:56 -0700790 else
791 {
792 sb->tail = hole->prev;
793 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500794
795 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
796 {
797 prev = pool_elt_at_index (sb->holes, hole->prev);
798 prev->next = hole->next;
799 }
800 else
801 {
802 sb->head = hole->next;
803 }
804
Florin Coras93992a92017-05-24 18:03:56 -0700805 if (scoreboard_hole_index (sb, hole) == sb->cur_rxt_hole)
806 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
807
Florin Coras3eb50622017-07-13 01:24:57 -0400808 /* Poison the entry */
809 if (CLIB_DEBUG > 0)
Dave Barachb7b92992018-10-17 10:38:51 -0400810 clib_memset (hole, 0xfe, sizeof (*hole));
Florin Coras3eb50622017-07-13 01:24:57 -0400811
Dave Barach68b0fb02017-02-28 15:15:56 -0500812 pool_put (sb->holes, hole);
813}
814
Florin Coras0dbd5172018-06-25 16:19:34 -0700815static sack_scoreboard_hole_t *
Florin Coras6792ec02017-03-13 03:49:51 -0700816scoreboard_insert_hole (sack_scoreboard_t * sb, u32 prev_index,
Dave Barach68b0fb02017-02-28 15:15:56 -0500817 u32 start, u32 end)
818{
Florin Coras6792ec02017-03-13 03:49:51 -0700819 sack_scoreboard_hole_t *hole, *next, *prev;
Dave Barach68b0fb02017-02-28 15:15:56 -0500820 u32 hole_index;
821
822 pool_get (sb->holes, hole);
Dave Barachb7b92992018-10-17 10:38:51 -0400823 clib_memset (hole, 0, sizeof (*hole));
Dave Barach68b0fb02017-02-28 15:15:56 -0500824
825 hole->start = start;
826 hole->end = end;
Florin Coras3eb50622017-07-13 01:24:57 -0400827 hole_index = scoreboard_hole_index (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500828
Florin Coras6792ec02017-03-13 03:49:51 -0700829 prev = scoreboard_get_hole (sb, prev_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500830 if (prev)
831 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700832 hole->prev = prev_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500833 hole->next = prev->next;
834
835 if ((next = scoreboard_next_hole (sb, hole)))
836 next->prev = hole_index;
Florin Corasf03a59a2017-06-09 21:07:32 -0700837 else
838 sb->tail = hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500839
840 prev->next = hole_index;
841 }
842 else
843 {
844 sb->head = hole_index;
845 hole->prev = TCP_INVALID_SACK_HOLE_INDEX;
846 hole->next = TCP_INVALID_SACK_HOLE_INDEX;
847 }
848
849 return hole;
850}
851
Florin Coras36ebcff2019-09-12 18:36:44 -0700852always_inline void
853scoreboard_update_sacked_rxt (sack_scoreboard_t * sb, u32 start, u32 end,
854 u8 has_rxt)
855{
856 if (!has_rxt || seq_geq (start, sb->high_rxt))
857 return;
858
859 sb->rxt_sacked +=
860 seq_lt (end, sb->high_rxt) ? (end - start) : (sb->high_rxt - start);
861}
Florin Coras558e3e02019-09-06 12:56:58 -0700862
863always_inline void
864scoreboard_update_bytes (sack_scoreboard_t * sb, u32 ack, u32 snd_mss)
Florin Coras93992a92017-05-24 18:03:56 -0700865{
Florin Corasecbd20b2018-10-17 23:34:54 -0700866 sack_scoreboard_hole_t *left, *right;
Florin Coras558e3e02019-09-06 12:56:58 -0700867 u32 sacked = 0, blks = 0, old_sacked;
868
869 old_sacked = sb->sacked_bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700870
Florin Corasb3f58e12019-07-05 18:31:54 -0700871 sb->last_lost_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700872 sb->lost_bytes = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700873 sb->sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700874
Florin Coras558e3e02019-09-06 12:56:58 -0700875 right = scoreboard_last_hole (sb);
876 if (!right)
Florin Coras93992a92017-05-24 18:03:56 -0700877 {
Florin Coras558e3e02019-09-06 12:56:58 -0700878 sb->sacked_bytes = sb->high_sacked - ack;
Florin Coras479f7fe2020-01-08 00:33:02 +0000879 sb->last_sacked_bytes = sb->sacked_bytes
880 - (old_sacked - sb->last_bytes_delivered);
Florin Coras558e3e02019-09-06 12:56:58 -0700881 return;
882 }
883
884 if (seq_gt (sb->high_sacked, right->end))
885 {
886 sacked = sb->high_sacked - right->end;
Florin Coras93992a92017-05-24 18:03:56 -0700887 blks = 1;
888 }
889
Florin Coras558e3e02019-09-06 12:56:58 -0700890 while (sacked < (TCP_DUPACK_THRESHOLD - 1) * snd_mss
891 && blks < TCP_DUPACK_THRESHOLD)
Florin Coras93992a92017-05-24 18:03:56 -0700892 {
Florin Coras558e3e02019-09-06 12:56:58 -0700893 if (right->is_lost)
894 sb->lost_bytes += scoreboard_hole_bytes (right);
Florin Coras93992a92017-05-24 18:03:56 -0700895
Florin Coras558e3e02019-09-06 12:56:58 -0700896 left = scoreboard_prev_hole (sb, right);
897 if (!left)
Florin Coras9f9e9692018-10-19 17:49:00 -0700898 {
Florin Coras558e3e02019-09-06 12:56:58 -0700899 ASSERT (right->start == ack || sb->is_reneging);
900 sacked += right->start - ack;
901 right = 0;
902 break;
Florin Coras9f9e9692018-10-19 17:49:00 -0700903 }
Florin Coras558e3e02019-09-06 12:56:58 -0700904
905 sacked += right->start - left->end;
906 blks++;
907 right = left;
Florin Coras93992a92017-05-24 18:03:56 -0700908 }
Florin Coras9f9e9692018-10-19 17:49:00 -0700909
Florin Coras558e3e02019-09-06 12:56:58 -0700910 /* right is first lost */
911 while (right)
912 {
913 sb->lost_bytes += scoreboard_hole_bytes (right);
Florin Coras36ebcff2019-09-12 18:36:44 -0700914 sb->last_lost_bytes += right->is_lost ? 0 : (right->end - right->start);
Florin Coras558e3e02019-09-06 12:56:58 -0700915 right->is_lost = 1;
916 left = scoreboard_prev_hole (sb, right);
917 if (!left)
918 {
919 ASSERT (right->start == ack || sb->is_reneging);
920 sacked += right->start - ack;
921 break;
922 }
923 sacked += right->start - left->end;
924 right = left;
925 }
926
927 sb->sacked_bytes = sacked;
928 sb->last_sacked_bytes = sacked - (old_sacked - sb->last_bytes_delivered);
Florin Coras93992a92017-05-24 18:03:56 -0700929}
930
931/**
932 * Figure out the next hole to retransmit
933 *
934 * Follows logic proposed in RFC6675 Sec. 4, NextSeg()
935 */
936sack_scoreboard_hole_t *
937scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
938 sack_scoreboard_hole_t * start,
Florin Coras36ee9f12018-11-02 12:52:10 -0700939 u8 have_unsent, u8 * can_rescue, u8 * snd_limited)
Florin Coras93992a92017-05-24 18:03:56 -0700940{
941 sack_scoreboard_hole_t *hole = 0;
942
943 hole = start ? start : scoreboard_first_hole (sb);
944 while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost)
945 hole = scoreboard_next_hole (sb, hole);
946
947 /* Nothing, return */
948 if (!hole)
949 {
950 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
951 return 0;
952 }
953
954 /* Rule (1): if higher than rxt, less than high_sacked and lost */
955 if (hole->is_lost && seq_lt (hole->start, sb->high_sacked))
956 {
957 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
958 }
959 else
960 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700961 /* Rule (2): available unsent data */
962 if (have_unsent)
Florin Coras93992a92017-05-24 18:03:56 -0700963 {
Florin Coras93992a92017-05-24 18:03:56 -0700964 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
Florin Coras36ee9f12018-11-02 12:52:10 -0700965 return 0;
Florin Coras93992a92017-05-24 18:03:56 -0700966 }
967 /* Rule (3): if hole not lost */
968 else if (seq_lt (hole->start, sb->high_sacked))
969 {
Florin Coras81cb8e42019-10-22 19:44:45 -0700970 /* And we didn't already retransmit it */
971 if (seq_leq (hole->end, sb->high_rxt))
972 {
973 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
974 return 0;
975 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700976 *snd_limited = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700977 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
978 }
979 /* Rule (4): if hole beyond high_sacked */
980 else
981 {
982 ASSERT (seq_geq (hole->start, sb->high_sacked));
983 *snd_limited = 1;
984 *can_rescue = 1;
985 /* HighRxt MUST NOT be updated */
986 return 0;
987 }
988 }
989
990 if (hole && seq_lt (sb->high_rxt, hole->start))
991 sb->high_rxt = hole->start;
992
993 return hole;
994}
995
Florin Coras36ebcff2019-09-12 18:36:44 -0700996void
Florin Corasbe237bf2019-09-27 08:16:40 -0700997scoreboard_init_rxt (sack_scoreboard_t * sb, u32 snd_una)
Florin Coras93992a92017-05-24 18:03:56 -0700998{
999 sack_scoreboard_hole_t *hole;
1000 hole = scoreboard_first_hole (sb);
Florin Coras3eb50622017-07-13 01:24:57 -04001001 if (hole)
1002 {
Florin Coras36ee9f12018-11-02 12:52:10 -07001003 snd_una = seq_gt (snd_una, hole->start) ? snd_una : hole->start;
Florin Coras3eb50622017-07-13 01:24:57 -04001004 sb->cur_rxt_hole = sb->head;
1005 }
Florin Coras36ee9f12018-11-02 12:52:10 -07001006 sb->high_rxt = snd_una;
1007 sb->rescue_rxt = snd_una - 1;
Florin Coras3eb50622017-07-13 01:24:57 -04001008}
1009
Florin Coras0dbd5172018-06-25 16:19:34 -07001010void
1011scoreboard_init (sack_scoreboard_t * sb)
1012{
1013 sb->head = TCP_INVALID_SACK_HOLE_INDEX;
1014 sb->tail = TCP_INVALID_SACK_HOLE_INDEX;
1015 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
1016}
1017
1018void
1019scoreboard_clear (sack_scoreboard_t * sb)
1020{
1021 sack_scoreboard_hole_t *hole;
1022 while ((hole = scoreboard_first_hole (sb)))
1023 {
1024 scoreboard_remove_hole (sb, hole);
1025 }
1026 ASSERT (sb->head == sb->tail && sb->head == TCP_INVALID_SACK_HOLE_INDEX);
1027 ASSERT (pool_elts (sb->holes) == 0);
1028 sb->sacked_bytes = 0;
1029 sb->last_sacked_bytes = 0;
1030 sb->last_bytes_delivered = 0;
Florin Coras0dbd5172018-06-25 16:19:34 -07001031 sb->lost_bytes = 0;
Florin Corasb3f58e12019-07-05 18:31:54 -07001032 sb->last_lost_bytes = 0;
Florin Coras0dbd5172018-06-25 16:19:34 -07001033 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
Florin Coras558e3e02019-09-06 12:56:58 -07001034 sb->is_reneging = 0;
Florin Coras0dbd5172018-06-25 16:19:34 -07001035}
Florin Coras36ebcff2019-09-12 18:36:44 -07001036
1037void
1038scoreboard_clear_reneging (sack_scoreboard_t * sb, u32 start, u32 end)
1039{
1040 sack_scoreboard_hole_t *last_hole;
1041
1042 clib_warning ("sack reneging");
1043
1044 scoreboard_clear (sb);
1045 last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
1046 start, end);
1047 last_hole->is_lost = 1;
1048 sb->tail = scoreboard_hole_index (sb, last_hole);
1049 sb->high_sacked = start;
Florin Corasbe237bf2019-09-27 08:16:40 -07001050 scoreboard_init_rxt (sb, start);
Florin Coras36ebcff2019-09-12 18:36:44 -07001051}
1052
Filip Tehlare275bed2019-03-06 00:06:56 -08001053#endif /* CLIB_MARCH_VARIANT */
Florin Coras0dbd5172018-06-25 16:19:34 -07001054
Florin Coras3eb50622017-07-13 01:24:57 -04001055/**
1056 * Test that scoreboard is sane after recovery
1057 *
1058 * Returns 1 if scoreboard is empty or if first hole beyond
1059 * snd_una.
1060 */
Florin Coras0dbd5172018-06-25 16:19:34 -07001061static u8
Florin Coras3eb50622017-07-13 01:24:57 -04001062tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc)
1063{
1064 sack_scoreboard_hole_t *hole;
1065 hole = scoreboard_first_hole (&tc->sack_sb);
Florin Corasecbd20b2018-10-17 23:34:54 -07001066 return (!hole || (seq_geq (hole->start, tc->snd_una)
Florin Coras47596832019-03-12 18:58:54 -07001067 && seq_lt (hole->end, tc->snd_nxt)));
Florin Coras93992a92017-05-24 18:03:56 -07001068}
1069
Filip Tehlare275bed2019-03-06 00:06:56 -08001070#ifndef CLIB_MARCH_VARIANT
Florin Corasb3f58e12019-07-05 18:31:54 -07001071
Florin Coras93992a92017-05-24 18:03:56 -07001072void
Dave Barach68b0fb02017-02-28 15:15:56 -05001073tcp_rcv_sacks (tcp_connection_t * tc, u32 ack)
1074{
Florin Coras558e3e02019-09-06 12:56:58 -07001075 sack_scoreboard_hole_t *hole, *next_hole;
Florin Corasb3f58e12019-07-05 18:31:54 -07001076 sack_scoreboard_t *sb = &tc->sack_sb;
Florin Coras558e3e02019-09-06 12:56:58 -07001077 sack_block_t *blk, *rcv_sacks;
1078 u32 blk_index = 0, i, j;
Florin Coras36ebcff2019-09-12 18:36:44 -07001079 u8 has_rxt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001080
Florin Coras6792ec02017-03-13 03:49:51 -07001081 sb->last_sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001082 sb->last_bytes_delivered = 0;
Florin Coras36ebcff2019-09-12 18:36:44 -07001083 sb->rxt_sacked = 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001084
Florin Corasc95eefb2020-01-08 22:01:54 +00001085 if (!tcp_opts_sack (&tc->rcv_opts) && !sb->sacked_bytes
Florin Coras93992a92017-05-24 18:03:56 -07001086 && sb->head == TCP_INVALID_SACK_HOLE_INDEX)
Dave Barach68b0fb02017-02-28 15:15:56 -05001087 return;
1088
Florin Coras36ebcff2019-09-12 18:36:44 -07001089 has_rxt = tcp_in_cong_recovery (tc);
1090
Dave Barach68b0fb02017-02-28 15:15:56 -05001091 /* Remove invalid blocks */
Florin Coras93992a92017-05-24 18:03:56 -07001092 blk = tc->rcv_opts.sacks;
1093 while (blk < vec_end (tc->rcv_opts.sacks))
Florin Coras6792ec02017-03-13 03:49:51 -07001094 {
1095 if (seq_lt (blk->start, blk->end)
1096 && seq_gt (blk->start, tc->snd_una)
Simon Zhang487507f2020-02-23 03:51:42 +08001097 && seq_gt (blk->start, ack) && seq_leq (blk->end, tc->snd_nxt))
Florin Coras6792ec02017-03-13 03:49:51 -07001098 {
1099 blk++;
1100 continue;
1101 }
Florin Coras93992a92017-05-24 18:03:56 -07001102 vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks);
Florin Coras6792ec02017-03-13 03:49:51 -07001103 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001104
1105 /* Add block for cumulative ack */
1106 if (seq_gt (ack, tc->snd_una))
1107 {
Florin Coras558e3e02019-09-06 12:56:58 -07001108 vec_add2 (tc->rcv_opts.sacks, blk, 1);
1109 blk->start = tc->snd_una;
1110 blk->end = ack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001111 }
1112
Florin Coras93992a92017-05-24 18:03:56 -07001113 if (vec_len (tc->rcv_opts.sacks) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001114 return;
1115
Florin Coras3eb50622017-07-13 01:24:57 -04001116 tcp_scoreboard_trace_add (tc, ack);
1117
Dave Barach68b0fb02017-02-28 15:15:56 -05001118 /* Make sure blocks are ordered */
Florin Coras558e3e02019-09-06 12:56:58 -07001119 rcv_sacks = tc->rcv_opts.sacks;
1120 for (i = 0; i < vec_len (rcv_sacks); i++)
1121 for (j = i + 1; j < vec_len (rcv_sacks); j++)
1122 if (seq_lt (rcv_sacks[j].start, rcv_sacks[i].start))
Dave Barach68b0fb02017-02-28 15:15:56 -05001123 {
Florin Coras558e3e02019-09-06 12:56:58 -07001124 sack_block_t tmp = rcv_sacks[i];
1125 rcv_sacks[i] = rcv_sacks[j];
1126 rcv_sacks[j] = tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -05001127 }
1128
Dave Barach68b0fb02017-02-28 15:15:56 -05001129 if (sb->head == TCP_INVALID_SACK_HOLE_INDEX)
1130 {
Florin Coras558e3e02019-09-06 12:56:58 -07001131 /* Handle reneging as a special case */
1132 if (PREDICT_FALSE (sb->is_reneging))
1133 {
1134 /* No holes, only sacked bytes */
1135 if (seq_leq (tc->snd_nxt, sb->high_sacked))
1136 {
1137 /* No progress made so return */
1138 if (seq_leq (ack, tc->snd_una))
1139 return;
1140
1141 /* Update sacked bytes delivered and return */
1142 sb->last_bytes_delivered = ack - tc->snd_una;
1143 sb->sacked_bytes -= sb->last_bytes_delivered;
1144 sb->is_reneging = seq_lt (ack, sb->high_sacked);
1145 return;
1146 }
1147
1148 /* New hole above high sacked. Add it and process normally */
1149 hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
1150 sb->high_sacked, tc->snd_nxt);
1151 sb->tail = scoreboard_hole_index (sb, hole);
1152 }
1153 /* Not reneging and no holes. Insert the first that covers all
1154 * outstanding bytes */
1155 else
1156 {
1157 hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
1158 tc->snd_una, tc->snd_nxt);
1159 sb->tail = scoreboard_hole_index (sb, hole);
1160 }
1161 sb->high_sacked = rcv_sacks[vec_len (rcv_sacks) - 1].end;
Florin Coras6792ec02017-03-13 03:49:51 -07001162 }
1163 else
1164 {
Florin Coras558e3e02019-09-06 12:56:58 -07001165 /* If we have holes but snd_nxt is beyond the last hole, update
1166 * last hole end or add new hole after high sacked */
1167 hole = scoreboard_last_hole (sb);
1168 if (seq_gt (tc->snd_nxt, hole->end))
Dave Barach2c25a622017-06-26 11:35:07 -04001169 {
Florin Coras558e3e02019-09-06 12:56:58 -07001170 if (seq_geq (hole->start, sb->high_sacked))
Dave Barach2c25a622017-06-26 11:35:07 -04001171 {
Florin Coras558e3e02019-09-06 12:56:58 -07001172 hole->end = tc->snd_nxt;
Dave Barach2c25a622017-06-26 11:35:07 -04001173 }
1174 /* New hole after high sacked block */
Florin Coras47596832019-03-12 18:58:54 -07001175 else if (seq_lt (sb->high_sacked, tc->snd_nxt))
Dave Barach2c25a622017-06-26 11:35:07 -04001176 {
1177 scoreboard_insert_hole (sb, sb->tail, sb->high_sacked,
Florin Coras47596832019-03-12 18:58:54 -07001178 tc->snd_nxt);
Dave Barach2c25a622017-06-26 11:35:07 -04001179 }
1180 }
Florin Coras558e3e02019-09-06 12:56:58 -07001181
Dave Barach2c25a622017-06-26 11:35:07 -04001182 /* Keep track of max byte sacked for when the last hole
Florin Corasf03a59a2017-06-09 21:07:32 -07001183 * is acked */
Florin Coras558e3e02019-09-06 12:56:58 -07001184 sb->high_sacked = seq_max (rcv_sacks[vec_len (rcv_sacks) - 1].end,
1185 sb->high_sacked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001186 }
1187
1188 /* Walk the holes with the SACK blocks */
1189 hole = pool_elt_at_index (sb->holes, sb->head);
Florin Coras558e3e02019-09-06 12:56:58 -07001190
1191 if (PREDICT_FALSE (sb->is_reneging))
Florin Coras067f8f92020-01-04 00:53:04 +00001192 {
1193 sb->last_bytes_delivered += clib_min (hole->start - tc->snd_una,
1194 ack - tc->snd_una);
1195 sb->is_reneging = seq_lt (ack, hole->start);
1196 }
Florin Coras558e3e02019-09-06 12:56:58 -07001197
1198 while (hole && blk_index < vec_len (rcv_sacks))
Dave Barach68b0fb02017-02-28 15:15:56 -05001199 {
Florin Coras558e3e02019-09-06 12:56:58 -07001200 blk = &rcv_sacks[blk_index];
Dave Barach68b0fb02017-02-28 15:15:56 -05001201 if (seq_leq (blk->start, hole->start))
1202 {
1203 /* Block covers hole. Remove hole */
1204 if (seq_geq (blk->end, hole->end))
1205 {
1206 next_hole = scoreboard_next_hole (sb, hole);
1207
Florin Coras558e3e02019-09-06 12:56:58 -07001208 /* If covered by ack, compute delivered bytes */
Florin Corasf03a59a2017-06-09 21:07:32 -07001209 if (blk->end == ack)
Dave Barach68b0fb02017-02-28 15:15:56 -05001210 {
Florin Coras558e3e02019-09-06 12:56:58 -07001211 u32 sacked = next_hole ? next_hole->start : sb->high_sacked;
1212 if (PREDICT_FALSE (seq_lt (ack, sacked)))
Florin Coras06d11012017-05-17 14:21:51 -07001213 {
Florin Coras558e3e02019-09-06 12:56:58 -07001214 sb->last_bytes_delivered += ack - hole->end;
1215 sb->is_reneging = 1;
Florin Coras06d11012017-05-17 14:21:51 -07001216 }
Florin Coras3eb50622017-07-13 01:24:57 -04001217 else
Florin Coras06d11012017-05-17 14:21:51 -07001218 {
Florin Coras558e3e02019-09-06 12:56:58 -07001219 sb->last_bytes_delivered += sacked - hole->end;
1220 sb->is_reneging = 0;
Florin Coras06d11012017-05-17 14:21:51 -07001221 }
1222 }
Florin Coras36ebcff2019-09-12 18:36:44 -07001223 scoreboard_update_sacked_rxt (sb, hole->start, hole->end,
1224 has_rxt);
Dave Barach68b0fb02017-02-28 15:15:56 -05001225 scoreboard_remove_hole (sb, hole);
1226 hole = next_hole;
1227 }
Florin Coras6792ec02017-03-13 03:49:51 -07001228 /* Partial 'head' overlap */
Dave Barach68b0fb02017-02-28 15:15:56 -05001229 else
1230 {
Florin Coras6792ec02017-03-13 03:49:51 -07001231 if (seq_gt (blk->end, hole->start))
1232 {
Florin Coras36ebcff2019-09-12 18:36:44 -07001233 scoreboard_update_sacked_rxt (sb, hole->start, blk->end,
1234 has_rxt);
Florin Coras6792ec02017-03-13 03:49:51 -07001235 hole->start = blk->end;
1236 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001237 blk_index++;
1238 }
1239 }
1240 else
1241 {
1242 /* Hole must be split */
Florin Coras6792ec02017-03-13 03:49:51 -07001243 if (seq_lt (blk->end, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001244 {
Florin Coras558e3e02019-09-06 12:56:58 -07001245 u32 hole_index = scoreboard_hole_index (sb, hole);
Florin Coras3eb50622017-07-13 01:24:57 -04001246 next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
1247 hole->end);
Florin Coras6792ec02017-03-13 03:49:51 -07001248 /* Pool might've moved */
1249 hole = scoreboard_get_hole (sb, hole_index);
1250 hole->end = blk->start;
Florin Coras36ebcff2019-09-12 18:36:44 -07001251
1252 scoreboard_update_sacked_rxt (sb, blk->start, blk->end,
1253 has_rxt);
1254
Dave Barach68b0fb02017-02-28 15:15:56 -05001255 blk_index++;
Florin Coras3eb50622017-07-13 01:24:57 -04001256 ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
Dave Barach68b0fb02017-02-28 15:15:56 -05001257 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001258 else if (seq_lt (blk->start, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001259 {
Florin Coras36ebcff2019-09-12 18:36:44 -07001260 scoreboard_update_sacked_rxt (sb, blk->start, hole->end,
1261 has_rxt);
Florin Coras6792ec02017-03-13 03:49:51 -07001262 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -05001263 }
Florin Coras93992a92017-05-24 18:03:56 -07001264 hole = scoreboard_next_hole (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -05001265 }
1266 }
Florin Coras6792ec02017-03-13 03:49:51 -07001267
Florin Coras558e3e02019-09-06 12:56:58 -07001268 scoreboard_update_bytes (sb, ack, tc->snd_mss);
Florin Corasb3f58e12019-07-05 18:31:54 -07001269
Florin Corasca1c8f32018-05-23 21:01:30 -07001270 ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes || tcp_in_recovery (tc));
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001271 ASSERT (sb->sacked_bytes == 0 || tcp_in_recovery (tc)
Florin Coras558e3e02019-09-06 12:56:58 -07001272 || sb->sacked_bytes <= tc->snd_nxt - seq_max (tc->snd_una, ack));
Florin Coras47596832019-03-12 18:58:54 -07001273 ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_nxt
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001274 - seq_max (tc->snd_una, ack) || tcp_in_recovery (tc));
Dave Barach2c25a622017-06-26 11:35:07 -04001275 ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
Florin Coras558e3e02019-09-06 12:56:58 -07001276 || sb->is_reneging || sb->holes[sb->head].start == ack);
Florin Corasb3f58e12019-07-05 18:31:54 -07001277 ASSERT (sb->last_lost_bytes <= sb->lost_bytes);
Florin Coras36ebcff2019-09-12 18:36:44 -07001278 ASSERT ((ack - tc->snd_una) + sb->last_sacked_bytes
Florin Corasedf1da92020-01-08 18:49:59 +00001279 - sb->last_bytes_delivered >= sb->rxt_sacked);
Florin Corasbe237bf2019-09-27 08:16:40 -07001280 ASSERT ((ack - tc->snd_una) >= tc->sack_sb.last_bytes_delivered
1281 || (tc->flags & TCP_CONN_FINSNT));
Florin Corasb3f58e12019-07-05 18:31:54 -07001282
Florin Corasa436a422019-08-20 07:09:31 -07001283 TCP_EVT (TCP_EVT_CC_SCOREBOARD, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001284}
Filip Tehlare275bed2019-03-06 00:06:56 -08001285#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05001286
Florin Coras93992a92017-05-24 18:03:56 -07001287/**
1288 * Try to update snd_wnd based on feedback received from peer.
Dave Barach68b0fb02017-02-28 15:15:56 -05001289 *
Florin Coras93992a92017-05-24 18:03:56 -07001290 * If successful, and new window is 'effectively' 0, activate persist
1291 * timer.
1292 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001293static void
1294tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
1295{
Florin Coras93992a92017-05-24 18:03:56 -07001296 /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
1297 * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
Florin Coras6792ec02017-03-13 03:49:51 -07001298 if (seq_lt (tc->snd_wl1, seq)
1299 || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001300 {
1301 tc->snd_wnd = snd_wnd;
1302 tc->snd_wl1 = seq;
1303 tc->snd_wl2 = ack;
Florin Corasa436a422019-08-20 07:09:31 -07001304 TCP_EVT (TCP_EVT_SND_WND, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001305
Florin Coras9ece3c02018-11-05 11:06:53 -08001306 if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
Florin Corasbb292f42017-05-19 09:49:19 -07001307 {
Florin Coras93992a92017-05-24 18:03:56 -07001308 /* Set persist timer if not set and we just got 0 wnd */
1309 if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
1310 && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
Florin Corasbb292f42017-05-19 09:49:19 -07001311 tcp_persist_timer_set (tc);
1312 }
Florin Coras3e350af2017-03-30 02:54:28 -07001313 else
Florin Coras93992a92017-05-24 18:03:56 -07001314 {
1315 tcp_persist_timer_reset (tc);
Florin Coras9ece3c02018-11-05 11:06:53 -08001316 if (PREDICT_FALSE (!tcp_in_recovery (tc) && tc->rto_boff > 0))
Florin Coras93992a92017-05-24 18:03:56 -07001317 {
1318 tc->rto_boff = 0;
1319 tcp_update_rto (tc);
1320 }
1321 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001322 }
1323}
1324
Florin Corasd2aab832018-05-22 11:39:59 -07001325/**
1326 * Init loss recovery/fast recovery.
1327 *
1328 * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
1329 * updated in @ref tcp_cc_handle_event after fast retransmit
1330 */
Florin Coras36ebcff2019-09-12 18:36:44 -07001331static void
Florin Coras93992a92017-05-24 18:03:56 -07001332tcp_cc_init_congestion (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001333{
Florin Coras93992a92017-05-24 18:03:56 -07001334 tcp_fastrecovery_on (tc);
Florin Coras47596832019-03-12 18:58:54 -07001335 tc->snd_congestion = tc->snd_nxt;
Florin Coras62166002018-04-18 16:40:55 -07001336 tc->cwnd_acc_bytes = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001337 tc->snd_rxt_bytes = 0;
Florin Coras36ebcff2019-09-12 18:36:44 -07001338 tc->rxt_delivered = 0;
1339 tc->prr_delivered = 0;
Florin Corasbe237bf2019-09-27 08:16:40 -07001340 tc->prr_start = tc->snd_una;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001341 tc->prev_ssthresh = tc->ssthresh;
1342 tc->prev_cwnd = tc->cwnd;
Florin Coras36ebcff2019-09-12 18:36:44 -07001343
Florin Corasbe237bf2019-09-27 08:16:40 -07001344 tc->snd_rxt_ts = tcp_tstamp (tc);
Florin Coras36ebcff2019-09-12 18:36:44 -07001345 tcp_cc_congestion (tc);
1346
1347 /* Post retransmit update cwnd to ssthresh and account for the
1348 * three segments that have left the network and should've been
1349 * buffered at the receiver XXX */
1350 if (!tcp_opts_sack_permitted (&tc->rcv_opts))
1351 tc->cwnd += 3 * tc->snd_mss;
1352
Florin Corasedfe0ee2019-07-29 18:13:25 -07001353 tc->fr_occurences += 1;
Florin Corasa436a422019-08-20 07:09:31 -07001354 TCP_EVT (TCP_EVT_CC_EVT, tc, 4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001355}
Dave Barach68b0fb02017-02-28 15:15:56 -05001356
1357static void
Florin Coras93992a92017-05-24 18:03:56 -07001358tcp_cc_congestion_undo (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001359{
Florin Coras93992a92017-05-24 18:03:56 -07001360 tc->cwnd = tc->prev_cwnd;
1361 tc->ssthresh = tc->prev_ssthresh;
Florin Coraseff6b822019-07-03 19:51:02 -07001362 tcp_cc_undo_recovery (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001363 ASSERT (tc->rto_boff == 0);
Florin Corasa436a422019-08-20 07:09:31 -07001364 TCP_EVT (TCP_EVT_CC_EVT, tc, 5);
Florin Coras93992a92017-05-24 18:03:56 -07001365}
Dave Barach68b0fb02017-02-28 15:15:56 -05001366
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001367static inline u8
1368tcp_cc_is_spurious_timeout_rxt (tcp_connection_t * tc)
Florin Coras93992a92017-05-24 18:03:56 -07001369{
Florin Corasf1762d62017-09-24 19:43:08 -04001370 return (tcp_in_recovery (tc) && tc->rto_boff == 1
Dave Barach2c25a622017-06-26 11:35:07 -04001371 && tc->snd_rxt_ts
Florin Coras93992a92017-05-24 18:03:56 -07001372 && tcp_opts_tstamp (&tc->rcv_opts)
1373 && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
1374}
1375
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001376static inline u8
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001377tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
1378{
Florin Coras36ebcff2019-09-12 18:36:44 -07001379 return (tcp_cc_is_spurious_timeout_rxt (tc));
1380}
1381
1382static inline u8
1383tcp_should_fastrecover_sack (tcp_connection_t * tc)
1384{
1385 return (tc->sack_sb.lost_bytes
1386 || ((TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
1387 < tc->sack_sb.sacked_bytes));
1388}
1389
1390static inline u8
Florin Corasbe237bf2019-09-27 08:16:40 -07001391tcp_should_fastrecover (tcp_connection_t * tc, u8 has_sack)
Florin Coras36ebcff2019-09-12 18:36:44 -07001392{
Florin Corasbe237bf2019-09-27 08:16:40 -07001393 if (!has_sack)
1394 {
1395 /* If of of the two conditions lower hold, reset dupacks because
1396 * we're probably after timeout (RFC6582 heuristics).
1397 * If Cumulative ack does not cover more than congestion threshold,
1398 * and:
1399 * 1) The following doesn't hold: The congestion window is greater
1400 * than SMSS bytes and the difference between highest_ack
1401 * and prev_highest_ack is at most 4*SMSS bytes
1402 * 2) Echoed timestamp in the last non-dup ack does not equal the
1403 * stored timestamp
1404 */
1405 if (seq_leq (tc->snd_una, tc->snd_congestion)
1406 && ((!(tc->cwnd > tc->snd_mss
1407 && tc->bytes_acked <= 4 * tc->snd_mss))
1408 || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
1409 {
1410 tc->rcv_dupacks = 0;
1411 return 0;
1412 }
1413 }
Florin Coras36ebcff2019-09-12 18:36:44 -07001414 return ((tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
1415 || tcp_should_fastrecover_sack (tc));
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001416}
1417
Florin Coras0dbd5172018-06-25 16:19:34 -07001418static int
Florin Coras93992a92017-05-24 18:03:56 -07001419tcp_cc_recover (tcp_connection_t * tc)
1420{
Florin Coras321cfa52019-09-12 18:49:44 -07001421 sack_scoreboard_hole_t *hole;
Florin Coras36ebcff2019-09-12 18:36:44 -07001422 u8 is_spurious = 0;
Florin Coras321cfa52019-09-12 18:49:44 -07001423
Florin Coras93992a92017-05-24 18:03:56 -07001424 ASSERT (tcp_in_cong_recovery (tc));
Florin Coras321cfa52019-09-12 18:49:44 -07001425
Florin Coras36ebcff2019-09-12 18:36:44 -07001426 if (tcp_cc_is_spurious_retransmit (tc))
1427 {
1428 tcp_cc_congestion_undo (tc);
1429 is_spurious = 1;
1430 }
1431
Florin Corasc31dc312019-10-06 14:06:14 -07001432 tcp_connection_tx_pacer_reset (tc, tc->cwnd, 0 /* start bucket */ );
Florin Corasb3dce892019-10-30 09:22:14 -07001433 tc->rcv_dupacks = 0;
Florin Corasc31dc312019-10-06 14:06:14 -07001434
Florin Coras36ebcff2019-09-12 18:36:44 -07001435 /* Previous recovery left us congested. Continue sending as part
1436 * of the current recovery event with an updated snd_congestion */
1437 if (tc->sack_sb.sacked_bytes)
1438 {
1439 tc->snd_congestion = tc->snd_nxt;
Florin Coras36ebcff2019-09-12 18:36:44 -07001440 tcp_program_retransmit (tc);
1441 return is_spurious;
1442 }
1443
Florin Corasb3dce892019-10-30 09:22:14 -07001444 tc->rxt_delivered = 0;
1445 tc->snd_rxt_bytes = 0;
1446 tc->snd_rxt_ts = 0;
1447 tc->prr_delivered = 0;
1448 tc->rtt_ts = 0;
1449 tc->flags &= ~TCP_CONN_RXT_PENDING;
1450
Florin Coras321cfa52019-09-12 18:49:44 -07001451 hole = scoreboard_first_hole (&tc->sack_sb);
1452 if (hole && hole->start == tc->snd_una && hole->end == tc->snd_nxt)
1453 scoreboard_clear (&tc->sack_sb);
1454
Florin Coras36ebcff2019-09-12 18:36:44 -07001455 if (!tcp_in_recovery (tc) && !is_spurious)
1456 tcp_cc_recovered (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001457
Florin Coras36ebcff2019-09-12 18:36:44 -07001458 tcp_fastrecovery_off (tc);
1459 tcp_fastrecovery_first_off (tc);
1460 tcp_recovery_off (tc);
1461 TCP_EVT (TCP_EVT_CC_EVT, tc, 3);
Florin Coras93992a92017-05-24 18:03:56 -07001462
1463 ASSERT (tc->rto_boff == 0);
1464 ASSERT (!tcp_in_cong_recovery (tc));
Florin Coras3eb50622017-07-13 01:24:57 -04001465 ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
Florin Coras36ebcff2019-09-12 18:36:44 -07001466 return is_spurious;
Florin Coras93992a92017-05-24 18:03:56 -07001467}
1468
1469static void
Florin Coras52814732019-06-12 15:38:19 -07001470tcp_cc_update (tcp_connection_t * tc, tcp_rate_sample_t * rs)
Florin Coras93992a92017-05-24 18:03:56 -07001471{
Florin Coras3eb50622017-07-13 01:24:57 -04001472 ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001473
1474 /* Congestion avoidance */
Florin Coras52814732019-06-12 15:38:19 -07001475 tcp_cc_rcv_ack (tc, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001476
1477 /* If a cumulative ack, make sure dupacks is 0 */
1478 tc->rcv_dupacks = 0;
1479
1480 /* When dupacks hits the threshold we only enter fast retransmit if
1481 * cumulative ack covers more than snd_congestion. Should snd_una
1482 * wrap this test may fail under otherwise valid circumstances.
1483 * Therefore, proactively update snd_congestion when wrap detected. */
1484 if (PREDICT_FALSE
1485 (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1486 && seq_gt (tc->snd_congestion, tc->snd_una)))
1487 tc->snd_congestion = tc->snd_una - 1;
1488}
1489
Florin Corasf03a59a2017-06-09 21:07:32 -07001490/**
1491 * One function to rule them all ... and in the darkness bind them
1492 */
Florin Coras93992a92017-05-24 18:03:56 -07001493static void
Florin Coras52814732019-06-12 15:38:19 -07001494tcp_cc_handle_event (tcp_connection_t * tc, tcp_rate_sample_t * rs,
1495 u32 is_dack)
Florin Coras93992a92017-05-24 18:03:56 -07001496{
Florin Corasafef8bf2019-09-11 23:22:29 -07001497 u8 has_sack = tcp_opts_sack_permitted (&tc->rcv_opts);
Florin Corasf03a59a2017-06-09 21:07:32 -07001498
Florin Coras1de71672019-12-22 09:20:26 -08001499 /* If reneging, wait for timer based retransmits */
1500 if (PREDICT_FALSE (tcp_is_lost_fin (tc) || tc->sack_sb.is_reneging))
1501 return;
1502
Florin Corasafef8bf2019-09-11 23:22:29 -07001503 /*
Florin Corasbe237bf2019-09-27 08:16:40 -07001504 * If not in recovery, figure out if we should enter
Florin Corasafef8bf2019-09-11 23:22:29 -07001505 */
Florin Corasbe237bf2019-09-27 08:16:40 -07001506 if (!tcp_in_cong_recovery (tc))
Florin Corasca1c8f32018-05-23 21:01:30 -07001507 {
Florin Corasbe237bf2019-09-27 08:16:40 -07001508 ASSERT (is_dack);
Florin Coras36ebcff2019-09-12 18:36:44 -07001509
Florin Coras93992a92017-05-24 18:03:56 -07001510 tc->rcv_dupacks++;
Florin Corasbe237bf2019-09-27 08:16:40 -07001511 TCP_EVT (TCP_EVT_DUPACK_RCVD, tc, 1);
1512 tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001513
Florin Corasbe237bf2019-09-27 08:16:40 -07001514 if (tcp_should_fastrecover (tc, has_sack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001515 {
Florin Coras93992a92017-05-24 18:03:56 -07001516 tcp_cc_init_congestion (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001517
Florin Corasafef8bf2019-09-11 23:22:29 -07001518 if (has_sack)
Florin Corasbe237bf2019-09-27 08:16:40 -07001519 scoreboard_init_rxt (&tc->sack_sb, tc->snd_una);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001520
Florin Coras36ebcff2019-09-12 18:36:44 -07001521 tcp_connection_tx_pacer_reset (tc, tc->cwnd, 0 /* start bucket */ );
1522 tcp_program_retransmit (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001523 }
Florin Coras93992a92017-05-24 18:03:56 -07001524
Florin Corasbe237bf2019-09-27 08:16:40 -07001525 return;
1526 }
Florin Corasd2aab832018-05-22 11:39:59 -07001527
Florin Coras93992a92017-05-24 18:03:56 -07001528 /*
Florin Corasb3dce892019-10-30 09:22:14 -07001529 * Already in recovery
Florin Coras93992a92017-05-24 18:03:56 -07001530 */
Florin Coras93992a92017-05-24 18:03:56 -07001531
Florin Coras93992a92017-05-24 18:03:56 -07001532 /*
Florin Corasbe237bf2019-09-27 08:16:40 -07001533 * Process (re)transmit feedback. Output path uses this to decide how much
1534 * more data to release into the network
1535 */
1536 if (has_sack)
1537 {
Florin Corasb3dce892019-10-30 09:22:14 -07001538 if (!tc->bytes_acked && tc->sack_sb.rxt_sacked)
1539 tcp_fastrecovery_first_on (tc);
1540
Florin Corasbe237bf2019-09-27 08:16:40 -07001541 tc->rxt_delivered += tc->sack_sb.rxt_sacked;
1542 tc->prr_delivered += tc->bytes_acked + tc->sack_sb.last_sacked_bytes
1543 - tc->sack_sb.last_bytes_delivered;
1544
1545 tcp_program_retransmit (tc);
1546 }
1547 else
1548 {
1549 if (is_dack)
1550 {
1551 tc->rcv_dupacks += 1;
1552 TCP_EVT (TCP_EVT_DUPACK_RCVD, tc, 1);
1553 }
Florin Coras56cef052020-01-15 20:18:35 +00001554 tc->rxt_delivered = clib_min (tc->rxt_delivered + tc->bytes_acked,
Florin Corasbe237bf2019-09-27 08:16:40 -07001555 tc->snd_rxt_bytes);
1556 if (is_dack)
Florin Corasbf1f8b72019-11-04 14:39:33 -08001557 tc->prr_delivered += clib_min (tc->snd_mss,
1558 tc->snd_nxt - tc->snd_una);
Florin Corasbe237bf2019-09-27 08:16:40 -07001559 else
Florin Corasbf1f8b72019-11-04 14:39:33 -08001560 tc->prr_delivered += tc->bytes_acked - clib_min (tc->bytes_acked,
1561 tc->snd_mss *
1562 tc->rcv_dupacks);
Florin Corasbe237bf2019-09-27 08:16:40 -07001563
1564 /* If partial ack, assume that the first un-acked segment was lost */
1565 if (tc->bytes_acked || tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
1566 tcp_fastrecovery_first_on (tc);
1567
1568 tcp_program_retransmit (tc);
1569 }
1570
1571 /*
Florin Corasb3dce892019-10-30 09:22:14 -07001572 * See if we can exit and stop retransmitting
1573 */
1574 if (seq_geq (tc->snd_una, tc->snd_congestion))
1575 {
1576 /* If spurious return, we've already updated everything */
1577 if (tcp_cc_recover (tc))
1578 {
1579 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1580 return;
1581 }
1582
1583 /* Treat as congestion avoidance ack */
1584 tcp_cc_rcv_ack (tc, rs);
1585 return;
1586 }
1587
1588 /*
Florin Corasbe237bf2019-09-27 08:16:40 -07001589 * Notify cc of the event
Florin Coras93992a92017-05-24 18:03:56 -07001590 */
Florin Coras93992a92017-05-24 18:03:56 -07001591
Florin Corasbe237bf2019-09-27 08:16:40 -07001592 if (!tc->bytes_acked)
1593 {
1594 tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
1595 return;
1596 }
1597
1598 /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
1599 * reset dupacks to 0. Also needed if in congestion recovery */
1600 tc->rcv_dupacks = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001601
Florin Coras36ebcff2019-09-12 18:36:44 -07001602 if (tcp_in_recovery (tc))
1603 tcp_cc_rcv_ack (tc, rs);
Dave Barach68b0fb02017-02-28 15:15:56 -05001604 else
Florin Coras36ebcff2019-09-12 18:36:44 -07001605 tcp_cc_rcv_cong_ack (tc, TCP_CC_PARTIALACK, rs);
Florin Corasbe237bf2019-09-27 08:16:40 -07001606}
Dave Barach68b0fb02017-02-28 15:15:56 -05001607
Florin Coras2f04cb92019-12-23 10:03:27 -08001608static void
Florin Coras067f8f92020-01-04 00:53:04 +00001609tcp_handle_old_ack (tcp_connection_t * tc, tcp_rate_sample_t * rs)
Florin Coras2f04cb92019-12-23 10:03:27 -08001610{
1611 if (!tcp_in_cong_recovery (tc))
1612 return;
1613
1614 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras067f8f92020-01-04 00:53:04 +00001615 tcp_rcv_sacks (tc, tc->snd_una);
Florin Coras2f04cb92019-12-23 10:03:27 -08001616
1617 tc->bytes_acked = 0;
1618
1619 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
1620 tcp_bt_sample_delivery_rate (tc, rs);
1621
1622 tcp_cc_handle_event (tc, rs, 1);
1623}
1624
Florin Corasbe237bf2019-09-27 08:16:40 -07001625/**
1626 * Check if duplicate ack as per RFC5681 Sec. 2
1627 */
1628always_inline u8
1629tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd,
1630 u32 prev_snd_una)
1631{
1632 return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
1633 && seq_gt (tc->snd_nxt, tc->snd_una)
1634 && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
1635 && (prev_snd_wnd == tc->snd_wnd));
1636}
1637
1638/**
1639 * Checks if ack is a congestion control event.
1640 */
1641static u8
1642tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b,
1643 u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
1644{
1645 /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
1646 * defined to be 'duplicate' as well */
1647 *is_dack = tc->sack_sb.last_sacked_bytes
1648 || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
1649
Florin Corasbe237bf2019-09-27 08:16:40 -07001650 return (*is_dack || tcp_in_cong_recovery (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -05001651}
1652
Florin Coras93992a92017-05-24 18:03:56 -07001653/**
1654 * Process incoming ACK
1655 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001656static int
Florin Coras9ece3c02018-11-05 11:06:53 -08001657tcp_rcv_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
Florin Coras7ac053b2018-11-05 15:57:21 -08001658 tcp_header_t * th, u32 * error)
Dave Barach68b0fb02017-02-28 15:15:56 -05001659{
Florin Coras93992a92017-05-24 18:03:56 -07001660 u32 prev_snd_wnd, prev_snd_una;
Florin Coras52814732019-06-12 15:38:19 -07001661 tcp_rate_sample_t rs = { 0 };
Florin Coras93992a92017-05-24 18:03:56 -07001662 u8 is_dack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001663
Florin Corasa436a422019-08-20 07:09:31 -07001664 TCP_EVT (TCP_EVT_CC_STAT, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001665
Florin Coras6792ec02017-03-13 03:49:51 -07001666 /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
Florin Coras93992a92017-05-24 18:03:56 -07001667 if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001668 {
Florin Coras47596832019-03-12 18:58:54 -07001669 /* We've probably entered recovery and the peer still has some
1670 * of the data we've sent. Update snd_nxt and accept the ack */
Florin Coras282a3cb2019-04-02 21:43:38 -07001671 if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)
1672 && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
Florin Corasca1c8f32018-05-23 21:01:30 -07001673 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001674 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
Florin Corasca1c8f32018-05-23 21:01:30 -07001675 goto process_ack;
1676 }
1677
Florin Corasedfe0ee2019-07-29 18:13:25 -07001678 tc->errors.above_ack_wnd += 1;
Florin Coras47596832019-03-12 18:58:54 -07001679 *error = TCP_ERROR_ACK_FUTURE;
Florin Corasa436a422019-08-20 07:09:31 -07001680 TCP_EVT (TCP_EVT_ACK_RCV_ERR, tc, 0, vnet_buffer (b)->tcp.ack_number);
Florin Coras47596832019-03-12 18:58:54 -07001681 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001682 }
1683
Florin Coras6792ec02017-03-13 03:49:51 -07001684 /* If old ACK, probably it's an old dupack */
Florin Coras93992a92017-05-24 18:03:56 -07001685 if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001686 {
Florin Corasedfe0ee2019-07-29 18:13:25 -07001687 tc->errors.below_ack_wnd += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001688 *error = TCP_ERROR_ACK_OLD;
Florin Corasa436a422019-08-20 07:09:31 -07001689 TCP_EVT (TCP_EVT_ACK_RCV_ERR, tc, 1, vnet_buffer (b)->tcp.ack_number);
Florin Coras2f04cb92019-12-23 10:03:27 -08001690
1691 if (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una - tc->rcv_wnd))
1692 return -1;
1693
Florin Coras067f8f92020-01-04 00:53:04 +00001694 tcp_handle_old_ack (tc, &rs);
Florin Coras2f04cb92019-12-23 10:03:27 -08001695
Florin Corasc28764f2017-04-26 00:08:42 -07001696 /* Don't drop yet */
1697 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001698 }
1699
Florin Coras47596832019-03-12 18:58:54 -07001700process_ack:
1701
Florin Coras93992a92017-05-24 18:03:56 -07001702 /*
1703 * Looks okay, process feedback
1704 */
Florin Corasedfe0ee2019-07-29 18:13:25 -07001705
Florin Coras93992a92017-05-24 18:03:56 -07001706 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001707 tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1708
Florin Coras93992a92017-05-24 18:03:56 -07001709 prev_snd_wnd = tc->snd_wnd;
1710 prev_snd_una = tc->snd_una;
1711 tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1712 vnet_buffer (b)->tcp.ack_number,
1713 clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1714 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
Florin Coras558e3e02019-09-06 12:56:58 -07001715 tc->snd_una = vnet_buffer (b)->tcp.ack_number;
Florin Coras93992a92017-05-24 18:03:56 -07001716 tcp_validate_txf_size (tc, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001717
Florin Corasbbcfaac2019-10-10 13:52:04 -07001718 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
Florin Coras1dbda642019-09-11 13:42:57 -07001719 tcp_bt_sample_delivery_rate (tc, &rs);
1720
Florin Coras93992a92017-05-24 18:03:56 -07001721 if (tc->bytes_acked)
Florin Coras11e9e352019-11-13 19:09:47 -08001722 {
1723 tcp_program_dequeue (wrk, tc);
1724 tcp_update_rtt (tc, &rs, vnet_buffer (b)->tcp.ack_number);
1725 }
Florin Coras93992a92017-05-24 18:03:56 -07001726
Florin Corasa436a422019-08-20 07:09:31 -07001727 TCP_EVT (TCP_EVT_ACK_RCVD, tc);
Florin Coras6534b7a2017-07-18 05:38:03 -04001728
Florin Coras93992a92017-05-24 18:03:56 -07001729 /*
1730 * Check if we have congestion event
1731 */
1732
1733 if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001734 {
Florin Coras52814732019-06-12 15:38:19 -07001735 tcp_cc_handle_event (tc, &rs, is_dack);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001736 tc->dupacks_in += is_dack;
Florin Corasb2215d62017-08-01 16:56:58 -07001737 if (!tcp_in_cong_recovery (tc))
Florin Corasa9d5bea2018-12-17 08:24:19 -08001738 {
1739 *error = TCP_ERROR_ACK_OK;
1740 return 0;
1741 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001742 *error = TCP_ERROR_ACK_DUP;
Florin Corasca09d072018-10-01 18:31:02 -07001743 if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th))
1744 return 0;
1745 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001746 }
1747
Florin Coras6792ec02017-03-13 03:49:51 -07001748 /*
Florin Coras93992a92017-05-24 18:03:56 -07001749 * Update congestion control (slow start/congestion avoidance)
Florin Coras6792ec02017-03-13 03:49:51 -07001750 */
Florin Coras52814732019-06-12 15:38:19 -07001751 tcp_cc_update (tc, &rs);
Florin Coras00cd22d2018-04-18 13:20:18 -07001752 *error = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001753 return 0;
1754}
1755
Florin Corasb11175d2018-11-09 14:34:08 -08001756static void
1757tcp_program_disconnect (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1758{
1759 if (!tcp_disconnect_pending (tc))
1760 {
1761 vec_add1 (wrk->pending_disconnects, tc->c_c_index);
1762 tcp_disconnect_pending_on (tc);
1763 }
1764}
1765
1766static void
1767tcp_handle_disconnects (tcp_worker_ctx_t * wrk)
1768{
Florin Coras6939d5e2020-02-10 23:22:34 +00001769 u32 thread_index, *pending_disconnects, *pending_resets;
Florin Corasb11175d2018-11-09 14:34:08 -08001770 tcp_connection_t *tc;
1771 int i;
1772
Florin Coras6939d5e2020-02-10 23:22:34 +00001773 if (vec_len (wrk->pending_disconnects))
Florin Corasb11175d2018-11-09 14:34:08 -08001774 {
Florin Coras6939d5e2020-02-10 23:22:34 +00001775 thread_index = wrk->vm->thread_index;
1776 pending_disconnects = wrk->pending_disconnects;
1777 for (i = 0; i < vec_len (pending_disconnects); i++)
1778 {
1779 tc = tcp_connection_get (pending_disconnects[i], thread_index);
1780 tcp_disconnect_pending_off (tc);
1781 session_transport_closing_notify (&tc->connection);
1782 }
1783 _vec_len (wrk->pending_disconnects) = 0;
Florin Corasb11175d2018-11-09 14:34:08 -08001784 }
Florin Coras6939d5e2020-02-10 23:22:34 +00001785
1786 if (vec_len (wrk->pending_resets))
1787 {
1788 thread_index = wrk->vm->thread_index;
1789 pending_resets = wrk->pending_resets;
1790 for (i = 0; i < vec_len (pending_resets); i++)
1791 {
1792 tc = tcp_connection_get (pending_resets[i], thread_index);
1793 tcp_disconnect_pending_off (tc);
1794 tcp_handle_rst (tc);
1795 }
1796 _vec_len (wrk->pending_resets) = 0;
1797 }
Florin Corasb11175d2018-11-09 14:34:08 -08001798}
1799
1800static void
1801tcp_rcv_fin (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
1802 u32 * error)
1803{
Florin Corasf73d4c22019-06-28 09:18:48 -07001804 /* Reject out-of-order fins */
1805 if (vnet_buffer (b)->tcp.seq_end != tc->rcv_nxt)
1806 return;
1807
Florin Coras3c514d52018-12-22 11:39:33 -08001808 /* Account for the FIN and send ack */
1809 tc->rcv_nxt += 1;
Florin Corascb711a42019-10-16 19:28:17 -07001810 tc->flags |= TCP_CONN_FINRCVD;
Florin Coras26dd6de2019-07-23 23:54:47 -07001811 tcp_program_ack (tc);
Florin Corasb11175d2018-11-09 14:34:08 -08001812 /* Enter CLOSE-WAIT and notify session. To avoid lingering
1813 * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
Florin Coras3c514d52018-12-22 11:39:33 -08001814 tcp_connection_set_state (tc, TCP_STATE_CLOSE_WAIT);
Florin Corasb11175d2018-11-09 14:34:08 -08001815 tcp_program_disconnect (wrk, tc);
Florin Coras9094b5c2019-08-12 14:17:47 -07001816 tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, tcp_cfg.closewait_time);
Florin Corasa436a422019-08-20 07:09:31 -07001817 TCP_EVT (TCP_EVT_FIN_RCVD, tc);
Florin Corasb11175d2018-11-09 14:34:08 -08001818 *error = TCP_ERROR_FIN_RCVD;
1819}
1820
Filip Tehlare275bed2019-03-06 00:06:56 -08001821#ifndef CLIB_MARCH_VARIANT
Florin Coras3eb50622017-07-13 01:24:57 -04001822static u8
1823tcp_sack_vector_is_sane (sack_block_t * sacks)
1824{
1825 int i;
1826 for (i = 1; i < vec_len (sacks); i++)
1827 {
1828 if (sacks[i - 1].end == sacks[i].start)
1829 return 0;
1830 }
1831 return 1;
1832}
1833
Dave Barach68b0fb02017-02-28 15:15:56 -05001834/**
1835 * Build SACK list as per RFC2018.
1836 *
1837 * Makes sure the first block contains the segment that generated the current
1838 * ACK and the following ones are the ones most recently reported in SACK
1839 * blocks.
1840 *
1841 * @param tc TCP connection for which the SACK list is updated
1842 * @param start Start sequence number of the newest SACK block
1843 * @param end End sequence of the newest SACK block
1844 */
Florin Coras45d34962017-04-25 00:05:27 -07001845void
Dave Barach68b0fb02017-02-28 15:15:56 -05001846tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1847{
Florin Corasb691f762019-02-22 09:07:20 -08001848 sack_block_t *new_list = tc->snd_sacks_fl, *block = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001849 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001850
1851 /* If the first segment is ooo add it to the list. Last write might've moved
1852 * rcv_nxt over the first segment. */
1853 if (seq_lt (tc->rcv_nxt, start))
1854 {
Florin Coras45d34962017-04-25 00:05:27 -07001855 vec_add2 (new_list, block, 1);
1856 block->start = start;
1857 block->end = end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001858 }
1859
1860 /* Find the blocks still worth keeping. */
1861 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1862 {
Florin Coras45d34962017-04-25 00:05:27 -07001863 /* Discard if rcv_nxt advanced beyond current block */
1864 if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001865 continue;
1866
Florin Coras45d34962017-04-25 00:05:27 -07001867 /* Merge or drop if segment overlapped by the new segment */
1868 if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1869 && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1870 {
1871 if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1872 new_list[0].start = tc->snd_sacks[i].start;
1873 if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1874 new_list[0].end = tc->snd_sacks[i].end;
1875 continue;
1876 }
1877
1878 /* Save to new SACK list if we have space. */
1879 if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
Florin Coras47596832019-03-12 18:58:54 -07001880 vec_add1 (new_list, tc->snd_sacks[i]);
Dave Barach68b0fb02017-02-28 15:15:56 -05001881 }
1882
Florin Coras45d34962017-04-25 00:05:27 -07001883 ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
Florin Coras6792ec02017-03-13 03:49:51 -07001884
Dave Barach68b0fb02017-02-28 15:15:56 -05001885 /* Replace old vector with new one */
Florin Corasb691f762019-02-22 09:07:20 -08001886 vec_reset_length (tc->snd_sacks);
1887 tc->snd_sacks_fl = tc->snd_sacks;
Dave Barach68b0fb02017-02-28 15:15:56 -05001888 tc->snd_sacks = new_list;
Florin Coras3eb50622017-07-13 01:24:57 -04001889
1890 /* Segments should not 'touch' */
1891 ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
Dave Barach68b0fb02017-02-28 15:15:56 -05001892}
1893
Florin Corasca1c8f32018-05-23 21:01:30 -07001894u32
1895tcp_sack_list_bytes (tcp_connection_t * tc)
1896{
1897 u32 bytes = 0, i;
1898 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1899 bytes += tc->snd_sacks[i].end - tc->snd_sacks[i].start;
1900 return bytes;
1901}
Filip Tehlare275bed2019-03-06 00:06:56 -08001902#endif /* CLIB_MARCH_VARIANT */
Florin Corasca1c8f32018-05-23 21:01:30 -07001903
Dave Barach68b0fb02017-02-28 15:15:56 -05001904/** Enqueue data for delivery to application */
Florin Coras0dbd5172018-06-25 16:19:34 -07001905static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001906tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1907 u16 data_len)
1908{
Florin Coras1f152cd2017-08-18 19:28:03 -07001909 int written, error = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001910
Dave Barach2c25a622017-06-26 11:35:07 -04001911 ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001912 ASSERT (data_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001913 written = session_enqueue_stream_connection (&tc->connection, b, 0,
1914 1 /* queue event */ , 1);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001915 tc->bytes_in += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001916
Florin Corasa436a422019-08-20 07:09:31 -07001917 TCP_EVT (TCP_EVT_INPUT, tc, 0, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001918
Dave Barach68b0fb02017-02-28 15:15:56 -05001919 /* Update rcv_nxt */
1920 if (PREDICT_TRUE (written == data_len))
1921 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001922 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001923 }
1924 /* If more data written than expected, account for out-of-order bytes. */
1925 else if (written > data_len)
1926 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001927 tc->rcv_nxt += written;
Florin Corasa436a422019-08-20 07:09:31 -07001928 TCP_EVT (TCP_EVT_CC_INPUT, tc, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001929 }
1930 else if (written > 0)
1931 {
1932 /* We've written something but FIFO is probably full now */
1933 tc->rcv_nxt += written;
Florin Coras1f152cd2017-08-18 19:28:03 -07001934 error = TCP_ERROR_PARTIALLY_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001935 }
1936 else
1937 {
Dave Barach68b0fb02017-02-28 15:15:56 -05001938 return TCP_ERROR_FIFO_FULL;
1939 }
1940
Florin Coras6792ec02017-03-13 03:49:51 -07001941 /* Update SACK list if need be */
Florin Coras93992a92017-05-24 18:03:56 -07001942 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras6792ec02017-03-13 03:49:51 -07001943 {
1944 /* Remove SACK blocks that have been delivered */
1945 tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1946 }
1947
Florin Coras1f152cd2017-08-18 19:28:03 -07001948 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -05001949}
1950
1951/** Enqueue out-of-order data */
Florin Coras0dbd5172018-06-25 16:19:34 -07001952static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001953tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1954 u16 data_len)
1955{
Florin Coras288eaab2019-02-03 15:26:14 -08001956 session_t *s0;
Florin Coras3eb50622017-07-13 01:24:57 -04001957 int rv, offset;
Florin Coras6792ec02017-03-13 03:49:51 -07001958
Florin Corasf03a59a2017-06-09 21:07:32 -07001959 ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001960 ASSERT (data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001961
Florin Corasf03a59a2017-06-09 21:07:32 -07001962 /* Enqueue out-of-order data with relative offset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07001963 rv = session_enqueue_stream_connection (&tc->connection, b,
1964 vnet_buffer (b)->tcp.seq_number -
1965 tc->rcv_nxt, 0 /* queue event */ ,
1966 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001967
1968 /* Nothing written */
1969 if (rv)
1970 {
Florin Corasa436a422019-08-20 07:09:31 -07001971 TCP_EVT (TCP_EVT_INPUT, tc, 1, data_len, 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001972 return TCP_ERROR_FIFO_FULL;
1973 }
1974
Florin Corasa436a422019-08-20 07:09:31 -07001975 TCP_EVT (TCP_EVT_INPUT, tc, 1, data_len, data_len);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001976 tc->bytes_in += data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05001977
1978 /* Update SACK list if in use */
Florin Coras93992a92017-05-24 18:03:56 -07001979 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001980 {
1981 ooo_segment_t *newest;
1982 u32 start, end;
1983
Florin Corascea194d2017-10-02 00:18:51 -07001984 s0 = session_get (tc->c_s_index, tc->c_thread_index);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001985
Dave Barach68b0fb02017-02-28 15:15:56 -05001986 /* Get the newest segment from the fifo */
Florin Coras288eaab2019-02-03 15:26:14 -08001987 newest = svm_fifo_newest_ooo_segment (s0->rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001988 if (newest)
1989 {
Sirshak Das28aa5392019-02-05 01:33:33 -06001990 offset = ooo_segment_offset_prod (s0->rx_fifo, newest);
Florin Coras3eb50622017-07-13 01:24:57 -04001991 ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1992 start = tc->rcv_nxt + offset;
Florin Coras288eaab2019-02-03 15:26:14 -08001993 end = start + ooo_segment_length (s0->rx_fifo, newest);
Florin Corasf03a59a2017-06-09 21:07:32 -07001994 tcp_update_sack_list (tc, start, end);
Florin Coras288eaab2019-02-03 15:26:14 -08001995 svm_fifo_newest_ooo_segment_reset (s0->rx_fifo);
Florin Corasa436a422019-08-20 07:09:31 -07001996 TCP_EVT (TCP_EVT_CC_SACKS, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001997 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001998 }
1999
Florin Coras00cd22d2018-04-18 13:20:18 -07002000 return TCP_ERROR_ENQUEUED_OOO;
Dave Barach68b0fb02017-02-28 15:15:56 -05002001}
2002
2003/**
Florin Coras6792ec02017-03-13 03:49:51 -07002004 * Check if ACK could be delayed. If ack can be delayed, it should return
2005 * true for a full frame. If we're always acking return 0.
Dave Barach68b0fb02017-02-28 15:15:56 -05002006 */
2007always_inline int
2008tcp_can_delack (tcp_connection_t * tc)
2009{
Florin Coras6792ec02017-03-13 03:49:51 -07002010 /* Send ack if ... */
2011 if (TCP_ALWAYS_ACK
Florin Coras74b74372019-03-28 16:31:52 -07002012 /* just sent a rcv wnd 0
2013 || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0 */
Florin Coras6792ec02017-03-13 03:49:51 -07002014 /* constrained to send ack */
2015 || (tc->flags & TCP_CONN_SNDACK) != 0
2016 /* we're almost out of tx wnd */
Florin Corasca1c8f32018-05-23 21:01:30 -07002017 || tcp_available_cc_snd_space (tc) < 4 * tc->snd_mss)
Florin Coras6792ec02017-03-13 03:49:51 -07002018 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002019
Florin Coras6792ec02017-03-13 03:49:51 -07002020 return 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002021}
2022
2023static int
Florin Corasb2215d62017-08-01 16:56:58 -07002024tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
2025{
Florin Coras1f152cd2017-08-18 19:28:03 -07002026 u32 discard, first = b->current_length;
Florin Corasb2215d62017-08-01 16:56:58 -07002027 vlib_main_t *vm = vlib_get_main ();
2028
Florin Coras1f152cd2017-08-18 19:28:03 -07002029 /* Handle multi-buffer segments */
Florin Corasb2215d62017-08-01 16:56:58 -07002030 if (n_bytes_to_drop > b->current_length)
2031 {
2032 if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
2033 return -1;
2034 do
2035 {
2036 discard = clib_min (n_bytes_to_drop, b->current_length);
2037 vlib_buffer_advance (b, discard);
2038 b = vlib_get_buffer (vm, b->next_buffer);
2039 n_bytes_to_drop -= discard;
2040 }
2041 while (n_bytes_to_drop);
Florin Coras1f152cd2017-08-18 19:28:03 -07002042 if (n_bytes_to_drop > first)
2043 b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
Florin Corasb2215d62017-08-01 16:56:58 -07002044 }
Florin Coras1f152cd2017-08-18 19:28:03 -07002045 else
2046 vlib_buffer_advance (b, n_bytes_to_drop);
2047 vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
Florin Corasb2215d62017-08-01 16:56:58 -07002048 return 0;
2049}
2050
Florin Coras00cd22d2018-04-18 13:20:18 -07002051/**
2052 * Receive buffer for connection and handle acks
2053 *
2054 * It handles both in order or out-of-order data.
2055 */
Florin Corasb2215d62017-08-01 16:56:58 -07002056static int
Florin Coras7ac053b2018-11-05 15:57:21 -08002057tcp_segment_rcv (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
2058 vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -05002059{
Florin Coras00cd22d2018-04-18 13:20:18 -07002060 u32 error, n_bytes_to_drop, n_data_bytes;
Florin Coras6534b7a2017-07-18 05:38:03 -04002061
2062 vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
2063 n_data_bytes = vnet_buffer (b)->tcp.data_len;
2064 ASSERT (n_data_bytes);
Florin Corasedfe0ee2019-07-29 18:13:25 -07002065 tc->data_segs_in += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002066
2067 /* Handle out-of-order data */
2068 if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
2069 {
Florin Coras6792ec02017-03-13 03:49:51 -07002070 /* Old sequence numbers allowed through because they overlapped
2071 * the rx window */
2072 if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05002073 {
Florin Coras00cd22d2018-04-18 13:20:18 -07002074 /* Completely in the past (possible retransmit). Ack
2075 * retransmissions since we may not have any data to send */
Florin Corasf03a59a2017-06-09 21:07:32 -07002076 if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
Florin Coras6534b7a2017-07-18 05:38:03 -04002077 {
Florin Coras26dd6de2019-07-23 23:54:47 -07002078 tcp_program_ack (tc);
Florin Coras00cd22d2018-04-18 13:20:18 -07002079 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras6534b7a2017-07-18 05:38:03 -04002080 goto done;
2081 }
Dave Barach259cdae2017-05-15 16:27:05 -04002082
Florin Coras00cd22d2018-04-18 13:20:18 -07002083 /* Chop off the bytes in the past and see if what is left
2084 * can be enqueued in order */
Florin Corasdb84e572017-05-09 18:54:52 -07002085 n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
2086 n_data_bytes -= n_bytes_to_drop;
Dave Barach2c25a622017-06-26 11:35:07 -04002087 vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07002088 if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
Florin Coras00cd22d2018-04-18 13:20:18 -07002089 {
2090 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras00cd22d2018-04-18 13:20:18 -07002091 goto done;
2092 }
Florin Corasdb84e572017-05-09 18:54:52 -07002093 goto in_order;
Dave Barach68b0fb02017-02-28 15:15:56 -05002094 }
2095
Florin Coras00cd22d2018-04-18 13:20:18 -07002096 /* RFC2581: Enqueue and send DUPACK for fast retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07002097 error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
Florin Coras26dd6de2019-07-23 23:54:47 -07002098 tcp_program_dupack (tc);
Florin Corasa436a422019-08-20 07:09:31 -07002099 TCP_EVT (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
Florin Corasedfe0ee2019-07-29 18:13:25 -07002100 tc->errors.above_data_wnd += seq_gt (vnet_buffer (b)->tcp.seq_end,
2101 tc->rcv_las + tc->rcv_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -05002102 goto done;
2103 }
2104
Florin Corasdb84e572017-05-09 18:54:52 -07002105in_order:
2106
Dave Barach68b0fb02017-02-28 15:15:56 -05002107 /* In order data, enqueue. Fifo figures out by itself if any out-of-order
2108 * segments can be enqueued after fifo tail offset changes. */
2109 error = tcp_session_enqueue_data (tc, b, n_data_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07002110 if (tcp_can_delack (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05002111 {
Florin Coras6792ec02017-03-13 03:49:51 -07002112 if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
Florin Coras9094b5c2019-08-12 14:17:47 -07002113 tcp_timer_set (tc, TCP_TIMER_DELACK, tcp_cfg.delack_time);
Florin Coras3e350af2017-03-30 02:54:28 -07002114 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05002115 }
2116
Florin Coras26dd6de2019-07-23 23:54:47 -07002117 tcp_program_ack (tc);
Florin Coras3e350af2017-03-30 02:54:28 -07002118
Dave Barach68b0fb02017-02-28 15:15:56 -05002119done:
2120 return error;
2121}
2122
Clement Durand6cf260c2017-04-13 13:27:04 +02002123typedef struct
2124{
2125 tcp_header_t tcp_header;
2126 tcp_connection_t tcp_connection;
2127} tcp_rx_trace_t;
2128
Florin Coras0dbd5172018-06-25 16:19:34 -07002129static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02002130format_tcp_rx_trace (u8 * s, va_list * args)
2131{
2132 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2133 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2134 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
Florin Coras30928f82020-01-27 19:21:28 -08002135 tcp_connection_t *tc = &t->tcp_connection;
Christophe Fontained3c008d2017-10-02 18:10:54 +02002136 u32 indent = format_get_indent (s);
Clement Durand6cf260c2017-04-13 13:27:04 +02002137
Florin Coras30928f82020-01-27 19:21:28 -08002138 s = format (s, "%U state %U\n%U%U", format_tcp_connection_id, tc,
2139 format_tcp_state, tc->state, format_white_space, indent,
2140 format_tcp_header, &t->tcp_header, 128);
Clement Durand6cf260c2017-04-13 13:27:04 +02002141
2142 return s;
2143}
2144
Florin Coras0dbd5172018-06-25 16:19:34 -07002145static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02002146format_tcp_rx_trace_short (u8 * s, va_list * args)
2147{
2148 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2149 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2150 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
2151
2152 s = format (s, "%d -> %d (%U)",
Florin Coras4df38712018-06-20 12:44:16 -07002153 clib_net_to_host_u16 (t->tcp_header.dst_port),
2154 clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state,
Florin Corasbb292f42017-05-19 09:49:19 -07002155 t->tcp_connection.state);
Clement Durand6cf260c2017-04-13 13:27:04 +02002156
2157 return s;
2158}
2159
Florin Coras4df38712018-06-20 12:44:16 -07002160static void
Florin Coras82b13a82017-04-25 11:58:06 -07002161tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
2162 tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
2163{
2164 if (tc0)
2165 {
Dave Barach178cf492018-11-13 16:34:13 -05002166 clib_memcpy_fast (&t0->tcp_connection, tc0,
2167 sizeof (t0->tcp_connection));
Florin Coras82b13a82017-04-25 11:58:06 -07002168 }
2169 else
2170 {
2171 th0 = tcp_buffer_hdr (b0);
2172 }
Dave Barach178cf492018-11-13 16:34:13 -05002173 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
Florin Coras82b13a82017-04-25 11:58:06 -07002174}
2175
Florin Coras4df38712018-06-20 12:44:16 -07002176static void
2177tcp_established_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2178 vlib_frame_t * frame, u8 is_ip4)
2179{
2180 u32 *from, n_left;
2181
2182 n_left = frame->n_vectors;
2183 from = vlib_frame_vector_args (frame);
2184
2185 while (n_left >= 1)
2186 {
2187 tcp_connection_t *tc0;
2188 tcp_rx_trace_t *t0;
2189 tcp_header_t *th0;
2190 vlib_buffer_t *b0;
2191 u32 bi0;
2192
2193 bi0 = from[0];
2194 b0 = vlib_get_buffer (vm, bi0);
2195
2196 if (b0->flags & VLIB_BUFFER_IS_TRACED)
2197 {
2198 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2199 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2200 vm->thread_index);
2201 th0 = tcp_buffer_hdr (b0);
2202 tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
2203 }
2204
2205 from += 1;
2206 n_left -= 1;
2207 }
2208}
2209
Florin Coras6792ec02017-03-13 03:49:51 -07002210always_inline void
Florin Coras00cd22d2018-04-18 13:20:18 -07002211tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
2212 u8 is_ip4, u32 evt, u32 val)
Dave Barach68b0fb02017-02-28 15:15:56 -05002213{
Florin Coras6792ec02017-03-13 03:49:51 -07002214 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -07002215 vlib_node_increment_counter (vm, tcp4_node, evt, val);
Florin Coras6792ec02017-03-13 03:49:51 -07002216 else
Florin Coras3cbc04b2017-10-02 00:18:51 -07002217 vlib_node_increment_counter (vm, tcp6_node, evt, val);
Dave Barach68b0fb02017-02-28 15:15:56 -05002218}
2219
Florin Coras00cd22d2018-04-18 13:20:18 -07002220#define tcp_maybe_inc_counter(node_id, err, count) \
2221{ \
2222 if (next0 != tcp_next_drop (is_ip4)) \
2223 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2224 tcp6_##node_id##_node.index, is_ip4, err, \
2225 1); \
2226}
2227#define tcp_inc_counter(node_id, err, count) \
2228 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2229 tcp6_##node_id##_node.index, is_ip4, \
2230 err, count)
2231#define tcp_maybe_inc_err_counter(cnts, err) \
2232{ \
2233 cnts[err] += (next0 != tcp_next_drop (is_ip4)); \
2234}
2235#define tcp_inc_err_counter(cnts, err, val) \
2236{ \
2237 cnts[err] += val; \
2238}
2239#define tcp_store_err_counters(node_id, cnts) \
2240{ \
2241 int i; \
2242 for (i = 0; i < TCP_N_ERROR; i++) \
2243 if (cnts[i]) \
2244 tcp_inc_counter(node_id, i, cnts[i]); \
2245}
2246
2247
Dave Barach68b0fb02017-02-28 15:15:56 -05002248always_inline uword
2249tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07002250 vlib_frame_t * frame, int is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05002251{
Florin Coras4df38712018-06-20 12:44:16 -07002252 u32 thread_index = vm->thread_index, errors = 0;
Florin Coras9ece3c02018-11-05 11:06:53 -08002253 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08002254 u32 n_left_from, *from, *first_buffer;
Florin Coras00cd22d2018-04-18 13:20:18 -07002255 u16 err_counters[TCP_N_ERROR] = { 0 };
Dave Barach68b0fb02017-02-28 15:15:56 -05002256
Florin Coras4df38712018-06-20 12:44:16 -07002257 if (node->flags & VLIB_NODE_FLAG_TRACE)
2258 tcp_established_trace_frame (vm, node, frame, is_ip4);
2259
Florin Coras7ac053b2018-11-05 15:57:21 -08002260 first_buffer = from = vlib_frame_vector_args (frame);
Florin Coras4df38712018-06-20 12:44:16 -07002261 n_left_from = frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002262
2263 while (n_left_from > 0)
2264 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002265 u32 bi0, error0 = TCP_ERROR_ACK_OK;
2266 vlib_buffer_t *b0;
Florin Coras3c514d52018-12-22 11:39:33 -08002267 tcp_header_t *th0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002268 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002269
Florin Coras7ac053b2018-11-05 15:57:21 -08002270 if (n_left_from > 1)
Dave Barach68b0fb02017-02-28 15:15:56 -05002271 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002272 vlib_buffer_t *pb;
2273 pb = vlib_get_buffer (vm, from[1]);
2274 vlib_prefetch_buffer_header (pb, LOAD);
2275 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
Dave Barach68b0fb02017-02-28 15:15:56 -05002276 }
2277
Florin Coras7ac053b2018-11-05 15:57:21 -08002278 bi0 = from[0];
2279 from += 1;
2280 n_left_from -= 1;
2281
2282 b0 = vlib_get_buffer (vm, bi0);
2283 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2284 thread_index);
2285
2286 if (PREDICT_FALSE (tc0 == 0))
2287 {
2288 error0 = TCP_ERROR_INVALID_CONNECTION;
2289 goto done;
2290 }
2291
2292 th0 = tcp_buffer_hdr (b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002293
2294 /* TODO header prediction fast path */
2295
2296 /* 1-4: check SEQ, RST, SYN */
2297 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, th0, &error0)))
2298 {
Florin Corasa436a422019-08-20 07:09:31 -07002299 TCP_EVT (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp);
Florin Coras7ac053b2018-11-05 15:57:21 -08002300 goto done;
2301 }
2302
2303 /* 5: check the ACK field */
2304 if (PREDICT_FALSE (tcp_rcv_ack (wrk, tc0, b0, th0, &error0)))
2305 goto done;
2306
2307 /* 6: check the URG bit TODO */
2308
2309 /* 7: process the segment text */
2310 if (vnet_buffer (b0)->tcp.data_len)
2311 error0 = tcp_segment_rcv (wrk, tc0, b0);
2312
2313 /* 8: check the FIN bit */
Florin Coras3c514d52018-12-22 11:39:33 -08002314 if (PREDICT_FALSE (tcp_is_fin (th0)))
Florin Corasb11175d2018-11-09 14:34:08 -08002315 tcp_rcv_fin (wrk, tc0, b0, &error0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002316
2317 done:
2318 tcp_inc_err_counter (err_counters, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002319 }
2320
Florin Coras31c99552019-03-01 13:00:58 -08002321 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2322 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002323 err_counters[TCP_ERROR_MSG_QUEUE_FULL] = errors;
Florin Coras00cd22d2018-04-18 13:20:18 -07002324 tcp_store_err_counters (established, err_counters);
Florin Coras9ece3c02018-11-05 11:06:53 -08002325 tcp_handle_postponed_dequeues (wrk);
Florin Corasb11175d2018-11-09 14:34:08 -08002326 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08002327 vlib_buffer_free (vm, first_buffer, frame->n_vectors);
Florin Coras4df38712018-06-20 12:44:16 -07002328
2329 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002330}
2331
Filip Tehlare275bed2019-03-06 00:06:56 -08002332VLIB_NODE_FN (tcp4_established_node) (vlib_main_t * vm,
2333 vlib_node_runtime_t * node,
2334 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002335{
2336 return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2337}
2338
Filip Tehlare275bed2019-03-06 00:06:56 -08002339VLIB_NODE_FN (tcp6_established_node) (vlib_main_t * vm,
2340 vlib_node_runtime_t * node,
2341 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002342{
2343 return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2344}
2345
2346/* *INDENT-OFF* */
2347VLIB_REGISTER_NODE (tcp4_established_node) =
2348{
Dave Barach68b0fb02017-02-28 15:15:56 -05002349 .name = "tcp4-established",
2350 /* Takes a vector of packets. */
2351 .vector_size = sizeof (u32),
Florin Corase69f4952017-03-07 10:06:24 -08002352 .n_errors = TCP_N_ERROR,
2353 .error_strings = tcp_error_strings,
Dave Barach68b0fb02017-02-28 15:15:56 -05002354 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2355 .next_nodes =
2356 {
2357#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2358 foreach_tcp_state_next
2359#undef _
2360 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002361 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002362};
2363/* *INDENT-ON* */
2364
Dave Barach68b0fb02017-02-28 15:15:56 -05002365/* *INDENT-OFF* */
2366VLIB_REGISTER_NODE (tcp6_established_node) =
2367{
Dave Barach68b0fb02017-02-28 15:15:56 -05002368 .name = "tcp6-established",
2369 /* Takes a vector of packets. */
2370 .vector_size = sizeof (u32),
2371 .n_errors = TCP_N_ERROR,
2372 .error_strings = tcp_error_strings,
2373 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2374 .next_nodes =
2375 {
2376#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2377 foreach_tcp_state_next
2378#undef _
2379 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002380 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002381};
2382/* *INDENT-ON* */
2383
2384
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002385static u8
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002386tcp_lookup_is_valid (tcp_connection_t * tc, vlib_buffer_t * b,
2387 tcp_header_t * hdr)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002388{
Florin Corascea194d2017-10-02 00:18:51 -07002389 transport_connection_t *tmp = 0;
2390 u64 handle;
2391
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002392 if (!tc)
2393 return 1;
2394
Florin Coras70131132017-11-27 02:43:30 -08002395 /* Proxy case */
2396 if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
2397 return 1;
2398
Florin Coras07df7912019-11-07 08:26:06 -08002399 u8 is_ip_valid = 0, val_l, val_r;
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002400
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002401 if (tc->connection.is_ip4)
2402 {
2403 ip4_header_t *ip4_hdr = (ip4_header_t *) vlib_buffer_get_current (b);
Florin Coras07df7912019-11-07 08:26:06 -08002404
2405 val_l = !ip4_address_compare (&ip4_hdr->dst_address,
2406 &tc->connection.lcl_ip.ip4);
2407 val_l = val_l || ip_is_zero (&tc->connection.lcl_ip, 1);
2408 val_r = !ip4_address_compare (&ip4_hdr->src_address,
2409 &tc->connection.rmt_ip.ip4);
2410 val_r = val_r || tc->state == TCP_STATE_LISTEN;
2411 is_ip_valid = val_l && val_r;
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002412 }
2413 else
2414 {
2415 ip6_header_t *ip6_hdr = (ip6_header_t *) vlib_buffer_get_current (b);
Florin Coras07df7912019-11-07 08:26:06 -08002416
2417 val_l = !ip6_address_compare (&ip6_hdr->dst_address,
2418 &tc->connection.lcl_ip.ip6);
2419 val_l = val_l || ip_is_zero (&tc->connection.lcl_ip, 0);
2420 val_r = !ip6_address_compare (&ip6_hdr->src_address,
2421 &tc->connection.rmt_ip.ip6);
2422 val_r = val_r || tc->state == TCP_STATE_LISTEN;
2423 is_ip_valid = val_l && val_r;
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002424 }
2425
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002426 u8 is_valid = (tc->c_lcl_port == hdr->dst_port
2427 && (tc->state == TCP_STATE_LISTEN
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002428 || tc->c_rmt_port == hdr->src_port) && is_ip_valid);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002429
2430 if (!is_valid)
2431 {
Florin Corascea194d2017-10-02 00:18:51 -07002432 handle = session_lookup_half_open_handle (&tc->connection);
2433 tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
Florin Coras3cbc04b2017-10-02 00:18:51 -07002434 tc->c_proto, tc->c_is_ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002435
2436 if (tmp)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002437 {
2438 if (tmp->lcl_port == hdr->dst_port
2439 && tmp->rmt_port == hdr->src_port)
2440 {
Florin Corascea194d2017-10-02 00:18:51 -07002441 TCP_DBG ("half-open is valid!");
Ryujiro Shibuya3ea17d52019-11-05 07:24:32 +00002442 is_valid = 1;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002443 }
2444 }
2445 }
2446 return is_valid;
2447}
2448
2449/**
2450 * Lookup transport connection
2451 */
2452static tcp_connection_t *
Florin Corascea194d2017-10-02 00:18:51 -07002453tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
2454 u8 is_ip4)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002455{
2456 tcp_header_t *tcp;
2457 transport_connection_t *tconn;
2458 tcp_connection_t *tc;
Florin Corasdff48db2017-11-19 18:06:58 -08002459 u8 is_filtered = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002460 if (is_ip4)
2461 {
2462 ip4_header_t *ip4;
2463 ip4 = vlib_buffer_get_current (b);
2464 tcp = ip4_next_header (ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002465 tconn = session_lookup_connection_wt4 (fib_index,
2466 &ip4->dst_address,
2467 &ip4->src_address,
2468 tcp->dst_port,
2469 tcp->src_port,
2470 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002471 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002472 tc = tcp_get_connection_from_transport (tconn);
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002473 ASSERT (tcp_lookup_is_valid (tc, b, tcp));
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002474 }
2475 else
2476 {
2477 ip6_header_t *ip6;
2478 ip6 = vlib_buffer_get_current (b);
2479 tcp = ip6_next_header (ip6);
Florin Corascea194d2017-10-02 00:18:51 -07002480 tconn = session_lookup_connection_wt6 (fib_index,
2481 &ip6->dst_address,
2482 &ip6->src_address,
2483 tcp->dst_port,
2484 tcp->src_port,
2485 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002486 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002487 tc = tcp_get_connection_from_transport (tconn);
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002488 ASSERT (tcp_lookup_is_valid (tc, b, tcp));
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002489 }
2490 return tc;
2491}
2492
Yu Pingb092b772019-12-27 04:04:33 +08002493static tcp_connection_t *
2494tcp_lookup_listener (vlib_buffer_t * b, u32 fib_index, int is_ip4)
2495{
2496 session_t *s;
2497
2498 if (is_ip4)
2499 {
2500 ip4_header_t *ip4 = vlib_buffer_get_current (b);
2501 tcp_header_t *tcp = tcp_buffer_hdr (b);
2502 s = session_lookup_listener4 (fib_index,
2503 &ip4->dst_address,
2504 tcp->dst_port, TRANSPORT_PROTO_TCP, 1);
2505 }
2506 else
2507 {
2508 ip6_header_t *ip6 = vlib_buffer_get_current (b);
2509 tcp_header_t *tcp = tcp_buffer_hdr (b);
2510 s = session_lookup_listener6 (fib_index,
2511 &ip6->dst_address,
2512 tcp->dst_port, TRANSPORT_PROTO_TCP, 1);
2513
2514 }
2515 if (PREDICT_TRUE (s != 0))
2516 return tcp_get_connection_from_transport (transport_get_listener
2517 (TRANSPORT_PROTO_TCP,
2518 s->connection_index));
2519 else
2520 return 0;
2521}
2522
Simon Zhang1146ff42019-09-02 22:54:00 +08002523always_inline void
2524tcp_check_tx_offload (tcp_connection_t * tc, int is_ipv4)
2525{
2526 vnet_main_t *vnm = vnet_get_main ();
2527 const dpo_id_t *dpo;
2528 const load_balance_t *lb;
2529 vnet_hw_interface_t *hw_if;
2530 u32 sw_if_idx, lb_idx;
2531
2532 if (is_ipv4)
2533 {
2534 ip4_address_t *dst_addr = &(tc->c_rmt_ip.ip4);
2535 lb_idx = ip4_fib_forwarding_lookup (tc->c_fib_index, dst_addr);
2536 }
2537 else
2538 {
2539 ip6_address_t *dst_addr = &(tc->c_rmt_ip.ip6);
2540 lb_idx = ip6_fib_table_fwding_lookup (tc->c_fib_index, dst_addr);
2541 }
2542
2543 lb = load_balance_get (lb_idx);
Simon Zhang79bfb9e2019-12-24 20:02:20 +08002544 if (PREDICT_FALSE (lb->lb_n_buckets > 1))
2545 return;
Simon Zhang1146ff42019-09-02 22:54:00 +08002546 dpo = load_balance_get_bucket_i (lb, 0);
2547
Simon Zhang79bfb9e2019-12-24 20:02:20 +08002548 sw_if_idx = dpo_get_urpf (dpo);
2549 if (PREDICT_FALSE (sw_if_idx == ~0))
2550 return;
Simon Zhang1146ff42019-09-02 22:54:00 +08002551
Simon Zhang79bfb9e2019-12-24 20:02:20 +08002552 hw_if = vnet_get_sup_hw_interface (vnm, sw_if_idx);
Florin Corasbbcfaac2019-10-10 13:52:04 -07002553 if (hw_if->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_GSO)
2554 tc->cfg_flags |= TCP_CFG_F_TSO;
Simon Zhang1146ff42019-09-02 22:54:00 +08002555}
2556
Dave Barach68b0fb02017-02-28 15:15:56 -05002557always_inline uword
2558tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2559 vlib_frame_t * from_frame, int is_ip4)
2560{
Florin Coras7ac053b2018-11-05 15:57:21 -08002561 u32 n_left_from, *from, *first_buffer, errors = 0;
2562 u32 my_thread_index = vm->thread_index;
2563 tcp_worker_ctx_t *wrk = tcp_get_worker (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05002564
Florin Coras7ac053b2018-11-05 15:57:21 -08002565 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002566 n_left_from = from_frame->n_vectors;
2567
Dave Barach68b0fb02017-02-28 15:15:56 -05002568 while (n_left_from > 0)
2569 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002570 u32 bi0, ack0, seq0, error0 = TCP_ERROR_NONE;
2571 tcp_connection_t *tc0, *new_tc0;
2572 tcp_header_t *tcp0 = 0;
2573 tcp_rx_trace_t *t0;
2574 vlib_buffer_t *b0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002575
Florin Coras7ac053b2018-11-05 15:57:21 -08002576 bi0 = from[0];
2577 from += 1;
2578 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002579
Florin Coras7ac053b2018-11-05 15:57:21 -08002580 b0 = vlib_get_buffer (vm, bi0);
2581 tc0 =
2582 tcp_half_open_connection_get (vnet_buffer (b0)->tcp.connection_index);
2583 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002584 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002585 error0 = TCP_ERROR_INVALID_CONNECTION;
2586 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002587 }
2588
Florin Coras7ac053b2018-11-05 15:57:21 -08002589 /* Half-open completed recently but the connection was't removed
2590 * yet by the owning thread */
2591 if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2592 {
2593 /* Make sure the connection actually exists */
2594 ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2595 my_thread_index, is_ip4));
Florin Coras222e1f412019-02-16 20:47:32 -08002596 error0 = TCP_ERROR_SPURIOUS_SYN_ACK;
Florin Coras7ac053b2018-11-05 15:57:21 -08002597 goto drop;
2598 }
2599
2600 ack0 = vnet_buffer (b0)->tcp.ack_number;
2601 seq0 = vnet_buffer (b0)->tcp.seq_number;
2602 tcp0 = tcp_buffer_hdr (b0);
2603
2604 /* Crude check to see if the connection handle does not match
2605 * the packet. Probably connection just switched to established */
2606 if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2607 || tcp0->src_port != tc0->c_rmt_port))
2608 {
2609 error0 = TCP_ERROR_INVALID_CONNECTION;
2610 goto drop;
2611 }
2612
2613 if (PREDICT_FALSE (!tcp_ack (tcp0) && !tcp_rst (tcp0)
2614 && !tcp_syn (tcp0)))
2615 {
2616 error0 = TCP_ERROR_SEGMENT_INVALID;
2617 goto drop;
2618 }
2619
Florin Coras3c514d52018-12-22 11:39:33 -08002620 /* SYNs consume sequence numbers */
2621 vnet_buffer (b0)->tcp.seq_end += tcp_is_syn (tcp0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002622
2623 /*
2624 * 1. check the ACK bit
2625 */
2626
2627 /*
2628 * If the ACK bit is set
2629 * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2630 * the RST bit is set, if so drop the segment and return)
2631 * <SEQ=SEG.ACK><CTL=RST>
2632 * and discard the segment. Return.
2633 * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2634 */
2635 if (tcp_ack (tcp0))
2636 {
2637 if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
2638 {
2639 if (!tcp_rst (tcp0))
Florin Corasd4c49be2019-02-07 00:15:53 -08002640 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002641 error0 = TCP_ERROR_RCV_WND;
2642 goto drop;
2643 }
2644
2645 /* Make sure ACK is valid */
2646 if (seq_gt (tc0->snd_una, ack0))
2647 {
2648 error0 = TCP_ERROR_ACK_INVALID;
2649 goto drop;
2650 }
2651 }
2652
2653 /*
2654 * 2. check the RST bit
2655 */
2656
2657 if (tcp_rst (tcp0))
2658 {
2659 /* If ACK is acceptable, signal client that peer is not
2660 * willing to accept connection and drop connection*/
2661 if (tcp_ack (tcp0))
Florin Coras6939d5e2020-02-10 23:22:34 +00002662 tcp_rcv_rst (wrk, tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002663 error0 = TCP_ERROR_RST_RCVD;
2664 goto drop;
2665 }
2666
2667 /*
2668 * 3. check the security and precedence (skipped)
2669 */
2670
2671 /*
2672 * 4. check the SYN bit
2673 */
2674
2675 /* No SYN flag. Drop. */
2676 if (!tcp_syn (tcp0))
2677 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002678 error0 = TCP_ERROR_SEGMENT_INVALID;
2679 goto drop;
2680 }
2681
2682 /* Parse options */
Florin Coras80231112018-12-05 15:59:31 -08002683 if (tcp_options_parse (tcp0, &tc0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08002684 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002685 error0 = TCP_ERROR_OPTIONS;
2686 goto drop;
2687 }
2688
2689 /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2690 * current thread pool. */
Florin Coras12f69362019-08-16 09:44:00 -07002691 new_tc0 = tcp_connection_alloc_w_base (my_thread_index, tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002692 new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2693 new_tc0->irs = seq0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002694 new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
2695 new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
2696
2697 /* If this is not the owning thread, wait for syn retransmit to
2698 * expire and cleanup then */
2699 if (tcp_half_open_connection_cleanup (tc0))
2700 tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
2701
2702 if (tcp_opts_tstamp (&new_tc0->rcv_opts))
2703 {
2704 new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
2705 new_tc0->tsval_recent_age = tcp_time_now ();
2706 }
2707
2708 if (tcp_opts_wscale (&new_tc0->rcv_opts))
2709 new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
Florin Corase80b5912018-12-12 19:25:43 -08002710 else
2711 new_tc0->rcv_wscale = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002712
2713 new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2714 << new_tc0->snd_wscale;
2715 new_tc0->snd_wl1 = seq0;
2716 new_tc0->snd_wl2 = ack0;
2717
2718 tcp_connection_init_vars (new_tc0);
2719
2720 /* SYN-ACK: See if we can switch to ESTABLISHED state */
2721 if (PREDICT_TRUE (tcp_ack (tcp0)))
2722 {
2723 /* Our SYN is ACKed: we have iss < ack = snd_una */
2724
2725 /* TODO Dequeue acknowledged segments if we support Fast Open */
2726 new_tc0->snd_una = ack0;
2727 new_tc0->state = TCP_STATE_ESTABLISHED;
2728
2729 /* Make sure las is initialized for the wnd computation */
2730 new_tc0->rcv_las = new_tc0->rcv_nxt;
2731
2732 /* Notify app that we have connection. If session layer can't
2733 * allocate session send reset */
2734 if (session_stream_connect_notify (&new_tc0->connection, 0))
2735 {
Florin Corasd4c49be2019-02-07 00:15:53 -08002736 tcp_send_reset_w_pkt (new_tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002737 tcp_connection_cleanup (new_tc0);
Florin Coras718a0552019-06-07 07:03:01 -07002738 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
Florin Coras7ac053b2018-11-05 15:57:21 -08002739 goto drop;
2740 }
2741
Florin Coras2e31cc32018-09-25 14:00:34 -07002742 new_tc0->tx_fifo_size =
2743 transport_tx_fifo_size (&new_tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002744 /* Update rtt with the syn-ack sample */
Florin Corasefefc6b2018-11-07 12:49:19 -08002745 tcp_estimate_initial_rtt (new_tc0);
Florin Corasa436a422019-08-20 07:09:31 -07002746 TCP_EVT (TCP_EVT_SYNACK_RCVD, new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002747 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2748 }
2749 /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2750 else
2751 {
2752 new_tc0->state = TCP_STATE_SYN_RCVD;
2753
2754 /* Notify app that we have connection */
2755 if (session_stream_connect_notify (&new_tc0->connection, 0))
2756 {
2757 tcp_connection_cleanup (new_tc0);
Florin Corasd4c49be2019-02-07 00:15:53 -08002758 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Corasa436a422019-08-20 07:09:31 -07002759 TCP_EVT (TCP_EVT_RST_SENT, tc0);
Florin Coras718a0552019-06-07 07:03:01 -07002760 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
Florin Coras7ac053b2018-11-05 15:57:21 -08002761 goto drop;
2762 }
2763
Florin Coras2e31cc32018-09-25 14:00:34 -07002764 new_tc0->tx_fifo_size =
2765 transport_tx_fifo_size (&new_tc0->connection);
2766 new_tc0->rtt_ts = 0;
2767 tcp_init_snd_vars (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002768 tcp_send_synack (new_tc0);
2769 error0 = TCP_ERROR_SYNS_RCVD;
2770 goto drop;
2771 }
2772
Florin Corasbbcfaac2019-10-10 13:52:04 -07002773 if (!(new_tc0->cfg_flags & TCP_CFG_F_NO_TSO))
2774 tcp_check_tx_offload (new_tc0, is_ip4);
Simon Zhang1146ff42019-09-02 22:54:00 +08002775
Florin Coras7ac053b2018-11-05 15:57:21 -08002776 /* Read data, if any */
2777 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
2778 {
2779 clib_warning ("rcvd data in syn-sent");
2780 error0 = tcp_segment_rcv (wrk, new_tc0, b0);
2781 if (error0 == TCP_ERROR_ACK_OK)
2782 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2783 }
2784 else
2785 {
Florin Corascb711a42019-10-16 19:28:17 -07002786 /* Send ack now instead of programming it because connection was
2787 * just established and it's not optional. */
2788 tcp_send_ack (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002789 }
2790
2791 drop:
2792
2793 tcp_inc_counter (syn_sent, error0, 1);
2794 if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
2795 {
2796 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05002797 clib_memcpy_fast (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2798 clib_memcpy_fast (&t0->tcp_connection, tc0,
2799 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08002800 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002801 }
2802
Florin Coras31c99552019-03-01 13:00:58 -08002803 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2804 my_thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002805 tcp_inc_counter (syn_sent, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras7ac053b2018-11-05 15:57:21 -08002806 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
Florin Coras6939d5e2020-02-10 23:22:34 +00002807 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08002808
Dave Barach68b0fb02017-02-28 15:15:56 -05002809 return from_frame->n_vectors;
2810}
2811
Filip Tehlare275bed2019-03-06 00:06:56 -08002812VLIB_NODE_FN (tcp4_syn_sent_node) (vlib_main_t * vm,
2813 vlib_node_runtime_t * node,
2814 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002815{
2816 return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2817}
2818
Filip Tehlare275bed2019-03-06 00:06:56 -08002819VLIB_NODE_FN (tcp6_syn_sent_node) (vlib_main_t * vm,
2820 vlib_node_runtime_t * node,
2821 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002822{
2823 return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2824}
2825
2826/* *INDENT-OFF* */
2827VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2828{
Dave Barach68b0fb02017-02-28 15:15:56 -05002829 .name = "tcp4-syn-sent",
2830 /* Takes a vector of packets. */
2831 .vector_size = sizeof (u32),
2832 .n_errors = TCP_N_ERROR,
2833 .error_strings = tcp_error_strings,
2834 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2835 .next_nodes =
2836 {
2837#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2838 foreach_tcp_state_next
2839#undef _
2840 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002841 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002842};
2843/* *INDENT-ON* */
2844
Dave Barach68b0fb02017-02-28 15:15:56 -05002845/* *INDENT-OFF* */
2846VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2847{
Dave Barach68b0fb02017-02-28 15:15:56 -05002848 .name = "tcp6-syn-sent",
2849 /* Takes a vector of packets. */
2850 .vector_size = sizeof (u32),
2851 .n_errors = TCP_N_ERROR,
2852 .error_strings = tcp_error_strings,
2853 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2854 .next_nodes =
2855 {
2856#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2857 foreach_tcp_state_next
2858#undef _
Clement Durand6cf260c2017-04-13 13:27:04 +02002859 },
2860 .format_trace = format_tcp_rx_trace_short,
2861};
Dave Barach68b0fb02017-02-28 15:15:56 -05002862/* *INDENT-ON* */
2863
Dave Barach68b0fb02017-02-28 15:15:56 -05002864/**
Florin Corasd79b41e2017-03-04 05:37:52 -08002865 * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
Dave Barach68b0fb02017-02-28 15:15:56 -05002866 * as per RFC793 p. 64
2867 */
2868always_inline uword
2869tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2870 vlib_frame_t * from_frame, int is_ip4)
2871{
Florin Coras7ac053b2018-11-05 15:57:21 -08002872 u32 thread_index = vm->thread_index, errors = 0, *first_buffer;
2873 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras78cc4b02018-12-20 18:24:49 -08002874 u32 n_left_from, *from, max_dequeue;
Dave Barach68b0fb02017-02-28 15:15:56 -05002875
Florin Coras7ac053b2018-11-05 15:57:21 -08002876 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002877 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002878
2879 while (n_left_from > 0)
2880 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002881 u32 bi0, error0 = TCP_ERROR_NONE;
2882 tcp_header_t *tcp0 = 0;
2883 tcp_connection_t *tc0;
2884 vlib_buffer_t *b0;
2885 u8 is_fin0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002886
Florin Coras7ac053b2018-11-05 15:57:21 -08002887 bi0 = from[0];
2888 from += 1;
2889 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002890
Florin Coras7ac053b2018-11-05 15:57:21 -08002891 b0 = vlib_get_buffer (vm, bi0);
2892 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2893 thread_index);
2894 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002895 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002896 error0 = TCP_ERROR_INVALID_CONNECTION;
2897 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002898 }
2899
Florin Coras7ac053b2018-11-05 15:57:21 -08002900 tcp0 = tcp_buffer_hdr (b0);
2901 is_fin0 = tcp_is_fin (tcp0);
2902
Florin Coras7ac053b2018-11-05 15:57:21 -08002903 if (CLIB_DEBUG)
2904 {
Ryujiro Shibuyac8be8512019-10-28 00:32:12 +00002905 if (!(tc0->connection.flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
Florin Coras7ac053b2018-11-05 15:57:21 -08002906 {
Ryujiro Shibuyac8be8512019-10-28 00:32:12 +00002907 tcp_connection_t *tmp;
2908 tmp = tcp_lookup_connection (tc0->c_fib_index, b0, thread_index,
2909 is_ip4);
2910 if (tmp->state != tc0->state)
2911 {
2912 if (tc0->state != TCP_STATE_CLOSED)
2913 clib_warning ("state changed");
2914 goto drop;
2915 }
Florin Coras7ac053b2018-11-05 15:57:21 -08002916 }
2917 }
2918
2919 /*
2920 * Special treatment for CLOSED
2921 */
2922 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
2923 {
2924 error0 = TCP_ERROR_CONNECTION_CLOSED;
2925 goto drop;
2926 }
2927
2928 /*
2929 * For all other states (except LISTEN)
2930 */
2931
2932 /* 1-4: check SEQ, RST, SYN */
2933 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, tcp0, &error0)))
2934 goto drop;
2935
2936 /* 5: check the ACK field */
2937 switch (tc0->state)
2938 {
2939 case TCP_STATE_SYN_RCVD:
Florin Corasf65074e2019-03-31 17:17:11 -07002940
2941 /* Make sure the segment is exactly right */
2942 if (tc0->rcv_nxt != vnet_buffer (b0)->tcp.seq_number || is_fin0)
2943 {
Florin Coras4dc10a42020-02-11 05:31:49 +00002944 tcp_send_reset_w_pkt (tc0, b0, thread_index, is_ip4);
Florin Corasf65074e2019-03-31 17:17:11 -07002945 error0 = TCP_ERROR_SEGMENT_INVALID;
2946 goto drop;
2947 }
2948
Florin Coras7ac053b2018-11-05 15:57:21 -08002949 /*
2950 * If the segment acknowledgment is not acceptable, form a
2951 * reset segment,
2952 * <SEQ=SEG.ACK><CTL=RST>
2953 * and send it.
2954 */
Florin Corasf65074e2019-03-31 17:17:11 -07002955 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08002956 {
Florin Coras4dc10a42020-02-11 05:31:49 +00002957 tcp_send_reset_w_pkt (tc0, b0, thread_index, is_ip4);
2958 error0 = TCP_ERROR_SEGMENT_INVALID;
Florin Coras4850e3e2018-12-12 14:34:38 -08002959 goto drop;
2960 }
2961
Florin Coras7ac053b2018-11-05 15:57:21 -08002962 /* Update rtt and rto */
Florin Corasefefc6b2018-11-07 12:49:19 -08002963 tcp_estimate_initial_rtt (tc0);
Florin Coras36ebcff2019-09-12 18:36:44 -07002964 tcp_connection_tx_pacer_update (tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002965
2966 /* Switch state to ESTABLISHED */
2967 tc0->state = TCP_STATE_ESTABLISHED;
Florin Corasa436a422019-08-20 07:09:31 -07002968 TCP_EVT (TCP_EVT_STATE_CHANGE, tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002969
Florin Corasbbcfaac2019-10-10 13:52:04 -07002970 if (!(tc0->cfg_flags & TCP_CFG_F_NO_TSO))
2971 tcp_check_tx_offload (tc0, is_ip4);
Simon Zhang1146ff42019-09-02 22:54:00 +08002972
Florin Coras7ac053b2018-11-05 15:57:21 -08002973 /* Initialize session variables */
2974 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
2975 tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2976 << tc0->rcv_opts.wscale;
2977 tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2978 tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
2979
2980 /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
2981 tcp_retransmit_timer_reset (tc0);
Florin Corasa27a46e2019-02-18 13:02:28 -08002982 if (session_stream_accept_notify (&tc0->connection))
Florin Corasa9d5bea2018-12-17 08:24:19 -08002983 {
2984 error0 = TCP_ERROR_MSG_QUEUE_FULL;
Florin Coras4dc10a42020-02-11 05:31:49 +00002985 tcp_send_reset (tc0);
2986 session_transport_delete_notify (&tc0->connection);
2987 tcp_connection_cleanup (tc0);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002988 goto drop;
2989 }
Florin Coras7ac053b2018-11-05 15:57:21 -08002990 error0 = TCP_ERROR_ACK_OK;
2991 break;
2992 case TCP_STATE_ESTABLISHED:
2993 /* We can get packets in established state here because they
2994 * were enqueued before state change */
2995 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2996 goto drop;
2997
2998 break;
2999 case TCP_STATE_FIN_WAIT_1:
3000 /* In addition to the processing for the ESTABLISHED state, if
3001 * our FIN is now acknowledged then enter FIN-WAIT-2 and
3002 * continue processing in that state. */
3003 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
3004 goto drop;
3005
3006 /* Still have to send the FIN */
3007 if (tc0->flags & TCP_CONN_FINPNDG)
3008 {
3009 /* TX fifo finally drained */
Florin Coras31c99552019-03-01 13:00:58 -08003010 max_dequeue = transport_max_tx_dequeue (&tc0->connection);
Florin Coras78cc4b02018-12-20 18:24:49 -08003011 if (max_dequeue <= tc0->burst_acked)
Florin Coras7ac053b2018-11-05 15:57:21 -08003012 tcp_send_fin (tc0);
Florin Coras070fd4b2019-04-02 19:03:23 -07003013 /* If a fin was received and data was acked extend wait */
3014 else if ((tc0->flags & TCP_CONN_FINRCVD) && tc0->bytes_acked)
3015 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
Florin Coras9094b5c2019-08-12 14:17:47 -07003016 tcp_cfg.closewait_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08003017 }
3018 /* If FIN is ACKed */
Florin Coras47596832019-03-12 18:58:54 -07003019 else if (tc0->snd_una == tc0->snd_nxt)
Florin Coras7ac053b2018-11-05 15:57:21 -08003020 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003021 /* Stop all retransmit timers because we have nothing more
Florin Corasf65074e2019-03-31 17:17:11 -07003022 * to send. */
Florin Coras7ac053b2018-11-05 15:57:21 -08003023 tcp_connection_timers_reset (tc0);
Florin Corasf65074e2019-03-31 17:17:11 -07003024
3025 /* We already have a FIN but didn't transition to CLOSING
3026 * because of outstanding tx data. Close the connection. */
3027 if (tc0->flags & TCP_CONN_FINRCVD)
3028 {
3029 tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
Florin Corasa0904f02019-07-22 20:55:11 -07003030 session_transport_closed_notify (&tc0->connection);
Florin Coras7a3a8662020-02-22 02:27:21 +00003031 tcp_program_cleanup (wrk, tc0);
Florin Corasf65074e2019-03-31 17:17:11 -07003032 goto drop;
3033 }
3034
3035 tcp_connection_set_state (tc0, TCP_STATE_FIN_WAIT_2);
3036 /* Enable waitclose because we're willing to wait for peer's
3037 * FIN but not indefinitely. */
Florin Coras9094b5c2019-08-12 14:17:47 -07003038 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.finwait2_time);
Florin Corasefefc6b2018-11-07 12:49:19 -08003039
3040 /* Don't try to deq the FIN acked */
3041 if (tc0->burst_acked > 1)
Florin Coras31c99552019-03-01 13:00:58 -08003042 session_tx_fifo_dequeue_drop (&tc0->connection,
3043 tc0->burst_acked - 1);
Florin Corasefefc6b2018-11-07 12:49:19 -08003044 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08003045 }
3046 break;
3047 case TCP_STATE_FIN_WAIT_2:
3048 /* In addition to the processing for the ESTABLISHED state, if
3049 * the retransmission queue is empty, the user's CLOSE can be
3050 * acknowledged ("ok") but do not delete the TCB. */
Florin Corasf65074e2019-03-31 17:17:11 -07003051 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08003052 goto drop;
Florin Corasefefc6b2018-11-07 12:49:19 -08003053 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08003054 break;
3055 case TCP_STATE_CLOSE_WAIT:
3056 /* Do the same processing as for the ESTABLISHED state. */
3057 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
3058 goto drop;
3059
Florin Corasf65074e2019-03-31 17:17:11 -07003060 if (!(tc0->flags & TCP_CONN_FINPNDG))
3061 break;
3062
3063 /* Still have outstanding tx data */
Florin Coras182bbc12019-06-28 09:41:28 -07003064 max_dequeue = transport_max_tx_dequeue (&tc0->connection);
3065 if (max_dequeue > tc0->burst_acked)
Florin Corasf65074e2019-03-31 17:17:11 -07003066 break;
3067
3068 tcp_send_fin (tc0);
3069 tcp_connection_timers_reset (tc0);
3070 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras9094b5c2019-08-12 14:17:47 -07003071 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.lastack_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08003072 break;
3073 case TCP_STATE_CLOSING:
3074 /* In addition to the processing for the ESTABLISHED state, if
3075 * the ACK acknowledges our FIN then enter the TIME-WAIT state,
3076 * otherwise ignore the segment. */
Florin Corasf65074e2019-03-31 17:17:11 -07003077 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
3078 goto drop;
Florin Coras47596832019-03-12 18:58:54 -07003079
Florin Corasf65074e2019-03-31 17:17:11 -07003080 if (tc0->snd_una != tc0->snd_nxt)
3081 goto drop;
Florin Coras7ac053b2018-11-05 15:57:21 -08003082
Florin Coras85a3ddd2018-12-24 16:54:34 -08003083 tcp_connection_timers_reset (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08003084 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras9094b5c2019-08-12 14:17:47 -07003085 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras692b9492019-07-12 15:01:53 -07003086 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003087 goto drop;
3088
3089 break;
3090 case TCP_STATE_LAST_ACK:
3091 /* The only thing that [should] arrive in this state is an
3092 * acknowledgment of our FIN. If our FIN is now acknowledged,
3093 * delete the TCB, enter the CLOSED state, and return. */
3094
Florin Corasf65074e2019-03-31 17:17:11 -07003095 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
3096 goto drop;
3097
Florin Coras7ac053b2018-11-05 15:57:21 -08003098 /* Apparently our ACK for the peer's FIN was lost */
Florin Coras47596832019-03-12 18:58:54 -07003099 if (is_fin0 && tc0->snd_una != tc0->snd_nxt)
Florin Coras7ac053b2018-11-05 15:57:21 -08003100 {
3101 tcp_send_fin (tc0);
3102 goto drop;
3103 }
3104
Florin Coras3c514d52018-12-22 11:39:33 -08003105 tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
Florin Corasa0904f02019-07-22 20:55:11 -07003106 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003107
3108 /* Don't free the connection from the data path since
3109 * we can't ensure that we have no packets already enqueued
3110 * to output. Rely instead on the waitclose timer */
3111 tcp_connection_timers_reset (tc0);
Florin Coras7a3a8662020-02-22 02:27:21 +00003112 tcp_program_cleanup (tcp_get_worker (tc0->c_thread_index), tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003113
3114 goto drop;
3115
3116 break;
3117 case TCP_STATE_TIME_WAIT:
3118 /* The only thing that can arrive in this state is a
3119 * retransmission of the remote FIN. Acknowledge it, and restart
3120 * the 2 MSL timeout. */
3121
Florin Corasf65074e2019-03-31 17:17:11 -07003122 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08003123 goto drop;
3124
Florin Coras37db4302019-03-13 13:25:57 -07003125 if (!is_fin0)
3126 goto drop;
3127
Florin Coras26dd6de2019-07-23 23:54:47 -07003128 tcp_program_ack (tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07003129 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08003130 goto drop;
3131
3132 break;
3133 default:
3134 ASSERT (0);
3135 }
3136
3137 /* 6: check the URG bit TODO */
3138
3139 /* 7: process the segment text */
3140 switch (tc0->state)
3141 {
3142 case TCP_STATE_ESTABLISHED:
3143 case TCP_STATE_FIN_WAIT_1:
3144 case TCP_STATE_FIN_WAIT_2:
3145 if (vnet_buffer (b0)->tcp.data_len)
3146 error0 = tcp_segment_rcv (wrk, tc0, b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003147 break;
3148 case TCP_STATE_CLOSE_WAIT:
3149 case TCP_STATE_CLOSING:
3150 case TCP_STATE_LAST_ACK:
3151 case TCP_STATE_TIME_WAIT:
3152 /* This should not occur, since a FIN has been received from the
3153 * remote side. Ignore the segment text. */
3154 break;
3155 }
3156
3157 /* 8: check the FIN bit */
3158 if (!is_fin0)
3159 goto drop;
3160
Florin Corasa436a422019-08-20 07:09:31 -07003161 TCP_EVT (TCP_EVT_FIN_RCVD, tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08003162
Florin Coras7ac053b2018-11-05 15:57:21 -08003163 switch (tc0->state)
3164 {
3165 case TCP_STATE_ESTABLISHED:
Florin Coras3c514d52018-12-22 11:39:33 -08003166 /* Account for the FIN and send ack */
3167 tc0->rcv_nxt += 1;
Florin Coras26dd6de2019-07-23 23:54:47 -07003168 tcp_program_ack (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08003169 tcp_connection_set_state (tc0, TCP_STATE_CLOSE_WAIT);
3170 tcp_program_disconnect (wrk, tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07003171 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.closewait_time);
Florin Coras5c0f1662018-12-19 01:38:57 -08003172 break;
Florin Coras7ac053b2018-11-05 15:57:21 -08003173 case TCP_STATE_SYN_RCVD:
Florin Coras5c0f1662018-12-19 01:38:57 -08003174 /* Send FIN-ACK, enter LAST-ACK and because the app was not
3175 * notified yet, set a cleanup timer instead of relying on
3176 * disconnect notify and the implicit close call. */
Florin Coras7ac053b2018-11-05 15:57:21 -08003177 tcp_connection_timers_reset (tc0);
Florin Coras5c0f1662018-12-19 01:38:57 -08003178 tc0->rcv_nxt += 1;
Florin Coras7ac053b2018-11-05 15:57:21 -08003179 tcp_send_fin (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08003180 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras9094b5c2019-08-12 14:17:47 -07003181 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.lastack_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08003182 break;
3183 case TCP_STATE_CLOSE_WAIT:
3184 case TCP_STATE_CLOSING:
3185 case TCP_STATE_LAST_ACK:
3186 /* move along .. */
3187 break;
3188 case TCP_STATE_FIN_WAIT_1:
Florin Coras3c514d52018-12-22 11:39:33 -08003189 tc0->rcv_nxt += 1;
Florin Coras070fd4b2019-04-02 19:03:23 -07003190
Florin Coras565115e2019-02-20 19:48:31 -08003191 if (tc0->flags & TCP_CONN_FINPNDG)
3192 {
Florin Coras070fd4b2019-04-02 19:03:23 -07003193 /* If data is outstanding, stay in FIN_WAIT_1 and try to finish
3194 * sending it. Since we already received a fin, do not wait
3195 * for too long. */
Florin Corasf65074e2019-03-31 17:17:11 -07003196 tc0->flags |= TCP_CONN_FINRCVD;
Florin Coras9094b5c2019-08-12 14:17:47 -07003197 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
3198 tcp_cfg.closewait_time);
Florin Coras565115e2019-02-20 19:48:31 -08003199 }
3200 else
Florin Corasf65074e2019-03-31 17:17:11 -07003201 {
3202 tcp_connection_set_state (tc0, TCP_STATE_CLOSING);
Florin Coras26dd6de2019-07-23 23:54:47 -07003203 tcp_program_ack (tc0);
Florin Coras070fd4b2019-04-02 19:03:23 -07003204 /* Wait for ACK for our FIN but not forever */
Florin Coras9094b5c2019-08-12 14:17:47 -07003205 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
3206 tcp_cfg.closing_time);
Florin Corasf65074e2019-03-31 17:17:11 -07003207 }
Florin Coras7ac053b2018-11-05 15:57:21 -08003208 break;
3209 case TCP_STATE_FIN_WAIT_2:
3210 /* Got FIN, send ACK! Be more aggressive with resource cleanup */
Florin Coras3c514d52018-12-22 11:39:33 -08003211 tc0->rcv_nxt += 1;
3212 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras7ac053b2018-11-05 15:57:21 -08003213 tcp_connection_timers_reset (tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07003214 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras26dd6de2019-07-23 23:54:47 -07003215 tcp_program_ack (tc0);
Florin Coras692b9492019-07-12 15:01:53 -07003216 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003217 break;
3218 case TCP_STATE_TIME_WAIT:
3219 /* Remain in the TIME-WAIT state. Restart the time-wait
3220 * timeout.
3221 */
Florin Coras9094b5c2019-08-12 14:17:47 -07003222 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08003223 break;
3224 }
3225 error0 = TCP_ERROR_FIN_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -08003226
3227 drop:
3228
3229 tcp_inc_counter (rcv_process, error0, 1);
3230 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3231 {
3232 tcp_rx_trace_t *t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
3233 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
3234 }
Dave Barach68b0fb02017-02-28 15:15:56 -05003235 }
3236
Florin Coras31c99552019-03-01 13:00:58 -08003237 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
3238 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08003239 tcp_inc_counter (rcv_process, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras9ece3c02018-11-05 11:06:53 -08003240 tcp_handle_postponed_dequeues (wrk);
Florin Coras79fdfd62019-05-23 06:19:09 -07003241 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08003242 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3243
Dave Barach68b0fb02017-02-28 15:15:56 -05003244 return from_frame->n_vectors;
3245}
3246
Filip Tehlare275bed2019-03-06 00:06:56 -08003247VLIB_NODE_FN (tcp4_rcv_process_node) (vlib_main_t * vm,
3248 vlib_node_runtime_t * node,
3249 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003250{
3251 return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3252}
3253
Filip Tehlare275bed2019-03-06 00:06:56 -08003254VLIB_NODE_FN (tcp6_rcv_process_node) (vlib_main_t * vm,
3255 vlib_node_runtime_t * node,
3256 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003257{
3258 return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3259}
3260
3261/* *INDENT-OFF* */
3262VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
3263{
Dave Barach68b0fb02017-02-28 15:15:56 -05003264 .name = "tcp4-rcv-process",
3265 /* Takes a vector of packets. */
3266 .vector_size = sizeof (u32),
3267 .n_errors = TCP_N_ERROR,
3268 .error_strings = tcp_error_strings,
3269 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3270 .next_nodes =
3271 {
3272#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3273 foreach_tcp_state_next
3274#undef _
3275 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003276 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003277};
3278/* *INDENT-ON* */
3279
Dave Barach68b0fb02017-02-28 15:15:56 -05003280/* *INDENT-OFF* */
3281VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
3282{
Dave Barach68b0fb02017-02-28 15:15:56 -05003283 .name = "tcp6-rcv-process",
3284 /* Takes a vector of packets. */
3285 .vector_size = sizeof (u32),
3286 .n_errors = TCP_N_ERROR,
3287 .error_strings = tcp_error_strings,
3288 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3289 .next_nodes =
3290 {
3291#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3292 foreach_tcp_state_next
3293#undef _
3294 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003295 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003296};
3297/* *INDENT-ON* */
3298
Dave Barach68b0fb02017-02-28 15:15:56 -05003299/**
3300 * LISTEN state processing as per RFC 793 p. 65
3301 */
3302always_inline uword
3303tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3304 vlib_frame_t * from_frame, int is_ip4)
3305{
Florin Coras7ac053b2018-11-05 15:57:21 -08003306 u32 n_left_from, *from, n_syns = 0, *first_buffer;
Damjan Marion586afd72017-04-05 19:18:20 +02003307 u32 my_thread_index = vm->thread_index;
Yu Pingb092b772019-12-27 04:04:33 +08003308 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003309
Florin Coras7ac053b2018-11-05 15:57:21 -08003310 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05003311 n_left_from = from_frame->n_vectors;
3312
Dave Barach68b0fb02017-02-28 15:15:56 -05003313 while (n_left_from > 0)
3314 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003315 u32 bi0;
3316 vlib_buffer_t *b0;
3317 tcp_rx_trace_t *t0;
3318 tcp_header_t *th0 = 0;
3319 tcp_connection_t *lc0;
3320 ip4_header_t *ip40;
3321 ip6_header_t *ip60;
3322 tcp_connection_t *child0;
3323 u32 error0 = TCP_ERROR_NONE;
Dave Barach68b0fb02017-02-28 15:15:56 -05003324
Florin Coras7ac053b2018-11-05 15:57:21 -08003325 bi0 = from[0];
3326 from += 1;
3327 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05003328
Florin Coras7ac053b2018-11-05 15:57:21 -08003329 b0 = vlib_get_buffer (vm, bi0);
Florin Corasde7fcac2020-01-16 04:04:54 +00003330
3331 if (is_ip4)
3332 {
3333 ip40 = vlib_buffer_get_current (b0);
3334 th0 = tcp_buffer_hdr (b0);
3335 }
3336 else
3337 {
3338 ip60 = vlib_buffer_get_current (b0);
3339 th0 = tcp_buffer_hdr (b0);
3340 }
3341
Florin Coras7ac053b2018-11-05 15:57:21 -08003342 lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index);
Yu Pingb092b772019-12-27 04:04:33 +08003343 if (PREDICT_FALSE (lc0 == 0))
3344 {
3345 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
3346 my_thread_index);
Florin Corasb7f035f2019-12-27 09:27:52 -08003347 if (tc0->state != TCP_STATE_TIME_WAIT)
3348 {
3349 error0 = TCP_ERROR_CREATE_EXISTS;
3350 goto drop;
3351 }
Yu Pingb092b772019-12-27 04:04:33 +08003352 lc0 = tcp_lookup_listener (b0, tc0->c_fib_index, is_ip4);
Florin Corasb7f035f2019-12-27 09:27:52 -08003353 /* clean up the old session */
Yu Pingb092b772019-12-27 04:04:33 +08003354 tcp_connection_del (tc0);
3355 }
Florin Coras7ac053b2018-11-05 15:57:21 -08003356
Florin Coras7ac053b2018-11-05 15:57:21 -08003357 /* Create child session. For syn-flood protection use filter */
3358
3359 /* 1. first check for an RST: handled in dispatch */
3360 /* if (tcp_rst (th0))
3361 goto drop;
3362 */
3363
3364 /* 2. second check for an ACK: handled in dispatch */
3365 /* if (tcp_ack (th0))
3366 {
3367 tcp_send_reset (b0, is_ip4);
3368 goto drop;
3369 }
3370 */
3371
3372 /* 3. check for a SYN (did that already) */
3373
3374 /* Make sure connection wasn't just created */
3375 child0 = tcp_lookup_connection (lc0->c_fib_index, b0, my_thread_index,
3376 is_ip4);
3377 if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN))
3378 {
3379 error0 = TCP_ERROR_CREATE_EXISTS;
3380 goto drop;
3381 }
3382
3383 /* Create child session and send SYN-ACK */
Florin Coras8124cb72018-12-16 20:57:29 -08003384 child0 = tcp_connection_alloc (my_thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08003385 child0->c_lcl_port = th0->dst_port;
3386 child0->c_rmt_port = th0->src_port;
3387 child0->c_is_ip4 = is_ip4;
3388 child0->state = TCP_STATE_SYN_RCVD;
3389 child0->c_fib_index = lc0->c_fib_index;
Florin Coras12f69362019-08-16 09:44:00 -07003390 child0->cc_algo = lc0->cc_algo;
Florin Coras7ac053b2018-11-05 15:57:21 -08003391
3392 if (is_ip4)
3393 {
3394 child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32;
3395 child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32;
3396 }
3397 else
3398 {
Dave Barach178cf492018-11-13 16:34:13 -05003399 clib_memcpy_fast (&child0->c_lcl_ip6, &ip60->dst_address,
3400 sizeof (ip6_address_t));
3401 clib_memcpy_fast (&child0->c_rmt_ip6, &ip60->src_address,
3402 sizeof (ip6_address_t));
Florin Coras7ac053b2018-11-05 15:57:21 -08003403 }
3404
Florin Coras80231112018-12-05 15:59:31 -08003405 if (tcp_options_parse (th0, &child0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08003406 {
Florin Coras8124cb72018-12-16 20:57:29 -08003407 error0 = TCP_ERROR_OPTIONS;
3408 tcp_connection_free (child0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003409 goto drop;
3410 }
3411
3412 child0->irs = vnet_buffer (b0)->tcp.seq_number;
3413 child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1;
3414 child0->rcv_las = child0->rcv_nxt;
3415 child0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
3416
3417 /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
3418 * segments are used to initialize PAWS. */
3419 if (tcp_opts_tstamp (&child0->rcv_opts))
3420 {
3421 child0->tsval_recent = child0->rcv_opts.tsval;
3422 child0->tsval_recent_age = tcp_time_now ();
3423 }
3424
3425 if (tcp_opts_wscale (&child0->rcv_opts))
3426 child0->snd_wscale = child0->rcv_opts.wscale;
3427
3428 child0->snd_wnd = clib_net_to_host_u16 (th0->window)
3429 << child0->snd_wscale;
3430 child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
3431 child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
3432
3433 tcp_connection_init_vars (child0);
Florin Coras865872e2019-01-18 12:12:29 -08003434 child0->rto = TCP_RTO_MIN;
Florin Coras7ac053b2018-11-05 15:57:21 -08003435
Florin Corasc9940fc2019-02-05 20:55:11 -08003436 if (session_stream_accept (&child0->connection, lc0->c_s_index,
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +02003437 lc0->c_thread_index, 0 /* notify */ ))
Florin Coras7ac053b2018-11-05 15:57:21 -08003438 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003439 tcp_connection_cleanup (child0);
3440 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
3441 goto drop;
3442 }
3443
Florin Corasa436a422019-08-20 07:09:31 -07003444 TCP_EVT (TCP_EVT_SYN_RCVD, child0, 1);
Florin Coras2e31cc32018-09-25 14:00:34 -07003445 child0->tx_fifo_size = transport_tx_fifo_size (&child0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003446 tcp_send_synack (child0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003447
3448 drop:
3449
3450 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3451 {
3452 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05003453 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
3454 clib_memcpy_fast (&t0->tcp_connection, lc0,
3455 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08003456 }
3457
3458 n_syns += (error0 == TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003459 }
Florin Coras00cd22d2018-04-18 13:20:18 -07003460
3461 tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
Florin Coras7ac053b2018-11-05 15:57:21 -08003462 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3463
Dave Barach68b0fb02017-02-28 15:15:56 -05003464 return from_frame->n_vectors;
3465}
3466
Filip Tehlare275bed2019-03-06 00:06:56 -08003467VLIB_NODE_FN (tcp4_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3468 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003469{
3470 return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3471}
3472
Filip Tehlare275bed2019-03-06 00:06:56 -08003473VLIB_NODE_FN (tcp6_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3474 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003475{
3476 return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3477}
3478
3479/* *INDENT-OFF* */
3480VLIB_REGISTER_NODE (tcp4_listen_node) =
3481{
Dave Barach68b0fb02017-02-28 15:15:56 -05003482 .name = "tcp4-listen",
3483 /* Takes a vector of packets. */
3484 .vector_size = sizeof (u32),
3485 .n_errors = TCP_N_ERROR,
3486 .error_strings = tcp_error_strings,
3487 .n_next_nodes = TCP_LISTEN_N_NEXT,
3488 .next_nodes =
3489 {
3490#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3491 foreach_tcp_state_next
3492#undef _
3493 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003494 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003495};
3496/* *INDENT-ON* */
3497
Dave Barach68b0fb02017-02-28 15:15:56 -05003498/* *INDENT-OFF* */
3499VLIB_REGISTER_NODE (tcp6_listen_node) =
3500{
Dave Barach68b0fb02017-02-28 15:15:56 -05003501 .name = "tcp6-listen",
3502 /* Takes a vector of packets. */
3503 .vector_size = sizeof (u32),
3504 .n_errors = TCP_N_ERROR,
3505 .error_strings = tcp_error_strings,
3506 .n_next_nodes = TCP_LISTEN_N_NEXT,
3507 .next_nodes =
3508 {
3509#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3510 foreach_tcp_state_next
3511#undef _
3512 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003513 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003514};
3515/* *INDENT-ON* */
3516
Dave Barach68b0fb02017-02-28 15:15:56 -05003517typedef enum _tcp_input_next
3518{
3519 TCP_INPUT_NEXT_DROP,
3520 TCP_INPUT_NEXT_LISTEN,
3521 TCP_INPUT_NEXT_RCV_PROCESS,
3522 TCP_INPUT_NEXT_SYN_SENT,
3523 TCP_INPUT_NEXT_ESTABLISHED,
3524 TCP_INPUT_NEXT_RESET,
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003525 TCP_INPUT_NEXT_PUNT,
Dave Barach68b0fb02017-02-28 15:15:56 -05003526 TCP_INPUT_N_NEXT
3527} tcp_input_next_t;
3528
3529#define foreach_tcp4_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003530 _ (DROP, "ip4-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003531 _ (LISTEN, "tcp4-listen") \
3532 _ (RCV_PROCESS, "tcp4-rcv-process") \
3533 _ (SYN_SENT, "tcp4-syn-sent") \
3534 _ (ESTABLISHED, "tcp4-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003535 _ (RESET, "tcp4-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003536 _ (PUNT, "ip4-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003537
3538#define foreach_tcp6_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003539 _ (DROP, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003540 _ (LISTEN, "tcp6-listen") \
3541 _ (RCV_PROCESS, "tcp6-rcv-process") \
3542 _ (SYN_SENT, "tcp6-syn-sent") \
3543 _ (ESTABLISHED, "tcp6-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003544 _ (RESET, "tcp6-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003545 _ (PUNT, "ip6-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003546
Dave Barach68b0fb02017-02-28 15:15:56 -05003547#define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
3548
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003549static void
3550tcp_input_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07003551 vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003552{
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003553 tcp_connection_t *tc;
3554 tcp_header_t *tcp;
3555 tcp_rx_trace_t *t;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003556 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05003557
Florin Coras4df38712018-06-20 12:44:16 -07003558 for (i = 0; i < n_bufs; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05003559 {
Florin Coras4df38712018-06-20 12:44:16 -07003560 if (bs[i]->flags & VLIB_BUFFER_IS_TRACED)
3561 {
3562 t = vlib_add_trace (vm, node, bs[i], sizeof (*t));
3563 tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index,
3564 vm->thread_index);
3565 tcp = vlib_buffer_get_current (bs[i]);
3566 tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4);
3567 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003568 }
3569}
Dave Barach68b0fb02017-02-28 15:15:56 -05003570
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003571static void
3572tcp_input_set_error_next (tcp_main_t * tm, u16 * next, u32 * error, u8 is_ip4)
3573{
Florin Corasb5e55a22019-01-10 12:42:47 -08003574 if (*error == TCP_ERROR_FILTERED || *error == TCP_ERROR_WRONG_THREAD)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003575 {
3576 *next = TCP_INPUT_NEXT_DROP;
3577 }
3578 else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6))
3579 {
3580 *next = TCP_INPUT_NEXT_PUNT;
3581 *error = TCP_ERROR_PUNT;
3582 }
3583 else
3584 {
3585 *next = TCP_INPUT_NEXT_RESET;
3586 *error = TCP_ERROR_NO_LISTENER;
3587 }
3588}
Dave Barach68b0fb02017-02-28 15:15:56 -05003589
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003590always_inline tcp_connection_t *
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003591tcp_input_lookup_buffer (vlib_buffer_t * b, u8 thread_index, u32 * error,
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003592 u8 is_ip4, u8 is_nolookup)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003593{
3594 u32 fib_index = vnet_buffer (b)->ip.fib_index;
3595 int n_advance_bytes, n_data_bytes;
3596 transport_connection_t *tc;
3597 tcp_header_t *tcp;
Florin Corasb5e55a22019-01-10 12:42:47 -08003598 u8 result = 0;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003599
3600 if (is_ip4)
3601 {
3602 ip4_header_t *ip4 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003603 int ip_hdr_bytes = ip4_header_bytes (ip4);
3604 if (PREDICT_FALSE (b->current_length < ip_hdr_bytes + sizeof (*tcp)))
3605 {
3606 *error = TCP_ERROR_LENGTH;
3607 return 0;
3608 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003609 tcp = ip4_next_header (ip4);
3610 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip4;
Florin Corasb8dda5f2018-12-05 10:03:34 -08003611 n_advance_bytes = (ip_hdr_bytes + tcp_header_bytes (tcp));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003612 n_data_bytes = clib_net_to_host_u16 (ip4->length) - n_advance_bytes;
3613
3614 /* Length check. Checksum computed by ipx_local no need to compute again */
Florin Corasb8dda5f2018-12-05 10:03:34 -08003615 if (PREDICT_FALSE (n_data_bytes < 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05003616 {
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003617 *error = TCP_ERROR_LENGTH;
3618 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003619 }
3620
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003621 if (!is_nolookup)
3622 tc = session_lookup_connection_wt4 (fib_index, &ip4->dst_address,
3623 &ip4->src_address, tcp->dst_port,
3624 tcp->src_port,
3625 TRANSPORT_PROTO_TCP, thread_index,
3626 &result);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003627 }
3628 else
3629 {
3630 ip6_header_t *ip6 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003631 if (PREDICT_FALSE (b->current_length < sizeof (*ip6) + sizeof (*tcp)))
3632 {
3633 *error = TCP_ERROR_LENGTH;
3634 return 0;
3635 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003636 tcp = ip6_next_header (ip6);
3637 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip6;
3638 n_advance_bytes = tcp_header_bytes (tcp);
3639 n_data_bytes = clib_net_to_host_u16 (ip6->payload_length)
3640 - n_advance_bytes;
3641 n_advance_bytes += sizeof (ip6[0]);
3642
Florin Corasb8dda5f2018-12-05 10:03:34 -08003643 if (PREDICT_FALSE (n_data_bytes < 0))
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003644 {
3645 *error = TCP_ERROR_LENGTH;
3646 return 0;
3647 }
3648
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003649 if (!is_nolookup)
3650 {
3651 if (PREDICT_FALSE
3652 (ip6_address_is_link_local_unicast (&ip6->dst_address)))
3653 {
3654 ip4_main_t *im = &ip4_main;
3655 fib_index = vec_elt (im->fib_index_by_sw_if_index,
3656 vnet_buffer (b)->sw_if_index[VLIB_RX]);
3657 }
3658
3659 tc = session_lookup_connection_wt6 (fib_index, &ip6->dst_address,
3660 &ip6->src_address,
3661 tcp->dst_port, tcp->src_port,
3662 TRANSPORT_PROTO_TCP,
3663 thread_index, &result);
3664 }
Dave Barach68b0fb02017-02-28 15:15:56 -05003665 }
3666
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003667 if (is_nolookup)
3668 tc =
3669 (transport_connection_t *) tcp_connection_get (vnet_buffer (b)->
3670 tcp.connection_index,
3671 thread_index);
3672
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003673 vnet_buffer (b)->tcp.seq_number = clib_net_to_host_u32 (tcp->seq_number);
3674 vnet_buffer (b)->tcp.ack_number = clib_net_to_host_u32 (tcp->ack_number);
3675 vnet_buffer (b)->tcp.data_offset = n_advance_bytes;
3676 vnet_buffer (b)->tcp.data_len = n_data_bytes;
Florin Coras3c514d52018-12-22 11:39:33 -08003677 vnet_buffer (b)->tcp.seq_end = vnet_buffer (b)->tcp.seq_number
3678 + n_data_bytes;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003679 vnet_buffer (b)->tcp.flags = 0;
3680
Florin Corasb5e55a22019-01-10 12:42:47 -08003681 *error = result ? TCP_ERROR_NONE + result : *error;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003682
3683 return tcp_get_connection_from_transport (tc);
3684}
3685
3686static inline void
3687tcp_input_dispatch_buffer (tcp_main_t * tm, tcp_connection_t * tc,
Florin Corasdeb6f782020-02-11 02:42:36 +00003688 vlib_buffer_t * b, u16 * next,
3689 vlib_node_runtime_t * error_node)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003690{
3691 tcp_header_t *tcp;
Florin Corasdeb6f782020-02-11 02:42:36 +00003692 u32 error;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003693 u8 flags;
3694
3695 tcp = tcp_buffer_hdr (b);
3696 flags = tcp->flags & filter_flags;
3697 *next = tm->dispatch_table[tc->state][flags].next;
Florin Corasdeb6f782020-02-11 02:42:36 +00003698 error = tm->dispatch_table[tc->state][flags].error;
Florin Corasedfe0ee2019-07-29 18:13:25 -07003699 tc->segs_in += 1;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003700
Florin Corasdeb6f782020-02-11 02:42:36 +00003701 if (PREDICT_FALSE (error != TCP_ERROR_NONE))
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003702 {
Florin Corasdeb6f782020-02-11 02:42:36 +00003703 b->error = error_node->errors[error];
3704 if (error == TCP_ERROR_DISPATCH)
Florin Corasa9d5bea2018-12-17 08:24:19 -08003705 clib_warning ("tcp conn %u disp error state %U flags %U",
Florin Coras360336f2020-02-13 18:46:18 +00003706 tc->c_c_index, format_tcp_state, tc->state,
Florin Corasa9d5bea2018-12-17 08:24:19 -08003707 format_tcp_flags, (int) flags);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003708 }
3709}
3710
3711always_inline uword
3712tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003713 vlib_frame_t * frame, int is_ip4, u8 is_nolookup)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003714{
3715 u32 n_left_from, *from, thread_index = vm->thread_index;
3716 tcp_main_t *tm = vnet_get_tcp_main ();
3717 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
3718 u16 nexts[VLIB_FRAME_SIZE], *next;
Florin Corasdeb6f782020-02-11 02:42:36 +00003719 vlib_node_runtime_t *error_node;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003720
Florin Corasbe72ae62018-11-01 11:23:03 -07003721 tcp_set_time_now (tcp_get_worker (thread_index));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003722
Florin Corasdeb6f782020-02-11 02:42:36 +00003723 error_node = vlib_node_get_runtime (vm, tcp_node_index (input, is_ip4));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003724 from = vlib_frame_vector_args (frame);
3725 n_left_from = frame->n_vectors;
3726 vlib_get_buffers (vm, from, bufs, n_left_from);
3727
3728 b = bufs;
3729 next = nexts;
3730
3731 while (n_left_from >= 4)
3732 {
3733 u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER;
3734 tcp_connection_t *tc0, *tc1;
3735
3736 {
3737 vlib_prefetch_buffer_header (b[2], STORE);
3738 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3739
3740 vlib_prefetch_buffer_header (b[3], STORE);
3741 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3742 }
3743
3744 next[0] = next[1] = TCP_INPUT_NEXT_DROP;
3745
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003746 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
3747 is_nolookup);
3748 tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4,
3749 is_nolookup);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003750
3751 if (PREDICT_TRUE (!tc0 + !tc1 == 0))
3752 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003753 ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
3754 ASSERT (tcp_lookup_is_valid (tc1, b[1], tcp_buffer_hdr (b[1])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003755
3756 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3757 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3758
Florin Corasdeb6f782020-02-11 02:42:36 +00003759 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], error_node);
3760 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], error_node);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003761 }
3762 else
3763 {
3764 if (PREDICT_TRUE (tc0 != 0))
3765 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003766 ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003767 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
Florin Corasdeb6f782020-02-11 02:42:36 +00003768 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], error_node);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003769 }
3770 else
Florin Corasdeb6f782020-02-11 02:42:36 +00003771 {
3772 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3773 b[0]->error = error_node->errors[error0];
3774 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003775
3776 if (PREDICT_TRUE (tc1 != 0))
3777 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003778 ASSERT (tcp_lookup_is_valid (tc1, b[1], tcp_buffer_hdr (b[1])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003779 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
Florin Corasdeb6f782020-02-11 02:42:36 +00003780 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], error_node);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003781 }
3782 else
Florin Corasdeb6f782020-02-11 02:42:36 +00003783 {
3784 tcp_input_set_error_next (tm, &next[1], &error1, is_ip4);
3785 b[1]->error = error_node->errors[error1];
3786 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003787 }
3788
3789 b += 2;
3790 next += 2;
3791 n_left_from -= 2;
3792 }
3793 while (n_left_from > 0)
3794 {
3795 tcp_connection_t *tc0;
3796 u32 error0 = TCP_ERROR_NO_LISTENER;
3797
3798 if (n_left_from > 1)
3799 {
3800 vlib_prefetch_buffer_header (b[1], STORE);
3801 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3802 }
3803
3804 next[0] = TCP_INPUT_NEXT_DROP;
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003805 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
3806 is_nolookup);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003807 if (PREDICT_TRUE (tc0 != 0))
3808 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003809 ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003810 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
Florin Corasdeb6f782020-02-11 02:42:36 +00003811 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], error_node);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003812 }
3813 else
Florin Corasdeb6f782020-02-11 02:42:36 +00003814 {
3815 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3816 b[0]->error = error_node->errors[error0];
3817 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003818
3819 b += 1;
3820 next += 1;
3821 n_left_from -= 1;
3822 }
3823
3824 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
3825 tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4);
3826
3827 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
3828 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05003829}
3830
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003831VLIB_NODE_FN (tcp4_input_nolookup_node) (vlib_main_t * vm,
3832 vlib_node_runtime_t * node,
3833 vlib_frame_t * from_frame)
3834{
3835 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
3836 1 /* is_nolookup */ );
3837}
3838
3839VLIB_NODE_FN (tcp6_input_nolookup_node) (vlib_main_t * vm,
3840 vlib_node_runtime_t * node,
3841 vlib_frame_t * from_frame)
3842{
3843 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3844 1 /* is_nolookup */ );
3845}
3846
3847/* *INDENT-OFF* */
3848VLIB_REGISTER_NODE (tcp4_input_nolookup_node) =
3849{
3850 .name = "tcp4-input-nolookup",
3851 /* Takes a vector of packets. */
3852 .vector_size = sizeof (u32),
3853 .n_errors = TCP_N_ERROR,
3854 .error_strings = tcp_error_strings,
3855 .n_next_nodes = TCP_INPUT_N_NEXT,
3856 .next_nodes =
3857 {
3858#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3859 foreach_tcp4_input_next
3860#undef _
3861 },
3862 .format_buffer = format_tcp_header,
3863 .format_trace = format_tcp_rx_trace,
3864};
3865/* *INDENT-ON* */
3866
3867/* *INDENT-OFF* */
3868VLIB_REGISTER_NODE (tcp6_input_nolookup_node) =
3869{
3870 .name = "tcp6-input-nolookup",
3871 /* Takes a vector of packets. */
3872 .vector_size = sizeof (u32),
3873 .n_errors = TCP_N_ERROR,
3874 .error_strings = tcp_error_strings,
3875 .n_next_nodes = TCP_INPUT_N_NEXT,
3876 .next_nodes =
3877 {
3878#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3879 foreach_tcp6_input_next
3880#undef _
3881 },
3882 .format_buffer = format_tcp_header,
3883 .format_trace = format_tcp_rx_trace,
3884};
3885/* *INDENT-ON* */
3886
Filip Tehlare275bed2019-03-06 00:06:56 -08003887VLIB_NODE_FN (tcp4_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3888 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003889{
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003890 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
3891 0 /* is_nolookup */ );
Dave Barach68b0fb02017-02-28 15:15:56 -05003892}
3893
Filip Tehlare275bed2019-03-06 00:06:56 -08003894VLIB_NODE_FN (tcp6_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3895 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003896{
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003897 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3898 0 /* is_nolookup */ );
Dave Barach68b0fb02017-02-28 15:15:56 -05003899}
3900
3901/* *INDENT-OFF* */
3902VLIB_REGISTER_NODE (tcp4_input_node) =
3903{
Dave Barach68b0fb02017-02-28 15:15:56 -05003904 .name = "tcp4-input",
3905 /* Takes a vector of packets. */
3906 .vector_size = sizeof (u32),
3907 .n_errors = TCP_N_ERROR,
3908 .error_strings = tcp_error_strings,
3909 .n_next_nodes = TCP_INPUT_N_NEXT,
3910 .next_nodes =
3911 {
3912#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3913 foreach_tcp4_input_next
3914#undef _
3915 },
3916 .format_buffer = format_tcp_header,
3917 .format_trace = format_tcp_rx_trace,
3918};
3919/* *INDENT-ON* */
3920
Dave Barach68b0fb02017-02-28 15:15:56 -05003921/* *INDENT-OFF* */
3922VLIB_REGISTER_NODE (tcp6_input_node) =
3923{
Dave Barach68b0fb02017-02-28 15:15:56 -05003924 .name = "tcp6-input",
3925 /* Takes a vector of packets. */
3926 .vector_size = sizeof (u32),
3927 .n_errors = TCP_N_ERROR,
3928 .error_strings = tcp_error_strings,
3929 .n_next_nodes = TCP_INPUT_N_NEXT,
3930 .next_nodes =
3931 {
3932#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3933 foreach_tcp6_input_next
3934#undef _
3935 },
3936 .format_buffer = format_tcp_header,
3937 .format_trace = format_tcp_rx_trace,
3938};
3939/* *INDENT-ON* */
3940
Filip Tehlare275bed2019-03-06 00:06:56 -08003941#ifndef CLIB_MARCH_VARIANT
Dave Barach68b0fb02017-02-28 15:15:56 -05003942static void
3943tcp_dispatch_table_init (tcp_main_t * tm)
3944{
3945 int i, j;
3946 for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3947 for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3948 {
3949 tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3950 tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3951 }
3952
3953#define _(t,f,n,e) \
3954do { \
3955 tm->dispatch_table[TCP_STATE_##t][f].next = (n); \
3956 tm->dispatch_table[TCP_STATE_##t][f].error = (e); \
3957} while (0)
3958
Florin Coras678a6572018-12-17 21:31:25 -08003959 /* RFC 793: In LISTEN if RST drop and if ACK return RST */
Florin Coras5c0f1662018-12-19 01:38:57 -08003960 _(LISTEN, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras678a6572018-12-17 21:31:25 -08003961 _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_ACK_INVALID);
3962 _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_INVALID_CONNECTION);
Dave Barach68b0fb02017-02-28 15:15:56 -05003963 _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003964 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3965 TCP_ERROR_ACK_INVALID);
3966 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3967 TCP_ERROR_SEGMENT_INVALID);
3968 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3969 TCP_ERROR_SEGMENT_INVALID);
3970 _(LISTEN, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3971 TCP_ERROR_INVALID_CONNECTION);
3972 _(LISTEN, TCP_FLAG_FIN, TCP_INPUT_NEXT_RESET, TCP_ERROR_SEGMENT_INVALID);
Dave Barach2c25a622017-06-26 11:35:07 -04003973 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
Florin Coras678a6572018-12-17 21:31:25 -08003974 TCP_ERROR_SEGMENT_INVALID);
3975 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3976 TCP_ERROR_SEGMENT_INVALID);
3977 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Florin Corasdeb6f782020-02-11 02:42:36 +00003978 TCP_ERROR_SEGMENT_INVALID);
Florin Coras678a6572018-12-17 21:31:25 -08003979 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_DROP,
3980 TCP_ERROR_SEGMENT_INVALID);
3981 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3982 TCP_ERROR_SEGMENT_INVALID);
3983 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3984 TCP_ERROR_SEGMENT_INVALID);
3985 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3986 TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003987 /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3988 _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc28764f2017-04-26 00:08:42 -07003989 _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase8460c72018-09-24 14:40:40 -07003990 _(SYN_RCVD, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3991 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003992 _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003993 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3994 TCP_ERROR_NONE);
3995 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3996 TCP_ERROR_NONE);
3997 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3998 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3999 _(SYN_RCVD, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc01c4452018-09-20 18:36:54 -07004000 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4001 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08004002 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
4003 TCP_ERROR_NONE);
4004 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
4005 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4006 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
4007 TCP_ERROR_NONE);
4008 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
4009 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4010 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
4011 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4012 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4013 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4014 _(SYN_RCVD, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05004015 /* SYN-ACK for a SYN */
4016 _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
4017 TCP_ERROR_NONE);
4018 _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
4019 _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
4020 _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
4021 TCP_ERROR_NONE);
Florin Coras222e1f412019-02-16 20:47:32 -08004022 _(SYN_SENT, TCP_FLAG_FIN, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
4023 _(SYN_SENT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
4024 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05004025 /* ACK for for established connection -> tcp-established. */
4026 _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
4027 /* FIN for for established connection -> tcp-established. */
4028 _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
4029 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
4030 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08004031 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
4032 TCP_ERROR_NONE);
4033 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
4034 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
4035 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED,
4036 TCP_ERROR_NONE);
4037 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
4038 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
4039 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
4040 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
4041 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4042 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasd79b41e2017-03-04 05:37:52 -08004043 _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07004044 _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
4045 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04004046 _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04004047 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
4048 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08004049 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
4050 TCP_ERROR_NONE);
4051 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4052 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
4053 _(ESTABLISHED, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05004054 /* ACK or FIN-ACK to our FIN */
4055 _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4056 _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
4057 TCP_ERROR_NONE);
4058 /* FIN in reply to our FIN from the other side */
Florin Coras76bc1302018-12-23 23:36:36 -08004059 _(FIN_WAIT_1, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05004060 _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08004061 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
4062 TCP_ERROR_NONE);
4063 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
4064 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4065 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
4066 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4067 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4068 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4069 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
4070 TCP_ERROR_NONE);
4071 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
4072 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras5c0f1662018-12-19 01:38:57 -08004073 _(FIN_WAIT_1, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08004074 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
4075 TCP_ERROR_NONE);
4076 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4077 TCP_ERROR_NONE);
4078 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4079 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04004080 _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase96bf632018-12-18 22:44:27 -08004081 _(FIN_WAIT_1, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4082 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08004083 _(CLOSING, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras56318932018-05-23 20:44:12 -07004084 _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08004085 _(CLOSING, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08004086 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
4087 TCP_ERROR_NONE);
4088 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4089 TCP_ERROR_NONE);
4090 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4091 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08004092 _(CLOSING, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4093 _(CLOSING, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4094 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08004095 _(CLOSING, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras3c514d52018-12-22 11:39:33 -08004096 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4097 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08004098 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
4099 TCP_ERROR_NONE);
4100 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
4101 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4102 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
4103 TCP_ERROR_NONE);
4104 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
4105 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras79c04d62019-08-11 19:49:05 -07004106 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
4107 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08004108 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4109 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05004110 /* FIN confirming that the peer (app) has closed */
4111 _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasf6d68ed2017-05-07 19:12:02 -07004112 _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05004113 _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4114 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08004115 _(FIN_WAIT_2, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4116 _(FIN_WAIT_2, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4117 TCP_ERROR_NONE);
Florin Corasf03a59a2017-06-09 21:07:32 -07004118 _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4119 _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4120 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08004121 _(CLOSE_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4122 _(CLOSE_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4123 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08004124 _(LAST_ACK, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05004125 _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07004126 _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4127 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4128 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08004129 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
4130 TCP_ERROR_NONE);
4131 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
4132 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4133 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
4134 TCP_ERROR_NONE);
4135 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
4136 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4137 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
4138 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4139 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4140 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasdb84e572017-05-09 18:54:52 -07004141 _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08004142 _(LAST_ACK, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4143 TCP_ERROR_NONE);
Florin Corasc01d5782018-10-17 14:53:11 -07004144 _(LAST_ACK, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08004145 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4146 TCP_ERROR_NONE);
4147 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
4148 TCP_ERROR_NONE);
4149 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4150 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Yu Pingb092b772019-12-27 04:04:33 +08004151 _(TIME_WAIT, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07004152 _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4153 _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4154 TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04004155 _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08004156 _(TIME_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4157 TCP_ERROR_NONE);
Florin Coras50958952017-08-29 14:50:13 -07004158 _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08004159 /* RFC793 CLOSED: An incoming segment containing a RST is discarded. An
4160 * incoming segment not containing a RST causes a RST to be sent in
4161 * response.*/
Florin Corasdc629cd2017-05-09 00:52:37 -07004162 _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08004163 _(CLOSED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04004164 TCP_ERROR_CONNECTION_CLOSED);
Florin Corasdeb6f782020-02-11 02:42:36 +00004165 _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_CONNECTION_CLOSED);
4166 _(CLOSED, TCP_FLAG_SYN, TCP_INPUT_NEXT_RESET, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08004167 _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
Florin Corasdeb6f782020-02-11 02:42:36 +00004168 TCP_ERROR_CONNECTION_CLOSED);
Dave Barach68b0fb02017-02-28 15:15:56 -05004169#undef _
4170}
4171
Florin Coras0dbd5172018-06-25 16:19:34 -07004172static clib_error_t *
Dave Barach68b0fb02017-02-28 15:15:56 -05004173tcp_input_init (vlib_main_t * vm)
4174{
4175 clib_error_t *error = 0;
4176 tcp_main_t *tm = vnet_get_tcp_main ();
4177
4178 if ((error = vlib_call_init_function (vm, tcp_init)))
4179 return error;
4180
4181 /* Initialize dispatch table. */
4182 tcp_dispatch_table_init (tm);
4183
4184 return error;
4185}
4186
4187VLIB_INIT_FUNCTION (tcp_input_init);
4188
Filip Tehlare275bed2019-03-06 00:06:56 -08004189#endif /* CLIB_MARCH_VARIANT */
4190
Dave Barach68b0fb02017-02-28 15:15:56 -05004191/*
4192 * fd.io coding-style-patch-verification: ON
4193 *
4194 * Local Variables:
4195 * eval: (c-set-style "gnu")
4196 * End:
4197 */