blob: 4695fbb1161b0140487336067fcfd57eb87f256d [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Coras830fe732019-02-15 18:20:58 -08002 * Copyright (c) 2016-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vppinfra/sparse_vec.h>
17#include <vnet/tcp/tcp_packet.h>
18#include <vnet/tcp/tcp.h>
19#include <vnet/session/session.h>
20#include <math.h>
21
22static char *tcp_error_strings[] = {
23#define tcp_error(n,s) s,
24#include <vnet/tcp/tcp_error.def>
25#undef tcp_error
26};
27
28/* All TCP nodes have the same outgoing arcs */
29#define foreach_tcp_state_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080030 _ (DROP4, "ip4-drop") \
31 _ (DROP6, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -050032 _ (TCP4_OUTPUT, "tcp4-output") \
33 _ (TCP6_OUTPUT, "tcp6-output")
34
35typedef enum _tcp_established_next
36{
37#define _(s,n) TCP_ESTABLISHED_NEXT_##s,
38 foreach_tcp_state_next
39#undef _
40 TCP_ESTABLISHED_N_NEXT,
41} tcp_established_next_t;
42
43typedef enum _tcp_rcv_process_next
44{
45#define _(s,n) TCP_RCV_PROCESS_NEXT_##s,
46 foreach_tcp_state_next
47#undef _
48 TCP_RCV_PROCESS_N_NEXT,
49} tcp_rcv_process_next_t;
50
51typedef enum _tcp_syn_sent_next
52{
53#define _(s,n) TCP_SYN_SENT_NEXT_##s,
54 foreach_tcp_state_next
55#undef _
56 TCP_SYN_SENT_N_NEXT,
57} tcp_syn_sent_next_t;
58
59typedef enum _tcp_listen_next
60{
61#define _(s,n) TCP_LISTEN_NEXT_##s,
62 foreach_tcp_state_next
63#undef _
64 TCP_LISTEN_N_NEXT,
65} tcp_listen_next_t;
66
67/* Generic, state independent indices */
68typedef enum _tcp_state_next
69{
70#define _(s,n) TCP_NEXT_##s,
71 foreach_tcp_state_next
72#undef _
73 TCP_STATE_N_NEXT,
74} tcp_state_next_t;
75
76#define tcp_next_output(is_ip4) (is_ip4 ? TCP_NEXT_TCP4_OUTPUT \
77 : TCP_NEXT_TCP6_OUTPUT)
78
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080079#define tcp_next_drop(is_ip4) (is_ip4 ? TCP_NEXT_DROP4 \
80 : TCP_NEXT_DROP6)
81
Dave Barach68b0fb02017-02-28 15:15:56 -050082/**
83 * Validate segment sequence number. As per RFC793:
84 *
85 * Segment Receive Test
86 * Length Window
87 * ------- ------- -------------------------------------------
88 * 0 0 SEG.SEQ = RCV.NXT
89 * 0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
90 * >0 0 not acceptable
91 * >0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
92 * or RCV.NXT =< SEG.SEQ+SEG.LEN-1 < RCV.NXT+RCV.WND
93 *
94 * This ultimately consists in checking if segment falls within the window.
95 * The one important difference compared to RFC793 is that we use rcv_las,
96 * or the rcv_nxt at last ack sent instead of rcv_nxt since that's the
97 * peer's reference when computing our receive window.
98 *
Florin Coras6792ec02017-03-13 03:49:51 -070099 * This:
100 * seq_leq (end_seq, tc->rcv_las + tc->rcv_wnd) && seq_geq (seq, tc->rcv_las)
101 * however, is too strict when we have retransmits. Instead we just check that
102 * the seq is not beyond the right edge and that the end of the segment is not
103 * less than the left edge.
104 *
105 * N.B. rcv_nxt and rcv_wnd are both updated in this node if acks are sent, so
106 * use rcv_nxt in the right edge window test instead of rcv_las.
107 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500108 */
109always_inline u8
110tcp_segment_in_rcv_wnd (tcp_connection_t * tc, u32 seq, u32 end_seq)
111{
Florin Coras6792ec02017-03-13 03:49:51 -0700112 return (seq_geq (end_seq, tc->rcv_las)
113 && seq_leq (seq, tc->rcv_nxt + tc->rcv_wnd));
Dave Barach68b0fb02017-02-28 15:15:56 -0500114}
115
Florin Corasdb84e572017-05-09 18:54:52 -0700116/**
117 * Parse TCP header options.
118 *
119 * @param th TCP header
120 * @param to TCP options data structure to be populated
Florin Coras80231112018-12-05 15:59:31 -0800121 * @param is_syn set if packet is syn
Florin Corasdb84e572017-05-09 18:54:52 -0700122 * @return -1 if parsing failed
123 */
Florin Coras80231112018-12-05 15:59:31 -0800124static inline int
125tcp_options_parse (tcp_header_t * th, tcp_options_t * to, u8 is_syn)
Dave Barach68b0fb02017-02-28 15:15:56 -0500126{
127 const u8 *data;
128 u8 opt_len, opts_len, kind;
129 int j;
130 sack_block_t b;
131
132 opts_len = (tcp_doff (th) << 2) - sizeof (tcp_header_t);
133 data = (const u8 *) (th + 1);
134
135 /* Zero out all flags but those set in SYN */
Florin Corasd6fe5bd2018-10-16 19:52:10 -0700136 to->flags &= (TCP_OPTS_FLAG_SACK_PERMITTED | TCP_OPTS_FLAG_WSCALE
Florin Coras80231112018-12-05 15:59:31 -0800137 | TCP_OPTS_FLAG_TSTAMP | TCP_OPTION_MSS);
Dave Barach68b0fb02017-02-28 15:15:56 -0500138
139 for (; opts_len > 0; opts_len -= opt_len, data += opt_len)
140 {
141 kind = data[0];
142
143 /* Get options length */
144 if (kind == TCP_OPTION_EOL)
145 break;
146 else if (kind == TCP_OPTION_NOOP)
Florin Corasdb84e572017-05-09 18:54:52 -0700147 {
148 opt_len = 1;
149 continue;
150 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500151 else
152 {
153 /* broken options */
154 if (opts_len < 2)
Florin Corasdb84e572017-05-09 18:54:52 -0700155 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500156 opt_len = data[1];
157
158 /* weird option length */
159 if (opt_len < 2 || opt_len > opts_len)
Florin Corasdb84e572017-05-09 18:54:52 -0700160 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500161 }
162
163 /* Parse options */
164 switch (kind)
165 {
166 case TCP_OPTION_MSS:
Florin Coras80231112018-12-05 15:59:31 -0800167 if (!is_syn)
168 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500169 if ((opt_len == TCP_OPTION_LEN_MSS) && tcp_syn (th))
170 {
171 to->flags |= TCP_OPTS_FLAG_MSS;
172 to->mss = clib_net_to_host_u16 (*(u16 *) (data + 2));
173 }
174 break;
175 case TCP_OPTION_WINDOW_SCALE:
Florin Coras80231112018-12-05 15:59:31 -0800176 if (!is_syn)
177 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500178 if ((opt_len == TCP_OPTION_LEN_WINDOW_SCALE) && tcp_syn (th))
179 {
180 to->flags |= TCP_OPTS_FLAG_WSCALE;
181 to->wscale = data[2];
182 if (to->wscale > TCP_MAX_WND_SCALE)
Florin Corasa9d5bea2018-12-17 08:24:19 -0800183 to->wscale = TCP_MAX_WND_SCALE;
Dave Barach68b0fb02017-02-28 15:15:56 -0500184 }
185 break;
186 case TCP_OPTION_TIMESTAMP:
Florin Coras80231112018-12-05 15:59:31 -0800187 if (is_syn)
188 to->flags |= TCP_OPTS_FLAG_TSTAMP;
189 if ((to->flags & TCP_OPTS_FLAG_TSTAMP)
190 && opt_len == TCP_OPTION_LEN_TIMESTAMP)
Dave Barach68b0fb02017-02-28 15:15:56 -0500191 {
Dave Barach68b0fb02017-02-28 15:15:56 -0500192 to->tsval = clib_net_to_host_u32 (*(u32 *) (data + 2));
193 to->tsecr = clib_net_to_host_u32 (*(u32 *) (data + 6));
194 }
195 break;
196 case TCP_OPTION_SACK_PERMITTED:
Florin Coras80231112018-12-05 15:59:31 -0800197 if (!is_syn)
198 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500199 if (opt_len == TCP_OPTION_LEN_SACK_PERMITTED && tcp_syn (th))
200 to->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
201 break;
202 case TCP_OPTION_SACK_BLOCK:
203 /* If SACK permitted was not advertised or a SYN, break */
204 if ((to->flags & TCP_OPTS_FLAG_SACK_PERMITTED) == 0 || tcp_syn (th))
205 break;
206
207 /* If too short or not correctly formatted, break */
208 if (opt_len < 10 || ((opt_len - 2) % TCP_OPTION_LEN_SACK_BLOCK))
209 break;
210
211 to->flags |= TCP_OPTS_FLAG_SACK;
212 to->n_sack_blocks = (opt_len - 2) / TCP_OPTION_LEN_SACK_BLOCK;
213 vec_reset_length (to->sacks);
214 for (j = 0; j < to->n_sack_blocks; j++)
215 {
Florin Coras3eb50622017-07-13 01:24:57 -0400216 b.start = clib_net_to_host_u32 (*(u32 *) (data + 2 + 8 * j));
217 b.end = clib_net_to_host_u32 (*(u32 *) (data + 6 + 8 * j));
Dave Barach68b0fb02017-02-28 15:15:56 -0500218 vec_add1 (to->sacks, b);
219 }
220 break;
221 default:
222 /* Nothing to see here */
223 continue;
224 }
225 }
Florin Corasdb84e572017-05-09 18:54:52 -0700226 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500227}
228
Florin Corasc28764f2017-04-26 00:08:42 -0700229/**
230 * RFC1323: Check against wrapped sequence numbers (PAWS). If we have
231 * timestamp to echo and it's less than tsval_recent, drop segment
232 * but still send an ACK in order to retain TCP's mechanism for detecting
233 * and recovering from half-open connections
234 *
235 * Or at least that's what the theory says. It seems that this might not work
236 * very well with packet reordering and fast retransmit. XXX
237 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500238always_inline int
239tcp_segment_check_paws (tcp_connection_t * tc)
240{
Florin Corasea41aac2018-12-06 17:24:59 -0800241 return tcp_opts_tstamp (&tc->rcv_opts)
Florin Coras93992a92017-05-24 18:03:56 -0700242 && timestamp_lt (tc->rcv_opts.tsval, tc->tsval_recent);
Dave Barach68b0fb02017-02-28 15:15:56 -0500243}
244
245/**
Florin Corasc28764f2017-04-26 00:08:42 -0700246 * Update tsval recent
247 */
248always_inline void
249tcp_update_timestamp (tcp_connection_t * tc, u32 seq, u32 seq_end)
250{
251 /*
252 * RFC1323: If Last.ACK.sent falls within the range of sequence numbers
253 * of an incoming segment:
254 * SEG.SEQ <= Last.ACK.sent < SEG.SEQ + SEG.LEN
255 * then the TSval from the segment is copied to TS.Recent;
256 * otherwise, the TSval is ignored.
257 */
Florin Corasf1762d62017-09-24 19:43:08 -0400258 if (tcp_opts_tstamp (&tc->rcv_opts) && seq_leq (seq, tc->rcv_las)
259 && seq_leq (tc->rcv_las, seq_end))
Florin Corasc28764f2017-04-26 00:08:42 -0700260 {
Dave Barach2c25a622017-06-26 11:35:07 -0400261 ASSERT (timestamp_leq (tc->tsval_recent, tc->rcv_opts.tsval));
Florin Coras93992a92017-05-24 18:03:56 -0700262 tc->tsval_recent = tc->rcv_opts.tsval;
Florin Corasbe72ae62018-11-01 11:23:03 -0700263 tc->tsval_recent_age = tcp_time_now_w_thread (tc->c_thread_index);
Florin Corasc28764f2017-04-26 00:08:42 -0700264 }
265}
266
267/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500268 * Validate incoming segment as per RFC793 p. 69 and RFC1323 p. 19
269 *
270 * It first verifies if segment has a wrapped sequence number (PAWS) and then
271 * does the processing associated to the first four steps (ignoring security
272 * and precedence): sequence number, rst bit and syn bit checks.
273 *
274 * @return 0 if segments passes validation.
275 */
276static int
Florin Coras7ac053b2018-11-05 15:57:21 -0800277tcp_segment_validate (tcp_worker_ctx_t * wrk, tcp_connection_t * tc0,
278 vlib_buffer_t * b0, tcp_header_t * th0, u32 * error0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500279{
Florin Corasca1c8f32018-05-23 21:01:30 -0700280 /* We could get a burst of RSTs interleaved with acks */
281 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
282 {
283 tcp_send_reset (tc0);
284 *error0 = TCP_ERROR_CONNECTION_CLOSED;
Florin Coras7ac053b2018-11-05 15:57:21 -0800285 goto error;
Florin Corasca1c8f32018-05-23 21:01:30 -0700286 }
287
Dave Barach68b0fb02017-02-28 15:15:56 -0500288 if (PREDICT_FALSE (!tcp_ack (th0) && !tcp_rst (th0) && !tcp_syn (th0)))
Florin Coras00cd22d2018-04-18 13:20:18 -0700289 {
290 *error0 = TCP_ERROR_SEGMENT_INVALID;
Florin Coras7ac053b2018-11-05 15:57:21 -0800291 goto error;
Florin Coras00cd22d2018-04-18 13:20:18 -0700292 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500293
Florin Coras80231112018-12-05 15:59:31 -0800294 if (PREDICT_FALSE (tcp_options_parse (th0, &tc0->rcv_opts, 0)))
Florin Corasdb84e572017-05-09 18:54:52 -0700295 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700296 *error0 = TCP_ERROR_OPTIONS;
Florin Coras7ac053b2018-11-05 15:57:21 -0800297 goto error;
Florin Corasdb84e572017-05-09 18:54:52 -0700298 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500299
Florin Coras00cd22d2018-04-18 13:20:18 -0700300 if (PREDICT_FALSE (tcp_segment_check_paws (tc0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500301 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700302 *error0 = TCP_ERROR_PAWS;
Florin Corasc28764f2017-04-26 00:08:42 -0700303 TCP_EVT_DBG (TCP_EVT_PAWS_FAIL, tc0, vnet_buffer (b0)->tcp.seq_number,
304 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500305
306 /* If it just so happens that a segment updates tsval_recent for a
307 * segment over 24 days old, invalidate tsval_recent. */
308 if (timestamp_lt (tc0->tsval_recent_age + TCP_PAWS_IDLE,
Florin Corasbe72ae62018-11-01 11:23:03 -0700309 tcp_time_now_w_thread (tc0->c_thread_index)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500310 {
Florin Corasea41aac2018-12-06 17:24:59 -0800311 tc0->tsval_recent = tc0->rcv_opts.tsval;
Florin Coras91236ce2018-12-16 11:41:45 -0800312 clib_warning ("paws failed: 24-day old segment");
Dave Barach68b0fb02017-02-28 15:15:56 -0500313 }
Florin Coras91236ce2018-12-16 11:41:45 -0800314 /* Drop after ack if not rst. Resets can fail paws check as per
315 * RFC 7323 sec. 5.2: When an <RST> segment is received, it MUST NOT
316 * be subjected to the PAWS check by verifying an acceptable value in
317 * SEG.TSval */
318 else if (!tcp_rst (th0))
Dave Barach68b0fb02017-02-28 15:15:56 -0500319 {
Florin Coras26dd6de2019-07-23 23:54:47 -0700320 tcp_program_ack (tc0);
Florin Coras91236ce2018-12-16 11:41:45 -0800321 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
322 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500323 }
324 }
325
326 /* 1st: check sequence number */
327 if (!tcp_segment_in_rcv_wnd (tc0, vnet_buffer (b0)->tcp.seq_number,
328 vnet_buffer (b0)->tcp.seq_end))
329 {
Florin Coras830fe732019-02-15 18:20:58 -0800330 /* SYN/SYN-ACK retransmit */
331 if (tcp_syn (th0)
332 && vnet_buffer (b0)->tcp.seq_number == tc0->rcv_nxt - 1)
333 {
334 tcp_options_parse (th0, &tc0->rcv_opts, 1);
335 if (tc0->state == TCP_STATE_SYN_RCVD)
336 {
337 tcp_send_synack (tc0);
338 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, tc0, 0);
339 *error0 = TCP_ERROR_SYNS_RCVD;
340 }
341 else
342 {
Florin Coras26dd6de2019-07-23 23:54:47 -0700343 tcp_program_ack (tc0);
Florin Coras830fe732019-02-15 18:20:58 -0800344 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, tc0);
345 *error0 = TCP_ERROR_SYN_ACKS_RCVD;
346 }
347 goto error;
348 }
349
Florin Coras6792ec02017-03-13 03:49:51 -0700350 /* If our window is 0 and the packet is in sequence, let it pass
Florin Coras00cd22d2018-04-18 13:20:18 -0700351 * through for ack processing. It should be dropped later. */
Florin Coras7e74bf32019-03-06 16:51:58 -0800352 if (tc0->rcv_wnd < tc0->snd_mss
Florin Coras222e1f412019-02-16 20:47:32 -0800353 && tc0->rcv_nxt == vnet_buffer (b0)->tcp.seq_number)
354 goto check_reset;
355
356 /* If we entered recovery and peer did so as well, there's a chance that
357 * dup acks won't be acceptable on either end because seq_end may be less
358 * than rcv_las. This can happen if acks are lost in both directions. */
359 if (tcp_in_recovery (tc0)
360 && seq_geq (vnet_buffer (b0)->tcp.seq_number,
361 tc0->rcv_las - tc0->rcv_wnd)
362 && seq_leq (vnet_buffer (b0)->tcp.seq_end,
363 tc0->rcv_nxt + tc0->rcv_wnd))
364 goto check_reset;
365
366 *error0 = TCP_ERROR_RCV_WND;
367
368 /* If not RST, send dup ack */
369 if (!tcp_rst (th0))
Florin Coras6792ec02017-03-13 03:49:51 -0700370 {
Florin Coras26dd6de2019-07-23 23:54:47 -0700371 tcp_program_dupack (tc0);
Florin Coras222e1f412019-02-16 20:47:32 -0800372 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
Florin Coras6792ec02017-03-13 03:49:51 -0700373 }
Florin Coras222e1f412019-02-16 20:47:32 -0800374 goto error;
375
376 check_reset:
377 ;
Dave Barach68b0fb02017-02-28 15:15:56 -0500378 }
379
380 /* 2nd: check the RST bit */
Florin Coras00cd22d2018-04-18 13:20:18 -0700381 if (PREDICT_FALSE (tcp_rst (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500382 {
Florin Corasd79b41e2017-03-04 05:37:52 -0800383 tcp_connection_reset (tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -0700384 *error0 = TCP_ERROR_RST_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -0800385 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500386 }
387
388 /* 3rd: check security and precedence (skip) */
389
Florin Coras830fe732019-02-15 18:20:58 -0800390 /* 4th: check the SYN bit (in window) */
Florin Coras00cd22d2018-04-18 13:20:18 -0700391 if (PREDICT_FALSE (tcp_syn (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500392 {
Florin Corasd567a8d2019-06-07 12:38:55 -0700393 /* As per RFC5961 send challenge ack instead of reset */
Florin Coras26dd6de2019-07-23 23:54:47 -0700394 tcp_program_ack (tc0);
Florin Coras830fe732019-02-15 18:20:58 -0800395 *error0 = TCP_ERROR_SPURIOUS_SYN;
Florin Coras00cd22d2018-04-18 13:20:18 -0700396 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500397 }
398
Florin Corasc28764f2017-04-26 00:08:42 -0700399 /* If segment in window, save timestamp */
400 tcp_update_timestamp (tc0, vnet_buffer (b0)->tcp.seq_number,
401 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500402 return 0;
Florin Coras00cd22d2018-04-18 13:20:18 -0700403
Florin Coras00cd22d2018-04-18 13:20:18 -0700404error:
Florin Coras00cd22d2018-04-18 13:20:18 -0700405 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500406}
407
408always_inline int
Florin Corasf65074e2019-03-31 17:17:11 -0700409tcp_rcv_ack_no_cc (tcp_connection_t * tc, vlib_buffer_t * b, u32 * error)
Dave Barach68b0fb02017-02-28 15:15:56 -0500410{
411 /* SND.UNA =< SEG.ACK =< SND.NXT */
Florin Corasf65074e2019-03-31 17:17:11 -0700412 if (!(seq_leq (tc->snd_una, vnet_buffer (b)->tcp.ack_number)
413 && seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
414 {
Florin Coras282a3cb2019-04-02 21:43:38 -0700415 if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)
416 && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
Florin Corasf65074e2019-03-31 17:17:11 -0700417 {
418 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
419 goto acceptable;
420 }
421 *error = TCP_ERROR_ACK_INVALID;
422 return -1;
423 }
424
425acceptable:
426 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
427 tc->snd_una = vnet_buffer (b)->tcp.ack_number;
428 *error = TCP_ERROR_ACK_OK;
429 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500430}
431
432/**
433 * Compute smoothed RTT as per VJ's '88 SIGCOMM and RFC6298
434 *
435 * Note that although the original article, srtt and rttvar are scaled
436 * to minimize round-off errors, here we don't. Instead, we rely on
437 * better precision time measurements.
438 *
439 * TODO support us rtt resolution
440 */
441static void
442tcp_estimate_rtt (tcp_connection_t * tc, u32 mrtt)
443{
Florin Corasf03a59a2017-06-09 21:07:32 -0700444 int err, diff;
Dave Barach68b0fb02017-02-28 15:15:56 -0500445
446 if (tc->srtt != 0)
447 {
448 err = mrtt - tc->srtt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500449
450 /* XXX Drop in RTT results in RTTVAR increase and bigger RTO.
451 * The increase should be bound */
Florin Corasf03a59a2017-06-09 21:07:32 -0700452 tc->srtt = clib_max ((int) tc->srtt + (err >> 3), 1);
453 diff = (clib_abs (err) - (int) tc->rttvar) >> 2;
454 tc->rttvar = clib_max ((int) tc->rttvar + diff, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500455 }
456 else
457 {
458 /* First measurement. */
459 tc->srtt = mrtt;
Florin Coras6792ec02017-03-13 03:49:51 -0700460 tc->rttvar = mrtt >> 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500461 }
462}
463
Filip Tehlare275bed2019-03-06 00:06:56 -0800464#ifndef CLIB_MARCH_VARIANT
Florin Coras93992a92017-05-24 18:03:56 -0700465void
466tcp_update_rto (tcp_connection_t * tc)
467{
468 tc->rto = clib_min (tc->srtt + (tc->rttvar << 2), TCP_RTO_MAX);
Florin Corasf03a59a2017-06-09 21:07:32 -0700469 tc->rto = clib_max (tc->rto, TCP_RTO_MIN);
Florin Coras93992a92017-05-24 18:03:56 -0700470}
Filip Tehlare275bed2019-03-06 00:06:56 -0800471#endif /* CLIB_MARCH_VARIANT */
Florin Coras93992a92017-05-24 18:03:56 -0700472
Florin Corasf1762d62017-09-24 19:43:08 -0400473/**
474 * Update RTT estimate and RTO timer
Dave Barach68b0fb02017-02-28 15:15:56 -0500475 *
476 * Measure RTT: We have two sources of RTT measurements: TSOPT and ACK
477 * timing. Middle boxes are known to fiddle with TCP options so we
478 * should give higher priority to ACK timing.
479 *
Florin Corasf1762d62017-09-24 19:43:08 -0400480 * This should be called only if previously sent bytes have been acked.
481 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500482 * return 1 if valid rtt 0 otherwise
483 */
484static int
485tcp_update_rtt (tcp_connection_t * tc, u32 ack)
486{
487 u32 mrtt = 0;
488
489 /* Karn's rule, part 1. Don't use retransmitted segments to estimate
490 * RTT because they're ambiguous. */
Florin Corasf1762d62017-09-24 19:43:08 -0400491 if (tcp_in_cong_recovery (tc) || tc->sack_sb.sacked_bytes)
Florin Coras3ec66b02018-08-23 16:27:05 -0700492 {
493 if (tcp_in_recovery (tc))
494 return 0;
495 goto done;
496 }
Florin Corasf1762d62017-09-24 19:43:08 -0400497
498 if (tc->rtt_ts && seq_geq (ack, tc->rtt_seq))
Dave Barach68b0fb02017-02-28 15:15:56 -0500499 {
Florin Corasefefc6b2018-11-07 12:49:19 -0800500 f64 sample = tcp_time_now_us (tc->c_thread_index) - tc->rtt_ts;
501 tc->mrtt_us = tc->mrtt_us + (sample - tc->mrtt_us) * 0.125;
502 mrtt = clib_max ((u32) (sample * THZ), 1);
503 /* Allow measuring of a new RTT */
504 tc->rtt_ts = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500505 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500506 /* As per RFC7323 TSecr can be used for RTTM only if the segment advances
507 * snd_una, i.e., the left side of the send window:
Florin Corasf1762d62017-09-24 19:43:08 -0400508 * seq_lt (tc->snd_una, ack). This is a condition for calling update_rtt */
509 else if (tcp_opts_tstamp (&tc->rcv_opts) && tc->rcv_opts.tsecr)
Dave Barach68b0fb02017-02-28 15:15:56 -0500510 {
Vladimir Kropylev1cfcb782019-07-02 11:25:26 +0300511 u32 now = tcp_tstamp (tc);
Florin Corasbe72ae62018-11-01 11:23:03 -0700512 mrtt = clib_max (now - tc->rcv_opts.tsecr, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500513 }
514
Florin Corasf1762d62017-09-24 19:43:08 -0400515 /* Ignore dubious measurements */
516 if (mrtt == 0 || mrtt > TCP_RTT_MAX)
517 goto done;
518
519 tcp_estimate_rtt (tc, mrtt);
520
521done:
522
Florin Corasf1762d62017-09-24 19:43:08 -0400523 /* If we got here something must've been ACKed so make sure boff is 0,
Florin Coras3ec66b02018-08-23 16:27:05 -0700524 * even if mrtt is not valid since we update the rto lower */
Florin Corasf1762d62017-09-24 19:43:08 -0400525 tc->rto_boff = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700526 tcp_update_rto (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500527
Florin Coras3af90fc2017-05-03 21:09:42 -0700528 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500529}
530
Florin Corasefefc6b2018-11-07 12:49:19 -0800531static void
532tcp_estimate_initial_rtt (tcp_connection_t * tc)
533{
534 u8 thread_index = vlib_num_workers ()? 1 : 0;
535 int mrtt;
536
537 if (tc->rtt_ts)
538 {
539 tc->mrtt_us = tcp_time_now_us (thread_index) - tc->rtt_ts;
Florin Coras222e1f412019-02-16 20:47:32 -0800540 tc->mrtt_us = clib_max (tc->mrtt_us, 0.0001);
Florin Corasefefc6b2018-11-07 12:49:19 -0800541 mrtt = clib_max ((u32) (tc->mrtt_us * THZ), 1);
542 tc->rtt_ts = 0;
543 }
544 else
545 {
546 mrtt = tcp_time_now_w_thread (thread_index) - tc->rcv_opts.tsecr;
Florin Coras4af830c2018-12-04 09:21:36 -0800547 mrtt = clib_max (mrtt, 1);
Florin Coras222e1f412019-02-16 20:47:32 -0800548 /* Due to retransmits we don't know the initial mrtt */
549 if (tc->rto_boff && mrtt > 1 * THZ)
550 mrtt = 1 * THZ;
Florin Corasefefc6b2018-11-07 12:49:19 -0800551 tc->mrtt_us = (f64) mrtt *TCP_TICK;
Florin Corasefefc6b2018-11-07 12:49:19 -0800552 }
553
554 if (mrtt > 0 && mrtt < TCP_RTT_MAX)
555 tcp_estimate_rtt (tc, mrtt);
Florin Coras54ddf432018-12-21 13:54:09 -0800556 tcp_update_rto (tc);
Florin Corasefefc6b2018-11-07 12:49:19 -0800557}
558
Dave Barach68b0fb02017-02-28 15:15:56 -0500559/**
Florin Coras9ece3c02018-11-05 11:06:53 -0800560 * Dequeue bytes for connections that have received acks in last burst
Dave Barach68b0fb02017-02-28 15:15:56 -0500561 */
562static void
Florin Coras9ece3c02018-11-05 11:06:53 -0800563tcp_handle_postponed_dequeues (tcp_worker_ctx_t * wrk)
Dave Barach68b0fb02017-02-28 15:15:56 -0500564{
Florin Coras9ece3c02018-11-05 11:06:53 -0800565 u32 thread_index = wrk->vm->thread_index;
566 u32 *pending_deq_acked;
567 tcp_connection_t *tc;
568 int i;
Florin Coras93992a92017-05-24 18:03:56 -0700569
Florin Coras9ece3c02018-11-05 11:06:53 -0800570 if (!vec_len (wrk->pending_deq_acked))
571 return;
Dave Barach68b0fb02017-02-28 15:15:56 -0500572
Florin Coras9ece3c02018-11-05 11:06:53 -0800573 pending_deq_acked = wrk->pending_deq_acked;
574 for (i = 0; i < vec_len (pending_deq_acked); i++)
575 {
576 tc = tcp_connection_get (pending_deq_acked[i], thread_index);
577 tc->flags &= ~TCP_CONN_DEQ_PENDING;
Florin Coras93992a92017-05-24 18:03:56 -0700578
Florin Corasefefc6b2018-11-07 12:49:19 -0800579 if (PREDICT_FALSE (!tc->burst_acked))
580 continue;
581
Florin Coras9ece3c02018-11-05 11:06:53 -0800582 /* Dequeue the newly ACKed bytes */
Florin Coras31c99552019-03-01 13:00:58 -0800583 session_tx_fifo_dequeue_drop (&tc->connection, tc->burst_acked);
Florin Coras9ece3c02018-11-05 11:06:53 -0800584 tc->burst_acked = 0;
585 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
586
Florin Coras42ceddb2018-12-12 10:56:01 -0800587 if (PREDICT_FALSE (tc->flags & TCP_CONN_PSH_PENDING))
588 {
589 if (seq_leq (tc->psh_seq, tc->snd_una))
590 tc->flags &= ~TCP_CONN_PSH_PENDING;
591 }
592
Florin Coras9ece3c02018-11-05 11:06:53 -0800593 /* If everything has been acked, stop retransmit timer
594 * otherwise update. */
595 tcp_retransmit_timer_update (tc);
Florin Corasefefc6b2018-11-07 12:49:19 -0800596
597 /* If not congested, update pacer based on our new
598 * cwnd estimate */
599 if (!tcp_in_fastrecovery (tc))
600 tcp_connection_tx_pacer_update (tc);
Florin Coras9ece3c02018-11-05 11:06:53 -0800601 }
602 _vec_len (wrk->pending_deq_acked) = 0;
603}
604
605static void
606tcp_program_dequeue (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
607{
608 if (!(tc->flags & TCP_CONN_DEQ_PENDING))
609 {
610 vec_add1 (wrk->pending_deq_acked, tc->c_c_index);
611 tc->flags |= TCP_CONN_DEQ_PENDING;
612 }
613 tc->burst_acked += tc->bytes_acked + tc->sack_sb.snd_una_adv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500614}
615
Florin Coras6792ec02017-03-13 03:49:51 -0700616/**
Florin Coras93992a92017-05-24 18:03:56 -0700617 * Check if duplicate ack as per RFC5681 Sec. 2
618 */
619static u8
620tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd,
621 u32 prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500622{
Florin Coras93992a92017-05-24 18:03:56 -0700623 return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
Florin Coras47596832019-03-12 18:58:54 -0700624 && seq_gt (tc->snd_nxt, tc->snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500625 && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
Florin Coras93992a92017-05-24 18:03:56 -0700626 && (prev_snd_wnd == tc->snd_wnd));
627}
628
629/**
630 * Checks if ack is a congestion control event.
631 */
632static u8
633tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b,
634 u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
635{
636 /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
637 * defined to be 'duplicate' */
638 *is_dack = tc->sack_sb.last_sacked_bytes
639 || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
640
Dave Barach2c25a622017-06-26 11:35:07 -0400641 return ((*is_dack || tcp_in_cong_recovery (tc)) && !tcp_is_lost_fin (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -0500642}
643
Filip Tehlare275bed2019-03-06 00:06:56 -0800644#ifndef CLIB_MARCH_VARIANT
Florin Coras0dbd5172018-06-25 16:19:34 -0700645static u32
646scoreboard_hole_index (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
647{
648 ASSERT (!pool_is_free_index (sb->holes, hole - sb->holes));
649 return hole - sb->holes;
650}
651
652static u32
653scoreboard_hole_bytes (sack_scoreboard_hole_t * hole)
654{
655 return hole->end - hole->start;
656}
657
658sack_scoreboard_hole_t *
659scoreboard_get_hole (sack_scoreboard_t * sb, u32 index)
660{
661 if (index != TCP_INVALID_SACK_HOLE_INDEX)
662 return pool_elt_at_index (sb->holes, index);
663 return 0;
664}
665
666sack_scoreboard_hole_t *
667scoreboard_next_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
668{
669 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
670 return pool_elt_at_index (sb->holes, hole->next);
671 return 0;
672}
673
674sack_scoreboard_hole_t *
675scoreboard_prev_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
676{
677 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
678 return pool_elt_at_index (sb->holes, hole->prev);
679 return 0;
680}
681
682sack_scoreboard_hole_t *
683scoreboard_first_hole (sack_scoreboard_t * sb)
684{
685 if (sb->head != TCP_INVALID_SACK_HOLE_INDEX)
686 return pool_elt_at_index (sb->holes, sb->head);
687 return 0;
688}
689
690sack_scoreboard_hole_t *
691scoreboard_last_hole (sack_scoreboard_t * sb)
692{
693 if (sb->tail != TCP_INVALID_SACK_HOLE_INDEX)
694 return pool_elt_at_index (sb->holes, sb->tail);
695 return 0;
696}
697
698static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500699scoreboard_remove_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
700{
701 sack_scoreboard_hole_t *next, *prev;
702
703 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
704 {
705 next = pool_elt_at_index (sb->holes, hole->next);
706 next->prev = hole->prev;
707 }
Florin Coras93992a92017-05-24 18:03:56 -0700708 else
709 {
710 sb->tail = hole->prev;
711 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500712
713 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
714 {
715 prev = pool_elt_at_index (sb->holes, hole->prev);
716 prev->next = hole->next;
717 }
718 else
719 {
720 sb->head = hole->next;
721 }
722
Florin Coras93992a92017-05-24 18:03:56 -0700723 if (scoreboard_hole_index (sb, hole) == sb->cur_rxt_hole)
724 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
725
Florin Coras3eb50622017-07-13 01:24:57 -0400726 /* Poison the entry */
727 if (CLIB_DEBUG > 0)
Dave Barachb7b92992018-10-17 10:38:51 -0400728 clib_memset (hole, 0xfe, sizeof (*hole));
Florin Coras3eb50622017-07-13 01:24:57 -0400729
Dave Barach68b0fb02017-02-28 15:15:56 -0500730 pool_put (sb->holes, hole);
731}
732
Florin Coras0dbd5172018-06-25 16:19:34 -0700733static sack_scoreboard_hole_t *
Florin Coras6792ec02017-03-13 03:49:51 -0700734scoreboard_insert_hole (sack_scoreboard_t * sb, u32 prev_index,
Dave Barach68b0fb02017-02-28 15:15:56 -0500735 u32 start, u32 end)
736{
Florin Coras6792ec02017-03-13 03:49:51 -0700737 sack_scoreboard_hole_t *hole, *next, *prev;
Dave Barach68b0fb02017-02-28 15:15:56 -0500738 u32 hole_index;
739
740 pool_get (sb->holes, hole);
Dave Barachb7b92992018-10-17 10:38:51 -0400741 clib_memset (hole, 0, sizeof (*hole));
Dave Barach68b0fb02017-02-28 15:15:56 -0500742
743 hole->start = start;
744 hole->end = end;
Florin Coras3eb50622017-07-13 01:24:57 -0400745 hole_index = scoreboard_hole_index (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500746
Florin Coras6792ec02017-03-13 03:49:51 -0700747 prev = scoreboard_get_hole (sb, prev_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500748 if (prev)
749 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700750 hole->prev = prev_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500751 hole->next = prev->next;
752
753 if ((next = scoreboard_next_hole (sb, hole)))
754 next->prev = hole_index;
Florin Corasf03a59a2017-06-09 21:07:32 -0700755 else
756 sb->tail = hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500757
758 prev->next = hole_index;
759 }
760 else
761 {
762 sb->head = hole_index;
763 hole->prev = TCP_INVALID_SACK_HOLE_INDEX;
764 hole->next = TCP_INVALID_SACK_HOLE_INDEX;
765 }
766
767 return hole;
768}
Filip Tehlare275bed2019-03-06 00:06:56 -0800769#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -0500770
Filip Tehlare275bed2019-03-06 00:06:56 -0800771#ifndef CLIB_MARCH_VARIANT
Florin Coras0dbd5172018-06-25 16:19:34 -0700772static void
Florin Corasf03a59a2017-06-09 21:07:32 -0700773scoreboard_update_bytes (tcp_connection_t * tc, sack_scoreboard_t * sb)
Florin Coras93992a92017-05-24 18:03:56 -0700774{
Florin Corasecbd20b2018-10-17 23:34:54 -0700775 sack_scoreboard_hole_t *left, *right;
Florin Coras93992a92017-05-24 18:03:56 -0700776 u32 bytes = 0, blks = 0;
777
Florin Corasb3f58e12019-07-05 18:31:54 -0700778 sb->last_lost_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700779 sb->lost_bytes = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700780 sb->sacked_bytes = 0;
Florin Corasecbd20b2018-10-17 23:34:54 -0700781 left = scoreboard_last_hole (sb);
782 if (!left)
Florin Coras93992a92017-05-24 18:03:56 -0700783 return;
784
Florin Corasecbd20b2018-10-17 23:34:54 -0700785 if (seq_gt (sb->high_sacked, left->end))
Florin Coras93992a92017-05-24 18:03:56 -0700786 {
Florin Corasecbd20b2018-10-17 23:34:54 -0700787 bytes = sb->high_sacked - left->end;
Florin Coras93992a92017-05-24 18:03:56 -0700788 blks = 1;
789 }
790
Florin Coras9f9e9692018-10-19 17:49:00 -0700791 while ((right = left)
792 && bytes < (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
793 && blks < TCP_DUPACK_THRESHOLD
794 /* left not updated if above conditions fail */
795 && (left = scoreboard_prev_hole (sb, right)))
Florin Coras93992a92017-05-24 18:03:56 -0700796 {
Florin Corasecbd20b2018-10-17 23:34:54 -0700797 bytes += right->start - left->end;
Florin Coras93992a92017-05-24 18:03:56 -0700798 blks++;
Florin Coras93992a92017-05-24 18:03:56 -0700799 }
800
Florin Coras9f9e9692018-10-19 17:49:00 -0700801 /* left is first lost */
802 if (left)
Florin Coras93992a92017-05-24 18:03:56 -0700803 {
Florin Coras9f9e9692018-10-19 17:49:00 -0700804 do
805 {
806 sb->lost_bytes += scoreboard_hole_bytes (right);
Florin Corasb3f58e12019-07-05 18:31:54 -0700807 sb->last_lost_bytes += left->is_lost ? 0 : left->end - left->start;
Florin Coras9f9e9692018-10-19 17:49:00 -0700808 left->is_lost = 1;
809 left = scoreboard_prev_hole (sb, right);
810 if (left)
811 bytes += right->start - left->end;
812 }
813 while ((right = left));
Florin Coras93992a92017-05-24 18:03:56 -0700814 }
Florin Coras9f9e9692018-10-19 17:49:00 -0700815
Florin Corasf03a59a2017-06-09 21:07:32 -0700816 sb->sacked_bytes = bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700817}
818
819/**
820 * Figure out the next hole to retransmit
821 *
822 * Follows logic proposed in RFC6675 Sec. 4, NextSeg()
823 */
824sack_scoreboard_hole_t *
825scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
826 sack_scoreboard_hole_t * start,
Florin Coras36ee9f12018-11-02 12:52:10 -0700827 u8 have_unsent, u8 * can_rescue, u8 * snd_limited)
Florin Coras93992a92017-05-24 18:03:56 -0700828{
829 sack_scoreboard_hole_t *hole = 0;
830
831 hole = start ? start : scoreboard_first_hole (sb);
832 while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost)
833 hole = scoreboard_next_hole (sb, hole);
834
835 /* Nothing, return */
836 if (!hole)
837 {
838 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
839 return 0;
840 }
841
842 /* Rule (1): if higher than rxt, less than high_sacked and lost */
843 if (hole->is_lost && seq_lt (hole->start, sb->high_sacked))
844 {
845 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
846 }
847 else
848 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700849 /* Rule (2): available unsent data */
850 if (have_unsent)
Florin Coras93992a92017-05-24 18:03:56 -0700851 {
Florin Coras93992a92017-05-24 18:03:56 -0700852 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
Florin Coras36ee9f12018-11-02 12:52:10 -0700853 return 0;
Florin Coras93992a92017-05-24 18:03:56 -0700854 }
855 /* Rule (3): if hole not lost */
856 else if (seq_lt (hole->start, sb->high_sacked))
857 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700858 *snd_limited = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700859 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
860 }
861 /* Rule (4): if hole beyond high_sacked */
862 else
863 {
864 ASSERT (seq_geq (hole->start, sb->high_sacked));
865 *snd_limited = 1;
866 *can_rescue = 1;
867 /* HighRxt MUST NOT be updated */
868 return 0;
869 }
870 }
871
872 if (hole && seq_lt (sb->high_rxt, hole->start))
873 sb->high_rxt = hole->start;
874
875 return hole;
876}
Filip Tehlare275bed2019-03-06 00:06:56 -0800877#endif /* CLIB_MARCH_VARIANT */
Florin Coras93992a92017-05-24 18:03:56 -0700878
Florin Coras0dbd5172018-06-25 16:19:34 -0700879static void
Florin Coras36ee9f12018-11-02 12:52:10 -0700880scoreboard_init_high_rxt (sack_scoreboard_t * sb, u32 snd_una)
Florin Coras93992a92017-05-24 18:03:56 -0700881{
882 sack_scoreboard_hole_t *hole;
883 hole = scoreboard_first_hole (sb);
Florin Coras3eb50622017-07-13 01:24:57 -0400884 if (hole)
885 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700886 snd_una = seq_gt (snd_una, hole->start) ? snd_una : hole->start;
Florin Coras3eb50622017-07-13 01:24:57 -0400887 sb->cur_rxt_hole = sb->head;
888 }
Florin Coras36ee9f12018-11-02 12:52:10 -0700889 sb->high_rxt = snd_una;
890 sb->rescue_rxt = snd_una - 1;
Florin Coras3eb50622017-07-13 01:24:57 -0400891}
892
Filip Tehlare275bed2019-03-06 00:06:56 -0800893#ifndef CLIB_MARCH_VARIANT
Florin Coras0dbd5172018-06-25 16:19:34 -0700894void
895scoreboard_init (sack_scoreboard_t * sb)
896{
897 sb->head = TCP_INVALID_SACK_HOLE_INDEX;
898 sb->tail = TCP_INVALID_SACK_HOLE_INDEX;
899 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
900}
901
902void
903scoreboard_clear (sack_scoreboard_t * sb)
904{
905 sack_scoreboard_hole_t *hole;
906 while ((hole = scoreboard_first_hole (sb)))
907 {
908 scoreboard_remove_hole (sb, hole);
909 }
910 ASSERT (sb->head == sb->tail && sb->head == TCP_INVALID_SACK_HOLE_INDEX);
911 ASSERT (pool_elts (sb->holes) == 0);
912 sb->sacked_bytes = 0;
913 sb->last_sacked_bytes = 0;
914 sb->last_bytes_delivered = 0;
915 sb->snd_una_adv = 0;
916 sb->high_sacked = 0;
917 sb->high_rxt = 0;
918 sb->lost_bytes = 0;
Florin Corasb3f58e12019-07-05 18:31:54 -0700919 sb->last_lost_bytes = 0;
Florin Coras0dbd5172018-06-25 16:19:34 -0700920 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
921}
Filip Tehlare275bed2019-03-06 00:06:56 -0800922#endif /* CLIB_MARCH_VARIANT */
Florin Coras0dbd5172018-06-25 16:19:34 -0700923
Florin Coras3eb50622017-07-13 01:24:57 -0400924/**
925 * Test that scoreboard is sane after recovery
926 *
927 * Returns 1 if scoreboard is empty or if first hole beyond
928 * snd_una.
929 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700930static u8
Florin Coras3eb50622017-07-13 01:24:57 -0400931tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc)
932{
933 sack_scoreboard_hole_t *hole;
934 hole = scoreboard_first_hole (&tc->sack_sb);
Florin Corasecbd20b2018-10-17 23:34:54 -0700935 return (!hole || (seq_geq (hole->start, tc->snd_una)
Florin Coras47596832019-03-12 18:58:54 -0700936 && seq_lt (hole->end, tc->snd_nxt)));
Florin Coras93992a92017-05-24 18:03:56 -0700937}
938
Filip Tehlare275bed2019-03-06 00:06:56 -0800939#ifndef CLIB_MARCH_VARIANT
Florin Corasb3f58e12019-07-05 18:31:54 -0700940
Florin Coras93992a92017-05-24 18:03:56 -0700941void
Dave Barach68b0fb02017-02-28 15:15:56 -0500942tcp_rcv_sacks (tcp_connection_t * tc, u32 ack)
943{
Florin Corasf03a59a2017-06-09 21:07:32 -0700944 sack_scoreboard_hole_t *hole, *next_hole, *last_hole;
Florin Coras93992a92017-05-24 18:03:56 -0700945 u32 blk_index = 0, old_sacked_bytes, hole_index;
Florin Corasb3f58e12019-07-05 18:31:54 -0700946 sack_scoreboard_t *sb = &tc->sack_sb;
947 sack_block_t *blk, tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500948 int i, j;
949
Florin Coras6792ec02017-03-13 03:49:51 -0700950 sb->last_sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700951 sb->last_bytes_delivered = 0;
Florin Coras352c2c42018-06-26 01:22:41 -0700952 sb->snd_una_adv = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700953
Florin Coras93992a92017-05-24 18:03:56 -0700954 if (!tcp_opts_sack (&tc->rcv_opts)
955 && sb->head == TCP_INVALID_SACK_HOLE_INDEX)
Dave Barach68b0fb02017-02-28 15:15:56 -0500956 return;
957
Florin Coras352c2c42018-06-26 01:22:41 -0700958 old_sacked_bytes = sb->sacked_bytes;
959
Dave Barach68b0fb02017-02-28 15:15:56 -0500960 /* Remove invalid blocks */
Florin Coras93992a92017-05-24 18:03:56 -0700961 blk = tc->rcv_opts.sacks;
962 while (blk < vec_end (tc->rcv_opts.sacks))
Florin Coras6792ec02017-03-13 03:49:51 -0700963 {
964 if (seq_lt (blk->start, blk->end)
965 && seq_gt (blk->start, tc->snd_una)
Florin Corasab86f862018-12-06 18:24:19 -0800966 && seq_gt (blk->start, ack)
Florin Coras47596832019-03-12 18:58:54 -0700967 && seq_lt (blk->start, tc->snd_nxt)
968 && seq_leq (blk->end, tc->snd_nxt))
Florin Coras6792ec02017-03-13 03:49:51 -0700969 {
970 blk++;
971 continue;
972 }
Florin Coras93992a92017-05-24 18:03:56 -0700973 vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks);
Florin Coras6792ec02017-03-13 03:49:51 -0700974 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500975
976 /* Add block for cumulative ack */
977 if (seq_gt (ack, tc->snd_una))
978 {
979 tmp.start = tc->snd_una;
980 tmp.end = ack;
Florin Coras93992a92017-05-24 18:03:56 -0700981 vec_add1 (tc->rcv_opts.sacks, tmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500982 }
983
Florin Coras93992a92017-05-24 18:03:56 -0700984 if (vec_len (tc->rcv_opts.sacks) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500985 return;
986
Florin Coras3eb50622017-07-13 01:24:57 -0400987 tcp_scoreboard_trace_add (tc, ack);
988
Dave Barach68b0fb02017-02-28 15:15:56 -0500989 /* Make sure blocks are ordered */
Florin Coras93992a92017-05-24 18:03:56 -0700990 for (i = 0; i < vec_len (tc->rcv_opts.sacks); i++)
991 for (j = i + 1; j < vec_len (tc->rcv_opts.sacks); j++)
992 if (seq_lt (tc->rcv_opts.sacks[j].start, tc->rcv_opts.sacks[i].start))
Dave Barach68b0fb02017-02-28 15:15:56 -0500993 {
Florin Coras93992a92017-05-24 18:03:56 -0700994 tmp = tc->rcv_opts.sacks[i];
995 tc->rcv_opts.sacks[i] = tc->rcv_opts.sacks[j];
996 tc->rcv_opts.sacks[j] = tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500997 }
998
Dave Barach68b0fb02017-02-28 15:15:56 -0500999 if (sb->head == TCP_INVALID_SACK_HOLE_INDEX)
1000 {
Florin Coras6792ec02017-03-13 03:49:51 -07001001 /* If no holes, insert the first that covers all outstanding bytes */
1002 last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
Florin Coras47596832019-03-12 18:58:54 -07001003 tc->snd_una, tc->snd_nxt);
Florin Coras6792ec02017-03-13 03:49:51 -07001004 sb->tail = scoreboard_hole_index (sb, last_hole);
Florin Coras93992a92017-05-24 18:03:56 -07001005 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
1006 sb->high_sacked = tmp.end;
Florin Coras6792ec02017-03-13 03:49:51 -07001007 }
1008 else
1009 {
1010 /* If we have holes but snd_una_max is beyond the last hole, update
1011 * last hole end */
Florin Coras93992a92017-05-24 18:03:56 -07001012 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
Florin Coras6792ec02017-03-13 03:49:51 -07001013 last_hole = scoreboard_last_hole (sb);
Florin Coras47596832019-03-12 18:58:54 -07001014 if (seq_gt (tc->snd_nxt, last_hole->end))
Dave Barach2c25a622017-06-26 11:35:07 -04001015 {
1016 if (seq_geq (last_hole->start, sb->high_sacked))
1017 {
Florin Coras47596832019-03-12 18:58:54 -07001018 last_hole->end = tc->snd_nxt;
Dave Barach2c25a622017-06-26 11:35:07 -04001019 }
1020 /* New hole after high sacked block */
Florin Coras47596832019-03-12 18:58:54 -07001021 else if (seq_lt (sb->high_sacked, tc->snd_nxt))
Dave Barach2c25a622017-06-26 11:35:07 -04001022 {
1023 scoreboard_insert_hole (sb, sb->tail, sb->high_sacked,
Florin Coras47596832019-03-12 18:58:54 -07001024 tc->snd_nxt);
Dave Barach2c25a622017-06-26 11:35:07 -04001025 }
1026 }
1027 /* Keep track of max byte sacked for when the last hole
Florin Corasf03a59a2017-06-09 21:07:32 -07001028 * is acked */
1029 if (seq_gt (tmp.end, sb->high_sacked))
1030 sb->high_sacked = tmp.end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001031 }
1032
1033 /* Walk the holes with the SACK blocks */
1034 hole = pool_elt_at_index (sb->holes, sb->head);
Florin Coras93992a92017-05-24 18:03:56 -07001035 while (hole && blk_index < vec_len (tc->rcv_opts.sacks))
Dave Barach68b0fb02017-02-28 15:15:56 -05001036 {
Florin Coras93992a92017-05-24 18:03:56 -07001037 blk = &tc->rcv_opts.sacks[blk_index];
Dave Barach68b0fb02017-02-28 15:15:56 -05001038 if (seq_leq (blk->start, hole->start))
1039 {
1040 /* Block covers hole. Remove hole */
1041 if (seq_geq (blk->end, hole->end))
1042 {
1043 next_hole = scoreboard_next_hole (sb, hole);
1044
Florin Corasf03a59a2017-06-09 21:07:32 -07001045 /* Byte accounting: snd_una needs to be advanced */
1046 if (blk->end == ack)
Dave Barach68b0fb02017-02-28 15:15:56 -05001047 {
Florin Corasf03a59a2017-06-09 21:07:32 -07001048 if (next_hole)
Florin Coras06d11012017-05-17 14:21:51 -07001049 {
Florin Corasf03a59a2017-06-09 21:07:32 -07001050 if (seq_lt (ack, next_hole->start))
1051 sb->snd_una_adv = next_hole->start - ack;
1052 sb->last_bytes_delivered +=
1053 next_hole->start - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -07001054 }
Florin Coras3eb50622017-07-13 01:24:57 -04001055 else
Florin Coras06d11012017-05-17 14:21:51 -07001056 {
Dave Barach2c25a622017-06-26 11:35:07 -04001057 ASSERT (seq_geq (sb->high_sacked, ack));
Florin Coras93992a92017-05-24 18:03:56 -07001058 sb->snd_una_adv = sb->high_sacked - ack;
Florin Corasf03a59a2017-06-09 21:07:32 -07001059 sb->last_bytes_delivered += sb->high_sacked - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -07001060 }
1061 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001062 scoreboard_remove_hole (sb, hole);
1063 hole = next_hole;
1064 }
Florin Coras6792ec02017-03-13 03:49:51 -07001065 /* Partial 'head' overlap */
Dave Barach68b0fb02017-02-28 15:15:56 -05001066 else
1067 {
Florin Coras6792ec02017-03-13 03:49:51 -07001068 if (seq_gt (blk->end, hole->start))
1069 {
Florin Coras6792ec02017-03-13 03:49:51 -07001070 hole->start = blk->end;
1071 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001072 blk_index++;
1073 }
1074 }
1075 else
1076 {
1077 /* Hole must be split */
Florin Coras6792ec02017-03-13 03:49:51 -07001078 if (seq_lt (blk->end, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001079 {
Florin Coras6792ec02017-03-13 03:49:51 -07001080 hole_index = scoreboard_hole_index (sb, hole);
Florin Coras3eb50622017-07-13 01:24:57 -04001081 next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
1082 hole->end);
Florin Coras6792ec02017-03-13 03:49:51 -07001083
1084 /* Pool might've moved */
1085 hole = scoreboard_get_hole (sb, hole_index);
1086 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -05001087 blk_index++;
Florin Coras3eb50622017-07-13 01:24:57 -04001088 ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
Dave Barach68b0fb02017-02-28 15:15:56 -05001089 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001090 else if (seq_lt (blk->start, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001091 {
Florin Coras6792ec02017-03-13 03:49:51 -07001092 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -05001093 }
Florin Coras93992a92017-05-24 18:03:56 -07001094 hole = scoreboard_next_hole (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -05001095 }
1096 }
Florin Coras6792ec02017-03-13 03:49:51 -07001097
Florin Corasecbd20b2018-10-17 23:34:54 -07001098 if (pool_elts (sb->holes) == 1)
1099 {
1100 hole = scoreboard_first_hole (sb);
Florin Coras47596832019-03-12 18:58:54 -07001101 if (hole->start == ack + sb->snd_una_adv && hole->end == tc->snd_nxt)
Florin Corasecbd20b2018-10-17 23:34:54 -07001102 scoreboard_remove_hole (sb, hole);
1103 }
1104
Florin Corasf03a59a2017-06-09 21:07:32 -07001105 scoreboard_update_bytes (tc, sb);
1106 sb->last_sacked_bytes = sb->sacked_bytes
1107 - (old_sacked_bytes - sb->last_bytes_delivered);
Florin Corasb3f58e12019-07-05 18:31:54 -07001108
Florin Corasca1c8f32018-05-23 21:01:30 -07001109 ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes || tcp_in_recovery (tc));
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001110 ASSERT (sb->sacked_bytes == 0 || tcp_in_recovery (tc)
Florin Coras47596832019-03-12 18:58:54 -07001111 || sb->sacked_bytes < tc->snd_nxt - seq_max (tc->snd_una, ack));
1112 ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_nxt
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001113 - seq_max (tc->snd_una, ack) || tcp_in_recovery (tc));
Dave Barach2c25a622017-06-26 11:35:07 -04001114 ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
1115 || sb->holes[sb->head].start == ack + sb->snd_una_adv);
Florin Corasb3f58e12019-07-05 18:31:54 -07001116 ASSERT (sb->last_lost_bytes <= sb->lost_bytes);
1117
Florin Corasca1c8f32018-05-23 21:01:30 -07001118 TCP_EVT_DBG (TCP_EVT_CC_SCOREBOARD, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001119}
Filip Tehlare275bed2019-03-06 00:06:56 -08001120#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05001121
Florin Coras93992a92017-05-24 18:03:56 -07001122/**
1123 * Try to update snd_wnd based on feedback received from peer.
Dave Barach68b0fb02017-02-28 15:15:56 -05001124 *
Florin Coras93992a92017-05-24 18:03:56 -07001125 * If successful, and new window is 'effectively' 0, activate persist
1126 * timer.
1127 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001128static void
1129tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
1130{
Florin Coras93992a92017-05-24 18:03:56 -07001131 /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
1132 * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
Florin Coras6792ec02017-03-13 03:49:51 -07001133 if (seq_lt (tc->snd_wl1, seq)
1134 || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001135 {
1136 tc->snd_wnd = snd_wnd;
1137 tc->snd_wl1 = seq;
1138 tc->snd_wl2 = ack;
Florin Coras6792ec02017-03-13 03:49:51 -07001139 TCP_EVT_DBG (TCP_EVT_SND_WND, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001140
Florin Coras9ece3c02018-11-05 11:06:53 -08001141 if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
Florin Corasbb292f42017-05-19 09:49:19 -07001142 {
Florin Coras93992a92017-05-24 18:03:56 -07001143 /* Set persist timer if not set and we just got 0 wnd */
1144 if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
1145 && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
Florin Corasbb292f42017-05-19 09:49:19 -07001146 tcp_persist_timer_set (tc);
1147 }
Florin Coras3e350af2017-03-30 02:54:28 -07001148 else
Florin Coras93992a92017-05-24 18:03:56 -07001149 {
1150 tcp_persist_timer_reset (tc);
Florin Coras9ece3c02018-11-05 11:06:53 -08001151 if (PREDICT_FALSE (!tcp_in_recovery (tc) && tc->rto_boff > 0))
Florin Coras93992a92017-05-24 18:03:56 -07001152 {
1153 tc->rto_boff = 0;
1154 tcp_update_rto (tc);
1155 }
1156 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001157 }
1158}
1159
Filip Tehlare275bed2019-03-06 00:06:56 -08001160#ifndef CLIB_MARCH_VARIANT
Florin Corasd2aab832018-05-22 11:39:59 -07001161/**
1162 * Init loss recovery/fast recovery.
1163 *
1164 * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
1165 * updated in @ref tcp_cc_handle_event after fast retransmit
1166 */
Florin Coras6792ec02017-03-13 03:49:51 -07001167void
Florin Coras93992a92017-05-24 18:03:56 -07001168tcp_cc_init_congestion (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001169{
Florin Coras93992a92017-05-24 18:03:56 -07001170 tcp_fastrecovery_on (tc);
Florin Coras47596832019-03-12 18:58:54 -07001171 tc->snd_congestion = tc->snd_nxt;
Florin Coras62166002018-04-18 16:40:55 -07001172 tc->cwnd_acc_bytes = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001173 tc->snd_rxt_bytes = 0;
1174 tc->prev_ssthresh = tc->ssthresh;
1175 tc->prev_cwnd = tc->cwnd;
Dave Barach68b0fb02017-02-28 15:15:56 -05001176 tc->cc_algo->congestion (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001177 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001178}
Filip Tehlare275bed2019-03-06 00:06:56 -08001179#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05001180
Florin Coras93992a92017-05-24 18:03:56 -07001181static void
1182tcp_cc_recovery_exit (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001183{
Florin Coras93992a92017-05-24 18:03:56 -07001184 tc->rto_boff = 0;
Florin Corasf1762d62017-09-24 19:43:08 -04001185 tcp_update_rto (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001186 tc->snd_rxt_ts = 0;
Florin Corasefefc6b2018-11-07 12:49:19 -08001187 tc->rtt_ts = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001188 tcp_recovery_off (tc);
Florin Corasf1762d62017-09-24 19:43:08 -04001189 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Florin Coras93992a92017-05-24 18:03:56 -07001190}
Florin Coras3e350af2017-03-30 02:54:28 -07001191
Florin Coraseff6b822019-07-03 19:51:02 -07001192#ifndef CLIB_MARCH_VARIANT
1193void
1194tcp_cc_fastrecovery_clear (tcp_connection_t * tc)
Florin Coras93992a92017-05-24 18:03:56 -07001195{
Florin Coras93992a92017-05-24 18:03:56 -07001196 tc->snd_rxt_bytes = 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001197 tc->rcv_dupacks = 0;
Florin Corasefefc6b2018-11-07 12:49:19 -08001198 tc->rtt_ts = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001199
Florin Coras93992a92017-05-24 18:03:56 -07001200 tcp_fastrecovery_off (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001201 tcp_fastrecovery_first_off (tc);
Florin Coras26dd6de2019-07-23 23:54:47 -07001202 tc->flags &= ~TCP_CONN_FRXT_PENDING;
Florin Corasd67f1122018-05-21 17:47:40 -07001203
Florin Corasf1762d62017-09-24 19:43:08 -04001204 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Dave Barach68b0fb02017-02-28 15:15:56 -05001205}
Filip Tehlare275bed2019-03-06 00:06:56 -08001206#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05001207
1208static void
Florin Coras93992a92017-05-24 18:03:56 -07001209tcp_cc_congestion_undo (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001210{
Florin Coras93992a92017-05-24 18:03:56 -07001211 tc->cwnd = tc->prev_cwnd;
1212 tc->ssthresh = tc->prev_ssthresh;
Florin Coras93992a92017-05-24 18:03:56 -07001213 tc->rcv_dupacks = 0;
1214 if (tcp_in_recovery (tc))
Florin Coras47596832019-03-12 18:58:54 -07001215 {
1216 tcp_cc_recovery_exit (tc);
1217 tc->snd_nxt = seq_max (tc->snd_nxt, tc->snd_congestion);
1218 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001219 else if (tcp_in_fastrecovery (tc))
Florin Coras47596832019-03-12 18:58:54 -07001220 {
Florin Coraseff6b822019-07-03 19:51:02 -07001221 tcp_cc_fastrecovery_clear (tc);
Florin Coras47596832019-03-12 18:58:54 -07001222 }
Florin Coraseff6b822019-07-03 19:51:02 -07001223 tcp_cc_undo_recovery (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001224 ASSERT (tc->rto_boff == 0);
Florin Corasf1762d62017-09-24 19:43:08 -04001225 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 5);
Florin Coras93992a92017-05-24 18:03:56 -07001226}
Dave Barach68b0fb02017-02-28 15:15:56 -05001227
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001228static inline u8
1229tcp_cc_is_spurious_timeout_rxt (tcp_connection_t * tc)
Florin Coras93992a92017-05-24 18:03:56 -07001230{
Florin Corasf1762d62017-09-24 19:43:08 -04001231 return (tcp_in_recovery (tc) && tc->rto_boff == 1
Dave Barach2c25a622017-06-26 11:35:07 -04001232 && tc->snd_rxt_ts
Florin Coras93992a92017-05-24 18:03:56 -07001233 && tcp_opts_tstamp (&tc->rcv_opts)
1234 && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
1235}
1236
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001237static inline u8
1238tcp_cc_is_spurious_fast_rxt (tcp_connection_t * tc)
1239{
1240 return (tcp_in_fastrecovery (tc)
1241 && tc->cwnd > tc->ssthresh + 3 * tc->snd_mss);
1242}
1243
1244static u8
1245tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
1246{
1247 return (tcp_cc_is_spurious_timeout_rxt (tc)
1248 || tcp_cc_is_spurious_fast_rxt (tc));
1249}
1250
Florin Coras0dbd5172018-06-25 16:19:34 -07001251static int
Florin Coras93992a92017-05-24 18:03:56 -07001252tcp_cc_recover (tcp_connection_t * tc)
1253{
1254 ASSERT (tcp_in_cong_recovery (tc));
1255 if (tcp_cc_is_spurious_retransmit (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001256 {
Florin Coras93992a92017-05-24 18:03:56 -07001257 tcp_cc_congestion_undo (tc);
1258 return 1;
1259 }
1260
1261 if (tcp_in_recovery (tc))
1262 tcp_cc_recovery_exit (tc);
1263 else if (tcp_in_fastrecovery (tc))
Florin Coraseff6b822019-07-03 19:51:02 -07001264 {
1265 tcp_cc_recovered (tc);
1266 tcp_cc_fastrecovery_clear (tc);
1267 }
Florin Coras93992a92017-05-24 18:03:56 -07001268
1269 ASSERT (tc->rto_boff == 0);
1270 ASSERT (!tcp_in_cong_recovery (tc));
Florin Coras3eb50622017-07-13 01:24:57 -04001271 ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001272 return 0;
1273}
1274
1275static void
Florin Coras52814732019-06-12 15:38:19 -07001276tcp_cc_update (tcp_connection_t * tc, tcp_rate_sample_t * rs)
Florin Coras93992a92017-05-24 18:03:56 -07001277{
Florin Coras3eb50622017-07-13 01:24:57 -04001278 ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001279
1280 /* Congestion avoidance */
Florin Coras52814732019-06-12 15:38:19 -07001281 tcp_cc_rcv_ack (tc, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001282
1283 /* If a cumulative ack, make sure dupacks is 0 */
1284 tc->rcv_dupacks = 0;
1285
1286 /* When dupacks hits the threshold we only enter fast retransmit if
1287 * cumulative ack covers more than snd_congestion. Should snd_una
1288 * wrap this test may fail under otherwise valid circumstances.
1289 * Therefore, proactively update snd_congestion when wrap detected. */
1290 if (PREDICT_FALSE
1291 (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1292 && seq_gt (tc->snd_congestion, tc->snd_una)))
1293 tc->snd_congestion = tc->snd_una - 1;
1294}
1295
1296static u8
1297tcp_should_fastrecover_sack (tcp_connection_t * tc)
1298{
1299 return (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss < tc->sack_sb.sacked_bytes;
1300}
1301
1302static u8
1303tcp_should_fastrecover (tcp_connection_t * tc)
1304{
1305 return (tc->rcv_dupacks == TCP_DUPACK_THRESHOLD
1306 || tcp_should_fastrecover_sack (tc));
1307}
1308
Florin Corasf03a59a2017-06-09 21:07:32 -07001309/**
1310 * One function to rule them all ... and in the darkness bind them
1311 */
Florin Coras93992a92017-05-24 18:03:56 -07001312static void
Florin Coras52814732019-06-12 15:38:19 -07001313tcp_cc_handle_event (tcp_connection_t * tc, tcp_rate_sample_t * rs,
1314 u32 is_dack)
Florin Coras93992a92017-05-24 18:03:56 -07001315{
Florin Corasf03a59a2017-06-09 21:07:32 -07001316 u32 rxt_delivered;
1317
Florin Corasca1c8f32018-05-23 21:01:30 -07001318 if (tcp_in_fastrecovery (tc) && tcp_opts_sack_permitted (&tc->rcv_opts))
1319 {
1320 if (tc->bytes_acked)
1321 goto partial_ack;
Florin Coras26dd6de2019-07-23 23:54:47 -07001322 tcp_program_fastretransmit (tc);
Florin Corasca1c8f32018-05-23 21:01:30 -07001323 return;
1324 }
Florin Coras93992a92017-05-24 18:03:56 -07001325 /*
1326 * Duplicate ACK. Check if we should enter fast recovery, or if already in
1327 * it account for the bytes that left the network.
1328 */
Florin Corasca1c8f32018-05-23 21:01:30 -07001329 else if (is_dack && !tcp_in_recovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001330 {
Florin Corasd2aab832018-05-22 11:39:59 -07001331 TCP_EVT_DBG (TCP_EVT_DUPACK_RCVD, tc, 1);
Florin Coras47596832019-03-12 18:58:54 -07001332 ASSERT (tc->snd_una != tc->snd_nxt || tc->sack_sb.last_sacked_bytes);
Dave Barach2c25a622017-06-26 11:35:07 -04001333
Florin Coras93992a92017-05-24 18:03:56 -07001334 tc->rcv_dupacks++;
1335
Florin Corasd2aab832018-05-22 11:39:59 -07001336 /* Pure duplicate ack. If some data got acked, it's handled lower */
Florin Coras93992a92017-05-24 18:03:56 -07001337 if (tc->rcv_dupacks > TCP_DUPACK_THRESHOLD && !tc->bytes_acked)
Dave Barach68b0fb02017-02-28 15:15:56 -05001338 {
Florin Coras93992a92017-05-24 18:03:56 -07001339 ASSERT (tcp_in_fastrecovery (tc));
Florin Coras52814732019-06-12 15:38:19 -07001340 tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001341 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001342 }
Florin Coras93992a92017-05-24 18:03:56 -07001343 else if (tcp_should_fastrecover (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001344 {
Florin Corasc44a5582018-11-01 16:30:54 -07001345 u32 pacer_wnd;
1346
Florin Corasd2aab832018-05-22 11:39:59 -07001347 ASSERT (!tcp_in_fastrecovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001348
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001349 /* Heuristic to catch potential late dupacks
1350 * after fast retransmit exits */
1351 if (is_dack && tc->snd_una == tc->snd_congestion
1352 && timestamp_leq (tc->rcv_opts.tsecr, tc->tsecr_last_ack))
Florin Coras93992a92017-05-24 18:03:56 -07001353 {
1354 tc->rcv_dupacks = 0;
1355 return;
1356 }
1357
1358 tcp_cc_init_congestion (tc);
Florin Coras52814732019-06-12 15:38:19 -07001359 tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001360
Florin Coras3eb50622017-07-13 01:24:57 -04001361 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Corase55a6d72018-10-31 23:09:22 -07001362 {
1363 tc->cwnd = tc->ssthresh;
1364 scoreboard_init_high_rxt (&tc->sack_sb, tc->snd_una);
Florin Corase55a6d72018-10-31 23:09:22 -07001365 }
1366 else
1367 {
1368 /* Post retransmit update cwnd to ssthresh and account for the
1369 * three segments that have left the network and should've been
1370 * buffered at the receiver XXX */
1371 tc->cwnd = tc->ssthresh + 3 * tc->snd_mss;
1372 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001373
Florin Coras36ee9f12018-11-02 12:52:10 -07001374 /* Constrain rate until we get a partial ack */
Florin Corasc44a5582018-11-01 16:30:54 -07001375 pacer_wnd = clib_max (0.1 * tc->cwnd, 2 * tc->snd_mss);
1376 tcp_connection_tx_pacer_reset (tc, pacer_wnd,
1377 0 /* start bucket */ );
Florin Coras26dd6de2019-07-23 23:54:47 -07001378 tcp_program_fastretransmit (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001379 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001380 }
Florin Coras93992a92017-05-24 18:03:56 -07001381 else if (!tc->bytes_acked
1382 || (tc->bytes_acked && !tcp_in_cong_recovery (tc)))
1383 {
Florin Coras52814732019-06-12 15:38:19 -07001384 tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001385 return;
1386 }
1387 else
1388 goto partial_ack;
1389 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001390 /* Don't allow entry in fast recovery if still in recovery, for now */
1391 else if (0 && is_dack && tcp_in_recovery (tc))
1392 {
1393 /* If of of the two conditions lower hold, reset dupacks because
1394 * we're probably after timeout (RFC6582 heuristics).
1395 * If Cumulative ack does not cover more than congestion threshold,
1396 * and:
1397 * 1) The following doesn't hold: The congestion window is greater
1398 * than SMSS bytes and the difference between highest_ack
1399 * and prev_highest_ack is at most 4*SMSS bytes
1400 * 2) Echoed timestamp in the last non-dup ack does not equal the
1401 * stored timestamp
1402 */
1403 if (seq_leq (tc->snd_una, tc->snd_congestion)
1404 && ((!(tc->cwnd > tc->snd_mss
1405 && tc->bytes_acked <= 4 * tc->snd_mss))
1406 || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
1407 {
1408 tc->rcv_dupacks = 0;
1409 return;
1410 }
1411 }
Florin Coras93992a92017-05-24 18:03:56 -07001412
Florin Coras93992a92017-05-24 18:03:56 -07001413 if (!tc->bytes_acked)
1414 return;
1415
1416partial_ack:
Florin Corasd2aab832018-05-22 11:39:59 -07001417 TCP_EVT_DBG (TCP_EVT_CC_PACK, tc);
1418
Florin Coras93992a92017-05-24 18:03:56 -07001419 /*
1420 * Legitimate ACK. 1) See if we can exit recovery
1421 */
Florin Coras93992a92017-05-24 18:03:56 -07001422
Florin Corasefefc6b2018-11-07 12:49:19 -08001423 /* Update the pacing rate. For the first partial ack we move from
1424 * the artificially constrained rate to the one after congestion */
1425 tcp_connection_tx_pacer_update (tc);
1426
Florin Coras93992a92017-05-24 18:03:56 -07001427 if (seq_geq (tc->snd_una, tc->snd_congestion))
1428 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001429 tcp_retransmit_timer_update (tc);
1430
Florin Coras93992a92017-05-24 18:03:56 -07001431 /* If spurious return, we've already updated everything */
1432 if (tcp_cc_recover (tc))
Florin Corasf03a59a2017-06-09 21:07:32 -07001433 {
1434 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1435 return;
1436 }
Florin Coras93992a92017-05-24 18:03:56 -07001437
Florin Coras93992a92017-05-24 18:03:56 -07001438 /* Treat as congestion avoidance ack */
Florin Coras52814732019-06-12 15:38:19 -07001439 tcp_cc_rcv_ack (tc, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001440 return;
1441 }
1442
1443 /*
1444 * Legitimate ACK. 2) If PARTIAL ACK try to retransmit
1445 */
Florin Coras93992a92017-05-24 18:03:56 -07001446
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001447 /* XXX limit this only to first partial ack? */
Florin Coras2e31cc32018-09-25 14:00:34 -07001448 tcp_retransmit_timer_update (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001449
Florin Coras93992a92017-05-24 18:03:56 -07001450 /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
Florin Corasd2aab832018-05-22 11:39:59 -07001451 * reset dupacks to 0. Also needed if in congestion recovery */
Florin Coras93992a92017-05-24 18:03:56 -07001452 tc->rcv_dupacks = 0;
1453
Florin Coras93992a92017-05-24 18:03:56 -07001454 /* Post RTO timeout don't try anything fancy */
1455 if (tcp_in_recovery (tc))
Florin Corasd2aab832018-05-22 11:39:59 -07001456 {
Florin Coras52814732019-06-12 15:38:19 -07001457 tcp_cc_rcv_ack (tc, rs);
Florin Coras3ec66b02018-08-23 16:27:05 -07001458 transport_add_tx_event (&tc->connection);
Florin Corasd2aab832018-05-22 11:39:59 -07001459 return;
1460 }
Florin Coras93992a92017-05-24 18:03:56 -07001461
1462 /* Remove retransmitted bytes that have been delivered */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001463 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras93992a92017-05-24 18:03:56 -07001464 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001465 ASSERT (tc->bytes_acked + tc->sack_sb.snd_una_adv
1466 >= tc->sack_sb.last_bytes_delivered
1467 || (tc->flags & TCP_CONN_FINSNT));
1468
Florin Coras93992a92017-05-24 18:03:56 -07001469 /* If we have sacks and we haven't gotten an ack beyond high_rxt,
1470 * remove sacked bytes delivered */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001471 if (seq_lt (tc->snd_una, tc->sack_sb.high_rxt))
1472 {
1473 rxt_delivered = tc->bytes_acked + tc->sack_sb.snd_una_adv
1474 - tc->sack_sb.last_bytes_delivered;
1475 ASSERT (tc->snd_rxt_bytes >= rxt_delivered);
1476 tc->snd_rxt_bytes -= rxt_delivered;
1477 }
1478 else
1479 {
1480 /* Apparently all retransmitted holes have been acked */
1481 tc->snd_rxt_bytes = 0;
Florin Coras36ee9f12018-11-02 12:52:10 -07001482 tc->sack_sb.high_rxt = tc->snd_una;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001483 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001484 }
1485 else
1486 {
Florin Coras36ee9f12018-11-02 12:52:10 -07001487 tcp_fastrecovery_first_on (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001488 if (tc->snd_rxt_bytes > tc->bytes_acked)
1489 tc->snd_rxt_bytes -= tc->bytes_acked;
1490 else
1491 tc->snd_rxt_bytes = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001492 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001493
Florin Coras52814732019-06-12 15:38:19 -07001494 tcp_cc_rcv_cong_ack (tc, TCP_CC_PARTIALACK, rs);
Dave Barach68b0fb02017-02-28 15:15:56 -05001495
Florin Coras93992a92017-05-24 18:03:56 -07001496 /*
1497 * Since this was a partial ack, try to retransmit some more data
1498 */
Florin Coras26dd6de2019-07-23 23:54:47 -07001499 tcp_program_fastretransmit (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001500}
1501
Florin Coras93992a92017-05-24 18:03:56 -07001502/**
1503 * Process incoming ACK
1504 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001505static int
Florin Coras9ece3c02018-11-05 11:06:53 -08001506tcp_rcv_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
Florin Coras7ac053b2018-11-05 15:57:21 -08001507 tcp_header_t * th, u32 * error)
Dave Barach68b0fb02017-02-28 15:15:56 -05001508{
Florin Coras93992a92017-05-24 18:03:56 -07001509 u32 prev_snd_wnd, prev_snd_una;
Florin Coras52814732019-06-12 15:38:19 -07001510 tcp_rate_sample_t rs = { 0 };
Florin Coras93992a92017-05-24 18:03:56 -07001511 u8 is_dack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001512
Florin Corasf03a59a2017-06-09 21:07:32 -07001513 TCP_EVT_DBG (TCP_EVT_CC_STAT, tc);
1514
Florin Coras6792ec02017-03-13 03:49:51 -07001515 /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
Florin Coras93992a92017-05-24 18:03:56 -07001516 if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001517 {
Florin Coras47596832019-03-12 18:58:54 -07001518 /* We've probably entered recovery and the peer still has some
1519 * of the data we've sent. Update snd_nxt and accept the ack */
Florin Coras282a3cb2019-04-02 21:43:38 -07001520 if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)
1521 && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
Florin Corasca1c8f32018-05-23 21:01:30 -07001522 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001523 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
Florin Corasca1c8f32018-05-23 21:01:30 -07001524 goto process_ack;
1525 }
1526
Florin Coras47596832019-03-12 18:58:54 -07001527 *error = TCP_ERROR_ACK_FUTURE;
1528 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 0,
Florin Coras6792ec02017-03-13 03:49:51 -07001529 vnet_buffer (b)->tcp.ack_number);
Florin Coras47596832019-03-12 18:58:54 -07001530 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001531 }
1532
Florin Coras6792ec02017-03-13 03:49:51 -07001533 /* If old ACK, probably it's an old dupack */
Florin Coras93992a92017-05-24 18:03:56 -07001534 if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001535 {
1536 *error = TCP_ERROR_ACK_OLD;
Florin Coras6792ec02017-03-13 03:49:51 -07001537 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 1,
1538 vnet_buffer (b)->tcp.ack_number);
1539 if (tcp_in_fastrecovery (tc) && tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
Florin Coras52814732019-06-12 15:38:19 -07001540 tcp_cc_handle_event (tc, 0, 1);
Florin Corasc28764f2017-04-26 00:08:42 -07001541 /* Don't drop yet */
1542 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001543 }
1544
Florin Coras47596832019-03-12 18:58:54 -07001545process_ack:
1546
Florin Coras93992a92017-05-24 18:03:56 -07001547 /*
1548 * Looks okay, process feedback
1549 */
Florin Coras93992a92017-05-24 18:03:56 -07001550 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001551 tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1552
Florin Coras93992a92017-05-24 18:03:56 -07001553 prev_snd_wnd = tc->snd_wnd;
1554 prev_snd_una = tc->snd_una;
1555 tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1556 vnet_buffer (b)->tcp.ack_number,
1557 clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1558 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
1559 tc->snd_una = vnet_buffer (b)->tcp.ack_number + tc->sack_sb.snd_una_adv;
1560 tcp_validate_txf_size (tc, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001561
Florin Coras93992a92017-05-24 18:03:56 -07001562 if (tc->bytes_acked)
Florin Coras9ece3c02018-11-05 11:06:53 -08001563 {
1564 tcp_program_dequeue (wrk, tc);
1565 tcp_update_rtt (tc, vnet_buffer (b)->tcp.ack_number);
1566 }
Florin Coras93992a92017-05-24 18:03:56 -07001567
Florin Coras52814732019-06-12 15:38:19 -07001568 if (tc->flags & TCP_CONN_RATE_SAMPLE)
1569 tcp_bt_sample_delivery_rate (tc, &rs);
1570
Florin Coras6534b7a2017-07-18 05:38:03 -04001571 TCP_EVT_DBG (TCP_EVT_ACK_RCVD, tc);
1572
Florin Coras93992a92017-05-24 18:03:56 -07001573 /*
1574 * Check if we have congestion event
1575 */
1576
1577 if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001578 {
Florin Coras52814732019-06-12 15:38:19 -07001579 tcp_cc_handle_event (tc, &rs, is_dack);
Florin Corasb2215d62017-08-01 16:56:58 -07001580 if (!tcp_in_cong_recovery (tc))
Florin Corasa9d5bea2018-12-17 08:24:19 -08001581 {
1582 *error = TCP_ERROR_ACK_OK;
1583 return 0;
1584 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001585 *error = TCP_ERROR_ACK_DUP;
Florin Corasca09d072018-10-01 18:31:02 -07001586 if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th))
1587 return 0;
1588 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001589 }
1590
Florin Coras6792ec02017-03-13 03:49:51 -07001591 /*
Florin Coras93992a92017-05-24 18:03:56 -07001592 * Update congestion control (slow start/congestion avoidance)
Florin Coras6792ec02017-03-13 03:49:51 -07001593 */
Florin Coras52814732019-06-12 15:38:19 -07001594 tcp_cc_update (tc, &rs);
Florin Coras00cd22d2018-04-18 13:20:18 -07001595 *error = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001596 return 0;
1597}
1598
Florin Corasb11175d2018-11-09 14:34:08 -08001599static void
1600tcp_program_disconnect (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1601{
1602 if (!tcp_disconnect_pending (tc))
1603 {
1604 vec_add1 (wrk->pending_disconnects, tc->c_c_index);
1605 tcp_disconnect_pending_on (tc);
1606 }
1607}
1608
1609static void
1610tcp_handle_disconnects (tcp_worker_ctx_t * wrk)
1611{
1612 u32 thread_index, *pending_disconnects;
1613 tcp_connection_t *tc;
1614 int i;
1615
1616 if (!vec_len (wrk->pending_disconnects))
1617 return;
1618
1619 thread_index = wrk->vm->thread_index;
1620 pending_disconnects = wrk->pending_disconnects;
1621 for (i = 0; i < vec_len (pending_disconnects); i++)
1622 {
1623 tc = tcp_connection_get (pending_disconnects[i], thread_index);
1624 tcp_disconnect_pending_off (tc);
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001625 session_transport_closing_notify (&tc->connection);
Florin Corasb11175d2018-11-09 14:34:08 -08001626 }
1627 _vec_len (wrk->pending_disconnects) = 0;
1628}
1629
1630static void
1631tcp_rcv_fin (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
1632 u32 * error)
1633{
Florin Corasf73d4c22019-06-28 09:18:48 -07001634 /* Reject out-of-order fins */
1635 if (vnet_buffer (b)->tcp.seq_end != tc->rcv_nxt)
1636 return;
1637
Florin Coras3c514d52018-12-22 11:39:33 -08001638 /* Account for the FIN and send ack */
1639 tc->rcv_nxt += 1;
Florin Coras26dd6de2019-07-23 23:54:47 -07001640 tcp_program_ack (tc);
Florin Corasb11175d2018-11-09 14:34:08 -08001641 /* Enter CLOSE-WAIT and notify session. To avoid lingering
1642 * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
Florin Coras3c514d52018-12-22 11:39:33 -08001643 tcp_connection_set_state (tc, TCP_STATE_CLOSE_WAIT);
Florin Corasb11175d2018-11-09 14:34:08 -08001644 tcp_program_disconnect (wrk, tc);
1645 tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
1646 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc);
1647 *error = TCP_ERROR_FIN_RCVD;
1648}
1649
Filip Tehlare275bed2019-03-06 00:06:56 -08001650#ifndef CLIB_MARCH_VARIANT
Florin Coras3eb50622017-07-13 01:24:57 -04001651static u8
1652tcp_sack_vector_is_sane (sack_block_t * sacks)
1653{
1654 int i;
1655 for (i = 1; i < vec_len (sacks); i++)
1656 {
1657 if (sacks[i - 1].end == sacks[i].start)
1658 return 0;
1659 }
1660 return 1;
1661}
1662
Dave Barach68b0fb02017-02-28 15:15:56 -05001663/**
1664 * Build SACK list as per RFC2018.
1665 *
1666 * Makes sure the first block contains the segment that generated the current
1667 * ACK and the following ones are the ones most recently reported in SACK
1668 * blocks.
1669 *
1670 * @param tc TCP connection for which the SACK list is updated
1671 * @param start Start sequence number of the newest SACK block
1672 * @param end End sequence of the newest SACK block
1673 */
Florin Coras45d34962017-04-25 00:05:27 -07001674void
Dave Barach68b0fb02017-02-28 15:15:56 -05001675tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1676{
Florin Corasb691f762019-02-22 09:07:20 -08001677 sack_block_t *new_list = tc->snd_sacks_fl, *block = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001678 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001679
1680 /* If the first segment is ooo add it to the list. Last write might've moved
1681 * rcv_nxt over the first segment. */
1682 if (seq_lt (tc->rcv_nxt, start))
1683 {
Florin Coras45d34962017-04-25 00:05:27 -07001684 vec_add2 (new_list, block, 1);
1685 block->start = start;
1686 block->end = end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001687 }
1688
1689 /* Find the blocks still worth keeping. */
1690 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1691 {
Florin Coras45d34962017-04-25 00:05:27 -07001692 /* Discard if rcv_nxt advanced beyond current block */
1693 if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001694 continue;
1695
Florin Coras45d34962017-04-25 00:05:27 -07001696 /* Merge or drop if segment overlapped by the new segment */
1697 if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1698 && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1699 {
1700 if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1701 new_list[0].start = tc->snd_sacks[i].start;
1702 if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1703 new_list[0].end = tc->snd_sacks[i].end;
1704 continue;
1705 }
1706
1707 /* Save to new SACK list if we have space. */
1708 if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
Florin Coras47596832019-03-12 18:58:54 -07001709 vec_add1 (new_list, tc->snd_sacks[i]);
Dave Barach68b0fb02017-02-28 15:15:56 -05001710 }
1711
Florin Coras45d34962017-04-25 00:05:27 -07001712 ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
Florin Coras6792ec02017-03-13 03:49:51 -07001713
Dave Barach68b0fb02017-02-28 15:15:56 -05001714 /* Replace old vector with new one */
Florin Corasb691f762019-02-22 09:07:20 -08001715 vec_reset_length (tc->snd_sacks);
1716 tc->snd_sacks_fl = tc->snd_sacks;
Dave Barach68b0fb02017-02-28 15:15:56 -05001717 tc->snd_sacks = new_list;
Florin Coras3eb50622017-07-13 01:24:57 -04001718
1719 /* Segments should not 'touch' */
1720 ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
Dave Barach68b0fb02017-02-28 15:15:56 -05001721}
1722
Florin Corasca1c8f32018-05-23 21:01:30 -07001723u32
1724tcp_sack_list_bytes (tcp_connection_t * tc)
1725{
1726 u32 bytes = 0, i;
1727 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1728 bytes += tc->snd_sacks[i].end - tc->snd_sacks[i].start;
1729 return bytes;
1730}
Filip Tehlare275bed2019-03-06 00:06:56 -08001731#endif /* CLIB_MARCH_VARIANT */
Florin Corasca1c8f32018-05-23 21:01:30 -07001732
Dave Barach68b0fb02017-02-28 15:15:56 -05001733/** Enqueue data for delivery to application */
Florin Coras0dbd5172018-06-25 16:19:34 -07001734static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001735tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1736 u16 data_len)
1737{
Florin Coras1f152cd2017-08-18 19:28:03 -07001738 int written, error = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001739
Dave Barach2c25a622017-06-26 11:35:07 -04001740 ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001741 ASSERT (data_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001742 written = session_enqueue_stream_connection (&tc->connection, b, 0,
1743 1 /* queue event */ , 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001744
Florin Coras6792ec02017-03-13 03:49:51 -07001745 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 0, data_len, written);
1746
Dave Barach68b0fb02017-02-28 15:15:56 -05001747 /* Update rcv_nxt */
1748 if (PREDICT_TRUE (written == data_len))
1749 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001750 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001751 }
1752 /* If more data written than expected, account for out-of-order bytes. */
1753 else if (written > data_len)
1754 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001755 tc->rcv_nxt += written;
Florin Corasca1c8f32018-05-23 21:01:30 -07001756 TCP_EVT_DBG (TCP_EVT_CC_INPUT, tc, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001757 }
1758 else if (written > 0)
1759 {
1760 /* We've written something but FIFO is probably full now */
1761 tc->rcv_nxt += written;
Florin Coras1f152cd2017-08-18 19:28:03 -07001762 error = TCP_ERROR_PARTIALLY_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001763 }
1764 else
1765 {
Dave Barach68b0fb02017-02-28 15:15:56 -05001766 return TCP_ERROR_FIFO_FULL;
1767 }
1768
Florin Coras6792ec02017-03-13 03:49:51 -07001769 /* Update SACK list if need be */
Florin Coras93992a92017-05-24 18:03:56 -07001770 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras6792ec02017-03-13 03:49:51 -07001771 {
1772 /* Remove SACK blocks that have been delivered */
1773 tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1774 }
1775
Florin Coras1f152cd2017-08-18 19:28:03 -07001776 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -05001777}
1778
1779/** Enqueue out-of-order data */
Florin Coras0dbd5172018-06-25 16:19:34 -07001780static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001781tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1782 u16 data_len)
1783{
Florin Coras288eaab2019-02-03 15:26:14 -08001784 session_t *s0;
Florin Coras3eb50622017-07-13 01:24:57 -04001785 int rv, offset;
Florin Coras6792ec02017-03-13 03:49:51 -07001786
Florin Corasf03a59a2017-06-09 21:07:32 -07001787 ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001788 ASSERT (data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001789
Florin Corasf03a59a2017-06-09 21:07:32 -07001790 /* Enqueue out-of-order data with relative offset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07001791 rv = session_enqueue_stream_connection (&tc->connection, b,
1792 vnet_buffer (b)->tcp.seq_number -
1793 tc->rcv_nxt, 0 /* queue event */ ,
1794 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001795
1796 /* Nothing written */
1797 if (rv)
1798 {
1799 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, 0);
1800 return TCP_ERROR_FIFO_FULL;
1801 }
1802
1803 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001804
1805 /* Update SACK list if in use */
Florin Coras93992a92017-05-24 18:03:56 -07001806 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001807 {
1808 ooo_segment_t *newest;
1809 u32 start, end;
1810
Florin Corascea194d2017-10-02 00:18:51 -07001811 s0 = session_get (tc->c_s_index, tc->c_thread_index);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001812
Dave Barach68b0fb02017-02-28 15:15:56 -05001813 /* Get the newest segment from the fifo */
Florin Coras288eaab2019-02-03 15:26:14 -08001814 newest = svm_fifo_newest_ooo_segment (s0->rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001815 if (newest)
1816 {
Sirshak Das28aa5392019-02-05 01:33:33 -06001817 offset = ooo_segment_offset_prod (s0->rx_fifo, newest);
Florin Coras3eb50622017-07-13 01:24:57 -04001818 ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1819 start = tc->rcv_nxt + offset;
Florin Coras288eaab2019-02-03 15:26:14 -08001820 end = start + ooo_segment_length (s0->rx_fifo, newest);
Florin Corasf03a59a2017-06-09 21:07:32 -07001821 tcp_update_sack_list (tc, start, end);
Florin Coras288eaab2019-02-03 15:26:14 -08001822 svm_fifo_newest_ooo_segment_reset (s0->rx_fifo);
Florin Corasca1c8f32018-05-23 21:01:30 -07001823 TCP_EVT_DBG (TCP_EVT_CC_SACKS, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001824 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001825 }
1826
Florin Coras00cd22d2018-04-18 13:20:18 -07001827 return TCP_ERROR_ENQUEUED_OOO;
Dave Barach68b0fb02017-02-28 15:15:56 -05001828}
1829
1830/**
Florin Coras6792ec02017-03-13 03:49:51 -07001831 * Check if ACK could be delayed. If ack can be delayed, it should return
1832 * true for a full frame. If we're always acking return 0.
Dave Barach68b0fb02017-02-28 15:15:56 -05001833 */
1834always_inline int
1835tcp_can_delack (tcp_connection_t * tc)
1836{
Florin Coras6792ec02017-03-13 03:49:51 -07001837 /* Send ack if ... */
1838 if (TCP_ALWAYS_ACK
Florin Coras74b74372019-03-28 16:31:52 -07001839 /* just sent a rcv wnd 0
1840 || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0 */
Florin Coras6792ec02017-03-13 03:49:51 -07001841 /* constrained to send ack */
1842 || (tc->flags & TCP_CONN_SNDACK) != 0
1843 /* we're almost out of tx wnd */
Florin Corasca1c8f32018-05-23 21:01:30 -07001844 || tcp_available_cc_snd_space (tc) < 4 * tc->snd_mss)
Florin Coras6792ec02017-03-13 03:49:51 -07001845 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001846
Florin Coras6792ec02017-03-13 03:49:51 -07001847 return 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001848}
1849
1850static int
Florin Corasb2215d62017-08-01 16:56:58 -07001851tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
1852{
Florin Coras1f152cd2017-08-18 19:28:03 -07001853 u32 discard, first = b->current_length;
Florin Corasb2215d62017-08-01 16:56:58 -07001854 vlib_main_t *vm = vlib_get_main ();
1855
Florin Coras1f152cd2017-08-18 19:28:03 -07001856 /* Handle multi-buffer segments */
Florin Corasb2215d62017-08-01 16:56:58 -07001857 if (n_bytes_to_drop > b->current_length)
1858 {
1859 if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1860 return -1;
1861 do
1862 {
1863 discard = clib_min (n_bytes_to_drop, b->current_length);
1864 vlib_buffer_advance (b, discard);
1865 b = vlib_get_buffer (vm, b->next_buffer);
1866 n_bytes_to_drop -= discard;
1867 }
1868 while (n_bytes_to_drop);
Florin Coras1f152cd2017-08-18 19:28:03 -07001869 if (n_bytes_to_drop > first)
1870 b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
Florin Corasb2215d62017-08-01 16:56:58 -07001871 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001872 else
1873 vlib_buffer_advance (b, n_bytes_to_drop);
1874 vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
Florin Corasb2215d62017-08-01 16:56:58 -07001875 return 0;
1876}
1877
Florin Coras00cd22d2018-04-18 13:20:18 -07001878/**
1879 * Receive buffer for connection and handle acks
1880 *
1881 * It handles both in order or out-of-order data.
1882 */
Florin Corasb2215d62017-08-01 16:56:58 -07001883static int
Florin Coras7ac053b2018-11-05 15:57:21 -08001884tcp_segment_rcv (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1885 vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001886{
Florin Coras00cd22d2018-04-18 13:20:18 -07001887 u32 error, n_bytes_to_drop, n_data_bytes;
Florin Coras6534b7a2017-07-18 05:38:03 -04001888
1889 vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1890 n_data_bytes = vnet_buffer (b)->tcp.data_len;
1891 ASSERT (n_data_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001892
1893 /* Handle out-of-order data */
1894 if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1895 {
Florin Coras6792ec02017-03-13 03:49:51 -07001896 /* Old sequence numbers allowed through because they overlapped
1897 * the rx window */
1898 if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001899 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001900 /* Completely in the past (possible retransmit). Ack
1901 * retransmissions since we may not have any data to send */
Florin Corasf03a59a2017-06-09 21:07:32 -07001902 if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
Florin Coras6534b7a2017-07-18 05:38:03 -04001903 {
Florin Coras26dd6de2019-07-23 23:54:47 -07001904 tcp_program_ack (tc);
Florin Coras00cd22d2018-04-18 13:20:18 -07001905 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras6534b7a2017-07-18 05:38:03 -04001906 goto done;
1907 }
Dave Barach259cdae2017-05-15 16:27:05 -04001908
Florin Coras00cd22d2018-04-18 13:20:18 -07001909 /* Chop off the bytes in the past and see if what is left
1910 * can be enqueued in order */
Florin Corasdb84e572017-05-09 18:54:52 -07001911 n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1912 n_data_bytes -= n_bytes_to_drop;
Dave Barach2c25a622017-06-26 11:35:07 -04001913 vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001914 if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
Florin Coras00cd22d2018-04-18 13:20:18 -07001915 {
1916 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras00cd22d2018-04-18 13:20:18 -07001917 goto done;
1918 }
Florin Corasdb84e572017-05-09 18:54:52 -07001919 goto in_order;
Dave Barach68b0fb02017-02-28 15:15:56 -05001920 }
1921
Florin Coras00cd22d2018-04-18 13:20:18 -07001922 /* RFC2581: Enqueue and send DUPACK for fast retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001923 error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
Florin Coras26dd6de2019-07-23 23:54:47 -07001924 tcp_program_dupack (tc);
Florin Corasca1c8f32018-05-23 21:01:30 -07001925 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
Dave Barach68b0fb02017-02-28 15:15:56 -05001926 goto done;
1927 }
1928
Florin Corasdb84e572017-05-09 18:54:52 -07001929in_order:
1930
Dave Barach68b0fb02017-02-28 15:15:56 -05001931 /* In order data, enqueue. Fifo figures out by itself if any out-of-order
1932 * segments can be enqueued after fifo tail offset changes. */
1933 error = tcp_session_enqueue_data (tc, b, n_data_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001934 if (tcp_can_delack (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001935 {
Florin Coras6792ec02017-03-13 03:49:51 -07001936 if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
1937 tcp_timer_set (tc, TCP_TIMER_DELACK, TCP_DELACK_TIME);
Florin Coras3e350af2017-03-30 02:54:28 -07001938 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001939 }
1940
Florin Coras26dd6de2019-07-23 23:54:47 -07001941 tcp_program_ack (tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001942
Dave Barach68b0fb02017-02-28 15:15:56 -05001943done:
1944 return error;
1945}
1946
Clement Durand6cf260c2017-04-13 13:27:04 +02001947typedef struct
1948{
1949 tcp_header_t tcp_header;
1950 tcp_connection_t tcp_connection;
1951} tcp_rx_trace_t;
1952
Florin Coras0dbd5172018-06-25 16:19:34 -07001953static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02001954format_tcp_rx_trace (u8 * s, va_list * args)
1955{
1956 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1957 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1958 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +02001959 u32 indent = format_get_indent (s);
Clement Durand6cf260c2017-04-13 13:27:04 +02001960
1961 s = format (s, "%U\n%U%U",
1962 format_tcp_header, &t->tcp_header, 128,
1963 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -07001964 format_tcp_connection, &t->tcp_connection, 1);
Clement Durand6cf260c2017-04-13 13:27:04 +02001965
1966 return s;
1967}
1968
Florin Coras0dbd5172018-06-25 16:19:34 -07001969static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02001970format_tcp_rx_trace_short (u8 * s, va_list * args)
1971{
1972 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1973 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1974 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
1975
1976 s = format (s, "%d -> %d (%U)",
Florin Coras4df38712018-06-20 12:44:16 -07001977 clib_net_to_host_u16 (t->tcp_header.dst_port),
1978 clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state,
Florin Corasbb292f42017-05-19 09:49:19 -07001979 t->tcp_connection.state);
Clement Durand6cf260c2017-04-13 13:27:04 +02001980
1981 return s;
1982}
1983
Florin Coras4df38712018-06-20 12:44:16 -07001984static void
Florin Coras82b13a82017-04-25 11:58:06 -07001985tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
1986 tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
1987{
1988 if (tc0)
1989 {
Dave Barach178cf492018-11-13 16:34:13 -05001990 clib_memcpy_fast (&t0->tcp_connection, tc0,
1991 sizeof (t0->tcp_connection));
Florin Coras82b13a82017-04-25 11:58:06 -07001992 }
1993 else
1994 {
1995 th0 = tcp_buffer_hdr (b0);
1996 }
Dave Barach178cf492018-11-13 16:34:13 -05001997 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
Florin Coras82b13a82017-04-25 11:58:06 -07001998}
1999
Florin Coras4df38712018-06-20 12:44:16 -07002000static void
2001tcp_established_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2002 vlib_frame_t * frame, u8 is_ip4)
2003{
2004 u32 *from, n_left;
2005
2006 n_left = frame->n_vectors;
2007 from = vlib_frame_vector_args (frame);
2008
2009 while (n_left >= 1)
2010 {
2011 tcp_connection_t *tc0;
2012 tcp_rx_trace_t *t0;
2013 tcp_header_t *th0;
2014 vlib_buffer_t *b0;
2015 u32 bi0;
2016
2017 bi0 = from[0];
2018 b0 = vlib_get_buffer (vm, bi0);
2019
2020 if (b0->flags & VLIB_BUFFER_IS_TRACED)
2021 {
2022 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2023 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2024 vm->thread_index);
2025 th0 = tcp_buffer_hdr (b0);
2026 tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
2027 }
2028
2029 from += 1;
2030 n_left -= 1;
2031 }
2032}
2033
Florin Coras6792ec02017-03-13 03:49:51 -07002034always_inline void
Florin Coras00cd22d2018-04-18 13:20:18 -07002035tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
2036 u8 is_ip4, u32 evt, u32 val)
Dave Barach68b0fb02017-02-28 15:15:56 -05002037{
Florin Coras6792ec02017-03-13 03:49:51 -07002038 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -07002039 vlib_node_increment_counter (vm, tcp4_node, evt, val);
Florin Coras6792ec02017-03-13 03:49:51 -07002040 else
Florin Coras3cbc04b2017-10-02 00:18:51 -07002041 vlib_node_increment_counter (vm, tcp6_node, evt, val);
Dave Barach68b0fb02017-02-28 15:15:56 -05002042}
2043
Florin Coras00cd22d2018-04-18 13:20:18 -07002044#define tcp_maybe_inc_counter(node_id, err, count) \
2045{ \
2046 if (next0 != tcp_next_drop (is_ip4)) \
2047 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2048 tcp6_##node_id##_node.index, is_ip4, err, \
2049 1); \
2050}
2051#define tcp_inc_counter(node_id, err, count) \
2052 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2053 tcp6_##node_id##_node.index, is_ip4, \
2054 err, count)
2055#define tcp_maybe_inc_err_counter(cnts, err) \
2056{ \
2057 cnts[err] += (next0 != tcp_next_drop (is_ip4)); \
2058}
2059#define tcp_inc_err_counter(cnts, err, val) \
2060{ \
2061 cnts[err] += val; \
2062}
2063#define tcp_store_err_counters(node_id, cnts) \
2064{ \
2065 int i; \
2066 for (i = 0; i < TCP_N_ERROR; i++) \
2067 if (cnts[i]) \
2068 tcp_inc_counter(node_id, i, cnts[i]); \
2069}
2070
2071
Dave Barach68b0fb02017-02-28 15:15:56 -05002072always_inline uword
2073tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07002074 vlib_frame_t * frame, int is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05002075{
Florin Coras4df38712018-06-20 12:44:16 -07002076 u32 thread_index = vm->thread_index, errors = 0;
Florin Coras9ece3c02018-11-05 11:06:53 -08002077 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08002078 u32 n_left_from, *from, *first_buffer;
Florin Coras00cd22d2018-04-18 13:20:18 -07002079 u16 err_counters[TCP_N_ERROR] = { 0 };
Dave Barach68b0fb02017-02-28 15:15:56 -05002080
Florin Coras4df38712018-06-20 12:44:16 -07002081 if (node->flags & VLIB_NODE_FLAG_TRACE)
2082 tcp_established_trace_frame (vm, node, frame, is_ip4);
2083
Florin Coras7ac053b2018-11-05 15:57:21 -08002084 first_buffer = from = vlib_frame_vector_args (frame);
Florin Coras4df38712018-06-20 12:44:16 -07002085 n_left_from = frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002086
2087 while (n_left_from > 0)
2088 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002089 u32 bi0, error0 = TCP_ERROR_ACK_OK;
2090 vlib_buffer_t *b0;
Florin Coras3c514d52018-12-22 11:39:33 -08002091 tcp_header_t *th0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002092 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002093
Florin Coras7ac053b2018-11-05 15:57:21 -08002094 if (n_left_from > 1)
Dave Barach68b0fb02017-02-28 15:15:56 -05002095 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002096 vlib_buffer_t *pb;
2097 pb = vlib_get_buffer (vm, from[1]);
2098 vlib_prefetch_buffer_header (pb, LOAD);
2099 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
Dave Barach68b0fb02017-02-28 15:15:56 -05002100 }
2101
Florin Coras7ac053b2018-11-05 15:57:21 -08002102 bi0 = from[0];
2103 from += 1;
2104 n_left_from -= 1;
2105
2106 b0 = vlib_get_buffer (vm, bi0);
2107 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2108 thread_index);
2109
2110 if (PREDICT_FALSE (tc0 == 0))
2111 {
2112 error0 = TCP_ERROR_INVALID_CONNECTION;
2113 goto done;
2114 }
2115
2116 th0 = tcp_buffer_hdr (b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002117
2118 /* TODO header prediction fast path */
2119
2120 /* 1-4: check SEQ, RST, SYN */
2121 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, th0, &error0)))
2122 {
2123 TCP_EVT_DBG (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp);
2124 goto done;
2125 }
2126
2127 /* 5: check the ACK field */
2128 if (PREDICT_FALSE (tcp_rcv_ack (wrk, tc0, b0, th0, &error0)))
2129 goto done;
2130
2131 /* 6: check the URG bit TODO */
2132
2133 /* 7: process the segment text */
2134 if (vnet_buffer (b0)->tcp.data_len)
2135 error0 = tcp_segment_rcv (wrk, tc0, b0);
2136
2137 /* 8: check the FIN bit */
Florin Coras3c514d52018-12-22 11:39:33 -08002138 if (PREDICT_FALSE (tcp_is_fin (th0)))
Florin Corasb11175d2018-11-09 14:34:08 -08002139 tcp_rcv_fin (wrk, tc0, b0, &error0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002140
2141 done:
2142 tcp_inc_err_counter (err_counters, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002143 }
2144
Florin Coras31c99552019-03-01 13:00:58 -08002145 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2146 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002147 err_counters[TCP_ERROR_MSG_QUEUE_FULL] = errors;
Florin Coras00cd22d2018-04-18 13:20:18 -07002148 tcp_store_err_counters (established, err_counters);
Florin Coras9ece3c02018-11-05 11:06:53 -08002149 tcp_handle_postponed_dequeues (wrk);
Florin Corasb11175d2018-11-09 14:34:08 -08002150 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08002151 vlib_buffer_free (vm, first_buffer, frame->n_vectors);
Florin Coras4df38712018-06-20 12:44:16 -07002152
2153 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002154}
2155
Filip Tehlare275bed2019-03-06 00:06:56 -08002156VLIB_NODE_FN (tcp4_established_node) (vlib_main_t * vm,
2157 vlib_node_runtime_t * node,
2158 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002159{
2160 return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2161}
2162
Filip Tehlare275bed2019-03-06 00:06:56 -08002163VLIB_NODE_FN (tcp6_established_node) (vlib_main_t * vm,
2164 vlib_node_runtime_t * node,
2165 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002166{
2167 return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2168}
2169
2170/* *INDENT-OFF* */
2171VLIB_REGISTER_NODE (tcp4_established_node) =
2172{
Dave Barach68b0fb02017-02-28 15:15:56 -05002173 .name = "tcp4-established",
2174 /* Takes a vector of packets. */
2175 .vector_size = sizeof (u32),
Florin Corase69f4952017-03-07 10:06:24 -08002176 .n_errors = TCP_N_ERROR,
2177 .error_strings = tcp_error_strings,
Dave Barach68b0fb02017-02-28 15:15:56 -05002178 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2179 .next_nodes =
2180 {
2181#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2182 foreach_tcp_state_next
2183#undef _
2184 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002185 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002186};
2187/* *INDENT-ON* */
2188
Dave Barach68b0fb02017-02-28 15:15:56 -05002189/* *INDENT-OFF* */
2190VLIB_REGISTER_NODE (tcp6_established_node) =
2191{
Dave Barach68b0fb02017-02-28 15:15:56 -05002192 .name = "tcp6-established",
2193 /* Takes a vector of packets. */
2194 .vector_size = sizeof (u32),
2195 .n_errors = TCP_N_ERROR,
2196 .error_strings = tcp_error_strings,
2197 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2198 .next_nodes =
2199 {
2200#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2201 foreach_tcp_state_next
2202#undef _
2203 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002204 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002205};
2206/* *INDENT-ON* */
2207
2208
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002209static u8
2210tcp_lookup_is_valid (tcp_connection_t * tc, tcp_header_t * hdr)
2211{
Florin Corascea194d2017-10-02 00:18:51 -07002212 transport_connection_t *tmp = 0;
2213 u64 handle;
2214
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002215 if (!tc)
2216 return 1;
2217
Florin Coras70131132017-11-27 02:43:30 -08002218 /* Proxy case */
2219 if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
2220 return 1;
2221
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002222 u8 is_valid = (tc->c_lcl_port == hdr->dst_port
2223 && (tc->state == TCP_STATE_LISTEN
2224 || tc->c_rmt_port == hdr->src_port));
2225
2226 if (!is_valid)
2227 {
Florin Corascea194d2017-10-02 00:18:51 -07002228 handle = session_lookup_half_open_handle (&tc->connection);
2229 tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
Florin Coras3cbc04b2017-10-02 00:18:51 -07002230 tc->c_proto, tc->c_is_ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002231
2232 if (tmp)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002233 {
2234 if (tmp->lcl_port == hdr->dst_port
2235 && tmp->rmt_port == hdr->src_port)
2236 {
Florin Corascea194d2017-10-02 00:18:51 -07002237 TCP_DBG ("half-open is valid!");
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002238 }
2239 }
2240 }
2241 return is_valid;
2242}
2243
2244/**
2245 * Lookup transport connection
2246 */
2247static tcp_connection_t *
Florin Corascea194d2017-10-02 00:18:51 -07002248tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
2249 u8 is_ip4)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002250{
2251 tcp_header_t *tcp;
2252 transport_connection_t *tconn;
2253 tcp_connection_t *tc;
Florin Corasdff48db2017-11-19 18:06:58 -08002254 u8 is_filtered = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002255 if (is_ip4)
2256 {
2257 ip4_header_t *ip4;
2258 ip4 = vlib_buffer_get_current (b);
2259 tcp = ip4_next_header (ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002260 tconn = session_lookup_connection_wt4 (fib_index,
2261 &ip4->dst_address,
2262 &ip4->src_address,
2263 tcp->dst_port,
2264 tcp->src_port,
2265 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002266 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002267 tc = tcp_get_connection_from_transport (tconn);
2268 ASSERT (tcp_lookup_is_valid (tc, tcp));
2269 }
2270 else
2271 {
2272 ip6_header_t *ip6;
2273 ip6 = vlib_buffer_get_current (b);
2274 tcp = ip6_next_header (ip6);
Florin Corascea194d2017-10-02 00:18:51 -07002275 tconn = session_lookup_connection_wt6 (fib_index,
2276 &ip6->dst_address,
2277 &ip6->src_address,
2278 tcp->dst_port,
2279 tcp->src_port,
2280 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002281 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002282 tc = tcp_get_connection_from_transport (tconn);
2283 ASSERT (tcp_lookup_is_valid (tc, tcp));
2284 }
2285 return tc;
2286}
2287
Dave Barach68b0fb02017-02-28 15:15:56 -05002288always_inline uword
2289tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2290 vlib_frame_t * from_frame, int is_ip4)
2291{
2292 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras7ac053b2018-11-05 15:57:21 -08002293 u32 n_left_from, *from, *first_buffer, errors = 0;
2294 u32 my_thread_index = vm->thread_index;
2295 tcp_worker_ctx_t *wrk = tcp_get_worker (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05002296
Florin Coras7ac053b2018-11-05 15:57:21 -08002297 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002298 n_left_from = from_frame->n_vectors;
2299
Dave Barach68b0fb02017-02-28 15:15:56 -05002300 while (n_left_from > 0)
2301 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002302 u32 bi0, ack0, seq0, error0 = TCP_ERROR_NONE;
2303 tcp_connection_t *tc0, *new_tc0;
2304 tcp_header_t *tcp0 = 0;
2305 tcp_rx_trace_t *t0;
2306 vlib_buffer_t *b0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002307
Florin Coras7ac053b2018-11-05 15:57:21 -08002308 bi0 = from[0];
2309 from += 1;
2310 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002311
Florin Coras7ac053b2018-11-05 15:57:21 -08002312 b0 = vlib_get_buffer (vm, bi0);
2313 tc0 =
2314 tcp_half_open_connection_get (vnet_buffer (b0)->tcp.connection_index);
2315 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002316 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002317 error0 = TCP_ERROR_INVALID_CONNECTION;
2318 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002319 }
2320
Florin Coras7ac053b2018-11-05 15:57:21 -08002321 /* Half-open completed recently but the connection was't removed
2322 * yet by the owning thread */
2323 if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2324 {
2325 /* Make sure the connection actually exists */
2326 ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2327 my_thread_index, is_ip4));
Florin Coras222e1f412019-02-16 20:47:32 -08002328 error0 = TCP_ERROR_SPURIOUS_SYN_ACK;
Florin Coras7ac053b2018-11-05 15:57:21 -08002329 goto drop;
2330 }
2331
2332 ack0 = vnet_buffer (b0)->tcp.ack_number;
2333 seq0 = vnet_buffer (b0)->tcp.seq_number;
2334 tcp0 = tcp_buffer_hdr (b0);
2335
2336 /* Crude check to see if the connection handle does not match
2337 * the packet. Probably connection just switched to established */
2338 if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2339 || tcp0->src_port != tc0->c_rmt_port))
2340 {
2341 error0 = TCP_ERROR_INVALID_CONNECTION;
2342 goto drop;
2343 }
2344
2345 if (PREDICT_FALSE (!tcp_ack (tcp0) && !tcp_rst (tcp0)
2346 && !tcp_syn (tcp0)))
2347 {
2348 error0 = TCP_ERROR_SEGMENT_INVALID;
2349 goto drop;
2350 }
2351
Florin Coras3c514d52018-12-22 11:39:33 -08002352 /* SYNs consume sequence numbers */
2353 vnet_buffer (b0)->tcp.seq_end += tcp_is_syn (tcp0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002354
2355 /*
2356 * 1. check the ACK bit
2357 */
2358
2359 /*
2360 * If the ACK bit is set
2361 * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2362 * the RST bit is set, if so drop the segment and return)
2363 * <SEQ=SEG.ACK><CTL=RST>
2364 * and discard the segment. Return.
2365 * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2366 */
2367 if (tcp_ack (tcp0))
2368 {
2369 if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
2370 {
2371 if (!tcp_rst (tcp0))
Florin Corasd4c49be2019-02-07 00:15:53 -08002372 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002373 error0 = TCP_ERROR_RCV_WND;
2374 goto drop;
2375 }
2376
2377 /* Make sure ACK is valid */
2378 if (seq_gt (tc0->snd_una, ack0))
2379 {
2380 error0 = TCP_ERROR_ACK_INVALID;
2381 goto drop;
2382 }
2383 }
2384
2385 /*
2386 * 2. check the RST bit
2387 */
2388
2389 if (tcp_rst (tcp0))
2390 {
2391 /* If ACK is acceptable, signal client that peer is not
2392 * willing to accept connection and drop connection*/
2393 if (tcp_ack (tcp0))
2394 tcp_connection_reset (tc0);
2395 error0 = TCP_ERROR_RST_RCVD;
2396 goto drop;
2397 }
2398
2399 /*
2400 * 3. check the security and precedence (skipped)
2401 */
2402
2403 /*
2404 * 4. check the SYN bit
2405 */
2406
2407 /* No SYN flag. Drop. */
2408 if (!tcp_syn (tcp0))
2409 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002410 error0 = TCP_ERROR_SEGMENT_INVALID;
2411 goto drop;
2412 }
2413
2414 /* Parse options */
Florin Coras80231112018-12-05 15:59:31 -08002415 if (tcp_options_parse (tcp0, &tc0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08002416 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002417 error0 = TCP_ERROR_OPTIONS;
2418 goto drop;
2419 }
2420
2421 /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2422 * current thread pool. */
2423 pool_get (tm->connections[my_thread_index], new_tc0);
Dave Barach178cf492018-11-13 16:34:13 -05002424 clib_memcpy_fast (new_tc0, tc0, sizeof (*new_tc0));
Florin Coras7ac053b2018-11-05 15:57:21 -08002425 new_tc0->c_c_index = new_tc0 - tm->connections[my_thread_index];
2426 new_tc0->c_thread_index = my_thread_index;
2427 new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2428 new_tc0->irs = seq0;
Florin Coras85a3ddd2018-12-24 16:54:34 -08002429 new_tc0->timers[TCP_TIMER_ESTABLISH_AO] = TCP_TIMER_HANDLE_INVALID;
Florin Coras7ac053b2018-11-05 15:57:21 -08002430 new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
2431 new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
2432
2433 /* If this is not the owning thread, wait for syn retransmit to
2434 * expire and cleanup then */
2435 if (tcp_half_open_connection_cleanup (tc0))
2436 tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
2437
2438 if (tcp_opts_tstamp (&new_tc0->rcv_opts))
2439 {
2440 new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
2441 new_tc0->tsval_recent_age = tcp_time_now ();
2442 }
2443
2444 if (tcp_opts_wscale (&new_tc0->rcv_opts))
2445 new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
Florin Corase80b5912018-12-12 19:25:43 -08002446 else
2447 new_tc0->rcv_wscale = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002448
2449 new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2450 << new_tc0->snd_wscale;
2451 new_tc0->snd_wl1 = seq0;
2452 new_tc0->snd_wl2 = ack0;
2453
2454 tcp_connection_init_vars (new_tc0);
2455
2456 /* SYN-ACK: See if we can switch to ESTABLISHED state */
2457 if (PREDICT_TRUE (tcp_ack (tcp0)))
2458 {
2459 /* Our SYN is ACKed: we have iss < ack = snd_una */
2460
2461 /* TODO Dequeue acknowledged segments if we support Fast Open */
2462 new_tc0->snd_una = ack0;
2463 new_tc0->state = TCP_STATE_ESTABLISHED;
2464
2465 /* Make sure las is initialized for the wnd computation */
2466 new_tc0->rcv_las = new_tc0->rcv_nxt;
2467
2468 /* Notify app that we have connection. If session layer can't
2469 * allocate session send reset */
2470 if (session_stream_connect_notify (&new_tc0->connection, 0))
2471 {
Florin Corasd4c49be2019-02-07 00:15:53 -08002472 tcp_send_reset_w_pkt (new_tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002473 tcp_connection_cleanup (new_tc0);
Florin Coras718a0552019-06-07 07:03:01 -07002474 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
Florin Coras7ac053b2018-11-05 15:57:21 -08002475 goto drop;
2476 }
2477
Florin Coras2e31cc32018-09-25 14:00:34 -07002478 new_tc0->tx_fifo_size =
2479 transport_tx_fifo_size (&new_tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002480 /* Update rtt with the syn-ack sample */
Florin Corasefefc6b2018-11-07 12:49:19 -08002481 tcp_estimate_initial_rtt (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002482 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, new_tc0);
2483 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2484 }
2485 /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2486 else
2487 {
2488 new_tc0->state = TCP_STATE_SYN_RCVD;
2489
2490 /* Notify app that we have connection */
2491 if (session_stream_connect_notify (&new_tc0->connection, 0))
2492 {
2493 tcp_connection_cleanup (new_tc0);
Florin Corasd4c49be2019-02-07 00:15:53 -08002494 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002495 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc0);
Florin Coras718a0552019-06-07 07:03:01 -07002496 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
Florin Coras7ac053b2018-11-05 15:57:21 -08002497 goto drop;
2498 }
2499
Florin Coras2e31cc32018-09-25 14:00:34 -07002500 new_tc0->tx_fifo_size =
2501 transport_tx_fifo_size (&new_tc0->connection);
2502 new_tc0->rtt_ts = 0;
2503 tcp_init_snd_vars (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002504 tcp_send_synack (new_tc0);
2505 error0 = TCP_ERROR_SYNS_RCVD;
2506 goto drop;
2507 }
2508
2509 /* Read data, if any */
2510 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
2511 {
2512 clib_warning ("rcvd data in syn-sent");
2513 error0 = tcp_segment_rcv (wrk, new_tc0, b0);
2514 if (error0 == TCP_ERROR_ACK_OK)
2515 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2516 }
2517 else
2518 {
Florin Coras26dd6de2019-07-23 23:54:47 -07002519 tcp_program_ack (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002520 }
2521
2522 drop:
2523
2524 tcp_inc_counter (syn_sent, error0, 1);
2525 if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
2526 {
2527 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05002528 clib_memcpy_fast (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2529 clib_memcpy_fast (&t0->tcp_connection, tc0,
2530 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08002531 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002532 }
2533
Florin Coras31c99552019-03-01 13:00:58 -08002534 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2535 my_thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002536 tcp_inc_counter (syn_sent, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras7ac053b2018-11-05 15:57:21 -08002537 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
2538
Dave Barach68b0fb02017-02-28 15:15:56 -05002539 return from_frame->n_vectors;
2540}
2541
Filip Tehlare275bed2019-03-06 00:06:56 -08002542VLIB_NODE_FN (tcp4_syn_sent_node) (vlib_main_t * vm,
2543 vlib_node_runtime_t * node,
2544 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002545{
2546 return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2547}
2548
Filip Tehlare275bed2019-03-06 00:06:56 -08002549VLIB_NODE_FN (tcp6_syn_sent_node) (vlib_main_t * vm,
2550 vlib_node_runtime_t * node,
2551 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002552{
2553 return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2554}
2555
2556/* *INDENT-OFF* */
2557VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2558{
Dave Barach68b0fb02017-02-28 15:15:56 -05002559 .name = "tcp4-syn-sent",
2560 /* Takes a vector of packets. */
2561 .vector_size = sizeof (u32),
2562 .n_errors = TCP_N_ERROR,
2563 .error_strings = tcp_error_strings,
2564 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2565 .next_nodes =
2566 {
2567#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2568 foreach_tcp_state_next
2569#undef _
2570 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002571 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002572};
2573/* *INDENT-ON* */
2574
Dave Barach68b0fb02017-02-28 15:15:56 -05002575/* *INDENT-OFF* */
2576VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2577{
Dave Barach68b0fb02017-02-28 15:15:56 -05002578 .name = "tcp6-syn-sent",
2579 /* Takes a vector of packets. */
2580 .vector_size = sizeof (u32),
2581 .n_errors = TCP_N_ERROR,
2582 .error_strings = tcp_error_strings,
2583 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2584 .next_nodes =
2585 {
2586#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2587 foreach_tcp_state_next
2588#undef _
Clement Durand6cf260c2017-04-13 13:27:04 +02002589 },
2590 .format_trace = format_tcp_rx_trace_short,
2591};
Dave Barach68b0fb02017-02-28 15:15:56 -05002592/* *INDENT-ON* */
2593
Dave Barach68b0fb02017-02-28 15:15:56 -05002594/**
Florin Corasd79b41e2017-03-04 05:37:52 -08002595 * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
Dave Barach68b0fb02017-02-28 15:15:56 -05002596 * as per RFC793 p. 64
2597 */
2598always_inline uword
2599tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2600 vlib_frame_t * from_frame, int is_ip4)
2601{
Florin Coras7ac053b2018-11-05 15:57:21 -08002602 u32 thread_index = vm->thread_index, errors = 0, *first_buffer;
2603 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras78cc4b02018-12-20 18:24:49 -08002604 u32 n_left_from, *from, max_dequeue;
Dave Barach68b0fb02017-02-28 15:15:56 -05002605
Florin Coras7ac053b2018-11-05 15:57:21 -08002606 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002607 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002608
2609 while (n_left_from > 0)
2610 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002611 u32 bi0, error0 = TCP_ERROR_NONE;
2612 tcp_header_t *tcp0 = 0;
2613 tcp_connection_t *tc0;
2614 vlib_buffer_t *b0;
2615 u8 is_fin0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002616
Florin Coras7ac053b2018-11-05 15:57:21 -08002617 bi0 = from[0];
2618 from += 1;
2619 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002620
Florin Coras7ac053b2018-11-05 15:57:21 -08002621 b0 = vlib_get_buffer (vm, bi0);
2622 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2623 thread_index);
2624 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002625 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002626 error0 = TCP_ERROR_INVALID_CONNECTION;
2627 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002628 }
2629
Florin Coras7ac053b2018-11-05 15:57:21 -08002630 tcp0 = tcp_buffer_hdr (b0);
2631 is_fin0 = tcp_is_fin (tcp0);
2632
Florin Coras7ac053b2018-11-05 15:57:21 -08002633 if (CLIB_DEBUG)
2634 {
2635 tcp_connection_t *tmp;
2636 tmp = tcp_lookup_connection (tc0->c_fib_index, b0, thread_index,
2637 is_ip4);
2638 if (tmp->state != tc0->state)
2639 {
Florin Corasb0f662f2018-12-27 14:51:46 -08002640 if (tc0->state != TCP_STATE_CLOSED)
2641 clib_warning ("state changed");
Florin Coras7ac053b2018-11-05 15:57:21 -08002642 goto drop;
2643 }
2644 }
2645
2646 /*
2647 * Special treatment for CLOSED
2648 */
2649 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
2650 {
2651 error0 = TCP_ERROR_CONNECTION_CLOSED;
2652 goto drop;
2653 }
2654
2655 /*
2656 * For all other states (except LISTEN)
2657 */
2658
2659 /* 1-4: check SEQ, RST, SYN */
2660 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, tcp0, &error0)))
2661 goto drop;
2662
2663 /* 5: check the ACK field */
2664 switch (tc0->state)
2665 {
2666 case TCP_STATE_SYN_RCVD:
Florin Corasf65074e2019-03-31 17:17:11 -07002667
2668 /* Make sure the segment is exactly right */
2669 if (tc0->rcv_nxt != vnet_buffer (b0)->tcp.seq_number || is_fin0)
2670 {
2671 tcp_connection_reset (tc0);
2672 error0 = TCP_ERROR_SEGMENT_INVALID;
2673 goto drop;
2674 }
2675
Florin Coras7ac053b2018-11-05 15:57:21 -08002676 /*
2677 * If the segment acknowledgment is not acceptable, form a
2678 * reset segment,
2679 * <SEQ=SEG.ACK><CTL=RST>
2680 * and send it.
2681 */
Florin Corasf65074e2019-03-31 17:17:11 -07002682 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08002683 {
Florin Corase78ac9d2018-12-16 21:33:00 -08002684 tcp_connection_reset (tc0);
Florin Coras4850e3e2018-12-12 14:34:38 -08002685 goto drop;
2686 }
2687
Florin Coras7ac053b2018-11-05 15:57:21 -08002688 /* Update rtt and rto */
Florin Corasefefc6b2018-11-07 12:49:19 -08002689 tcp_estimate_initial_rtt (tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002690
2691 /* Switch state to ESTABLISHED */
2692 tc0->state = TCP_STATE_ESTABLISHED;
2693 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
2694
2695 /* Initialize session variables */
2696 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
2697 tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2698 << tc0->rcv_opts.wscale;
2699 tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2700 tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
2701
2702 /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
2703 tcp_retransmit_timer_reset (tc0);
2704 tcp_timer_reset (tc0, TCP_TIMER_ESTABLISH);
Florin Corasa27a46e2019-02-18 13:02:28 -08002705 if (session_stream_accept_notify (&tc0->connection))
Florin Corasa9d5bea2018-12-17 08:24:19 -08002706 {
2707 error0 = TCP_ERROR_MSG_QUEUE_FULL;
2708 tcp_connection_reset (tc0);
2709 goto drop;
2710 }
Florin Coras7ac053b2018-11-05 15:57:21 -08002711 error0 = TCP_ERROR_ACK_OK;
2712 break;
2713 case TCP_STATE_ESTABLISHED:
2714 /* We can get packets in established state here because they
2715 * were enqueued before state change */
2716 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2717 goto drop;
2718
2719 break;
2720 case TCP_STATE_FIN_WAIT_1:
2721 /* In addition to the processing for the ESTABLISHED state, if
2722 * our FIN is now acknowledged then enter FIN-WAIT-2 and
2723 * continue processing in that state. */
2724 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2725 goto drop;
2726
2727 /* Still have to send the FIN */
2728 if (tc0->flags & TCP_CONN_FINPNDG)
2729 {
2730 /* TX fifo finally drained */
Florin Coras31c99552019-03-01 13:00:58 -08002731 max_dequeue = transport_max_tx_dequeue (&tc0->connection);
Florin Coras78cc4b02018-12-20 18:24:49 -08002732 if (max_dequeue <= tc0->burst_acked)
Florin Coras7ac053b2018-11-05 15:57:21 -08002733 tcp_send_fin (tc0);
Florin Coras070fd4b2019-04-02 19:03:23 -07002734 /* If a fin was received and data was acked extend wait */
2735 else if ((tc0->flags & TCP_CONN_FINRCVD) && tc0->bytes_acked)
2736 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
2737 TCP_CLOSEWAIT_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002738 }
2739 /* If FIN is ACKed */
Florin Coras47596832019-03-12 18:58:54 -07002740 else if (tc0->snd_una == tc0->snd_nxt)
Florin Coras7ac053b2018-11-05 15:57:21 -08002741 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002742 /* Stop all retransmit timers because we have nothing more
Florin Corasf65074e2019-03-31 17:17:11 -07002743 * to send. */
Florin Coras7ac053b2018-11-05 15:57:21 -08002744 tcp_connection_timers_reset (tc0);
Florin Corasf65074e2019-03-31 17:17:11 -07002745
2746 /* We already have a FIN but didn't transition to CLOSING
2747 * because of outstanding tx data. Close the connection. */
2748 if (tc0->flags & TCP_CONN_FINRCVD)
2749 {
2750 tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
2751 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME);
Florin Corasa0904f02019-07-22 20:55:11 -07002752 session_transport_closed_notify (&tc0->connection);
Florin Corasf65074e2019-03-31 17:17:11 -07002753 goto drop;
2754 }
2755
2756 tcp_connection_set_state (tc0, TCP_STATE_FIN_WAIT_2);
2757 /* Enable waitclose because we're willing to wait for peer's
2758 * FIN but not indefinitely. */
Florin Coras85a3ddd2018-12-24 16:54:34 -08002759 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Corasefefc6b2018-11-07 12:49:19 -08002760
2761 /* Don't try to deq the FIN acked */
2762 if (tc0->burst_acked > 1)
Florin Coras31c99552019-03-01 13:00:58 -08002763 session_tx_fifo_dequeue_drop (&tc0->connection,
2764 tc0->burst_acked - 1);
Florin Corasefefc6b2018-11-07 12:49:19 -08002765 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002766 }
2767 break;
2768 case TCP_STATE_FIN_WAIT_2:
2769 /* In addition to the processing for the ESTABLISHED state, if
2770 * the retransmission queue is empty, the user's CLOSE can be
2771 * acknowledged ("ok") but do not delete the TCB. */
Florin Corasf65074e2019-03-31 17:17:11 -07002772 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08002773 goto drop;
Florin Corasefefc6b2018-11-07 12:49:19 -08002774 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002775 break;
2776 case TCP_STATE_CLOSE_WAIT:
2777 /* Do the same processing as for the ESTABLISHED state. */
2778 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2779 goto drop;
2780
Florin Corasf65074e2019-03-31 17:17:11 -07002781 if (!(tc0->flags & TCP_CONN_FINPNDG))
2782 break;
2783
2784 /* Still have outstanding tx data */
Florin Coras182bbc12019-06-28 09:41:28 -07002785 max_dequeue = transport_max_tx_dequeue (&tc0->connection);
2786 if (max_dequeue > tc0->burst_acked)
Florin Corasf65074e2019-03-31 17:17:11 -07002787 break;
2788
2789 tcp_send_fin (tc0);
2790 tcp_connection_timers_reset (tc0);
2791 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
2792 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002793 break;
2794 case TCP_STATE_CLOSING:
2795 /* In addition to the processing for the ESTABLISHED state, if
2796 * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2797 * otherwise ignore the segment. */
Florin Corasf65074e2019-03-31 17:17:11 -07002798 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2799 goto drop;
Florin Coras47596832019-03-12 18:58:54 -07002800
Florin Corasf65074e2019-03-31 17:17:11 -07002801 if (tc0->snd_una != tc0->snd_nxt)
2802 goto drop;
Florin Coras7ac053b2018-11-05 15:57:21 -08002803
Florin Coras85a3ddd2018-12-24 16:54:34 -08002804 tcp_connection_timers_reset (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002805 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002806 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Florin Coras692b9492019-07-12 15:01:53 -07002807 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002808 goto drop;
2809
2810 break;
2811 case TCP_STATE_LAST_ACK:
2812 /* The only thing that [should] arrive in this state is an
2813 * acknowledgment of our FIN. If our FIN is now acknowledged,
2814 * delete the TCB, enter the CLOSED state, and return. */
2815
Florin Corasf65074e2019-03-31 17:17:11 -07002816 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2817 goto drop;
2818
Florin Coras7ac053b2018-11-05 15:57:21 -08002819 /* Apparently our ACK for the peer's FIN was lost */
Florin Coras47596832019-03-12 18:58:54 -07002820 if (is_fin0 && tc0->snd_una != tc0->snd_nxt)
Florin Coras7ac053b2018-11-05 15:57:21 -08002821 {
2822 tcp_send_fin (tc0);
2823 goto drop;
2824 }
2825
Florin Coras3c514d52018-12-22 11:39:33 -08002826 tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
Florin Corasa0904f02019-07-22 20:55:11 -07002827 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002828
2829 /* Don't free the connection from the data path since
2830 * we can't ensure that we have no packets already enqueued
2831 * to output. Rely instead on the waitclose timer */
2832 tcp_connection_timers_reset (tc0);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002833 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002834
2835 goto drop;
2836
2837 break;
2838 case TCP_STATE_TIME_WAIT:
2839 /* The only thing that can arrive in this state is a
2840 * retransmission of the remote FIN. Acknowledge it, and restart
2841 * the 2 MSL timeout. */
2842
Florin Corasf65074e2019-03-31 17:17:11 -07002843 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08002844 goto drop;
2845
Florin Coras37db4302019-03-13 13:25:57 -07002846 if (!is_fin0)
2847 goto drop;
2848
Florin Coras26dd6de2019-07-23 23:54:47 -07002849 tcp_program_ack (tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002850 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
2851 goto drop;
2852
2853 break;
2854 default:
2855 ASSERT (0);
2856 }
2857
2858 /* 6: check the URG bit TODO */
2859
2860 /* 7: process the segment text */
2861 switch (tc0->state)
2862 {
2863 case TCP_STATE_ESTABLISHED:
2864 case TCP_STATE_FIN_WAIT_1:
2865 case TCP_STATE_FIN_WAIT_2:
2866 if (vnet_buffer (b0)->tcp.data_len)
2867 error0 = tcp_segment_rcv (wrk, tc0, b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002868 break;
2869 case TCP_STATE_CLOSE_WAIT:
2870 case TCP_STATE_CLOSING:
2871 case TCP_STATE_LAST_ACK:
2872 case TCP_STATE_TIME_WAIT:
2873 /* This should not occur, since a FIN has been received from the
2874 * remote side. Ignore the segment text. */
2875 break;
2876 }
2877
2878 /* 8: check the FIN bit */
2879 if (!is_fin0)
2880 goto drop;
2881
Florin Coras3c514d52018-12-22 11:39:33 -08002882 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0);
2883
Florin Coras7ac053b2018-11-05 15:57:21 -08002884 switch (tc0->state)
2885 {
2886 case TCP_STATE_ESTABLISHED:
Florin Coras3c514d52018-12-22 11:39:33 -08002887 /* Account for the FIN and send ack */
2888 tc0->rcv_nxt += 1;
Florin Coras26dd6de2019-07-23 23:54:47 -07002889 tcp_program_ack (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002890 tcp_connection_set_state (tc0, TCP_STATE_CLOSE_WAIT);
2891 tcp_program_disconnect (wrk, tc0);
2892 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
Florin Coras5c0f1662018-12-19 01:38:57 -08002893 break;
Florin Coras7ac053b2018-11-05 15:57:21 -08002894 case TCP_STATE_SYN_RCVD:
Florin Coras5c0f1662018-12-19 01:38:57 -08002895 /* Send FIN-ACK, enter LAST-ACK and because the app was not
2896 * notified yet, set a cleanup timer instead of relying on
2897 * disconnect notify and the implicit close call. */
Florin Coras7ac053b2018-11-05 15:57:21 -08002898 tcp_connection_timers_reset (tc0);
Florin Coras5c0f1662018-12-19 01:38:57 -08002899 tc0->rcv_nxt += 1;
Florin Coras7ac053b2018-11-05 15:57:21 -08002900 tcp_send_fin (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002901 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras5c0f1662018-12-19 01:38:57 -08002902 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002903 break;
2904 case TCP_STATE_CLOSE_WAIT:
2905 case TCP_STATE_CLOSING:
2906 case TCP_STATE_LAST_ACK:
2907 /* move along .. */
2908 break;
2909 case TCP_STATE_FIN_WAIT_1:
Florin Coras3c514d52018-12-22 11:39:33 -08002910 tc0->rcv_nxt += 1;
Florin Coras070fd4b2019-04-02 19:03:23 -07002911
Florin Coras565115e2019-02-20 19:48:31 -08002912 if (tc0->flags & TCP_CONN_FINPNDG)
2913 {
Florin Coras070fd4b2019-04-02 19:03:23 -07002914 /* If data is outstanding, stay in FIN_WAIT_1 and try to finish
2915 * sending it. Since we already received a fin, do not wait
2916 * for too long. */
Florin Corasf65074e2019-03-31 17:17:11 -07002917 tc0->flags |= TCP_CONN_FINRCVD;
Florin Coras070fd4b2019-04-02 19:03:23 -07002918 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
Florin Coras565115e2019-02-20 19:48:31 -08002919 }
2920 else
Florin Corasf65074e2019-03-31 17:17:11 -07002921 {
2922 tcp_connection_set_state (tc0, TCP_STATE_CLOSING);
Florin Coras26dd6de2019-07-23 23:54:47 -07002923 tcp_program_ack (tc0);
Florin Coras070fd4b2019-04-02 19:03:23 -07002924 /* Wait for ACK for our FIN but not forever */
2925 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Corasf65074e2019-03-31 17:17:11 -07002926 }
Florin Coras7ac053b2018-11-05 15:57:21 -08002927 break;
2928 case TCP_STATE_FIN_WAIT_2:
2929 /* Got FIN, send ACK! Be more aggressive with resource cleanup */
Florin Coras3c514d52018-12-22 11:39:33 -08002930 tc0->rcv_nxt += 1;
2931 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras7ac053b2018-11-05 15:57:21 -08002932 tcp_connection_timers_reset (tc0);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002933 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Florin Coras26dd6de2019-07-23 23:54:47 -07002934 tcp_program_ack (tc0);
Florin Coras692b9492019-07-12 15:01:53 -07002935 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002936 break;
2937 case TCP_STATE_TIME_WAIT:
2938 /* Remain in the TIME-WAIT state. Restart the time-wait
2939 * timeout.
2940 */
2941 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
2942 break;
2943 }
2944 error0 = TCP_ERROR_FIN_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -08002945
2946 drop:
2947
2948 tcp_inc_counter (rcv_process, error0, 1);
2949 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2950 {
2951 tcp_rx_trace_t *t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2952 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
2953 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002954 }
2955
Florin Coras31c99552019-03-01 13:00:58 -08002956 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2957 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002958 tcp_inc_counter (rcv_process, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras9ece3c02018-11-05 11:06:53 -08002959 tcp_handle_postponed_dequeues (wrk);
Florin Coras79fdfd62019-05-23 06:19:09 -07002960 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08002961 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
2962
Dave Barach68b0fb02017-02-28 15:15:56 -05002963 return from_frame->n_vectors;
2964}
2965
Filip Tehlare275bed2019-03-06 00:06:56 -08002966VLIB_NODE_FN (tcp4_rcv_process_node) (vlib_main_t * vm,
2967 vlib_node_runtime_t * node,
2968 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002969{
2970 return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2971}
2972
Filip Tehlare275bed2019-03-06 00:06:56 -08002973VLIB_NODE_FN (tcp6_rcv_process_node) (vlib_main_t * vm,
2974 vlib_node_runtime_t * node,
2975 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002976{
2977 return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2978}
2979
2980/* *INDENT-OFF* */
2981VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
2982{
Dave Barach68b0fb02017-02-28 15:15:56 -05002983 .name = "tcp4-rcv-process",
2984 /* Takes a vector of packets. */
2985 .vector_size = sizeof (u32),
2986 .n_errors = TCP_N_ERROR,
2987 .error_strings = tcp_error_strings,
2988 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2989 .next_nodes =
2990 {
2991#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
2992 foreach_tcp_state_next
2993#undef _
2994 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002995 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002996};
2997/* *INDENT-ON* */
2998
Dave Barach68b0fb02017-02-28 15:15:56 -05002999/* *INDENT-OFF* */
3000VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
3001{
Dave Barach68b0fb02017-02-28 15:15:56 -05003002 .name = "tcp6-rcv-process",
3003 /* Takes a vector of packets. */
3004 .vector_size = sizeof (u32),
3005 .n_errors = TCP_N_ERROR,
3006 .error_strings = tcp_error_strings,
3007 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3008 .next_nodes =
3009 {
3010#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3011 foreach_tcp_state_next
3012#undef _
3013 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003014 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003015};
3016/* *INDENT-ON* */
3017
Dave Barach68b0fb02017-02-28 15:15:56 -05003018/**
3019 * LISTEN state processing as per RFC 793 p. 65
3020 */
3021always_inline uword
3022tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3023 vlib_frame_t * from_frame, int is_ip4)
3024{
Florin Coras7ac053b2018-11-05 15:57:21 -08003025 u32 n_left_from, *from, n_syns = 0, *first_buffer;
Damjan Marion586afd72017-04-05 19:18:20 +02003026 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05003027
Florin Coras7ac053b2018-11-05 15:57:21 -08003028 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05003029 n_left_from = from_frame->n_vectors;
3030
Dave Barach68b0fb02017-02-28 15:15:56 -05003031 while (n_left_from > 0)
3032 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003033 u32 bi0;
3034 vlib_buffer_t *b0;
3035 tcp_rx_trace_t *t0;
3036 tcp_header_t *th0 = 0;
3037 tcp_connection_t *lc0;
3038 ip4_header_t *ip40;
3039 ip6_header_t *ip60;
3040 tcp_connection_t *child0;
3041 u32 error0 = TCP_ERROR_NONE;
Dave Barach68b0fb02017-02-28 15:15:56 -05003042
Florin Coras7ac053b2018-11-05 15:57:21 -08003043 bi0 = from[0];
3044 from += 1;
3045 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05003046
Florin Coras7ac053b2018-11-05 15:57:21 -08003047 b0 = vlib_get_buffer (vm, bi0);
3048 lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index);
3049
3050 if (is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003051 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003052 ip40 = vlib_buffer_get_current (b0);
3053 th0 = ip4_next_header (ip40);
3054 }
3055 else
3056 {
3057 ip60 = vlib_buffer_get_current (b0);
3058 th0 = ip6_next_header (ip60);
Dave Barach68b0fb02017-02-28 15:15:56 -05003059 }
3060
Florin Coras7ac053b2018-11-05 15:57:21 -08003061 /* Create child session. For syn-flood protection use filter */
3062
3063 /* 1. first check for an RST: handled in dispatch */
3064 /* if (tcp_rst (th0))
3065 goto drop;
3066 */
3067
3068 /* 2. second check for an ACK: handled in dispatch */
3069 /* if (tcp_ack (th0))
3070 {
3071 tcp_send_reset (b0, is_ip4);
3072 goto drop;
3073 }
3074 */
3075
3076 /* 3. check for a SYN (did that already) */
3077
3078 /* Make sure connection wasn't just created */
3079 child0 = tcp_lookup_connection (lc0->c_fib_index, b0, my_thread_index,
3080 is_ip4);
3081 if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN))
3082 {
3083 error0 = TCP_ERROR_CREATE_EXISTS;
3084 goto drop;
3085 }
3086
3087 /* Create child session and send SYN-ACK */
Florin Coras8124cb72018-12-16 20:57:29 -08003088 child0 = tcp_connection_alloc (my_thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08003089 child0->c_lcl_port = th0->dst_port;
3090 child0->c_rmt_port = th0->src_port;
3091 child0->c_is_ip4 = is_ip4;
3092 child0->state = TCP_STATE_SYN_RCVD;
3093 child0->c_fib_index = lc0->c_fib_index;
3094
3095 if (is_ip4)
3096 {
3097 child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32;
3098 child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32;
3099 }
3100 else
3101 {
Dave Barach178cf492018-11-13 16:34:13 -05003102 clib_memcpy_fast (&child0->c_lcl_ip6, &ip60->dst_address,
3103 sizeof (ip6_address_t));
3104 clib_memcpy_fast (&child0->c_rmt_ip6, &ip60->src_address,
3105 sizeof (ip6_address_t));
Florin Coras7ac053b2018-11-05 15:57:21 -08003106 }
3107
Florin Coras80231112018-12-05 15:59:31 -08003108 if (tcp_options_parse (th0, &child0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08003109 {
Florin Coras8124cb72018-12-16 20:57:29 -08003110 error0 = TCP_ERROR_OPTIONS;
3111 tcp_connection_free (child0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003112 goto drop;
3113 }
3114
3115 child0->irs = vnet_buffer (b0)->tcp.seq_number;
3116 child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1;
3117 child0->rcv_las = child0->rcv_nxt;
3118 child0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
3119
3120 /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
3121 * segments are used to initialize PAWS. */
3122 if (tcp_opts_tstamp (&child0->rcv_opts))
3123 {
3124 child0->tsval_recent = child0->rcv_opts.tsval;
3125 child0->tsval_recent_age = tcp_time_now ();
3126 }
3127
3128 if (tcp_opts_wscale (&child0->rcv_opts))
3129 child0->snd_wscale = child0->rcv_opts.wscale;
3130
3131 child0->snd_wnd = clib_net_to_host_u16 (th0->window)
3132 << child0->snd_wscale;
3133 child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
3134 child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
3135
3136 tcp_connection_init_vars (child0);
Florin Coras865872e2019-01-18 12:12:29 -08003137 child0->rto = TCP_RTO_MIN;
Florin Coras7ac053b2018-11-05 15:57:21 -08003138
Florin Corasc9940fc2019-02-05 20:55:11 -08003139 if (session_stream_accept (&child0->connection, lc0->c_s_index,
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +02003140 lc0->c_thread_index, 0 /* notify */ ))
Florin Coras7ac053b2018-11-05 15:57:21 -08003141 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003142 tcp_connection_cleanup (child0);
3143 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
3144 goto drop;
3145 }
3146
Florin Coras6416e622019-04-03 17:52:43 -07003147 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, child0, 1);
Florin Coras2e31cc32018-09-25 14:00:34 -07003148 child0->tx_fifo_size = transport_tx_fifo_size (&child0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003149 tcp_send_synack (child0);
3150 tcp_timer_set (child0, TCP_TIMER_ESTABLISH, TCP_SYN_RCVD_TIME);
3151
3152 drop:
3153
3154 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3155 {
3156 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05003157 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
3158 clib_memcpy_fast (&t0->tcp_connection, lc0,
3159 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08003160 }
3161
3162 n_syns += (error0 == TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003163 }
Florin Coras00cd22d2018-04-18 13:20:18 -07003164
3165 tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
Florin Coras7ac053b2018-11-05 15:57:21 -08003166 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3167
Dave Barach68b0fb02017-02-28 15:15:56 -05003168 return from_frame->n_vectors;
3169}
3170
Filip Tehlare275bed2019-03-06 00:06:56 -08003171VLIB_NODE_FN (tcp4_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3172 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003173{
3174 return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3175}
3176
Filip Tehlare275bed2019-03-06 00:06:56 -08003177VLIB_NODE_FN (tcp6_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3178 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003179{
3180 return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3181}
3182
3183/* *INDENT-OFF* */
3184VLIB_REGISTER_NODE (tcp4_listen_node) =
3185{
Dave Barach68b0fb02017-02-28 15:15:56 -05003186 .name = "tcp4-listen",
3187 /* Takes a vector of packets. */
3188 .vector_size = sizeof (u32),
3189 .n_errors = TCP_N_ERROR,
3190 .error_strings = tcp_error_strings,
3191 .n_next_nodes = TCP_LISTEN_N_NEXT,
3192 .next_nodes =
3193 {
3194#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3195 foreach_tcp_state_next
3196#undef _
3197 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003198 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003199};
3200/* *INDENT-ON* */
3201
Dave Barach68b0fb02017-02-28 15:15:56 -05003202/* *INDENT-OFF* */
3203VLIB_REGISTER_NODE (tcp6_listen_node) =
3204{
Dave Barach68b0fb02017-02-28 15:15:56 -05003205 .name = "tcp6-listen",
3206 /* Takes a vector of packets. */
3207 .vector_size = sizeof (u32),
3208 .n_errors = TCP_N_ERROR,
3209 .error_strings = tcp_error_strings,
3210 .n_next_nodes = TCP_LISTEN_N_NEXT,
3211 .next_nodes =
3212 {
3213#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3214 foreach_tcp_state_next
3215#undef _
3216 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003217 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003218};
3219/* *INDENT-ON* */
3220
Dave Barach68b0fb02017-02-28 15:15:56 -05003221typedef enum _tcp_input_next
3222{
3223 TCP_INPUT_NEXT_DROP,
3224 TCP_INPUT_NEXT_LISTEN,
3225 TCP_INPUT_NEXT_RCV_PROCESS,
3226 TCP_INPUT_NEXT_SYN_SENT,
3227 TCP_INPUT_NEXT_ESTABLISHED,
3228 TCP_INPUT_NEXT_RESET,
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003229 TCP_INPUT_NEXT_PUNT,
Dave Barach68b0fb02017-02-28 15:15:56 -05003230 TCP_INPUT_N_NEXT
3231} tcp_input_next_t;
3232
3233#define foreach_tcp4_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003234 _ (DROP, "ip4-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003235 _ (LISTEN, "tcp4-listen") \
3236 _ (RCV_PROCESS, "tcp4-rcv-process") \
3237 _ (SYN_SENT, "tcp4-syn-sent") \
3238 _ (ESTABLISHED, "tcp4-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003239 _ (RESET, "tcp4-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003240 _ (PUNT, "ip4-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003241
3242#define foreach_tcp6_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003243 _ (DROP, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003244 _ (LISTEN, "tcp6-listen") \
3245 _ (RCV_PROCESS, "tcp6-rcv-process") \
3246 _ (SYN_SENT, "tcp6-syn-sent") \
3247 _ (ESTABLISHED, "tcp6-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003248 _ (RESET, "tcp6-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003249 _ (PUNT, "ip6-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003250
Dave Barach68b0fb02017-02-28 15:15:56 -05003251#define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
3252
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003253static void
3254tcp_input_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07003255 vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003256{
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003257 tcp_connection_t *tc;
3258 tcp_header_t *tcp;
3259 tcp_rx_trace_t *t;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003260 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05003261
Florin Coras4df38712018-06-20 12:44:16 -07003262 for (i = 0; i < n_bufs; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05003263 {
Florin Coras4df38712018-06-20 12:44:16 -07003264 if (bs[i]->flags & VLIB_BUFFER_IS_TRACED)
3265 {
3266 t = vlib_add_trace (vm, node, bs[i], sizeof (*t));
3267 tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index,
3268 vm->thread_index);
3269 tcp = vlib_buffer_get_current (bs[i]);
3270 tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4);
3271 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003272 }
3273}
Dave Barach68b0fb02017-02-28 15:15:56 -05003274
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003275static void
3276tcp_input_set_error_next (tcp_main_t * tm, u16 * next, u32 * error, u8 is_ip4)
3277{
Florin Corasb5e55a22019-01-10 12:42:47 -08003278 if (*error == TCP_ERROR_FILTERED || *error == TCP_ERROR_WRONG_THREAD)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003279 {
3280 *next = TCP_INPUT_NEXT_DROP;
3281 }
3282 else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6))
3283 {
3284 *next = TCP_INPUT_NEXT_PUNT;
3285 *error = TCP_ERROR_PUNT;
3286 }
3287 else
3288 {
3289 *next = TCP_INPUT_NEXT_RESET;
3290 *error = TCP_ERROR_NO_LISTENER;
3291 }
3292}
Dave Barach68b0fb02017-02-28 15:15:56 -05003293
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003294always_inline tcp_connection_t *
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003295tcp_input_lookup_buffer (vlib_buffer_t * b, u8 thread_index, u32 * error,
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003296 u8 is_ip4, u8 is_nolookup)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003297{
3298 u32 fib_index = vnet_buffer (b)->ip.fib_index;
3299 int n_advance_bytes, n_data_bytes;
3300 transport_connection_t *tc;
3301 tcp_header_t *tcp;
Florin Corasb5e55a22019-01-10 12:42:47 -08003302 u8 result = 0;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003303
3304 if (is_ip4)
3305 {
3306 ip4_header_t *ip4 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003307 int ip_hdr_bytes = ip4_header_bytes (ip4);
3308 if (PREDICT_FALSE (b->current_length < ip_hdr_bytes + sizeof (*tcp)))
3309 {
3310 *error = TCP_ERROR_LENGTH;
3311 return 0;
3312 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003313 tcp = ip4_next_header (ip4);
3314 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip4;
Florin Corasb8dda5f2018-12-05 10:03:34 -08003315 n_advance_bytes = (ip_hdr_bytes + tcp_header_bytes (tcp));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003316 n_data_bytes = clib_net_to_host_u16 (ip4->length) - n_advance_bytes;
3317
3318 /* Length check. Checksum computed by ipx_local no need to compute again */
Florin Corasb8dda5f2018-12-05 10:03:34 -08003319 if (PREDICT_FALSE (n_data_bytes < 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05003320 {
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003321 *error = TCP_ERROR_LENGTH;
3322 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003323 }
3324
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003325 if (!is_nolookup)
3326 tc = session_lookup_connection_wt4 (fib_index, &ip4->dst_address,
3327 &ip4->src_address, tcp->dst_port,
3328 tcp->src_port,
3329 TRANSPORT_PROTO_TCP, thread_index,
3330 &result);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003331 }
3332 else
3333 {
3334 ip6_header_t *ip6 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003335 if (PREDICT_FALSE (b->current_length < sizeof (*ip6) + sizeof (*tcp)))
3336 {
3337 *error = TCP_ERROR_LENGTH;
3338 return 0;
3339 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003340 tcp = ip6_next_header (ip6);
3341 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip6;
3342 n_advance_bytes = tcp_header_bytes (tcp);
3343 n_data_bytes = clib_net_to_host_u16 (ip6->payload_length)
3344 - n_advance_bytes;
3345 n_advance_bytes += sizeof (ip6[0]);
3346
Florin Corasb8dda5f2018-12-05 10:03:34 -08003347 if (PREDICT_FALSE (n_data_bytes < 0))
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003348 {
3349 *error = TCP_ERROR_LENGTH;
3350 return 0;
3351 }
3352
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003353 if (!is_nolookup)
3354 {
3355 if (PREDICT_FALSE
3356 (ip6_address_is_link_local_unicast (&ip6->dst_address)))
3357 {
3358 ip4_main_t *im = &ip4_main;
3359 fib_index = vec_elt (im->fib_index_by_sw_if_index,
3360 vnet_buffer (b)->sw_if_index[VLIB_RX]);
3361 }
3362
3363 tc = session_lookup_connection_wt6 (fib_index, &ip6->dst_address,
3364 &ip6->src_address,
3365 tcp->dst_port, tcp->src_port,
3366 TRANSPORT_PROTO_TCP,
3367 thread_index, &result);
3368 }
Dave Barach68b0fb02017-02-28 15:15:56 -05003369 }
3370
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003371 if (is_nolookup)
3372 tc =
3373 (transport_connection_t *) tcp_connection_get (vnet_buffer (b)->
3374 tcp.connection_index,
3375 thread_index);
3376
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003377 vnet_buffer (b)->tcp.seq_number = clib_net_to_host_u32 (tcp->seq_number);
3378 vnet_buffer (b)->tcp.ack_number = clib_net_to_host_u32 (tcp->ack_number);
3379 vnet_buffer (b)->tcp.data_offset = n_advance_bytes;
3380 vnet_buffer (b)->tcp.data_len = n_data_bytes;
Florin Coras3c514d52018-12-22 11:39:33 -08003381 vnet_buffer (b)->tcp.seq_end = vnet_buffer (b)->tcp.seq_number
3382 + n_data_bytes;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003383 vnet_buffer (b)->tcp.flags = 0;
3384
Florin Corasb5e55a22019-01-10 12:42:47 -08003385 *error = result ? TCP_ERROR_NONE + result : *error;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003386
3387 return tcp_get_connection_from_transport (tc);
3388}
3389
3390static inline void
3391tcp_input_dispatch_buffer (tcp_main_t * tm, tcp_connection_t * tc,
3392 vlib_buffer_t * b, u16 * next, u32 * error)
3393{
3394 tcp_header_t *tcp;
3395 u8 flags;
3396
3397 tcp = tcp_buffer_hdr (b);
3398 flags = tcp->flags & filter_flags;
3399 *next = tm->dispatch_table[tc->state][flags].next;
3400 *error = tm->dispatch_table[tc->state][flags].error;
3401
3402 if (PREDICT_FALSE (*error == TCP_ERROR_DISPATCH
3403 || *next == TCP_INPUT_NEXT_RESET))
3404 {
3405 /* Overload tcp flags to store state */
3406 tcp_state_t state = tc->state;
3407 vnet_buffer (b)->tcp.flags = tc->state;
3408
3409 if (*error == TCP_ERROR_DISPATCH)
Florin Corasa9d5bea2018-12-17 08:24:19 -08003410 clib_warning ("tcp conn %u disp error state %U flags %U",
3411 tc->c_c_index, format_tcp_state, state,
3412 format_tcp_flags, (int) flags);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003413 }
3414}
3415
3416always_inline uword
3417tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003418 vlib_frame_t * frame, int is_ip4, u8 is_nolookup)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003419{
3420 u32 n_left_from, *from, thread_index = vm->thread_index;
3421 tcp_main_t *tm = vnet_get_tcp_main ();
3422 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
3423 u16 nexts[VLIB_FRAME_SIZE], *next;
3424
Florin Corasbe72ae62018-11-01 11:23:03 -07003425 tcp_set_time_now (tcp_get_worker (thread_index));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003426
3427 from = vlib_frame_vector_args (frame);
3428 n_left_from = frame->n_vectors;
3429 vlib_get_buffers (vm, from, bufs, n_left_from);
3430
3431 b = bufs;
3432 next = nexts;
3433
3434 while (n_left_from >= 4)
3435 {
3436 u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER;
3437 tcp_connection_t *tc0, *tc1;
3438
3439 {
3440 vlib_prefetch_buffer_header (b[2], STORE);
3441 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3442
3443 vlib_prefetch_buffer_header (b[3], STORE);
3444 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3445 }
3446
3447 next[0] = next[1] = TCP_INPUT_NEXT_DROP;
3448
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003449 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
3450 is_nolookup);
3451 tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4,
3452 is_nolookup);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003453
3454 if (PREDICT_TRUE (!tc0 + !tc1 == 0))
3455 {
3456 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3457 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3458
3459 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3460 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3461
3462 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3463 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3464 }
3465 else
3466 {
3467 if (PREDICT_TRUE (tc0 != 0))
3468 {
3469 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3470 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3471 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3472 }
3473 else
3474 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3475
3476 if (PREDICT_TRUE (tc1 != 0))
3477 {
3478 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3479 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3480 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3481 }
3482 else
3483 tcp_input_set_error_next (tm, &next[1], &error1, is_ip4);
3484 }
3485
3486 b += 2;
3487 next += 2;
3488 n_left_from -= 2;
3489 }
3490 while (n_left_from > 0)
3491 {
3492 tcp_connection_t *tc0;
3493 u32 error0 = TCP_ERROR_NO_LISTENER;
3494
3495 if (n_left_from > 1)
3496 {
3497 vlib_prefetch_buffer_header (b[1], STORE);
3498 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3499 }
3500
3501 next[0] = TCP_INPUT_NEXT_DROP;
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003502 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
3503 is_nolookup);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003504 if (PREDICT_TRUE (tc0 != 0))
3505 {
3506 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3507 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3508 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3509 }
3510 else
3511 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3512
3513 b += 1;
3514 next += 1;
3515 n_left_from -= 1;
3516 }
3517
3518 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
3519 tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4);
3520
3521 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
3522 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05003523}
3524
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003525VLIB_NODE_FN (tcp4_input_nolookup_node) (vlib_main_t * vm,
3526 vlib_node_runtime_t * node,
3527 vlib_frame_t * from_frame)
3528{
3529 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
3530 1 /* is_nolookup */ );
3531}
3532
3533VLIB_NODE_FN (tcp6_input_nolookup_node) (vlib_main_t * vm,
3534 vlib_node_runtime_t * node,
3535 vlib_frame_t * from_frame)
3536{
3537 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3538 1 /* is_nolookup */ );
3539}
3540
3541/* *INDENT-OFF* */
3542VLIB_REGISTER_NODE (tcp4_input_nolookup_node) =
3543{
3544 .name = "tcp4-input-nolookup",
3545 /* Takes a vector of packets. */
3546 .vector_size = sizeof (u32),
3547 .n_errors = TCP_N_ERROR,
3548 .error_strings = tcp_error_strings,
3549 .n_next_nodes = TCP_INPUT_N_NEXT,
3550 .next_nodes =
3551 {
3552#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3553 foreach_tcp4_input_next
3554#undef _
3555 },
3556 .format_buffer = format_tcp_header,
3557 .format_trace = format_tcp_rx_trace,
3558};
3559/* *INDENT-ON* */
3560
3561/* *INDENT-OFF* */
3562VLIB_REGISTER_NODE (tcp6_input_nolookup_node) =
3563{
3564 .name = "tcp6-input-nolookup",
3565 /* Takes a vector of packets. */
3566 .vector_size = sizeof (u32),
3567 .n_errors = TCP_N_ERROR,
3568 .error_strings = tcp_error_strings,
3569 .n_next_nodes = TCP_INPUT_N_NEXT,
3570 .next_nodes =
3571 {
3572#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3573 foreach_tcp6_input_next
3574#undef _
3575 },
3576 .format_buffer = format_tcp_header,
3577 .format_trace = format_tcp_rx_trace,
3578};
3579/* *INDENT-ON* */
3580
Filip Tehlare275bed2019-03-06 00:06:56 -08003581VLIB_NODE_FN (tcp4_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3582 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003583{
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003584 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
3585 0 /* is_nolookup */ );
Dave Barach68b0fb02017-02-28 15:15:56 -05003586}
3587
Filip Tehlare275bed2019-03-06 00:06:56 -08003588VLIB_NODE_FN (tcp6_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3589 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003590{
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003591 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3592 0 /* is_nolookup */ );
Dave Barach68b0fb02017-02-28 15:15:56 -05003593}
3594
3595/* *INDENT-OFF* */
3596VLIB_REGISTER_NODE (tcp4_input_node) =
3597{
Dave Barach68b0fb02017-02-28 15:15:56 -05003598 .name = "tcp4-input",
3599 /* Takes a vector of packets. */
3600 .vector_size = sizeof (u32),
3601 .n_errors = TCP_N_ERROR,
3602 .error_strings = tcp_error_strings,
3603 .n_next_nodes = TCP_INPUT_N_NEXT,
3604 .next_nodes =
3605 {
3606#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3607 foreach_tcp4_input_next
3608#undef _
3609 },
3610 .format_buffer = format_tcp_header,
3611 .format_trace = format_tcp_rx_trace,
3612};
3613/* *INDENT-ON* */
3614
Dave Barach68b0fb02017-02-28 15:15:56 -05003615/* *INDENT-OFF* */
3616VLIB_REGISTER_NODE (tcp6_input_node) =
3617{
Dave Barach68b0fb02017-02-28 15:15:56 -05003618 .name = "tcp6-input",
3619 /* Takes a vector of packets. */
3620 .vector_size = sizeof (u32),
3621 .n_errors = TCP_N_ERROR,
3622 .error_strings = tcp_error_strings,
3623 .n_next_nodes = TCP_INPUT_N_NEXT,
3624 .next_nodes =
3625 {
3626#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3627 foreach_tcp6_input_next
3628#undef _
3629 },
3630 .format_buffer = format_tcp_header,
3631 .format_trace = format_tcp_rx_trace,
3632};
3633/* *INDENT-ON* */
3634
Filip Tehlare275bed2019-03-06 00:06:56 -08003635#ifndef CLIB_MARCH_VARIANT
Dave Barach68b0fb02017-02-28 15:15:56 -05003636static void
3637tcp_dispatch_table_init (tcp_main_t * tm)
3638{
3639 int i, j;
3640 for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3641 for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3642 {
3643 tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3644 tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3645 }
3646
3647#define _(t,f,n,e) \
3648do { \
3649 tm->dispatch_table[TCP_STATE_##t][f].next = (n); \
3650 tm->dispatch_table[TCP_STATE_##t][f].error = (e); \
3651} while (0)
3652
Florin Coras678a6572018-12-17 21:31:25 -08003653 /* RFC 793: In LISTEN if RST drop and if ACK return RST */
Florin Coras5c0f1662018-12-19 01:38:57 -08003654 _(LISTEN, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras678a6572018-12-17 21:31:25 -08003655 _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_ACK_INVALID);
3656 _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_INVALID_CONNECTION);
Dave Barach68b0fb02017-02-28 15:15:56 -05003657 _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003658 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3659 TCP_ERROR_ACK_INVALID);
3660 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3661 TCP_ERROR_SEGMENT_INVALID);
3662 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3663 TCP_ERROR_SEGMENT_INVALID);
3664 _(LISTEN, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3665 TCP_ERROR_INVALID_CONNECTION);
3666 _(LISTEN, TCP_FLAG_FIN, TCP_INPUT_NEXT_RESET, TCP_ERROR_SEGMENT_INVALID);
Dave Barach2c25a622017-06-26 11:35:07 -04003667 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
Florin Coras678a6572018-12-17 21:31:25 -08003668 TCP_ERROR_SEGMENT_INVALID);
3669 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3670 TCP_ERROR_SEGMENT_INVALID);
3671 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003672 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003673 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_DROP,
3674 TCP_ERROR_SEGMENT_INVALID);
3675 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3676 TCP_ERROR_SEGMENT_INVALID);
3677 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3678 TCP_ERROR_SEGMENT_INVALID);
3679 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3680 TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003681 /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3682 _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc28764f2017-04-26 00:08:42 -07003683 _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase8460c72018-09-24 14:40:40 -07003684 _(SYN_RCVD, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3685 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003686 _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003687 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3688 TCP_ERROR_NONE);
3689 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3690 TCP_ERROR_NONE);
3691 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3692 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3693 _(SYN_RCVD, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc01c4452018-09-20 18:36:54 -07003694 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3695 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003696 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3697 TCP_ERROR_NONE);
3698 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3699 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3700 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3701 TCP_ERROR_NONE);
3702 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3703 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3704 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3705 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3706 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3707 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3708 _(SYN_RCVD, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003709 /* SYN-ACK for a SYN */
3710 _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3711 TCP_ERROR_NONE);
3712 _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3713 _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3714 _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3715 TCP_ERROR_NONE);
Florin Coras222e1f412019-02-16 20:47:32 -08003716 _(SYN_SENT, TCP_FLAG_FIN, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3717 _(SYN_SENT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3718 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003719 /* ACK for for established connection -> tcp-established. */
3720 _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3721 /* FIN for for established connection -> tcp-established. */
3722 _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3723 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3724 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003725 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3726 TCP_ERROR_NONE);
3727 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3728 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3729 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED,
3730 TCP_ERROR_NONE);
3731 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3732 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3733 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3734 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3735 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3736 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasd79b41e2017-03-04 05:37:52 -08003737 _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003738 _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3739 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003740 _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003741 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3742 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003743 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3744 TCP_ERROR_NONE);
3745 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3746 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3747 _(ESTABLISHED, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003748 /* ACK or FIN-ACK to our FIN */
3749 _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3750 _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
3751 TCP_ERROR_NONE);
3752 /* FIN in reply to our FIN from the other side */
Florin Coras76bc1302018-12-23 23:36:36 -08003753 _(FIN_WAIT_1, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003754 _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08003755 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3756 TCP_ERROR_NONE);
3757 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3758 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3759 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3760 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3761 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3762 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3763 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3764 TCP_ERROR_NONE);
3765 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3766 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras5c0f1662018-12-19 01:38:57 -08003767 _(FIN_WAIT_1, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08003768 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3769 TCP_ERROR_NONE);
3770 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3771 TCP_ERROR_NONE);
3772 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3773 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003774 _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase96bf632018-12-18 22:44:27 -08003775 _(FIN_WAIT_1, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3776 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003777 _(CLOSING, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras56318932018-05-23 20:44:12 -07003778 _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08003779 _(CLOSING, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003780 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3781 TCP_ERROR_NONE);
3782 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3783 TCP_ERROR_NONE);
3784 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3785 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08003786 _(CLOSING, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3787 _(CLOSING, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3788 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003789 _(CLOSING, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras3c514d52018-12-22 11:39:33 -08003790 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3791 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003792 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3793 TCP_ERROR_NONE);
3794 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3795 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3796 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3797 TCP_ERROR_NONE);
3798 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3799 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3800 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3801 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003802 /* FIN confirming that the peer (app) has closed */
3803 _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasf6d68ed2017-05-07 19:12:02 -07003804 _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003805 _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3806 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003807 _(FIN_WAIT_2, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3808 _(FIN_WAIT_2, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3809 TCP_ERROR_NONE);
Florin Corasf03a59a2017-06-09 21:07:32 -07003810 _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3811 _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3812 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003813 _(CLOSE_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3814 _(CLOSE_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3815 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003816 _(LAST_ACK, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003817 _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003818 _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3819 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3820 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003821 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3822 TCP_ERROR_NONE);
3823 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3824 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3825 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3826 TCP_ERROR_NONE);
3827 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3828 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3829 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3830 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3831 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3832 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasdb84e572017-05-09 18:54:52 -07003833 _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003834 _(LAST_ACK, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3835 TCP_ERROR_NONE);
Florin Corasc01d5782018-10-17 14:53:11 -07003836 _(LAST_ACK, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003837 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3838 TCP_ERROR_NONE);
3839 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3840 TCP_ERROR_NONE);
3841 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3842 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003843 _(TIME_WAIT, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003844 _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3845 _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3846 TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003847 _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003848 _(TIME_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3849 TCP_ERROR_NONE);
Florin Coras50958952017-08-29 14:50:13 -07003850 _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003851 /* RFC793 CLOSED: An incoming segment containing a RST is discarded. An
3852 * incoming segment not containing a RST causes a RST to be sent in
3853 * response.*/
Florin Corasdc629cd2017-05-09 00:52:37 -07003854 _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08003855 _(CLOSED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003856 TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08003857 _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
3858 _(CLOSED, TCP_FLAG_SYN, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
3859 _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3860 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003861#undef _
3862}
3863
Florin Coras0dbd5172018-06-25 16:19:34 -07003864static clib_error_t *
Dave Barach68b0fb02017-02-28 15:15:56 -05003865tcp_input_init (vlib_main_t * vm)
3866{
3867 clib_error_t *error = 0;
3868 tcp_main_t *tm = vnet_get_tcp_main ();
3869
3870 if ((error = vlib_call_init_function (vm, tcp_init)))
3871 return error;
3872
3873 /* Initialize dispatch table. */
3874 tcp_dispatch_table_init (tm);
3875
3876 return error;
3877}
3878
3879VLIB_INIT_FUNCTION (tcp_input_init);
3880
Filip Tehlare275bed2019-03-06 00:06:56 -08003881#endif /* CLIB_MARCH_VARIANT */
3882
Dave Barach68b0fb02017-02-28 15:15:56 -05003883/*
3884 * fd.io coding-style-patch-verification: ON
3885 *
3886 * Local Variables:
3887 * eval: (c-set-style "gnu")
3888 * End:
3889 */