blob: 1b4e8a6ac21776963409db94e7042db0dd826520 [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 Coras91236ce2018-12-16 11:41:45 -0800320 tcp_program_ack (wrk, tc0);
321 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 {
343 tcp_program_ack (wrk, tc0);
344 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 Coras222e1f412019-02-16 20:47:32 -0800371 tcp_program_dupack (wrk, tc0);
372 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 */
394 tcp_program_ack (wrk, 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
778 sb->lost_bytes = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700779 sb->sacked_bytes = 0;
Florin Corasecbd20b2018-10-17 23:34:54 -0700780 left = scoreboard_last_hole (sb);
781 if (!left)
Florin Coras93992a92017-05-24 18:03:56 -0700782 return;
783
Florin Corasecbd20b2018-10-17 23:34:54 -0700784 if (seq_gt (sb->high_sacked, left->end))
Florin Coras93992a92017-05-24 18:03:56 -0700785 {
Florin Corasecbd20b2018-10-17 23:34:54 -0700786 bytes = sb->high_sacked - left->end;
Florin Coras93992a92017-05-24 18:03:56 -0700787 blks = 1;
788 }
789
Florin Coras9f9e9692018-10-19 17:49:00 -0700790 while ((right = left)
791 && bytes < (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
792 && blks < TCP_DUPACK_THRESHOLD
793 /* left not updated if above conditions fail */
794 && (left = scoreboard_prev_hole (sb, right)))
Florin Coras93992a92017-05-24 18:03:56 -0700795 {
Florin Corasecbd20b2018-10-17 23:34:54 -0700796 bytes += right->start - left->end;
Florin Coras93992a92017-05-24 18:03:56 -0700797 blks++;
Florin Coras93992a92017-05-24 18:03:56 -0700798 }
799
Florin Coras9f9e9692018-10-19 17:49:00 -0700800 /* left is first lost */
801 if (left)
Florin Coras93992a92017-05-24 18:03:56 -0700802 {
Florin Coras9f9e9692018-10-19 17:49:00 -0700803 do
804 {
805 sb->lost_bytes += scoreboard_hole_bytes (right);
806 left->is_lost = 1;
807 left = scoreboard_prev_hole (sb, right);
808 if (left)
809 bytes += right->start - left->end;
810 }
811 while ((right = left));
Florin Coras93992a92017-05-24 18:03:56 -0700812 }
Florin Coras9f9e9692018-10-19 17:49:00 -0700813
Florin Corasf03a59a2017-06-09 21:07:32 -0700814 sb->sacked_bytes = bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700815}
816
817/**
818 * Figure out the next hole to retransmit
819 *
820 * Follows logic proposed in RFC6675 Sec. 4, NextSeg()
821 */
822sack_scoreboard_hole_t *
823scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
824 sack_scoreboard_hole_t * start,
Florin Coras36ee9f12018-11-02 12:52:10 -0700825 u8 have_unsent, u8 * can_rescue, u8 * snd_limited)
Florin Coras93992a92017-05-24 18:03:56 -0700826{
827 sack_scoreboard_hole_t *hole = 0;
828
829 hole = start ? start : scoreboard_first_hole (sb);
830 while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost)
831 hole = scoreboard_next_hole (sb, hole);
832
833 /* Nothing, return */
834 if (!hole)
835 {
836 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
837 return 0;
838 }
839
840 /* Rule (1): if higher than rxt, less than high_sacked and lost */
841 if (hole->is_lost && seq_lt (hole->start, sb->high_sacked))
842 {
843 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
844 }
845 else
846 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700847 /* Rule (2): available unsent data */
848 if (have_unsent)
Florin Coras93992a92017-05-24 18:03:56 -0700849 {
Florin Coras93992a92017-05-24 18:03:56 -0700850 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
Florin Coras36ee9f12018-11-02 12:52:10 -0700851 return 0;
Florin Coras93992a92017-05-24 18:03:56 -0700852 }
853 /* Rule (3): if hole not lost */
854 else if (seq_lt (hole->start, sb->high_sacked))
855 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700856 *snd_limited = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700857 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
858 }
859 /* Rule (4): if hole beyond high_sacked */
860 else
861 {
862 ASSERT (seq_geq (hole->start, sb->high_sacked));
863 *snd_limited = 1;
864 *can_rescue = 1;
865 /* HighRxt MUST NOT be updated */
866 return 0;
867 }
868 }
869
870 if (hole && seq_lt (sb->high_rxt, hole->start))
871 sb->high_rxt = hole->start;
872
873 return hole;
874}
Filip Tehlare275bed2019-03-06 00:06:56 -0800875#endif /* CLIB_MARCH_VARIANT */
Florin Coras93992a92017-05-24 18:03:56 -0700876
Florin Coras0dbd5172018-06-25 16:19:34 -0700877static void
Florin Coras36ee9f12018-11-02 12:52:10 -0700878scoreboard_init_high_rxt (sack_scoreboard_t * sb, u32 snd_una)
Florin Coras93992a92017-05-24 18:03:56 -0700879{
880 sack_scoreboard_hole_t *hole;
881 hole = scoreboard_first_hole (sb);
Florin Coras3eb50622017-07-13 01:24:57 -0400882 if (hole)
883 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700884 snd_una = seq_gt (snd_una, hole->start) ? snd_una : hole->start;
Florin Coras3eb50622017-07-13 01:24:57 -0400885 sb->cur_rxt_hole = sb->head;
886 }
Florin Coras36ee9f12018-11-02 12:52:10 -0700887 sb->high_rxt = snd_una;
888 sb->rescue_rxt = snd_una - 1;
Florin Coras3eb50622017-07-13 01:24:57 -0400889}
890
Filip Tehlare275bed2019-03-06 00:06:56 -0800891#ifndef CLIB_MARCH_VARIANT
Florin Coras0dbd5172018-06-25 16:19:34 -0700892void
893scoreboard_init (sack_scoreboard_t * sb)
894{
895 sb->head = TCP_INVALID_SACK_HOLE_INDEX;
896 sb->tail = TCP_INVALID_SACK_HOLE_INDEX;
897 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
898}
899
900void
901scoreboard_clear (sack_scoreboard_t * sb)
902{
903 sack_scoreboard_hole_t *hole;
904 while ((hole = scoreboard_first_hole (sb)))
905 {
906 scoreboard_remove_hole (sb, hole);
907 }
908 ASSERT (sb->head == sb->tail && sb->head == TCP_INVALID_SACK_HOLE_INDEX);
909 ASSERT (pool_elts (sb->holes) == 0);
910 sb->sacked_bytes = 0;
911 sb->last_sacked_bytes = 0;
912 sb->last_bytes_delivered = 0;
913 sb->snd_una_adv = 0;
914 sb->high_sacked = 0;
915 sb->high_rxt = 0;
916 sb->lost_bytes = 0;
917 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
918}
Filip Tehlare275bed2019-03-06 00:06:56 -0800919#endif /* CLIB_MARCH_VARIANT */
Florin Coras0dbd5172018-06-25 16:19:34 -0700920
Florin Coras3eb50622017-07-13 01:24:57 -0400921/**
922 * Test that scoreboard is sane after recovery
923 *
924 * Returns 1 if scoreboard is empty or if first hole beyond
925 * snd_una.
926 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700927static u8
Florin Coras3eb50622017-07-13 01:24:57 -0400928tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc)
929{
930 sack_scoreboard_hole_t *hole;
931 hole = scoreboard_first_hole (&tc->sack_sb);
Florin Corasecbd20b2018-10-17 23:34:54 -0700932 return (!hole || (seq_geq (hole->start, tc->snd_una)
Florin Coras47596832019-03-12 18:58:54 -0700933 && seq_lt (hole->end, tc->snd_nxt)));
Florin Coras93992a92017-05-24 18:03:56 -0700934}
935
Filip Tehlare275bed2019-03-06 00:06:56 -0800936#ifndef CLIB_MARCH_VARIANT
Florin Coras93992a92017-05-24 18:03:56 -0700937void
Dave Barach68b0fb02017-02-28 15:15:56 -0500938tcp_rcv_sacks (tcp_connection_t * tc, u32 ack)
939{
940 sack_scoreboard_t *sb = &tc->sack_sb;
941 sack_block_t *blk, tmp;
Florin Corasf03a59a2017-06-09 21:07:32 -0700942 sack_scoreboard_hole_t *hole, *next_hole, *last_hole;
Florin Coras93992a92017-05-24 18:03:56 -0700943 u32 blk_index = 0, old_sacked_bytes, hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500944 int i, j;
945
Florin Coras6792ec02017-03-13 03:49:51 -0700946 sb->last_sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700947 sb->last_bytes_delivered = 0;
Florin Coras352c2c42018-06-26 01:22:41 -0700948 sb->snd_una_adv = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700949
Florin Coras93992a92017-05-24 18:03:56 -0700950 if (!tcp_opts_sack (&tc->rcv_opts)
951 && sb->head == TCP_INVALID_SACK_HOLE_INDEX)
Dave Barach68b0fb02017-02-28 15:15:56 -0500952 return;
953
Florin Coras352c2c42018-06-26 01:22:41 -0700954 old_sacked_bytes = sb->sacked_bytes;
955
Dave Barach68b0fb02017-02-28 15:15:56 -0500956 /* Remove invalid blocks */
Florin Coras93992a92017-05-24 18:03:56 -0700957 blk = tc->rcv_opts.sacks;
958 while (blk < vec_end (tc->rcv_opts.sacks))
Florin Coras6792ec02017-03-13 03:49:51 -0700959 {
960 if (seq_lt (blk->start, blk->end)
961 && seq_gt (blk->start, tc->snd_una)
Florin Corasab86f862018-12-06 18:24:19 -0800962 && seq_gt (blk->start, ack)
Florin Coras47596832019-03-12 18:58:54 -0700963 && seq_lt (blk->start, tc->snd_nxt)
964 && seq_leq (blk->end, tc->snd_nxt))
Florin Coras6792ec02017-03-13 03:49:51 -0700965 {
966 blk++;
967 continue;
968 }
Florin Coras93992a92017-05-24 18:03:56 -0700969 vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks);
Florin Coras6792ec02017-03-13 03:49:51 -0700970 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500971
972 /* Add block for cumulative ack */
973 if (seq_gt (ack, tc->snd_una))
974 {
975 tmp.start = tc->snd_una;
976 tmp.end = ack;
Florin Coras93992a92017-05-24 18:03:56 -0700977 vec_add1 (tc->rcv_opts.sacks, tmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500978 }
979
Florin Coras93992a92017-05-24 18:03:56 -0700980 if (vec_len (tc->rcv_opts.sacks) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500981 return;
982
Florin Coras3eb50622017-07-13 01:24:57 -0400983 tcp_scoreboard_trace_add (tc, ack);
984
Dave Barach68b0fb02017-02-28 15:15:56 -0500985 /* Make sure blocks are ordered */
Florin Coras93992a92017-05-24 18:03:56 -0700986 for (i = 0; i < vec_len (tc->rcv_opts.sacks); i++)
987 for (j = i + 1; j < vec_len (tc->rcv_opts.sacks); j++)
988 if (seq_lt (tc->rcv_opts.sacks[j].start, tc->rcv_opts.sacks[i].start))
Dave Barach68b0fb02017-02-28 15:15:56 -0500989 {
Florin Coras93992a92017-05-24 18:03:56 -0700990 tmp = tc->rcv_opts.sacks[i];
991 tc->rcv_opts.sacks[i] = tc->rcv_opts.sacks[j];
992 tc->rcv_opts.sacks[j] = tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500993 }
994
Dave Barach68b0fb02017-02-28 15:15:56 -0500995 if (sb->head == TCP_INVALID_SACK_HOLE_INDEX)
996 {
Florin Coras6792ec02017-03-13 03:49:51 -0700997 /* If no holes, insert the first that covers all outstanding bytes */
998 last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
Florin Coras47596832019-03-12 18:58:54 -0700999 tc->snd_una, tc->snd_nxt);
Florin Coras6792ec02017-03-13 03:49:51 -07001000 sb->tail = scoreboard_hole_index (sb, last_hole);
Florin Coras93992a92017-05-24 18:03:56 -07001001 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
1002 sb->high_sacked = tmp.end;
Florin Coras6792ec02017-03-13 03:49:51 -07001003 }
1004 else
1005 {
1006 /* If we have holes but snd_una_max is beyond the last hole, update
1007 * last hole end */
Florin Coras93992a92017-05-24 18:03:56 -07001008 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
Florin Coras6792ec02017-03-13 03:49:51 -07001009 last_hole = scoreboard_last_hole (sb);
Florin Coras47596832019-03-12 18:58:54 -07001010 if (seq_gt (tc->snd_nxt, last_hole->end))
Dave Barach2c25a622017-06-26 11:35:07 -04001011 {
1012 if (seq_geq (last_hole->start, sb->high_sacked))
1013 {
Florin Coras47596832019-03-12 18:58:54 -07001014 last_hole->end = tc->snd_nxt;
Dave Barach2c25a622017-06-26 11:35:07 -04001015 }
1016 /* New hole after high sacked block */
Florin Coras47596832019-03-12 18:58:54 -07001017 else if (seq_lt (sb->high_sacked, tc->snd_nxt))
Dave Barach2c25a622017-06-26 11:35:07 -04001018 {
1019 scoreboard_insert_hole (sb, sb->tail, sb->high_sacked,
Florin Coras47596832019-03-12 18:58:54 -07001020 tc->snd_nxt);
Dave Barach2c25a622017-06-26 11:35:07 -04001021 }
1022 }
1023 /* Keep track of max byte sacked for when the last hole
Florin Corasf03a59a2017-06-09 21:07:32 -07001024 * is acked */
1025 if (seq_gt (tmp.end, sb->high_sacked))
1026 sb->high_sacked = tmp.end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001027 }
1028
1029 /* Walk the holes with the SACK blocks */
1030 hole = pool_elt_at_index (sb->holes, sb->head);
Florin Coras93992a92017-05-24 18:03:56 -07001031 while (hole && blk_index < vec_len (tc->rcv_opts.sacks))
Dave Barach68b0fb02017-02-28 15:15:56 -05001032 {
Florin Coras93992a92017-05-24 18:03:56 -07001033 blk = &tc->rcv_opts.sacks[blk_index];
Dave Barach68b0fb02017-02-28 15:15:56 -05001034 if (seq_leq (blk->start, hole->start))
1035 {
1036 /* Block covers hole. Remove hole */
1037 if (seq_geq (blk->end, hole->end))
1038 {
1039 next_hole = scoreboard_next_hole (sb, hole);
1040
Florin Corasf03a59a2017-06-09 21:07:32 -07001041 /* Byte accounting: snd_una needs to be advanced */
1042 if (blk->end == ack)
Dave Barach68b0fb02017-02-28 15:15:56 -05001043 {
Florin Corasf03a59a2017-06-09 21:07:32 -07001044 if (next_hole)
Florin Coras06d11012017-05-17 14:21:51 -07001045 {
Florin Corasf03a59a2017-06-09 21:07:32 -07001046 if (seq_lt (ack, next_hole->start))
1047 sb->snd_una_adv = next_hole->start - ack;
1048 sb->last_bytes_delivered +=
1049 next_hole->start - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -07001050 }
Florin Coras3eb50622017-07-13 01:24:57 -04001051 else
Florin Coras06d11012017-05-17 14:21:51 -07001052 {
Dave Barach2c25a622017-06-26 11:35:07 -04001053 ASSERT (seq_geq (sb->high_sacked, ack));
Florin Coras93992a92017-05-24 18:03:56 -07001054 sb->snd_una_adv = sb->high_sacked - ack;
Florin Corasf03a59a2017-06-09 21:07:32 -07001055 sb->last_bytes_delivered += sb->high_sacked - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -07001056 }
1057 }
1058
Dave Barach68b0fb02017-02-28 15:15:56 -05001059 scoreboard_remove_hole (sb, hole);
1060 hole = next_hole;
1061 }
Florin Coras6792ec02017-03-13 03:49:51 -07001062 /* Partial 'head' overlap */
Dave Barach68b0fb02017-02-28 15:15:56 -05001063 else
1064 {
Florin Coras6792ec02017-03-13 03:49:51 -07001065 if (seq_gt (blk->end, hole->start))
1066 {
Florin Coras6792ec02017-03-13 03:49:51 -07001067 hole->start = blk->end;
1068 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001069 blk_index++;
1070 }
1071 }
1072 else
1073 {
1074 /* Hole must be split */
Florin Coras6792ec02017-03-13 03:49:51 -07001075 if (seq_lt (blk->end, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001076 {
Florin Coras6792ec02017-03-13 03:49:51 -07001077 hole_index = scoreboard_hole_index (sb, hole);
Florin Coras3eb50622017-07-13 01:24:57 -04001078 next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
1079 hole->end);
Florin Coras6792ec02017-03-13 03:49:51 -07001080
1081 /* Pool might've moved */
1082 hole = scoreboard_get_hole (sb, hole_index);
1083 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -05001084 blk_index++;
Florin Coras3eb50622017-07-13 01:24:57 -04001085 ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
Dave Barach68b0fb02017-02-28 15:15:56 -05001086 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001087 else if (seq_lt (blk->start, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001088 {
Florin Coras6792ec02017-03-13 03:49:51 -07001089 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -05001090 }
Florin Coras93992a92017-05-24 18:03:56 -07001091 hole = scoreboard_next_hole (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -05001092 }
1093 }
Florin Coras6792ec02017-03-13 03:49:51 -07001094
Florin Corasecbd20b2018-10-17 23:34:54 -07001095 if (pool_elts (sb->holes) == 1)
1096 {
1097 hole = scoreboard_first_hole (sb);
Florin Coras47596832019-03-12 18:58:54 -07001098 if (hole->start == ack + sb->snd_una_adv && hole->end == tc->snd_nxt)
Florin Corasecbd20b2018-10-17 23:34:54 -07001099 scoreboard_remove_hole (sb, hole);
1100 }
1101
Florin Corasf03a59a2017-06-09 21:07:32 -07001102 scoreboard_update_bytes (tc, sb);
1103 sb->last_sacked_bytes = sb->sacked_bytes
1104 - (old_sacked_bytes - sb->last_bytes_delivered);
Florin Corasca1c8f32018-05-23 21:01:30 -07001105 ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes || tcp_in_recovery (tc));
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001106 ASSERT (sb->sacked_bytes == 0 || tcp_in_recovery (tc)
Florin Coras47596832019-03-12 18:58:54 -07001107 || sb->sacked_bytes < tc->snd_nxt - seq_max (tc->snd_una, ack));
1108 ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_nxt
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001109 - seq_max (tc->snd_una, ack) || tcp_in_recovery (tc));
Dave Barach2c25a622017-06-26 11:35:07 -04001110 ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
1111 || sb->holes[sb->head].start == ack + sb->snd_una_adv);
Florin Corasca1c8f32018-05-23 21:01:30 -07001112 TCP_EVT_DBG (TCP_EVT_CC_SCOREBOARD, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001113}
Filip Tehlare275bed2019-03-06 00:06:56 -08001114#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05001115
Florin Coras93992a92017-05-24 18:03:56 -07001116/**
1117 * Try to update snd_wnd based on feedback received from peer.
Dave Barach68b0fb02017-02-28 15:15:56 -05001118 *
Florin Coras93992a92017-05-24 18:03:56 -07001119 * If successful, and new window is 'effectively' 0, activate persist
1120 * timer.
1121 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001122static void
1123tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
1124{
Florin Coras93992a92017-05-24 18:03:56 -07001125 /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
1126 * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
Florin Coras6792ec02017-03-13 03:49:51 -07001127 if (seq_lt (tc->snd_wl1, seq)
1128 || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001129 {
1130 tc->snd_wnd = snd_wnd;
1131 tc->snd_wl1 = seq;
1132 tc->snd_wl2 = ack;
Florin Coras6792ec02017-03-13 03:49:51 -07001133 TCP_EVT_DBG (TCP_EVT_SND_WND, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001134
Florin Coras9ece3c02018-11-05 11:06:53 -08001135 if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
Florin Corasbb292f42017-05-19 09:49:19 -07001136 {
Florin Coras93992a92017-05-24 18:03:56 -07001137 /* Set persist timer if not set and we just got 0 wnd */
1138 if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
1139 && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
Florin Corasbb292f42017-05-19 09:49:19 -07001140 tcp_persist_timer_set (tc);
1141 }
Florin Coras3e350af2017-03-30 02:54:28 -07001142 else
Florin Coras93992a92017-05-24 18:03:56 -07001143 {
1144 tcp_persist_timer_reset (tc);
Florin Coras9ece3c02018-11-05 11:06:53 -08001145 if (PREDICT_FALSE (!tcp_in_recovery (tc) && tc->rto_boff > 0))
Florin Coras93992a92017-05-24 18:03:56 -07001146 {
1147 tc->rto_boff = 0;
1148 tcp_update_rto (tc);
1149 }
1150 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001151 }
1152}
1153
Filip Tehlare275bed2019-03-06 00:06:56 -08001154#ifndef CLIB_MARCH_VARIANT
Florin Corasd2aab832018-05-22 11:39:59 -07001155/**
1156 * Init loss recovery/fast recovery.
1157 *
1158 * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
1159 * updated in @ref tcp_cc_handle_event after fast retransmit
1160 */
Florin Coras6792ec02017-03-13 03:49:51 -07001161void
Florin Coras93992a92017-05-24 18:03:56 -07001162tcp_cc_init_congestion (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001163{
Florin Coras93992a92017-05-24 18:03:56 -07001164 tcp_fastrecovery_on (tc);
Florin Coras47596832019-03-12 18:58:54 -07001165 tc->snd_congestion = tc->snd_nxt;
Florin Coras62166002018-04-18 16:40:55 -07001166 tc->cwnd_acc_bytes = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001167 tc->snd_rxt_bytes = 0;
1168 tc->prev_ssthresh = tc->ssthresh;
1169 tc->prev_cwnd = tc->cwnd;
Dave Barach68b0fb02017-02-28 15:15:56 -05001170 tc->cc_algo->congestion (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001171 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001172}
Filip Tehlare275bed2019-03-06 00:06:56 -08001173#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05001174
Florin Coras93992a92017-05-24 18:03:56 -07001175static void
1176tcp_cc_recovery_exit (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001177{
Florin Coras93992a92017-05-24 18:03:56 -07001178 tc->rto_boff = 0;
Florin Corasf1762d62017-09-24 19:43:08 -04001179 tcp_update_rto (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001180 tc->snd_rxt_ts = 0;
Florin Corasefefc6b2018-11-07 12:49:19 -08001181 tc->rtt_ts = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001182 tcp_recovery_off (tc);
Florin Corasf1762d62017-09-24 19:43:08 -04001183 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Florin Coras93992a92017-05-24 18:03:56 -07001184}
Florin Coras3e350af2017-03-30 02:54:28 -07001185
Florin Coraseff6b822019-07-03 19:51:02 -07001186#ifndef CLIB_MARCH_VARIANT
1187void
1188tcp_cc_fastrecovery_clear (tcp_connection_t * tc)
Florin Coras93992a92017-05-24 18:03:56 -07001189{
Florin Coras93992a92017-05-24 18:03:56 -07001190 tc->snd_rxt_bytes = 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001191 tc->rcv_dupacks = 0;
Florin Corasefefc6b2018-11-07 12:49:19 -08001192 tc->rtt_ts = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001193
Florin Coras93992a92017-05-24 18:03:56 -07001194 tcp_fastrecovery_off (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001195 tcp_fastrecovery_first_off (tc);
Florin Corasd67f1122018-05-21 17:47:40 -07001196
Florin Corasf1762d62017-09-24 19:43:08 -04001197 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Dave Barach68b0fb02017-02-28 15:15:56 -05001198}
Filip Tehlare275bed2019-03-06 00:06:56 -08001199#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05001200
1201static void
Florin Coras93992a92017-05-24 18:03:56 -07001202tcp_cc_congestion_undo (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001203{
Florin Coras93992a92017-05-24 18:03:56 -07001204 tc->cwnd = tc->prev_cwnd;
1205 tc->ssthresh = tc->prev_ssthresh;
Florin Coras93992a92017-05-24 18:03:56 -07001206 tc->rcv_dupacks = 0;
1207 if (tcp_in_recovery (tc))
Florin Coras47596832019-03-12 18:58:54 -07001208 {
1209 tcp_cc_recovery_exit (tc);
1210 tc->snd_nxt = seq_max (tc->snd_nxt, tc->snd_congestion);
1211 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001212 else if (tcp_in_fastrecovery (tc))
Florin Coras47596832019-03-12 18:58:54 -07001213 {
Florin Coraseff6b822019-07-03 19:51:02 -07001214 tcp_cc_fastrecovery_clear (tc);
Florin Coras47596832019-03-12 18:58:54 -07001215 }
Florin Coraseff6b822019-07-03 19:51:02 -07001216 tcp_cc_undo_recovery (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001217 ASSERT (tc->rto_boff == 0);
Florin Corasf1762d62017-09-24 19:43:08 -04001218 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 5);
Florin Coras93992a92017-05-24 18:03:56 -07001219}
Dave Barach68b0fb02017-02-28 15:15:56 -05001220
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001221static inline u8
1222tcp_cc_is_spurious_timeout_rxt (tcp_connection_t * tc)
Florin Coras93992a92017-05-24 18:03:56 -07001223{
Florin Corasf1762d62017-09-24 19:43:08 -04001224 return (tcp_in_recovery (tc) && tc->rto_boff == 1
Dave Barach2c25a622017-06-26 11:35:07 -04001225 && tc->snd_rxt_ts
Florin Coras93992a92017-05-24 18:03:56 -07001226 && tcp_opts_tstamp (&tc->rcv_opts)
1227 && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
1228}
1229
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001230static inline u8
1231tcp_cc_is_spurious_fast_rxt (tcp_connection_t * tc)
1232{
1233 return (tcp_in_fastrecovery (tc)
1234 && tc->cwnd > tc->ssthresh + 3 * tc->snd_mss);
1235}
1236
1237static u8
1238tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
1239{
1240 return (tcp_cc_is_spurious_timeout_rxt (tc)
1241 || tcp_cc_is_spurious_fast_rxt (tc));
1242}
1243
Florin Coras0dbd5172018-06-25 16:19:34 -07001244static int
Florin Coras93992a92017-05-24 18:03:56 -07001245tcp_cc_recover (tcp_connection_t * tc)
1246{
1247 ASSERT (tcp_in_cong_recovery (tc));
1248 if (tcp_cc_is_spurious_retransmit (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001249 {
Florin Coras93992a92017-05-24 18:03:56 -07001250 tcp_cc_congestion_undo (tc);
1251 return 1;
1252 }
1253
1254 if (tcp_in_recovery (tc))
1255 tcp_cc_recovery_exit (tc);
1256 else if (tcp_in_fastrecovery (tc))
Florin Coraseff6b822019-07-03 19:51:02 -07001257 {
1258 tcp_cc_recovered (tc);
1259 tcp_cc_fastrecovery_clear (tc);
1260 }
Florin Coras93992a92017-05-24 18:03:56 -07001261
1262 ASSERT (tc->rto_boff == 0);
1263 ASSERT (!tcp_in_cong_recovery (tc));
Florin Coras3eb50622017-07-13 01:24:57 -04001264 ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001265 return 0;
1266}
1267
1268static void
Florin Coras52814732019-06-12 15:38:19 -07001269tcp_cc_update (tcp_connection_t * tc, tcp_rate_sample_t * rs)
Florin Coras93992a92017-05-24 18:03:56 -07001270{
Florin Coras3eb50622017-07-13 01:24:57 -04001271 ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001272
1273 /* Congestion avoidance */
Florin Coras52814732019-06-12 15:38:19 -07001274 tcp_cc_rcv_ack (tc, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001275
1276 /* If a cumulative ack, make sure dupacks is 0 */
1277 tc->rcv_dupacks = 0;
1278
1279 /* When dupacks hits the threshold we only enter fast retransmit if
1280 * cumulative ack covers more than snd_congestion. Should snd_una
1281 * wrap this test may fail under otherwise valid circumstances.
1282 * Therefore, proactively update snd_congestion when wrap detected. */
1283 if (PREDICT_FALSE
1284 (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1285 && seq_gt (tc->snd_congestion, tc->snd_una)))
1286 tc->snd_congestion = tc->snd_una - 1;
1287}
1288
1289static u8
1290tcp_should_fastrecover_sack (tcp_connection_t * tc)
1291{
1292 return (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss < tc->sack_sb.sacked_bytes;
1293}
1294
1295static u8
1296tcp_should_fastrecover (tcp_connection_t * tc)
1297{
1298 return (tc->rcv_dupacks == TCP_DUPACK_THRESHOLD
1299 || tcp_should_fastrecover_sack (tc));
1300}
1301
Filip Tehlare275bed2019-03-06 00:06:56 -08001302#ifndef CLIB_MARCH_VARIANT
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001303void
Florin Corasbe72ae62018-11-01 11:23:03 -07001304tcp_program_fastretransmit (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001305{
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001306 if (!(tc->flags & TCP_CONN_FRXT_PENDING))
1307 {
1308 vec_add1 (wrk->pending_fast_rxt, tc->c_c_index);
1309 tc->flags |= TCP_CONN_FRXT_PENDING;
1310 }
1311}
1312
1313void
Florin Corasbe72ae62018-11-01 11:23:03 -07001314tcp_do_fastretransmits (tcp_worker_ctx_t * wrk)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001315{
Florin Corasbe72ae62018-11-01 11:23:03 -07001316 u32 *ongoing_fast_rxt, burst_bytes, sent_bytes, thread_index;
Florin Corase55a6d72018-10-31 23:09:22 -07001317 u32 max_burst_size, burst_size, n_segs = 0, n_segs_now;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001318 tcp_connection_t *tc;
Florin Corase55a6d72018-10-31 23:09:22 -07001319 u64 last_cpu_time;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001320 int i;
1321
Florin Corase55a6d72018-10-31 23:09:22 -07001322 if (vec_len (wrk->pending_fast_rxt) == 0
1323 && vec_len (wrk->postponed_fast_rxt) == 0)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001324 return;
1325
Florin Corasbe72ae62018-11-01 11:23:03 -07001326 thread_index = wrk->vm->thread_index;
Florin Corase55a6d72018-10-31 23:09:22 -07001327 last_cpu_time = wrk->vm->clib_time.last_cpu_time;
1328 ongoing_fast_rxt = wrk->ongoing_fast_rxt;
1329 vec_append (ongoing_fast_rxt, wrk->postponed_fast_rxt);
1330 vec_append (ongoing_fast_rxt, wrk->pending_fast_rxt);
1331
1332 _vec_len (wrk->postponed_fast_rxt) = 0;
1333 _vec_len (wrk->pending_fast_rxt) = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001334
Florin Coras776f3d82018-11-02 08:23:58 -07001335 max_burst_size = VLIB_FRAME_SIZE / vec_len (ongoing_fast_rxt);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001336 max_burst_size = clib_max (max_burst_size, 1);
1337
Florin Corase55a6d72018-10-31 23:09:22 -07001338 for (i = 0; i < vec_len (ongoing_fast_rxt); i++)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001339 {
Florin Coras47a9c652019-03-12 20:37:09 -07001340 tc = tcp_connection_get (ongoing_fast_rxt[i], thread_index);
Guoao Sun8062cae2019-06-11 22:07:21 +08001341 if (!tc)
1342 continue;
Florin Coras47a9c652019-03-12 20:37:09 -07001343 if (!tcp_in_fastrecovery (tc))
1344 {
1345 tc->flags &= ~TCP_CONN_FRXT_PENDING;
1346 continue;
1347 }
1348
Florin Corase55a6d72018-10-31 23:09:22 -07001349 if (n_segs >= VLIB_FRAME_SIZE)
1350 {
1351 vec_add1 (wrk->postponed_fast_rxt, ongoing_fast_rxt[i]);
1352 continue;
1353 }
1354
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001355 tc->flags &= ~TCP_CONN_FRXT_PENDING;
Florin Corase55a6d72018-10-31 23:09:22 -07001356 burst_size = clib_min (max_burst_size, VLIB_FRAME_SIZE - n_segs);
1357 burst_bytes = transport_connection_tx_pacer_burst (&tc->connection,
1358 last_cpu_time);
1359 burst_size = clib_min (burst_size, burst_bytes / tc->snd_mss);
1360 if (!burst_size)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001361 {
Florin Corasbe72ae62018-11-01 11:23:03 -07001362 tcp_program_fastretransmit (wrk, tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001363 continue;
1364 }
1365
Florin Corasbe72ae62018-11-01 11:23:03 -07001366 n_segs_now = tcp_fast_retransmit (wrk, tc, burst_size);
Florin Corase55a6d72018-10-31 23:09:22 -07001367 sent_bytes = clib_min (n_segs_now * tc->snd_mss, burst_bytes);
1368 transport_connection_tx_pacer_update_bytes (&tc->connection,
1369 sent_bytes);
Florin Corase55a6d72018-10-31 23:09:22 -07001370 n_segs += n_segs_now;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001371 }
Florin Corase55a6d72018-10-31 23:09:22 -07001372 _vec_len (ongoing_fast_rxt) = 0;
1373 wrk->ongoing_fast_rxt = ongoing_fast_rxt;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001374}
Filip Tehlare275bed2019-03-06 00:06:56 -08001375#endif /* CLIB_MARCH_VARIANT */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001376
Florin Corasf03a59a2017-06-09 21:07:32 -07001377/**
1378 * One function to rule them all ... and in the darkness bind them
1379 */
Florin Coras93992a92017-05-24 18:03:56 -07001380static void
Florin Coras52814732019-06-12 15:38:19 -07001381tcp_cc_handle_event (tcp_connection_t * tc, tcp_rate_sample_t * rs,
1382 u32 is_dack)
Florin Coras93992a92017-05-24 18:03:56 -07001383{
Florin Corasf03a59a2017-06-09 21:07:32 -07001384 u32 rxt_delivered;
1385
Florin Corasca1c8f32018-05-23 21:01:30 -07001386 if (tcp_in_fastrecovery (tc) && tcp_opts_sack_permitted (&tc->rcv_opts))
1387 {
1388 if (tc->bytes_acked)
1389 goto partial_ack;
Florin Corasbe72ae62018-11-01 11:23:03 -07001390 tcp_program_fastretransmit (tcp_get_worker (tc->c_thread_index), tc);
Florin Corasca1c8f32018-05-23 21:01:30 -07001391 return;
1392 }
Florin Coras93992a92017-05-24 18:03:56 -07001393 /*
1394 * Duplicate ACK. Check if we should enter fast recovery, or if already in
1395 * it account for the bytes that left the network.
1396 */
Florin Corasca1c8f32018-05-23 21:01:30 -07001397 else if (is_dack && !tcp_in_recovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001398 {
Florin Corasd2aab832018-05-22 11:39:59 -07001399 TCP_EVT_DBG (TCP_EVT_DUPACK_RCVD, tc, 1);
Florin Coras47596832019-03-12 18:58:54 -07001400 ASSERT (tc->snd_una != tc->snd_nxt || tc->sack_sb.last_sacked_bytes);
Dave Barach2c25a622017-06-26 11:35:07 -04001401
Florin Coras93992a92017-05-24 18:03:56 -07001402 tc->rcv_dupacks++;
1403
Florin Corasd2aab832018-05-22 11:39:59 -07001404 /* Pure duplicate ack. If some data got acked, it's handled lower */
Florin Coras93992a92017-05-24 18:03:56 -07001405 if (tc->rcv_dupacks > TCP_DUPACK_THRESHOLD && !tc->bytes_acked)
Dave Barach68b0fb02017-02-28 15:15:56 -05001406 {
Florin Coras93992a92017-05-24 18:03:56 -07001407 ASSERT (tcp_in_fastrecovery (tc));
Florin Coras52814732019-06-12 15:38:19 -07001408 tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001409 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001410 }
Florin Coras93992a92017-05-24 18:03:56 -07001411 else if (tcp_should_fastrecover (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001412 {
Florin Corasc44a5582018-11-01 16:30:54 -07001413 u32 pacer_wnd;
1414
Florin Corasd2aab832018-05-22 11:39:59 -07001415 ASSERT (!tcp_in_fastrecovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001416
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001417 /* Heuristic to catch potential late dupacks
1418 * after fast retransmit exits */
1419 if (is_dack && tc->snd_una == tc->snd_congestion
1420 && timestamp_leq (tc->rcv_opts.tsecr, tc->tsecr_last_ack))
Florin Coras93992a92017-05-24 18:03:56 -07001421 {
1422 tc->rcv_dupacks = 0;
1423 return;
1424 }
1425
1426 tcp_cc_init_congestion (tc);
Florin Coras52814732019-06-12 15:38:19 -07001427 tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001428
Florin Coras3eb50622017-07-13 01:24:57 -04001429 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Corase55a6d72018-10-31 23:09:22 -07001430 {
1431 tc->cwnd = tc->ssthresh;
1432 scoreboard_init_high_rxt (&tc->sack_sb, tc->snd_una);
Florin Corase55a6d72018-10-31 23:09:22 -07001433 }
1434 else
1435 {
1436 /* Post retransmit update cwnd to ssthresh and account for the
1437 * three segments that have left the network and should've been
1438 * buffered at the receiver XXX */
1439 tc->cwnd = tc->ssthresh + 3 * tc->snd_mss;
1440 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001441
Florin Coras36ee9f12018-11-02 12:52:10 -07001442 /* Constrain rate until we get a partial ack */
Florin Corasc44a5582018-11-01 16:30:54 -07001443 pacer_wnd = clib_max (0.1 * tc->cwnd, 2 * tc->snd_mss);
1444 tcp_connection_tx_pacer_reset (tc, pacer_wnd,
1445 0 /* start bucket */ );
Florin Corasbe72ae62018-11-01 11:23:03 -07001446 tcp_program_fastretransmit (tcp_get_worker (tc->c_thread_index),
1447 tc);
Florin Coras93992a92017-05-24 18:03:56 -07001448 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001449 }
Florin Coras93992a92017-05-24 18:03:56 -07001450 else if (!tc->bytes_acked
1451 || (tc->bytes_acked && !tcp_in_cong_recovery (tc)))
1452 {
Florin Coras52814732019-06-12 15:38:19 -07001453 tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001454 return;
1455 }
1456 else
1457 goto partial_ack;
1458 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001459 /* Don't allow entry in fast recovery if still in recovery, for now */
1460 else if (0 && is_dack && tcp_in_recovery (tc))
1461 {
1462 /* If of of the two conditions lower hold, reset dupacks because
1463 * we're probably after timeout (RFC6582 heuristics).
1464 * If Cumulative ack does not cover more than congestion threshold,
1465 * and:
1466 * 1) The following doesn't hold: The congestion window is greater
1467 * than SMSS bytes and the difference between highest_ack
1468 * and prev_highest_ack is at most 4*SMSS bytes
1469 * 2) Echoed timestamp in the last non-dup ack does not equal the
1470 * stored timestamp
1471 */
1472 if (seq_leq (tc->snd_una, tc->snd_congestion)
1473 && ((!(tc->cwnd > tc->snd_mss
1474 && tc->bytes_acked <= 4 * tc->snd_mss))
1475 || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
1476 {
1477 tc->rcv_dupacks = 0;
1478 return;
1479 }
1480 }
Florin Coras93992a92017-05-24 18:03:56 -07001481
Florin Coras93992a92017-05-24 18:03:56 -07001482 if (!tc->bytes_acked)
1483 return;
1484
1485partial_ack:
Florin Corasd2aab832018-05-22 11:39:59 -07001486 TCP_EVT_DBG (TCP_EVT_CC_PACK, tc);
1487
Florin Coras93992a92017-05-24 18:03:56 -07001488 /*
1489 * Legitimate ACK. 1) See if we can exit recovery
1490 */
Florin Coras93992a92017-05-24 18:03:56 -07001491
Florin Corasefefc6b2018-11-07 12:49:19 -08001492 /* Update the pacing rate. For the first partial ack we move from
1493 * the artificially constrained rate to the one after congestion */
1494 tcp_connection_tx_pacer_update (tc);
1495
Florin Coras93992a92017-05-24 18:03:56 -07001496 if (seq_geq (tc->snd_una, tc->snd_congestion))
1497 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001498 tcp_retransmit_timer_update (tc);
1499
Florin Coras93992a92017-05-24 18:03:56 -07001500 /* If spurious return, we've already updated everything */
1501 if (tcp_cc_recover (tc))
Florin Corasf03a59a2017-06-09 21:07:32 -07001502 {
1503 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1504 return;
1505 }
Florin Coras93992a92017-05-24 18:03:56 -07001506
Florin Coras93992a92017-05-24 18:03:56 -07001507 /* Treat as congestion avoidance ack */
Florin Coras52814732019-06-12 15:38:19 -07001508 tcp_cc_rcv_ack (tc, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001509 return;
1510 }
1511
1512 /*
1513 * Legitimate ACK. 2) If PARTIAL ACK try to retransmit
1514 */
Florin Coras93992a92017-05-24 18:03:56 -07001515
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001516 /* XXX limit this only to first partial ack? */
Florin Coras2e31cc32018-09-25 14:00:34 -07001517 tcp_retransmit_timer_update (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001518
Florin Coras93992a92017-05-24 18:03:56 -07001519 /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
Florin Corasd2aab832018-05-22 11:39:59 -07001520 * reset dupacks to 0. Also needed if in congestion recovery */
Florin Coras93992a92017-05-24 18:03:56 -07001521 tc->rcv_dupacks = 0;
1522
Florin Coras93992a92017-05-24 18:03:56 -07001523 /* Post RTO timeout don't try anything fancy */
1524 if (tcp_in_recovery (tc))
Florin Corasd2aab832018-05-22 11:39:59 -07001525 {
Florin Coras52814732019-06-12 15:38:19 -07001526 tcp_cc_rcv_ack (tc, rs);
Florin Coras3ec66b02018-08-23 16:27:05 -07001527 transport_add_tx_event (&tc->connection);
Florin Corasd2aab832018-05-22 11:39:59 -07001528 return;
1529 }
Florin Coras93992a92017-05-24 18:03:56 -07001530
1531 /* Remove retransmitted bytes that have been delivered */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001532 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras93992a92017-05-24 18:03:56 -07001533 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001534 ASSERT (tc->bytes_acked + tc->sack_sb.snd_una_adv
1535 >= tc->sack_sb.last_bytes_delivered
1536 || (tc->flags & TCP_CONN_FINSNT));
1537
Florin Coras93992a92017-05-24 18:03:56 -07001538 /* If we have sacks and we haven't gotten an ack beyond high_rxt,
1539 * remove sacked bytes delivered */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001540 if (seq_lt (tc->snd_una, tc->sack_sb.high_rxt))
1541 {
1542 rxt_delivered = tc->bytes_acked + tc->sack_sb.snd_una_adv
1543 - tc->sack_sb.last_bytes_delivered;
1544 ASSERT (tc->snd_rxt_bytes >= rxt_delivered);
1545 tc->snd_rxt_bytes -= rxt_delivered;
1546 }
1547 else
1548 {
1549 /* Apparently all retransmitted holes have been acked */
1550 tc->snd_rxt_bytes = 0;
Florin Coras36ee9f12018-11-02 12:52:10 -07001551 tc->sack_sb.high_rxt = tc->snd_una;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001552 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001553 }
1554 else
1555 {
Florin Coras36ee9f12018-11-02 12:52:10 -07001556 tcp_fastrecovery_first_on (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001557 if (tc->snd_rxt_bytes > tc->bytes_acked)
1558 tc->snd_rxt_bytes -= tc->bytes_acked;
1559 else
1560 tc->snd_rxt_bytes = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001561 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001562
Florin Coras52814732019-06-12 15:38:19 -07001563 tcp_cc_rcv_cong_ack (tc, TCP_CC_PARTIALACK, rs);
Dave Barach68b0fb02017-02-28 15:15:56 -05001564
Florin Coras93992a92017-05-24 18:03:56 -07001565 /*
1566 * Since this was a partial ack, try to retransmit some more data
1567 */
Florin Corasbe72ae62018-11-01 11:23:03 -07001568 tcp_program_fastretransmit (tcp_get_worker (tc->c_thread_index), tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001569}
1570
Florin Coras93992a92017-05-24 18:03:56 -07001571/**
1572 * Process incoming ACK
1573 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001574static int
Florin Coras9ece3c02018-11-05 11:06:53 -08001575tcp_rcv_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
Florin Coras7ac053b2018-11-05 15:57:21 -08001576 tcp_header_t * th, u32 * error)
Dave Barach68b0fb02017-02-28 15:15:56 -05001577{
Florin Coras93992a92017-05-24 18:03:56 -07001578 u32 prev_snd_wnd, prev_snd_una;
Florin Coras52814732019-06-12 15:38:19 -07001579 tcp_rate_sample_t rs = { 0 };
Florin Coras93992a92017-05-24 18:03:56 -07001580 u8 is_dack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001581
Florin Corasf03a59a2017-06-09 21:07:32 -07001582 TCP_EVT_DBG (TCP_EVT_CC_STAT, tc);
1583
Florin Coras6792ec02017-03-13 03:49:51 -07001584 /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
Florin Coras93992a92017-05-24 18:03:56 -07001585 if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001586 {
Florin Coras47596832019-03-12 18:58:54 -07001587 /* We've probably entered recovery and the peer still has some
1588 * of the data we've sent. Update snd_nxt and accept the ack */
Florin Coras282a3cb2019-04-02 21:43:38 -07001589 if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)
1590 && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
Florin Corasca1c8f32018-05-23 21:01:30 -07001591 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001592 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
Florin Corasca1c8f32018-05-23 21:01:30 -07001593 goto process_ack;
1594 }
1595
Florin Coras47596832019-03-12 18:58:54 -07001596 *error = TCP_ERROR_ACK_FUTURE;
1597 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 0,
Florin Coras6792ec02017-03-13 03:49:51 -07001598 vnet_buffer (b)->tcp.ack_number);
Florin Coras47596832019-03-12 18:58:54 -07001599 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001600 }
1601
Florin Coras6792ec02017-03-13 03:49:51 -07001602 /* If old ACK, probably it's an old dupack */
Florin Coras93992a92017-05-24 18:03:56 -07001603 if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001604 {
1605 *error = TCP_ERROR_ACK_OLD;
Florin Coras6792ec02017-03-13 03:49:51 -07001606 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 1,
1607 vnet_buffer (b)->tcp.ack_number);
1608 if (tcp_in_fastrecovery (tc) && tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
Florin Coras52814732019-06-12 15:38:19 -07001609 tcp_cc_handle_event (tc, 0, 1);
Florin Corasc28764f2017-04-26 00:08:42 -07001610 /* Don't drop yet */
1611 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001612 }
1613
Florin Coras47596832019-03-12 18:58:54 -07001614process_ack:
1615
Florin Coras93992a92017-05-24 18:03:56 -07001616 /*
1617 * Looks okay, process feedback
1618 */
Florin Coras93992a92017-05-24 18:03:56 -07001619 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001620 tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1621
Florin Coras93992a92017-05-24 18:03:56 -07001622 prev_snd_wnd = tc->snd_wnd;
1623 prev_snd_una = tc->snd_una;
1624 tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1625 vnet_buffer (b)->tcp.ack_number,
1626 clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1627 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
1628 tc->snd_una = vnet_buffer (b)->tcp.ack_number + tc->sack_sb.snd_una_adv;
1629 tcp_validate_txf_size (tc, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001630
Florin Coras93992a92017-05-24 18:03:56 -07001631 if (tc->bytes_acked)
Florin Coras9ece3c02018-11-05 11:06:53 -08001632 {
1633 tcp_program_dequeue (wrk, tc);
1634 tcp_update_rtt (tc, vnet_buffer (b)->tcp.ack_number);
1635 }
Florin Coras93992a92017-05-24 18:03:56 -07001636
Florin Coras52814732019-06-12 15:38:19 -07001637 if (tc->flags & TCP_CONN_RATE_SAMPLE)
1638 tcp_bt_sample_delivery_rate (tc, &rs);
1639
Florin Coras6534b7a2017-07-18 05:38:03 -04001640 TCP_EVT_DBG (TCP_EVT_ACK_RCVD, tc);
1641
Florin Coras93992a92017-05-24 18:03:56 -07001642 /*
1643 * Check if we have congestion event
1644 */
1645
1646 if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001647 {
Florin Coras52814732019-06-12 15:38:19 -07001648 tcp_cc_handle_event (tc, &rs, is_dack);
Florin Corasb2215d62017-08-01 16:56:58 -07001649 if (!tcp_in_cong_recovery (tc))
Florin Corasa9d5bea2018-12-17 08:24:19 -08001650 {
1651 *error = TCP_ERROR_ACK_OK;
1652 return 0;
1653 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001654 *error = TCP_ERROR_ACK_DUP;
Florin Corasca09d072018-10-01 18:31:02 -07001655 if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th))
1656 return 0;
1657 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001658 }
1659
Florin Coras6792ec02017-03-13 03:49:51 -07001660 /*
Florin Coras93992a92017-05-24 18:03:56 -07001661 * Update congestion control (slow start/congestion avoidance)
Florin Coras6792ec02017-03-13 03:49:51 -07001662 */
Florin Coras52814732019-06-12 15:38:19 -07001663 tcp_cc_update (tc, &rs);
Florin Coras00cd22d2018-04-18 13:20:18 -07001664 *error = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001665 return 0;
1666}
1667
Florin Corasb11175d2018-11-09 14:34:08 -08001668static void
1669tcp_program_disconnect (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1670{
1671 if (!tcp_disconnect_pending (tc))
1672 {
1673 vec_add1 (wrk->pending_disconnects, tc->c_c_index);
1674 tcp_disconnect_pending_on (tc);
1675 }
1676}
1677
1678static void
1679tcp_handle_disconnects (tcp_worker_ctx_t * wrk)
1680{
1681 u32 thread_index, *pending_disconnects;
1682 tcp_connection_t *tc;
1683 int i;
1684
1685 if (!vec_len (wrk->pending_disconnects))
1686 return;
1687
1688 thread_index = wrk->vm->thread_index;
1689 pending_disconnects = wrk->pending_disconnects;
1690 for (i = 0; i < vec_len (pending_disconnects); i++)
1691 {
1692 tc = tcp_connection_get (pending_disconnects[i], thread_index);
1693 tcp_disconnect_pending_off (tc);
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001694 session_transport_closing_notify (&tc->connection);
Florin Corasb11175d2018-11-09 14:34:08 -08001695 }
1696 _vec_len (wrk->pending_disconnects) = 0;
1697}
1698
1699static void
1700tcp_rcv_fin (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
1701 u32 * error)
1702{
Florin Corasf73d4c22019-06-28 09:18:48 -07001703 /* Reject out-of-order fins */
1704 if (vnet_buffer (b)->tcp.seq_end != tc->rcv_nxt)
1705 return;
1706
Florin Coras3c514d52018-12-22 11:39:33 -08001707 /* Account for the FIN and send ack */
1708 tc->rcv_nxt += 1;
1709 tcp_program_ack (wrk, tc);
Florin Corasb11175d2018-11-09 14:34:08 -08001710 /* Enter CLOSE-WAIT and notify session. To avoid lingering
1711 * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
Florin Coras3c514d52018-12-22 11:39:33 -08001712 tcp_connection_set_state (tc, TCP_STATE_CLOSE_WAIT);
Florin Corasb11175d2018-11-09 14:34:08 -08001713 tcp_program_disconnect (wrk, tc);
1714 tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
1715 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc);
1716 *error = TCP_ERROR_FIN_RCVD;
1717}
1718
Filip Tehlare275bed2019-03-06 00:06:56 -08001719#ifndef CLIB_MARCH_VARIANT
Florin Coras3eb50622017-07-13 01:24:57 -04001720static u8
1721tcp_sack_vector_is_sane (sack_block_t * sacks)
1722{
1723 int i;
1724 for (i = 1; i < vec_len (sacks); i++)
1725 {
1726 if (sacks[i - 1].end == sacks[i].start)
1727 return 0;
1728 }
1729 return 1;
1730}
1731
Dave Barach68b0fb02017-02-28 15:15:56 -05001732/**
1733 * Build SACK list as per RFC2018.
1734 *
1735 * Makes sure the first block contains the segment that generated the current
1736 * ACK and the following ones are the ones most recently reported in SACK
1737 * blocks.
1738 *
1739 * @param tc TCP connection for which the SACK list is updated
1740 * @param start Start sequence number of the newest SACK block
1741 * @param end End sequence of the newest SACK block
1742 */
Florin Coras45d34962017-04-25 00:05:27 -07001743void
Dave Barach68b0fb02017-02-28 15:15:56 -05001744tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1745{
Florin Corasb691f762019-02-22 09:07:20 -08001746 sack_block_t *new_list = tc->snd_sacks_fl, *block = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001747 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001748
1749 /* If the first segment is ooo add it to the list. Last write might've moved
1750 * rcv_nxt over the first segment. */
1751 if (seq_lt (tc->rcv_nxt, start))
1752 {
Florin Coras45d34962017-04-25 00:05:27 -07001753 vec_add2 (new_list, block, 1);
1754 block->start = start;
1755 block->end = end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001756 }
1757
1758 /* Find the blocks still worth keeping. */
1759 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1760 {
Florin Coras45d34962017-04-25 00:05:27 -07001761 /* Discard if rcv_nxt advanced beyond current block */
1762 if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001763 continue;
1764
Florin Coras45d34962017-04-25 00:05:27 -07001765 /* Merge or drop if segment overlapped by the new segment */
1766 if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1767 && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1768 {
1769 if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1770 new_list[0].start = tc->snd_sacks[i].start;
1771 if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1772 new_list[0].end = tc->snd_sacks[i].end;
1773 continue;
1774 }
1775
1776 /* Save to new SACK list if we have space. */
1777 if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
Florin Coras47596832019-03-12 18:58:54 -07001778 vec_add1 (new_list, tc->snd_sacks[i]);
Dave Barach68b0fb02017-02-28 15:15:56 -05001779 }
1780
Florin Coras45d34962017-04-25 00:05:27 -07001781 ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
Florin Coras6792ec02017-03-13 03:49:51 -07001782
Dave Barach68b0fb02017-02-28 15:15:56 -05001783 /* Replace old vector with new one */
Florin Corasb691f762019-02-22 09:07:20 -08001784 vec_reset_length (tc->snd_sacks);
1785 tc->snd_sacks_fl = tc->snd_sacks;
Dave Barach68b0fb02017-02-28 15:15:56 -05001786 tc->snd_sacks = new_list;
Florin Coras3eb50622017-07-13 01:24:57 -04001787
1788 /* Segments should not 'touch' */
1789 ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
Dave Barach68b0fb02017-02-28 15:15:56 -05001790}
1791
Florin Corasca1c8f32018-05-23 21:01:30 -07001792u32
1793tcp_sack_list_bytes (tcp_connection_t * tc)
1794{
1795 u32 bytes = 0, i;
1796 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1797 bytes += tc->snd_sacks[i].end - tc->snd_sacks[i].start;
1798 return bytes;
1799}
Filip Tehlare275bed2019-03-06 00:06:56 -08001800#endif /* CLIB_MARCH_VARIANT */
Florin Corasca1c8f32018-05-23 21:01:30 -07001801
Dave Barach68b0fb02017-02-28 15:15:56 -05001802/** Enqueue data for delivery to application */
Florin Coras0dbd5172018-06-25 16:19:34 -07001803static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001804tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1805 u16 data_len)
1806{
Florin Coras1f152cd2017-08-18 19:28:03 -07001807 int written, error = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001808
Dave Barach2c25a622017-06-26 11:35:07 -04001809 ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001810 ASSERT (data_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001811 written = session_enqueue_stream_connection (&tc->connection, b, 0,
1812 1 /* queue event */ , 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001813
Florin Coras6792ec02017-03-13 03:49:51 -07001814 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 0, data_len, written);
1815
Dave Barach68b0fb02017-02-28 15:15:56 -05001816 /* Update rcv_nxt */
1817 if (PREDICT_TRUE (written == data_len))
1818 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001819 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001820 }
1821 /* If more data written than expected, account for out-of-order bytes. */
1822 else if (written > data_len)
1823 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001824 tc->rcv_nxt += written;
Florin Corasca1c8f32018-05-23 21:01:30 -07001825 TCP_EVT_DBG (TCP_EVT_CC_INPUT, tc, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001826 }
1827 else if (written > 0)
1828 {
1829 /* We've written something but FIFO is probably full now */
1830 tc->rcv_nxt += written;
Florin Coras1f152cd2017-08-18 19:28:03 -07001831 error = TCP_ERROR_PARTIALLY_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001832 }
1833 else
1834 {
Dave Barach68b0fb02017-02-28 15:15:56 -05001835 return TCP_ERROR_FIFO_FULL;
1836 }
1837
Florin Coras6792ec02017-03-13 03:49:51 -07001838 /* Update SACK list if need be */
Florin Coras93992a92017-05-24 18:03:56 -07001839 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras6792ec02017-03-13 03:49:51 -07001840 {
1841 /* Remove SACK blocks that have been delivered */
1842 tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1843 }
1844
Florin Coras1f152cd2017-08-18 19:28:03 -07001845 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -05001846}
1847
1848/** Enqueue out-of-order data */
Florin Coras0dbd5172018-06-25 16:19:34 -07001849static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001850tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1851 u16 data_len)
1852{
Florin Coras288eaab2019-02-03 15:26:14 -08001853 session_t *s0;
Florin Coras3eb50622017-07-13 01:24:57 -04001854 int rv, offset;
Florin Coras6792ec02017-03-13 03:49:51 -07001855
Florin Corasf03a59a2017-06-09 21:07:32 -07001856 ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001857 ASSERT (data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001858
Florin Corasf03a59a2017-06-09 21:07:32 -07001859 /* Enqueue out-of-order data with relative offset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07001860 rv = session_enqueue_stream_connection (&tc->connection, b,
1861 vnet_buffer (b)->tcp.seq_number -
1862 tc->rcv_nxt, 0 /* queue event */ ,
1863 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001864
1865 /* Nothing written */
1866 if (rv)
1867 {
1868 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, 0);
1869 return TCP_ERROR_FIFO_FULL;
1870 }
1871
1872 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001873
1874 /* Update SACK list if in use */
Florin Coras93992a92017-05-24 18:03:56 -07001875 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001876 {
1877 ooo_segment_t *newest;
1878 u32 start, end;
1879
Florin Corascea194d2017-10-02 00:18:51 -07001880 s0 = session_get (tc->c_s_index, tc->c_thread_index);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001881
Dave Barach68b0fb02017-02-28 15:15:56 -05001882 /* Get the newest segment from the fifo */
Florin Coras288eaab2019-02-03 15:26:14 -08001883 newest = svm_fifo_newest_ooo_segment (s0->rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001884 if (newest)
1885 {
Sirshak Das28aa5392019-02-05 01:33:33 -06001886 offset = ooo_segment_offset_prod (s0->rx_fifo, newest);
Florin Coras3eb50622017-07-13 01:24:57 -04001887 ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1888 start = tc->rcv_nxt + offset;
Florin Coras288eaab2019-02-03 15:26:14 -08001889 end = start + ooo_segment_length (s0->rx_fifo, newest);
Florin Corasf03a59a2017-06-09 21:07:32 -07001890 tcp_update_sack_list (tc, start, end);
Florin Coras288eaab2019-02-03 15:26:14 -08001891 svm_fifo_newest_ooo_segment_reset (s0->rx_fifo);
Florin Corasca1c8f32018-05-23 21:01:30 -07001892 TCP_EVT_DBG (TCP_EVT_CC_SACKS, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001893 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001894 }
1895
Florin Coras00cd22d2018-04-18 13:20:18 -07001896 return TCP_ERROR_ENQUEUED_OOO;
Dave Barach68b0fb02017-02-28 15:15:56 -05001897}
1898
1899/**
Florin Coras6792ec02017-03-13 03:49:51 -07001900 * Check if ACK could be delayed. If ack can be delayed, it should return
1901 * true for a full frame. If we're always acking return 0.
Dave Barach68b0fb02017-02-28 15:15:56 -05001902 */
1903always_inline int
1904tcp_can_delack (tcp_connection_t * tc)
1905{
Florin Coras6792ec02017-03-13 03:49:51 -07001906 /* Send ack if ... */
1907 if (TCP_ALWAYS_ACK
Florin Coras74b74372019-03-28 16:31:52 -07001908 /* just sent a rcv wnd 0
1909 || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0 */
Florin Coras6792ec02017-03-13 03:49:51 -07001910 /* constrained to send ack */
1911 || (tc->flags & TCP_CONN_SNDACK) != 0
1912 /* we're almost out of tx wnd */
Florin Corasca1c8f32018-05-23 21:01:30 -07001913 || tcp_available_cc_snd_space (tc) < 4 * tc->snd_mss)
Florin Coras6792ec02017-03-13 03:49:51 -07001914 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001915
Florin Coras6792ec02017-03-13 03:49:51 -07001916 return 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001917}
1918
1919static int
Florin Corasb2215d62017-08-01 16:56:58 -07001920tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
1921{
Florin Coras1f152cd2017-08-18 19:28:03 -07001922 u32 discard, first = b->current_length;
Florin Corasb2215d62017-08-01 16:56:58 -07001923 vlib_main_t *vm = vlib_get_main ();
1924
Florin Coras1f152cd2017-08-18 19:28:03 -07001925 /* Handle multi-buffer segments */
Florin Corasb2215d62017-08-01 16:56:58 -07001926 if (n_bytes_to_drop > b->current_length)
1927 {
1928 if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1929 return -1;
1930 do
1931 {
1932 discard = clib_min (n_bytes_to_drop, b->current_length);
1933 vlib_buffer_advance (b, discard);
1934 b = vlib_get_buffer (vm, b->next_buffer);
1935 n_bytes_to_drop -= discard;
1936 }
1937 while (n_bytes_to_drop);
Florin Coras1f152cd2017-08-18 19:28:03 -07001938 if (n_bytes_to_drop > first)
1939 b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
Florin Corasb2215d62017-08-01 16:56:58 -07001940 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001941 else
1942 vlib_buffer_advance (b, n_bytes_to_drop);
1943 vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
Florin Corasb2215d62017-08-01 16:56:58 -07001944 return 0;
1945}
1946
Florin Coras00cd22d2018-04-18 13:20:18 -07001947/**
1948 * Receive buffer for connection and handle acks
1949 *
1950 * It handles both in order or out-of-order data.
1951 */
Florin Corasb2215d62017-08-01 16:56:58 -07001952static int
Florin Coras7ac053b2018-11-05 15:57:21 -08001953tcp_segment_rcv (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1954 vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001955{
Florin Coras00cd22d2018-04-18 13:20:18 -07001956 u32 error, n_bytes_to_drop, n_data_bytes;
Florin Coras6534b7a2017-07-18 05:38:03 -04001957
1958 vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1959 n_data_bytes = vnet_buffer (b)->tcp.data_len;
1960 ASSERT (n_data_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001961
1962 /* Handle out-of-order data */
1963 if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1964 {
Florin Coras6792ec02017-03-13 03:49:51 -07001965 /* Old sequence numbers allowed through because they overlapped
1966 * the rx window */
1967 if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001968 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001969 /* Completely in the past (possible retransmit). Ack
1970 * retransmissions since we may not have any data to send */
Florin Corasf03a59a2017-06-09 21:07:32 -07001971 if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
Florin Coras6534b7a2017-07-18 05:38:03 -04001972 {
Florin Coras7ac053b2018-11-05 15:57:21 -08001973 tcp_program_ack (wrk, tc);
Florin Coras00cd22d2018-04-18 13:20:18 -07001974 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras6534b7a2017-07-18 05:38:03 -04001975 goto done;
1976 }
Dave Barach259cdae2017-05-15 16:27:05 -04001977
Florin Coras00cd22d2018-04-18 13:20:18 -07001978 /* Chop off the bytes in the past and see if what is left
1979 * can be enqueued in order */
Florin Corasdb84e572017-05-09 18:54:52 -07001980 n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1981 n_data_bytes -= n_bytes_to_drop;
Dave Barach2c25a622017-06-26 11:35:07 -04001982 vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001983 if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
Florin Coras00cd22d2018-04-18 13:20:18 -07001984 {
1985 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras00cd22d2018-04-18 13:20:18 -07001986 goto done;
1987 }
Florin Corasdb84e572017-05-09 18:54:52 -07001988 goto in_order;
Dave Barach68b0fb02017-02-28 15:15:56 -05001989 }
1990
Florin Coras00cd22d2018-04-18 13:20:18 -07001991 /* RFC2581: Enqueue and send DUPACK for fast retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001992 error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
Florin Coras7ac053b2018-11-05 15:57:21 -08001993 tcp_program_dupack (wrk, tc);
Florin Corasca1c8f32018-05-23 21:01:30 -07001994 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
Dave Barach68b0fb02017-02-28 15:15:56 -05001995 goto done;
1996 }
1997
Florin Corasdb84e572017-05-09 18:54:52 -07001998in_order:
1999
Dave Barach68b0fb02017-02-28 15:15:56 -05002000 /* In order data, enqueue. Fifo figures out by itself if any out-of-order
2001 * segments can be enqueued after fifo tail offset changes. */
2002 error = tcp_session_enqueue_data (tc, b, n_data_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07002003 if (tcp_can_delack (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05002004 {
Florin Coras6792ec02017-03-13 03:49:51 -07002005 if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
2006 tcp_timer_set (tc, TCP_TIMER_DELACK, TCP_DELACK_TIME);
Florin Coras3e350af2017-03-30 02:54:28 -07002007 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05002008 }
2009
Florin Coras7ac053b2018-11-05 15:57:21 -08002010 tcp_program_ack (wrk, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07002011
Dave Barach68b0fb02017-02-28 15:15:56 -05002012done:
2013 return error;
2014}
2015
Clement Durand6cf260c2017-04-13 13:27:04 +02002016typedef struct
2017{
2018 tcp_header_t tcp_header;
2019 tcp_connection_t tcp_connection;
2020} tcp_rx_trace_t;
2021
Florin Coras0dbd5172018-06-25 16:19:34 -07002022static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02002023format_tcp_rx_trace (u8 * s, va_list * args)
2024{
2025 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2026 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2027 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +02002028 u32 indent = format_get_indent (s);
Clement Durand6cf260c2017-04-13 13:27:04 +02002029
2030 s = format (s, "%U\n%U%U",
2031 format_tcp_header, &t->tcp_header, 128,
2032 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -07002033 format_tcp_connection, &t->tcp_connection, 1);
Clement Durand6cf260c2017-04-13 13:27:04 +02002034
2035 return s;
2036}
2037
Florin Coras0dbd5172018-06-25 16:19:34 -07002038static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02002039format_tcp_rx_trace_short (u8 * s, va_list * args)
2040{
2041 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2042 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2043 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
2044
2045 s = format (s, "%d -> %d (%U)",
Florin Coras4df38712018-06-20 12:44:16 -07002046 clib_net_to_host_u16 (t->tcp_header.dst_port),
2047 clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state,
Florin Corasbb292f42017-05-19 09:49:19 -07002048 t->tcp_connection.state);
Clement Durand6cf260c2017-04-13 13:27:04 +02002049
2050 return s;
2051}
2052
Florin Coras4df38712018-06-20 12:44:16 -07002053static void
Florin Coras82b13a82017-04-25 11:58:06 -07002054tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
2055 tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
2056{
2057 if (tc0)
2058 {
Dave Barach178cf492018-11-13 16:34:13 -05002059 clib_memcpy_fast (&t0->tcp_connection, tc0,
2060 sizeof (t0->tcp_connection));
Florin Coras82b13a82017-04-25 11:58:06 -07002061 }
2062 else
2063 {
2064 th0 = tcp_buffer_hdr (b0);
2065 }
Dave Barach178cf492018-11-13 16:34:13 -05002066 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
Florin Coras82b13a82017-04-25 11:58:06 -07002067}
2068
Florin Coras4df38712018-06-20 12:44:16 -07002069static void
2070tcp_established_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2071 vlib_frame_t * frame, u8 is_ip4)
2072{
2073 u32 *from, n_left;
2074
2075 n_left = frame->n_vectors;
2076 from = vlib_frame_vector_args (frame);
2077
2078 while (n_left >= 1)
2079 {
2080 tcp_connection_t *tc0;
2081 tcp_rx_trace_t *t0;
2082 tcp_header_t *th0;
2083 vlib_buffer_t *b0;
2084 u32 bi0;
2085
2086 bi0 = from[0];
2087 b0 = vlib_get_buffer (vm, bi0);
2088
2089 if (b0->flags & VLIB_BUFFER_IS_TRACED)
2090 {
2091 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2092 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2093 vm->thread_index);
2094 th0 = tcp_buffer_hdr (b0);
2095 tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
2096 }
2097
2098 from += 1;
2099 n_left -= 1;
2100 }
2101}
2102
Florin Coras6792ec02017-03-13 03:49:51 -07002103always_inline void
Florin Coras00cd22d2018-04-18 13:20:18 -07002104tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
2105 u8 is_ip4, u32 evt, u32 val)
Dave Barach68b0fb02017-02-28 15:15:56 -05002106{
Florin Coras6792ec02017-03-13 03:49:51 -07002107 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -07002108 vlib_node_increment_counter (vm, tcp4_node, evt, val);
Florin Coras6792ec02017-03-13 03:49:51 -07002109 else
Florin Coras3cbc04b2017-10-02 00:18:51 -07002110 vlib_node_increment_counter (vm, tcp6_node, evt, val);
Dave Barach68b0fb02017-02-28 15:15:56 -05002111}
2112
Florin Coras00cd22d2018-04-18 13:20:18 -07002113#define tcp_maybe_inc_counter(node_id, err, count) \
2114{ \
2115 if (next0 != tcp_next_drop (is_ip4)) \
2116 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2117 tcp6_##node_id##_node.index, is_ip4, err, \
2118 1); \
2119}
2120#define tcp_inc_counter(node_id, err, count) \
2121 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2122 tcp6_##node_id##_node.index, is_ip4, \
2123 err, count)
2124#define tcp_maybe_inc_err_counter(cnts, err) \
2125{ \
2126 cnts[err] += (next0 != tcp_next_drop (is_ip4)); \
2127}
2128#define tcp_inc_err_counter(cnts, err, val) \
2129{ \
2130 cnts[err] += val; \
2131}
2132#define tcp_store_err_counters(node_id, cnts) \
2133{ \
2134 int i; \
2135 for (i = 0; i < TCP_N_ERROR; i++) \
2136 if (cnts[i]) \
2137 tcp_inc_counter(node_id, i, cnts[i]); \
2138}
2139
2140
Dave Barach68b0fb02017-02-28 15:15:56 -05002141always_inline uword
2142tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07002143 vlib_frame_t * frame, int is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05002144{
Florin Coras4df38712018-06-20 12:44:16 -07002145 u32 thread_index = vm->thread_index, errors = 0;
Florin Coras9ece3c02018-11-05 11:06:53 -08002146 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08002147 u32 n_left_from, *from, *first_buffer;
Florin Coras00cd22d2018-04-18 13:20:18 -07002148 u16 err_counters[TCP_N_ERROR] = { 0 };
Dave Barach68b0fb02017-02-28 15:15:56 -05002149
Florin Coras4df38712018-06-20 12:44:16 -07002150 if (node->flags & VLIB_NODE_FLAG_TRACE)
2151 tcp_established_trace_frame (vm, node, frame, is_ip4);
2152
Florin Coras7ac053b2018-11-05 15:57:21 -08002153 first_buffer = from = vlib_frame_vector_args (frame);
Florin Coras4df38712018-06-20 12:44:16 -07002154 n_left_from = frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002155
2156 while (n_left_from > 0)
2157 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002158 u32 bi0, error0 = TCP_ERROR_ACK_OK;
2159 vlib_buffer_t *b0;
Florin Coras3c514d52018-12-22 11:39:33 -08002160 tcp_header_t *th0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002161 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002162
Florin Coras7ac053b2018-11-05 15:57:21 -08002163 if (n_left_from > 1)
Dave Barach68b0fb02017-02-28 15:15:56 -05002164 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002165 vlib_buffer_t *pb;
2166 pb = vlib_get_buffer (vm, from[1]);
2167 vlib_prefetch_buffer_header (pb, LOAD);
2168 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
Dave Barach68b0fb02017-02-28 15:15:56 -05002169 }
2170
Florin Coras7ac053b2018-11-05 15:57:21 -08002171 bi0 = from[0];
2172 from += 1;
2173 n_left_from -= 1;
2174
2175 b0 = vlib_get_buffer (vm, bi0);
2176 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2177 thread_index);
2178
2179 if (PREDICT_FALSE (tc0 == 0))
2180 {
2181 error0 = TCP_ERROR_INVALID_CONNECTION;
2182 goto done;
2183 }
2184
2185 th0 = tcp_buffer_hdr (b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002186
2187 /* TODO header prediction fast path */
2188
2189 /* 1-4: check SEQ, RST, SYN */
2190 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, th0, &error0)))
2191 {
2192 TCP_EVT_DBG (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp);
2193 goto done;
2194 }
2195
2196 /* 5: check the ACK field */
2197 if (PREDICT_FALSE (tcp_rcv_ack (wrk, tc0, b0, th0, &error0)))
2198 goto done;
2199
2200 /* 6: check the URG bit TODO */
2201
2202 /* 7: process the segment text */
2203 if (vnet_buffer (b0)->tcp.data_len)
2204 error0 = tcp_segment_rcv (wrk, tc0, b0);
2205
2206 /* 8: check the FIN bit */
Florin Coras3c514d52018-12-22 11:39:33 -08002207 if (PREDICT_FALSE (tcp_is_fin (th0)))
Florin Corasb11175d2018-11-09 14:34:08 -08002208 tcp_rcv_fin (wrk, tc0, b0, &error0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002209
2210 done:
2211 tcp_inc_err_counter (err_counters, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002212 }
2213
Florin Coras31c99552019-03-01 13:00:58 -08002214 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2215 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002216 err_counters[TCP_ERROR_MSG_QUEUE_FULL] = errors;
Florin Coras00cd22d2018-04-18 13:20:18 -07002217 tcp_store_err_counters (established, err_counters);
Florin Coras9ece3c02018-11-05 11:06:53 -08002218 tcp_handle_postponed_dequeues (wrk);
Florin Corasb11175d2018-11-09 14:34:08 -08002219 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08002220 vlib_buffer_free (vm, first_buffer, frame->n_vectors);
Florin Coras4df38712018-06-20 12:44:16 -07002221
2222 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002223}
2224
Filip Tehlare275bed2019-03-06 00:06:56 -08002225VLIB_NODE_FN (tcp4_established_node) (vlib_main_t * vm,
2226 vlib_node_runtime_t * node,
2227 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002228{
2229 return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2230}
2231
Filip Tehlare275bed2019-03-06 00:06:56 -08002232VLIB_NODE_FN (tcp6_established_node) (vlib_main_t * vm,
2233 vlib_node_runtime_t * node,
2234 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002235{
2236 return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2237}
2238
2239/* *INDENT-OFF* */
2240VLIB_REGISTER_NODE (tcp4_established_node) =
2241{
Dave Barach68b0fb02017-02-28 15:15:56 -05002242 .name = "tcp4-established",
2243 /* Takes a vector of packets. */
2244 .vector_size = sizeof (u32),
Florin Corase69f4952017-03-07 10:06:24 -08002245 .n_errors = TCP_N_ERROR,
2246 .error_strings = tcp_error_strings,
Dave Barach68b0fb02017-02-28 15:15:56 -05002247 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2248 .next_nodes =
2249 {
2250#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2251 foreach_tcp_state_next
2252#undef _
2253 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002254 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002255};
2256/* *INDENT-ON* */
2257
Dave Barach68b0fb02017-02-28 15:15:56 -05002258/* *INDENT-OFF* */
2259VLIB_REGISTER_NODE (tcp6_established_node) =
2260{
Dave Barach68b0fb02017-02-28 15:15:56 -05002261 .name = "tcp6-established",
2262 /* Takes a vector of packets. */
2263 .vector_size = sizeof (u32),
2264 .n_errors = TCP_N_ERROR,
2265 .error_strings = tcp_error_strings,
2266 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2267 .next_nodes =
2268 {
2269#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2270 foreach_tcp_state_next
2271#undef _
2272 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002273 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002274};
2275/* *INDENT-ON* */
2276
2277
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002278static u8
2279tcp_lookup_is_valid (tcp_connection_t * tc, tcp_header_t * hdr)
2280{
Florin Corascea194d2017-10-02 00:18:51 -07002281 transport_connection_t *tmp = 0;
2282 u64 handle;
2283
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002284 if (!tc)
2285 return 1;
2286
Florin Coras70131132017-11-27 02:43:30 -08002287 /* Proxy case */
2288 if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
2289 return 1;
2290
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002291 u8 is_valid = (tc->c_lcl_port == hdr->dst_port
2292 && (tc->state == TCP_STATE_LISTEN
2293 || tc->c_rmt_port == hdr->src_port));
2294
2295 if (!is_valid)
2296 {
Florin Corascea194d2017-10-02 00:18:51 -07002297 handle = session_lookup_half_open_handle (&tc->connection);
2298 tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
Florin Coras3cbc04b2017-10-02 00:18:51 -07002299 tc->c_proto, tc->c_is_ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002300
2301 if (tmp)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002302 {
2303 if (tmp->lcl_port == hdr->dst_port
2304 && tmp->rmt_port == hdr->src_port)
2305 {
Florin Corascea194d2017-10-02 00:18:51 -07002306 TCP_DBG ("half-open is valid!");
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002307 }
2308 }
2309 }
2310 return is_valid;
2311}
2312
2313/**
2314 * Lookup transport connection
2315 */
2316static tcp_connection_t *
Florin Corascea194d2017-10-02 00:18:51 -07002317tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
2318 u8 is_ip4)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002319{
2320 tcp_header_t *tcp;
2321 transport_connection_t *tconn;
2322 tcp_connection_t *tc;
Florin Corasdff48db2017-11-19 18:06:58 -08002323 u8 is_filtered = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002324 if (is_ip4)
2325 {
2326 ip4_header_t *ip4;
2327 ip4 = vlib_buffer_get_current (b);
2328 tcp = ip4_next_header (ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002329 tconn = session_lookup_connection_wt4 (fib_index,
2330 &ip4->dst_address,
2331 &ip4->src_address,
2332 tcp->dst_port,
2333 tcp->src_port,
2334 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002335 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002336 tc = tcp_get_connection_from_transport (tconn);
2337 ASSERT (tcp_lookup_is_valid (tc, tcp));
2338 }
2339 else
2340 {
2341 ip6_header_t *ip6;
2342 ip6 = vlib_buffer_get_current (b);
2343 tcp = ip6_next_header (ip6);
Florin Corascea194d2017-10-02 00:18:51 -07002344 tconn = session_lookup_connection_wt6 (fib_index,
2345 &ip6->dst_address,
2346 &ip6->src_address,
2347 tcp->dst_port,
2348 tcp->src_port,
2349 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002350 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002351 tc = tcp_get_connection_from_transport (tconn);
2352 ASSERT (tcp_lookup_is_valid (tc, tcp));
2353 }
2354 return tc;
2355}
2356
Dave Barach68b0fb02017-02-28 15:15:56 -05002357always_inline uword
2358tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2359 vlib_frame_t * from_frame, int is_ip4)
2360{
2361 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras7ac053b2018-11-05 15:57:21 -08002362 u32 n_left_from, *from, *first_buffer, errors = 0;
2363 u32 my_thread_index = vm->thread_index;
2364 tcp_worker_ctx_t *wrk = tcp_get_worker (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05002365
Florin Coras7ac053b2018-11-05 15:57:21 -08002366 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002367 n_left_from = from_frame->n_vectors;
2368
Dave Barach68b0fb02017-02-28 15:15:56 -05002369 while (n_left_from > 0)
2370 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002371 u32 bi0, ack0, seq0, error0 = TCP_ERROR_NONE;
2372 tcp_connection_t *tc0, *new_tc0;
2373 tcp_header_t *tcp0 = 0;
2374 tcp_rx_trace_t *t0;
2375 vlib_buffer_t *b0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002376
Florin Coras7ac053b2018-11-05 15:57:21 -08002377 bi0 = from[0];
2378 from += 1;
2379 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002380
Florin Coras7ac053b2018-11-05 15:57:21 -08002381 b0 = vlib_get_buffer (vm, bi0);
2382 tc0 =
2383 tcp_half_open_connection_get (vnet_buffer (b0)->tcp.connection_index);
2384 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002385 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002386 error0 = TCP_ERROR_INVALID_CONNECTION;
2387 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002388 }
2389
Florin Coras7ac053b2018-11-05 15:57:21 -08002390 /* Half-open completed recently but the connection was't removed
2391 * yet by the owning thread */
2392 if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2393 {
2394 /* Make sure the connection actually exists */
2395 ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2396 my_thread_index, is_ip4));
Florin Coras222e1f412019-02-16 20:47:32 -08002397 error0 = TCP_ERROR_SPURIOUS_SYN_ACK;
Florin Coras7ac053b2018-11-05 15:57:21 -08002398 goto drop;
2399 }
2400
2401 ack0 = vnet_buffer (b0)->tcp.ack_number;
2402 seq0 = vnet_buffer (b0)->tcp.seq_number;
2403 tcp0 = tcp_buffer_hdr (b0);
2404
2405 /* Crude check to see if the connection handle does not match
2406 * the packet. Probably connection just switched to established */
2407 if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2408 || tcp0->src_port != tc0->c_rmt_port))
2409 {
2410 error0 = TCP_ERROR_INVALID_CONNECTION;
2411 goto drop;
2412 }
2413
2414 if (PREDICT_FALSE (!tcp_ack (tcp0) && !tcp_rst (tcp0)
2415 && !tcp_syn (tcp0)))
2416 {
2417 error0 = TCP_ERROR_SEGMENT_INVALID;
2418 goto drop;
2419 }
2420
Florin Coras3c514d52018-12-22 11:39:33 -08002421 /* SYNs consume sequence numbers */
2422 vnet_buffer (b0)->tcp.seq_end += tcp_is_syn (tcp0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002423
2424 /*
2425 * 1. check the ACK bit
2426 */
2427
2428 /*
2429 * If the ACK bit is set
2430 * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2431 * the RST bit is set, if so drop the segment and return)
2432 * <SEQ=SEG.ACK><CTL=RST>
2433 * and discard the segment. Return.
2434 * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2435 */
2436 if (tcp_ack (tcp0))
2437 {
2438 if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
2439 {
2440 if (!tcp_rst (tcp0))
Florin Corasd4c49be2019-02-07 00:15:53 -08002441 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002442 error0 = TCP_ERROR_RCV_WND;
2443 goto drop;
2444 }
2445
2446 /* Make sure ACK is valid */
2447 if (seq_gt (tc0->snd_una, ack0))
2448 {
2449 error0 = TCP_ERROR_ACK_INVALID;
2450 goto drop;
2451 }
2452 }
2453
2454 /*
2455 * 2. check the RST bit
2456 */
2457
2458 if (tcp_rst (tcp0))
2459 {
2460 /* If ACK is acceptable, signal client that peer is not
2461 * willing to accept connection and drop connection*/
2462 if (tcp_ack (tcp0))
2463 tcp_connection_reset (tc0);
2464 error0 = TCP_ERROR_RST_RCVD;
2465 goto drop;
2466 }
2467
2468 /*
2469 * 3. check the security and precedence (skipped)
2470 */
2471
2472 /*
2473 * 4. check the SYN bit
2474 */
2475
2476 /* No SYN flag. Drop. */
2477 if (!tcp_syn (tcp0))
2478 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002479 error0 = TCP_ERROR_SEGMENT_INVALID;
2480 goto drop;
2481 }
2482
2483 /* Parse options */
Florin Coras80231112018-12-05 15:59:31 -08002484 if (tcp_options_parse (tcp0, &tc0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08002485 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002486 error0 = TCP_ERROR_OPTIONS;
2487 goto drop;
2488 }
2489
2490 /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2491 * current thread pool. */
2492 pool_get (tm->connections[my_thread_index], new_tc0);
Dave Barach178cf492018-11-13 16:34:13 -05002493 clib_memcpy_fast (new_tc0, tc0, sizeof (*new_tc0));
Florin Coras7ac053b2018-11-05 15:57:21 -08002494 new_tc0->c_c_index = new_tc0 - tm->connections[my_thread_index];
2495 new_tc0->c_thread_index = my_thread_index;
2496 new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2497 new_tc0->irs = seq0;
Florin Coras85a3ddd2018-12-24 16:54:34 -08002498 new_tc0->timers[TCP_TIMER_ESTABLISH_AO] = TCP_TIMER_HANDLE_INVALID;
Florin Coras7ac053b2018-11-05 15:57:21 -08002499 new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
2500 new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
2501
2502 /* If this is not the owning thread, wait for syn retransmit to
2503 * expire and cleanup then */
2504 if (tcp_half_open_connection_cleanup (tc0))
2505 tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
2506
2507 if (tcp_opts_tstamp (&new_tc0->rcv_opts))
2508 {
2509 new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
2510 new_tc0->tsval_recent_age = tcp_time_now ();
2511 }
2512
2513 if (tcp_opts_wscale (&new_tc0->rcv_opts))
2514 new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
Florin Corase80b5912018-12-12 19:25:43 -08002515 else
2516 new_tc0->rcv_wscale = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002517
2518 new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2519 << new_tc0->snd_wscale;
2520 new_tc0->snd_wl1 = seq0;
2521 new_tc0->snd_wl2 = ack0;
2522
2523 tcp_connection_init_vars (new_tc0);
2524
2525 /* SYN-ACK: See if we can switch to ESTABLISHED state */
2526 if (PREDICT_TRUE (tcp_ack (tcp0)))
2527 {
2528 /* Our SYN is ACKed: we have iss < ack = snd_una */
2529
2530 /* TODO Dequeue acknowledged segments if we support Fast Open */
2531 new_tc0->snd_una = ack0;
2532 new_tc0->state = TCP_STATE_ESTABLISHED;
2533
2534 /* Make sure las is initialized for the wnd computation */
2535 new_tc0->rcv_las = new_tc0->rcv_nxt;
2536
2537 /* Notify app that we have connection. If session layer can't
2538 * allocate session send reset */
2539 if (session_stream_connect_notify (&new_tc0->connection, 0))
2540 {
Florin Corasd4c49be2019-02-07 00:15:53 -08002541 tcp_send_reset_w_pkt (new_tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002542 tcp_connection_cleanup (new_tc0);
Florin Coras718a0552019-06-07 07:03:01 -07002543 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
Florin Coras7ac053b2018-11-05 15:57:21 -08002544 goto drop;
2545 }
2546
Florin Coras2e31cc32018-09-25 14:00:34 -07002547 new_tc0->tx_fifo_size =
2548 transport_tx_fifo_size (&new_tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002549 /* Update rtt with the syn-ack sample */
Florin Corasefefc6b2018-11-07 12:49:19 -08002550 tcp_estimate_initial_rtt (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002551 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, new_tc0);
2552 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2553 }
2554 /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2555 else
2556 {
2557 new_tc0->state = TCP_STATE_SYN_RCVD;
2558
2559 /* Notify app that we have connection */
2560 if (session_stream_connect_notify (&new_tc0->connection, 0))
2561 {
2562 tcp_connection_cleanup (new_tc0);
Florin Corasd4c49be2019-02-07 00:15:53 -08002563 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002564 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc0);
Florin Coras718a0552019-06-07 07:03:01 -07002565 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
Florin Coras7ac053b2018-11-05 15:57:21 -08002566 goto drop;
2567 }
2568
Florin Coras2e31cc32018-09-25 14:00:34 -07002569 new_tc0->tx_fifo_size =
2570 transport_tx_fifo_size (&new_tc0->connection);
2571 new_tc0->rtt_ts = 0;
2572 tcp_init_snd_vars (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002573 tcp_send_synack (new_tc0);
2574 error0 = TCP_ERROR_SYNS_RCVD;
2575 goto drop;
2576 }
2577
2578 /* Read data, if any */
2579 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
2580 {
2581 clib_warning ("rcvd data in syn-sent");
2582 error0 = tcp_segment_rcv (wrk, new_tc0, b0);
2583 if (error0 == TCP_ERROR_ACK_OK)
2584 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2585 }
2586 else
2587 {
2588 tcp_program_ack (wrk, new_tc0);
2589 }
2590
2591 drop:
2592
2593 tcp_inc_counter (syn_sent, error0, 1);
2594 if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
2595 {
2596 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05002597 clib_memcpy_fast (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2598 clib_memcpy_fast (&t0->tcp_connection, tc0,
2599 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08002600 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002601 }
2602
Florin Coras31c99552019-03-01 13:00:58 -08002603 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2604 my_thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002605 tcp_inc_counter (syn_sent, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras7ac053b2018-11-05 15:57:21 -08002606 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
2607
Dave Barach68b0fb02017-02-28 15:15:56 -05002608 return from_frame->n_vectors;
2609}
2610
Filip Tehlare275bed2019-03-06 00:06:56 -08002611VLIB_NODE_FN (tcp4_syn_sent_node) (vlib_main_t * vm,
2612 vlib_node_runtime_t * node,
2613 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002614{
2615 return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2616}
2617
Filip Tehlare275bed2019-03-06 00:06:56 -08002618VLIB_NODE_FN (tcp6_syn_sent_node) (vlib_main_t * vm,
2619 vlib_node_runtime_t * node,
2620 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002621{
2622 return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2623}
2624
2625/* *INDENT-OFF* */
2626VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2627{
Dave Barach68b0fb02017-02-28 15:15:56 -05002628 .name = "tcp4-syn-sent",
2629 /* Takes a vector of packets. */
2630 .vector_size = sizeof (u32),
2631 .n_errors = TCP_N_ERROR,
2632 .error_strings = tcp_error_strings,
2633 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2634 .next_nodes =
2635 {
2636#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2637 foreach_tcp_state_next
2638#undef _
2639 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002640 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002641};
2642/* *INDENT-ON* */
2643
Dave Barach68b0fb02017-02-28 15:15:56 -05002644/* *INDENT-OFF* */
2645VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2646{
Dave Barach68b0fb02017-02-28 15:15:56 -05002647 .name = "tcp6-syn-sent",
2648 /* Takes a vector of packets. */
2649 .vector_size = sizeof (u32),
2650 .n_errors = TCP_N_ERROR,
2651 .error_strings = tcp_error_strings,
2652 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2653 .next_nodes =
2654 {
2655#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2656 foreach_tcp_state_next
2657#undef _
Clement Durand6cf260c2017-04-13 13:27:04 +02002658 },
2659 .format_trace = format_tcp_rx_trace_short,
2660};
Dave Barach68b0fb02017-02-28 15:15:56 -05002661/* *INDENT-ON* */
2662
Dave Barach68b0fb02017-02-28 15:15:56 -05002663/**
Florin Corasd79b41e2017-03-04 05:37:52 -08002664 * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
Dave Barach68b0fb02017-02-28 15:15:56 -05002665 * as per RFC793 p. 64
2666 */
2667always_inline uword
2668tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2669 vlib_frame_t * from_frame, int is_ip4)
2670{
Florin Coras7ac053b2018-11-05 15:57:21 -08002671 u32 thread_index = vm->thread_index, errors = 0, *first_buffer;
2672 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras78cc4b02018-12-20 18:24:49 -08002673 u32 n_left_from, *from, max_dequeue;
Dave Barach68b0fb02017-02-28 15:15:56 -05002674
Florin Coras7ac053b2018-11-05 15:57:21 -08002675 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002676 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002677
2678 while (n_left_from > 0)
2679 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002680 u32 bi0, error0 = TCP_ERROR_NONE;
2681 tcp_header_t *tcp0 = 0;
2682 tcp_connection_t *tc0;
2683 vlib_buffer_t *b0;
2684 u8 is_fin0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002685
Florin Coras7ac053b2018-11-05 15:57:21 -08002686 bi0 = from[0];
2687 from += 1;
2688 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002689
Florin Coras7ac053b2018-11-05 15:57:21 -08002690 b0 = vlib_get_buffer (vm, bi0);
2691 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2692 thread_index);
2693 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002694 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002695 error0 = TCP_ERROR_INVALID_CONNECTION;
2696 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002697 }
2698
Florin Coras7ac053b2018-11-05 15:57:21 -08002699 tcp0 = tcp_buffer_hdr (b0);
2700 is_fin0 = tcp_is_fin (tcp0);
2701
Florin Coras7ac053b2018-11-05 15:57:21 -08002702 if (CLIB_DEBUG)
2703 {
2704 tcp_connection_t *tmp;
2705 tmp = tcp_lookup_connection (tc0->c_fib_index, b0, thread_index,
2706 is_ip4);
2707 if (tmp->state != tc0->state)
2708 {
Florin Corasb0f662f2018-12-27 14:51:46 -08002709 if (tc0->state != TCP_STATE_CLOSED)
2710 clib_warning ("state changed");
Florin Coras7ac053b2018-11-05 15:57:21 -08002711 goto drop;
2712 }
2713 }
2714
2715 /*
2716 * Special treatment for CLOSED
2717 */
2718 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
2719 {
2720 error0 = TCP_ERROR_CONNECTION_CLOSED;
2721 goto drop;
2722 }
2723
2724 /*
2725 * For all other states (except LISTEN)
2726 */
2727
2728 /* 1-4: check SEQ, RST, SYN */
2729 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, tcp0, &error0)))
2730 goto drop;
2731
2732 /* 5: check the ACK field */
2733 switch (tc0->state)
2734 {
2735 case TCP_STATE_SYN_RCVD:
Florin Corasf65074e2019-03-31 17:17:11 -07002736
2737 /* Make sure the segment is exactly right */
2738 if (tc0->rcv_nxt != vnet_buffer (b0)->tcp.seq_number || is_fin0)
2739 {
2740 tcp_connection_reset (tc0);
2741 error0 = TCP_ERROR_SEGMENT_INVALID;
2742 goto drop;
2743 }
2744
Florin Coras7ac053b2018-11-05 15:57:21 -08002745 /*
2746 * If the segment acknowledgment is not acceptable, form a
2747 * reset segment,
2748 * <SEQ=SEG.ACK><CTL=RST>
2749 * and send it.
2750 */
Florin Corasf65074e2019-03-31 17:17:11 -07002751 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08002752 {
Florin Corase78ac9d2018-12-16 21:33:00 -08002753 tcp_connection_reset (tc0);
Florin Coras4850e3e2018-12-12 14:34:38 -08002754 goto drop;
2755 }
2756
Florin Coras7ac053b2018-11-05 15:57:21 -08002757 /* Update rtt and rto */
Florin Corasefefc6b2018-11-07 12:49:19 -08002758 tcp_estimate_initial_rtt (tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002759
2760 /* Switch state to ESTABLISHED */
2761 tc0->state = TCP_STATE_ESTABLISHED;
2762 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
2763
2764 /* Initialize session variables */
2765 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
2766 tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2767 << tc0->rcv_opts.wscale;
2768 tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2769 tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
2770
2771 /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
2772 tcp_retransmit_timer_reset (tc0);
2773 tcp_timer_reset (tc0, TCP_TIMER_ESTABLISH);
Florin Corasa27a46e2019-02-18 13:02:28 -08002774 if (session_stream_accept_notify (&tc0->connection))
Florin Corasa9d5bea2018-12-17 08:24:19 -08002775 {
2776 error0 = TCP_ERROR_MSG_QUEUE_FULL;
2777 tcp_connection_reset (tc0);
2778 goto drop;
2779 }
Florin Coras7ac053b2018-11-05 15:57:21 -08002780 error0 = TCP_ERROR_ACK_OK;
2781 break;
2782 case TCP_STATE_ESTABLISHED:
2783 /* We can get packets in established state here because they
2784 * were enqueued before state change */
2785 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2786 goto drop;
2787
2788 break;
2789 case TCP_STATE_FIN_WAIT_1:
2790 /* In addition to the processing for the ESTABLISHED state, if
2791 * our FIN is now acknowledged then enter FIN-WAIT-2 and
2792 * continue processing in that state. */
2793 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2794 goto drop;
2795
2796 /* Still have to send the FIN */
2797 if (tc0->flags & TCP_CONN_FINPNDG)
2798 {
2799 /* TX fifo finally drained */
Florin Coras31c99552019-03-01 13:00:58 -08002800 max_dequeue = transport_max_tx_dequeue (&tc0->connection);
Florin Coras78cc4b02018-12-20 18:24:49 -08002801 if (max_dequeue <= tc0->burst_acked)
Florin Coras7ac053b2018-11-05 15:57:21 -08002802 tcp_send_fin (tc0);
Florin Coras070fd4b2019-04-02 19:03:23 -07002803 /* If a fin was received and data was acked extend wait */
2804 else if ((tc0->flags & TCP_CONN_FINRCVD) && tc0->bytes_acked)
2805 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
2806 TCP_CLOSEWAIT_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002807 }
2808 /* If FIN is ACKed */
Florin Coras47596832019-03-12 18:58:54 -07002809 else if (tc0->snd_una == tc0->snd_nxt)
Florin Coras7ac053b2018-11-05 15:57:21 -08002810 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002811 /* Stop all retransmit timers because we have nothing more
Florin Corasf65074e2019-03-31 17:17:11 -07002812 * to send. */
Florin Coras7ac053b2018-11-05 15:57:21 -08002813 tcp_connection_timers_reset (tc0);
Florin Corasf65074e2019-03-31 17:17:11 -07002814
2815 /* We already have a FIN but didn't transition to CLOSING
2816 * because of outstanding tx data. Close the connection. */
2817 if (tc0->flags & TCP_CONN_FINRCVD)
2818 {
2819 tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
2820 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME);
2821 goto drop;
2822 }
2823
2824 tcp_connection_set_state (tc0, TCP_STATE_FIN_WAIT_2);
2825 /* Enable waitclose because we're willing to wait for peer's
2826 * FIN but not indefinitely. */
Florin Coras85a3ddd2018-12-24 16:54:34 -08002827 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Corasefefc6b2018-11-07 12:49:19 -08002828
2829 /* Don't try to deq the FIN acked */
2830 if (tc0->burst_acked > 1)
Florin Coras31c99552019-03-01 13:00:58 -08002831 session_tx_fifo_dequeue_drop (&tc0->connection,
2832 tc0->burst_acked - 1);
Florin Corasefefc6b2018-11-07 12:49:19 -08002833 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002834 }
2835 break;
2836 case TCP_STATE_FIN_WAIT_2:
2837 /* In addition to the processing for the ESTABLISHED state, if
2838 * the retransmission queue is empty, the user's CLOSE can be
2839 * acknowledged ("ok") but do not delete the TCB. */
Florin Corasf65074e2019-03-31 17:17:11 -07002840 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08002841 goto drop;
Florin Corasefefc6b2018-11-07 12:49:19 -08002842 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002843 break;
2844 case TCP_STATE_CLOSE_WAIT:
2845 /* Do the same processing as for the ESTABLISHED state. */
2846 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2847 goto drop;
2848
Florin Corasf65074e2019-03-31 17:17:11 -07002849 if (!(tc0->flags & TCP_CONN_FINPNDG))
2850 break;
2851
2852 /* Still have outstanding tx data */
Florin Coras182bbc12019-06-28 09:41:28 -07002853 max_dequeue = transport_max_tx_dequeue (&tc0->connection);
2854 if (max_dequeue > tc0->burst_acked)
Florin Corasf65074e2019-03-31 17:17:11 -07002855 break;
2856
2857 tcp_send_fin (tc0);
2858 tcp_connection_timers_reset (tc0);
2859 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
2860 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002861 break;
2862 case TCP_STATE_CLOSING:
2863 /* In addition to the processing for the ESTABLISHED state, if
2864 * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2865 * otherwise ignore the segment. */
Florin Corasf65074e2019-03-31 17:17:11 -07002866 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2867 goto drop;
Florin Coras47596832019-03-12 18:58:54 -07002868
Florin Corasf65074e2019-03-31 17:17:11 -07002869 if (tc0->snd_una != tc0->snd_nxt)
2870 goto drop;
Florin Coras7ac053b2018-11-05 15:57:21 -08002871
Florin Coras85a3ddd2018-12-24 16:54:34 -08002872 tcp_connection_timers_reset (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002873 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002874 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002875 goto drop;
2876
2877 break;
2878 case TCP_STATE_LAST_ACK:
2879 /* The only thing that [should] arrive in this state is an
2880 * acknowledgment of our FIN. If our FIN is now acknowledged,
2881 * delete the TCB, enter the CLOSED state, and return. */
2882
Florin Corasf65074e2019-03-31 17:17:11 -07002883 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2884 goto drop;
2885
Florin Coras7ac053b2018-11-05 15:57:21 -08002886 /* Apparently our ACK for the peer's FIN was lost */
Florin Coras47596832019-03-12 18:58:54 -07002887 if (is_fin0 && tc0->snd_una != tc0->snd_nxt)
Florin Coras7ac053b2018-11-05 15:57:21 -08002888 {
2889 tcp_send_fin (tc0);
2890 goto drop;
2891 }
2892
Florin Coras3c514d52018-12-22 11:39:33 -08002893 tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
Florin Coras7ac053b2018-11-05 15:57:21 -08002894
2895 /* Don't free the connection from the data path since
2896 * we can't ensure that we have no packets already enqueued
2897 * to output. Rely instead on the waitclose timer */
2898 tcp_connection_timers_reset (tc0);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002899 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002900
2901 goto drop;
2902
2903 break;
2904 case TCP_STATE_TIME_WAIT:
2905 /* The only thing that can arrive in this state is a
2906 * retransmission of the remote FIN. Acknowledge it, and restart
2907 * the 2 MSL timeout. */
2908
Florin Corasf65074e2019-03-31 17:17:11 -07002909 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08002910 goto drop;
2911
Florin Coras37db4302019-03-13 13:25:57 -07002912 if (!is_fin0)
2913 goto drop;
2914
Florin Coras7ac053b2018-11-05 15:57:21 -08002915 tcp_program_ack (wrk, tc0);
2916 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
2917 goto drop;
2918
2919 break;
2920 default:
2921 ASSERT (0);
2922 }
2923
2924 /* 6: check the URG bit TODO */
2925
2926 /* 7: process the segment text */
2927 switch (tc0->state)
2928 {
2929 case TCP_STATE_ESTABLISHED:
2930 case TCP_STATE_FIN_WAIT_1:
2931 case TCP_STATE_FIN_WAIT_2:
2932 if (vnet_buffer (b0)->tcp.data_len)
2933 error0 = tcp_segment_rcv (wrk, tc0, b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002934 break;
2935 case TCP_STATE_CLOSE_WAIT:
2936 case TCP_STATE_CLOSING:
2937 case TCP_STATE_LAST_ACK:
2938 case TCP_STATE_TIME_WAIT:
2939 /* This should not occur, since a FIN has been received from the
2940 * remote side. Ignore the segment text. */
2941 break;
2942 }
2943
2944 /* 8: check the FIN bit */
2945 if (!is_fin0)
2946 goto drop;
2947
Florin Coras3c514d52018-12-22 11:39:33 -08002948 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0);
2949
Florin Coras7ac053b2018-11-05 15:57:21 -08002950 switch (tc0->state)
2951 {
2952 case TCP_STATE_ESTABLISHED:
Florin Coras3c514d52018-12-22 11:39:33 -08002953 /* Account for the FIN and send ack */
2954 tc0->rcv_nxt += 1;
2955 tcp_program_ack (wrk, tc0);
2956 tcp_connection_set_state (tc0, TCP_STATE_CLOSE_WAIT);
2957 tcp_program_disconnect (wrk, tc0);
2958 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
Florin Coras5c0f1662018-12-19 01:38:57 -08002959 break;
Florin Coras7ac053b2018-11-05 15:57:21 -08002960 case TCP_STATE_SYN_RCVD:
Florin Coras5c0f1662018-12-19 01:38:57 -08002961 /* Send FIN-ACK, enter LAST-ACK and because the app was not
2962 * notified yet, set a cleanup timer instead of relying on
2963 * disconnect notify and the implicit close call. */
Florin Coras7ac053b2018-11-05 15:57:21 -08002964 tcp_connection_timers_reset (tc0);
Florin Coras5c0f1662018-12-19 01:38:57 -08002965 tc0->rcv_nxt += 1;
Florin Coras7ac053b2018-11-05 15:57:21 -08002966 tcp_send_fin (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002967 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras5c0f1662018-12-19 01:38:57 -08002968 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002969 break;
2970 case TCP_STATE_CLOSE_WAIT:
2971 case TCP_STATE_CLOSING:
2972 case TCP_STATE_LAST_ACK:
2973 /* move along .. */
2974 break;
2975 case TCP_STATE_FIN_WAIT_1:
Florin Coras3c514d52018-12-22 11:39:33 -08002976 tc0->rcv_nxt += 1;
Florin Coras070fd4b2019-04-02 19:03:23 -07002977
Florin Coras565115e2019-02-20 19:48:31 -08002978 if (tc0->flags & TCP_CONN_FINPNDG)
2979 {
Florin Coras070fd4b2019-04-02 19:03:23 -07002980 /* If data is outstanding, stay in FIN_WAIT_1 and try to finish
2981 * sending it. Since we already received a fin, do not wait
2982 * for too long. */
Florin Corasf65074e2019-03-31 17:17:11 -07002983 tc0->flags |= TCP_CONN_FINRCVD;
Florin Coras070fd4b2019-04-02 19:03:23 -07002984 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
Florin Coras565115e2019-02-20 19:48:31 -08002985 }
2986 else
Florin Corasf65074e2019-03-31 17:17:11 -07002987 {
2988 tcp_connection_set_state (tc0, TCP_STATE_CLOSING);
2989 tcp_program_ack (wrk, tc0);
Florin Coras070fd4b2019-04-02 19:03:23 -07002990 /* Wait for ACK for our FIN but not forever */
2991 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Corasf65074e2019-03-31 17:17:11 -07002992 }
Florin Coras7ac053b2018-11-05 15:57:21 -08002993 break;
2994 case TCP_STATE_FIN_WAIT_2:
2995 /* Got FIN, send ACK! Be more aggressive with resource cleanup */
Florin Coras3c514d52018-12-22 11:39:33 -08002996 tc0->rcv_nxt += 1;
2997 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras7ac053b2018-11-05 15:57:21 -08002998 tcp_connection_timers_reset (tc0);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002999 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08003000 tcp_program_ack (wrk, tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003001 break;
3002 case TCP_STATE_TIME_WAIT:
3003 /* Remain in the TIME-WAIT state. Restart the time-wait
3004 * timeout.
3005 */
3006 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
3007 break;
3008 }
3009 error0 = TCP_ERROR_FIN_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -08003010
3011 drop:
3012
3013 tcp_inc_counter (rcv_process, error0, 1);
3014 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3015 {
3016 tcp_rx_trace_t *t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
3017 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
3018 }
Dave Barach68b0fb02017-02-28 15:15:56 -05003019 }
3020
Florin Coras31c99552019-03-01 13:00:58 -08003021 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
3022 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08003023 tcp_inc_counter (rcv_process, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras9ece3c02018-11-05 11:06:53 -08003024 tcp_handle_postponed_dequeues (wrk);
Florin Coras79fdfd62019-05-23 06:19:09 -07003025 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08003026 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3027
Dave Barach68b0fb02017-02-28 15:15:56 -05003028 return from_frame->n_vectors;
3029}
3030
Filip Tehlare275bed2019-03-06 00:06:56 -08003031VLIB_NODE_FN (tcp4_rcv_process_node) (vlib_main_t * vm,
3032 vlib_node_runtime_t * node,
3033 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003034{
3035 return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3036}
3037
Filip Tehlare275bed2019-03-06 00:06:56 -08003038VLIB_NODE_FN (tcp6_rcv_process_node) (vlib_main_t * vm,
3039 vlib_node_runtime_t * node,
3040 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003041{
3042 return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3043}
3044
3045/* *INDENT-OFF* */
3046VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
3047{
Dave Barach68b0fb02017-02-28 15:15:56 -05003048 .name = "tcp4-rcv-process",
3049 /* Takes a vector of packets. */
3050 .vector_size = sizeof (u32),
3051 .n_errors = TCP_N_ERROR,
3052 .error_strings = tcp_error_strings,
3053 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3054 .next_nodes =
3055 {
3056#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3057 foreach_tcp_state_next
3058#undef _
3059 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003060 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003061};
3062/* *INDENT-ON* */
3063
Dave Barach68b0fb02017-02-28 15:15:56 -05003064/* *INDENT-OFF* */
3065VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
3066{
Dave Barach68b0fb02017-02-28 15:15:56 -05003067 .name = "tcp6-rcv-process",
3068 /* Takes a vector of packets. */
3069 .vector_size = sizeof (u32),
3070 .n_errors = TCP_N_ERROR,
3071 .error_strings = tcp_error_strings,
3072 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3073 .next_nodes =
3074 {
3075#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3076 foreach_tcp_state_next
3077#undef _
3078 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003079 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003080};
3081/* *INDENT-ON* */
3082
Dave Barach68b0fb02017-02-28 15:15:56 -05003083/**
3084 * LISTEN state processing as per RFC 793 p. 65
3085 */
3086always_inline uword
3087tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3088 vlib_frame_t * from_frame, int is_ip4)
3089{
Florin Coras7ac053b2018-11-05 15:57:21 -08003090 u32 n_left_from, *from, n_syns = 0, *first_buffer;
Damjan Marion586afd72017-04-05 19:18:20 +02003091 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05003092
Florin Coras7ac053b2018-11-05 15:57:21 -08003093 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05003094 n_left_from = from_frame->n_vectors;
3095
Dave Barach68b0fb02017-02-28 15:15:56 -05003096 while (n_left_from > 0)
3097 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003098 u32 bi0;
3099 vlib_buffer_t *b0;
3100 tcp_rx_trace_t *t0;
3101 tcp_header_t *th0 = 0;
3102 tcp_connection_t *lc0;
3103 ip4_header_t *ip40;
3104 ip6_header_t *ip60;
3105 tcp_connection_t *child0;
3106 u32 error0 = TCP_ERROR_NONE;
Dave Barach68b0fb02017-02-28 15:15:56 -05003107
Florin Coras7ac053b2018-11-05 15:57:21 -08003108 bi0 = from[0];
3109 from += 1;
3110 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05003111
Florin Coras7ac053b2018-11-05 15:57:21 -08003112 b0 = vlib_get_buffer (vm, bi0);
3113 lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index);
3114
3115 if (is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003116 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003117 ip40 = vlib_buffer_get_current (b0);
3118 th0 = ip4_next_header (ip40);
3119 }
3120 else
3121 {
3122 ip60 = vlib_buffer_get_current (b0);
3123 th0 = ip6_next_header (ip60);
Dave Barach68b0fb02017-02-28 15:15:56 -05003124 }
3125
Florin Coras7ac053b2018-11-05 15:57:21 -08003126 /* Create child session. For syn-flood protection use filter */
3127
3128 /* 1. first check for an RST: handled in dispatch */
3129 /* if (tcp_rst (th0))
3130 goto drop;
3131 */
3132
3133 /* 2. second check for an ACK: handled in dispatch */
3134 /* if (tcp_ack (th0))
3135 {
3136 tcp_send_reset (b0, is_ip4);
3137 goto drop;
3138 }
3139 */
3140
3141 /* 3. check for a SYN (did that already) */
3142
3143 /* Make sure connection wasn't just created */
3144 child0 = tcp_lookup_connection (lc0->c_fib_index, b0, my_thread_index,
3145 is_ip4);
3146 if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN))
3147 {
3148 error0 = TCP_ERROR_CREATE_EXISTS;
3149 goto drop;
3150 }
3151
3152 /* Create child session and send SYN-ACK */
Florin Coras8124cb72018-12-16 20:57:29 -08003153 child0 = tcp_connection_alloc (my_thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08003154 child0->c_lcl_port = th0->dst_port;
3155 child0->c_rmt_port = th0->src_port;
3156 child0->c_is_ip4 = is_ip4;
3157 child0->state = TCP_STATE_SYN_RCVD;
3158 child0->c_fib_index = lc0->c_fib_index;
3159
3160 if (is_ip4)
3161 {
3162 child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32;
3163 child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32;
3164 }
3165 else
3166 {
Dave Barach178cf492018-11-13 16:34:13 -05003167 clib_memcpy_fast (&child0->c_lcl_ip6, &ip60->dst_address,
3168 sizeof (ip6_address_t));
3169 clib_memcpy_fast (&child0->c_rmt_ip6, &ip60->src_address,
3170 sizeof (ip6_address_t));
Florin Coras7ac053b2018-11-05 15:57:21 -08003171 }
3172
Florin Coras80231112018-12-05 15:59:31 -08003173 if (tcp_options_parse (th0, &child0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08003174 {
Florin Coras8124cb72018-12-16 20:57:29 -08003175 error0 = TCP_ERROR_OPTIONS;
3176 tcp_connection_free (child0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003177 goto drop;
3178 }
3179
3180 child0->irs = vnet_buffer (b0)->tcp.seq_number;
3181 child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1;
3182 child0->rcv_las = child0->rcv_nxt;
3183 child0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
3184
3185 /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
3186 * segments are used to initialize PAWS. */
3187 if (tcp_opts_tstamp (&child0->rcv_opts))
3188 {
3189 child0->tsval_recent = child0->rcv_opts.tsval;
3190 child0->tsval_recent_age = tcp_time_now ();
3191 }
3192
3193 if (tcp_opts_wscale (&child0->rcv_opts))
3194 child0->snd_wscale = child0->rcv_opts.wscale;
3195
3196 child0->snd_wnd = clib_net_to_host_u16 (th0->window)
3197 << child0->snd_wscale;
3198 child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
3199 child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
3200
3201 tcp_connection_init_vars (child0);
Florin Coras865872e2019-01-18 12:12:29 -08003202 child0->rto = TCP_RTO_MIN;
Florin Coras7ac053b2018-11-05 15:57:21 -08003203
Florin Corasc9940fc2019-02-05 20:55:11 -08003204 if (session_stream_accept (&child0->connection, lc0->c_s_index,
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +02003205 lc0->c_thread_index, 0 /* notify */ ))
Florin Coras7ac053b2018-11-05 15:57:21 -08003206 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003207 tcp_connection_cleanup (child0);
3208 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
3209 goto drop;
3210 }
3211
Florin Coras6416e622019-04-03 17:52:43 -07003212 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, child0, 1);
Florin Coras2e31cc32018-09-25 14:00:34 -07003213 child0->tx_fifo_size = transport_tx_fifo_size (&child0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003214 tcp_send_synack (child0);
3215 tcp_timer_set (child0, TCP_TIMER_ESTABLISH, TCP_SYN_RCVD_TIME);
3216
3217 drop:
3218
3219 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3220 {
3221 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05003222 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
3223 clib_memcpy_fast (&t0->tcp_connection, lc0,
3224 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08003225 }
3226
3227 n_syns += (error0 == TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003228 }
Florin Coras00cd22d2018-04-18 13:20:18 -07003229
3230 tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
Florin Coras7ac053b2018-11-05 15:57:21 -08003231 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3232
Dave Barach68b0fb02017-02-28 15:15:56 -05003233 return from_frame->n_vectors;
3234}
3235
Filip Tehlare275bed2019-03-06 00:06:56 -08003236VLIB_NODE_FN (tcp4_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3237 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003238{
3239 return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3240}
3241
Filip Tehlare275bed2019-03-06 00:06:56 -08003242VLIB_NODE_FN (tcp6_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3243 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003244{
3245 return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3246}
3247
3248/* *INDENT-OFF* */
3249VLIB_REGISTER_NODE (tcp4_listen_node) =
3250{
Dave Barach68b0fb02017-02-28 15:15:56 -05003251 .name = "tcp4-listen",
3252 /* Takes a vector of packets. */
3253 .vector_size = sizeof (u32),
3254 .n_errors = TCP_N_ERROR,
3255 .error_strings = tcp_error_strings,
3256 .n_next_nodes = TCP_LISTEN_N_NEXT,
3257 .next_nodes =
3258 {
3259#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3260 foreach_tcp_state_next
3261#undef _
3262 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003263 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003264};
3265/* *INDENT-ON* */
3266
Dave Barach68b0fb02017-02-28 15:15:56 -05003267/* *INDENT-OFF* */
3268VLIB_REGISTER_NODE (tcp6_listen_node) =
3269{
Dave Barach68b0fb02017-02-28 15:15:56 -05003270 .name = "tcp6-listen",
3271 /* Takes a vector of packets. */
3272 .vector_size = sizeof (u32),
3273 .n_errors = TCP_N_ERROR,
3274 .error_strings = tcp_error_strings,
3275 .n_next_nodes = TCP_LISTEN_N_NEXT,
3276 .next_nodes =
3277 {
3278#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3279 foreach_tcp_state_next
3280#undef _
3281 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003282 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003283};
3284/* *INDENT-ON* */
3285
Dave Barach68b0fb02017-02-28 15:15:56 -05003286typedef enum _tcp_input_next
3287{
3288 TCP_INPUT_NEXT_DROP,
3289 TCP_INPUT_NEXT_LISTEN,
3290 TCP_INPUT_NEXT_RCV_PROCESS,
3291 TCP_INPUT_NEXT_SYN_SENT,
3292 TCP_INPUT_NEXT_ESTABLISHED,
3293 TCP_INPUT_NEXT_RESET,
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003294 TCP_INPUT_NEXT_PUNT,
Dave Barach68b0fb02017-02-28 15:15:56 -05003295 TCP_INPUT_N_NEXT
3296} tcp_input_next_t;
3297
3298#define foreach_tcp4_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003299 _ (DROP, "ip4-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003300 _ (LISTEN, "tcp4-listen") \
3301 _ (RCV_PROCESS, "tcp4-rcv-process") \
3302 _ (SYN_SENT, "tcp4-syn-sent") \
3303 _ (ESTABLISHED, "tcp4-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003304 _ (RESET, "tcp4-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003305 _ (PUNT, "ip4-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003306
3307#define foreach_tcp6_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003308 _ (DROP, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003309 _ (LISTEN, "tcp6-listen") \
3310 _ (RCV_PROCESS, "tcp6-rcv-process") \
3311 _ (SYN_SENT, "tcp6-syn-sent") \
3312 _ (ESTABLISHED, "tcp6-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003313 _ (RESET, "tcp6-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003314 _ (PUNT, "ip6-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003315
Dave Barach68b0fb02017-02-28 15:15:56 -05003316#define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
3317
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003318static void
3319tcp_input_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07003320 vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003321{
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003322 tcp_connection_t *tc;
3323 tcp_header_t *tcp;
3324 tcp_rx_trace_t *t;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003325 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05003326
Florin Coras4df38712018-06-20 12:44:16 -07003327 for (i = 0; i < n_bufs; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05003328 {
Florin Coras4df38712018-06-20 12:44:16 -07003329 if (bs[i]->flags & VLIB_BUFFER_IS_TRACED)
3330 {
3331 t = vlib_add_trace (vm, node, bs[i], sizeof (*t));
3332 tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index,
3333 vm->thread_index);
3334 tcp = vlib_buffer_get_current (bs[i]);
3335 tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4);
3336 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003337 }
3338}
Dave Barach68b0fb02017-02-28 15:15:56 -05003339
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003340static void
3341tcp_input_set_error_next (tcp_main_t * tm, u16 * next, u32 * error, u8 is_ip4)
3342{
Florin Corasb5e55a22019-01-10 12:42:47 -08003343 if (*error == TCP_ERROR_FILTERED || *error == TCP_ERROR_WRONG_THREAD)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003344 {
3345 *next = TCP_INPUT_NEXT_DROP;
3346 }
3347 else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6))
3348 {
3349 *next = TCP_INPUT_NEXT_PUNT;
3350 *error = TCP_ERROR_PUNT;
3351 }
3352 else
3353 {
3354 *next = TCP_INPUT_NEXT_RESET;
3355 *error = TCP_ERROR_NO_LISTENER;
3356 }
3357}
Dave Barach68b0fb02017-02-28 15:15:56 -05003358
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003359static inline tcp_connection_t *
3360tcp_input_lookup_buffer (vlib_buffer_t * b, u8 thread_index, u32 * error,
3361 u8 is_ip4)
3362{
3363 u32 fib_index = vnet_buffer (b)->ip.fib_index;
3364 int n_advance_bytes, n_data_bytes;
3365 transport_connection_t *tc;
3366 tcp_header_t *tcp;
Florin Corasb5e55a22019-01-10 12:42:47 -08003367 u8 result = 0;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003368
3369 if (is_ip4)
3370 {
3371 ip4_header_t *ip4 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003372 int ip_hdr_bytes = ip4_header_bytes (ip4);
3373 if (PREDICT_FALSE (b->current_length < ip_hdr_bytes + sizeof (*tcp)))
3374 {
3375 *error = TCP_ERROR_LENGTH;
3376 return 0;
3377 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003378 tcp = ip4_next_header (ip4);
3379 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip4;
Florin Corasb8dda5f2018-12-05 10:03:34 -08003380 n_advance_bytes = (ip_hdr_bytes + tcp_header_bytes (tcp));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003381 n_data_bytes = clib_net_to_host_u16 (ip4->length) - n_advance_bytes;
3382
3383 /* Length check. Checksum computed by ipx_local no need to compute again */
Florin Corasb8dda5f2018-12-05 10:03:34 -08003384 if (PREDICT_FALSE (n_data_bytes < 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05003385 {
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003386 *error = TCP_ERROR_LENGTH;
3387 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003388 }
3389
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003390 tc = session_lookup_connection_wt4 (fib_index, &ip4->dst_address,
3391 &ip4->src_address, tcp->dst_port,
3392 tcp->src_port, TRANSPORT_PROTO_TCP,
Florin Corasb5e55a22019-01-10 12:42:47 -08003393 thread_index, &result);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003394 }
3395 else
3396 {
3397 ip6_header_t *ip6 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003398 if (PREDICT_FALSE (b->current_length < sizeof (*ip6) + sizeof (*tcp)))
3399 {
3400 *error = TCP_ERROR_LENGTH;
3401 return 0;
3402 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003403 tcp = ip6_next_header (ip6);
3404 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip6;
3405 n_advance_bytes = tcp_header_bytes (tcp);
3406 n_data_bytes = clib_net_to_host_u16 (ip6->payload_length)
3407 - n_advance_bytes;
3408 n_advance_bytes += sizeof (ip6[0]);
3409
Florin Corasb8dda5f2018-12-05 10:03:34 -08003410 if (PREDICT_FALSE (n_data_bytes < 0))
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003411 {
3412 *error = TCP_ERROR_LENGTH;
3413 return 0;
3414 }
Florin Coras6164e972019-02-07 10:31:08 -08003415 if (PREDICT_FALSE
3416 (ip6_address_is_link_local_unicast (&ip6->dst_address)))
3417 {
3418 ip4_main_t *im = &ip4_main;
3419 fib_index = vec_elt (im->fib_index_by_sw_if_index,
3420 vnet_buffer (b)->sw_if_index[VLIB_RX]);
3421 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003422
3423 tc = session_lookup_connection_wt6 (fib_index, &ip6->dst_address,
3424 &ip6->src_address, tcp->dst_port,
3425 tcp->src_port, TRANSPORT_PROTO_TCP,
Florin Corasb5e55a22019-01-10 12:42:47 -08003426 thread_index, &result);
Dave Barach68b0fb02017-02-28 15:15:56 -05003427 }
3428
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003429 vnet_buffer (b)->tcp.seq_number = clib_net_to_host_u32 (tcp->seq_number);
3430 vnet_buffer (b)->tcp.ack_number = clib_net_to_host_u32 (tcp->ack_number);
3431 vnet_buffer (b)->tcp.data_offset = n_advance_bytes;
3432 vnet_buffer (b)->tcp.data_len = n_data_bytes;
Florin Coras3c514d52018-12-22 11:39:33 -08003433 vnet_buffer (b)->tcp.seq_end = vnet_buffer (b)->tcp.seq_number
3434 + n_data_bytes;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003435 vnet_buffer (b)->tcp.flags = 0;
3436
Florin Corasb5e55a22019-01-10 12:42:47 -08003437 *error = result ? TCP_ERROR_NONE + result : *error;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003438
3439 return tcp_get_connection_from_transport (tc);
3440}
3441
3442static inline void
3443tcp_input_dispatch_buffer (tcp_main_t * tm, tcp_connection_t * tc,
3444 vlib_buffer_t * b, u16 * next, u32 * error)
3445{
3446 tcp_header_t *tcp;
3447 u8 flags;
3448
3449 tcp = tcp_buffer_hdr (b);
3450 flags = tcp->flags & filter_flags;
3451 *next = tm->dispatch_table[tc->state][flags].next;
3452 *error = tm->dispatch_table[tc->state][flags].error;
3453
3454 if (PREDICT_FALSE (*error == TCP_ERROR_DISPATCH
3455 || *next == TCP_INPUT_NEXT_RESET))
3456 {
3457 /* Overload tcp flags to store state */
3458 tcp_state_t state = tc->state;
3459 vnet_buffer (b)->tcp.flags = tc->state;
3460
3461 if (*error == TCP_ERROR_DISPATCH)
Florin Corasa9d5bea2018-12-17 08:24:19 -08003462 clib_warning ("tcp conn %u disp error state %U flags %U",
3463 tc->c_c_index, format_tcp_state, state,
3464 format_tcp_flags, (int) flags);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003465 }
3466}
3467
3468always_inline uword
3469tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3470 vlib_frame_t * frame, int is_ip4)
3471{
3472 u32 n_left_from, *from, thread_index = vm->thread_index;
3473 tcp_main_t *tm = vnet_get_tcp_main ();
3474 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
3475 u16 nexts[VLIB_FRAME_SIZE], *next;
3476
Florin Corasbe72ae62018-11-01 11:23:03 -07003477 tcp_set_time_now (tcp_get_worker (thread_index));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003478
3479 from = vlib_frame_vector_args (frame);
3480 n_left_from = frame->n_vectors;
3481 vlib_get_buffers (vm, from, bufs, n_left_from);
3482
3483 b = bufs;
3484 next = nexts;
3485
3486 while (n_left_from >= 4)
3487 {
3488 u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER;
3489 tcp_connection_t *tc0, *tc1;
3490
3491 {
3492 vlib_prefetch_buffer_header (b[2], STORE);
3493 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3494
3495 vlib_prefetch_buffer_header (b[3], STORE);
3496 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3497 }
3498
3499 next[0] = next[1] = TCP_INPUT_NEXT_DROP;
3500
3501 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4);
3502 tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4);
3503
3504 if (PREDICT_TRUE (!tc0 + !tc1 == 0))
3505 {
3506 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3507 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3508
3509 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3510 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3511
3512 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3513 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3514 }
3515 else
3516 {
3517 if (PREDICT_TRUE (tc0 != 0))
3518 {
3519 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3520 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3521 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3522 }
3523 else
3524 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3525
3526 if (PREDICT_TRUE (tc1 != 0))
3527 {
3528 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3529 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3530 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3531 }
3532 else
3533 tcp_input_set_error_next (tm, &next[1], &error1, is_ip4);
3534 }
3535
3536 b += 2;
3537 next += 2;
3538 n_left_from -= 2;
3539 }
3540 while (n_left_from > 0)
3541 {
3542 tcp_connection_t *tc0;
3543 u32 error0 = TCP_ERROR_NO_LISTENER;
3544
3545 if (n_left_from > 1)
3546 {
3547 vlib_prefetch_buffer_header (b[1], STORE);
3548 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3549 }
3550
3551 next[0] = TCP_INPUT_NEXT_DROP;
3552 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4);
3553 if (PREDICT_TRUE (tc0 != 0))
3554 {
3555 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3556 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3557 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3558 }
3559 else
3560 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3561
3562 b += 1;
3563 next += 1;
3564 n_left_from -= 1;
3565 }
3566
3567 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
3568 tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4);
3569
3570 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
3571 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05003572}
3573
Filip Tehlare275bed2019-03-06 00:06:56 -08003574VLIB_NODE_FN (tcp4_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3575 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003576{
3577 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3578}
3579
Filip Tehlare275bed2019-03-06 00:06:56 -08003580VLIB_NODE_FN (tcp6_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3581 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003582{
3583 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3584}
3585
3586/* *INDENT-OFF* */
3587VLIB_REGISTER_NODE (tcp4_input_node) =
3588{
Dave Barach68b0fb02017-02-28 15:15:56 -05003589 .name = "tcp4-input",
3590 /* Takes a vector of packets. */
3591 .vector_size = sizeof (u32),
3592 .n_errors = TCP_N_ERROR,
3593 .error_strings = tcp_error_strings,
3594 .n_next_nodes = TCP_INPUT_N_NEXT,
3595 .next_nodes =
3596 {
3597#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3598 foreach_tcp4_input_next
3599#undef _
3600 },
3601 .format_buffer = format_tcp_header,
3602 .format_trace = format_tcp_rx_trace,
3603};
3604/* *INDENT-ON* */
3605
Dave Barach68b0fb02017-02-28 15:15:56 -05003606/* *INDENT-OFF* */
3607VLIB_REGISTER_NODE (tcp6_input_node) =
3608{
Dave Barach68b0fb02017-02-28 15:15:56 -05003609 .name = "tcp6-input",
3610 /* Takes a vector of packets. */
3611 .vector_size = sizeof (u32),
3612 .n_errors = TCP_N_ERROR,
3613 .error_strings = tcp_error_strings,
3614 .n_next_nodes = TCP_INPUT_N_NEXT,
3615 .next_nodes =
3616 {
3617#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3618 foreach_tcp6_input_next
3619#undef _
3620 },
3621 .format_buffer = format_tcp_header,
3622 .format_trace = format_tcp_rx_trace,
3623};
3624/* *INDENT-ON* */
3625
Filip Tehlare275bed2019-03-06 00:06:56 -08003626#ifndef CLIB_MARCH_VARIANT
Dave Barach68b0fb02017-02-28 15:15:56 -05003627static void
3628tcp_dispatch_table_init (tcp_main_t * tm)
3629{
3630 int i, j;
3631 for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3632 for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3633 {
3634 tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3635 tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3636 }
3637
3638#define _(t,f,n,e) \
3639do { \
3640 tm->dispatch_table[TCP_STATE_##t][f].next = (n); \
3641 tm->dispatch_table[TCP_STATE_##t][f].error = (e); \
3642} while (0)
3643
Florin Coras678a6572018-12-17 21:31:25 -08003644 /* RFC 793: In LISTEN if RST drop and if ACK return RST */
Florin Coras5c0f1662018-12-19 01:38:57 -08003645 _(LISTEN, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras678a6572018-12-17 21:31:25 -08003646 _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_ACK_INVALID);
3647 _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_INVALID_CONNECTION);
Dave Barach68b0fb02017-02-28 15:15:56 -05003648 _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003649 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3650 TCP_ERROR_ACK_INVALID);
3651 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3652 TCP_ERROR_SEGMENT_INVALID);
3653 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3654 TCP_ERROR_SEGMENT_INVALID);
3655 _(LISTEN, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3656 TCP_ERROR_INVALID_CONNECTION);
3657 _(LISTEN, TCP_FLAG_FIN, TCP_INPUT_NEXT_RESET, TCP_ERROR_SEGMENT_INVALID);
Dave Barach2c25a622017-06-26 11:35:07 -04003658 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
Florin Coras678a6572018-12-17 21:31:25 -08003659 TCP_ERROR_SEGMENT_INVALID);
3660 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3661 TCP_ERROR_SEGMENT_INVALID);
3662 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003663 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003664 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_DROP,
3665 TCP_ERROR_SEGMENT_INVALID);
3666 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3667 TCP_ERROR_SEGMENT_INVALID);
3668 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3669 TCP_ERROR_SEGMENT_INVALID);
3670 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3671 TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003672 /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3673 _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc28764f2017-04-26 00:08:42 -07003674 _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase8460c72018-09-24 14:40:40 -07003675 _(SYN_RCVD, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3676 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003677 _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003678 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3679 TCP_ERROR_NONE);
3680 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3681 TCP_ERROR_NONE);
3682 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3683 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3684 _(SYN_RCVD, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc01c4452018-09-20 18:36:54 -07003685 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3686 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003687 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3688 TCP_ERROR_NONE);
3689 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3690 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3691 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3692 TCP_ERROR_NONE);
3693 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3694 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3695 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3696 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3697 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3698 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3699 _(SYN_RCVD, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003700 /* SYN-ACK for a SYN */
3701 _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3702 TCP_ERROR_NONE);
3703 _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3704 _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3705 _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3706 TCP_ERROR_NONE);
Florin Coras222e1f412019-02-16 20:47:32 -08003707 _(SYN_SENT, TCP_FLAG_FIN, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3708 _(SYN_SENT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3709 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003710 /* ACK for for established connection -> tcp-established. */
3711 _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3712 /* FIN for for established connection -> tcp-established. */
3713 _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3714 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3715 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003716 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3717 TCP_ERROR_NONE);
3718 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3719 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3720 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED,
3721 TCP_ERROR_NONE);
3722 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3723 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3724 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3725 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3726 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3727 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasd79b41e2017-03-04 05:37:52 -08003728 _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003729 _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3730 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003731 _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003732 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3733 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003734 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3735 TCP_ERROR_NONE);
3736 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3737 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3738 _(ESTABLISHED, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003739 /* ACK or FIN-ACK to our FIN */
3740 _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3741 _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
3742 TCP_ERROR_NONE);
3743 /* FIN in reply to our FIN from the other side */
Florin Coras76bc1302018-12-23 23:36:36 -08003744 _(FIN_WAIT_1, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003745 _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08003746 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3747 TCP_ERROR_NONE);
3748 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3749 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3750 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3751 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3752 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3753 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3754 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3755 TCP_ERROR_NONE);
3756 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3757 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras5c0f1662018-12-19 01:38:57 -08003758 _(FIN_WAIT_1, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08003759 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3760 TCP_ERROR_NONE);
3761 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3762 TCP_ERROR_NONE);
3763 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3764 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003765 _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase96bf632018-12-18 22:44:27 -08003766 _(FIN_WAIT_1, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3767 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003768 _(CLOSING, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras56318932018-05-23 20:44:12 -07003769 _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08003770 _(CLOSING, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003771 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3772 TCP_ERROR_NONE);
3773 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3774 TCP_ERROR_NONE);
3775 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3776 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08003777 _(CLOSING, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3778 _(CLOSING, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3779 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003780 _(CLOSING, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras3c514d52018-12-22 11:39:33 -08003781 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3782 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003783 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3784 TCP_ERROR_NONE);
3785 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3786 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3787 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3788 TCP_ERROR_NONE);
3789 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3790 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3791 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3792 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003793 /* FIN confirming that the peer (app) has closed */
3794 _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasf6d68ed2017-05-07 19:12:02 -07003795 _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003796 _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3797 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003798 _(FIN_WAIT_2, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3799 _(FIN_WAIT_2, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3800 TCP_ERROR_NONE);
Florin Corasf03a59a2017-06-09 21:07:32 -07003801 _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3802 _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3803 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003804 _(CLOSE_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3805 _(CLOSE_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3806 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003807 _(LAST_ACK, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003808 _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003809 _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3810 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3811 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003812 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3813 TCP_ERROR_NONE);
3814 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3815 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3816 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3817 TCP_ERROR_NONE);
3818 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3819 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3820 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3821 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3822 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3823 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasdb84e572017-05-09 18:54:52 -07003824 _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003825 _(LAST_ACK, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3826 TCP_ERROR_NONE);
Florin Corasc01d5782018-10-17 14:53:11 -07003827 _(LAST_ACK, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003828 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3829 TCP_ERROR_NONE);
3830 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3831 TCP_ERROR_NONE);
3832 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3833 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003834 _(TIME_WAIT, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003835 _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3836 _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3837 TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003838 _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003839 _(TIME_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3840 TCP_ERROR_NONE);
Florin Coras50958952017-08-29 14:50:13 -07003841 _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003842 /* RFC793 CLOSED: An incoming segment containing a RST is discarded. An
3843 * incoming segment not containing a RST causes a RST to be sent in
3844 * response.*/
Florin Corasdc629cd2017-05-09 00:52:37 -07003845 _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08003846 _(CLOSED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003847 TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08003848 _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
3849 _(CLOSED, TCP_FLAG_SYN, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
3850 _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3851 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003852#undef _
3853}
3854
Florin Coras0dbd5172018-06-25 16:19:34 -07003855static clib_error_t *
Dave Barach68b0fb02017-02-28 15:15:56 -05003856tcp_input_init (vlib_main_t * vm)
3857{
3858 clib_error_t *error = 0;
3859 tcp_main_t *tm = vnet_get_tcp_main ();
3860
3861 if ((error = vlib_call_init_function (vm, tcp_init)))
3862 return error;
3863
3864 /* Initialize dispatch table. */
3865 tcp_dispatch_table_init (tm);
3866
3867 return error;
3868}
3869
3870VLIB_INIT_FUNCTION (tcp_input_init);
3871
Filip Tehlare275bed2019-03-06 00:06:56 -08003872#endif /* CLIB_MARCH_VARIANT */
3873
Dave Barach68b0fb02017-02-28 15:15:56 -05003874/*
3875 * fd.io coding-style-patch-verification: ON
3876 *
3877 * Local Variables:
3878 * eval: (c-set-style "gnu")
3879 * End:
3880 */