blob: b9480cabf824a69ba5b1837049f76a608f4c684a [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Coras830fe732019-02-15 18:20:58 -08002 * Copyright (c) 2016-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vppinfra/sparse_vec.h>
17#include <vnet/tcp/tcp_packet.h>
18#include <vnet/tcp/tcp.h>
19#include <vnet/session/session.h>
20#include <math.h>
21
22static char *tcp_error_strings[] = {
23#define tcp_error(n,s) s,
24#include <vnet/tcp/tcp_error.def>
25#undef tcp_error
26};
27
28/* All TCP nodes have the same outgoing arcs */
29#define foreach_tcp_state_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080030 _ (DROP4, "ip4-drop") \
31 _ (DROP6, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -050032 _ (TCP4_OUTPUT, "tcp4-output") \
33 _ (TCP6_OUTPUT, "tcp6-output")
34
35typedef enum _tcp_established_next
36{
37#define _(s,n) TCP_ESTABLISHED_NEXT_##s,
38 foreach_tcp_state_next
39#undef _
40 TCP_ESTABLISHED_N_NEXT,
41} tcp_established_next_t;
42
43typedef enum _tcp_rcv_process_next
44{
45#define _(s,n) TCP_RCV_PROCESS_NEXT_##s,
46 foreach_tcp_state_next
47#undef _
48 TCP_RCV_PROCESS_N_NEXT,
49} tcp_rcv_process_next_t;
50
51typedef enum _tcp_syn_sent_next
52{
53#define _(s,n) TCP_SYN_SENT_NEXT_##s,
54 foreach_tcp_state_next
55#undef _
56 TCP_SYN_SENT_N_NEXT,
57} tcp_syn_sent_next_t;
58
59typedef enum _tcp_listen_next
60{
61#define _(s,n) TCP_LISTEN_NEXT_##s,
62 foreach_tcp_state_next
63#undef _
64 TCP_LISTEN_N_NEXT,
65} tcp_listen_next_t;
66
67/* Generic, state independent indices */
68typedef enum _tcp_state_next
69{
70#define _(s,n) TCP_NEXT_##s,
71 foreach_tcp_state_next
72#undef _
73 TCP_STATE_N_NEXT,
74} tcp_state_next_t;
75
76#define tcp_next_output(is_ip4) (is_ip4 ? TCP_NEXT_TCP4_OUTPUT \
77 : TCP_NEXT_TCP6_OUTPUT)
78
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080079#define tcp_next_drop(is_ip4) (is_ip4 ? TCP_NEXT_DROP4 \
80 : TCP_NEXT_DROP6)
81
Dave Barach68b0fb02017-02-28 15:15:56 -050082/**
83 * Validate segment sequence number. As per RFC793:
84 *
85 * Segment Receive Test
86 * Length Window
87 * ------- ------- -------------------------------------------
88 * 0 0 SEG.SEQ = RCV.NXT
89 * 0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
90 * >0 0 not acceptable
91 * >0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
92 * or RCV.NXT =< SEG.SEQ+SEG.LEN-1 < RCV.NXT+RCV.WND
93 *
94 * This ultimately consists in checking if segment falls within the window.
95 * The one important difference compared to RFC793 is that we use rcv_las,
96 * or the rcv_nxt at last ack sent instead of rcv_nxt since that's the
97 * peer's reference when computing our receive window.
98 *
Florin Coras6792ec02017-03-13 03:49:51 -070099 * This:
100 * seq_leq (end_seq, tc->rcv_las + tc->rcv_wnd) && seq_geq (seq, tc->rcv_las)
101 * however, is too strict when we have retransmits. Instead we just check that
102 * the seq is not beyond the right edge and that the end of the segment is not
103 * less than the left edge.
104 *
105 * N.B. rcv_nxt and rcv_wnd are both updated in this node if acks are sent, so
106 * use rcv_nxt in the right edge window test instead of rcv_las.
107 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500108 */
109always_inline u8
110tcp_segment_in_rcv_wnd (tcp_connection_t * tc, u32 seq, u32 end_seq)
111{
Florin Coras6792ec02017-03-13 03:49:51 -0700112 return (seq_geq (end_seq, tc->rcv_las)
113 && seq_leq (seq, tc->rcv_nxt + tc->rcv_wnd));
Dave Barach68b0fb02017-02-28 15:15:56 -0500114}
115
Florin Corasdb84e572017-05-09 18:54:52 -0700116/**
117 * Parse TCP header options.
118 *
119 * @param th TCP header
120 * @param to TCP options data structure to be populated
Florin Coras80231112018-12-05 15:59:31 -0800121 * @param is_syn set if packet is syn
Florin Corasdb84e572017-05-09 18:54:52 -0700122 * @return -1 if parsing failed
123 */
Florin Coras80231112018-12-05 15:59:31 -0800124static inline int
125tcp_options_parse (tcp_header_t * th, tcp_options_t * to, u8 is_syn)
Dave Barach68b0fb02017-02-28 15:15:56 -0500126{
127 const u8 *data;
128 u8 opt_len, opts_len, kind;
129 int j;
130 sack_block_t b;
131
132 opts_len = (tcp_doff (th) << 2) - sizeof (tcp_header_t);
133 data = (const u8 *) (th + 1);
134
135 /* Zero out all flags but those set in SYN */
Florin Corasd6fe5bd2018-10-16 19:52:10 -0700136 to->flags &= (TCP_OPTS_FLAG_SACK_PERMITTED | TCP_OPTS_FLAG_WSCALE
Florin Coras80231112018-12-05 15:59:31 -0800137 | TCP_OPTS_FLAG_TSTAMP | TCP_OPTION_MSS);
Dave Barach68b0fb02017-02-28 15:15:56 -0500138
139 for (; opts_len > 0; opts_len -= opt_len, data += opt_len)
140 {
141 kind = data[0];
142
143 /* Get options length */
144 if (kind == TCP_OPTION_EOL)
145 break;
146 else if (kind == TCP_OPTION_NOOP)
Florin Corasdb84e572017-05-09 18:54:52 -0700147 {
148 opt_len = 1;
149 continue;
150 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500151 else
152 {
153 /* broken options */
154 if (opts_len < 2)
Florin Corasdb84e572017-05-09 18:54:52 -0700155 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500156 opt_len = data[1];
157
158 /* weird option length */
159 if (opt_len < 2 || opt_len > opts_len)
Florin Corasdb84e572017-05-09 18:54:52 -0700160 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500161 }
162
163 /* Parse options */
164 switch (kind)
165 {
166 case TCP_OPTION_MSS:
Florin Coras80231112018-12-05 15:59:31 -0800167 if (!is_syn)
168 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500169 if ((opt_len == TCP_OPTION_LEN_MSS) && tcp_syn (th))
170 {
171 to->flags |= TCP_OPTS_FLAG_MSS;
172 to->mss = clib_net_to_host_u16 (*(u16 *) (data + 2));
173 }
174 break;
175 case TCP_OPTION_WINDOW_SCALE:
Florin Coras80231112018-12-05 15:59:31 -0800176 if (!is_syn)
177 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500178 if ((opt_len == TCP_OPTION_LEN_WINDOW_SCALE) && tcp_syn (th))
179 {
180 to->flags |= TCP_OPTS_FLAG_WSCALE;
181 to->wscale = data[2];
182 if (to->wscale > TCP_MAX_WND_SCALE)
Florin Corasa9d5bea2018-12-17 08:24:19 -0800183 to->wscale = TCP_MAX_WND_SCALE;
Dave Barach68b0fb02017-02-28 15:15:56 -0500184 }
185 break;
186 case TCP_OPTION_TIMESTAMP:
Florin Coras80231112018-12-05 15:59:31 -0800187 if (is_syn)
188 to->flags |= TCP_OPTS_FLAG_TSTAMP;
189 if ((to->flags & TCP_OPTS_FLAG_TSTAMP)
190 && opt_len == TCP_OPTION_LEN_TIMESTAMP)
Dave Barach68b0fb02017-02-28 15:15:56 -0500191 {
Dave Barach68b0fb02017-02-28 15:15:56 -0500192 to->tsval = clib_net_to_host_u32 (*(u32 *) (data + 2));
193 to->tsecr = clib_net_to_host_u32 (*(u32 *) (data + 6));
194 }
195 break;
196 case TCP_OPTION_SACK_PERMITTED:
Florin Coras80231112018-12-05 15:59:31 -0800197 if (!is_syn)
198 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500199 if (opt_len == TCP_OPTION_LEN_SACK_PERMITTED && tcp_syn (th))
200 to->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
201 break;
202 case TCP_OPTION_SACK_BLOCK:
203 /* If SACK permitted was not advertised or a SYN, break */
204 if ((to->flags & TCP_OPTS_FLAG_SACK_PERMITTED) == 0 || tcp_syn (th))
205 break;
206
207 /* If too short or not correctly formatted, break */
208 if (opt_len < 10 || ((opt_len - 2) % TCP_OPTION_LEN_SACK_BLOCK))
209 break;
210
211 to->flags |= TCP_OPTS_FLAG_SACK;
212 to->n_sack_blocks = (opt_len - 2) / TCP_OPTION_LEN_SACK_BLOCK;
213 vec_reset_length (to->sacks);
214 for (j = 0; j < to->n_sack_blocks; j++)
215 {
Florin Coras3eb50622017-07-13 01:24:57 -0400216 b.start = clib_net_to_host_u32 (*(u32 *) (data + 2 + 8 * j));
217 b.end = clib_net_to_host_u32 (*(u32 *) (data + 6 + 8 * j));
Dave Barach68b0fb02017-02-28 15:15:56 -0500218 vec_add1 (to->sacks, b);
219 }
220 break;
221 default:
222 /* Nothing to see here */
223 continue;
224 }
225 }
Florin Corasdb84e572017-05-09 18:54:52 -0700226 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500227}
228
Florin Corasc28764f2017-04-26 00:08:42 -0700229/**
230 * RFC1323: Check against wrapped sequence numbers (PAWS). If we have
231 * timestamp to echo and it's less than tsval_recent, drop segment
232 * but still send an ACK in order to retain TCP's mechanism for detecting
233 * and recovering from half-open connections
234 *
235 * Or at least that's what the theory says. It seems that this might not work
236 * very well with packet reordering and fast retransmit. XXX
237 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500238always_inline int
239tcp_segment_check_paws (tcp_connection_t * tc)
240{
Florin Corasea41aac2018-12-06 17:24:59 -0800241 return tcp_opts_tstamp (&tc->rcv_opts)
Florin Coras93992a92017-05-24 18:03:56 -0700242 && timestamp_lt (tc->rcv_opts.tsval, tc->tsval_recent);
Dave Barach68b0fb02017-02-28 15:15:56 -0500243}
244
245/**
Florin Corasc28764f2017-04-26 00:08:42 -0700246 * Update tsval recent
247 */
248always_inline void
249tcp_update_timestamp (tcp_connection_t * tc, u32 seq, u32 seq_end)
250{
251 /*
252 * RFC1323: If Last.ACK.sent falls within the range of sequence numbers
253 * of an incoming segment:
254 * SEG.SEQ <= Last.ACK.sent < SEG.SEQ + SEG.LEN
255 * then the TSval from the segment is copied to TS.Recent;
256 * otherwise, the TSval is ignored.
257 */
Florin Corasf1762d62017-09-24 19:43:08 -0400258 if (tcp_opts_tstamp (&tc->rcv_opts) && seq_leq (seq, tc->rcv_las)
259 && seq_leq (tc->rcv_las, seq_end))
Florin Corasc28764f2017-04-26 00:08:42 -0700260 {
Dave Barach2c25a622017-06-26 11:35:07 -0400261 ASSERT (timestamp_leq (tc->tsval_recent, tc->rcv_opts.tsval));
Florin Coras93992a92017-05-24 18:03:56 -0700262 tc->tsval_recent = tc->rcv_opts.tsval;
Florin Corasbe72ae62018-11-01 11:23:03 -0700263 tc->tsval_recent_age = tcp_time_now_w_thread (tc->c_thread_index);
Florin Corasc28764f2017-04-26 00:08:42 -0700264 }
265}
266
267/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500268 * Validate incoming segment as per RFC793 p. 69 and RFC1323 p. 19
269 *
270 * It first verifies if segment has a wrapped sequence number (PAWS) and then
271 * does the processing associated to the first four steps (ignoring security
272 * and precedence): sequence number, rst bit and syn bit checks.
273 *
274 * @return 0 if segments passes validation.
275 */
276static int
Florin Coras7ac053b2018-11-05 15:57:21 -0800277tcp_segment_validate (tcp_worker_ctx_t * wrk, tcp_connection_t * tc0,
278 vlib_buffer_t * b0, tcp_header_t * th0, u32 * error0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500279{
Florin Corasca1c8f32018-05-23 21:01:30 -0700280 /* We could get a burst of RSTs interleaved with acks */
281 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
282 {
283 tcp_send_reset (tc0);
284 *error0 = TCP_ERROR_CONNECTION_CLOSED;
Florin Coras7ac053b2018-11-05 15:57:21 -0800285 goto error;
Florin Corasca1c8f32018-05-23 21:01:30 -0700286 }
287
Dave Barach68b0fb02017-02-28 15:15:56 -0500288 if (PREDICT_FALSE (!tcp_ack (th0) && !tcp_rst (th0) && !tcp_syn (th0)))
Florin Coras00cd22d2018-04-18 13:20:18 -0700289 {
290 *error0 = TCP_ERROR_SEGMENT_INVALID;
Florin Coras7ac053b2018-11-05 15:57:21 -0800291 goto error;
Florin Coras00cd22d2018-04-18 13:20:18 -0700292 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500293
Florin Coras80231112018-12-05 15:59:31 -0800294 if (PREDICT_FALSE (tcp_options_parse (th0, &tc0->rcv_opts, 0)))
Florin Corasdb84e572017-05-09 18:54:52 -0700295 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700296 *error0 = TCP_ERROR_OPTIONS;
Florin Coras7ac053b2018-11-05 15:57:21 -0800297 goto error;
Florin Corasdb84e572017-05-09 18:54:52 -0700298 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500299
Florin Coras00cd22d2018-04-18 13:20:18 -0700300 if (PREDICT_FALSE (tcp_segment_check_paws (tc0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500301 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700302 *error0 = TCP_ERROR_PAWS;
Florin Corasc28764f2017-04-26 00:08:42 -0700303 TCP_EVT_DBG (TCP_EVT_PAWS_FAIL, tc0, vnet_buffer (b0)->tcp.seq_number,
304 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500305
306 /* If it just so happens that a segment updates tsval_recent for a
307 * segment over 24 days old, invalidate tsval_recent. */
308 if (timestamp_lt (tc0->tsval_recent_age + TCP_PAWS_IDLE,
Florin Corasbe72ae62018-11-01 11:23:03 -0700309 tcp_time_now_w_thread (tc0->c_thread_index)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500310 {
Florin Corasea41aac2018-12-06 17:24:59 -0800311 tc0->tsval_recent = tc0->rcv_opts.tsval;
Florin Coras91236ce2018-12-16 11:41:45 -0800312 clib_warning ("paws failed: 24-day old segment");
Dave Barach68b0fb02017-02-28 15:15:56 -0500313 }
Florin Coras91236ce2018-12-16 11:41:45 -0800314 /* Drop after ack if not rst. Resets can fail paws check as per
315 * RFC 7323 sec. 5.2: When an <RST> segment is received, it MUST NOT
316 * be subjected to the PAWS check by verifying an acceptable value in
317 * SEG.TSval */
318 else if (!tcp_rst (th0))
Dave Barach68b0fb02017-02-28 15:15:56 -0500319 {
Florin Coras26dd6de2019-07-23 23:54:47 -0700320 tcp_program_ack (tc0);
Florin Coras91236ce2018-12-16 11:41:45 -0800321 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
322 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500323 }
324 }
325
326 /* 1st: check sequence number */
327 if (!tcp_segment_in_rcv_wnd (tc0, vnet_buffer (b0)->tcp.seq_number,
328 vnet_buffer (b0)->tcp.seq_end))
329 {
Florin Coras830fe732019-02-15 18:20:58 -0800330 /* SYN/SYN-ACK retransmit */
331 if (tcp_syn (th0)
332 && vnet_buffer (b0)->tcp.seq_number == tc0->rcv_nxt - 1)
333 {
334 tcp_options_parse (th0, &tc0->rcv_opts, 1);
335 if (tc0->state == TCP_STATE_SYN_RCVD)
336 {
337 tcp_send_synack (tc0);
338 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, tc0, 0);
339 *error0 = TCP_ERROR_SYNS_RCVD;
340 }
341 else
342 {
Florin Coras26dd6de2019-07-23 23:54:47 -0700343 tcp_program_ack (tc0);
Florin Coras830fe732019-02-15 18:20:58 -0800344 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, tc0);
345 *error0 = TCP_ERROR_SYN_ACKS_RCVD;
346 }
347 goto error;
348 }
349
Florin Coras6792ec02017-03-13 03:49:51 -0700350 /* If our window is 0 and the packet is in sequence, let it pass
Florin Coras00cd22d2018-04-18 13:20:18 -0700351 * through for ack processing. It should be dropped later. */
Florin Coras7e74bf32019-03-06 16:51:58 -0800352 if (tc0->rcv_wnd < tc0->snd_mss
Florin Coras222e1f412019-02-16 20:47:32 -0800353 && tc0->rcv_nxt == vnet_buffer (b0)->tcp.seq_number)
354 goto check_reset;
355
356 /* If we entered recovery and peer did so as well, there's a chance that
357 * dup acks won't be acceptable on either end because seq_end may be less
358 * than rcv_las. This can happen if acks are lost in both directions. */
359 if (tcp_in_recovery (tc0)
360 && seq_geq (vnet_buffer (b0)->tcp.seq_number,
361 tc0->rcv_las - tc0->rcv_wnd)
362 && seq_leq (vnet_buffer (b0)->tcp.seq_end,
363 tc0->rcv_nxt + tc0->rcv_wnd))
364 goto check_reset;
365
366 *error0 = TCP_ERROR_RCV_WND;
367
Florin Corasedfe0ee2019-07-29 18:13:25 -0700368 tc0->errors.below_data_wnd += seq_lt (vnet_buffer (b0)->tcp.seq_end,
369 tc0->rcv_las);
370
Florin Coras222e1f412019-02-16 20:47:32 -0800371 /* If not RST, send dup ack */
372 if (!tcp_rst (th0))
Florin Coras6792ec02017-03-13 03:49:51 -0700373 {
Florin Coras26dd6de2019-07-23 23:54:47 -0700374 tcp_program_dupack (tc0);
Florin Coras222e1f412019-02-16 20:47:32 -0800375 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
Florin Coras6792ec02017-03-13 03:49:51 -0700376 }
Florin Coras222e1f412019-02-16 20:47:32 -0800377 goto error;
378
379 check_reset:
380 ;
Dave Barach68b0fb02017-02-28 15:15:56 -0500381 }
382
383 /* 2nd: check the RST bit */
Florin Coras00cd22d2018-04-18 13:20:18 -0700384 if (PREDICT_FALSE (tcp_rst (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500385 {
Florin Corasd79b41e2017-03-04 05:37:52 -0800386 tcp_connection_reset (tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -0700387 *error0 = TCP_ERROR_RST_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -0800388 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500389 }
390
391 /* 3rd: check security and precedence (skip) */
392
Florin Coras830fe732019-02-15 18:20:58 -0800393 /* 4th: check the SYN bit (in window) */
Florin Coras00cd22d2018-04-18 13:20:18 -0700394 if (PREDICT_FALSE (tcp_syn (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500395 {
Florin Corasd567a8d2019-06-07 12:38:55 -0700396 /* As per RFC5961 send challenge ack instead of reset */
Florin Coras26dd6de2019-07-23 23:54:47 -0700397 tcp_program_ack (tc0);
Florin Coras830fe732019-02-15 18:20:58 -0800398 *error0 = TCP_ERROR_SPURIOUS_SYN;
Florin Coras00cd22d2018-04-18 13:20:18 -0700399 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500400 }
401
Florin Corasc28764f2017-04-26 00:08:42 -0700402 /* If segment in window, save timestamp */
403 tcp_update_timestamp (tc0, vnet_buffer (b0)->tcp.seq_number,
404 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500405 return 0;
Florin Coras00cd22d2018-04-18 13:20:18 -0700406
Florin Coras00cd22d2018-04-18 13:20:18 -0700407error:
Florin Coras00cd22d2018-04-18 13:20:18 -0700408 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500409}
410
411always_inline int
Florin Corasf65074e2019-03-31 17:17:11 -0700412tcp_rcv_ack_no_cc (tcp_connection_t * tc, vlib_buffer_t * b, u32 * error)
Dave Barach68b0fb02017-02-28 15:15:56 -0500413{
414 /* SND.UNA =< SEG.ACK =< SND.NXT */
Florin Corasf65074e2019-03-31 17:17:11 -0700415 if (!(seq_leq (tc->snd_una, vnet_buffer (b)->tcp.ack_number)
416 && seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
417 {
Florin Coras282a3cb2019-04-02 21:43:38 -0700418 if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)
419 && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
Florin Corasf65074e2019-03-31 17:17:11 -0700420 {
421 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
422 goto acceptable;
423 }
424 *error = TCP_ERROR_ACK_INVALID;
425 return -1;
426 }
427
428acceptable:
429 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
430 tc->snd_una = vnet_buffer (b)->tcp.ack_number;
431 *error = TCP_ERROR_ACK_OK;
432 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500433}
434
435/**
436 * Compute smoothed RTT as per VJ's '88 SIGCOMM and RFC6298
437 *
438 * Note that although the original article, srtt and rttvar are scaled
439 * to minimize round-off errors, here we don't. Instead, we rely on
440 * better precision time measurements.
441 *
442 * TODO support us rtt resolution
443 */
444static void
445tcp_estimate_rtt (tcp_connection_t * tc, u32 mrtt)
446{
Florin Corasf03a59a2017-06-09 21:07:32 -0700447 int err, diff;
Dave Barach68b0fb02017-02-28 15:15:56 -0500448
449 if (tc->srtt != 0)
450 {
451 err = mrtt - tc->srtt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500452
453 /* XXX Drop in RTT results in RTTVAR increase and bigger RTO.
454 * The increase should be bound */
Florin Corasf03a59a2017-06-09 21:07:32 -0700455 tc->srtt = clib_max ((int) tc->srtt + (err >> 3), 1);
456 diff = (clib_abs (err) - (int) tc->rttvar) >> 2;
457 tc->rttvar = clib_max ((int) tc->rttvar + diff, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500458 }
459 else
460 {
461 /* First measurement. */
462 tc->srtt = mrtt;
Florin Coras6792ec02017-03-13 03:49:51 -0700463 tc->rttvar = mrtt >> 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500464 }
465}
466
Filip Tehlare275bed2019-03-06 00:06:56 -0800467#ifndef CLIB_MARCH_VARIANT
Florin Coras93992a92017-05-24 18:03:56 -0700468void
469tcp_update_rto (tcp_connection_t * tc)
470{
471 tc->rto = clib_min (tc->srtt + (tc->rttvar << 2), TCP_RTO_MAX);
Florin Corasf03a59a2017-06-09 21:07:32 -0700472 tc->rto = clib_max (tc->rto, TCP_RTO_MIN);
Florin Coras93992a92017-05-24 18:03:56 -0700473}
Filip Tehlare275bed2019-03-06 00:06:56 -0800474#endif /* CLIB_MARCH_VARIANT */
Florin Coras93992a92017-05-24 18:03:56 -0700475
Florin Corasf1762d62017-09-24 19:43:08 -0400476/**
477 * Update RTT estimate and RTO timer
Dave Barach68b0fb02017-02-28 15:15:56 -0500478 *
479 * Measure RTT: We have two sources of RTT measurements: TSOPT and ACK
480 * timing. Middle boxes are known to fiddle with TCP options so we
481 * should give higher priority to ACK timing.
482 *
Florin Corasf1762d62017-09-24 19:43:08 -0400483 * This should be called only if previously sent bytes have been acked.
484 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500485 * return 1 if valid rtt 0 otherwise
486 */
487static int
488tcp_update_rtt (tcp_connection_t * tc, u32 ack)
489{
490 u32 mrtt = 0;
491
492 /* Karn's rule, part 1. Don't use retransmitted segments to estimate
493 * RTT because they're ambiguous. */
Florin Corasf1762d62017-09-24 19:43:08 -0400494 if (tcp_in_cong_recovery (tc) || tc->sack_sb.sacked_bytes)
Florin Coras3ec66b02018-08-23 16:27:05 -0700495 {
496 if (tcp_in_recovery (tc))
497 return 0;
498 goto done;
499 }
Florin Corasf1762d62017-09-24 19:43:08 -0400500
501 if (tc->rtt_ts && seq_geq (ack, tc->rtt_seq))
Dave Barach68b0fb02017-02-28 15:15:56 -0500502 {
Florin Corasefefc6b2018-11-07 12:49:19 -0800503 f64 sample = tcp_time_now_us (tc->c_thread_index) - tc->rtt_ts;
504 tc->mrtt_us = tc->mrtt_us + (sample - tc->mrtt_us) * 0.125;
505 mrtt = clib_max ((u32) (sample * THZ), 1);
506 /* Allow measuring of a new RTT */
507 tc->rtt_ts = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500508 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500509 /* As per RFC7323 TSecr can be used for RTTM only if the segment advances
510 * snd_una, i.e., the left side of the send window:
Florin Corasf1762d62017-09-24 19:43:08 -0400511 * seq_lt (tc->snd_una, ack). This is a condition for calling update_rtt */
512 else if (tcp_opts_tstamp (&tc->rcv_opts) && tc->rcv_opts.tsecr)
Dave Barach68b0fb02017-02-28 15:15:56 -0500513 {
Vladimir Kropylev1cfcb782019-07-02 11:25:26 +0300514 u32 now = tcp_tstamp (tc);
Florin Corasbe72ae62018-11-01 11:23:03 -0700515 mrtt = clib_max (now - tc->rcv_opts.tsecr, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500516 }
517
Florin Corasf1762d62017-09-24 19:43:08 -0400518 /* Ignore dubious measurements */
519 if (mrtt == 0 || mrtt > TCP_RTT_MAX)
520 goto done;
521
522 tcp_estimate_rtt (tc, mrtt);
523
524done:
525
Florin Corasf1762d62017-09-24 19:43:08 -0400526 /* If we got here something must've been ACKed so make sure boff is 0,
Florin Coras3ec66b02018-08-23 16:27:05 -0700527 * even if mrtt is not valid since we update the rto lower */
Florin Corasf1762d62017-09-24 19:43:08 -0400528 tc->rto_boff = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700529 tcp_update_rto (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500530
Florin Coras3af90fc2017-05-03 21:09:42 -0700531 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500532}
533
Florin Corasefefc6b2018-11-07 12:49:19 -0800534static void
535tcp_estimate_initial_rtt (tcp_connection_t * tc)
536{
537 u8 thread_index = vlib_num_workers ()? 1 : 0;
538 int mrtt;
539
540 if (tc->rtt_ts)
541 {
542 tc->mrtt_us = tcp_time_now_us (thread_index) - tc->rtt_ts;
Florin Coras222e1f412019-02-16 20:47:32 -0800543 tc->mrtt_us = clib_max (tc->mrtt_us, 0.0001);
Florin Corasefefc6b2018-11-07 12:49:19 -0800544 mrtt = clib_max ((u32) (tc->mrtt_us * THZ), 1);
545 tc->rtt_ts = 0;
546 }
547 else
548 {
549 mrtt = tcp_time_now_w_thread (thread_index) - tc->rcv_opts.tsecr;
Florin Coras4af830c2018-12-04 09:21:36 -0800550 mrtt = clib_max (mrtt, 1);
Florin Coras222e1f412019-02-16 20:47:32 -0800551 /* Due to retransmits we don't know the initial mrtt */
552 if (tc->rto_boff && mrtt > 1 * THZ)
553 mrtt = 1 * THZ;
Florin Corasefefc6b2018-11-07 12:49:19 -0800554 tc->mrtt_us = (f64) mrtt *TCP_TICK;
Florin Corasefefc6b2018-11-07 12:49:19 -0800555 }
556
557 if (mrtt > 0 && mrtt < TCP_RTT_MAX)
558 tcp_estimate_rtt (tc, mrtt);
Florin Coras54ddf432018-12-21 13:54:09 -0800559 tcp_update_rto (tc);
Florin Corasefefc6b2018-11-07 12:49:19 -0800560}
561
Dave Barach68b0fb02017-02-28 15:15:56 -0500562/**
Florin Coras9ece3c02018-11-05 11:06:53 -0800563 * Dequeue bytes for connections that have received acks in last burst
Dave Barach68b0fb02017-02-28 15:15:56 -0500564 */
565static void
Florin Coras9ece3c02018-11-05 11:06:53 -0800566tcp_handle_postponed_dequeues (tcp_worker_ctx_t * wrk)
Dave Barach68b0fb02017-02-28 15:15:56 -0500567{
Florin Coras9ece3c02018-11-05 11:06:53 -0800568 u32 thread_index = wrk->vm->thread_index;
569 u32 *pending_deq_acked;
570 tcp_connection_t *tc;
571 int i;
Florin Coras93992a92017-05-24 18:03:56 -0700572
Florin Coras9ece3c02018-11-05 11:06:53 -0800573 if (!vec_len (wrk->pending_deq_acked))
574 return;
Dave Barach68b0fb02017-02-28 15:15:56 -0500575
Florin Coras9ece3c02018-11-05 11:06:53 -0800576 pending_deq_acked = wrk->pending_deq_acked;
577 for (i = 0; i < vec_len (pending_deq_acked); i++)
578 {
579 tc = tcp_connection_get (pending_deq_acked[i], thread_index);
580 tc->flags &= ~TCP_CONN_DEQ_PENDING;
Florin Coras93992a92017-05-24 18:03:56 -0700581
Florin Corasefefc6b2018-11-07 12:49:19 -0800582 if (PREDICT_FALSE (!tc->burst_acked))
583 continue;
584
Florin Coras9ece3c02018-11-05 11:06:53 -0800585 /* Dequeue the newly ACKed bytes */
Florin Coras31c99552019-03-01 13:00:58 -0800586 session_tx_fifo_dequeue_drop (&tc->connection, tc->burst_acked);
Florin Coras9ece3c02018-11-05 11:06:53 -0800587 tc->burst_acked = 0;
588 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
589
Florin Coras42ceddb2018-12-12 10:56:01 -0800590 if (PREDICT_FALSE (tc->flags & TCP_CONN_PSH_PENDING))
591 {
592 if (seq_leq (tc->psh_seq, tc->snd_una))
593 tc->flags &= ~TCP_CONN_PSH_PENDING;
594 }
595
Florin Coras9ece3c02018-11-05 11:06:53 -0800596 /* If everything has been acked, stop retransmit timer
597 * otherwise update. */
598 tcp_retransmit_timer_update (tc);
Florin Corasefefc6b2018-11-07 12:49:19 -0800599
600 /* If not congested, update pacer based on our new
601 * cwnd estimate */
602 if (!tcp_in_fastrecovery (tc))
603 tcp_connection_tx_pacer_update (tc);
Florin Coras9ece3c02018-11-05 11:06:53 -0800604 }
605 _vec_len (wrk->pending_deq_acked) = 0;
606}
607
608static void
609tcp_program_dequeue (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
610{
611 if (!(tc->flags & TCP_CONN_DEQ_PENDING))
612 {
613 vec_add1 (wrk->pending_deq_acked, tc->c_c_index);
614 tc->flags |= TCP_CONN_DEQ_PENDING;
615 }
616 tc->burst_acked += tc->bytes_acked + tc->sack_sb.snd_una_adv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500617}
618
Florin Coras6792ec02017-03-13 03:49:51 -0700619/**
Florin Coras93992a92017-05-24 18:03:56 -0700620 * Check if duplicate ack as per RFC5681 Sec. 2
621 */
622static u8
623tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd,
624 u32 prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500625{
Florin Coras93992a92017-05-24 18:03:56 -0700626 return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
Florin Coras47596832019-03-12 18:58:54 -0700627 && seq_gt (tc->snd_nxt, tc->snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500628 && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
Florin Coras93992a92017-05-24 18:03:56 -0700629 && (prev_snd_wnd == tc->snd_wnd));
630}
631
632/**
633 * Checks if ack is a congestion control event.
634 */
635static u8
636tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b,
637 u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
638{
639 /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
640 * defined to be 'duplicate' */
641 *is_dack = tc->sack_sb.last_sacked_bytes
642 || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
643
Dave Barach2c25a622017-06-26 11:35:07 -0400644 return ((*is_dack || tcp_in_cong_recovery (tc)) && !tcp_is_lost_fin (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -0500645}
646
Filip Tehlare275bed2019-03-06 00:06:56 -0800647#ifndef CLIB_MARCH_VARIANT
Florin Coras0dbd5172018-06-25 16:19:34 -0700648static u32
649scoreboard_hole_index (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
650{
651 ASSERT (!pool_is_free_index (sb->holes, hole - sb->holes));
652 return hole - sb->holes;
653}
654
655static u32
656scoreboard_hole_bytes (sack_scoreboard_hole_t * hole)
657{
658 return hole->end - hole->start;
659}
660
661sack_scoreboard_hole_t *
662scoreboard_get_hole (sack_scoreboard_t * sb, u32 index)
663{
664 if (index != TCP_INVALID_SACK_HOLE_INDEX)
665 return pool_elt_at_index (sb->holes, index);
666 return 0;
667}
668
669sack_scoreboard_hole_t *
670scoreboard_next_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
671{
672 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
673 return pool_elt_at_index (sb->holes, hole->next);
674 return 0;
675}
676
677sack_scoreboard_hole_t *
678scoreboard_prev_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
679{
680 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
681 return pool_elt_at_index (sb->holes, hole->prev);
682 return 0;
683}
684
685sack_scoreboard_hole_t *
686scoreboard_first_hole (sack_scoreboard_t * sb)
687{
688 if (sb->head != TCP_INVALID_SACK_HOLE_INDEX)
689 return pool_elt_at_index (sb->holes, sb->head);
690 return 0;
691}
692
693sack_scoreboard_hole_t *
694scoreboard_last_hole (sack_scoreboard_t * sb)
695{
696 if (sb->tail != TCP_INVALID_SACK_HOLE_INDEX)
697 return pool_elt_at_index (sb->holes, sb->tail);
698 return 0;
699}
700
701static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500702scoreboard_remove_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
703{
704 sack_scoreboard_hole_t *next, *prev;
705
706 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
707 {
708 next = pool_elt_at_index (sb->holes, hole->next);
709 next->prev = hole->prev;
710 }
Florin Coras93992a92017-05-24 18:03:56 -0700711 else
712 {
713 sb->tail = hole->prev;
714 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500715
716 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
717 {
718 prev = pool_elt_at_index (sb->holes, hole->prev);
719 prev->next = hole->next;
720 }
721 else
722 {
723 sb->head = hole->next;
724 }
725
Florin Coras93992a92017-05-24 18:03:56 -0700726 if (scoreboard_hole_index (sb, hole) == sb->cur_rxt_hole)
727 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
728
Florin Coras3eb50622017-07-13 01:24:57 -0400729 /* Poison the entry */
730 if (CLIB_DEBUG > 0)
Dave Barachb7b92992018-10-17 10:38:51 -0400731 clib_memset (hole, 0xfe, sizeof (*hole));
Florin Coras3eb50622017-07-13 01:24:57 -0400732
Dave Barach68b0fb02017-02-28 15:15:56 -0500733 pool_put (sb->holes, hole);
734}
735
Florin Coras0dbd5172018-06-25 16:19:34 -0700736static sack_scoreboard_hole_t *
Florin Coras6792ec02017-03-13 03:49:51 -0700737scoreboard_insert_hole (sack_scoreboard_t * sb, u32 prev_index,
Dave Barach68b0fb02017-02-28 15:15:56 -0500738 u32 start, u32 end)
739{
Florin Coras6792ec02017-03-13 03:49:51 -0700740 sack_scoreboard_hole_t *hole, *next, *prev;
Dave Barach68b0fb02017-02-28 15:15:56 -0500741 u32 hole_index;
742
743 pool_get (sb->holes, hole);
Dave Barachb7b92992018-10-17 10:38:51 -0400744 clib_memset (hole, 0, sizeof (*hole));
Dave Barach68b0fb02017-02-28 15:15:56 -0500745
746 hole->start = start;
747 hole->end = end;
Florin Coras3eb50622017-07-13 01:24:57 -0400748 hole_index = scoreboard_hole_index (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500749
Florin Coras6792ec02017-03-13 03:49:51 -0700750 prev = scoreboard_get_hole (sb, prev_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500751 if (prev)
752 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700753 hole->prev = prev_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500754 hole->next = prev->next;
755
756 if ((next = scoreboard_next_hole (sb, hole)))
757 next->prev = hole_index;
Florin Corasf03a59a2017-06-09 21:07:32 -0700758 else
759 sb->tail = hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500760
761 prev->next = hole_index;
762 }
763 else
764 {
765 sb->head = hole_index;
766 hole->prev = TCP_INVALID_SACK_HOLE_INDEX;
767 hole->next = TCP_INVALID_SACK_HOLE_INDEX;
768 }
769
770 return hole;
771}
Filip Tehlare275bed2019-03-06 00:06:56 -0800772#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -0500773
Filip Tehlare275bed2019-03-06 00:06:56 -0800774#ifndef CLIB_MARCH_VARIANT
Florin Coras0dbd5172018-06-25 16:19:34 -0700775static void
Florin Corasf03a59a2017-06-09 21:07:32 -0700776scoreboard_update_bytes (tcp_connection_t * tc, sack_scoreboard_t * sb)
Florin Coras93992a92017-05-24 18:03:56 -0700777{
Florin Corasecbd20b2018-10-17 23:34:54 -0700778 sack_scoreboard_hole_t *left, *right;
Florin Coras93992a92017-05-24 18:03:56 -0700779 u32 bytes = 0, blks = 0;
780
Florin Corasb3f58e12019-07-05 18:31:54 -0700781 sb->last_lost_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700782 sb->lost_bytes = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700783 sb->sacked_bytes = 0;
Florin Corasecbd20b2018-10-17 23:34:54 -0700784 left = scoreboard_last_hole (sb);
785 if (!left)
Florin Coras93992a92017-05-24 18:03:56 -0700786 return;
787
Florin Corasecbd20b2018-10-17 23:34:54 -0700788 if (seq_gt (sb->high_sacked, left->end))
Florin Coras93992a92017-05-24 18:03:56 -0700789 {
Florin Corasecbd20b2018-10-17 23:34:54 -0700790 bytes = sb->high_sacked - left->end;
Florin Coras93992a92017-05-24 18:03:56 -0700791 blks = 1;
792 }
793
Florin Coras9f9e9692018-10-19 17:49:00 -0700794 while ((right = left)
795 && bytes < (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
796 && blks < TCP_DUPACK_THRESHOLD
797 /* left not updated if above conditions fail */
798 && (left = scoreboard_prev_hole (sb, right)))
Florin Coras93992a92017-05-24 18:03:56 -0700799 {
Florin Corasecbd20b2018-10-17 23:34:54 -0700800 bytes += right->start - left->end;
Florin Coras93992a92017-05-24 18:03:56 -0700801 blks++;
Florin Coras93992a92017-05-24 18:03:56 -0700802 }
803
Florin Coras9f9e9692018-10-19 17:49:00 -0700804 /* left is first lost */
805 if (left)
Florin Coras93992a92017-05-24 18:03:56 -0700806 {
Florin Coras9f9e9692018-10-19 17:49:00 -0700807 do
808 {
809 sb->lost_bytes += scoreboard_hole_bytes (right);
Florin Corasb3f58e12019-07-05 18:31:54 -0700810 sb->last_lost_bytes += left->is_lost ? 0 : left->end - left->start;
Florin Coras9f9e9692018-10-19 17:49:00 -0700811 left->is_lost = 1;
812 left = scoreboard_prev_hole (sb, right);
813 if (left)
814 bytes += right->start - left->end;
815 }
816 while ((right = left));
Florin Coras93992a92017-05-24 18:03:56 -0700817 }
Florin Coras9f9e9692018-10-19 17:49:00 -0700818
Florin Corasf03a59a2017-06-09 21:07:32 -0700819 sb->sacked_bytes = bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700820}
821
822/**
823 * Figure out the next hole to retransmit
824 *
825 * Follows logic proposed in RFC6675 Sec. 4, NextSeg()
826 */
827sack_scoreboard_hole_t *
828scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
829 sack_scoreboard_hole_t * start,
Florin Coras36ee9f12018-11-02 12:52:10 -0700830 u8 have_unsent, u8 * can_rescue, u8 * snd_limited)
Florin Coras93992a92017-05-24 18:03:56 -0700831{
832 sack_scoreboard_hole_t *hole = 0;
833
834 hole = start ? start : scoreboard_first_hole (sb);
835 while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost)
836 hole = scoreboard_next_hole (sb, hole);
837
838 /* Nothing, return */
839 if (!hole)
840 {
841 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
842 return 0;
843 }
844
845 /* Rule (1): if higher than rxt, less than high_sacked and lost */
846 if (hole->is_lost && seq_lt (hole->start, sb->high_sacked))
847 {
848 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
849 }
850 else
851 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700852 /* Rule (2): available unsent data */
853 if (have_unsent)
Florin Coras93992a92017-05-24 18:03:56 -0700854 {
Florin Coras93992a92017-05-24 18:03:56 -0700855 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
Florin Coras36ee9f12018-11-02 12:52:10 -0700856 return 0;
Florin Coras93992a92017-05-24 18:03:56 -0700857 }
858 /* Rule (3): if hole not lost */
859 else if (seq_lt (hole->start, sb->high_sacked))
860 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700861 *snd_limited = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700862 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
863 }
864 /* Rule (4): if hole beyond high_sacked */
865 else
866 {
867 ASSERT (seq_geq (hole->start, sb->high_sacked));
868 *snd_limited = 1;
869 *can_rescue = 1;
870 /* HighRxt MUST NOT be updated */
871 return 0;
872 }
873 }
874
875 if (hole && seq_lt (sb->high_rxt, hole->start))
876 sb->high_rxt = hole->start;
877
878 return hole;
879}
Filip Tehlare275bed2019-03-06 00:06:56 -0800880#endif /* CLIB_MARCH_VARIANT */
Florin Coras93992a92017-05-24 18:03:56 -0700881
Florin Coras0dbd5172018-06-25 16:19:34 -0700882static void
Florin Coras36ee9f12018-11-02 12:52:10 -0700883scoreboard_init_high_rxt (sack_scoreboard_t * sb, u32 snd_una)
Florin Coras93992a92017-05-24 18:03:56 -0700884{
885 sack_scoreboard_hole_t *hole;
886 hole = scoreboard_first_hole (sb);
Florin Coras3eb50622017-07-13 01:24:57 -0400887 if (hole)
888 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700889 snd_una = seq_gt (snd_una, hole->start) ? snd_una : hole->start;
Florin Coras3eb50622017-07-13 01:24:57 -0400890 sb->cur_rxt_hole = sb->head;
891 }
Florin Coras36ee9f12018-11-02 12:52:10 -0700892 sb->high_rxt = snd_una;
893 sb->rescue_rxt = snd_una - 1;
Florin Coras3eb50622017-07-13 01:24:57 -0400894}
895
Filip Tehlare275bed2019-03-06 00:06:56 -0800896#ifndef CLIB_MARCH_VARIANT
Florin Coras0dbd5172018-06-25 16:19:34 -0700897void
898scoreboard_init (sack_scoreboard_t * sb)
899{
900 sb->head = TCP_INVALID_SACK_HOLE_INDEX;
901 sb->tail = TCP_INVALID_SACK_HOLE_INDEX;
902 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
903}
904
905void
906scoreboard_clear (sack_scoreboard_t * sb)
907{
908 sack_scoreboard_hole_t *hole;
909 while ((hole = scoreboard_first_hole (sb)))
910 {
911 scoreboard_remove_hole (sb, hole);
912 }
913 ASSERT (sb->head == sb->tail && sb->head == TCP_INVALID_SACK_HOLE_INDEX);
914 ASSERT (pool_elts (sb->holes) == 0);
915 sb->sacked_bytes = 0;
916 sb->last_sacked_bytes = 0;
917 sb->last_bytes_delivered = 0;
918 sb->snd_una_adv = 0;
919 sb->high_sacked = 0;
920 sb->high_rxt = 0;
921 sb->lost_bytes = 0;
Florin Corasb3f58e12019-07-05 18:31:54 -0700922 sb->last_lost_bytes = 0;
Florin Coras0dbd5172018-06-25 16:19:34 -0700923 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
924}
Filip Tehlare275bed2019-03-06 00:06:56 -0800925#endif /* CLIB_MARCH_VARIANT */
Florin Coras0dbd5172018-06-25 16:19:34 -0700926
Florin Coras3eb50622017-07-13 01:24:57 -0400927/**
928 * Test that scoreboard is sane after recovery
929 *
930 * Returns 1 if scoreboard is empty or if first hole beyond
931 * snd_una.
932 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700933static u8
Florin Coras3eb50622017-07-13 01:24:57 -0400934tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc)
935{
936 sack_scoreboard_hole_t *hole;
937 hole = scoreboard_first_hole (&tc->sack_sb);
Florin Corasecbd20b2018-10-17 23:34:54 -0700938 return (!hole || (seq_geq (hole->start, tc->snd_una)
Florin Coras47596832019-03-12 18:58:54 -0700939 && seq_lt (hole->end, tc->snd_nxt)));
Florin Coras93992a92017-05-24 18:03:56 -0700940}
941
Filip Tehlare275bed2019-03-06 00:06:56 -0800942#ifndef CLIB_MARCH_VARIANT
Florin Corasb3f58e12019-07-05 18:31:54 -0700943
Florin Coras93992a92017-05-24 18:03:56 -0700944void
Dave Barach68b0fb02017-02-28 15:15:56 -0500945tcp_rcv_sacks (tcp_connection_t * tc, u32 ack)
946{
Florin Corasf03a59a2017-06-09 21:07:32 -0700947 sack_scoreboard_hole_t *hole, *next_hole, *last_hole;
Florin Coras93992a92017-05-24 18:03:56 -0700948 u32 blk_index = 0, old_sacked_bytes, hole_index;
Florin Corasb3f58e12019-07-05 18:31:54 -0700949 sack_scoreboard_t *sb = &tc->sack_sb;
950 sack_block_t *blk, tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500951 int i, j;
952
Florin Coras6792ec02017-03-13 03:49:51 -0700953 sb->last_sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700954 sb->last_bytes_delivered = 0;
Florin Coras352c2c42018-06-26 01:22:41 -0700955 sb->snd_una_adv = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700956
Florin Coras93992a92017-05-24 18:03:56 -0700957 if (!tcp_opts_sack (&tc->rcv_opts)
958 && sb->head == TCP_INVALID_SACK_HOLE_INDEX)
Dave Barach68b0fb02017-02-28 15:15:56 -0500959 return;
960
Florin Coras352c2c42018-06-26 01:22:41 -0700961 old_sacked_bytes = sb->sacked_bytes;
962
Dave Barach68b0fb02017-02-28 15:15:56 -0500963 /* Remove invalid blocks */
Florin Coras93992a92017-05-24 18:03:56 -0700964 blk = tc->rcv_opts.sacks;
965 while (blk < vec_end (tc->rcv_opts.sacks))
Florin Coras6792ec02017-03-13 03:49:51 -0700966 {
967 if (seq_lt (blk->start, blk->end)
968 && seq_gt (blk->start, tc->snd_una)
Florin Corasab86f862018-12-06 18:24:19 -0800969 && seq_gt (blk->start, ack)
Florin Coras47596832019-03-12 18:58:54 -0700970 && seq_lt (blk->start, tc->snd_nxt)
971 && seq_leq (blk->end, tc->snd_nxt))
Florin Coras6792ec02017-03-13 03:49:51 -0700972 {
973 blk++;
974 continue;
975 }
Florin Coras93992a92017-05-24 18:03:56 -0700976 vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks);
Florin Coras6792ec02017-03-13 03:49:51 -0700977 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500978
979 /* Add block for cumulative ack */
980 if (seq_gt (ack, tc->snd_una))
981 {
982 tmp.start = tc->snd_una;
983 tmp.end = ack;
Florin Coras93992a92017-05-24 18:03:56 -0700984 vec_add1 (tc->rcv_opts.sacks, tmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500985 }
986
Florin Coras93992a92017-05-24 18:03:56 -0700987 if (vec_len (tc->rcv_opts.sacks) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500988 return;
989
Florin Coras3eb50622017-07-13 01:24:57 -0400990 tcp_scoreboard_trace_add (tc, ack);
991
Dave Barach68b0fb02017-02-28 15:15:56 -0500992 /* Make sure blocks are ordered */
Florin Coras93992a92017-05-24 18:03:56 -0700993 for (i = 0; i < vec_len (tc->rcv_opts.sacks); i++)
994 for (j = i + 1; j < vec_len (tc->rcv_opts.sacks); j++)
995 if (seq_lt (tc->rcv_opts.sacks[j].start, tc->rcv_opts.sacks[i].start))
Dave Barach68b0fb02017-02-28 15:15:56 -0500996 {
Florin Coras93992a92017-05-24 18:03:56 -0700997 tmp = tc->rcv_opts.sacks[i];
998 tc->rcv_opts.sacks[i] = tc->rcv_opts.sacks[j];
999 tc->rcv_opts.sacks[j] = tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -05001000 }
1001
Dave Barach68b0fb02017-02-28 15:15:56 -05001002 if (sb->head == TCP_INVALID_SACK_HOLE_INDEX)
1003 {
Florin Coras6792ec02017-03-13 03:49:51 -07001004 /* If no holes, insert the first that covers all outstanding bytes */
1005 last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
Florin Coras47596832019-03-12 18:58:54 -07001006 tc->snd_una, tc->snd_nxt);
Florin Coras6792ec02017-03-13 03:49:51 -07001007 sb->tail = scoreboard_hole_index (sb, last_hole);
Florin Coras93992a92017-05-24 18:03:56 -07001008 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
1009 sb->high_sacked = tmp.end;
Florin Coras6792ec02017-03-13 03:49:51 -07001010 }
1011 else
1012 {
1013 /* If we have holes but snd_una_max is beyond the last hole, update
1014 * last hole end */
Florin Coras93992a92017-05-24 18:03:56 -07001015 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
Florin Coras6792ec02017-03-13 03:49:51 -07001016 last_hole = scoreboard_last_hole (sb);
Florin Coras47596832019-03-12 18:58:54 -07001017 if (seq_gt (tc->snd_nxt, last_hole->end))
Dave Barach2c25a622017-06-26 11:35:07 -04001018 {
1019 if (seq_geq (last_hole->start, sb->high_sacked))
1020 {
Florin Coras47596832019-03-12 18:58:54 -07001021 last_hole->end = tc->snd_nxt;
Dave Barach2c25a622017-06-26 11:35:07 -04001022 }
1023 /* New hole after high sacked block */
Florin Coras47596832019-03-12 18:58:54 -07001024 else if (seq_lt (sb->high_sacked, tc->snd_nxt))
Dave Barach2c25a622017-06-26 11:35:07 -04001025 {
1026 scoreboard_insert_hole (sb, sb->tail, sb->high_sacked,
Florin Coras47596832019-03-12 18:58:54 -07001027 tc->snd_nxt);
Dave Barach2c25a622017-06-26 11:35:07 -04001028 }
1029 }
1030 /* Keep track of max byte sacked for when the last hole
Florin Corasf03a59a2017-06-09 21:07:32 -07001031 * is acked */
1032 if (seq_gt (tmp.end, sb->high_sacked))
1033 sb->high_sacked = tmp.end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001034 }
1035
1036 /* Walk the holes with the SACK blocks */
1037 hole = pool_elt_at_index (sb->holes, sb->head);
Florin Coras93992a92017-05-24 18:03:56 -07001038 while (hole && blk_index < vec_len (tc->rcv_opts.sacks))
Dave Barach68b0fb02017-02-28 15:15:56 -05001039 {
Florin Coras93992a92017-05-24 18:03:56 -07001040 blk = &tc->rcv_opts.sacks[blk_index];
Dave Barach68b0fb02017-02-28 15:15:56 -05001041 if (seq_leq (blk->start, hole->start))
1042 {
1043 /* Block covers hole. Remove hole */
1044 if (seq_geq (blk->end, hole->end))
1045 {
1046 next_hole = scoreboard_next_hole (sb, hole);
1047
Florin Corasf03a59a2017-06-09 21:07:32 -07001048 /* Byte accounting: snd_una needs to be advanced */
1049 if (blk->end == ack)
Dave Barach68b0fb02017-02-28 15:15:56 -05001050 {
Florin Corasf03a59a2017-06-09 21:07:32 -07001051 if (next_hole)
Florin Coras06d11012017-05-17 14:21:51 -07001052 {
Florin Corasf03a59a2017-06-09 21:07:32 -07001053 if (seq_lt (ack, next_hole->start))
1054 sb->snd_una_adv = next_hole->start - ack;
1055 sb->last_bytes_delivered +=
1056 next_hole->start - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -07001057 }
Florin Coras3eb50622017-07-13 01:24:57 -04001058 else
Florin Coras06d11012017-05-17 14:21:51 -07001059 {
Dave Barach2c25a622017-06-26 11:35:07 -04001060 ASSERT (seq_geq (sb->high_sacked, ack));
Florin Coras93992a92017-05-24 18:03:56 -07001061 sb->snd_una_adv = sb->high_sacked - ack;
Florin Corasf03a59a2017-06-09 21:07:32 -07001062 sb->last_bytes_delivered += sb->high_sacked - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -07001063 }
1064 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001065 scoreboard_remove_hole (sb, hole);
1066 hole = next_hole;
1067 }
Florin Coras6792ec02017-03-13 03:49:51 -07001068 /* Partial 'head' overlap */
Dave Barach68b0fb02017-02-28 15:15:56 -05001069 else
1070 {
Florin Coras6792ec02017-03-13 03:49:51 -07001071 if (seq_gt (blk->end, hole->start))
1072 {
Florin Coras6792ec02017-03-13 03:49:51 -07001073 hole->start = blk->end;
1074 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001075 blk_index++;
1076 }
1077 }
1078 else
1079 {
1080 /* Hole must be split */
Florin Coras6792ec02017-03-13 03:49:51 -07001081 if (seq_lt (blk->end, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001082 {
Florin Coras6792ec02017-03-13 03:49:51 -07001083 hole_index = scoreboard_hole_index (sb, hole);
Florin Coras3eb50622017-07-13 01:24:57 -04001084 next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
1085 hole->end);
Florin Coras6792ec02017-03-13 03:49:51 -07001086
1087 /* Pool might've moved */
1088 hole = scoreboard_get_hole (sb, hole_index);
1089 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -05001090 blk_index++;
Florin Coras3eb50622017-07-13 01:24:57 -04001091 ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
Dave Barach68b0fb02017-02-28 15:15:56 -05001092 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001093 else if (seq_lt (blk->start, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001094 {
Florin Coras6792ec02017-03-13 03:49:51 -07001095 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -05001096 }
Florin Coras93992a92017-05-24 18:03:56 -07001097 hole = scoreboard_next_hole (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -05001098 }
1099 }
Florin Coras6792ec02017-03-13 03:49:51 -07001100
Florin Corasecbd20b2018-10-17 23:34:54 -07001101 if (pool_elts (sb->holes) == 1)
1102 {
1103 hole = scoreboard_first_hole (sb);
Florin Coras47596832019-03-12 18:58:54 -07001104 if (hole->start == ack + sb->snd_una_adv && hole->end == tc->snd_nxt)
Florin Corasecbd20b2018-10-17 23:34:54 -07001105 scoreboard_remove_hole (sb, hole);
1106 }
1107
Florin Corasf03a59a2017-06-09 21:07:32 -07001108 scoreboard_update_bytes (tc, sb);
1109 sb->last_sacked_bytes = sb->sacked_bytes
1110 - (old_sacked_bytes - sb->last_bytes_delivered);
Florin Corasb3f58e12019-07-05 18:31:54 -07001111
Florin Corasca1c8f32018-05-23 21:01:30 -07001112 ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes || tcp_in_recovery (tc));
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001113 ASSERT (sb->sacked_bytes == 0 || tcp_in_recovery (tc)
Florin Coras47596832019-03-12 18:58:54 -07001114 || sb->sacked_bytes < tc->snd_nxt - seq_max (tc->snd_una, ack));
1115 ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_nxt
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001116 - seq_max (tc->snd_una, ack) || tcp_in_recovery (tc));
Dave Barach2c25a622017-06-26 11:35:07 -04001117 ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
1118 || sb->holes[sb->head].start == ack + sb->snd_una_adv);
Florin Corasb3f58e12019-07-05 18:31:54 -07001119 ASSERT (sb->last_lost_bytes <= sb->lost_bytes);
1120
Florin Corasca1c8f32018-05-23 21:01:30 -07001121 TCP_EVT_DBG (TCP_EVT_CC_SCOREBOARD, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001122}
Filip Tehlare275bed2019-03-06 00:06:56 -08001123#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05001124
Florin Coras93992a92017-05-24 18:03:56 -07001125/**
1126 * Try to update snd_wnd based on feedback received from peer.
Dave Barach68b0fb02017-02-28 15:15:56 -05001127 *
Florin Coras93992a92017-05-24 18:03:56 -07001128 * If successful, and new window is 'effectively' 0, activate persist
1129 * timer.
1130 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001131static void
1132tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
1133{
Florin Coras93992a92017-05-24 18:03:56 -07001134 /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
1135 * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
Florin Coras6792ec02017-03-13 03:49:51 -07001136 if (seq_lt (tc->snd_wl1, seq)
1137 || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001138 {
1139 tc->snd_wnd = snd_wnd;
1140 tc->snd_wl1 = seq;
1141 tc->snd_wl2 = ack;
Florin Coras6792ec02017-03-13 03:49:51 -07001142 TCP_EVT_DBG (TCP_EVT_SND_WND, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001143
Florin Coras9ece3c02018-11-05 11:06:53 -08001144 if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
Florin Corasbb292f42017-05-19 09:49:19 -07001145 {
Florin Coras93992a92017-05-24 18:03:56 -07001146 /* Set persist timer if not set and we just got 0 wnd */
1147 if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
1148 && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
Florin Corasbb292f42017-05-19 09:49:19 -07001149 tcp_persist_timer_set (tc);
1150 }
Florin Coras3e350af2017-03-30 02:54:28 -07001151 else
Florin Coras93992a92017-05-24 18:03:56 -07001152 {
1153 tcp_persist_timer_reset (tc);
Florin Coras9ece3c02018-11-05 11:06:53 -08001154 if (PREDICT_FALSE (!tcp_in_recovery (tc) && tc->rto_boff > 0))
Florin Coras93992a92017-05-24 18:03:56 -07001155 {
1156 tc->rto_boff = 0;
1157 tcp_update_rto (tc);
1158 }
1159 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001160 }
1161}
1162
Filip Tehlare275bed2019-03-06 00:06:56 -08001163#ifndef CLIB_MARCH_VARIANT
Florin Corasd2aab832018-05-22 11:39:59 -07001164/**
1165 * Init loss recovery/fast recovery.
1166 *
1167 * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
1168 * updated in @ref tcp_cc_handle_event after fast retransmit
1169 */
Florin Coras6792ec02017-03-13 03:49:51 -07001170void
Florin Coras93992a92017-05-24 18:03:56 -07001171tcp_cc_init_congestion (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001172{
Florin Coras93992a92017-05-24 18:03:56 -07001173 tcp_fastrecovery_on (tc);
Florin Coras47596832019-03-12 18:58:54 -07001174 tc->snd_congestion = tc->snd_nxt;
Florin Coras62166002018-04-18 16:40:55 -07001175 tc->cwnd_acc_bytes = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001176 tc->snd_rxt_bytes = 0;
1177 tc->prev_ssthresh = tc->ssthresh;
1178 tc->prev_cwnd = tc->cwnd;
Dave Barach68b0fb02017-02-28 15:15:56 -05001179 tc->cc_algo->congestion (tc);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001180 tc->fr_occurences += 1;
Florin Coras6792ec02017-03-13 03:49:51 -07001181 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001182}
Filip Tehlare275bed2019-03-06 00:06:56 -08001183#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05001184
Florin Coras93992a92017-05-24 18:03:56 -07001185static void
1186tcp_cc_recovery_exit (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001187{
Florin Coras93992a92017-05-24 18:03:56 -07001188 tc->rto_boff = 0;
Florin Corasf1762d62017-09-24 19:43:08 -04001189 tcp_update_rto (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001190 tc->snd_rxt_ts = 0;
Florin Corasefefc6b2018-11-07 12:49:19 -08001191 tc->rtt_ts = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001192 tcp_recovery_off (tc);
Florin Corasf1762d62017-09-24 19:43:08 -04001193 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Florin Coras93992a92017-05-24 18:03:56 -07001194}
Florin Coras3e350af2017-03-30 02:54:28 -07001195
Florin Coraseff6b822019-07-03 19:51:02 -07001196#ifndef CLIB_MARCH_VARIANT
1197void
1198tcp_cc_fastrecovery_clear (tcp_connection_t * tc)
Florin Coras93992a92017-05-24 18:03:56 -07001199{
Florin Coras93992a92017-05-24 18:03:56 -07001200 tc->snd_rxt_bytes = 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001201 tc->rcv_dupacks = 0;
Florin Corasefefc6b2018-11-07 12:49:19 -08001202 tc->rtt_ts = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001203
Florin Coras93992a92017-05-24 18:03:56 -07001204 tcp_fastrecovery_off (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001205 tcp_fastrecovery_first_off (tc);
Florin Coras26dd6de2019-07-23 23:54:47 -07001206 tc->flags &= ~TCP_CONN_FRXT_PENDING;
Florin Corasd67f1122018-05-21 17:47:40 -07001207
Florin Corasf1762d62017-09-24 19:43:08 -04001208 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Dave Barach68b0fb02017-02-28 15:15:56 -05001209}
Filip Tehlare275bed2019-03-06 00:06:56 -08001210#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05001211
1212static void
Florin Coras93992a92017-05-24 18:03:56 -07001213tcp_cc_congestion_undo (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001214{
Florin Coras93992a92017-05-24 18:03:56 -07001215 tc->cwnd = tc->prev_cwnd;
1216 tc->ssthresh = tc->prev_ssthresh;
Florin Coras93992a92017-05-24 18:03:56 -07001217 tc->rcv_dupacks = 0;
1218 if (tcp_in_recovery (tc))
Florin Coras47596832019-03-12 18:58:54 -07001219 {
1220 tcp_cc_recovery_exit (tc);
1221 tc->snd_nxt = seq_max (tc->snd_nxt, tc->snd_congestion);
1222 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001223 else if (tcp_in_fastrecovery (tc))
Florin Coras47596832019-03-12 18:58:54 -07001224 {
Florin Coraseff6b822019-07-03 19:51:02 -07001225 tcp_cc_fastrecovery_clear (tc);
Florin Coras47596832019-03-12 18:58:54 -07001226 }
Florin Coraseff6b822019-07-03 19:51:02 -07001227 tcp_cc_undo_recovery (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001228 ASSERT (tc->rto_boff == 0);
Florin Corasf1762d62017-09-24 19:43:08 -04001229 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 5);
Florin Coras93992a92017-05-24 18:03:56 -07001230}
Dave Barach68b0fb02017-02-28 15:15:56 -05001231
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001232static inline u8
1233tcp_cc_is_spurious_timeout_rxt (tcp_connection_t * tc)
Florin Coras93992a92017-05-24 18:03:56 -07001234{
Florin Corasf1762d62017-09-24 19:43:08 -04001235 return (tcp_in_recovery (tc) && tc->rto_boff == 1
Dave Barach2c25a622017-06-26 11:35:07 -04001236 && tc->snd_rxt_ts
Florin Coras93992a92017-05-24 18:03:56 -07001237 && tcp_opts_tstamp (&tc->rcv_opts)
1238 && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
1239}
1240
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001241static inline u8
1242tcp_cc_is_spurious_fast_rxt (tcp_connection_t * tc)
1243{
1244 return (tcp_in_fastrecovery (tc)
1245 && tc->cwnd > tc->ssthresh + 3 * tc->snd_mss);
1246}
1247
1248static u8
1249tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
1250{
1251 return (tcp_cc_is_spurious_timeout_rxt (tc)
1252 || tcp_cc_is_spurious_fast_rxt (tc));
1253}
1254
Florin Coras0dbd5172018-06-25 16:19:34 -07001255static int
Florin Coras93992a92017-05-24 18:03:56 -07001256tcp_cc_recover (tcp_connection_t * tc)
1257{
1258 ASSERT (tcp_in_cong_recovery (tc));
1259 if (tcp_cc_is_spurious_retransmit (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001260 {
Florin Coras93992a92017-05-24 18:03:56 -07001261 tcp_cc_congestion_undo (tc);
1262 return 1;
1263 }
1264
1265 if (tcp_in_recovery (tc))
1266 tcp_cc_recovery_exit (tc);
1267 else if (tcp_in_fastrecovery (tc))
Florin Coraseff6b822019-07-03 19:51:02 -07001268 {
1269 tcp_cc_recovered (tc);
1270 tcp_cc_fastrecovery_clear (tc);
1271 }
Florin Coras93992a92017-05-24 18:03:56 -07001272
1273 ASSERT (tc->rto_boff == 0);
1274 ASSERT (!tcp_in_cong_recovery (tc));
Florin Coras3eb50622017-07-13 01:24:57 -04001275 ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001276 return 0;
1277}
1278
1279static void
Florin Coras52814732019-06-12 15:38:19 -07001280tcp_cc_update (tcp_connection_t * tc, tcp_rate_sample_t * rs)
Florin Coras93992a92017-05-24 18:03:56 -07001281{
Florin Coras3eb50622017-07-13 01:24:57 -04001282 ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001283
1284 /* Congestion avoidance */
Florin Coras52814732019-06-12 15:38:19 -07001285 tcp_cc_rcv_ack (tc, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001286
1287 /* If a cumulative ack, make sure dupacks is 0 */
1288 tc->rcv_dupacks = 0;
1289
1290 /* When dupacks hits the threshold we only enter fast retransmit if
1291 * cumulative ack covers more than snd_congestion. Should snd_una
1292 * wrap this test may fail under otherwise valid circumstances.
1293 * Therefore, proactively update snd_congestion when wrap detected. */
1294 if (PREDICT_FALSE
1295 (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1296 && seq_gt (tc->snd_congestion, tc->snd_una)))
1297 tc->snd_congestion = tc->snd_una - 1;
1298}
1299
1300static u8
1301tcp_should_fastrecover_sack (tcp_connection_t * tc)
1302{
1303 return (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss < tc->sack_sb.sacked_bytes;
1304}
1305
1306static u8
1307tcp_should_fastrecover (tcp_connection_t * tc)
1308{
1309 return (tc->rcv_dupacks == TCP_DUPACK_THRESHOLD
1310 || tcp_should_fastrecover_sack (tc));
1311}
1312
Florin Corasf03a59a2017-06-09 21:07:32 -07001313/**
1314 * One function to rule them all ... and in the darkness bind them
1315 */
Florin Coras93992a92017-05-24 18:03:56 -07001316static void
Florin Coras52814732019-06-12 15:38:19 -07001317tcp_cc_handle_event (tcp_connection_t * tc, tcp_rate_sample_t * rs,
1318 u32 is_dack)
Florin Coras93992a92017-05-24 18:03:56 -07001319{
Florin Corasf03a59a2017-06-09 21:07:32 -07001320 u32 rxt_delivered;
1321
Florin Corasca1c8f32018-05-23 21:01:30 -07001322 if (tcp_in_fastrecovery (tc) && tcp_opts_sack_permitted (&tc->rcv_opts))
1323 {
1324 if (tc->bytes_acked)
1325 goto partial_ack;
Florin Coras26dd6de2019-07-23 23:54:47 -07001326 tcp_program_fastretransmit (tc);
Florin Corasca1c8f32018-05-23 21:01:30 -07001327 return;
1328 }
Florin Coras93992a92017-05-24 18:03:56 -07001329 /*
1330 * Duplicate ACK. Check if we should enter fast recovery, or if already in
1331 * it account for the bytes that left the network.
1332 */
Florin Corasca1c8f32018-05-23 21:01:30 -07001333 else if (is_dack && !tcp_in_recovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001334 {
Florin Corasd2aab832018-05-22 11:39:59 -07001335 TCP_EVT_DBG (TCP_EVT_DUPACK_RCVD, tc, 1);
Florin Coras47596832019-03-12 18:58:54 -07001336 ASSERT (tc->snd_una != tc->snd_nxt || tc->sack_sb.last_sacked_bytes);
Dave Barach2c25a622017-06-26 11:35:07 -04001337
Florin Coras93992a92017-05-24 18:03:56 -07001338 tc->rcv_dupacks++;
1339
Florin Corasd2aab832018-05-22 11:39:59 -07001340 /* Pure duplicate ack. If some data got acked, it's handled lower */
Florin Coras93992a92017-05-24 18:03:56 -07001341 if (tc->rcv_dupacks > TCP_DUPACK_THRESHOLD && !tc->bytes_acked)
Dave Barach68b0fb02017-02-28 15:15:56 -05001342 {
Florin Coras93992a92017-05-24 18:03:56 -07001343 ASSERT (tcp_in_fastrecovery (tc));
Florin Coras52814732019-06-12 15:38:19 -07001344 tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001345 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001346 }
Florin Coras93992a92017-05-24 18:03:56 -07001347 else if (tcp_should_fastrecover (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001348 {
Florin Corasc44a5582018-11-01 16:30:54 -07001349 u32 pacer_wnd;
1350
Florin Corasd2aab832018-05-22 11:39:59 -07001351 ASSERT (!tcp_in_fastrecovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001352
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001353 /* Heuristic to catch potential late dupacks
1354 * after fast retransmit exits */
1355 if (is_dack && tc->snd_una == tc->snd_congestion
1356 && timestamp_leq (tc->rcv_opts.tsecr, tc->tsecr_last_ack))
Florin Coras93992a92017-05-24 18:03:56 -07001357 {
1358 tc->rcv_dupacks = 0;
1359 return;
1360 }
1361
1362 tcp_cc_init_congestion (tc);
Florin Coras52814732019-06-12 15:38:19 -07001363 tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001364
Florin Coras3eb50622017-07-13 01:24:57 -04001365 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Corase55a6d72018-10-31 23:09:22 -07001366 {
1367 tc->cwnd = tc->ssthresh;
1368 scoreboard_init_high_rxt (&tc->sack_sb, tc->snd_una);
Florin Corase55a6d72018-10-31 23:09:22 -07001369 }
1370 else
1371 {
1372 /* Post retransmit update cwnd to ssthresh and account for the
1373 * three segments that have left the network and should've been
1374 * buffered at the receiver XXX */
1375 tc->cwnd = tc->ssthresh + 3 * tc->snd_mss;
1376 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001377
Florin Coras36ee9f12018-11-02 12:52:10 -07001378 /* Constrain rate until we get a partial ack */
Florin Corasc44a5582018-11-01 16:30:54 -07001379 pacer_wnd = clib_max (0.1 * tc->cwnd, 2 * tc->snd_mss);
1380 tcp_connection_tx_pacer_reset (tc, pacer_wnd,
1381 0 /* start bucket */ );
Florin Coras26dd6de2019-07-23 23:54:47 -07001382 tcp_program_fastretransmit (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001383 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001384 }
Florin Coras93992a92017-05-24 18:03:56 -07001385 else if (!tc->bytes_acked
1386 || (tc->bytes_acked && !tcp_in_cong_recovery (tc)))
1387 {
Florin Coras52814732019-06-12 15:38:19 -07001388 tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001389 return;
1390 }
1391 else
1392 goto partial_ack;
1393 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001394 /* Don't allow entry in fast recovery if still in recovery, for now */
1395 else if (0 && is_dack && tcp_in_recovery (tc))
1396 {
1397 /* If of of the two conditions lower hold, reset dupacks because
1398 * we're probably after timeout (RFC6582 heuristics).
1399 * If Cumulative ack does not cover more than congestion threshold,
1400 * and:
1401 * 1) The following doesn't hold: The congestion window is greater
1402 * than SMSS bytes and the difference between highest_ack
1403 * and prev_highest_ack is at most 4*SMSS bytes
1404 * 2) Echoed timestamp in the last non-dup ack does not equal the
1405 * stored timestamp
1406 */
1407 if (seq_leq (tc->snd_una, tc->snd_congestion)
1408 && ((!(tc->cwnd > tc->snd_mss
1409 && tc->bytes_acked <= 4 * tc->snd_mss))
1410 || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
1411 {
1412 tc->rcv_dupacks = 0;
1413 return;
1414 }
1415 }
Florin Coras93992a92017-05-24 18:03:56 -07001416
Florin Coras93992a92017-05-24 18:03:56 -07001417 if (!tc->bytes_acked)
1418 return;
1419
1420partial_ack:
Florin Corasd2aab832018-05-22 11:39:59 -07001421 TCP_EVT_DBG (TCP_EVT_CC_PACK, tc);
1422
Florin Coras93992a92017-05-24 18:03:56 -07001423 /*
1424 * Legitimate ACK. 1) See if we can exit recovery
1425 */
Florin Coras93992a92017-05-24 18:03:56 -07001426
Florin Corasefefc6b2018-11-07 12:49:19 -08001427 /* Update the pacing rate. For the first partial ack we move from
1428 * the artificially constrained rate to the one after congestion */
1429 tcp_connection_tx_pacer_update (tc);
1430
Florin Coras93992a92017-05-24 18:03:56 -07001431 if (seq_geq (tc->snd_una, tc->snd_congestion))
1432 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001433 tcp_retransmit_timer_update (tc);
1434
Florin Coras93992a92017-05-24 18:03:56 -07001435 /* If spurious return, we've already updated everything */
1436 if (tcp_cc_recover (tc))
Florin Corasf03a59a2017-06-09 21:07:32 -07001437 {
1438 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1439 return;
1440 }
Florin Coras93992a92017-05-24 18:03:56 -07001441
Florin Coras93992a92017-05-24 18:03:56 -07001442 /* Treat as congestion avoidance ack */
Florin Coras52814732019-06-12 15:38:19 -07001443 tcp_cc_rcv_ack (tc, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001444 return;
1445 }
1446
1447 /*
1448 * Legitimate ACK. 2) If PARTIAL ACK try to retransmit
1449 */
Florin Coras93992a92017-05-24 18:03:56 -07001450
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001451 /* XXX limit this only to first partial ack? */
Florin Coras2e31cc32018-09-25 14:00:34 -07001452 tcp_retransmit_timer_update (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001453
Florin Coras93992a92017-05-24 18:03:56 -07001454 /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
Florin Corasd2aab832018-05-22 11:39:59 -07001455 * reset dupacks to 0. Also needed if in congestion recovery */
Florin Coras93992a92017-05-24 18:03:56 -07001456 tc->rcv_dupacks = 0;
1457
Florin Coras93992a92017-05-24 18:03:56 -07001458 /* Post RTO timeout don't try anything fancy */
1459 if (tcp_in_recovery (tc))
Florin Corasd2aab832018-05-22 11:39:59 -07001460 {
Florin Coras52814732019-06-12 15:38:19 -07001461 tcp_cc_rcv_ack (tc, rs);
Florin Coras3ec66b02018-08-23 16:27:05 -07001462 transport_add_tx_event (&tc->connection);
Florin Corasd2aab832018-05-22 11:39:59 -07001463 return;
1464 }
Florin Coras93992a92017-05-24 18:03:56 -07001465
1466 /* Remove retransmitted bytes that have been delivered */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001467 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras93992a92017-05-24 18:03:56 -07001468 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001469 ASSERT (tc->bytes_acked + tc->sack_sb.snd_una_adv
1470 >= tc->sack_sb.last_bytes_delivered
1471 || (tc->flags & TCP_CONN_FINSNT));
1472
Florin Coras93992a92017-05-24 18:03:56 -07001473 /* If we have sacks and we haven't gotten an ack beyond high_rxt,
1474 * remove sacked bytes delivered */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001475 if (seq_lt (tc->snd_una, tc->sack_sb.high_rxt))
1476 {
1477 rxt_delivered = tc->bytes_acked + tc->sack_sb.snd_una_adv
1478 - tc->sack_sb.last_bytes_delivered;
1479 ASSERT (tc->snd_rxt_bytes >= rxt_delivered);
1480 tc->snd_rxt_bytes -= rxt_delivered;
1481 }
1482 else
1483 {
1484 /* Apparently all retransmitted holes have been acked */
1485 tc->snd_rxt_bytes = 0;
Florin Coras36ee9f12018-11-02 12:52:10 -07001486 tc->sack_sb.high_rxt = tc->snd_una;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001487 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001488 }
1489 else
1490 {
Florin Coras36ee9f12018-11-02 12:52:10 -07001491 tcp_fastrecovery_first_on (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001492 if (tc->snd_rxt_bytes > tc->bytes_acked)
1493 tc->snd_rxt_bytes -= tc->bytes_acked;
1494 else
1495 tc->snd_rxt_bytes = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001496 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001497
Florin Coras52814732019-06-12 15:38:19 -07001498 tcp_cc_rcv_cong_ack (tc, TCP_CC_PARTIALACK, rs);
Dave Barach68b0fb02017-02-28 15:15:56 -05001499
Florin Coras93992a92017-05-24 18:03:56 -07001500 /*
1501 * Since this was a partial ack, try to retransmit some more data
1502 */
Florin Coras26dd6de2019-07-23 23:54:47 -07001503 tcp_program_fastretransmit (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001504}
1505
Florin Coras93992a92017-05-24 18:03:56 -07001506/**
1507 * Process incoming ACK
1508 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001509static int
Florin Coras9ece3c02018-11-05 11:06:53 -08001510tcp_rcv_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
Florin Coras7ac053b2018-11-05 15:57:21 -08001511 tcp_header_t * th, u32 * error)
Dave Barach68b0fb02017-02-28 15:15:56 -05001512{
Florin Coras93992a92017-05-24 18:03:56 -07001513 u32 prev_snd_wnd, prev_snd_una;
Florin Coras52814732019-06-12 15:38:19 -07001514 tcp_rate_sample_t rs = { 0 };
Florin Coras93992a92017-05-24 18:03:56 -07001515 u8 is_dack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001516
Florin Corasf03a59a2017-06-09 21:07:32 -07001517 TCP_EVT_DBG (TCP_EVT_CC_STAT, tc);
1518
Florin Coras6792ec02017-03-13 03:49:51 -07001519 /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
Florin Coras93992a92017-05-24 18:03:56 -07001520 if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001521 {
Florin Coras47596832019-03-12 18:58:54 -07001522 /* We've probably entered recovery and the peer still has some
1523 * of the data we've sent. Update snd_nxt and accept the ack */
Florin Coras282a3cb2019-04-02 21:43:38 -07001524 if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)
1525 && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
Florin Corasca1c8f32018-05-23 21:01:30 -07001526 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001527 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
Florin Corasca1c8f32018-05-23 21:01:30 -07001528 goto process_ack;
1529 }
1530
Florin Corasedfe0ee2019-07-29 18:13:25 -07001531 tc->errors.above_ack_wnd += 1;
Florin Coras47596832019-03-12 18:58:54 -07001532 *error = TCP_ERROR_ACK_FUTURE;
1533 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 0,
Florin Coras6792ec02017-03-13 03:49:51 -07001534 vnet_buffer (b)->tcp.ack_number);
Florin Coras47596832019-03-12 18:58:54 -07001535 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001536 }
1537
Florin Coras6792ec02017-03-13 03:49:51 -07001538 /* If old ACK, probably it's an old dupack */
Florin Coras93992a92017-05-24 18:03:56 -07001539 if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001540 {
Florin Corasedfe0ee2019-07-29 18:13:25 -07001541 tc->errors.below_ack_wnd += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001542 *error = TCP_ERROR_ACK_OLD;
Florin Coras6792ec02017-03-13 03:49:51 -07001543 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 1,
1544 vnet_buffer (b)->tcp.ack_number);
1545 if (tcp_in_fastrecovery (tc) && tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
Florin Coras52814732019-06-12 15:38:19 -07001546 tcp_cc_handle_event (tc, 0, 1);
Florin Corasc28764f2017-04-26 00:08:42 -07001547 /* Don't drop yet */
1548 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001549 }
1550
Florin Coras47596832019-03-12 18:58:54 -07001551process_ack:
1552
Florin Coras93992a92017-05-24 18:03:56 -07001553 /*
1554 * Looks okay, process feedback
1555 */
Florin Corasedfe0ee2019-07-29 18:13:25 -07001556
Florin Coras93992a92017-05-24 18:03:56 -07001557 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001558 tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1559
Florin Coras93992a92017-05-24 18:03:56 -07001560 prev_snd_wnd = tc->snd_wnd;
1561 prev_snd_una = tc->snd_una;
1562 tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1563 vnet_buffer (b)->tcp.ack_number,
1564 clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1565 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
1566 tc->snd_una = vnet_buffer (b)->tcp.ack_number + tc->sack_sb.snd_una_adv;
1567 tcp_validate_txf_size (tc, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001568
Florin Coras93992a92017-05-24 18:03:56 -07001569 if (tc->bytes_acked)
Florin Coras9ece3c02018-11-05 11:06:53 -08001570 {
1571 tcp_program_dequeue (wrk, tc);
1572 tcp_update_rtt (tc, vnet_buffer (b)->tcp.ack_number);
1573 }
Florin Coras93992a92017-05-24 18:03:56 -07001574
Florin Coras52814732019-06-12 15:38:19 -07001575 if (tc->flags & TCP_CONN_RATE_SAMPLE)
1576 tcp_bt_sample_delivery_rate (tc, &rs);
1577
Florin Coras6534b7a2017-07-18 05:38:03 -04001578 TCP_EVT_DBG (TCP_EVT_ACK_RCVD, tc);
1579
Florin Coras93992a92017-05-24 18:03:56 -07001580 /*
1581 * Check if we have congestion event
1582 */
1583
1584 if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001585 {
Florin Coras52814732019-06-12 15:38:19 -07001586 tcp_cc_handle_event (tc, &rs, is_dack);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001587 tc->dupacks_in += is_dack;
Florin Corasb2215d62017-08-01 16:56:58 -07001588 if (!tcp_in_cong_recovery (tc))
Florin Corasa9d5bea2018-12-17 08:24:19 -08001589 {
1590 *error = TCP_ERROR_ACK_OK;
1591 return 0;
1592 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001593 *error = TCP_ERROR_ACK_DUP;
Florin Corasca09d072018-10-01 18:31:02 -07001594 if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th))
1595 return 0;
1596 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001597 }
1598
Florin Coras6792ec02017-03-13 03:49:51 -07001599 /*
Florin Coras93992a92017-05-24 18:03:56 -07001600 * Update congestion control (slow start/congestion avoidance)
Florin Coras6792ec02017-03-13 03:49:51 -07001601 */
Florin Coras52814732019-06-12 15:38:19 -07001602 tcp_cc_update (tc, &rs);
Florin Coras00cd22d2018-04-18 13:20:18 -07001603 *error = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001604 return 0;
1605}
1606
Florin Corasb11175d2018-11-09 14:34:08 -08001607static void
1608tcp_program_disconnect (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1609{
1610 if (!tcp_disconnect_pending (tc))
1611 {
1612 vec_add1 (wrk->pending_disconnects, tc->c_c_index);
1613 tcp_disconnect_pending_on (tc);
1614 }
1615}
1616
1617static void
1618tcp_handle_disconnects (tcp_worker_ctx_t * wrk)
1619{
1620 u32 thread_index, *pending_disconnects;
1621 tcp_connection_t *tc;
1622 int i;
1623
1624 if (!vec_len (wrk->pending_disconnects))
1625 return;
1626
1627 thread_index = wrk->vm->thread_index;
1628 pending_disconnects = wrk->pending_disconnects;
1629 for (i = 0; i < vec_len (pending_disconnects); i++)
1630 {
1631 tc = tcp_connection_get (pending_disconnects[i], thread_index);
1632 tcp_disconnect_pending_off (tc);
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001633 session_transport_closing_notify (&tc->connection);
Florin Corasb11175d2018-11-09 14:34:08 -08001634 }
1635 _vec_len (wrk->pending_disconnects) = 0;
1636}
1637
1638static void
1639tcp_rcv_fin (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
1640 u32 * error)
1641{
Florin Corasf73d4c22019-06-28 09:18:48 -07001642 /* Reject out-of-order fins */
1643 if (vnet_buffer (b)->tcp.seq_end != tc->rcv_nxt)
1644 return;
1645
Florin Coras3c514d52018-12-22 11:39:33 -08001646 /* Account for the FIN and send ack */
1647 tc->rcv_nxt += 1;
Florin Coras26dd6de2019-07-23 23:54:47 -07001648 tcp_program_ack (tc);
Florin Corasb11175d2018-11-09 14:34:08 -08001649 /* Enter CLOSE-WAIT and notify session. To avoid lingering
1650 * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
Florin Coras3c514d52018-12-22 11:39:33 -08001651 tcp_connection_set_state (tc, TCP_STATE_CLOSE_WAIT);
Florin Corasb11175d2018-11-09 14:34:08 -08001652 tcp_program_disconnect (wrk, tc);
Florin Coras9094b5c2019-08-12 14:17:47 -07001653 tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, tcp_cfg.closewait_time);
Florin Corasb11175d2018-11-09 14:34:08 -08001654 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc);
1655 *error = TCP_ERROR_FIN_RCVD;
1656}
1657
Filip Tehlare275bed2019-03-06 00:06:56 -08001658#ifndef CLIB_MARCH_VARIANT
Florin Coras3eb50622017-07-13 01:24:57 -04001659static u8
1660tcp_sack_vector_is_sane (sack_block_t * sacks)
1661{
1662 int i;
1663 for (i = 1; i < vec_len (sacks); i++)
1664 {
1665 if (sacks[i - 1].end == sacks[i].start)
1666 return 0;
1667 }
1668 return 1;
1669}
1670
Dave Barach68b0fb02017-02-28 15:15:56 -05001671/**
1672 * Build SACK list as per RFC2018.
1673 *
1674 * Makes sure the first block contains the segment that generated the current
1675 * ACK and the following ones are the ones most recently reported in SACK
1676 * blocks.
1677 *
1678 * @param tc TCP connection for which the SACK list is updated
1679 * @param start Start sequence number of the newest SACK block
1680 * @param end End sequence of the newest SACK block
1681 */
Florin Coras45d34962017-04-25 00:05:27 -07001682void
Dave Barach68b0fb02017-02-28 15:15:56 -05001683tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1684{
Florin Corasb691f762019-02-22 09:07:20 -08001685 sack_block_t *new_list = tc->snd_sacks_fl, *block = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001686 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001687
1688 /* If the first segment is ooo add it to the list. Last write might've moved
1689 * rcv_nxt over the first segment. */
1690 if (seq_lt (tc->rcv_nxt, start))
1691 {
Florin Coras45d34962017-04-25 00:05:27 -07001692 vec_add2 (new_list, block, 1);
1693 block->start = start;
1694 block->end = end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001695 }
1696
1697 /* Find the blocks still worth keeping. */
1698 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1699 {
Florin Coras45d34962017-04-25 00:05:27 -07001700 /* Discard if rcv_nxt advanced beyond current block */
1701 if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001702 continue;
1703
Florin Coras45d34962017-04-25 00:05:27 -07001704 /* Merge or drop if segment overlapped by the new segment */
1705 if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1706 && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1707 {
1708 if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1709 new_list[0].start = tc->snd_sacks[i].start;
1710 if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1711 new_list[0].end = tc->snd_sacks[i].end;
1712 continue;
1713 }
1714
1715 /* Save to new SACK list if we have space. */
1716 if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
Florin Coras47596832019-03-12 18:58:54 -07001717 vec_add1 (new_list, tc->snd_sacks[i]);
Dave Barach68b0fb02017-02-28 15:15:56 -05001718 }
1719
Florin Coras45d34962017-04-25 00:05:27 -07001720 ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
Florin Coras6792ec02017-03-13 03:49:51 -07001721
Dave Barach68b0fb02017-02-28 15:15:56 -05001722 /* Replace old vector with new one */
Florin Corasb691f762019-02-22 09:07:20 -08001723 vec_reset_length (tc->snd_sacks);
1724 tc->snd_sacks_fl = tc->snd_sacks;
Dave Barach68b0fb02017-02-28 15:15:56 -05001725 tc->snd_sacks = new_list;
Florin Coras3eb50622017-07-13 01:24:57 -04001726
1727 /* Segments should not 'touch' */
1728 ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
Dave Barach68b0fb02017-02-28 15:15:56 -05001729}
1730
Florin Corasca1c8f32018-05-23 21:01:30 -07001731u32
1732tcp_sack_list_bytes (tcp_connection_t * tc)
1733{
1734 u32 bytes = 0, i;
1735 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1736 bytes += tc->snd_sacks[i].end - tc->snd_sacks[i].start;
1737 return bytes;
1738}
Filip Tehlare275bed2019-03-06 00:06:56 -08001739#endif /* CLIB_MARCH_VARIANT */
Florin Corasca1c8f32018-05-23 21:01:30 -07001740
Dave Barach68b0fb02017-02-28 15:15:56 -05001741/** Enqueue data for delivery to application */
Florin Coras0dbd5172018-06-25 16:19:34 -07001742static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001743tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1744 u16 data_len)
1745{
Florin Coras1f152cd2017-08-18 19:28:03 -07001746 int written, error = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001747
Dave Barach2c25a622017-06-26 11:35:07 -04001748 ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001749 ASSERT (data_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001750 written = session_enqueue_stream_connection (&tc->connection, b, 0,
1751 1 /* queue event */ , 1);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001752 tc->bytes_in += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001753
Florin Coras6792ec02017-03-13 03:49:51 -07001754 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 0, data_len, written);
1755
Dave Barach68b0fb02017-02-28 15:15:56 -05001756 /* Update rcv_nxt */
1757 if (PREDICT_TRUE (written == data_len))
1758 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001759 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001760 }
1761 /* If more data written than expected, account for out-of-order bytes. */
1762 else if (written > data_len)
1763 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001764 tc->rcv_nxt += written;
Florin Corasca1c8f32018-05-23 21:01:30 -07001765 TCP_EVT_DBG (TCP_EVT_CC_INPUT, tc, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001766 }
1767 else if (written > 0)
1768 {
1769 /* We've written something but FIFO is probably full now */
1770 tc->rcv_nxt += written;
Florin Coras1f152cd2017-08-18 19:28:03 -07001771 error = TCP_ERROR_PARTIALLY_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001772 }
1773 else
1774 {
Dave Barach68b0fb02017-02-28 15:15:56 -05001775 return TCP_ERROR_FIFO_FULL;
1776 }
1777
Florin Coras6792ec02017-03-13 03:49:51 -07001778 /* Update SACK list if need be */
Florin Coras93992a92017-05-24 18:03:56 -07001779 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras6792ec02017-03-13 03:49:51 -07001780 {
1781 /* Remove SACK blocks that have been delivered */
1782 tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1783 }
1784
Florin Coras1f152cd2017-08-18 19:28:03 -07001785 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -05001786}
1787
1788/** Enqueue out-of-order data */
Florin Coras0dbd5172018-06-25 16:19:34 -07001789static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001790tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1791 u16 data_len)
1792{
Florin Coras288eaab2019-02-03 15:26:14 -08001793 session_t *s0;
Florin Coras3eb50622017-07-13 01:24:57 -04001794 int rv, offset;
Florin Coras6792ec02017-03-13 03:49:51 -07001795
Florin Corasf03a59a2017-06-09 21:07:32 -07001796 ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001797 ASSERT (data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001798
Florin Corasf03a59a2017-06-09 21:07:32 -07001799 /* Enqueue out-of-order data with relative offset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07001800 rv = session_enqueue_stream_connection (&tc->connection, b,
1801 vnet_buffer (b)->tcp.seq_number -
1802 tc->rcv_nxt, 0 /* queue event */ ,
1803 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001804
1805 /* Nothing written */
1806 if (rv)
1807 {
1808 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, 0);
1809 return TCP_ERROR_FIFO_FULL;
1810 }
1811
1812 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, data_len);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001813 tc->bytes_in += data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05001814
1815 /* Update SACK list if in use */
Florin Coras93992a92017-05-24 18:03:56 -07001816 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001817 {
1818 ooo_segment_t *newest;
1819 u32 start, end;
1820
Florin Corascea194d2017-10-02 00:18:51 -07001821 s0 = session_get (tc->c_s_index, tc->c_thread_index);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001822
Dave Barach68b0fb02017-02-28 15:15:56 -05001823 /* Get the newest segment from the fifo */
Florin Coras288eaab2019-02-03 15:26:14 -08001824 newest = svm_fifo_newest_ooo_segment (s0->rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001825 if (newest)
1826 {
Sirshak Das28aa5392019-02-05 01:33:33 -06001827 offset = ooo_segment_offset_prod (s0->rx_fifo, newest);
Florin Coras3eb50622017-07-13 01:24:57 -04001828 ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1829 start = tc->rcv_nxt + offset;
Florin Coras288eaab2019-02-03 15:26:14 -08001830 end = start + ooo_segment_length (s0->rx_fifo, newest);
Florin Corasf03a59a2017-06-09 21:07:32 -07001831 tcp_update_sack_list (tc, start, end);
Florin Coras288eaab2019-02-03 15:26:14 -08001832 svm_fifo_newest_ooo_segment_reset (s0->rx_fifo);
Florin Corasca1c8f32018-05-23 21:01:30 -07001833 TCP_EVT_DBG (TCP_EVT_CC_SACKS, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001834 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001835 }
1836
Florin Coras00cd22d2018-04-18 13:20:18 -07001837 return TCP_ERROR_ENQUEUED_OOO;
Dave Barach68b0fb02017-02-28 15:15:56 -05001838}
1839
1840/**
Florin Coras6792ec02017-03-13 03:49:51 -07001841 * Check if ACK could be delayed. If ack can be delayed, it should return
1842 * true for a full frame. If we're always acking return 0.
Dave Barach68b0fb02017-02-28 15:15:56 -05001843 */
1844always_inline int
1845tcp_can_delack (tcp_connection_t * tc)
1846{
Florin Coras6792ec02017-03-13 03:49:51 -07001847 /* Send ack if ... */
1848 if (TCP_ALWAYS_ACK
Florin Coras74b74372019-03-28 16:31:52 -07001849 /* just sent a rcv wnd 0
1850 || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0 */
Florin Coras6792ec02017-03-13 03:49:51 -07001851 /* constrained to send ack */
1852 || (tc->flags & TCP_CONN_SNDACK) != 0
1853 /* we're almost out of tx wnd */
Florin Corasca1c8f32018-05-23 21:01:30 -07001854 || tcp_available_cc_snd_space (tc) < 4 * tc->snd_mss)
Florin Coras6792ec02017-03-13 03:49:51 -07001855 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001856
Florin Coras6792ec02017-03-13 03:49:51 -07001857 return 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001858}
1859
1860static int
Florin Corasb2215d62017-08-01 16:56:58 -07001861tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
1862{
Florin Coras1f152cd2017-08-18 19:28:03 -07001863 u32 discard, first = b->current_length;
Florin Corasb2215d62017-08-01 16:56:58 -07001864 vlib_main_t *vm = vlib_get_main ();
1865
Florin Coras1f152cd2017-08-18 19:28:03 -07001866 /* Handle multi-buffer segments */
Florin Corasb2215d62017-08-01 16:56:58 -07001867 if (n_bytes_to_drop > b->current_length)
1868 {
1869 if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1870 return -1;
1871 do
1872 {
1873 discard = clib_min (n_bytes_to_drop, b->current_length);
1874 vlib_buffer_advance (b, discard);
1875 b = vlib_get_buffer (vm, b->next_buffer);
1876 n_bytes_to_drop -= discard;
1877 }
1878 while (n_bytes_to_drop);
Florin Coras1f152cd2017-08-18 19:28:03 -07001879 if (n_bytes_to_drop > first)
1880 b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
Florin Corasb2215d62017-08-01 16:56:58 -07001881 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001882 else
1883 vlib_buffer_advance (b, n_bytes_to_drop);
1884 vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
Florin Corasb2215d62017-08-01 16:56:58 -07001885 return 0;
1886}
1887
Florin Coras00cd22d2018-04-18 13:20:18 -07001888/**
1889 * Receive buffer for connection and handle acks
1890 *
1891 * It handles both in order or out-of-order data.
1892 */
Florin Corasb2215d62017-08-01 16:56:58 -07001893static int
Florin Coras7ac053b2018-11-05 15:57:21 -08001894tcp_segment_rcv (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1895 vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001896{
Florin Coras00cd22d2018-04-18 13:20:18 -07001897 u32 error, n_bytes_to_drop, n_data_bytes;
Florin Coras6534b7a2017-07-18 05:38:03 -04001898
1899 vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1900 n_data_bytes = vnet_buffer (b)->tcp.data_len;
1901 ASSERT (n_data_bytes);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001902 tc->data_segs_in += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001903
1904 /* Handle out-of-order data */
1905 if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1906 {
Florin Coras6792ec02017-03-13 03:49:51 -07001907 /* Old sequence numbers allowed through because they overlapped
1908 * the rx window */
1909 if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001910 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001911 /* Completely in the past (possible retransmit). Ack
1912 * retransmissions since we may not have any data to send */
Florin Corasf03a59a2017-06-09 21:07:32 -07001913 if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
Florin Coras6534b7a2017-07-18 05:38:03 -04001914 {
Florin Coras26dd6de2019-07-23 23:54:47 -07001915 tcp_program_ack (tc);
Florin Coras00cd22d2018-04-18 13:20:18 -07001916 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras6534b7a2017-07-18 05:38:03 -04001917 goto done;
1918 }
Dave Barach259cdae2017-05-15 16:27:05 -04001919
Florin Coras00cd22d2018-04-18 13:20:18 -07001920 /* Chop off the bytes in the past and see if what is left
1921 * can be enqueued in order */
Florin Corasdb84e572017-05-09 18:54:52 -07001922 n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1923 n_data_bytes -= n_bytes_to_drop;
Dave Barach2c25a622017-06-26 11:35:07 -04001924 vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001925 if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
Florin Coras00cd22d2018-04-18 13:20:18 -07001926 {
1927 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras00cd22d2018-04-18 13:20:18 -07001928 goto done;
1929 }
Florin Corasdb84e572017-05-09 18:54:52 -07001930 goto in_order;
Dave Barach68b0fb02017-02-28 15:15:56 -05001931 }
1932
Florin Coras00cd22d2018-04-18 13:20:18 -07001933 /* RFC2581: Enqueue and send DUPACK for fast retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001934 error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
Florin Coras26dd6de2019-07-23 23:54:47 -07001935 tcp_program_dupack (tc);
Florin Corasca1c8f32018-05-23 21:01:30 -07001936 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001937 tc->errors.above_data_wnd += seq_gt (vnet_buffer (b)->tcp.seq_end,
1938 tc->rcv_las + tc->rcv_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -05001939 goto done;
1940 }
1941
Florin Corasdb84e572017-05-09 18:54:52 -07001942in_order:
1943
Dave Barach68b0fb02017-02-28 15:15:56 -05001944 /* In order data, enqueue. Fifo figures out by itself if any out-of-order
1945 * segments can be enqueued after fifo tail offset changes. */
1946 error = tcp_session_enqueue_data (tc, b, n_data_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001947 if (tcp_can_delack (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001948 {
Florin Coras6792ec02017-03-13 03:49:51 -07001949 if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
Florin Coras9094b5c2019-08-12 14:17:47 -07001950 tcp_timer_set (tc, TCP_TIMER_DELACK, tcp_cfg.delack_time);
Florin Coras3e350af2017-03-30 02:54:28 -07001951 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001952 }
1953
Florin Coras26dd6de2019-07-23 23:54:47 -07001954 tcp_program_ack (tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001955
Dave Barach68b0fb02017-02-28 15:15:56 -05001956done:
1957 return error;
1958}
1959
Clement Durand6cf260c2017-04-13 13:27:04 +02001960typedef struct
1961{
1962 tcp_header_t tcp_header;
1963 tcp_connection_t tcp_connection;
1964} tcp_rx_trace_t;
1965
Florin Coras0dbd5172018-06-25 16:19:34 -07001966static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02001967format_tcp_rx_trace (u8 * s, va_list * args)
1968{
1969 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1970 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1971 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +02001972 u32 indent = format_get_indent (s);
Clement Durand6cf260c2017-04-13 13:27:04 +02001973
1974 s = format (s, "%U\n%U%U",
1975 format_tcp_header, &t->tcp_header, 128,
1976 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -07001977 format_tcp_connection, &t->tcp_connection, 1);
Clement Durand6cf260c2017-04-13 13:27:04 +02001978
1979 return s;
1980}
1981
Florin Coras0dbd5172018-06-25 16:19:34 -07001982static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02001983format_tcp_rx_trace_short (u8 * s, va_list * args)
1984{
1985 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1986 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1987 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
1988
1989 s = format (s, "%d -> %d (%U)",
Florin Coras4df38712018-06-20 12:44:16 -07001990 clib_net_to_host_u16 (t->tcp_header.dst_port),
1991 clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state,
Florin Corasbb292f42017-05-19 09:49:19 -07001992 t->tcp_connection.state);
Clement Durand6cf260c2017-04-13 13:27:04 +02001993
1994 return s;
1995}
1996
Florin Coras4df38712018-06-20 12:44:16 -07001997static void
Florin Coras82b13a82017-04-25 11:58:06 -07001998tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
1999 tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
2000{
2001 if (tc0)
2002 {
Dave Barach178cf492018-11-13 16:34:13 -05002003 clib_memcpy_fast (&t0->tcp_connection, tc0,
2004 sizeof (t0->tcp_connection));
Florin Coras82b13a82017-04-25 11:58:06 -07002005 }
2006 else
2007 {
2008 th0 = tcp_buffer_hdr (b0);
2009 }
Dave Barach178cf492018-11-13 16:34:13 -05002010 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
Florin Coras82b13a82017-04-25 11:58:06 -07002011}
2012
Florin Coras4df38712018-06-20 12:44:16 -07002013static void
2014tcp_established_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2015 vlib_frame_t * frame, u8 is_ip4)
2016{
2017 u32 *from, n_left;
2018
2019 n_left = frame->n_vectors;
2020 from = vlib_frame_vector_args (frame);
2021
2022 while (n_left >= 1)
2023 {
2024 tcp_connection_t *tc0;
2025 tcp_rx_trace_t *t0;
2026 tcp_header_t *th0;
2027 vlib_buffer_t *b0;
2028 u32 bi0;
2029
2030 bi0 = from[0];
2031 b0 = vlib_get_buffer (vm, bi0);
2032
2033 if (b0->flags & VLIB_BUFFER_IS_TRACED)
2034 {
2035 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2036 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2037 vm->thread_index);
2038 th0 = tcp_buffer_hdr (b0);
2039 tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
2040 }
2041
2042 from += 1;
2043 n_left -= 1;
2044 }
2045}
2046
Florin Coras6792ec02017-03-13 03:49:51 -07002047always_inline void
Florin Coras00cd22d2018-04-18 13:20:18 -07002048tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
2049 u8 is_ip4, u32 evt, u32 val)
Dave Barach68b0fb02017-02-28 15:15:56 -05002050{
Florin Coras6792ec02017-03-13 03:49:51 -07002051 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -07002052 vlib_node_increment_counter (vm, tcp4_node, evt, val);
Florin Coras6792ec02017-03-13 03:49:51 -07002053 else
Florin Coras3cbc04b2017-10-02 00:18:51 -07002054 vlib_node_increment_counter (vm, tcp6_node, evt, val);
Dave Barach68b0fb02017-02-28 15:15:56 -05002055}
2056
Florin Coras00cd22d2018-04-18 13:20:18 -07002057#define tcp_maybe_inc_counter(node_id, err, count) \
2058{ \
2059 if (next0 != tcp_next_drop (is_ip4)) \
2060 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2061 tcp6_##node_id##_node.index, is_ip4, err, \
2062 1); \
2063}
2064#define tcp_inc_counter(node_id, err, count) \
2065 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2066 tcp6_##node_id##_node.index, is_ip4, \
2067 err, count)
2068#define tcp_maybe_inc_err_counter(cnts, err) \
2069{ \
2070 cnts[err] += (next0 != tcp_next_drop (is_ip4)); \
2071}
2072#define tcp_inc_err_counter(cnts, err, val) \
2073{ \
2074 cnts[err] += val; \
2075}
2076#define tcp_store_err_counters(node_id, cnts) \
2077{ \
2078 int i; \
2079 for (i = 0; i < TCP_N_ERROR; i++) \
2080 if (cnts[i]) \
2081 tcp_inc_counter(node_id, i, cnts[i]); \
2082}
2083
2084
Dave Barach68b0fb02017-02-28 15:15:56 -05002085always_inline uword
2086tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07002087 vlib_frame_t * frame, int is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05002088{
Florin Coras4df38712018-06-20 12:44:16 -07002089 u32 thread_index = vm->thread_index, errors = 0;
Florin Coras9ece3c02018-11-05 11:06:53 -08002090 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08002091 u32 n_left_from, *from, *first_buffer;
Florin Coras00cd22d2018-04-18 13:20:18 -07002092 u16 err_counters[TCP_N_ERROR] = { 0 };
Dave Barach68b0fb02017-02-28 15:15:56 -05002093
Florin Coras4df38712018-06-20 12:44:16 -07002094 if (node->flags & VLIB_NODE_FLAG_TRACE)
2095 tcp_established_trace_frame (vm, node, frame, is_ip4);
2096
Florin Coras7ac053b2018-11-05 15:57:21 -08002097 first_buffer = from = vlib_frame_vector_args (frame);
Florin Coras4df38712018-06-20 12:44:16 -07002098 n_left_from = frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002099
2100 while (n_left_from > 0)
2101 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002102 u32 bi0, error0 = TCP_ERROR_ACK_OK;
2103 vlib_buffer_t *b0;
Florin Coras3c514d52018-12-22 11:39:33 -08002104 tcp_header_t *th0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002105 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002106
Florin Coras7ac053b2018-11-05 15:57:21 -08002107 if (n_left_from > 1)
Dave Barach68b0fb02017-02-28 15:15:56 -05002108 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002109 vlib_buffer_t *pb;
2110 pb = vlib_get_buffer (vm, from[1]);
2111 vlib_prefetch_buffer_header (pb, LOAD);
2112 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
Dave Barach68b0fb02017-02-28 15:15:56 -05002113 }
2114
Florin Coras7ac053b2018-11-05 15:57:21 -08002115 bi0 = from[0];
2116 from += 1;
2117 n_left_from -= 1;
2118
2119 b0 = vlib_get_buffer (vm, bi0);
2120 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2121 thread_index);
2122
2123 if (PREDICT_FALSE (tc0 == 0))
2124 {
2125 error0 = TCP_ERROR_INVALID_CONNECTION;
2126 goto done;
2127 }
2128
2129 th0 = tcp_buffer_hdr (b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002130
2131 /* TODO header prediction fast path */
2132
2133 /* 1-4: check SEQ, RST, SYN */
2134 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, th0, &error0)))
2135 {
2136 TCP_EVT_DBG (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp);
2137 goto done;
2138 }
2139
2140 /* 5: check the ACK field */
2141 if (PREDICT_FALSE (tcp_rcv_ack (wrk, tc0, b0, th0, &error0)))
2142 goto done;
2143
2144 /* 6: check the URG bit TODO */
2145
2146 /* 7: process the segment text */
2147 if (vnet_buffer (b0)->tcp.data_len)
2148 error0 = tcp_segment_rcv (wrk, tc0, b0);
2149
2150 /* 8: check the FIN bit */
Florin Coras3c514d52018-12-22 11:39:33 -08002151 if (PREDICT_FALSE (tcp_is_fin (th0)))
Florin Corasb11175d2018-11-09 14:34:08 -08002152 tcp_rcv_fin (wrk, tc0, b0, &error0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002153
2154 done:
2155 tcp_inc_err_counter (err_counters, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002156 }
2157
Florin Coras31c99552019-03-01 13:00:58 -08002158 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2159 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002160 err_counters[TCP_ERROR_MSG_QUEUE_FULL] = errors;
Florin Coras00cd22d2018-04-18 13:20:18 -07002161 tcp_store_err_counters (established, err_counters);
Florin Coras9ece3c02018-11-05 11:06:53 -08002162 tcp_handle_postponed_dequeues (wrk);
Florin Corasb11175d2018-11-09 14:34:08 -08002163 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08002164 vlib_buffer_free (vm, first_buffer, frame->n_vectors);
Florin Coras4df38712018-06-20 12:44:16 -07002165
2166 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002167}
2168
Filip Tehlare275bed2019-03-06 00:06:56 -08002169VLIB_NODE_FN (tcp4_established_node) (vlib_main_t * vm,
2170 vlib_node_runtime_t * node,
2171 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002172{
2173 return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2174}
2175
Filip Tehlare275bed2019-03-06 00:06:56 -08002176VLIB_NODE_FN (tcp6_established_node) (vlib_main_t * vm,
2177 vlib_node_runtime_t * node,
2178 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002179{
2180 return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2181}
2182
2183/* *INDENT-OFF* */
2184VLIB_REGISTER_NODE (tcp4_established_node) =
2185{
Dave Barach68b0fb02017-02-28 15:15:56 -05002186 .name = "tcp4-established",
2187 /* Takes a vector of packets. */
2188 .vector_size = sizeof (u32),
Florin Corase69f4952017-03-07 10:06:24 -08002189 .n_errors = TCP_N_ERROR,
2190 .error_strings = tcp_error_strings,
Dave Barach68b0fb02017-02-28 15:15:56 -05002191 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2192 .next_nodes =
2193 {
2194#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2195 foreach_tcp_state_next
2196#undef _
2197 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002198 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002199};
2200/* *INDENT-ON* */
2201
Dave Barach68b0fb02017-02-28 15:15:56 -05002202/* *INDENT-OFF* */
2203VLIB_REGISTER_NODE (tcp6_established_node) =
2204{
Dave Barach68b0fb02017-02-28 15:15:56 -05002205 .name = "tcp6-established",
2206 /* Takes a vector of packets. */
2207 .vector_size = sizeof (u32),
2208 .n_errors = TCP_N_ERROR,
2209 .error_strings = tcp_error_strings,
2210 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2211 .next_nodes =
2212 {
2213#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2214 foreach_tcp_state_next
2215#undef _
2216 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002217 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002218};
2219/* *INDENT-ON* */
2220
2221
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002222static u8
2223tcp_lookup_is_valid (tcp_connection_t * tc, tcp_header_t * hdr)
2224{
Florin Corascea194d2017-10-02 00:18:51 -07002225 transport_connection_t *tmp = 0;
2226 u64 handle;
2227
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002228 if (!tc)
2229 return 1;
2230
Florin Coras70131132017-11-27 02:43:30 -08002231 /* Proxy case */
2232 if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
2233 return 1;
2234
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002235 u8 is_valid = (tc->c_lcl_port == hdr->dst_port
2236 && (tc->state == TCP_STATE_LISTEN
2237 || tc->c_rmt_port == hdr->src_port));
2238
2239 if (!is_valid)
2240 {
Florin Corascea194d2017-10-02 00:18:51 -07002241 handle = session_lookup_half_open_handle (&tc->connection);
2242 tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
Florin Coras3cbc04b2017-10-02 00:18:51 -07002243 tc->c_proto, tc->c_is_ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002244
2245 if (tmp)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002246 {
2247 if (tmp->lcl_port == hdr->dst_port
2248 && tmp->rmt_port == hdr->src_port)
2249 {
Florin Corascea194d2017-10-02 00:18:51 -07002250 TCP_DBG ("half-open is valid!");
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002251 }
2252 }
2253 }
2254 return is_valid;
2255}
2256
2257/**
2258 * Lookup transport connection
2259 */
2260static tcp_connection_t *
Florin Corascea194d2017-10-02 00:18:51 -07002261tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
2262 u8 is_ip4)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002263{
2264 tcp_header_t *tcp;
2265 transport_connection_t *tconn;
2266 tcp_connection_t *tc;
Florin Corasdff48db2017-11-19 18:06:58 -08002267 u8 is_filtered = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002268 if (is_ip4)
2269 {
2270 ip4_header_t *ip4;
2271 ip4 = vlib_buffer_get_current (b);
2272 tcp = ip4_next_header (ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002273 tconn = session_lookup_connection_wt4 (fib_index,
2274 &ip4->dst_address,
2275 &ip4->src_address,
2276 tcp->dst_port,
2277 tcp->src_port,
2278 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002279 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002280 tc = tcp_get_connection_from_transport (tconn);
2281 ASSERT (tcp_lookup_is_valid (tc, tcp));
2282 }
2283 else
2284 {
2285 ip6_header_t *ip6;
2286 ip6 = vlib_buffer_get_current (b);
2287 tcp = ip6_next_header (ip6);
Florin Corascea194d2017-10-02 00:18:51 -07002288 tconn = session_lookup_connection_wt6 (fib_index,
2289 &ip6->dst_address,
2290 &ip6->src_address,
2291 tcp->dst_port,
2292 tcp->src_port,
2293 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002294 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002295 tc = tcp_get_connection_from_transport (tconn);
2296 ASSERT (tcp_lookup_is_valid (tc, tcp));
2297 }
2298 return tc;
2299}
2300
Dave Barach68b0fb02017-02-28 15:15:56 -05002301always_inline uword
2302tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2303 vlib_frame_t * from_frame, int is_ip4)
2304{
Florin Coras7ac053b2018-11-05 15:57:21 -08002305 u32 n_left_from, *from, *first_buffer, errors = 0;
2306 u32 my_thread_index = vm->thread_index;
2307 tcp_worker_ctx_t *wrk = tcp_get_worker (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05002308
Florin Coras7ac053b2018-11-05 15:57:21 -08002309 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002310 n_left_from = from_frame->n_vectors;
2311
Dave Barach68b0fb02017-02-28 15:15:56 -05002312 while (n_left_from > 0)
2313 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002314 u32 bi0, ack0, seq0, error0 = TCP_ERROR_NONE;
2315 tcp_connection_t *tc0, *new_tc0;
2316 tcp_header_t *tcp0 = 0;
2317 tcp_rx_trace_t *t0;
2318 vlib_buffer_t *b0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002319
Florin Coras7ac053b2018-11-05 15:57:21 -08002320 bi0 = from[0];
2321 from += 1;
2322 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002323
Florin Coras7ac053b2018-11-05 15:57:21 -08002324 b0 = vlib_get_buffer (vm, bi0);
2325 tc0 =
2326 tcp_half_open_connection_get (vnet_buffer (b0)->tcp.connection_index);
2327 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002328 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002329 error0 = TCP_ERROR_INVALID_CONNECTION;
2330 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002331 }
2332
Florin Coras7ac053b2018-11-05 15:57:21 -08002333 /* Half-open completed recently but the connection was't removed
2334 * yet by the owning thread */
2335 if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2336 {
2337 /* Make sure the connection actually exists */
2338 ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2339 my_thread_index, is_ip4));
Florin Coras222e1f412019-02-16 20:47:32 -08002340 error0 = TCP_ERROR_SPURIOUS_SYN_ACK;
Florin Coras7ac053b2018-11-05 15:57:21 -08002341 goto drop;
2342 }
2343
2344 ack0 = vnet_buffer (b0)->tcp.ack_number;
2345 seq0 = vnet_buffer (b0)->tcp.seq_number;
2346 tcp0 = tcp_buffer_hdr (b0);
2347
2348 /* Crude check to see if the connection handle does not match
2349 * the packet. Probably connection just switched to established */
2350 if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2351 || tcp0->src_port != tc0->c_rmt_port))
2352 {
2353 error0 = TCP_ERROR_INVALID_CONNECTION;
2354 goto drop;
2355 }
2356
2357 if (PREDICT_FALSE (!tcp_ack (tcp0) && !tcp_rst (tcp0)
2358 && !tcp_syn (tcp0)))
2359 {
2360 error0 = TCP_ERROR_SEGMENT_INVALID;
2361 goto drop;
2362 }
2363
Florin Coras3c514d52018-12-22 11:39:33 -08002364 /* SYNs consume sequence numbers */
2365 vnet_buffer (b0)->tcp.seq_end += tcp_is_syn (tcp0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002366
2367 /*
2368 * 1. check the ACK bit
2369 */
2370
2371 /*
2372 * If the ACK bit is set
2373 * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2374 * the RST bit is set, if so drop the segment and return)
2375 * <SEQ=SEG.ACK><CTL=RST>
2376 * and discard the segment. Return.
2377 * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2378 */
2379 if (tcp_ack (tcp0))
2380 {
2381 if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
2382 {
2383 if (!tcp_rst (tcp0))
Florin Corasd4c49be2019-02-07 00:15:53 -08002384 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002385 error0 = TCP_ERROR_RCV_WND;
2386 goto drop;
2387 }
2388
2389 /* Make sure ACK is valid */
2390 if (seq_gt (tc0->snd_una, ack0))
2391 {
2392 error0 = TCP_ERROR_ACK_INVALID;
2393 goto drop;
2394 }
2395 }
2396
2397 /*
2398 * 2. check the RST bit
2399 */
2400
2401 if (tcp_rst (tcp0))
2402 {
2403 /* If ACK is acceptable, signal client that peer is not
2404 * willing to accept connection and drop connection*/
2405 if (tcp_ack (tcp0))
2406 tcp_connection_reset (tc0);
2407 error0 = TCP_ERROR_RST_RCVD;
2408 goto drop;
2409 }
2410
2411 /*
2412 * 3. check the security and precedence (skipped)
2413 */
2414
2415 /*
2416 * 4. check the SYN bit
2417 */
2418
2419 /* No SYN flag. Drop. */
2420 if (!tcp_syn (tcp0))
2421 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002422 error0 = TCP_ERROR_SEGMENT_INVALID;
2423 goto drop;
2424 }
2425
2426 /* Parse options */
Florin Coras80231112018-12-05 15:59:31 -08002427 if (tcp_options_parse (tcp0, &tc0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08002428 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002429 error0 = TCP_ERROR_OPTIONS;
2430 goto drop;
2431 }
2432
2433 /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2434 * current thread pool. */
Florin Coras12f69362019-08-16 09:44:00 -07002435 new_tc0 = tcp_connection_alloc_w_base (my_thread_index, tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002436 new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2437 new_tc0->irs = seq0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002438 new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
2439 new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
2440
2441 /* If this is not the owning thread, wait for syn retransmit to
2442 * expire and cleanup then */
2443 if (tcp_half_open_connection_cleanup (tc0))
2444 tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
2445
2446 if (tcp_opts_tstamp (&new_tc0->rcv_opts))
2447 {
2448 new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
2449 new_tc0->tsval_recent_age = tcp_time_now ();
2450 }
2451
2452 if (tcp_opts_wscale (&new_tc0->rcv_opts))
2453 new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
Florin Corase80b5912018-12-12 19:25:43 -08002454 else
2455 new_tc0->rcv_wscale = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002456
2457 new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2458 << new_tc0->snd_wscale;
2459 new_tc0->snd_wl1 = seq0;
2460 new_tc0->snd_wl2 = ack0;
2461
2462 tcp_connection_init_vars (new_tc0);
2463
2464 /* SYN-ACK: See if we can switch to ESTABLISHED state */
2465 if (PREDICT_TRUE (tcp_ack (tcp0)))
2466 {
2467 /* Our SYN is ACKed: we have iss < ack = snd_una */
2468
2469 /* TODO Dequeue acknowledged segments if we support Fast Open */
2470 new_tc0->snd_una = ack0;
2471 new_tc0->state = TCP_STATE_ESTABLISHED;
2472
2473 /* Make sure las is initialized for the wnd computation */
2474 new_tc0->rcv_las = new_tc0->rcv_nxt;
2475
2476 /* Notify app that we have connection. If session layer can't
2477 * allocate session send reset */
2478 if (session_stream_connect_notify (&new_tc0->connection, 0))
2479 {
Florin Corasd4c49be2019-02-07 00:15:53 -08002480 tcp_send_reset_w_pkt (new_tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002481 tcp_connection_cleanup (new_tc0);
Florin Coras718a0552019-06-07 07:03:01 -07002482 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
Florin Coras7ac053b2018-11-05 15:57:21 -08002483 goto drop;
2484 }
2485
Florin Coras2e31cc32018-09-25 14:00:34 -07002486 new_tc0->tx_fifo_size =
2487 transport_tx_fifo_size (&new_tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002488 /* Update rtt with the syn-ack sample */
Florin Corasefefc6b2018-11-07 12:49:19 -08002489 tcp_estimate_initial_rtt (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002490 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, new_tc0);
2491 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2492 }
2493 /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2494 else
2495 {
2496 new_tc0->state = TCP_STATE_SYN_RCVD;
2497
2498 /* Notify app that we have connection */
2499 if (session_stream_connect_notify (&new_tc0->connection, 0))
2500 {
2501 tcp_connection_cleanup (new_tc0);
Florin Corasd4c49be2019-02-07 00:15:53 -08002502 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002503 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc0);
Florin Coras718a0552019-06-07 07:03:01 -07002504 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
Florin Coras7ac053b2018-11-05 15:57:21 -08002505 goto drop;
2506 }
2507
Florin Coras2e31cc32018-09-25 14:00:34 -07002508 new_tc0->tx_fifo_size =
2509 transport_tx_fifo_size (&new_tc0->connection);
2510 new_tc0->rtt_ts = 0;
2511 tcp_init_snd_vars (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002512 tcp_send_synack (new_tc0);
2513 error0 = TCP_ERROR_SYNS_RCVD;
2514 goto drop;
2515 }
2516
2517 /* Read data, if any */
2518 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
2519 {
2520 clib_warning ("rcvd data in syn-sent");
2521 error0 = tcp_segment_rcv (wrk, new_tc0, b0);
2522 if (error0 == TCP_ERROR_ACK_OK)
2523 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2524 }
2525 else
2526 {
Florin Coras26dd6de2019-07-23 23:54:47 -07002527 tcp_program_ack (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002528 }
2529
2530 drop:
2531
2532 tcp_inc_counter (syn_sent, error0, 1);
2533 if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
2534 {
2535 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05002536 clib_memcpy_fast (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2537 clib_memcpy_fast (&t0->tcp_connection, tc0,
2538 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08002539 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002540 }
2541
Florin Coras31c99552019-03-01 13:00:58 -08002542 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2543 my_thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002544 tcp_inc_counter (syn_sent, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras7ac053b2018-11-05 15:57:21 -08002545 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
2546
Dave Barach68b0fb02017-02-28 15:15:56 -05002547 return from_frame->n_vectors;
2548}
2549
Filip Tehlare275bed2019-03-06 00:06:56 -08002550VLIB_NODE_FN (tcp4_syn_sent_node) (vlib_main_t * vm,
2551 vlib_node_runtime_t * node,
2552 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002553{
2554 return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2555}
2556
Filip Tehlare275bed2019-03-06 00:06:56 -08002557VLIB_NODE_FN (tcp6_syn_sent_node) (vlib_main_t * vm,
2558 vlib_node_runtime_t * node,
2559 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002560{
2561 return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2562}
2563
2564/* *INDENT-OFF* */
2565VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2566{
Dave Barach68b0fb02017-02-28 15:15:56 -05002567 .name = "tcp4-syn-sent",
2568 /* Takes a vector of packets. */
2569 .vector_size = sizeof (u32),
2570 .n_errors = TCP_N_ERROR,
2571 .error_strings = tcp_error_strings,
2572 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2573 .next_nodes =
2574 {
2575#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2576 foreach_tcp_state_next
2577#undef _
2578 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002579 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002580};
2581/* *INDENT-ON* */
2582
Dave Barach68b0fb02017-02-28 15:15:56 -05002583/* *INDENT-OFF* */
2584VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2585{
Dave Barach68b0fb02017-02-28 15:15:56 -05002586 .name = "tcp6-syn-sent",
2587 /* Takes a vector of packets. */
2588 .vector_size = sizeof (u32),
2589 .n_errors = TCP_N_ERROR,
2590 .error_strings = tcp_error_strings,
2591 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2592 .next_nodes =
2593 {
2594#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2595 foreach_tcp_state_next
2596#undef _
Clement Durand6cf260c2017-04-13 13:27:04 +02002597 },
2598 .format_trace = format_tcp_rx_trace_short,
2599};
Dave Barach68b0fb02017-02-28 15:15:56 -05002600/* *INDENT-ON* */
2601
Dave Barach68b0fb02017-02-28 15:15:56 -05002602/**
Florin Corasd79b41e2017-03-04 05:37:52 -08002603 * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
Dave Barach68b0fb02017-02-28 15:15:56 -05002604 * as per RFC793 p. 64
2605 */
2606always_inline uword
2607tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2608 vlib_frame_t * from_frame, int is_ip4)
2609{
Florin Coras7ac053b2018-11-05 15:57:21 -08002610 u32 thread_index = vm->thread_index, errors = 0, *first_buffer;
2611 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras78cc4b02018-12-20 18:24:49 -08002612 u32 n_left_from, *from, max_dequeue;
Dave Barach68b0fb02017-02-28 15:15:56 -05002613
Florin Coras7ac053b2018-11-05 15:57:21 -08002614 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002615 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002616
2617 while (n_left_from > 0)
2618 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002619 u32 bi0, error0 = TCP_ERROR_NONE;
2620 tcp_header_t *tcp0 = 0;
2621 tcp_connection_t *tc0;
2622 vlib_buffer_t *b0;
2623 u8 is_fin0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002624
Florin Coras7ac053b2018-11-05 15:57:21 -08002625 bi0 = from[0];
2626 from += 1;
2627 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002628
Florin Coras7ac053b2018-11-05 15:57:21 -08002629 b0 = vlib_get_buffer (vm, bi0);
2630 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2631 thread_index);
2632 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002633 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002634 error0 = TCP_ERROR_INVALID_CONNECTION;
2635 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002636 }
2637
Florin Coras7ac053b2018-11-05 15:57:21 -08002638 tcp0 = tcp_buffer_hdr (b0);
2639 is_fin0 = tcp_is_fin (tcp0);
2640
Florin Coras7ac053b2018-11-05 15:57:21 -08002641 if (CLIB_DEBUG)
2642 {
2643 tcp_connection_t *tmp;
2644 tmp = tcp_lookup_connection (tc0->c_fib_index, b0, thread_index,
2645 is_ip4);
2646 if (tmp->state != tc0->state)
2647 {
Florin Corasb0f662f2018-12-27 14:51:46 -08002648 if (tc0->state != TCP_STATE_CLOSED)
2649 clib_warning ("state changed");
Florin Coras7ac053b2018-11-05 15:57:21 -08002650 goto drop;
2651 }
2652 }
2653
2654 /*
2655 * Special treatment for CLOSED
2656 */
2657 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
2658 {
2659 error0 = TCP_ERROR_CONNECTION_CLOSED;
2660 goto drop;
2661 }
2662
2663 /*
2664 * For all other states (except LISTEN)
2665 */
2666
2667 /* 1-4: check SEQ, RST, SYN */
2668 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, tcp0, &error0)))
2669 goto drop;
2670
2671 /* 5: check the ACK field */
2672 switch (tc0->state)
2673 {
2674 case TCP_STATE_SYN_RCVD:
Florin Corasf65074e2019-03-31 17:17:11 -07002675
2676 /* Make sure the segment is exactly right */
2677 if (tc0->rcv_nxt != vnet_buffer (b0)->tcp.seq_number || is_fin0)
2678 {
2679 tcp_connection_reset (tc0);
2680 error0 = TCP_ERROR_SEGMENT_INVALID;
2681 goto drop;
2682 }
2683
Florin Coras7ac053b2018-11-05 15:57:21 -08002684 /*
2685 * If the segment acknowledgment is not acceptable, form a
2686 * reset segment,
2687 * <SEQ=SEG.ACK><CTL=RST>
2688 * and send it.
2689 */
Florin Corasf65074e2019-03-31 17:17:11 -07002690 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08002691 {
Florin Corase78ac9d2018-12-16 21:33:00 -08002692 tcp_connection_reset (tc0);
Florin Coras4850e3e2018-12-12 14:34:38 -08002693 goto drop;
2694 }
2695
Florin Coras7ac053b2018-11-05 15:57:21 -08002696 /* Update rtt and rto */
Florin Corasefefc6b2018-11-07 12:49:19 -08002697 tcp_estimate_initial_rtt (tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002698
2699 /* Switch state to ESTABLISHED */
2700 tc0->state = TCP_STATE_ESTABLISHED;
2701 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
2702
2703 /* Initialize session variables */
2704 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
2705 tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2706 << tc0->rcv_opts.wscale;
2707 tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2708 tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
2709
2710 /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
2711 tcp_retransmit_timer_reset (tc0);
Florin Corasa27a46e2019-02-18 13:02:28 -08002712 if (session_stream_accept_notify (&tc0->connection))
Florin Corasa9d5bea2018-12-17 08:24:19 -08002713 {
2714 error0 = TCP_ERROR_MSG_QUEUE_FULL;
2715 tcp_connection_reset (tc0);
2716 goto drop;
2717 }
Florin Coras7ac053b2018-11-05 15:57:21 -08002718 error0 = TCP_ERROR_ACK_OK;
2719 break;
2720 case TCP_STATE_ESTABLISHED:
2721 /* We can get packets in established state here because they
2722 * were enqueued before state change */
2723 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2724 goto drop;
2725
2726 break;
2727 case TCP_STATE_FIN_WAIT_1:
2728 /* In addition to the processing for the ESTABLISHED state, if
2729 * our FIN is now acknowledged then enter FIN-WAIT-2 and
2730 * continue processing in that state. */
2731 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2732 goto drop;
2733
2734 /* Still have to send the FIN */
2735 if (tc0->flags & TCP_CONN_FINPNDG)
2736 {
2737 /* TX fifo finally drained */
Florin Coras31c99552019-03-01 13:00:58 -08002738 max_dequeue = transport_max_tx_dequeue (&tc0->connection);
Florin Coras78cc4b02018-12-20 18:24:49 -08002739 if (max_dequeue <= tc0->burst_acked)
Florin Coras7ac053b2018-11-05 15:57:21 -08002740 tcp_send_fin (tc0);
Florin Coras070fd4b2019-04-02 19:03:23 -07002741 /* If a fin was received and data was acked extend wait */
2742 else if ((tc0->flags & TCP_CONN_FINRCVD) && tc0->bytes_acked)
2743 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
Florin Coras9094b5c2019-08-12 14:17:47 -07002744 tcp_cfg.closewait_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08002745 }
2746 /* If FIN is ACKed */
Florin Coras47596832019-03-12 18:58:54 -07002747 else if (tc0->snd_una == tc0->snd_nxt)
Florin Coras7ac053b2018-11-05 15:57:21 -08002748 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002749 /* Stop all retransmit timers because we have nothing more
Florin Corasf65074e2019-03-31 17:17:11 -07002750 * to send. */
Florin Coras7ac053b2018-11-05 15:57:21 -08002751 tcp_connection_timers_reset (tc0);
Florin Corasf65074e2019-03-31 17:17:11 -07002752
2753 /* We already have a FIN but didn't transition to CLOSING
2754 * because of outstanding tx data. Close the connection. */
2755 if (tc0->flags & TCP_CONN_FINRCVD)
2756 {
2757 tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
Florin Coras9094b5c2019-08-12 14:17:47 -07002758 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE,
2759 tcp_cfg.cleanup_time);
Florin Corasa0904f02019-07-22 20:55:11 -07002760 session_transport_closed_notify (&tc0->connection);
Florin Corasf65074e2019-03-31 17:17:11 -07002761 goto drop;
2762 }
2763
2764 tcp_connection_set_state (tc0, TCP_STATE_FIN_WAIT_2);
2765 /* Enable waitclose because we're willing to wait for peer's
2766 * FIN but not indefinitely. */
Florin Coras9094b5c2019-08-12 14:17:47 -07002767 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.finwait2_time);
Florin Corasefefc6b2018-11-07 12:49:19 -08002768
2769 /* Don't try to deq the FIN acked */
2770 if (tc0->burst_acked > 1)
Florin Coras31c99552019-03-01 13:00:58 -08002771 session_tx_fifo_dequeue_drop (&tc0->connection,
2772 tc0->burst_acked - 1);
Florin Corasefefc6b2018-11-07 12:49:19 -08002773 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002774 }
2775 break;
2776 case TCP_STATE_FIN_WAIT_2:
2777 /* In addition to the processing for the ESTABLISHED state, if
2778 * the retransmission queue is empty, the user's CLOSE can be
2779 * acknowledged ("ok") but do not delete the TCB. */
Florin Corasf65074e2019-03-31 17:17:11 -07002780 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08002781 goto drop;
Florin Corasefefc6b2018-11-07 12:49:19 -08002782 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002783 break;
2784 case TCP_STATE_CLOSE_WAIT:
2785 /* Do the same processing as for the ESTABLISHED state. */
2786 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2787 goto drop;
2788
Florin Corasf65074e2019-03-31 17:17:11 -07002789 if (!(tc0->flags & TCP_CONN_FINPNDG))
2790 break;
2791
2792 /* Still have outstanding tx data */
Florin Coras182bbc12019-06-28 09:41:28 -07002793 max_dequeue = transport_max_tx_dequeue (&tc0->connection);
2794 if (max_dequeue > tc0->burst_acked)
Florin Corasf65074e2019-03-31 17:17:11 -07002795 break;
2796
2797 tcp_send_fin (tc0);
2798 tcp_connection_timers_reset (tc0);
2799 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras9094b5c2019-08-12 14:17:47 -07002800 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.lastack_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08002801 break;
2802 case TCP_STATE_CLOSING:
2803 /* In addition to the processing for the ESTABLISHED state, if
2804 * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2805 * otherwise ignore the segment. */
Florin Corasf65074e2019-03-31 17:17:11 -07002806 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2807 goto drop;
Florin Coras47596832019-03-12 18:58:54 -07002808
Florin Corasf65074e2019-03-31 17:17:11 -07002809 if (tc0->snd_una != tc0->snd_nxt)
2810 goto drop;
Florin Coras7ac053b2018-11-05 15:57:21 -08002811
Florin Coras85a3ddd2018-12-24 16:54:34 -08002812 tcp_connection_timers_reset (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002813 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras9094b5c2019-08-12 14:17:47 -07002814 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras692b9492019-07-12 15:01:53 -07002815 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002816 goto drop;
2817
2818 break;
2819 case TCP_STATE_LAST_ACK:
2820 /* The only thing that [should] arrive in this state is an
2821 * acknowledgment of our FIN. If our FIN is now acknowledged,
2822 * delete the TCB, enter the CLOSED state, and return. */
2823
Florin Corasf65074e2019-03-31 17:17:11 -07002824 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2825 goto drop;
2826
Florin Coras7ac053b2018-11-05 15:57:21 -08002827 /* Apparently our ACK for the peer's FIN was lost */
Florin Coras47596832019-03-12 18:58:54 -07002828 if (is_fin0 && tc0->snd_una != tc0->snd_nxt)
Florin Coras7ac053b2018-11-05 15:57:21 -08002829 {
2830 tcp_send_fin (tc0);
2831 goto drop;
2832 }
2833
Florin Coras3c514d52018-12-22 11:39:33 -08002834 tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
Florin Corasa0904f02019-07-22 20:55:11 -07002835 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002836
2837 /* Don't free the connection from the data path since
2838 * we can't ensure that we have no packets already enqueued
2839 * to output. Rely instead on the waitclose timer */
2840 tcp_connection_timers_reset (tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07002841 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.cleanup_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08002842
2843 goto drop;
2844
2845 break;
2846 case TCP_STATE_TIME_WAIT:
2847 /* The only thing that can arrive in this state is a
2848 * retransmission of the remote FIN. Acknowledge it, and restart
2849 * the 2 MSL timeout. */
2850
Florin Corasf65074e2019-03-31 17:17:11 -07002851 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08002852 goto drop;
2853
Florin Coras37db4302019-03-13 13:25:57 -07002854 if (!is_fin0)
2855 goto drop;
2856
Florin Coras26dd6de2019-07-23 23:54:47 -07002857 tcp_program_ack (tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07002858 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08002859 goto drop;
2860
2861 break;
2862 default:
2863 ASSERT (0);
2864 }
2865
2866 /* 6: check the URG bit TODO */
2867
2868 /* 7: process the segment text */
2869 switch (tc0->state)
2870 {
2871 case TCP_STATE_ESTABLISHED:
2872 case TCP_STATE_FIN_WAIT_1:
2873 case TCP_STATE_FIN_WAIT_2:
2874 if (vnet_buffer (b0)->tcp.data_len)
2875 error0 = tcp_segment_rcv (wrk, tc0, b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002876 break;
2877 case TCP_STATE_CLOSE_WAIT:
2878 case TCP_STATE_CLOSING:
2879 case TCP_STATE_LAST_ACK:
2880 case TCP_STATE_TIME_WAIT:
2881 /* This should not occur, since a FIN has been received from the
2882 * remote side. Ignore the segment text. */
2883 break;
2884 }
2885
2886 /* 8: check the FIN bit */
2887 if (!is_fin0)
2888 goto drop;
2889
Florin Coras3c514d52018-12-22 11:39:33 -08002890 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0);
2891
Florin Coras7ac053b2018-11-05 15:57:21 -08002892 switch (tc0->state)
2893 {
2894 case TCP_STATE_ESTABLISHED:
Florin Coras3c514d52018-12-22 11:39:33 -08002895 /* Account for the FIN and send ack */
2896 tc0->rcv_nxt += 1;
Florin Coras26dd6de2019-07-23 23:54:47 -07002897 tcp_program_ack (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002898 tcp_connection_set_state (tc0, TCP_STATE_CLOSE_WAIT);
2899 tcp_program_disconnect (wrk, tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07002900 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.closewait_time);
Florin Coras5c0f1662018-12-19 01:38:57 -08002901 break;
Florin Coras7ac053b2018-11-05 15:57:21 -08002902 case TCP_STATE_SYN_RCVD:
Florin Coras5c0f1662018-12-19 01:38:57 -08002903 /* Send FIN-ACK, enter LAST-ACK and because the app was not
2904 * notified yet, set a cleanup timer instead of relying on
2905 * disconnect notify and the implicit close call. */
Florin Coras7ac053b2018-11-05 15:57:21 -08002906 tcp_connection_timers_reset (tc0);
Florin Coras5c0f1662018-12-19 01:38:57 -08002907 tc0->rcv_nxt += 1;
Florin Coras7ac053b2018-11-05 15:57:21 -08002908 tcp_send_fin (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002909 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras9094b5c2019-08-12 14:17:47 -07002910 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.lastack_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08002911 break;
2912 case TCP_STATE_CLOSE_WAIT:
2913 case TCP_STATE_CLOSING:
2914 case TCP_STATE_LAST_ACK:
2915 /* move along .. */
2916 break;
2917 case TCP_STATE_FIN_WAIT_1:
Florin Coras3c514d52018-12-22 11:39:33 -08002918 tc0->rcv_nxt += 1;
Florin Coras070fd4b2019-04-02 19:03:23 -07002919
Florin Coras565115e2019-02-20 19:48:31 -08002920 if (tc0->flags & TCP_CONN_FINPNDG)
2921 {
Florin Coras070fd4b2019-04-02 19:03:23 -07002922 /* If data is outstanding, stay in FIN_WAIT_1 and try to finish
2923 * sending it. Since we already received a fin, do not wait
2924 * for too long. */
Florin Corasf65074e2019-03-31 17:17:11 -07002925 tc0->flags |= TCP_CONN_FINRCVD;
Florin Coras9094b5c2019-08-12 14:17:47 -07002926 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
2927 tcp_cfg.closewait_time);
Florin Coras565115e2019-02-20 19:48:31 -08002928 }
2929 else
Florin Corasf65074e2019-03-31 17:17:11 -07002930 {
2931 tcp_connection_set_state (tc0, TCP_STATE_CLOSING);
Florin Coras26dd6de2019-07-23 23:54:47 -07002932 tcp_program_ack (tc0);
Florin Coras070fd4b2019-04-02 19:03:23 -07002933 /* Wait for ACK for our FIN but not forever */
Florin Coras9094b5c2019-08-12 14:17:47 -07002934 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
2935 tcp_cfg.closing_time);
Florin Corasf65074e2019-03-31 17:17:11 -07002936 }
Florin Coras7ac053b2018-11-05 15:57:21 -08002937 break;
2938 case TCP_STATE_FIN_WAIT_2:
2939 /* Got FIN, send ACK! Be more aggressive with resource cleanup */
Florin Coras3c514d52018-12-22 11:39:33 -08002940 tc0->rcv_nxt += 1;
2941 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras7ac053b2018-11-05 15:57:21 -08002942 tcp_connection_timers_reset (tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07002943 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras26dd6de2019-07-23 23:54:47 -07002944 tcp_program_ack (tc0);
Florin Coras692b9492019-07-12 15:01:53 -07002945 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002946 break;
2947 case TCP_STATE_TIME_WAIT:
2948 /* Remain in the TIME-WAIT state. Restart the time-wait
2949 * timeout.
2950 */
Florin Coras9094b5c2019-08-12 14:17:47 -07002951 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08002952 break;
2953 }
2954 error0 = TCP_ERROR_FIN_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -08002955
2956 drop:
2957
2958 tcp_inc_counter (rcv_process, error0, 1);
2959 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2960 {
2961 tcp_rx_trace_t *t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2962 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
2963 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002964 }
2965
Florin Coras31c99552019-03-01 13:00:58 -08002966 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2967 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002968 tcp_inc_counter (rcv_process, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras9ece3c02018-11-05 11:06:53 -08002969 tcp_handle_postponed_dequeues (wrk);
Florin Coras79fdfd62019-05-23 06:19:09 -07002970 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08002971 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
2972
Dave Barach68b0fb02017-02-28 15:15:56 -05002973 return from_frame->n_vectors;
2974}
2975
Filip Tehlare275bed2019-03-06 00:06:56 -08002976VLIB_NODE_FN (tcp4_rcv_process_node) (vlib_main_t * vm,
2977 vlib_node_runtime_t * node,
2978 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002979{
2980 return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2981}
2982
Filip Tehlare275bed2019-03-06 00:06:56 -08002983VLIB_NODE_FN (tcp6_rcv_process_node) (vlib_main_t * vm,
2984 vlib_node_runtime_t * node,
2985 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002986{
2987 return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2988}
2989
2990/* *INDENT-OFF* */
2991VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
2992{
Dave Barach68b0fb02017-02-28 15:15:56 -05002993 .name = "tcp4-rcv-process",
2994 /* Takes a vector of packets. */
2995 .vector_size = sizeof (u32),
2996 .n_errors = TCP_N_ERROR,
2997 .error_strings = tcp_error_strings,
2998 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2999 .next_nodes =
3000 {
3001#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3002 foreach_tcp_state_next
3003#undef _
3004 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003005 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003006};
3007/* *INDENT-ON* */
3008
Dave Barach68b0fb02017-02-28 15:15:56 -05003009/* *INDENT-OFF* */
3010VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
3011{
Dave Barach68b0fb02017-02-28 15:15:56 -05003012 .name = "tcp6-rcv-process",
3013 /* Takes a vector of packets. */
3014 .vector_size = sizeof (u32),
3015 .n_errors = TCP_N_ERROR,
3016 .error_strings = tcp_error_strings,
3017 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3018 .next_nodes =
3019 {
3020#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3021 foreach_tcp_state_next
3022#undef _
3023 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003024 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003025};
3026/* *INDENT-ON* */
3027
Dave Barach68b0fb02017-02-28 15:15:56 -05003028/**
3029 * LISTEN state processing as per RFC 793 p. 65
3030 */
3031always_inline uword
3032tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3033 vlib_frame_t * from_frame, int is_ip4)
3034{
Florin Coras7ac053b2018-11-05 15:57:21 -08003035 u32 n_left_from, *from, n_syns = 0, *first_buffer;
Damjan Marion586afd72017-04-05 19:18:20 +02003036 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05003037
Florin Coras7ac053b2018-11-05 15:57:21 -08003038 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05003039 n_left_from = from_frame->n_vectors;
3040
Dave Barach68b0fb02017-02-28 15:15:56 -05003041 while (n_left_from > 0)
3042 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003043 u32 bi0;
3044 vlib_buffer_t *b0;
3045 tcp_rx_trace_t *t0;
3046 tcp_header_t *th0 = 0;
3047 tcp_connection_t *lc0;
3048 ip4_header_t *ip40;
3049 ip6_header_t *ip60;
3050 tcp_connection_t *child0;
3051 u32 error0 = TCP_ERROR_NONE;
Dave Barach68b0fb02017-02-28 15:15:56 -05003052
Florin Coras7ac053b2018-11-05 15:57:21 -08003053 bi0 = from[0];
3054 from += 1;
3055 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05003056
Florin Coras7ac053b2018-11-05 15:57:21 -08003057 b0 = vlib_get_buffer (vm, bi0);
3058 lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index);
3059
3060 if (is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003061 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003062 ip40 = vlib_buffer_get_current (b0);
3063 th0 = ip4_next_header (ip40);
3064 }
3065 else
3066 {
3067 ip60 = vlib_buffer_get_current (b0);
3068 th0 = ip6_next_header (ip60);
Dave Barach68b0fb02017-02-28 15:15:56 -05003069 }
3070
Florin Coras7ac053b2018-11-05 15:57:21 -08003071 /* Create child session. For syn-flood protection use filter */
3072
3073 /* 1. first check for an RST: handled in dispatch */
3074 /* if (tcp_rst (th0))
3075 goto drop;
3076 */
3077
3078 /* 2. second check for an ACK: handled in dispatch */
3079 /* if (tcp_ack (th0))
3080 {
3081 tcp_send_reset (b0, is_ip4);
3082 goto drop;
3083 }
3084 */
3085
3086 /* 3. check for a SYN (did that already) */
3087
3088 /* Make sure connection wasn't just created */
3089 child0 = tcp_lookup_connection (lc0->c_fib_index, b0, my_thread_index,
3090 is_ip4);
3091 if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN))
3092 {
3093 error0 = TCP_ERROR_CREATE_EXISTS;
3094 goto drop;
3095 }
3096
3097 /* Create child session and send SYN-ACK */
Florin Coras8124cb72018-12-16 20:57:29 -08003098 child0 = tcp_connection_alloc (my_thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08003099 child0->c_lcl_port = th0->dst_port;
3100 child0->c_rmt_port = th0->src_port;
3101 child0->c_is_ip4 = is_ip4;
3102 child0->state = TCP_STATE_SYN_RCVD;
3103 child0->c_fib_index = lc0->c_fib_index;
Florin Coras12f69362019-08-16 09:44:00 -07003104 child0->cc_algo = lc0->cc_algo;
Florin Coras7ac053b2018-11-05 15:57:21 -08003105
3106 if (is_ip4)
3107 {
3108 child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32;
3109 child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32;
3110 }
3111 else
3112 {
Dave Barach178cf492018-11-13 16:34:13 -05003113 clib_memcpy_fast (&child0->c_lcl_ip6, &ip60->dst_address,
3114 sizeof (ip6_address_t));
3115 clib_memcpy_fast (&child0->c_rmt_ip6, &ip60->src_address,
3116 sizeof (ip6_address_t));
Florin Coras7ac053b2018-11-05 15:57:21 -08003117 }
3118
Florin Coras80231112018-12-05 15:59:31 -08003119 if (tcp_options_parse (th0, &child0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08003120 {
Florin Coras8124cb72018-12-16 20:57:29 -08003121 error0 = TCP_ERROR_OPTIONS;
3122 tcp_connection_free (child0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003123 goto drop;
3124 }
3125
3126 child0->irs = vnet_buffer (b0)->tcp.seq_number;
3127 child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1;
3128 child0->rcv_las = child0->rcv_nxt;
3129 child0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
3130
3131 /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
3132 * segments are used to initialize PAWS. */
3133 if (tcp_opts_tstamp (&child0->rcv_opts))
3134 {
3135 child0->tsval_recent = child0->rcv_opts.tsval;
3136 child0->tsval_recent_age = tcp_time_now ();
3137 }
3138
3139 if (tcp_opts_wscale (&child0->rcv_opts))
3140 child0->snd_wscale = child0->rcv_opts.wscale;
3141
3142 child0->snd_wnd = clib_net_to_host_u16 (th0->window)
3143 << child0->snd_wscale;
3144 child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
3145 child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
3146
3147 tcp_connection_init_vars (child0);
Florin Coras865872e2019-01-18 12:12:29 -08003148 child0->rto = TCP_RTO_MIN;
Florin Coras7ac053b2018-11-05 15:57:21 -08003149
Florin Corasc9940fc2019-02-05 20:55:11 -08003150 if (session_stream_accept (&child0->connection, lc0->c_s_index,
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +02003151 lc0->c_thread_index, 0 /* notify */ ))
Florin Coras7ac053b2018-11-05 15:57:21 -08003152 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003153 tcp_connection_cleanup (child0);
3154 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
3155 goto drop;
3156 }
3157
Florin Coras6416e622019-04-03 17:52:43 -07003158 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, child0, 1);
Florin Coras2e31cc32018-09-25 14:00:34 -07003159 child0->tx_fifo_size = transport_tx_fifo_size (&child0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003160 tcp_send_synack (child0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003161
3162 drop:
3163
3164 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3165 {
3166 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05003167 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
3168 clib_memcpy_fast (&t0->tcp_connection, lc0,
3169 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08003170 }
3171
3172 n_syns += (error0 == TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003173 }
Florin Coras00cd22d2018-04-18 13:20:18 -07003174
3175 tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
Florin Coras7ac053b2018-11-05 15:57:21 -08003176 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3177
Dave Barach68b0fb02017-02-28 15:15:56 -05003178 return from_frame->n_vectors;
3179}
3180
Filip Tehlare275bed2019-03-06 00:06:56 -08003181VLIB_NODE_FN (tcp4_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3182 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003183{
3184 return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3185}
3186
Filip Tehlare275bed2019-03-06 00:06:56 -08003187VLIB_NODE_FN (tcp6_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3188 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003189{
3190 return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3191}
3192
3193/* *INDENT-OFF* */
3194VLIB_REGISTER_NODE (tcp4_listen_node) =
3195{
Dave Barach68b0fb02017-02-28 15:15:56 -05003196 .name = "tcp4-listen",
3197 /* Takes a vector of packets. */
3198 .vector_size = sizeof (u32),
3199 .n_errors = TCP_N_ERROR,
3200 .error_strings = tcp_error_strings,
3201 .n_next_nodes = TCP_LISTEN_N_NEXT,
3202 .next_nodes =
3203 {
3204#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3205 foreach_tcp_state_next
3206#undef _
3207 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003208 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003209};
3210/* *INDENT-ON* */
3211
Dave Barach68b0fb02017-02-28 15:15:56 -05003212/* *INDENT-OFF* */
3213VLIB_REGISTER_NODE (tcp6_listen_node) =
3214{
Dave Barach68b0fb02017-02-28 15:15:56 -05003215 .name = "tcp6-listen",
3216 /* Takes a vector of packets. */
3217 .vector_size = sizeof (u32),
3218 .n_errors = TCP_N_ERROR,
3219 .error_strings = tcp_error_strings,
3220 .n_next_nodes = TCP_LISTEN_N_NEXT,
3221 .next_nodes =
3222 {
3223#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3224 foreach_tcp_state_next
3225#undef _
3226 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003227 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003228};
3229/* *INDENT-ON* */
3230
Dave Barach68b0fb02017-02-28 15:15:56 -05003231typedef enum _tcp_input_next
3232{
3233 TCP_INPUT_NEXT_DROP,
3234 TCP_INPUT_NEXT_LISTEN,
3235 TCP_INPUT_NEXT_RCV_PROCESS,
3236 TCP_INPUT_NEXT_SYN_SENT,
3237 TCP_INPUT_NEXT_ESTABLISHED,
3238 TCP_INPUT_NEXT_RESET,
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003239 TCP_INPUT_NEXT_PUNT,
Dave Barach68b0fb02017-02-28 15:15:56 -05003240 TCP_INPUT_N_NEXT
3241} tcp_input_next_t;
3242
3243#define foreach_tcp4_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003244 _ (DROP, "ip4-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003245 _ (LISTEN, "tcp4-listen") \
3246 _ (RCV_PROCESS, "tcp4-rcv-process") \
3247 _ (SYN_SENT, "tcp4-syn-sent") \
3248 _ (ESTABLISHED, "tcp4-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003249 _ (RESET, "tcp4-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003250 _ (PUNT, "ip4-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003251
3252#define foreach_tcp6_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003253 _ (DROP, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003254 _ (LISTEN, "tcp6-listen") \
3255 _ (RCV_PROCESS, "tcp6-rcv-process") \
3256 _ (SYN_SENT, "tcp6-syn-sent") \
3257 _ (ESTABLISHED, "tcp6-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003258 _ (RESET, "tcp6-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003259 _ (PUNT, "ip6-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003260
Dave Barach68b0fb02017-02-28 15:15:56 -05003261#define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
3262
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003263static void
3264tcp_input_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07003265 vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003266{
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003267 tcp_connection_t *tc;
3268 tcp_header_t *tcp;
3269 tcp_rx_trace_t *t;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003270 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05003271
Florin Coras4df38712018-06-20 12:44:16 -07003272 for (i = 0; i < n_bufs; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05003273 {
Florin Coras4df38712018-06-20 12:44:16 -07003274 if (bs[i]->flags & VLIB_BUFFER_IS_TRACED)
3275 {
3276 t = vlib_add_trace (vm, node, bs[i], sizeof (*t));
3277 tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index,
3278 vm->thread_index);
3279 tcp = vlib_buffer_get_current (bs[i]);
3280 tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4);
3281 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003282 }
3283}
Dave Barach68b0fb02017-02-28 15:15:56 -05003284
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003285static void
3286tcp_input_set_error_next (tcp_main_t * tm, u16 * next, u32 * error, u8 is_ip4)
3287{
Florin Corasb5e55a22019-01-10 12:42:47 -08003288 if (*error == TCP_ERROR_FILTERED || *error == TCP_ERROR_WRONG_THREAD)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003289 {
3290 *next = TCP_INPUT_NEXT_DROP;
3291 }
3292 else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6))
3293 {
3294 *next = TCP_INPUT_NEXT_PUNT;
3295 *error = TCP_ERROR_PUNT;
3296 }
3297 else
3298 {
3299 *next = TCP_INPUT_NEXT_RESET;
3300 *error = TCP_ERROR_NO_LISTENER;
3301 }
3302}
Dave Barach68b0fb02017-02-28 15:15:56 -05003303
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003304always_inline tcp_connection_t *
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003305tcp_input_lookup_buffer (vlib_buffer_t * b, u8 thread_index, u32 * error,
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003306 u8 is_ip4, u8 is_nolookup)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003307{
3308 u32 fib_index = vnet_buffer (b)->ip.fib_index;
3309 int n_advance_bytes, n_data_bytes;
3310 transport_connection_t *tc;
3311 tcp_header_t *tcp;
Florin Corasb5e55a22019-01-10 12:42:47 -08003312 u8 result = 0;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003313
3314 if (is_ip4)
3315 {
3316 ip4_header_t *ip4 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003317 int ip_hdr_bytes = ip4_header_bytes (ip4);
3318 if (PREDICT_FALSE (b->current_length < ip_hdr_bytes + sizeof (*tcp)))
3319 {
3320 *error = TCP_ERROR_LENGTH;
3321 return 0;
3322 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003323 tcp = ip4_next_header (ip4);
3324 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip4;
Florin Corasb8dda5f2018-12-05 10:03:34 -08003325 n_advance_bytes = (ip_hdr_bytes + tcp_header_bytes (tcp));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003326 n_data_bytes = clib_net_to_host_u16 (ip4->length) - n_advance_bytes;
3327
3328 /* Length check. Checksum computed by ipx_local no need to compute again */
Florin Corasb8dda5f2018-12-05 10:03:34 -08003329 if (PREDICT_FALSE (n_data_bytes < 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05003330 {
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003331 *error = TCP_ERROR_LENGTH;
3332 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003333 }
3334
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003335 if (!is_nolookup)
3336 tc = session_lookup_connection_wt4 (fib_index, &ip4->dst_address,
3337 &ip4->src_address, tcp->dst_port,
3338 tcp->src_port,
3339 TRANSPORT_PROTO_TCP, thread_index,
3340 &result);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003341 }
3342 else
3343 {
3344 ip6_header_t *ip6 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003345 if (PREDICT_FALSE (b->current_length < sizeof (*ip6) + sizeof (*tcp)))
3346 {
3347 *error = TCP_ERROR_LENGTH;
3348 return 0;
3349 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003350 tcp = ip6_next_header (ip6);
3351 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip6;
3352 n_advance_bytes = tcp_header_bytes (tcp);
3353 n_data_bytes = clib_net_to_host_u16 (ip6->payload_length)
3354 - n_advance_bytes;
3355 n_advance_bytes += sizeof (ip6[0]);
3356
Florin Corasb8dda5f2018-12-05 10:03:34 -08003357 if (PREDICT_FALSE (n_data_bytes < 0))
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003358 {
3359 *error = TCP_ERROR_LENGTH;
3360 return 0;
3361 }
3362
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003363 if (!is_nolookup)
3364 {
3365 if (PREDICT_FALSE
3366 (ip6_address_is_link_local_unicast (&ip6->dst_address)))
3367 {
3368 ip4_main_t *im = &ip4_main;
3369 fib_index = vec_elt (im->fib_index_by_sw_if_index,
3370 vnet_buffer (b)->sw_if_index[VLIB_RX]);
3371 }
3372
3373 tc = session_lookup_connection_wt6 (fib_index, &ip6->dst_address,
3374 &ip6->src_address,
3375 tcp->dst_port, tcp->src_port,
3376 TRANSPORT_PROTO_TCP,
3377 thread_index, &result);
3378 }
Dave Barach68b0fb02017-02-28 15:15:56 -05003379 }
3380
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003381 if (is_nolookup)
3382 tc =
3383 (transport_connection_t *) tcp_connection_get (vnet_buffer (b)->
3384 tcp.connection_index,
3385 thread_index);
3386
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003387 vnet_buffer (b)->tcp.seq_number = clib_net_to_host_u32 (tcp->seq_number);
3388 vnet_buffer (b)->tcp.ack_number = clib_net_to_host_u32 (tcp->ack_number);
3389 vnet_buffer (b)->tcp.data_offset = n_advance_bytes;
3390 vnet_buffer (b)->tcp.data_len = n_data_bytes;
Florin Coras3c514d52018-12-22 11:39:33 -08003391 vnet_buffer (b)->tcp.seq_end = vnet_buffer (b)->tcp.seq_number
3392 + n_data_bytes;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003393 vnet_buffer (b)->tcp.flags = 0;
3394
Florin Corasb5e55a22019-01-10 12:42:47 -08003395 *error = result ? TCP_ERROR_NONE + result : *error;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003396
3397 return tcp_get_connection_from_transport (tc);
3398}
3399
3400static inline void
3401tcp_input_dispatch_buffer (tcp_main_t * tm, tcp_connection_t * tc,
3402 vlib_buffer_t * b, u16 * next, u32 * error)
3403{
3404 tcp_header_t *tcp;
3405 u8 flags;
3406
3407 tcp = tcp_buffer_hdr (b);
3408 flags = tcp->flags & filter_flags;
3409 *next = tm->dispatch_table[tc->state][flags].next;
3410 *error = tm->dispatch_table[tc->state][flags].error;
Florin Corasedfe0ee2019-07-29 18:13:25 -07003411 tc->segs_in += 1;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003412
3413 if (PREDICT_FALSE (*error == TCP_ERROR_DISPATCH
3414 || *next == TCP_INPUT_NEXT_RESET))
3415 {
3416 /* Overload tcp flags to store state */
3417 tcp_state_t state = tc->state;
3418 vnet_buffer (b)->tcp.flags = tc->state;
3419
3420 if (*error == TCP_ERROR_DISPATCH)
Florin Corasa9d5bea2018-12-17 08:24:19 -08003421 clib_warning ("tcp conn %u disp error state %U flags %U",
3422 tc->c_c_index, format_tcp_state, state,
3423 format_tcp_flags, (int) flags);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003424 }
3425}
3426
3427always_inline uword
3428tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003429 vlib_frame_t * frame, int is_ip4, u8 is_nolookup)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003430{
3431 u32 n_left_from, *from, thread_index = vm->thread_index;
3432 tcp_main_t *tm = vnet_get_tcp_main ();
3433 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
3434 u16 nexts[VLIB_FRAME_SIZE], *next;
3435
Florin Corasbe72ae62018-11-01 11:23:03 -07003436 tcp_set_time_now (tcp_get_worker (thread_index));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003437
3438 from = vlib_frame_vector_args (frame);
3439 n_left_from = frame->n_vectors;
3440 vlib_get_buffers (vm, from, bufs, n_left_from);
3441
3442 b = bufs;
3443 next = nexts;
3444
3445 while (n_left_from >= 4)
3446 {
3447 u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER;
3448 tcp_connection_t *tc0, *tc1;
3449
3450 {
3451 vlib_prefetch_buffer_header (b[2], STORE);
3452 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3453
3454 vlib_prefetch_buffer_header (b[3], STORE);
3455 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3456 }
3457
3458 next[0] = next[1] = TCP_INPUT_NEXT_DROP;
3459
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003460 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
3461 is_nolookup);
3462 tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4,
3463 is_nolookup);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003464
3465 if (PREDICT_TRUE (!tc0 + !tc1 == 0))
3466 {
3467 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3468 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3469
3470 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3471 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3472
3473 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3474 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3475 }
3476 else
3477 {
3478 if (PREDICT_TRUE (tc0 != 0))
3479 {
3480 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3481 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3482 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3483 }
3484 else
3485 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3486
3487 if (PREDICT_TRUE (tc1 != 0))
3488 {
3489 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3490 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3491 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3492 }
3493 else
3494 tcp_input_set_error_next (tm, &next[1], &error1, is_ip4);
3495 }
3496
3497 b += 2;
3498 next += 2;
3499 n_left_from -= 2;
3500 }
3501 while (n_left_from > 0)
3502 {
3503 tcp_connection_t *tc0;
3504 u32 error0 = TCP_ERROR_NO_LISTENER;
3505
3506 if (n_left_from > 1)
3507 {
3508 vlib_prefetch_buffer_header (b[1], STORE);
3509 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3510 }
3511
3512 next[0] = TCP_INPUT_NEXT_DROP;
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003513 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
3514 is_nolookup);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003515 if (PREDICT_TRUE (tc0 != 0))
3516 {
3517 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3518 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3519 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3520 }
3521 else
3522 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3523
3524 b += 1;
3525 next += 1;
3526 n_left_from -= 1;
3527 }
3528
3529 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
3530 tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4);
3531
3532 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
3533 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05003534}
3535
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003536VLIB_NODE_FN (tcp4_input_nolookup_node) (vlib_main_t * vm,
3537 vlib_node_runtime_t * node,
3538 vlib_frame_t * from_frame)
3539{
3540 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
3541 1 /* is_nolookup */ );
3542}
3543
3544VLIB_NODE_FN (tcp6_input_nolookup_node) (vlib_main_t * vm,
3545 vlib_node_runtime_t * node,
3546 vlib_frame_t * from_frame)
3547{
3548 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3549 1 /* is_nolookup */ );
3550}
3551
3552/* *INDENT-OFF* */
3553VLIB_REGISTER_NODE (tcp4_input_nolookup_node) =
3554{
3555 .name = "tcp4-input-nolookup",
3556 /* Takes a vector of packets. */
3557 .vector_size = sizeof (u32),
3558 .n_errors = TCP_N_ERROR,
3559 .error_strings = tcp_error_strings,
3560 .n_next_nodes = TCP_INPUT_N_NEXT,
3561 .next_nodes =
3562 {
3563#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3564 foreach_tcp4_input_next
3565#undef _
3566 },
3567 .format_buffer = format_tcp_header,
3568 .format_trace = format_tcp_rx_trace,
3569};
3570/* *INDENT-ON* */
3571
3572/* *INDENT-OFF* */
3573VLIB_REGISTER_NODE (tcp6_input_nolookup_node) =
3574{
3575 .name = "tcp6-input-nolookup",
3576 /* Takes a vector of packets. */
3577 .vector_size = sizeof (u32),
3578 .n_errors = TCP_N_ERROR,
3579 .error_strings = tcp_error_strings,
3580 .n_next_nodes = TCP_INPUT_N_NEXT,
3581 .next_nodes =
3582 {
3583#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3584 foreach_tcp6_input_next
3585#undef _
3586 },
3587 .format_buffer = format_tcp_header,
3588 .format_trace = format_tcp_rx_trace,
3589};
3590/* *INDENT-ON* */
3591
Filip Tehlare275bed2019-03-06 00:06:56 -08003592VLIB_NODE_FN (tcp4_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3593 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003594{
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003595 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
3596 0 /* is_nolookup */ );
Dave Barach68b0fb02017-02-28 15:15:56 -05003597}
3598
Filip Tehlare275bed2019-03-06 00:06:56 -08003599VLIB_NODE_FN (tcp6_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3600 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003601{
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003602 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3603 0 /* is_nolookup */ );
Dave Barach68b0fb02017-02-28 15:15:56 -05003604}
3605
3606/* *INDENT-OFF* */
3607VLIB_REGISTER_NODE (tcp4_input_node) =
3608{
Dave Barach68b0fb02017-02-28 15:15:56 -05003609 .name = "tcp4-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_tcp4_input_next
3619#undef _
3620 },
3621 .format_buffer = format_tcp_header,
3622 .format_trace = format_tcp_rx_trace,
3623};
3624/* *INDENT-ON* */
3625
Dave Barach68b0fb02017-02-28 15:15:56 -05003626/* *INDENT-OFF* */
3627VLIB_REGISTER_NODE (tcp6_input_node) =
3628{
Dave Barach68b0fb02017-02-28 15:15:56 -05003629 .name = "tcp6-input",
3630 /* Takes a vector of packets. */
3631 .vector_size = sizeof (u32),
3632 .n_errors = TCP_N_ERROR,
3633 .error_strings = tcp_error_strings,
3634 .n_next_nodes = TCP_INPUT_N_NEXT,
3635 .next_nodes =
3636 {
3637#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3638 foreach_tcp6_input_next
3639#undef _
3640 },
3641 .format_buffer = format_tcp_header,
3642 .format_trace = format_tcp_rx_trace,
3643};
3644/* *INDENT-ON* */
3645
Filip Tehlare275bed2019-03-06 00:06:56 -08003646#ifndef CLIB_MARCH_VARIANT
Dave Barach68b0fb02017-02-28 15:15:56 -05003647static void
3648tcp_dispatch_table_init (tcp_main_t * tm)
3649{
3650 int i, j;
3651 for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3652 for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3653 {
3654 tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3655 tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3656 }
3657
3658#define _(t,f,n,e) \
3659do { \
3660 tm->dispatch_table[TCP_STATE_##t][f].next = (n); \
3661 tm->dispatch_table[TCP_STATE_##t][f].error = (e); \
3662} while (0)
3663
Florin Coras678a6572018-12-17 21:31:25 -08003664 /* RFC 793: In LISTEN if RST drop and if ACK return RST */
Florin Coras5c0f1662018-12-19 01:38:57 -08003665 _(LISTEN, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras678a6572018-12-17 21:31:25 -08003666 _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_ACK_INVALID);
3667 _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_INVALID_CONNECTION);
Dave Barach68b0fb02017-02-28 15:15:56 -05003668 _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003669 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3670 TCP_ERROR_ACK_INVALID);
3671 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3672 TCP_ERROR_SEGMENT_INVALID);
3673 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3674 TCP_ERROR_SEGMENT_INVALID);
3675 _(LISTEN, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3676 TCP_ERROR_INVALID_CONNECTION);
3677 _(LISTEN, TCP_FLAG_FIN, TCP_INPUT_NEXT_RESET, TCP_ERROR_SEGMENT_INVALID);
Dave Barach2c25a622017-06-26 11:35:07 -04003678 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
Florin Coras678a6572018-12-17 21:31:25 -08003679 TCP_ERROR_SEGMENT_INVALID);
3680 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3681 TCP_ERROR_SEGMENT_INVALID);
3682 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003683 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003684 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_DROP,
3685 TCP_ERROR_SEGMENT_INVALID);
3686 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3687 TCP_ERROR_SEGMENT_INVALID);
3688 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3689 TCP_ERROR_SEGMENT_INVALID);
3690 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3691 TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003692 /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3693 _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc28764f2017-04-26 00:08:42 -07003694 _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase8460c72018-09-24 14:40:40 -07003695 _(SYN_RCVD, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3696 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003697 _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003698 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3699 TCP_ERROR_NONE);
3700 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3701 TCP_ERROR_NONE);
3702 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3703 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3704 _(SYN_RCVD, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc01c4452018-09-20 18:36:54 -07003705 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3706 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003707 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3708 TCP_ERROR_NONE);
3709 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3710 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3711 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3712 TCP_ERROR_NONE);
3713 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3714 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3715 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3716 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3717 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3718 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3719 _(SYN_RCVD, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003720 /* SYN-ACK for a SYN */
3721 _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3722 TCP_ERROR_NONE);
3723 _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3724 _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3725 _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3726 TCP_ERROR_NONE);
Florin Coras222e1f412019-02-16 20:47:32 -08003727 _(SYN_SENT, TCP_FLAG_FIN, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3728 _(SYN_SENT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3729 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003730 /* ACK for for established connection -> tcp-established. */
3731 _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3732 /* FIN for for established connection -> tcp-established. */
3733 _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3734 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3735 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003736 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3737 TCP_ERROR_NONE);
3738 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3739 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3740 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED,
3741 TCP_ERROR_NONE);
3742 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3743 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3744 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3745 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3746 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3747 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasd79b41e2017-03-04 05:37:52 -08003748 _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003749 _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3750 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003751 _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003752 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3753 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003754 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3755 TCP_ERROR_NONE);
3756 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3757 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3758 _(ESTABLISHED, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003759 /* ACK or FIN-ACK to our FIN */
3760 _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3761 _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
3762 TCP_ERROR_NONE);
3763 /* FIN in reply to our FIN from the other side */
Florin Coras76bc1302018-12-23 23:36:36 -08003764 _(FIN_WAIT_1, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003765 _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08003766 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3767 TCP_ERROR_NONE);
3768 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3769 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3770 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3771 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3772 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3773 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3774 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3775 TCP_ERROR_NONE);
3776 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3777 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras5c0f1662018-12-19 01:38:57 -08003778 _(FIN_WAIT_1, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08003779 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3780 TCP_ERROR_NONE);
3781 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3782 TCP_ERROR_NONE);
3783 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3784 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003785 _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase96bf632018-12-18 22:44:27 -08003786 _(FIN_WAIT_1, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3787 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003788 _(CLOSING, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras56318932018-05-23 20:44:12 -07003789 _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08003790 _(CLOSING, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003791 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3792 TCP_ERROR_NONE);
3793 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3794 TCP_ERROR_NONE);
3795 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3796 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08003797 _(CLOSING, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3798 _(CLOSING, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3799 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003800 _(CLOSING, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras3c514d52018-12-22 11:39:33 -08003801 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3802 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003803 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3804 TCP_ERROR_NONE);
3805 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3806 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3807 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3808 TCP_ERROR_NONE);
3809 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3810 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras79c04d62019-08-11 19:49:05 -07003811 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3812 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003813 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3814 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003815 /* FIN confirming that the peer (app) has closed */
3816 _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasf6d68ed2017-05-07 19:12:02 -07003817 _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003818 _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3819 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003820 _(FIN_WAIT_2, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3821 _(FIN_WAIT_2, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3822 TCP_ERROR_NONE);
Florin Corasf03a59a2017-06-09 21:07:32 -07003823 _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3824 _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3825 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003826 _(CLOSE_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3827 _(CLOSE_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3828 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003829 _(LAST_ACK, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003830 _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003831 _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3832 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3833 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003834 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3835 TCP_ERROR_NONE);
3836 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3837 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3838 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3839 TCP_ERROR_NONE);
3840 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3841 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3842 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3843 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3844 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3845 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasdb84e572017-05-09 18:54:52 -07003846 _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003847 _(LAST_ACK, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3848 TCP_ERROR_NONE);
Florin Corasc01d5782018-10-17 14:53:11 -07003849 _(LAST_ACK, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003850 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3851 TCP_ERROR_NONE);
3852 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3853 TCP_ERROR_NONE);
3854 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3855 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003856 _(TIME_WAIT, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003857 _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3858 _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3859 TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003860 _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003861 _(TIME_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3862 TCP_ERROR_NONE);
Florin Coras50958952017-08-29 14:50:13 -07003863 _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003864 /* RFC793 CLOSED: An incoming segment containing a RST is discarded. An
3865 * incoming segment not containing a RST causes a RST to be sent in
3866 * response.*/
Florin Corasdc629cd2017-05-09 00:52:37 -07003867 _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08003868 _(CLOSED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003869 TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08003870 _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
3871 _(CLOSED, TCP_FLAG_SYN, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
3872 _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3873 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003874#undef _
3875}
3876
Florin Coras0dbd5172018-06-25 16:19:34 -07003877static clib_error_t *
Dave Barach68b0fb02017-02-28 15:15:56 -05003878tcp_input_init (vlib_main_t * vm)
3879{
3880 clib_error_t *error = 0;
3881 tcp_main_t *tm = vnet_get_tcp_main ();
3882
3883 if ((error = vlib_call_init_function (vm, tcp_init)))
3884 return error;
3885
3886 /* Initialize dispatch table. */
3887 tcp_dispatch_table_init (tm);
3888
3889 return error;
3890}
3891
3892VLIB_INIT_FUNCTION (tcp_input_init);
3893
Filip Tehlare275bed2019-03-06 00:06:56 -08003894#endif /* CLIB_MARCH_VARIANT */
3895
Dave Barach68b0fb02017-02-28 15:15:56 -05003896/*
3897 * fd.io coding-style-patch-verification: ON
3898 *
3899 * Local Variables:
3900 * eval: (c-set-style "gnu")
3901 * End:
3902 */