blob: c03c5db43327aa25417767dd67830b4b091958f1 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Coras830fe732019-02-15 18:20:58 -08002 * Copyright (c) 2016-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vppinfra/sparse_vec.h>
17#include <vnet/tcp/tcp_packet.h>
18#include <vnet/tcp/tcp.h>
19#include <vnet/session/session.h>
20#include <math.h>
21
22static char *tcp_error_strings[] = {
23#define tcp_error(n,s) s,
24#include <vnet/tcp/tcp_error.def>
25#undef tcp_error
26};
27
28/* All TCP nodes have the same outgoing arcs */
29#define foreach_tcp_state_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080030 _ (DROP4, "ip4-drop") \
31 _ (DROP6, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -050032 _ (TCP4_OUTPUT, "tcp4-output") \
33 _ (TCP6_OUTPUT, "tcp6-output")
34
35typedef enum _tcp_established_next
36{
37#define _(s,n) TCP_ESTABLISHED_NEXT_##s,
38 foreach_tcp_state_next
39#undef _
40 TCP_ESTABLISHED_N_NEXT,
41} tcp_established_next_t;
42
43typedef enum _tcp_rcv_process_next
44{
45#define _(s,n) TCP_RCV_PROCESS_NEXT_##s,
46 foreach_tcp_state_next
47#undef _
48 TCP_RCV_PROCESS_N_NEXT,
49} tcp_rcv_process_next_t;
50
51typedef enum _tcp_syn_sent_next
52{
53#define _(s,n) TCP_SYN_SENT_NEXT_##s,
54 foreach_tcp_state_next
55#undef _
56 TCP_SYN_SENT_N_NEXT,
57} tcp_syn_sent_next_t;
58
59typedef enum _tcp_listen_next
60{
61#define _(s,n) TCP_LISTEN_NEXT_##s,
62 foreach_tcp_state_next
63#undef _
64 TCP_LISTEN_N_NEXT,
65} tcp_listen_next_t;
66
67/* Generic, state independent indices */
68typedef enum _tcp_state_next
69{
70#define _(s,n) TCP_NEXT_##s,
71 foreach_tcp_state_next
72#undef _
73 TCP_STATE_N_NEXT,
74} tcp_state_next_t;
75
76#define tcp_next_output(is_ip4) (is_ip4 ? TCP_NEXT_TCP4_OUTPUT \
77 : TCP_NEXT_TCP6_OUTPUT)
78
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080079#define tcp_next_drop(is_ip4) (is_ip4 ? TCP_NEXT_DROP4 \
80 : TCP_NEXT_DROP6)
81
Dave Barach68b0fb02017-02-28 15:15:56 -050082/**
83 * Validate segment sequence number. As per RFC793:
84 *
85 * Segment Receive Test
86 * Length Window
87 * ------- ------- -------------------------------------------
88 * 0 0 SEG.SEQ = RCV.NXT
89 * 0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
90 * >0 0 not acceptable
91 * >0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
92 * or RCV.NXT =< SEG.SEQ+SEG.LEN-1 < RCV.NXT+RCV.WND
93 *
94 * This ultimately consists in checking if segment falls within the window.
95 * The one important difference compared to RFC793 is that we use rcv_las,
96 * or the rcv_nxt at last ack sent instead of rcv_nxt since that's the
97 * peer's reference when computing our receive window.
98 *
Florin Coras6792ec02017-03-13 03:49:51 -070099 * This:
100 * seq_leq (end_seq, tc->rcv_las + tc->rcv_wnd) && seq_geq (seq, tc->rcv_las)
101 * however, is too strict when we have retransmits. Instead we just check that
102 * the seq is not beyond the right edge and that the end of the segment is not
103 * less than the left edge.
104 *
105 * N.B. rcv_nxt and rcv_wnd are both updated in this node if acks are sent, so
106 * use rcv_nxt in the right edge window test instead of rcv_las.
107 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500108 */
109always_inline u8
110tcp_segment_in_rcv_wnd (tcp_connection_t * tc, u32 seq, u32 end_seq)
111{
Florin Coras6792ec02017-03-13 03:49:51 -0700112 return (seq_geq (end_seq, tc->rcv_las)
113 && seq_leq (seq, tc->rcv_nxt + tc->rcv_wnd));
Dave Barach68b0fb02017-02-28 15:15:56 -0500114}
115
Florin Corasdb84e572017-05-09 18:54:52 -0700116/**
117 * Parse TCP header options.
118 *
119 * @param th TCP header
120 * @param to TCP options data structure to be populated
Florin Coras80231112018-12-05 15:59:31 -0800121 * @param is_syn set if packet is syn
Florin Corasdb84e572017-05-09 18:54:52 -0700122 * @return -1 if parsing failed
123 */
Florin Coras80231112018-12-05 15:59:31 -0800124static inline int
125tcp_options_parse (tcp_header_t * th, tcp_options_t * to, u8 is_syn)
Dave Barach68b0fb02017-02-28 15:15:56 -0500126{
127 const u8 *data;
128 u8 opt_len, opts_len, kind;
129 int j;
130 sack_block_t b;
131
132 opts_len = (tcp_doff (th) << 2) - sizeof (tcp_header_t);
133 data = (const u8 *) (th + 1);
134
135 /* Zero out all flags but those set in SYN */
Florin Corasd6fe5bd2018-10-16 19:52:10 -0700136 to->flags &= (TCP_OPTS_FLAG_SACK_PERMITTED | TCP_OPTS_FLAG_WSCALE
Florin Coras80231112018-12-05 15:59:31 -0800137 | TCP_OPTS_FLAG_TSTAMP | TCP_OPTION_MSS);
Dave Barach68b0fb02017-02-28 15:15:56 -0500138
139 for (; opts_len > 0; opts_len -= opt_len, data += opt_len)
140 {
141 kind = data[0];
142
143 /* Get options length */
144 if (kind == TCP_OPTION_EOL)
145 break;
146 else if (kind == TCP_OPTION_NOOP)
Florin Corasdb84e572017-05-09 18:54:52 -0700147 {
148 opt_len = 1;
149 continue;
150 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500151 else
152 {
153 /* broken options */
154 if (opts_len < 2)
Florin Corasdb84e572017-05-09 18:54:52 -0700155 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500156 opt_len = data[1];
157
158 /* weird option length */
159 if (opt_len < 2 || opt_len > opts_len)
Florin Corasdb84e572017-05-09 18:54:52 -0700160 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500161 }
162
163 /* Parse options */
164 switch (kind)
165 {
166 case TCP_OPTION_MSS:
Florin Coras80231112018-12-05 15:59:31 -0800167 if (!is_syn)
168 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500169 if ((opt_len == TCP_OPTION_LEN_MSS) && tcp_syn (th))
170 {
171 to->flags |= TCP_OPTS_FLAG_MSS;
172 to->mss = clib_net_to_host_u16 (*(u16 *) (data + 2));
173 }
174 break;
175 case TCP_OPTION_WINDOW_SCALE:
Florin Coras80231112018-12-05 15:59:31 -0800176 if (!is_syn)
177 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500178 if ((opt_len == TCP_OPTION_LEN_WINDOW_SCALE) && tcp_syn (th))
179 {
180 to->flags |= TCP_OPTS_FLAG_WSCALE;
181 to->wscale = data[2];
182 if (to->wscale > TCP_MAX_WND_SCALE)
Florin Corasa9d5bea2018-12-17 08:24:19 -0800183 to->wscale = TCP_MAX_WND_SCALE;
Dave Barach68b0fb02017-02-28 15:15:56 -0500184 }
185 break;
186 case TCP_OPTION_TIMESTAMP:
Florin Coras80231112018-12-05 15:59:31 -0800187 if (is_syn)
188 to->flags |= TCP_OPTS_FLAG_TSTAMP;
189 if ((to->flags & TCP_OPTS_FLAG_TSTAMP)
190 && opt_len == TCP_OPTION_LEN_TIMESTAMP)
Dave Barach68b0fb02017-02-28 15:15:56 -0500191 {
Dave Barach68b0fb02017-02-28 15:15:56 -0500192 to->tsval = clib_net_to_host_u32 (*(u32 *) (data + 2));
193 to->tsecr = clib_net_to_host_u32 (*(u32 *) (data + 6));
194 }
195 break;
196 case TCP_OPTION_SACK_PERMITTED:
Florin Coras80231112018-12-05 15:59:31 -0800197 if (!is_syn)
198 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500199 if (opt_len == TCP_OPTION_LEN_SACK_PERMITTED && tcp_syn (th))
200 to->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
201 break;
202 case TCP_OPTION_SACK_BLOCK:
203 /* If SACK permitted was not advertised or a SYN, break */
204 if ((to->flags & TCP_OPTS_FLAG_SACK_PERMITTED) == 0 || tcp_syn (th))
205 break;
206
207 /* If too short or not correctly formatted, break */
208 if (opt_len < 10 || ((opt_len - 2) % TCP_OPTION_LEN_SACK_BLOCK))
209 break;
210
211 to->flags |= TCP_OPTS_FLAG_SACK;
212 to->n_sack_blocks = (opt_len - 2) / TCP_OPTION_LEN_SACK_BLOCK;
213 vec_reset_length (to->sacks);
214 for (j = 0; j < to->n_sack_blocks; j++)
215 {
Florin Coras3eb50622017-07-13 01:24:57 -0400216 b.start = clib_net_to_host_u32 (*(u32 *) (data + 2 + 8 * j));
217 b.end = clib_net_to_host_u32 (*(u32 *) (data + 6 + 8 * j));
Dave Barach68b0fb02017-02-28 15:15:56 -0500218 vec_add1 (to->sacks, b);
219 }
220 break;
221 default:
222 /* Nothing to see here */
223 continue;
224 }
225 }
Florin Corasdb84e572017-05-09 18:54:52 -0700226 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500227}
228
Florin Corasc28764f2017-04-26 00:08:42 -0700229/**
230 * RFC1323: Check against wrapped sequence numbers (PAWS). If we have
231 * timestamp to echo and it's less than tsval_recent, drop segment
232 * but still send an ACK in order to retain TCP's mechanism for detecting
233 * and recovering from half-open connections
234 *
235 * Or at least that's what the theory says. It seems that this might not work
236 * very well with packet reordering and fast retransmit. XXX
237 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500238always_inline int
239tcp_segment_check_paws (tcp_connection_t * tc)
240{
Florin Corasea41aac2018-12-06 17:24:59 -0800241 return tcp_opts_tstamp (&tc->rcv_opts)
Florin Coras93992a92017-05-24 18:03:56 -0700242 && timestamp_lt (tc->rcv_opts.tsval, tc->tsval_recent);
Dave Barach68b0fb02017-02-28 15:15:56 -0500243}
244
245/**
Florin Corasc28764f2017-04-26 00:08:42 -0700246 * Update tsval recent
247 */
248always_inline void
249tcp_update_timestamp (tcp_connection_t * tc, u32 seq, u32 seq_end)
250{
251 /*
252 * RFC1323: If Last.ACK.sent falls within the range of sequence numbers
253 * of an incoming segment:
254 * SEG.SEQ <= Last.ACK.sent < SEG.SEQ + SEG.LEN
255 * then the TSval from the segment is copied to TS.Recent;
256 * otherwise, the TSval is ignored.
257 */
Florin Corasf1762d62017-09-24 19:43:08 -0400258 if (tcp_opts_tstamp (&tc->rcv_opts) && seq_leq (seq, tc->rcv_las)
259 && seq_leq (tc->rcv_las, seq_end))
Florin Corasc28764f2017-04-26 00:08:42 -0700260 {
Dave Barach2c25a622017-06-26 11:35:07 -0400261 ASSERT (timestamp_leq (tc->tsval_recent, tc->rcv_opts.tsval));
Florin Coras93992a92017-05-24 18:03:56 -0700262 tc->tsval_recent = tc->rcv_opts.tsval;
Florin Corasbe72ae62018-11-01 11:23:03 -0700263 tc->tsval_recent_age = tcp_time_now_w_thread (tc->c_thread_index);
Florin Corasc28764f2017-04-26 00:08:42 -0700264 }
265}
266
267/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500268 * Validate incoming segment as per RFC793 p. 69 and RFC1323 p. 19
269 *
270 * It first verifies if segment has a wrapped sequence number (PAWS) and then
271 * does the processing associated to the first four steps (ignoring security
272 * and precedence): sequence number, rst bit and syn bit checks.
273 *
274 * @return 0 if segments passes validation.
275 */
276static int
Florin Coras7ac053b2018-11-05 15:57:21 -0800277tcp_segment_validate (tcp_worker_ctx_t * wrk, tcp_connection_t * tc0,
278 vlib_buffer_t * b0, tcp_header_t * th0, u32 * error0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500279{
Florin Corasca1c8f32018-05-23 21:01:30 -0700280 /* We could get a burst of RSTs interleaved with acks */
281 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
282 {
283 tcp_send_reset (tc0);
284 *error0 = TCP_ERROR_CONNECTION_CLOSED;
Florin Coras7ac053b2018-11-05 15:57:21 -0800285 goto error;
Florin Corasca1c8f32018-05-23 21:01:30 -0700286 }
287
Dave Barach68b0fb02017-02-28 15:15:56 -0500288 if (PREDICT_FALSE (!tcp_ack (th0) && !tcp_rst (th0) && !tcp_syn (th0)))
Florin Coras00cd22d2018-04-18 13:20:18 -0700289 {
290 *error0 = TCP_ERROR_SEGMENT_INVALID;
Florin Coras7ac053b2018-11-05 15:57:21 -0800291 goto error;
Florin Coras00cd22d2018-04-18 13:20:18 -0700292 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500293
Florin Coras80231112018-12-05 15:59:31 -0800294 if (PREDICT_FALSE (tcp_options_parse (th0, &tc0->rcv_opts, 0)))
Florin Corasdb84e572017-05-09 18:54:52 -0700295 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700296 *error0 = TCP_ERROR_OPTIONS;
Florin Coras7ac053b2018-11-05 15:57:21 -0800297 goto error;
Florin Corasdb84e572017-05-09 18:54:52 -0700298 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500299
Florin Coras00cd22d2018-04-18 13:20:18 -0700300 if (PREDICT_FALSE (tcp_segment_check_paws (tc0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500301 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700302 *error0 = TCP_ERROR_PAWS;
Florin Corasc28764f2017-04-26 00:08:42 -0700303 TCP_EVT_DBG (TCP_EVT_PAWS_FAIL, tc0, vnet_buffer (b0)->tcp.seq_number,
304 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500305
306 /* If it just so happens that a segment updates tsval_recent for a
307 * segment over 24 days old, invalidate tsval_recent. */
308 if (timestamp_lt (tc0->tsval_recent_age + TCP_PAWS_IDLE,
Florin Corasbe72ae62018-11-01 11:23:03 -0700309 tcp_time_now_w_thread (tc0->c_thread_index)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500310 {
Florin Corasea41aac2018-12-06 17:24:59 -0800311 tc0->tsval_recent = tc0->rcv_opts.tsval;
Florin Coras91236ce2018-12-16 11:41:45 -0800312 clib_warning ("paws failed: 24-day old segment");
Dave Barach68b0fb02017-02-28 15:15:56 -0500313 }
Florin Coras91236ce2018-12-16 11:41:45 -0800314 /* Drop after ack if not rst. Resets can fail paws check as per
315 * RFC 7323 sec. 5.2: When an <RST> segment is received, it MUST NOT
316 * be subjected to the PAWS check by verifying an acceptable value in
317 * SEG.TSval */
318 else if (!tcp_rst (th0))
Dave Barach68b0fb02017-02-28 15:15:56 -0500319 {
Florin Coras91236ce2018-12-16 11:41:45 -0800320 tcp_program_ack (wrk, tc0);
321 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
322 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500323 }
324 }
325
326 /* 1st: check sequence number */
327 if (!tcp_segment_in_rcv_wnd (tc0, vnet_buffer (b0)->tcp.seq_number,
328 vnet_buffer (b0)->tcp.seq_end))
329 {
Florin Coras830fe732019-02-15 18:20:58 -0800330 /* SYN/SYN-ACK retransmit */
331 if (tcp_syn (th0)
332 && vnet_buffer (b0)->tcp.seq_number == tc0->rcv_nxt - 1)
333 {
334 tcp_options_parse (th0, &tc0->rcv_opts, 1);
335 if (tc0->state == TCP_STATE_SYN_RCVD)
336 {
337 tcp_send_synack (tc0);
338 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, tc0, 0);
339 *error0 = TCP_ERROR_SYNS_RCVD;
340 }
341 else
342 {
343 tcp_program_ack (wrk, tc0);
344 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, tc0);
345 *error0 = TCP_ERROR_SYN_ACKS_RCVD;
346 }
347 goto error;
348 }
349
Florin Coras6792ec02017-03-13 03:49:51 -0700350 /* If our window is 0 and the packet is in sequence, let it pass
Florin Coras00cd22d2018-04-18 13:20:18 -0700351 * through for ack processing. It should be dropped later. */
Florin Coras7e74bf32019-03-06 16:51:58 -0800352 if (tc0->rcv_wnd < tc0->snd_mss
Florin Coras222e1f412019-02-16 20:47:32 -0800353 && tc0->rcv_nxt == vnet_buffer (b0)->tcp.seq_number)
354 goto check_reset;
355
356 /* If we entered recovery and peer did so as well, there's a chance that
357 * dup acks won't be acceptable on either end because seq_end may be less
358 * than rcv_las. This can happen if acks are lost in both directions. */
359 if (tcp_in_recovery (tc0)
360 && seq_geq (vnet_buffer (b0)->tcp.seq_number,
361 tc0->rcv_las - tc0->rcv_wnd)
362 && seq_leq (vnet_buffer (b0)->tcp.seq_end,
363 tc0->rcv_nxt + tc0->rcv_wnd))
364 goto check_reset;
365
366 *error0 = TCP_ERROR_RCV_WND;
367
368 /* If not RST, send dup ack */
369 if (!tcp_rst (th0))
Florin Coras6792ec02017-03-13 03:49:51 -0700370 {
Florin Coras222e1f412019-02-16 20:47:32 -0800371 tcp_program_dupack (wrk, tc0);
372 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
Florin Coras6792ec02017-03-13 03:49:51 -0700373 }
Florin Coras222e1f412019-02-16 20:47:32 -0800374 goto error;
375
376 check_reset:
377 ;
Dave Barach68b0fb02017-02-28 15:15:56 -0500378 }
379
380 /* 2nd: check the RST bit */
Florin Coras00cd22d2018-04-18 13:20:18 -0700381 if (PREDICT_FALSE (tcp_rst (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500382 {
Florin Corasd79b41e2017-03-04 05:37:52 -0800383 tcp_connection_reset (tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -0700384 *error0 = TCP_ERROR_RST_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -0800385 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500386 }
387
388 /* 3rd: check security and precedence (skip) */
389
Florin Coras830fe732019-02-15 18:20:58 -0800390 /* 4th: check the SYN bit (in window) */
Florin Coras00cd22d2018-04-18 13:20:18 -0700391 if (PREDICT_FALSE (tcp_syn (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500392 {
Florin Coras830fe732019-02-15 18:20:58 -0800393 *error0 = TCP_ERROR_SPURIOUS_SYN;
394 tcp_send_reset (tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -0700395 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500396 }
397
Florin Corasc28764f2017-04-26 00:08:42 -0700398 /* If segment in window, save timestamp */
399 tcp_update_timestamp (tc0, vnet_buffer (b0)->tcp.seq_number,
400 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500401 return 0;
Florin Coras00cd22d2018-04-18 13:20:18 -0700402
Florin Coras00cd22d2018-04-18 13:20:18 -0700403error:
Florin Coras00cd22d2018-04-18 13:20:18 -0700404 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500405}
406
407always_inline int
408tcp_rcv_ack_is_acceptable (tcp_connection_t * tc0, vlib_buffer_t * tb0)
409{
410 /* SND.UNA =< SEG.ACK =< SND.NXT */
411 return (seq_leq (tc0->snd_una, vnet_buffer (tb0)->tcp.ack_number)
412 && seq_leq (vnet_buffer (tb0)->tcp.ack_number, tc0->snd_nxt));
413}
414
415/**
416 * Compute smoothed RTT as per VJ's '88 SIGCOMM and RFC6298
417 *
418 * Note that although the original article, srtt and rttvar are scaled
419 * to minimize round-off errors, here we don't. Instead, we rely on
420 * better precision time measurements.
421 *
422 * TODO support us rtt resolution
423 */
424static void
425tcp_estimate_rtt (tcp_connection_t * tc, u32 mrtt)
426{
Florin Corasf03a59a2017-06-09 21:07:32 -0700427 int err, diff;
Dave Barach68b0fb02017-02-28 15:15:56 -0500428
429 if (tc->srtt != 0)
430 {
431 err = mrtt - tc->srtt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500432
433 /* XXX Drop in RTT results in RTTVAR increase and bigger RTO.
434 * The increase should be bound */
Florin Corasf03a59a2017-06-09 21:07:32 -0700435 tc->srtt = clib_max ((int) tc->srtt + (err >> 3), 1);
436 diff = (clib_abs (err) - (int) tc->rttvar) >> 2;
437 tc->rttvar = clib_max ((int) tc->rttvar + diff, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500438 }
439 else
440 {
441 /* First measurement. */
442 tc->srtt = mrtt;
Florin Coras6792ec02017-03-13 03:49:51 -0700443 tc->rttvar = mrtt >> 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500444 }
445}
446
Filip Tehlare275bed2019-03-06 00:06:56 -0800447#ifndef CLIB_MARCH_VARIANT
Florin Coras93992a92017-05-24 18:03:56 -0700448void
449tcp_update_rto (tcp_connection_t * tc)
450{
451 tc->rto = clib_min (tc->srtt + (tc->rttvar << 2), TCP_RTO_MAX);
Florin Corasf03a59a2017-06-09 21:07:32 -0700452 tc->rto = clib_max (tc->rto, TCP_RTO_MIN);
Florin Coras93992a92017-05-24 18:03:56 -0700453}
Filip Tehlare275bed2019-03-06 00:06:56 -0800454#endif /* CLIB_MARCH_VARIANT */
Florin Coras93992a92017-05-24 18:03:56 -0700455
Florin Corasf1762d62017-09-24 19:43:08 -0400456/**
457 * Update RTT estimate and RTO timer
Dave Barach68b0fb02017-02-28 15:15:56 -0500458 *
459 * Measure RTT: We have two sources of RTT measurements: TSOPT and ACK
460 * timing. Middle boxes are known to fiddle with TCP options so we
461 * should give higher priority to ACK timing.
462 *
Florin Corasf1762d62017-09-24 19:43:08 -0400463 * This should be called only if previously sent bytes have been acked.
464 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500465 * return 1 if valid rtt 0 otherwise
466 */
467static int
468tcp_update_rtt (tcp_connection_t * tc, u32 ack)
469{
470 u32 mrtt = 0;
471
472 /* Karn's rule, part 1. Don't use retransmitted segments to estimate
473 * RTT because they're ambiguous. */
Florin Corasf1762d62017-09-24 19:43:08 -0400474 if (tcp_in_cong_recovery (tc) || tc->sack_sb.sacked_bytes)
Florin Coras3ec66b02018-08-23 16:27:05 -0700475 {
476 if (tcp_in_recovery (tc))
477 return 0;
478 goto done;
479 }
Florin Corasf1762d62017-09-24 19:43:08 -0400480
481 if (tc->rtt_ts && seq_geq (ack, tc->rtt_seq))
Dave Barach68b0fb02017-02-28 15:15:56 -0500482 {
Florin Corasefefc6b2018-11-07 12:49:19 -0800483 f64 sample = tcp_time_now_us (tc->c_thread_index) - tc->rtt_ts;
484 tc->mrtt_us = tc->mrtt_us + (sample - tc->mrtt_us) * 0.125;
485 mrtt = clib_max ((u32) (sample * THZ), 1);
486 /* Allow measuring of a new RTT */
487 tc->rtt_ts = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500488 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500489 /* As per RFC7323 TSecr can be used for RTTM only if the segment advances
490 * snd_una, i.e., the left side of the send window:
Florin Corasf1762d62017-09-24 19:43:08 -0400491 * seq_lt (tc->snd_una, ack). This is a condition for calling update_rtt */
492 else if (tcp_opts_tstamp (&tc->rcv_opts) && tc->rcv_opts.tsecr)
Dave Barach68b0fb02017-02-28 15:15:56 -0500493 {
Florin Corasbe72ae62018-11-01 11:23:03 -0700494 u32 now = tcp_time_now_w_thread (tc->c_thread_index);
495 mrtt = clib_max (now - tc->rcv_opts.tsecr, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500496 }
497
Florin Corasf1762d62017-09-24 19:43:08 -0400498 /* Ignore dubious measurements */
499 if (mrtt == 0 || mrtt > TCP_RTT_MAX)
500 goto done;
501
502 tcp_estimate_rtt (tc, mrtt);
503
504done:
505
Florin Corasf1762d62017-09-24 19:43:08 -0400506 /* If we got here something must've been ACKed so make sure boff is 0,
Florin Coras3ec66b02018-08-23 16:27:05 -0700507 * even if mrtt is not valid since we update the rto lower */
Florin Corasf1762d62017-09-24 19:43:08 -0400508 tc->rto_boff = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700509 tcp_update_rto (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500510
Florin Coras3af90fc2017-05-03 21:09:42 -0700511 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500512}
513
Florin Corasefefc6b2018-11-07 12:49:19 -0800514static void
515tcp_estimate_initial_rtt (tcp_connection_t * tc)
516{
517 u8 thread_index = vlib_num_workers ()? 1 : 0;
518 int mrtt;
519
520 if (tc->rtt_ts)
521 {
522 tc->mrtt_us = tcp_time_now_us (thread_index) - tc->rtt_ts;
Florin Coras222e1f412019-02-16 20:47:32 -0800523 tc->mrtt_us = clib_max (tc->mrtt_us, 0.0001);
Florin Corasefefc6b2018-11-07 12:49:19 -0800524 mrtt = clib_max ((u32) (tc->mrtt_us * THZ), 1);
525 tc->rtt_ts = 0;
526 }
527 else
528 {
529 mrtt = tcp_time_now_w_thread (thread_index) - tc->rcv_opts.tsecr;
Florin Coras4af830c2018-12-04 09:21:36 -0800530 mrtt = clib_max (mrtt, 1);
Florin Coras222e1f412019-02-16 20:47:32 -0800531 /* Due to retransmits we don't know the initial mrtt */
532 if (tc->rto_boff && mrtt > 1 * THZ)
533 mrtt = 1 * THZ;
Florin Corasefefc6b2018-11-07 12:49:19 -0800534 tc->mrtt_us = (f64) mrtt *TCP_TICK;
Florin Corasefefc6b2018-11-07 12:49:19 -0800535 }
536
537 if (mrtt > 0 && mrtt < TCP_RTT_MAX)
538 tcp_estimate_rtt (tc, mrtt);
Florin Coras54ddf432018-12-21 13:54:09 -0800539 tcp_update_rto (tc);
Florin Corasefefc6b2018-11-07 12:49:19 -0800540}
541
Dave Barach68b0fb02017-02-28 15:15:56 -0500542/**
Florin Coras9ece3c02018-11-05 11:06:53 -0800543 * Dequeue bytes for connections that have received acks in last burst
Dave Barach68b0fb02017-02-28 15:15:56 -0500544 */
545static void
Florin Coras9ece3c02018-11-05 11:06:53 -0800546tcp_handle_postponed_dequeues (tcp_worker_ctx_t * wrk)
Dave Barach68b0fb02017-02-28 15:15:56 -0500547{
Florin Coras9ece3c02018-11-05 11:06:53 -0800548 u32 thread_index = wrk->vm->thread_index;
549 u32 *pending_deq_acked;
550 tcp_connection_t *tc;
551 int i;
Florin Coras93992a92017-05-24 18:03:56 -0700552
Florin Coras9ece3c02018-11-05 11:06:53 -0800553 if (!vec_len (wrk->pending_deq_acked))
554 return;
Dave Barach68b0fb02017-02-28 15:15:56 -0500555
Florin Coras9ece3c02018-11-05 11:06:53 -0800556 pending_deq_acked = wrk->pending_deq_acked;
557 for (i = 0; i < vec_len (pending_deq_acked); i++)
558 {
559 tc = tcp_connection_get (pending_deq_acked[i], thread_index);
560 tc->flags &= ~TCP_CONN_DEQ_PENDING;
Florin Coras93992a92017-05-24 18:03:56 -0700561
Florin Corasefefc6b2018-11-07 12:49:19 -0800562 if (PREDICT_FALSE (!tc->burst_acked))
563 continue;
564
Florin Coras9ece3c02018-11-05 11:06:53 -0800565 /* Dequeue the newly ACKed bytes */
Florin Coras31c99552019-03-01 13:00:58 -0800566 session_tx_fifo_dequeue_drop (&tc->connection, tc->burst_acked);
Florin Coras9ece3c02018-11-05 11:06:53 -0800567 tc->burst_acked = 0;
568 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
569
Florin Coras42ceddb2018-12-12 10:56:01 -0800570 if (PREDICT_FALSE (tc->flags & TCP_CONN_PSH_PENDING))
571 {
572 if (seq_leq (tc->psh_seq, tc->snd_una))
573 tc->flags &= ~TCP_CONN_PSH_PENDING;
574 }
575
Florin Coras9ece3c02018-11-05 11:06:53 -0800576 /* If everything has been acked, stop retransmit timer
577 * otherwise update. */
578 tcp_retransmit_timer_update (tc);
Florin Corasefefc6b2018-11-07 12:49:19 -0800579
580 /* If not congested, update pacer based on our new
581 * cwnd estimate */
582 if (!tcp_in_fastrecovery (tc))
583 tcp_connection_tx_pacer_update (tc);
Florin Coras9ece3c02018-11-05 11:06:53 -0800584 }
585 _vec_len (wrk->pending_deq_acked) = 0;
586}
587
588static void
589tcp_program_dequeue (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
590{
591 if (!(tc->flags & TCP_CONN_DEQ_PENDING))
592 {
593 vec_add1 (wrk->pending_deq_acked, tc->c_c_index);
594 tc->flags |= TCP_CONN_DEQ_PENDING;
595 }
596 tc->burst_acked += tc->bytes_acked + tc->sack_sb.snd_una_adv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500597}
598
Florin Coras6792ec02017-03-13 03:49:51 -0700599/**
Florin Coras93992a92017-05-24 18:03:56 -0700600 * Check if duplicate ack as per RFC5681 Sec. 2
601 */
602static u8
603tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd,
604 u32 prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500605{
Florin Coras93992a92017-05-24 18:03:56 -0700606 return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500607 && seq_gt (tc->snd_una_max, tc->snd_una)
608 && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
Florin Coras93992a92017-05-24 18:03:56 -0700609 && (prev_snd_wnd == tc->snd_wnd));
610}
611
612/**
613 * Checks if ack is a congestion control event.
614 */
615static u8
616tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b,
617 u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
618{
619 /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
620 * defined to be 'duplicate' */
621 *is_dack = tc->sack_sb.last_sacked_bytes
622 || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
623
Dave Barach2c25a622017-06-26 11:35:07 -0400624 return ((*is_dack || tcp_in_cong_recovery (tc)) && !tcp_is_lost_fin (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -0500625}
626
Filip Tehlare275bed2019-03-06 00:06:56 -0800627#ifndef CLIB_MARCH_VARIANT
Florin Coras0dbd5172018-06-25 16:19:34 -0700628static u32
629scoreboard_hole_index (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
630{
631 ASSERT (!pool_is_free_index (sb->holes, hole - sb->holes));
632 return hole - sb->holes;
633}
634
635static u32
636scoreboard_hole_bytes (sack_scoreboard_hole_t * hole)
637{
638 return hole->end - hole->start;
639}
640
641sack_scoreboard_hole_t *
642scoreboard_get_hole (sack_scoreboard_t * sb, u32 index)
643{
644 if (index != TCP_INVALID_SACK_HOLE_INDEX)
645 return pool_elt_at_index (sb->holes, index);
646 return 0;
647}
648
649sack_scoreboard_hole_t *
650scoreboard_next_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
651{
652 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
653 return pool_elt_at_index (sb->holes, hole->next);
654 return 0;
655}
656
657sack_scoreboard_hole_t *
658scoreboard_prev_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
659{
660 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
661 return pool_elt_at_index (sb->holes, hole->prev);
662 return 0;
663}
664
665sack_scoreboard_hole_t *
666scoreboard_first_hole (sack_scoreboard_t * sb)
667{
668 if (sb->head != TCP_INVALID_SACK_HOLE_INDEX)
669 return pool_elt_at_index (sb->holes, sb->head);
670 return 0;
671}
672
673sack_scoreboard_hole_t *
674scoreboard_last_hole (sack_scoreboard_t * sb)
675{
676 if (sb->tail != TCP_INVALID_SACK_HOLE_INDEX)
677 return pool_elt_at_index (sb->holes, sb->tail);
678 return 0;
679}
680
681static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500682scoreboard_remove_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
683{
684 sack_scoreboard_hole_t *next, *prev;
685
686 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
687 {
688 next = pool_elt_at_index (sb->holes, hole->next);
689 next->prev = hole->prev;
690 }
Florin Coras93992a92017-05-24 18:03:56 -0700691 else
692 {
693 sb->tail = hole->prev;
694 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500695
696 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
697 {
698 prev = pool_elt_at_index (sb->holes, hole->prev);
699 prev->next = hole->next;
700 }
701 else
702 {
703 sb->head = hole->next;
704 }
705
Florin Coras93992a92017-05-24 18:03:56 -0700706 if (scoreboard_hole_index (sb, hole) == sb->cur_rxt_hole)
707 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
708
Florin Coras3eb50622017-07-13 01:24:57 -0400709 /* Poison the entry */
710 if (CLIB_DEBUG > 0)
Dave Barachb7b92992018-10-17 10:38:51 -0400711 clib_memset (hole, 0xfe, sizeof (*hole));
Florin Coras3eb50622017-07-13 01:24:57 -0400712
Dave Barach68b0fb02017-02-28 15:15:56 -0500713 pool_put (sb->holes, hole);
714}
715
Florin Coras0dbd5172018-06-25 16:19:34 -0700716static sack_scoreboard_hole_t *
Florin Coras6792ec02017-03-13 03:49:51 -0700717scoreboard_insert_hole (sack_scoreboard_t * sb, u32 prev_index,
Dave Barach68b0fb02017-02-28 15:15:56 -0500718 u32 start, u32 end)
719{
Florin Coras6792ec02017-03-13 03:49:51 -0700720 sack_scoreboard_hole_t *hole, *next, *prev;
Dave Barach68b0fb02017-02-28 15:15:56 -0500721 u32 hole_index;
722
723 pool_get (sb->holes, hole);
Dave Barachb7b92992018-10-17 10:38:51 -0400724 clib_memset (hole, 0, sizeof (*hole));
Dave Barach68b0fb02017-02-28 15:15:56 -0500725
726 hole->start = start;
727 hole->end = end;
Florin Coras3eb50622017-07-13 01:24:57 -0400728 hole_index = scoreboard_hole_index (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500729
Florin Coras6792ec02017-03-13 03:49:51 -0700730 prev = scoreboard_get_hole (sb, prev_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500731 if (prev)
732 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700733 hole->prev = prev_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500734 hole->next = prev->next;
735
736 if ((next = scoreboard_next_hole (sb, hole)))
737 next->prev = hole_index;
Florin Corasf03a59a2017-06-09 21:07:32 -0700738 else
739 sb->tail = hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500740
741 prev->next = hole_index;
742 }
743 else
744 {
745 sb->head = hole_index;
746 hole->prev = TCP_INVALID_SACK_HOLE_INDEX;
747 hole->next = TCP_INVALID_SACK_HOLE_INDEX;
748 }
749
750 return hole;
751}
Filip Tehlare275bed2019-03-06 00:06:56 -0800752#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -0500753
Filip Tehlare275bed2019-03-06 00:06:56 -0800754#ifndef CLIB_MARCH_VARIANT
Florin Coras0dbd5172018-06-25 16:19:34 -0700755static void
Florin Corasf03a59a2017-06-09 21:07:32 -0700756scoreboard_update_bytes (tcp_connection_t * tc, sack_scoreboard_t * sb)
Florin Coras93992a92017-05-24 18:03:56 -0700757{
Florin Corasecbd20b2018-10-17 23:34:54 -0700758 sack_scoreboard_hole_t *left, *right;
Florin Coras93992a92017-05-24 18:03:56 -0700759 u32 bytes = 0, blks = 0;
760
761 sb->lost_bytes = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700762 sb->sacked_bytes = 0;
Florin Corasecbd20b2018-10-17 23:34:54 -0700763 left = scoreboard_last_hole (sb);
764 if (!left)
Florin Coras93992a92017-05-24 18:03:56 -0700765 return;
766
Florin Corasecbd20b2018-10-17 23:34:54 -0700767 if (seq_gt (sb->high_sacked, left->end))
Florin Coras93992a92017-05-24 18:03:56 -0700768 {
Florin Corasecbd20b2018-10-17 23:34:54 -0700769 bytes = sb->high_sacked - left->end;
Florin Coras93992a92017-05-24 18:03:56 -0700770 blks = 1;
771 }
772
Florin Coras9f9e9692018-10-19 17:49:00 -0700773 while ((right = left)
774 && bytes < (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
775 && blks < TCP_DUPACK_THRESHOLD
776 /* left not updated if above conditions fail */
777 && (left = scoreboard_prev_hole (sb, right)))
Florin Coras93992a92017-05-24 18:03:56 -0700778 {
Florin Corasecbd20b2018-10-17 23:34:54 -0700779 bytes += right->start - left->end;
Florin Coras93992a92017-05-24 18:03:56 -0700780 blks++;
Florin Coras93992a92017-05-24 18:03:56 -0700781 }
782
Florin Coras9f9e9692018-10-19 17:49:00 -0700783 /* left is first lost */
784 if (left)
Florin Coras93992a92017-05-24 18:03:56 -0700785 {
Florin Coras9f9e9692018-10-19 17:49:00 -0700786 do
787 {
788 sb->lost_bytes += scoreboard_hole_bytes (right);
789 left->is_lost = 1;
790 left = scoreboard_prev_hole (sb, right);
791 if (left)
792 bytes += right->start - left->end;
793 }
794 while ((right = left));
Florin Coras93992a92017-05-24 18:03:56 -0700795 }
Florin Coras9f9e9692018-10-19 17:49:00 -0700796
Florin Corasf03a59a2017-06-09 21:07:32 -0700797 sb->sacked_bytes = bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700798}
799
800/**
801 * Figure out the next hole to retransmit
802 *
803 * Follows logic proposed in RFC6675 Sec. 4, NextSeg()
804 */
805sack_scoreboard_hole_t *
806scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
807 sack_scoreboard_hole_t * start,
Florin Coras36ee9f12018-11-02 12:52:10 -0700808 u8 have_unsent, u8 * can_rescue, u8 * snd_limited)
Florin Coras93992a92017-05-24 18:03:56 -0700809{
810 sack_scoreboard_hole_t *hole = 0;
811
812 hole = start ? start : scoreboard_first_hole (sb);
813 while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost)
814 hole = scoreboard_next_hole (sb, hole);
815
816 /* Nothing, return */
817 if (!hole)
818 {
819 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
820 return 0;
821 }
822
823 /* Rule (1): if higher than rxt, less than high_sacked and lost */
824 if (hole->is_lost && seq_lt (hole->start, sb->high_sacked))
825 {
826 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
827 }
828 else
829 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700830 /* Rule (2): available unsent data */
831 if (have_unsent)
Florin Coras93992a92017-05-24 18:03:56 -0700832 {
Florin Coras93992a92017-05-24 18:03:56 -0700833 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
Florin Coras36ee9f12018-11-02 12:52:10 -0700834 return 0;
Florin Coras93992a92017-05-24 18:03:56 -0700835 }
836 /* Rule (3): if hole not lost */
837 else if (seq_lt (hole->start, sb->high_sacked))
838 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700839 *snd_limited = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700840 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
841 }
842 /* Rule (4): if hole beyond high_sacked */
843 else
844 {
845 ASSERT (seq_geq (hole->start, sb->high_sacked));
846 *snd_limited = 1;
847 *can_rescue = 1;
848 /* HighRxt MUST NOT be updated */
849 return 0;
850 }
851 }
852
853 if (hole && seq_lt (sb->high_rxt, hole->start))
854 sb->high_rxt = hole->start;
855
856 return hole;
857}
Filip Tehlare275bed2019-03-06 00:06:56 -0800858#endif /* CLIB_MARCH_VARIANT */
Florin Coras93992a92017-05-24 18:03:56 -0700859
Florin Coras0dbd5172018-06-25 16:19:34 -0700860static void
Florin Coras36ee9f12018-11-02 12:52:10 -0700861scoreboard_init_high_rxt (sack_scoreboard_t * sb, u32 snd_una)
Florin Coras93992a92017-05-24 18:03:56 -0700862{
863 sack_scoreboard_hole_t *hole;
864 hole = scoreboard_first_hole (sb);
Florin Coras3eb50622017-07-13 01:24:57 -0400865 if (hole)
866 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700867 snd_una = seq_gt (snd_una, hole->start) ? snd_una : hole->start;
Florin Coras3eb50622017-07-13 01:24:57 -0400868 sb->cur_rxt_hole = sb->head;
869 }
Florin Coras36ee9f12018-11-02 12:52:10 -0700870 sb->high_rxt = snd_una;
871 sb->rescue_rxt = snd_una - 1;
Florin Coras3eb50622017-07-13 01:24:57 -0400872}
873
Filip Tehlare275bed2019-03-06 00:06:56 -0800874#ifndef CLIB_MARCH_VARIANT
Florin Coras0dbd5172018-06-25 16:19:34 -0700875void
876scoreboard_init (sack_scoreboard_t * sb)
877{
878 sb->head = TCP_INVALID_SACK_HOLE_INDEX;
879 sb->tail = TCP_INVALID_SACK_HOLE_INDEX;
880 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
881}
882
883void
884scoreboard_clear (sack_scoreboard_t * sb)
885{
886 sack_scoreboard_hole_t *hole;
887 while ((hole = scoreboard_first_hole (sb)))
888 {
889 scoreboard_remove_hole (sb, hole);
890 }
891 ASSERT (sb->head == sb->tail && sb->head == TCP_INVALID_SACK_HOLE_INDEX);
892 ASSERT (pool_elts (sb->holes) == 0);
893 sb->sacked_bytes = 0;
894 sb->last_sacked_bytes = 0;
895 sb->last_bytes_delivered = 0;
896 sb->snd_una_adv = 0;
897 sb->high_sacked = 0;
898 sb->high_rxt = 0;
899 sb->lost_bytes = 0;
900 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
901}
Filip Tehlare275bed2019-03-06 00:06:56 -0800902#endif /* CLIB_MARCH_VARIANT */
Florin Coras0dbd5172018-06-25 16:19:34 -0700903
Florin Coras3eb50622017-07-13 01:24:57 -0400904/**
905 * Test that scoreboard is sane after recovery
906 *
907 * Returns 1 if scoreboard is empty or if first hole beyond
908 * snd_una.
909 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700910static u8
Florin Coras3eb50622017-07-13 01:24:57 -0400911tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc)
912{
913 sack_scoreboard_hole_t *hole;
914 hole = scoreboard_first_hole (&tc->sack_sb);
Florin Corasecbd20b2018-10-17 23:34:54 -0700915 return (!hole || (seq_geq (hole->start, tc->snd_una)
916 && seq_lt (hole->end, tc->snd_una_max)));
Florin Coras93992a92017-05-24 18:03:56 -0700917}
918
Filip Tehlare275bed2019-03-06 00:06:56 -0800919#ifndef CLIB_MARCH_VARIANT
Florin Coras93992a92017-05-24 18:03:56 -0700920void
Dave Barach68b0fb02017-02-28 15:15:56 -0500921tcp_rcv_sacks (tcp_connection_t * tc, u32 ack)
922{
923 sack_scoreboard_t *sb = &tc->sack_sb;
924 sack_block_t *blk, tmp;
Florin Corasf03a59a2017-06-09 21:07:32 -0700925 sack_scoreboard_hole_t *hole, *next_hole, *last_hole;
Florin Coras93992a92017-05-24 18:03:56 -0700926 u32 blk_index = 0, old_sacked_bytes, hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500927 int i, j;
928
Florin Coras6792ec02017-03-13 03:49:51 -0700929 sb->last_sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700930 sb->last_bytes_delivered = 0;
Florin Coras352c2c42018-06-26 01:22:41 -0700931 sb->snd_una_adv = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700932
Florin Coras93992a92017-05-24 18:03:56 -0700933 if (!tcp_opts_sack (&tc->rcv_opts)
934 && sb->head == TCP_INVALID_SACK_HOLE_INDEX)
Dave Barach68b0fb02017-02-28 15:15:56 -0500935 return;
936
Florin Coras352c2c42018-06-26 01:22:41 -0700937 old_sacked_bytes = sb->sacked_bytes;
938
Dave Barach68b0fb02017-02-28 15:15:56 -0500939 /* Remove invalid blocks */
Florin Coras93992a92017-05-24 18:03:56 -0700940 blk = tc->rcv_opts.sacks;
941 while (blk < vec_end (tc->rcv_opts.sacks))
Florin Coras6792ec02017-03-13 03:49:51 -0700942 {
943 if (seq_lt (blk->start, blk->end)
944 && seq_gt (blk->start, tc->snd_una)
Florin Corasab86f862018-12-06 18:24:19 -0800945 && seq_gt (blk->start, ack)
946 && seq_lt (blk->start, tc->snd_una_max)
947 && seq_leq (blk->end, tc->snd_una_max))
Florin Coras6792ec02017-03-13 03:49:51 -0700948 {
949 blk++;
950 continue;
951 }
Florin Coras93992a92017-05-24 18:03:56 -0700952 vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks);
Florin Coras6792ec02017-03-13 03:49:51 -0700953 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500954
955 /* Add block for cumulative ack */
956 if (seq_gt (ack, tc->snd_una))
957 {
958 tmp.start = tc->snd_una;
959 tmp.end = ack;
Florin Coras93992a92017-05-24 18:03:56 -0700960 vec_add1 (tc->rcv_opts.sacks, tmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500961 }
962
Florin Coras93992a92017-05-24 18:03:56 -0700963 if (vec_len (tc->rcv_opts.sacks) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500964 return;
965
Florin Coras3eb50622017-07-13 01:24:57 -0400966 tcp_scoreboard_trace_add (tc, ack);
967
Dave Barach68b0fb02017-02-28 15:15:56 -0500968 /* Make sure blocks are ordered */
Florin Coras93992a92017-05-24 18:03:56 -0700969 for (i = 0; i < vec_len (tc->rcv_opts.sacks); i++)
970 for (j = i + 1; j < vec_len (tc->rcv_opts.sacks); j++)
971 if (seq_lt (tc->rcv_opts.sacks[j].start, tc->rcv_opts.sacks[i].start))
Dave Barach68b0fb02017-02-28 15:15:56 -0500972 {
Florin Coras93992a92017-05-24 18:03:56 -0700973 tmp = tc->rcv_opts.sacks[i];
974 tc->rcv_opts.sacks[i] = tc->rcv_opts.sacks[j];
975 tc->rcv_opts.sacks[j] = tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500976 }
977
Dave Barach68b0fb02017-02-28 15:15:56 -0500978 if (sb->head == TCP_INVALID_SACK_HOLE_INDEX)
979 {
Florin Coras6792ec02017-03-13 03:49:51 -0700980 /* If no holes, insert the first that covers all outstanding bytes */
981 last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
982 tc->snd_una, tc->snd_una_max);
983 sb->tail = scoreboard_hole_index (sb, last_hole);
Florin Coras93992a92017-05-24 18:03:56 -0700984 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
985 sb->high_sacked = tmp.end;
Florin Coras6792ec02017-03-13 03:49:51 -0700986 }
987 else
988 {
989 /* If we have holes but snd_una_max is beyond the last hole, update
990 * last hole end */
Florin Coras93992a92017-05-24 18:03:56 -0700991 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
Florin Coras6792ec02017-03-13 03:49:51 -0700992 last_hole = scoreboard_last_hole (sb);
Dave Barach2c25a622017-06-26 11:35:07 -0400993 if (seq_gt (tc->snd_una_max, last_hole->end))
994 {
995 if (seq_geq (last_hole->start, sb->high_sacked))
996 {
997 last_hole->end = tc->snd_una_max;
998 }
999 /* New hole after high sacked block */
1000 else if (seq_lt (sb->high_sacked, tc->snd_una_max))
1001 {
1002 scoreboard_insert_hole (sb, sb->tail, sb->high_sacked,
1003 tc->snd_una_max);
1004 }
1005 }
1006 /* Keep track of max byte sacked for when the last hole
Florin Corasf03a59a2017-06-09 21:07:32 -07001007 * is acked */
1008 if (seq_gt (tmp.end, sb->high_sacked))
1009 sb->high_sacked = tmp.end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001010 }
1011
1012 /* Walk the holes with the SACK blocks */
1013 hole = pool_elt_at_index (sb->holes, sb->head);
Florin Coras93992a92017-05-24 18:03:56 -07001014 while (hole && blk_index < vec_len (tc->rcv_opts.sacks))
Dave Barach68b0fb02017-02-28 15:15:56 -05001015 {
Florin Coras93992a92017-05-24 18:03:56 -07001016 blk = &tc->rcv_opts.sacks[blk_index];
Dave Barach68b0fb02017-02-28 15:15:56 -05001017 if (seq_leq (blk->start, hole->start))
1018 {
1019 /* Block covers hole. Remove hole */
1020 if (seq_geq (blk->end, hole->end))
1021 {
1022 next_hole = scoreboard_next_hole (sb, hole);
1023
Florin Corasf03a59a2017-06-09 21:07:32 -07001024 /* Byte accounting: snd_una needs to be advanced */
1025 if (blk->end == ack)
Dave Barach68b0fb02017-02-28 15:15:56 -05001026 {
Florin Corasf03a59a2017-06-09 21:07:32 -07001027 if (next_hole)
Florin Coras06d11012017-05-17 14:21:51 -07001028 {
Florin Corasf03a59a2017-06-09 21:07:32 -07001029 if (seq_lt (ack, next_hole->start))
1030 sb->snd_una_adv = next_hole->start - ack;
1031 sb->last_bytes_delivered +=
1032 next_hole->start - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -07001033 }
Florin Coras3eb50622017-07-13 01:24:57 -04001034 else
Florin Coras06d11012017-05-17 14:21:51 -07001035 {
Dave Barach2c25a622017-06-26 11:35:07 -04001036 ASSERT (seq_geq (sb->high_sacked, ack));
Florin Coras93992a92017-05-24 18:03:56 -07001037 sb->snd_una_adv = sb->high_sacked - ack;
Florin Corasf03a59a2017-06-09 21:07:32 -07001038 sb->last_bytes_delivered += sb->high_sacked - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -07001039 }
1040 }
1041
Dave Barach68b0fb02017-02-28 15:15:56 -05001042 scoreboard_remove_hole (sb, hole);
1043 hole = next_hole;
1044 }
Florin Coras6792ec02017-03-13 03:49:51 -07001045 /* Partial 'head' overlap */
Dave Barach68b0fb02017-02-28 15:15:56 -05001046 else
1047 {
Florin Coras6792ec02017-03-13 03:49:51 -07001048 if (seq_gt (blk->end, hole->start))
1049 {
Florin Coras6792ec02017-03-13 03:49:51 -07001050 hole->start = blk->end;
1051 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001052 blk_index++;
1053 }
1054 }
1055 else
1056 {
1057 /* Hole must be split */
Florin Coras6792ec02017-03-13 03:49:51 -07001058 if (seq_lt (blk->end, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001059 {
Florin Coras6792ec02017-03-13 03:49:51 -07001060 hole_index = scoreboard_hole_index (sb, hole);
Florin Coras3eb50622017-07-13 01:24:57 -04001061 next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
1062 hole->end);
Florin Coras6792ec02017-03-13 03:49:51 -07001063
1064 /* Pool might've moved */
1065 hole = scoreboard_get_hole (sb, hole_index);
1066 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -05001067 blk_index++;
Florin Coras3eb50622017-07-13 01:24:57 -04001068 ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
Dave Barach68b0fb02017-02-28 15:15:56 -05001069 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001070 else if (seq_lt (blk->start, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001071 {
Florin Coras6792ec02017-03-13 03:49:51 -07001072 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -05001073 }
Florin Coras93992a92017-05-24 18:03:56 -07001074 hole = scoreboard_next_hole (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -05001075 }
1076 }
Florin Coras6792ec02017-03-13 03:49:51 -07001077
Florin Corasecbd20b2018-10-17 23:34:54 -07001078 if (pool_elts (sb->holes) == 1)
1079 {
1080 hole = scoreboard_first_hole (sb);
1081 if (hole->start == ack + sb->snd_una_adv
1082 && hole->end == tc->snd_una_max)
1083 scoreboard_remove_hole (sb, hole);
1084 }
1085
Florin Corasf03a59a2017-06-09 21:07:32 -07001086 scoreboard_update_bytes (tc, sb);
1087 sb->last_sacked_bytes = sb->sacked_bytes
1088 - (old_sacked_bytes - sb->last_bytes_delivered);
Florin Corasca1c8f32018-05-23 21:01:30 -07001089 ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes || tcp_in_recovery (tc));
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001090 ASSERT (sb->sacked_bytes == 0 || tcp_in_recovery (tc)
Florin Corasf03a59a2017-06-09 21:07:32 -07001091 || sb->sacked_bytes < tc->snd_una_max - seq_max (tc->snd_una, ack));
1092 ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_una_max
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001093 - seq_max (tc->snd_una, ack) || tcp_in_recovery (tc));
Dave Barach2c25a622017-06-26 11:35:07 -04001094 ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
1095 || sb->holes[sb->head].start == ack + sb->snd_una_adv);
Florin Corasca1c8f32018-05-23 21:01:30 -07001096 TCP_EVT_DBG (TCP_EVT_CC_SCOREBOARD, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001097}
Filip Tehlare275bed2019-03-06 00:06:56 -08001098#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05001099
Florin Coras93992a92017-05-24 18:03:56 -07001100/**
1101 * Try to update snd_wnd based on feedback received from peer.
Dave Barach68b0fb02017-02-28 15:15:56 -05001102 *
Florin Coras93992a92017-05-24 18:03:56 -07001103 * If successful, and new window is 'effectively' 0, activate persist
1104 * timer.
1105 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001106static void
1107tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
1108{
Florin Coras93992a92017-05-24 18:03:56 -07001109 /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
1110 * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
Florin Coras6792ec02017-03-13 03:49:51 -07001111 if (seq_lt (tc->snd_wl1, seq)
1112 || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001113 {
1114 tc->snd_wnd = snd_wnd;
1115 tc->snd_wl1 = seq;
1116 tc->snd_wl2 = ack;
Florin Coras6792ec02017-03-13 03:49:51 -07001117 TCP_EVT_DBG (TCP_EVT_SND_WND, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001118
Florin Coras9ece3c02018-11-05 11:06:53 -08001119 if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
Florin Corasbb292f42017-05-19 09:49:19 -07001120 {
Florin Coras93992a92017-05-24 18:03:56 -07001121 /* Set persist timer if not set and we just got 0 wnd */
1122 if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
1123 && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
Florin Corasbb292f42017-05-19 09:49:19 -07001124 tcp_persist_timer_set (tc);
1125 }
Florin Coras3e350af2017-03-30 02:54:28 -07001126 else
Florin Coras93992a92017-05-24 18:03:56 -07001127 {
1128 tcp_persist_timer_reset (tc);
Florin Coras9ece3c02018-11-05 11:06:53 -08001129 if (PREDICT_FALSE (!tcp_in_recovery (tc) && tc->rto_boff > 0))
Florin Coras93992a92017-05-24 18:03:56 -07001130 {
1131 tc->rto_boff = 0;
1132 tcp_update_rto (tc);
1133 }
1134 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001135 }
1136}
1137
Filip Tehlare275bed2019-03-06 00:06:56 -08001138#ifndef CLIB_MARCH_VARIANT
Florin Corasd2aab832018-05-22 11:39:59 -07001139/**
1140 * Init loss recovery/fast recovery.
1141 *
1142 * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
1143 * updated in @ref tcp_cc_handle_event after fast retransmit
1144 */
Florin Coras6792ec02017-03-13 03:49:51 -07001145void
Florin Coras93992a92017-05-24 18:03:56 -07001146tcp_cc_init_congestion (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001147{
Florin Coras93992a92017-05-24 18:03:56 -07001148 tcp_fastrecovery_on (tc);
1149 tc->snd_congestion = tc->snd_una_max;
Florin Coras62166002018-04-18 16:40:55 -07001150 tc->cwnd_acc_bytes = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001151 tc->snd_rxt_bytes = 0;
1152 tc->prev_ssthresh = tc->ssthresh;
1153 tc->prev_cwnd = tc->cwnd;
Dave Barach68b0fb02017-02-28 15:15:56 -05001154 tc->cc_algo->congestion (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001155 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001156}
Filip Tehlare275bed2019-03-06 00:06:56 -08001157#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05001158
Florin Coras93992a92017-05-24 18:03:56 -07001159static void
1160tcp_cc_recovery_exit (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001161{
Florin Coras93992a92017-05-24 18:03:56 -07001162 tc->rto_boff = 0;
Florin Corasf1762d62017-09-24 19:43:08 -04001163 tcp_update_rto (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001164 tc->snd_rxt_ts = 0;
Florin Coras84275e92017-09-26 12:30:40 -04001165 tc->snd_nxt = tc->snd_una_max;
Florin Corasefefc6b2018-11-07 12:49:19 -08001166 tc->rtt_ts = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001167 tcp_recovery_off (tc);
Florin Corasf1762d62017-09-24 19:43:08 -04001168 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Florin Coras93992a92017-05-24 18:03:56 -07001169}
Florin Coras3e350af2017-03-30 02:54:28 -07001170
Filip Tehlare275bed2019-03-06 00:06:56 -08001171#ifndef CLIB_MARCH_VARIANT
Florin Coras93992a92017-05-24 18:03:56 -07001172void
1173tcp_cc_fastrecovery_exit (tcp_connection_t * tc)
1174{
Florin Coras6792ec02017-03-13 03:49:51 -07001175 tc->cc_algo->recovered (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001176 tc->snd_rxt_bytes = 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001177 tc->rcv_dupacks = 0;
Florin Coras84275e92017-09-26 12:30:40 -04001178 tc->snd_nxt = tc->snd_una_max;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001179 tc->snd_rxt_bytes = 0;
Florin Corasefefc6b2018-11-07 12:49:19 -08001180 tc->rtt_ts = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001181
Florin Coras93992a92017-05-24 18:03:56 -07001182 tcp_fastrecovery_off (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001183 tcp_fastrecovery_first_off (tc);
Florin Corasd67f1122018-05-21 17:47:40 -07001184
Florin Corasf1762d62017-09-24 19:43:08 -04001185 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Dave Barach68b0fb02017-02-28 15:15:56 -05001186}
Filip Tehlare275bed2019-03-06 00:06:56 -08001187#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05001188
1189static void
Florin Coras93992a92017-05-24 18:03:56 -07001190tcp_cc_congestion_undo (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001191{
Florin Coras93992a92017-05-24 18:03:56 -07001192 tc->cwnd = tc->prev_cwnd;
1193 tc->ssthresh = tc->prev_ssthresh;
1194 tc->snd_nxt = tc->snd_una_max;
1195 tc->rcv_dupacks = 0;
1196 if (tcp_in_recovery (tc))
1197 tcp_cc_recovery_exit (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001198 else if (tcp_in_fastrecovery (tc))
1199 tcp_cc_fastrecovery_exit (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001200 ASSERT (tc->rto_boff == 0);
Florin Corasf1762d62017-09-24 19:43:08 -04001201 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 5);
Florin Coras93992a92017-05-24 18:03:56 -07001202}
Dave Barach68b0fb02017-02-28 15:15:56 -05001203
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001204static inline u8
1205tcp_cc_is_spurious_timeout_rxt (tcp_connection_t * tc)
Florin Coras93992a92017-05-24 18:03:56 -07001206{
Florin Corasf1762d62017-09-24 19:43:08 -04001207 return (tcp_in_recovery (tc) && tc->rto_boff == 1
Dave Barach2c25a622017-06-26 11:35:07 -04001208 && tc->snd_rxt_ts
Florin Coras93992a92017-05-24 18:03:56 -07001209 && tcp_opts_tstamp (&tc->rcv_opts)
1210 && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
1211}
1212
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001213static inline u8
1214tcp_cc_is_spurious_fast_rxt (tcp_connection_t * tc)
1215{
1216 return (tcp_in_fastrecovery (tc)
1217 && tc->cwnd > tc->ssthresh + 3 * tc->snd_mss);
1218}
1219
1220static u8
1221tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
1222{
1223 return (tcp_cc_is_spurious_timeout_rxt (tc)
1224 || tcp_cc_is_spurious_fast_rxt (tc));
1225}
1226
Florin Coras0dbd5172018-06-25 16:19:34 -07001227static int
Florin Coras93992a92017-05-24 18:03:56 -07001228tcp_cc_recover (tcp_connection_t * tc)
1229{
1230 ASSERT (tcp_in_cong_recovery (tc));
1231 if (tcp_cc_is_spurious_retransmit (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001232 {
Florin Coras93992a92017-05-24 18:03:56 -07001233 tcp_cc_congestion_undo (tc);
1234 return 1;
1235 }
1236
1237 if (tcp_in_recovery (tc))
1238 tcp_cc_recovery_exit (tc);
1239 else if (tcp_in_fastrecovery (tc))
1240 tcp_cc_fastrecovery_exit (tc);
1241
1242 ASSERT (tc->rto_boff == 0);
1243 ASSERT (!tcp_in_cong_recovery (tc));
Florin Coras3eb50622017-07-13 01:24:57 -04001244 ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001245 return 0;
1246}
1247
1248static void
1249tcp_cc_update (tcp_connection_t * tc, vlib_buffer_t * b)
1250{
Florin Coras3eb50622017-07-13 01:24:57 -04001251 ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001252
1253 /* Congestion avoidance */
Florin Corasd67f1122018-05-21 17:47:40 -07001254 tcp_cc_rcv_ack (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001255
1256 /* If a cumulative ack, make sure dupacks is 0 */
1257 tc->rcv_dupacks = 0;
1258
1259 /* When dupacks hits the threshold we only enter fast retransmit if
1260 * cumulative ack covers more than snd_congestion. Should snd_una
1261 * wrap this test may fail under otherwise valid circumstances.
1262 * Therefore, proactively update snd_congestion when wrap detected. */
1263 if (PREDICT_FALSE
1264 (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1265 && seq_gt (tc->snd_congestion, tc->snd_una)))
1266 tc->snd_congestion = tc->snd_una - 1;
1267}
1268
1269static u8
1270tcp_should_fastrecover_sack (tcp_connection_t * tc)
1271{
1272 return (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss < tc->sack_sb.sacked_bytes;
1273}
1274
1275static u8
1276tcp_should_fastrecover (tcp_connection_t * tc)
1277{
1278 return (tc->rcv_dupacks == TCP_DUPACK_THRESHOLD
1279 || tcp_should_fastrecover_sack (tc));
1280}
1281
Filip Tehlare275bed2019-03-06 00:06:56 -08001282#ifndef CLIB_MARCH_VARIANT
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001283void
Florin Corasbe72ae62018-11-01 11:23:03 -07001284tcp_program_fastretransmit (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001285{
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001286 if (!(tc->flags & TCP_CONN_FRXT_PENDING))
1287 {
1288 vec_add1 (wrk->pending_fast_rxt, tc->c_c_index);
1289 tc->flags |= TCP_CONN_FRXT_PENDING;
1290 }
1291}
1292
1293void
Florin Corasbe72ae62018-11-01 11:23:03 -07001294tcp_do_fastretransmits (tcp_worker_ctx_t * wrk)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001295{
Florin Corasbe72ae62018-11-01 11:23:03 -07001296 u32 *ongoing_fast_rxt, burst_bytes, sent_bytes, thread_index;
Florin Corase55a6d72018-10-31 23:09:22 -07001297 u32 max_burst_size, burst_size, n_segs = 0, n_segs_now;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001298 tcp_connection_t *tc;
Florin Corase55a6d72018-10-31 23:09:22 -07001299 u64 last_cpu_time;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001300 int i;
1301
Florin Corase55a6d72018-10-31 23:09:22 -07001302 if (vec_len (wrk->pending_fast_rxt) == 0
1303 && vec_len (wrk->postponed_fast_rxt) == 0)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001304 return;
1305
Florin Corasbe72ae62018-11-01 11:23:03 -07001306 thread_index = wrk->vm->thread_index;
Florin Corase55a6d72018-10-31 23:09:22 -07001307 last_cpu_time = wrk->vm->clib_time.last_cpu_time;
1308 ongoing_fast_rxt = wrk->ongoing_fast_rxt;
1309 vec_append (ongoing_fast_rxt, wrk->postponed_fast_rxt);
1310 vec_append (ongoing_fast_rxt, wrk->pending_fast_rxt);
1311
1312 _vec_len (wrk->postponed_fast_rxt) = 0;
1313 _vec_len (wrk->pending_fast_rxt) = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001314
Florin Coras776f3d82018-11-02 08:23:58 -07001315 max_burst_size = VLIB_FRAME_SIZE / vec_len (ongoing_fast_rxt);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001316 max_burst_size = clib_max (max_burst_size, 1);
1317
Florin Corase55a6d72018-10-31 23:09:22 -07001318 for (i = 0; i < vec_len (ongoing_fast_rxt); i++)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001319 {
Florin Corase55a6d72018-10-31 23:09:22 -07001320 if (n_segs >= VLIB_FRAME_SIZE)
1321 {
1322 vec_add1 (wrk->postponed_fast_rxt, ongoing_fast_rxt[i]);
1323 continue;
1324 }
1325
1326 tc = tcp_connection_get (ongoing_fast_rxt[i], thread_index);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001327 tc->flags &= ~TCP_CONN_FRXT_PENDING;
1328
1329 if (!tcp_in_fastrecovery (tc))
1330 continue;
1331
Florin Corase55a6d72018-10-31 23:09:22 -07001332 burst_size = clib_min (max_burst_size, VLIB_FRAME_SIZE - n_segs);
1333 burst_bytes = transport_connection_tx_pacer_burst (&tc->connection,
1334 last_cpu_time);
1335 burst_size = clib_min (burst_size, burst_bytes / tc->snd_mss);
1336 if (!burst_size)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001337 {
Florin Corasbe72ae62018-11-01 11:23:03 -07001338 tcp_program_fastretransmit (wrk, tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001339 continue;
1340 }
1341
Florin Corasbe72ae62018-11-01 11:23:03 -07001342 n_segs_now = tcp_fast_retransmit (wrk, tc, burst_size);
Florin Corase55a6d72018-10-31 23:09:22 -07001343 sent_bytes = clib_min (n_segs_now * tc->snd_mss, burst_bytes);
1344 transport_connection_tx_pacer_update_bytes (&tc->connection,
1345 sent_bytes);
Florin Corase55a6d72018-10-31 23:09:22 -07001346 n_segs += n_segs_now;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001347 }
Florin Corase55a6d72018-10-31 23:09:22 -07001348 _vec_len (ongoing_fast_rxt) = 0;
1349 wrk->ongoing_fast_rxt = ongoing_fast_rxt;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001350}
Filip Tehlare275bed2019-03-06 00:06:56 -08001351#endif /* CLIB_MARCH_VARIANT */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001352
Florin Corasf03a59a2017-06-09 21:07:32 -07001353/**
1354 * One function to rule them all ... and in the darkness bind them
1355 */
Florin Coras93992a92017-05-24 18:03:56 -07001356static void
1357tcp_cc_handle_event (tcp_connection_t * tc, u32 is_dack)
1358{
Florin Corasf03a59a2017-06-09 21:07:32 -07001359 u32 rxt_delivered;
1360
Florin Corasca1c8f32018-05-23 21:01:30 -07001361 if (tcp_in_fastrecovery (tc) && tcp_opts_sack_permitted (&tc->rcv_opts))
1362 {
1363 if (tc->bytes_acked)
1364 goto partial_ack;
Florin Corasbe72ae62018-11-01 11:23:03 -07001365 tcp_program_fastretransmit (tcp_get_worker (tc->c_thread_index), tc);
Florin Corasca1c8f32018-05-23 21:01:30 -07001366 return;
1367 }
Florin Coras93992a92017-05-24 18:03:56 -07001368 /*
1369 * Duplicate ACK. Check if we should enter fast recovery, or if already in
1370 * it account for the bytes that left the network.
1371 */
Florin Corasca1c8f32018-05-23 21:01:30 -07001372 else if (is_dack && !tcp_in_recovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001373 {
Florin Corasd2aab832018-05-22 11:39:59 -07001374 TCP_EVT_DBG (TCP_EVT_DUPACK_RCVD, tc, 1);
Florin Coras93992a92017-05-24 18:03:56 -07001375 ASSERT (tc->snd_una != tc->snd_una_max
1376 || tc->sack_sb.last_sacked_bytes);
Dave Barach2c25a622017-06-26 11:35:07 -04001377
Florin Coras93992a92017-05-24 18:03:56 -07001378 tc->rcv_dupacks++;
1379
Florin Corasd2aab832018-05-22 11:39:59 -07001380 /* Pure duplicate ack. If some data got acked, it's handled lower */
Florin Coras93992a92017-05-24 18:03:56 -07001381 if (tc->rcv_dupacks > TCP_DUPACK_THRESHOLD && !tc->bytes_acked)
Dave Barach68b0fb02017-02-28 15:15:56 -05001382 {
Florin Coras93992a92017-05-24 18:03:56 -07001383 ASSERT (tcp_in_fastrecovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001384 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1385 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001386 }
Florin Coras93992a92017-05-24 18:03:56 -07001387 else if (tcp_should_fastrecover (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001388 {
Florin Corasc44a5582018-11-01 16:30:54 -07001389 u32 pacer_wnd;
1390
Florin Corasd2aab832018-05-22 11:39:59 -07001391 ASSERT (!tcp_in_fastrecovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001392
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001393 /* Heuristic to catch potential late dupacks
1394 * after fast retransmit exits */
1395 if (is_dack && tc->snd_una == tc->snd_congestion
1396 && timestamp_leq (tc->rcv_opts.tsecr, tc->tsecr_last_ack))
Florin Coras93992a92017-05-24 18:03:56 -07001397 {
1398 tc->rcv_dupacks = 0;
1399 return;
1400 }
1401
1402 tcp_cc_init_congestion (tc);
1403 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1404
Florin Coras3eb50622017-07-13 01:24:57 -04001405 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Corase55a6d72018-10-31 23:09:22 -07001406 {
1407 tc->cwnd = tc->ssthresh;
1408 scoreboard_init_high_rxt (&tc->sack_sb, tc->snd_una);
Florin Corase55a6d72018-10-31 23:09:22 -07001409 }
1410 else
1411 {
1412 /* Post retransmit update cwnd to ssthresh and account for the
1413 * three segments that have left the network and should've been
1414 * buffered at the receiver XXX */
1415 tc->cwnd = tc->ssthresh + 3 * tc->snd_mss;
1416 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001417
Florin Coras36ee9f12018-11-02 12:52:10 -07001418 /* Constrain rate until we get a partial ack */
Florin Corasc44a5582018-11-01 16:30:54 -07001419 pacer_wnd = clib_max (0.1 * tc->cwnd, 2 * tc->snd_mss);
1420 tcp_connection_tx_pacer_reset (tc, pacer_wnd,
1421 0 /* start bucket */ );
Florin Corasbe72ae62018-11-01 11:23:03 -07001422 tcp_program_fastretransmit (tcp_get_worker (tc->c_thread_index),
1423 tc);
Florin Coras93992a92017-05-24 18:03:56 -07001424 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001425 }
Florin Coras93992a92017-05-24 18:03:56 -07001426 else if (!tc->bytes_acked
1427 || (tc->bytes_acked && !tcp_in_cong_recovery (tc)))
1428 {
1429 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1430 return;
1431 }
1432 else
1433 goto partial_ack;
1434 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001435 /* Don't allow entry in fast recovery if still in recovery, for now */
1436 else if (0 && is_dack && tcp_in_recovery (tc))
1437 {
1438 /* If of of the two conditions lower hold, reset dupacks because
1439 * we're probably after timeout (RFC6582 heuristics).
1440 * If Cumulative ack does not cover more than congestion threshold,
1441 * and:
1442 * 1) The following doesn't hold: The congestion window is greater
1443 * than SMSS bytes and the difference between highest_ack
1444 * and prev_highest_ack is at most 4*SMSS bytes
1445 * 2) Echoed timestamp in the last non-dup ack does not equal the
1446 * stored timestamp
1447 */
1448 if (seq_leq (tc->snd_una, tc->snd_congestion)
1449 && ((!(tc->cwnd > tc->snd_mss
1450 && tc->bytes_acked <= 4 * tc->snd_mss))
1451 || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
1452 {
1453 tc->rcv_dupacks = 0;
1454 return;
1455 }
1456 }
Florin Coras93992a92017-05-24 18:03:56 -07001457
Florin Coras93992a92017-05-24 18:03:56 -07001458 if (!tc->bytes_acked)
1459 return;
1460
1461partial_ack:
Florin Corasd2aab832018-05-22 11:39:59 -07001462 TCP_EVT_DBG (TCP_EVT_CC_PACK, tc);
1463
Florin Coras93992a92017-05-24 18:03:56 -07001464 /*
1465 * Legitimate ACK. 1) See if we can exit recovery
1466 */
Florin Coras93992a92017-05-24 18:03:56 -07001467
Florin Corasefefc6b2018-11-07 12:49:19 -08001468 /* Update the pacing rate. For the first partial ack we move from
1469 * the artificially constrained rate to the one after congestion */
1470 tcp_connection_tx_pacer_update (tc);
1471
Florin Coras93992a92017-05-24 18:03:56 -07001472 if (seq_geq (tc->snd_una, tc->snd_congestion))
1473 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001474 tcp_retransmit_timer_update (tc);
1475
Florin Coras93992a92017-05-24 18:03:56 -07001476 /* If spurious return, we've already updated everything */
1477 if (tcp_cc_recover (tc))
Florin Corasf03a59a2017-06-09 21:07:32 -07001478 {
1479 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1480 return;
1481 }
Florin Coras93992a92017-05-24 18:03:56 -07001482
1483 tc->snd_nxt = tc->snd_una_max;
1484
1485 /* Treat as congestion avoidance ack */
Florin Corasd67f1122018-05-21 17:47:40 -07001486 tcp_cc_rcv_ack (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001487 return;
1488 }
1489
1490 /*
1491 * Legitimate ACK. 2) If PARTIAL ACK try to retransmit
1492 */
Florin Coras93992a92017-05-24 18:03:56 -07001493
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001494 /* XXX limit this only to first partial ack? */
Florin Coras2e31cc32018-09-25 14:00:34 -07001495 tcp_retransmit_timer_update (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001496
Florin Coras93992a92017-05-24 18:03:56 -07001497 /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
Florin Corasd2aab832018-05-22 11:39:59 -07001498 * reset dupacks to 0. Also needed if in congestion recovery */
Florin Coras93992a92017-05-24 18:03:56 -07001499 tc->rcv_dupacks = 0;
1500
Florin Coras93992a92017-05-24 18:03:56 -07001501 /* Post RTO timeout don't try anything fancy */
1502 if (tcp_in_recovery (tc))
Florin Corasd2aab832018-05-22 11:39:59 -07001503 {
Florin Corasd67f1122018-05-21 17:47:40 -07001504 tcp_cc_rcv_ack (tc);
Florin Coras3ec66b02018-08-23 16:27:05 -07001505 transport_add_tx_event (&tc->connection);
Florin Corasd2aab832018-05-22 11:39:59 -07001506 return;
1507 }
Florin Coras93992a92017-05-24 18:03:56 -07001508
1509 /* Remove retransmitted bytes that have been delivered */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001510 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras93992a92017-05-24 18:03:56 -07001511 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001512 ASSERT (tc->bytes_acked + tc->sack_sb.snd_una_adv
1513 >= tc->sack_sb.last_bytes_delivered
1514 || (tc->flags & TCP_CONN_FINSNT));
1515
Florin Coras93992a92017-05-24 18:03:56 -07001516 /* If we have sacks and we haven't gotten an ack beyond high_rxt,
1517 * remove sacked bytes delivered */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001518 if (seq_lt (tc->snd_una, tc->sack_sb.high_rxt))
1519 {
1520 rxt_delivered = tc->bytes_acked + tc->sack_sb.snd_una_adv
1521 - tc->sack_sb.last_bytes_delivered;
1522 ASSERT (tc->snd_rxt_bytes >= rxt_delivered);
1523 tc->snd_rxt_bytes -= rxt_delivered;
1524 }
1525 else
1526 {
1527 /* Apparently all retransmitted holes have been acked */
1528 tc->snd_rxt_bytes = 0;
Florin Coras36ee9f12018-11-02 12:52:10 -07001529 tc->sack_sb.high_rxt = tc->snd_una;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001530 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001531 }
1532 else
1533 {
Florin Coras36ee9f12018-11-02 12:52:10 -07001534 tcp_fastrecovery_first_on (tc);
1535 /* Reuse last bytes delivered to track total bytes acked */
1536 tc->sack_sb.last_bytes_delivered += tc->bytes_acked;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001537 if (tc->snd_rxt_bytes > tc->bytes_acked)
1538 tc->snd_rxt_bytes -= tc->bytes_acked;
1539 else
1540 tc->snd_rxt_bytes = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001541 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001542
Florin Coras93992a92017-05-24 18:03:56 -07001543 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_PARTIALACK);
Dave Barach68b0fb02017-02-28 15:15:56 -05001544
Florin Coras93992a92017-05-24 18:03:56 -07001545 /*
1546 * Since this was a partial ack, try to retransmit some more data
1547 */
Florin Corasbe72ae62018-11-01 11:23:03 -07001548 tcp_program_fastretransmit (tcp_get_worker (tc->c_thread_index), tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001549}
1550
Florin Coras93992a92017-05-24 18:03:56 -07001551/**
1552 * Process incoming ACK
1553 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001554static int
Florin Coras9ece3c02018-11-05 11:06:53 -08001555tcp_rcv_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
Florin Coras7ac053b2018-11-05 15:57:21 -08001556 tcp_header_t * th, u32 * error)
Dave Barach68b0fb02017-02-28 15:15:56 -05001557{
Florin Coras93992a92017-05-24 18:03:56 -07001558 u32 prev_snd_wnd, prev_snd_una;
1559 u8 is_dack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001560
Florin Corasf03a59a2017-06-09 21:07:32 -07001561 TCP_EVT_DBG (TCP_EVT_CC_STAT, tc);
1562
Florin Coras6792ec02017-03-13 03:49:51 -07001563 /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
Florin Coras93992a92017-05-24 18:03:56 -07001564 if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001565 {
Florin Coras5fd32102019-02-28 12:49:45 -08001566 /* When we entered cong recovery, we reset snd_nxt to snd_una. Seems
1567 * peer still has the data so accept the ack */
1568 if (tcp_in_cong_recovery (tc)
1569 && seq_leq (vnet_buffer (b)->tcp.ack_number,
1570 tc->snd_una + tc->snd_wnd))
Florin Corasca1c8f32018-05-23 21:01:30 -07001571 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001572 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
1573 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
1574 tc->snd_una_max = tc->snd_nxt;
Florin Corasca1c8f32018-05-23 21:01:30 -07001575 goto process_ack;
1576 }
1577
Florin Coras6792ec02017-03-13 03:49:51 -07001578 /* If we have outstanding data and this is within the window, accept it,
1579 * probably retransmit has timed out. Otherwise ACK segment and then
1580 * drop it */
1581 if (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max))
1582 {
Florin Coras7ac053b2018-11-05 15:57:21 -08001583 tcp_program_ack (wrk, tc);
Florin Coras36ee9f12018-11-02 12:52:10 -07001584 *error = TCP_ERROR_ACK_FUTURE;
Florin Coras6792ec02017-03-13 03:49:51 -07001585 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 0,
1586 vnet_buffer (b)->tcp.ack_number);
1587 return -1;
1588 }
1589
Florin Coras6792ec02017-03-13 03:49:51 -07001590 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 2,
1591 vnet_buffer (b)->tcp.ack_number);
Florin Coras3e350af2017-03-30 02:54:28 -07001592
1593 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
Florin Coras5fd32102019-02-28 12:49:45 -08001594 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
1595 tc->snd_una_max = tc->snd_nxt;
1596
1597 goto process_ack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001598 }
1599
Florin Coras6792ec02017-03-13 03:49:51 -07001600 /* If old ACK, probably it's an old dupack */
Florin Coras93992a92017-05-24 18:03:56 -07001601 if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001602 {
1603 *error = TCP_ERROR_ACK_OLD;
Florin Coras6792ec02017-03-13 03:49:51 -07001604 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 1,
1605 vnet_buffer (b)->tcp.ack_number);
1606 if (tcp_in_fastrecovery (tc) && tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
Florin Corasca1c8f32018-05-23 21:01:30 -07001607 tcp_cc_handle_event (tc, 1);
Florin Corasc28764f2017-04-26 00:08:42 -07001608 /* Don't drop yet */
1609 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001610 }
1611
Florin Coras93992a92017-05-24 18:03:56 -07001612 /*
1613 * Looks okay, process feedback
1614 */
Florin Corasca1c8f32018-05-23 21:01:30 -07001615process_ack:
Florin Coras93992a92017-05-24 18:03:56 -07001616 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001617 tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1618
Florin Coras93992a92017-05-24 18:03:56 -07001619 prev_snd_wnd = tc->snd_wnd;
1620 prev_snd_una = tc->snd_una;
1621 tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1622 vnet_buffer (b)->tcp.ack_number,
1623 clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1624 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
1625 tc->snd_una = vnet_buffer (b)->tcp.ack_number + tc->sack_sb.snd_una_adv;
1626 tcp_validate_txf_size (tc, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001627
Florin Coras93992a92017-05-24 18:03:56 -07001628 if (tc->bytes_acked)
Florin Coras9ece3c02018-11-05 11:06:53 -08001629 {
1630 tcp_program_dequeue (wrk, tc);
1631 tcp_update_rtt (tc, vnet_buffer (b)->tcp.ack_number);
1632 }
Florin Coras93992a92017-05-24 18:03:56 -07001633
Florin Coras6534b7a2017-07-18 05:38:03 -04001634 TCP_EVT_DBG (TCP_EVT_ACK_RCVD, tc);
1635
Florin Coras93992a92017-05-24 18:03:56 -07001636 /*
1637 * Check if we have congestion event
1638 */
1639
1640 if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001641 {
Florin Coras93992a92017-05-24 18:03:56 -07001642 tcp_cc_handle_event (tc, is_dack);
Florin Corasb2215d62017-08-01 16:56:58 -07001643 if (!tcp_in_cong_recovery (tc))
Florin Corasa9d5bea2018-12-17 08:24:19 -08001644 {
1645 *error = TCP_ERROR_ACK_OK;
1646 return 0;
1647 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001648 *error = TCP_ERROR_ACK_DUP;
Florin Corasca09d072018-10-01 18:31:02 -07001649 if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th))
1650 return 0;
1651 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001652 }
1653
Florin Coras6792ec02017-03-13 03:49:51 -07001654 /*
Florin Coras93992a92017-05-24 18:03:56 -07001655 * Update congestion control (slow start/congestion avoidance)
Florin Coras6792ec02017-03-13 03:49:51 -07001656 */
Florin Coras93992a92017-05-24 18:03:56 -07001657 tcp_cc_update (tc, b);
Florin Coras00cd22d2018-04-18 13:20:18 -07001658 *error = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001659 return 0;
1660}
1661
Florin Corasb11175d2018-11-09 14:34:08 -08001662static void
1663tcp_program_disconnect (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1664{
1665 if (!tcp_disconnect_pending (tc))
1666 {
1667 vec_add1 (wrk->pending_disconnects, tc->c_c_index);
1668 tcp_disconnect_pending_on (tc);
1669 }
1670}
1671
1672static void
1673tcp_handle_disconnects (tcp_worker_ctx_t * wrk)
1674{
1675 u32 thread_index, *pending_disconnects;
1676 tcp_connection_t *tc;
1677 int i;
1678
1679 if (!vec_len (wrk->pending_disconnects))
1680 return;
1681
1682 thread_index = wrk->vm->thread_index;
1683 pending_disconnects = wrk->pending_disconnects;
1684 for (i = 0; i < vec_len (pending_disconnects); i++)
1685 {
1686 tc = tcp_connection_get (pending_disconnects[i], thread_index);
1687 tcp_disconnect_pending_off (tc);
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001688 session_transport_closing_notify (&tc->connection);
Florin Corasb11175d2018-11-09 14:34:08 -08001689 }
1690 _vec_len (wrk->pending_disconnects) = 0;
1691}
1692
1693static void
1694tcp_rcv_fin (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
1695 u32 * error)
1696{
Florin Coras3c514d52018-12-22 11:39:33 -08001697 /* Account for the FIN and send ack */
1698 tc->rcv_nxt += 1;
1699 tcp_program_ack (wrk, tc);
Florin Corasb11175d2018-11-09 14:34:08 -08001700 /* Enter CLOSE-WAIT and notify session. To avoid lingering
1701 * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
Florin Coras3c514d52018-12-22 11:39:33 -08001702 tcp_connection_set_state (tc, TCP_STATE_CLOSE_WAIT);
Florin Corasb11175d2018-11-09 14:34:08 -08001703 tcp_program_disconnect (wrk, tc);
1704 tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
1705 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc);
1706 *error = TCP_ERROR_FIN_RCVD;
1707}
1708
Filip Tehlare275bed2019-03-06 00:06:56 -08001709#ifndef CLIB_MARCH_VARIANT
Florin Coras3eb50622017-07-13 01:24:57 -04001710static u8
1711tcp_sack_vector_is_sane (sack_block_t * sacks)
1712{
1713 int i;
1714 for (i = 1; i < vec_len (sacks); i++)
1715 {
1716 if (sacks[i - 1].end == sacks[i].start)
1717 return 0;
1718 }
1719 return 1;
1720}
1721
Dave Barach68b0fb02017-02-28 15:15:56 -05001722/**
1723 * Build SACK list as per RFC2018.
1724 *
1725 * Makes sure the first block contains the segment that generated the current
1726 * ACK and the following ones are the ones most recently reported in SACK
1727 * blocks.
1728 *
1729 * @param tc TCP connection for which the SACK list is updated
1730 * @param start Start sequence number of the newest SACK block
1731 * @param end End sequence of the newest SACK block
1732 */
Florin Coras45d34962017-04-25 00:05:27 -07001733void
Dave Barach68b0fb02017-02-28 15:15:56 -05001734tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1735{
Florin Corasb691f762019-02-22 09:07:20 -08001736 sack_block_t *new_list = tc->snd_sacks_fl, *block = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001737 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001738
1739 /* If the first segment is ooo add it to the list. Last write might've moved
1740 * rcv_nxt over the first segment. */
1741 if (seq_lt (tc->rcv_nxt, start))
1742 {
Florin Coras45d34962017-04-25 00:05:27 -07001743 vec_add2 (new_list, block, 1);
1744 block->start = start;
1745 block->end = end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001746 }
1747
1748 /* Find the blocks still worth keeping. */
1749 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1750 {
Florin Coras45d34962017-04-25 00:05:27 -07001751 /* Discard if rcv_nxt advanced beyond current block */
1752 if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001753 continue;
1754
Florin Coras45d34962017-04-25 00:05:27 -07001755 /* Merge or drop if segment overlapped by the new segment */
1756 if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1757 && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1758 {
1759 if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1760 new_list[0].start = tc->snd_sacks[i].start;
1761 if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1762 new_list[0].end = tc->snd_sacks[i].end;
1763 continue;
1764 }
1765
1766 /* Save to new SACK list if we have space. */
1767 if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
1768 {
1769 vec_add1 (new_list, tc->snd_sacks[i]);
1770 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001771 else
1772 {
1773 clib_warning ("sack discarded");
1774 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001775 }
1776
Florin Coras45d34962017-04-25 00:05:27 -07001777 ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
Florin Coras6792ec02017-03-13 03:49:51 -07001778
Dave Barach68b0fb02017-02-28 15:15:56 -05001779 /* Replace old vector with new one */
Florin Corasb691f762019-02-22 09:07:20 -08001780 vec_reset_length (tc->snd_sacks);
1781 tc->snd_sacks_fl = tc->snd_sacks;
Dave Barach68b0fb02017-02-28 15:15:56 -05001782 tc->snd_sacks = new_list;
Florin Coras3eb50622017-07-13 01:24:57 -04001783
1784 /* Segments should not 'touch' */
1785 ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
Dave Barach68b0fb02017-02-28 15:15:56 -05001786}
1787
Florin Corasca1c8f32018-05-23 21:01:30 -07001788u32
1789tcp_sack_list_bytes (tcp_connection_t * tc)
1790{
1791 u32 bytes = 0, i;
1792 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1793 bytes += tc->snd_sacks[i].end - tc->snd_sacks[i].start;
1794 return bytes;
1795}
Filip Tehlare275bed2019-03-06 00:06:56 -08001796#endif /* CLIB_MARCH_VARIANT */
Florin Corasca1c8f32018-05-23 21:01:30 -07001797
Dave Barach68b0fb02017-02-28 15:15:56 -05001798/** Enqueue data for delivery to application */
Florin Coras0dbd5172018-06-25 16:19:34 -07001799static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001800tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1801 u16 data_len)
1802{
Florin Coras1f152cd2017-08-18 19:28:03 -07001803 int written, error = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001804
Dave Barach2c25a622017-06-26 11:35:07 -04001805 ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001806 ASSERT (data_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001807 written = session_enqueue_stream_connection (&tc->connection, b, 0,
1808 1 /* queue event */ , 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001809
Florin Coras6792ec02017-03-13 03:49:51 -07001810 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 0, data_len, written);
1811
Dave Barach68b0fb02017-02-28 15:15:56 -05001812 /* Update rcv_nxt */
1813 if (PREDICT_TRUE (written == data_len))
1814 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001815 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001816 }
1817 /* If more data written than expected, account for out-of-order bytes. */
1818 else if (written > data_len)
1819 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001820 tc->rcv_nxt += written;
Florin Corasca1c8f32018-05-23 21:01:30 -07001821 TCP_EVT_DBG (TCP_EVT_CC_INPUT, tc, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001822 }
1823 else if (written > 0)
1824 {
1825 /* We've written something but FIFO is probably full now */
1826 tc->rcv_nxt += written;
Florin Coras1f152cd2017-08-18 19:28:03 -07001827 error = TCP_ERROR_PARTIALLY_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001828 }
1829 else
1830 {
Dave Barach68b0fb02017-02-28 15:15:56 -05001831 return TCP_ERROR_FIFO_FULL;
1832 }
1833
Florin Coras6792ec02017-03-13 03:49:51 -07001834 /* Update SACK list if need be */
Florin Coras93992a92017-05-24 18:03:56 -07001835 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras6792ec02017-03-13 03:49:51 -07001836 {
1837 /* Remove SACK blocks that have been delivered */
1838 tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1839 }
1840
Florin Coras1f152cd2017-08-18 19:28:03 -07001841 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -05001842}
1843
1844/** Enqueue out-of-order data */
Florin Coras0dbd5172018-06-25 16:19:34 -07001845static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001846tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1847 u16 data_len)
1848{
Florin Coras288eaab2019-02-03 15:26:14 -08001849 session_t *s0;
Florin Coras3eb50622017-07-13 01:24:57 -04001850 int rv, offset;
Florin Coras6792ec02017-03-13 03:49:51 -07001851
Florin Corasf03a59a2017-06-09 21:07:32 -07001852 ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001853 ASSERT (data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001854
Florin Corasf03a59a2017-06-09 21:07:32 -07001855 /* Enqueue out-of-order data with relative offset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07001856 rv = session_enqueue_stream_connection (&tc->connection, b,
1857 vnet_buffer (b)->tcp.seq_number -
1858 tc->rcv_nxt, 0 /* queue event */ ,
1859 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001860
1861 /* Nothing written */
1862 if (rv)
1863 {
1864 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, 0);
1865 return TCP_ERROR_FIFO_FULL;
1866 }
1867
1868 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001869
1870 /* Update SACK list if in use */
Florin Coras93992a92017-05-24 18:03:56 -07001871 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001872 {
1873 ooo_segment_t *newest;
1874 u32 start, end;
1875
Florin Corascea194d2017-10-02 00:18:51 -07001876 s0 = session_get (tc->c_s_index, tc->c_thread_index);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001877
Dave Barach68b0fb02017-02-28 15:15:56 -05001878 /* Get the newest segment from the fifo */
Florin Coras288eaab2019-02-03 15:26:14 -08001879 newest = svm_fifo_newest_ooo_segment (s0->rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001880 if (newest)
1881 {
Florin Coras288eaab2019-02-03 15:26:14 -08001882 offset = ooo_segment_offset (s0->rx_fifo, newest);
Florin Coras3eb50622017-07-13 01:24:57 -04001883 ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1884 start = tc->rcv_nxt + offset;
Florin Coras288eaab2019-02-03 15:26:14 -08001885 end = start + ooo_segment_length (s0->rx_fifo, newest);
Florin Corasf03a59a2017-06-09 21:07:32 -07001886 tcp_update_sack_list (tc, start, end);
Florin Coras288eaab2019-02-03 15:26:14 -08001887 svm_fifo_newest_ooo_segment_reset (s0->rx_fifo);
Florin Corasca1c8f32018-05-23 21:01:30 -07001888 TCP_EVT_DBG (TCP_EVT_CC_SACKS, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001889 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001890 }
1891
Florin Coras00cd22d2018-04-18 13:20:18 -07001892 return TCP_ERROR_ENQUEUED_OOO;
Dave Barach68b0fb02017-02-28 15:15:56 -05001893}
1894
1895/**
Florin Coras6792ec02017-03-13 03:49:51 -07001896 * Check if ACK could be delayed. If ack can be delayed, it should return
1897 * true for a full frame. If we're always acking return 0.
Dave Barach68b0fb02017-02-28 15:15:56 -05001898 */
1899always_inline int
1900tcp_can_delack (tcp_connection_t * tc)
1901{
Florin Coras6792ec02017-03-13 03:49:51 -07001902 /* Send ack if ... */
1903 if (TCP_ALWAYS_ACK
1904 /* just sent a rcv wnd 0 */
1905 || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0
1906 /* constrained to send ack */
1907 || (tc->flags & TCP_CONN_SNDACK) != 0
1908 /* we're almost out of tx wnd */
Florin Corasca1c8f32018-05-23 21:01:30 -07001909 || tcp_available_cc_snd_space (tc) < 4 * tc->snd_mss)
Florin Coras6792ec02017-03-13 03:49:51 -07001910 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001911
Florin Coras6792ec02017-03-13 03:49:51 -07001912 return 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001913}
1914
1915static int
Florin Corasb2215d62017-08-01 16:56:58 -07001916tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
1917{
Florin Coras1f152cd2017-08-18 19:28:03 -07001918 u32 discard, first = b->current_length;
Florin Corasb2215d62017-08-01 16:56:58 -07001919 vlib_main_t *vm = vlib_get_main ();
1920
Florin Coras1f152cd2017-08-18 19:28:03 -07001921 /* Handle multi-buffer segments */
Florin Corasb2215d62017-08-01 16:56:58 -07001922 if (n_bytes_to_drop > b->current_length)
1923 {
1924 if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1925 return -1;
1926 do
1927 {
1928 discard = clib_min (n_bytes_to_drop, b->current_length);
1929 vlib_buffer_advance (b, discard);
1930 b = vlib_get_buffer (vm, b->next_buffer);
1931 n_bytes_to_drop -= discard;
1932 }
1933 while (n_bytes_to_drop);
Florin Coras1f152cd2017-08-18 19:28:03 -07001934 if (n_bytes_to_drop > first)
1935 b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
Florin Corasb2215d62017-08-01 16:56:58 -07001936 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001937 else
1938 vlib_buffer_advance (b, n_bytes_to_drop);
1939 vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
Florin Corasb2215d62017-08-01 16:56:58 -07001940 return 0;
1941}
1942
Florin Coras00cd22d2018-04-18 13:20:18 -07001943/**
1944 * Receive buffer for connection and handle acks
1945 *
1946 * It handles both in order or out-of-order data.
1947 */
Florin Corasb2215d62017-08-01 16:56:58 -07001948static int
Florin Coras7ac053b2018-11-05 15:57:21 -08001949tcp_segment_rcv (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1950 vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001951{
Florin Coras00cd22d2018-04-18 13:20:18 -07001952 u32 error, n_bytes_to_drop, n_data_bytes;
Florin Coras6534b7a2017-07-18 05:38:03 -04001953
1954 vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1955 n_data_bytes = vnet_buffer (b)->tcp.data_len;
1956 ASSERT (n_data_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001957
1958 /* Handle out-of-order data */
1959 if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1960 {
Florin Coras6792ec02017-03-13 03:49:51 -07001961 /* Old sequence numbers allowed through because they overlapped
1962 * the rx window */
1963 if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001964 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001965 /* Completely in the past (possible retransmit). Ack
1966 * retransmissions since we may not have any data to send */
Florin Corasf03a59a2017-06-09 21:07:32 -07001967 if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
Florin Coras6534b7a2017-07-18 05:38:03 -04001968 {
Florin Coras7ac053b2018-11-05 15:57:21 -08001969 tcp_program_ack (wrk, tc);
Florin Coras00cd22d2018-04-18 13:20:18 -07001970 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras6534b7a2017-07-18 05:38:03 -04001971 goto done;
1972 }
Dave Barach259cdae2017-05-15 16:27:05 -04001973
Florin Coras00cd22d2018-04-18 13:20:18 -07001974 /* Chop off the bytes in the past and see if what is left
1975 * can be enqueued in order */
Florin Corasdb84e572017-05-09 18:54:52 -07001976 n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1977 n_data_bytes -= n_bytes_to_drop;
Dave Barach2c25a622017-06-26 11:35:07 -04001978 vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001979 if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
Florin Coras00cd22d2018-04-18 13:20:18 -07001980 {
1981 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras00cd22d2018-04-18 13:20:18 -07001982 goto done;
1983 }
Florin Corasdb84e572017-05-09 18:54:52 -07001984 goto in_order;
Dave Barach68b0fb02017-02-28 15:15:56 -05001985 }
1986
Florin Coras00cd22d2018-04-18 13:20:18 -07001987 /* RFC2581: Enqueue and send DUPACK for fast retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001988 error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
Florin Coras7ac053b2018-11-05 15:57:21 -08001989 tcp_program_dupack (wrk, tc);
Florin Corasca1c8f32018-05-23 21:01:30 -07001990 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
Dave Barach68b0fb02017-02-28 15:15:56 -05001991 goto done;
1992 }
1993
Florin Corasdb84e572017-05-09 18:54:52 -07001994in_order:
1995
Dave Barach68b0fb02017-02-28 15:15:56 -05001996 /* In order data, enqueue. Fifo figures out by itself if any out-of-order
1997 * segments can be enqueued after fifo tail offset changes. */
1998 error = tcp_session_enqueue_data (tc, b, n_data_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001999 if (tcp_can_delack (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05002000 {
Florin Coras6792ec02017-03-13 03:49:51 -07002001 if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
2002 tcp_timer_set (tc, TCP_TIMER_DELACK, TCP_DELACK_TIME);
Florin Coras3e350af2017-03-30 02:54:28 -07002003 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05002004 }
2005
Florin Coras7ac053b2018-11-05 15:57:21 -08002006 tcp_program_ack (wrk, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07002007
Dave Barach68b0fb02017-02-28 15:15:56 -05002008done:
2009 return error;
2010}
2011
Clement Durand6cf260c2017-04-13 13:27:04 +02002012typedef struct
2013{
2014 tcp_header_t tcp_header;
2015 tcp_connection_t tcp_connection;
2016} tcp_rx_trace_t;
2017
Florin Coras0dbd5172018-06-25 16:19:34 -07002018static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02002019format_tcp_rx_trace (u8 * s, va_list * args)
2020{
2021 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2022 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2023 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +02002024 u32 indent = format_get_indent (s);
Clement Durand6cf260c2017-04-13 13:27:04 +02002025
2026 s = format (s, "%U\n%U%U",
2027 format_tcp_header, &t->tcp_header, 128,
2028 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -07002029 format_tcp_connection, &t->tcp_connection, 1);
Clement Durand6cf260c2017-04-13 13:27:04 +02002030
2031 return s;
2032}
2033
Florin Coras0dbd5172018-06-25 16:19:34 -07002034static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02002035format_tcp_rx_trace_short (u8 * s, va_list * args)
2036{
2037 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2038 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2039 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
2040
2041 s = format (s, "%d -> %d (%U)",
Florin Coras4df38712018-06-20 12:44:16 -07002042 clib_net_to_host_u16 (t->tcp_header.dst_port),
2043 clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state,
Florin Corasbb292f42017-05-19 09:49:19 -07002044 t->tcp_connection.state);
Clement Durand6cf260c2017-04-13 13:27:04 +02002045
2046 return s;
2047}
2048
Florin Coras4df38712018-06-20 12:44:16 -07002049static void
Florin Coras82b13a82017-04-25 11:58:06 -07002050tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
2051 tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
2052{
2053 if (tc0)
2054 {
Dave Barach178cf492018-11-13 16:34:13 -05002055 clib_memcpy_fast (&t0->tcp_connection, tc0,
2056 sizeof (t0->tcp_connection));
Florin Coras82b13a82017-04-25 11:58:06 -07002057 }
2058 else
2059 {
2060 th0 = tcp_buffer_hdr (b0);
2061 }
Dave Barach178cf492018-11-13 16:34:13 -05002062 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
Florin Coras82b13a82017-04-25 11:58:06 -07002063}
2064
Florin Coras4df38712018-06-20 12:44:16 -07002065static void
2066tcp_established_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2067 vlib_frame_t * frame, u8 is_ip4)
2068{
2069 u32 *from, n_left;
2070
2071 n_left = frame->n_vectors;
2072 from = vlib_frame_vector_args (frame);
2073
2074 while (n_left >= 1)
2075 {
2076 tcp_connection_t *tc0;
2077 tcp_rx_trace_t *t0;
2078 tcp_header_t *th0;
2079 vlib_buffer_t *b0;
2080 u32 bi0;
2081
2082 bi0 = from[0];
2083 b0 = vlib_get_buffer (vm, bi0);
2084
2085 if (b0->flags & VLIB_BUFFER_IS_TRACED)
2086 {
2087 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2088 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2089 vm->thread_index);
2090 th0 = tcp_buffer_hdr (b0);
2091 tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
2092 }
2093
2094 from += 1;
2095 n_left -= 1;
2096 }
2097}
2098
Florin Coras6792ec02017-03-13 03:49:51 -07002099always_inline void
Florin Coras00cd22d2018-04-18 13:20:18 -07002100tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
2101 u8 is_ip4, u32 evt, u32 val)
Dave Barach68b0fb02017-02-28 15:15:56 -05002102{
Florin Coras6792ec02017-03-13 03:49:51 -07002103 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -07002104 vlib_node_increment_counter (vm, tcp4_node, evt, val);
Florin Coras6792ec02017-03-13 03:49:51 -07002105 else
Florin Coras3cbc04b2017-10-02 00:18:51 -07002106 vlib_node_increment_counter (vm, tcp6_node, evt, val);
Dave Barach68b0fb02017-02-28 15:15:56 -05002107}
2108
Florin Coras00cd22d2018-04-18 13:20:18 -07002109#define tcp_maybe_inc_counter(node_id, err, count) \
2110{ \
2111 if (next0 != tcp_next_drop (is_ip4)) \
2112 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2113 tcp6_##node_id##_node.index, is_ip4, err, \
2114 1); \
2115}
2116#define tcp_inc_counter(node_id, err, count) \
2117 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2118 tcp6_##node_id##_node.index, is_ip4, \
2119 err, count)
2120#define tcp_maybe_inc_err_counter(cnts, err) \
2121{ \
2122 cnts[err] += (next0 != tcp_next_drop (is_ip4)); \
2123}
2124#define tcp_inc_err_counter(cnts, err, val) \
2125{ \
2126 cnts[err] += val; \
2127}
2128#define tcp_store_err_counters(node_id, cnts) \
2129{ \
2130 int i; \
2131 for (i = 0; i < TCP_N_ERROR; i++) \
2132 if (cnts[i]) \
2133 tcp_inc_counter(node_id, i, cnts[i]); \
2134}
2135
2136
Dave Barach68b0fb02017-02-28 15:15:56 -05002137always_inline uword
2138tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07002139 vlib_frame_t * frame, int is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05002140{
Florin Coras4df38712018-06-20 12:44:16 -07002141 u32 thread_index = vm->thread_index, errors = 0;
Florin Coras9ece3c02018-11-05 11:06:53 -08002142 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08002143 u32 n_left_from, *from, *first_buffer;
Florin Coras00cd22d2018-04-18 13:20:18 -07002144 u16 err_counters[TCP_N_ERROR] = { 0 };
Dave Barach68b0fb02017-02-28 15:15:56 -05002145
Florin Coras4df38712018-06-20 12:44:16 -07002146 if (node->flags & VLIB_NODE_FLAG_TRACE)
2147 tcp_established_trace_frame (vm, node, frame, is_ip4);
2148
Florin Coras7ac053b2018-11-05 15:57:21 -08002149 first_buffer = from = vlib_frame_vector_args (frame);
Florin Coras4df38712018-06-20 12:44:16 -07002150 n_left_from = frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002151
2152 while (n_left_from > 0)
2153 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002154 u32 bi0, error0 = TCP_ERROR_ACK_OK;
2155 vlib_buffer_t *b0;
Florin Coras3c514d52018-12-22 11:39:33 -08002156 tcp_header_t *th0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002157 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002158
Florin Coras7ac053b2018-11-05 15:57:21 -08002159 if (n_left_from > 1)
Dave Barach68b0fb02017-02-28 15:15:56 -05002160 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002161 vlib_buffer_t *pb;
2162 pb = vlib_get_buffer (vm, from[1]);
2163 vlib_prefetch_buffer_header (pb, LOAD);
2164 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
Dave Barach68b0fb02017-02-28 15:15:56 -05002165 }
2166
Florin Coras7ac053b2018-11-05 15:57:21 -08002167 bi0 = from[0];
2168 from += 1;
2169 n_left_from -= 1;
2170
2171 b0 = vlib_get_buffer (vm, bi0);
2172 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2173 thread_index);
2174
2175 if (PREDICT_FALSE (tc0 == 0))
2176 {
2177 error0 = TCP_ERROR_INVALID_CONNECTION;
2178 goto done;
2179 }
2180
2181 th0 = tcp_buffer_hdr (b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002182
2183 /* TODO header prediction fast path */
2184
2185 /* 1-4: check SEQ, RST, SYN */
2186 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, th0, &error0)))
2187 {
2188 TCP_EVT_DBG (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp);
2189 goto done;
2190 }
2191
2192 /* 5: check the ACK field */
2193 if (PREDICT_FALSE (tcp_rcv_ack (wrk, tc0, b0, th0, &error0)))
2194 goto done;
2195
2196 /* 6: check the URG bit TODO */
2197
2198 /* 7: process the segment text */
2199 if (vnet_buffer (b0)->tcp.data_len)
2200 error0 = tcp_segment_rcv (wrk, tc0, b0);
2201
2202 /* 8: check the FIN bit */
Florin Coras3c514d52018-12-22 11:39:33 -08002203 if (PREDICT_FALSE (tcp_is_fin (th0)))
Florin Corasb11175d2018-11-09 14:34:08 -08002204 tcp_rcv_fin (wrk, tc0, b0, &error0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002205
2206 done:
2207 tcp_inc_err_counter (err_counters, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002208 }
2209
Florin Coras31c99552019-03-01 13:00:58 -08002210 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2211 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002212 err_counters[TCP_ERROR_MSG_QUEUE_FULL] = errors;
Florin Coras00cd22d2018-04-18 13:20:18 -07002213 tcp_store_err_counters (established, err_counters);
Florin Coras9ece3c02018-11-05 11:06:53 -08002214 tcp_handle_postponed_dequeues (wrk);
Florin Corasb11175d2018-11-09 14:34:08 -08002215 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08002216 vlib_buffer_free (vm, first_buffer, frame->n_vectors);
Florin Coras4df38712018-06-20 12:44:16 -07002217
2218 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002219}
2220
Filip Tehlare275bed2019-03-06 00:06:56 -08002221VLIB_NODE_FN (tcp4_established_node) (vlib_main_t * vm,
2222 vlib_node_runtime_t * node,
2223 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002224{
2225 return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2226}
2227
Filip Tehlare275bed2019-03-06 00:06:56 -08002228VLIB_NODE_FN (tcp6_established_node) (vlib_main_t * vm,
2229 vlib_node_runtime_t * node,
2230 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002231{
2232 return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2233}
2234
2235/* *INDENT-OFF* */
2236VLIB_REGISTER_NODE (tcp4_established_node) =
2237{
Dave Barach68b0fb02017-02-28 15:15:56 -05002238 .name = "tcp4-established",
2239 /* Takes a vector of packets. */
2240 .vector_size = sizeof (u32),
Florin Corase69f4952017-03-07 10:06:24 -08002241 .n_errors = TCP_N_ERROR,
2242 .error_strings = tcp_error_strings,
Dave Barach68b0fb02017-02-28 15:15:56 -05002243 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2244 .next_nodes =
2245 {
2246#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2247 foreach_tcp_state_next
2248#undef _
2249 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002250 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002251};
2252/* *INDENT-ON* */
2253
Dave Barach68b0fb02017-02-28 15:15:56 -05002254/* *INDENT-OFF* */
2255VLIB_REGISTER_NODE (tcp6_established_node) =
2256{
Dave Barach68b0fb02017-02-28 15:15:56 -05002257 .name = "tcp6-established",
2258 /* Takes a vector of packets. */
2259 .vector_size = sizeof (u32),
2260 .n_errors = TCP_N_ERROR,
2261 .error_strings = tcp_error_strings,
2262 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2263 .next_nodes =
2264 {
2265#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2266 foreach_tcp_state_next
2267#undef _
2268 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002269 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002270};
2271/* *INDENT-ON* */
2272
2273
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002274static u8
2275tcp_lookup_is_valid (tcp_connection_t * tc, tcp_header_t * hdr)
2276{
Florin Corascea194d2017-10-02 00:18:51 -07002277 transport_connection_t *tmp = 0;
2278 u64 handle;
2279
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002280 if (!tc)
2281 return 1;
2282
Florin Coras70131132017-11-27 02:43:30 -08002283 /* Proxy case */
2284 if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
2285 return 1;
2286
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002287 u8 is_valid = (tc->c_lcl_port == hdr->dst_port
2288 && (tc->state == TCP_STATE_LISTEN
2289 || tc->c_rmt_port == hdr->src_port));
2290
2291 if (!is_valid)
2292 {
Florin Corascea194d2017-10-02 00:18:51 -07002293 handle = session_lookup_half_open_handle (&tc->connection);
2294 tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
Florin Coras3cbc04b2017-10-02 00:18:51 -07002295 tc->c_proto, tc->c_is_ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002296
2297 if (tmp)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002298 {
2299 if (tmp->lcl_port == hdr->dst_port
2300 && tmp->rmt_port == hdr->src_port)
2301 {
Florin Corascea194d2017-10-02 00:18:51 -07002302 TCP_DBG ("half-open is valid!");
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002303 }
2304 }
2305 }
2306 return is_valid;
2307}
2308
2309/**
2310 * Lookup transport connection
2311 */
2312static tcp_connection_t *
Florin Corascea194d2017-10-02 00:18:51 -07002313tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
2314 u8 is_ip4)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002315{
2316 tcp_header_t *tcp;
2317 transport_connection_t *tconn;
2318 tcp_connection_t *tc;
Florin Corasdff48db2017-11-19 18:06:58 -08002319 u8 is_filtered = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002320 if (is_ip4)
2321 {
2322 ip4_header_t *ip4;
2323 ip4 = vlib_buffer_get_current (b);
2324 tcp = ip4_next_header (ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002325 tconn = session_lookup_connection_wt4 (fib_index,
2326 &ip4->dst_address,
2327 &ip4->src_address,
2328 tcp->dst_port,
2329 tcp->src_port,
2330 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002331 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002332 tc = tcp_get_connection_from_transport (tconn);
2333 ASSERT (tcp_lookup_is_valid (tc, tcp));
2334 }
2335 else
2336 {
2337 ip6_header_t *ip6;
2338 ip6 = vlib_buffer_get_current (b);
2339 tcp = ip6_next_header (ip6);
Florin Corascea194d2017-10-02 00:18:51 -07002340 tconn = session_lookup_connection_wt6 (fib_index,
2341 &ip6->dst_address,
2342 &ip6->src_address,
2343 tcp->dst_port,
2344 tcp->src_port,
2345 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002346 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002347 tc = tcp_get_connection_from_transport (tconn);
2348 ASSERT (tcp_lookup_is_valid (tc, tcp));
2349 }
2350 return tc;
2351}
2352
Dave Barach68b0fb02017-02-28 15:15:56 -05002353always_inline uword
2354tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2355 vlib_frame_t * from_frame, int is_ip4)
2356{
2357 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras7ac053b2018-11-05 15:57:21 -08002358 u32 n_left_from, *from, *first_buffer, errors = 0;
2359 u32 my_thread_index = vm->thread_index;
2360 tcp_worker_ctx_t *wrk = tcp_get_worker (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05002361
Florin Coras7ac053b2018-11-05 15:57:21 -08002362 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002363 n_left_from = from_frame->n_vectors;
2364
Dave Barach68b0fb02017-02-28 15:15:56 -05002365 while (n_left_from > 0)
2366 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002367 u32 bi0, ack0, seq0, error0 = TCP_ERROR_NONE;
2368 tcp_connection_t *tc0, *new_tc0;
2369 tcp_header_t *tcp0 = 0;
2370 tcp_rx_trace_t *t0;
2371 vlib_buffer_t *b0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002372
Florin Coras7ac053b2018-11-05 15:57:21 -08002373 bi0 = from[0];
2374 from += 1;
2375 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002376
Florin Coras7ac053b2018-11-05 15:57:21 -08002377 b0 = vlib_get_buffer (vm, bi0);
2378 tc0 =
2379 tcp_half_open_connection_get (vnet_buffer (b0)->tcp.connection_index);
2380 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002381 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002382 error0 = TCP_ERROR_INVALID_CONNECTION;
2383 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002384 }
2385
Florin Coras7ac053b2018-11-05 15:57:21 -08002386 /* Half-open completed recently but the connection was't removed
2387 * yet by the owning thread */
2388 if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2389 {
2390 /* Make sure the connection actually exists */
2391 ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2392 my_thread_index, is_ip4));
Florin Coras222e1f412019-02-16 20:47:32 -08002393 error0 = TCP_ERROR_SPURIOUS_SYN_ACK;
Florin Coras7ac053b2018-11-05 15:57:21 -08002394 goto drop;
2395 }
2396
2397 ack0 = vnet_buffer (b0)->tcp.ack_number;
2398 seq0 = vnet_buffer (b0)->tcp.seq_number;
2399 tcp0 = tcp_buffer_hdr (b0);
2400
2401 /* Crude check to see if the connection handle does not match
2402 * the packet. Probably connection just switched to established */
2403 if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2404 || tcp0->src_port != tc0->c_rmt_port))
2405 {
2406 error0 = TCP_ERROR_INVALID_CONNECTION;
2407 goto drop;
2408 }
2409
2410 if (PREDICT_FALSE (!tcp_ack (tcp0) && !tcp_rst (tcp0)
2411 && !tcp_syn (tcp0)))
2412 {
2413 error0 = TCP_ERROR_SEGMENT_INVALID;
2414 goto drop;
2415 }
2416
Florin Coras3c514d52018-12-22 11:39:33 -08002417 /* SYNs consume sequence numbers */
2418 vnet_buffer (b0)->tcp.seq_end += tcp_is_syn (tcp0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002419
2420 /*
2421 * 1. check the ACK bit
2422 */
2423
2424 /*
2425 * If the ACK bit is set
2426 * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2427 * the RST bit is set, if so drop the segment and return)
2428 * <SEQ=SEG.ACK><CTL=RST>
2429 * and discard the segment. Return.
2430 * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2431 */
2432 if (tcp_ack (tcp0))
2433 {
2434 if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
2435 {
2436 if (!tcp_rst (tcp0))
Florin Corasd4c49be2019-02-07 00:15:53 -08002437 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002438 error0 = TCP_ERROR_RCV_WND;
2439 goto drop;
2440 }
2441
2442 /* Make sure ACK is valid */
2443 if (seq_gt (tc0->snd_una, ack0))
2444 {
2445 error0 = TCP_ERROR_ACK_INVALID;
2446 goto drop;
2447 }
2448 }
2449
2450 /*
2451 * 2. check the RST bit
2452 */
2453
2454 if (tcp_rst (tcp0))
2455 {
2456 /* If ACK is acceptable, signal client that peer is not
2457 * willing to accept connection and drop connection*/
2458 if (tcp_ack (tcp0))
2459 tcp_connection_reset (tc0);
2460 error0 = TCP_ERROR_RST_RCVD;
2461 goto drop;
2462 }
2463
2464 /*
2465 * 3. check the security and precedence (skipped)
2466 */
2467
2468 /*
2469 * 4. check the SYN bit
2470 */
2471
2472 /* No SYN flag. Drop. */
2473 if (!tcp_syn (tcp0))
2474 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002475 error0 = TCP_ERROR_SEGMENT_INVALID;
2476 goto drop;
2477 }
2478
2479 /* Parse options */
Florin Coras80231112018-12-05 15:59:31 -08002480 if (tcp_options_parse (tcp0, &tc0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08002481 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002482 error0 = TCP_ERROR_OPTIONS;
2483 goto drop;
2484 }
2485
2486 /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2487 * current thread pool. */
2488 pool_get (tm->connections[my_thread_index], new_tc0);
Dave Barach178cf492018-11-13 16:34:13 -05002489 clib_memcpy_fast (new_tc0, tc0, sizeof (*new_tc0));
Florin Coras7ac053b2018-11-05 15:57:21 -08002490 new_tc0->c_c_index = new_tc0 - tm->connections[my_thread_index];
2491 new_tc0->c_thread_index = my_thread_index;
2492 new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2493 new_tc0->irs = seq0;
Florin Coras85a3ddd2018-12-24 16:54:34 -08002494 new_tc0->timers[TCP_TIMER_ESTABLISH_AO] = TCP_TIMER_HANDLE_INVALID;
Florin Coras7ac053b2018-11-05 15:57:21 -08002495 new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
2496 new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
2497
2498 /* If this is not the owning thread, wait for syn retransmit to
2499 * expire and cleanup then */
2500 if (tcp_half_open_connection_cleanup (tc0))
2501 tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
2502
2503 if (tcp_opts_tstamp (&new_tc0->rcv_opts))
2504 {
2505 new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
2506 new_tc0->tsval_recent_age = tcp_time_now ();
2507 }
2508
2509 if (tcp_opts_wscale (&new_tc0->rcv_opts))
2510 new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
Florin Corase80b5912018-12-12 19:25:43 -08002511 else
2512 new_tc0->rcv_wscale = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002513
2514 new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2515 << new_tc0->snd_wscale;
2516 new_tc0->snd_wl1 = seq0;
2517 new_tc0->snd_wl2 = ack0;
2518
2519 tcp_connection_init_vars (new_tc0);
2520
2521 /* SYN-ACK: See if we can switch to ESTABLISHED state */
2522 if (PREDICT_TRUE (tcp_ack (tcp0)))
2523 {
2524 /* Our SYN is ACKed: we have iss < ack = snd_una */
2525
2526 /* TODO Dequeue acknowledged segments if we support Fast Open */
2527 new_tc0->snd_una = ack0;
2528 new_tc0->state = TCP_STATE_ESTABLISHED;
2529
2530 /* Make sure las is initialized for the wnd computation */
2531 new_tc0->rcv_las = new_tc0->rcv_nxt;
2532
2533 /* Notify app that we have connection. If session layer can't
2534 * allocate session send reset */
2535 if (session_stream_connect_notify (&new_tc0->connection, 0))
2536 {
2537 clib_warning ("connect notify fail");
Florin Corasd4c49be2019-02-07 00:15:53 -08002538 tcp_send_reset_w_pkt (new_tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002539 tcp_connection_cleanup (new_tc0);
2540 goto drop;
2541 }
2542
Florin Coras2e31cc32018-09-25 14:00:34 -07002543 new_tc0->tx_fifo_size =
2544 transport_tx_fifo_size (&new_tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002545 /* Update rtt with the syn-ack sample */
Florin Corasefefc6b2018-11-07 12:49:19 -08002546 tcp_estimate_initial_rtt (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002547 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, new_tc0);
2548 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2549 }
2550 /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2551 else
2552 {
2553 new_tc0->state = TCP_STATE_SYN_RCVD;
2554
2555 /* Notify app that we have connection */
2556 if (session_stream_connect_notify (&new_tc0->connection, 0))
2557 {
2558 tcp_connection_cleanup (new_tc0);
Florin Corasd4c49be2019-02-07 00:15:53 -08002559 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002560 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc0);
2561 goto drop;
2562 }
2563
Florin Coras2e31cc32018-09-25 14:00:34 -07002564 new_tc0->tx_fifo_size =
2565 transport_tx_fifo_size (&new_tc0->connection);
2566 new_tc0->rtt_ts = 0;
2567 tcp_init_snd_vars (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002568 tcp_send_synack (new_tc0);
2569 error0 = TCP_ERROR_SYNS_RCVD;
2570 goto drop;
2571 }
2572
2573 /* Read data, if any */
2574 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
2575 {
2576 clib_warning ("rcvd data in syn-sent");
2577 error0 = tcp_segment_rcv (wrk, new_tc0, b0);
2578 if (error0 == TCP_ERROR_ACK_OK)
2579 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2580 }
2581 else
2582 {
2583 tcp_program_ack (wrk, new_tc0);
2584 }
2585
2586 drop:
2587
2588 tcp_inc_counter (syn_sent, error0, 1);
2589 if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
2590 {
2591 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05002592 clib_memcpy_fast (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2593 clib_memcpy_fast (&t0->tcp_connection, tc0,
2594 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08002595 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002596 }
2597
Florin Coras31c99552019-03-01 13:00:58 -08002598 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2599 my_thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002600 tcp_inc_counter (syn_sent, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras7ac053b2018-11-05 15:57:21 -08002601 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
2602
Dave Barach68b0fb02017-02-28 15:15:56 -05002603 return from_frame->n_vectors;
2604}
2605
Filip Tehlare275bed2019-03-06 00:06:56 -08002606VLIB_NODE_FN (tcp4_syn_sent_node) (vlib_main_t * vm,
2607 vlib_node_runtime_t * node,
2608 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002609{
2610 return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2611}
2612
Filip Tehlare275bed2019-03-06 00:06:56 -08002613VLIB_NODE_FN (tcp6_syn_sent_node) (vlib_main_t * vm,
2614 vlib_node_runtime_t * node,
2615 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002616{
2617 return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2618}
2619
2620/* *INDENT-OFF* */
2621VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2622{
Dave Barach68b0fb02017-02-28 15:15:56 -05002623 .name = "tcp4-syn-sent",
2624 /* Takes a vector of packets. */
2625 .vector_size = sizeof (u32),
2626 .n_errors = TCP_N_ERROR,
2627 .error_strings = tcp_error_strings,
2628 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2629 .next_nodes =
2630 {
2631#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2632 foreach_tcp_state_next
2633#undef _
2634 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002635 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002636};
2637/* *INDENT-ON* */
2638
Dave Barach68b0fb02017-02-28 15:15:56 -05002639/* *INDENT-OFF* */
2640VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2641{
Dave Barach68b0fb02017-02-28 15:15:56 -05002642 .name = "tcp6-syn-sent",
2643 /* Takes a vector of packets. */
2644 .vector_size = sizeof (u32),
2645 .n_errors = TCP_N_ERROR,
2646 .error_strings = tcp_error_strings,
2647 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2648 .next_nodes =
2649 {
2650#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2651 foreach_tcp_state_next
2652#undef _
Clement Durand6cf260c2017-04-13 13:27:04 +02002653 },
2654 .format_trace = format_tcp_rx_trace_short,
2655};
Dave Barach68b0fb02017-02-28 15:15:56 -05002656/* *INDENT-ON* */
2657
Dave Barach68b0fb02017-02-28 15:15:56 -05002658/**
Florin Corasd79b41e2017-03-04 05:37:52 -08002659 * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
Dave Barach68b0fb02017-02-28 15:15:56 -05002660 * as per RFC793 p. 64
2661 */
2662always_inline uword
2663tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2664 vlib_frame_t * from_frame, int is_ip4)
2665{
Florin Coras7ac053b2018-11-05 15:57:21 -08002666 u32 thread_index = vm->thread_index, errors = 0, *first_buffer;
2667 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras78cc4b02018-12-20 18:24:49 -08002668 u32 n_left_from, *from, max_dequeue;
Dave Barach68b0fb02017-02-28 15:15:56 -05002669
Florin Coras7ac053b2018-11-05 15:57:21 -08002670 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002671 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002672
2673 while (n_left_from > 0)
2674 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002675 u32 bi0, error0 = TCP_ERROR_NONE;
2676 tcp_header_t *tcp0 = 0;
2677 tcp_connection_t *tc0;
2678 vlib_buffer_t *b0;
2679 u8 is_fin0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002680
Florin Coras7ac053b2018-11-05 15:57:21 -08002681 bi0 = from[0];
2682 from += 1;
2683 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002684
Florin Coras7ac053b2018-11-05 15:57:21 -08002685 b0 = vlib_get_buffer (vm, bi0);
2686 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2687 thread_index);
2688 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002689 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002690 error0 = TCP_ERROR_INVALID_CONNECTION;
2691 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002692 }
2693
Florin Coras7ac053b2018-11-05 15:57:21 -08002694 tcp0 = tcp_buffer_hdr (b0);
2695 is_fin0 = tcp_is_fin (tcp0);
2696
Florin Coras7ac053b2018-11-05 15:57:21 -08002697 if (CLIB_DEBUG)
2698 {
2699 tcp_connection_t *tmp;
2700 tmp = tcp_lookup_connection (tc0->c_fib_index, b0, thread_index,
2701 is_ip4);
2702 if (tmp->state != tc0->state)
2703 {
Florin Corasb0f662f2018-12-27 14:51:46 -08002704 if (tc0->state != TCP_STATE_CLOSED)
2705 clib_warning ("state changed");
Florin Coras7ac053b2018-11-05 15:57:21 -08002706 goto drop;
2707 }
2708 }
2709
2710 /*
2711 * Special treatment for CLOSED
2712 */
2713 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
2714 {
2715 error0 = TCP_ERROR_CONNECTION_CLOSED;
2716 goto drop;
2717 }
2718
2719 /*
2720 * For all other states (except LISTEN)
2721 */
2722
2723 /* 1-4: check SEQ, RST, SYN */
2724 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, tcp0, &error0)))
2725 goto drop;
2726
2727 /* 5: check the ACK field */
2728 switch (tc0->state)
2729 {
2730 case TCP_STATE_SYN_RCVD:
2731 /*
2732 * If the segment acknowledgment is not acceptable, form a
2733 * reset segment,
2734 * <SEQ=SEG.ACK><CTL=RST>
2735 * and send it.
2736 */
2737 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
2738 {
Florin Corase78ac9d2018-12-16 21:33:00 -08002739 tcp_connection_reset (tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002740 error0 = TCP_ERROR_ACK_INVALID;
2741 goto drop;
2742 }
2743
Florin Coras4850e3e2018-12-12 14:34:38 -08002744 /* Make sure the ack is exactly right */
Florin Coras865872e2019-01-18 12:12:29 -08002745 if (tc0->rcv_nxt != vnet_buffer (b0)->tcp.seq_number || is_fin0)
Florin Coras4850e3e2018-12-12 14:34:38 -08002746 {
Florin Corase78ac9d2018-12-16 21:33:00 -08002747 tcp_connection_reset (tc0);
Florin Coras4850e3e2018-12-12 14:34:38 -08002748 error0 = TCP_ERROR_SEGMENT_INVALID;
Florin Coras4850e3e2018-12-12 14:34:38 -08002749 goto drop;
2750 }
2751
Florin Coras7ac053b2018-11-05 15:57:21 -08002752 /* Update rtt and rto */
Florin Corasefefc6b2018-11-07 12:49:19 -08002753 tcp_estimate_initial_rtt (tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002754
2755 /* Switch state to ESTABLISHED */
2756 tc0->state = TCP_STATE_ESTABLISHED;
2757 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
2758
2759 /* Initialize session variables */
2760 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
2761 tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2762 << tc0->rcv_opts.wscale;
2763 tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2764 tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
2765
2766 /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
2767 tcp_retransmit_timer_reset (tc0);
2768 tcp_timer_reset (tc0, TCP_TIMER_ESTABLISH);
Florin Corasa27a46e2019-02-18 13:02:28 -08002769 if (session_stream_accept_notify (&tc0->connection))
Florin Corasa9d5bea2018-12-17 08:24:19 -08002770 {
2771 error0 = TCP_ERROR_MSG_QUEUE_FULL;
2772 tcp_connection_reset (tc0);
2773 goto drop;
2774 }
Florin Coras7ac053b2018-11-05 15:57:21 -08002775 error0 = TCP_ERROR_ACK_OK;
2776 break;
2777 case TCP_STATE_ESTABLISHED:
2778 /* We can get packets in established state here because they
2779 * were enqueued before state change */
2780 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2781 goto drop;
2782
2783 break;
2784 case TCP_STATE_FIN_WAIT_1:
2785 /* In addition to the processing for the ESTABLISHED state, if
2786 * our FIN is now acknowledged then enter FIN-WAIT-2 and
2787 * continue processing in that state. */
2788 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2789 goto drop;
2790
2791 /* Still have to send the FIN */
2792 if (tc0->flags & TCP_CONN_FINPNDG)
2793 {
2794 /* TX fifo finally drained */
Florin Coras31c99552019-03-01 13:00:58 -08002795 max_dequeue = transport_max_tx_dequeue (&tc0->connection);
Florin Coras78cc4b02018-12-20 18:24:49 -08002796 if (max_dequeue <= tc0->burst_acked)
Florin Coras7ac053b2018-11-05 15:57:21 -08002797 tcp_send_fin (tc0);
2798 }
2799 /* If FIN is ACKed */
2800 else if (tc0->snd_una == tc0->snd_una_max)
2801 {
Florin Coras3c514d52018-12-22 11:39:33 -08002802 tcp_connection_set_state (tc0, TCP_STATE_FIN_WAIT_2);
Florin Coras7ac053b2018-11-05 15:57:21 -08002803
2804 /* Stop all retransmit timers because we have nothing more
2805 * to send. Enable waitclose though because we're willing to
2806 * wait for peer's FIN but not indefinitely. */
2807 tcp_connection_timers_reset (tc0);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002808 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Corasefefc6b2018-11-07 12:49:19 -08002809
2810 /* Don't try to deq the FIN acked */
2811 if (tc0->burst_acked > 1)
Florin Coras31c99552019-03-01 13:00:58 -08002812 session_tx_fifo_dequeue_drop (&tc0->connection,
2813 tc0->burst_acked - 1);
Florin Corasefefc6b2018-11-07 12:49:19 -08002814 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002815 }
2816 break;
2817 case TCP_STATE_FIN_WAIT_2:
2818 /* In addition to the processing for the ESTABLISHED state, if
2819 * the retransmission queue is empty, the user's CLOSE can be
2820 * acknowledged ("ok") but do not delete the TCB. */
2821 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2822 goto drop;
Florin Corasefefc6b2018-11-07 12:49:19 -08002823 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002824 break;
2825 case TCP_STATE_CLOSE_WAIT:
2826 /* Do the same processing as for the ESTABLISHED state. */
2827 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2828 goto drop;
2829
2830 if (tc0->flags & TCP_CONN_FINPNDG)
2831 {
2832 /* TX fifo finally drained */
Florin Coras31c99552019-03-01 13:00:58 -08002833 if (!transport_max_tx_dequeue (&tc0->connection))
Florin Coras7ac053b2018-11-05 15:57:21 -08002834 {
2835 tcp_send_fin (tc0);
2836 tcp_connection_timers_reset (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002837 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002838 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002839 }
2840 }
2841 break;
2842 case TCP_STATE_CLOSING:
2843 /* In addition to the processing for the ESTABLISHED state, if
2844 * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2845 * otherwise ignore the segment. */
2846 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2847 goto drop;
2848
Florin Coras85a3ddd2018-12-24 16:54:34 -08002849 tcp_connection_timers_reset (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002850 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002851 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002852 goto drop;
2853
2854 break;
2855 case TCP_STATE_LAST_ACK:
2856 /* The only thing that [should] arrive in this state is an
2857 * acknowledgment of our FIN. If our FIN is now acknowledged,
2858 * delete the TCB, enter the CLOSED state, and return. */
2859
2860 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
2861 {
2862 error0 = TCP_ERROR_ACK_INVALID;
2863 goto drop;
2864 }
2865 error0 = TCP_ERROR_ACK_OK;
2866 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
2867 /* Apparently our ACK for the peer's FIN was lost */
2868 if (is_fin0 && tc0->snd_una != tc0->snd_una_max)
2869 {
2870 tcp_send_fin (tc0);
2871 goto drop;
2872 }
2873
Florin Coras3c514d52018-12-22 11:39:33 -08002874 tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
Florin Coras7ac053b2018-11-05 15:57:21 -08002875
2876 /* Don't free the connection from the data path since
2877 * we can't ensure that we have no packets already enqueued
2878 * to output. Rely instead on the waitclose timer */
2879 tcp_connection_timers_reset (tc0);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002880 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002881
2882 goto drop;
2883
2884 break;
2885 case TCP_STATE_TIME_WAIT:
2886 /* The only thing that can arrive in this state is a
2887 * retransmission of the remote FIN. Acknowledge it, and restart
2888 * the 2 MSL timeout. */
2889
2890 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2891 goto drop;
2892
2893 tcp_program_ack (wrk, tc0);
2894 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
2895 goto drop;
2896
2897 break;
2898 default:
2899 ASSERT (0);
2900 }
2901
2902 /* 6: check the URG bit TODO */
2903
2904 /* 7: process the segment text */
2905 switch (tc0->state)
2906 {
2907 case TCP_STATE_ESTABLISHED:
2908 case TCP_STATE_FIN_WAIT_1:
2909 case TCP_STATE_FIN_WAIT_2:
2910 if (vnet_buffer (b0)->tcp.data_len)
2911 error0 = tcp_segment_rcv (wrk, tc0, b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002912 break;
2913 case TCP_STATE_CLOSE_WAIT:
2914 case TCP_STATE_CLOSING:
2915 case TCP_STATE_LAST_ACK:
2916 case TCP_STATE_TIME_WAIT:
2917 /* This should not occur, since a FIN has been received from the
2918 * remote side. Ignore the segment text. */
2919 break;
2920 }
2921
2922 /* 8: check the FIN bit */
2923 if (!is_fin0)
2924 goto drop;
2925
Florin Coras3c514d52018-12-22 11:39:33 -08002926 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0);
2927
Florin Coras7ac053b2018-11-05 15:57:21 -08002928 switch (tc0->state)
2929 {
2930 case TCP_STATE_ESTABLISHED:
Florin Coras3c514d52018-12-22 11:39:33 -08002931 /* Account for the FIN and send ack */
2932 tc0->rcv_nxt += 1;
2933 tcp_program_ack (wrk, tc0);
2934 tcp_connection_set_state (tc0, TCP_STATE_CLOSE_WAIT);
2935 tcp_program_disconnect (wrk, tc0);
2936 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
Florin Coras5c0f1662018-12-19 01:38:57 -08002937 break;
Florin Coras7ac053b2018-11-05 15:57:21 -08002938 case TCP_STATE_SYN_RCVD:
Florin Coras5c0f1662018-12-19 01:38:57 -08002939 /* Send FIN-ACK, enter LAST-ACK and because the app was not
2940 * notified yet, set a cleanup timer instead of relying on
2941 * disconnect notify and the implicit close call. */
Florin Coras7ac053b2018-11-05 15:57:21 -08002942 tcp_connection_timers_reset (tc0);
Florin Coras5c0f1662018-12-19 01:38:57 -08002943 tc0->rcv_nxt += 1;
Florin Coras7ac053b2018-11-05 15:57:21 -08002944 tcp_send_fin (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002945 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras5c0f1662018-12-19 01:38:57 -08002946 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002947 break;
2948 case TCP_STATE_CLOSE_WAIT:
2949 case TCP_STATE_CLOSING:
2950 case TCP_STATE_LAST_ACK:
2951 /* move along .. */
2952 break;
2953 case TCP_STATE_FIN_WAIT_1:
Florin Coras3c514d52018-12-22 11:39:33 -08002954 tc0->rcv_nxt += 1;
2955 tcp_connection_set_state (tc0, TCP_STATE_CLOSING);
Florin Coras565115e2019-02-20 19:48:31 -08002956 if (tc0->flags & TCP_CONN_FINPNDG)
2957 {
2958 /* Drop all outstanding tx data. */
Florin Coras31c99552019-03-01 13:00:58 -08002959 session_tx_fifo_dequeue_drop (&tc0->connection,
2960 transport_max_tx_dequeue
2961 (&tc0->connection));
Florin Coras565115e2019-02-20 19:48:31 -08002962 tcp_send_fin (tc0);
2963 }
2964 else
2965 tcp_program_ack (wrk, tc0);
2966 /* Wait for ACK for our FIN but not forever */
Florin Coras7ac053b2018-11-05 15:57:21 -08002967 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
2968 break;
2969 case TCP_STATE_FIN_WAIT_2:
2970 /* Got FIN, send ACK! Be more aggressive with resource cleanup */
Florin Coras3c514d52018-12-22 11:39:33 -08002971 tc0->rcv_nxt += 1;
2972 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras7ac053b2018-11-05 15:57:21 -08002973 tcp_connection_timers_reset (tc0);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002974 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002975 tcp_program_ack (wrk, tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002976 break;
2977 case TCP_STATE_TIME_WAIT:
2978 /* Remain in the TIME-WAIT state. Restart the time-wait
2979 * timeout.
2980 */
2981 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
2982 break;
2983 }
2984 error0 = TCP_ERROR_FIN_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -08002985
2986 drop:
2987
2988 tcp_inc_counter (rcv_process, error0, 1);
2989 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2990 {
2991 tcp_rx_trace_t *t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2992 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
2993 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002994 }
2995
Florin Coras31c99552019-03-01 13:00:58 -08002996 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2997 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002998 tcp_inc_counter (rcv_process, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras9ece3c02018-11-05 11:06:53 -08002999 tcp_handle_postponed_dequeues (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08003000 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3001
Dave Barach68b0fb02017-02-28 15:15:56 -05003002 return from_frame->n_vectors;
3003}
3004
Filip Tehlare275bed2019-03-06 00:06:56 -08003005VLIB_NODE_FN (tcp4_rcv_process_node) (vlib_main_t * vm,
3006 vlib_node_runtime_t * node,
3007 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003008{
3009 return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3010}
3011
Filip Tehlare275bed2019-03-06 00:06:56 -08003012VLIB_NODE_FN (tcp6_rcv_process_node) (vlib_main_t * vm,
3013 vlib_node_runtime_t * node,
3014 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003015{
3016 return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3017}
3018
3019/* *INDENT-OFF* */
3020VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
3021{
Dave Barach68b0fb02017-02-28 15:15:56 -05003022 .name = "tcp4-rcv-process",
3023 /* Takes a vector of packets. */
3024 .vector_size = sizeof (u32),
3025 .n_errors = TCP_N_ERROR,
3026 .error_strings = tcp_error_strings,
3027 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3028 .next_nodes =
3029 {
3030#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3031 foreach_tcp_state_next
3032#undef _
3033 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003034 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003035};
3036/* *INDENT-ON* */
3037
Dave Barach68b0fb02017-02-28 15:15:56 -05003038/* *INDENT-OFF* */
3039VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
3040{
Dave Barach68b0fb02017-02-28 15:15:56 -05003041 .name = "tcp6-rcv-process",
3042 /* Takes a vector of packets. */
3043 .vector_size = sizeof (u32),
3044 .n_errors = TCP_N_ERROR,
3045 .error_strings = tcp_error_strings,
3046 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3047 .next_nodes =
3048 {
3049#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3050 foreach_tcp_state_next
3051#undef _
3052 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003053 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003054};
3055/* *INDENT-ON* */
3056
Dave Barach68b0fb02017-02-28 15:15:56 -05003057/**
3058 * LISTEN state processing as per RFC 793 p. 65
3059 */
3060always_inline uword
3061tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3062 vlib_frame_t * from_frame, int is_ip4)
3063{
Florin Coras7ac053b2018-11-05 15:57:21 -08003064 u32 n_left_from, *from, n_syns = 0, *first_buffer;
Damjan Marion586afd72017-04-05 19:18:20 +02003065 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05003066
Florin Coras7ac053b2018-11-05 15:57:21 -08003067 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05003068 n_left_from = from_frame->n_vectors;
3069
Dave Barach68b0fb02017-02-28 15:15:56 -05003070 while (n_left_from > 0)
3071 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003072 u32 bi0;
3073 vlib_buffer_t *b0;
3074 tcp_rx_trace_t *t0;
3075 tcp_header_t *th0 = 0;
3076 tcp_connection_t *lc0;
3077 ip4_header_t *ip40;
3078 ip6_header_t *ip60;
3079 tcp_connection_t *child0;
3080 u32 error0 = TCP_ERROR_NONE;
Dave Barach68b0fb02017-02-28 15:15:56 -05003081
Florin Coras7ac053b2018-11-05 15:57:21 -08003082 bi0 = from[0];
3083 from += 1;
3084 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05003085
Florin Coras7ac053b2018-11-05 15:57:21 -08003086 b0 = vlib_get_buffer (vm, bi0);
3087 lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index);
3088
3089 if (is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003090 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003091 ip40 = vlib_buffer_get_current (b0);
3092 th0 = ip4_next_header (ip40);
3093 }
3094 else
3095 {
3096 ip60 = vlib_buffer_get_current (b0);
3097 th0 = ip6_next_header (ip60);
Dave Barach68b0fb02017-02-28 15:15:56 -05003098 }
3099
Florin Coras7ac053b2018-11-05 15:57:21 -08003100 /* Create child session. For syn-flood protection use filter */
3101
3102 /* 1. first check for an RST: handled in dispatch */
3103 /* if (tcp_rst (th0))
3104 goto drop;
3105 */
3106
3107 /* 2. second check for an ACK: handled in dispatch */
3108 /* if (tcp_ack (th0))
3109 {
3110 tcp_send_reset (b0, is_ip4);
3111 goto drop;
3112 }
3113 */
3114
3115 /* 3. check for a SYN (did that already) */
3116
3117 /* Make sure connection wasn't just created */
3118 child0 = tcp_lookup_connection (lc0->c_fib_index, b0, my_thread_index,
3119 is_ip4);
3120 if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN))
3121 {
3122 error0 = TCP_ERROR_CREATE_EXISTS;
3123 goto drop;
3124 }
3125
3126 /* Create child session and send SYN-ACK */
Florin Coras8124cb72018-12-16 20:57:29 -08003127 child0 = tcp_connection_alloc (my_thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08003128 child0->c_lcl_port = th0->dst_port;
3129 child0->c_rmt_port = th0->src_port;
3130 child0->c_is_ip4 = is_ip4;
3131 child0->state = TCP_STATE_SYN_RCVD;
3132 child0->c_fib_index = lc0->c_fib_index;
3133
3134 if (is_ip4)
3135 {
3136 child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32;
3137 child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32;
3138 }
3139 else
3140 {
Dave Barach178cf492018-11-13 16:34:13 -05003141 clib_memcpy_fast (&child0->c_lcl_ip6, &ip60->dst_address,
3142 sizeof (ip6_address_t));
3143 clib_memcpy_fast (&child0->c_rmt_ip6, &ip60->src_address,
3144 sizeof (ip6_address_t));
Florin Coras7ac053b2018-11-05 15:57:21 -08003145 }
3146
Florin Coras80231112018-12-05 15:59:31 -08003147 if (tcp_options_parse (th0, &child0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08003148 {
Florin Coras8124cb72018-12-16 20:57:29 -08003149 error0 = TCP_ERROR_OPTIONS;
3150 tcp_connection_free (child0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003151 goto drop;
3152 }
3153
3154 child0->irs = vnet_buffer (b0)->tcp.seq_number;
3155 child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1;
3156 child0->rcv_las = child0->rcv_nxt;
3157 child0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
3158
3159 /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
3160 * segments are used to initialize PAWS. */
3161 if (tcp_opts_tstamp (&child0->rcv_opts))
3162 {
3163 child0->tsval_recent = child0->rcv_opts.tsval;
3164 child0->tsval_recent_age = tcp_time_now ();
3165 }
3166
3167 if (tcp_opts_wscale (&child0->rcv_opts))
3168 child0->snd_wscale = child0->rcv_opts.wscale;
3169
3170 child0->snd_wnd = clib_net_to_host_u16 (th0->window)
3171 << child0->snd_wscale;
3172 child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
3173 child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
3174
3175 tcp_connection_init_vars (child0);
Florin Coras865872e2019-01-18 12:12:29 -08003176 child0->rto = TCP_RTO_MIN;
Florin Coras7ac053b2018-11-05 15:57:21 -08003177 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, child0, 1);
3178
Florin Corasc9940fc2019-02-05 20:55:11 -08003179 if (session_stream_accept (&child0->connection, lc0->c_s_index,
Florin Coras7ac053b2018-11-05 15:57:21 -08003180 0 /* notify */ ))
3181 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003182 tcp_connection_cleanup (child0);
3183 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
3184 goto drop;
3185 }
3186
Florin Coras2e31cc32018-09-25 14:00:34 -07003187 child0->tx_fifo_size = transport_tx_fifo_size (&child0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003188 tcp_send_synack (child0);
3189 tcp_timer_set (child0, TCP_TIMER_ESTABLISH, TCP_SYN_RCVD_TIME);
3190
3191 drop:
3192
3193 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3194 {
3195 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05003196 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
3197 clib_memcpy_fast (&t0->tcp_connection, lc0,
3198 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08003199 }
3200
3201 n_syns += (error0 == TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003202 }
Florin Coras00cd22d2018-04-18 13:20:18 -07003203
3204 tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
Florin Coras7ac053b2018-11-05 15:57:21 -08003205 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3206
Dave Barach68b0fb02017-02-28 15:15:56 -05003207 return from_frame->n_vectors;
3208}
3209
Filip Tehlare275bed2019-03-06 00:06:56 -08003210VLIB_NODE_FN (tcp4_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3211 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003212{
3213 return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3214}
3215
Filip Tehlare275bed2019-03-06 00:06:56 -08003216VLIB_NODE_FN (tcp6_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3217 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003218{
3219 return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3220}
3221
3222/* *INDENT-OFF* */
3223VLIB_REGISTER_NODE (tcp4_listen_node) =
3224{
Dave Barach68b0fb02017-02-28 15:15:56 -05003225 .name = "tcp4-listen",
3226 /* Takes a vector of packets. */
3227 .vector_size = sizeof (u32),
3228 .n_errors = TCP_N_ERROR,
3229 .error_strings = tcp_error_strings,
3230 .n_next_nodes = TCP_LISTEN_N_NEXT,
3231 .next_nodes =
3232 {
3233#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3234 foreach_tcp_state_next
3235#undef _
3236 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003237 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003238};
3239/* *INDENT-ON* */
3240
Dave Barach68b0fb02017-02-28 15:15:56 -05003241/* *INDENT-OFF* */
3242VLIB_REGISTER_NODE (tcp6_listen_node) =
3243{
Dave Barach68b0fb02017-02-28 15:15:56 -05003244 .name = "tcp6-listen",
3245 /* Takes a vector of packets. */
3246 .vector_size = sizeof (u32),
3247 .n_errors = TCP_N_ERROR,
3248 .error_strings = tcp_error_strings,
3249 .n_next_nodes = TCP_LISTEN_N_NEXT,
3250 .next_nodes =
3251 {
3252#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3253 foreach_tcp_state_next
3254#undef _
3255 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003256 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003257};
3258/* *INDENT-ON* */
3259
Dave Barach68b0fb02017-02-28 15:15:56 -05003260typedef enum _tcp_input_next
3261{
3262 TCP_INPUT_NEXT_DROP,
3263 TCP_INPUT_NEXT_LISTEN,
3264 TCP_INPUT_NEXT_RCV_PROCESS,
3265 TCP_INPUT_NEXT_SYN_SENT,
3266 TCP_INPUT_NEXT_ESTABLISHED,
3267 TCP_INPUT_NEXT_RESET,
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003268 TCP_INPUT_NEXT_PUNT,
Dave Barach68b0fb02017-02-28 15:15:56 -05003269 TCP_INPUT_N_NEXT
3270} tcp_input_next_t;
3271
3272#define foreach_tcp4_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003273 _ (DROP, "ip4-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003274 _ (LISTEN, "tcp4-listen") \
3275 _ (RCV_PROCESS, "tcp4-rcv-process") \
3276 _ (SYN_SENT, "tcp4-syn-sent") \
3277 _ (ESTABLISHED, "tcp4-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003278 _ (RESET, "tcp4-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003279 _ (PUNT, "ip4-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003280
3281#define foreach_tcp6_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003282 _ (DROP, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003283 _ (LISTEN, "tcp6-listen") \
3284 _ (RCV_PROCESS, "tcp6-rcv-process") \
3285 _ (SYN_SENT, "tcp6-syn-sent") \
3286 _ (ESTABLISHED, "tcp6-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003287 _ (RESET, "tcp6-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003288 _ (PUNT, "ip6-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003289
Dave Barach68b0fb02017-02-28 15:15:56 -05003290#define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
3291
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003292static void
3293tcp_input_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07003294 vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003295{
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003296 tcp_connection_t *tc;
3297 tcp_header_t *tcp;
3298 tcp_rx_trace_t *t;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003299 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05003300
Florin Coras4df38712018-06-20 12:44:16 -07003301 for (i = 0; i < n_bufs; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05003302 {
Florin Coras4df38712018-06-20 12:44:16 -07003303 if (bs[i]->flags & VLIB_BUFFER_IS_TRACED)
3304 {
3305 t = vlib_add_trace (vm, node, bs[i], sizeof (*t));
3306 tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index,
3307 vm->thread_index);
3308 tcp = vlib_buffer_get_current (bs[i]);
3309 tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4);
3310 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003311 }
3312}
Dave Barach68b0fb02017-02-28 15:15:56 -05003313
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003314static void
3315tcp_input_set_error_next (tcp_main_t * tm, u16 * next, u32 * error, u8 is_ip4)
3316{
Florin Corasb5e55a22019-01-10 12:42:47 -08003317 if (*error == TCP_ERROR_FILTERED || *error == TCP_ERROR_WRONG_THREAD)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003318 {
3319 *next = TCP_INPUT_NEXT_DROP;
3320 }
3321 else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6))
3322 {
3323 *next = TCP_INPUT_NEXT_PUNT;
3324 *error = TCP_ERROR_PUNT;
3325 }
3326 else
3327 {
3328 *next = TCP_INPUT_NEXT_RESET;
3329 *error = TCP_ERROR_NO_LISTENER;
3330 }
3331}
Dave Barach68b0fb02017-02-28 15:15:56 -05003332
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003333static inline tcp_connection_t *
3334tcp_input_lookup_buffer (vlib_buffer_t * b, u8 thread_index, u32 * error,
3335 u8 is_ip4)
3336{
3337 u32 fib_index = vnet_buffer (b)->ip.fib_index;
3338 int n_advance_bytes, n_data_bytes;
3339 transport_connection_t *tc;
3340 tcp_header_t *tcp;
Florin Corasb5e55a22019-01-10 12:42:47 -08003341 u8 result = 0;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003342
3343 if (is_ip4)
3344 {
3345 ip4_header_t *ip4 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003346 int ip_hdr_bytes = ip4_header_bytes (ip4);
3347 if (PREDICT_FALSE (b->current_length < ip_hdr_bytes + sizeof (*tcp)))
3348 {
3349 *error = TCP_ERROR_LENGTH;
3350 return 0;
3351 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003352 tcp = ip4_next_header (ip4);
3353 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip4;
Florin Corasb8dda5f2018-12-05 10:03:34 -08003354 n_advance_bytes = (ip_hdr_bytes + tcp_header_bytes (tcp));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003355 n_data_bytes = clib_net_to_host_u16 (ip4->length) - n_advance_bytes;
3356
3357 /* Length check. Checksum computed by ipx_local no need to compute again */
Florin Corasb8dda5f2018-12-05 10:03:34 -08003358 if (PREDICT_FALSE (n_data_bytes < 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05003359 {
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003360 *error = TCP_ERROR_LENGTH;
3361 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003362 }
3363
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003364 tc = session_lookup_connection_wt4 (fib_index, &ip4->dst_address,
3365 &ip4->src_address, tcp->dst_port,
3366 tcp->src_port, TRANSPORT_PROTO_TCP,
Florin Corasb5e55a22019-01-10 12:42:47 -08003367 thread_index, &result);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003368 }
3369 else
3370 {
3371 ip6_header_t *ip6 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003372 if (PREDICT_FALSE (b->current_length < sizeof (*ip6) + sizeof (*tcp)))
3373 {
3374 *error = TCP_ERROR_LENGTH;
3375 return 0;
3376 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003377 tcp = ip6_next_header (ip6);
3378 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip6;
3379 n_advance_bytes = tcp_header_bytes (tcp);
3380 n_data_bytes = clib_net_to_host_u16 (ip6->payload_length)
3381 - n_advance_bytes;
3382 n_advance_bytes += sizeof (ip6[0]);
3383
Florin Corasb8dda5f2018-12-05 10:03:34 -08003384 if (PREDICT_FALSE (n_data_bytes < 0))
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003385 {
3386 *error = TCP_ERROR_LENGTH;
3387 return 0;
3388 }
Florin Coras6164e972019-02-07 10:31:08 -08003389 if (PREDICT_FALSE
3390 (ip6_address_is_link_local_unicast (&ip6->dst_address)))
3391 {
3392 ip4_main_t *im = &ip4_main;
3393 fib_index = vec_elt (im->fib_index_by_sw_if_index,
3394 vnet_buffer (b)->sw_if_index[VLIB_RX]);
3395 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003396
3397 tc = session_lookup_connection_wt6 (fib_index, &ip6->dst_address,
3398 &ip6->src_address, tcp->dst_port,
3399 tcp->src_port, TRANSPORT_PROTO_TCP,
Florin Corasb5e55a22019-01-10 12:42:47 -08003400 thread_index, &result);
Dave Barach68b0fb02017-02-28 15:15:56 -05003401 }
3402
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003403 vnet_buffer (b)->tcp.seq_number = clib_net_to_host_u32 (tcp->seq_number);
3404 vnet_buffer (b)->tcp.ack_number = clib_net_to_host_u32 (tcp->ack_number);
3405 vnet_buffer (b)->tcp.data_offset = n_advance_bytes;
3406 vnet_buffer (b)->tcp.data_len = n_data_bytes;
Florin Coras3c514d52018-12-22 11:39:33 -08003407 vnet_buffer (b)->tcp.seq_end = vnet_buffer (b)->tcp.seq_number
3408 + n_data_bytes;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003409 vnet_buffer (b)->tcp.flags = 0;
3410
Florin Corasb5e55a22019-01-10 12:42:47 -08003411 *error = result ? TCP_ERROR_NONE + result : *error;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003412
3413 return tcp_get_connection_from_transport (tc);
3414}
3415
3416static inline void
3417tcp_input_dispatch_buffer (tcp_main_t * tm, tcp_connection_t * tc,
3418 vlib_buffer_t * b, u16 * next, u32 * error)
3419{
3420 tcp_header_t *tcp;
3421 u8 flags;
3422
3423 tcp = tcp_buffer_hdr (b);
3424 flags = tcp->flags & filter_flags;
3425 *next = tm->dispatch_table[tc->state][flags].next;
3426 *error = tm->dispatch_table[tc->state][flags].error;
3427
3428 if (PREDICT_FALSE (*error == TCP_ERROR_DISPATCH
3429 || *next == TCP_INPUT_NEXT_RESET))
3430 {
3431 /* Overload tcp flags to store state */
3432 tcp_state_t state = tc->state;
3433 vnet_buffer (b)->tcp.flags = tc->state;
3434
3435 if (*error == TCP_ERROR_DISPATCH)
Florin Corasa9d5bea2018-12-17 08:24:19 -08003436 clib_warning ("tcp conn %u disp error state %U flags %U",
3437 tc->c_c_index, format_tcp_state, state,
3438 format_tcp_flags, (int) flags);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003439 }
3440}
3441
3442always_inline uword
3443tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3444 vlib_frame_t * frame, int is_ip4)
3445{
3446 u32 n_left_from, *from, thread_index = vm->thread_index;
3447 tcp_main_t *tm = vnet_get_tcp_main ();
3448 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
3449 u16 nexts[VLIB_FRAME_SIZE], *next;
3450
Florin Corasbe72ae62018-11-01 11:23:03 -07003451 tcp_set_time_now (tcp_get_worker (thread_index));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003452
3453 from = vlib_frame_vector_args (frame);
3454 n_left_from = frame->n_vectors;
3455 vlib_get_buffers (vm, from, bufs, n_left_from);
3456
3457 b = bufs;
3458 next = nexts;
3459
3460 while (n_left_from >= 4)
3461 {
3462 u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER;
3463 tcp_connection_t *tc0, *tc1;
3464
3465 {
3466 vlib_prefetch_buffer_header (b[2], STORE);
3467 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3468
3469 vlib_prefetch_buffer_header (b[3], STORE);
3470 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3471 }
3472
3473 next[0] = next[1] = TCP_INPUT_NEXT_DROP;
3474
3475 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4);
3476 tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4);
3477
3478 if (PREDICT_TRUE (!tc0 + !tc1 == 0))
3479 {
3480 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3481 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3482
3483 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3484 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3485
3486 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3487 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3488 }
3489 else
3490 {
3491 if (PREDICT_TRUE (tc0 != 0))
3492 {
3493 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3494 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3495 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3496 }
3497 else
3498 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3499
3500 if (PREDICT_TRUE (tc1 != 0))
3501 {
3502 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3503 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3504 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3505 }
3506 else
3507 tcp_input_set_error_next (tm, &next[1], &error1, is_ip4);
3508 }
3509
3510 b += 2;
3511 next += 2;
3512 n_left_from -= 2;
3513 }
3514 while (n_left_from > 0)
3515 {
3516 tcp_connection_t *tc0;
3517 u32 error0 = TCP_ERROR_NO_LISTENER;
3518
3519 if (n_left_from > 1)
3520 {
3521 vlib_prefetch_buffer_header (b[1], STORE);
3522 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3523 }
3524
3525 next[0] = TCP_INPUT_NEXT_DROP;
3526 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4);
3527 if (PREDICT_TRUE (tc0 != 0))
3528 {
3529 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3530 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3531 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3532 }
3533 else
3534 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3535
3536 b += 1;
3537 next += 1;
3538 n_left_from -= 1;
3539 }
3540
3541 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
3542 tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4);
3543
3544 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
3545 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05003546}
3547
Filip Tehlare275bed2019-03-06 00:06:56 -08003548VLIB_NODE_FN (tcp4_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3549 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003550{
3551 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3552}
3553
Filip Tehlare275bed2019-03-06 00:06:56 -08003554VLIB_NODE_FN (tcp6_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3555 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003556{
3557 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3558}
3559
3560/* *INDENT-OFF* */
3561VLIB_REGISTER_NODE (tcp4_input_node) =
3562{
Dave Barach68b0fb02017-02-28 15:15:56 -05003563 .name = "tcp4-input",
3564 /* Takes a vector of packets. */
3565 .vector_size = sizeof (u32),
3566 .n_errors = TCP_N_ERROR,
3567 .error_strings = tcp_error_strings,
3568 .n_next_nodes = TCP_INPUT_N_NEXT,
3569 .next_nodes =
3570 {
3571#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3572 foreach_tcp4_input_next
3573#undef _
3574 },
3575 .format_buffer = format_tcp_header,
3576 .format_trace = format_tcp_rx_trace,
3577};
3578/* *INDENT-ON* */
3579
Dave Barach68b0fb02017-02-28 15:15:56 -05003580/* *INDENT-OFF* */
3581VLIB_REGISTER_NODE (tcp6_input_node) =
3582{
Dave Barach68b0fb02017-02-28 15:15:56 -05003583 .name = "tcp6-input",
3584 /* Takes a vector of packets. */
3585 .vector_size = sizeof (u32),
3586 .n_errors = TCP_N_ERROR,
3587 .error_strings = tcp_error_strings,
3588 .n_next_nodes = TCP_INPUT_N_NEXT,
3589 .next_nodes =
3590 {
3591#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3592 foreach_tcp6_input_next
3593#undef _
3594 },
3595 .format_buffer = format_tcp_header,
3596 .format_trace = format_tcp_rx_trace,
3597};
3598/* *INDENT-ON* */
3599
Filip Tehlare275bed2019-03-06 00:06:56 -08003600#ifndef CLIB_MARCH_VARIANT
Dave Barach68b0fb02017-02-28 15:15:56 -05003601static void
3602tcp_dispatch_table_init (tcp_main_t * tm)
3603{
3604 int i, j;
3605 for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3606 for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3607 {
3608 tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3609 tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3610 }
3611
3612#define _(t,f,n,e) \
3613do { \
3614 tm->dispatch_table[TCP_STATE_##t][f].next = (n); \
3615 tm->dispatch_table[TCP_STATE_##t][f].error = (e); \
3616} while (0)
3617
Florin Coras678a6572018-12-17 21:31:25 -08003618 /* RFC 793: In LISTEN if RST drop and if ACK return RST */
Florin Coras5c0f1662018-12-19 01:38:57 -08003619 _(LISTEN, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras678a6572018-12-17 21:31:25 -08003620 _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_ACK_INVALID);
3621 _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_INVALID_CONNECTION);
Dave Barach68b0fb02017-02-28 15:15:56 -05003622 _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003623 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3624 TCP_ERROR_ACK_INVALID);
3625 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3626 TCP_ERROR_SEGMENT_INVALID);
3627 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3628 TCP_ERROR_SEGMENT_INVALID);
3629 _(LISTEN, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3630 TCP_ERROR_INVALID_CONNECTION);
3631 _(LISTEN, TCP_FLAG_FIN, TCP_INPUT_NEXT_RESET, TCP_ERROR_SEGMENT_INVALID);
Dave Barach2c25a622017-06-26 11:35:07 -04003632 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
Florin Coras678a6572018-12-17 21:31:25 -08003633 TCP_ERROR_SEGMENT_INVALID);
3634 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3635 TCP_ERROR_SEGMENT_INVALID);
3636 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003637 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003638 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_DROP,
3639 TCP_ERROR_SEGMENT_INVALID);
3640 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3641 TCP_ERROR_SEGMENT_INVALID);
3642 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3643 TCP_ERROR_SEGMENT_INVALID);
3644 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3645 TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003646 /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3647 _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc28764f2017-04-26 00:08:42 -07003648 _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase8460c72018-09-24 14:40:40 -07003649 _(SYN_RCVD, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3650 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003651 _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003652 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3653 TCP_ERROR_NONE);
3654 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3655 TCP_ERROR_NONE);
3656 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3657 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3658 _(SYN_RCVD, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc01c4452018-09-20 18:36:54 -07003659 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3660 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003661 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3662 TCP_ERROR_NONE);
3663 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3664 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3665 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3666 TCP_ERROR_NONE);
3667 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3668 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3669 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3670 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3671 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3672 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3673 _(SYN_RCVD, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003674 /* SYN-ACK for a SYN */
3675 _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3676 TCP_ERROR_NONE);
3677 _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3678 _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3679 _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3680 TCP_ERROR_NONE);
Florin Coras222e1f412019-02-16 20:47:32 -08003681 _(SYN_SENT, TCP_FLAG_FIN, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3682 _(SYN_SENT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3683 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003684 /* ACK for for established connection -> tcp-established. */
3685 _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3686 /* FIN for for established connection -> tcp-established. */
3687 _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3688 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3689 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003690 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3691 TCP_ERROR_NONE);
3692 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3693 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3694 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED,
3695 TCP_ERROR_NONE);
3696 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3697 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3698 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3699 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3700 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3701 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasd79b41e2017-03-04 05:37:52 -08003702 _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003703 _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3704 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003705 _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003706 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3707 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003708 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3709 TCP_ERROR_NONE);
3710 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3711 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3712 _(ESTABLISHED, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003713 /* ACK or FIN-ACK to our FIN */
3714 _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3715 _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
3716 TCP_ERROR_NONE);
3717 /* FIN in reply to our FIN from the other side */
Florin Coras76bc1302018-12-23 23:36:36 -08003718 _(FIN_WAIT_1, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003719 _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08003720 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3721 TCP_ERROR_NONE);
3722 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3723 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3724 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3725 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3726 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3727 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3728 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3729 TCP_ERROR_NONE);
3730 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3731 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras5c0f1662018-12-19 01:38:57 -08003732 _(FIN_WAIT_1, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08003733 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3734 TCP_ERROR_NONE);
3735 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3736 TCP_ERROR_NONE);
3737 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3738 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003739 _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase96bf632018-12-18 22:44:27 -08003740 _(FIN_WAIT_1, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3741 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003742 _(CLOSING, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras56318932018-05-23 20:44:12 -07003743 _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08003744 _(CLOSING, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003745 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3746 TCP_ERROR_NONE);
3747 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3748 TCP_ERROR_NONE);
3749 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3750 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08003751 _(CLOSING, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3752 _(CLOSING, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3753 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003754 _(CLOSING, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras3c514d52018-12-22 11:39:33 -08003755 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3756 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003757 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3758 TCP_ERROR_NONE);
3759 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3760 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3761 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3762 TCP_ERROR_NONE);
3763 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3764 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3765 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3766 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003767 /* FIN confirming that the peer (app) has closed */
3768 _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasf6d68ed2017-05-07 19:12:02 -07003769 _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003770 _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3771 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003772 _(FIN_WAIT_2, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3773 _(FIN_WAIT_2, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3774 TCP_ERROR_NONE);
Florin Corasf03a59a2017-06-09 21:07:32 -07003775 _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3776 _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3777 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003778 _(CLOSE_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3779 _(CLOSE_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3780 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003781 _(LAST_ACK, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003782 _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003783 _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3784 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3785 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003786 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3787 TCP_ERROR_NONE);
3788 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3789 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3790 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3791 TCP_ERROR_NONE);
3792 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3793 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3794 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3795 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3796 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3797 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasdb84e572017-05-09 18:54:52 -07003798 _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003799 _(LAST_ACK, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3800 TCP_ERROR_NONE);
Florin Corasc01d5782018-10-17 14:53:11 -07003801 _(LAST_ACK, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003802 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3803 TCP_ERROR_NONE);
3804 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3805 TCP_ERROR_NONE);
3806 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3807 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003808 _(TIME_WAIT, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003809 _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3810 _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3811 TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003812 _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003813 _(TIME_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3814 TCP_ERROR_NONE);
Florin Coras50958952017-08-29 14:50:13 -07003815 _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003816 /* RFC793 CLOSED: An incoming segment containing a RST is discarded. An
3817 * incoming segment not containing a RST causes a RST to be sent in
3818 * response.*/
Florin Corasdc629cd2017-05-09 00:52:37 -07003819 _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08003820 _(CLOSED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003821 TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08003822 _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
3823 _(CLOSED, TCP_FLAG_SYN, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
3824 _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3825 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003826#undef _
3827}
3828
Florin Coras0dbd5172018-06-25 16:19:34 -07003829static clib_error_t *
Dave Barach68b0fb02017-02-28 15:15:56 -05003830tcp_input_init (vlib_main_t * vm)
3831{
3832 clib_error_t *error = 0;
3833 tcp_main_t *tm = vnet_get_tcp_main ();
3834
3835 if ((error = vlib_call_init_function (vm, tcp_init)))
3836 return error;
3837
3838 /* Initialize dispatch table. */
3839 tcp_dispatch_table_init (tm);
3840
3841 return error;
3842}
3843
3844VLIB_INIT_FUNCTION (tcp_input_init);
3845
Filip Tehlare275bed2019-03-06 00:06:56 -08003846#endif /* CLIB_MARCH_VARIANT */
3847
Dave Barach68b0fb02017-02-28 15:15:56 -05003848/*
3849 * fd.io coding-style-patch-verification: ON
3850 *
3851 * Local Variables:
3852 * eval: (c-set-style "gnu")
3853 * End:
3854 */