blob: c3ce2eb1ae12d1a0587bdd763c195c0c03a2800f [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vppinfra/sparse_vec.h>
17#include <vnet/tcp/tcp_packet.h>
18#include <vnet/tcp/tcp.h>
19#include <vnet/session/session.h>
20#include <math.h>
21
22static char *tcp_error_strings[] = {
23#define tcp_error(n,s) s,
24#include <vnet/tcp/tcp_error.def>
25#undef tcp_error
26};
27
28/* All TCP nodes have the same outgoing arcs */
29#define foreach_tcp_state_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080030 _ (DROP4, "ip4-drop") \
31 _ (DROP6, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -050032 _ (TCP4_OUTPUT, "tcp4-output") \
33 _ (TCP6_OUTPUT, "tcp6-output")
34
35typedef enum _tcp_established_next
36{
37#define _(s,n) TCP_ESTABLISHED_NEXT_##s,
38 foreach_tcp_state_next
39#undef _
40 TCP_ESTABLISHED_N_NEXT,
41} tcp_established_next_t;
42
43typedef enum _tcp_rcv_process_next
44{
45#define _(s,n) TCP_RCV_PROCESS_NEXT_##s,
46 foreach_tcp_state_next
47#undef _
48 TCP_RCV_PROCESS_N_NEXT,
49} tcp_rcv_process_next_t;
50
51typedef enum _tcp_syn_sent_next
52{
53#define _(s,n) TCP_SYN_SENT_NEXT_##s,
54 foreach_tcp_state_next
55#undef _
56 TCP_SYN_SENT_N_NEXT,
57} tcp_syn_sent_next_t;
58
59typedef enum _tcp_listen_next
60{
61#define _(s,n) TCP_LISTEN_NEXT_##s,
62 foreach_tcp_state_next
63#undef _
64 TCP_LISTEN_N_NEXT,
65} tcp_listen_next_t;
66
67/* Generic, state independent indices */
68typedef enum _tcp_state_next
69{
70#define _(s,n) TCP_NEXT_##s,
71 foreach_tcp_state_next
72#undef _
73 TCP_STATE_N_NEXT,
74} tcp_state_next_t;
75
76#define tcp_next_output(is_ip4) (is_ip4 ? TCP_NEXT_TCP4_OUTPUT \
77 : TCP_NEXT_TCP6_OUTPUT)
78
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080079#define tcp_next_drop(is_ip4) (is_ip4 ? TCP_NEXT_DROP4 \
80 : TCP_NEXT_DROP6)
81
Dave Barach68b0fb02017-02-28 15:15:56 -050082vlib_node_registration_t tcp4_established_node;
83vlib_node_registration_t tcp6_established_node;
84
85/**
86 * Validate segment sequence number. As per RFC793:
87 *
88 * Segment Receive Test
89 * Length Window
90 * ------- ------- -------------------------------------------
91 * 0 0 SEG.SEQ = RCV.NXT
92 * 0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
93 * >0 0 not acceptable
94 * >0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
95 * or RCV.NXT =< SEG.SEQ+SEG.LEN-1 < RCV.NXT+RCV.WND
96 *
97 * This ultimately consists in checking if segment falls within the window.
98 * The one important difference compared to RFC793 is that we use rcv_las,
99 * or the rcv_nxt at last ack sent instead of rcv_nxt since that's the
100 * peer's reference when computing our receive window.
101 *
Florin Coras6792ec02017-03-13 03:49:51 -0700102 * This:
103 * seq_leq (end_seq, tc->rcv_las + tc->rcv_wnd) && seq_geq (seq, tc->rcv_las)
104 * however, is too strict when we have retransmits. Instead we just check that
105 * the seq is not beyond the right edge and that the end of the segment is not
106 * less than the left edge.
107 *
108 * N.B. rcv_nxt and rcv_wnd are both updated in this node if acks are sent, so
109 * use rcv_nxt in the right edge window test instead of rcv_las.
110 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500111 */
112always_inline u8
113tcp_segment_in_rcv_wnd (tcp_connection_t * tc, u32 seq, u32 end_seq)
114{
Florin Coras6792ec02017-03-13 03:49:51 -0700115 return (seq_geq (end_seq, tc->rcv_las)
116 && seq_leq (seq, tc->rcv_nxt + tc->rcv_wnd));
Dave Barach68b0fb02017-02-28 15:15:56 -0500117}
118
Florin Corasdb84e572017-05-09 18:54:52 -0700119/**
120 * Parse TCP header options.
121 *
122 * @param th TCP header
123 * @param to TCP options data structure to be populated
Florin Coras80231112018-12-05 15:59:31 -0800124 * @param is_syn set if packet is syn
Florin Corasdb84e572017-05-09 18:54:52 -0700125 * @return -1 if parsing failed
126 */
Florin Coras80231112018-12-05 15:59:31 -0800127static inline int
128tcp_options_parse (tcp_header_t * th, tcp_options_t * to, u8 is_syn)
Dave Barach68b0fb02017-02-28 15:15:56 -0500129{
130 const u8 *data;
131 u8 opt_len, opts_len, kind;
132 int j;
133 sack_block_t b;
134
135 opts_len = (tcp_doff (th) << 2) - sizeof (tcp_header_t);
136 data = (const u8 *) (th + 1);
137
138 /* Zero out all flags but those set in SYN */
Florin Corasd6fe5bd2018-10-16 19:52:10 -0700139 to->flags &= (TCP_OPTS_FLAG_SACK_PERMITTED | TCP_OPTS_FLAG_WSCALE
Florin Coras80231112018-12-05 15:59:31 -0800140 | TCP_OPTS_FLAG_TSTAMP | TCP_OPTION_MSS);
Dave Barach68b0fb02017-02-28 15:15:56 -0500141
142 for (; opts_len > 0; opts_len -= opt_len, data += opt_len)
143 {
144 kind = data[0];
145
146 /* Get options length */
147 if (kind == TCP_OPTION_EOL)
148 break;
149 else if (kind == TCP_OPTION_NOOP)
Florin Corasdb84e572017-05-09 18:54:52 -0700150 {
151 opt_len = 1;
152 continue;
153 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500154 else
155 {
156 /* broken options */
157 if (opts_len < 2)
Florin Corasdb84e572017-05-09 18:54:52 -0700158 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500159 opt_len = data[1];
160
161 /* weird option length */
162 if (opt_len < 2 || opt_len > opts_len)
Florin Corasdb84e572017-05-09 18:54:52 -0700163 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500164 }
165
166 /* Parse options */
167 switch (kind)
168 {
169 case TCP_OPTION_MSS:
Florin Coras80231112018-12-05 15:59:31 -0800170 if (!is_syn)
171 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500172 if ((opt_len == TCP_OPTION_LEN_MSS) && tcp_syn (th))
173 {
174 to->flags |= TCP_OPTS_FLAG_MSS;
175 to->mss = clib_net_to_host_u16 (*(u16 *) (data + 2));
176 }
177 break;
178 case TCP_OPTION_WINDOW_SCALE:
Florin Coras80231112018-12-05 15:59:31 -0800179 if (!is_syn)
180 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500181 if ((opt_len == TCP_OPTION_LEN_WINDOW_SCALE) && tcp_syn (th))
182 {
183 to->flags |= TCP_OPTS_FLAG_WSCALE;
184 to->wscale = data[2];
185 if (to->wscale > TCP_MAX_WND_SCALE)
Florin Corasa9d5bea2018-12-17 08:24:19 -0800186 to->wscale = TCP_MAX_WND_SCALE;
Dave Barach68b0fb02017-02-28 15:15:56 -0500187 }
188 break;
189 case TCP_OPTION_TIMESTAMP:
Florin Coras80231112018-12-05 15:59:31 -0800190 if (is_syn)
191 to->flags |= TCP_OPTS_FLAG_TSTAMP;
192 if ((to->flags & TCP_OPTS_FLAG_TSTAMP)
193 && opt_len == TCP_OPTION_LEN_TIMESTAMP)
Dave Barach68b0fb02017-02-28 15:15:56 -0500194 {
Dave Barach68b0fb02017-02-28 15:15:56 -0500195 to->tsval = clib_net_to_host_u32 (*(u32 *) (data + 2));
196 to->tsecr = clib_net_to_host_u32 (*(u32 *) (data + 6));
197 }
198 break;
199 case TCP_OPTION_SACK_PERMITTED:
Florin Coras80231112018-12-05 15:59:31 -0800200 if (!is_syn)
201 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500202 if (opt_len == TCP_OPTION_LEN_SACK_PERMITTED && tcp_syn (th))
203 to->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
204 break;
205 case TCP_OPTION_SACK_BLOCK:
206 /* If SACK permitted was not advertised or a SYN, break */
207 if ((to->flags & TCP_OPTS_FLAG_SACK_PERMITTED) == 0 || tcp_syn (th))
208 break;
209
210 /* If too short or not correctly formatted, break */
211 if (opt_len < 10 || ((opt_len - 2) % TCP_OPTION_LEN_SACK_BLOCK))
212 break;
213
214 to->flags |= TCP_OPTS_FLAG_SACK;
215 to->n_sack_blocks = (opt_len - 2) / TCP_OPTION_LEN_SACK_BLOCK;
216 vec_reset_length (to->sacks);
217 for (j = 0; j < to->n_sack_blocks; j++)
218 {
Florin Coras3eb50622017-07-13 01:24:57 -0400219 b.start = clib_net_to_host_u32 (*(u32 *) (data + 2 + 8 * j));
220 b.end = clib_net_to_host_u32 (*(u32 *) (data + 6 + 8 * j));
Dave Barach68b0fb02017-02-28 15:15:56 -0500221 vec_add1 (to->sacks, b);
222 }
223 break;
224 default:
225 /* Nothing to see here */
226 continue;
227 }
228 }
Florin Corasdb84e572017-05-09 18:54:52 -0700229 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500230}
231
Florin Corasc28764f2017-04-26 00:08:42 -0700232/**
233 * RFC1323: Check against wrapped sequence numbers (PAWS). If we have
234 * timestamp to echo and it's less than tsval_recent, drop segment
235 * but still send an ACK in order to retain TCP's mechanism for detecting
236 * and recovering from half-open connections
237 *
238 * Or at least that's what the theory says. It seems that this might not work
239 * very well with packet reordering and fast retransmit. XXX
240 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500241always_inline int
242tcp_segment_check_paws (tcp_connection_t * tc)
243{
Florin Corasea41aac2018-12-06 17:24:59 -0800244 return tcp_opts_tstamp (&tc->rcv_opts)
Florin Coras93992a92017-05-24 18:03:56 -0700245 && timestamp_lt (tc->rcv_opts.tsval, tc->tsval_recent);
Dave Barach68b0fb02017-02-28 15:15:56 -0500246}
247
248/**
Florin Corasc28764f2017-04-26 00:08:42 -0700249 * Update tsval recent
250 */
251always_inline void
252tcp_update_timestamp (tcp_connection_t * tc, u32 seq, u32 seq_end)
253{
254 /*
255 * RFC1323: If Last.ACK.sent falls within the range of sequence numbers
256 * of an incoming segment:
257 * SEG.SEQ <= Last.ACK.sent < SEG.SEQ + SEG.LEN
258 * then the TSval from the segment is copied to TS.Recent;
259 * otherwise, the TSval is ignored.
260 */
Florin Corasf1762d62017-09-24 19:43:08 -0400261 if (tcp_opts_tstamp (&tc->rcv_opts) && seq_leq (seq, tc->rcv_las)
262 && seq_leq (tc->rcv_las, seq_end))
Florin Corasc28764f2017-04-26 00:08:42 -0700263 {
Dave Barach2c25a622017-06-26 11:35:07 -0400264 ASSERT (timestamp_leq (tc->tsval_recent, tc->rcv_opts.tsval));
Florin Coras93992a92017-05-24 18:03:56 -0700265 tc->tsval_recent = tc->rcv_opts.tsval;
Florin Corasbe72ae62018-11-01 11:23:03 -0700266 tc->tsval_recent_age = tcp_time_now_w_thread (tc->c_thread_index);
Florin Corasc28764f2017-04-26 00:08:42 -0700267 }
268}
269
270/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500271 * Validate incoming segment as per RFC793 p. 69 and RFC1323 p. 19
272 *
273 * It first verifies if segment has a wrapped sequence number (PAWS) and then
274 * does the processing associated to the first four steps (ignoring security
275 * and precedence): sequence number, rst bit and syn bit checks.
276 *
277 * @return 0 if segments passes validation.
278 */
279static int
Florin Coras7ac053b2018-11-05 15:57:21 -0800280tcp_segment_validate (tcp_worker_ctx_t * wrk, tcp_connection_t * tc0,
281 vlib_buffer_t * b0, tcp_header_t * th0, u32 * error0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500282{
Florin Corasca1c8f32018-05-23 21:01:30 -0700283 /* We could get a burst of RSTs interleaved with acks */
284 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
285 {
286 tcp_send_reset (tc0);
287 *error0 = TCP_ERROR_CONNECTION_CLOSED;
Florin Coras7ac053b2018-11-05 15:57:21 -0800288 goto error;
Florin Corasca1c8f32018-05-23 21:01:30 -0700289 }
290
Dave Barach68b0fb02017-02-28 15:15:56 -0500291 if (PREDICT_FALSE (!tcp_ack (th0) && !tcp_rst (th0) && !tcp_syn (th0)))
Florin Coras00cd22d2018-04-18 13:20:18 -0700292 {
293 *error0 = TCP_ERROR_SEGMENT_INVALID;
Florin Coras7ac053b2018-11-05 15:57:21 -0800294 goto error;
Florin Coras00cd22d2018-04-18 13:20:18 -0700295 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500296
Florin Coras80231112018-12-05 15:59:31 -0800297 if (PREDICT_FALSE (tcp_options_parse (th0, &tc0->rcv_opts, 0)))
Florin Corasdb84e572017-05-09 18:54:52 -0700298 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700299 *error0 = TCP_ERROR_OPTIONS;
Florin Coras7ac053b2018-11-05 15:57:21 -0800300 goto error;
Florin Corasdb84e572017-05-09 18:54:52 -0700301 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500302
Florin Coras00cd22d2018-04-18 13:20:18 -0700303 if (PREDICT_FALSE (tcp_segment_check_paws (tc0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500304 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700305 *error0 = TCP_ERROR_PAWS;
Florin Corasc28764f2017-04-26 00:08:42 -0700306 TCP_EVT_DBG (TCP_EVT_PAWS_FAIL, tc0, vnet_buffer (b0)->tcp.seq_number,
307 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500308
309 /* If it just so happens that a segment updates tsval_recent for a
310 * segment over 24 days old, invalidate tsval_recent. */
311 if (timestamp_lt (tc0->tsval_recent_age + TCP_PAWS_IDLE,
Florin Corasbe72ae62018-11-01 11:23:03 -0700312 tcp_time_now_w_thread (tc0->c_thread_index)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500313 {
Florin Corasea41aac2018-12-06 17:24:59 -0800314 tc0->tsval_recent = tc0->rcv_opts.tsval;
Florin Coras91236ce2018-12-16 11:41:45 -0800315 clib_warning ("paws failed: 24-day old segment");
Dave Barach68b0fb02017-02-28 15:15:56 -0500316 }
Florin Coras91236ce2018-12-16 11:41:45 -0800317 /* Drop after ack if not rst. Resets can fail paws check as per
318 * RFC 7323 sec. 5.2: When an <RST> segment is received, it MUST NOT
319 * be subjected to the PAWS check by verifying an acceptable value in
320 * SEG.TSval */
321 else if (!tcp_rst (th0))
Dave Barach68b0fb02017-02-28 15:15:56 -0500322 {
Florin Coras91236ce2018-12-16 11:41:45 -0800323 tcp_program_ack (wrk, tc0);
324 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
325 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500326 }
327 }
328
329 /* 1st: check sequence number */
330 if (!tcp_segment_in_rcv_wnd (tc0, vnet_buffer (b0)->tcp.seq_number,
331 vnet_buffer (b0)->tcp.seq_end))
332 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700333 *error0 = TCP_ERROR_RCV_WND;
Florin Coras6792ec02017-03-13 03:49:51 -0700334 /* If our window is 0 and the packet is in sequence, let it pass
Florin Coras00cd22d2018-04-18 13:20:18 -0700335 * through for ack processing. It should be dropped later. */
336 if (!(tc0->rcv_wnd == 0
337 && tc0->rcv_nxt == vnet_buffer (b0)->tcp.seq_number))
Florin Coras6792ec02017-03-13 03:49:51 -0700338 {
339 /* If not RST, send dup ack */
340 if (!tcp_rst (th0))
341 {
Florin Coras7ac053b2018-11-05 15:57:21 -0800342 tcp_program_dupack (wrk, tc0);
Florin Corasca1c8f32018-05-23 21:01:30 -0700343 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
Florin Coras6792ec02017-03-13 03:49:51 -0700344 }
Florin Coras7ac053b2018-11-05 15:57:21 -0800345 goto error;
Florin Coras6792ec02017-03-13 03:49:51 -0700346 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500347 }
348
349 /* 2nd: check the RST bit */
Florin Coras00cd22d2018-04-18 13:20:18 -0700350 if (PREDICT_FALSE (tcp_rst (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500351 {
Florin Corasd79b41e2017-03-04 05:37:52 -0800352 tcp_connection_reset (tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -0700353 *error0 = TCP_ERROR_RST_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -0800354 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500355 }
356
357 /* 3rd: check security and precedence (skip) */
358
359 /* 4th: check the SYN bit */
Florin Coras00cd22d2018-04-18 13:20:18 -0700360 if (PREDICT_FALSE (tcp_syn (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500361 {
Florin Coras6534b7a2017-07-18 05:38:03 -0400362 /* TODO implement RFC 5961 */
Florin Coras9d063042017-09-14 03:08:00 -0400363 if (tc0->state == TCP_STATE_SYN_RCVD)
364 {
Florin Coras80231112018-12-05 15:59:31 -0800365 tcp_options_parse (th0, &tc0->rcv_opts, 1);
Florin Coras7ac053b2018-11-05 15:57:21 -0800366 tcp_send_synack (tc0);
Florin Coras9d063042017-09-14 03:08:00 -0400367 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, tc0, 0);
368 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400369 else
Florin Coras9d063042017-09-14 03:08:00 -0400370 {
Florin Coras7ac053b2018-11-05 15:57:21 -0800371 tcp_program_ack (wrk, tc0);
Florin Coras9d063042017-09-14 03:08:00 -0400372 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, tc0);
373 }
Florin Coras00cd22d2018-04-18 13:20:18 -0700374 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500375 }
376
Florin Corasc28764f2017-04-26 00:08:42 -0700377 /* If segment in window, save timestamp */
378 tcp_update_timestamp (tc0, vnet_buffer (b0)->tcp.seq_number,
379 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500380 return 0;
Florin Coras00cd22d2018-04-18 13:20:18 -0700381
Florin Coras00cd22d2018-04-18 13:20:18 -0700382error:
Florin Coras00cd22d2018-04-18 13:20:18 -0700383 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500384}
385
386always_inline int
387tcp_rcv_ack_is_acceptable (tcp_connection_t * tc0, vlib_buffer_t * tb0)
388{
389 /* SND.UNA =< SEG.ACK =< SND.NXT */
390 return (seq_leq (tc0->snd_una, vnet_buffer (tb0)->tcp.ack_number)
391 && seq_leq (vnet_buffer (tb0)->tcp.ack_number, tc0->snd_nxt));
392}
393
394/**
395 * Compute smoothed RTT as per VJ's '88 SIGCOMM and RFC6298
396 *
397 * Note that although the original article, srtt and rttvar are scaled
398 * to minimize round-off errors, here we don't. Instead, we rely on
399 * better precision time measurements.
400 *
401 * TODO support us rtt resolution
402 */
403static void
404tcp_estimate_rtt (tcp_connection_t * tc, u32 mrtt)
405{
Florin Corasf03a59a2017-06-09 21:07:32 -0700406 int err, diff;
Dave Barach68b0fb02017-02-28 15:15:56 -0500407
408 if (tc->srtt != 0)
409 {
410 err = mrtt - tc->srtt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500411
412 /* XXX Drop in RTT results in RTTVAR increase and bigger RTO.
413 * The increase should be bound */
Florin Corasf03a59a2017-06-09 21:07:32 -0700414 tc->srtt = clib_max ((int) tc->srtt + (err >> 3), 1);
415 diff = (clib_abs (err) - (int) tc->rttvar) >> 2;
416 tc->rttvar = clib_max ((int) tc->rttvar + diff, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500417 }
418 else
419 {
420 /* First measurement. */
421 tc->srtt = mrtt;
Florin Coras6792ec02017-03-13 03:49:51 -0700422 tc->rttvar = mrtt >> 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500423 }
424}
425
Florin Coras93992a92017-05-24 18:03:56 -0700426void
427tcp_update_rto (tcp_connection_t * tc)
428{
429 tc->rto = clib_min (tc->srtt + (tc->rttvar << 2), TCP_RTO_MAX);
Florin Corasf03a59a2017-06-09 21:07:32 -0700430 tc->rto = clib_max (tc->rto, TCP_RTO_MIN);
Florin Coras93992a92017-05-24 18:03:56 -0700431}
432
Florin Corasf1762d62017-09-24 19:43:08 -0400433/**
434 * Update RTT estimate and RTO timer
Dave Barach68b0fb02017-02-28 15:15:56 -0500435 *
436 * Measure RTT: We have two sources of RTT measurements: TSOPT and ACK
437 * timing. Middle boxes are known to fiddle with TCP options so we
438 * should give higher priority to ACK timing.
439 *
Florin Corasf1762d62017-09-24 19:43:08 -0400440 * This should be called only if previously sent bytes have been acked.
441 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500442 * return 1 if valid rtt 0 otherwise
443 */
444static int
445tcp_update_rtt (tcp_connection_t * tc, u32 ack)
446{
447 u32 mrtt = 0;
448
449 /* Karn's rule, part 1. Don't use retransmitted segments to estimate
450 * RTT because they're ambiguous. */
Florin Corasf1762d62017-09-24 19:43:08 -0400451 if (tcp_in_cong_recovery (tc) || tc->sack_sb.sacked_bytes)
Florin Coras3ec66b02018-08-23 16:27:05 -0700452 {
453 if (tcp_in_recovery (tc))
454 return 0;
455 goto done;
456 }
Florin Corasf1762d62017-09-24 19:43:08 -0400457
458 if (tc->rtt_ts && seq_geq (ack, tc->rtt_seq))
Dave Barach68b0fb02017-02-28 15:15:56 -0500459 {
Florin Corasefefc6b2018-11-07 12:49:19 -0800460 f64 sample = tcp_time_now_us (tc->c_thread_index) - tc->rtt_ts;
461 tc->mrtt_us = tc->mrtt_us + (sample - tc->mrtt_us) * 0.125;
462 mrtt = clib_max ((u32) (sample * THZ), 1);
463 /* Allow measuring of a new RTT */
464 tc->rtt_ts = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500465 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500466 /* As per RFC7323 TSecr can be used for RTTM only if the segment advances
467 * snd_una, i.e., the left side of the send window:
Florin Corasf1762d62017-09-24 19:43:08 -0400468 * seq_lt (tc->snd_una, ack). This is a condition for calling update_rtt */
469 else if (tcp_opts_tstamp (&tc->rcv_opts) && tc->rcv_opts.tsecr)
Dave Barach68b0fb02017-02-28 15:15:56 -0500470 {
Florin Corasbe72ae62018-11-01 11:23:03 -0700471 u32 now = tcp_time_now_w_thread (tc->c_thread_index);
472 mrtt = clib_max (now - tc->rcv_opts.tsecr, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500473 }
474
Florin Corasf1762d62017-09-24 19:43:08 -0400475 /* Ignore dubious measurements */
476 if (mrtt == 0 || mrtt > TCP_RTT_MAX)
477 goto done;
478
479 tcp_estimate_rtt (tc, mrtt);
480
481done:
482
Florin Corasf1762d62017-09-24 19:43:08 -0400483 /* If we got here something must've been ACKed so make sure boff is 0,
Florin Coras3ec66b02018-08-23 16:27:05 -0700484 * even if mrtt is not valid since we update the rto lower */
Florin Corasf1762d62017-09-24 19:43:08 -0400485 tc->rto_boff = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700486 tcp_update_rto (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500487
Florin Coras3af90fc2017-05-03 21:09:42 -0700488 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500489}
490
Florin Corasefefc6b2018-11-07 12:49:19 -0800491static void
492tcp_estimate_initial_rtt (tcp_connection_t * tc)
493{
494 u8 thread_index = vlib_num_workers ()? 1 : 0;
495 int mrtt;
496
497 if (tc->rtt_ts)
498 {
499 tc->mrtt_us = tcp_time_now_us (thread_index) - tc->rtt_ts;
500 mrtt = clib_max ((u32) (tc->mrtt_us * THZ), 1);
501 tc->rtt_ts = 0;
502 }
503 else
504 {
505 mrtt = tcp_time_now_w_thread (thread_index) - tc->rcv_opts.tsecr;
Florin Coras4af830c2018-12-04 09:21:36 -0800506 mrtt = clib_max (mrtt, 1);
Florin Corasefefc6b2018-11-07 12:49:19 -0800507 tc->mrtt_us = (f64) mrtt *TCP_TICK;
Florin Corasefefc6b2018-11-07 12:49:19 -0800508 }
509
510 if (mrtt > 0 && mrtt < TCP_RTT_MAX)
511 tcp_estimate_rtt (tc, mrtt);
Florin Coras54ddf432018-12-21 13:54:09 -0800512 tcp_update_rto (tc);
Florin Corasefefc6b2018-11-07 12:49:19 -0800513}
514
Dave Barach68b0fb02017-02-28 15:15:56 -0500515/**
Florin Coras9ece3c02018-11-05 11:06:53 -0800516 * Dequeue bytes for connections that have received acks in last burst
Dave Barach68b0fb02017-02-28 15:15:56 -0500517 */
518static void
Florin Coras9ece3c02018-11-05 11:06:53 -0800519tcp_handle_postponed_dequeues (tcp_worker_ctx_t * wrk)
Dave Barach68b0fb02017-02-28 15:15:56 -0500520{
Florin Coras9ece3c02018-11-05 11:06:53 -0800521 u32 thread_index = wrk->vm->thread_index;
522 u32 *pending_deq_acked;
523 tcp_connection_t *tc;
524 int i;
Florin Coras93992a92017-05-24 18:03:56 -0700525
Florin Coras9ece3c02018-11-05 11:06:53 -0800526 if (!vec_len (wrk->pending_deq_acked))
527 return;
Dave Barach68b0fb02017-02-28 15:15:56 -0500528
Florin Coras9ece3c02018-11-05 11:06:53 -0800529 pending_deq_acked = wrk->pending_deq_acked;
530 for (i = 0; i < vec_len (pending_deq_acked); i++)
531 {
532 tc = tcp_connection_get (pending_deq_acked[i], thread_index);
533 tc->flags &= ~TCP_CONN_DEQ_PENDING;
Florin Coras93992a92017-05-24 18:03:56 -0700534
Florin Corasefefc6b2018-11-07 12:49:19 -0800535 if (PREDICT_FALSE (!tc->burst_acked))
536 continue;
537
Florin Coras9ece3c02018-11-05 11:06:53 -0800538 /* Dequeue the newly ACKed bytes */
539 stream_session_dequeue_drop (&tc->connection, tc->burst_acked);
540 tc->burst_acked = 0;
541 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
542
Florin Coras42ceddb2018-12-12 10:56:01 -0800543 if (PREDICT_FALSE (tc->flags & TCP_CONN_PSH_PENDING))
544 {
545 if (seq_leq (tc->psh_seq, tc->snd_una))
546 tc->flags &= ~TCP_CONN_PSH_PENDING;
547 }
548
Florin Coras9ece3c02018-11-05 11:06:53 -0800549 /* If everything has been acked, stop retransmit timer
550 * otherwise update. */
551 tcp_retransmit_timer_update (tc);
Florin Corasefefc6b2018-11-07 12:49:19 -0800552
553 /* If not congested, update pacer based on our new
554 * cwnd estimate */
555 if (!tcp_in_fastrecovery (tc))
556 tcp_connection_tx_pacer_update (tc);
Florin Coras9ece3c02018-11-05 11:06:53 -0800557 }
558 _vec_len (wrk->pending_deq_acked) = 0;
559}
560
561static void
562tcp_program_dequeue (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
563{
564 if (!(tc->flags & TCP_CONN_DEQ_PENDING))
565 {
566 vec_add1 (wrk->pending_deq_acked, tc->c_c_index);
567 tc->flags |= TCP_CONN_DEQ_PENDING;
568 }
569 tc->burst_acked += tc->bytes_acked + tc->sack_sb.snd_una_adv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500570}
571
Florin Coras6792ec02017-03-13 03:49:51 -0700572/**
Florin Coras93992a92017-05-24 18:03:56 -0700573 * Check if duplicate ack as per RFC5681 Sec. 2
574 */
575static u8
576tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd,
577 u32 prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500578{
Florin Coras93992a92017-05-24 18:03:56 -0700579 return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500580 && seq_gt (tc->snd_una_max, tc->snd_una)
581 && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
Florin Coras93992a92017-05-24 18:03:56 -0700582 && (prev_snd_wnd == tc->snd_wnd));
583}
584
585/**
586 * Checks if ack is a congestion control event.
587 */
588static u8
589tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b,
590 u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
591{
592 /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
593 * defined to be 'duplicate' */
594 *is_dack = tc->sack_sb.last_sacked_bytes
595 || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
596
Dave Barach2c25a622017-06-26 11:35:07 -0400597 return ((*is_dack || tcp_in_cong_recovery (tc)) && !tcp_is_lost_fin (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -0500598}
599
Florin Coras0dbd5172018-06-25 16:19:34 -0700600static u32
601scoreboard_hole_index (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
602{
603 ASSERT (!pool_is_free_index (sb->holes, hole - sb->holes));
604 return hole - sb->holes;
605}
606
607static u32
608scoreboard_hole_bytes (sack_scoreboard_hole_t * hole)
609{
610 return hole->end - hole->start;
611}
612
613sack_scoreboard_hole_t *
614scoreboard_get_hole (sack_scoreboard_t * sb, u32 index)
615{
616 if (index != TCP_INVALID_SACK_HOLE_INDEX)
617 return pool_elt_at_index (sb->holes, index);
618 return 0;
619}
620
621sack_scoreboard_hole_t *
622scoreboard_next_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
623{
624 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
625 return pool_elt_at_index (sb->holes, hole->next);
626 return 0;
627}
628
629sack_scoreboard_hole_t *
630scoreboard_prev_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
631{
632 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
633 return pool_elt_at_index (sb->holes, hole->prev);
634 return 0;
635}
636
637sack_scoreboard_hole_t *
638scoreboard_first_hole (sack_scoreboard_t * sb)
639{
640 if (sb->head != TCP_INVALID_SACK_HOLE_INDEX)
641 return pool_elt_at_index (sb->holes, sb->head);
642 return 0;
643}
644
645sack_scoreboard_hole_t *
646scoreboard_last_hole (sack_scoreboard_t * sb)
647{
648 if (sb->tail != TCP_INVALID_SACK_HOLE_INDEX)
649 return pool_elt_at_index (sb->holes, sb->tail);
650 return 0;
651}
652
653static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500654scoreboard_remove_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
655{
656 sack_scoreboard_hole_t *next, *prev;
657
658 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
659 {
660 next = pool_elt_at_index (sb->holes, hole->next);
661 next->prev = hole->prev;
662 }
Florin Coras93992a92017-05-24 18:03:56 -0700663 else
664 {
665 sb->tail = hole->prev;
666 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500667
668 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
669 {
670 prev = pool_elt_at_index (sb->holes, hole->prev);
671 prev->next = hole->next;
672 }
673 else
674 {
675 sb->head = hole->next;
676 }
677
Florin Coras93992a92017-05-24 18:03:56 -0700678 if (scoreboard_hole_index (sb, hole) == sb->cur_rxt_hole)
679 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
680
Florin Coras3eb50622017-07-13 01:24:57 -0400681 /* Poison the entry */
682 if (CLIB_DEBUG > 0)
Dave Barachb7b92992018-10-17 10:38:51 -0400683 clib_memset (hole, 0xfe, sizeof (*hole));
Florin Coras3eb50622017-07-13 01:24:57 -0400684
Dave Barach68b0fb02017-02-28 15:15:56 -0500685 pool_put (sb->holes, hole);
686}
687
Florin Coras0dbd5172018-06-25 16:19:34 -0700688static sack_scoreboard_hole_t *
Florin Coras6792ec02017-03-13 03:49:51 -0700689scoreboard_insert_hole (sack_scoreboard_t * sb, u32 prev_index,
Dave Barach68b0fb02017-02-28 15:15:56 -0500690 u32 start, u32 end)
691{
Florin Coras6792ec02017-03-13 03:49:51 -0700692 sack_scoreboard_hole_t *hole, *next, *prev;
Dave Barach68b0fb02017-02-28 15:15:56 -0500693 u32 hole_index;
694
695 pool_get (sb->holes, hole);
Dave Barachb7b92992018-10-17 10:38:51 -0400696 clib_memset (hole, 0, sizeof (*hole));
Dave Barach68b0fb02017-02-28 15:15:56 -0500697
698 hole->start = start;
699 hole->end = end;
Florin Coras3eb50622017-07-13 01:24:57 -0400700 hole_index = scoreboard_hole_index (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500701
Florin Coras6792ec02017-03-13 03:49:51 -0700702 prev = scoreboard_get_hole (sb, prev_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500703 if (prev)
704 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700705 hole->prev = prev_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500706 hole->next = prev->next;
707
708 if ((next = scoreboard_next_hole (sb, hole)))
709 next->prev = hole_index;
Florin Corasf03a59a2017-06-09 21:07:32 -0700710 else
711 sb->tail = hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500712
713 prev->next = hole_index;
714 }
715 else
716 {
717 sb->head = hole_index;
718 hole->prev = TCP_INVALID_SACK_HOLE_INDEX;
719 hole->next = TCP_INVALID_SACK_HOLE_INDEX;
720 }
721
722 return hole;
723}
724
Florin Coras0dbd5172018-06-25 16:19:34 -0700725static void
Florin Corasf03a59a2017-06-09 21:07:32 -0700726scoreboard_update_bytes (tcp_connection_t * tc, sack_scoreboard_t * sb)
Florin Coras93992a92017-05-24 18:03:56 -0700727{
Florin Corasecbd20b2018-10-17 23:34:54 -0700728 sack_scoreboard_hole_t *left, *right;
Florin Coras93992a92017-05-24 18:03:56 -0700729 u32 bytes = 0, blks = 0;
730
731 sb->lost_bytes = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700732 sb->sacked_bytes = 0;
Florin Corasecbd20b2018-10-17 23:34:54 -0700733 left = scoreboard_last_hole (sb);
734 if (!left)
Florin Coras93992a92017-05-24 18:03:56 -0700735 return;
736
Florin Corasecbd20b2018-10-17 23:34:54 -0700737 if (seq_gt (sb->high_sacked, left->end))
Florin Coras93992a92017-05-24 18:03:56 -0700738 {
Florin Corasecbd20b2018-10-17 23:34:54 -0700739 bytes = sb->high_sacked - left->end;
Florin Coras93992a92017-05-24 18:03:56 -0700740 blks = 1;
741 }
742
Florin Coras9f9e9692018-10-19 17:49:00 -0700743 while ((right = left)
744 && bytes < (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
745 && blks < TCP_DUPACK_THRESHOLD
746 /* left not updated if above conditions fail */
747 && (left = scoreboard_prev_hole (sb, right)))
Florin Coras93992a92017-05-24 18:03:56 -0700748 {
Florin Corasecbd20b2018-10-17 23:34:54 -0700749 bytes += right->start - left->end;
Florin Coras93992a92017-05-24 18:03:56 -0700750 blks++;
Florin Coras93992a92017-05-24 18:03:56 -0700751 }
752
Florin Coras9f9e9692018-10-19 17:49:00 -0700753 /* left is first lost */
754 if (left)
Florin Coras93992a92017-05-24 18:03:56 -0700755 {
Florin Coras9f9e9692018-10-19 17:49:00 -0700756 do
757 {
758 sb->lost_bytes += scoreboard_hole_bytes (right);
759 left->is_lost = 1;
760 left = scoreboard_prev_hole (sb, right);
761 if (left)
762 bytes += right->start - left->end;
763 }
764 while ((right = left));
Florin Coras93992a92017-05-24 18:03:56 -0700765 }
Florin Coras9f9e9692018-10-19 17:49:00 -0700766
Florin Corasf03a59a2017-06-09 21:07:32 -0700767 sb->sacked_bytes = bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700768}
769
770/**
771 * Figure out the next hole to retransmit
772 *
773 * Follows logic proposed in RFC6675 Sec. 4, NextSeg()
774 */
775sack_scoreboard_hole_t *
776scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
777 sack_scoreboard_hole_t * start,
Florin Coras36ee9f12018-11-02 12:52:10 -0700778 u8 have_unsent, u8 * can_rescue, u8 * snd_limited)
Florin Coras93992a92017-05-24 18:03:56 -0700779{
780 sack_scoreboard_hole_t *hole = 0;
781
782 hole = start ? start : scoreboard_first_hole (sb);
783 while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost)
784 hole = scoreboard_next_hole (sb, hole);
785
786 /* Nothing, return */
787 if (!hole)
788 {
789 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
790 return 0;
791 }
792
793 /* Rule (1): if higher than rxt, less than high_sacked and lost */
794 if (hole->is_lost && seq_lt (hole->start, sb->high_sacked))
795 {
796 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
797 }
798 else
799 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700800 /* Rule (2): available unsent data */
801 if (have_unsent)
Florin Coras93992a92017-05-24 18:03:56 -0700802 {
Florin Coras93992a92017-05-24 18:03:56 -0700803 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
Florin Coras36ee9f12018-11-02 12:52:10 -0700804 return 0;
Florin Coras93992a92017-05-24 18:03:56 -0700805 }
806 /* Rule (3): if hole not lost */
807 else if (seq_lt (hole->start, sb->high_sacked))
808 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700809 *snd_limited = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700810 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
811 }
812 /* Rule (4): if hole beyond high_sacked */
813 else
814 {
815 ASSERT (seq_geq (hole->start, sb->high_sacked));
816 *snd_limited = 1;
817 *can_rescue = 1;
818 /* HighRxt MUST NOT be updated */
819 return 0;
820 }
821 }
822
823 if (hole && seq_lt (sb->high_rxt, hole->start))
824 sb->high_rxt = hole->start;
825
826 return hole;
827}
828
Florin Coras0dbd5172018-06-25 16:19:34 -0700829static void
Florin Coras36ee9f12018-11-02 12:52:10 -0700830scoreboard_init_high_rxt (sack_scoreboard_t * sb, u32 snd_una)
Florin Coras93992a92017-05-24 18:03:56 -0700831{
832 sack_scoreboard_hole_t *hole;
833 hole = scoreboard_first_hole (sb);
Florin Coras3eb50622017-07-13 01:24:57 -0400834 if (hole)
835 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700836 snd_una = seq_gt (snd_una, hole->start) ? snd_una : hole->start;
Florin Coras3eb50622017-07-13 01:24:57 -0400837 sb->cur_rxt_hole = sb->head;
838 }
Florin Coras36ee9f12018-11-02 12:52:10 -0700839 sb->high_rxt = snd_una;
840 sb->rescue_rxt = snd_una - 1;
Florin Coras3eb50622017-07-13 01:24:57 -0400841}
842
Florin Coras0dbd5172018-06-25 16:19:34 -0700843void
844scoreboard_init (sack_scoreboard_t * sb)
845{
846 sb->head = TCP_INVALID_SACK_HOLE_INDEX;
847 sb->tail = TCP_INVALID_SACK_HOLE_INDEX;
848 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
849}
850
851void
852scoreboard_clear (sack_scoreboard_t * sb)
853{
854 sack_scoreboard_hole_t *hole;
855 while ((hole = scoreboard_first_hole (sb)))
856 {
857 scoreboard_remove_hole (sb, hole);
858 }
859 ASSERT (sb->head == sb->tail && sb->head == TCP_INVALID_SACK_HOLE_INDEX);
860 ASSERT (pool_elts (sb->holes) == 0);
861 sb->sacked_bytes = 0;
862 sb->last_sacked_bytes = 0;
863 sb->last_bytes_delivered = 0;
864 sb->snd_una_adv = 0;
865 sb->high_sacked = 0;
866 sb->high_rxt = 0;
867 sb->lost_bytes = 0;
868 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
869}
870
Florin Coras3eb50622017-07-13 01:24:57 -0400871/**
872 * Test that scoreboard is sane after recovery
873 *
874 * Returns 1 if scoreboard is empty or if first hole beyond
875 * snd_una.
876 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700877static u8
Florin Coras3eb50622017-07-13 01:24:57 -0400878tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc)
879{
880 sack_scoreboard_hole_t *hole;
881 hole = scoreboard_first_hole (&tc->sack_sb);
Florin Corasecbd20b2018-10-17 23:34:54 -0700882 return (!hole || (seq_geq (hole->start, tc->snd_una)
883 && seq_lt (hole->end, tc->snd_una_max)));
Florin Coras93992a92017-05-24 18:03:56 -0700884}
885
886void
Dave Barach68b0fb02017-02-28 15:15:56 -0500887tcp_rcv_sacks (tcp_connection_t * tc, u32 ack)
888{
889 sack_scoreboard_t *sb = &tc->sack_sb;
890 sack_block_t *blk, tmp;
Florin Corasf03a59a2017-06-09 21:07:32 -0700891 sack_scoreboard_hole_t *hole, *next_hole, *last_hole;
Florin Coras93992a92017-05-24 18:03:56 -0700892 u32 blk_index = 0, old_sacked_bytes, hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500893 int i, j;
894
Florin Coras6792ec02017-03-13 03:49:51 -0700895 sb->last_sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700896 sb->last_bytes_delivered = 0;
Florin Coras352c2c42018-06-26 01:22:41 -0700897 sb->snd_una_adv = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700898
Florin Coras93992a92017-05-24 18:03:56 -0700899 if (!tcp_opts_sack (&tc->rcv_opts)
900 && sb->head == TCP_INVALID_SACK_HOLE_INDEX)
Dave Barach68b0fb02017-02-28 15:15:56 -0500901 return;
902
Florin Coras352c2c42018-06-26 01:22:41 -0700903 old_sacked_bytes = sb->sacked_bytes;
904
Dave Barach68b0fb02017-02-28 15:15:56 -0500905 /* Remove invalid blocks */
Florin Coras93992a92017-05-24 18:03:56 -0700906 blk = tc->rcv_opts.sacks;
907 while (blk < vec_end (tc->rcv_opts.sacks))
Florin Coras6792ec02017-03-13 03:49:51 -0700908 {
909 if (seq_lt (blk->start, blk->end)
910 && seq_gt (blk->start, tc->snd_una)
Florin Corasab86f862018-12-06 18:24:19 -0800911 && seq_gt (blk->start, ack)
912 && seq_lt (blk->start, tc->snd_una_max)
913 && seq_leq (blk->end, tc->snd_una_max))
Florin Coras6792ec02017-03-13 03:49:51 -0700914 {
915 blk++;
916 continue;
917 }
Florin Coras93992a92017-05-24 18:03:56 -0700918 vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks);
Florin Coras6792ec02017-03-13 03:49:51 -0700919 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500920
921 /* Add block for cumulative ack */
922 if (seq_gt (ack, tc->snd_una))
923 {
924 tmp.start = tc->snd_una;
925 tmp.end = ack;
Florin Coras93992a92017-05-24 18:03:56 -0700926 vec_add1 (tc->rcv_opts.sacks, tmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500927 }
928
Florin Coras93992a92017-05-24 18:03:56 -0700929 if (vec_len (tc->rcv_opts.sacks) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500930 return;
931
Florin Coras3eb50622017-07-13 01:24:57 -0400932 tcp_scoreboard_trace_add (tc, ack);
933
Dave Barach68b0fb02017-02-28 15:15:56 -0500934 /* Make sure blocks are ordered */
Florin Coras93992a92017-05-24 18:03:56 -0700935 for (i = 0; i < vec_len (tc->rcv_opts.sacks); i++)
936 for (j = i + 1; j < vec_len (tc->rcv_opts.sacks); j++)
937 if (seq_lt (tc->rcv_opts.sacks[j].start, tc->rcv_opts.sacks[i].start))
Dave Barach68b0fb02017-02-28 15:15:56 -0500938 {
Florin Coras93992a92017-05-24 18:03:56 -0700939 tmp = tc->rcv_opts.sacks[i];
940 tc->rcv_opts.sacks[i] = tc->rcv_opts.sacks[j];
941 tc->rcv_opts.sacks[j] = tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500942 }
943
Dave Barach68b0fb02017-02-28 15:15:56 -0500944 if (sb->head == TCP_INVALID_SACK_HOLE_INDEX)
945 {
Florin Coras6792ec02017-03-13 03:49:51 -0700946 /* If no holes, insert the first that covers all outstanding bytes */
947 last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
948 tc->snd_una, tc->snd_una_max);
949 sb->tail = scoreboard_hole_index (sb, last_hole);
Florin Coras93992a92017-05-24 18:03:56 -0700950 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
951 sb->high_sacked = tmp.end;
Florin Coras6792ec02017-03-13 03:49:51 -0700952 }
953 else
954 {
955 /* If we have holes but snd_una_max is beyond the last hole, update
956 * last hole end */
Florin Coras93992a92017-05-24 18:03:56 -0700957 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
Florin Coras6792ec02017-03-13 03:49:51 -0700958 last_hole = scoreboard_last_hole (sb);
Dave Barach2c25a622017-06-26 11:35:07 -0400959 if (seq_gt (tc->snd_una_max, last_hole->end))
960 {
961 if (seq_geq (last_hole->start, sb->high_sacked))
962 {
963 last_hole->end = tc->snd_una_max;
964 }
965 /* New hole after high sacked block */
966 else if (seq_lt (sb->high_sacked, tc->snd_una_max))
967 {
968 scoreboard_insert_hole (sb, sb->tail, sb->high_sacked,
969 tc->snd_una_max);
970 }
971 }
972 /* Keep track of max byte sacked for when the last hole
Florin Corasf03a59a2017-06-09 21:07:32 -0700973 * is acked */
974 if (seq_gt (tmp.end, sb->high_sacked))
975 sb->high_sacked = tmp.end;
Dave Barach68b0fb02017-02-28 15:15:56 -0500976 }
977
978 /* Walk the holes with the SACK blocks */
979 hole = pool_elt_at_index (sb->holes, sb->head);
Florin Coras93992a92017-05-24 18:03:56 -0700980 while (hole && blk_index < vec_len (tc->rcv_opts.sacks))
Dave Barach68b0fb02017-02-28 15:15:56 -0500981 {
Florin Coras93992a92017-05-24 18:03:56 -0700982 blk = &tc->rcv_opts.sacks[blk_index];
Dave Barach68b0fb02017-02-28 15:15:56 -0500983 if (seq_leq (blk->start, hole->start))
984 {
985 /* Block covers hole. Remove hole */
986 if (seq_geq (blk->end, hole->end))
987 {
988 next_hole = scoreboard_next_hole (sb, hole);
989
Florin Corasf03a59a2017-06-09 21:07:32 -0700990 /* Byte accounting: snd_una needs to be advanced */
991 if (blk->end == ack)
Dave Barach68b0fb02017-02-28 15:15:56 -0500992 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700993 if (next_hole)
Florin Coras06d11012017-05-17 14:21:51 -0700994 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700995 if (seq_lt (ack, next_hole->start))
996 sb->snd_una_adv = next_hole->start - ack;
997 sb->last_bytes_delivered +=
998 next_hole->start - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -0700999 }
Florin Coras3eb50622017-07-13 01:24:57 -04001000 else
Florin Coras06d11012017-05-17 14:21:51 -07001001 {
Dave Barach2c25a622017-06-26 11:35:07 -04001002 ASSERT (seq_geq (sb->high_sacked, ack));
Florin Coras93992a92017-05-24 18:03:56 -07001003 sb->snd_una_adv = sb->high_sacked - ack;
Florin Corasf03a59a2017-06-09 21:07:32 -07001004 sb->last_bytes_delivered += sb->high_sacked - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -07001005 }
1006 }
1007
Dave Barach68b0fb02017-02-28 15:15:56 -05001008 scoreboard_remove_hole (sb, hole);
1009 hole = next_hole;
1010 }
Florin Coras6792ec02017-03-13 03:49:51 -07001011 /* Partial 'head' overlap */
Dave Barach68b0fb02017-02-28 15:15:56 -05001012 else
1013 {
Florin Coras6792ec02017-03-13 03:49:51 -07001014 if (seq_gt (blk->end, hole->start))
1015 {
Florin Coras6792ec02017-03-13 03:49:51 -07001016 hole->start = blk->end;
1017 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001018 blk_index++;
1019 }
1020 }
1021 else
1022 {
1023 /* Hole must be split */
Florin Coras6792ec02017-03-13 03:49:51 -07001024 if (seq_lt (blk->end, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001025 {
Florin Coras6792ec02017-03-13 03:49:51 -07001026 hole_index = scoreboard_hole_index (sb, hole);
Florin Coras3eb50622017-07-13 01:24:57 -04001027 next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
1028 hole->end);
Florin Coras6792ec02017-03-13 03:49:51 -07001029
1030 /* Pool might've moved */
1031 hole = scoreboard_get_hole (sb, hole_index);
1032 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -05001033 blk_index++;
Florin Coras3eb50622017-07-13 01:24:57 -04001034 ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
Dave Barach68b0fb02017-02-28 15:15:56 -05001035 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001036 else if (seq_lt (blk->start, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001037 {
Florin Coras6792ec02017-03-13 03:49:51 -07001038 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -05001039 }
Florin Coras93992a92017-05-24 18:03:56 -07001040 hole = scoreboard_next_hole (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -05001041 }
1042 }
Florin Coras6792ec02017-03-13 03:49:51 -07001043
Florin Corasecbd20b2018-10-17 23:34:54 -07001044 if (pool_elts (sb->holes) == 1)
1045 {
1046 hole = scoreboard_first_hole (sb);
1047 if (hole->start == ack + sb->snd_una_adv
1048 && hole->end == tc->snd_una_max)
1049 scoreboard_remove_hole (sb, hole);
1050 }
1051
Florin Corasf03a59a2017-06-09 21:07:32 -07001052 scoreboard_update_bytes (tc, sb);
1053 sb->last_sacked_bytes = sb->sacked_bytes
1054 - (old_sacked_bytes - sb->last_bytes_delivered);
Florin Corasca1c8f32018-05-23 21:01:30 -07001055 ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes || tcp_in_recovery (tc));
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001056 ASSERT (sb->sacked_bytes == 0 || tcp_in_recovery (tc)
Florin Corasf03a59a2017-06-09 21:07:32 -07001057 || sb->sacked_bytes < tc->snd_una_max - seq_max (tc->snd_una, ack));
1058 ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_una_max
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001059 - seq_max (tc->snd_una, ack) || tcp_in_recovery (tc));
Dave Barach2c25a622017-06-26 11:35:07 -04001060 ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
1061 || sb->holes[sb->head].start == ack + sb->snd_una_adv);
Florin Corasca1c8f32018-05-23 21:01:30 -07001062 TCP_EVT_DBG (TCP_EVT_CC_SCOREBOARD, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001063}
1064
Florin Coras93992a92017-05-24 18:03:56 -07001065/**
1066 * Try to update snd_wnd based on feedback received from peer.
Dave Barach68b0fb02017-02-28 15:15:56 -05001067 *
Florin Coras93992a92017-05-24 18:03:56 -07001068 * If successful, and new window is 'effectively' 0, activate persist
1069 * timer.
1070 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001071static void
1072tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
1073{
Florin Coras93992a92017-05-24 18:03:56 -07001074 /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
1075 * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
Florin Coras6792ec02017-03-13 03:49:51 -07001076 if (seq_lt (tc->snd_wl1, seq)
1077 || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001078 {
1079 tc->snd_wnd = snd_wnd;
1080 tc->snd_wl1 = seq;
1081 tc->snd_wl2 = ack;
Florin Coras6792ec02017-03-13 03:49:51 -07001082 TCP_EVT_DBG (TCP_EVT_SND_WND, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001083
Florin Coras9ece3c02018-11-05 11:06:53 -08001084 if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
Florin Corasbb292f42017-05-19 09:49:19 -07001085 {
Florin Coras93992a92017-05-24 18:03:56 -07001086 /* Set persist timer if not set and we just got 0 wnd */
1087 if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
1088 && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
Florin Corasbb292f42017-05-19 09:49:19 -07001089 tcp_persist_timer_set (tc);
1090 }
Florin Coras3e350af2017-03-30 02:54:28 -07001091 else
Florin Coras93992a92017-05-24 18:03:56 -07001092 {
1093 tcp_persist_timer_reset (tc);
Florin Coras9ece3c02018-11-05 11:06:53 -08001094 if (PREDICT_FALSE (!tcp_in_recovery (tc) && tc->rto_boff > 0))
Florin Coras93992a92017-05-24 18:03:56 -07001095 {
1096 tc->rto_boff = 0;
1097 tcp_update_rto (tc);
1098 }
1099 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001100 }
1101}
1102
Florin Corasd2aab832018-05-22 11:39:59 -07001103/**
1104 * Init loss recovery/fast recovery.
1105 *
1106 * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
1107 * updated in @ref tcp_cc_handle_event after fast retransmit
1108 */
Florin Coras6792ec02017-03-13 03:49:51 -07001109void
Florin Coras93992a92017-05-24 18:03:56 -07001110tcp_cc_init_congestion (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001111{
Florin Coras93992a92017-05-24 18:03:56 -07001112 tcp_fastrecovery_on (tc);
1113 tc->snd_congestion = tc->snd_una_max;
Florin Coras62166002018-04-18 16:40:55 -07001114 tc->cwnd_acc_bytes = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001115 tc->snd_rxt_bytes = 0;
1116 tc->prev_ssthresh = tc->ssthresh;
1117 tc->prev_cwnd = tc->cwnd;
Dave Barach68b0fb02017-02-28 15:15:56 -05001118 tc->cc_algo->congestion (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001119 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001120}
1121
Florin Coras93992a92017-05-24 18:03:56 -07001122static void
1123tcp_cc_recovery_exit (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001124{
Florin Coras93992a92017-05-24 18:03:56 -07001125 tc->rto_boff = 0;
Florin Corasf1762d62017-09-24 19:43:08 -04001126 tcp_update_rto (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001127 tc->snd_rxt_ts = 0;
Florin Coras84275e92017-09-26 12:30:40 -04001128 tc->snd_nxt = tc->snd_una_max;
Florin Corasefefc6b2018-11-07 12:49:19 -08001129 tc->rtt_ts = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001130 tcp_recovery_off (tc);
Florin Corasf1762d62017-09-24 19:43:08 -04001131 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Florin Coras93992a92017-05-24 18:03:56 -07001132}
Florin Coras3e350af2017-03-30 02:54:28 -07001133
Florin Coras93992a92017-05-24 18:03:56 -07001134void
1135tcp_cc_fastrecovery_exit (tcp_connection_t * tc)
1136{
Florin Coras6792ec02017-03-13 03:49:51 -07001137 tc->cc_algo->recovered (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001138 tc->snd_rxt_bytes = 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001139 tc->rcv_dupacks = 0;
Florin Coras84275e92017-09-26 12:30:40 -04001140 tc->snd_nxt = tc->snd_una_max;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001141 tc->snd_rxt_bytes = 0;
Florin Corasefefc6b2018-11-07 12:49:19 -08001142 tc->rtt_ts = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001143
Florin Coras93992a92017-05-24 18:03:56 -07001144 tcp_fastrecovery_off (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001145 tcp_fastrecovery_first_off (tc);
Florin Corasd67f1122018-05-21 17:47:40 -07001146
Florin Corasf1762d62017-09-24 19:43:08 -04001147 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Dave Barach68b0fb02017-02-28 15:15:56 -05001148}
1149
1150static void
Florin Coras93992a92017-05-24 18:03:56 -07001151tcp_cc_congestion_undo (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001152{
Florin Coras93992a92017-05-24 18:03:56 -07001153 tc->cwnd = tc->prev_cwnd;
1154 tc->ssthresh = tc->prev_ssthresh;
1155 tc->snd_nxt = tc->snd_una_max;
1156 tc->rcv_dupacks = 0;
1157 if (tcp_in_recovery (tc))
1158 tcp_cc_recovery_exit (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001159 else if (tcp_in_fastrecovery (tc))
1160 tcp_cc_fastrecovery_exit (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001161 ASSERT (tc->rto_boff == 0);
Florin Corasf1762d62017-09-24 19:43:08 -04001162 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 5);
Florin Coras93992a92017-05-24 18:03:56 -07001163}
Dave Barach68b0fb02017-02-28 15:15:56 -05001164
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001165static inline u8
1166tcp_cc_is_spurious_timeout_rxt (tcp_connection_t * tc)
Florin Coras93992a92017-05-24 18:03:56 -07001167{
Florin Corasf1762d62017-09-24 19:43:08 -04001168 return (tcp_in_recovery (tc) && tc->rto_boff == 1
Dave Barach2c25a622017-06-26 11:35:07 -04001169 && tc->snd_rxt_ts
Florin Coras93992a92017-05-24 18:03:56 -07001170 && tcp_opts_tstamp (&tc->rcv_opts)
1171 && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
1172}
1173
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001174static inline u8
1175tcp_cc_is_spurious_fast_rxt (tcp_connection_t * tc)
1176{
1177 return (tcp_in_fastrecovery (tc)
1178 && tc->cwnd > tc->ssthresh + 3 * tc->snd_mss);
1179}
1180
1181static u8
1182tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
1183{
1184 return (tcp_cc_is_spurious_timeout_rxt (tc)
1185 || tcp_cc_is_spurious_fast_rxt (tc));
1186}
1187
Florin Coras0dbd5172018-06-25 16:19:34 -07001188static int
Florin Coras93992a92017-05-24 18:03:56 -07001189tcp_cc_recover (tcp_connection_t * tc)
1190{
1191 ASSERT (tcp_in_cong_recovery (tc));
1192 if (tcp_cc_is_spurious_retransmit (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001193 {
Florin Coras93992a92017-05-24 18:03:56 -07001194 tcp_cc_congestion_undo (tc);
1195 return 1;
1196 }
1197
1198 if (tcp_in_recovery (tc))
1199 tcp_cc_recovery_exit (tc);
1200 else if (tcp_in_fastrecovery (tc))
1201 tcp_cc_fastrecovery_exit (tc);
1202
1203 ASSERT (tc->rto_boff == 0);
1204 ASSERT (!tcp_in_cong_recovery (tc));
Florin Coras3eb50622017-07-13 01:24:57 -04001205 ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001206 return 0;
1207}
1208
1209static void
1210tcp_cc_update (tcp_connection_t * tc, vlib_buffer_t * b)
1211{
Florin Coras3eb50622017-07-13 01:24:57 -04001212 ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001213
1214 /* Congestion avoidance */
Florin Corasd67f1122018-05-21 17:47:40 -07001215 tcp_cc_rcv_ack (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001216
1217 /* If a cumulative ack, make sure dupacks is 0 */
1218 tc->rcv_dupacks = 0;
1219
1220 /* When dupacks hits the threshold we only enter fast retransmit if
1221 * cumulative ack covers more than snd_congestion. Should snd_una
1222 * wrap this test may fail under otherwise valid circumstances.
1223 * Therefore, proactively update snd_congestion when wrap detected. */
1224 if (PREDICT_FALSE
1225 (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1226 && seq_gt (tc->snd_congestion, tc->snd_una)))
1227 tc->snd_congestion = tc->snd_una - 1;
1228}
1229
1230static u8
1231tcp_should_fastrecover_sack (tcp_connection_t * tc)
1232{
1233 return (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss < tc->sack_sb.sacked_bytes;
1234}
1235
1236static u8
1237tcp_should_fastrecover (tcp_connection_t * tc)
1238{
1239 return (tc->rcv_dupacks == TCP_DUPACK_THRESHOLD
1240 || tcp_should_fastrecover_sack (tc));
1241}
1242
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001243void
Florin Corasbe72ae62018-11-01 11:23:03 -07001244tcp_program_fastretransmit (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001245{
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001246 if (!(tc->flags & TCP_CONN_FRXT_PENDING))
1247 {
1248 vec_add1 (wrk->pending_fast_rxt, tc->c_c_index);
1249 tc->flags |= TCP_CONN_FRXT_PENDING;
1250 }
1251}
1252
1253void
Florin Corasbe72ae62018-11-01 11:23:03 -07001254tcp_do_fastretransmits (tcp_worker_ctx_t * wrk)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001255{
Florin Corasbe72ae62018-11-01 11:23:03 -07001256 u32 *ongoing_fast_rxt, burst_bytes, sent_bytes, thread_index;
Florin Corase55a6d72018-10-31 23:09:22 -07001257 u32 max_burst_size, burst_size, n_segs = 0, n_segs_now;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001258 tcp_connection_t *tc;
Florin Corase55a6d72018-10-31 23:09:22 -07001259 u64 last_cpu_time;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001260 int i;
1261
Florin Corase55a6d72018-10-31 23:09:22 -07001262 if (vec_len (wrk->pending_fast_rxt) == 0
1263 && vec_len (wrk->postponed_fast_rxt) == 0)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001264 return;
1265
Florin Corasbe72ae62018-11-01 11:23:03 -07001266 thread_index = wrk->vm->thread_index;
Florin Corase55a6d72018-10-31 23:09:22 -07001267 last_cpu_time = wrk->vm->clib_time.last_cpu_time;
1268 ongoing_fast_rxt = wrk->ongoing_fast_rxt;
1269 vec_append (ongoing_fast_rxt, wrk->postponed_fast_rxt);
1270 vec_append (ongoing_fast_rxt, wrk->pending_fast_rxt);
1271
1272 _vec_len (wrk->postponed_fast_rxt) = 0;
1273 _vec_len (wrk->pending_fast_rxt) = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001274
Florin Coras776f3d82018-11-02 08:23:58 -07001275 max_burst_size = VLIB_FRAME_SIZE / vec_len (ongoing_fast_rxt);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001276 max_burst_size = clib_max (max_burst_size, 1);
1277
Florin Corase55a6d72018-10-31 23:09:22 -07001278 for (i = 0; i < vec_len (ongoing_fast_rxt); i++)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001279 {
Florin Corase55a6d72018-10-31 23:09:22 -07001280 if (n_segs >= VLIB_FRAME_SIZE)
1281 {
1282 vec_add1 (wrk->postponed_fast_rxt, ongoing_fast_rxt[i]);
1283 continue;
1284 }
1285
1286 tc = tcp_connection_get (ongoing_fast_rxt[i], thread_index);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001287 tc->flags &= ~TCP_CONN_FRXT_PENDING;
1288
1289 if (!tcp_in_fastrecovery (tc))
1290 continue;
1291
Florin Corase55a6d72018-10-31 23:09:22 -07001292 burst_size = clib_min (max_burst_size, VLIB_FRAME_SIZE - n_segs);
1293 burst_bytes = transport_connection_tx_pacer_burst (&tc->connection,
1294 last_cpu_time);
1295 burst_size = clib_min (burst_size, burst_bytes / tc->snd_mss);
1296 if (!burst_size)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001297 {
Florin Corasbe72ae62018-11-01 11:23:03 -07001298 tcp_program_fastretransmit (wrk, tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001299 continue;
1300 }
1301
Florin Corasbe72ae62018-11-01 11:23:03 -07001302 n_segs_now = tcp_fast_retransmit (wrk, tc, burst_size);
Florin Corase55a6d72018-10-31 23:09:22 -07001303 sent_bytes = clib_min (n_segs_now * tc->snd_mss, burst_bytes);
1304 transport_connection_tx_pacer_update_bytes (&tc->connection,
1305 sent_bytes);
Florin Corase55a6d72018-10-31 23:09:22 -07001306 n_segs += n_segs_now;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001307 }
Florin Corase55a6d72018-10-31 23:09:22 -07001308 _vec_len (ongoing_fast_rxt) = 0;
1309 wrk->ongoing_fast_rxt = ongoing_fast_rxt;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001310}
1311
Florin Corasf03a59a2017-06-09 21:07:32 -07001312/**
1313 * One function to rule them all ... and in the darkness bind them
1314 */
Florin Coras93992a92017-05-24 18:03:56 -07001315static void
1316tcp_cc_handle_event (tcp_connection_t * tc, u32 is_dack)
1317{
Florin Corasf03a59a2017-06-09 21:07:32 -07001318 u32 rxt_delivered;
1319
Florin Corasca1c8f32018-05-23 21:01:30 -07001320 if (tcp_in_fastrecovery (tc) && tcp_opts_sack_permitted (&tc->rcv_opts))
1321 {
1322 if (tc->bytes_acked)
1323 goto partial_ack;
Florin Corasbe72ae62018-11-01 11:23:03 -07001324 tcp_program_fastretransmit (tcp_get_worker (tc->c_thread_index), tc);
Florin Corasca1c8f32018-05-23 21:01:30 -07001325 return;
1326 }
Florin Coras93992a92017-05-24 18:03:56 -07001327 /*
1328 * Duplicate ACK. Check if we should enter fast recovery, or if already in
1329 * it account for the bytes that left the network.
1330 */
Florin Corasca1c8f32018-05-23 21:01:30 -07001331 else if (is_dack && !tcp_in_recovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001332 {
Florin Corasd2aab832018-05-22 11:39:59 -07001333 TCP_EVT_DBG (TCP_EVT_DUPACK_RCVD, tc, 1);
Florin Coras93992a92017-05-24 18:03:56 -07001334 ASSERT (tc->snd_una != tc->snd_una_max
1335 || tc->sack_sb.last_sacked_bytes);
Dave Barach2c25a622017-06-26 11:35:07 -04001336
Florin Coras93992a92017-05-24 18:03:56 -07001337 tc->rcv_dupacks++;
1338
Florin Corasd2aab832018-05-22 11:39:59 -07001339 /* Pure duplicate ack. If some data got acked, it's handled lower */
Florin Coras93992a92017-05-24 18:03:56 -07001340 if (tc->rcv_dupacks > TCP_DUPACK_THRESHOLD && !tc->bytes_acked)
Dave Barach68b0fb02017-02-28 15:15:56 -05001341 {
Florin Coras93992a92017-05-24 18:03:56 -07001342 ASSERT (tcp_in_fastrecovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001343 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1344 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001345 }
Florin Coras93992a92017-05-24 18:03:56 -07001346 else if (tcp_should_fastrecover (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001347 {
Florin Corasc44a5582018-11-01 16:30:54 -07001348 u32 pacer_wnd;
1349
Florin Corasd2aab832018-05-22 11:39:59 -07001350 ASSERT (!tcp_in_fastrecovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001351
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001352 /* Heuristic to catch potential late dupacks
1353 * after fast retransmit exits */
1354 if (is_dack && tc->snd_una == tc->snd_congestion
1355 && timestamp_leq (tc->rcv_opts.tsecr, tc->tsecr_last_ack))
Florin Coras93992a92017-05-24 18:03:56 -07001356 {
1357 tc->rcv_dupacks = 0;
1358 return;
1359 }
1360
1361 tcp_cc_init_congestion (tc);
1362 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1363
Florin Coras3eb50622017-07-13 01:24:57 -04001364 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Corase55a6d72018-10-31 23:09:22 -07001365 {
1366 tc->cwnd = tc->ssthresh;
1367 scoreboard_init_high_rxt (&tc->sack_sb, tc->snd_una);
Florin Corase55a6d72018-10-31 23:09:22 -07001368 }
1369 else
1370 {
1371 /* Post retransmit update cwnd to ssthresh and account for the
1372 * three segments that have left the network and should've been
1373 * buffered at the receiver XXX */
1374 tc->cwnd = tc->ssthresh + 3 * tc->snd_mss;
1375 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001376
Florin Coras36ee9f12018-11-02 12:52:10 -07001377 /* Constrain rate until we get a partial ack */
Florin Corasc44a5582018-11-01 16:30:54 -07001378 pacer_wnd = clib_max (0.1 * tc->cwnd, 2 * tc->snd_mss);
1379 tcp_connection_tx_pacer_reset (tc, pacer_wnd,
1380 0 /* start bucket */ );
Florin Corasbe72ae62018-11-01 11:23:03 -07001381 tcp_program_fastretransmit (tcp_get_worker (tc->c_thread_index),
1382 tc);
Florin Coras93992a92017-05-24 18:03:56 -07001383 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001384 }
Florin Coras93992a92017-05-24 18:03:56 -07001385 else if (!tc->bytes_acked
1386 || (tc->bytes_acked && !tcp_in_cong_recovery (tc)))
1387 {
1388 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1389 return;
1390 }
1391 else
1392 goto partial_ack;
1393 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001394 /* Don't allow entry in fast recovery if still in recovery, for now */
1395 else if (0 && is_dack && tcp_in_recovery (tc))
1396 {
1397 /* If of of the two conditions lower hold, reset dupacks because
1398 * we're probably after timeout (RFC6582 heuristics).
1399 * If Cumulative ack does not cover more than congestion threshold,
1400 * and:
1401 * 1) The following doesn't hold: The congestion window is greater
1402 * than SMSS bytes and the difference between highest_ack
1403 * and prev_highest_ack is at most 4*SMSS bytes
1404 * 2) Echoed timestamp in the last non-dup ack does not equal the
1405 * stored timestamp
1406 */
1407 if (seq_leq (tc->snd_una, tc->snd_congestion)
1408 && ((!(tc->cwnd > tc->snd_mss
1409 && tc->bytes_acked <= 4 * tc->snd_mss))
1410 || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
1411 {
1412 tc->rcv_dupacks = 0;
1413 return;
1414 }
1415 }
Florin Coras93992a92017-05-24 18:03:56 -07001416
Florin Coras93992a92017-05-24 18:03:56 -07001417 if (!tc->bytes_acked)
1418 return;
1419
1420partial_ack:
Florin Corasd2aab832018-05-22 11:39:59 -07001421 TCP_EVT_DBG (TCP_EVT_CC_PACK, tc);
1422
Florin Coras93992a92017-05-24 18:03:56 -07001423 /*
1424 * Legitimate ACK. 1) See if we can exit recovery
1425 */
Florin Coras93992a92017-05-24 18:03:56 -07001426
Florin Corasefefc6b2018-11-07 12:49:19 -08001427 /* Update the pacing rate. For the first partial ack we move from
1428 * the artificially constrained rate to the one after congestion */
1429 tcp_connection_tx_pacer_update (tc);
1430
Florin Coras93992a92017-05-24 18:03:56 -07001431 if (seq_geq (tc->snd_una, tc->snd_congestion))
1432 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001433 tcp_retransmit_timer_update (tc);
1434
Florin Coras93992a92017-05-24 18:03:56 -07001435 /* If spurious return, we've already updated everything */
1436 if (tcp_cc_recover (tc))
Florin Corasf03a59a2017-06-09 21:07:32 -07001437 {
1438 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1439 return;
1440 }
Florin Coras93992a92017-05-24 18:03:56 -07001441
1442 tc->snd_nxt = tc->snd_una_max;
1443
1444 /* Treat as congestion avoidance ack */
Florin Corasd67f1122018-05-21 17:47:40 -07001445 tcp_cc_rcv_ack (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001446 return;
1447 }
1448
1449 /*
1450 * Legitimate ACK. 2) If PARTIAL ACK try to retransmit
1451 */
Florin Coras93992a92017-05-24 18:03:56 -07001452
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001453 /* XXX limit this only to first partial ack? */
Florin Coras2e31cc32018-09-25 14:00:34 -07001454 tcp_retransmit_timer_update (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001455
Florin Coras93992a92017-05-24 18:03:56 -07001456 /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
Florin Corasd2aab832018-05-22 11:39:59 -07001457 * reset dupacks to 0. Also needed if in congestion recovery */
Florin Coras93992a92017-05-24 18:03:56 -07001458 tc->rcv_dupacks = 0;
1459
Florin Coras93992a92017-05-24 18:03:56 -07001460 /* Post RTO timeout don't try anything fancy */
1461 if (tcp_in_recovery (tc))
Florin Corasd2aab832018-05-22 11:39:59 -07001462 {
Florin Corasd67f1122018-05-21 17:47:40 -07001463 tcp_cc_rcv_ack (tc);
Florin Coras3ec66b02018-08-23 16:27:05 -07001464 transport_add_tx_event (&tc->connection);
Florin Corasd2aab832018-05-22 11:39:59 -07001465 return;
1466 }
Florin Coras93992a92017-05-24 18:03:56 -07001467
1468 /* Remove retransmitted bytes that have been delivered */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001469 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras93992a92017-05-24 18:03:56 -07001470 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001471 ASSERT (tc->bytes_acked + tc->sack_sb.snd_una_adv
1472 >= tc->sack_sb.last_bytes_delivered
1473 || (tc->flags & TCP_CONN_FINSNT));
1474
Florin Coras93992a92017-05-24 18:03:56 -07001475 /* If we have sacks and we haven't gotten an ack beyond high_rxt,
1476 * remove sacked bytes delivered */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001477 if (seq_lt (tc->snd_una, tc->sack_sb.high_rxt))
1478 {
1479 rxt_delivered = tc->bytes_acked + tc->sack_sb.snd_una_adv
1480 - tc->sack_sb.last_bytes_delivered;
1481 ASSERT (tc->snd_rxt_bytes >= rxt_delivered);
1482 tc->snd_rxt_bytes -= rxt_delivered;
1483 }
1484 else
1485 {
1486 /* Apparently all retransmitted holes have been acked */
1487 tc->snd_rxt_bytes = 0;
Florin Coras36ee9f12018-11-02 12:52:10 -07001488 tc->sack_sb.high_rxt = tc->snd_una;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001489 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001490 }
1491 else
1492 {
Florin Coras36ee9f12018-11-02 12:52:10 -07001493 tcp_fastrecovery_first_on (tc);
1494 /* Reuse last bytes delivered to track total bytes acked */
1495 tc->sack_sb.last_bytes_delivered += tc->bytes_acked;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001496 if (tc->snd_rxt_bytes > tc->bytes_acked)
1497 tc->snd_rxt_bytes -= tc->bytes_acked;
1498 else
1499 tc->snd_rxt_bytes = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001500 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001501
Florin Coras93992a92017-05-24 18:03:56 -07001502 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_PARTIALACK);
Dave Barach68b0fb02017-02-28 15:15:56 -05001503
Florin Coras93992a92017-05-24 18:03:56 -07001504 /*
1505 * Since this was a partial ack, try to retransmit some more data
1506 */
Florin Corasbe72ae62018-11-01 11:23:03 -07001507 tcp_program_fastretransmit (tcp_get_worker (tc->c_thread_index), tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001508}
1509
Florin Coras93992a92017-05-24 18:03:56 -07001510/**
1511 * Process incoming ACK
1512 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001513static int
Florin Coras9ece3c02018-11-05 11:06:53 -08001514tcp_rcv_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
Florin Coras7ac053b2018-11-05 15:57:21 -08001515 tcp_header_t * th, u32 * error)
Dave Barach68b0fb02017-02-28 15:15:56 -05001516{
Florin Coras93992a92017-05-24 18:03:56 -07001517 u32 prev_snd_wnd, prev_snd_una;
1518 u8 is_dack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001519
Florin Corasf03a59a2017-06-09 21:07:32 -07001520 TCP_EVT_DBG (TCP_EVT_CC_STAT, tc);
1521
Florin Coras6792ec02017-03-13 03:49:51 -07001522 /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
Florin Coras93992a92017-05-24 18:03:56 -07001523 if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001524 {
Florin Corasca1c8f32018-05-23 21:01:30 -07001525 /* When we entered recovery, we reset snd_nxt to snd_una. Seems peer
1526 * still has the data so accept the ack */
1527 if (tcp_in_recovery (tc)
Florin Coras3ec66b02018-08-23 16:27:05 -07001528 && seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_congestion))
Florin Corasca1c8f32018-05-23 21:01:30 -07001529 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001530 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
1531 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
1532 tc->snd_una_max = tc->snd_nxt;
Florin Corasca1c8f32018-05-23 21:01:30 -07001533 goto process_ack;
1534 }
1535
Florin Coras6792ec02017-03-13 03:49:51 -07001536 /* If we have outstanding data and this is within the window, accept it,
1537 * probably retransmit has timed out. Otherwise ACK segment and then
1538 * drop it */
1539 if (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max))
1540 {
Florin Coras7ac053b2018-11-05 15:57:21 -08001541 tcp_program_ack (wrk, tc);
Florin Coras36ee9f12018-11-02 12:52:10 -07001542 *error = TCP_ERROR_ACK_FUTURE;
Florin Coras6792ec02017-03-13 03:49:51 -07001543 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 0,
1544 vnet_buffer (b)->tcp.ack_number);
1545 return -1;
1546 }
1547
Florin Coras6792ec02017-03-13 03:49:51 -07001548 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 2,
1549 vnet_buffer (b)->tcp.ack_number);
Florin Coras3e350af2017-03-30 02:54:28 -07001550
1551 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
Dave Barach68b0fb02017-02-28 15:15:56 -05001552 }
1553
Florin Coras6792ec02017-03-13 03:49:51 -07001554 /* If old ACK, probably it's an old dupack */
Florin Coras93992a92017-05-24 18:03:56 -07001555 if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001556 {
1557 *error = TCP_ERROR_ACK_OLD;
Florin Coras6792ec02017-03-13 03:49:51 -07001558 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 1,
1559 vnet_buffer (b)->tcp.ack_number);
1560 if (tcp_in_fastrecovery (tc) && tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
Florin Corasca1c8f32018-05-23 21:01:30 -07001561 tcp_cc_handle_event (tc, 1);
Florin Corasc28764f2017-04-26 00:08:42 -07001562 /* Don't drop yet */
1563 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001564 }
1565
Florin Coras93992a92017-05-24 18:03:56 -07001566 /*
1567 * Looks okay, process feedback
1568 */
Florin Corasca1c8f32018-05-23 21:01:30 -07001569process_ack:
Florin Coras93992a92017-05-24 18:03:56 -07001570 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001571 tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1572
Florin Coras93992a92017-05-24 18:03:56 -07001573 prev_snd_wnd = tc->snd_wnd;
1574 prev_snd_una = tc->snd_una;
1575 tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1576 vnet_buffer (b)->tcp.ack_number,
1577 clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1578 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
1579 tc->snd_una = vnet_buffer (b)->tcp.ack_number + tc->sack_sb.snd_una_adv;
1580 tcp_validate_txf_size (tc, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001581
Florin Coras93992a92017-05-24 18:03:56 -07001582 if (tc->bytes_acked)
Florin Coras9ece3c02018-11-05 11:06:53 -08001583 {
1584 tcp_program_dequeue (wrk, tc);
1585 tcp_update_rtt (tc, vnet_buffer (b)->tcp.ack_number);
1586 }
Florin Coras93992a92017-05-24 18:03:56 -07001587
Florin Coras6534b7a2017-07-18 05:38:03 -04001588 TCP_EVT_DBG (TCP_EVT_ACK_RCVD, tc);
1589
Florin Coras93992a92017-05-24 18:03:56 -07001590 /*
1591 * Check if we have congestion event
1592 */
1593
1594 if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001595 {
Florin Coras93992a92017-05-24 18:03:56 -07001596 tcp_cc_handle_event (tc, is_dack);
Florin Corasb2215d62017-08-01 16:56:58 -07001597 if (!tcp_in_cong_recovery (tc))
Florin Corasa9d5bea2018-12-17 08:24:19 -08001598 {
1599 *error = TCP_ERROR_ACK_OK;
1600 return 0;
1601 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001602 *error = TCP_ERROR_ACK_DUP;
Florin Corasca09d072018-10-01 18:31:02 -07001603 if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th))
1604 return 0;
1605 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001606 }
1607
Florin Coras6792ec02017-03-13 03:49:51 -07001608 /*
Florin Coras93992a92017-05-24 18:03:56 -07001609 * Update congestion control (slow start/congestion avoidance)
Florin Coras6792ec02017-03-13 03:49:51 -07001610 */
Florin Coras93992a92017-05-24 18:03:56 -07001611 tcp_cc_update (tc, b);
Florin Coras00cd22d2018-04-18 13:20:18 -07001612 *error = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001613 return 0;
1614}
1615
Florin Corasb11175d2018-11-09 14:34:08 -08001616static void
1617tcp_program_disconnect (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1618{
1619 if (!tcp_disconnect_pending (tc))
1620 {
1621 vec_add1 (wrk->pending_disconnects, tc->c_c_index);
1622 tcp_disconnect_pending_on (tc);
1623 }
1624}
1625
1626static void
1627tcp_handle_disconnects (tcp_worker_ctx_t * wrk)
1628{
1629 u32 thread_index, *pending_disconnects;
1630 tcp_connection_t *tc;
1631 int i;
1632
1633 if (!vec_len (wrk->pending_disconnects))
1634 return;
1635
1636 thread_index = wrk->vm->thread_index;
1637 pending_disconnects = wrk->pending_disconnects;
1638 for (i = 0; i < vec_len (pending_disconnects); i++)
1639 {
1640 tc = tcp_connection_get (pending_disconnects[i], thread_index);
1641 tcp_disconnect_pending_off (tc);
Florin Coras5a2ec8f2018-12-27 11:53:11 -08001642 session_transport_closing_notify (&tc->connection);
Florin Corasb11175d2018-11-09 14:34:08 -08001643 }
1644 _vec_len (wrk->pending_disconnects) = 0;
1645}
1646
1647static void
1648tcp_rcv_fin (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
1649 u32 * error)
1650{
Florin Coras3c514d52018-12-22 11:39:33 -08001651 /* Account for the FIN and send ack */
1652 tc->rcv_nxt += 1;
1653 tcp_program_ack (wrk, tc);
Florin Corasb11175d2018-11-09 14:34:08 -08001654 /* Enter CLOSE-WAIT and notify session. To avoid lingering
1655 * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
Florin Coras3c514d52018-12-22 11:39:33 -08001656 tcp_connection_set_state (tc, TCP_STATE_CLOSE_WAIT);
Florin Corasb11175d2018-11-09 14:34:08 -08001657 tcp_program_disconnect (wrk, tc);
1658 tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
1659 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc);
1660 *error = TCP_ERROR_FIN_RCVD;
1661}
1662
Florin Coras3eb50622017-07-13 01:24:57 -04001663static u8
1664tcp_sack_vector_is_sane (sack_block_t * sacks)
1665{
1666 int i;
1667 for (i = 1; i < vec_len (sacks); i++)
1668 {
1669 if (sacks[i - 1].end == sacks[i].start)
1670 return 0;
1671 }
1672 return 1;
1673}
1674
Dave Barach68b0fb02017-02-28 15:15:56 -05001675/**
1676 * Build SACK list as per RFC2018.
1677 *
1678 * Makes sure the first block contains the segment that generated the current
1679 * ACK and the following ones are the ones most recently reported in SACK
1680 * blocks.
1681 *
1682 * @param tc TCP connection for which the SACK list is updated
1683 * @param start Start sequence number of the newest SACK block
1684 * @param end End sequence of the newest SACK block
1685 */
Florin Coras45d34962017-04-25 00:05:27 -07001686void
Dave Barach68b0fb02017-02-28 15:15:56 -05001687tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1688{
Florin Coras45d34962017-04-25 00:05:27 -07001689 sack_block_t *new_list = 0, *block = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001690 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001691
1692 /* If the first segment is ooo add it to the list. Last write might've moved
1693 * rcv_nxt over the first segment. */
1694 if (seq_lt (tc->rcv_nxt, start))
1695 {
Florin Coras45d34962017-04-25 00:05:27 -07001696 vec_add2 (new_list, block, 1);
1697 block->start = start;
1698 block->end = end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001699 }
1700
1701 /* Find the blocks still worth keeping. */
1702 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1703 {
Florin Coras45d34962017-04-25 00:05:27 -07001704 /* Discard if rcv_nxt advanced beyond current block */
1705 if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001706 continue;
1707
Florin Coras45d34962017-04-25 00:05:27 -07001708 /* Merge or drop if segment overlapped by the new segment */
1709 if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1710 && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1711 {
1712 if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1713 new_list[0].start = tc->snd_sacks[i].start;
1714 if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1715 new_list[0].end = tc->snd_sacks[i].end;
1716 continue;
1717 }
1718
1719 /* Save to new SACK list if we have space. */
1720 if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
1721 {
1722 vec_add1 (new_list, tc->snd_sacks[i]);
1723 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001724 else
1725 {
1726 clib_warning ("sack discarded");
1727 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001728 }
1729
Florin Coras45d34962017-04-25 00:05:27 -07001730 ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
Florin Coras6792ec02017-03-13 03:49:51 -07001731
Dave Barach68b0fb02017-02-28 15:15:56 -05001732 /* Replace old vector with new one */
1733 vec_free (tc->snd_sacks);
1734 tc->snd_sacks = new_list;
Florin Coras3eb50622017-07-13 01:24:57 -04001735
1736 /* Segments should not 'touch' */
1737 ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
Dave Barach68b0fb02017-02-28 15:15:56 -05001738}
1739
Florin Corasca1c8f32018-05-23 21:01:30 -07001740u32
1741tcp_sack_list_bytes (tcp_connection_t * tc)
1742{
1743 u32 bytes = 0, i;
1744 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1745 bytes += tc->snd_sacks[i].end - tc->snd_sacks[i].start;
1746 return bytes;
1747}
1748
Dave Barach68b0fb02017-02-28 15:15:56 -05001749/** Enqueue data for delivery to application */
Florin Coras0dbd5172018-06-25 16:19:34 -07001750static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001751tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1752 u16 data_len)
1753{
Florin Coras1f152cd2017-08-18 19:28:03 -07001754 int written, error = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001755
Dave Barach2c25a622017-06-26 11:35:07 -04001756 ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001757 ASSERT (data_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001758 written = session_enqueue_stream_connection (&tc->connection, b, 0,
1759 1 /* queue event */ , 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001760
Florin Coras6792ec02017-03-13 03:49:51 -07001761 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 0, data_len, written);
1762
Dave Barach68b0fb02017-02-28 15:15:56 -05001763 /* Update rcv_nxt */
1764 if (PREDICT_TRUE (written == data_len))
1765 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001766 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001767 }
1768 /* If more data written than expected, account for out-of-order bytes. */
1769 else if (written > data_len)
1770 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001771 tc->rcv_nxt += written;
Florin Corasca1c8f32018-05-23 21:01:30 -07001772 TCP_EVT_DBG (TCP_EVT_CC_INPUT, tc, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001773 }
1774 else if (written > 0)
1775 {
1776 /* We've written something but FIFO is probably full now */
1777 tc->rcv_nxt += written;
Florin Coras1f152cd2017-08-18 19:28:03 -07001778 error = TCP_ERROR_PARTIALLY_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001779 }
1780 else
1781 {
Dave Barach68b0fb02017-02-28 15:15:56 -05001782 return TCP_ERROR_FIFO_FULL;
1783 }
1784
Florin Coras6792ec02017-03-13 03:49:51 -07001785 /* Update SACK list if need be */
Florin Coras93992a92017-05-24 18:03:56 -07001786 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras6792ec02017-03-13 03:49:51 -07001787 {
1788 /* Remove SACK blocks that have been delivered */
1789 tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1790 }
1791
Florin Coras1f152cd2017-08-18 19:28:03 -07001792 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -05001793}
1794
1795/** Enqueue out-of-order data */
Florin Coras0dbd5172018-06-25 16:19:34 -07001796static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001797tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1798 u16 data_len)
1799{
1800 stream_session_t *s0;
Florin Coras3eb50622017-07-13 01:24:57 -04001801 int rv, offset;
Florin Coras6792ec02017-03-13 03:49:51 -07001802
Florin Corasf03a59a2017-06-09 21:07:32 -07001803 ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001804 ASSERT (data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001805
Florin Corasf03a59a2017-06-09 21:07:32 -07001806 /* Enqueue out-of-order data with relative offset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07001807 rv = session_enqueue_stream_connection (&tc->connection, b,
1808 vnet_buffer (b)->tcp.seq_number -
1809 tc->rcv_nxt, 0 /* queue event */ ,
1810 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001811
1812 /* Nothing written */
1813 if (rv)
1814 {
1815 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, 0);
1816 return TCP_ERROR_FIFO_FULL;
1817 }
1818
1819 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001820
1821 /* Update SACK list if in use */
Florin Coras93992a92017-05-24 18:03:56 -07001822 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001823 {
1824 ooo_segment_t *newest;
1825 u32 start, end;
1826
Florin Corascea194d2017-10-02 00:18:51 -07001827 s0 = session_get (tc->c_s_index, tc->c_thread_index);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001828
Dave Barach68b0fb02017-02-28 15:15:56 -05001829 /* Get the newest segment from the fifo */
1830 newest = svm_fifo_newest_ooo_segment (s0->server_rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001831 if (newest)
1832 {
Florin Coras3eb50622017-07-13 01:24:57 -04001833 offset = ooo_segment_offset (s0->server_rx_fifo, newest);
1834 ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1835 start = tc->rcv_nxt + offset;
Florin Corasf03a59a2017-06-09 21:07:32 -07001836 end = start + ooo_segment_length (s0->server_rx_fifo, newest);
1837 tcp_update_sack_list (tc, start, end);
Florin Coras3eb50622017-07-13 01:24:57 -04001838 svm_fifo_newest_ooo_segment_reset (s0->server_rx_fifo);
Florin Corasca1c8f32018-05-23 21:01:30 -07001839 TCP_EVT_DBG (TCP_EVT_CC_SACKS, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001840 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001841 }
1842
Florin Coras00cd22d2018-04-18 13:20:18 -07001843 return TCP_ERROR_ENQUEUED_OOO;
Dave Barach68b0fb02017-02-28 15:15:56 -05001844}
1845
1846/**
Florin Coras6792ec02017-03-13 03:49:51 -07001847 * Check if ACK could be delayed. If ack can be delayed, it should return
1848 * true for a full frame. If we're always acking return 0.
Dave Barach68b0fb02017-02-28 15:15:56 -05001849 */
1850always_inline int
1851tcp_can_delack (tcp_connection_t * tc)
1852{
Florin Coras6792ec02017-03-13 03:49:51 -07001853 /* Send ack if ... */
1854 if (TCP_ALWAYS_ACK
1855 /* just sent a rcv wnd 0 */
1856 || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0
1857 /* constrained to send ack */
1858 || (tc->flags & TCP_CONN_SNDACK) != 0
1859 /* we're almost out of tx wnd */
Florin Corasca1c8f32018-05-23 21:01:30 -07001860 || tcp_available_cc_snd_space (tc) < 4 * tc->snd_mss)
Florin Coras6792ec02017-03-13 03:49:51 -07001861 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001862
Florin Coras6792ec02017-03-13 03:49:51 -07001863 return 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001864}
1865
1866static int
Florin Corasb2215d62017-08-01 16:56:58 -07001867tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
1868{
Florin Coras1f152cd2017-08-18 19:28:03 -07001869 u32 discard, first = b->current_length;
Florin Corasb2215d62017-08-01 16:56:58 -07001870 vlib_main_t *vm = vlib_get_main ();
1871
Florin Coras1f152cd2017-08-18 19:28:03 -07001872 /* Handle multi-buffer segments */
Florin Corasb2215d62017-08-01 16:56:58 -07001873 if (n_bytes_to_drop > b->current_length)
1874 {
1875 if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1876 return -1;
1877 do
1878 {
1879 discard = clib_min (n_bytes_to_drop, b->current_length);
1880 vlib_buffer_advance (b, discard);
1881 b = vlib_get_buffer (vm, b->next_buffer);
1882 n_bytes_to_drop -= discard;
1883 }
1884 while (n_bytes_to_drop);
Florin Coras1f152cd2017-08-18 19:28:03 -07001885 if (n_bytes_to_drop > first)
1886 b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
Florin Corasb2215d62017-08-01 16:56:58 -07001887 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001888 else
1889 vlib_buffer_advance (b, n_bytes_to_drop);
1890 vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
Florin Corasb2215d62017-08-01 16:56:58 -07001891 return 0;
1892}
1893
Florin Coras00cd22d2018-04-18 13:20:18 -07001894/**
1895 * Receive buffer for connection and handle acks
1896 *
1897 * It handles both in order or out-of-order data.
1898 */
Florin Corasb2215d62017-08-01 16:56:58 -07001899static int
Florin Coras7ac053b2018-11-05 15:57:21 -08001900tcp_segment_rcv (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1901 vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001902{
Florin Coras00cd22d2018-04-18 13:20:18 -07001903 u32 error, n_bytes_to_drop, n_data_bytes;
Florin Coras6534b7a2017-07-18 05:38:03 -04001904
1905 vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1906 n_data_bytes = vnet_buffer (b)->tcp.data_len;
1907 ASSERT (n_data_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001908
1909 /* Handle out-of-order data */
1910 if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1911 {
Florin Coras6792ec02017-03-13 03:49:51 -07001912 /* Old sequence numbers allowed through because they overlapped
1913 * the rx window */
1914 if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001915 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001916 /* Completely in the past (possible retransmit). Ack
1917 * retransmissions since we may not have any data to send */
Florin Corasf03a59a2017-06-09 21:07:32 -07001918 if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
Florin Coras6534b7a2017-07-18 05:38:03 -04001919 {
Florin Coras7ac053b2018-11-05 15:57:21 -08001920 tcp_program_ack (wrk, tc);
Florin Coras00cd22d2018-04-18 13:20:18 -07001921 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras6534b7a2017-07-18 05:38:03 -04001922 goto done;
1923 }
Dave Barach259cdae2017-05-15 16:27:05 -04001924
Florin Coras00cd22d2018-04-18 13:20:18 -07001925 /* Chop off the bytes in the past and see if what is left
1926 * can be enqueued in order */
Florin Corasdb84e572017-05-09 18:54:52 -07001927 n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1928 n_data_bytes -= n_bytes_to_drop;
Dave Barach2c25a622017-06-26 11:35:07 -04001929 vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001930 if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
Florin Coras00cd22d2018-04-18 13:20:18 -07001931 {
1932 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras00cd22d2018-04-18 13:20:18 -07001933 goto done;
1934 }
Florin Corasdb84e572017-05-09 18:54:52 -07001935 goto in_order;
Dave Barach68b0fb02017-02-28 15:15:56 -05001936 }
1937
Florin Coras00cd22d2018-04-18 13:20:18 -07001938 /* RFC2581: Enqueue and send DUPACK for fast retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001939 error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
Florin Coras7ac053b2018-11-05 15:57:21 -08001940 tcp_program_dupack (wrk, tc);
Florin Corasca1c8f32018-05-23 21:01:30 -07001941 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
Dave Barach68b0fb02017-02-28 15:15:56 -05001942 goto done;
1943 }
1944
Florin Corasdb84e572017-05-09 18:54:52 -07001945in_order:
1946
Dave Barach68b0fb02017-02-28 15:15:56 -05001947 /* In order data, enqueue. Fifo figures out by itself if any out-of-order
1948 * segments can be enqueued after fifo tail offset changes. */
1949 error = tcp_session_enqueue_data (tc, b, n_data_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001950 if (tcp_can_delack (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001951 {
Florin Coras6792ec02017-03-13 03:49:51 -07001952 if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
1953 tcp_timer_set (tc, TCP_TIMER_DELACK, TCP_DELACK_TIME);
Florin Coras3e350af2017-03-30 02:54:28 -07001954 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001955 }
1956
Florin Coras7ac053b2018-11-05 15:57:21 -08001957 tcp_program_ack (wrk, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001958
Dave Barach68b0fb02017-02-28 15:15:56 -05001959done:
1960 return error;
1961}
1962
Clement Durand6cf260c2017-04-13 13:27:04 +02001963typedef struct
1964{
1965 tcp_header_t tcp_header;
1966 tcp_connection_t tcp_connection;
1967} tcp_rx_trace_t;
1968
Florin Coras0dbd5172018-06-25 16:19:34 -07001969static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02001970format_tcp_rx_trace (u8 * s, va_list * args)
1971{
1972 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1973 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1974 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +02001975 u32 indent = format_get_indent (s);
Clement Durand6cf260c2017-04-13 13:27:04 +02001976
1977 s = format (s, "%U\n%U%U",
1978 format_tcp_header, &t->tcp_header, 128,
1979 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -07001980 format_tcp_connection, &t->tcp_connection, 1);
Clement Durand6cf260c2017-04-13 13:27:04 +02001981
1982 return s;
1983}
1984
Florin Coras0dbd5172018-06-25 16:19:34 -07001985static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02001986format_tcp_rx_trace_short (u8 * s, va_list * args)
1987{
1988 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1989 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1990 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
1991
1992 s = format (s, "%d -> %d (%U)",
Florin Coras4df38712018-06-20 12:44:16 -07001993 clib_net_to_host_u16 (t->tcp_header.dst_port),
1994 clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state,
Florin Corasbb292f42017-05-19 09:49:19 -07001995 t->tcp_connection.state);
Clement Durand6cf260c2017-04-13 13:27:04 +02001996
1997 return s;
1998}
1999
Florin Coras4df38712018-06-20 12:44:16 -07002000static void
Florin Coras82b13a82017-04-25 11:58:06 -07002001tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
2002 tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
2003{
2004 if (tc0)
2005 {
Dave Barach178cf492018-11-13 16:34:13 -05002006 clib_memcpy_fast (&t0->tcp_connection, tc0,
2007 sizeof (t0->tcp_connection));
Florin Coras82b13a82017-04-25 11:58:06 -07002008 }
2009 else
2010 {
2011 th0 = tcp_buffer_hdr (b0);
2012 }
Dave Barach178cf492018-11-13 16:34:13 -05002013 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
Florin Coras82b13a82017-04-25 11:58:06 -07002014}
2015
Florin Coras4df38712018-06-20 12:44:16 -07002016static void
2017tcp_established_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2018 vlib_frame_t * frame, u8 is_ip4)
2019{
2020 u32 *from, n_left;
2021
2022 n_left = frame->n_vectors;
2023 from = vlib_frame_vector_args (frame);
2024
2025 while (n_left >= 1)
2026 {
2027 tcp_connection_t *tc0;
2028 tcp_rx_trace_t *t0;
2029 tcp_header_t *th0;
2030 vlib_buffer_t *b0;
2031 u32 bi0;
2032
2033 bi0 = from[0];
2034 b0 = vlib_get_buffer (vm, bi0);
2035
2036 if (b0->flags & VLIB_BUFFER_IS_TRACED)
2037 {
2038 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2039 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2040 vm->thread_index);
2041 th0 = tcp_buffer_hdr (b0);
2042 tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
2043 }
2044
2045 from += 1;
2046 n_left -= 1;
2047 }
2048}
2049
Florin Coras6792ec02017-03-13 03:49:51 -07002050always_inline void
Florin Coras00cd22d2018-04-18 13:20:18 -07002051tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
2052 u8 is_ip4, u32 evt, u32 val)
Dave Barach68b0fb02017-02-28 15:15:56 -05002053{
Florin Coras6792ec02017-03-13 03:49:51 -07002054 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -07002055 vlib_node_increment_counter (vm, tcp4_node, evt, val);
Florin Coras6792ec02017-03-13 03:49:51 -07002056 else
Florin Coras3cbc04b2017-10-02 00:18:51 -07002057 vlib_node_increment_counter (vm, tcp6_node, evt, val);
Dave Barach68b0fb02017-02-28 15:15:56 -05002058}
2059
Florin Coras00cd22d2018-04-18 13:20:18 -07002060#define tcp_maybe_inc_counter(node_id, err, count) \
2061{ \
2062 if (next0 != tcp_next_drop (is_ip4)) \
2063 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2064 tcp6_##node_id##_node.index, is_ip4, err, \
2065 1); \
2066}
2067#define tcp_inc_counter(node_id, err, count) \
2068 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2069 tcp6_##node_id##_node.index, is_ip4, \
2070 err, count)
2071#define tcp_maybe_inc_err_counter(cnts, err) \
2072{ \
2073 cnts[err] += (next0 != tcp_next_drop (is_ip4)); \
2074}
2075#define tcp_inc_err_counter(cnts, err, val) \
2076{ \
2077 cnts[err] += val; \
2078}
2079#define tcp_store_err_counters(node_id, cnts) \
2080{ \
2081 int i; \
2082 for (i = 0; i < TCP_N_ERROR; i++) \
2083 if (cnts[i]) \
2084 tcp_inc_counter(node_id, i, cnts[i]); \
2085}
2086
2087
Dave Barach68b0fb02017-02-28 15:15:56 -05002088always_inline uword
2089tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07002090 vlib_frame_t * frame, int is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05002091{
Florin Coras4df38712018-06-20 12:44:16 -07002092 u32 thread_index = vm->thread_index, errors = 0;
Florin Coras9ece3c02018-11-05 11:06:53 -08002093 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08002094 u32 n_left_from, *from, *first_buffer;
Florin Coras00cd22d2018-04-18 13:20:18 -07002095 u16 err_counters[TCP_N_ERROR] = { 0 };
Dave Barach68b0fb02017-02-28 15:15:56 -05002096
Florin Coras4df38712018-06-20 12:44:16 -07002097 if (node->flags & VLIB_NODE_FLAG_TRACE)
2098 tcp_established_trace_frame (vm, node, frame, is_ip4);
2099
Florin Coras7ac053b2018-11-05 15:57:21 -08002100 first_buffer = from = vlib_frame_vector_args (frame);
Florin Coras4df38712018-06-20 12:44:16 -07002101 n_left_from = frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002102
2103 while (n_left_from > 0)
2104 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002105 u32 bi0, error0 = TCP_ERROR_ACK_OK;
2106 vlib_buffer_t *b0;
Florin Coras3c514d52018-12-22 11:39:33 -08002107 tcp_header_t *th0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002108 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002109
Florin Coras7ac053b2018-11-05 15:57:21 -08002110 if (n_left_from > 1)
Dave Barach68b0fb02017-02-28 15:15:56 -05002111 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002112 vlib_buffer_t *pb;
2113 pb = vlib_get_buffer (vm, from[1]);
2114 vlib_prefetch_buffer_header (pb, LOAD);
2115 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
Dave Barach68b0fb02017-02-28 15:15:56 -05002116 }
2117
Florin Coras7ac053b2018-11-05 15:57:21 -08002118 bi0 = from[0];
2119 from += 1;
2120 n_left_from -= 1;
2121
2122 b0 = vlib_get_buffer (vm, bi0);
2123 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2124 thread_index);
2125
2126 if (PREDICT_FALSE (tc0 == 0))
2127 {
2128 error0 = TCP_ERROR_INVALID_CONNECTION;
2129 goto done;
2130 }
2131
2132 th0 = tcp_buffer_hdr (b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002133
2134 /* TODO header prediction fast path */
2135
2136 /* 1-4: check SEQ, RST, SYN */
2137 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, th0, &error0)))
2138 {
2139 TCP_EVT_DBG (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp);
2140 goto done;
2141 }
2142
2143 /* 5: check the ACK field */
2144 if (PREDICT_FALSE (tcp_rcv_ack (wrk, tc0, b0, th0, &error0)))
2145 goto done;
2146
2147 /* 6: check the URG bit TODO */
2148
2149 /* 7: process the segment text */
2150 if (vnet_buffer (b0)->tcp.data_len)
2151 error0 = tcp_segment_rcv (wrk, tc0, b0);
2152
2153 /* 8: check the FIN bit */
Florin Coras3c514d52018-12-22 11:39:33 -08002154 if (PREDICT_FALSE (tcp_is_fin (th0)))
Florin Corasb11175d2018-11-09 14:34:08 -08002155 tcp_rcv_fin (wrk, tc0, b0, &error0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002156
2157 done:
2158 tcp_inc_err_counter (err_counters, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002159 }
2160
Florin Coras3cbc04b2017-10-02 00:18:51 -07002161 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
Florin Coras4df38712018-06-20 12:44:16 -07002162 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002163 err_counters[TCP_ERROR_MSG_QUEUE_FULL] = errors;
Florin Coras00cd22d2018-04-18 13:20:18 -07002164 tcp_store_err_counters (established, err_counters);
Florin Coras9ece3c02018-11-05 11:06:53 -08002165 tcp_handle_postponed_dequeues (wrk);
Florin Corasb11175d2018-11-09 14:34:08 -08002166 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08002167 vlib_buffer_free (vm, first_buffer, frame->n_vectors);
Florin Coras4df38712018-06-20 12:44:16 -07002168
2169 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002170}
2171
2172static uword
2173tcp4_established (vlib_main_t * vm, vlib_node_runtime_t * node,
2174 vlib_frame_t * from_frame)
2175{
2176 return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2177}
2178
2179static uword
2180tcp6_established (vlib_main_t * vm, vlib_node_runtime_t * node,
2181 vlib_frame_t * from_frame)
2182{
2183 return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2184}
2185
2186/* *INDENT-OFF* */
2187VLIB_REGISTER_NODE (tcp4_established_node) =
2188{
2189 .function = tcp4_established,
2190 .name = "tcp4-established",
2191 /* Takes a vector of packets. */
2192 .vector_size = sizeof (u32),
Florin Corase69f4952017-03-07 10:06:24 -08002193 .n_errors = TCP_N_ERROR,
2194 .error_strings = tcp_error_strings,
Dave Barach68b0fb02017-02-28 15:15:56 -05002195 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2196 .next_nodes =
2197 {
2198#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2199 foreach_tcp_state_next
2200#undef _
2201 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002202 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002203};
2204/* *INDENT-ON* */
2205
2206VLIB_NODE_FUNCTION_MULTIARCH (tcp4_established_node, tcp4_established);
2207
2208/* *INDENT-OFF* */
2209VLIB_REGISTER_NODE (tcp6_established_node) =
2210{
2211 .function = tcp6_established,
2212 .name = "tcp6-established",
2213 /* Takes a vector of packets. */
2214 .vector_size = sizeof (u32),
2215 .n_errors = TCP_N_ERROR,
2216 .error_strings = tcp_error_strings,
2217 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2218 .next_nodes =
2219 {
2220#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2221 foreach_tcp_state_next
2222#undef _
2223 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002224 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002225};
2226/* *INDENT-ON* */
2227
2228
2229VLIB_NODE_FUNCTION_MULTIARCH (tcp6_established_node, tcp6_established);
2230
2231vlib_node_registration_t tcp4_syn_sent_node;
2232vlib_node_registration_t tcp6_syn_sent_node;
2233
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002234static u8
2235tcp_lookup_is_valid (tcp_connection_t * tc, tcp_header_t * hdr)
2236{
Florin Corascea194d2017-10-02 00:18:51 -07002237 transport_connection_t *tmp = 0;
2238 u64 handle;
2239
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002240 if (!tc)
2241 return 1;
2242
Florin Coras70131132017-11-27 02:43:30 -08002243 /* Proxy case */
2244 if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
2245 return 1;
2246
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002247 u8 is_valid = (tc->c_lcl_port == hdr->dst_port
2248 && (tc->state == TCP_STATE_LISTEN
2249 || tc->c_rmt_port == hdr->src_port));
2250
2251 if (!is_valid)
2252 {
Florin Corascea194d2017-10-02 00:18:51 -07002253 handle = session_lookup_half_open_handle (&tc->connection);
2254 tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
Florin Coras3cbc04b2017-10-02 00:18:51 -07002255 tc->c_proto, tc->c_is_ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002256
2257 if (tmp)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002258 {
2259 if (tmp->lcl_port == hdr->dst_port
2260 && tmp->rmt_port == hdr->src_port)
2261 {
Florin Corascea194d2017-10-02 00:18:51 -07002262 TCP_DBG ("half-open is valid!");
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002263 }
2264 }
2265 }
2266 return is_valid;
2267}
2268
2269/**
2270 * Lookup transport connection
2271 */
2272static tcp_connection_t *
Florin Corascea194d2017-10-02 00:18:51 -07002273tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
2274 u8 is_ip4)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002275{
2276 tcp_header_t *tcp;
2277 transport_connection_t *tconn;
2278 tcp_connection_t *tc;
Florin Corasdff48db2017-11-19 18:06:58 -08002279 u8 is_filtered = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002280 if (is_ip4)
2281 {
2282 ip4_header_t *ip4;
2283 ip4 = vlib_buffer_get_current (b);
2284 tcp = ip4_next_header (ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002285 tconn = session_lookup_connection_wt4 (fib_index,
2286 &ip4->dst_address,
2287 &ip4->src_address,
2288 tcp->dst_port,
2289 tcp->src_port,
2290 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002291 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002292 tc = tcp_get_connection_from_transport (tconn);
2293 ASSERT (tcp_lookup_is_valid (tc, tcp));
2294 }
2295 else
2296 {
2297 ip6_header_t *ip6;
2298 ip6 = vlib_buffer_get_current (b);
2299 tcp = ip6_next_header (ip6);
Florin Corascea194d2017-10-02 00:18:51 -07002300 tconn = session_lookup_connection_wt6 (fib_index,
2301 &ip6->dst_address,
2302 &ip6->src_address,
2303 tcp->dst_port,
2304 tcp->src_port,
2305 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002306 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002307 tc = tcp_get_connection_from_transport (tconn);
2308 ASSERT (tcp_lookup_is_valid (tc, tcp));
2309 }
2310 return tc;
2311}
2312
Dave Barach68b0fb02017-02-28 15:15:56 -05002313always_inline uword
2314tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2315 vlib_frame_t * from_frame, int is_ip4)
2316{
2317 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras7ac053b2018-11-05 15:57:21 -08002318 u32 n_left_from, *from, *first_buffer, errors = 0;
2319 u32 my_thread_index = vm->thread_index;
2320 tcp_worker_ctx_t *wrk = tcp_get_worker (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05002321
Florin Coras7ac053b2018-11-05 15:57:21 -08002322 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002323 n_left_from = from_frame->n_vectors;
2324
Dave Barach68b0fb02017-02-28 15:15:56 -05002325 while (n_left_from > 0)
2326 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002327 u32 bi0, ack0, seq0, error0 = TCP_ERROR_NONE;
2328 tcp_connection_t *tc0, *new_tc0;
2329 tcp_header_t *tcp0 = 0;
2330 tcp_rx_trace_t *t0;
2331 vlib_buffer_t *b0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002332
Florin Coras7ac053b2018-11-05 15:57:21 -08002333 bi0 = from[0];
2334 from += 1;
2335 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002336
Florin Coras7ac053b2018-11-05 15:57:21 -08002337 b0 = vlib_get_buffer (vm, bi0);
2338 tc0 =
2339 tcp_half_open_connection_get (vnet_buffer (b0)->tcp.connection_index);
2340 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002341 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002342 error0 = TCP_ERROR_INVALID_CONNECTION;
2343 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002344 }
2345
Florin Coras7ac053b2018-11-05 15:57:21 -08002346 /* Half-open completed recently but the connection was't removed
2347 * yet by the owning thread */
2348 if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2349 {
2350 /* Make sure the connection actually exists */
2351 ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2352 my_thread_index, is_ip4));
2353 goto drop;
2354 }
2355
2356 ack0 = vnet_buffer (b0)->tcp.ack_number;
2357 seq0 = vnet_buffer (b0)->tcp.seq_number;
2358 tcp0 = tcp_buffer_hdr (b0);
2359
2360 /* Crude check to see if the connection handle does not match
2361 * the packet. Probably connection just switched to established */
2362 if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2363 || tcp0->src_port != tc0->c_rmt_port))
2364 {
2365 error0 = TCP_ERROR_INVALID_CONNECTION;
2366 goto drop;
2367 }
2368
2369 if (PREDICT_FALSE (!tcp_ack (tcp0) && !tcp_rst (tcp0)
2370 && !tcp_syn (tcp0)))
2371 {
2372 error0 = TCP_ERROR_SEGMENT_INVALID;
2373 goto drop;
2374 }
2375
Florin Coras3c514d52018-12-22 11:39:33 -08002376 /* SYNs consume sequence numbers */
2377 vnet_buffer (b0)->tcp.seq_end += tcp_is_syn (tcp0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002378
2379 /*
2380 * 1. check the ACK bit
2381 */
2382
2383 /*
2384 * If the ACK bit is set
2385 * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2386 * the RST bit is set, if so drop the segment and return)
2387 * <SEQ=SEG.ACK><CTL=RST>
2388 * and discard the segment. Return.
2389 * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2390 */
2391 if (tcp_ack (tcp0))
2392 {
2393 if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
2394 {
2395 if (!tcp_rst (tcp0))
2396 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
2397 error0 = TCP_ERROR_RCV_WND;
2398 goto drop;
2399 }
2400
2401 /* Make sure ACK is valid */
2402 if (seq_gt (tc0->snd_una, ack0))
2403 {
2404 error0 = TCP_ERROR_ACK_INVALID;
2405 goto drop;
2406 }
2407 }
2408
2409 /*
2410 * 2. check the RST bit
2411 */
2412
2413 if (tcp_rst (tcp0))
2414 {
2415 /* If ACK is acceptable, signal client that peer is not
2416 * willing to accept connection and drop connection*/
2417 if (tcp_ack (tcp0))
2418 tcp_connection_reset (tc0);
2419 error0 = TCP_ERROR_RST_RCVD;
2420 goto drop;
2421 }
2422
2423 /*
2424 * 3. check the security and precedence (skipped)
2425 */
2426
2427 /*
2428 * 4. check the SYN bit
2429 */
2430
2431 /* No SYN flag. Drop. */
2432 if (!tcp_syn (tcp0))
2433 {
2434 clib_warning ("not synack");
2435 error0 = TCP_ERROR_SEGMENT_INVALID;
2436 goto drop;
2437 }
2438
2439 /* Parse options */
Florin Coras80231112018-12-05 15:59:31 -08002440 if (tcp_options_parse (tcp0, &tc0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08002441 {
2442 clib_warning ("options parse fail");
2443 error0 = TCP_ERROR_OPTIONS;
2444 goto drop;
2445 }
2446
2447 /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2448 * current thread pool. */
2449 pool_get (tm->connections[my_thread_index], new_tc0);
Dave Barach178cf492018-11-13 16:34:13 -05002450 clib_memcpy_fast (new_tc0, tc0, sizeof (*new_tc0));
Florin Coras7ac053b2018-11-05 15:57:21 -08002451 new_tc0->c_c_index = new_tc0 - tm->connections[my_thread_index];
2452 new_tc0->c_thread_index = my_thread_index;
2453 new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2454 new_tc0->irs = seq0;
Florin Coras85a3ddd2018-12-24 16:54:34 -08002455 new_tc0->timers[TCP_TIMER_ESTABLISH_AO] = TCP_TIMER_HANDLE_INVALID;
Florin Coras7ac053b2018-11-05 15:57:21 -08002456 new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
2457 new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
2458
2459 /* If this is not the owning thread, wait for syn retransmit to
2460 * expire and cleanup then */
2461 if (tcp_half_open_connection_cleanup (tc0))
2462 tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
2463
2464 if (tcp_opts_tstamp (&new_tc0->rcv_opts))
2465 {
2466 new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
2467 new_tc0->tsval_recent_age = tcp_time_now ();
2468 }
2469
2470 if (tcp_opts_wscale (&new_tc0->rcv_opts))
2471 new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
Florin Corase80b5912018-12-12 19:25:43 -08002472 else
2473 new_tc0->rcv_wscale = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002474
2475 new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2476 << new_tc0->snd_wscale;
2477 new_tc0->snd_wl1 = seq0;
2478 new_tc0->snd_wl2 = ack0;
2479
2480 tcp_connection_init_vars (new_tc0);
2481
2482 /* SYN-ACK: See if we can switch to ESTABLISHED state */
2483 if (PREDICT_TRUE (tcp_ack (tcp0)))
2484 {
2485 /* Our SYN is ACKed: we have iss < ack = snd_una */
2486
2487 /* TODO Dequeue acknowledged segments if we support Fast Open */
2488 new_tc0->snd_una = ack0;
2489 new_tc0->state = TCP_STATE_ESTABLISHED;
2490
2491 /* Make sure las is initialized for the wnd computation */
2492 new_tc0->rcv_las = new_tc0->rcv_nxt;
2493
2494 /* Notify app that we have connection. If session layer can't
2495 * allocate session send reset */
2496 if (session_stream_connect_notify (&new_tc0->connection, 0))
2497 {
2498 clib_warning ("connect notify fail");
2499 tcp_send_reset_w_pkt (new_tc0, b0, is_ip4);
2500 tcp_connection_cleanup (new_tc0);
2501 goto drop;
2502 }
2503
Florin Coras2e31cc32018-09-25 14:00:34 -07002504 new_tc0->tx_fifo_size =
2505 transport_tx_fifo_size (&new_tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002506 /* Update rtt with the syn-ack sample */
Florin Corasefefc6b2018-11-07 12:49:19 -08002507 tcp_estimate_initial_rtt (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002508 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, new_tc0);
2509 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2510 }
2511 /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2512 else
2513 {
2514 new_tc0->state = TCP_STATE_SYN_RCVD;
2515
2516 /* Notify app that we have connection */
2517 if (session_stream_connect_notify (&new_tc0->connection, 0))
2518 {
2519 tcp_connection_cleanup (new_tc0);
2520 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
2521 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc0);
2522 goto drop;
2523 }
2524
Florin Coras2e31cc32018-09-25 14:00:34 -07002525 new_tc0->tx_fifo_size =
2526 transport_tx_fifo_size (&new_tc0->connection);
2527 new_tc0->rtt_ts = 0;
2528 tcp_init_snd_vars (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002529 tcp_send_synack (new_tc0);
2530 error0 = TCP_ERROR_SYNS_RCVD;
2531 goto drop;
2532 }
2533
2534 /* Read data, if any */
2535 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
2536 {
2537 clib_warning ("rcvd data in syn-sent");
2538 error0 = tcp_segment_rcv (wrk, new_tc0, b0);
2539 if (error0 == TCP_ERROR_ACK_OK)
2540 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2541 }
2542 else
2543 {
2544 tcp_program_ack (wrk, new_tc0);
2545 }
2546
2547 drop:
2548
2549 tcp_inc_counter (syn_sent, error0, 1);
2550 if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
2551 {
2552 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05002553 clib_memcpy_fast (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2554 clib_memcpy_fast (&t0->tcp_connection, tc0,
2555 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08002556 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002557 }
2558
Florin Coras3cbc04b2017-10-02 00:18:51 -07002559 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2560 my_thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002561 tcp_inc_counter (syn_sent, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras7ac053b2018-11-05 15:57:21 -08002562 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
2563
Dave Barach68b0fb02017-02-28 15:15:56 -05002564 return from_frame->n_vectors;
2565}
2566
2567static uword
2568tcp4_syn_sent (vlib_main_t * vm, vlib_node_runtime_t * node,
2569 vlib_frame_t * from_frame)
2570{
2571 return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2572}
2573
2574static uword
2575tcp6_syn_sent_rcv (vlib_main_t * vm, vlib_node_runtime_t * node,
2576 vlib_frame_t * from_frame)
2577{
2578 return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2579}
2580
2581/* *INDENT-OFF* */
2582VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2583{
2584 .function = tcp4_syn_sent,
2585 .name = "tcp4-syn-sent",
2586 /* Takes a vector of packets. */
2587 .vector_size = sizeof (u32),
2588 .n_errors = TCP_N_ERROR,
2589 .error_strings = tcp_error_strings,
2590 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2591 .next_nodes =
2592 {
2593#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2594 foreach_tcp_state_next
2595#undef _
2596 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002597 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002598};
2599/* *INDENT-ON* */
2600
2601VLIB_NODE_FUNCTION_MULTIARCH (tcp4_syn_sent_node, tcp4_syn_sent);
2602
2603/* *INDENT-OFF* */
2604VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2605{
2606 .function = tcp6_syn_sent_rcv,
2607 .name = "tcp6-syn-sent",
2608 /* Takes a vector of packets. */
2609 .vector_size = sizeof (u32),
2610 .n_errors = TCP_N_ERROR,
2611 .error_strings = tcp_error_strings,
2612 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2613 .next_nodes =
2614 {
2615#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2616 foreach_tcp_state_next
2617#undef _
Clement Durand6cf260c2017-04-13 13:27:04 +02002618 },
2619 .format_trace = format_tcp_rx_trace_short,
2620};
Dave Barach68b0fb02017-02-28 15:15:56 -05002621/* *INDENT-ON* */
2622
2623VLIB_NODE_FUNCTION_MULTIARCH (tcp6_syn_sent_node, tcp6_syn_sent_rcv);
Florin Coras6534b7a2017-07-18 05:38:03 -04002624
Florin Coras3cbc04b2017-10-02 00:18:51 -07002625vlib_node_registration_t tcp4_rcv_process_node;
2626vlib_node_registration_t tcp6_rcv_process_node;
2627
Dave Barach68b0fb02017-02-28 15:15:56 -05002628/**
Florin Corasd79b41e2017-03-04 05:37:52 -08002629 * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
Dave Barach68b0fb02017-02-28 15:15:56 -05002630 * as per RFC793 p. 64
2631 */
2632always_inline uword
2633tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2634 vlib_frame_t * from_frame, int is_ip4)
2635{
Florin Coras7ac053b2018-11-05 15:57:21 -08002636 u32 thread_index = vm->thread_index, errors = 0, *first_buffer;
2637 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras78cc4b02018-12-20 18:24:49 -08002638 u32 n_left_from, *from, max_dequeue;
Dave Barach68b0fb02017-02-28 15:15:56 -05002639
Florin Coras7ac053b2018-11-05 15:57:21 -08002640 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002641 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002642
2643 while (n_left_from > 0)
2644 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002645 u32 bi0, error0 = TCP_ERROR_NONE;
2646 tcp_header_t *tcp0 = 0;
2647 tcp_connection_t *tc0;
2648 vlib_buffer_t *b0;
2649 u8 is_fin0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002650
Florin Coras7ac053b2018-11-05 15:57:21 -08002651 bi0 = from[0];
2652 from += 1;
2653 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002654
Florin Coras7ac053b2018-11-05 15:57:21 -08002655 b0 = vlib_get_buffer (vm, bi0);
2656 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2657 thread_index);
2658 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002659 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002660 error0 = TCP_ERROR_INVALID_CONNECTION;
2661 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002662 }
2663
Florin Coras7ac053b2018-11-05 15:57:21 -08002664 tcp0 = tcp_buffer_hdr (b0);
2665 is_fin0 = tcp_is_fin (tcp0);
2666
Florin Coras7ac053b2018-11-05 15:57:21 -08002667 if (CLIB_DEBUG)
2668 {
2669 tcp_connection_t *tmp;
2670 tmp = tcp_lookup_connection (tc0->c_fib_index, b0, thread_index,
2671 is_ip4);
2672 if (tmp->state != tc0->state)
2673 {
2674 clib_warning ("state changed");
2675 goto drop;
2676 }
2677 }
2678
2679 /*
2680 * Special treatment for CLOSED
2681 */
2682 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
2683 {
2684 error0 = TCP_ERROR_CONNECTION_CLOSED;
2685 goto drop;
2686 }
2687
2688 /*
2689 * For all other states (except LISTEN)
2690 */
2691
2692 /* 1-4: check SEQ, RST, SYN */
2693 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, tcp0, &error0)))
2694 goto drop;
2695
2696 /* 5: check the ACK field */
2697 switch (tc0->state)
2698 {
2699 case TCP_STATE_SYN_RCVD:
2700 /*
2701 * If the segment acknowledgment is not acceptable, form a
2702 * reset segment,
2703 * <SEQ=SEG.ACK><CTL=RST>
2704 * and send it.
2705 */
2706 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
2707 {
Florin Corase78ac9d2018-12-16 21:33:00 -08002708 tcp_connection_reset (tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002709 error0 = TCP_ERROR_ACK_INVALID;
2710 goto drop;
2711 }
2712
Florin Coras4850e3e2018-12-12 14:34:38 -08002713 /* Make sure the ack is exactly right */
Florin Coras5c0f1662018-12-19 01:38:57 -08002714 if (tc0->rcv_nxt != vnet_buffer (b0)->tcp.seq_number || is_fin0
2715 || vnet_buffer (b0)->tcp.data_len)
Florin Coras4850e3e2018-12-12 14:34:38 -08002716 {
Florin Corase78ac9d2018-12-16 21:33:00 -08002717 tcp_connection_reset (tc0);
Florin Coras4850e3e2018-12-12 14:34:38 -08002718 error0 = TCP_ERROR_SEGMENT_INVALID;
Florin Coras4850e3e2018-12-12 14:34:38 -08002719 goto drop;
2720 }
2721
Florin Coras7ac053b2018-11-05 15:57:21 -08002722 /* Update rtt and rto */
Florin Corasefefc6b2018-11-07 12:49:19 -08002723 tcp_estimate_initial_rtt (tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002724
2725 /* Switch state to ESTABLISHED */
2726 tc0->state = TCP_STATE_ESTABLISHED;
2727 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
2728
2729 /* Initialize session variables */
2730 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
2731 tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2732 << tc0->rcv_opts.wscale;
2733 tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2734 tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
2735
2736 /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
2737 tcp_retransmit_timer_reset (tc0);
2738 tcp_timer_reset (tc0, TCP_TIMER_ESTABLISH);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002739 if (stream_session_accept_notify (&tc0->connection))
2740 {
2741 error0 = TCP_ERROR_MSG_QUEUE_FULL;
2742 tcp_connection_reset (tc0);
2743 goto drop;
2744 }
Florin Coras7ac053b2018-11-05 15:57:21 -08002745 error0 = TCP_ERROR_ACK_OK;
2746 break;
2747 case TCP_STATE_ESTABLISHED:
2748 /* We can get packets in established state here because they
2749 * were enqueued before state change */
2750 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2751 goto drop;
2752
2753 break;
2754 case TCP_STATE_FIN_WAIT_1:
2755 /* In addition to the processing for the ESTABLISHED state, if
2756 * our FIN is now acknowledged then enter FIN-WAIT-2 and
2757 * continue processing in that state. */
2758 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2759 goto drop;
2760
2761 /* Still have to send the FIN */
2762 if (tc0->flags & TCP_CONN_FINPNDG)
2763 {
2764 /* TX fifo finally drained */
Florin Coras78cc4b02018-12-20 18:24:49 -08002765 max_dequeue = session_tx_fifo_max_dequeue (&tc0->connection);
2766 if (max_dequeue <= tc0->burst_acked)
Florin Coras7ac053b2018-11-05 15:57:21 -08002767 tcp_send_fin (tc0);
2768 }
2769 /* If FIN is ACKed */
2770 else if (tc0->snd_una == tc0->snd_una_max)
2771 {
Florin Coras3c514d52018-12-22 11:39:33 -08002772 tcp_connection_set_state (tc0, TCP_STATE_FIN_WAIT_2);
Florin Coras7ac053b2018-11-05 15:57:21 -08002773
2774 /* Stop all retransmit timers because we have nothing more
2775 * to send. Enable waitclose though because we're willing to
2776 * wait for peer's FIN but not indefinitely. */
2777 tcp_connection_timers_reset (tc0);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002778 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Corasefefc6b2018-11-07 12:49:19 -08002779
2780 /* Don't try to deq the FIN acked */
2781 if (tc0->burst_acked > 1)
2782 stream_session_dequeue_drop (&tc0->connection,
2783 tc0->burst_acked - 1);
2784 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002785 }
2786 break;
2787 case TCP_STATE_FIN_WAIT_2:
2788 /* In addition to the processing for the ESTABLISHED state, if
2789 * the retransmission queue is empty, the user's CLOSE can be
2790 * acknowledged ("ok") but do not delete the TCB. */
2791 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2792 goto drop;
Florin Corasefefc6b2018-11-07 12:49:19 -08002793 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002794 break;
2795 case TCP_STATE_CLOSE_WAIT:
2796 /* Do the same processing as for the ESTABLISHED state. */
2797 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2798 goto drop;
2799
2800 if (tc0->flags & TCP_CONN_FINPNDG)
2801 {
2802 /* TX fifo finally drained */
2803 if (!session_tx_fifo_max_dequeue (&tc0->connection))
2804 {
2805 tcp_send_fin (tc0);
2806 tcp_connection_timers_reset (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002807 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002808 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002809 }
2810 }
2811 break;
2812 case TCP_STATE_CLOSING:
2813 /* In addition to the processing for the ESTABLISHED state, if
2814 * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2815 * otherwise ignore the segment. */
2816 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2817 goto drop;
2818
Florin Coras85a3ddd2018-12-24 16:54:34 -08002819 tcp_connection_timers_reset (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002820 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002821 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002822 goto drop;
2823
2824 break;
2825 case TCP_STATE_LAST_ACK:
2826 /* The only thing that [should] arrive in this state is an
2827 * acknowledgment of our FIN. If our FIN is now acknowledged,
2828 * delete the TCB, enter the CLOSED state, and return. */
2829
2830 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
2831 {
2832 error0 = TCP_ERROR_ACK_INVALID;
2833 goto drop;
2834 }
2835 error0 = TCP_ERROR_ACK_OK;
2836 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
2837 /* Apparently our ACK for the peer's FIN was lost */
2838 if (is_fin0 && tc0->snd_una != tc0->snd_una_max)
2839 {
2840 tcp_send_fin (tc0);
2841 goto drop;
2842 }
2843
Florin Coras3c514d52018-12-22 11:39:33 -08002844 tcp_connection_set_state (tc0, TCP_STATE_CLOSED);
Florin Coras7ac053b2018-11-05 15:57:21 -08002845
2846 /* Don't free the connection from the data path since
2847 * we can't ensure that we have no packets already enqueued
2848 * to output. Rely instead on the waitclose timer */
2849 tcp_connection_timers_reset (tc0);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002850 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002851
2852 goto drop;
2853
2854 break;
2855 case TCP_STATE_TIME_WAIT:
2856 /* The only thing that can arrive in this state is a
2857 * retransmission of the remote FIN. Acknowledge it, and restart
2858 * the 2 MSL timeout. */
2859
2860 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2861 goto drop;
2862
2863 tcp_program_ack (wrk, tc0);
2864 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
2865 goto drop;
2866
2867 break;
2868 default:
2869 ASSERT (0);
2870 }
2871
2872 /* 6: check the URG bit TODO */
2873
2874 /* 7: process the segment text */
2875 switch (tc0->state)
2876 {
2877 case TCP_STATE_ESTABLISHED:
2878 case TCP_STATE_FIN_WAIT_1:
2879 case TCP_STATE_FIN_WAIT_2:
2880 if (vnet_buffer (b0)->tcp.data_len)
2881 error0 = tcp_segment_rcv (wrk, tc0, b0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002882 break;
2883 case TCP_STATE_CLOSE_WAIT:
2884 case TCP_STATE_CLOSING:
2885 case TCP_STATE_LAST_ACK:
2886 case TCP_STATE_TIME_WAIT:
2887 /* This should not occur, since a FIN has been received from the
2888 * remote side. Ignore the segment text. */
2889 break;
2890 }
2891
2892 /* 8: check the FIN bit */
2893 if (!is_fin0)
2894 goto drop;
2895
Florin Coras3c514d52018-12-22 11:39:33 -08002896 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0);
2897
Florin Coras7ac053b2018-11-05 15:57:21 -08002898 switch (tc0->state)
2899 {
2900 case TCP_STATE_ESTABLISHED:
Florin Coras3c514d52018-12-22 11:39:33 -08002901 /* Account for the FIN and send ack */
2902 tc0->rcv_nxt += 1;
2903 tcp_program_ack (wrk, tc0);
2904 tcp_connection_set_state (tc0, TCP_STATE_CLOSE_WAIT);
2905 tcp_program_disconnect (wrk, tc0);
2906 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
Florin Coras5c0f1662018-12-19 01:38:57 -08002907 break;
Florin Coras7ac053b2018-11-05 15:57:21 -08002908 case TCP_STATE_SYN_RCVD:
Florin Coras5c0f1662018-12-19 01:38:57 -08002909 /* Send FIN-ACK, enter LAST-ACK and because the app was not
2910 * notified yet, set a cleanup timer instead of relying on
2911 * disconnect notify and the implicit close call. */
Florin Coras7ac053b2018-11-05 15:57:21 -08002912 tcp_connection_timers_reset (tc0);
Florin Coras5c0f1662018-12-19 01:38:57 -08002913 tc0->rcv_nxt += 1;
Florin Coras7ac053b2018-11-05 15:57:21 -08002914 tcp_send_fin (tc0);
Florin Coras3c514d52018-12-22 11:39:33 -08002915 tcp_connection_set_state (tc0, TCP_STATE_LAST_ACK);
Florin Coras5c0f1662018-12-19 01:38:57 -08002916 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002917 break;
2918 case TCP_STATE_CLOSE_WAIT:
2919 case TCP_STATE_CLOSING:
2920 case TCP_STATE_LAST_ACK:
2921 /* move along .. */
2922 break;
2923 case TCP_STATE_FIN_WAIT_1:
Florin Coras3c514d52018-12-22 11:39:33 -08002924 tc0->rcv_nxt += 1;
2925 tcp_connection_set_state (tc0, TCP_STATE_CLOSING);
Florin Coras7ac053b2018-11-05 15:57:21 -08002926 tcp_program_ack (wrk, tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002927 /* Wait for ACK but not forever */
2928 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
2929 break;
2930 case TCP_STATE_FIN_WAIT_2:
2931 /* Got FIN, send ACK! Be more aggressive with resource cleanup */
Florin Coras3c514d52018-12-22 11:39:33 -08002932 tc0->rcv_nxt += 1;
2933 tcp_connection_set_state (tc0, TCP_STATE_TIME_WAIT);
Florin Coras7ac053b2018-11-05 15:57:21 -08002934 tcp_connection_timers_reset (tc0);
Florin Coras85a3ddd2018-12-24 16:54:34 -08002935 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Florin Coras7ac053b2018-11-05 15:57:21 -08002936 tcp_program_ack (wrk, tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002937 break;
2938 case TCP_STATE_TIME_WAIT:
2939 /* Remain in the TIME-WAIT state. Restart the time-wait
2940 * timeout.
2941 */
2942 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
2943 break;
2944 }
2945 error0 = TCP_ERROR_FIN_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -08002946
2947 drop:
2948
2949 tcp_inc_counter (rcv_process, error0, 1);
2950 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2951 {
2952 tcp_rx_trace_t *t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2953 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
2954 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002955 }
2956
Florin Coras3cbc04b2017-10-02 00:18:51 -07002957 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
Florin Coras7ac053b2018-11-05 15:57:21 -08002958 thread_index);
Florin Corasa9d5bea2018-12-17 08:24:19 -08002959 tcp_inc_counter (rcv_process, TCP_ERROR_MSG_QUEUE_FULL, errors);
Florin Coras9ece3c02018-11-05 11:06:53 -08002960 tcp_handle_postponed_dequeues (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08002961 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
2962
Dave Barach68b0fb02017-02-28 15:15:56 -05002963 return from_frame->n_vectors;
2964}
2965
2966static uword
2967tcp4_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node,
2968 vlib_frame_t * from_frame)
2969{
2970 return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2971}
2972
2973static uword
2974tcp6_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node,
2975 vlib_frame_t * from_frame)
2976{
2977 return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2978}
2979
2980/* *INDENT-OFF* */
2981VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
2982{
2983 .function = tcp4_rcv_process,
2984 .name = "tcp4-rcv-process",
2985 /* Takes a vector of packets. */
2986 .vector_size = sizeof (u32),
2987 .n_errors = TCP_N_ERROR,
2988 .error_strings = tcp_error_strings,
2989 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2990 .next_nodes =
2991 {
2992#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
2993 foreach_tcp_state_next
2994#undef _
2995 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002996 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002997};
2998/* *INDENT-ON* */
2999
3000VLIB_NODE_FUNCTION_MULTIARCH (tcp4_rcv_process_node, tcp4_rcv_process);
3001
3002/* *INDENT-OFF* */
3003VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
3004{
3005 .function = tcp6_rcv_process,
3006 .name = "tcp6-rcv-process",
3007 /* Takes a vector of packets. */
3008 .vector_size = sizeof (u32),
3009 .n_errors = TCP_N_ERROR,
3010 .error_strings = tcp_error_strings,
3011 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
3012 .next_nodes =
3013 {
3014#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3015 foreach_tcp_state_next
3016#undef _
3017 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003018 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003019};
3020/* *INDENT-ON* */
3021
3022VLIB_NODE_FUNCTION_MULTIARCH (tcp6_rcv_process_node, tcp6_rcv_process);
3023
3024vlib_node_registration_t tcp4_listen_node;
3025vlib_node_registration_t tcp6_listen_node;
3026
3027/**
3028 * LISTEN state processing as per RFC 793 p. 65
3029 */
3030always_inline uword
3031tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3032 vlib_frame_t * from_frame, int is_ip4)
3033{
Florin Coras7ac053b2018-11-05 15:57:21 -08003034 u32 n_left_from, *from, n_syns = 0, *first_buffer;
Damjan Marion586afd72017-04-05 19:18:20 +02003035 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05003036
Florin Coras7ac053b2018-11-05 15:57:21 -08003037 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05003038 n_left_from = from_frame->n_vectors;
3039
Dave Barach68b0fb02017-02-28 15:15:56 -05003040 while (n_left_from > 0)
3041 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003042 u32 bi0;
3043 vlib_buffer_t *b0;
3044 tcp_rx_trace_t *t0;
3045 tcp_header_t *th0 = 0;
3046 tcp_connection_t *lc0;
3047 ip4_header_t *ip40;
3048 ip6_header_t *ip60;
3049 tcp_connection_t *child0;
3050 u32 error0 = TCP_ERROR_NONE;
Dave Barach68b0fb02017-02-28 15:15:56 -05003051
Florin Coras7ac053b2018-11-05 15:57:21 -08003052 bi0 = from[0];
3053 from += 1;
3054 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05003055
Florin Coras7ac053b2018-11-05 15:57:21 -08003056 b0 = vlib_get_buffer (vm, bi0);
3057 lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index);
3058
3059 if (is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003060 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003061 ip40 = vlib_buffer_get_current (b0);
3062 th0 = ip4_next_header (ip40);
3063 }
3064 else
3065 {
3066 ip60 = vlib_buffer_get_current (b0);
3067 th0 = ip6_next_header (ip60);
Dave Barach68b0fb02017-02-28 15:15:56 -05003068 }
3069
Florin Coras7ac053b2018-11-05 15:57:21 -08003070 /* Create child session. For syn-flood protection use filter */
3071
3072 /* 1. first check for an RST: handled in dispatch */
3073 /* if (tcp_rst (th0))
3074 goto drop;
3075 */
3076
3077 /* 2. second check for an ACK: handled in dispatch */
3078 /* if (tcp_ack (th0))
3079 {
3080 tcp_send_reset (b0, is_ip4);
3081 goto drop;
3082 }
3083 */
3084
3085 /* 3. check for a SYN (did that already) */
3086
3087 /* Make sure connection wasn't just created */
3088 child0 = tcp_lookup_connection (lc0->c_fib_index, b0, my_thread_index,
3089 is_ip4);
3090 if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN))
3091 {
3092 error0 = TCP_ERROR_CREATE_EXISTS;
3093 goto drop;
3094 }
3095
3096 /* Create child session and send SYN-ACK */
Florin Coras8124cb72018-12-16 20:57:29 -08003097 child0 = tcp_connection_alloc (my_thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08003098 child0->c_lcl_port = th0->dst_port;
3099 child0->c_rmt_port = th0->src_port;
3100 child0->c_is_ip4 = is_ip4;
3101 child0->state = TCP_STATE_SYN_RCVD;
3102 child0->c_fib_index = lc0->c_fib_index;
3103
3104 if (is_ip4)
3105 {
3106 child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32;
3107 child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32;
3108 }
3109 else
3110 {
Dave Barach178cf492018-11-13 16:34:13 -05003111 clib_memcpy_fast (&child0->c_lcl_ip6, &ip60->dst_address,
3112 sizeof (ip6_address_t));
3113 clib_memcpy_fast (&child0->c_rmt_ip6, &ip60->src_address,
3114 sizeof (ip6_address_t));
Florin Coras7ac053b2018-11-05 15:57:21 -08003115 }
3116
Florin Coras80231112018-12-05 15:59:31 -08003117 if (tcp_options_parse (th0, &child0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08003118 {
Florin Coras8124cb72018-12-16 20:57:29 -08003119 error0 = TCP_ERROR_OPTIONS;
3120 tcp_connection_free (child0);
Florin Coras7ac053b2018-11-05 15:57:21 -08003121 goto drop;
3122 }
3123
3124 child0->irs = vnet_buffer (b0)->tcp.seq_number;
3125 child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1;
3126 child0->rcv_las = child0->rcv_nxt;
3127 child0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
3128
3129 /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
3130 * segments are used to initialize PAWS. */
3131 if (tcp_opts_tstamp (&child0->rcv_opts))
3132 {
3133 child0->tsval_recent = child0->rcv_opts.tsval;
3134 child0->tsval_recent_age = tcp_time_now ();
3135 }
3136
3137 if (tcp_opts_wscale (&child0->rcv_opts))
3138 child0->snd_wscale = child0->rcv_opts.wscale;
3139
3140 child0->snd_wnd = clib_net_to_host_u16 (th0->window)
3141 << child0->snd_wscale;
3142 child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
3143 child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
3144
3145 tcp_connection_init_vars (child0);
3146 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, child0, 1);
3147
3148 if (stream_session_accept (&child0->connection, lc0->c_s_index,
3149 0 /* notify */ ))
3150 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003151 tcp_connection_cleanup (child0);
3152 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
3153 goto drop;
3154 }
3155
Florin Coras2e31cc32018-09-25 14:00:34 -07003156 child0->tx_fifo_size = transport_tx_fifo_size (&child0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003157 tcp_send_synack (child0);
3158 tcp_timer_set (child0, TCP_TIMER_ESTABLISH, TCP_SYN_RCVD_TIME);
3159
3160 drop:
3161
3162 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3163 {
3164 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05003165 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
3166 clib_memcpy_fast (&t0->tcp_connection, lc0,
3167 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08003168 }
3169
3170 n_syns += (error0 == TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003171 }
Florin Coras00cd22d2018-04-18 13:20:18 -07003172
3173 tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
Florin Coras7ac053b2018-11-05 15:57:21 -08003174 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3175
Dave Barach68b0fb02017-02-28 15:15:56 -05003176 return from_frame->n_vectors;
3177}
3178
3179static uword
3180tcp4_listen (vlib_main_t * vm, vlib_node_runtime_t * node,
3181 vlib_frame_t * from_frame)
3182{
3183 return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3184}
3185
3186static uword
3187tcp6_listen (vlib_main_t * vm, vlib_node_runtime_t * node,
3188 vlib_frame_t * from_frame)
3189{
3190 return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3191}
3192
3193/* *INDENT-OFF* */
3194VLIB_REGISTER_NODE (tcp4_listen_node) =
3195{
3196 .function = tcp4_listen,
3197 .name = "tcp4-listen",
3198 /* Takes a vector of packets. */
3199 .vector_size = sizeof (u32),
3200 .n_errors = TCP_N_ERROR,
3201 .error_strings = tcp_error_strings,
3202 .n_next_nodes = TCP_LISTEN_N_NEXT,
3203 .next_nodes =
3204 {
3205#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3206 foreach_tcp_state_next
3207#undef _
3208 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003209 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003210};
3211/* *INDENT-ON* */
3212
3213VLIB_NODE_FUNCTION_MULTIARCH (tcp4_listen_node, tcp4_listen);
3214
3215/* *INDENT-OFF* */
3216VLIB_REGISTER_NODE (tcp6_listen_node) =
3217{
3218 .function = tcp6_listen,
3219 .name = "tcp6-listen",
3220 /* Takes a vector of packets. */
3221 .vector_size = sizeof (u32),
3222 .n_errors = TCP_N_ERROR,
3223 .error_strings = tcp_error_strings,
3224 .n_next_nodes = TCP_LISTEN_N_NEXT,
3225 .next_nodes =
3226 {
3227#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3228 foreach_tcp_state_next
3229#undef _
3230 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003231 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003232};
3233/* *INDENT-ON* */
3234
3235VLIB_NODE_FUNCTION_MULTIARCH (tcp6_listen_node, tcp6_listen);
3236
3237vlib_node_registration_t tcp4_input_node;
3238vlib_node_registration_t tcp6_input_node;
3239
3240typedef enum _tcp_input_next
3241{
3242 TCP_INPUT_NEXT_DROP,
3243 TCP_INPUT_NEXT_LISTEN,
3244 TCP_INPUT_NEXT_RCV_PROCESS,
3245 TCP_INPUT_NEXT_SYN_SENT,
3246 TCP_INPUT_NEXT_ESTABLISHED,
3247 TCP_INPUT_NEXT_RESET,
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003248 TCP_INPUT_NEXT_PUNT,
Dave Barach68b0fb02017-02-28 15:15:56 -05003249 TCP_INPUT_N_NEXT
3250} tcp_input_next_t;
3251
3252#define foreach_tcp4_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003253 _ (DROP, "ip4-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003254 _ (LISTEN, "tcp4-listen") \
3255 _ (RCV_PROCESS, "tcp4-rcv-process") \
3256 _ (SYN_SENT, "tcp4-syn-sent") \
3257 _ (ESTABLISHED, "tcp4-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003258 _ (RESET, "tcp4-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003259 _ (PUNT, "ip4-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003260
3261#define foreach_tcp6_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003262 _ (DROP, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003263 _ (LISTEN, "tcp6-listen") \
3264 _ (RCV_PROCESS, "tcp6-rcv-process") \
3265 _ (SYN_SENT, "tcp6-syn-sent") \
3266 _ (ESTABLISHED, "tcp6-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003267 _ (RESET, "tcp6-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003268 _ (PUNT, "ip6-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003269
Dave Barach68b0fb02017-02-28 15:15:56 -05003270#define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
3271
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003272static void
3273tcp_input_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07003274 vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003275{
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003276 tcp_connection_t *tc;
3277 tcp_header_t *tcp;
3278 tcp_rx_trace_t *t;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003279 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05003280
Florin Coras4df38712018-06-20 12:44:16 -07003281 for (i = 0; i < n_bufs; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05003282 {
Florin Coras4df38712018-06-20 12:44:16 -07003283 if (bs[i]->flags & VLIB_BUFFER_IS_TRACED)
3284 {
3285 t = vlib_add_trace (vm, node, bs[i], sizeof (*t));
3286 tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index,
3287 vm->thread_index);
3288 tcp = vlib_buffer_get_current (bs[i]);
3289 tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4);
3290 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003291 }
3292}
Dave Barach68b0fb02017-02-28 15:15:56 -05003293
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003294static void
3295tcp_input_set_error_next (tcp_main_t * tm, u16 * next, u32 * error, u8 is_ip4)
3296{
3297 if (*error == TCP_ERROR_FILTERED)
3298 {
3299 *next = TCP_INPUT_NEXT_DROP;
3300 }
3301 else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6))
3302 {
3303 *next = TCP_INPUT_NEXT_PUNT;
3304 *error = TCP_ERROR_PUNT;
3305 }
3306 else
3307 {
3308 *next = TCP_INPUT_NEXT_RESET;
3309 *error = TCP_ERROR_NO_LISTENER;
3310 }
3311}
Dave Barach68b0fb02017-02-28 15:15:56 -05003312
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003313static inline tcp_connection_t *
3314tcp_input_lookup_buffer (vlib_buffer_t * b, u8 thread_index, u32 * error,
3315 u8 is_ip4)
3316{
3317 u32 fib_index = vnet_buffer (b)->ip.fib_index;
3318 int n_advance_bytes, n_data_bytes;
3319 transport_connection_t *tc;
3320 tcp_header_t *tcp;
3321 u8 is_filtered = 0;
3322
3323 if (is_ip4)
3324 {
3325 ip4_header_t *ip4 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003326 int ip_hdr_bytes = ip4_header_bytes (ip4);
3327 if (PREDICT_FALSE (b->current_length < ip_hdr_bytes + sizeof (*tcp)))
3328 {
3329 *error = TCP_ERROR_LENGTH;
3330 return 0;
3331 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003332 tcp = ip4_next_header (ip4);
3333 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip4;
Florin Corasb8dda5f2018-12-05 10:03:34 -08003334 n_advance_bytes = (ip_hdr_bytes + tcp_header_bytes (tcp));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003335 n_data_bytes = clib_net_to_host_u16 (ip4->length) - n_advance_bytes;
3336
3337 /* Length check. Checksum computed by ipx_local no need to compute again */
Florin Corasb8dda5f2018-12-05 10:03:34 -08003338 if (PREDICT_FALSE (n_data_bytes < 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05003339 {
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003340 *error = TCP_ERROR_LENGTH;
3341 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003342 }
3343
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003344 tc = session_lookup_connection_wt4 (fib_index, &ip4->dst_address,
3345 &ip4->src_address, tcp->dst_port,
3346 tcp->src_port, TRANSPORT_PROTO_TCP,
3347 thread_index, &is_filtered);
3348 }
3349 else
3350 {
3351 ip6_header_t *ip6 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003352 if (PREDICT_FALSE (b->current_length < sizeof (*ip6) + sizeof (*tcp)))
3353 {
3354 *error = TCP_ERROR_LENGTH;
3355 return 0;
3356 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003357 tcp = ip6_next_header (ip6);
3358 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip6;
3359 n_advance_bytes = tcp_header_bytes (tcp);
3360 n_data_bytes = clib_net_to_host_u16 (ip6->payload_length)
3361 - n_advance_bytes;
3362 n_advance_bytes += sizeof (ip6[0]);
3363
Florin Corasb8dda5f2018-12-05 10:03:34 -08003364 if (PREDICT_FALSE (n_data_bytes < 0))
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003365 {
3366 *error = TCP_ERROR_LENGTH;
3367 return 0;
3368 }
3369
3370 tc = session_lookup_connection_wt6 (fib_index, &ip6->dst_address,
3371 &ip6->src_address, tcp->dst_port,
3372 tcp->src_port, TRANSPORT_PROTO_TCP,
3373 thread_index, &is_filtered);
Dave Barach68b0fb02017-02-28 15:15:56 -05003374 }
3375
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003376 vnet_buffer (b)->tcp.seq_number = clib_net_to_host_u32 (tcp->seq_number);
3377 vnet_buffer (b)->tcp.ack_number = clib_net_to_host_u32 (tcp->ack_number);
3378 vnet_buffer (b)->tcp.data_offset = n_advance_bytes;
3379 vnet_buffer (b)->tcp.data_len = n_data_bytes;
Florin Coras3c514d52018-12-22 11:39:33 -08003380 vnet_buffer (b)->tcp.seq_end = vnet_buffer (b)->tcp.seq_number
3381 + n_data_bytes;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003382 vnet_buffer (b)->tcp.flags = 0;
3383
3384 *error = is_filtered ? TCP_ERROR_FILTERED : *error;
3385
3386 return tcp_get_connection_from_transport (tc);
3387}
3388
3389static inline void
3390tcp_input_dispatch_buffer (tcp_main_t * tm, tcp_connection_t * tc,
3391 vlib_buffer_t * b, u16 * next, u32 * error)
3392{
3393 tcp_header_t *tcp;
3394 u8 flags;
3395
3396 tcp = tcp_buffer_hdr (b);
3397 flags = tcp->flags & filter_flags;
3398 *next = tm->dispatch_table[tc->state][flags].next;
3399 *error = tm->dispatch_table[tc->state][flags].error;
3400
3401 if (PREDICT_FALSE (*error == TCP_ERROR_DISPATCH
3402 || *next == TCP_INPUT_NEXT_RESET))
3403 {
3404 /* Overload tcp flags to store state */
3405 tcp_state_t state = tc->state;
3406 vnet_buffer (b)->tcp.flags = tc->state;
3407
3408 if (*error == TCP_ERROR_DISPATCH)
Florin Corasa9d5bea2018-12-17 08:24:19 -08003409 clib_warning ("tcp conn %u disp error state %U flags %U",
3410 tc->c_c_index, format_tcp_state, state,
3411 format_tcp_flags, (int) flags);
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003412 }
3413}
3414
3415always_inline uword
3416tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3417 vlib_frame_t * frame, int is_ip4)
3418{
3419 u32 n_left_from, *from, thread_index = vm->thread_index;
3420 tcp_main_t *tm = vnet_get_tcp_main ();
3421 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
3422 u16 nexts[VLIB_FRAME_SIZE], *next;
3423
Florin Corasbe72ae62018-11-01 11:23:03 -07003424 tcp_set_time_now (tcp_get_worker (thread_index));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003425
3426 from = vlib_frame_vector_args (frame);
3427 n_left_from = frame->n_vectors;
3428 vlib_get_buffers (vm, from, bufs, n_left_from);
3429
3430 b = bufs;
3431 next = nexts;
3432
3433 while (n_left_from >= 4)
3434 {
3435 u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER;
3436 tcp_connection_t *tc0, *tc1;
3437
3438 {
3439 vlib_prefetch_buffer_header (b[2], STORE);
3440 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3441
3442 vlib_prefetch_buffer_header (b[3], STORE);
3443 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3444 }
3445
3446 next[0] = next[1] = TCP_INPUT_NEXT_DROP;
3447
3448 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4);
3449 tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4);
3450
3451 if (PREDICT_TRUE (!tc0 + !tc1 == 0))
3452 {
3453 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3454 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3455
3456 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3457 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3458
3459 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3460 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3461 }
3462 else
3463 {
3464 if (PREDICT_TRUE (tc0 != 0))
3465 {
3466 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3467 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3468 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3469 }
3470 else
3471 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3472
3473 if (PREDICT_TRUE (tc1 != 0))
3474 {
3475 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3476 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3477 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3478 }
3479 else
3480 tcp_input_set_error_next (tm, &next[1], &error1, is_ip4);
3481 }
3482
3483 b += 2;
3484 next += 2;
3485 n_left_from -= 2;
3486 }
3487 while (n_left_from > 0)
3488 {
3489 tcp_connection_t *tc0;
3490 u32 error0 = TCP_ERROR_NO_LISTENER;
3491
3492 if (n_left_from > 1)
3493 {
3494 vlib_prefetch_buffer_header (b[1], STORE);
3495 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3496 }
3497
3498 next[0] = TCP_INPUT_NEXT_DROP;
3499 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4);
3500 if (PREDICT_TRUE (tc0 != 0))
3501 {
3502 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3503 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3504 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3505 }
3506 else
3507 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3508
3509 b += 1;
3510 next += 1;
3511 n_left_from -= 1;
3512 }
3513
3514 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
3515 tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4);
3516
3517 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
3518 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05003519}
3520
3521static uword
3522tcp4_input (vlib_main_t * vm, vlib_node_runtime_t * node,
3523 vlib_frame_t * from_frame)
3524{
3525 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3526}
3527
3528static uword
3529tcp6_input (vlib_main_t * vm, vlib_node_runtime_t * node,
3530 vlib_frame_t * from_frame)
3531{
3532 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3533}
3534
3535/* *INDENT-OFF* */
3536VLIB_REGISTER_NODE (tcp4_input_node) =
3537{
3538 .function = tcp4_input,
3539 .name = "tcp4-input",
3540 /* Takes a vector of packets. */
3541 .vector_size = sizeof (u32),
3542 .n_errors = TCP_N_ERROR,
3543 .error_strings = tcp_error_strings,
3544 .n_next_nodes = TCP_INPUT_N_NEXT,
3545 .next_nodes =
3546 {
3547#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3548 foreach_tcp4_input_next
3549#undef _
3550 },
3551 .format_buffer = format_tcp_header,
3552 .format_trace = format_tcp_rx_trace,
3553};
3554/* *INDENT-ON* */
3555
3556VLIB_NODE_FUNCTION_MULTIARCH (tcp4_input_node, tcp4_input);
3557
3558/* *INDENT-OFF* */
3559VLIB_REGISTER_NODE (tcp6_input_node) =
3560{
3561 .function = tcp6_input,
3562 .name = "tcp6-input",
3563 /* Takes a vector of packets. */
3564 .vector_size = sizeof (u32),
3565 .n_errors = TCP_N_ERROR,
3566 .error_strings = tcp_error_strings,
3567 .n_next_nodes = TCP_INPUT_N_NEXT,
3568 .next_nodes =
3569 {
3570#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3571 foreach_tcp6_input_next
3572#undef _
3573 },
3574 .format_buffer = format_tcp_header,
3575 .format_trace = format_tcp_rx_trace,
3576};
3577/* *INDENT-ON* */
3578
3579VLIB_NODE_FUNCTION_MULTIARCH (tcp6_input_node, tcp6_input);
Dave Barach68b0fb02017-02-28 15:15:56 -05003580
3581static void
3582tcp_dispatch_table_init (tcp_main_t * tm)
3583{
3584 int i, j;
3585 for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3586 for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3587 {
3588 tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3589 tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3590 }
3591
3592#define _(t,f,n,e) \
3593do { \
3594 tm->dispatch_table[TCP_STATE_##t][f].next = (n); \
3595 tm->dispatch_table[TCP_STATE_##t][f].error = (e); \
3596} while (0)
3597
Florin Coras678a6572018-12-17 21:31:25 -08003598 /* RFC 793: In LISTEN if RST drop and if ACK return RST */
Florin Coras5c0f1662018-12-19 01:38:57 -08003599 _(LISTEN, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Florin Coras678a6572018-12-17 21:31:25 -08003600 _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_ACK_INVALID);
3601 _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_INVALID_CONNECTION);
Dave Barach68b0fb02017-02-28 15:15:56 -05003602 _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003603 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3604 TCP_ERROR_ACK_INVALID);
3605 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3606 TCP_ERROR_SEGMENT_INVALID);
3607 _(LISTEN, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3608 TCP_ERROR_SEGMENT_INVALID);
3609 _(LISTEN, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3610 TCP_ERROR_INVALID_CONNECTION);
3611 _(LISTEN, TCP_FLAG_FIN, TCP_INPUT_NEXT_RESET, TCP_ERROR_SEGMENT_INVALID);
Dave Barach2c25a622017-06-26 11:35:07 -04003612 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
Florin Coras678a6572018-12-17 21:31:25 -08003613 TCP_ERROR_SEGMENT_INVALID);
3614 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3615 TCP_ERROR_SEGMENT_INVALID);
3616 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003617 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003618 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_DROP,
3619 TCP_ERROR_SEGMENT_INVALID);
3620 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
3621 TCP_ERROR_SEGMENT_INVALID);
3622 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_DROP,
3623 TCP_ERROR_SEGMENT_INVALID);
3624 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3625 TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003626 /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3627 _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc28764f2017-04-26 00:08:42 -07003628 _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase8460c72018-09-24 14:40:40 -07003629 _(SYN_RCVD, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3630 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003631 _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003632 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3633 TCP_ERROR_NONE);
3634 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3635 TCP_ERROR_NONE);
3636 _(SYN_RCVD, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3637 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3638 _(SYN_RCVD, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc01c4452018-09-20 18:36:54 -07003639 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3640 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003641 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3642 TCP_ERROR_NONE);
3643 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3644 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3645 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3646 TCP_ERROR_NONE);
3647 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3648 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3649 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3650 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3651 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3652 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3653 _(SYN_RCVD, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003654 /* SYN-ACK for a SYN */
3655 _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3656 TCP_ERROR_NONE);
3657 _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3658 _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3659 _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3660 TCP_ERROR_NONE);
3661 /* ACK for for established connection -> tcp-established. */
3662 _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3663 /* FIN for for established connection -> tcp-established. */
3664 _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3665 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3666 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003667 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3668 TCP_ERROR_NONE);
3669 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3670 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3671 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED,
3672 TCP_ERROR_NONE);
3673 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3674 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3675 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3676 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3677 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3678 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasd79b41e2017-03-04 05:37:52 -08003679 _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003680 _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3681 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003682 _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003683 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3684 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003685 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED,
3686 TCP_ERROR_NONE);
3687 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3688 TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3689 _(ESTABLISHED, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003690 /* ACK or FIN-ACK to our FIN */
3691 _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3692 _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
3693 TCP_ERROR_NONE);
3694 /* FIN in reply to our FIN from the other side */
Florin Coras76bc1302018-12-23 23:36:36 -08003695 _(FIN_WAIT_1, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003696 _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08003697 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3698 TCP_ERROR_NONE);
3699 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3700 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3701 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3702 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3703 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3704 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3705 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3706 TCP_ERROR_NONE);
3707 _(FIN_WAIT_1, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3708 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras5c0f1662018-12-19 01:38:57 -08003709 _(FIN_WAIT_1, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras76bc1302018-12-23 23:36:36 -08003710 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3711 TCP_ERROR_NONE);
3712 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3713 TCP_ERROR_NONE);
3714 _(FIN_WAIT_1, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3715 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003716 _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase96bf632018-12-18 22:44:27 -08003717 _(FIN_WAIT_1, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3718 TCP_ERROR_NONE);
Florin Coras56318932018-05-23 20:44:12 -07003719 _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras54ddf432018-12-21 13:54:09 -08003720 _(CLOSING, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3721 _(CLOSING, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3722 _(CLOSING, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3723 TCP_ERROR_NONE);
Florin Coras3c514d52018-12-22 11:39:33 -08003724 _(CLOSING, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3725 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003726 /* FIN confirming that the peer (app) has closed */
3727 _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasf6d68ed2017-05-07 19:12:02 -07003728 _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003729 _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3730 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003731 _(FIN_WAIT_2, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3732 _(FIN_WAIT_2, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3733 TCP_ERROR_NONE);
Florin Corasf03a59a2017-06-09 21:07:32 -07003734 _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3735 _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3736 TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003737 _(CLOSE_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3738 _(CLOSE_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3739 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003740 _(LAST_ACK, 0, TCP_INPUT_NEXT_DROP, TCP_ERROR_SEGMENT_INVALID);
Dave Barach68b0fb02017-02-28 15:15:56 -05003741 _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003742 _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3743 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3744 TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003745 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS,
3746 TCP_ERROR_NONE);
3747 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_ACK,
3748 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3749 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3750 TCP_ERROR_NONE);
3751 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_RST | TCP_FLAG_ACK,
3752 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3753 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST,
3754 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3755 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3756 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasdb84e572017-05-09 18:54:52 -07003757 _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003758 _(LAST_ACK, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3759 TCP_ERROR_NONE);
Florin Corasc01d5782018-10-17 14:53:11 -07003760 _(LAST_ACK, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasd12ff502018-12-25 10:55:01 -08003761 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3762 TCP_ERROR_NONE);
3763 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS,
3764 TCP_ERROR_NONE);
3765 _(LAST_ACK, TCP_FLAG_SYN | TCP_FLAG_RST | TCP_FLAG_ACK,
3766 TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003767 _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3768 _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3769 TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003770 _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003771 _(TIME_WAIT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3772 TCP_ERROR_NONE);
Florin Coras50958952017-08-29 14:50:13 -07003773 _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras678a6572018-12-17 21:31:25 -08003774 /* RFC793 CLOSED: An incoming segment containing a RST is discarded. An
3775 * incoming segment not containing a RST causes a RST to be sent in
3776 * response.*/
Florin Corasdc629cd2017-05-09 00:52:37 -07003777 _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08003778 _(CLOSED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003779 TCP_ERROR_CONNECTION_CLOSED);
Florin Coras678a6572018-12-17 21:31:25 -08003780 _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
3781 _(CLOSED, TCP_FLAG_SYN, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
3782 _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3783 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003784#undef _
3785}
3786
Florin Coras0dbd5172018-06-25 16:19:34 -07003787static clib_error_t *
Dave Barach68b0fb02017-02-28 15:15:56 -05003788tcp_input_init (vlib_main_t * vm)
3789{
3790 clib_error_t *error = 0;
3791 tcp_main_t *tm = vnet_get_tcp_main ();
3792
3793 if ((error = vlib_call_init_function (vm, tcp_init)))
3794 return error;
3795
3796 /* Initialize dispatch table. */
3797 tcp_dispatch_table_init (tm);
3798
3799 return error;
3800}
3801
3802VLIB_INIT_FUNCTION (tcp_input_init);
3803
3804/*
3805 * fd.io coding-style-patch-verification: ON
3806 *
3807 * Local Variables:
3808 * eval: (c-set-style "gnu")
3809 * End:
3810 */