blob: bc11461b52167d494bbd515e0e17b9c54a424553 [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 Coras6080e0d2020-03-13 20:39:43 +0000703 if (tcp_is_descheduled (tc))
704 tcp_reschedule (tc);
705
Florin Coras11e9e352019-11-13 19:09:47 -0800706 /* If everything has been acked, stop retransmit timer
707 * otherwise update. */
708 tcp_retransmit_timer_update (tc);
Florin Corasb3dce892019-10-30 09:22:14 -0700709
Florin Coras11e9e352019-11-13 19:09:47 -0800710 /* Update pacer based on our new cwnd estimate */
711 tcp_connection_tx_pacer_update (tc);
712
Florin Corasb3dce892019-10-30 09:22:14 -0700713 tc->burst_acked = 0;
Florin Coras9ece3c02018-11-05 11:06:53 -0800714 }
715 _vec_len (wrk->pending_deq_acked) = 0;
716}
717
718static void
719tcp_program_dequeue (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
720{
721 if (!(tc->flags & TCP_CONN_DEQ_PENDING))
722 {
723 vec_add1 (wrk->pending_deq_acked, tc->c_c_index);
724 tc->flags |= TCP_CONN_DEQ_PENDING;
725 }
Florin Coras558e3e02019-09-06 12:56:58 -0700726 tc->burst_acked += tc->bytes_acked;
Dave Barach68b0fb02017-02-28 15:15:56 -0500727}
728
Filip Tehlare275bed2019-03-06 00:06:56 -0800729#ifndef CLIB_MARCH_VARIANT
Florin Coras0dbd5172018-06-25 16:19:34 -0700730static u32
731scoreboard_hole_index (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
732{
733 ASSERT (!pool_is_free_index (sb->holes, hole - sb->holes));
734 return hole - sb->holes;
735}
736
737static u32
738scoreboard_hole_bytes (sack_scoreboard_hole_t * hole)
739{
740 return hole->end - hole->start;
741}
742
743sack_scoreboard_hole_t *
744scoreboard_get_hole (sack_scoreboard_t * sb, u32 index)
745{
746 if (index != TCP_INVALID_SACK_HOLE_INDEX)
747 return pool_elt_at_index (sb->holes, index);
748 return 0;
749}
750
751sack_scoreboard_hole_t *
752scoreboard_next_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
753{
754 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
755 return pool_elt_at_index (sb->holes, hole->next);
756 return 0;
757}
758
759sack_scoreboard_hole_t *
760scoreboard_prev_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
761{
762 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
763 return pool_elt_at_index (sb->holes, hole->prev);
764 return 0;
765}
766
767sack_scoreboard_hole_t *
768scoreboard_first_hole (sack_scoreboard_t * sb)
769{
770 if (sb->head != TCP_INVALID_SACK_HOLE_INDEX)
771 return pool_elt_at_index (sb->holes, sb->head);
772 return 0;
773}
774
775sack_scoreboard_hole_t *
776scoreboard_last_hole (sack_scoreboard_t * sb)
777{
778 if (sb->tail != TCP_INVALID_SACK_HOLE_INDEX)
779 return pool_elt_at_index (sb->holes, sb->tail);
780 return 0;
781}
782
783static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500784scoreboard_remove_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
785{
786 sack_scoreboard_hole_t *next, *prev;
787
788 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
789 {
790 next = pool_elt_at_index (sb->holes, hole->next);
791 next->prev = hole->prev;
792 }
Florin Coras93992a92017-05-24 18:03:56 -0700793 else
794 {
795 sb->tail = hole->prev;
796 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500797
798 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
799 {
800 prev = pool_elt_at_index (sb->holes, hole->prev);
801 prev->next = hole->next;
802 }
803 else
804 {
805 sb->head = hole->next;
806 }
807
Florin Coras93992a92017-05-24 18:03:56 -0700808 if (scoreboard_hole_index (sb, hole) == sb->cur_rxt_hole)
809 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
810
Florin Coras3eb50622017-07-13 01:24:57 -0400811 /* Poison the entry */
812 if (CLIB_DEBUG > 0)
Dave Barachb7b92992018-10-17 10:38:51 -0400813 clib_memset (hole, 0xfe, sizeof (*hole));
Florin Coras3eb50622017-07-13 01:24:57 -0400814
Dave Barach68b0fb02017-02-28 15:15:56 -0500815 pool_put (sb->holes, hole);
816}
817
Florin Coras0dbd5172018-06-25 16:19:34 -0700818static sack_scoreboard_hole_t *
Florin Coras6792ec02017-03-13 03:49:51 -0700819scoreboard_insert_hole (sack_scoreboard_t * sb, u32 prev_index,
Dave Barach68b0fb02017-02-28 15:15:56 -0500820 u32 start, u32 end)
821{
Florin Coras6792ec02017-03-13 03:49:51 -0700822 sack_scoreboard_hole_t *hole, *next, *prev;
Dave Barach68b0fb02017-02-28 15:15:56 -0500823 u32 hole_index;
824
825 pool_get (sb->holes, hole);
Dave Barachb7b92992018-10-17 10:38:51 -0400826 clib_memset (hole, 0, sizeof (*hole));
Dave Barach68b0fb02017-02-28 15:15:56 -0500827
828 hole->start = start;
829 hole->end = end;
Florin Coras3eb50622017-07-13 01:24:57 -0400830 hole_index = scoreboard_hole_index (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500831
Florin Coras6792ec02017-03-13 03:49:51 -0700832 prev = scoreboard_get_hole (sb, prev_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500833 if (prev)
834 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700835 hole->prev = prev_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500836 hole->next = prev->next;
837
838 if ((next = scoreboard_next_hole (sb, hole)))
839 next->prev = hole_index;
Florin Corasf03a59a2017-06-09 21:07:32 -0700840 else
841 sb->tail = hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500842
843 prev->next = hole_index;
844 }
845 else
846 {
847 sb->head = hole_index;
848 hole->prev = TCP_INVALID_SACK_HOLE_INDEX;
849 hole->next = TCP_INVALID_SACK_HOLE_INDEX;
850 }
851
852 return hole;
853}
854
Florin Coras36ebcff2019-09-12 18:36:44 -0700855always_inline void
856scoreboard_update_sacked_rxt (sack_scoreboard_t * sb, u32 start, u32 end,
857 u8 has_rxt)
858{
859 if (!has_rxt || seq_geq (start, sb->high_rxt))
860 return;
861
862 sb->rxt_sacked +=
863 seq_lt (end, sb->high_rxt) ? (end - start) : (sb->high_rxt - start);
864}
Florin Coras558e3e02019-09-06 12:56:58 -0700865
866always_inline void
867scoreboard_update_bytes (sack_scoreboard_t * sb, u32 ack, u32 snd_mss)
Florin Coras93992a92017-05-24 18:03:56 -0700868{
Florin Corasecbd20b2018-10-17 23:34:54 -0700869 sack_scoreboard_hole_t *left, *right;
Florin Coras558e3e02019-09-06 12:56:58 -0700870 u32 sacked = 0, blks = 0, old_sacked;
871
872 old_sacked = sb->sacked_bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700873
Florin Corasb3f58e12019-07-05 18:31:54 -0700874 sb->last_lost_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700875 sb->lost_bytes = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700876 sb->sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700877
Florin Coras558e3e02019-09-06 12:56:58 -0700878 right = scoreboard_last_hole (sb);
879 if (!right)
Florin Coras93992a92017-05-24 18:03:56 -0700880 {
Florin Coras558e3e02019-09-06 12:56:58 -0700881 sb->sacked_bytes = sb->high_sacked - ack;
Florin Coras479f7fe2020-01-08 00:33:02 +0000882 sb->last_sacked_bytes = sb->sacked_bytes
883 - (old_sacked - sb->last_bytes_delivered);
Florin Coras558e3e02019-09-06 12:56:58 -0700884 return;
885 }
886
887 if (seq_gt (sb->high_sacked, right->end))
888 {
889 sacked = sb->high_sacked - right->end;
Florin Coras93992a92017-05-24 18:03:56 -0700890 blks = 1;
891 }
892
Florin Coras558e3e02019-09-06 12:56:58 -0700893 while (sacked < (TCP_DUPACK_THRESHOLD - 1) * snd_mss
894 && blks < TCP_DUPACK_THRESHOLD)
Florin Coras93992a92017-05-24 18:03:56 -0700895 {
Florin Coras558e3e02019-09-06 12:56:58 -0700896 if (right->is_lost)
897 sb->lost_bytes += scoreboard_hole_bytes (right);
Florin Coras93992a92017-05-24 18:03:56 -0700898
Florin Coras558e3e02019-09-06 12:56:58 -0700899 left = scoreboard_prev_hole (sb, right);
900 if (!left)
Florin Coras9f9e9692018-10-19 17:49:00 -0700901 {
Florin Coras558e3e02019-09-06 12:56:58 -0700902 ASSERT (right->start == ack || sb->is_reneging);
903 sacked += right->start - ack;
904 right = 0;
905 break;
Florin Coras9f9e9692018-10-19 17:49:00 -0700906 }
Florin Coras558e3e02019-09-06 12:56:58 -0700907
908 sacked += right->start - left->end;
909 blks++;
910 right = left;
Florin Coras93992a92017-05-24 18:03:56 -0700911 }
Florin Coras9f9e9692018-10-19 17:49:00 -0700912
Florin Coras558e3e02019-09-06 12:56:58 -0700913 /* right is first lost */
914 while (right)
915 {
916 sb->lost_bytes += scoreboard_hole_bytes (right);
Florin Coras36ebcff2019-09-12 18:36:44 -0700917 sb->last_lost_bytes += right->is_lost ? 0 : (right->end - right->start);
Florin Coras558e3e02019-09-06 12:56:58 -0700918 right->is_lost = 1;
919 left = scoreboard_prev_hole (sb, right);
920 if (!left)
921 {
922 ASSERT (right->start == ack || sb->is_reneging);
923 sacked += right->start - ack;
924 break;
925 }
926 sacked += right->start - left->end;
927 right = left;
928 }
929
930 sb->sacked_bytes = sacked;
931 sb->last_sacked_bytes = sacked - (old_sacked - sb->last_bytes_delivered);
Florin Coras93992a92017-05-24 18:03:56 -0700932}
933
934/**
935 * Figure out the next hole to retransmit
936 *
937 * Follows logic proposed in RFC6675 Sec. 4, NextSeg()
938 */
939sack_scoreboard_hole_t *
940scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
941 sack_scoreboard_hole_t * start,
Florin Coras36ee9f12018-11-02 12:52:10 -0700942 u8 have_unsent, u8 * can_rescue, u8 * snd_limited)
Florin Coras93992a92017-05-24 18:03:56 -0700943{
944 sack_scoreboard_hole_t *hole = 0;
945
946 hole = start ? start : scoreboard_first_hole (sb);
947 while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost)
948 hole = scoreboard_next_hole (sb, hole);
949
950 /* Nothing, return */
951 if (!hole)
952 {
953 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
954 return 0;
955 }
956
957 /* Rule (1): if higher than rxt, less than high_sacked and lost */
958 if (hole->is_lost && seq_lt (hole->start, sb->high_sacked))
959 {
960 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
961 }
962 else
963 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700964 /* Rule (2): available unsent data */
965 if (have_unsent)
Florin Coras93992a92017-05-24 18:03:56 -0700966 {
Florin Coras93992a92017-05-24 18:03:56 -0700967 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
Florin Coras36ee9f12018-11-02 12:52:10 -0700968 return 0;
Florin Coras93992a92017-05-24 18:03:56 -0700969 }
970 /* Rule (3): if hole not lost */
971 else if (seq_lt (hole->start, sb->high_sacked))
972 {
Florin Coras81cb8e42019-10-22 19:44:45 -0700973 /* And we didn't already retransmit it */
974 if (seq_leq (hole->end, sb->high_rxt))
975 {
976 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
977 return 0;
978 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700979 *snd_limited = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700980 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
981 }
982 /* Rule (4): if hole beyond high_sacked */
983 else
984 {
985 ASSERT (seq_geq (hole->start, sb->high_sacked));
986 *snd_limited = 1;
987 *can_rescue = 1;
988 /* HighRxt MUST NOT be updated */
989 return 0;
990 }
991 }
992
993 if (hole && seq_lt (sb->high_rxt, hole->start))
994 sb->high_rxt = hole->start;
995
996 return hole;
997}
998
Florin Coras36ebcff2019-09-12 18:36:44 -0700999void
Florin Corasbe237bf2019-09-27 08:16:40 -07001000scoreboard_init_rxt (sack_scoreboard_t * sb, u32 snd_una)
Florin Coras93992a92017-05-24 18:03:56 -07001001{
1002 sack_scoreboard_hole_t *hole;
1003 hole = scoreboard_first_hole (sb);
Florin Coras3eb50622017-07-13 01:24:57 -04001004 if (hole)
1005 {
Florin Coras36ee9f12018-11-02 12:52:10 -07001006 snd_una = seq_gt (snd_una, hole->start) ? snd_una : hole->start;
Florin Coras3eb50622017-07-13 01:24:57 -04001007 sb->cur_rxt_hole = sb->head;
1008 }
Florin Coras36ee9f12018-11-02 12:52:10 -07001009 sb->high_rxt = snd_una;
1010 sb->rescue_rxt = snd_una - 1;
Florin Coras3eb50622017-07-13 01:24:57 -04001011}
1012
Florin Coras0dbd5172018-06-25 16:19:34 -07001013void
1014scoreboard_init (sack_scoreboard_t * sb)
1015{
1016 sb->head = TCP_INVALID_SACK_HOLE_INDEX;
1017 sb->tail = TCP_INVALID_SACK_HOLE_INDEX;
1018 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
1019}
1020
1021void
1022scoreboard_clear (sack_scoreboard_t * sb)
1023{
1024 sack_scoreboard_hole_t *hole;
1025 while ((hole = scoreboard_first_hole (sb)))
1026 {
1027 scoreboard_remove_hole (sb, hole);
1028 }
1029 ASSERT (sb->head == sb->tail && sb->head == TCP_INVALID_SACK_HOLE_INDEX);
1030 ASSERT (pool_elts (sb->holes) == 0);
1031 sb->sacked_bytes = 0;
1032 sb->last_sacked_bytes = 0;
1033 sb->last_bytes_delivered = 0;
Florin Coras0dbd5172018-06-25 16:19:34 -07001034 sb->lost_bytes = 0;
Florin Corasb3f58e12019-07-05 18:31:54 -07001035 sb->last_lost_bytes = 0;
Florin Coras0dbd5172018-06-25 16:19:34 -07001036 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
Florin Coras558e3e02019-09-06 12:56:58 -07001037 sb->is_reneging = 0;
Florin Coras0dbd5172018-06-25 16:19:34 -07001038}
Florin Coras36ebcff2019-09-12 18:36:44 -07001039
1040void
1041scoreboard_clear_reneging (sack_scoreboard_t * sb, u32 start, u32 end)
1042{
1043 sack_scoreboard_hole_t *last_hole;
1044
1045 clib_warning ("sack reneging");
1046
1047 scoreboard_clear (sb);
1048 last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
1049 start, end);
1050 last_hole->is_lost = 1;
1051 sb->tail = scoreboard_hole_index (sb, last_hole);
1052 sb->high_sacked = start;
Florin Corasbe237bf2019-09-27 08:16:40 -07001053 scoreboard_init_rxt (sb, start);
Florin Coras36ebcff2019-09-12 18:36:44 -07001054}
1055
Filip Tehlare275bed2019-03-06 00:06:56 -08001056#endif /* CLIB_MARCH_VARIANT */
Florin Coras0dbd5172018-06-25 16:19:34 -07001057
Florin Coras3eb50622017-07-13 01:24:57 -04001058/**
1059 * Test that scoreboard is sane after recovery
1060 *
1061 * Returns 1 if scoreboard is empty or if first hole beyond
1062 * snd_una.
1063 */
Florin Coras0dbd5172018-06-25 16:19:34 -07001064static u8
Florin Coras3eb50622017-07-13 01:24:57 -04001065tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc)
1066{
1067 sack_scoreboard_hole_t *hole;
1068 hole = scoreboard_first_hole (&tc->sack_sb);
Florin Corasecbd20b2018-10-17 23:34:54 -07001069 return (!hole || (seq_geq (hole->start, tc->snd_una)
Florin Coras47596832019-03-12 18:58:54 -07001070 && seq_lt (hole->end, tc->snd_nxt)));
Florin Coras93992a92017-05-24 18:03:56 -07001071}
1072
Filip Tehlare275bed2019-03-06 00:06:56 -08001073#ifndef CLIB_MARCH_VARIANT
Florin Corasb3f58e12019-07-05 18:31:54 -07001074
Florin Coras93992a92017-05-24 18:03:56 -07001075void
Dave Barach68b0fb02017-02-28 15:15:56 -05001076tcp_rcv_sacks (tcp_connection_t * tc, u32 ack)
1077{
Florin Coras558e3e02019-09-06 12:56:58 -07001078 sack_scoreboard_hole_t *hole, *next_hole;
Florin Corasb3f58e12019-07-05 18:31:54 -07001079 sack_scoreboard_t *sb = &tc->sack_sb;
Florin Coras558e3e02019-09-06 12:56:58 -07001080 sack_block_t *blk, *rcv_sacks;
1081 u32 blk_index = 0, i, j;
Florin Coras36ebcff2019-09-12 18:36:44 -07001082 u8 has_rxt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001083
Florin Coras6792ec02017-03-13 03:49:51 -07001084 sb->last_sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001085 sb->last_bytes_delivered = 0;
Florin Coras36ebcff2019-09-12 18:36:44 -07001086 sb->rxt_sacked = 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001087
Florin Corasc95eefb2020-01-08 22:01:54 +00001088 if (!tcp_opts_sack (&tc->rcv_opts) && !sb->sacked_bytes
Florin Coras93992a92017-05-24 18:03:56 -07001089 && sb->head == TCP_INVALID_SACK_HOLE_INDEX)
Dave Barach68b0fb02017-02-28 15:15:56 -05001090 return;
1091
Florin Coras36ebcff2019-09-12 18:36:44 -07001092 has_rxt = tcp_in_cong_recovery (tc);
1093
Dave Barach68b0fb02017-02-28 15:15:56 -05001094 /* Remove invalid blocks */
Florin Coras93992a92017-05-24 18:03:56 -07001095 blk = tc->rcv_opts.sacks;
1096 while (blk < vec_end (tc->rcv_opts.sacks))
Florin Coras6792ec02017-03-13 03:49:51 -07001097 {
1098 if (seq_lt (blk->start, blk->end)
1099 && seq_gt (blk->start, tc->snd_una)
Simon Zhang487507f2020-02-23 03:51:42 +08001100 && seq_gt (blk->start, ack) && seq_leq (blk->end, tc->snd_nxt))
Florin Coras6792ec02017-03-13 03:49:51 -07001101 {
1102 blk++;
1103 continue;
1104 }
Florin Coras93992a92017-05-24 18:03:56 -07001105 vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks);
Florin Coras6792ec02017-03-13 03:49:51 -07001106 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001107
1108 /* Add block for cumulative ack */
1109 if (seq_gt (ack, tc->snd_una))
1110 {
Florin Coras558e3e02019-09-06 12:56:58 -07001111 vec_add2 (tc->rcv_opts.sacks, blk, 1);
1112 blk->start = tc->snd_una;
1113 blk->end = ack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001114 }
1115
Florin Coras93992a92017-05-24 18:03:56 -07001116 if (vec_len (tc->rcv_opts.sacks) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001117 return;
1118
Florin Coras3eb50622017-07-13 01:24:57 -04001119 tcp_scoreboard_trace_add (tc, ack);
1120
Dave Barach68b0fb02017-02-28 15:15:56 -05001121 /* Make sure blocks are ordered */
Florin Coras558e3e02019-09-06 12:56:58 -07001122 rcv_sacks = tc->rcv_opts.sacks;
1123 for (i = 0; i < vec_len (rcv_sacks); i++)
1124 for (j = i + 1; j < vec_len (rcv_sacks); j++)
1125 if (seq_lt (rcv_sacks[j].start, rcv_sacks[i].start))
Dave Barach68b0fb02017-02-28 15:15:56 -05001126 {
Florin Coras558e3e02019-09-06 12:56:58 -07001127 sack_block_t tmp = rcv_sacks[i];
1128 rcv_sacks[i] = rcv_sacks[j];
1129 rcv_sacks[j] = tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -05001130 }
1131
Dave Barach68b0fb02017-02-28 15:15:56 -05001132 if (sb->head == TCP_INVALID_SACK_HOLE_INDEX)
1133 {
Florin Coras558e3e02019-09-06 12:56:58 -07001134 /* Handle reneging as a special case */
1135 if (PREDICT_FALSE (sb->is_reneging))
1136 {
1137 /* No holes, only sacked bytes */
1138 if (seq_leq (tc->snd_nxt, sb->high_sacked))
1139 {
1140 /* No progress made so return */
1141 if (seq_leq (ack, tc->snd_una))
1142 return;
1143
1144 /* Update sacked bytes delivered and return */
1145 sb->last_bytes_delivered = ack - tc->snd_una;
1146 sb->sacked_bytes -= sb->last_bytes_delivered;
1147 sb->is_reneging = seq_lt (ack, sb->high_sacked);
1148 return;
1149 }
1150
1151 /* New hole above high sacked. Add it and process normally */
1152 hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
1153 sb->high_sacked, tc->snd_nxt);
1154 sb->tail = scoreboard_hole_index (sb, hole);
1155 }
1156 /* Not reneging and no holes. Insert the first that covers all
1157 * outstanding bytes */
1158 else
1159 {
1160 hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
1161 tc->snd_una, tc->snd_nxt);
1162 sb->tail = scoreboard_hole_index (sb, hole);
1163 }
1164 sb->high_sacked = rcv_sacks[vec_len (rcv_sacks) - 1].end;
Florin Coras6792ec02017-03-13 03:49:51 -07001165 }
1166 else
1167 {
Florin Coras558e3e02019-09-06 12:56:58 -07001168 /* If we have holes but snd_nxt is beyond the last hole, update
1169 * last hole end or add new hole after high sacked */
1170 hole = scoreboard_last_hole (sb);
1171 if (seq_gt (tc->snd_nxt, hole->end))
Dave Barach2c25a622017-06-26 11:35:07 -04001172 {
Florin Coras558e3e02019-09-06 12:56:58 -07001173 if (seq_geq (hole->start, sb->high_sacked))
Dave Barach2c25a622017-06-26 11:35:07 -04001174 {
Florin Coras558e3e02019-09-06 12:56:58 -07001175 hole->end = tc->snd_nxt;
Dave Barach2c25a622017-06-26 11:35:07 -04001176 }
1177 /* New hole after high sacked block */
Florin Coras47596832019-03-12 18:58:54 -07001178 else if (seq_lt (sb->high_sacked, tc->snd_nxt))
Dave Barach2c25a622017-06-26 11:35:07 -04001179 {
1180 scoreboard_insert_hole (sb, sb->tail, sb->high_sacked,
Florin Coras47596832019-03-12 18:58:54 -07001181 tc->snd_nxt);
Dave Barach2c25a622017-06-26 11:35:07 -04001182 }
1183 }
Florin Coras558e3e02019-09-06 12:56:58 -07001184
Dave Barach2c25a622017-06-26 11:35:07 -04001185 /* Keep track of max byte sacked for when the last hole
Florin Corasf03a59a2017-06-09 21:07:32 -07001186 * is acked */
Florin Coras558e3e02019-09-06 12:56:58 -07001187 sb->high_sacked = seq_max (rcv_sacks[vec_len (rcv_sacks) - 1].end,
1188 sb->high_sacked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001189 }
1190
1191 /* Walk the holes with the SACK blocks */
1192 hole = pool_elt_at_index (sb->holes, sb->head);
Florin Coras558e3e02019-09-06 12:56:58 -07001193
1194 if (PREDICT_FALSE (sb->is_reneging))
Florin Coras067f8f92020-01-04 00:53:04 +00001195 {
1196 sb->last_bytes_delivered += clib_min (hole->start - tc->snd_una,
1197 ack - tc->snd_una);
1198 sb->is_reneging = seq_lt (ack, hole->start);
1199 }
Florin Coras558e3e02019-09-06 12:56:58 -07001200
1201 while (hole && blk_index < vec_len (rcv_sacks))
Dave Barach68b0fb02017-02-28 15:15:56 -05001202 {
Florin Coras558e3e02019-09-06 12:56:58 -07001203 blk = &rcv_sacks[blk_index];
Dave Barach68b0fb02017-02-28 15:15:56 -05001204 if (seq_leq (blk->start, hole->start))
1205 {
1206 /* Block covers hole. Remove hole */
1207 if (seq_geq (blk->end, hole->end))
1208 {
1209 next_hole = scoreboard_next_hole (sb, hole);
1210
Florin Coras558e3e02019-09-06 12:56:58 -07001211 /* If covered by ack, compute delivered bytes */
Florin Corasf03a59a2017-06-09 21:07:32 -07001212 if (blk->end == ack)
Dave Barach68b0fb02017-02-28 15:15:56 -05001213 {
Florin Coras558e3e02019-09-06 12:56:58 -07001214 u32 sacked = next_hole ? next_hole->start : sb->high_sacked;
1215 if (PREDICT_FALSE (seq_lt (ack, sacked)))
Florin Coras06d11012017-05-17 14:21:51 -07001216 {
Florin Coras558e3e02019-09-06 12:56:58 -07001217 sb->last_bytes_delivered += ack - hole->end;
1218 sb->is_reneging = 1;
Florin Coras06d11012017-05-17 14:21:51 -07001219 }
Florin Coras3eb50622017-07-13 01:24:57 -04001220 else
Florin Coras06d11012017-05-17 14:21:51 -07001221 {
Florin Coras558e3e02019-09-06 12:56:58 -07001222 sb->last_bytes_delivered += sacked - hole->end;
1223 sb->is_reneging = 0;
Florin Coras06d11012017-05-17 14:21:51 -07001224 }
1225 }
Florin Coras36ebcff2019-09-12 18:36:44 -07001226 scoreboard_update_sacked_rxt (sb, hole->start, hole->end,
1227 has_rxt);
Dave Barach68b0fb02017-02-28 15:15:56 -05001228 scoreboard_remove_hole (sb, hole);
1229 hole = next_hole;
1230 }
Florin Coras6792ec02017-03-13 03:49:51 -07001231 /* Partial 'head' overlap */
Dave Barach68b0fb02017-02-28 15:15:56 -05001232 else
1233 {
Florin Coras6792ec02017-03-13 03:49:51 -07001234 if (seq_gt (blk->end, hole->start))
1235 {
Florin Coras36ebcff2019-09-12 18:36:44 -07001236 scoreboard_update_sacked_rxt (sb, hole->start, blk->end,
1237 has_rxt);
Florin Coras6792ec02017-03-13 03:49:51 -07001238 hole->start = blk->end;
1239 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001240 blk_index++;
1241 }
1242 }
1243 else
1244 {
1245 /* Hole must be split */
Florin Coras6792ec02017-03-13 03:49:51 -07001246 if (seq_lt (blk->end, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001247 {
Florin Coras558e3e02019-09-06 12:56:58 -07001248 u32 hole_index = scoreboard_hole_index (sb, hole);
Florin Coras3eb50622017-07-13 01:24:57 -04001249 next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
1250 hole->end);
Florin Coras6792ec02017-03-13 03:49:51 -07001251 /* Pool might've moved */
1252 hole = scoreboard_get_hole (sb, hole_index);
1253 hole->end = blk->start;
Florin Coras36ebcff2019-09-12 18:36:44 -07001254
1255 scoreboard_update_sacked_rxt (sb, blk->start, blk->end,
1256 has_rxt);
1257
Dave Barach68b0fb02017-02-28 15:15:56 -05001258 blk_index++;
Florin Coras3eb50622017-07-13 01:24:57 -04001259 ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
Dave Barach68b0fb02017-02-28 15:15:56 -05001260 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001261 else if (seq_lt (blk->start, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001262 {
Florin Coras36ebcff2019-09-12 18:36:44 -07001263 scoreboard_update_sacked_rxt (sb, blk->start, hole->end,
1264 has_rxt);
Florin Coras6792ec02017-03-13 03:49:51 -07001265 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -05001266 }
Florin Coras93992a92017-05-24 18:03:56 -07001267 hole = scoreboard_next_hole (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -05001268 }
1269 }
Florin Coras6792ec02017-03-13 03:49:51 -07001270
Florin Coras558e3e02019-09-06 12:56:58 -07001271 scoreboard_update_bytes (sb, ack, tc->snd_mss);
Florin Corasb3f58e12019-07-05 18:31:54 -07001272
Florin Corasca1c8f32018-05-23 21:01:30 -07001273 ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes || tcp_in_recovery (tc));
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001274 ASSERT (sb->sacked_bytes == 0 || tcp_in_recovery (tc)
Florin Coras558e3e02019-09-06 12:56:58 -07001275 || sb->sacked_bytes <= tc->snd_nxt - seq_max (tc->snd_una, ack));
Florin Coras47596832019-03-12 18:58:54 -07001276 ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_nxt
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001277 - seq_max (tc->snd_una, ack) || tcp_in_recovery (tc));
Dave Barach2c25a622017-06-26 11:35:07 -04001278 ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
Florin Coras558e3e02019-09-06 12:56:58 -07001279 || sb->is_reneging || sb->holes[sb->head].start == ack);
Florin Corasb3f58e12019-07-05 18:31:54 -07001280 ASSERT (sb->last_lost_bytes <= sb->lost_bytes);
Florin Coras36ebcff2019-09-12 18:36:44 -07001281 ASSERT ((ack - tc->snd_una) + sb->last_sacked_bytes
Florin Corasedf1da92020-01-08 18:49:59 +00001282 - sb->last_bytes_delivered >= sb->rxt_sacked);
Florin Corasbe237bf2019-09-27 08:16:40 -07001283 ASSERT ((ack - tc->snd_una) >= tc->sack_sb.last_bytes_delivered
1284 || (tc->flags & TCP_CONN_FINSNT));
Florin Corasb3f58e12019-07-05 18:31:54 -07001285
Florin Corasa436a422019-08-20 07:09:31 -07001286 TCP_EVT (TCP_EVT_CC_SCOREBOARD, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001287}
Filip Tehlare275bed2019-03-06 00:06:56 -08001288#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05001289
Florin Coras93992a92017-05-24 18:03:56 -07001290/**
1291 * Try to update snd_wnd based on feedback received from peer.
Dave Barach68b0fb02017-02-28 15:15:56 -05001292 *
Florin Coras93992a92017-05-24 18:03:56 -07001293 * If successful, and new window is 'effectively' 0, activate persist
1294 * timer.
1295 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001296static void
1297tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
1298{
Florin Coras93992a92017-05-24 18:03:56 -07001299 /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
1300 * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
Florin Coras6792ec02017-03-13 03:49:51 -07001301 if (seq_lt (tc->snd_wl1, seq)
1302 || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001303 {
1304 tc->snd_wnd = snd_wnd;
1305 tc->snd_wl1 = seq;
1306 tc->snd_wl2 = ack;
Florin Corasa436a422019-08-20 07:09:31 -07001307 TCP_EVT (TCP_EVT_SND_WND, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001308
Florin Coras9ece3c02018-11-05 11:06:53 -08001309 if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
Florin Corasbb292f42017-05-19 09:49:19 -07001310 {
Florin Coras93992a92017-05-24 18:03:56 -07001311 /* Set persist timer if not set and we just got 0 wnd */
1312 if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
1313 && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
Florin Corasbb292f42017-05-19 09:49:19 -07001314 tcp_persist_timer_set (tc);
1315 }
Florin Coras3e350af2017-03-30 02:54:28 -07001316 else
Florin Coras93992a92017-05-24 18:03:56 -07001317 {
Florin Coras70f879d2020-03-13 17:54:42 +00001318 if (PREDICT_FALSE (tcp_timer_is_active (tc, TCP_TIMER_PERSIST)))
1319 tcp_persist_timer_reset (tc);
1320
Florin Coras6080e0d2020-03-13 20:39:43 +00001321 if (PREDICT_FALSE (tcp_is_descheduled (tc)))
1322 tcp_reschedule (tc);
1323
Florin Coras9ece3c02018-11-05 11:06:53 -08001324 if (PREDICT_FALSE (!tcp_in_recovery (tc) && tc->rto_boff > 0))
Florin Coras93992a92017-05-24 18:03:56 -07001325 {
1326 tc->rto_boff = 0;
1327 tcp_update_rto (tc);
1328 }
1329 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001330 }
1331}
1332
Florin Corasd2aab832018-05-22 11:39:59 -07001333/**
1334 * Init loss recovery/fast recovery.
1335 *
1336 * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
1337 * updated in @ref tcp_cc_handle_event after fast retransmit
1338 */
Florin Coras36ebcff2019-09-12 18:36:44 -07001339static void
Florin Coras93992a92017-05-24 18:03:56 -07001340tcp_cc_init_congestion (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001341{
Florin Coras93992a92017-05-24 18:03:56 -07001342 tcp_fastrecovery_on (tc);
Florin Coras47596832019-03-12 18:58:54 -07001343 tc->snd_congestion = tc->snd_nxt;
Florin Coras62166002018-04-18 16:40:55 -07001344 tc->cwnd_acc_bytes = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001345 tc->snd_rxt_bytes = 0;
Florin Coras36ebcff2019-09-12 18:36:44 -07001346 tc->rxt_delivered = 0;
1347 tc->prr_delivered = 0;
Florin Corasbe237bf2019-09-27 08:16:40 -07001348 tc->prr_start = tc->snd_una;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001349 tc->prev_ssthresh = tc->ssthresh;
1350 tc->prev_cwnd = tc->cwnd;
Florin Coras36ebcff2019-09-12 18:36:44 -07001351
Florin Corasbe237bf2019-09-27 08:16:40 -07001352 tc->snd_rxt_ts = tcp_tstamp (tc);
Florin Coras36ebcff2019-09-12 18:36:44 -07001353 tcp_cc_congestion (tc);
1354
1355 /* Post retransmit update cwnd to ssthresh and account for the
1356 * three segments that have left the network and should've been
1357 * buffered at the receiver XXX */
1358 if (!tcp_opts_sack_permitted (&tc->rcv_opts))
1359 tc->cwnd += 3 * tc->snd_mss;
1360
Florin Corasedfe0ee2019-07-29 18:13:25 -07001361 tc->fr_occurences += 1;
Florin Corasa436a422019-08-20 07:09:31 -07001362 TCP_EVT (TCP_EVT_CC_EVT, tc, 4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001363}
Dave Barach68b0fb02017-02-28 15:15:56 -05001364
1365static void
Florin Coras93992a92017-05-24 18:03:56 -07001366tcp_cc_congestion_undo (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001367{
Florin Coras93992a92017-05-24 18:03:56 -07001368 tc->cwnd = tc->prev_cwnd;
1369 tc->ssthresh = tc->prev_ssthresh;
Florin Coraseff6b822019-07-03 19:51:02 -07001370 tcp_cc_undo_recovery (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001371 ASSERT (tc->rto_boff == 0);
Florin Corasa436a422019-08-20 07:09:31 -07001372 TCP_EVT (TCP_EVT_CC_EVT, tc, 5);
Florin Coras93992a92017-05-24 18:03:56 -07001373}
Dave Barach68b0fb02017-02-28 15:15:56 -05001374
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001375static inline u8
1376tcp_cc_is_spurious_timeout_rxt (tcp_connection_t * tc)
Florin Coras93992a92017-05-24 18:03:56 -07001377{
Florin Corasf1762d62017-09-24 19:43:08 -04001378 return (tcp_in_recovery (tc) && tc->rto_boff == 1
Dave Barach2c25a622017-06-26 11:35:07 -04001379 && tc->snd_rxt_ts
Florin Coras93992a92017-05-24 18:03:56 -07001380 && tcp_opts_tstamp (&tc->rcv_opts)
1381 && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
1382}
1383
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001384static inline u8
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001385tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
1386{
Florin Coras36ebcff2019-09-12 18:36:44 -07001387 return (tcp_cc_is_spurious_timeout_rxt (tc));
1388}
1389
1390static inline u8
1391tcp_should_fastrecover_sack (tcp_connection_t * tc)
1392{
1393 return (tc->sack_sb.lost_bytes
1394 || ((TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
1395 < tc->sack_sb.sacked_bytes));
1396}
1397
1398static inline u8
Florin Corasbe237bf2019-09-27 08:16:40 -07001399tcp_should_fastrecover (tcp_connection_t * tc, u8 has_sack)
Florin Coras36ebcff2019-09-12 18:36:44 -07001400{
Florin Corasbe237bf2019-09-27 08:16:40 -07001401 if (!has_sack)
1402 {
1403 /* If of of the two conditions lower hold, reset dupacks because
1404 * we're probably after timeout (RFC6582 heuristics).
1405 * If Cumulative ack does not cover more than congestion threshold,
1406 * and:
1407 * 1) The following doesn't hold: The congestion window is greater
1408 * than SMSS bytes and the difference between highest_ack
1409 * and prev_highest_ack is at most 4*SMSS bytes
1410 * 2) Echoed timestamp in the last non-dup ack does not equal the
1411 * stored timestamp
1412 */
1413 if (seq_leq (tc->snd_una, tc->snd_congestion)
1414 && ((!(tc->cwnd > tc->snd_mss
1415 && tc->bytes_acked <= 4 * tc->snd_mss))
1416 || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
1417 {
1418 tc->rcv_dupacks = 0;
1419 return 0;
1420 }
1421 }
Florin Coras36ebcff2019-09-12 18:36:44 -07001422 return ((tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
1423 || tcp_should_fastrecover_sack (tc));
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001424}
1425
Florin Coras0dbd5172018-06-25 16:19:34 -07001426static int
Florin Coras93992a92017-05-24 18:03:56 -07001427tcp_cc_recover (tcp_connection_t * tc)
1428{
Florin Coras321cfa52019-09-12 18:49:44 -07001429 sack_scoreboard_hole_t *hole;
Florin Coras36ebcff2019-09-12 18:36:44 -07001430 u8 is_spurious = 0;
Florin Coras321cfa52019-09-12 18:49:44 -07001431
Florin Coras93992a92017-05-24 18:03:56 -07001432 ASSERT (tcp_in_cong_recovery (tc));
Florin Coras321cfa52019-09-12 18:49:44 -07001433
Florin Coras36ebcff2019-09-12 18:36:44 -07001434 if (tcp_cc_is_spurious_retransmit (tc))
1435 {
1436 tcp_cc_congestion_undo (tc);
1437 is_spurious = 1;
1438 }
1439
Florin Corasc31dc312019-10-06 14:06:14 -07001440 tcp_connection_tx_pacer_reset (tc, tc->cwnd, 0 /* start bucket */ );
Florin Corasb3dce892019-10-30 09:22:14 -07001441 tc->rcv_dupacks = 0;
Florin Corasc31dc312019-10-06 14:06:14 -07001442
Florin Coras36ebcff2019-09-12 18:36:44 -07001443 /* Previous recovery left us congested. Continue sending as part
1444 * of the current recovery event with an updated snd_congestion */
1445 if (tc->sack_sb.sacked_bytes)
1446 {
1447 tc->snd_congestion = tc->snd_nxt;
Florin Coras36ebcff2019-09-12 18:36:44 -07001448 tcp_program_retransmit (tc);
1449 return is_spurious;
1450 }
1451
Florin Corasb3dce892019-10-30 09:22:14 -07001452 tc->rxt_delivered = 0;
1453 tc->snd_rxt_bytes = 0;
1454 tc->snd_rxt_ts = 0;
1455 tc->prr_delivered = 0;
1456 tc->rtt_ts = 0;
1457 tc->flags &= ~TCP_CONN_RXT_PENDING;
1458
Florin Coras321cfa52019-09-12 18:49:44 -07001459 hole = scoreboard_first_hole (&tc->sack_sb);
1460 if (hole && hole->start == tc->snd_una && hole->end == tc->snd_nxt)
1461 scoreboard_clear (&tc->sack_sb);
1462
Florin Coras36ebcff2019-09-12 18:36:44 -07001463 if (!tcp_in_recovery (tc) && !is_spurious)
1464 tcp_cc_recovered (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001465
Florin Coras36ebcff2019-09-12 18:36:44 -07001466 tcp_fastrecovery_off (tc);
1467 tcp_fastrecovery_first_off (tc);
1468 tcp_recovery_off (tc);
1469 TCP_EVT (TCP_EVT_CC_EVT, tc, 3);
Florin Coras93992a92017-05-24 18:03:56 -07001470
1471 ASSERT (tc->rto_boff == 0);
1472 ASSERT (!tcp_in_cong_recovery (tc));
Florin Coras3eb50622017-07-13 01:24:57 -04001473 ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
Florin Coras6080e0d2020-03-13 20:39:43 +00001474
Florin Coras36ebcff2019-09-12 18:36:44 -07001475 return is_spurious;
Florin Coras93992a92017-05-24 18:03:56 -07001476}
1477
1478static void
Florin Coras52814732019-06-12 15:38:19 -07001479tcp_cc_update (tcp_connection_t * tc, tcp_rate_sample_t * rs)
Florin Coras93992a92017-05-24 18:03:56 -07001480{
Florin Coras3eb50622017-07-13 01:24:57 -04001481 ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001482
1483 /* Congestion avoidance */
Florin Coras52814732019-06-12 15:38:19 -07001484 tcp_cc_rcv_ack (tc, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001485
1486 /* If a cumulative ack, make sure dupacks is 0 */
1487 tc->rcv_dupacks = 0;
1488
1489 /* When dupacks hits the threshold we only enter fast retransmit if
1490 * cumulative ack covers more than snd_congestion. Should snd_una
1491 * wrap this test may fail under otherwise valid circumstances.
1492 * Therefore, proactively update snd_congestion when wrap detected. */
1493 if (PREDICT_FALSE
1494 (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1495 && seq_gt (tc->snd_congestion, tc->snd_una)))
1496 tc->snd_congestion = tc->snd_una - 1;
1497}
1498
Florin Corasf03a59a2017-06-09 21:07:32 -07001499/**
1500 * One function to rule them all ... and in the darkness bind them
1501 */
Florin Coras93992a92017-05-24 18:03:56 -07001502static void
Florin Coras52814732019-06-12 15:38:19 -07001503tcp_cc_handle_event (tcp_connection_t * tc, tcp_rate_sample_t * rs,
1504 u32 is_dack)
Florin Coras93992a92017-05-24 18:03:56 -07001505{
Florin Corasafef8bf2019-09-11 23:22:29 -07001506 u8 has_sack = tcp_opts_sack_permitted (&tc->rcv_opts);
Florin Corasf03a59a2017-06-09 21:07:32 -07001507
Florin Coras1de71672019-12-22 09:20:26 -08001508 /* If reneging, wait for timer based retransmits */
1509 if (PREDICT_FALSE (tcp_is_lost_fin (tc) || tc->sack_sb.is_reneging))
1510 return;
1511
Florin Corasafef8bf2019-09-11 23:22:29 -07001512 /*
Florin Corasbe237bf2019-09-27 08:16:40 -07001513 * If not in recovery, figure out if we should enter
Florin Corasafef8bf2019-09-11 23:22:29 -07001514 */
Florin Corasbe237bf2019-09-27 08:16:40 -07001515 if (!tcp_in_cong_recovery (tc))
Florin Corasca1c8f32018-05-23 21:01:30 -07001516 {
Florin Corasbe237bf2019-09-27 08:16:40 -07001517 ASSERT (is_dack);
Florin Coras36ebcff2019-09-12 18:36:44 -07001518
Florin Coras93992a92017-05-24 18:03:56 -07001519 tc->rcv_dupacks++;
Florin Corasbe237bf2019-09-27 08:16:40 -07001520 TCP_EVT (TCP_EVT_DUPACK_RCVD, tc, 1);
1521 tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001522
Florin Corasbe237bf2019-09-27 08:16:40 -07001523 if (tcp_should_fastrecover (tc, has_sack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001524 {
Florin Coras93992a92017-05-24 18:03:56 -07001525 tcp_cc_init_congestion (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001526
Florin Corasafef8bf2019-09-11 23:22:29 -07001527 if (has_sack)
Florin Corasbe237bf2019-09-27 08:16:40 -07001528 scoreboard_init_rxt (&tc->sack_sb, tc->snd_una);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001529
Florin Coras36ebcff2019-09-12 18:36:44 -07001530 tcp_connection_tx_pacer_reset (tc, tc->cwnd, 0 /* start bucket */ );
1531 tcp_program_retransmit (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001532 }
Florin Coras93992a92017-05-24 18:03:56 -07001533
Florin Corasbe237bf2019-09-27 08:16:40 -07001534 return;
1535 }
Florin Corasd2aab832018-05-22 11:39:59 -07001536
Florin Coras93992a92017-05-24 18:03:56 -07001537 /*
Florin Corasb3dce892019-10-30 09:22:14 -07001538 * Already in recovery
Florin Coras93992a92017-05-24 18:03:56 -07001539 */
Florin Coras93992a92017-05-24 18:03:56 -07001540
Florin Coras93992a92017-05-24 18:03:56 -07001541 /*
Florin Corasbe237bf2019-09-27 08:16:40 -07001542 * Process (re)transmit feedback. Output path uses this to decide how much
1543 * more data to release into the network
1544 */
1545 if (has_sack)
1546 {
Florin Corasb3dce892019-10-30 09:22:14 -07001547 if (!tc->bytes_acked && tc->sack_sb.rxt_sacked)
1548 tcp_fastrecovery_first_on (tc);
1549
Florin Corasbe237bf2019-09-27 08:16:40 -07001550 tc->rxt_delivered += tc->sack_sb.rxt_sacked;
1551 tc->prr_delivered += tc->bytes_acked + tc->sack_sb.last_sacked_bytes
1552 - tc->sack_sb.last_bytes_delivered;
Florin Corasbe237bf2019-09-27 08:16:40 -07001553 }
1554 else
1555 {
1556 if (is_dack)
1557 {
1558 tc->rcv_dupacks += 1;
1559 TCP_EVT (TCP_EVT_DUPACK_RCVD, tc, 1);
1560 }
Florin Coras56cef052020-01-15 20:18:35 +00001561 tc->rxt_delivered = clib_min (tc->rxt_delivered + tc->bytes_acked,
Florin Corasbe237bf2019-09-27 08:16:40 -07001562 tc->snd_rxt_bytes);
1563 if (is_dack)
Florin Corasbf1f8b72019-11-04 14:39:33 -08001564 tc->prr_delivered += clib_min (tc->snd_mss,
1565 tc->snd_nxt - tc->snd_una);
Florin Corasbe237bf2019-09-27 08:16:40 -07001566 else
Florin Corasbf1f8b72019-11-04 14:39:33 -08001567 tc->prr_delivered += tc->bytes_acked - clib_min (tc->bytes_acked,
1568 tc->snd_mss *
1569 tc->rcv_dupacks);
Florin Corasbe237bf2019-09-27 08:16:40 -07001570
1571 /* If partial ack, assume that the first un-acked segment was lost */
1572 if (tc->bytes_acked || tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
1573 tcp_fastrecovery_first_on (tc);
Florin Corasbe237bf2019-09-27 08:16:40 -07001574 }
1575
1576 /*
Florin Corasb3dce892019-10-30 09:22:14 -07001577 * See if we can exit and stop retransmitting
1578 */
1579 if (seq_geq (tc->snd_una, tc->snd_congestion))
1580 {
1581 /* If spurious return, we've already updated everything */
1582 if (tcp_cc_recover (tc))
1583 {
1584 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1585 return;
1586 }
1587
1588 /* Treat as congestion avoidance ack */
1589 tcp_cc_rcv_ack (tc, rs);
1590 return;
1591 }
1592
Florin Coras34177e82020-03-20 20:25:37 +00001593 tcp_program_retransmit (tc);
1594
Florin Corasb3dce892019-10-30 09:22:14 -07001595 /*
Florin Corasbe237bf2019-09-27 08:16:40 -07001596 * Notify cc of the event
Florin Coras93992a92017-05-24 18:03:56 -07001597 */
Florin Coras93992a92017-05-24 18:03:56 -07001598
Florin Corasbe237bf2019-09-27 08:16:40 -07001599 if (!tc->bytes_acked)
1600 {
1601 tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
1602 return;
1603 }
1604
1605 /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
1606 * reset dupacks to 0. Also needed if in congestion recovery */
1607 tc->rcv_dupacks = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001608
Florin Coras36ebcff2019-09-12 18:36:44 -07001609 if (tcp_in_recovery (tc))
1610 tcp_cc_rcv_ack (tc, rs);
Dave Barach68b0fb02017-02-28 15:15:56 -05001611 else
Florin Coras36ebcff2019-09-12 18:36:44 -07001612 tcp_cc_rcv_cong_ack (tc, TCP_CC_PARTIALACK, rs);
Florin Corasbe237bf2019-09-27 08:16:40 -07001613}
Dave Barach68b0fb02017-02-28 15:15:56 -05001614
Florin Coras2f04cb92019-12-23 10:03:27 -08001615static void
Florin Coras067f8f92020-01-04 00:53:04 +00001616tcp_handle_old_ack (tcp_connection_t * tc, tcp_rate_sample_t * rs)
Florin Coras2f04cb92019-12-23 10:03:27 -08001617{
1618 if (!tcp_in_cong_recovery (tc))
1619 return;
1620
1621 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras067f8f92020-01-04 00:53:04 +00001622 tcp_rcv_sacks (tc, tc->snd_una);
Florin Coras2f04cb92019-12-23 10:03:27 -08001623
1624 tc->bytes_acked = 0;
1625
1626 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
1627 tcp_bt_sample_delivery_rate (tc, rs);
1628
1629 tcp_cc_handle_event (tc, rs, 1);
1630}
1631
Florin Corasbe237bf2019-09-27 08:16:40 -07001632/**
1633 * Check if duplicate ack as per RFC5681 Sec. 2
1634 */
1635always_inline u8
1636tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd,
1637 u32 prev_snd_una)
1638{
1639 return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
1640 && seq_gt (tc->snd_nxt, tc->snd_una)
1641 && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
1642 && (prev_snd_wnd == tc->snd_wnd));
1643}
1644
1645/**
1646 * Checks if ack is a congestion control event.
1647 */
1648static u8
1649tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b,
1650 u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
1651{
1652 /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
1653 * defined to be 'duplicate' as well */
1654 *is_dack = tc->sack_sb.last_sacked_bytes
1655 || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
1656
Florin Corasbe237bf2019-09-27 08:16:40 -07001657 return (*is_dack || tcp_in_cong_recovery (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -05001658}
1659
Florin Coras93992a92017-05-24 18:03:56 -07001660/**
1661 * Process incoming ACK
1662 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001663static int
Florin Coras9ece3c02018-11-05 11:06:53 -08001664tcp_rcv_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
Florin Coras7ac053b2018-11-05 15:57:21 -08001665 tcp_header_t * th, u32 * error)
Dave Barach68b0fb02017-02-28 15:15:56 -05001666{
Florin Coras93992a92017-05-24 18:03:56 -07001667 u32 prev_snd_wnd, prev_snd_una;
Florin Coras52814732019-06-12 15:38:19 -07001668 tcp_rate_sample_t rs = { 0 };
Florin Coras93992a92017-05-24 18:03:56 -07001669 u8 is_dack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001670
Florin Corasa436a422019-08-20 07:09:31 -07001671 TCP_EVT (TCP_EVT_CC_STAT, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001672
Florin Coras6792ec02017-03-13 03:49:51 -07001673 /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
Florin Coras93992a92017-05-24 18:03:56 -07001674 if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001675 {
Florin Coras47596832019-03-12 18:58:54 -07001676 /* We've probably entered recovery and the peer still has some
1677 * of the data we've sent. Update snd_nxt and accept the ack */
Florin Coras282a3cb2019-04-02 21:43:38 -07001678 if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)
1679 && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
Florin Corasca1c8f32018-05-23 21:01:30 -07001680 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001681 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
Florin Corasca1c8f32018-05-23 21:01:30 -07001682 goto process_ack;
1683 }
1684
Florin Corasedfe0ee2019-07-29 18:13:25 -07001685 tc->errors.above_ack_wnd += 1;
Florin Coras47596832019-03-12 18:58:54 -07001686 *error = TCP_ERROR_ACK_FUTURE;
Florin Corasa436a422019-08-20 07:09:31 -07001687 TCP_EVT (TCP_EVT_ACK_RCV_ERR, tc, 0, vnet_buffer (b)->tcp.ack_number);
Florin Coras47596832019-03-12 18:58:54 -07001688 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001689 }
1690
Florin Coras6792ec02017-03-13 03:49:51 -07001691 /* If old ACK, probably it's an old dupack */
Florin Coras93992a92017-05-24 18:03:56 -07001692 if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001693 {
Florin Corasedfe0ee2019-07-29 18:13:25 -07001694 tc->errors.below_ack_wnd += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001695 *error = TCP_ERROR_ACK_OLD;
Florin Corasa436a422019-08-20 07:09:31 -07001696 TCP_EVT (TCP_EVT_ACK_RCV_ERR, tc, 1, vnet_buffer (b)->tcp.ack_number);
Florin Coras2f04cb92019-12-23 10:03:27 -08001697
1698 if (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una - tc->rcv_wnd))
1699 return -1;
1700
Florin Coras067f8f92020-01-04 00:53:04 +00001701 tcp_handle_old_ack (tc, &rs);
Florin Coras2f04cb92019-12-23 10:03:27 -08001702
Florin Corasc28764f2017-04-26 00:08:42 -07001703 /* Don't drop yet */
1704 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001705 }
1706
Florin Coras47596832019-03-12 18:58:54 -07001707process_ack:
1708
Florin Coras93992a92017-05-24 18:03:56 -07001709 /*
1710 * Looks okay, process feedback
1711 */
Florin Corasedfe0ee2019-07-29 18:13:25 -07001712
Florin Coras93992a92017-05-24 18:03:56 -07001713 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001714 tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1715
Florin Coras93992a92017-05-24 18:03:56 -07001716 prev_snd_wnd = tc->snd_wnd;
1717 prev_snd_una = tc->snd_una;
1718 tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1719 vnet_buffer (b)->tcp.ack_number,
1720 clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1721 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
Florin Coras558e3e02019-09-06 12:56:58 -07001722 tc->snd_una = vnet_buffer (b)->tcp.ack_number;
Florin Coras93992a92017-05-24 18:03:56 -07001723 tcp_validate_txf_size (tc, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001724
Florin Corasbbcfaac2019-10-10 13:52:04 -07001725 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
Florin Coras1dbda642019-09-11 13:42:57 -07001726 tcp_bt_sample_delivery_rate (tc, &rs);
1727
Florin Coras93992a92017-05-24 18:03:56 -07001728 if (tc->bytes_acked)
Florin Coras11e9e352019-11-13 19:09:47 -08001729 {
1730 tcp_program_dequeue (wrk, tc);
1731 tcp_update_rtt (tc, &rs, vnet_buffer (b)->tcp.ack_number);
1732 }
Florin Coras93992a92017-05-24 18:03:56 -07001733
Florin Corasa436a422019-08-20 07:09:31 -07001734 TCP_EVT (TCP_EVT_ACK_RCVD, tc);
Florin Coras6534b7a2017-07-18 05:38:03 -04001735
Florin Coras93992a92017-05-24 18:03:56 -07001736 /*
1737 * Check if we have congestion event
1738 */
1739
1740 if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001741 {
Florin Coras52814732019-06-12 15:38:19 -07001742 tcp_cc_handle_event (tc, &rs, is_dack);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001743 tc->dupacks_in += is_dack;
Florin Corasb2215d62017-08-01 16:56:58 -07001744 if (!tcp_in_cong_recovery (tc))
Florin Corasa9d5bea2018-12-17 08:24:19 -08001745 {
1746 *error = TCP_ERROR_ACK_OK;
1747 return 0;
1748 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001749 *error = TCP_ERROR_ACK_DUP;
Florin Corasca09d072018-10-01 18:31:02 -07001750 if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th))
1751 return 0;
1752 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001753 }
1754
Florin Coras6792ec02017-03-13 03:49:51 -07001755 /*
Florin Coras93992a92017-05-24 18:03:56 -07001756 * Update congestion control (slow start/congestion avoidance)
Florin Coras6792ec02017-03-13 03:49:51 -07001757 */
Florin Coras52814732019-06-12 15:38:19 -07001758 tcp_cc_update (tc, &rs);
Florin Coras00cd22d2018-04-18 13:20:18 -07001759 *error = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001760 return 0;
1761}
1762
Florin Corasb11175d2018-11-09 14:34:08 -08001763static void
1764tcp_program_disconnect (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1765{
1766 if (!tcp_disconnect_pending (tc))
1767 {
1768 vec_add1 (wrk->pending_disconnects, tc->c_c_index);
1769 tcp_disconnect_pending_on (tc);
1770 }
1771}
1772
1773static void
1774tcp_handle_disconnects (tcp_worker_ctx_t * wrk)
1775{
Florin Coras6939d5e2020-02-10 23:22:34 +00001776 u32 thread_index, *pending_disconnects, *pending_resets;
Florin Corasb11175d2018-11-09 14:34:08 -08001777 tcp_connection_t *tc;
1778 int i;
1779
Florin Coras6939d5e2020-02-10 23:22:34 +00001780 if (vec_len (wrk->pending_disconnects))
Florin Corasb11175d2018-11-09 14:34:08 -08001781 {
Florin Coras6939d5e2020-02-10 23:22:34 +00001782 thread_index = wrk->vm->thread_index;
1783 pending_disconnects = wrk->pending_disconnects;
1784 for (i = 0; i < vec_len (pending_disconnects); i++)
1785 {
1786 tc = tcp_connection_get (pending_disconnects[i], thread_index);
1787 tcp_disconnect_pending_off (tc);
1788 session_transport_closing_notify (&tc->connection);
1789 }
1790 _vec_len (wrk->pending_disconnects) = 0;
Florin Corasb11175d2018-11-09 14:34:08 -08001791 }
Florin Coras6939d5e2020-02-10 23:22:34 +00001792
1793 if (vec_len (wrk->pending_resets))
1794 {
1795 thread_index = wrk->vm->thread_index;
1796 pending_resets = wrk->pending_resets;
1797 for (i = 0; i < vec_len (pending_resets); i++)
1798 {
1799 tc = tcp_connection_get (pending_resets[i], thread_index);
1800 tcp_disconnect_pending_off (tc);
1801 tcp_handle_rst (tc);
1802 }
1803 _vec_len (wrk->pending_resets) = 0;
1804 }
Florin Corasb11175d2018-11-09 14:34:08 -08001805}
1806
1807static void
1808tcp_rcv_fin (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
1809 u32 * error)
1810{
Florin Corasf73d4c22019-06-28 09:18:48 -07001811 /* Reject out-of-order fins */
1812 if (vnet_buffer (b)->tcp.seq_end != tc->rcv_nxt)
1813 return;
1814
Florin Coras3c514d52018-12-22 11:39:33 -08001815 /* Account for the FIN and send ack */
1816 tc->rcv_nxt += 1;
Florin Corascb711a42019-10-16 19:28:17 -07001817 tc->flags |= TCP_CONN_FINRCVD;
Florin Coras26dd6de2019-07-23 23:54:47 -07001818 tcp_program_ack (tc);
Florin Corasb11175d2018-11-09 14:34:08 -08001819 /* Enter CLOSE-WAIT and notify session. To avoid lingering
1820 * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
Florin Coras3c514d52018-12-22 11:39:33 -08001821 tcp_connection_set_state (tc, TCP_STATE_CLOSE_WAIT);
Florin Corasb11175d2018-11-09 14:34:08 -08001822 tcp_program_disconnect (wrk, tc);
Florin Coras9094b5c2019-08-12 14:17:47 -07001823 tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, tcp_cfg.closewait_time);
Florin Corasa436a422019-08-20 07:09:31 -07001824 TCP_EVT (TCP_EVT_FIN_RCVD, tc);
Florin Corasb11175d2018-11-09 14:34:08 -08001825 *error = TCP_ERROR_FIN_RCVD;
1826}
1827
Filip Tehlare275bed2019-03-06 00:06:56 -08001828#ifndef CLIB_MARCH_VARIANT
Florin Coras3eb50622017-07-13 01:24:57 -04001829static u8
1830tcp_sack_vector_is_sane (sack_block_t * sacks)
1831{
1832 int i;
1833 for (i = 1; i < vec_len (sacks); i++)
1834 {
1835 if (sacks[i - 1].end == sacks[i].start)
1836 return 0;
1837 }
1838 return 1;
1839}
1840
Dave Barach68b0fb02017-02-28 15:15:56 -05001841/**
1842 * Build SACK list as per RFC2018.
1843 *
1844 * Makes sure the first block contains the segment that generated the current
1845 * ACK and the following ones are the ones most recently reported in SACK
1846 * blocks.
1847 *
1848 * @param tc TCP connection for which the SACK list is updated
1849 * @param start Start sequence number of the newest SACK block
1850 * @param end End sequence of the newest SACK block
1851 */
Florin Coras45d34962017-04-25 00:05:27 -07001852void
Dave Barach68b0fb02017-02-28 15:15:56 -05001853tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1854{
Florin Corasb691f762019-02-22 09:07:20 -08001855 sack_block_t *new_list = tc->snd_sacks_fl, *block = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001856 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001857
1858 /* If the first segment is ooo add it to the list. Last write might've moved
1859 * rcv_nxt over the first segment. */
1860 if (seq_lt (tc->rcv_nxt, start))
1861 {
Florin Coras45d34962017-04-25 00:05:27 -07001862 vec_add2 (new_list, block, 1);
1863 block->start = start;
1864 block->end = end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001865 }
1866
1867 /* Find the blocks still worth keeping. */
1868 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1869 {
Florin Coras45d34962017-04-25 00:05:27 -07001870 /* Discard if rcv_nxt advanced beyond current block */
1871 if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001872 continue;
1873
Florin Coras45d34962017-04-25 00:05:27 -07001874 /* Merge or drop if segment overlapped by the new segment */
1875 if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1876 && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1877 {
1878 if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1879 new_list[0].start = tc->snd_sacks[i].start;
1880 if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1881 new_list[0].end = tc->snd_sacks[i].end;
1882 continue;
1883 }
1884
1885 /* Save to new SACK list if we have space. */
1886 if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
Florin Coras47596832019-03-12 18:58:54 -07001887 vec_add1 (new_list, tc->snd_sacks[i]);
Dave Barach68b0fb02017-02-28 15:15:56 -05001888 }
1889
Florin Coras45d34962017-04-25 00:05:27 -07001890 ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
Florin Coras6792ec02017-03-13 03:49:51 -07001891
Dave Barach68b0fb02017-02-28 15:15:56 -05001892 /* Replace old vector with new one */
Florin Corasb691f762019-02-22 09:07:20 -08001893 vec_reset_length (tc->snd_sacks);
1894 tc->snd_sacks_fl = tc->snd_sacks;
Dave Barach68b0fb02017-02-28 15:15:56 -05001895 tc->snd_sacks = new_list;
Florin Coras3eb50622017-07-13 01:24:57 -04001896
1897 /* Segments should not 'touch' */
1898 ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
Dave Barach68b0fb02017-02-28 15:15:56 -05001899}
1900
Florin Corasca1c8f32018-05-23 21:01:30 -07001901u32
1902tcp_sack_list_bytes (tcp_connection_t * tc)
1903{
1904 u32 bytes = 0, i;
1905 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1906 bytes += tc->snd_sacks[i].end - tc->snd_sacks[i].start;
1907 return bytes;
1908}
Filip Tehlare275bed2019-03-06 00:06:56 -08001909#endif /* CLIB_MARCH_VARIANT */
Florin Corasca1c8f32018-05-23 21:01:30 -07001910
Dave Barach68b0fb02017-02-28 15:15:56 -05001911/** Enqueue data for delivery to application */
Florin Coras0dbd5172018-06-25 16:19:34 -07001912static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001913tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1914 u16 data_len)
1915{
Florin Coras1f152cd2017-08-18 19:28:03 -07001916 int written, error = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001917
Dave Barach2c25a622017-06-26 11:35:07 -04001918 ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001919 ASSERT (data_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001920 written = session_enqueue_stream_connection (&tc->connection, b, 0,
1921 1 /* queue event */ , 1);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001922 tc->bytes_in += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001923
Florin Corasa436a422019-08-20 07:09:31 -07001924 TCP_EVT (TCP_EVT_INPUT, tc, 0, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001925
Dave Barach68b0fb02017-02-28 15:15:56 -05001926 /* Update rcv_nxt */
1927 if (PREDICT_TRUE (written == data_len))
1928 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001929 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001930 }
1931 /* If more data written than expected, account for out-of-order bytes. */
1932 else if (written > data_len)
1933 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001934 tc->rcv_nxt += written;
Florin Corasa436a422019-08-20 07:09:31 -07001935 TCP_EVT (TCP_EVT_CC_INPUT, tc, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001936 }
1937 else if (written > 0)
1938 {
1939 /* We've written something but FIFO is probably full now */
1940 tc->rcv_nxt += written;
Florin Coras1f152cd2017-08-18 19:28:03 -07001941 error = TCP_ERROR_PARTIALLY_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001942 }
1943 else
1944 {
Dave Barach68b0fb02017-02-28 15:15:56 -05001945 return TCP_ERROR_FIFO_FULL;
1946 }
1947
Florin Coras6792ec02017-03-13 03:49:51 -07001948 /* Update SACK list if need be */
Florin Coras93992a92017-05-24 18:03:56 -07001949 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras6792ec02017-03-13 03:49:51 -07001950 {
1951 /* Remove SACK blocks that have been delivered */
1952 tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1953 }
1954
Florin Coras1f152cd2017-08-18 19:28:03 -07001955 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -05001956}
1957
1958/** Enqueue out-of-order data */
Florin Coras0dbd5172018-06-25 16:19:34 -07001959static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001960tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1961 u16 data_len)
1962{
Florin Coras288eaab2019-02-03 15:26:14 -08001963 session_t *s0;
Florin Coras3eb50622017-07-13 01:24:57 -04001964 int rv, offset;
Florin Coras6792ec02017-03-13 03:49:51 -07001965
Florin Corasf03a59a2017-06-09 21:07:32 -07001966 ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001967 ASSERT (data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001968
Florin Corasf03a59a2017-06-09 21:07:32 -07001969 /* Enqueue out-of-order data with relative offset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07001970 rv = session_enqueue_stream_connection (&tc->connection, b,
1971 vnet_buffer (b)->tcp.seq_number -
1972 tc->rcv_nxt, 0 /* queue event */ ,
1973 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001974
1975 /* Nothing written */
1976 if (rv)
1977 {
Florin Corasa436a422019-08-20 07:09:31 -07001978 TCP_EVT (TCP_EVT_INPUT, tc, 1, data_len, 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001979 return TCP_ERROR_FIFO_FULL;
1980 }
1981
Florin Corasa436a422019-08-20 07:09:31 -07001982 TCP_EVT (TCP_EVT_INPUT, tc, 1, data_len, data_len);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001983 tc->bytes_in += data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05001984
1985 /* Update SACK list if in use */
Florin Coras93992a92017-05-24 18:03:56 -07001986 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001987 {
1988 ooo_segment_t *newest;
1989 u32 start, end;
1990
Florin Corascea194d2017-10-02 00:18:51 -07001991 s0 = session_get (tc->c_s_index, tc->c_thread_index);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001992
Dave Barach68b0fb02017-02-28 15:15:56 -05001993 /* Get the newest segment from the fifo */
Florin Coras288eaab2019-02-03 15:26:14 -08001994 newest = svm_fifo_newest_ooo_segment (s0->rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001995 if (newest)
1996 {
Sirshak Das28aa5392019-02-05 01:33:33 -06001997 offset = ooo_segment_offset_prod (s0->rx_fifo, newest);
Florin Coras3eb50622017-07-13 01:24:57 -04001998 ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1999 start = tc->rcv_nxt + offset;
Florin Coras288eaab2019-02-03 15:26:14 -08002000 end = start + ooo_segment_length (s0->rx_fifo, newest);
Florin Corasf03a59a2017-06-09 21:07:32 -07002001 tcp_update_sack_list (tc, start, end);
Florin Coras288eaab2019-02-03 15:26:14 -08002002 svm_fifo_newest_ooo_segment_reset (s0->rx_fifo);
Florin Corasa436a422019-08-20 07:09:31 -07002003 TCP_EVT (TCP_EVT_CC_SACKS, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07002004 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002005 }
2006
Florin Coras00cd22d2018-04-18 13:20:18 -07002007 return TCP_ERROR_ENQUEUED_OOO;
Dave Barach68b0fb02017-02-28 15:15:56 -05002008}
2009
2010/**
Florin Coras6792ec02017-03-13 03:49:51 -07002011 * Check if ACK could be delayed. If ack can be delayed, it should return
2012 * true for a full frame. If we're always acking return 0.
Dave Barach68b0fb02017-02-28 15:15:56 -05002013 */
2014always_inline int
2015tcp_can_delack (tcp_connection_t * tc)
2016{
Florin Coras6792ec02017-03-13 03:49:51 -07002017 /* Send ack if ... */
2018 if (TCP_ALWAYS_ACK
Florin Coras74b74372019-03-28 16:31:52 -07002019 /* just sent a rcv wnd 0
2020 || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0 */
Florin Coras6792ec02017-03-13 03:49:51 -07002021 /* constrained to send ack */
2022 || (tc->flags & TCP_CONN_SNDACK) != 0
2023 /* we're almost out of tx wnd */
Florin Corasca1c8f32018-05-23 21:01:30 -07002024 || tcp_available_cc_snd_space (tc) < 4 * tc->snd_mss)
Florin Coras6792ec02017-03-13 03:49:51 -07002025 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002026
Florin Coras6792ec02017-03-13 03:49:51 -07002027 return 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002028}
2029
2030static int
Florin Corasb2215d62017-08-01 16:56:58 -07002031tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
2032{
Florin Coras1f152cd2017-08-18 19:28:03 -07002033 u32 discard, first = b->current_length;
Florin Corasb2215d62017-08-01 16:56:58 -07002034 vlib_main_t *vm = vlib_get_main ();
2035
Florin Coras1f152cd2017-08-18 19:28:03 -07002036 /* Handle multi-buffer segments */
Florin Corasb2215d62017-08-01 16:56:58 -07002037 if (n_bytes_to_drop > b->current_length)
2038 {
2039 if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
2040 return -1;
2041 do
2042 {
2043 discard = clib_min (n_bytes_to_drop, b->current_length);
2044 vlib_buffer_advance (b, discard);
2045 b = vlib_get_buffer (vm, b->next_buffer);
2046 n_bytes_to_drop -= discard;
2047 }
2048 while (n_bytes_to_drop);
Florin Coras1f152cd2017-08-18 19:28:03 -07002049 if (n_bytes_to_drop > first)
2050 b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
Florin Corasb2215d62017-08-01 16:56:58 -07002051 }
Florin Coras1f152cd2017-08-18 19:28:03 -07002052 else
2053 vlib_buffer_advance (b, n_bytes_to_drop);
2054 vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
Florin Corasb2215d62017-08-01 16:56:58 -07002055 return 0;
2056}
2057
Florin Coras00cd22d2018-04-18 13:20:18 -07002058/**
2059 * Receive buffer for connection and handle acks
2060 *
2061 * It handles both in order or out-of-order data.
2062 */
Florin Corasb2215d62017-08-01 16:56:58 -07002063static int
Florin Coras7ac053b2018-11-05 15:57:21 -08002064tcp_segment_rcv (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
2065 vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -05002066{
Florin Coras00cd22d2018-04-18 13:20:18 -07002067 u32 error, n_bytes_to_drop, n_data_bytes;
Florin Coras6534b7a2017-07-18 05:38:03 -04002068
2069 vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
2070 n_data_bytes = vnet_buffer (b)->tcp.data_len;
2071 ASSERT (n_data_bytes);
Florin Corasedfe0ee2019-07-29 18:13:25 -07002072 tc->data_segs_in += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002073
2074 /* Handle out-of-order data */
2075 if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
2076 {
Florin Coras6792ec02017-03-13 03:49:51 -07002077 /* Old sequence numbers allowed through because they overlapped
2078 * the rx window */
2079 if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05002080 {
Florin Coras00cd22d2018-04-18 13:20:18 -07002081 /* Completely in the past (possible retransmit). Ack
2082 * retransmissions since we may not have any data to send */
Florin Corasf03a59a2017-06-09 21:07:32 -07002083 if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
Florin Coras6534b7a2017-07-18 05:38:03 -04002084 {
Florin Coras7fd59cc2020-03-12 15:50:57 +00002085 tcp_program_dupack (tc);
2086 tc->errors.below_data_wnd++;
Florin Coras00cd22d2018-04-18 13:20:18 -07002087 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras6534b7a2017-07-18 05:38:03 -04002088 goto done;
2089 }
Dave Barach259cdae2017-05-15 16:27:05 -04002090
Florin Coras00cd22d2018-04-18 13:20:18 -07002091 /* Chop off the bytes in the past and see if what is left
2092 * can be enqueued in order */
Florin Corasdb84e572017-05-09 18:54:52 -07002093 n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
2094 n_data_bytes -= n_bytes_to_drop;
Dave Barach2c25a622017-06-26 11:35:07 -04002095 vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07002096 if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
Florin Coras00cd22d2018-04-18 13:20:18 -07002097 {
2098 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras00cd22d2018-04-18 13:20:18 -07002099 goto done;
2100 }
Florin Corasdb84e572017-05-09 18:54:52 -07002101 goto in_order;
Dave Barach68b0fb02017-02-28 15:15:56 -05002102 }
2103
Florin Coras00cd22d2018-04-18 13:20:18 -07002104 /* RFC2581: Enqueue and send DUPACK for fast retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07002105 error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
Florin Coras26dd6de2019-07-23 23:54:47 -07002106 tcp_program_dupack (tc);
Florin Corasa436a422019-08-20 07:09:31 -07002107 TCP_EVT (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
Florin Corasedfe0ee2019-07-29 18:13:25 -07002108 tc->errors.above_data_wnd += seq_gt (vnet_buffer (b)->tcp.seq_end,
2109 tc->rcv_las + tc->rcv_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -05002110 goto done;
2111 }
2112
Florin Corasdb84e572017-05-09 18:54:52 -07002113in_order:
2114
Dave Barach68b0fb02017-02-28 15:15:56 -05002115 /* In order data, enqueue. Fifo figures out by itself if any out-of-order
2116 * segments can be enqueued after fifo tail offset changes. */
2117 error = tcp_session_enqueue_data (tc, b, n_data_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07002118 if (tcp_can_delack (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05002119 {
Florin Coras6792ec02017-03-13 03:49:51 -07002120 if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
Florin Coras9094b5c2019-08-12 14:17:47 -07002121 tcp_timer_set (tc, TCP_TIMER_DELACK, tcp_cfg.delack_time);
Florin Coras3e350af2017-03-30 02:54:28 -07002122 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05002123 }
2124
Florin Coras26dd6de2019-07-23 23:54:47 -07002125 tcp_program_ack (tc);
Florin Coras3e350af2017-03-30 02:54:28 -07002126
Dave Barach68b0fb02017-02-28 15:15:56 -05002127done:
2128 return error;
2129}
2130
Clement Durand6cf260c2017-04-13 13:27:04 +02002131typedef struct
2132{
2133 tcp_header_t tcp_header;
2134 tcp_connection_t tcp_connection;
2135} tcp_rx_trace_t;
2136
Florin Coras0dbd5172018-06-25 16:19:34 -07002137static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02002138format_tcp_rx_trace (u8 * s, va_list * args)
2139{
2140 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2141 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2142 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
Florin Coras30928f82020-01-27 19:21:28 -08002143 tcp_connection_t *tc = &t->tcp_connection;
Christophe Fontained3c008d2017-10-02 18:10:54 +02002144 u32 indent = format_get_indent (s);
Clement Durand6cf260c2017-04-13 13:27:04 +02002145
Florin Coras30928f82020-01-27 19:21:28 -08002146 s = format (s, "%U state %U\n%U%U", format_tcp_connection_id, tc,
2147 format_tcp_state, tc->state, format_white_space, indent,
2148 format_tcp_header, &t->tcp_header, 128);
Clement Durand6cf260c2017-04-13 13:27:04 +02002149
2150 return s;
2151}
2152
Florin Coras0dbd5172018-06-25 16:19:34 -07002153static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02002154format_tcp_rx_trace_short (u8 * s, va_list * args)
2155{
2156 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2157 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2158 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
2159
2160 s = format (s, "%d -> %d (%U)",
Florin Coras4df38712018-06-20 12:44:16 -07002161 clib_net_to_host_u16 (t->tcp_header.dst_port),
2162 clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state,
Florin Corasbb292f42017-05-19 09:49:19 -07002163 t->tcp_connection.state);
Clement Durand6cf260c2017-04-13 13:27:04 +02002164
2165 return s;
2166}
2167
Florin Coras4df38712018-06-20 12:44:16 -07002168static void
Florin Coras82b13a82017-04-25 11:58:06 -07002169tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
2170 tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
2171{
2172 if (tc0)
2173 {
Dave Barach178cf492018-11-13 16:34:13 -05002174 clib_memcpy_fast (&t0->tcp_connection, tc0,
2175 sizeof (t0->tcp_connection));
Florin Coras82b13a82017-04-25 11:58:06 -07002176 }
2177 else
2178 {
2179 th0 = tcp_buffer_hdr (b0);
2180 }
Dave Barach178cf492018-11-13 16:34:13 -05002181 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
Florin Coras82b13a82017-04-25 11:58:06 -07002182}
2183
Florin Coras4df38712018-06-20 12:44:16 -07002184static void
2185tcp_established_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2186 vlib_frame_t * frame, u8 is_ip4)
2187{
2188 u32 *from, n_left;
2189
2190 n_left = frame->n_vectors;
2191 from = vlib_frame_vector_args (frame);
2192
2193 while (n_left >= 1)
2194 {
2195 tcp_connection_t *tc0;
2196 tcp_rx_trace_t *t0;
2197 tcp_header_t *th0;
2198 vlib_buffer_t *b0;
2199 u32 bi0;
2200
2201 bi0 = from[0];
2202 b0 = vlib_get_buffer (vm, bi0);
2203
2204 if (b0->flags & VLIB_BUFFER_IS_TRACED)
2205 {
2206 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2207 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2208 vm->thread_index);
2209 th0 = tcp_buffer_hdr (b0);
2210 tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
2211 }
2212
2213 from += 1;
2214 n_left -= 1;
2215 }
2216}
2217
Florin Coras6792ec02017-03-13 03:49:51 -07002218always_inline void
Florin Coras00cd22d2018-04-18 13:20:18 -07002219tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
2220 u8 is_ip4, u32 evt, u32 val)
Dave Barach68b0fb02017-02-28 15:15:56 -05002221{
Florin Coras6792ec02017-03-13 03:49:51 -07002222 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -07002223 vlib_node_increment_counter (vm, tcp4_node, evt, val);
Florin Coras6792ec02017-03-13 03:49:51 -07002224 else
Florin Coras3cbc04b2017-10-02 00:18:51 -07002225 vlib_node_increment_counter (vm, tcp6_node, evt, val);
Dave Barach68b0fb02017-02-28 15:15:56 -05002226}
2227
Florin Coras00cd22d2018-04-18 13:20:18 -07002228#define tcp_maybe_inc_counter(node_id, err, count) \
2229{ \
2230 if (next0 != tcp_next_drop (is_ip4)) \
2231 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2232 tcp6_##node_id##_node.index, is_ip4, err, \
2233 1); \
2234}
2235#define tcp_inc_counter(node_id, err, count) \
2236 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2237 tcp6_##node_id##_node.index, is_ip4, \
2238 err, count)
2239#define tcp_maybe_inc_err_counter(cnts, err) \
2240{ \
2241 cnts[err] += (next0 != tcp_next_drop (is_ip4)); \
2242}
2243#define tcp_inc_err_counter(cnts, err, val) \
2244{ \
2245 cnts[err] += val; \
2246}
2247#define tcp_store_err_counters(node_id, cnts) \
2248{ \
2249 int i; \
2250 for (i = 0; i < TCP_N_ERROR; i++) \
2251 if (cnts[i]) \
2252 tcp_inc_counter(node_id, i, cnts[i]); \
2253}
2254
2255
Dave Barach68b0fb02017-02-28 15:15:56 -05002256always_inline uword
2257tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07002258 vlib_frame_t * frame, int is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05002259{
Florin Coras4df38712018-06-20 12:44:16 -07002260 u32 thread_index = vm->thread_index, errors = 0;
Florin Coras9ece3c02018-11-05 11:06:53 -08002261 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08002262 u32 n_left_from, *from, *first_buffer;
Florin Coras00cd22d2018-04-18 13:20:18 -07002263 u16 err_counters[TCP_N_ERROR] = { 0 };
Dave Barach68b0fb02017-02-28 15:15:56 -05002264
Florin Coras4df38712018-06-20 12:44:16 -07002265 if (node->flags & VLIB_NODE_FLAG_TRACE)
2266 tcp_established_trace_frame (vm, node, frame, is_ip4);
2267
Florin Coras7ac053b2018-11-05 15:57:21 -08002268 first_buffer = from = vlib_frame_vector_args (frame);
Florin Coras4df38712018-06-20 12:44:16 -07002269 n_left_from = frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002270
2271 while (n_left_from > 0)
2272 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002273 u32 bi0, error0 = TCP_ERROR_ACK_OK;
2274 vlib_buffer_t *b0;
Florin Coras3c514d52018-12-22 11:39:33 -08002275 tcp_header_t *th0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002276 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002277
Florin Coras7ac053b2018-11-05 15:57:21 -08002278 if (n_left_from > 1)
Dave Barach68b0fb02017-02-28 15:15:56 -05002279 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002280 vlib_buffer_t *pb;
2281 pb = vlib_get_buffer (vm, from[1]);
2282 vlib_prefetch_buffer_header (pb, LOAD);
2283 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
Dave Barach68b0fb02017-02-28 15:15:56 -05002284 }
2285
Florin Coras7ac053b2018-11-05 15:57:21 -08002286 bi0 = from[0];
2287 from += 1;
2288 n_left_from -= 1;
2289
2290 b0 = vlib_get_buffer (vm, bi0);
2291 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2292 thread_index);
2293
2294 if (PREDICT_FALSE (tc0 == 0))
2295 {
2296 error0 = TCP_ERROR_INVALID_CONNECTION;
2297 goto done;
2298 }
2299
2300 th0 = tcp_buffer_hdr (b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002301
2302 /* TODO header prediction fast path */
2303
2304 /* 1-4: check SEQ, RST, SYN */
2305 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, th0, &error0)))
2306 {
Florin Corasa436a422019-08-20 07:09:31 -07002307 TCP_EVT (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp);
Florin Coras7ac053b2018-11-05 15:57:21 -08002308 goto done;
2309 }
2310
2311 /* 5: check the ACK field */
2312 if (PREDICT_FALSE (tcp_rcv_ack (wrk, tc0, b0, th0, &error0)))
2313 goto done;
2314
2315 /* 6: check the URG bit TODO */
2316
2317 /* 7: process the segment text */
2318 if (vnet_buffer (b0)->tcp.data_len)
2319 error0 = tcp_segment_rcv (wrk, tc0, b0);
2320
2321 /* 8: check the FIN bit */
Florin Coras3c514d52018-12-22 11:39:33 -08002322 if (PREDICT_FALSE (tcp_is_fin (th0)))
Florin Corasb11175d2018-11-09 14:34:08 -08002323 tcp_rcv_fin (wrk, tc0, b0, &error0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002324
2325 done:
2326 tcp_inc_err_counter (err_counters, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002327 }
2328
Florin Coras31c99552019-03-01 13:00:58 -08002329 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2330 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002331 err_counters[TCP_ERROR_MSG_QUEUE_FULL] = errors;
Florin Coras00cd22d2018-04-18 13:20:18 -07002332 tcp_store_err_counters (established, err_counters);
Florin Coras9ece3c02018-11-05 11:06:53 -08002333 tcp_handle_postponed_dequeues (wrk);
Florin Corasb11175d2018-11-09 14:34:08 -08002334 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08002335 vlib_buffer_free (vm, first_buffer, frame->n_vectors);
Florin Coras4df38712018-06-20 12:44:16 -07002336
2337 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002338}
2339
Filip Tehlare275bed2019-03-06 00:06:56 -08002340VLIB_NODE_FN (tcp4_established_node) (vlib_main_t * vm,
2341 vlib_node_runtime_t * node,
2342 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002343{
2344 return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2345}
2346
Filip Tehlare275bed2019-03-06 00:06:56 -08002347VLIB_NODE_FN (tcp6_established_node) (vlib_main_t * vm,
2348 vlib_node_runtime_t * node,
2349 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002350{
2351 return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2352}
2353
2354/* *INDENT-OFF* */
2355VLIB_REGISTER_NODE (tcp4_established_node) =
2356{
Dave Barach68b0fb02017-02-28 15:15:56 -05002357 .name = "tcp4-established",
2358 /* Takes a vector of packets. */
2359 .vector_size = sizeof (u32),
Florin Corase69f4952017-03-07 10:06:24 -08002360 .n_errors = TCP_N_ERROR,
2361 .error_strings = tcp_error_strings,
Dave Barach68b0fb02017-02-28 15:15:56 -05002362 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2363 .next_nodes =
2364 {
2365#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2366 foreach_tcp_state_next
2367#undef _
2368 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002369 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002370};
2371/* *INDENT-ON* */
2372
Dave Barach68b0fb02017-02-28 15:15:56 -05002373/* *INDENT-OFF* */
2374VLIB_REGISTER_NODE (tcp6_established_node) =
2375{
Dave Barach68b0fb02017-02-28 15:15:56 -05002376 .name = "tcp6-established",
2377 /* Takes a vector of packets. */
2378 .vector_size = sizeof (u32),
2379 .n_errors = TCP_N_ERROR,
2380 .error_strings = tcp_error_strings,
2381 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2382 .next_nodes =
2383 {
2384#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2385 foreach_tcp_state_next
2386#undef _
2387 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002388 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002389};
2390/* *INDENT-ON* */
2391
2392
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002393static u8
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002394tcp_lookup_is_valid (tcp_connection_t * tc, vlib_buffer_t * b,
2395 tcp_header_t * hdr)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002396{
Florin Corascea194d2017-10-02 00:18:51 -07002397 transport_connection_t *tmp = 0;
2398 u64 handle;
2399
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002400 if (!tc)
2401 return 1;
2402
Florin Coras70131132017-11-27 02:43:30 -08002403 /* Proxy case */
2404 if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
2405 return 1;
2406
Florin Coras07df7912019-11-07 08:26:06 -08002407 u8 is_ip_valid = 0, val_l, val_r;
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002408
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002409 if (tc->connection.is_ip4)
2410 {
2411 ip4_header_t *ip4_hdr = (ip4_header_t *) vlib_buffer_get_current (b);
Florin Coras07df7912019-11-07 08:26:06 -08002412
2413 val_l = !ip4_address_compare (&ip4_hdr->dst_address,
2414 &tc->connection.lcl_ip.ip4);
2415 val_l = val_l || ip_is_zero (&tc->connection.lcl_ip, 1);
2416 val_r = !ip4_address_compare (&ip4_hdr->src_address,
2417 &tc->connection.rmt_ip.ip4);
2418 val_r = val_r || tc->state == TCP_STATE_LISTEN;
2419 is_ip_valid = val_l && val_r;
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002420 }
2421 else
2422 {
2423 ip6_header_t *ip6_hdr = (ip6_header_t *) vlib_buffer_get_current (b);
Florin Coras07df7912019-11-07 08:26:06 -08002424
2425 val_l = !ip6_address_compare (&ip6_hdr->dst_address,
2426 &tc->connection.lcl_ip.ip6);
2427 val_l = val_l || ip_is_zero (&tc->connection.lcl_ip, 0);
2428 val_r = !ip6_address_compare (&ip6_hdr->src_address,
2429 &tc->connection.rmt_ip.ip6);
2430 val_r = val_r || tc->state == TCP_STATE_LISTEN;
2431 is_ip_valid = val_l && val_r;
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002432 }
2433
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002434 u8 is_valid = (tc->c_lcl_port == hdr->dst_port
2435 && (tc->state == TCP_STATE_LISTEN
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002436 || tc->c_rmt_port == hdr->src_port) && is_ip_valid);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002437
2438 if (!is_valid)
2439 {
Florin Corascea194d2017-10-02 00:18:51 -07002440 handle = session_lookup_half_open_handle (&tc->connection);
2441 tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
Florin Coras3cbc04b2017-10-02 00:18:51 -07002442 tc->c_proto, tc->c_is_ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002443
2444 if (tmp)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002445 {
2446 if (tmp->lcl_port == hdr->dst_port
2447 && tmp->rmt_port == hdr->src_port)
2448 {
Florin Corascea194d2017-10-02 00:18:51 -07002449 TCP_DBG ("half-open is valid!");
Ryujiro Shibuya3ea17d52019-11-05 07:24:32 +00002450 is_valid = 1;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002451 }
2452 }
2453 }
2454 return is_valid;
2455}
2456
2457/**
2458 * Lookup transport connection
2459 */
2460static tcp_connection_t *
Florin Corascea194d2017-10-02 00:18:51 -07002461tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
2462 u8 is_ip4)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002463{
2464 tcp_header_t *tcp;
2465 transport_connection_t *tconn;
2466 tcp_connection_t *tc;
Florin Corasdff48db2017-11-19 18:06:58 -08002467 u8 is_filtered = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002468 if (is_ip4)
2469 {
2470 ip4_header_t *ip4;
2471 ip4 = vlib_buffer_get_current (b);
2472 tcp = ip4_next_header (ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002473 tconn = session_lookup_connection_wt4 (fib_index,
2474 &ip4->dst_address,
2475 &ip4->src_address,
2476 tcp->dst_port,
2477 tcp->src_port,
2478 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002479 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002480 tc = tcp_get_connection_from_transport (tconn);
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002481 ASSERT (tcp_lookup_is_valid (tc, b, tcp));
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002482 }
2483 else
2484 {
2485 ip6_header_t *ip6;
2486 ip6 = vlib_buffer_get_current (b);
2487 tcp = ip6_next_header (ip6);
Florin Corascea194d2017-10-02 00:18:51 -07002488 tconn = session_lookup_connection_wt6 (fib_index,
2489 &ip6->dst_address,
2490 &ip6->src_address,
2491 tcp->dst_port,
2492 tcp->src_port,
2493 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002494 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002495 tc = tcp_get_connection_from_transport (tconn);
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002496 ASSERT (tcp_lookup_is_valid (tc, b, tcp));
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002497 }
2498 return tc;
2499}
2500
Yu Pingb092b772019-12-27 04:04:33 +08002501static tcp_connection_t *
2502tcp_lookup_listener (vlib_buffer_t * b, u32 fib_index, int is_ip4)
2503{
2504 session_t *s;
2505
2506 if (is_ip4)
2507 {
2508 ip4_header_t *ip4 = vlib_buffer_get_current (b);
2509 tcp_header_t *tcp = tcp_buffer_hdr (b);
2510 s = session_lookup_listener4 (fib_index,
2511 &ip4->dst_address,
2512 tcp->dst_port, TRANSPORT_PROTO_TCP, 1);
2513 }
2514 else
2515 {
2516 ip6_header_t *ip6 = vlib_buffer_get_current (b);
2517 tcp_header_t *tcp = tcp_buffer_hdr (b);
2518 s = session_lookup_listener6 (fib_index,
2519 &ip6->dst_address,
2520 tcp->dst_port, TRANSPORT_PROTO_TCP, 1);
2521
2522 }
2523 if (PREDICT_TRUE (s != 0))
2524 return tcp_get_connection_from_transport (transport_get_listener
2525 (TRANSPORT_PROTO_TCP,
2526 s->connection_index));
2527 else
2528 return 0;
2529}
2530
Simon Zhang1146ff42019-09-02 22:54:00 +08002531always_inline void
2532tcp_check_tx_offload (tcp_connection_t * tc, int is_ipv4)
2533{
2534 vnet_main_t *vnm = vnet_get_main ();
2535 const dpo_id_t *dpo;
2536 const load_balance_t *lb;
2537 vnet_hw_interface_t *hw_if;
2538 u32 sw_if_idx, lb_idx;
2539
2540 if (is_ipv4)
2541 {
2542 ip4_address_t *dst_addr = &(tc->c_rmt_ip.ip4);
2543 lb_idx = ip4_fib_forwarding_lookup (tc->c_fib_index, dst_addr);
2544 }
2545 else
2546 {
2547 ip6_address_t *dst_addr = &(tc->c_rmt_ip.ip6);
2548 lb_idx = ip6_fib_table_fwding_lookup (tc->c_fib_index, dst_addr);
2549 }
2550
2551 lb = load_balance_get (lb_idx);
Simon Zhang79bfb9e2019-12-24 20:02:20 +08002552 if (PREDICT_FALSE (lb->lb_n_buckets > 1))
2553 return;
Simon Zhang1146ff42019-09-02 22:54:00 +08002554 dpo = load_balance_get_bucket_i (lb, 0);
2555
Simon Zhang79bfb9e2019-12-24 20:02:20 +08002556 sw_if_idx = dpo_get_urpf (dpo);
2557 if (PREDICT_FALSE (sw_if_idx == ~0))
2558 return;
Simon Zhang1146ff42019-09-02 22:54:00 +08002559
Simon Zhang79bfb9e2019-12-24 20:02:20 +08002560 hw_if = vnet_get_sup_hw_interface (vnm, sw_if_idx);
Florin Corasbbcfaac2019-10-10 13:52:04 -07002561 if (hw_if->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_GSO)
2562 tc->cfg_flags |= TCP_CFG_F_TSO;
Simon Zhang1146ff42019-09-02 22:54:00 +08002563}
2564
Dave Barach68b0fb02017-02-28 15:15:56 -05002565always_inline uword
2566tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2567 vlib_frame_t * from_frame, int is_ip4)
2568{
Florin Coras7ac053b2018-11-05 15:57:21 -08002569 u32 n_left_from, *from, *first_buffer, errors = 0;
2570 u32 my_thread_index = vm->thread_index;
2571 tcp_worker_ctx_t *wrk = tcp_get_worker (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05002572
Florin Coras7ac053b2018-11-05 15:57:21 -08002573 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002574 n_left_from = from_frame->n_vectors;
2575
Dave Barach68b0fb02017-02-28 15:15:56 -05002576 while (n_left_from > 0)
2577 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002578 u32 bi0, ack0, seq0, error0 = TCP_ERROR_NONE;
2579 tcp_connection_t *tc0, *new_tc0;
2580 tcp_header_t *tcp0 = 0;
2581 tcp_rx_trace_t *t0;
2582 vlib_buffer_t *b0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002583
Florin Coras7ac053b2018-11-05 15:57:21 -08002584 bi0 = from[0];
2585 from += 1;
2586 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002587
Florin Coras7ac053b2018-11-05 15:57:21 -08002588 b0 = vlib_get_buffer (vm, bi0);
2589 tc0 =
2590 tcp_half_open_connection_get (vnet_buffer (b0)->tcp.connection_index);
2591 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002592 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002593 error0 = TCP_ERROR_INVALID_CONNECTION;
2594 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002595 }
2596
Florin Coras7ac053b2018-11-05 15:57:21 -08002597 /* Half-open completed recently but the connection was't removed
2598 * yet by the owning thread */
2599 if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2600 {
2601 /* Make sure the connection actually exists */
2602 ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2603 my_thread_index, is_ip4));
Florin Coras222e1f412019-02-16 20:47:32 -08002604 error0 = TCP_ERROR_SPURIOUS_SYN_ACK;
Florin Coras7ac053b2018-11-05 15:57:21 -08002605 goto drop;
2606 }
2607
2608 ack0 = vnet_buffer (b0)->tcp.ack_number;
2609 seq0 = vnet_buffer (b0)->tcp.seq_number;
2610 tcp0 = tcp_buffer_hdr (b0);
2611
2612 /* Crude check to see if the connection handle does not match
2613 * the packet. Probably connection just switched to established */
2614 if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2615 || tcp0->src_port != tc0->c_rmt_port))
2616 {
2617 error0 = TCP_ERROR_INVALID_CONNECTION;
2618 goto drop;
2619 }
2620
2621 if (PREDICT_FALSE (!tcp_ack (tcp0) && !tcp_rst (tcp0)
2622 && !tcp_syn (tcp0)))
2623 {
2624 error0 = TCP_ERROR_SEGMENT_INVALID;
2625 goto drop;
2626 }
2627
Florin Coras3c514d52018-12-22 11:39:33 -08002628 /* SYNs consume sequence numbers */
2629 vnet_buffer (b0)->tcp.seq_end += tcp_is_syn (tcp0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002630
2631 /*
2632 * 1. check the ACK bit
2633 */
2634
2635 /*
2636 * If the ACK bit is set
2637 * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2638 * the RST bit is set, if so drop the segment and return)
2639 * <SEQ=SEG.ACK><CTL=RST>
2640 * and discard the segment. Return.
2641 * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2642 */
2643 if (tcp_ack (tcp0))
2644 {
2645 if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
2646 {
2647 if (!tcp_rst (tcp0))
Florin Corasd4c49be2019-02-07 00:15:53 -08002648 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002649 error0 = TCP_ERROR_RCV_WND;
2650 goto drop;
2651 }
2652
2653 /* Make sure ACK is valid */
2654 if (seq_gt (tc0->snd_una, ack0))
2655 {
2656 error0 = TCP_ERROR_ACK_INVALID;
2657 goto drop;
2658 }
2659 }
2660
2661 /*
2662 * 2. check the RST bit
2663 */
2664
2665 if (tcp_rst (tcp0))
2666 {
2667 /* If ACK is acceptable, signal client that peer is not
2668 * willing to accept connection and drop connection*/
2669 if (tcp_ack (tcp0))
Florin Coras6939d5e2020-02-10 23:22:34 +00002670 tcp_rcv_rst (wrk, tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002671 error0 = TCP_ERROR_RST_RCVD;
2672 goto drop;
2673 }
2674
2675 /*
2676 * 3. check the security and precedence (skipped)
2677 */
2678
2679 /*
2680 * 4. check the SYN bit
2681 */
2682
2683 /* No SYN flag. Drop. */
2684 if (!tcp_syn (tcp0))
2685 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002686 error0 = TCP_ERROR_SEGMENT_INVALID;
2687 goto drop;
2688 }
2689
2690 /* Parse options */
Florin Coras80231112018-12-05 15:59:31 -08002691 if (tcp_options_parse (tcp0, &tc0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08002692 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002693 error0 = TCP_ERROR_OPTIONS;
2694 goto drop;
2695 }
2696
2697 /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2698 * current thread pool. */
Florin Coras12f69362019-08-16 09:44:00 -07002699 new_tc0 = tcp_connection_alloc_w_base (my_thread_index, tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002700 new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2701 new_tc0->irs = seq0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002702 new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
2703 new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
2704
2705 /* If this is not the owning thread, wait for syn retransmit to
2706 * expire and cleanup then */
2707 if (tcp_half_open_connection_cleanup (tc0))
2708 tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
2709
2710 if (tcp_opts_tstamp (&new_tc0->rcv_opts))
2711 {
2712 new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
2713 new_tc0->tsval_recent_age = tcp_time_now ();
2714 }
2715
2716 if (tcp_opts_wscale (&new_tc0->rcv_opts))
2717 new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
Florin Corase80b5912018-12-12 19:25:43 -08002718 else
2719 new_tc0->rcv_wscale = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002720
2721 new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2722 << new_tc0->snd_wscale;
2723 new_tc0->snd_wl1 = seq0;
2724 new_tc0->snd_wl2 = ack0;
2725
2726 tcp_connection_init_vars (new_tc0);
2727
2728 /* SYN-ACK: See if we can switch to ESTABLISHED state */
2729 if (PREDICT_TRUE (tcp_ack (tcp0)))
2730 {
2731 /* Our SYN is ACKed: we have iss < ack = snd_una */
2732
2733 /* TODO Dequeue acknowledged segments if we support Fast Open */
2734 new_tc0->snd_una = ack0;
2735 new_tc0->state = TCP_STATE_ESTABLISHED;
2736
2737 /* Make sure las is initialized for the wnd computation */
2738 new_tc0->rcv_las = new_tc0->rcv_nxt;
2739
2740 /* Notify app that we have connection. If session layer can't
2741 * allocate session send reset */
2742 if (session_stream_connect_notify (&new_tc0->connection, 0))
2743 {
Florin Corasd4c49be2019-02-07 00:15:53 -08002744 tcp_send_reset_w_pkt (new_tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002745 tcp_connection_cleanup (new_tc0);
Florin Coras718a0552019-06-07 07:03:01 -07002746 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
Florin Coras7ac053b2018-11-05 15:57:21 -08002747 goto drop;
2748 }
2749
Florin Coras2e31cc32018-09-25 14:00:34 -07002750 new_tc0->tx_fifo_size =
2751 transport_tx_fifo_size (&new_tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002752 /* Update rtt with the syn-ack sample */
Florin Corasefefc6b2018-11-07 12:49:19 -08002753 tcp_estimate_initial_rtt (new_tc0);
Florin Corasa436a422019-08-20 07:09:31 -07002754 TCP_EVT (TCP_EVT_SYNACK_RCVD, new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002755 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2756 }
2757 /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2758 else
2759 {
2760 new_tc0->state = TCP_STATE_SYN_RCVD;
2761
2762 /* Notify app that we have connection */
2763 if (session_stream_connect_notify (&new_tc0->connection, 0))
2764 {
2765 tcp_connection_cleanup (new_tc0);
Florin Corasd4c49be2019-02-07 00:15:53 -08002766 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Corasa436a422019-08-20 07:09:31 -07002767 TCP_EVT (TCP_EVT_RST_SENT, tc0);
Florin Coras718a0552019-06-07 07:03:01 -07002768 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
Florin Coras7ac053b2018-11-05 15:57:21 -08002769 goto drop;
2770 }
2771
Florin Coras2e31cc32018-09-25 14:00:34 -07002772 new_tc0->tx_fifo_size =
2773 transport_tx_fifo_size (&new_tc0->connection);
2774 new_tc0->rtt_ts = 0;
2775 tcp_init_snd_vars (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002776 tcp_send_synack (new_tc0);
2777 error0 = TCP_ERROR_SYNS_RCVD;
2778 goto drop;
2779 }
2780
Florin Corasbbcfaac2019-10-10 13:52:04 -07002781 if (!(new_tc0->cfg_flags & TCP_CFG_F_NO_TSO))
2782 tcp_check_tx_offload (new_tc0, is_ip4);
Simon Zhang1146ff42019-09-02 22:54:00 +08002783
Florin Coras7ac053b2018-11-05 15:57:21 -08002784 /* Read data, if any */
2785 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
2786 {
2787 clib_warning ("rcvd data in syn-sent");
2788 error0 = tcp_segment_rcv (wrk, new_tc0, b0);
2789 if (error0 == TCP_ERROR_ACK_OK)
2790 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2791 }
2792 else
2793 {
Florin Corascb711a42019-10-16 19:28:17 -07002794 /* Send ack now instead of programming it because connection was
2795 * just established and it's not optional. */
2796 tcp_send_ack (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002797 }
2798
2799 drop:
2800
2801 tcp_inc_counter (syn_sent, error0, 1);
2802 if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
2803 {
2804 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05002805 clib_memcpy_fast (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2806 clib_memcpy_fast (&t0->tcp_connection, tc0,
2807 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08002808 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002809 }
2810
Florin Coras31c99552019-03-01 13:00:58 -08002811 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2812 my_thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002813 tcp_inc_counter (syn_sent, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras7ac053b2018-11-05 15:57:21 -08002814 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
Florin Coras6939d5e2020-02-10 23:22:34 +00002815 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08002816
Dave Barach68b0fb02017-02-28 15:15:56 -05002817 return from_frame->n_vectors;
2818}
2819
Filip Tehlare275bed2019-03-06 00:06:56 -08002820VLIB_NODE_FN (tcp4_syn_sent_node) (vlib_main_t * vm,
2821 vlib_node_runtime_t * node,
2822 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002823{
2824 return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2825}
2826
Filip Tehlare275bed2019-03-06 00:06:56 -08002827VLIB_NODE_FN (tcp6_syn_sent_node) (vlib_main_t * vm,
2828 vlib_node_runtime_t * node,
2829 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002830{
2831 return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2832}
2833
2834/* *INDENT-OFF* */
2835VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2836{
Dave Barach68b0fb02017-02-28 15:15:56 -05002837 .name = "tcp4-syn-sent",
2838 /* Takes a vector of packets. */
2839 .vector_size = sizeof (u32),
2840 .n_errors = TCP_N_ERROR,
2841 .error_strings = tcp_error_strings,
2842 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2843 .next_nodes =
2844 {
2845#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2846 foreach_tcp_state_next
2847#undef _
2848 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002849 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002850};
2851/* *INDENT-ON* */
2852
Dave Barach68b0fb02017-02-28 15:15:56 -05002853/* *INDENT-OFF* */
2854VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2855{
Dave Barach68b0fb02017-02-28 15:15:56 -05002856 .name = "tcp6-syn-sent",
2857 /* Takes a vector of packets. */
2858 .vector_size = sizeof (u32),
2859 .n_errors = TCP_N_ERROR,
2860 .error_strings = tcp_error_strings,
2861 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2862 .next_nodes =
2863 {
2864#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2865 foreach_tcp_state_next
2866#undef _
Clement Durand6cf260c2017-04-13 13:27:04 +02002867 },
2868 .format_trace = format_tcp_rx_trace_short,
2869};
Dave Barach68b0fb02017-02-28 15:15:56 -05002870/* *INDENT-ON* */
2871
Dave Barach68b0fb02017-02-28 15:15:56 -05002872/**
Florin Corasd79b41e2017-03-04 05:37:52 -08002873 * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
Dave Barach68b0fb02017-02-28 15:15:56 -05002874 * as per RFC793 p. 64
2875 */
2876always_inline uword
2877tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2878 vlib_frame_t * from_frame, int is_ip4)
2879{
Florin Coras7ac053b2018-11-05 15:57:21 -08002880 u32 thread_index = vm->thread_index, errors = 0, *first_buffer;
2881 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras78cc4b02018-12-20 18:24:49 -08002882 u32 n_left_from, *from, max_dequeue;
Dave Barach68b0fb02017-02-28 15:15:56 -05002883
Florin Coras7ac053b2018-11-05 15:57:21 -08002884 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002885 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002886
2887 while (n_left_from > 0)
2888 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002889 u32 bi0, error0 = TCP_ERROR_NONE;
2890 tcp_header_t *tcp0 = 0;
2891 tcp_connection_t *tc0;
2892 vlib_buffer_t *b0;
2893 u8 is_fin0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002894
Florin Coras7ac053b2018-11-05 15:57:21 -08002895 bi0 = from[0];
2896 from += 1;
2897 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002898
Florin Coras7ac053b2018-11-05 15:57:21 -08002899 b0 = vlib_get_buffer (vm, bi0);
2900 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2901 thread_index);
2902 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002903 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002904 error0 = TCP_ERROR_INVALID_CONNECTION;
2905 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002906 }
2907
Florin Coras7ac053b2018-11-05 15:57:21 -08002908 tcp0 = tcp_buffer_hdr (b0);
2909 is_fin0 = tcp_is_fin (tcp0);
2910
Florin Coras7ac053b2018-11-05 15:57:21 -08002911 if (CLIB_DEBUG)
2912 {
Ryujiro Shibuyac8be8512019-10-28 00:32:12 +00002913 if (!(tc0->connection.flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
Florin Coras7ac053b2018-11-05 15:57:21 -08002914 {
Ryujiro Shibuyac8be8512019-10-28 00:32:12 +00002915 tcp_connection_t *tmp;
2916 tmp = tcp_lookup_connection (tc0->c_fib_index, b0, thread_index,
2917 is_ip4);
2918 if (tmp->state != tc0->state)
2919 {
2920 if (tc0->state != TCP_STATE_CLOSED)
2921 clib_warning ("state changed");
2922 goto drop;
2923 }
Florin Coras7ac053b2018-11-05 15:57:21 -08002924 }
2925 }
2926
2927 /*
2928 * Special treatment for CLOSED
2929 */
2930 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
2931 {
2932 error0 = TCP_ERROR_CONNECTION_CLOSED;
2933 goto drop;
2934 }
2935
2936 /*
2937 * For all other states (except LISTEN)
2938 */
2939
2940 /* 1-4: check SEQ, RST, SYN */
2941 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, tcp0, &error0)))
2942 goto drop;
2943
2944 /* 5: check the ACK field */
2945 switch (tc0->state)
2946 {
2947 case TCP_STATE_SYN_RCVD:
Florin Corasf65074e2019-03-31 17:17:11 -07002948
2949 /* Make sure the segment is exactly right */
2950 if (tc0->rcv_nxt != vnet_buffer (b0)->tcp.seq_number || is_fin0)
2951 {
Florin Coras4dc10a42020-02-11 05:31:49 +00002952 tcp_send_reset_w_pkt (tc0, b0, thread_index, is_ip4);
Florin Corasf65074e2019-03-31 17:17:11 -07002953 error0 = TCP_ERROR_SEGMENT_INVALID;
2954 goto drop;
2955 }
2956
Florin Coras7ac053b2018-11-05 15:57:21 -08002957 /*
2958 * If the segment acknowledgment is not acceptable, form a
2959 * reset segment,
2960 * <SEQ=SEG.ACK><CTL=RST>
2961 * and send it.
2962 */
Florin Corasf65074e2019-03-31 17:17:11 -07002963 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08002964 {
Florin Coras4dc10a42020-02-11 05:31:49 +00002965 tcp_send_reset_w_pkt (tc0, b0, thread_index, is_ip4);
2966 error0 = TCP_ERROR_SEGMENT_INVALID;
Florin Coras4850e3e2018-12-12 14:34:38 -08002967 goto drop;
2968 }
2969
Florin Coras7ac053b2018-11-05 15:57:21 -08002970 /* Update rtt and rto */
Florin Corasefefc6b2018-11-07 12:49:19 -08002971 tcp_estimate_initial_rtt (tc0);
Florin Coras36ebcff2019-09-12 18:36:44 -07002972 tcp_connection_tx_pacer_update (tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002973
2974 /* Switch state to ESTABLISHED */
2975 tc0->state = TCP_STATE_ESTABLISHED;
Florin Corasa436a422019-08-20 07:09:31 -07002976 TCP_EVT (TCP_EVT_STATE_CHANGE, tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002977
Florin Corasbbcfaac2019-10-10 13:52:04 -07002978 if (!(tc0->cfg_flags & TCP_CFG_F_NO_TSO))
2979 tcp_check_tx_offload (tc0, is_ip4);
Simon Zhang1146ff42019-09-02 22:54:00 +08002980
Florin Coras7ac053b2018-11-05 15:57:21 -08002981 /* Initialize session variables */
2982 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
2983 tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2984 << tc0->rcv_opts.wscale;
2985 tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2986 tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
2987
2988 /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
2989 tcp_retransmit_timer_reset (tc0);
Florin Corasa27a46e2019-02-18 13:02:28 -08002990 if (session_stream_accept_notify (&tc0->connection))
Florin Corasa9d5bea2018-12-17 08:24:19 -08002991 {
2992 error0 = TCP_ERROR_MSG_QUEUE_FULL;
Florin Coras4dc10a42020-02-11 05:31:49 +00002993 tcp_send_reset (tc0);
2994 session_transport_delete_notify (&tc0->connection);
2995 tcp_connection_cleanup (tc0);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002996 goto drop;
2997 }
Florin Coras7ac053b2018-11-05 15:57:21 -08002998 error0 = TCP_ERROR_ACK_OK;
2999 break;
3000 case TCP_STATE_ESTABLISHED:
3001 /* We can get packets in established state here because they
3002 * were enqueued before state change */
3003 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
3004 goto drop;
3005
3006 break;
3007 case TCP_STATE_FIN_WAIT_1:
3008 /* In addition to the processing for the ESTABLISHED state, if
3009 * our FIN is now acknowledged then enter FIN-WAIT-2 and
3010 * continue processing in that state. */
3011 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
3012 goto drop;
3013
3014 /* Still have to send the FIN */
3015 if (tc0->flags & TCP_CONN_FINPNDG)
3016 {
3017 /* TX fifo finally drained */
Florin Coras31c99552019-03-01 13:00:58 -08003018 max_dequeue = transport_max_tx_dequeue (&tc0->connection);
Florin Coras78cc4b02018-12-20 18:24:49 -08003019 if (max_dequeue <= tc0->burst_acked)
Florin Coras7ac053b2018-11-05 15:57:21 -08003020 tcp_send_fin (tc0);
Florin Coras070fd4b2019-04-02 19:03:23 -07003021 /* If a fin was received and data was acked extend wait */
3022 else if ((tc0->flags & TCP_CONN_FINRCVD) && tc0->bytes_acked)
3023 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
Florin Coras9094b5c2019-08-12 14:17:47 -07003024 tcp_cfg.closewait_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08003025 }
3026 /* If FIN is ACKed */
Florin Coras47596832019-03-12 18:58:54 -07003027 else if (tc0->snd_una == tc0->snd_nxt)
Florin Coras7ac053b2018-11-05 15:57:21 -08003028 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003029 /* Stop all retransmit timers because we have nothing more
Florin Corasf65074e2019-03-31 17:17:11 -07003030 * to send. */
Florin Coras7ac053b2018-11-05 15:57:21 -08003031 tcp_connection_timers_reset (tc0);
Florin Corasf65074e2019-03-31 17:17:11 -07003032
3033 /* We already have a FIN but didn't transition to CLOSING
3034 * because of outstanding tx data. Close the connection. */
3035 if (tc0->flags & TCP_CONN_FINRCVD)
3036 {
3037 tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
Florin Corasa0904f02019-07-22 20:55:11 -07003038 session_transport_closed_notify (&tc0->connection);
Florin Coras7a3a8662020-02-22 02:27:21 +00003039 tcp_program_cleanup (wrk, tc0);
Florin Corasf65074e2019-03-31 17:17:11 -07003040 goto drop;
3041 }
3042
3043 tcp_connection_set_state (tc0, TCP_STATE_FIN_WAIT_2);
3044 /* Enable waitclose because we're willing to wait for peer's
3045 * FIN but not indefinitely. */
Florin Coras9094b5c2019-08-12 14:17:47 -07003046 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.finwait2_time);
Florin Corasefefc6b2018-11-07 12:49:19 -08003047
3048 /* Don't try to deq the FIN acked */
3049 if (tc0->burst_acked > 1)
Florin Coras31c99552019-03-01 13:00:58 -08003050 session_tx_fifo_dequeue_drop (&tc0->connection,
3051 tc0->burst_acked - 1);
Florin Corasefefc6b2018-11-07 12:49:19 -08003052 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08003053 }
3054 break;
3055 case TCP_STATE_FIN_WAIT_2:
3056 /* In addition to the processing for the ESTABLISHED state, if
3057 * the retransmission queue is empty, the user's CLOSE can be
3058 * acknowledged ("ok") but do not delete the TCB. */
Florin Corasf65074e2019-03-31 17:17:11 -07003059 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08003060 goto drop;
Florin Corasefefc6b2018-11-07 12:49:19 -08003061 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08003062 break;
3063 case TCP_STATE_CLOSE_WAIT:
3064 /* Do the same processing as for the ESTABLISHED state. */
3065 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
3066 goto drop;
3067
Florin Corasf65074e2019-03-31 17:17:11 -07003068 if (!(tc0->flags & TCP_CONN_FINPNDG))
3069 break;
3070
3071 /* Still have outstanding tx data */
Florin Coras182bbc12019-06-28 09:41:28 -07003072 max_dequeue = transport_max_tx_dequeue (&tc0->connection);
3073 if (max_dequeue > tc0->burst_acked)
Florin Corasf65074e2019-03-31 17:17:11 -07003074 break;
3075
3076 tcp_send_fin (tc0);
3077 tcp_connection_timers_reset (tc0);
3078 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras9094b5c2019-08-12 14:17:47 -07003079 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.lastack_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08003080 break;
3081 case TCP_STATE_CLOSING:
3082 /* In addition to the processing for the ESTABLISHED state, if
3083 * the ACK acknowledges our FIN then enter the TIME-WAIT state,
3084 * otherwise ignore the segment. */
Florin Corasf65074e2019-03-31 17:17:11 -07003085 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
3086 goto drop;
Florin Coras47596832019-03-12 18:58:54 -07003087
Florin Corasf65074e2019-03-31 17:17:11 -07003088 if (tc0->snd_una != tc0->snd_nxt)
3089 goto drop;
Florin Coras7ac053b2018-11-05 15:57:21 -08003090
Florin Coras85a3ddd2018-12-24 16:54:34 -08003091 tcp_connection_timers_reset (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08003092 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras9094b5c2019-08-12 14:17:47 -07003093 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras692b9492019-07-12 15:01:53 -07003094 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003095 goto drop;
3096
3097 break;
3098 case TCP_STATE_LAST_ACK:
3099 /* The only thing that [should] arrive in this state is an
3100 * acknowledgment of our FIN. If our FIN is now acknowledged,
3101 * delete the TCB, enter the CLOSED state, and return. */
3102
Florin Corasf65074e2019-03-31 17:17:11 -07003103 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
3104 goto drop;
3105
Florin Coras7ac053b2018-11-05 15:57:21 -08003106 /* Apparently our ACK for the peer's FIN was lost */
Florin Coras47596832019-03-12 18:58:54 -07003107 if (is_fin0 && tc0->snd_una != tc0->snd_nxt)
Florin Coras7ac053b2018-11-05 15:57:21 -08003108 {
3109 tcp_send_fin (tc0);
3110 goto drop;
3111 }
3112
Florin Coras3c514d52018-12-22 11:39:33 -08003113 tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
Florin Corasa0904f02019-07-22 20:55:11 -07003114 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003115
3116 /* Don't free the connection from the data path since
3117 * we can't ensure that we have no packets already enqueued
3118 * to output. Rely instead on the waitclose timer */
3119 tcp_connection_timers_reset (tc0);
Florin Coras7a3a8662020-02-22 02:27:21 +00003120 tcp_program_cleanup (tcp_get_worker (tc0->c_thread_index), tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003121
3122 goto drop;
3123
3124 break;
3125 case TCP_STATE_TIME_WAIT:
3126 /* The only thing that can arrive in this state is a
3127 * retransmission of the remote FIN. Acknowledge it, and restart
3128 * the 2 MSL timeout. */
3129
Florin Corasf65074e2019-03-31 17:17:11 -07003130 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08003131 goto drop;
3132
Florin Coras37db4302019-03-13 13:25:57 -07003133 if (!is_fin0)
3134 goto drop;
3135
Florin Coras26dd6de2019-07-23 23:54:47 -07003136 tcp_program_ack (tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07003137 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08003138 goto drop;
3139
3140 break;
3141 default:
3142 ASSERT (0);
3143 }
3144
3145 /* 6: check the URG bit TODO */
3146
3147 /* 7: process the segment text */
3148 switch (tc0->state)
3149 {
3150 case TCP_STATE_ESTABLISHED:
3151 case TCP_STATE_FIN_WAIT_1:
3152 case TCP_STATE_FIN_WAIT_2:
3153 if (vnet_buffer (b0)->tcp.data_len)
3154 error0 = tcp_segment_rcv (wrk, tc0, b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003155 break;
3156 case TCP_STATE_CLOSE_WAIT:
3157 case TCP_STATE_CLOSING:
3158 case TCP_STATE_LAST_ACK:
3159 case TCP_STATE_TIME_WAIT:
3160 /* This should not occur, since a FIN has been received from the
3161 * remote side. Ignore the segment text. */
3162 break;
3163 }
3164
3165 /* 8: check the FIN bit */
3166 if (!is_fin0)
3167 goto drop;
3168
Florin Corasa436a422019-08-20 07:09:31 -07003169 TCP_EVT (TCP_EVT_FIN_RCVD, tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08003170
Florin Coras7ac053b2018-11-05 15:57:21 -08003171 switch (tc0->state)
3172 {
3173 case TCP_STATE_ESTABLISHED:
Florin Coras3c514d52018-12-22 11:39:33 -08003174 /* Account for the FIN and send ack */
3175 tc0->rcv_nxt += 1;
Florin Coras26dd6de2019-07-23 23:54:47 -07003176 tcp_program_ack (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08003177 tcp_connection_set_state (tc0, TCP_STATE_CLOSE_WAIT);
3178 tcp_program_disconnect (wrk, tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07003179 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.closewait_time);
Florin Coras5c0f1662018-12-19 01:38:57 -08003180 break;
Florin Coras7ac053b2018-11-05 15:57:21 -08003181 case TCP_STATE_SYN_RCVD:
Florin Coras5c0f1662018-12-19 01:38:57 -08003182 /* Send FIN-ACK, enter LAST-ACK and because the app was not
3183 * notified yet, set a cleanup timer instead of relying on
3184 * disconnect notify and the implicit close call. */
Florin Coras7ac053b2018-11-05 15:57:21 -08003185 tcp_connection_timers_reset (tc0);
Florin Coras5c0f1662018-12-19 01:38:57 -08003186 tc0->rcv_nxt += 1;
Florin Coras7ac053b2018-11-05 15:57:21 -08003187 tcp_send_fin (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08003188 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras9094b5c2019-08-12 14:17:47 -07003189 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.lastack_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08003190 break;
3191 case TCP_STATE_CLOSE_WAIT:
3192 case TCP_STATE_CLOSING:
3193 case TCP_STATE_LAST_ACK:
3194 /* move along .. */
3195 break;
3196 case TCP_STATE_FIN_WAIT_1:
Florin Coras3c514d52018-12-22 11:39:33 -08003197 tc0->rcv_nxt += 1;
Florin Coras070fd4b2019-04-02 19:03:23 -07003198
Florin Coras565115e2019-02-20 19:48:31 -08003199 if (tc0->flags & TCP_CONN_FINPNDG)
3200 {
Florin Coras070fd4b2019-04-02 19:03:23 -07003201 /* If data is outstanding, stay in FIN_WAIT_1 and try to finish
3202 * sending it. Since we already received a fin, do not wait
3203 * for too long. */
Florin Corasf65074e2019-03-31 17:17:11 -07003204 tc0->flags |= TCP_CONN_FINRCVD;
Florin Coras9094b5c2019-08-12 14:17:47 -07003205 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
3206 tcp_cfg.closewait_time);
Florin Coras565115e2019-02-20 19:48:31 -08003207 }
3208 else
Florin Corasf65074e2019-03-31 17:17:11 -07003209 {
3210 tcp_connection_set_state (tc0, TCP_STATE_CLOSING);
Florin Coras26dd6de2019-07-23 23:54:47 -07003211 tcp_program_ack (tc0);
Florin Coras070fd4b2019-04-02 19:03:23 -07003212 /* Wait for ACK for our FIN but not forever */
Florin Coras9094b5c2019-08-12 14:17:47 -07003213 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
3214 tcp_cfg.closing_time);
Florin Corasf65074e2019-03-31 17:17:11 -07003215 }
Florin Coras7ac053b2018-11-05 15:57:21 -08003216 break;
3217 case TCP_STATE_FIN_WAIT_2:
3218 /* Got FIN, send ACK! Be more aggressive with resource cleanup */
Florin Coras3c514d52018-12-22 11:39:33 -08003219 tc0->rcv_nxt += 1;
3220 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras7ac053b2018-11-05 15:57:21 -08003221 tcp_connection_timers_reset (tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07003222 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras26dd6de2019-07-23 23:54:47 -07003223 tcp_program_ack (tc0);
Florin Coras692b9492019-07-12 15:01:53 -07003224 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003225 break;
3226 case TCP_STATE_TIME_WAIT:
3227 /* Remain in the TIME-WAIT state. Restart the time-wait
3228 * timeout.
3229 */
Florin Coras9094b5c2019-08-12 14:17:47 -07003230 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08003231 break;
3232 }
3233 error0 = TCP_ERROR_FIN_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -08003234
3235 drop:
3236
3237 tcp_inc_counter (rcv_process, error0, 1);
3238 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3239 {
3240 tcp_rx_trace_t *t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
3241 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
3242 }
Dave Barach68b0fb02017-02-28 15:15:56 -05003243 }
3244
Florin Coras31c99552019-03-01 13:00:58 -08003245 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
3246 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08003247 tcp_inc_counter (rcv_process, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras9ece3c02018-11-05 11:06:53 -08003248 tcp_handle_postponed_dequeues (wrk);
Florin Coras79fdfd62019-05-23 06:19:09 -07003249 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08003250 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3251
Dave Barach68b0fb02017-02-28 15:15:56 -05003252 return from_frame->n_vectors;
3253}
3254
Filip Tehlare275bed2019-03-06 00:06:56 -08003255VLIB_NODE_FN (tcp4_rcv_process_node) (vlib_main_t * vm,
3256 vlib_node_runtime_t * node,
3257 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003258{
3259 return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3260}
3261
Filip Tehlare275bed2019-03-06 00:06:56 -08003262VLIB_NODE_FN (tcp6_rcv_process_node) (vlib_main_t * vm,
3263 vlib_node_runtime_t * node,
3264 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003265{
3266 return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3267}
3268
3269/* *INDENT-OFF* */
3270VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
3271{
Dave Barach68b0fb02017-02-28 15:15:56 -05003272 .name = "tcp4-rcv-process",
3273 /* Takes a vector of packets. */
3274 .vector_size = sizeof (u32),
3275 .n_errors = TCP_N_ERROR,
3276 .error_strings = tcp_error_strings,
3277 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3278 .next_nodes =
3279 {
3280#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3281 foreach_tcp_state_next
3282#undef _
3283 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003284 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003285};
3286/* *INDENT-ON* */
3287
Dave Barach68b0fb02017-02-28 15:15:56 -05003288/* *INDENT-OFF* */
3289VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
3290{
Dave Barach68b0fb02017-02-28 15:15:56 -05003291 .name = "tcp6-rcv-process",
3292 /* Takes a vector of packets. */
3293 .vector_size = sizeof (u32),
3294 .n_errors = TCP_N_ERROR,
3295 .error_strings = tcp_error_strings,
3296 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3297 .next_nodes =
3298 {
3299#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3300 foreach_tcp_state_next
3301#undef _
3302 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003303 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003304};
3305/* *INDENT-ON* */
3306
Dave Barach68b0fb02017-02-28 15:15:56 -05003307/**
3308 * LISTEN state processing as per RFC 793 p. 65
3309 */
3310always_inline uword
3311tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3312 vlib_frame_t * from_frame, int is_ip4)
3313{
Florin Coras7ac053b2018-11-05 15:57:21 -08003314 u32 n_left_from, *from, n_syns = 0, *first_buffer;
Florin Coras27bb99e2020-03-17 17:09:12 +00003315 u32 thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05003316
Florin Coras7ac053b2018-11-05 15:57:21 -08003317 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05003318 n_left_from = from_frame->n_vectors;
3319
Dave Barach68b0fb02017-02-28 15:15:56 -05003320 while (n_left_from > 0)
3321 {
Florin Coras27bb99e2020-03-17 17:09:12 +00003322 u32 bi, error = TCP_ERROR_NONE;
3323 tcp_connection_t *lc, *child;
3324 vlib_buffer_t *b;
Dave Barach68b0fb02017-02-28 15:15:56 -05003325
Florin Coras27bb99e2020-03-17 17:09:12 +00003326 bi = from[0];
Florin Coras7ac053b2018-11-05 15:57:21 -08003327 from += 1;
3328 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05003329
Florin Coras27bb99e2020-03-17 17:09:12 +00003330 b = vlib_get_buffer (vm, bi);
Florin Corasde7fcac2020-01-16 04:04:54 +00003331
Florin Coras27bb99e2020-03-17 17:09:12 +00003332 lc = tcp_listener_get (vnet_buffer (b)->tcp.connection_index);
3333 if (PREDICT_FALSE (lc == 0))
Florin Corasde7fcac2020-01-16 04:04:54 +00003334 {
Florin Coras27bb99e2020-03-17 17:09:12 +00003335 tcp_connection_t *tc;
3336 tc = tcp_connection_get (vnet_buffer (b)->tcp.connection_index,
3337 thread_index);
3338 if (tc->state != TCP_STATE_TIME_WAIT)
Florin Corasb7f035f2019-12-27 09:27:52 -08003339 {
Florin Coras27bb99e2020-03-17 17:09:12 +00003340 error = TCP_ERROR_CREATE_EXISTS;
3341 goto done;
Florin Corasb7f035f2019-12-27 09:27:52 -08003342 }
Florin Coras27bb99e2020-03-17 17:09:12 +00003343 lc = tcp_lookup_listener (b, tc->c_fib_index, is_ip4);
Florin Corasb7f035f2019-12-27 09:27:52 -08003344 /* clean up the old session */
Florin Coras27bb99e2020-03-17 17:09:12 +00003345 tcp_connection_del (tc);
3346 }
3347
3348 /* Make sure connection wasn't just created */
3349 child = tcp_lookup_connection (lc->c_fib_index, b, thread_index,
3350 is_ip4);
3351 if (PREDICT_FALSE (child->state != TCP_STATE_LISTEN))
3352 {
3353 error = TCP_ERROR_CREATE_EXISTS;
3354 goto done;
Yu Pingb092b772019-12-27 04:04:33 +08003355 }
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
Florin Coras7ac053b2018-11-05 15:57:21 -08003374 /* Create child session and send SYN-ACK */
Florin Coras27bb99e2020-03-17 17:09:12 +00003375 child = tcp_connection_alloc (thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08003376
Florin Coras27bb99e2020-03-17 17:09:12 +00003377 if (tcp_options_parse (tcp_buffer_hdr (b), &child->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08003378 {
Florin Coras27bb99e2020-03-17 17:09:12 +00003379 error = TCP_ERROR_OPTIONS;
3380 tcp_connection_free (child);
3381 goto done;
Florin Coras7ac053b2018-11-05 15:57:21 -08003382 }
3383
Florin Coras27bb99e2020-03-17 17:09:12 +00003384 tcp_init_w_buffer (child, b, is_ip4);
3385
3386 child->state = TCP_STATE_SYN_RCVD;
3387 child->c_fib_index = lc->c_fib_index;
3388 child->cc_algo = lc->cc_algo;
3389 tcp_connection_init_vars (child);
3390 child->rto = TCP_RTO_MIN;
3391
3392 if (session_stream_accept (&child->connection, lc->c_s_index,
3393 lc->c_thread_index, 0 /* notify */ ))
Florin Coras7ac053b2018-11-05 15:57:21 -08003394 {
Florin Coras27bb99e2020-03-17 17:09:12 +00003395 tcp_connection_cleanup (child);
3396 error = TCP_ERROR_CREATE_SESSION_FAIL;
3397 goto done;
Florin Coras7ac053b2018-11-05 15:57:21 -08003398 }
3399
Florin Coras27bb99e2020-03-17 17:09:12 +00003400 child->tx_fifo_size = transport_tx_fifo_size (&child->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003401
Florin Coras27bb99e2020-03-17 17:09:12 +00003402 tcp_send_synack (child);
3403
3404 TCP_EVT (TCP_EVT_SYN_RCVD, child, 1);
3405
3406 done:
3407
3408 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_IS_TRACED))
Florin Coras7ac053b2018-11-05 15:57:21 -08003409 {
Florin Coras27bb99e2020-03-17 17:09:12 +00003410 tcp_rx_trace_t *t;
3411 t = vlib_add_trace (vm, node, b, sizeof (*t));
3412 clib_memcpy_fast (&t->tcp_header, tcp_buffer_hdr (b),
3413 sizeof (t->tcp_header));
3414 clib_memcpy_fast (&t->tcp_connection, lc,
3415 sizeof (t->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08003416 }
3417
Florin Coras27bb99e2020-03-17 17:09:12 +00003418 n_syns += (error == TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003419 }
Florin Coras00cd22d2018-04-18 13:20:18 -07003420
3421 tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
Florin Coras7ac053b2018-11-05 15:57:21 -08003422 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3423
Dave Barach68b0fb02017-02-28 15:15:56 -05003424 return from_frame->n_vectors;
3425}
3426
Filip Tehlare275bed2019-03-06 00:06:56 -08003427VLIB_NODE_FN (tcp4_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3428 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003429{
3430 return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3431}
3432
Filip Tehlare275bed2019-03-06 00:06:56 -08003433VLIB_NODE_FN (tcp6_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3434 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003435{
3436 return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3437}
3438
3439/* *INDENT-OFF* */
3440VLIB_REGISTER_NODE (tcp4_listen_node) =
3441{
Dave Barach68b0fb02017-02-28 15:15:56 -05003442 .name = "tcp4-listen",
3443 /* Takes a vector of packets. */
3444 .vector_size = sizeof (u32),
3445 .n_errors = TCP_N_ERROR,
3446 .error_strings = tcp_error_strings,
3447 .n_next_nodes = TCP_LISTEN_N_NEXT,
3448 .next_nodes =
3449 {
3450#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3451 foreach_tcp_state_next
3452#undef _
3453 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003454 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003455};
3456/* *INDENT-ON* */
3457
Dave Barach68b0fb02017-02-28 15:15:56 -05003458/* *INDENT-OFF* */
3459VLIB_REGISTER_NODE (tcp6_listen_node) =
3460{
Dave Barach68b0fb02017-02-28 15:15:56 -05003461 .name = "tcp6-listen",
3462 /* Takes a vector of packets. */
3463 .vector_size = sizeof (u32),
3464 .n_errors = TCP_N_ERROR,
3465 .error_strings = tcp_error_strings,
3466 .n_next_nodes = TCP_LISTEN_N_NEXT,
3467 .next_nodes =
3468 {
3469#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3470 foreach_tcp_state_next
3471#undef _
3472 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003473 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003474};
3475/* *INDENT-ON* */
3476
Dave Barach68b0fb02017-02-28 15:15:56 -05003477typedef enum _tcp_input_next
3478{
3479 TCP_INPUT_NEXT_DROP,
3480 TCP_INPUT_NEXT_LISTEN,
3481 TCP_INPUT_NEXT_RCV_PROCESS,
3482 TCP_INPUT_NEXT_SYN_SENT,
3483 TCP_INPUT_NEXT_ESTABLISHED,
3484 TCP_INPUT_NEXT_RESET,
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003485 TCP_INPUT_NEXT_PUNT,
Dave Barach68b0fb02017-02-28 15:15:56 -05003486 TCP_INPUT_N_NEXT
3487} tcp_input_next_t;
3488
3489#define foreach_tcp4_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003490 _ (DROP, "ip4-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003491 _ (LISTEN, "tcp4-listen") \
3492 _ (RCV_PROCESS, "tcp4-rcv-process") \
3493 _ (SYN_SENT, "tcp4-syn-sent") \
3494 _ (ESTABLISHED, "tcp4-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003495 _ (RESET, "tcp4-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003496 _ (PUNT, "ip4-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003497
3498#define foreach_tcp6_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003499 _ (DROP, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003500 _ (LISTEN, "tcp6-listen") \
3501 _ (RCV_PROCESS, "tcp6-rcv-process") \
3502 _ (SYN_SENT, "tcp6-syn-sent") \
3503 _ (ESTABLISHED, "tcp6-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003504 _ (RESET, "tcp6-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003505 _ (PUNT, "ip6-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003506
Dave Barach68b0fb02017-02-28 15:15:56 -05003507#define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
3508
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003509static void
3510tcp_input_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07003511 vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003512{
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003513 tcp_connection_t *tc;
3514 tcp_header_t *tcp;
3515 tcp_rx_trace_t *t;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003516 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05003517
Florin Coras4df38712018-06-20 12:44:16 -07003518 for (i = 0; i < n_bufs; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05003519 {
Florin Coras4df38712018-06-20 12:44:16 -07003520 if (bs[i]->flags & VLIB_BUFFER_IS_TRACED)
3521 {
3522 t = vlib_add_trace (vm, node, bs[i], sizeof (*t));
3523 tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index,
3524 vm->thread_index);
3525 tcp = vlib_buffer_get_current (bs[i]);
3526 tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4);
3527 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003528 }
3529}
Dave Barach68b0fb02017-02-28 15:15:56 -05003530
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003531static void
3532tcp_input_set_error_next (tcp_main_t * tm, u16 * next, u32 * error, u8 is_ip4)
3533{
Florin Corasb5e55a22019-01-10 12:42:47 -08003534 if (*error == TCP_ERROR_FILTERED || *error == TCP_ERROR_WRONG_THREAD)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003535 {
3536 *next = TCP_INPUT_NEXT_DROP;
3537 }
3538 else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6))
3539 {
3540 *next = TCP_INPUT_NEXT_PUNT;
3541 *error = TCP_ERROR_PUNT;
3542 }
3543 else
3544 {
3545 *next = TCP_INPUT_NEXT_RESET;
3546 *error = TCP_ERROR_NO_LISTENER;
3547 }
3548}
Dave Barach68b0fb02017-02-28 15:15:56 -05003549
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003550always_inline tcp_connection_t *
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003551tcp_input_lookup_buffer (vlib_buffer_t * b, u8 thread_index, u32 * error,
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003552 u8 is_ip4, u8 is_nolookup)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003553{
3554 u32 fib_index = vnet_buffer (b)->ip.fib_index;
3555 int n_advance_bytes, n_data_bytes;
3556 transport_connection_t *tc;
3557 tcp_header_t *tcp;
Florin Corasb5e55a22019-01-10 12:42:47 -08003558 u8 result = 0;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003559
3560 if (is_ip4)
3561 {
3562 ip4_header_t *ip4 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003563 int ip_hdr_bytes = ip4_header_bytes (ip4);
3564 if (PREDICT_FALSE (b->current_length < ip_hdr_bytes + sizeof (*tcp)))
3565 {
3566 *error = TCP_ERROR_LENGTH;
3567 return 0;
3568 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003569 tcp = ip4_next_header (ip4);
3570 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip4;
Florin Corasb8dda5f2018-12-05 10:03:34 -08003571 n_advance_bytes = (ip_hdr_bytes + tcp_header_bytes (tcp));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003572 n_data_bytes = clib_net_to_host_u16 (ip4->length) - n_advance_bytes;
3573
3574 /* Length check. Checksum computed by ipx_local no need to compute again */
Florin Corasb8dda5f2018-12-05 10:03:34 -08003575 if (PREDICT_FALSE (n_data_bytes < 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05003576 {
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003577 *error = TCP_ERROR_LENGTH;
3578 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003579 }
3580
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003581 if (!is_nolookup)
3582 tc = session_lookup_connection_wt4 (fib_index, &ip4->dst_address,
3583 &ip4->src_address, tcp->dst_port,
3584 tcp->src_port,
3585 TRANSPORT_PROTO_TCP, thread_index,
3586 &result);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003587 }
3588 else
3589 {
3590 ip6_header_t *ip6 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003591 if (PREDICT_FALSE (b->current_length < sizeof (*ip6) + sizeof (*tcp)))
3592 {
3593 *error = TCP_ERROR_LENGTH;
3594 return 0;
3595 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003596 tcp = ip6_next_header (ip6);
3597 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip6;
3598 n_advance_bytes = tcp_header_bytes (tcp);
3599 n_data_bytes = clib_net_to_host_u16 (ip6->payload_length)
3600 - n_advance_bytes;
3601 n_advance_bytes += sizeof (ip6[0]);
3602
Florin Corasb8dda5f2018-12-05 10:03:34 -08003603 if (PREDICT_FALSE (n_data_bytes < 0))
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003604 {
3605 *error = TCP_ERROR_LENGTH;
3606 return 0;
3607 }
3608
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003609 if (!is_nolookup)
3610 {
3611 if (PREDICT_FALSE
3612 (ip6_address_is_link_local_unicast (&ip6->dst_address)))
3613 {
3614 ip4_main_t *im = &ip4_main;
3615 fib_index = vec_elt (im->fib_index_by_sw_if_index,
3616 vnet_buffer (b)->sw_if_index[VLIB_RX]);
3617 }
3618
3619 tc = session_lookup_connection_wt6 (fib_index, &ip6->dst_address,
3620 &ip6->src_address,
3621 tcp->dst_port, tcp->src_port,
3622 TRANSPORT_PROTO_TCP,
3623 thread_index, &result);
3624 }
Dave Barach68b0fb02017-02-28 15:15:56 -05003625 }
3626
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003627 if (is_nolookup)
3628 tc =
3629 (transport_connection_t *) tcp_connection_get (vnet_buffer (b)->
3630 tcp.connection_index,
3631 thread_index);
3632
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003633 vnet_buffer (b)->tcp.seq_number = clib_net_to_host_u32 (tcp->seq_number);
3634 vnet_buffer (b)->tcp.ack_number = clib_net_to_host_u32 (tcp->ack_number);
3635 vnet_buffer (b)->tcp.data_offset = n_advance_bytes;
3636 vnet_buffer (b)->tcp.data_len = n_data_bytes;
Florin Coras3c514d52018-12-22 11:39:33 -08003637 vnet_buffer (b)->tcp.seq_end = vnet_buffer (b)->tcp.seq_number
3638 + n_data_bytes;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003639 vnet_buffer (b)->tcp.flags = 0;
3640
Florin Corasb5e55a22019-01-10 12:42:47 -08003641 *error = result ? TCP_ERROR_NONE + result : *error;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003642
3643 return tcp_get_connection_from_transport (tc);
3644}
3645
3646static inline void
3647tcp_input_dispatch_buffer (tcp_main_t * tm, tcp_connection_t * tc,
Florin Corasdeb6f782020-02-11 02:42:36 +00003648 vlib_buffer_t * b, u16 * next,
3649 vlib_node_runtime_t * error_node)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003650{
3651 tcp_header_t *tcp;
Florin Corasdeb6f782020-02-11 02:42:36 +00003652 u32 error;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003653 u8 flags;
3654
3655 tcp = tcp_buffer_hdr (b);
3656 flags = tcp->flags & filter_flags;
3657 *next = tm->dispatch_table[tc->state][flags].next;
Florin Corasdeb6f782020-02-11 02:42:36 +00003658 error = tm->dispatch_table[tc->state][flags].error;
Florin Corasedfe0ee2019-07-29 18:13:25 -07003659 tc->segs_in += 1;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003660
Florin Corasdeb6f782020-02-11 02:42:36 +00003661 if (PREDICT_FALSE (error != TCP_ERROR_NONE))
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003662 {
Florin Corasdeb6f782020-02-11 02:42:36 +00003663 b->error = error_node->errors[error];
3664 if (error == TCP_ERROR_DISPATCH)
Florin Corasa9d5bea2018-12-17 08:24:19 -08003665 clib_warning ("tcp conn %u disp error state %U flags %U",
Florin Coras360336f2020-02-13 18:46:18 +00003666 tc->c_c_index, format_tcp_state, tc->state,
Florin Corasa9d5bea2018-12-17 08:24:19 -08003667 format_tcp_flags, (int) flags);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003668 }
3669}
3670
3671always_inline uword
3672tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003673 vlib_frame_t * frame, int is_ip4, u8 is_nolookup)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003674{
3675 u32 n_left_from, *from, thread_index = vm->thread_index;
3676 tcp_main_t *tm = vnet_get_tcp_main ();
3677 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
3678 u16 nexts[VLIB_FRAME_SIZE], *next;
Florin Corasdeb6f782020-02-11 02:42:36 +00003679 vlib_node_runtime_t *error_node;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003680
Florin Corasbe72ae62018-11-01 11:23:03 -07003681 tcp_set_time_now (tcp_get_worker (thread_index));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003682
Florin Corasdeb6f782020-02-11 02:42:36 +00003683 error_node = vlib_node_get_runtime (vm, tcp_node_index (input, is_ip4));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003684 from = vlib_frame_vector_args (frame);
3685 n_left_from = frame->n_vectors;
3686 vlib_get_buffers (vm, from, bufs, n_left_from);
3687
3688 b = bufs;
3689 next = nexts;
3690
3691 while (n_left_from >= 4)
3692 {
3693 u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER;
3694 tcp_connection_t *tc0, *tc1;
3695
3696 {
3697 vlib_prefetch_buffer_header (b[2], STORE);
3698 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3699
3700 vlib_prefetch_buffer_header (b[3], STORE);
3701 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3702 }
3703
3704 next[0] = next[1] = TCP_INPUT_NEXT_DROP;
3705
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003706 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
3707 is_nolookup);
3708 tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4,
3709 is_nolookup);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003710
3711 if (PREDICT_TRUE (!tc0 + !tc1 == 0))
3712 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003713 ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
3714 ASSERT (tcp_lookup_is_valid (tc1, b[1], tcp_buffer_hdr (b[1])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003715
3716 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3717 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3718
Florin Corasdeb6f782020-02-11 02:42:36 +00003719 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], error_node);
3720 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], error_node);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003721 }
3722 else
3723 {
3724 if (PREDICT_TRUE (tc0 != 0))
3725 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003726 ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003727 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
Florin Corasdeb6f782020-02-11 02:42:36 +00003728 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], error_node);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003729 }
3730 else
Florin Corasdeb6f782020-02-11 02:42:36 +00003731 {
3732 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3733 b[0]->error = error_node->errors[error0];
3734 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003735
3736 if (PREDICT_TRUE (tc1 != 0))
3737 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003738 ASSERT (tcp_lookup_is_valid (tc1, b[1], tcp_buffer_hdr (b[1])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003739 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
Florin Corasdeb6f782020-02-11 02:42:36 +00003740 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], error_node);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003741 }
3742 else
Florin Corasdeb6f782020-02-11 02:42:36 +00003743 {
3744 tcp_input_set_error_next (tm, &next[1], &error1, is_ip4);
3745 b[1]->error = error_node->errors[error1];
3746 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003747 }
3748
3749 b += 2;
3750 next += 2;
3751 n_left_from -= 2;
3752 }
3753 while (n_left_from > 0)
3754 {
3755 tcp_connection_t *tc0;
3756 u32 error0 = TCP_ERROR_NO_LISTENER;
3757
3758 if (n_left_from > 1)
3759 {
3760 vlib_prefetch_buffer_header (b[1], STORE);
3761 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3762 }
3763
3764 next[0] = TCP_INPUT_NEXT_DROP;
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003765 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
3766 is_nolookup);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003767 if (PREDICT_TRUE (tc0 != 0))
3768 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003769 ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003770 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
Florin Corasdeb6f782020-02-11 02:42:36 +00003771 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], error_node);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003772 }
3773 else
Florin Corasdeb6f782020-02-11 02:42:36 +00003774 {
3775 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3776 b[0]->error = error_node->errors[error0];
3777 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003778
3779 b += 1;
3780 next += 1;
3781 n_left_from -= 1;
3782 }
3783
3784 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
3785 tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4);
3786
3787 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
3788 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05003789}
3790
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003791VLIB_NODE_FN (tcp4_input_nolookup_node) (vlib_main_t * vm,
3792 vlib_node_runtime_t * node,
3793 vlib_frame_t * from_frame)
3794{
3795 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
3796 1 /* is_nolookup */ );
3797}
3798
3799VLIB_NODE_FN (tcp6_input_nolookup_node) (vlib_main_t * vm,
3800 vlib_node_runtime_t * node,
3801 vlib_frame_t * from_frame)
3802{
3803 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3804 1 /* is_nolookup */ );
3805}
3806
3807/* *INDENT-OFF* */
3808VLIB_REGISTER_NODE (tcp4_input_nolookup_node) =
3809{
3810 .name = "tcp4-input-nolookup",
3811 /* Takes a vector of packets. */
3812 .vector_size = sizeof (u32),
3813 .n_errors = TCP_N_ERROR,
3814 .error_strings = tcp_error_strings,
3815 .n_next_nodes = TCP_INPUT_N_NEXT,
3816 .next_nodes =
3817 {
3818#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3819 foreach_tcp4_input_next
3820#undef _
3821 },
3822 .format_buffer = format_tcp_header,
3823 .format_trace = format_tcp_rx_trace,
3824};
3825/* *INDENT-ON* */
3826
3827/* *INDENT-OFF* */
3828VLIB_REGISTER_NODE (tcp6_input_nolookup_node) =
3829{
3830 .name = "tcp6-input-nolookup",
3831 /* Takes a vector of packets. */
3832 .vector_size = sizeof (u32),
3833 .n_errors = TCP_N_ERROR,
3834 .error_strings = tcp_error_strings,
3835 .n_next_nodes = TCP_INPUT_N_NEXT,
3836 .next_nodes =
3837 {
3838#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3839 foreach_tcp6_input_next
3840#undef _
3841 },
3842 .format_buffer = format_tcp_header,
3843 .format_trace = format_tcp_rx_trace,
3844};
3845/* *INDENT-ON* */
3846
Filip Tehlare275bed2019-03-06 00:06:56 -08003847VLIB_NODE_FN (tcp4_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3848 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003849{
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003850 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
3851 0 /* is_nolookup */ );
Dave Barach68b0fb02017-02-28 15:15:56 -05003852}
3853
Filip Tehlare275bed2019-03-06 00:06:56 -08003854VLIB_NODE_FN (tcp6_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3855 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003856{
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003857 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3858 0 /* is_nolookup */ );
Dave Barach68b0fb02017-02-28 15:15:56 -05003859}
3860
3861/* *INDENT-OFF* */
3862VLIB_REGISTER_NODE (tcp4_input_node) =
3863{
Dave Barach68b0fb02017-02-28 15:15:56 -05003864 .name = "tcp4-input",
3865 /* Takes a vector of packets. */
3866 .vector_size = sizeof (u32),
3867 .n_errors = TCP_N_ERROR,
3868 .error_strings = tcp_error_strings,
3869 .n_next_nodes = TCP_INPUT_N_NEXT,
3870 .next_nodes =
3871 {
3872#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3873 foreach_tcp4_input_next
3874#undef _
3875 },
3876 .format_buffer = format_tcp_header,
3877 .format_trace = format_tcp_rx_trace,
3878};
3879/* *INDENT-ON* */
3880
Dave Barach68b0fb02017-02-28 15:15:56 -05003881/* *INDENT-OFF* */
3882VLIB_REGISTER_NODE (tcp6_input_node) =
3883{
Dave Barach68b0fb02017-02-28 15:15:56 -05003884 .name = "tcp6-input",
3885 /* Takes a vector of packets. */
3886 .vector_size = sizeof (u32),
3887 .n_errors = TCP_N_ERROR,
3888 .error_strings = tcp_error_strings,
3889 .n_next_nodes = TCP_INPUT_N_NEXT,
3890 .next_nodes =
3891 {
3892#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3893 foreach_tcp6_input_next
3894#undef _
3895 },
3896 .format_buffer = format_tcp_header,
3897 .format_trace = format_tcp_rx_trace,
3898};
3899/* *INDENT-ON* */
3900
Filip Tehlare275bed2019-03-06 00:06:56 -08003901#ifndef CLIB_MARCH_VARIANT
Dave Barach68b0fb02017-02-28 15:15:56 -05003902static void
3903tcp_dispatch_table_init (tcp_main_t * tm)
3904{
3905 int i, j;
3906 for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3907 for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3908 {
3909 tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3910 tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3911 }
3912
3913#define _(t,f,n,e) \
3914do { \
3915 tm->dispatch_table[TCP_STATE_##t][f].next = (n); \
3916 tm->dispatch_table[TCP_STATE_##t][f].error = (e); \
3917} while (0)
3918
Florin Coras678a6572018-12-17 21:31:25 -08003919 /* RFC 793: In LISTEN if RST drop and if ACK return RST */
Florin Coras5c0f1662018-12-19 01:38:57 -08003920 _(LISTEN, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras678a6572018-12-17 21:31:25 -08003921 _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_ACK_INVALID);
3922 _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_INVALID_CONNECTION);
Dave Barach68b0fb02017-02-28 15:15:56 -05003923 _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003924 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3925 TCP_ERROR_ACK_INVALID);
3926 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3927 TCP_ERROR_SEGMENT_INVALID);
3928 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3929 TCP_ERROR_SEGMENT_INVALID);
3930 _(LISTEN, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3931 TCP_ERROR_INVALID_CONNECTION);
3932 _(LISTEN, TCP_FLAG_FIN, TCP_INPUT_NEXT_RESET, TCP_ERROR_SEGMENT_INVALID);
Dave Barach2c25a622017-06-26 11:35:07 -04003933 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
Florin Coras678a6572018-12-17 21:31:25 -08003934 TCP_ERROR_SEGMENT_INVALID);
3935 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3936 TCP_ERROR_SEGMENT_INVALID);
3937 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Florin Corasdeb6f782020-02-11 02:42:36 +00003938 TCP_ERROR_SEGMENT_INVALID);
Florin Coras678a6572018-12-17 21:31:25 -08003939 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_DROP,
3940 TCP_ERROR_SEGMENT_INVALID);
3941 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3942 TCP_ERROR_SEGMENT_INVALID);
3943 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3944 TCP_ERROR_SEGMENT_INVALID);
3945 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3946 TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003947 /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3948 _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc28764f2017-04-26 00:08:42 -07003949 _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase8460c72018-09-24 14:40:40 -07003950 _(SYN_RCVD, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3951 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003952 _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003953 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3954 TCP_ERROR_NONE);
3955 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3956 TCP_ERROR_NONE);
3957 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3958 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3959 _(SYN_RCVD, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc01c4452018-09-20 18:36:54 -07003960 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3961 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003962 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3963 TCP_ERROR_NONE);
3964 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3965 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3966 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3967 TCP_ERROR_NONE);
3968 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3969 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3970 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3971 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3972 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3973 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3974 _(SYN_RCVD, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003975 /* SYN-ACK for a SYN */
3976 _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3977 TCP_ERROR_NONE);
3978 _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3979 _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3980 _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3981 TCP_ERROR_NONE);
Florin Coras222e1f412019-02-16 20:47:32 -08003982 _(SYN_SENT, TCP_FLAG_FIN, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3983 _(SYN_SENT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3984 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003985 /* ACK for for established connection -> tcp-established. */
3986 _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3987 /* FIN for for established connection -> tcp-established. */
3988 _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3989 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3990 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003991 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3992 TCP_ERROR_NONE);
3993 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3994 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3995 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED,
3996 TCP_ERROR_NONE);
3997 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3998 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3999 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
4000 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
4001 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4002 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasd79b41e2017-03-04 05:37:52 -08004003 _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07004004 _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
4005 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04004006 _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04004007 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
4008 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08004009 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
4010 TCP_ERROR_NONE);
4011 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4012 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
4013 _(ESTABLISHED, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05004014 /* ACK or FIN-ACK to our FIN */
4015 _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4016 _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
4017 TCP_ERROR_NONE);
4018 /* FIN in reply to our FIN from the other side */
Florin Coras76bc1302018-12-23 23:36:36 -08004019 _(FIN_WAIT_1, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05004020 _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08004021 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
4022 TCP_ERROR_NONE);
4023 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
4024 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4025 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
4026 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4027 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4028 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4029 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
4030 TCP_ERROR_NONE);
4031 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
4032 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras5c0f1662018-12-19 01:38:57 -08004033 _(FIN_WAIT_1, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08004034 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
4035 TCP_ERROR_NONE);
4036 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4037 TCP_ERROR_NONE);
4038 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4039 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04004040 _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase96bf632018-12-18 22:44:27 -08004041 _(FIN_WAIT_1, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4042 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08004043 _(CLOSING, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras56318932018-05-23 20:44:12 -07004044 _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08004045 _(CLOSING, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08004046 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
4047 TCP_ERROR_NONE);
4048 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4049 TCP_ERROR_NONE);
4050 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4051 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08004052 _(CLOSING, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4053 _(CLOSING, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4054 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08004055 _(CLOSING, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras3c514d52018-12-22 11:39:33 -08004056 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4057 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08004058 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
4059 TCP_ERROR_NONE);
4060 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
4061 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4062 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
4063 TCP_ERROR_NONE);
4064 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
4065 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras79c04d62019-08-11 19:49:05 -07004066 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
4067 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08004068 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4069 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05004070 /* FIN confirming that the peer (app) has closed */
4071 _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasf6d68ed2017-05-07 19:12:02 -07004072 _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05004073 _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4074 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08004075 _(FIN_WAIT_2, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4076 _(FIN_WAIT_2, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4077 TCP_ERROR_NONE);
Florin Corasf03a59a2017-06-09 21:07:32 -07004078 _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4079 _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4080 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08004081 _(CLOSE_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4082 _(CLOSE_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4083 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08004084 _(LAST_ACK, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05004085 _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07004086 _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4087 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4088 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08004089 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
4090 TCP_ERROR_NONE);
4091 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
4092 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4093 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
4094 TCP_ERROR_NONE);
4095 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
4096 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4097 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
4098 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4099 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4100 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasdb84e572017-05-09 18:54:52 -07004101 _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08004102 _(LAST_ACK, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4103 TCP_ERROR_NONE);
Florin Corasc01d5782018-10-17 14:53:11 -07004104 _(LAST_ACK, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08004105 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4106 TCP_ERROR_NONE);
4107 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
4108 TCP_ERROR_NONE);
4109 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
4110 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Yu Pingb092b772019-12-27 04:04:33 +08004111 _(TIME_WAIT, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07004112 _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
4113 _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4114 TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04004115 _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08004116 _(TIME_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
4117 TCP_ERROR_NONE);
Florin Coras50958952017-08-29 14:50:13 -07004118 _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08004119 /* RFC793 CLOSED: An incoming segment containing a RST is discarded. An
4120 * incoming segment not containing a RST causes a RST to be sent in
4121 * response.*/
Florin Corasdc629cd2017-05-09 00:52:37 -07004122 _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08004123 _(CLOSED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04004124 TCP_ERROR_CONNECTION_CLOSED);
Florin Corasdeb6f782020-02-11 02:42:36 +00004125 _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_CONNECTION_CLOSED);
4126 _(CLOSED, TCP_FLAG_SYN, TCP_INPUT_NEXT_RESET, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08004127 _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
Florin Corasdeb6f782020-02-11 02:42:36 +00004128 TCP_ERROR_CONNECTION_CLOSED);
Dave Barach68b0fb02017-02-28 15:15:56 -05004129#undef _
4130}
4131
Florin Coras0dbd5172018-06-25 16:19:34 -07004132static clib_error_t *
Dave Barach68b0fb02017-02-28 15:15:56 -05004133tcp_input_init (vlib_main_t * vm)
4134{
4135 clib_error_t *error = 0;
4136 tcp_main_t *tm = vnet_get_tcp_main ();
4137
4138 if ((error = vlib_call_init_function (vm, tcp_init)))
4139 return error;
4140
4141 /* Initialize dispatch table. */
4142 tcp_dispatch_table_init (tm);
4143
4144 return error;
4145}
4146
4147VLIB_INIT_FUNCTION (tcp_input_init);
4148
Filip Tehlare275bed2019-03-06 00:06:56 -08004149#endif /* CLIB_MARCH_VARIANT */
4150
Dave Barach68b0fb02017-02-28 15:15:56 -05004151/*
4152 * fd.io coding-style-patch-verification: ON
4153 *
4154 * Local Variables:
4155 * eval: (c-set-style "gnu")
4156 * End:
4157 */