blob: c94e5babc50bb984a35a585be7a5df57f514b1f7 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Coras830fe732019-02-15 18:20:58 -08002 * Copyright (c) 2016-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vppinfra/sparse_vec.h>
Simon Zhang1146ff42019-09-02 22:54:00 +080017#include <vnet/fib/ip4_fib.h>
18#include <vnet/fib/ip6_fib.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050019#include <vnet/tcp/tcp_packet.h>
20#include <vnet/tcp/tcp.h>
21#include <vnet/session/session.h>
22#include <math.h>
23
24static char *tcp_error_strings[] = {
25#define tcp_error(n,s) s,
26#include <vnet/tcp/tcp_error.def>
27#undef tcp_error
28};
29
30/* All TCP nodes have the same outgoing arcs */
31#define foreach_tcp_state_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080032 _ (DROP4, "ip4-drop") \
33 _ (DROP6, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -050034 _ (TCP4_OUTPUT, "tcp4-output") \
35 _ (TCP6_OUTPUT, "tcp6-output")
36
37typedef enum _tcp_established_next
38{
39#define _(s,n) TCP_ESTABLISHED_NEXT_##s,
40 foreach_tcp_state_next
41#undef _
42 TCP_ESTABLISHED_N_NEXT,
43} tcp_established_next_t;
44
45typedef enum _tcp_rcv_process_next
46{
47#define _(s,n) TCP_RCV_PROCESS_NEXT_##s,
48 foreach_tcp_state_next
49#undef _
50 TCP_RCV_PROCESS_N_NEXT,
51} tcp_rcv_process_next_t;
52
53typedef enum _tcp_syn_sent_next
54{
55#define _(s,n) TCP_SYN_SENT_NEXT_##s,
56 foreach_tcp_state_next
57#undef _
58 TCP_SYN_SENT_N_NEXT,
59} tcp_syn_sent_next_t;
60
61typedef enum _tcp_listen_next
62{
63#define _(s,n) TCP_LISTEN_NEXT_##s,
64 foreach_tcp_state_next
65#undef _
66 TCP_LISTEN_N_NEXT,
67} tcp_listen_next_t;
68
69/* Generic, state independent indices */
70typedef enum _tcp_state_next
71{
72#define _(s,n) TCP_NEXT_##s,
73 foreach_tcp_state_next
74#undef _
75 TCP_STATE_N_NEXT,
76} tcp_state_next_t;
77
78#define tcp_next_output(is_ip4) (is_ip4 ? TCP_NEXT_TCP4_OUTPUT \
79 : TCP_NEXT_TCP6_OUTPUT)
80
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080081#define tcp_next_drop(is_ip4) (is_ip4 ? TCP_NEXT_DROP4 \
82 : TCP_NEXT_DROP6)
83
Dave Barach68b0fb02017-02-28 15:15:56 -050084/**
85 * Validate segment sequence number. As per RFC793:
86 *
87 * Segment Receive Test
88 * Length Window
89 * ------- ------- -------------------------------------------
90 * 0 0 SEG.SEQ = RCV.NXT
91 * 0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
92 * >0 0 not acceptable
93 * >0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
94 * or RCV.NXT =< SEG.SEQ+SEG.LEN-1 < RCV.NXT+RCV.WND
95 *
96 * This ultimately consists in checking if segment falls within the window.
97 * The one important difference compared to RFC793 is that we use rcv_las,
98 * or the rcv_nxt at last ack sent instead of rcv_nxt since that's the
99 * peer's reference when computing our receive window.
100 *
Florin Coras6792ec02017-03-13 03:49:51 -0700101 * This:
102 * seq_leq (end_seq, tc->rcv_las + tc->rcv_wnd) && seq_geq (seq, tc->rcv_las)
103 * however, is too strict when we have retransmits. Instead we just check that
104 * the seq is not beyond the right edge and that the end of the segment is not
105 * less than the left edge.
106 *
107 * N.B. rcv_nxt and rcv_wnd are both updated in this node if acks are sent, so
108 * use rcv_nxt in the right edge window test instead of rcv_las.
109 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500110 */
111always_inline u8
112tcp_segment_in_rcv_wnd (tcp_connection_t * tc, u32 seq, u32 end_seq)
113{
Florin Coras6792ec02017-03-13 03:49:51 -0700114 return (seq_geq (end_seq, tc->rcv_las)
115 && seq_leq (seq, tc->rcv_nxt + tc->rcv_wnd));
Dave Barach68b0fb02017-02-28 15:15:56 -0500116}
117
Florin Corasdb84e572017-05-09 18:54:52 -0700118/**
119 * Parse TCP header options.
120 *
121 * @param th TCP header
122 * @param to TCP options data structure to be populated
Florin Coras80231112018-12-05 15:59:31 -0800123 * @param is_syn set if packet is syn
Florin Corasdb84e572017-05-09 18:54:52 -0700124 * @return -1 if parsing failed
125 */
Florin Coras80231112018-12-05 15:59:31 -0800126static inline int
127tcp_options_parse (tcp_header_t * th, tcp_options_t * to, u8 is_syn)
Dave Barach68b0fb02017-02-28 15:15:56 -0500128{
129 const u8 *data;
130 u8 opt_len, opts_len, kind;
131 int j;
132 sack_block_t b;
133
134 opts_len = (tcp_doff (th) << 2) - sizeof (tcp_header_t);
135 data = (const u8 *) (th + 1);
136
137 /* Zero out all flags but those set in SYN */
Florin Corasd6fe5bd2018-10-16 19:52:10 -0700138 to->flags &= (TCP_OPTS_FLAG_SACK_PERMITTED | TCP_OPTS_FLAG_WSCALE
Florin Corasa9e1f7b2019-10-16 12:26:51 -0700139 | TCP_OPTS_FLAG_TSTAMP | TCP_OPTS_FLAG_MSS);
Dave Barach68b0fb02017-02-28 15:15:56 -0500140
141 for (; opts_len > 0; opts_len -= opt_len, data += opt_len)
142 {
143 kind = data[0];
144
145 /* Get options length */
146 if (kind == TCP_OPTION_EOL)
147 break;
148 else if (kind == TCP_OPTION_NOOP)
Florin Corasdb84e572017-05-09 18:54:52 -0700149 {
150 opt_len = 1;
151 continue;
152 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500153 else
154 {
155 /* broken options */
156 if (opts_len < 2)
Florin Corasdb84e572017-05-09 18:54:52 -0700157 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500158 opt_len = data[1];
159
160 /* weird option length */
161 if (opt_len < 2 || opt_len > opts_len)
Florin Corasdb84e572017-05-09 18:54:52 -0700162 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500163 }
164
165 /* Parse options */
166 switch (kind)
167 {
168 case TCP_OPTION_MSS:
Florin Coras80231112018-12-05 15:59:31 -0800169 if (!is_syn)
170 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500171 if ((opt_len == TCP_OPTION_LEN_MSS) && tcp_syn (th))
172 {
173 to->flags |= TCP_OPTS_FLAG_MSS;
174 to->mss = clib_net_to_host_u16 (*(u16 *) (data + 2));
175 }
176 break;
177 case TCP_OPTION_WINDOW_SCALE:
Florin Coras80231112018-12-05 15:59:31 -0800178 if (!is_syn)
179 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500180 if ((opt_len == TCP_OPTION_LEN_WINDOW_SCALE) && tcp_syn (th))
181 {
182 to->flags |= TCP_OPTS_FLAG_WSCALE;
183 to->wscale = data[2];
184 if (to->wscale > TCP_MAX_WND_SCALE)
Florin Corasa9d5bea2018-12-17 08:24:19 -0800185 to->wscale = TCP_MAX_WND_SCALE;
Dave Barach68b0fb02017-02-28 15:15:56 -0500186 }
187 break;
188 case TCP_OPTION_TIMESTAMP:
Florin Coras80231112018-12-05 15:59:31 -0800189 if (is_syn)
190 to->flags |= TCP_OPTS_FLAG_TSTAMP;
191 if ((to->flags & TCP_OPTS_FLAG_TSTAMP)
192 && opt_len == TCP_OPTION_LEN_TIMESTAMP)
Dave Barach68b0fb02017-02-28 15:15:56 -0500193 {
Dave Barach68b0fb02017-02-28 15:15:56 -0500194 to->tsval = clib_net_to_host_u32 (*(u32 *) (data + 2));
195 to->tsecr = clib_net_to_host_u32 (*(u32 *) (data + 6));
196 }
197 break;
198 case TCP_OPTION_SACK_PERMITTED:
Florin Coras80231112018-12-05 15:59:31 -0800199 if (!is_syn)
200 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500201 if (opt_len == TCP_OPTION_LEN_SACK_PERMITTED && tcp_syn (th))
202 to->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
203 break;
204 case TCP_OPTION_SACK_BLOCK:
205 /* If SACK permitted was not advertised or a SYN, break */
206 if ((to->flags & TCP_OPTS_FLAG_SACK_PERMITTED) == 0 || tcp_syn (th))
207 break;
208
209 /* If too short or not correctly formatted, break */
210 if (opt_len < 10 || ((opt_len - 2) % TCP_OPTION_LEN_SACK_BLOCK))
211 break;
212
213 to->flags |= TCP_OPTS_FLAG_SACK;
214 to->n_sack_blocks = (opt_len - 2) / TCP_OPTION_LEN_SACK_BLOCK;
215 vec_reset_length (to->sacks);
216 for (j = 0; j < to->n_sack_blocks; j++)
217 {
Florin Coras3eb50622017-07-13 01:24:57 -0400218 b.start = clib_net_to_host_u32 (*(u32 *) (data + 2 + 8 * j));
219 b.end = clib_net_to_host_u32 (*(u32 *) (data + 6 + 8 * j));
Dave Barach68b0fb02017-02-28 15:15:56 -0500220 vec_add1 (to->sacks, b);
221 }
222 break;
223 default:
224 /* Nothing to see here */
225 continue;
226 }
227 }
Florin Corasdb84e572017-05-09 18:54:52 -0700228 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500229}
230
Florin Corasc28764f2017-04-26 00:08:42 -0700231/**
232 * RFC1323: Check against wrapped sequence numbers (PAWS). If we have
233 * timestamp to echo and it's less than tsval_recent, drop segment
234 * but still send an ACK in order to retain TCP's mechanism for detecting
235 * and recovering from half-open connections
236 *
237 * Or at least that's what the theory says. It seems that this might not work
238 * very well with packet reordering and fast retransmit. XXX
239 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500240always_inline int
241tcp_segment_check_paws (tcp_connection_t * tc)
242{
Florin Corasea41aac2018-12-06 17:24:59 -0800243 return tcp_opts_tstamp (&tc->rcv_opts)
Florin Coras93992a92017-05-24 18:03:56 -0700244 && timestamp_lt (tc->rcv_opts.tsval, tc->tsval_recent);
Dave Barach68b0fb02017-02-28 15:15:56 -0500245}
246
247/**
Florin Corasc28764f2017-04-26 00:08:42 -0700248 * Update tsval recent
249 */
250always_inline void
251tcp_update_timestamp (tcp_connection_t * tc, u32 seq, u32 seq_end)
252{
253 /*
254 * RFC1323: If Last.ACK.sent falls within the range of sequence numbers
255 * of an incoming segment:
256 * SEG.SEQ <= Last.ACK.sent < SEG.SEQ + SEG.LEN
257 * then the TSval from the segment is copied to TS.Recent;
258 * otherwise, the TSval is ignored.
259 */
Florin Corasf1762d62017-09-24 19:43:08 -0400260 if (tcp_opts_tstamp (&tc->rcv_opts) && seq_leq (seq, tc->rcv_las)
261 && seq_leq (tc->rcv_las, seq_end))
Florin Corasc28764f2017-04-26 00:08:42 -0700262 {
Dave Barach2c25a622017-06-26 11:35:07 -0400263 ASSERT (timestamp_leq (tc->tsval_recent, tc->rcv_opts.tsval));
Florin Coras93992a92017-05-24 18:03:56 -0700264 tc->tsval_recent = tc->rcv_opts.tsval;
Florin Corasbe72ae62018-11-01 11:23:03 -0700265 tc->tsval_recent_age = tcp_time_now_w_thread (tc->c_thread_index);
Florin Corasc28764f2017-04-26 00:08:42 -0700266 }
267}
268
269/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500270 * Validate incoming segment as per RFC793 p. 69 and RFC1323 p. 19
271 *
272 * It first verifies if segment has a wrapped sequence number (PAWS) and then
273 * does the processing associated to the first four steps (ignoring security
274 * and precedence): sequence number, rst bit and syn bit checks.
275 *
276 * @return 0 if segments passes validation.
277 */
278static int
Florin Coras7ac053b2018-11-05 15:57:21 -0800279tcp_segment_validate (tcp_worker_ctx_t * wrk, tcp_connection_t * tc0,
280 vlib_buffer_t * b0, tcp_header_t * th0, u32 * error0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500281{
Florin Corasca1c8f32018-05-23 21:01:30 -0700282 /* We could get a burst of RSTs interleaved with acks */
283 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
284 {
285 tcp_send_reset (tc0);
286 *error0 = TCP_ERROR_CONNECTION_CLOSED;
Florin Coras7ac053b2018-11-05 15:57:21 -0800287 goto error;
Florin Corasca1c8f32018-05-23 21:01:30 -0700288 }
289
Dave Barach68b0fb02017-02-28 15:15:56 -0500290 if (PREDICT_FALSE (!tcp_ack (th0) && !tcp_rst (th0) && !tcp_syn (th0)))
Florin Coras00cd22d2018-04-18 13:20:18 -0700291 {
292 *error0 = TCP_ERROR_SEGMENT_INVALID;
Florin Coras7ac053b2018-11-05 15:57:21 -0800293 goto error;
Florin Coras00cd22d2018-04-18 13:20:18 -0700294 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500295
Florin Coras80231112018-12-05 15:59:31 -0800296 if (PREDICT_FALSE (tcp_options_parse (th0, &tc0->rcv_opts, 0)))
Florin Corasdb84e572017-05-09 18:54:52 -0700297 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700298 *error0 = TCP_ERROR_OPTIONS;
Florin Coras7ac053b2018-11-05 15:57:21 -0800299 goto error;
Florin Corasdb84e572017-05-09 18:54:52 -0700300 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500301
Florin Coras00cd22d2018-04-18 13:20:18 -0700302 if (PREDICT_FALSE (tcp_segment_check_paws (tc0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500303 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700304 *error0 = TCP_ERROR_PAWS;
Florin Corasa436a422019-08-20 07:09:31 -0700305 TCP_EVT (TCP_EVT_PAWS_FAIL, tc0, vnet_buffer (b0)->tcp.seq_number,
306 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500307
308 /* If it just so happens that a segment updates tsval_recent for a
309 * segment over 24 days old, invalidate tsval_recent. */
310 if (timestamp_lt (tc0->tsval_recent_age + TCP_PAWS_IDLE,
Florin Corasbe72ae62018-11-01 11:23:03 -0700311 tcp_time_now_w_thread (tc0->c_thread_index)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500312 {
Florin Corasea41aac2018-12-06 17:24:59 -0800313 tc0->tsval_recent = tc0->rcv_opts.tsval;
Florin Coras91236ce2018-12-16 11:41:45 -0800314 clib_warning ("paws failed: 24-day old segment");
Dave Barach68b0fb02017-02-28 15:15:56 -0500315 }
Florin Coras91236ce2018-12-16 11:41:45 -0800316 /* Drop after ack if not rst. Resets can fail paws check as per
317 * RFC 7323 sec. 5.2: When an <RST> segment is received, it MUST NOT
318 * be subjected to the PAWS check by verifying an acceptable value in
319 * SEG.TSval */
320 else if (!tcp_rst (th0))
Dave Barach68b0fb02017-02-28 15:15:56 -0500321 {
Florin Coras26dd6de2019-07-23 23:54:47 -0700322 tcp_program_ack (tc0);
Florin Corasa436a422019-08-20 07:09:31 -0700323 TCP_EVT (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
Florin Coras91236ce2018-12-16 11:41:45 -0800324 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500325 }
326 }
327
328 /* 1st: check sequence number */
329 if (!tcp_segment_in_rcv_wnd (tc0, vnet_buffer (b0)->tcp.seq_number,
330 vnet_buffer (b0)->tcp.seq_end))
331 {
Florin Coras830fe732019-02-15 18:20:58 -0800332 /* SYN/SYN-ACK retransmit */
333 if (tcp_syn (th0)
334 && vnet_buffer (b0)->tcp.seq_number == tc0->rcv_nxt - 1)
335 {
336 tcp_options_parse (th0, &tc0->rcv_opts, 1);
337 if (tc0->state == TCP_STATE_SYN_RCVD)
338 {
339 tcp_send_synack (tc0);
Florin Corasa436a422019-08-20 07:09:31 -0700340 TCP_EVT (TCP_EVT_SYN_RCVD, tc0, 0);
Florin Coras830fe732019-02-15 18:20:58 -0800341 *error0 = TCP_ERROR_SYNS_RCVD;
342 }
343 else
344 {
Florin Coras26dd6de2019-07-23 23:54:47 -0700345 tcp_program_ack (tc0);
Florin Corasa436a422019-08-20 07:09:31 -0700346 TCP_EVT (TCP_EVT_SYNACK_RCVD, tc0);
Florin Coras830fe732019-02-15 18:20:58 -0800347 *error0 = TCP_ERROR_SYN_ACKS_RCVD;
348 }
349 goto error;
350 }
351
Florin Coras6792ec02017-03-13 03:49:51 -0700352 /* If our window is 0 and the packet is in sequence, let it pass
Florin Coras00cd22d2018-04-18 13:20:18 -0700353 * through for ack processing. It should be dropped later. */
Florin Coras7e74bf32019-03-06 16:51:58 -0800354 if (tc0->rcv_wnd < tc0->snd_mss
Florin Coras222e1f412019-02-16 20:47:32 -0800355 && tc0->rcv_nxt == vnet_buffer (b0)->tcp.seq_number)
356 goto check_reset;
357
358 /* If we entered recovery and peer did so as well, there's a chance that
359 * dup acks won't be acceptable on either end because seq_end may be less
360 * than rcv_las. This can happen if acks are lost in both directions. */
361 if (tcp_in_recovery (tc0)
362 && seq_geq (vnet_buffer (b0)->tcp.seq_number,
363 tc0->rcv_las - tc0->rcv_wnd)
364 && seq_leq (vnet_buffer (b0)->tcp.seq_end,
365 tc0->rcv_nxt + tc0->rcv_wnd))
366 goto check_reset;
367
368 *error0 = TCP_ERROR_RCV_WND;
369
Florin Corasa495a3e2019-08-29 18:33:24 -0700370 /* If we advertised a zero rcv_wnd and the segment is in the past or the
371 * next one that we expect, it is probably a window probe */
372 if ((tc0->flags & TCP_CONN_ZERO_RWND_SENT)
373 && seq_lt (vnet_buffer (b0)->tcp.seq_end,
374 tc0->rcv_las + tc0->rcv_opts.mss))
375 *error0 = TCP_ERROR_ZERO_RWND;
376
Florin Corasedfe0ee2019-07-29 18:13:25 -0700377 tc0->errors.below_data_wnd += seq_lt (vnet_buffer (b0)->tcp.seq_end,
378 tc0->rcv_las);
379
Florin Coras222e1f412019-02-16 20:47:32 -0800380 /* If not RST, send dup ack */
381 if (!tcp_rst (th0))
Florin Coras6792ec02017-03-13 03:49:51 -0700382 {
Florin Coras26dd6de2019-07-23 23:54:47 -0700383 tcp_program_dupack (tc0);
Florin Corasa436a422019-08-20 07:09:31 -0700384 TCP_EVT (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
Florin Coras6792ec02017-03-13 03:49:51 -0700385 }
Florin Coras222e1f412019-02-16 20:47:32 -0800386 goto error;
387
388 check_reset:
389 ;
Dave Barach68b0fb02017-02-28 15:15:56 -0500390 }
391
392 /* 2nd: check the RST bit */
Florin Coras00cd22d2018-04-18 13:20:18 -0700393 if (PREDICT_FALSE (tcp_rst (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500394 {
Florin Corasd79b41e2017-03-04 05:37:52 -0800395 tcp_connection_reset (tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -0700396 *error0 = TCP_ERROR_RST_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -0800397 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500398 }
399
400 /* 3rd: check security and precedence (skip) */
401
Florin Coras830fe732019-02-15 18:20:58 -0800402 /* 4th: check the SYN bit (in window) */
Florin Coras00cd22d2018-04-18 13:20:18 -0700403 if (PREDICT_FALSE (tcp_syn (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500404 {
Florin Corasd567a8d2019-06-07 12:38:55 -0700405 /* As per RFC5961 send challenge ack instead of reset */
Florin Coras26dd6de2019-07-23 23:54:47 -0700406 tcp_program_ack (tc0);
Florin Coras830fe732019-02-15 18:20:58 -0800407 *error0 = TCP_ERROR_SPURIOUS_SYN;
Florin Coras00cd22d2018-04-18 13:20:18 -0700408 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500409 }
410
Florin Corasc28764f2017-04-26 00:08:42 -0700411 /* If segment in window, save timestamp */
412 tcp_update_timestamp (tc0, vnet_buffer (b0)->tcp.seq_number,
413 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500414 return 0;
Florin Coras00cd22d2018-04-18 13:20:18 -0700415
Florin Coras00cd22d2018-04-18 13:20:18 -0700416error:
Florin Coras00cd22d2018-04-18 13:20:18 -0700417 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500418}
419
420always_inline int
Florin Corasf65074e2019-03-31 17:17:11 -0700421tcp_rcv_ack_no_cc (tcp_connection_t * tc, vlib_buffer_t * b, u32 * error)
Dave Barach68b0fb02017-02-28 15:15:56 -0500422{
423 /* SND.UNA =< SEG.ACK =< SND.NXT */
Florin Corasf65074e2019-03-31 17:17:11 -0700424 if (!(seq_leq (tc->snd_una, vnet_buffer (b)->tcp.ack_number)
425 && seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
426 {
Florin Coras282a3cb2019-04-02 21:43:38 -0700427 if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)
428 && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
Florin Corasf65074e2019-03-31 17:17:11 -0700429 {
430 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
431 goto acceptable;
432 }
433 *error = TCP_ERROR_ACK_INVALID;
434 return -1;
435 }
436
437acceptable:
438 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
439 tc->snd_una = vnet_buffer (b)->tcp.ack_number;
440 *error = TCP_ERROR_ACK_OK;
441 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500442}
443
444/**
445 * Compute smoothed RTT as per VJ's '88 SIGCOMM and RFC6298
446 *
447 * Note that although the original article, srtt and rttvar are scaled
448 * to minimize round-off errors, here we don't. Instead, we rely on
449 * better precision time measurements.
450 *
451 * TODO support us rtt resolution
452 */
453static void
454tcp_estimate_rtt (tcp_connection_t * tc, u32 mrtt)
455{
Florin Corasf03a59a2017-06-09 21:07:32 -0700456 int err, diff;
Dave Barach68b0fb02017-02-28 15:15:56 -0500457
458 if (tc->srtt != 0)
459 {
460 err = mrtt - tc->srtt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500461
462 /* XXX Drop in RTT results in RTTVAR increase and bigger RTO.
463 * The increase should be bound */
Florin Corasf03a59a2017-06-09 21:07:32 -0700464 tc->srtt = clib_max ((int) tc->srtt + (err >> 3), 1);
465 diff = (clib_abs (err) - (int) tc->rttvar) >> 2;
466 tc->rttvar = clib_max ((int) tc->rttvar + diff, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500467 }
468 else
469 {
470 /* First measurement. */
471 tc->srtt = mrtt;
Florin Coras6792ec02017-03-13 03:49:51 -0700472 tc->rttvar = mrtt >> 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500473 }
474}
475
Filip Tehlare275bed2019-03-06 00:06:56 -0800476#ifndef CLIB_MARCH_VARIANT
Florin Coras93992a92017-05-24 18:03:56 -0700477void
478tcp_update_rto (tcp_connection_t * tc)
479{
480 tc->rto = clib_min (tc->srtt + (tc->rttvar << 2), TCP_RTO_MAX);
Florin Corasf03a59a2017-06-09 21:07:32 -0700481 tc->rto = clib_max (tc->rto, TCP_RTO_MIN);
Florin Coras93992a92017-05-24 18:03:56 -0700482}
Filip Tehlare275bed2019-03-06 00:06:56 -0800483#endif /* CLIB_MARCH_VARIANT */
Florin Coras93992a92017-05-24 18:03:56 -0700484
Florin Corasf1762d62017-09-24 19:43:08 -0400485/**
486 * Update RTT estimate and RTO timer
Dave Barach68b0fb02017-02-28 15:15:56 -0500487 *
488 * Measure RTT: We have two sources of RTT measurements: TSOPT and ACK
489 * timing. Middle boxes are known to fiddle with TCP options so we
490 * should give higher priority to ACK timing.
491 *
Florin Corasf1762d62017-09-24 19:43:08 -0400492 * This should be called only if previously sent bytes have been acked.
493 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500494 * return 1 if valid rtt 0 otherwise
495 */
496static int
Florin Coras1dbda642019-09-11 13:42:57 -0700497tcp_update_rtt (tcp_connection_t * tc, tcp_rate_sample_t * rs, u32 ack)
Dave Barach68b0fb02017-02-28 15:15:56 -0500498{
499 u32 mrtt = 0;
500
501 /* Karn's rule, part 1. Don't use retransmitted segments to estimate
502 * RTT because they're ambiguous. */
Florin Coras1dbda642019-09-11 13:42:57 -0700503 if (tcp_in_cong_recovery (tc))
Florin Coras3ec66b02018-08-23 16:27:05 -0700504 {
Florin Coras1dbda642019-09-11 13:42:57 -0700505 /* Accept rtt estimates for samples that have not been retransmitted */
Florin Corasbbcfaac2019-10-10 13:52:04 -0700506 if ((tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
507 && !(rs->flags & TCP_BTS_IS_RXT))
Florin Coras1dbda642019-09-11 13:42:57 -0700508 {
509 mrtt = rs->rtt_time * THZ;
510 goto estimate_rtt;
511 }
Florin Coras3ec66b02018-08-23 16:27:05 -0700512 goto done;
513 }
Florin Corasf1762d62017-09-24 19:43:08 -0400514
515 if (tc->rtt_ts && seq_geq (ack, tc->rtt_seq))
Dave Barach68b0fb02017-02-28 15:15:56 -0500516 {
Florin Corasefefc6b2018-11-07 12:49:19 -0800517 f64 sample = tcp_time_now_us (tc->c_thread_index) - tc->rtt_ts;
518 tc->mrtt_us = tc->mrtt_us + (sample - tc->mrtt_us) * 0.125;
519 mrtt = clib_max ((u32) (sample * THZ), 1);
520 /* Allow measuring of a new RTT */
521 tc->rtt_ts = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500522 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500523 /* As per RFC7323 TSecr can be used for RTTM only if the segment advances
524 * snd_una, i.e., the left side of the send window:
Florin Corasf1762d62017-09-24 19:43:08 -0400525 * seq_lt (tc->snd_una, ack). This is a condition for calling update_rtt */
526 else if (tcp_opts_tstamp (&tc->rcv_opts) && tc->rcv_opts.tsecr)
Dave Barach68b0fb02017-02-28 15:15:56 -0500527 {
Vladimir Kropylev1cfcb782019-07-02 11:25:26 +0300528 u32 now = tcp_tstamp (tc);
Florin Corasbe72ae62018-11-01 11:23:03 -0700529 mrtt = clib_max (now - tc->rcv_opts.tsecr, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500530 }
531
Florin Coras1dbda642019-09-11 13:42:57 -0700532estimate_rtt:
533
Florin Corasf1762d62017-09-24 19:43:08 -0400534 /* Ignore dubious measurements */
535 if (mrtt == 0 || mrtt > TCP_RTT_MAX)
536 goto done;
537
538 tcp_estimate_rtt (tc, mrtt);
539
540done:
541
Florin Corasf1762d62017-09-24 19:43:08 -0400542 /* If we got here something must've been ACKed so make sure boff is 0,
Florin Coras3ec66b02018-08-23 16:27:05 -0700543 * even if mrtt is not valid since we update the rto lower */
Florin Corasf1762d62017-09-24 19:43:08 -0400544 tc->rto_boff = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700545 tcp_update_rto (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500546
Florin Coras3af90fc2017-05-03 21:09:42 -0700547 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500548}
549
Florin Corasefefc6b2018-11-07 12:49:19 -0800550static void
551tcp_estimate_initial_rtt (tcp_connection_t * tc)
552{
553 u8 thread_index = vlib_num_workers ()? 1 : 0;
554 int mrtt;
555
556 if (tc->rtt_ts)
557 {
558 tc->mrtt_us = tcp_time_now_us (thread_index) - tc->rtt_ts;
Florin Coras222e1f412019-02-16 20:47:32 -0800559 tc->mrtt_us = clib_max (tc->mrtt_us, 0.0001);
Florin Corasefefc6b2018-11-07 12:49:19 -0800560 mrtt = clib_max ((u32) (tc->mrtt_us * THZ), 1);
561 tc->rtt_ts = 0;
562 }
563 else
564 {
565 mrtt = tcp_time_now_w_thread (thread_index) - tc->rcv_opts.tsecr;
Florin Coras4af830c2018-12-04 09:21:36 -0800566 mrtt = clib_max (mrtt, 1);
Florin Coras222e1f412019-02-16 20:47:32 -0800567 /* Due to retransmits we don't know the initial mrtt */
568 if (tc->rto_boff && mrtt > 1 * THZ)
569 mrtt = 1 * THZ;
Florin Corasefefc6b2018-11-07 12:49:19 -0800570 tc->mrtt_us = (f64) mrtt *TCP_TICK;
Florin Corasefefc6b2018-11-07 12:49:19 -0800571 }
572
573 if (mrtt > 0 && mrtt < TCP_RTT_MAX)
574 tcp_estimate_rtt (tc, mrtt);
Florin Coras54ddf432018-12-21 13:54:09 -0800575 tcp_update_rto (tc);
Florin Corasefefc6b2018-11-07 12:49:19 -0800576}
577
Dave Barach68b0fb02017-02-28 15:15:56 -0500578/**
Florin Coras9ece3c02018-11-05 11:06:53 -0800579 * Dequeue bytes for connections that have received acks in last burst
Dave Barach68b0fb02017-02-28 15:15:56 -0500580 */
581static void
Florin Coras9ece3c02018-11-05 11:06:53 -0800582tcp_handle_postponed_dequeues (tcp_worker_ctx_t * wrk)
Dave Barach68b0fb02017-02-28 15:15:56 -0500583{
Florin Coras9ece3c02018-11-05 11:06:53 -0800584 u32 thread_index = wrk->vm->thread_index;
585 u32 *pending_deq_acked;
586 tcp_connection_t *tc;
587 int i;
Florin Coras93992a92017-05-24 18:03:56 -0700588
Florin Coras9ece3c02018-11-05 11:06:53 -0800589 if (!vec_len (wrk->pending_deq_acked))
590 return;
Dave Barach68b0fb02017-02-28 15:15:56 -0500591
Florin Coras9ece3c02018-11-05 11:06:53 -0800592 pending_deq_acked = wrk->pending_deq_acked;
593 for (i = 0; i < vec_len (pending_deq_acked); i++)
594 {
595 tc = tcp_connection_get (pending_deq_acked[i], thread_index);
596 tc->flags &= ~TCP_CONN_DEQ_PENDING;
Florin Coras93992a92017-05-24 18:03:56 -0700597
Florin Coras11e9e352019-11-13 19:09:47 -0800598 if (PREDICT_FALSE (!tc->burst_acked))
599 continue;
600
601 /* Dequeue the newly ACKed bytes */
602 session_tx_fifo_dequeue_drop (&tc->connection, tc->burst_acked);
603 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
604
605 if (PREDICT_FALSE (tc->flags & TCP_CONN_PSH_PENDING))
Florin Coras42ceddb2018-12-12 10:56:01 -0800606 {
Florin Coras11e9e352019-11-13 19:09:47 -0800607 if (seq_leq (tc->psh_seq, tc->snd_una))
608 tc->flags &= ~TCP_CONN_PSH_PENDING;
Florin Coras42ceddb2018-12-12 10:56:01 -0800609 }
610
Florin Coras11e9e352019-11-13 19:09:47 -0800611 /* If everything has been acked, stop retransmit timer
612 * otherwise update. */
613 tcp_retransmit_timer_update (tc);
Florin Corasb3dce892019-10-30 09:22:14 -0700614
Florin Coras11e9e352019-11-13 19:09:47 -0800615 /* Update pacer based on our new cwnd estimate */
616 tcp_connection_tx_pacer_update (tc);
617
Florin Corasb3dce892019-10-30 09:22:14 -0700618 tc->burst_acked = 0;
Florin Coras9ece3c02018-11-05 11:06:53 -0800619 }
620 _vec_len (wrk->pending_deq_acked) = 0;
621}
622
623static void
624tcp_program_dequeue (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
625{
626 if (!(tc->flags & TCP_CONN_DEQ_PENDING))
627 {
628 vec_add1 (wrk->pending_deq_acked, tc->c_c_index);
629 tc->flags |= TCP_CONN_DEQ_PENDING;
630 }
Florin Coras558e3e02019-09-06 12:56:58 -0700631 tc->burst_acked += tc->bytes_acked;
Dave Barach68b0fb02017-02-28 15:15:56 -0500632}
633
Filip Tehlare275bed2019-03-06 00:06:56 -0800634#ifndef CLIB_MARCH_VARIANT
Florin Coras0dbd5172018-06-25 16:19:34 -0700635static u32
636scoreboard_hole_index (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
637{
638 ASSERT (!pool_is_free_index (sb->holes, hole - sb->holes));
639 return hole - sb->holes;
640}
641
642static u32
643scoreboard_hole_bytes (sack_scoreboard_hole_t * hole)
644{
645 return hole->end - hole->start;
646}
647
648sack_scoreboard_hole_t *
649scoreboard_get_hole (sack_scoreboard_t * sb, u32 index)
650{
651 if (index != TCP_INVALID_SACK_HOLE_INDEX)
652 return pool_elt_at_index (sb->holes, index);
653 return 0;
654}
655
656sack_scoreboard_hole_t *
657scoreboard_next_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
658{
659 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
660 return pool_elt_at_index (sb->holes, hole->next);
661 return 0;
662}
663
664sack_scoreboard_hole_t *
665scoreboard_prev_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
666{
667 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
668 return pool_elt_at_index (sb->holes, hole->prev);
669 return 0;
670}
671
672sack_scoreboard_hole_t *
673scoreboard_first_hole (sack_scoreboard_t * sb)
674{
675 if (sb->head != TCP_INVALID_SACK_HOLE_INDEX)
676 return pool_elt_at_index (sb->holes, sb->head);
677 return 0;
678}
679
680sack_scoreboard_hole_t *
681scoreboard_last_hole (sack_scoreboard_t * sb)
682{
683 if (sb->tail != TCP_INVALID_SACK_HOLE_INDEX)
684 return pool_elt_at_index (sb->holes, sb->tail);
685 return 0;
686}
687
688static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500689scoreboard_remove_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
690{
691 sack_scoreboard_hole_t *next, *prev;
692
693 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
694 {
695 next = pool_elt_at_index (sb->holes, hole->next);
696 next->prev = hole->prev;
697 }
Florin Coras93992a92017-05-24 18:03:56 -0700698 else
699 {
700 sb->tail = hole->prev;
701 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500702
703 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
704 {
705 prev = pool_elt_at_index (sb->holes, hole->prev);
706 prev->next = hole->next;
707 }
708 else
709 {
710 sb->head = hole->next;
711 }
712
Florin Coras93992a92017-05-24 18:03:56 -0700713 if (scoreboard_hole_index (sb, hole) == sb->cur_rxt_hole)
714 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
715
Florin Coras3eb50622017-07-13 01:24:57 -0400716 /* Poison the entry */
717 if (CLIB_DEBUG > 0)
Dave Barachb7b92992018-10-17 10:38:51 -0400718 clib_memset (hole, 0xfe, sizeof (*hole));
Florin Coras3eb50622017-07-13 01:24:57 -0400719
Dave Barach68b0fb02017-02-28 15:15:56 -0500720 pool_put (sb->holes, hole);
721}
722
Florin Coras0dbd5172018-06-25 16:19:34 -0700723static sack_scoreboard_hole_t *
Florin Coras6792ec02017-03-13 03:49:51 -0700724scoreboard_insert_hole (sack_scoreboard_t * sb, u32 prev_index,
Dave Barach68b0fb02017-02-28 15:15:56 -0500725 u32 start, u32 end)
726{
Florin Coras6792ec02017-03-13 03:49:51 -0700727 sack_scoreboard_hole_t *hole, *next, *prev;
Dave Barach68b0fb02017-02-28 15:15:56 -0500728 u32 hole_index;
729
730 pool_get (sb->holes, hole);
Dave Barachb7b92992018-10-17 10:38:51 -0400731 clib_memset (hole, 0, sizeof (*hole));
Dave Barach68b0fb02017-02-28 15:15:56 -0500732
733 hole->start = start;
734 hole->end = end;
Florin Coras3eb50622017-07-13 01:24:57 -0400735 hole_index = scoreboard_hole_index (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500736
Florin Coras6792ec02017-03-13 03:49:51 -0700737 prev = scoreboard_get_hole (sb, prev_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500738 if (prev)
739 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700740 hole->prev = prev_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500741 hole->next = prev->next;
742
743 if ((next = scoreboard_next_hole (sb, hole)))
744 next->prev = hole_index;
Florin Corasf03a59a2017-06-09 21:07:32 -0700745 else
746 sb->tail = hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500747
748 prev->next = hole_index;
749 }
750 else
751 {
752 sb->head = hole_index;
753 hole->prev = TCP_INVALID_SACK_HOLE_INDEX;
754 hole->next = TCP_INVALID_SACK_HOLE_INDEX;
755 }
756
757 return hole;
758}
759
Florin Coras36ebcff2019-09-12 18:36:44 -0700760always_inline void
761scoreboard_update_sacked_rxt (sack_scoreboard_t * sb, u32 start, u32 end,
762 u8 has_rxt)
763{
764 if (!has_rxt || seq_geq (start, sb->high_rxt))
765 return;
766
767 sb->rxt_sacked +=
768 seq_lt (end, sb->high_rxt) ? (end - start) : (sb->high_rxt - start);
769}
Florin Coras558e3e02019-09-06 12:56:58 -0700770
771always_inline void
772scoreboard_update_bytes (sack_scoreboard_t * sb, u32 ack, u32 snd_mss)
Florin Coras93992a92017-05-24 18:03:56 -0700773{
Florin Corasecbd20b2018-10-17 23:34:54 -0700774 sack_scoreboard_hole_t *left, *right;
Florin Coras558e3e02019-09-06 12:56:58 -0700775 u32 sacked = 0, blks = 0, old_sacked;
776
777 old_sacked = sb->sacked_bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700778
Florin Corasb3f58e12019-07-05 18:31:54 -0700779 sb->last_lost_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700780 sb->lost_bytes = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700781 sb->sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700782
Florin Coras558e3e02019-09-06 12:56:58 -0700783 right = scoreboard_last_hole (sb);
784 if (!right)
Florin Coras93992a92017-05-24 18:03:56 -0700785 {
Florin Coras558e3e02019-09-06 12:56:58 -0700786 sb->sacked_bytes = sb->high_sacked - ack;
787 return;
788 }
789
790 if (seq_gt (sb->high_sacked, right->end))
791 {
792 sacked = sb->high_sacked - right->end;
Florin Coras93992a92017-05-24 18:03:56 -0700793 blks = 1;
794 }
795
Florin Coras558e3e02019-09-06 12:56:58 -0700796 while (sacked < (TCP_DUPACK_THRESHOLD - 1) * snd_mss
797 && blks < TCP_DUPACK_THRESHOLD)
Florin Coras93992a92017-05-24 18:03:56 -0700798 {
Florin Coras558e3e02019-09-06 12:56:58 -0700799 if (right->is_lost)
800 sb->lost_bytes += scoreboard_hole_bytes (right);
Florin Coras93992a92017-05-24 18:03:56 -0700801
Florin Coras558e3e02019-09-06 12:56:58 -0700802 left = scoreboard_prev_hole (sb, right);
803 if (!left)
Florin Coras9f9e9692018-10-19 17:49:00 -0700804 {
Florin Coras558e3e02019-09-06 12:56:58 -0700805 ASSERT (right->start == ack || sb->is_reneging);
806 sacked += right->start - ack;
807 right = 0;
808 break;
Florin Coras9f9e9692018-10-19 17:49:00 -0700809 }
Florin Coras558e3e02019-09-06 12:56:58 -0700810
811 sacked += right->start - left->end;
812 blks++;
813 right = left;
Florin Coras93992a92017-05-24 18:03:56 -0700814 }
Florin Coras9f9e9692018-10-19 17:49:00 -0700815
Florin Coras558e3e02019-09-06 12:56:58 -0700816 /* right is first lost */
817 while (right)
818 {
819 sb->lost_bytes += scoreboard_hole_bytes (right);
Florin Coras36ebcff2019-09-12 18:36:44 -0700820 sb->last_lost_bytes += right->is_lost ? 0 : (right->end - right->start);
Florin Coras558e3e02019-09-06 12:56:58 -0700821 right->is_lost = 1;
822 left = scoreboard_prev_hole (sb, right);
823 if (!left)
824 {
825 ASSERT (right->start == ack || sb->is_reneging);
826 sacked += right->start - ack;
827 break;
828 }
829 sacked += right->start - left->end;
830 right = left;
831 }
832
833 sb->sacked_bytes = sacked;
834 sb->last_sacked_bytes = sacked - (old_sacked - sb->last_bytes_delivered);
Florin Coras93992a92017-05-24 18:03:56 -0700835}
836
837/**
838 * Figure out the next hole to retransmit
839 *
840 * Follows logic proposed in RFC6675 Sec. 4, NextSeg()
841 */
842sack_scoreboard_hole_t *
843scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
844 sack_scoreboard_hole_t * start,
Florin Coras36ee9f12018-11-02 12:52:10 -0700845 u8 have_unsent, u8 * can_rescue, u8 * snd_limited)
Florin Coras93992a92017-05-24 18:03:56 -0700846{
847 sack_scoreboard_hole_t *hole = 0;
848
849 hole = start ? start : scoreboard_first_hole (sb);
850 while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost)
851 hole = scoreboard_next_hole (sb, hole);
852
853 /* Nothing, return */
854 if (!hole)
855 {
856 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
857 return 0;
858 }
859
860 /* Rule (1): if higher than rxt, less than high_sacked and lost */
861 if (hole->is_lost && seq_lt (hole->start, sb->high_sacked))
862 {
863 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
864 }
865 else
866 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700867 /* Rule (2): available unsent data */
868 if (have_unsent)
Florin Coras93992a92017-05-24 18:03:56 -0700869 {
Florin Coras93992a92017-05-24 18:03:56 -0700870 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
Florin Coras36ee9f12018-11-02 12:52:10 -0700871 return 0;
Florin Coras93992a92017-05-24 18:03:56 -0700872 }
873 /* Rule (3): if hole not lost */
874 else if (seq_lt (hole->start, sb->high_sacked))
875 {
Florin Coras81cb8e42019-10-22 19:44:45 -0700876 /* And we didn't already retransmit it */
877 if (seq_leq (hole->end, sb->high_rxt))
878 {
879 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
880 return 0;
881 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700882 *snd_limited = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700883 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
884 }
885 /* Rule (4): if hole beyond high_sacked */
886 else
887 {
888 ASSERT (seq_geq (hole->start, sb->high_sacked));
889 *snd_limited = 1;
890 *can_rescue = 1;
891 /* HighRxt MUST NOT be updated */
892 return 0;
893 }
894 }
895
896 if (hole && seq_lt (sb->high_rxt, hole->start))
897 sb->high_rxt = hole->start;
898
899 return hole;
900}
901
Florin Coras36ebcff2019-09-12 18:36:44 -0700902void
Florin Corasbe237bf2019-09-27 08:16:40 -0700903scoreboard_init_rxt (sack_scoreboard_t * sb, u32 snd_una)
Florin Coras93992a92017-05-24 18:03:56 -0700904{
905 sack_scoreboard_hole_t *hole;
906 hole = scoreboard_first_hole (sb);
Florin Coras3eb50622017-07-13 01:24:57 -0400907 if (hole)
908 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700909 snd_una = seq_gt (snd_una, hole->start) ? snd_una : hole->start;
Florin Coras3eb50622017-07-13 01:24:57 -0400910 sb->cur_rxt_hole = sb->head;
911 }
Florin Coras36ee9f12018-11-02 12:52:10 -0700912 sb->high_rxt = snd_una;
913 sb->rescue_rxt = snd_una - 1;
Florin Coras3eb50622017-07-13 01:24:57 -0400914}
915
Florin Coras0dbd5172018-06-25 16:19:34 -0700916void
917scoreboard_init (sack_scoreboard_t * sb)
918{
919 sb->head = TCP_INVALID_SACK_HOLE_INDEX;
920 sb->tail = TCP_INVALID_SACK_HOLE_INDEX;
921 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
922}
923
924void
925scoreboard_clear (sack_scoreboard_t * sb)
926{
927 sack_scoreboard_hole_t *hole;
928 while ((hole = scoreboard_first_hole (sb)))
929 {
930 scoreboard_remove_hole (sb, hole);
931 }
932 ASSERT (sb->head == sb->tail && sb->head == TCP_INVALID_SACK_HOLE_INDEX);
933 ASSERT (pool_elts (sb->holes) == 0);
934 sb->sacked_bytes = 0;
935 sb->last_sacked_bytes = 0;
936 sb->last_bytes_delivered = 0;
Florin Coras0dbd5172018-06-25 16:19:34 -0700937 sb->lost_bytes = 0;
Florin Corasb3f58e12019-07-05 18:31:54 -0700938 sb->last_lost_bytes = 0;
Florin Coras0dbd5172018-06-25 16:19:34 -0700939 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
Florin Coras558e3e02019-09-06 12:56:58 -0700940 sb->is_reneging = 0;
Florin Coras0dbd5172018-06-25 16:19:34 -0700941}
Florin Coras36ebcff2019-09-12 18:36:44 -0700942
943void
944scoreboard_clear_reneging (sack_scoreboard_t * sb, u32 start, u32 end)
945{
946 sack_scoreboard_hole_t *last_hole;
947
948 clib_warning ("sack reneging");
949
950 scoreboard_clear (sb);
951 last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
952 start, end);
953 last_hole->is_lost = 1;
954 sb->tail = scoreboard_hole_index (sb, last_hole);
955 sb->high_sacked = start;
Florin Corasbe237bf2019-09-27 08:16:40 -0700956 scoreboard_init_rxt (sb, start);
Florin Coras36ebcff2019-09-12 18:36:44 -0700957}
958
Filip Tehlare275bed2019-03-06 00:06:56 -0800959#endif /* CLIB_MARCH_VARIANT */
Florin Coras0dbd5172018-06-25 16:19:34 -0700960
Florin Coras3eb50622017-07-13 01:24:57 -0400961/**
962 * Test that scoreboard is sane after recovery
963 *
964 * Returns 1 if scoreboard is empty or if first hole beyond
965 * snd_una.
966 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700967static u8
Florin Coras3eb50622017-07-13 01:24:57 -0400968tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc)
969{
970 sack_scoreboard_hole_t *hole;
971 hole = scoreboard_first_hole (&tc->sack_sb);
Florin Corasecbd20b2018-10-17 23:34:54 -0700972 return (!hole || (seq_geq (hole->start, tc->snd_una)
Florin Coras47596832019-03-12 18:58:54 -0700973 && seq_lt (hole->end, tc->snd_nxt)));
Florin Coras93992a92017-05-24 18:03:56 -0700974}
975
Filip Tehlare275bed2019-03-06 00:06:56 -0800976#ifndef CLIB_MARCH_VARIANT
Florin Corasb3f58e12019-07-05 18:31:54 -0700977
Florin Coras93992a92017-05-24 18:03:56 -0700978void
Dave Barach68b0fb02017-02-28 15:15:56 -0500979tcp_rcv_sacks (tcp_connection_t * tc, u32 ack)
980{
Florin Coras558e3e02019-09-06 12:56:58 -0700981 sack_scoreboard_hole_t *hole, *next_hole;
Florin Corasb3f58e12019-07-05 18:31:54 -0700982 sack_scoreboard_t *sb = &tc->sack_sb;
Florin Coras558e3e02019-09-06 12:56:58 -0700983 sack_block_t *blk, *rcv_sacks;
984 u32 blk_index = 0, i, j;
Florin Coras36ebcff2019-09-12 18:36:44 -0700985 u8 has_rxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500986
Florin Coras6792ec02017-03-13 03:49:51 -0700987 sb->last_sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700988 sb->last_bytes_delivered = 0;
Florin Coras36ebcff2019-09-12 18:36:44 -0700989 sb->rxt_sacked = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700990
Florin Coras93992a92017-05-24 18:03:56 -0700991 if (!tcp_opts_sack (&tc->rcv_opts)
992 && sb->head == TCP_INVALID_SACK_HOLE_INDEX)
Dave Barach68b0fb02017-02-28 15:15:56 -0500993 return;
994
Florin Coras36ebcff2019-09-12 18:36:44 -0700995 has_rxt = tcp_in_cong_recovery (tc);
996
Dave Barach68b0fb02017-02-28 15:15:56 -0500997 /* Remove invalid blocks */
Florin Coras93992a92017-05-24 18:03:56 -0700998 blk = tc->rcv_opts.sacks;
999 while (blk < vec_end (tc->rcv_opts.sacks))
Florin Coras6792ec02017-03-13 03:49:51 -07001000 {
1001 if (seq_lt (blk->start, blk->end)
1002 && seq_gt (blk->start, tc->snd_una)
Florin Corasab86f862018-12-06 18:24:19 -08001003 && seq_gt (blk->start, ack)
Florin Coras47596832019-03-12 18:58:54 -07001004 && seq_lt (blk->start, tc->snd_nxt)
1005 && seq_leq (blk->end, tc->snd_nxt))
Florin Coras6792ec02017-03-13 03:49:51 -07001006 {
1007 blk++;
1008 continue;
1009 }
Florin Coras93992a92017-05-24 18:03:56 -07001010 vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks);
Florin Coras6792ec02017-03-13 03:49:51 -07001011 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001012
1013 /* Add block for cumulative ack */
1014 if (seq_gt (ack, tc->snd_una))
1015 {
Florin Coras558e3e02019-09-06 12:56:58 -07001016 vec_add2 (tc->rcv_opts.sacks, blk, 1);
1017 blk->start = tc->snd_una;
1018 blk->end = ack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001019 }
1020
Florin Coras93992a92017-05-24 18:03:56 -07001021 if (vec_len (tc->rcv_opts.sacks) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001022 return;
1023
Florin Coras3eb50622017-07-13 01:24:57 -04001024 tcp_scoreboard_trace_add (tc, ack);
1025
Dave Barach68b0fb02017-02-28 15:15:56 -05001026 /* Make sure blocks are ordered */
Florin Coras558e3e02019-09-06 12:56:58 -07001027 rcv_sacks = tc->rcv_opts.sacks;
1028 for (i = 0; i < vec_len (rcv_sacks); i++)
1029 for (j = i + 1; j < vec_len (rcv_sacks); j++)
1030 if (seq_lt (rcv_sacks[j].start, rcv_sacks[i].start))
Dave Barach68b0fb02017-02-28 15:15:56 -05001031 {
Florin Coras558e3e02019-09-06 12:56:58 -07001032 sack_block_t tmp = rcv_sacks[i];
1033 rcv_sacks[i] = rcv_sacks[j];
1034 rcv_sacks[j] = tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -05001035 }
1036
Dave Barach68b0fb02017-02-28 15:15:56 -05001037 if (sb->head == TCP_INVALID_SACK_HOLE_INDEX)
1038 {
Florin Coras558e3e02019-09-06 12:56:58 -07001039 /* Handle reneging as a special case */
1040 if (PREDICT_FALSE (sb->is_reneging))
1041 {
1042 /* No holes, only sacked bytes */
1043 if (seq_leq (tc->snd_nxt, sb->high_sacked))
1044 {
1045 /* No progress made so return */
1046 if (seq_leq (ack, tc->snd_una))
1047 return;
1048
1049 /* Update sacked bytes delivered and return */
1050 sb->last_bytes_delivered = ack - tc->snd_una;
1051 sb->sacked_bytes -= sb->last_bytes_delivered;
1052 sb->is_reneging = seq_lt (ack, sb->high_sacked);
1053 return;
1054 }
1055
1056 /* New hole above high sacked. Add it and process normally */
1057 hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
1058 sb->high_sacked, tc->snd_nxt);
1059 sb->tail = scoreboard_hole_index (sb, hole);
1060 }
1061 /* Not reneging and no holes. Insert the first that covers all
1062 * outstanding bytes */
1063 else
1064 {
1065 hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
1066 tc->snd_una, tc->snd_nxt);
1067 sb->tail = scoreboard_hole_index (sb, hole);
1068 }
1069 sb->high_sacked = rcv_sacks[vec_len (rcv_sacks) - 1].end;
Florin Coras6792ec02017-03-13 03:49:51 -07001070 }
1071 else
1072 {
Florin Coras558e3e02019-09-06 12:56:58 -07001073 /* If we have holes but snd_nxt is beyond the last hole, update
1074 * last hole end or add new hole after high sacked */
1075 hole = scoreboard_last_hole (sb);
1076 if (seq_gt (tc->snd_nxt, hole->end))
Dave Barach2c25a622017-06-26 11:35:07 -04001077 {
Florin Coras558e3e02019-09-06 12:56:58 -07001078 if (seq_geq (hole->start, sb->high_sacked))
Dave Barach2c25a622017-06-26 11:35:07 -04001079 {
Florin Coras558e3e02019-09-06 12:56:58 -07001080 hole->end = tc->snd_nxt;
Dave Barach2c25a622017-06-26 11:35:07 -04001081 }
1082 /* New hole after high sacked block */
Florin Coras47596832019-03-12 18:58:54 -07001083 else if (seq_lt (sb->high_sacked, tc->snd_nxt))
Dave Barach2c25a622017-06-26 11:35:07 -04001084 {
1085 scoreboard_insert_hole (sb, sb->tail, sb->high_sacked,
Florin Coras47596832019-03-12 18:58:54 -07001086 tc->snd_nxt);
Dave Barach2c25a622017-06-26 11:35:07 -04001087 }
1088 }
Florin Coras558e3e02019-09-06 12:56:58 -07001089
Dave Barach2c25a622017-06-26 11:35:07 -04001090 /* Keep track of max byte sacked for when the last hole
Florin Corasf03a59a2017-06-09 21:07:32 -07001091 * is acked */
Florin Coras558e3e02019-09-06 12:56:58 -07001092 sb->high_sacked = seq_max (rcv_sacks[vec_len (rcv_sacks) - 1].end,
1093 sb->high_sacked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001094 }
1095
1096 /* Walk the holes with the SACK blocks */
1097 hole = pool_elt_at_index (sb->holes, sb->head);
Florin Coras558e3e02019-09-06 12:56:58 -07001098
1099 if (PREDICT_FALSE (sb->is_reneging))
1100 sb->last_bytes_delivered += hole->start - tc->snd_una;
1101
1102 while (hole && blk_index < vec_len (rcv_sacks))
Dave Barach68b0fb02017-02-28 15:15:56 -05001103 {
Florin Coras558e3e02019-09-06 12:56:58 -07001104 blk = &rcv_sacks[blk_index];
Dave Barach68b0fb02017-02-28 15:15:56 -05001105 if (seq_leq (blk->start, hole->start))
1106 {
1107 /* Block covers hole. Remove hole */
1108 if (seq_geq (blk->end, hole->end))
1109 {
1110 next_hole = scoreboard_next_hole (sb, hole);
1111
Florin Coras558e3e02019-09-06 12:56:58 -07001112 /* If covered by ack, compute delivered bytes */
Florin Corasf03a59a2017-06-09 21:07:32 -07001113 if (blk->end == ack)
Dave Barach68b0fb02017-02-28 15:15:56 -05001114 {
Florin Coras558e3e02019-09-06 12:56:58 -07001115 u32 sacked = next_hole ? next_hole->start : sb->high_sacked;
1116 if (PREDICT_FALSE (seq_lt (ack, sacked)))
Florin Coras06d11012017-05-17 14:21:51 -07001117 {
Florin Coras558e3e02019-09-06 12:56:58 -07001118 sb->last_bytes_delivered += ack - hole->end;
1119 sb->is_reneging = 1;
Florin Coras06d11012017-05-17 14:21:51 -07001120 }
Florin Coras3eb50622017-07-13 01:24:57 -04001121 else
Florin Coras06d11012017-05-17 14:21:51 -07001122 {
Florin Coras558e3e02019-09-06 12:56:58 -07001123 sb->last_bytes_delivered += sacked - hole->end;
1124 sb->is_reneging = 0;
Florin Coras06d11012017-05-17 14:21:51 -07001125 }
1126 }
Florin Coras36ebcff2019-09-12 18:36:44 -07001127 scoreboard_update_sacked_rxt (sb, hole->start, hole->end,
1128 has_rxt);
Dave Barach68b0fb02017-02-28 15:15:56 -05001129 scoreboard_remove_hole (sb, hole);
1130 hole = next_hole;
1131 }
Florin Coras6792ec02017-03-13 03:49:51 -07001132 /* Partial 'head' overlap */
Dave Barach68b0fb02017-02-28 15:15:56 -05001133 else
1134 {
Florin Coras6792ec02017-03-13 03:49:51 -07001135 if (seq_gt (blk->end, hole->start))
1136 {
Florin Coras36ebcff2019-09-12 18:36:44 -07001137 scoreboard_update_sacked_rxt (sb, hole->start, blk->end,
1138 has_rxt);
Florin Coras6792ec02017-03-13 03:49:51 -07001139 hole->start = blk->end;
1140 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001141 blk_index++;
1142 }
1143 }
1144 else
1145 {
1146 /* Hole must be split */
Florin Coras6792ec02017-03-13 03:49:51 -07001147 if (seq_lt (blk->end, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001148 {
Florin Coras558e3e02019-09-06 12:56:58 -07001149 u32 hole_index = scoreboard_hole_index (sb, hole);
Florin Coras3eb50622017-07-13 01:24:57 -04001150 next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
1151 hole->end);
Florin Coras6792ec02017-03-13 03:49:51 -07001152 /* Pool might've moved */
1153 hole = scoreboard_get_hole (sb, hole_index);
1154 hole->end = blk->start;
Florin Coras36ebcff2019-09-12 18:36:44 -07001155
1156 scoreboard_update_sacked_rxt (sb, blk->start, blk->end,
1157 has_rxt);
1158
Dave Barach68b0fb02017-02-28 15:15:56 -05001159 blk_index++;
Florin Coras3eb50622017-07-13 01:24:57 -04001160 ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
Dave Barach68b0fb02017-02-28 15:15:56 -05001161 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001162 else if (seq_lt (blk->start, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001163 {
Florin Coras36ebcff2019-09-12 18:36:44 -07001164 scoreboard_update_sacked_rxt (sb, blk->start, hole->end,
1165 has_rxt);
Florin Coras6792ec02017-03-13 03:49:51 -07001166 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -05001167 }
Florin Coras93992a92017-05-24 18:03:56 -07001168 hole = scoreboard_next_hole (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -05001169 }
1170 }
Florin Coras6792ec02017-03-13 03:49:51 -07001171
Florin Coras558e3e02019-09-06 12:56:58 -07001172 scoreboard_update_bytes (sb, ack, tc->snd_mss);
Florin Corasb3f58e12019-07-05 18:31:54 -07001173
Florin Corasca1c8f32018-05-23 21:01:30 -07001174 ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes || tcp_in_recovery (tc));
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001175 ASSERT (sb->sacked_bytes == 0 || tcp_in_recovery (tc)
Florin Coras558e3e02019-09-06 12:56:58 -07001176 || sb->sacked_bytes <= tc->snd_nxt - seq_max (tc->snd_una, ack));
Florin Coras47596832019-03-12 18:58:54 -07001177 ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_nxt
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001178 - seq_max (tc->snd_una, ack) || tcp_in_recovery (tc));
Dave Barach2c25a622017-06-26 11:35:07 -04001179 ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
Florin Coras558e3e02019-09-06 12:56:58 -07001180 || sb->is_reneging || sb->holes[sb->head].start == ack);
Florin Corasb3f58e12019-07-05 18:31:54 -07001181 ASSERT (sb->last_lost_bytes <= sb->lost_bytes);
Florin Coras36ebcff2019-09-12 18:36:44 -07001182 ASSERT ((ack - tc->snd_una) + sb->last_sacked_bytes
1183 - sb->last_bytes_delivered >= sb->rxt_sacked);
Florin Corasbe237bf2019-09-27 08:16:40 -07001184 ASSERT ((ack - tc->snd_una) >= tc->sack_sb.last_bytes_delivered
1185 || (tc->flags & TCP_CONN_FINSNT));
Florin Corasb3f58e12019-07-05 18:31:54 -07001186
Florin Corasa436a422019-08-20 07:09:31 -07001187 TCP_EVT (TCP_EVT_CC_SCOREBOARD, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001188}
Filip Tehlare275bed2019-03-06 00:06:56 -08001189#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05001190
Florin Coras93992a92017-05-24 18:03:56 -07001191/**
1192 * Try to update snd_wnd based on feedback received from peer.
Dave Barach68b0fb02017-02-28 15:15:56 -05001193 *
Florin Coras93992a92017-05-24 18:03:56 -07001194 * If successful, and new window is 'effectively' 0, activate persist
1195 * timer.
1196 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001197static void
1198tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
1199{
Florin Coras93992a92017-05-24 18:03:56 -07001200 /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
1201 * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
Florin Coras6792ec02017-03-13 03:49:51 -07001202 if (seq_lt (tc->snd_wl1, seq)
1203 || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001204 {
1205 tc->snd_wnd = snd_wnd;
1206 tc->snd_wl1 = seq;
1207 tc->snd_wl2 = ack;
Florin Corasa436a422019-08-20 07:09:31 -07001208 TCP_EVT (TCP_EVT_SND_WND, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001209
Florin Coras9ece3c02018-11-05 11:06:53 -08001210 if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
Florin Corasbb292f42017-05-19 09:49:19 -07001211 {
Florin Coras93992a92017-05-24 18:03:56 -07001212 /* Set persist timer if not set and we just got 0 wnd */
1213 if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
1214 && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
Florin Corasbb292f42017-05-19 09:49:19 -07001215 tcp_persist_timer_set (tc);
1216 }
Florin Coras3e350af2017-03-30 02:54:28 -07001217 else
Florin Coras93992a92017-05-24 18:03:56 -07001218 {
1219 tcp_persist_timer_reset (tc);
Florin Coras9ece3c02018-11-05 11:06:53 -08001220 if (PREDICT_FALSE (!tcp_in_recovery (tc) && tc->rto_boff > 0))
Florin Coras93992a92017-05-24 18:03:56 -07001221 {
1222 tc->rto_boff = 0;
1223 tcp_update_rto (tc);
1224 }
1225 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001226 }
1227}
1228
Florin Corasd2aab832018-05-22 11:39:59 -07001229/**
1230 * Init loss recovery/fast recovery.
1231 *
1232 * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
1233 * updated in @ref tcp_cc_handle_event after fast retransmit
1234 */
Florin Coras36ebcff2019-09-12 18:36:44 -07001235static void
Florin Coras93992a92017-05-24 18:03:56 -07001236tcp_cc_init_congestion (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001237{
Florin Coras93992a92017-05-24 18:03:56 -07001238 tcp_fastrecovery_on (tc);
Florin Coras47596832019-03-12 18:58:54 -07001239 tc->snd_congestion = tc->snd_nxt;
Florin Coras62166002018-04-18 16:40:55 -07001240 tc->cwnd_acc_bytes = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001241 tc->snd_rxt_bytes = 0;
Florin Coras36ebcff2019-09-12 18:36:44 -07001242 tc->rxt_delivered = 0;
1243 tc->prr_delivered = 0;
Florin Corasbe237bf2019-09-27 08:16:40 -07001244 tc->prr_start = tc->snd_una;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001245 tc->prev_ssthresh = tc->ssthresh;
1246 tc->prev_cwnd = tc->cwnd;
Florin Coras36ebcff2019-09-12 18:36:44 -07001247
Florin Corasbe237bf2019-09-27 08:16:40 -07001248 tc->snd_rxt_ts = tcp_tstamp (tc);
Florin Coras36ebcff2019-09-12 18:36:44 -07001249 tcp_cc_congestion (tc);
1250
1251 /* Post retransmit update cwnd to ssthresh and account for the
1252 * three segments that have left the network and should've been
1253 * buffered at the receiver XXX */
1254 if (!tcp_opts_sack_permitted (&tc->rcv_opts))
1255 tc->cwnd += 3 * tc->snd_mss;
1256
Florin Corasedfe0ee2019-07-29 18:13:25 -07001257 tc->fr_occurences += 1;
Florin Corasa436a422019-08-20 07:09:31 -07001258 TCP_EVT (TCP_EVT_CC_EVT, tc, 4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001259}
Dave Barach68b0fb02017-02-28 15:15:56 -05001260
1261static void
Florin Coras93992a92017-05-24 18:03:56 -07001262tcp_cc_congestion_undo (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001263{
Florin Coras93992a92017-05-24 18:03:56 -07001264 tc->cwnd = tc->prev_cwnd;
1265 tc->ssthresh = tc->prev_ssthresh;
Florin Coraseff6b822019-07-03 19:51:02 -07001266 tcp_cc_undo_recovery (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001267 ASSERT (tc->rto_boff == 0);
Florin Corasa436a422019-08-20 07:09:31 -07001268 TCP_EVT (TCP_EVT_CC_EVT, tc, 5);
Florin Coras93992a92017-05-24 18:03:56 -07001269}
Dave Barach68b0fb02017-02-28 15:15:56 -05001270
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001271static inline u8
1272tcp_cc_is_spurious_timeout_rxt (tcp_connection_t * tc)
Florin Coras93992a92017-05-24 18:03:56 -07001273{
Florin Corasf1762d62017-09-24 19:43:08 -04001274 return (tcp_in_recovery (tc) && tc->rto_boff == 1
Dave Barach2c25a622017-06-26 11:35:07 -04001275 && tc->snd_rxt_ts
Florin Coras93992a92017-05-24 18:03:56 -07001276 && tcp_opts_tstamp (&tc->rcv_opts)
1277 && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
1278}
1279
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001280static inline u8
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001281tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
1282{
Florin Coras36ebcff2019-09-12 18:36:44 -07001283 return (tcp_cc_is_spurious_timeout_rxt (tc));
1284}
1285
1286static inline u8
1287tcp_should_fastrecover_sack (tcp_connection_t * tc)
1288{
1289 return (tc->sack_sb.lost_bytes
1290 || ((TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
1291 < tc->sack_sb.sacked_bytes));
1292}
1293
1294static inline u8
Florin Corasbe237bf2019-09-27 08:16:40 -07001295tcp_should_fastrecover (tcp_connection_t * tc, u8 has_sack)
Florin Coras36ebcff2019-09-12 18:36:44 -07001296{
Florin Corasbe237bf2019-09-27 08:16:40 -07001297 if (!has_sack)
1298 {
1299 /* If of of the two conditions lower hold, reset dupacks because
1300 * we're probably after timeout (RFC6582 heuristics).
1301 * If Cumulative ack does not cover more than congestion threshold,
1302 * and:
1303 * 1) The following doesn't hold: The congestion window is greater
1304 * than SMSS bytes and the difference between highest_ack
1305 * and prev_highest_ack is at most 4*SMSS bytes
1306 * 2) Echoed timestamp in the last non-dup ack does not equal the
1307 * stored timestamp
1308 */
1309 if (seq_leq (tc->snd_una, tc->snd_congestion)
1310 && ((!(tc->cwnd > tc->snd_mss
1311 && tc->bytes_acked <= 4 * tc->snd_mss))
1312 || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
1313 {
1314 tc->rcv_dupacks = 0;
1315 return 0;
1316 }
1317 }
Florin Coras36ebcff2019-09-12 18:36:44 -07001318 return ((tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
1319 || tcp_should_fastrecover_sack (tc));
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001320}
1321
Florin Coras0dbd5172018-06-25 16:19:34 -07001322static int
Florin Coras93992a92017-05-24 18:03:56 -07001323tcp_cc_recover (tcp_connection_t * tc)
1324{
Florin Coras321cfa52019-09-12 18:49:44 -07001325 sack_scoreboard_hole_t *hole;
Florin Coras36ebcff2019-09-12 18:36:44 -07001326 u8 is_spurious = 0;
Florin Coras321cfa52019-09-12 18:49:44 -07001327
Florin Coras93992a92017-05-24 18:03:56 -07001328 ASSERT (tcp_in_cong_recovery (tc));
Florin Coras321cfa52019-09-12 18:49:44 -07001329
Florin Coras36ebcff2019-09-12 18:36:44 -07001330 if (tcp_cc_is_spurious_retransmit (tc))
1331 {
1332 tcp_cc_congestion_undo (tc);
1333 is_spurious = 1;
1334 }
1335
Florin Corasc31dc312019-10-06 14:06:14 -07001336 tcp_connection_tx_pacer_reset (tc, tc->cwnd, 0 /* start bucket */ );
Florin Corasb3dce892019-10-30 09:22:14 -07001337 tc->rcv_dupacks = 0;
Florin Corasc31dc312019-10-06 14:06:14 -07001338
Florin Coras36ebcff2019-09-12 18:36:44 -07001339 /* Previous recovery left us congested. Continue sending as part
1340 * of the current recovery event with an updated snd_congestion */
1341 if (tc->sack_sb.sacked_bytes)
1342 {
1343 tc->snd_congestion = tc->snd_nxt;
Florin Coras36ebcff2019-09-12 18:36:44 -07001344 tcp_program_retransmit (tc);
1345 return is_spurious;
1346 }
1347
Florin Corasb3dce892019-10-30 09:22:14 -07001348 tc->rxt_delivered = 0;
1349 tc->snd_rxt_bytes = 0;
1350 tc->snd_rxt_ts = 0;
1351 tc->prr_delivered = 0;
1352 tc->rtt_ts = 0;
1353 tc->flags &= ~TCP_CONN_RXT_PENDING;
1354
Florin Coras321cfa52019-09-12 18:49:44 -07001355 hole = scoreboard_first_hole (&tc->sack_sb);
1356 if (hole && hole->start == tc->snd_una && hole->end == tc->snd_nxt)
1357 scoreboard_clear (&tc->sack_sb);
1358
Florin Coras36ebcff2019-09-12 18:36:44 -07001359 if (!tcp_in_recovery (tc) && !is_spurious)
1360 tcp_cc_recovered (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001361
Florin Coras36ebcff2019-09-12 18:36:44 -07001362 tcp_fastrecovery_off (tc);
1363 tcp_fastrecovery_first_off (tc);
1364 tcp_recovery_off (tc);
1365 TCP_EVT (TCP_EVT_CC_EVT, tc, 3);
Florin Coras93992a92017-05-24 18:03:56 -07001366
1367 ASSERT (tc->rto_boff == 0);
1368 ASSERT (!tcp_in_cong_recovery (tc));
Florin Coras3eb50622017-07-13 01:24:57 -04001369 ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
Florin Coras36ebcff2019-09-12 18:36:44 -07001370 return is_spurious;
Florin Coras93992a92017-05-24 18:03:56 -07001371}
1372
1373static void
Florin Coras52814732019-06-12 15:38:19 -07001374tcp_cc_update (tcp_connection_t * tc, tcp_rate_sample_t * rs)
Florin Coras93992a92017-05-24 18:03:56 -07001375{
Florin Coras3eb50622017-07-13 01:24:57 -04001376 ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001377
1378 /* Congestion avoidance */
Florin Coras52814732019-06-12 15:38:19 -07001379 tcp_cc_rcv_ack (tc, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001380
1381 /* If a cumulative ack, make sure dupacks is 0 */
1382 tc->rcv_dupacks = 0;
1383
1384 /* When dupacks hits the threshold we only enter fast retransmit if
1385 * cumulative ack covers more than snd_congestion. Should snd_una
1386 * wrap this test may fail under otherwise valid circumstances.
1387 * Therefore, proactively update snd_congestion when wrap detected. */
1388 if (PREDICT_FALSE
1389 (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1390 && seq_gt (tc->snd_congestion, tc->snd_una)))
1391 tc->snd_congestion = tc->snd_una - 1;
1392}
1393
Florin Corasf03a59a2017-06-09 21:07:32 -07001394/**
1395 * One function to rule them all ... and in the darkness bind them
1396 */
Florin Coras93992a92017-05-24 18:03:56 -07001397static void
Florin Coras52814732019-06-12 15:38:19 -07001398tcp_cc_handle_event (tcp_connection_t * tc, tcp_rate_sample_t * rs,
1399 u32 is_dack)
Florin Coras93992a92017-05-24 18:03:56 -07001400{
Florin Corasafef8bf2019-09-11 23:22:29 -07001401 u8 has_sack = tcp_opts_sack_permitted (&tc->rcv_opts);
Florin Corasf03a59a2017-06-09 21:07:32 -07001402
Florin Corasafef8bf2019-09-11 23:22:29 -07001403 /*
Florin Corasbe237bf2019-09-27 08:16:40 -07001404 * If not in recovery, figure out if we should enter
Florin Corasafef8bf2019-09-11 23:22:29 -07001405 */
Florin Corasbe237bf2019-09-27 08:16:40 -07001406 if (!tcp_in_cong_recovery (tc))
Florin Corasca1c8f32018-05-23 21:01:30 -07001407 {
Florin Corasbe237bf2019-09-27 08:16:40 -07001408 ASSERT (is_dack);
Florin Coras36ebcff2019-09-12 18:36:44 -07001409
Florin Coras93992a92017-05-24 18:03:56 -07001410 tc->rcv_dupacks++;
Florin Corasbe237bf2019-09-27 08:16:40 -07001411 TCP_EVT (TCP_EVT_DUPACK_RCVD, tc, 1);
1412 tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
Florin Coras93992a92017-05-24 18:03:56 -07001413
Florin Corasbe237bf2019-09-27 08:16:40 -07001414 if (tcp_should_fastrecover (tc, has_sack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001415 {
Florin Coras93992a92017-05-24 18:03:56 -07001416 tcp_cc_init_congestion (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001417
Florin Corasafef8bf2019-09-11 23:22:29 -07001418 if (has_sack)
Florin Corasbe237bf2019-09-27 08:16:40 -07001419 scoreboard_init_rxt (&tc->sack_sb, tc->snd_una);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001420
Florin Coras36ebcff2019-09-12 18:36:44 -07001421 tcp_connection_tx_pacer_reset (tc, tc->cwnd, 0 /* start bucket */ );
1422 tcp_program_retransmit (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001423 }
Florin Coras93992a92017-05-24 18:03:56 -07001424
Florin Corasbe237bf2019-09-27 08:16:40 -07001425 return;
1426 }
Florin Corasd2aab832018-05-22 11:39:59 -07001427
Florin Coras93992a92017-05-24 18:03:56 -07001428 /*
Florin Corasb3dce892019-10-30 09:22:14 -07001429 * Already in recovery
Florin Coras93992a92017-05-24 18:03:56 -07001430 */
Florin Coras93992a92017-05-24 18:03:56 -07001431
Florin Coras93992a92017-05-24 18:03:56 -07001432 /*
Florin Corasbe237bf2019-09-27 08:16:40 -07001433 * Process (re)transmit feedback. Output path uses this to decide how much
1434 * more data to release into the network
1435 */
1436 if (has_sack)
1437 {
Florin Corasb3dce892019-10-30 09:22:14 -07001438 if (!tc->bytes_acked && tc->sack_sb.rxt_sacked)
1439 tcp_fastrecovery_first_on (tc);
1440
Florin Corasbe237bf2019-09-27 08:16:40 -07001441 tc->rxt_delivered += tc->sack_sb.rxt_sacked;
1442 tc->prr_delivered += tc->bytes_acked + tc->sack_sb.last_sacked_bytes
1443 - tc->sack_sb.last_bytes_delivered;
1444
1445 tcp_program_retransmit (tc);
1446 }
1447 else
1448 {
1449 if (is_dack)
1450 {
1451 tc->rcv_dupacks += 1;
1452 TCP_EVT (TCP_EVT_DUPACK_RCVD, tc, 1);
1453 }
1454 tc->rxt_delivered = clib_max (tc->rxt_delivered + tc->bytes_acked,
1455 tc->snd_rxt_bytes);
1456 if (is_dack)
Florin Corasbf1f8b72019-11-04 14:39:33 -08001457 tc->prr_delivered += clib_min (tc->snd_mss,
1458 tc->snd_nxt - tc->snd_una);
Florin Corasbe237bf2019-09-27 08:16:40 -07001459 else
Florin Corasbf1f8b72019-11-04 14:39:33 -08001460 tc->prr_delivered += tc->bytes_acked - clib_min (tc->bytes_acked,
1461 tc->snd_mss *
1462 tc->rcv_dupacks);
Florin Corasbe237bf2019-09-27 08:16:40 -07001463
1464 /* If partial ack, assume that the first un-acked segment was lost */
1465 if (tc->bytes_acked || tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
1466 tcp_fastrecovery_first_on (tc);
1467
1468 tcp_program_retransmit (tc);
1469 }
1470
1471 /*
Florin Corasb3dce892019-10-30 09:22:14 -07001472 * See if we can exit and stop retransmitting
1473 */
1474 if (seq_geq (tc->snd_una, tc->snd_congestion))
1475 {
1476 /* If spurious return, we've already updated everything */
1477 if (tcp_cc_recover (tc))
1478 {
1479 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1480 return;
1481 }
1482
1483 /* Treat as congestion avoidance ack */
1484 tcp_cc_rcv_ack (tc, rs);
1485 return;
1486 }
1487
1488 /*
Florin Corasbe237bf2019-09-27 08:16:40 -07001489 * Notify cc of the event
Florin Coras93992a92017-05-24 18:03:56 -07001490 */
Florin Coras93992a92017-05-24 18:03:56 -07001491
Florin Corasbe237bf2019-09-27 08:16:40 -07001492 if (!tc->bytes_acked)
1493 {
1494 tcp_cc_rcv_cong_ack (tc, TCP_CC_DUPACK, rs);
1495 return;
1496 }
1497
1498 /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
1499 * reset dupacks to 0. Also needed if in congestion recovery */
1500 tc->rcv_dupacks = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001501
Florin Coras36ebcff2019-09-12 18:36:44 -07001502 if (tcp_in_recovery (tc))
1503 tcp_cc_rcv_ack (tc, rs);
Dave Barach68b0fb02017-02-28 15:15:56 -05001504 else
Florin Coras36ebcff2019-09-12 18:36:44 -07001505 tcp_cc_rcv_cong_ack (tc, TCP_CC_PARTIALACK, rs);
Florin Corasbe237bf2019-09-27 08:16:40 -07001506}
Dave Barach68b0fb02017-02-28 15:15:56 -05001507
Florin Corasbe237bf2019-09-27 08:16:40 -07001508/**
1509 * Check if duplicate ack as per RFC5681 Sec. 2
1510 */
1511always_inline u8
1512tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd,
1513 u32 prev_snd_una)
1514{
1515 return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
1516 && seq_gt (tc->snd_nxt, tc->snd_una)
1517 && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
1518 && (prev_snd_wnd == tc->snd_wnd));
1519}
1520
1521/**
1522 * Checks if ack is a congestion control event.
1523 */
1524static u8
1525tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b,
1526 u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
1527{
1528 /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
1529 * defined to be 'duplicate' as well */
1530 *is_dack = tc->sack_sb.last_sacked_bytes
1531 || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
1532
1533 /* If reneging, wait for timer based retransmits */
1534 if (PREDICT_FALSE (tcp_is_lost_fin (tc) || tc->sack_sb.is_reneging))
1535 return 0;
1536
1537 return (*is_dack || tcp_in_cong_recovery (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -05001538}
1539
Florin Coras93992a92017-05-24 18:03:56 -07001540/**
1541 * Process incoming ACK
1542 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001543static int
Florin Coras9ece3c02018-11-05 11:06:53 -08001544tcp_rcv_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
Florin Coras7ac053b2018-11-05 15:57:21 -08001545 tcp_header_t * th, u32 * error)
Dave Barach68b0fb02017-02-28 15:15:56 -05001546{
Florin Coras93992a92017-05-24 18:03:56 -07001547 u32 prev_snd_wnd, prev_snd_una;
Florin Coras52814732019-06-12 15:38:19 -07001548 tcp_rate_sample_t rs = { 0 };
Florin Coras93992a92017-05-24 18:03:56 -07001549 u8 is_dack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001550
Florin Corasa436a422019-08-20 07:09:31 -07001551 TCP_EVT (TCP_EVT_CC_STAT, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001552
Florin Coras6792ec02017-03-13 03:49:51 -07001553 /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
Florin Coras93992a92017-05-24 18:03:56 -07001554 if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001555 {
Florin Coras47596832019-03-12 18:58:54 -07001556 /* We've probably entered recovery and the peer still has some
1557 * of the data we've sent. Update snd_nxt and accept the ack */
Florin Coras282a3cb2019-04-02 21:43:38 -07001558 if (seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max)
1559 && seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
Florin Corasca1c8f32018-05-23 21:01:30 -07001560 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001561 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
Florin Corasca1c8f32018-05-23 21:01:30 -07001562 goto process_ack;
1563 }
1564
Florin Corasedfe0ee2019-07-29 18:13:25 -07001565 tc->errors.above_ack_wnd += 1;
Florin Coras47596832019-03-12 18:58:54 -07001566 *error = TCP_ERROR_ACK_FUTURE;
Florin Corasa436a422019-08-20 07:09:31 -07001567 TCP_EVT (TCP_EVT_ACK_RCV_ERR, tc, 0, vnet_buffer (b)->tcp.ack_number);
Florin Coras47596832019-03-12 18:58:54 -07001568 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001569 }
1570
Florin Coras6792ec02017-03-13 03:49:51 -07001571 /* If old ACK, probably it's an old dupack */
Florin Coras93992a92017-05-24 18:03:56 -07001572 if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001573 {
Florin Corasedfe0ee2019-07-29 18:13:25 -07001574 tc->errors.below_ack_wnd += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001575 *error = TCP_ERROR_ACK_OLD;
Florin Corasa436a422019-08-20 07:09:31 -07001576 TCP_EVT (TCP_EVT_ACK_RCV_ERR, tc, 1, vnet_buffer (b)->tcp.ack_number);
Florin Coras6792ec02017-03-13 03:49:51 -07001577 if (tcp_in_fastrecovery (tc) && tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
Florin Coras52814732019-06-12 15:38:19 -07001578 tcp_cc_handle_event (tc, 0, 1);
Florin Corasc28764f2017-04-26 00:08:42 -07001579 /* Don't drop yet */
1580 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001581 }
1582
Florin Coras47596832019-03-12 18:58:54 -07001583process_ack:
1584
Florin Coras93992a92017-05-24 18:03:56 -07001585 /*
1586 * Looks okay, process feedback
1587 */
Florin Corasedfe0ee2019-07-29 18:13:25 -07001588
Florin Coras93992a92017-05-24 18:03:56 -07001589 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001590 tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1591
Florin Coras93992a92017-05-24 18:03:56 -07001592 prev_snd_wnd = tc->snd_wnd;
1593 prev_snd_una = tc->snd_una;
1594 tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1595 vnet_buffer (b)->tcp.ack_number,
1596 clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1597 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
Florin Coras558e3e02019-09-06 12:56:58 -07001598 tc->snd_una = vnet_buffer (b)->tcp.ack_number;
Florin Coras93992a92017-05-24 18:03:56 -07001599 tcp_validate_txf_size (tc, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001600
Florin Corasbbcfaac2019-10-10 13:52:04 -07001601 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
Florin Coras1dbda642019-09-11 13:42:57 -07001602 tcp_bt_sample_delivery_rate (tc, &rs);
1603
Florin Coras93992a92017-05-24 18:03:56 -07001604 if (tc->bytes_acked)
Florin Coras11e9e352019-11-13 19:09:47 -08001605 {
1606 tcp_program_dequeue (wrk, tc);
1607 tcp_update_rtt (tc, &rs, vnet_buffer (b)->tcp.ack_number);
1608 }
Florin Coras93992a92017-05-24 18:03:56 -07001609
Florin Corasa436a422019-08-20 07:09:31 -07001610 TCP_EVT (TCP_EVT_ACK_RCVD, tc);
Florin Coras6534b7a2017-07-18 05:38:03 -04001611
Florin Coras93992a92017-05-24 18:03:56 -07001612 /*
1613 * Check if we have congestion event
1614 */
1615
1616 if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001617 {
Florin Coras52814732019-06-12 15:38:19 -07001618 tcp_cc_handle_event (tc, &rs, is_dack);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001619 tc->dupacks_in += is_dack;
Florin Corasb2215d62017-08-01 16:56:58 -07001620 if (!tcp_in_cong_recovery (tc))
Florin Corasa9d5bea2018-12-17 08:24:19 -08001621 {
1622 *error = TCP_ERROR_ACK_OK;
1623 return 0;
1624 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001625 *error = TCP_ERROR_ACK_DUP;
Florin Corasca09d072018-10-01 18:31:02 -07001626 if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th))
1627 return 0;
1628 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001629 }
1630
Florin Coras6792ec02017-03-13 03:49:51 -07001631 /*
Florin Coras93992a92017-05-24 18:03:56 -07001632 * Update congestion control (slow start/congestion avoidance)
Florin Coras6792ec02017-03-13 03:49:51 -07001633 */
Florin Coras52814732019-06-12 15:38:19 -07001634 tcp_cc_update (tc, &rs);
Florin Coras00cd22d2018-04-18 13:20:18 -07001635 *error = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001636 return 0;
1637}
1638
Florin Corasb11175d2018-11-09 14:34:08 -08001639static void
1640tcp_program_disconnect (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1641{
1642 if (!tcp_disconnect_pending (tc))
1643 {
1644 vec_add1 (wrk->pending_disconnects, tc->c_c_index);
1645 tcp_disconnect_pending_on (tc);
1646 }
1647}
1648
1649static void
1650tcp_handle_disconnects (tcp_worker_ctx_t * wrk)
1651{
1652 u32 thread_index, *pending_disconnects;
1653 tcp_connection_t *tc;
1654 int i;
1655
1656 if (!vec_len (wrk->pending_disconnects))
1657 return;
1658
1659 thread_index = wrk->vm->thread_index;
1660 pending_disconnects = wrk->pending_disconnects;
1661 for (i = 0; i < vec_len (pending_disconnects); i++)
1662 {
1663 tc = tcp_connection_get (pending_disconnects[i], thread_index);
1664 tcp_disconnect_pending_off (tc);
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001665 session_transport_closing_notify (&tc->connection);
Florin Corasb11175d2018-11-09 14:34:08 -08001666 }
1667 _vec_len (wrk->pending_disconnects) = 0;
1668}
1669
1670static void
1671tcp_rcv_fin (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
1672 u32 * error)
1673{
Florin Corasf73d4c22019-06-28 09:18:48 -07001674 /* Reject out-of-order fins */
1675 if (vnet_buffer (b)->tcp.seq_end != tc->rcv_nxt)
1676 return;
1677
Florin Coras3c514d52018-12-22 11:39:33 -08001678 /* Account for the FIN and send ack */
1679 tc->rcv_nxt += 1;
Florin Corascb711a42019-10-16 19:28:17 -07001680 tc->flags |= TCP_CONN_FINRCVD;
Florin Coras26dd6de2019-07-23 23:54:47 -07001681 tcp_program_ack (tc);
Florin Corasb11175d2018-11-09 14:34:08 -08001682 /* Enter CLOSE-WAIT and notify session. To avoid lingering
1683 * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
Florin Coras3c514d52018-12-22 11:39:33 -08001684 tcp_connection_set_state (tc, TCP_STATE_CLOSE_WAIT);
Florin Corasb11175d2018-11-09 14:34:08 -08001685 tcp_program_disconnect (wrk, tc);
Florin Coras9094b5c2019-08-12 14:17:47 -07001686 tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, tcp_cfg.closewait_time);
Florin Corasa436a422019-08-20 07:09:31 -07001687 TCP_EVT (TCP_EVT_FIN_RCVD, tc);
Florin Corasb11175d2018-11-09 14:34:08 -08001688 *error = TCP_ERROR_FIN_RCVD;
1689}
1690
Filip Tehlare275bed2019-03-06 00:06:56 -08001691#ifndef CLIB_MARCH_VARIANT
Florin Coras3eb50622017-07-13 01:24:57 -04001692static u8
1693tcp_sack_vector_is_sane (sack_block_t * sacks)
1694{
1695 int i;
1696 for (i = 1; i < vec_len (sacks); i++)
1697 {
1698 if (sacks[i - 1].end == sacks[i].start)
1699 return 0;
1700 }
1701 return 1;
1702}
1703
Dave Barach68b0fb02017-02-28 15:15:56 -05001704/**
1705 * Build SACK list as per RFC2018.
1706 *
1707 * Makes sure the first block contains the segment that generated the current
1708 * ACK and the following ones are the ones most recently reported in SACK
1709 * blocks.
1710 *
1711 * @param tc TCP connection for which the SACK list is updated
1712 * @param start Start sequence number of the newest SACK block
1713 * @param end End sequence of the newest SACK block
1714 */
Florin Coras45d34962017-04-25 00:05:27 -07001715void
Dave Barach68b0fb02017-02-28 15:15:56 -05001716tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1717{
Florin Corasb691f762019-02-22 09:07:20 -08001718 sack_block_t *new_list = tc->snd_sacks_fl, *block = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001719 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001720
1721 /* If the first segment is ooo add it to the list. Last write might've moved
1722 * rcv_nxt over the first segment. */
1723 if (seq_lt (tc->rcv_nxt, start))
1724 {
Florin Coras45d34962017-04-25 00:05:27 -07001725 vec_add2 (new_list, block, 1);
1726 block->start = start;
1727 block->end = end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001728 }
1729
1730 /* Find the blocks still worth keeping. */
1731 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1732 {
Florin Coras45d34962017-04-25 00:05:27 -07001733 /* Discard if rcv_nxt advanced beyond current block */
1734 if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001735 continue;
1736
Florin Coras45d34962017-04-25 00:05:27 -07001737 /* Merge or drop if segment overlapped by the new segment */
1738 if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1739 && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1740 {
1741 if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1742 new_list[0].start = tc->snd_sacks[i].start;
1743 if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1744 new_list[0].end = tc->snd_sacks[i].end;
1745 continue;
1746 }
1747
1748 /* Save to new SACK list if we have space. */
1749 if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
Florin Coras47596832019-03-12 18:58:54 -07001750 vec_add1 (new_list, tc->snd_sacks[i]);
Dave Barach68b0fb02017-02-28 15:15:56 -05001751 }
1752
Florin Coras45d34962017-04-25 00:05:27 -07001753 ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
Florin Coras6792ec02017-03-13 03:49:51 -07001754
Dave Barach68b0fb02017-02-28 15:15:56 -05001755 /* Replace old vector with new one */
Florin Corasb691f762019-02-22 09:07:20 -08001756 vec_reset_length (tc->snd_sacks);
1757 tc->snd_sacks_fl = tc->snd_sacks;
Dave Barach68b0fb02017-02-28 15:15:56 -05001758 tc->snd_sacks = new_list;
Florin Coras3eb50622017-07-13 01:24:57 -04001759
1760 /* Segments should not 'touch' */
1761 ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
Dave Barach68b0fb02017-02-28 15:15:56 -05001762}
1763
Florin Corasca1c8f32018-05-23 21:01:30 -07001764u32
1765tcp_sack_list_bytes (tcp_connection_t * tc)
1766{
1767 u32 bytes = 0, i;
1768 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1769 bytes += tc->snd_sacks[i].end - tc->snd_sacks[i].start;
1770 return bytes;
1771}
Filip Tehlare275bed2019-03-06 00:06:56 -08001772#endif /* CLIB_MARCH_VARIANT */
Florin Corasca1c8f32018-05-23 21:01:30 -07001773
Dave Barach68b0fb02017-02-28 15:15:56 -05001774/** Enqueue data for delivery to application */
Florin Coras0dbd5172018-06-25 16:19:34 -07001775static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001776tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1777 u16 data_len)
1778{
Florin Coras1f152cd2017-08-18 19:28:03 -07001779 int written, error = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001780
Dave Barach2c25a622017-06-26 11:35:07 -04001781 ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001782 ASSERT (data_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001783 written = session_enqueue_stream_connection (&tc->connection, b, 0,
1784 1 /* queue event */ , 1);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001785 tc->bytes_in += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001786
Florin Corasa436a422019-08-20 07:09:31 -07001787 TCP_EVT (TCP_EVT_INPUT, tc, 0, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001788
Dave Barach68b0fb02017-02-28 15:15:56 -05001789 /* Update rcv_nxt */
1790 if (PREDICT_TRUE (written == data_len))
1791 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001792 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001793 }
1794 /* If more data written than expected, account for out-of-order bytes. */
1795 else if (written > data_len)
1796 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001797 tc->rcv_nxt += written;
Florin Corasa436a422019-08-20 07:09:31 -07001798 TCP_EVT (TCP_EVT_CC_INPUT, tc, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001799 }
1800 else if (written > 0)
1801 {
1802 /* We've written something but FIFO is probably full now */
1803 tc->rcv_nxt += written;
Florin Coras1f152cd2017-08-18 19:28:03 -07001804 error = TCP_ERROR_PARTIALLY_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001805 }
1806 else
1807 {
Dave Barach68b0fb02017-02-28 15:15:56 -05001808 return TCP_ERROR_FIFO_FULL;
1809 }
1810
Florin Coras6792ec02017-03-13 03:49:51 -07001811 /* Update SACK list if need be */
Florin Coras93992a92017-05-24 18:03:56 -07001812 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras6792ec02017-03-13 03:49:51 -07001813 {
1814 /* Remove SACK blocks that have been delivered */
1815 tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1816 }
1817
Florin Coras1f152cd2017-08-18 19:28:03 -07001818 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -05001819}
1820
1821/** Enqueue out-of-order data */
Florin Coras0dbd5172018-06-25 16:19:34 -07001822static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001823tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1824 u16 data_len)
1825{
Florin Coras288eaab2019-02-03 15:26:14 -08001826 session_t *s0;
Florin Coras3eb50622017-07-13 01:24:57 -04001827 int rv, offset;
Florin Coras6792ec02017-03-13 03:49:51 -07001828
Florin Corasf03a59a2017-06-09 21:07:32 -07001829 ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001830 ASSERT (data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001831
Florin Corasf03a59a2017-06-09 21:07:32 -07001832 /* Enqueue out-of-order data with relative offset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07001833 rv = session_enqueue_stream_connection (&tc->connection, b,
1834 vnet_buffer (b)->tcp.seq_number -
1835 tc->rcv_nxt, 0 /* queue event */ ,
1836 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001837
1838 /* Nothing written */
1839 if (rv)
1840 {
Florin Corasa436a422019-08-20 07:09:31 -07001841 TCP_EVT (TCP_EVT_INPUT, tc, 1, data_len, 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001842 return TCP_ERROR_FIFO_FULL;
1843 }
1844
Florin Corasa436a422019-08-20 07:09:31 -07001845 TCP_EVT (TCP_EVT_INPUT, tc, 1, data_len, data_len);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001846 tc->bytes_in += data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05001847
1848 /* Update SACK list if in use */
Florin Coras93992a92017-05-24 18:03:56 -07001849 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001850 {
1851 ooo_segment_t *newest;
1852 u32 start, end;
1853
Florin Corascea194d2017-10-02 00:18:51 -07001854 s0 = session_get (tc->c_s_index, tc->c_thread_index);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001855
Dave Barach68b0fb02017-02-28 15:15:56 -05001856 /* Get the newest segment from the fifo */
Florin Coras288eaab2019-02-03 15:26:14 -08001857 newest = svm_fifo_newest_ooo_segment (s0->rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001858 if (newest)
1859 {
Sirshak Das28aa5392019-02-05 01:33:33 -06001860 offset = ooo_segment_offset_prod (s0->rx_fifo, newest);
Florin Coras3eb50622017-07-13 01:24:57 -04001861 ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1862 start = tc->rcv_nxt + offset;
Florin Coras288eaab2019-02-03 15:26:14 -08001863 end = start + ooo_segment_length (s0->rx_fifo, newest);
Florin Corasf03a59a2017-06-09 21:07:32 -07001864 tcp_update_sack_list (tc, start, end);
Florin Coras288eaab2019-02-03 15:26:14 -08001865 svm_fifo_newest_ooo_segment_reset (s0->rx_fifo);
Florin Corasa436a422019-08-20 07:09:31 -07001866 TCP_EVT (TCP_EVT_CC_SACKS, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001867 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001868 }
1869
Florin Coras00cd22d2018-04-18 13:20:18 -07001870 return TCP_ERROR_ENQUEUED_OOO;
Dave Barach68b0fb02017-02-28 15:15:56 -05001871}
1872
1873/**
Florin Coras6792ec02017-03-13 03:49:51 -07001874 * Check if ACK could be delayed. If ack can be delayed, it should return
1875 * true for a full frame. If we're always acking return 0.
Dave Barach68b0fb02017-02-28 15:15:56 -05001876 */
1877always_inline int
1878tcp_can_delack (tcp_connection_t * tc)
1879{
Florin Coras6792ec02017-03-13 03:49:51 -07001880 /* Send ack if ... */
1881 if (TCP_ALWAYS_ACK
Florin Coras74b74372019-03-28 16:31:52 -07001882 /* just sent a rcv wnd 0
1883 || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0 */
Florin Coras6792ec02017-03-13 03:49:51 -07001884 /* constrained to send ack */
1885 || (tc->flags & TCP_CONN_SNDACK) != 0
1886 /* we're almost out of tx wnd */
Florin Corasca1c8f32018-05-23 21:01:30 -07001887 || tcp_available_cc_snd_space (tc) < 4 * tc->snd_mss)
Florin Coras6792ec02017-03-13 03:49:51 -07001888 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001889
Florin Coras6792ec02017-03-13 03:49:51 -07001890 return 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001891}
1892
1893static int
Florin Corasb2215d62017-08-01 16:56:58 -07001894tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
1895{
Florin Coras1f152cd2017-08-18 19:28:03 -07001896 u32 discard, first = b->current_length;
Florin Corasb2215d62017-08-01 16:56:58 -07001897 vlib_main_t *vm = vlib_get_main ();
1898
Florin Coras1f152cd2017-08-18 19:28:03 -07001899 /* Handle multi-buffer segments */
Florin Corasb2215d62017-08-01 16:56:58 -07001900 if (n_bytes_to_drop > b->current_length)
1901 {
1902 if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1903 return -1;
1904 do
1905 {
1906 discard = clib_min (n_bytes_to_drop, b->current_length);
1907 vlib_buffer_advance (b, discard);
1908 b = vlib_get_buffer (vm, b->next_buffer);
1909 n_bytes_to_drop -= discard;
1910 }
1911 while (n_bytes_to_drop);
Florin Coras1f152cd2017-08-18 19:28:03 -07001912 if (n_bytes_to_drop > first)
1913 b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
Florin Corasb2215d62017-08-01 16:56:58 -07001914 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001915 else
1916 vlib_buffer_advance (b, n_bytes_to_drop);
1917 vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
Florin Corasb2215d62017-08-01 16:56:58 -07001918 return 0;
1919}
1920
Florin Coras00cd22d2018-04-18 13:20:18 -07001921/**
1922 * Receive buffer for connection and handle acks
1923 *
1924 * It handles both in order or out-of-order data.
1925 */
Florin Corasb2215d62017-08-01 16:56:58 -07001926static int
Florin Coras7ac053b2018-11-05 15:57:21 -08001927tcp_segment_rcv (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1928 vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001929{
Florin Coras00cd22d2018-04-18 13:20:18 -07001930 u32 error, n_bytes_to_drop, n_data_bytes;
Florin Coras6534b7a2017-07-18 05:38:03 -04001931
1932 vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1933 n_data_bytes = vnet_buffer (b)->tcp.data_len;
1934 ASSERT (n_data_bytes);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001935 tc->data_segs_in += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001936
1937 /* Handle out-of-order data */
1938 if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1939 {
Florin Coras6792ec02017-03-13 03:49:51 -07001940 /* Old sequence numbers allowed through because they overlapped
1941 * the rx window */
1942 if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001943 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001944 /* Completely in the past (possible retransmit). Ack
1945 * retransmissions since we may not have any data to send */
Florin Corasf03a59a2017-06-09 21:07:32 -07001946 if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
Florin Coras6534b7a2017-07-18 05:38:03 -04001947 {
Florin Coras26dd6de2019-07-23 23:54:47 -07001948 tcp_program_ack (tc);
Florin Coras00cd22d2018-04-18 13:20:18 -07001949 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras6534b7a2017-07-18 05:38:03 -04001950 goto done;
1951 }
Dave Barach259cdae2017-05-15 16:27:05 -04001952
Florin Coras00cd22d2018-04-18 13:20:18 -07001953 /* Chop off the bytes in the past and see if what is left
1954 * can be enqueued in order */
Florin Corasdb84e572017-05-09 18:54:52 -07001955 n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1956 n_data_bytes -= n_bytes_to_drop;
Dave Barach2c25a622017-06-26 11:35:07 -04001957 vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001958 if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
Florin Coras00cd22d2018-04-18 13:20:18 -07001959 {
1960 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras00cd22d2018-04-18 13:20:18 -07001961 goto done;
1962 }
Florin Corasdb84e572017-05-09 18:54:52 -07001963 goto in_order;
Dave Barach68b0fb02017-02-28 15:15:56 -05001964 }
1965
Florin Coras00cd22d2018-04-18 13:20:18 -07001966 /* RFC2581: Enqueue and send DUPACK for fast retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001967 error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
Florin Coras26dd6de2019-07-23 23:54:47 -07001968 tcp_program_dupack (tc);
Florin Corasa436a422019-08-20 07:09:31 -07001969 TCP_EVT (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
Florin Corasedfe0ee2019-07-29 18:13:25 -07001970 tc->errors.above_data_wnd += seq_gt (vnet_buffer (b)->tcp.seq_end,
1971 tc->rcv_las + tc->rcv_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -05001972 goto done;
1973 }
1974
Florin Corasdb84e572017-05-09 18:54:52 -07001975in_order:
1976
Dave Barach68b0fb02017-02-28 15:15:56 -05001977 /* In order data, enqueue. Fifo figures out by itself if any out-of-order
1978 * segments can be enqueued after fifo tail offset changes. */
1979 error = tcp_session_enqueue_data (tc, b, n_data_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001980 if (tcp_can_delack (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001981 {
Florin Coras6792ec02017-03-13 03:49:51 -07001982 if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
Florin Coras9094b5c2019-08-12 14:17:47 -07001983 tcp_timer_set (tc, TCP_TIMER_DELACK, tcp_cfg.delack_time);
Florin Coras3e350af2017-03-30 02:54:28 -07001984 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001985 }
1986
Florin Coras26dd6de2019-07-23 23:54:47 -07001987 tcp_program_ack (tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001988
Dave Barach68b0fb02017-02-28 15:15:56 -05001989done:
1990 return error;
1991}
1992
Clement Durand6cf260c2017-04-13 13:27:04 +02001993typedef struct
1994{
1995 tcp_header_t tcp_header;
1996 tcp_connection_t tcp_connection;
1997} tcp_rx_trace_t;
1998
Florin Coras0dbd5172018-06-25 16:19:34 -07001999static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02002000format_tcp_rx_trace (u8 * s, va_list * args)
2001{
2002 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2003 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2004 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +02002005 u32 indent = format_get_indent (s);
Clement Durand6cf260c2017-04-13 13:27:04 +02002006
2007 s = format (s, "%U\n%U%U",
2008 format_tcp_header, &t->tcp_header, 128,
2009 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -07002010 format_tcp_connection, &t->tcp_connection, 1);
Clement Durand6cf260c2017-04-13 13:27:04 +02002011
2012 return s;
2013}
2014
Florin Coras0dbd5172018-06-25 16:19:34 -07002015static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02002016format_tcp_rx_trace_short (u8 * s, va_list * args)
2017{
2018 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2019 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2020 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
2021
2022 s = format (s, "%d -> %d (%U)",
Florin Coras4df38712018-06-20 12:44:16 -07002023 clib_net_to_host_u16 (t->tcp_header.dst_port),
2024 clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state,
Florin Corasbb292f42017-05-19 09:49:19 -07002025 t->tcp_connection.state);
Clement Durand6cf260c2017-04-13 13:27:04 +02002026
2027 return s;
2028}
2029
Florin Coras4df38712018-06-20 12:44:16 -07002030static void
Florin Coras82b13a82017-04-25 11:58:06 -07002031tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
2032 tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
2033{
2034 if (tc0)
2035 {
Dave Barach178cf492018-11-13 16:34:13 -05002036 clib_memcpy_fast (&t0->tcp_connection, tc0,
2037 sizeof (t0->tcp_connection));
Florin Coras82b13a82017-04-25 11:58:06 -07002038 }
2039 else
2040 {
2041 th0 = tcp_buffer_hdr (b0);
2042 }
Dave Barach178cf492018-11-13 16:34:13 -05002043 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
Florin Coras82b13a82017-04-25 11:58:06 -07002044}
2045
Florin Coras4df38712018-06-20 12:44:16 -07002046static void
2047tcp_established_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2048 vlib_frame_t * frame, u8 is_ip4)
2049{
2050 u32 *from, n_left;
2051
2052 n_left = frame->n_vectors;
2053 from = vlib_frame_vector_args (frame);
2054
2055 while (n_left >= 1)
2056 {
2057 tcp_connection_t *tc0;
2058 tcp_rx_trace_t *t0;
2059 tcp_header_t *th0;
2060 vlib_buffer_t *b0;
2061 u32 bi0;
2062
2063 bi0 = from[0];
2064 b0 = vlib_get_buffer (vm, bi0);
2065
2066 if (b0->flags & VLIB_BUFFER_IS_TRACED)
2067 {
2068 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2069 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2070 vm->thread_index);
2071 th0 = tcp_buffer_hdr (b0);
2072 tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
2073 }
2074
2075 from += 1;
2076 n_left -= 1;
2077 }
2078}
2079
Florin Coras6792ec02017-03-13 03:49:51 -07002080always_inline void
Florin Coras00cd22d2018-04-18 13:20:18 -07002081tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
2082 u8 is_ip4, u32 evt, u32 val)
Dave Barach68b0fb02017-02-28 15:15:56 -05002083{
Florin Coras6792ec02017-03-13 03:49:51 -07002084 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -07002085 vlib_node_increment_counter (vm, tcp4_node, evt, val);
Florin Coras6792ec02017-03-13 03:49:51 -07002086 else
Florin Coras3cbc04b2017-10-02 00:18:51 -07002087 vlib_node_increment_counter (vm, tcp6_node, evt, val);
Dave Barach68b0fb02017-02-28 15:15:56 -05002088}
2089
Florin Coras00cd22d2018-04-18 13:20:18 -07002090#define tcp_maybe_inc_counter(node_id, err, count) \
2091{ \
2092 if (next0 != tcp_next_drop (is_ip4)) \
2093 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2094 tcp6_##node_id##_node.index, is_ip4, err, \
2095 1); \
2096}
2097#define tcp_inc_counter(node_id, err, count) \
2098 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2099 tcp6_##node_id##_node.index, is_ip4, \
2100 err, count)
2101#define tcp_maybe_inc_err_counter(cnts, err) \
2102{ \
2103 cnts[err] += (next0 != tcp_next_drop (is_ip4)); \
2104}
2105#define tcp_inc_err_counter(cnts, err, val) \
2106{ \
2107 cnts[err] += val; \
2108}
2109#define tcp_store_err_counters(node_id, cnts) \
2110{ \
2111 int i; \
2112 for (i = 0; i < TCP_N_ERROR; i++) \
2113 if (cnts[i]) \
2114 tcp_inc_counter(node_id, i, cnts[i]); \
2115}
2116
2117
Dave Barach68b0fb02017-02-28 15:15:56 -05002118always_inline uword
2119tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07002120 vlib_frame_t * frame, int is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05002121{
Florin Coras4df38712018-06-20 12:44:16 -07002122 u32 thread_index = vm->thread_index, errors = 0;
Florin Coras9ece3c02018-11-05 11:06:53 -08002123 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08002124 u32 n_left_from, *from, *first_buffer;
Florin Coras00cd22d2018-04-18 13:20:18 -07002125 u16 err_counters[TCP_N_ERROR] = { 0 };
Dave Barach68b0fb02017-02-28 15:15:56 -05002126
Florin Coras4df38712018-06-20 12:44:16 -07002127 if (node->flags & VLIB_NODE_FLAG_TRACE)
2128 tcp_established_trace_frame (vm, node, frame, is_ip4);
2129
Florin Coras7ac053b2018-11-05 15:57:21 -08002130 first_buffer = from = vlib_frame_vector_args (frame);
Florin Coras4df38712018-06-20 12:44:16 -07002131 n_left_from = frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002132
2133 while (n_left_from > 0)
2134 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002135 u32 bi0, error0 = TCP_ERROR_ACK_OK;
2136 vlib_buffer_t *b0;
Florin Coras3c514d52018-12-22 11:39:33 -08002137 tcp_header_t *th0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002138 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002139
Florin Coras7ac053b2018-11-05 15:57:21 -08002140 if (n_left_from > 1)
Dave Barach68b0fb02017-02-28 15:15:56 -05002141 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002142 vlib_buffer_t *pb;
2143 pb = vlib_get_buffer (vm, from[1]);
2144 vlib_prefetch_buffer_header (pb, LOAD);
2145 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
Dave Barach68b0fb02017-02-28 15:15:56 -05002146 }
2147
Florin Coras7ac053b2018-11-05 15:57:21 -08002148 bi0 = from[0];
2149 from += 1;
2150 n_left_from -= 1;
2151
2152 b0 = vlib_get_buffer (vm, bi0);
2153 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2154 thread_index);
2155
2156 if (PREDICT_FALSE (tc0 == 0))
2157 {
2158 error0 = TCP_ERROR_INVALID_CONNECTION;
2159 goto done;
2160 }
2161
2162 th0 = tcp_buffer_hdr (b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002163
2164 /* TODO header prediction fast path */
2165
2166 /* 1-4: check SEQ, RST, SYN */
2167 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, th0, &error0)))
2168 {
Florin Corasa436a422019-08-20 07:09:31 -07002169 TCP_EVT (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp);
Florin Coras7ac053b2018-11-05 15:57:21 -08002170 goto done;
2171 }
2172
2173 /* 5: check the ACK field */
2174 if (PREDICT_FALSE (tcp_rcv_ack (wrk, tc0, b0, th0, &error0)))
2175 goto done;
2176
2177 /* 6: check the URG bit TODO */
2178
2179 /* 7: process the segment text */
2180 if (vnet_buffer (b0)->tcp.data_len)
2181 error0 = tcp_segment_rcv (wrk, tc0, b0);
2182
2183 /* 8: check the FIN bit */
Florin Coras3c514d52018-12-22 11:39:33 -08002184 if (PREDICT_FALSE (tcp_is_fin (th0)))
Florin Corasb11175d2018-11-09 14:34:08 -08002185 tcp_rcv_fin (wrk, tc0, b0, &error0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002186
2187 done:
2188 tcp_inc_err_counter (err_counters, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002189 }
2190
Florin Coras31c99552019-03-01 13:00:58 -08002191 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2192 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002193 err_counters[TCP_ERROR_MSG_QUEUE_FULL] = errors;
Florin Coras00cd22d2018-04-18 13:20:18 -07002194 tcp_store_err_counters (established, err_counters);
Florin Coras9ece3c02018-11-05 11:06:53 -08002195 tcp_handle_postponed_dequeues (wrk);
Florin Corasb11175d2018-11-09 14:34:08 -08002196 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08002197 vlib_buffer_free (vm, first_buffer, frame->n_vectors);
Florin Coras4df38712018-06-20 12:44:16 -07002198
2199 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002200}
2201
Filip Tehlare275bed2019-03-06 00:06:56 -08002202VLIB_NODE_FN (tcp4_established_node) (vlib_main_t * vm,
2203 vlib_node_runtime_t * node,
2204 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002205{
2206 return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2207}
2208
Filip Tehlare275bed2019-03-06 00:06:56 -08002209VLIB_NODE_FN (tcp6_established_node) (vlib_main_t * vm,
2210 vlib_node_runtime_t * node,
2211 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002212{
2213 return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2214}
2215
2216/* *INDENT-OFF* */
2217VLIB_REGISTER_NODE (tcp4_established_node) =
2218{
Dave Barach68b0fb02017-02-28 15:15:56 -05002219 .name = "tcp4-established",
2220 /* Takes a vector of packets. */
2221 .vector_size = sizeof (u32),
Florin Corase69f4952017-03-07 10:06:24 -08002222 .n_errors = TCP_N_ERROR,
2223 .error_strings = tcp_error_strings,
Dave Barach68b0fb02017-02-28 15:15:56 -05002224 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2225 .next_nodes =
2226 {
2227#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2228 foreach_tcp_state_next
2229#undef _
2230 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002231 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002232};
2233/* *INDENT-ON* */
2234
Dave Barach68b0fb02017-02-28 15:15:56 -05002235/* *INDENT-OFF* */
2236VLIB_REGISTER_NODE (tcp6_established_node) =
2237{
Dave Barach68b0fb02017-02-28 15:15:56 -05002238 .name = "tcp6-established",
2239 /* Takes a vector of packets. */
2240 .vector_size = sizeof (u32),
2241 .n_errors = TCP_N_ERROR,
2242 .error_strings = tcp_error_strings,
2243 .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
2254
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002255static u8
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002256tcp_lookup_is_valid (tcp_connection_t * tc, vlib_buffer_t * b,
2257 tcp_header_t * hdr)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002258{
Florin Corascea194d2017-10-02 00:18:51 -07002259 transport_connection_t *tmp = 0;
2260 u64 handle;
2261
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002262 if (!tc)
2263 return 1;
2264
Florin Coras70131132017-11-27 02:43:30 -08002265 /* Proxy case */
2266 if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
2267 return 1;
2268
Florin Coras07df7912019-11-07 08:26:06 -08002269 u8 is_ip_valid = 0, val_l, val_r;
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002270
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002271 if (tc->connection.is_ip4)
2272 {
2273 ip4_header_t *ip4_hdr = (ip4_header_t *) vlib_buffer_get_current (b);
Florin Coras07df7912019-11-07 08:26:06 -08002274
2275 val_l = !ip4_address_compare (&ip4_hdr->dst_address,
2276 &tc->connection.lcl_ip.ip4);
2277 val_l = val_l || ip_is_zero (&tc->connection.lcl_ip, 1);
2278 val_r = !ip4_address_compare (&ip4_hdr->src_address,
2279 &tc->connection.rmt_ip.ip4);
2280 val_r = val_r || tc->state == TCP_STATE_LISTEN;
2281 is_ip_valid = val_l && val_r;
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002282 }
2283 else
2284 {
2285 ip6_header_t *ip6_hdr = (ip6_header_t *) vlib_buffer_get_current (b);
Florin Coras07df7912019-11-07 08:26:06 -08002286
2287 val_l = !ip6_address_compare (&ip6_hdr->dst_address,
2288 &tc->connection.lcl_ip.ip6);
2289 val_l = val_l || ip_is_zero (&tc->connection.lcl_ip, 0);
2290 val_r = !ip6_address_compare (&ip6_hdr->src_address,
2291 &tc->connection.rmt_ip.ip6);
2292 val_r = val_r || tc->state == TCP_STATE_LISTEN;
2293 is_ip_valid = val_l && val_r;
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002294 }
2295
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002296 u8 is_valid = (tc->c_lcl_port == hdr->dst_port
2297 && (tc->state == TCP_STATE_LISTEN
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002298 || tc->c_rmt_port == hdr->src_port) && is_ip_valid);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002299
2300 if (!is_valid)
2301 {
Florin Corascea194d2017-10-02 00:18:51 -07002302 handle = session_lookup_half_open_handle (&tc->connection);
2303 tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
Florin Coras3cbc04b2017-10-02 00:18:51 -07002304 tc->c_proto, tc->c_is_ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002305
2306 if (tmp)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002307 {
2308 if (tmp->lcl_port == hdr->dst_port
2309 && tmp->rmt_port == hdr->src_port)
2310 {
Florin Corascea194d2017-10-02 00:18:51 -07002311 TCP_DBG ("half-open is valid!");
Ryujiro Shibuya3ea17d52019-11-05 07:24:32 +00002312 is_valid = 1;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002313 }
2314 }
2315 }
2316 return is_valid;
2317}
2318
2319/**
2320 * Lookup transport connection
2321 */
2322static tcp_connection_t *
Florin Corascea194d2017-10-02 00:18:51 -07002323tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
2324 u8 is_ip4)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002325{
2326 tcp_header_t *tcp;
2327 transport_connection_t *tconn;
2328 tcp_connection_t *tc;
Florin Corasdff48db2017-11-19 18:06:58 -08002329 u8 is_filtered = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002330 if (is_ip4)
2331 {
2332 ip4_header_t *ip4;
2333 ip4 = vlib_buffer_get_current (b);
2334 tcp = ip4_next_header (ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002335 tconn = session_lookup_connection_wt4 (fib_index,
2336 &ip4->dst_address,
2337 &ip4->src_address,
2338 tcp->dst_port,
2339 tcp->src_port,
2340 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002341 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002342 tc = tcp_get_connection_from_transport (tconn);
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002343 ASSERT (tcp_lookup_is_valid (tc, b, tcp));
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002344 }
2345 else
2346 {
2347 ip6_header_t *ip6;
2348 ip6 = vlib_buffer_get_current (b);
2349 tcp = ip6_next_header (ip6);
Florin Corascea194d2017-10-02 00:18:51 -07002350 tconn = session_lookup_connection_wt6 (fib_index,
2351 &ip6->dst_address,
2352 &ip6->src_address,
2353 tcp->dst_port,
2354 tcp->src_port,
2355 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002356 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002357 tc = tcp_get_connection_from_transport (tconn);
Srikanth Akulacf4c2102019-11-06 18:53:13 -08002358 ASSERT (tcp_lookup_is_valid (tc, b, tcp));
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002359 }
2360 return tc;
2361}
2362
Simon Zhang1146ff42019-09-02 22:54:00 +08002363always_inline void
2364tcp_check_tx_offload (tcp_connection_t * tc, int is_ipv4)
2365{
2366 vnet_main_t *vnm = vnet_get_main ();
2367 const dpo_id_t *dpo;
2368 const load_balance_t *lb;
2369 vnet_hw_interface_t *hw_if;
2370 u32 sw_if_idx, lb_idx;
2371
2372 if (is_ipv4)
2373 {
2374 ip4_address_t *dst_addr = &(tc->c_rmt_ip.ip4);
2375 lb_idx = ip4_fib_forwarding_lookup (tc->c_fib_index, dst_addr);
2376 }
2377 else
2378 {
2379 ip6_address_t *dst_addr = &(tc->c_rmt_ip.ip6);
2380 lb_idx = ip6_fib_table_fwding_lookup (tc->c_fib_index, dst_addr);
2381 }
2382
2383 lb = load_balance_get (lb_idx);
2384 dpo = load_balance_get_bucket_i (lb, 0);
2385
2386 sw_if_idx = dpo->dpoi_index;
2387 hw_if = vnet_get_sup_hw_interface (vnm, sw_if_idx);
2388
Florin Corasbbcfaac2019-10-10 13:52:04 -07002389 if (hw_if->flags & VNET_HW_INTERFACE_FLAG_SUPPORTS_GSO)
2390 tc->cfg_flags |= TCP_CFG_F_TSO;
Simon Zhang1146ff42019-09-02 22:54:00 +08002391}
2392
Dave Barach68b0fb02017-02-28 15:15:56 -05002393always_inline uword
2394tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2395 vlib_frame_t * from_frame, int is_ip4)
2396{
Florin Coras7ac053b2018-11-05 15:57:21 -08002397 u32 n_left_from, *from, *first_buffer, errors = 0;
2398 u32 my_thread_index = vm->thread_index;
2399 tcp_worker_ctx_t *wrk = tcp_get_worker (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05002400
Florin Coras7ac053b2018-11-05 15:57:21 -08002401 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002402 n_left_from = from_frame->n_vectors;
2403
Dave Barach68b0fb02017-02-28 15:15:56 -05002404 while (n_left_from > 0)
2405 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002406 u32 bi0, ack0, seq0, error0 = TCP_ERROR_NONE;
2407 tcp_connection_t *tc0, *new_tc0;
2408 tcp_header_t *tcp0 = 0;
2409 tcp_rx_trace_t *t0;
2410 vlib_buffer_t *b0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002411
Florin Coras7ac053b2018-11-05 15:57:21 -08002412 bi0 = from[0];
2413 from += 1;
2414 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002415
Florin Coras7ac053b2018-11-05 15:57:21 -08002416 b0 = vlib_get_buffer (vm, bi0);
2417 tc0 =
2418 tcp_half_open_connection_get (vnet_buffer (b0)->tcp.connection_index);
2419 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002420 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002421 error0 = TCP_ERROR_INVALID_CONNECTION;
2422 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002423 }
2424
Florin Coras7ac053b2018-11-05 15:57:21 -08002425 /* Half-open completed recently but the connection was't removed
2426 * yet by the owning thread */
2427 if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2428 {
2429 /* Make sure the connection actually exists */
2430 ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2431 my_thread_index, is_ip4));
Florin Coras222e1f412019-02-16 20:47:32 -08002432 error0 = TCP_ERROR_SPURIOUS_SYN_ACK;
Florin Coras7ac053b2018-11-05 15:57:21 -08002433 goto drop;
2434 }
2435
2436 ack0 = vnet_buffer (b0)->tcp.ack_number;
2437 seq0 = vnet_buffer (b0)->tcp.seq_number;
2438 tcp0 = tcp_buffer_hdr (b0);
2439
2440 /* Crude check to see if the connection handle does not match
2441 * the packet. Probably connection just switched to established */
2442 if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2443 || tcp0->src_port != tc0->c_rmt_port))
2444 {
2445 error0 = TCP_ERROR_INVALID_CONNECTION;
2446 goto drop;
2447 }
2448
2449 if (PREDICT_FALSE (!tcp_ack (tcp0) && !tcp_rst (tcp0)
2450 && !tcp_syn (tcp0)))
2451 {
2452 error0 = TCP_ERROR_SEGMENT_INVALID;
2453 goto drop;
2454 }
2455
Florin Coras3c514d52018-12-22 11:39:33 -08002456 /* SYNs consume sequence numbers */
2457 vnet_buffer (b0)->tcp.seq_end += tcp_is_syn (tcp0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002458
2459 /*
2460 * 1. check the ACK bit
2461 */
2462
2463 /*
2464 * If the ACK bit is set
2465 * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2466 * the RST bit is set, if so drop the segment and return)
2467 * <SEQ=SEG.ACK><CTL=RST>
2468 * and discard the segment. Return.
2469 * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2470 */
2471 if (tcp_ack (tcp0))
2472 {
2473 if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
2474 {
2475 if (!tcp_rst (tcp0))
Florin Corasd4c49be2019-02-07 00:15:53 -08002476 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002477 error0 = TCP_ERROR_RCV_WND;
2478 goto drop;
2479 }
2480
2481 /* Make sure ACK is valid */
2482 if (seq_gt (tc0->snd_una, ack0))
2483 {
2484 error0 = TCP_ERROR_ACK_INVALID;
2485 goto drop;
2486 }
2487 }
2488
2489 /*
2490 * 2. check the RST bit
2491 */
2492
2493 if (tcp_rst (tcp0))
2494 {
2495 /* If ACK is acceptable, signal client that peer is not
2496 * willing to accept connection and drop connection*/
2497 if (tcp_ack (tcp0))
2498 tcp_connection_reset (tc0);
2499 error0 = TCP_ERROR_RST_RCVD;
2500 goto drop;
2501 }
2502
2503 /*
2504 * 3. check the security and precedence (skipped)
2505 */
2506
2507 /*
2508 * 4. check the SYN bit
2509 */
2510
2511 /* No SYN flag. Drop. */
2512 if (!tcp_syn (tcp0))
2513 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002514 error0 = TCP_ERROR_SEGMENT_INVALID;
2515 goto drop;
2516 }
2517
2518 /* Parse options */
Florin Coras80231112018-12-05 15:59:31 -08002519 if (tcp_options_parse (tcp0, &tc0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08002520 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002521 error0 = TCP_ERROR_OPTIONS;
2522 goto drop;
2523 }
2524
2525 /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2526 * current thread pool. */
Florin Coras12f69362019-08-16 09:44:00 -07002527 new_tc0 = tcp_connection_alloc_w_base (my_thread_index, tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002528 new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2529 new_tc0->irs = seq0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002530 new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
2531 new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
2532
2533 /* If this is not the owning thread, wait for syn retransmit to
2534 * expire and cleanup then */
2535 if (tcp_half_open_connection_cleanup (tc0))
2536 tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
2537
2538 if (tcp_opts_tstamp (&new_tc0->rcv_opts))
2539 {
2540 new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
2541 new_tc0->tsval_recent_age = tcp_time_now ();
2542 }
2543
2544 if (tcp_opts_wscale (&new_tc0->rcv_opts))
2545 new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
Florin Corase80b5912018-12-12 19:25:43 -08002546 else
2547 new_tc0->rcv_wscale = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002548
2549 new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2550 << new_tc0->snd_wscale;
2551 new_tc0->snd_wl1 = seq0;
2552 new_tc0->snd_wl2 = ack0;
2553
2554 tcp_connection_init_vars (new_tc0);
2555
2556 /* SYN-ACK: See if we can switch to ESTABLISHED state */
2557 if (PREDICT_TRUE (tcp_ack (tcp0)))
2558 {
2559 /* Our SYN is ACKed: we have iss < ack = snd_una */
2560
2561 /* TODO Dequeue acknowledged segments if we support Fast Open */
2562 new_tc0->snd_una = ack0;
2563 new_tc0->state = TCP_STATE_ESTABLISHED;
2564
2565 /* Make sure las is initialized for the wnd computation */
2566 new_tc0->rcv_las = new_tc0->rcv_nxt;
2567
2568 /* Notify app that we have connection. If session layer can't
2569 * allocate session send reset */
2570 if (session_stream_connect_notify (&new_tc0->connection, 0))
2571 {
Florin Corasd4c49be2019-02-07 00:15:53 -08002572 tcp_send_reset_w_pkt (new_tc0, b0, my_thread_index, is_ip4);
Florin Coras7ac053b2018-11-05 15:57:21 -08002573 tcp_connection_cleanup (new_tc0);
Florin Coras718a0552019-06-07 07:03:01 -07002574 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
Florin Coras7ac053b2018-11-05 15:57:21 -08002575 goto drop;
2576 }
2577
Florin Coras2e31cc32018-09-25 14:00:34 -07002578 new_tc0->tx_fifo_size =
2579 transport_tx_fifo_size (&new_tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002580 /* Update rtt with the syn-ack sample */
Florin Corasefefc6b2018-11-07 12:49:19 -08002581 tcp_estimate_initial_rtt (new_tc0);
Florin Corasa436a422019-08-20 07:09:31 -07002582 TCP_EVT (TCP_EVT_SYNACK_RCVD, new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002583 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2584 }
2585 /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2586 else
2587 {
2588 new_tc0->state = TCP_STATE_SYN_RCVD;
2589
2590 /* Notify app that we have connection */
2591 if (session_stream_connect_notify (&new_tc0->connection, 0))
2592 {
2593 tcp_connection_cleanup (new_tc0);
Florin Corasd4c49be2019-02-07 00:15:53 -08002594 tcp_send_reset_w_pkt (tc0, b0, my_thread_index, is_ip4);
Florin Corasa436a422019-08-20 07:09:31 -07002595 TCP_EVT (TCP_EVT_RST_SENT, tc0);
Florin Coras718a0552019-06-07 07:03:01 -07002596 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
Florin Coras7ac053b2018-11-05 15:57:21 -08002597 goto drop;
2598 }
2599
Florin Coras2e31cc32018-09-25 14:00:34 -07002600 new_tc0->tx_fifo_size =
2601 transport_tx_fifo_size (&new_tc0->connection);
2602 new_tc0->rtt_ts = 0;
2603 tcp_init_snd_vars (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002604 tcp_send_synack (new_tc0);
2605 error0 = TCP_ERROR_SYNS_RCVD;
2606 goto drop;
2607 }
2608
Florin Corasbbcfaac2019-10-10 13:52:04 -07002609 if (!(new_tc0->cfg_flags & TCP_CFG_F_NO_TSO))
2610 tcp_check_tx_offload (new_tc0, is_ip4);
Simon Zhang1146ff42019-09-02 22:54:00 +08002611
Florin Coras7ac053b2018-11-05 15:57:21 -08002612 /* Read data, if any */
2613 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
2614 {
2615 clib_warning ("rcvd data in syn-sent");
2616 error0 = tcp_segment_rcv (wrk, new_tc0, b0);
2617 if (error0 == TCP_ERROR_ACK_OK)
2618 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2619 }
2620 else
2621 {
Florin Corascb711a42019-10-16 19:28:17 -07002622 /* Send ack now instead of programming it because connection was
2623 * just established and it's not optional. */
2624 tcp_send_ack (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002625 }
2626
2627 drop:
2628
2629 tcp_inc_counter (syn_sent, error0, 1);
2630 if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
2631 {
2632 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05002633 clib_memcpy_fast (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2634 clib_memcpy_fast (&t0->tcp_connection, tc0,
2635 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08002636 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002637 }
2638
Florin Coras31c99552019-03-01 13:00:58 -08002639 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2640 my_thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002641 tcp_inc_counter (syn_sent, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras7ac053b2018-11-05 15:57:21 -08002642 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
2643
Dave Barach68b0fb02017-02-28 15:15:56 -05002644 return from_frame->n_vectors;
2645}
2646
Filip Tehlare275bed2019-03-06 00:06:56 -08002647VLIB_NODE_FN (tcp4_syn_sent_node) (vlib_main_t * vm,
2648 vlib_node_runtime_t * node,
2649 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002650{
2651 return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2652}
2653
Filip Tehlare275bed2019-03-06 00:06:56 -08002654VLIB_NODE_FN (tcp6_syn_sent_node) (vlib_main_t * vm,
2655 vlib_node_runtime_t * node,
2656 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002657{
2658 return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2659}
2660
2661/* *INDENT-OFF* */
2662VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2663{
Dave Barach68b0fb02017-02-28 15:15:56 -05002664 .name = "tcp4-syn-sent",
2665 /* Takes a vector of packets. */
2666 .vector_size = sizeof (u32),
2667 .n_errors = TCP_N_ERROR,
2668 .error_strings = tcp_error_strings,
2669 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2670 .next_nodes =
2671 {
2672#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2673 foreach_tcp_state_next
2674#undef _
2675 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002676 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002677};
2678/* *INDENT-ON* */
2679
Dave Barach68b0fb02017-02-28 15:15:56 -05002680/* *INDENT-OFF* */
2681VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2682{
Dave Barach68b0fb02017-02-28 15:15:56 -05002683 .name = "tcp6-syn-sent",
2684 /* Takes a vector of packets. */
2685 .vector_size = sizeof (u32),
2686 .n_errors = TCP_N_ERROR,
2687 .error_strings = tcp_error_strings,
2688 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2689 .next_nodes =
2690 {
2691#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2692 foreach_tcp_state_next
2693#undef _
Clement Durand6cf260c2017-04-13 13:27:04 +02002694 },
2695 .format_trace = format_tcp_rx_trace_short,
2696};
Dave Barach68b0fb02017-02-28 15:15:56 -05002697/* *INDENT-ON* */
2698
Dave Barach68b0fb02017-02-28 15:15:56 -05002699/**
Florin Corasd79b41e2017-03-04 05:37:52 -08002700 * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
Dave Barach68b0fb02017-02-28 15:15:56 -05002701 * as per RFC793 p. 64
2702 */
2703always_inline uword
2704tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2705 vlib_frame_t * from_frame, int is_ip4)
2706{
Florin Coras7ac053b2018-11-05 15:57:21 -08002707 u32 thread_index = vm->thread_index, errors = 0, *first_buffer;
2708 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras78cc4b02018-12-20 18:24:49 -08002709 u32 n_left_from, *from, max_dequeue;
Dave Barach68b0fb02017-02-28 15:15:56 -05002710
Florin Coras7ac053b2018-11-05 15:57:21 -08002711 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002712 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002713
2714 while (n_left_from > 0)
2715 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002716 u32 bi0, error0 = TCP_ERROR_NONE;
2717 tcp_header_t *tcp0 = 0;
2718 tcp_connection_t *tc0;
2719 vlib_buffer_t *b0;
2720 u8 is_fin0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002721
Florin Coras7ac053b2018-11-05 15:57:21 -08002722 bi0 = from[0];
2723 from += 1;
2724 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002725
Florin Coras7ac053b2018-11-05 15:57:21 -08002726 b0 = vlib_get_buffer (vm, bi0);
2727 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2728 thread_index);
2729 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002730 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002731 error0 = TCP_ERROR_INVALID_CONNECTION;
2732 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002733 }
2734
Florin Coras7ac053b2018-11-05 15:57:21 -08002735 tcp0 = tcp_buffer_hdr (b0);
2736 is_fin0 = tcp_is_fin (tcp0);
2737
Florin Coras7ac053b2018-11-05 15:57:21 -08002738 if (CLIB_DEBUG)
2739 {
Ryujiro Shibuyac8be8512019-10-28 00:32:12 +00002740 if (!(tc0->connection.flags & TRANSPORT_CONNECTION_F_NO_LOOKUP))
Florin Coras7ac053b2018-11-05 15:57:21 -08002741 {
Ryujiro Shibuyac8be8512019-10-28 00:32:12 +00002742 tcp_connection_t *tmp;
2743 tmp = tcp_lookup_connection (tc0->c_fib_index, b0, thread_index,
2744 is_ip4);
2745 if (tmp->state != tc0->state)
2746 {
2747 if (tc0->state != TCP_STATE_CLOSED)
2748 clib_warning ("state changed");
2749 goto drop;
2750 }
Florin Coras7ac053b2018-11-05 15:57:21 -08002751 }
2752 }
2753
2754 /*
2755 * Special treatment for CLOSED
2756 */
2757 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
2758 {
2759 error0 = TCP_ERROR_CONNECTION_CLOSED;
2760 goto drop;
2761 }
2762
2763 /*
2764 * For all other states (except LISTEN)
2765 */
2766
2767 /* 1-4: check SEQ, RST, SYN */
2768 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, tcp0, &error0)))
2769 goto drop;
2770
2771 /* 5: check the ACK field */
2772 switch (tc0->state)
2773 {
2774 case TCP_STATE_SYN_RCVD:
Florin Corasf65074e2019-03-31 17:17:11 -07002775
2776 /* Make sure the segment is exactly right */
2777 if (tc0->rcv_nxt != vnet_buffer (b0)->tcp.seq_number || is_fin0)
2778 {
2779 tcp_connection_reset (tc0);
2780 error0 = TCP_ERROR_SEGMENT_INVALID;
2781 goto drop;
2782 }
2783
Florin Coras7ac053b2018-11-05 15:57:21 -08002784 /*
2785 * If the segment acknowledgment is not acceptable, form a
2786 * reset segment,
2787 * <SEQ=SEG.ACK><CTL=RST>
2788 * and send it.
2789 */
Florin Corasf65074e2019-03-31 17:17:11 -07002790 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08002791 {
Florin Corase78ac9d2018-12-16 21:33:00 -08002792 tcp_connection_reset (tc0);
Florin Coras4850e3e2018-12-12 14:34:38 -08002793 goto drop;
2794 }
2795
Florin Coras7ac053b2018-11-05 15:57:21 -08002796 /* Update rtt and rto */
Florin Corasefefc6b2018-11-07 12:49:19 -08002797 tcp_estimate_initial_rtt (tc0);
Florin Coras36ebcff2019-09-12 18:36:44 -07002798 tcp_connection_tx_pacer_update (tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002799
2800 /* Switch state to ESTABLISHED */
2801 tc0->state = TCP_STATE_ESTABLISHED;
Florin Corasa436a422019-08-20 07:09:31 -07002802 TCP_EVT (TCP_EVT_STATE_CHANGE, tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002803
Florin Corasbbcfaac2019-10-10 13:52:04 -07002804 if (!(tc0->cfg_flags & TCP_CFG_F_NO_TSO))
2805 tcp_check_tx_offload (tc0, is_ip4);
Simon Zhang1146ff42019-09-02 22:54:00 +08002806
Florin Coras7ac053b2018-11-05 15:57:21 -08002807 /* Initialize session variables */
2808 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
2809 tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2810 << tc0->rcv_opts.wscale;
2811 tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2812 tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
2813
2814 /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
2815 tcp_retransmit_timer_reset (tc0);
Florin Corasa27a46e2019-02-18 13:02:28 -08002816 if (session_stream_accept_notify (&tc0->connection))
Florin Corasa9d5bea2018-12-17 08:24:19 -08002817 {
2818 error0 = TCP_ERROR_MSG_QUEUE_FULL;
2819 tcp_connection_reset (tc0);
2820 goto drop;
2821 }
Florin Coras7ac053b2018-11-05 15:57:21 -08002822 error0 = TCP_ERROR_ACK_OK;
2823 break;
2824 case TCP_STATE_ESTABLISHED:
2825 /* We can get packets in established state here because they
2826 * were enqueued before state change */
2827 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2828 goto drop;
2829
2830 break;
2831 case TCP_STATE_FIN_WAIT_1:
2832 /* In addition to the processing for the ESTABLISHED state, if
2833 * our FIN is now acknowledged then enter FIN-WAIT-2 and
2834 * continue processing in that state. */
2835 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2836 goto drop;
2837
2838 /* Still have to send the FIN */
2839 if (tc0->flags & TCP_CONN_FINPNDG)
2840 {
2841 /* TX fifo finally drained */
Florin Coras31c99552019-03-01 13:00:58 -08002842 max_dequeue = transport_max_tx_dequeue (&tc0->connection);
Florin Coras78cc4b02018-12-20 18:24:49 -08002843 if (max_dequeue <= tc0->burst_acked)
Florin Coras7ac053b2018-11-05 15:57:21 -08002844 tcp_send_fin (tc0);
Florin Coras070fd4b2019-04-02 19:03:23 -07002845 /* If a fin was received and data was acked extend wait */
2846 else if ((tc0->flags & TCP_CONN_FINRCVD) && tc0->bytes_acked)
2847 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
Florin Coras9094b5c2019-08-12 14:17:47 -07002848 tcp_cfg.closewait_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08002849 }
2850 /* If FIN is ACKed */
Florin Coras47596832019-03-12 18:58:54 -07002851 else if (tc0->snd_una == tc0->snd_nxt)
Florin Coras7ac053b2018-11-05 15:57:21 -08002852 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002853 /* Stop all retransmit timers because we have nothing more
Florin Corasf65074e2019-03-31 17:17:11 -07002854 * to send. */
Florin Coras7ac053b2018-11-05 15:57:21 -08002855 tcp_connection_timers_reset (tc0);
Florin Corasf65074e2019-03-31 17:17:11 -07002856
2857 /* We already have a FIN but didn't transition to CLOSING
2858 * because of outstanding tx data. Close the connection. */
2859 if (tc0->flags & TCP_CONN_FINRCVD)
2860 {
2861 tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
Florin Coras9094b5c2019-08-12 14:17:47 -07002862 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE,
2863 tcp_cfg.cleanup_time);
Florin Corasa0904f02019-07-22 20:55:11 -07002864 session_transport_closed_notify (&tc0->connection);
Florin Corasf65074e2019-03-31 17:17:11 -07002865 goto drop;
2866 }
2867
2868 tcp_connection_set_state (tc0, TCP_STATE_FIN_WAIT_2);
2869 /* Enable waitclose because we're willing to wait for peer's
2870 * FIN but not indefinitely. */
Florin Coras9094b5c2019-08-12 14:17:47 -07002871 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.finwait2_time);
Florin Corasefefc6b2018-11-07 12:49:19 -08002872
2873 /* Don't try to deq the FIN acked */
2874 if (tc0->burst_acked > 1)
Florin Coras31c99552019-03-01 13:00:58 -08002875 session_tx_fifo_dequeue_drop (&tc0->connection,
2876 tc0->burst_acked - 1);
Florin Corasefefc6b2018-11-07 12:49:19 -08002877 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002878 }
2879 break;
2880 case TCP_STATE_FIN_WAIT_2:
2881 /* In addition to the processing for the ESTABLISHED state, if
2882 * the retransmission queue is empty, the user's CLOSE can be
2883 * acknowledged ("ok") but do not delete the TCB. */
Florin Corasf65074e2019-03-31 17:17:11 -07002884 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08002885 goto drop;
Florin Corasefefc6b2018-11-07 12:49:19 -08002886 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002887 break;
2888 case TCP_STATE_CLOSE_WAIT:
2889 /* Do the same processing as for the ESTABLISHED state. */
2890 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2891 goto drop;
2892
Florin Corasf65074e2019-03-31 17:17:11 -07002893 if (!(tc0->flags & TCP_CONN_FINPNDG))
2894 break;
2895
2896 /* Still have outstanding tx data */
Florin Coras182bbc12019-06-28 09:41:28 -07002897 max_dequeue = transport_max_tx_dequeue (&tc0->connection);
2898 if (max_dequeue > tc0->burst_acked)
Florin Corasf65074e2019-03-31 17:17:11 -07002899 break;
2900
2901 tcp_send_fin (tc0);
2902 tcp_connection_timers_reset (tc0);
2903 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras9094b5c2019-08-12 14:17:47 -07002904 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.lastack_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08002905 break;
2906 case TCP_STATE_CLOSING:
2907 /* In addition to the processing for the ESTABLISHED state, if
2908 * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2909 * otherwise ignore the segment. */
Florin Corasf65074e2019-03-31 17:17:11 -07002910 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2911 goto drop;
Florin Coras47596832019-03-12 18:58:54 -07002912
Florin Corasf65074e2019-03-31 17:17:11 -07002913 if (tc0->snd_una != tc0->snd_nxt)
2914 goto drop;
Florin Coras7ac053b2018-11-05 15:57:21 -08002915
Florin Coras85a3ddd2018-12-24 16:54:34 -08002916 tcp_connection_timers_reset (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002917 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras9094b5c2019-08-12 14:17:47 -07002918 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras692b9492019-07-12 15:01:53 -07002919 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002920 goto drop;
2921
2922 break;
2923 case TCP_STATE_LAST_ACK:
2924 /* The only thing that [should] arrive in this state is an
2925 * acknowledgment of our FIN. If our FIN is now acknowledged,
2926 * delete the TCB, enter the CLOSED state, and return. */
2927
Florin Corasf65074e2019-03-31 17:17:11 -07002928 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
2929 goto drop;
2930
Florin Coras7ac053b2018-11-05 15:57:21 -08002931 /* Apparently our ACK for the peer's FIN was lost */
Florin Coras47596832019-03-12 18:58:54 -07002932 if (is_fin0 && tc0->snd_una != tc0->snd_nxt)
Florin Coras7ac053b2018-11-05 15:57:21 -08002933 {
2934 tcp_send_fin (tc0);
2935 goto drop;
2936 }
2937
Florin Coras3c514d52018-12-22 11:39:33 -08002938 tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
Florin Corasa0904f02019-07-22 20:55:11 -07002939 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002940
2941 /* Don't free the connection from the data path since
2942 * we can't ensure that we have no packets already enqueued
2943 * to output. Rely instead on the waitclose timer */
2944 tcp_connection_timers_reset (tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07002945 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.cleanup_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08002946
2947 goto drop;
2948
2949 break;
2950 case TCP_STATE_TIME_WAIT:
2951 /* The only thing that can arrive in this state is a
2952 * retransmission of the remote FIN. Acknowledge it, and restart
2953 * the 2 MSL timeout. */
2954
Florin Corasf65074e2019-03-31 17:17:11 -07002955 if (tcp_rcv_ack_no_cc (tc0, b0, &error0))
Florin Coras7ac053b2018-11-05 15:57:21 -08002956 goto drop;
2957
Florin Coras37db4302019-03-13 13:25:57 -07002958 if (!is_fin0)
2959 goto drop;
2960
Florin Coras26dd6de2019-07-23 23:54:47 -07002961 tcp_program_ack (tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07002962 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08002963 goto drop;
2964
2965 break;
2966 default:
2967 ASSERT (0);
2968 }
2969
2970 /* 6: check the URG bit TODO */
2971
2972 /* 7: process the segment text */
2973 switch (tc0->state)
2974 {
2975 case TCP_STATE_ESTABLISHED:
2976 case TCP_STATE_FIN_WAIT_1:
2977 case TCP_STATE_FIN_WAIT_2:
2978 if (vnet_buffer (b0)->tcp.data_len)
2979 error0 = tcp_segment_rcv (wrk, tc0, b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002980 break;
2981 case TCP_STATE_CLOSE_WAIT:
2982 case TCP_STATE_CLOSING:
2983 case TCP_STATE_LAST_ACK:
2984 case TCP_STATE_TIME_WAIT:
2985 /* This should not occur, since a FIN has been received from the
2986 * remote side. Ignore the segment text. */
2987 break;
2988 }
2989
2990 /* 8: check the FIN bit */
2991 if (!is_fin0)
2992 goto drop;
2993
Florin Corasa436a422019-08-20 07:09:31 -07002994 TCP_EVT (TCP_EVT_FIN_RCVD, tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002995
Florin Coras7ac053b2018-11-05 15:57:21 -08002996 switch (tc0->state)
2997 {
2998 case TCP_STATE_ESTABLISHED:
Florin Coras3c514d52018-12-22 11:39:33 -08002999 /* Account for the FIN and send ack */
3000 tc0->rcv_nxt += 1;
Florin Coras26dd6de2019-07-23 23:54:47 -07003001 tcp_program_ack (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08003002 tcp_connection_set_state (tc0, TCP_STATE_CLOSE_WAIT);
3003 tcp_program_disconnect (wrk, tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07003004 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.closewait_time);
Florin Coras5c0f1662018-12-19 01:38:57 -08003005 break;
Florin Coras7ac053b2018-11-05 15:57:21 -08003006 case TCP_STATE_SYN_RCVD:
Florin Coras5c0f1662018-12-19 01:38:57 -08003007 /* Send FIN-ACK, enter LAST-ACK and because the app was not
3008 * notified yet, set a cleanup timer instead of relying on
3009 * disconnect notify and the implicit close call. */
Florin Coras7ac053b2018-11-05 15:57:21 -08003010 tcp_connection_timers_reset (tc0);
Florin Coras5c0f1662018-12-19 01:38:57 -08003011 tc0->rcv_nxt += 1;
Florin Coras7ac053b2018-11-05 15:57:21 -08003012 tcp_send_fin (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08003013 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras9094b5c2019-08-12 14:17:47 -07003014 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.lastack_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08003015 break;
3016 case TCP_STATE_CLOSE_WAIT:
3017 case TCP_STATE_CLOSING:
3018 case TCP_STATE_LAST_ACK:
3019 /* move along .. */
3020 break;
3021 case TCP_STATE_FIN_WAIT_1:
Florin Coras3c514d52018-12-22 11:39:33 -08003022 tc0->rcv_nxt += 1;
Florin Coras070fd4b2019-04-02 19:03:23 -07003023
Florin Coras565115e2019-02-20 19:48:31 -08003024 if (tc0->flags & TCP_CONN_FINPNDG)
3025 {
Florin Coras070fd4b2019-04-02 19:03:23 -07003026 /* If data is outstanding, stay in FIN_WAIT_1 and try to finish
3027 * sending it. Since we already received a fin, do not wait
3028 * for too long. */
Florin Corasf65074e2019-03-31 17:17:11 -07003029 tc0->flags |= TCP_CONN_FINRCVD;
Florin Coras9094b5c2019-08-12 14:17:47 -07003030 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
3031 tcp_cfg.closewait_time);
Florin Coras565115e2019-02-20 19:48:31 -08003032 }
3033 else
Florin Corasf65074e2019-03-31 17:17:11 -07003034 {
3035 tcp_connection_set_state (tc0, TCP_STATE_CLOSING);
Florin Coras26dd6de2019-07-23 23:54:47 -07003036 tcp_program_ack (tc0);
Florin Coras070fd4b2019-04-02 19:03:23 -07003037 /* Wait for ACK for our FIN but not forever */
Florin Coras9094b5c2019-08-12 14:17:47 -07003038 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
3039 tcp_cfg.closing_time);
Florin Corasf65074e2019-03-31 17:17:11 -07003040 }
Florin Coras7ac053b2018-11-05 15:57:21 -08003041 break;
3042 case TCP_STATE_FIN_WAIT_2:
3043 /* Got FIN, send ACK! Be more aggressive with resource cleanup */
Florin Coras3c514d52018-12-22 11:39:33 -08003044 tc0->rcv_nxt += 1;
3045 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras7ac053b2018-11-05 15:57:21 -08003046 tcp_connection_timers_reset (tc0);
Florin Coras9094b5c2019-08-12 14:17:47 -07003047 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras26dd6de2019-07-23 23:54:47 -07003048 tcp_program_ack (tc0);
Florin Coras692b9492019-07-12 15:01:53 -07003049 session_transport_closed_notify (&tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003050 break;
3051 case TCP_STATE_TIME_WAIT:
3052 /* Remain in the TIME-WAIT state. Restart the time-wait
3053 * timeout.
3054 */
Florin Coras9094b5c2019-08-12 14:17:47 -07003055 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, tcp_cfg.timewait_time);
Florin Coras7ac053b2018-11-05 15:57:21 -08003056 break;
3057 }
3058 error0 = TCP_ERROR_FIN_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -08003059
3060 drop:
3061
3062 tcp_inc_counter (rcv_process, error0, 1);
3063 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3064 {
3065 tcp_rx_trace_t *t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
3066 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
3067 }
Dave Barach68b0fb02017-02-28 15:15:56 -05003068 }
3069
Florin Coras31c99552019-03-01 13:00:58 -08003070 errors = session_main_flush_enqueue_events (TRANSPORT_PROTO_TCP,
3071 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08003072 tcp_inc_counter (rcv_process, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras9ece3c02018-11-05 11:06:53 -08003073 tcp_handle_postponed_dequeues (wrk);
Florin Coras79fdfd62019-05-23 06:19:09 -07003074 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08003075 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3076
Dave Barach68b0fb02017-02-28 15:15:56 -05003077 return from_frame->n_vectors;
3078}
3079
Filip Tehlare275bed2019-03-06 00:06:56 -08003080VLIB_NODE_FN (tcp4_rcv_process_node) (vlib_main_t * vm,
3081 vlib_node_runtime_t * node,
3082 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003083{
3084 return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3085}
3086
Filip Tehlare275bed2019-03-06 00:06:56 -08003087VLIB_NODE_FN (tcp6_rcv_process_node) (vlib_main_t * vm,
3088 vlib_node_runtime_t * node,
3089 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003090{
3091 return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3092}
3093
3094/* *INDENT-OFF* */
3095VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
3096{
Dave Barach68b0fb02017-02-28 15:15:56 -05003097 .name = "tcp4-rcv-process",
3098 /* Takes a vector of packets. */
3099 .vector_size = sizeof (u32),
3100 .n_errors = TCP_N_ERROR,
3101 .error_strings = tcp_error_strings,
3102 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3103 .next_nodes =
3104 {
3105#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3106 foreach_tcp_state_next
3107#undef _
3108 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003109 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003110};
3111/* *INDENT-ON* */
3112
Dave Barach68b0fb02017-02-28 15:15:56 -05003113/* *INDENT-OFF* */
3114VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
3115{
Dave Barach68b0fb02017-02-28 15:15:56 -05003116 .name = "tcp6-rcv-process",
3117 /* Takes a vector of packets. */
3118 .vector_size = sizeof (u32),
3119 .n_errors = TCP_N_ERROR,
3120 .error_strings = tcp_error_strings,
3121 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3122 .next_nodes =
3123 {
3124#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3125 foreach_tcp_state_next
3126#undef _
3127 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003128 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003129};
3130/* *INDENT-ON* */
3131
Dave Barach68b0fb02017-02-28 15:15:56 -05003132/**
3133 * LISTEN state processing as per RFC 793 p. 65
3134 */
3135always_inline uword
3136tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3137 vlib_frame_t * from_frame, int is_ip4)
3138{
Florin Coras7ac053b2018-11-05 15:57:21 -08003139 u32 n_left_from, *from, n_syns = 0, *first_buffer;
Damjan Marion586afd72017-04-05 19:18:20 +02003140 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05003141
Florin Coras7ac053b2018-11-05 15:57:21 -08003142 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05003143 n_left_from = from_frame->n_vectors;
3144
Dave Barach68b0fb02017-02-28 15:15:56 -05003145 while (n_left_from > 0)
3146 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003147 u32 bi0;
3148 vlib_buffer_t *b0;
3149 tcp_rx_trace_t *t0;
3150 tcp_header_t *th0 = 0;
3151 tcp_connection_t *lc0;
3152 ip4_header_t *ip40;
3153 ip6_header_t *ip60;
3154 tcp_connection_t *child0;
3155 u32 error0 = TCP_ERROR_NONE;
Dave Barach68b0fb02017-02-28 15:15:56 -05003156
Florin Coras7ac053b2018-11-05 15:57:21 -08003157 bi0 = from[0];
3158 from += 1;
3159 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05003160
Florin Coras7ac053b2018-11-05 15:57:21 -08003161 b0 = vlib_get_buffer (vm, bi0);
3162 lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index);
3163
3164 if (is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003165 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003166 ip40 = vlib_buffer_get_current (b0);
3167 th0 = ip4_next_header (ip40);
3168 }
3169 else
3170 {
3171 ip60 = vlib_buffer_get_current (b0);
3172 th0 = ip6_next_header (ip60);
Dave Barach68b0fb02017-02-28 15:15:56 -05003173 }
3174
Florin Coras7ac053b2018-11-05 15:57:21 -08003175 /* Create child session. For syn-flood protection use filter */
3176
3177 /* 1. first check for an RST: handled in dispatch */
3178 /* if (tcp_rst (th0))
3179 goto drop;
3180 */
3181
3182 /* 2. second check for an ACK: handled in dispatch */
3183 /* if (tcp_ack (th0))
3184 {
3185 tcp_send_reset (b0, is_ip4);
3186 goto drop;
3187 }
3188 */
3189
3190 /* 3. check for a SYN (did that already) */
3191
3192 /* Make sure connection wasn't just created */
3193 child0 = tcp_lookup_connection (lc0->c_fib_index, b0, my_thread_index,
3194 is_ip4);
3195 if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN))
3196 {
3197 error0 = TCP_ERROR_CREATE_EXISTS;
3198 goto drop;
3199 }
3200
3201 /* Create child session and send SYN-ACK */
Florin Coras8124cb72018-12-16 20:57:29 -08003202 child0 = tcp_connection_alloc (my_thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08003203 child0->c_lcl_port = th0->dst_port;
3204 child0->c_rmt_port = th0->src_port;
3205 child0->c_is_ip4 = is_ip4;
3206 child0->state = TCP_STATE_SYN_RCVD;
3207 child0->c_fib_index = lc0->c_fib_index;
Florin Coras12f69362019-08-16 09:44:00 -07003208 child0->cc_algo = lc0->cc_algo;
Florin Coras7ac053b2018-11-05 15:57:21 -08003209
3210 if (is_ip4)
3211 {
3212 child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32;
3213 child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32;
3214 }
3215 else
3216 {
Dave Barach178cf492018-11-13 16:34:13 -05003217 clib_memcpy_fast (&child0->c_lcl_ip6, &ip60->dst_address,
3218 sizeof (ip6_address_t));
3219 clib_memcpy_fast (&child0->c_rmt_ip6, &ip60->src_address,
3220 sizeof (ip6_address_t));
Florin Coras7ac053b2018-11-05 15:57:21 -08003221 }
3222
Florin Coras80231112018-12-05 15:59:31 -08003223 if (tcp_options_parse (th0, &child0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08003224 {
Florin Coras8124cb72018-12-16 20:57:29 -08003225 error0 = TCP_ERROR_OPTIONS;
3226 tcp_connection_free (child0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003227 goto drop;
3228 }
3229
3230 child0->irs = vnet_buffer (b0)->tcp.seq_number;
3231 child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1;
3232 child0->rcv_las = child0->rcv_nxt;
3233 child0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
3234
3235 /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
3236 * segments are used to initialize PAWS. */
3237 if (tcp_opts_tstamp (&child0->rcv_opts))
3238 {
3239 child0->tsval_recent = child0->rcv_opts.tsval;
3240 child0->tsval_recent_age = tcp_time_now ();
3241 }
3242
3243 if (tcp_opts_wscale (&child0->rcv_opts))
3244 child0->snd_wscale = child0->rcv_opts.wscale;
3245
3246 child0->snd_wnd = clib_net_to_host_u16 (th0->window)
3247 << child0->snd_wscale;
3248 child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
3249 child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
3250
3251 tcp_connection_init_vars (child0);
Florin Coras865872e2019-01-18 12:12:29 -08003252 child0->rto = TCP_RTO_MIN;
Florin Coras7ac053b2018-11-05 15:57:21 -08003253
Florin Corasc9940fc2019-02-05 20:55:11 -08003254 if (session_stream_accept (&child0->connection, lc0->c_s_index,
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +02003255 lc0->c_thread_index, 0 /* notify */ ))
Florin Coras7ac053b2018-11-05 15:57:21 -08003256 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003257 tcp_connection_cleanup (child0);
3258 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
3259 goto drop;
3260 }
3261
Florin Corasa436a422019-08-20 07:09:31 -07003262 TCP_EVT (TCP_EVT_SYN_RCVD, child0, 1);
Florin Coras2e31cc32018-09-25 14:00:34 -07003263 child0->tx_fifo_size = transport_tx_fifo_size (&child0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003264 tcp_send_synack (child0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003265
3266 drop:
3267
3268 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3269 {
3270 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05003271 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
3272 clib_memcpy_fast (&t0->tcp_connection, lc0,
3273 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08003274 }
3275
3276 n_syns += (error0 == TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003277 }
Florin Coras00cd22d2018-04-18 13:20:18 -07003278
3279 tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
Florin Coras7ac053b2018-11-05 15:57:21 -08003280 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3281
Dave Barach68b0fb02017-02-28 15:15:56 -05003282 return from_frame->n_vectors;
3283}
3284
Filip Tehlare275bed2019-03-06 00:06:56 -08003285VLIB_NODE_FN (tcp4_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3286 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003287{
3288 return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3289}
3290
Filip Tehlare275bed2019-03-06 00:06:56 -08003291VLIB_NODE_FN (tcp6_listen_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3292 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003293{
3294 return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3295}
3296
3297/* *INDENT-OFF* */
3298VLIB_REGISTER_NODE (tcp4_listen_node) =
3299{
Dave Barach68b0fb02017-02-28 15:15:56 -05003300 .name = "tcp4-listen",
3301 /* Takes a vector of packets. */
3302 .vector_size = sizeof (u32),
3303 .n_errors = TCP_N_ERROR,
3304 .error_strings = tcp_error_strings,
3305 .n_next_nodes = TCP_LISTEN_N_NEXT,
3306 .next_nodes =
3307 {
3308#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3309 foreach_tcp_state_next
3310#undef _
3311 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003312 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003313};
3314/* *INDENT-ON* */
3315
Dave Barach68b0fb02017-02-28 15:15:56 -05003316/* *INDENT-OFF* */
3317VLIB_REGISTER_NODE (tcp6_listen_node) =
3318{
Dave Barach68b0fb02017-02-28 15:15:56 -05003319 .name = "tcp6-listen",
3320 /* Takes a vector of packets. */
3321 .vector_size = sizeof (u32),
3322 .n_errors = TCP_N_ERROR,
3323 .error_strings = tcp_error_strings,
3324 .n_next_nodes = TCP_LISTEN_N_NEXT,
3325 .next_nodes =
3326 {
3327#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3328 foreach_tcp_state_next
3329#undef _
3330 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003331 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003332};
3333/* *INDENT-ON* */
3334
Dave Barach68b0fb02017-02-28 15:15:56 -05003335typedef enum _tcp_input_next
3336{
3337 TCP_INPUT_NEXT_DROP,
3338 TCP_INPUT_NEXT_LISTEN,
3339 TCP_INPUT_NEXT_RCV_PROCESS,
3340 TCP_INPUT_NEXT_SYN_SENT,
3341 TCP_INPUT_NEXT_ESTABLISHED,
3342 TCP_INPUT_NEXT_RESET,
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003343 TCP_INPUT_NEXT_PUNT,
Dave Barach68b0fb02017-02-28 15:15:56 -05003344 TCP_INPUT_N_NEXT
3345} tcp_input_next_t;
3346
3347#define foreach_tcp4_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003348 _ (DROP, "ip4-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003349 _ (LISTEN, "tcp4-listen") \
3350 _ (RCV_PROCESS, "tcp4-rcv-process") \
3351 _ (SYN_SENT, "tcp4-syn-sent") \
3352 _ (ESTABLISHED, "tcp4-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003353 _ (RESET, "tcp4-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003354 _ (PUNT, "ip4-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003355
3356#define foreach_tcp6_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003357 _ (DROP, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003358 _ (LISTEN, "tcp6-listen") \
3359 _ (RCV_PROCESS, "tcp6-rcv-process") \
3360 _ (SYN_SENT, "tcp6-syn-sent") \
3361 _ (ESTABLISHED, "tcp6-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003362 _ (RESET, "tcp6-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003363 _ (PUNT, "ip6-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003364
Dave Barach68b0fb02017-02-28 15:15:56 -05003365#define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
3366
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003367static void
3368tcp_input_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07003369 vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003370{
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003371 tcp_connection_t *tc;
3372 tcp_header_t *tcp;
3373 tcp_rx_trace_t *t;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003374 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05003375
Florin Coras4df38712018-06-20 12:44:16 -07003376 for (i = 0; i < n_bufs; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05003377 {
Florin Coras4df38712018-06-20 12:44:16 -07003378 if (bs[i]->flags & VLIB_BUFFER_IS_TRACED)
3379 {
3380 t = vlib_add_trace (vm, node, bs[i], sizeof (*t));
3381 tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index,
3382 vm->thread_index);
3383 tcp = vlib_buffer_get_current (bs[i]);
3384 tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4);
3385 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003386 }
3387}
Dave Barach68b0fb02017-02-28 15:15:56 -05003388
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003389static void
3390tcp_input_set_error_next (tcp_main_t * tm, u16 * next, u32 * error, u8 is_ip4)
3391{
Florin Corasb5e55a22019-01-10 12:42:47 -08003392 if (*error == TCP_ERROR_FILTERED || *error == TCP_ERROR_WRONG_THREAD)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003393 {
3394 *next = TCP_INPUT_NEXT_DROP;
3395 }
3396 else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6))
3397 {
3398 *next = TCP_INPUT_NEXT_PUNT;
3399 *error = TCP_ERROR_PUNT;
3400 }
3401 else
3402 {
3403 *next = TCP_INPUT_NEXT_RESET;
3404 *error = TCP_ERROR_NO_LISTENER;
3405 }
3406}
Dave Barach68b0fb02017-02-28 15:15:56 -05003407
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003408always_inline tcp_connection_t *
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003409tcp_input_lookup_buffer (vlib_buffer_t * b, u8 thread_index, u32 * error,
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003410 u8 is_ip4, u8 is_nolookup)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003411{
3412 u32 fib_index = vnet_buffer (b)->ip.fib_index;
3413 int n_advance_bytes, n_data_bytes;
3414 transport_connection_t *tc;
3415 tcp_header_t *tcp;
Florin Corasb5e55a22019-01-10 12:42:47 -08003416 u8 result = 0;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003417
3418 if (is_ip4)
3419 {
3420 ip4_header_t *ip4 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003421 int ip_hdr_bytes = ip4_header_bytes (ip4);
3422 if (PREDICT_FALSE (b->current_length < ip_hdr_bytes + sizeof (*tcp)))
3423 {
3424 *error = TCP_ERROR_LENGTH;
3425 return 0;
3426 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003427 tcp = ip4_next_header (ip4);
3428 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip4;
Florin Corasb8dda5f2018-12-05 10:03:34 -08003429 n_advance_bytes = (ip_hdr_bytes + tcp_header_bytes (tcp));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003430 n_data_bytes = clib_net_to_host_u16 (ip4->length) - n_advance_bytes;
3431
3432 /* Length check. Checksum computed by ipx_local no need to compute again */
Florin Corasb8dda5f2018-12-05 10:03:34 -08003433 if (PREDICT_FALSE (n_data_bytes < 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05003434 {
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003435 *error = TCP_ERROR_LENGTH;
3436 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003437 }
3438
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003439 if (!is_nolookup)
3440 tc = session_lookup_connection_wt4 (fib_index, &ip4->dst_address,
3441 &ip4->src_address, tcp->dst_port,
3442 tcp->src_port,
3443 TRANSPORT_PROTO_TCP, thread_index,
3444 &result);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003445 }
3446 else
3447 {
3448 ip6_header_t *ip6 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003449 if (PREDICT_FALSE (b->current_length < sizeof (*ip6) + sizeof (*tcp)))
3450 {
3451 *error = TCP_ERROR_LENGTH;
3452 return 0;
3453 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003454 tcp = ip6_next_header (ip6);
3455 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip6;
3456 n_advance_bytes = tcp_header_bytes (tcp);
3457 n_data_bytes = clib_net_to_host_u16 (ip6->payload_length)
3458 - n_advance_bytes;
3459 n_advance_bytes += sizeof (ip6[0]);
3460
Florin Corasb8dda5f2018-12-05 10:03:34 -08003461 if (PREDICT_FALSE (n_data_bytes < 0))
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003462 {
3463 *error = TCP_ERROR_LENGTH;
3464 return 0;
3465 }
3466
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003467 if (!is_nolookup)
3468 {
3469 if (PREDICT_FALSE
3470 (ip6_address_is_link_local_unicast (&ip6->dst_address)))
3471 {
3472 ip4_main_t *im = &ip4_main;
3473 fib_index = vec_elt (im->fib_index_by_sw_if_index,
3474 vnet_buffer (b)->sw_if_index[VLIB_RX]);
3475 }
3476
3477 tc = session_lookup_connection_wt6 (fib_index, &ip6->dst_address,
3478 &ip6->src_address,
3479 tcp->dst_port, tcp->src_port,
3480 TRANSPORT_PROTO_TCP,
3481 thread_index, &result);
3482 }
Dave Barach68b0fb02017-02-28 15:15:56 -05003483 }
3484
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003485 if (is_nolookup)
3486 tc =
3487 (transport_connection_t *) tcp_connection_get (vnet_buffer (b)->
3488 tcp.connection_index,
3489 thread_index);
3490
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003491 vnet_buffer (b)->tcp.seq_number = clib_net_to_host_u32 (tcp->seq_number);
3492 vnet_buffer (b)->tcp.ack_number = clib_net_to_host_u32 (tcp->ack_number);
3493 vnet_buffer (b)->tcp.data_offset = n_advance_bytes;
3494 vnet_buffer (b)->tcp.data_len = n_data_bytes;
Florin Coras3c514d52018-12-22 11:39:33 -08003495 vnet_buffer (b)->tcp.seq_end = vnet_buffer (b)->tcp.seq_number
3496 + n_data_bytes;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003497 vnet_buffer (b)->tcp.flags = 0;
3498
Florin Corasb5e55a22019-01-10 12:42:47 -08003499 *error = result ? TCP_ERROR_NONE + result : *error;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003500
3501 return tcp_get_connection_from_transport (tc);
3502}
3503
3504static inline void
3505tcp_input_dispatch_buffer (tcp_main_t * tm, tcp_connection_t * tc,
3506 vlib_buffer_t * b, u16 * next, u32 * error)
3507{
3508 tcp_header_t *tcp;
3509 u8 flags;
3510
3511 tcp = tcp_buffer_hdr (b);
3512 flags = tcp->flags & filter_flags;
3513 *next = tm->dispatch_table[tc->state][flags].next;
3514 *error = tm->dispatch_table[tc->state][flags].error;
Florin Corasedfe0ee2019-07-29 18:13:25 -07003515 tc->segs_in += 1;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003516
3517 if (PREDICT_FALSE (*error == TCP_ERROR_DISPATCH
3518 || *next == TCP_INPUT_NEXT_RESET))
3519 {
3520 /* Overload tcp flags to store state */
3521 tcp_state_t state = tc->state;
3522 vnet_buffer (b)->tcp.flags = tc->state;
3523
3524 if (*error == TCP_ERROR_DISPATCH)
Florin Corasa9d5bea2018-12-17 08:24:19 -08003525 clib_warning ("tcp conn %u disp error state %U flags %U",
3526 tc->c_c_index, format_tcp_state, state,
3527 format_tcp_flags, (int) flags);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003528 }
3529}
3530
3531always_inline uword
3532tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003533 vlib_frame_t * frame, int is_ip4, u8 is_nolookup)
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003534{
3535 u32 n_left_from, *from, thread_index = vm->thread_index;
3536 tcp_main_t *tm = vnet_get_tcp_main ();
3537 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
3538 u16 nexts[VLIB_FRAME_SIZE], *next;
3539
Florin Corasbe72ae62018-11-01 11:23:03 -07003540 tcp_set_time_now (tcp_get_worker (thread_index));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003541
3542 from = vlib_frame_vector_args (frame);
3543 n_left_from = frame->n_vectors;
3544 vlib_get_buffers (vm, from, bufs, n_left_from);
3545
3546 b = bufs;
3547 next = nexts;
3548
3549 while (n_left_from >= 4)
3550 {
3551 u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER;
3552 tcp_connection_t *tc0, *tc1;
3553
3554 {
3555 vlib_prefetch_buffer_header (b[2], STORE);
3556 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3557
3558 vlib_prefetch_buffer_header (b[3], STORE);
3559 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3560 }
3561
3562 next[0] = next[1] = TCP_INPUT_NEXT_DROP;
3563
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003564 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
3565 is_nolookup);
3566 tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4,
3567 is_nolookup);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003568
3569 if (PREDICT_TRUE (!tc0 + !tc1 == 0))
3570 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003571 ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
3572 ASSERT (tcp_lookup_is_valid (tc1, b[1], tcp_buffer_hdr (b[1])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003573
3574 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3575 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3576
3577 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3578 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3579 }
3580 else
3581 {
3582 if (PREDICT_TRUE (tc0 != 0))
3583 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003584 ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003585 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3586 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3587 }
3588 else
3589 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3590
3591 if (PREDICT_TRUE (tc1 != 0))
3592 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003593 ASSERT (tcp_lookup_is_valid (tc1, b[1], tcp_buffer_hdr (b[1])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003594 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3595 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3596 }
3597 else
3598 tcp_input_set_error_next (tm, &next[1], &error1, is_ip4);
3599 }
3600
3601 b += 2;
3602 next += 2;
3603 n_left_from -= 2;
3604 }
3605 while (n_left_from > 0)
3606 {
3607 tcp_connection_t *tc0;
3608 u32 error0 = TCP_ERROR_NO_LISTENER;
3609
3610 if (n_left_from > 1)
3611 {
3612 vlib_prefetch_buffer_header (b[1], STORE);
3613 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3614 }
3615
3616 next[0] = TCP_INPUT_NEXT_DROP;
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003617 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4,
3618 is_nolookup);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003619 if (PREDICT_TRUE (tc0 != 0))
3620 {
Srikanth Akulacf4c2102019-11-06 18:53:13 -08003621 ASSERT (tcp_lookup_is_valid (tc0, b[0], tcp_buffer_hdr (b[0])));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003622 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3623 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3624 }
3625 else
3626 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3627
3628 b += 1;
3629 next += 1;
3630 n_left_from -= 1;
3631 }
3632
3633 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
3634 tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4);
3635
3636 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
3637 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05003638}
3639
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003640VLIB_NODE_FN (tcp4_input_nolookup_node) (vlib_main_t * vm,
3641 vlib_node_runtime_t * node,
3642 vlib_frame_t * from_frame)
3643{
3644 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
3645 1 /* is_nolookup */ );
3646}
3647
3648VLIB_NODE_FN (tcp6_input_nolookup_node) (vlib_main_t * vm,
3649 vlib_node_runtime_t * node,
3650 vlib_frame_t * from_frame)
3651{
3652 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3653 1 /* is_nolookup */ );
3654}
3655
3656/* *INDENT-OFF* */
3657VLIB_REGISTER_NODE (tcp4_input_nolookup_node) =
3658{
3659 .name = "tcp4-input-nolookup",
3660 /* Takes a vector of packets. */
3661 .vector_size = sizeof (u32),
3662 .n_errors = TCP_N_ERROR,
3663 .error_strings = tcp_error_strings,
3664 .n_next_nodes = TCP_INPUT_N_NEXT,
3665 .next_nodes =
3666 {
3667#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3668 foreach_tcp4_input_next
3669#undef _
3670 },
3671 .format_buffer = format_tcp_header,
3672 .format_trace = format_tcp_rx_trace,
3673};
3674/* *INDENT-ON* */
3675
3676/* *INDENT-OFF* */
3677VLIB_REGISTER_NODE (tcp6_input_nolookup_node) =
3678{
3679 .name = "tcp6-input-nolookup",
3680 /* Takes a vector of packets. */
3681 .vector_size = sizeof (u32),
3682 .n_errors = TCP_N_ERROR,
3683 .error_strings = tcp_error_strings,
3684 .n_next_nodes = TCP_INPUT_N_NEXT,
3685 .next_nodes =
3686 {
3687#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3688 foreach_tcp6_input_next
3689#undef _
3690 },
3691 .format_buffer = format_tcp_header,
3692 .format_trace = format_tcp_rx_trace,
3693};
3694/* *INDENT-ON* */
3695
Filip Tehlare275bed2019-03-06 00:06:56 -08003696VLIB_NODE_FN (tcp4_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3697 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003698{
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003699 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ ,
3700 0 /* is_nolookup */ );
Dave Barach68b0fb02017-02-28 15:15:56 -05003701}
3702
Filip Tehlare275bed2019-03-06 00:06:56 -08003703VLIB_NODE_FN (tcp6_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
3704 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05003705{
Vladimir Kropylev456d2f92019-07-16 21:22:29 +03003706 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ ,
3707 0 /* is_nolookup */ );
Dave Barach68b0fb02017-02-28 15:15:56 -05003708}
3709
3710/* *INDENT-OFF* */
3711VLIB_REGISTER_NODE (tcp4_input_node) =
3712{
Dave Barach68b0fb02017-02-28 15:15:56 -05003713 .name = "tcp4-input",
3714 /* Takes a vector of packets. */
3715 .vector_size = sizeof (u32),
3716 .n_errors = TCP_N_ERROR,
3717 .error_strings = tcp_error_strings,
3718 .n_next_nodes = TCP_INPUT_N_NEXT,
3719 .next_nodes =
3720 {
3721#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3722 foreach_tcp4_input_next
3723#undef _
3724 },
3725 .format_buffer = format_tcp_header,
3726 .format_trace = format_tcp_rx_trace,
3727};
3728/* *INDENT-ON* */
3729
Dave Barach68b0fb02017-02-28 15:15:56 -05003730/* *INDENT-OFF* */
3731VLIB_REGISTER_NODE (tcp6_input_node) =
3732{
Dave Barach68b0fb02017-02-28 15:15:56 -05003733 .name = "tcp6-input",
3734 /* Takes a vector of packets. */
3735 .vector_size = sizeof (u32),
3736 .n_errors = TCP_N_ERROR,
3737 .error_strings = tcp_error_strings,
3738 .n_next_nodes = TCP_INPUT_N_NEXT,
3739 .next_nodes =
3740 {
3741#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3742 foreach_tcp6_input_next
3743#undef _
3744 },
3745 .format_buffer = format_tcp_header,
3746 .format_trace = format_tcp_rx_trace,
3747};
3748/* *INDENT-ON* */
3749
Filip Tehlare275bed2019-03-06 00:06:56 -08003750#ifndef CLIB_MARCH_VARIANT
Dave Barach68b0fb02017-02-28 15:15:56 -05003751static void
3752tcp_dispatch_table_init (tcp_main_t * tm)
3753{
3754 int i, j;
3755 for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3756 for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3757 {
3758 tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3759 tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3760 }
3761
3762#define _(t,f,n,e) \
3763do { \
3764 tm->dispatch_table[TCP_STATE_##t][f].next = (n); \
3765 tm->dispatch_table[TCP_STATE_##t][f].error = (e); \
3766} while (0)
3767
Florin Coras678a6572018-12-17 21:31:25 -08003768 /* RFC 793: In LISTEN if RST drop and if ACK return RST */
Florin Coras5c0f1662018-12-19 01:38:57 -08003769 _(LISTEN, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras678a6572018-12-17 21:31:25 -08003770 _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_ACK_INVALID);
3771 _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_INVALID_CONNECTION);
Dave Barach68b0fb02017-02-28 15:15:56 -05003772 _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003773 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3774 TCP_ERROR_ACK_INVALID);
3775 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3776 TCP_ERROR_SEGMENT_INVALID);
3777 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3778 TCP_ERROR_SEGMENT_INVALID);
3779 _(LISTEN, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3780 TCP_ERROR_INVALID_CONNECTION);
3781 _(LISTEN, TCP_FLAG_FIN, TCP_INPUT_NEXT_RESET, TCP_ERROR_SEGMENT_INVALID);
Dave Barach2c25a622017-06-26 11:35:07 -04003782 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
Florin Coras678a6572018-12-17 21:31:25 -08003783 TCP_ERROR_SEGMENT_INVALID);
3784 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3785 TCP_ERROR_SEGMENT_INVALID);
3786 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003787 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003788 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_DROP,
3789 TCP_ERROR_SEGMENT_INVALID);
3790 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3791 TCP_ERROR_SEGMENT_INVALID);
3792 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3793 TCP_ERROR_SEGMENT_INVALID);
3794 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3795 TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003796 /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3797 _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc28764f2017-04-26 00:08:42 -07003798 _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase8460c72018-09-24 14:40:40 -07003799 _(SYN_RCVD, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3800 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003801 _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003802 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3803 TCP_ERROR_NONE);
3804 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3805 TCP_ERROR_NONE);
3806 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3807 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3808 _(SYN_RCVD, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc01c4452018-09-20 18:36:54 -07003809 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3810 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003811 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3812 TCP_ERROR_NONE);
3813 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3814 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3815 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3816 TCP_ERROR_NONE);
3817 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3818 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3819 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3820 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3821 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3822 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3823 _(SYN_RCVD, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003824 /* SYN-ACK for a SYN */
3825 _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3826 TCP_ERROR_NONE);
3827 _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3828 _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3829 _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3830 TCP_ERROR_NONE);
Florin Coras222e1f412019-02-16 20:47:32 -08003831 _(SYN_SENT, TCP_FLAG_FIN, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3832 _(SYN_SENT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3833 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003834 /* ACK for for established connection -> tcp-established. */
3835 _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3836 /* FIN for for established connection -> tcp-established. */
3837 _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3838 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3839 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003840 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3841 TCP_ERROR_NONE);
3842 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3843 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3844 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED,
3845 TCP_ERROR_NONE);
3846 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3847 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3848 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3849 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3850 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3851 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasd79b41e2017-03-04 05:37:52 -08003852 _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003853 _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3854 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003855 _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003856 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3857 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003858 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3859 TCP_ERROR_NONE);
3860 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3861 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3862 _(ESTABLISHED, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003863 /* ACK or FIN-ACK to our FIN */
3864 _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3865 _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
3866 TCP_ERROR_NONE);
3867 /* FIN in reply to our FIN from the other side */
Florin Coras76bc1302018-12-23 23:36:36 -08003868 _(FIN_WAIT_1, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003869 _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08003870 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3871 TCP_ERROR_NONE);
3872 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3873 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3874 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3875 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3876 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3877 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3878 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3879 TCP_ERROR_NONE);
3880 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3881 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras5c0f1662018-12-19 01:38:57 -08003882 _(FIN_WAIT_1, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08003883 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3884 TCP_ERROR_NONE);
3885 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3886 TCP_ERROR_NONE);
3887 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3888 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003889 _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase96bf632018-12-18 22:44:27 -08003890 _(FIN_WAIT_1, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3891 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003892 _(CLOSING, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras56318932018-05-23 20:44:12 -07003893 _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08003894 _(CLOSING, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003895 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3896 TCP_ERROR_NONE);
3897 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3898 TCP_ERROR_NONE);
3899 _(CLOSING, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3900 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08003901 _(CLOSING, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3902 _(CLOSING, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3903 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003904 _(CLOSING, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras3c514d52018-12-22 11:39:33 -08003905 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3906 TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003907 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3908 TCP_ERROR_NONE);
3909 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3910 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3911 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3912 TCP_ERROR_NONE);
3913 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3914 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras79c04d62019-08-11 19:49:05 -07003915 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3916 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003917 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3918 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003919 /* FIN confirming that the peer (app) has closed */
3920 _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasf6d68ed2017-05-07 19:12:02 -07003921 _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003922 _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3923 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003924 _(FIN_WAIT_2, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3925 _(FIN_WAIT_2, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3926 TCP_ERROR_NONE);
Florin Corasf03a59a2017-06-09 21:07:32 -07003927 _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3928 _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3929 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003930 _(CLOSE_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3931 _(CLOSE_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3932 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003933 _(LAST_ACK, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003934 _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003935 _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3936 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3937 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003938 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3939 TCP_ERROR_NONE);
3940 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3941 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3942 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3943 TCP_ERROR_NONE);
3944 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3945 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3946 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3947 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3948 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3949 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasdb84e572017-05-09 18:54:52 -07003950 _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003951 _(LAST_ACK, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3952 TCP_ERROR_NONE);
Florin Corasc01d5782018-10-17 14:53:11 -07003953 _(LAST_ACK, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003954 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3955 TCP_ERROR_NONE);
3956 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3957 TCP_ERROR_NONE);
3958 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3959 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasb56fcf12019-01-02 10:10:08 -08003960 _(TIME_WAIT, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003961 _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3962 _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3963 TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003964 _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003965 _(TIME_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3966 TCP_ERROR_NONE);
Florin Coras50958952017-08-29 14:50:13 -07003967 _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003968 /* RFC793 CLOSED: An incoming segment containing a RST is discarded. An
3969 * incoming segment not containing a RST causes a RST to be sent in
3970 * response.*/
Florin Corasdc629cd2017-05-09 00:52:37 -07003971 _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08003972 _(CLOSED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003973 TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08003974 _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
3975 _(CLOSED, TCP_FLAG_SYN, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
3976 _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3977 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003978#undef _
3979}
3980
Florin Coras0dbd5172018-06-25 16:19:34 -07003981static clib_error_t *
Dave Barach68b0fb02017-02-28 15:15:56 -05003982tcp_input_init (vlib_main_t * vm)
3983{
3984 clib_error_t *error = 0;
3985 tcp_main_t *tm = vnet_get_tcp_main ();
3986
3987 if ((error = vlib_call_init_function (vm, tcp_init)))
3988 return error;
3989
3990 /* Initialize dispatch table. */
3991 tcp_dispatch_table_init (tm);
3992
3993 return error;
3994}
3995
3996VLIB_INIT_FUNCTION (tcp_input_init);
3997
Filip Tehlare275bed2019-03-06 00:06:56 -08003998#endif /* CLIB_MARCH_VARIANT */
3999
Dave Barach68b0fb02017-02-28 15:15:56 -05004000/*
4001 * fd.io coding-style-patch-verification: ON
4002 *
4003 * Local Variables:
4004 * eval: (c-set-style "gnu")
4005 * End:
4006 */