blob: 87bacc2435468033484db6be5b396016fc4a574e [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
124 * @return -1 if parsing failed
125 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700126static int
Dave Barach68b0fb02017-02-28 15:15:56 -0500127tcp_options_parse (tcp_header_t * th, tcp_options_t * to)
128{
129 const u8 *data;
130 u8 opt_len, opts_len, kind;
131 int j;
132 sack_block_t b;
133
134 opts_len = (tcp_doff (th) << 2) - sizeof (tcp_header_t);
135 data = (const u8 *) (th + 1);
136
137 /* Zero out all flags but those set in SYN */
Florin Corasd6fe5bd2018-10-16 19:52:10 -0700138 to->flags &= (TCP_OPTS_FLAG_SACK_PERMITTED | TCP_OPTS_FLAG_WSCALE
139 | TCP_OPTS_FLAG_SACK);
Dave Barach68b0fb02017-02-28 15:15:56 -0500140
141 for (; opts_len > 0; opts_len -= opt_len, data += opt_len)
142 {
143 kind = data[0];
144
145 /* Get options length */
146 if (kind == TCP_OPTION_EOL)
147 break;
148 else if (kind == TCP_OPTION_NOOP)
Florin Corasdb84e572017-05-09 18:54:52 -0700149 {
150 opt_len = 1;
151 continue;
152 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500153 else
154 {
155 /* broken options */
156 if (opts_len < 2)
Florin Corasdb84e572017-05-09 18:54:52 -0700157 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500158 opt_len = data[1];
159
160 /* weird option length */
161 if (opt_len < 2 || opt_len > opts_len)
Florin Corasdb84e572017-05-09 18:54:52 -0700162 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500163 }
164
165 /* Parse options */
166 switch (kind)
167 {
168 case TCP_OPTION_MSS:
169 if ((opt_len == TCP_OPTION_LEN_MSS) && tcp_syn (th))
170 {
171 to->flags |= TCP_OPTS_FLAG_MSS;
172 to->mss = clib_net_to_host_u16 (*(u16 *) (data + 2));
173 }
174 break;
175 case TCP_OPTION_WINDOW_SCALE:
176 if ((opt_len == TCP_OPTION_LEN_WINDOW_SCALE) && tcp_syn (th))
177 {
178 to->flags |= TCP_OPTS_FLAG_WSCALE;
179 to->wscale = data[2];
180 if (to->wscale > TCP_MAX_WND_SCALE)
181 {
182 clib_warning ("Illegal window scaling value: %d",
183 to->wscale);
184 to->wscale = TCP_MAX_WND_SCALE;
185 }
186 }
187 break;
188 case TCP_OPTION_TIMESTAMP:
189 if (opt_len == TCP_OPTION_LEN_TIMESTAMP)
190 {
191 to->flags |= TCP_OPTS_FLAG_TSTAMP;
192 to->tsval = clib_net_to_host_u32 (*(u32 *) (data + 2));
193 to->tsecr = clib_net_to_host_u32 (*(u32 *) (data + 6));
194 }
195 break;
196 case TCP_OPTION_SACK_PERMITTED:
197 if (opt_len == TCP_OPTION_LEN_SACK_PERMITTED && tcp_syn (th))
198 to->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
199 break;
200 case TCP_OPTION_SACK_BLOCK:
201 /* If SACK permitted was not advertised or a SYN, break */
202 if ((to->flags & TCP_OPTS_FLAG_SACK_PERMITTED) == 0 || tcp_syn (th))
203 break;
204
205 /* If too short or not correctly formatted, break */
206 if (opt_len < 10 || ((opt_len - 2) % TCP_OPTION_LEN_SACK_BLOCK))
207 break;
208
209 to->flags |= TCP_OPTS_FLAG_SACK;
210 to->n_sack_blocks = (opt_len - 2) / TCP_OPTION_LEN_SACK_BLOCK;
211 vec_reset_length (to->sacks);
212 for (j = 0; j < to->n_sack_blocks; j++)
213 {
Florin Coras3eb50622017-07-13 01:24:57 -0400214 b.start = clib_net_to_host_u32 (*(u32 *) (data + 2 + 8 * j));
215 b.end = clib_net_to_host_u32 (*(u32 *) (data + 6 + 8 * j));
Dave Barach68b0fb02017-02-28 15:15:56 -0500216 vec_add1 (to->sacks, b);
217 }
218 break;
219 default:
220 /* Nothing to see here */
221 continue;
222 }
223 }
Florin Corasdb84e572017-05-09 18:54:52 -0700224 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500225}
226
Florin Corasc28764f2017-04-26 00:08:42 -0700227/**
228 * RFC1323: Check against wrapped sequence numbers (PAWS). If we have
229 * timestamp to echo and it's less than tsval_recent, drop segment
230 * but still send an ACK in order to retain TCP's mechanism for detecting
231 * and recovering from half-open connections
232 *
233 * Or at least that's what the theory says. It seems that this might not work
234 * very well with packet reordering and fast retransmit. XXX
235 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500236always_inline int
237tcp_segment_check_paws (tcp_connection_t * tc)
238{
Florin Coras93992a92017-05-24 18:03:56 -0700239 return tcp_opts_tstamp (&tc->rcv_opts) && tc->tsval_recent
240 && timestamp_lt (tc->rcv_opts.tsval, tc->tsval_recent);
Dave Barach68b0fb02017-02-28 15:15:56 -0500241}
242
243/**
Florin Corasc28764f2017-04-26 00:08:42 -0700244 * Update tsval recent
245 */
246always_inline void
247tcp_update_timestamp (tcp_connection_t * tc, u32 seq, u32 seq_end)
248{
249 /*
250 * RFC1323: If Last.ACK.sent falls within the range of sequence numbers
251 * of an incoming segment:
252 * SEG.SEQ <= Last.ACK.sent < SEG.SEQ + SEG.LEN
253 * then the TSval from the segment is copied to TS.Recent;
254 * otherwise, the TSval is ignored.
255 */
Florin Corasf1762d62017-09-24 19:43:08 -0400256 if (tcp_opts_tstamp (&tc->rcv_opts) && seq_leq (seq, tc->rcv_las)
257 && seq_leq (tc->rcv_las, seq_end))
Florin Corasc28764f2017-04-26 00:08:42 -0700258 {
Dave Barach2c25a622017-06-26 11:35:07 -0400259 ASSERT (timestamp_leq (tc->tsval_recent, tc->rcv_opts.tsval));
Florin Coras93992a92017-05-24 18:03:56 -0700260 tc->tsval_recent = tc->rcv_opts.tsval;
Florin Corasc28764f2017-04-26 00:08:42 -0700261 tc->tsval_recent_age = tcp_time_now ();
262 }
263}
264
265/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500266 * Validate incoming segment as per RFC793 p. 69 and RFC1323 p. 19
267 *
268 * It first verifies if segment has a wrapped sequence number (PAWS) and then
269 * does the processing associated to the first four steps (ignoring security
270 * and precedence): sequence number, rst bit and syn bit checks.
271 *
272 * @return 0 if segments passes validation.
273 */
274static int
275tcp_segment_validate (vlib_main_t * vm, tcp_connection_t * tc0,
Florin Coras00cd22d2018-04-18 13:20:18 -0700276 vlib_buffer_t * b0, tcp_header_t * th0,
277 u32 * next0, u32 * error0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500278{
Florin Corasca1c8f32018-05-23 21:01:30 -0700279 /* We could get a burst of RSTs interleaved with acks */
280 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
281 {
282 tcp_send_reset (tc0);
283 *error0 = TCP_ERROR_CONNECTION_CLOSED;
284 goto drop;
285 }
286
Dave Barach68b0fb02017-02-28 15:15:56 -0500287 if (PREDICT_FALSE (!tcp_ack (th0) && !tcp_rst (th0) && !tcp_syn (th0)))
Florin Coras00cd22d2018-04-18 13:20:18 -0700288 {
289 *error0 = TCP_ERROR_SEGMENT_INVALID;
290 goto drop;
291 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500292
Florin Coras93992a92017-05-24 18:03:56 -0700293 if (PREDICT_FALSE (tcp_options_parse (th0, &tc0->rcv_opts)))
Florin Corasdb84e572017-05-09 18:54:52 -0700294 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400295 clib_warning ("options parse error");
Florin Coras00cd22d2018-04-18 13:20:18 -0700296 *error0 = TCP_ERROR_OPTIONS;
297 goto drop;
Florin Corasdb84e572017-05-09 18:54:52 -0700298 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500299
Florin Coras00cd22d2018-04-18 13:20:18 -0700300 if (PREDICT_FALSE (tcp_segment_check_paws (tc0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500301 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700302 *error0 = TCP_ERROR_PAWS;
Florin Coras93992a92017-05-24 18:03:56 -0700303 if (CLIB_DEBUG > 2)
Florin Corasca1c8f32018-05-23 21:01:30 -0700304 clib_warning ("paws failed\n%U", format_tcp_connection, tc0, 2);
Florin Corasc28764f2017-04-26 00:08:42 -0700305 TCP_EVT_DBG (TCP_EVT_PAWS_FAIL, tc0, vnet_buffer (b0)->tcp.seq_number,
306 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500307
308 /* If it just so happens that a segment updates tsval_recent for a
309 * segment over 24 days old, invalidate tsval_recent. */
310 if (timestamp_lt (tc0->tsval_recent_age + TCP_PAWS_IDLE,
311 tcp_time_now ()))
312 {
313 /* Age isn't reset until we get a valid tsval (bsd inspired) */
314 tc0->tsval_recent = 0;
Florin Corasc28764f2017-04-26 00:08:42 -0700315 clib_warning ("paws failed - really old segment. REALLY?");
Dave Barach68b0fb02017-02-28 15:15:56 -0500316 }
317 else
318 {
319 /* Drop after ack if not rst */
320 if (!tcp_rst (th0))
321 {
322 tcp_make_ack (tc0, b0);
Florin Corasca1c8f32018-05-23 21:01:30 -0700323 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
Florin Coras00cd22d2018-04-18 13:20:18 -0700324 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500325 }
326 }
Florin Coras00cd22d2018-04-18 13:20:18 -0700327 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -0500328 }
329
330 /* 1st: check sequence number */
331 if (!tcp_segment_in_rcv_wnd (tc0, vnet_buffer (b0)->tcp.seq_number,
332 vnet_buffer (b0)->tcp.seq_end))
333 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700334 *error0 = TCP_ERROR_RCV_WND;
Florin Coras6792ec02017-03-13 03:49:51 -0700335 /* If our window is 0 and the packet is in sequence, let it pass
Florin Coras00cd22d2018-04-18 13:20:18 -0700336 * through for ack processing. It should be dropped later. */
337 if (!(tc0->rcv_wnd == 0
338 && tc0->rcv_nxt == vnet_buffer (b0)->tcp.seq_number))
Florin Coras6792ec02017-03-13 03:49:51 -0700339 {
340 /* If not RST, send dup ack */
341 if (!tcp_rst (th0))
342 {
343 tcp_make_ack (tc0, b0);
Florin Corasca1c8f32018-05-23 21:01:30 -0700344 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
Florin Coras00cd22d2018-04-18 13:20:18 -0700345 goto error;
Florin Coras6792ec02017-03-13 03:49:51 -0700346 }
Florin Coras00cd22d2018-04-18 13:20:18 -0700347 goto drop;
Florin Coras6792ec02017-03-13 03:49:51 -0700348 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500349 }
350
351 /* 2nd: check the RST bit */
Florin Coras00cd22d2018-04-18 13:20:18 -0700352 if (PREDICT_FALSE (tcp_rst (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500353 {
Florin Corasd79b41e2017-03-04 05:37:52 -0800354 tcp_connection_reset (tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -0700355 *error0 = TCP_ERROR_RST_RCVD;
356 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -0500357 }
358
359 /* 3rd: check security and precedence (skip) */
360
361 /* 4th: check the SYN bit */
Florin Coras00cd22d2018-04-18 13:20:18 -0700362 if (PREDICT_FALSE (tcp_syn (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500363 {
Florin Coras6534b7a2017-07-18 05:38:03 -0400364 /* TODO implement RFC 5961 */
Florin Coras9d063042017-09-14 03:08:00 -0400365 if (tc0->state == TCP_STATE_SYN_RCVD)
366 {
367 tcp_make_synack (tc0, b0);
368 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, tc0, 0);
369 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400370 else
Florin Coras9d063042017-09-14 03:08:00 -0400371 {
372 tcp_make_ack (tc0, b0);
373 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, tc0);
374 }
Florin Coras00cd22d2018-04-18 13:20:18 -0700375 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500376 }
377
Florin Corasc28764f2017-04-26 00:08:42 -0700378 /* If segment in window, save timestamp */
379 tcp_update_timestamp (tc0, vnet_buffer (b0)->tcp.seq_number,
380 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500381 return 0;
Florin Coras00cd22d2018-04-18 13:20:18 -0700382
383drop:
384 *next0 = tcp_next_drop (tc0->c_is_ip4);
385 return -1;
386error:
387 *next0 = tcp_next_output (tc0->c_is_ip4);
388 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500389}
390
391always_inline int
392tcp_rcv_ack_is_acceptable (tcp_connection_t * tc0, vlib_buffer_t * tb0)
393{
394 /* SND.UNA =< SEG.ACK =< SND.NXT */
395 return (seq_leq (tc0->snd_una, vnet_buffer (tb0)->tcp.ack_number)
396 && seq_leq (vnet_buffer (tb0)->tcp.ack_number, tc0->snd_nxt));
397}
398
399/**
400 * Compute smoothed RTT as per VJ's '88 SIGCOMM and RFC6298
401 *
402 * Note that although the original article, srtt and rttvar are scaled
403 * to minimize round-off errors, here we don't. Instead, we rely on
404 * better precision time measurements.
405 *
406 * TODO support us rtt resolution
407 */
408static void
409tcp_estimate_rtt (tcp_connection_t * tc, u32 mrtt)
410{
Florin Corasf03a59a2017-06-09 21:07:32 -0700411 int err, diff;
Dave Barach68b0fb02017-02-28 15:15:56 -0500412
413 if (tc->srtt != 0)
414 {
415 err = mrtt - tc->srtt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500416
417 /* XXX Drop in RTT results in RTTVAR increase and bigger RTO.
418 * The increase should be bound */
Florin Corasf03a59a2017-06-09 21:07:32 -0700419 tc->srtt = clib_max ((int) tc->srtt + (err >> 3), 1);
420 diff = (clib_abs (err) - (int) tc->rttvar) >> 2;
421 tc->rttvar = clib_max ((int) tc->rttvar + diff, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500422 }
423 else
424 {
425 /* First measurement. */
426 tc->srtt = mrtt;
Florin Coras6792ec02017-03-13 03:49:51 -0700427 tc->rttvar = mrtt >> 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500428 }
429}
430
Florin Coras93992a92017-05-24 18:03:56 -0700431void
432tcp_update_rto (tcp_connection_t * tc)
433{
434 tc->rto = clib_min (tc->srtt + (tc->rttvar << 2), TCP_RTO_MAX);
Florin Corasf03a59a2017-06-09 21:07:32 -0700435 tc->rto = clib_max (tc->rto, TCP_RTO_MIN);
Florin Coras93992a92017-05-24 18:03:56 -0700436}
437
Florin Corasf1762d62017-09-24 19:43:08 -0400438/**
439 * Update RTT estimate and RTO timer
Dave Barach68b0fb02017-02-28 15:15:56 -0500440 *
441 * Measure RTT: We have two sources of RTT measurements: TSOPT and ACK
442 * timing. Middle boxes are known to fiddle with TCP options so we
443 * should give higher priority to ACK timing.
444 *
Florin Corasf1762d62017-09-24 19:43:08 -0400445 * This should be called only if previously sent bytes have been acked.
446 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500447 * return 1 if valid rtt 0 otherwise
448 */
449static int
450tcp_update_rtt (tcp_connection_t * tc, u32 ack)
451{
452 u32 mrtt = 0;
453
454 /* Karn's rule, part 1. Don't use retransmitted segments to estimate
455 * RTT because they're ambiguous. */
Florin Corasf1762d62017-09-24 19:43:08 -0400456 if (tcp_in_cong_recovery (tc) || tc->sack_sb.sacked_bytes)
Florin Coras3ec66b02018-08-23 16:27:05 -0700457 {
458 if (tcp_in_recovery (tc))
459 return 0;
460 goto done;
461 }
Florin Corasf1762d62017-09-24 19:43:08 -0400462
463 if (tc->rtt_ts && seq_geq (ack, tc->rtt_seq))
Dave Barach68b0fb02017-02-28 15:15:56 -0500464 {
465 mrtt = tcp_time_now () - tc->rtt_ts;
Dave Barach68b0fb02017-02-28 15:15:56 -0500466 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500467 /* As per RFC7323 TSecr can be used for RTTM only if the segment advances
468 * snd_una, i.e., the left side of the send window:
Florin Corasf1762d62017-09-24 19:43:08 -0400469 * seq_lt (tc->snd_una, ack). This is a condition for calling update_rtt */
470 else if (tcp_opts_tstamp (&tc->rcv_opts) && tc->rcv_opts.tsecr)
Dave Barach68b0fb02017-02-28 15:15:56 -0500471 {
Florin Coras93992a92017-05-24 18:03:56 -0700472 mrtt = tcp_time_now () - tc->rcv_opts.tsecr;
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 Coras3af90fc2017-05-03 21:09:42 -0700483 /* Allow measuring of a new RTT */
484 tc->rtt_ts = 0;
485
Florin Corasf1762d62017-09-24 19:43:08 -0400486 /* If we got here something must've been ACKed so make sure boff is 0,
Florin Coras3ec66b02018-08-23 16:27:05 -0700487 * even if mrtt is not valid since we update the rto lower */
Florin Corasf1762d62017-09-24 19:43:08 -0400488 tc->rto_boff = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700489 tcp_update_rto (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500490
Florin Coras3af90fc2017-05-03 21:09:42 -0700491 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500492}
493
494/**
495 * Dequeue bytes that have been acked and while at it update RTT estimates.
496 */
497static void
498tcp_dequeue_acked (tcp_connection_t * tc, u32 ack)
499{
Florin Coras93992a92017-05-24 18:03:56 -0700500 /* Dequeue the newly ACKed add SACKed bytes */
501 stream_session_dequeue_drop (&tc->connection,
502 tc->bytes_acked + tc->sack_sb.snd_una_adv);
503
504 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
Dave Barach68b0fb02017-02-28 15:15:56 -0500505
506 /* Update rtt and rto */
Florin Coras3e350af2017-03-30 02:54:28 -0700507 tcp_update_rtt (tc, ack);
Florin Coras93992a92017-05-24 18:03:56 -0700508
509 /* If everything has been acked, stop retransmit timer
510 * otherwise update. */
511 tcp_retransmit_timer_update (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500512}
513
Florin Coras6792ec02017-03-13 03:49:51 -0700514/**
Florin Coras93992a92017-05-24 18:03:56 -0700515 * Check if duplicate ack as per RFC5681 Sec. 2
516 */
517static u8
518tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd,
519 u32 prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500520{
Florin Coras93992a92017-05-24 18:03:56 -0700521 return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500522 && seq_gt (tc->snd_una_max, tc->snd_una)
523 && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
Florin Coras93992a92017-05-24 18:03:56 -0700524 && (prev_snd_wnd == tc->snd_wnd));
525}
526
527/**
528 * Checks if ack is a congestion control event.
529 */
530static u8
531tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b,
532 u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
533{
534 /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
535 * defined to be 'duplicate' */
536 *is_dack = tc->sack_sb.last_sacked_bytes
537 || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
538
Dave Barach2c25a622017-06-26 11:35:07 -0400539 return ((*is_dack || tcp_in_cong_recovery (tc)) && !tcp_is_lost_fin (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -0500540}
541
Florin Coras0dbd5172018-06-25 16:19:34 -0700542static u32
543scoreboard_hole_index (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
544{
545 ASSERT (!pool_is_free_index (sb->holes, hole - sb->holes));
546 return hole - sb->holes;
547}
548
549static u32
550scoreboard_hole_bytes (sack_scoreboard_hole_t * hole)
551{
552 return hole->end - hole->start;
553}
554
555sack_scoreboard_hole_t *
556scoreboard_get_hole (sack_scoreboard_t * sb, u32 index)
557{
558 if (index != TCP_INVALID_SACK_HOLE_INDEX)
559 return pool_elt_at_index (sb->holes, index);
560 return 0;
561}
562
563sack_scoreboard_hole_t *
564scoreboard_next_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
565{
566 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
567 return pool_elt_at_index (sb->holes, hole->next);
568 return 0;
569}
570
571sack_scoreboard_hole_t *
572scoreboard_prev_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
573{
574 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
575 return pool_elt_at_index (sb->holes, hole->prev);
576 return 0;
577}
578
579sack_scoreboard_hole_t *
580scoreboard_first_hole (sack_scoreboard_t * sb)
581{
582 if (sb->head != TCP_INVALID_SACK_HOLE_INDEX)
583 return pool_elt_at_index (sb->holes, sb->head);
584 return 0;
585}
586
587sack_scoreboard_hole_t *
588scoreboard_last_hole (sack_scoreboard_t * sb)
589{
590 if (sb->tail != TCP_INVALID_SACK_HOLE_INDEX)
591 return pool_elt_at_index (sb->holes, sb->tail);
592 return 0;
593}
594
595static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500596scoreboard_remove_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
597{
598 sack_scoreboard_hole_t *next, *prev;
599
600 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
601 {
602 next = pool_elt_at_index (sb->holes, hole->next);
603 next->prev = hole->prev;
604 }
Florin Coras93992a92017-05-24 18:03:56 -0700605 else
606 {
607 sb->tail = hole->prev;
608 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500609
610 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
611 {
612 prev = pool_elt_at_index (sb->holes, hole->prev);
613 prev->next = hole->next;
614 }
615 else
616 {
617 sb->head = hole->next;
618 }
619
Florin Coras93992a92017-05-24 18:03:56 -0700620 if (scoreboard_hole_index (sb, hole) == sb->cur_rxt_hole)
621 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
622
Florin Coras3eb50622017-07-13 01:24:57 -0400623 /* Poison the entry */
624 if (CLIB_DEBUG > 0)
625 memset (hole, 0xfe, sizeof (*hole));
626
Dave Barach68b0fb02017-02-28 15:15:56 -0500627 pool_put (sb->holes, hole);
628}
629
Florin Coras0dbd5172018-06-25 16:19:34 -0700630static sack_scoreboard_hole_t *
Florin Coras6792ec02017-03-13 03:49:51 -0700631scoreboard_insert_hole (sack_scoreboard_t * sb, u32 prev_index,
Dave Barach68b0fb02017-02-28 15:15:56 -0500632 u32 start, u32 end)
633{
Florin Coras6792ec02017-03-13 03:49:51 -0700634 sack_scoreboard_hole_t *hole, *next, *prev;
Dave Barach68b0fb02017-02-28 15:15:56 -0500635 u32 hole_index;
636
637 pool_get (sb->holes, hole);
638 memset (hole, 0, sizeof (*hole));
639
640 hole->start = start;
641 hole->end = end;
Florin Coras3eb50622017-07-13 01:24:57 -0400642 hole_index = scoreboard_hole_index (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500643
Florin Coras6792ec02017-03-13 03:49:51 -0700644 prev = scoreboard_get_hole (sb, prev_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500645 if (prev)
646 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700647 hole->prev = prev_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500648 hole->next = prev->next;
649
650 if ((next = scoreboard_next_hole (sb, hole)))
651 next->prev = hole_index;
Florin Corasf03a59a2017-06-09 21:07:32 -0700652 else
653 sb->tail = hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500654
655 prev->next = hole_index;
656 }
657 else
658 {
659 sb->head = hole_index;
660 hole->prev = TCP_INVALID_SACK_HOLE_INDEX;
661 hole->next = TCP_INVALID_SACK_HOLE_INDEX;
662 }
663
664 return hole;
665}
666
Florin Coras0dbd5172018-06-25 16:19:34 -0700667static void
Florin Corasf03a59a2017-06-09 21:07:32 -0700668scoreboard_update_bytes (tcp_connection_t * tc, sack_scoreboard_t * sb)
Florin Coras93992a92017-05-24 18:03:56 -0700669{
Florin Corasecbd20b2018-10-17 23:34:54 -0700670 sack_scoreboard_hole_t *left, *right;
Florin Coras93992a92017-05-24 18:03:56 -0700671 u32 bytes = 0, blks = 0;
672
673 sb->lost_bytes = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700674 sb->sacked_bytes = 0;
Florin Corasecbd20b2018-10-17 23:34:54 -0700675 left = scoreboard_last_hole (sb);
676 if (!left)
Florin Coras93992a92017-05-24 18:03:56 -0700677 return;
678
Florin Corasecbd20b2018-10-17 23:34:54 -0700679 if (seq_gt (sb->high_sacked, left->end))
Florin Coras93992a92017-05-24 18:03:56 -0700680 {
Florin Corasecbd20b2018-10-17 23:34:54 -0700681 bytes = sb->high_sacked - left->end;
Florin Coras93992a92017-05-24 18:03:56 -0700682 blks = 1;
683 }
684
Florin Coras9f9e9692018-10-19 17:49:00 -0700685 while ((right = left)
686 && bytes < (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
687 && blks < TCP_DUPACK_THRESHOLD
688 /* left not updated if above conditions fail */
689 && (left = scoreboard_prev_hole (sb, right)))
Florin Coras93992a92017-05-24 18:03:56 -0700690 {
Florin Corasecbd20b2018-10-17 23:34:54 -0700691 bytes += right->start - left->end;
Florin Coras93992a92017-05-24 18:03:56 -0700692 blks++;
Florin Coras93992a92017-05-24 18:03:56 -0700693 }
694
Florin Coras9f9e9692018-10-19 17:49:00 -0700695 /* left is first lost */
696 if (left)
Florin Coras93992a92017-05-24 18:03:56 -0700697 {
Florin Coras9f9e9692018-10-19 17:49:00 -0700698 do
699 {
700 sb->lost_bytes += scoreboard_hole_bytes (right);
701 left->is_lost = 1;
702 left = scoreboard_prev_hole (sb, right);
703 if (left)
704 bytes += right->start - left->end;
705 }
706 while ((right = left));
Florin Coras93992a92017-05-24 18:03:56 -0700707 }
Florin Coras9f9e9692018-10-19 17:49:00 -0700708
Florin Corasf03a59a2017-06-09 21:07:32 -0700709 sb->sacked_bytes = bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700710}
711
712/**
713 * Figure out the next hole to retransmit
714 *
715 * Follows logic proposed in RFC6675 Sec. 4, NextSeg()
716 */
717sack_scoreboard_hole_t *
718scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
719 sack_scoreboard_hole_t * start,
720 u8 have_sent_1_smss,
721 u8 * can_rescue, u8 * snd_limited)
722{
723 sack_scoreboard_hole_t *hole = 0;
724
725 hole = start ? start : scoreboard_first_hole (sb);
726 while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost)
727 hole = scoreboard_next_hole (sb, hole);
728
729 /* Nothing, return */
730 if (!hole)
731 {
732 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
733 return 0;
734 }
735
736 /* Rule (1): if higher than rxt, less than high_sacked and lost */
737 if (hole->is_lost && seq_lt (hole->start, sb->high_sacked))
738 {
739 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
740 }
741 else
742 {
743 /* Rule (2): output takes care of transmitting new data */
744 if (!have_sent_1_smss)
745 {
746 hole = 0;
747 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
748 }
749 /* Rule (3): if hole not lost */
750 else if (seq_lt (hole->start, sb->high_sacked))
751 {
752 *snd_limited = 1;
753 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
754 }
755 /* Rule (4): if hole beyond high_sacked */
756 else
757 {
758 ASSERT (seq_geq (hole->start, sb->high_sacked));
759 *snd_limited = 1;
760 *can_rescue = 1;
761 /* HighRxt MUST NOT be updated */
762 return 0;
763 }
764 }
765
766 if (hole && seq_lt (sb->high_rxt, hole->start))
767 sb->high_rxt = hole->start;
768
769 return hole;
770}
771
Florin Coras0dbd5172018-06-25 16:19:34 -0700772static void
Florin Coras3eb50622017-07-13 01:24:57 -0400773scoreboard_init_high_rxt (sack_scoreboard_t * sb, u32 seq)
Florin Coras93992a92017-05-24 18:03:56 -0700774{
775 sack_scoreboard_hole_t *hole;
776 hole = scoreboard_first_hole (sb);
Florin Coras3eb50622017-07-13 01:24:57 -0400777 if (hole)
778 {
779 seq = seq_gt (seq, hole->start) ? seq : hole->start;
780 sb->cur_rxt_hole = sb->head;
781 }
782 sb->high_rxt = seq;
783}
784
Florin Coras0dbd5172018-06-25 16:19:34 -0700785void
786scoreboard_init (sack_scoreboard_t * sb)
787{
788 sb->head = TCP_INVALID_SACK_HOLE_INDEX;
789 sb->tail = TCP_INVALID_SACK_HOLE_INDEX;
790 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
791}
792
793void
794scoreboard_clear (sack_scoreboard_t * sb)
795{
796 sack_scoreboard_hole_t *hole;
797 while ((hole = scoreboard_first_hole (sb)))
798 {
799 scoreboard_remove_hole (sb, hole);
800 }
801 ASSERT (sb->head == sb->tail && sb->head == TCP_INVALID_SACK_HOLE_INDEX);
802 ASSERT (pool_elts (sb->holes) == 0);
803 sb->sacked_bytes = 0;
804 sb->last_sacked_bytes = 0;
805 sb->last_bytes_delivered = 0;
806 sb->snd_una_adv = 0;
807 sb->high_sacked = 0;
808 sb->high_rxt = 0;
809 sb->lost_bytes = 0;
810 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
811}
812
Florin Coras3eb50622017-07-13 01:24:57 -0400813/**
814 * Test that scoreboard is sane after recovery
815 *
816 * Returns 1 if scoreboard is empty or if first hole beyond
817 * snd_una.
818 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700819static u8
Florin Coras3eb50622017-07-13 01:24:57 -0400820tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc)
821{
822 sack_scoreboard_hole_t *hole;
823 hole = scoreboard_first_hole (&tc->sack_sb);
Florin Corasecbd20b2018-10-17 23:34:54 -0700824 return (!hole || (seq_geq (hole->start, tc->snd_una)
825 && seq_lt (hole->end, tc->snd_una_max)));
Florin Coras93992a92017-05-24 18:03:56 -0700826}
827
828void
Dave Barach68b0fb02017-02-28 15:15:56 -0500829tcp_rcv_sacks (tcp_connection_t * tc, u32 ack)
830{
831 sack_scoreboard_t *sb = &tc->sack_sb;
832 sack_block_t *blk, tmp;
Florin Corasf03a59a2017-06-09 21:07:32 -0700833 sack_scoreboard_hole_t *hole, *next_hole, *last_hole;
Florin Coras93992a92017-05-24 18:03:56 -0700834 u32 blk_index = 0, old_sacked_bytes, hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500835 int i, j;
836
Florin Coras6792ec02017-03-13 03:49:51 -0700837 sb->last_sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700838 sb->last_bytes_delivered = 0;
Florin Coras352c2c42018-06-26 01:22:41 -0700839 sb->snd_una_adv = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700840
Florin Coras93992a92017-05-24 18:03:56 -0700841 if (!tcp_opts_sack (&tc->rcv_opts)
842 && sb->head == TCP_INVALID_SACK_HOLE_INDEX)
Dave Barach68b0fb02017-02-28 15:15:56 -0500843 return;
844
Florin Coras352c2c42018-06-26 01:22:41 -0700845 old_sacked_bytes = sb->sacked_bytes;
846
Dave Barach68b0fb02017-02-28 15:15:56 -0500847 /* Remove invalid blocks */
Florin Coras93992a92017-05-24 18:03:56 -0700848 blk = tc->rcv_opts.sacks;
849 while (blk < vec_end (tc->rcv_opts.sacks))
Florin Coras6792ec02017-03-13 03:49:51 -0700850 {
851 if (seq_lt (blk->start, blk->end)
852 && seq_gt (blk->start, tc->snd_una)
Florin Coras3eb50622017-07-13 01:24:57 -0400853 && seq_gt (blk->start, ack) && seq_leq (blk->end, tc->snd_una_max))
Florin Coras6792ec02017-03-13 03:49:51 -0700854 {
855 blk++;
856 continue;
857 }
Florin Coras93992a92017-05-24 18:03:56 -0700858 vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks);
Florin Coras6792ec02017-03-13 03:49:51 -0700859 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500860
861 /* Add block for cumulative ack */
862 if (seq_gt (ack, tc->snd_una))
863 {
864 tmp.start = tc->snd_una;
865 tmp.end = ack;
Florin Coras93992a92017-05-24 18:03:56 -0700866 vec_add1 (tc->rcv_opts.sacks, tmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500867 }
868
Florin Coras93992a92017-05-24 18:03:56 -0700869 if (vec_len (tc->rcv_opts.sacks) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500870 return;
871
Florin Coras3eb50622017-07-13 01:24:57 -0400872 tcp_scoreboard_trace_add (tc, ack);
873
Dave Barach68b0fb02017-02-28 15:15:56 -0500874 /* Make sure blocks are ordered */
Florin Coras93992a92017-05-24 18:03:56 -0700875 for (i = 0; i < vec_len (tc->rcv_opts.sacks); i++)
876 for (j = i + 1; j < vec_len (tc->rcv_opts.sacks); j++)
877 if (seq_lt (tc->rcv_opts.sacks[j].start, tc->rcv_opts.sacks[i].start))
Dave Barach68b0fb02017-02-28 15:15:56 -0500878 {
Florin Coras93992a92017-05-24 18:03:56 -0700879 tmp = tc->rcv_opts.sacks[i];
880 tc->rcv_opts.sacks[i] = tc->rcv_opts.sacks[j];
881 tc->rcv_opts.sacks[j] = tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500882 }
883
Dave Barach68b0fb02017-02-28 15:15:56 -0500884 if (sb->head == TCP_INVALID_SACK_HOLE_INDEX)
885 {
Florin Coras6792ec02017-03-13 03:49:51 -0700886 /* If no holes, insert the first that covers all outstanding bytes */
887 last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
888 tc->snd_una, tc->snd_una_max);
889 sb->tail = scoreboard_hole_index (sb, last_hole);
Florin Coras93992a92017-05-24 18:03:56 -0700890 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
891 sb->high_sacked = tmp.end;
Florin Coras6792ec02017-03-13 03:49:51 -0700892 }
893 else
894 {
895 /* If we have holes but snd_una_max is beyond the last hole, update
896 * last hole end */
Florin Coras93992a92017-05-24 18:03:56 -0700897 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
Florin Coras6792ec02017-03-13 03:49:51 -0700898 last_hole = scoreboard_last_hole (sb);
Dave Barach2c25a622017-06-26 11:35:07 -0400899 if (seq_gt (tc->snd_una_max, last_hole->end))
900 {
901 if (seq_geq (last_hole->start, sb->high_sacked))
902 {
903 last_hole->end = tc->snd_una_max;
904 }
905 /* New hole after high sacked block */
906 else if (seq_lt (sb->high_sacked, tc->snd_una_max))
907 {
908 scoreboard_insert_hole (sb, sb->tail, sb->high_sacked,
909 tc->snd_una_max);
910 }
911 }
912 /* Keep track of max byte sacked for when the last hole
Florin Corasf03a59a2017-06-09 21:07:32 -0700913 * is acked */
914 if (seq_gt (tmp.end, sb->high_sacked))
915 sb->high_sacked = tmp.end;
Dave Barach68b0fb02017-02-28 15:15:56 -0500916 }
917
918 /* Walk the holes with the SACK blocks */
919 hole = pool_elt_at_index (sb->holes, sb->head);
Florin Coras93992a92017-05-24 18:03:56 -0700920 while (hole && blk_index < vec_len (tc->rcv_opts.sacks))
Dave Barach68b0fb02017-02-28 15:15:56 -0500921 {
Florin Coras93992a92017-05-24 18:03:56 -0700922 blk = &tc->rcv_opts.sacks[blk_index];
Dave Barach68b0fb02017-02-28 15:15:56 -0500923 if (seq_leq (blk->start, hole->start))
924 {
925 /* Block covers hole. Remove hole */
926 if (seq_geq (blk->end, hole->end))
927 {
928 next_hole = scoreboard_next_hole (sb, hole);
929
Florin Corasf03a59a2017-06-09 21:07:32 -0700930 /* Byte accounting: snd_una needs to be advanced */
931 if (blk->end == ack)
Dave Barach68b0fb02017-02-28 15:15:56 -0500932 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700933 if (next_hole)
Florin Coras06d11012017-05-17 14:21:51 -0700934 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700935 if (seq_lt (ack, next_hole->start))
936 sb->snd_una_adv = next_hole->start - ack;
937 sb->last_bytes_delivered +=
938 next_hole->start - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -0700939 }
Florin Coras3eb50622017-07-13 01:24:57 -0400940 else
Florin Coras06d11012017-05-17 14:21:51 -0700941 {
Dave Barach2c25a622017-06-26 11:35:07 -0400942 ASSERT (seq_geq (sb->high_sacked, ack));
Florin Coras93992a92017-05-24 18:03:56 -0700943 sb->snd_una_adv = sb->high_sacked - ack;
Florin Corasf03a59a2017-06-09 21:07:32 -0700944 sb->last_bytes_delivered += sb->high_sacked - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -0700945 }
946 }
947
Dave Barach68b0fb02017-02-28 15:15:56 -0500948 scoreboard_remove_hole (sb, hole);
949 hole = next_hole;
950 }
Florin Coras6792ec02017-03-13 03:49:51 -0700951 /* Partial 'head' overlap */
Dave Barach68b0fb02017-02-28 15:15:56 -0500952 else
953 {
Florin Coras6792ec02017-03-13 03:49:51 -0700954 if (seq_gt (blk->end, hole->start))
955 {
Florin Coras6792ec02017-03-13 03:49:51 -0700956 hole->start = blk->end;
957 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500958 blk_index++;
959 }
960 }
961 else
962 {
963 /* Hole must be split */
Florin Coras6792ec02017-03-13 03:49:51 -0700964 if (seq_lt (blk->end, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -0500965 {
Florin Coras6792ec02017-03-13 03:49:51 -0700966 hole_index = scoreboard_hole_index (sb, hole);
Florin Coras3eb50622017-07-13 01:24:57 -0400967 next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
968 hole->end);
Florin Coras6792ec02017-03-13 03:49:51 -0700969
970 /* Pool might've moved */
971 hole = scoreboard_get_hole (sb, hole_index);
972 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -0500973 blk_index++;
Florin Coras3eb50622017-07-13 01:24:57 -0400974 ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
Dave Barach68b0fb02017-02-28 15:15:56 -0500975 }
Florin Corasf03a59a2017-06-09 21:07:32 -0700976 else if (seq_lt (blk->start, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -0500977 {
Florin Coras6792ec02017-03-13 03:49:51 -0700978 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -0500979 }
Florin Coras93992a92017-05-24 18:03:56 -0700980 hole = scoreboard_next_hole (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500981 }
982 }
Florin Coras6792ec02017-03-13 03:49:51 -0700983
Florin Corasecbd20b2018-10-17 23:34:54 -0700984 if (pool_elts (sb->holes) == 1)
985 {
986 hole = scoreboard_first_hole (sb);
987 if (hole->start == ack + sb->snd_una_adv
988 && hole->end == tc->snd_una_max)
989 scoreboard_remove_hole (sb, hole);
990 }
991
Florin Corasf03a59a2017-06-09 21:07:32 -0700992 scoreboard_update_bytes (tc, sb);
993 sb->last_sacked_bytes = sb->sacked_bytes
994 - (old_sacked_bytes - sb->last_bytes_delivered);
Florin Corasca1c8f32018-05-23 21:01:30 -0700995 ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes || tcp_in_recovery (tc));
Florin Corasf03a59a2017-06-09 21:07:32 -0700996 ASSERT (sb->sacked_bytes == 0
997 || sb->sacked_bytes < tc->snd_una_max - seq_max (tc->snd_una, ack));
998 ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_una_max
999 - seq_max (tc->snd_una, ack));
Dave Barach2c25a622017-06-26 11:35:07 -04001000 ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
1001 || sb->holes[sb->head].start == ack + sb->snd_una_adv);
Florin Corasca1c8f32018-05-23 21:01:30 -07001002 TCP_EVT_DBG (TCP_EVT_CC_SCOREBOARD, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001003}
1004
Florin Coras93992a92017-05-24 18:03:56 -07001005/**
1006 * Try to update snd_wnd based on feedback received from peer.
Dave Barach68b0fb02017-02-28 15:15:56 -05001007 *
Florin Coras93992a92017-05-24 18:03:56 -07001008 * If successful, and new window is 'effectively' 0, activate persist
1009 * timer.
1010 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001011static void
1012tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
1013{
Florin Coras93992a92017-05-24 18:03:56 -07001014 /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
1015 * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
Florin Coras6792ec02017-03-13 03:49:51 -07001016 if (seq_lt (tc->snd_wl1, seq)
1017 || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001018 {
1019 tc->snd_wnd = snd_wnd;
1020 tc->snd_wl1 = seq;
1021 tc->snd_wl2 = ack;
Florin Coras6792ec02017-03-13 03:49:51 -07001022 TCP_EVT_DBG (TCP_EVT_SND_WND, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001023
Florin Corasbb292f42017-05-19 09:49:19 -07001024 if (tc->snd_wnd < tc->snd_mss)
1025 {
Florin Coras93992a92017-05-24 18:03:56 -07001026 /* Set persist timer if not set and we just got 0 wnd */
1027 if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
1028 && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
Florin Corasbb292f42017-05-19 09:49:19 -07001029 tcp_persist_timer_set (tc);
1030 }
Florin Coras3e350af2017-03-30 02:54:28 -07001031 else
Florin Coras93992a92017-05-24 18:03:56 -07001032 {
1033 tcp_persist_timer_reset (tc);
1034 if (!tcp_in_recovery (tc) && tc->rto_boff > 0)
1035 {
1036 tc->rto_boff = 0;
1037 tcp_update_rto (tc);
1038 }
1039 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001040 }
1041}
1042
Florin Corasd2aab832018-05-22 11:39:59 -07001043/**
1044 * Init loss recovery/fast recovery.
1045 *
1046 * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
1047 * updated in @ref tcp_cc_handle_event after fast retransmit
1048 */
Florin Coras6792ec02017-03-13 03:49:51 -07001049void
Florin Coras93992a92017-05-24 18:03:56 -07001050tcp_cc_init_congestion (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001051{
Florin Coras93992a92017-05-24 18:03:56 -07001052 tcp_fastrecovery_on (tc);
1053 tc->snd_congestion = tc->snd_una_max;
Florin Coras62166002018-04-18 16:40:55 -07001054 tc->cwnd_acc_bytes = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001055 tc->cc_algo->congestion (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001056 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001057}
1058
Florin Coras93992a92017-05-24 18:03:56 -07001059static void
1060tcp_cc_recovery_exit (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001061{
Florin Coras93992a92017-05-24 18:03:56 -07001062 tc->rto_boff = 0;
Florin Corasf1762d62017-09-24 19:43:08 -04001063 tcp_update_rto (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001064 tc->snd_rxt_ts = 0;
Florin Coras84275e92017-09-26 12:30:40 -04001065 tc->snd_nxt = tc->snd_una_max;
Florin Coras93992a92017-05-24 18:03:56 -07001066 tcp_recovery_off (tc);
Florin Corasf1762d62017-09-24 19:43:08 -04001067 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Florin Coras93992a92017-05-24 18:03:56 -07001068}
Florin Coras3e350af2017-03-30 02:54:28 -07001069
Florin Coras93992a92017-05-24 18:03:56 -07001070void
1071tcp_cc_fastrecovery_exit (tcp_connection_t * tc)
1072{
Florin Coras6792ec02017-03-13 03:49:51 -07001073 tc->cc_algo->recovered (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001074 tc->snd_rxt_bytes = 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001075 tc->rcv_dupacks = 0;
Florin Coras84275e92017-09-26 12:30:40 -04001076 tc->snd_nxt = tc->snd_una_max;
Florin Coras93992a92017-05-24 18:03:56 -07001077 tcp_fastrecovery_off (tc);
1078 tcp_fastrecovery_1_smss_off (tc);
Florin Corasf1762d62017-09-24 19:43:08 -04001079 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Dave Barach68b0fb02017-02-28 15:15:56 -05001080}
1081
1082static void
Florin Coras93992a92017-05-24 18:03:56 -07001083tcp_cc_congestion_undo (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001084{
Florin Coras93992a92017-05-24 18:03:56 -07001085 tc->cwnd = tc->prev_cwnd;
1086 tc->ssthresh = tc->prev_ssthresh;
1087 tc->snd_nxt = tc->snd_una_max;
1088 tc->rcv_dupacks = 0;
1089 if (tcp_in_recovery (tc))
1090 tcp_cc_recovery_exit (tc);
1091 ASSERT (tc->rto_boff == 0);
Florin Corasf1762d62017-09-24 19:43:08 -04001092 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 5);
Florin Coras93992a92017-05-24 18:03:56 -07001093 /* TODO extend for fastrecovery */
1094}
Dave Barach68b0fb02017-02-28 15:15:56 -05001095
Florin Coras93992a92017-05-24 18:03:56 -07001096static u8
1097tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
1098{
Florin Corasf1762d62017-09-24 19:43:08 -04001099 return (tcp_in_recovery (tc) && tc->rto_boff == 1
Dave Barach2c25a622017-06-26 11:35:07 -04001100 && tc->snd_rxt_ts
Florin Coras93992a92017-05-24 18:03:56 -07001101 && tcp_opts_tstamp (&tc->rcv_opts)
1102 && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
1103}
1104
Florin Coras0dbd5172018-06-25 16:19:34 -07001105static int
Florin Coras93992a92017-05-24 18:03:56 -07001106tcp_cc_recover (tcp_connection_t * tc)
1107{
1108 ASSERT (tcp_in_cong_recovery (tc));
1109 if (tcp_cc_is_spurious_retransmit (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001110 {
Florin Coras93992a92017-05-24 18:03:56 -07001111 tcp_cc_congestion_undo (tc);
1112 return 1;
1113 }
1114
1115 if (tcp_in_recovery (tc))
1116 tcp_cc_recovery_exit (tc);
1117 else if (tcp_in_fastrecovery (tc))
1118 tcp_cc_fastrecovery_exit (tc);
1119
1120 ASSERT (tc->rto_boff == 0);
1121 ASSERT (!tcp_in_cong_recovery (tc));
Florin Coras3eb50622017-07-13 01:24:57 -04001122 ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001123 return 0;
1124}
1125
1126static void
1127tcp_cc_update (tcp_connection_t * tc, vlib_buffer_t * b)
1128{
Florin Coras3eb50622017-07-13 01:24:57 -04001129 ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001130
1131 /* Congestion avoidance */
1132 tc->cc_algo->rcv_ack (tc);
1133 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1134
1135 /* If a cumulative ack, make sure dupacks is 0 */
1136 tc->rcv_dupacks = 0;
1137
1138 /* When dupacks hits the threshold we only enter fast retransmit if
1139 * cumulative ack covers more than snd_congestion. Should snd_una
1140 * wrap this test may fail under otherwise valid circumstances.
1141 * Therefore, proactively update snd_congestion when wrap detected. */
1142 if (PREDICT_FALSE
1143 (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1144 && seq_gt (tc->snd_congestion, tc->snd_una)))
1145 tc->snd_congestion = tc->snd_una - 1;
1146}
1147
1148static u8
1149tcp_should_fastrecover_sack (tcp_connection_t * tc)
1150{
1151 return (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss < tc->sack_sb.sacked_bytes;
1152}
1153
1154static u8
1155tcp_should_fastrecover (tcp_connection_t * tc)
1156{
1157 return (tc->rcv_dupacks == TCP_DUPACK_THRESHOLD
1158 || tcp_should_fastrecover_sack (tc));
1159}
1160
Florin Corasf03a59a2017-06-09 21:07:32 -07001161/**
1162 * One function to rule them all ... and in the darkness bind them
1163 */
Florin Coras93992a92017-05-24 18:03:56 -07001164static void
1165tcp_cc_handle_event (tcp_connection_t * tc, u32 is_dack)
1166{
Florin Corasf03a59a2017-06-09 21:07:32 -07001167 u32 rxt_delivered;
1168
Florin Corasca1c8f32018-05-23 21:01:30 -07001169 if (tcp_in_fastrecovery (tc) && tcp_opts_sack_permitted (&tc->rcv_opts))
1170 {
1171 if (tc->bytes_acked)
1172 goto partial_ack;
1173 tcp_fast_retransmit (tc);
1174 return;
1175 }
Florin Coras93992a92017-05-24 18:03:56 -07001176 /*
1177 * Duplicate ACK. Check if we should enter fast recovery, or if already in
1178 * it account for the bytes that left the network.
1179 */
Florin Corasca1c8f32018-05-23 21:01:30 -07001180 else if (is_dack && !tcp_in_recovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001181 {
Florin Corasd2aab832018-05-22 11:39:59 -07001182 TCP_EVT_DBG (TCP_EVT_DUPACK_RCVD, tc, 1);
Florin Coras93992a92017-05-24 18:03:56 -07001183 ASSERT (tc->snd_una != tc->snd_una_max
1184 || tc->sack_sb.last_sacked_bytes);
Dave Barach2c25a622017-06-26 11:35:07 -04001185
Florin Coras93992a92017-05-24 18:03:56 -07001186 tc->rcv_dupacks++;
1187
Florin Corasd2aab832018-05-22 11:39:59 -07001188 /* Pure duplicate ack. If some data got acked, it's handled lower */
Florin Coras93992a92017-05-24 18:03:56 -07001189 if (tc->rcv_dupacks > TCP_DUPACK_THRESHOLD && !tc->bytes_acked)
Dave Barach68b0fb02017-02-28 15:15:56 -05001190 {
Florin Coras93992a92017-05-24 18:03:56 -07001191 ASSERT (tcp_in_fastrecovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001192 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1193 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001194 }
Florin Coras93992a92017-05-24 18:03:56 -07001195 else if (tcp_should_fastrecover (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001196 {
Florin Corasd2aab832018-05-22 11:39:59 -07001197 ASSERT (!tcp_in_fastrecovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001198
Dave Barach2c25a622017-06-26 11:35:07 -04001199 /* If of of the two conditions lower hold, reset dupacks because
1200 * we're probably after timeout (RFC6582 heuristics).
1201 * If Cumulative ack does not cover more than congestion threshold,
1202 * and:
1203 * 1) The following doesn't hold: The congestion window is greater
1204 * than SMSS bytes and the difference between highest_ack
1205 * and prev_highest_ack is at most 4*SMSS bytes
1206 * 2) Echoed timestamp in the last non-dup ack does not equal the
1207 * stored timestamp
Florin Coras93992a92017-05-24 18:03:56 -07001208 */
Dave Barach2c25a622017-06-26 11:35:07 -04001209 if (seq_leq (tc->snd_una, tc->snd_congestion)
1210 && ((!(tc->cwnd > tc->snd_mss
1211 && tc->bytes_acked <= 4 * tc->snd_mss))
1212 || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
Florin Coras93992a92017-05-24 18:03:56 -07001213 {
1214 tc->rcv_dupacks = 0;
1215 return;
1216 }
1217
1218 tcp_cc_init_congestion (tc);
1219 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1220
1221 /* The first segment MUST be retransmitted */
1222 tcp_retransmit_first_unacked (tc);
1223
1224 /* Post retransmit update cwnd to ssthresh and account for the
1225 * three segments that have left the network and should've been
1226 * buffered at the receiver XXX */
1227 tc->cwnd = tc->ssthresh + tc->rcv_dupacks * tc->snd_mss;
Dave Barach2c25a622017-06-26 11:35:07 -04001228 ASSERT (tc->cwnd >= tc->snd_mss);
Florin Coras93992a92017-05-24 18:03:56 -07001229
1230 /* If cwnd allows, send more data */
Florin Coras3eb50622017-07-13 01:24:57 -04001231 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras93992a92017-05-24 18:03:56 -07001232 {
Florin Coras3eb50622017-07-13 01:24:57 -04001233 scoreboard_init_high_rxt (&tc->sack_sb,
1234 tc->snd_una + tc->snd_mss);
Florin Coras93992a92017-05-24 18:03:56 -07001235 tcp_fast_retransmit_sack (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001236 }
1237 else
1238 {
Florin Coras93992a92017-05-24 18:03:56 -07001239 tcp_fast_retransmit_no_sack (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001240 }
Florin Coras93992a92017-05-24 18:03:56 -07001241 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001242 }
Florin Coras93992a92017-05-24 18:03:56 -07001243 else if (!tc->bytes_acked
1244 || (tc->bytes_acked && !tcp_in_cong_recovery (tc)))
1245 {
1246 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1247 return;
1248 }
1249 else
1250 goto partial_ack;
1251 }
1252
Florin Coras93992a92017-05-24 18:03:56 -07001253 if (!tc->bytes_acked)
1254 return;
1255
1256partial_ack:
Florin Corasd2aab832018-05-22 11:39:59 -07001257 TCP_EVT_DBG (TCP_EVT_CC_PACK, tc);
1258
Florin Coras93992a92017-05-24 18:03:56 -07001259 /*
1260 * Legitimate ACK. 1) See if we can exit recovery
1261 */
1262 /* XXX limit this only to first partial ack? */
Florin Coras3ec66b02018-08-23 16:27:05 -07001263 if (seq_lt (tc->snd_una, tc->snd_congestion))
1264 tcp_retransmit_timer_force_update (tc);
1265 else
1266 tcp_retransmit_timer_update (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001267
1268 if (seq_geq (tc->snd_una, tc->snd_congestion))
1269 {
1270 /* If spurious return, we've already updated everything */
1271 if (tcp_cc_recover (tc))
Florin Corasf03a59a2017-06-09 21:07:32 -07001272 {
1273 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1274 return;
1275 }
Florin Coras93992a92017-05-24 18:03:56 -07001276
1277 tc->snd_nxt = tc->snd_una_max;
1278
1279 /* Treat as congestion avoidance ack */
1280 tc->cc_algo->rcv_ack (tc);
1281 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1282 return;
1283 }
1284
1285 /*
1286 * Legitimate ACK. 2) If PARTIAL ACK try to retransmit
1287 */
Florin Coras93992a92017-05-24 18:03:56 -07001288
1289 /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
Florin Corasd2aab832018-05-22 11:39:59 -07001290 * reset dupacks to 0. Also needed if in congestion recovery */
Florin Coras93992a92017-05-24 18:03:56 -07001291 tc->rcv_dupacks = 0;
1292
Florin Coras93992a92017-05-24 18:03:56 -07001293 /* Post RTO timeout don't try anything fancy */
1294 if (tcp_in_recovery (tc))
Florin Corasd2aab832018-05-22 11:39:59 -07001295 {
1296 tc->cc_algo->rcv_ack (tc);
1297 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
Florin Coras3ec66b02018-08-23 16:27:05 -07001298 transport_add_tx_event (&tc->connection);
Florin Corasd2aab832018-05-22 11:39:59 -07001299 return;
1300 }
Florin Coras93992a92017-05-24 18:03:56 -07001301
1302 /* Remove retransmitted bytes that have been delivered */
Florin Corasf03a59a2017-06-09 21:07:32 -07001303 ASSERT (tc->bytes_acked + tc->sack_sb.snd_una_adv
Florin Corasb2215d62017-08-01 16:56:58 -07001304 >= tc->sack_sb.last_bytes_delivered
1305 || (tc->flags & TCP_CONN_FINSNT));
Florin Coras3eb50622017-07-13 01:24:57 -04001306
1307 if (seq_lt (tc->snd_una, tc->sack_sb.high_rxt))
Florin Coras93992a92017-05-24 18:03:56 -07001308 {
1309 /* If we have sacks and we haven't gotten an ack beyond high_rxt,
1310 * remove sacked bytes delivered */
Florin Coras3eb50622017-07-13 01:24:57 -04001311 rxt_delivered = tc->bytes_acked + tc->sack_sb.snd_una_adv
1312 - tc->sack_sb.last_bytes_delivered;
Florin Corasf03a59a2017-06-09 21:07:32 -07001313 ASSERT (tc->snd_rxt_bytes >= rxt_delivered);
1314 tc->snd_rxt_bytes -= rxt_delivered;
Dave Barach68b0fb02017-02-28 15:15:56 -05001315 }
1316 else
1317 {
Florin Coras93992a92017-05-24 18:03:56 -07001318 /* Either all retransmitted holes have been acked, or we're
1319 * "in the blind" and retransmitting segment by segment */
1320 tc->snd_rxt_bytes = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001321 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001322
Florin Coras93992a92017-05-24 18:03:56 -07001323 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_PARTIALACK);
Dave Barach68b0fb02017-02-28 15:15:56 -05001324
Florin Coras93992a92017-05-24 18:03:56 -07001325 /*
1326 * Since this was a partial ack, try to retransmit some more data
1327 */
1328 tcp_fast_retransmit (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001329}
1330
Florin Coras93992a92017-05-24 18:03:56 -07001331/**
1332 * Process incoming ACK
1333 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001334static int
1335tcp_rcv_ack (tcp_connection_t * tc, vlib_buffer_t * b,
1336 tcp_header_t * th, u32 * next, u32 * error)
1337{
Florin Coras93992a92017-05-24 18:03:56 -07001338 u32 prev_snd_wnd, prev_snd_una;
1339 u8 is_dack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001340
Florin Corasf03a59a2017-06-09 21:07:32 -07001341 TCP_EVT_DBG (TCP_EVT_CC_STAT, tc);
1342
Florin Coras6792ec02017-03-13 03:49:51 -07001343 /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
Florin Coras93992a92017-05-24 18:03:56 -07001344 if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001345 {
Florin Corasca1c8f32018-05-23 21:01:30 -07001346 /* When we entered recovery, we reset snd_nxt to snd_una. Seems peer
1347 * still has the data so accept the ack */
1348 if (tcp_in_recovery (tc)
Florin Coras3ec66b02018-08-23 16:27:05 -07001349 && seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_congestion))
Florin Corasca1c8f32018-05-23 21:01:30 -07001350 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001351 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
1352 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
1353 tc->snd_una_max = tc->snd_nxt;
Florin Corasca1c8f32018-05-23 21:01:30 -07001354 goto process_ack;
1355 }
1356
Florin Coras6792ec02017-03-13 03:49:51 -07001357 /* If we have outstanding data and this is within the window, accept it,
1358 * probably retransmit has timed out. Otherwise ACK segment and then
1359 * drop it */
1360 if (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max))
1361 {
1362 tcp_make_ack (tc, b);
1363 *next = tcp_next_output (tc->c_is_ip4);
1364 *error = TCP_ERROR_ACK_INVALID;
1365 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 0,
1366 vnet_buffer (b)->tcp.ack_number);
1367 return -1;
1368 }
1369
Florin Coras6792ec02017-03-13 03:49:51 -07001370 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 2,
1371 vnet_buffer (b)->tcp.ack_number);
Florin Coras3e350af2017-03-30 02:54:28 -07001372
1373 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
1374 *error = TCP_ERROR_ACK_FUTURE;
Dave Barach68b0fb02017-02-28 15:15:56 -05001375 }
1376
Florin Coras6792ec02017-03-13 03:49:51 -07001377 /* If old ACK, probably it's an old dupack */
Florin Coras93992a92017-05-24 18:03:56 -07001378 if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001379 {
1380 *error = TCP_ERROR_ACK_OLD;
Florin Coras6792ec02017-03-13 03:49:51 -07001381 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 1,
1382 vnet_buffer (b)->tcp.ack_number);
1383 if (tcp_in_fastrecovery (tc) && tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
Florin Corasca1c8f32018-05-23 21:01:30 -07001384 tcp_cc_handle_event (tc, 1);
Florin Corasc28764f2017-04-26 00:08:42 -07001385 /* Don't drop yet */
1386 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001387 }
1388
Florin Coras93992a92017-05-24 18:03:56 -07001389 /*
1390 * Looks okay, process feedback
1391 */
Florin Corasca1c8f32018-05-23 21:01:30 -07001392process_ack:
Florin Coras93992a92017-05-24 18:03:56 -07001393 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001394 tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1395
Florin Coras93992a92017-05-24 18:03:56 -07001396 prev_snd_wnd = tc->snd_wnd;
1397 prev_snd_una = tc->snd_una;
1398 tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1399 vnet_buffer (b)->tcp.ack_number,
1400 clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1401 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
1402 tc->snd_una = vnet_buffer (b)->tcp.ack_number + tc->sack_sb.snd_una_adv;
1403 tcp_validate_txf_size (tc, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001404
Florin Coras93992a92017-05-24 18:03:56 -07001405 if (tc->bytes_acked)
1406 tcp_dequeue_acked (tc, vnet_buffer (b)->tcp.ack_number);
1407
Florin Coras6534b7a2017-07-18 05:38:03 -04001408 TCP_EVT_DBG (TCP_EVT_ACK_RCVD, tc);
1409
Florin Coras93992a92017-05-24 18:03:56 -07001410 /*
1411 * Check if we have congestion event
1412 */
1413
1414 if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001415 {
Florin Coras93992a92017-05-24 18:03:56 -07001416 tcp_cc_handle_event (tc, is_dack);
Florin Corasb2215d62017-08-01 16:56:58 -07001417 if (!tcp_in_cong_recovery (tc))
1418 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001419 *error = TCP_ERROR_ACK_DUP;
Florin Corasca09d072018-10-01 18:31:02 -07001420 if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th))
1421 return 0;
1422 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001423 }
1424
Florin Coras6792ec02017-03-13 03:49:51 -07001425 /*
Florin Coras93992a92017-05-24 18:03:56 -07001426 * Update congestion control (slow start/congestion avoidance)
Florin Coras6792ec02017-03-13 03:49:51 -07001427 */
Florin Coras93992a92017-05-24 18:03:56 -07001428 tcp_cc_update (tc, b);
Florin Coras00cd22d2018-04-18 13:20:18 -07001429 *error = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001430 return 0;
1431}
1432
Florin Coras3eb50622017-07-13 01:24:57 -04001433static u8
1434tcp_sack_vector_is_sane (sack_block_t * sacks)
1435{
1436 int i;
1437 for (i = 1; i < vec_len (sacks); i++)
1438 {
1439 if (sacks[i - 1].end == sacks[i].start)
1440 return 0;
1441 }
1442 return 1;
1443}
1444
Dave Barach68b0fb02017-02-28 15:15:56 -05001445/**
1446 * Build SACK list as per RFC2018.
1447 *
1448 * Makes sure the first block contains the segment that generated the current
1449 * ACK and the following ones are the ones most recently reported in SACK
1450 * blocks.
1451 *
1452 * @param tc TCP connection for which the SACK list is updated
1453 * @param start Start sequence number of the newest SACK block
1454 * @param end End sequence of the newest SACK block
1455 */
Florin Coras45d34962017-04-25 00:05:27 -07001456void
Dave Barach68b0fb02017-02-28 15:15:56 -05001457tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1458{
Florin Coras45d34962017-04-25 00:05:27 -07001459 sack_block_t *new_list = 0, *block = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001460 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001461
1462 /* If the first segment is ooo add it to the list. Last write might've moved
1463 * rcv_nxt over the first segment. */
1464 if (seq_lt (tc->rcv_nxt, start))
1465 {
Florin Coras45d34962017-04-25 00:05:27 -07001466 vec_add2 (new_list, block, 1);
1467 block->start = start;
1468 block->end = end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001469 }
1470
1471 /* Find the blocks still worth keeping. */
1472 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1473 {
Florin Coras45d34962017-04-25 00:05:27 -07001474 /* Discard if rcv_nxt advanced beyond current block */
1475 if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001476 continue;
1477
Florin Coras45d34962017-04-25 00:05:27 -07001478 /* Merge or drop if segment overlapped by the new segment */
1479 if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1480 && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1481 {
1482 if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1483 new_list[0].start = tc->snd_sacks[i].start;
1484 if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1485 new_list[0].end = tc->snd_sacks[i].end;
1486 continue;
1487 }
1488
1489 /* Save to new SACK list if we have space. */
1490 if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
1491 {
1492 vec_add1 (new_list, tc->snd_sacks[i]);
1493 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001494 else
1495 {
1496 clib_warning ("sack discarded");
1497 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001498 }
1499
Florin Coras45d34962017-04-25 00:05:27 -07001500 ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
Florin Coras6792ec02017-03-13 03:49:51 -07001501
Dave Barach68b0fb02017-02-28 15:15:56 -05001502 /* Replace old vector with new one */
1503 vec_free (tc->snd_sacks);
1504 tc->snd_sacks = new_list;
Florin Coras3eb50622017-07-13 01:24:57 -04001505
1506 /* Segments should not 'touch' */
1507 ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
Dave Barach68b0fb02017-02-28 15:15:56 -05001508}
1509
Florin Corasca1c8f32018-05-23 21:01:30 -07001510u32
1511tcp_sack_list_bytes (tcp_connection_t * tc)
1512{
1513 u32 bytes = 0, i;
1514 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1515 bytes += tc->snd_sacks[i].end - tc->snd_sacks[i].start;
1516 return bytes;
1517}
1518
Dave Barach68b0fb02017-02-28 15:15:56 -05001519/** Enqueue data for delivery to application */
Florin Coras0dbd5172018-06-25 16:19:34 -07001520static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001521tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1522 u16 data_len)
1523{
Florin Coras1f152cd2017-08-18 19:28:03 -07001524 int written, error = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001525
Dave Barach2c25a622017-06-26 11:35:07 -04001526 ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001527 ASSERT (data_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001528 written = session_enqueue_stream_connection (&tc->connection, b, 0,
1529 1 /* queue event */ , 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001530
Florin Coras6792ec02017-03-13 03:49:51 -07001531 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 0, data_len, written);
1532
Dave Barach68b0fb02017-02-28 15:15:56 -05001533 /* Update rcv_nxt */
1534 if (PREDICT_TRUE (written == data_len))
1535 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001536 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001537 }
1538 /* If more data written than expected, account for out-of-order bytes. */
1539 else if (written > data_len)
1540 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001541 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001542
1543 /* Send ACK confirming the update */
1544 tc->flags |= TCP_CONN_SNDACK;
Florin Corasca1c8f32018-05-23 21:01:30 -07001545 TCP_EVT_DBG (TCP_EVT_CC_INPUT, tc, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001546 }
1547 else if (written > 0)
1548 {
1549 /* We've written something but FIFO is probably full now */
1550 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001551
Florin Coras6792ec02017-03-13 03:49:51 -07001552 /* Depending on how fast the app is, all remaining buffers in burst will
Florin Coras3e350af2017-03-30 02:54:28 -07001553 * not be enqueued. Inform peer */
1554 tc->flags |= TCP_CONN_SNDACK;
1555
Florin Coras1f152cd2017-08-18 19:28:03 -07001556 error = TCP_ERROR_PARTIALLY_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001557 }
1558 else
1559 {
Florin Coras3e350af2017-03-30 02:54:28 -07001560 tc->flags |= TCP_CONN_SNDACK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001561 return TCP_ERROR_FIFO_FULL;
1562 }
1563
Florin Coras6792ec02017-03-13 03:49:51 -07001564 /* Update SACK list if need be */
Florin Coras93992a92017-05-24 18:03:56 -07001565 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras6792ec02017-03-13 03:49:51 -07001566 {
1567 /* Remove SACK blocks that have been delivered */
1568 tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1569 }
1570
Florin Coras1f152cd2017-08-18 19:28:03 -07001571 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -05001572}
1573
1574/** Enqueue out-of-order data */
Florin Coras0dbd5172018-06-25 16:19:34 -07001575static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001576tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1577 u16 data_len)
1578{
1579 stream_session_t *s0;
Florin Coras3eb50622017-07-13 01:24:57 -04001580 int rv, offset;
Florin Coras6792ec02017-03-13 03:49:51 -07001581
Florin Corasf03a59a2017-06-09 21:07:32 -07001582 ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001583 ASSERT (data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001584
Florin Corasf03a59a2017-06-09 21:07:32 -07001585 /* Enqueue out-of-order data with relative offset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07001586 rv = session_enqueue_stream_connection (&tc->connection, b,
1587 vnet_buffer (b)->tcp.seq_number -
1588 tc->rcv_nxt, 0 /* queue event */ ,
1589 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001590
1591 /* Nothing written */
1592 if (rv)
1593 {
1594 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, 0);
1595 return TCP_ERROR_FIFO_FULL;
1596 }
1597
1598 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001599
1600 /* Update SACK list if in use */
Florin Coras93992a92017-05-24 18:03:56 -07001601 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001602 {
1603 ooo_segment_t *newest;
1604 u32 start, end;
1605
Florin Corascea194d2017-10-02 00:18:51 -07001606 s0 = session_get (tc->c_s_index, tc->c_thread_index);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001607
Dave Barach68b0fb02017-02-28 15:15:56 -05001608 /* Get the newest segment from the fifo */
1609 newest = svm_fifo_newest_ooo_segment (s0->server_rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001610 if (newest)
1611 {
Florin Coras3eb50622017-07-13 01:24:57 -04001612 offset = ooo_segment_offset (s0->server_rx_fifo, newest);
1613 ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1614 start = tc->rcv_nxt + offset;
Florin Corasf03a59a2017-06-09 21:07:32 -07001615 end = start + ooo_segment_length (s0->server_rx_fifo, newest);
1616 tcp_update_sack_list (tc, start, end);
Florin Coras3eb50622017-07-13 01:24:57 -04001617 svm_fifo_newest_ooo_segment_reset (s0->server_rx_fifo);
Florin Corasca1c8f32018-05-23 21:01:30 -07001618 TCP_EVT_DBG (TCP_EVT_CC_SACKS, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001619 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001620 }
1621
Florin Coras00cd22d2018-04-18 13:20:18 -07001622 return TCP_ERROR_ENQUEUED_OOO;
Dave Barach68b0fb02017-02-28 15:15:56 -05001623}
1624
1625/**
Florin Coras6792ec02017-03-13 03:49:51 -07001626 * Check if ACK could be delayed. If ack can be delayed, it should return
1627 * true for a full frame. If we're always acking return 0.
Dave Barach68b0fb02017-02-28 15:15:56 -05001628 */
1629always_inline int
1630tcp_can_delack (tcp_connection_t * tc)
1631{
Florin Coras6792ec02017-03-13 03:49:51 -07001632 /* Send ack if ... */
1633 if (TCP_ALWAYS_ACK
1634 /* just sent a rcv wnd 0 */
1635 || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0
1636 /* constrained to send ack */
1637 || (tc->flags & TCP_CONN_SNDACK) != 0
1638 /* we're almost out of tx wnd */
Florin Corasca1c8f32018-05-23 21:01:30 -07001639 || tcp_available_cc_snd_space (tc) < 4 * tc->snd_mss)
Florin Coras6792ec02017-03-13 03:49:51 -07001640 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001641
Florin Coras6792ec02017-03-13 03:49:51 -07001642 return 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001643}
1644
1645static int
Florin Corasb2215d62017-08-01 16:56:58 -07001646tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
1647{
Florin Coras1f152cd2017-08-18 19:28:03 -07001648 u32 discard, first = b->current_length;
Florin Corasb2215d62017-08-01 16:56:58 -07001649 vlib_main_t *vm = vlib_get_main ();
1650
Florin Coras1f152cd2017-08-18 19:28:03 -07001651 /* Handle multi-buffer segments */
Florin Corasb2215d62017-08-01 16:56:58 -07001652 if (n_bytes_to_drop > b->current_length)
1653 {
1654 if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1655 return -1;
1656 do
1657 {
1658 discard = clib_min (n_bytes_to_drop, b->current_length);
1659 vlib_buffer_advance (b, discard);
1660 b = vlib_get_buffer (vm, b->next_buffer);
1661 n_bytes_to_drop -= discard;
1662 }
1663 while (n_bytes_to_drop);
Florin Coras1f152cd2017-08-18 19:28:03 -07001664 if (n_bytes_to_drop > first)
1665 b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
Florin Corasb2215d62017-08-01 16:56:58 -07001666 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001667 else
1668 vlib_buffer_advance (b, n_bytes_to_drop);
1669 vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
Florin Corasb2215d62017-08-01 16:56:58 -07001670 return 0;
1671}
1672
Florin Coras00cd22d2018-04-18 13:20:18 -07001673/**
1674 * Receive buffer for connection and handle acks
1675 *
1676 * It handles both in order or out-of-order data.
1677 */
Florin Corasb2215d62017-08-01 16:56:58 -07001678static int
Florin Coras00cd22d2018-04-18 13:20:18 -07001679tcp_segment_rcv (tcp_connection_t * tc, vlib_buffer_t * b, u32 * next0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001680{
Florin Coras00cd22d2018-04-18 13:20:18 -07001681 u32 error, n_bytes_to_drop, n_data_bytes;
Florin Coras6534b7a2017-07-18 05:38:03 -04001682
1683 vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1684 n_data_bytes = vnet_buffer (b)->tcp.data_len;
1685 ASSERT (n_data_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001686
1687 /* Handle out-of-order data */
1688 if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1689 {
Florin Coras6792ec02017-03-13 03:49:51 -07001690 /* Old sequence numbers allowed through because they overlapped
1691 * the rx window */
1692 if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001693 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001694 /* Completely in the past (possible retransmit). Ack
1695 * retransmissions since we may not have any data to send */
Florin Corasf03a59a2017-06-09 21:07:32 -07001696 if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
Florin Coras6534b7a2017-07-18 05:38:03 -04001697 {
Florin Coras6534b7a2017-07-18 05:38:03 -04001698 tcp_make_ack (tc, b);
Florin Coras00cd22d2018-04-18 13:20:18 -07001699 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras6534b7a2017-07-18 05:38:03 -04001700 *next0 = tcp_next_output (tc->c_is_ip4);
1701 goto done;
1702 }
Dave Barach259cdae2017-05-15 16:27:05 -04001703
Florin Coras00cd22d2018-04-18 13:20:18 -07001704 /* Chop off the bytes in the past and see if what is left
1705 * can be enqueued in order */
Florin Corasdb84e572017-05-09 18:54:52 -07001706 n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1707 n_data_bytes -= n_bytes_to_drop;
Dave Barach2c25a622017-06-26 11:35:07 -04001708 vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001709 if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
Florin Coras00cd22d2018-04-18 13:20:18 -07001710 {
1711 error = TCP_ERROR_SEGMENT_OLD;
1712 *next0 = tcp_next_drop (tc->c_is_ip4);
1713 goto done;
1714 }
Florin Corasdb84e572017-05-09 18:54:52 -07001715 goto in_order;
Dave Barach68b0fb02017-02-28 15:15:56 -05001716 }
1717
Florin Coras00cd22d2018-04-18 13:20:18 -07001718 /* RFC2581: Enqueue and send DUPACK for fast retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001719 error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
Florin Coras6792ec02017-03-13 03:49:51 -07001720 *next0 = tcp_next_output (tc->c_is_ip4);
Florin Coras00cd22d2018-04-18 13:20:18 -07001721 tcp_make_ack (tc, b);
1722 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_DUPACK;
Florin Corasca1c8f32018-05-23 21:01:30 -07001723 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
Dave Barach68b0fb02017-02-28 15:15:56 -05001724 goto done;
1725 }
1726
Florin Corasdb84e572017-05-09 18:54:52 -07001727in_order:
1728
Dave Barach68b0fb02017-02-28 15:15:56 -05001729 /* In order data, enqueue. Fifo figures out by itself if any out-of-order
1730 * segments can be enqueued after fifo tail offset changes. */
1731 error = tcp_session_enqueue_data (tc, b, n_data_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001732 if (tcp_can_delack (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001733 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001734 *next0 = tcp_next_drop (tc->c_is_ip4);
Florin Coras6792ec02017-03-13 03:49:51 -07001735 if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
1736 tcp_timer_set (tc, TCP_TIMER_DELACK, TCP_DELACK_TIME);
Florin Coras3e350af2017-03-30 02:54:28 -07001737 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001738 }
1739
Florin Coras3e350af2017-03-30 02:54:28 -07001740 *next0 = tcp_next_output (tc->c_is_ip4);
1741 tcp_make_ack (tc, b);
1742
Dave Barach68b0fb02017-02-28 15:15:56 -05001743done:
1744 return error;
1745}
1746
Clement Durand6cf260c2017-04-13 13:27:04 +02001747typedef struct
1748{
1749 tcp_header_t tcp_header;
1750 tcp_connection_t tcp_connection;
1751} tcp_rx_trace_t;
1752
Florin Coras0dbd5172018-06-25 16:19:34 -07001753static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02001754format_tcp_rx_trace (u8 * s, va_list * args)
1755{
1756 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1757 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1758 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +02001759 u32 indent = format_get_indent (s);
Clement Durand6cf260c2017-04-13 13:27:04 +02001760
1761 s = format (s, "%U\n%U%U",
1762 format_tcp_header, &t->tcp_header, 128,
1763 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -07001764 format_tcp_connection, &t->tcp_connection, 1);
Clement Durand6cf260c2017-04-13 13:27:04 +02001765
1766 return s;
1767}
1768
Florin Coras0dbd5172018-06-25 16:19:34 -07001769static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02001770format_tcp_rx_trace_short (u8 * s, va_list * args)
1771{
1772 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1773 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1774 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
1775
1776 s = format (s, "%d -> %d (%U)",
Florin Coras4df38712018-06-20 12:44:16 -07001777 clib_net_to_host_u16 (t->tcp_header.dst_port),
1778 clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state,
Florin Corasbb292f42017-05-19 09:49:19 -07001779 t->tcp_connection.state);
Clement Durand6cf260c2017-04-13 13:27:04 +02001780
1781 return s;
1782}
1783
Florin Coras4df38712018-06-20 12:44:16 -07001784static void
Florin Coras82b13a82017-04-25 11:58:06 -07001785tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
1786 tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
1787{
1788 if (tc0)
1789 {
1790 clib_memcpy (&t0->tcp_connection, tc0, sizeof (t0->tcp_connection));
1791 }
1792 else
1793 {
1794 th0 = tcp_buffer_hdr (b0);
1795 }
1796 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
1797}
1798
Florin Coras4df38712018-06-20 12:44:16 -07001799static void
1800tcp_established_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
1801 vlib_frame_t * frame, u8 is_ip4)
1802{
1803 u32 *from, n_left;
1804
1805 n_left = frame->n_vectors;
1806 from = vlib_frame_vector_args (frame);
1807
1808 while (n_left >= 1)
1809 {
1810 tcp_connection_t *tc0;
1811 tcp_rx_trace_t *t0;
1812 tcp_header_t *th0;
1813 vlib_buffer_t *b0;
1814 u32 bi0;
1815
1816 bi0 = from[0];
1817 b0 = vlib_get_buffer (vm, bi0);
1818
1819 if (b0->flags & VLIB_BUFFER_IS_TRACED)
1820 {
1821 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
1822 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
1823 vm->thread_index);
1824 th0 = tcp_buffer_hdr (b0);
1825 tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
1826 }
1827
1828 from += 1;
1829 n_left -= 1;
1830 }
1831}
1832
Florin Coras6792ec02017-03-13 03:49:51 -07001833always_inline void
Florin Coras00cd22d2018-04-18 13:20:18 -07001834tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
1835 u8 is_ip4, u32 evt, u32 val)
Dave Barach68b0fb02017-02-28 15:15:56 -05001836{
Florin Coras6792ec02017-03-13 03:49:51 -07001837 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -07001838 vlib_node_increment_counter (vm, tcp4_node, evt, val);
Florin Coras6792ec02017-03-13 03:49:51 -07001839 else
Florin Coras3cbc04b2017-10-02 00:18:51 -07001840 vlib_node_increment_counter (vm, tcp6_node, evt, val);
Dave Barach68b0fb02017-02-28 15:15:56 -05001841}
1842
Florin Coras00cd22d2018-04-18 13:20:18 -07001843#define tcp_maybe_inc_counter(node_id, err, count) \
1844{ \
1845 if (next0 != tcp_next_drop (is_ip4)) \
1846 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
1847 tcp6_##node_id##_node.index, is_ip4, err, \
1848 1); \
1849}
1850#define tcp_inc_counter(node_id, err, count) \
1851 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
1852 tcp6_##node_id##_node.index, is_ip4, \
1853 err, count)
1854#define tcp_maybe_inc_err_counter(cnts, err) \
1855{ \
1856 cnts[err] += (next0 != tcp_next_drop (is_ip4)); \
1857}
1858#define tcp_inc_err_counter(cnts, err, val) \
1859{ \
1860 cnts[err] += val; \
1861}
1862#define tcp_store_err_counters(node_id, cnts) \
1863{ \
1864 int i; \
1865 for (i = 0; i < TCP_N_ERROR; i++) \
1866 if (cnts[i]) \
1867 tcp_inc_counter(node_id, i, cnts[i]); \
1868}
1869
1870
Dave Barach68b0fb02017-02-28 15:15:56 -05001871always_inline uword
1872tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07001873 vlib_frame_t * frame, int is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05001874{
Florin Coras4df38712018-06-20 12:44:16 -07001875 u32 thread_index = vm->thread_index, errors = 0;
Florin Coras00cd22d2018-04-18 13:20:18 -07001876 u32 n_left_from, next_index, *from, *to_next;
1877 u16 err_counters[TCP_N_ERROR] = { 0 };
Dave Barach1f75cfd2017-04-14 16:46:44 -04001878 u8 is_fin = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001879
Florin Coras4df38712018-06-20 12:44:16 -07001880 if (node->flags & VLIB_NODE_FLAG_TRACE)
1881 tcp_established_trace_frame (vm, node, frame, is_ip4);
1882
1883 from = vlib_frame_vector_args (frame);
1884 n_left_from = frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05001885 next_index = node->cached_next_index;
1886
1887 while (n_left_from > 0)
1888 {
1889 u32 n_left_to_next;
1890
1891 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Dave Barach68b0fb02017-02-28 15:15:56 -05001892 while (n_left_from > 0 && n_left_to_next > 0)
1893 {
1894 u32 bi0;
1895 vlib_buffer_t *b0;
1896 tcp_header_t *th0 = 0;
1897 tcp_connection_t *tc0;
Florin Coras00cd22d2018-04-18 13:20:18 -07001898 u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001899
Florin Coras81a13db2018-03-16 08:48:31 -07001900 if (n_left_from > 1)
1901 {
1902 vlib_buffer_t *pb;
1903 pb = vlib_get_buffer (vm, from[1]);
1904 vlib_prefetch_buffer_header (pb, LOAD);
1905 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1906 }
1907
Dave Barach68b0fb02017-02-28 15:15:56 -05001908 bi0 = from[0];
1909 to_next[0] = bi0;
1910 from += 1;
1911 to_next += 1;
1912 n_left_from -= 1;
1913 n_left_to_next -= 1;
1914
1915 b0 = vlib_get_buffer (vm, bi0);
1916 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
Florin Coras4df38712018-06-20 12:44:16 -07001917 thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001918
Florin Corasd79b41e2017-03-04 05:37:52 -08001919 if (PREDICT_FALSE (tc0 == 0))
1920 {
1921 error0 = TCP_ERROR_INVALID_CONNECTION;
Florin Coras6792ec02017-03-13 03:49:51 -07001922 goto done;
Florin Corasd79b41e2017-03-04 05:37:52 -08001923 }
1924
Florin Coras82b13a82017-04-25 11:58:06 -07001925 th0 = tcp_buffer_hdr (b0);
Florin Coras6534b7a2017-07-18 05:38:03 -04001926 /* N.B. buffer is rewritten if segment is ooo. Thus, th0 becomes a
1927 * dangling reference. */
1928 is_fin = tcp_is_fin (th0);
Dave Barach1f75cfd2017-04-14 16:46:44 -04001929
Dave Barach68b0fb02017-02-28 15:15:56 -05001930 /* SYNs, FINs and data consume sequence numbers */
1931 vnet_buffer (b0)->tcp.seq_end = vnet_buffer (b0)->tcp.seq_number
Florin Coras82b13a82017-04-25 11:58:06 -07001932 + tcp_is_syn (th0) + is_fin + vnet_buffer (b0)->tcp.data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05001933
1934 /* TODO header prediction fast path */
1935
1936 /* 1-4: check SEQ, RST, SYN */
Florin Coras00cd22d2018-04-18 13:20:18 -07001937 if (PREDICT_FALSE (tcp_segment_validate (vm, tc0, b0, th0, &next0,
1938 &error0)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001939 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001940 tcp_maybe_inc_err_counter (err_counters, error0);
Florin Corasca1c8f32018-05-23 21:01:30 -07001941 TCP_EVT_DBG (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp);
Florin Coras6792ec02017-03-13 03:49:51 -07001942 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001943 }
1944
1945 /* 5: check the ACK field */
Florin Coras00cd22d2018-04-18 13:20:18 -07001946 if (PREDICT_FALSE (tcp_rcv_ack (tc0, b0, th0, &next0, &error0)))
1947 {
1948 tcp_maybe_inc_err_counter (err_counters, error0);
1949 goto done;
1950 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001951
1952 /* 6: check the URG bit TODO */
1953
1954 /* 7: process the segment text */
Florin Coras6534b7a2017-07-18 05:38:03 -04001955 if (vnet_buffer (b0)->tcp.data_len)
Florin Coras00cd22d2018-04-18 13:20:18 -07001956 {
1957 error0 = tcp_segment_rcv (tc0, b0, &next0);
1958 tcp_maybe_inc_err_counter (err_counters, error0);
1959 }
Dave Barach1f75cfd2017-04-14 16:46:44 -04001960
Dave Barach68b0fb02017-02-28 15:15:56 -05001961 /* 8: check the FIN bit */
Florin Coras6534b7a2017-07-18 05:38:03 -04001962 if (PREDICT_FALSE (is_fin))
Dave Barach68b0fb02017-02-28 15:15:56 -05001963 {
Florin Coras9d063042017-09-14 03:08:00 -04001964 /* Enter CLOSE-WAIT and notify session. To avoid lingering
Florin Corasd79b41e2017-03-04 05:37:52 -08001965 * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
Florin Coras9d063042017-09-14 03:08:00 -04001966 /* Account for the FIN if nothing else was received */
Florin Coras68810622017-07-24 17:40:28 -07001967 if (vnet_buffer (b0)->tcp.data_len == 0)
Florin Coras9d063042017-09-14 03:08:00 -04001968 tc0->rcv_nxt += 1;
1969 tcp_make_ack (tc0, b0);
1970 next0 = tcp_next_output (tc0->c_is_ip4);
1971 tc0->state = TCP_STATE_CLOSE_WAIT;
Dave Barach68b0fb02017-02-28 15:15:56 -05001972 stream_session_disconnect_notify (&tc0->connection);
Florin Coras68810622017-07-24 17:40:28 -07001973 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
Florin Coras9d063042017-09-14 03:08:00 -04001974 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -07001975 tcp_inc_err_counter (err_counters, TCP_ERROR_FIN_RCVD, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001976 }
1977
Florin Coras6792ec02017-03-13 03:49:51 -07001978 done:
Dave Barach68b0fb02017-02-28 15:15:56 -05001979 b0->error = node->errors[error0];
Dave Barach68b0fb02017-02-28 15:15:56 -05001980 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1981 n_left_to_next, bi0, next0);
1982 }
1983
1984 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1985 }
1986
Florin Coras3cbc04b2017-10-02 00:18:51 -07001987 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
Florin Coras4df38712018-06-20 12:44:16 -07001988 thread_index);
Florin Coras00cd22d2018-04-18 13:20:18 -07001989 err_counters[TCP_ERROR_EVENT_FIFO_FULL] = errors;
1990 tcp_store_err_counters (established, err_counters);
Florin Coras4df38712018-06-20 12:44:16 -07001991 tcp_flush_frame_to_output (vm, thread_index, is_ip4);
1992
1993 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05001994}
1995
1996static uword
1997tcp4_established (vlib_main_t * vm, vlib_node_runtime_t * node,
1998 vlib_frame_t * from_frame)
1999{
2000 return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2001}
2002
2003static uword
2004tcp6_established (vlib_main_t * vm, vlib_node_runtime_t * node,
2005 vlib_frame_t * from_frame)
2006{
2007 return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2008}
2009
2010/* *INDENT-OFF* */
2011VLIB_REGISTER_NODE (tcp4_established_node) =
2012{
2013 .function = tcp4_established,
2014 .name = "tcp4-established",
2015 /* Takes a vector of packets. */
2016 .vector_size = sizeof (u32),
Florin Corase69f4952017-03-07 10:06:24 -08002017 .n_errors = TCP_N_ERROR,
2018 .error_strings = tcp_error_strings,
Dave Barach68b0fb02017-02-28 15:15:56 -05002019 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2020 .next_nodes =
2021 {
2022#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2023 foreach_tcp_state_next
2024#undef _
2025 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002026 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002027};
2028/* *INDENT-ON* */
2029
2030VLIB_NODE_FUNCTION_MULTIARCH (tcp4_established_node, tcp4_established);
2031
2032/* *INDENT-OFF* */
2033VLIB_REGISTER_NODE (tcp6_established_node) =
2034{
2035 .function = tcp6_established,
2036 .name = "tcp6-established",
2037 /* Takes a vector of packets. */
2038 .vector_size = sizeof (u32),
2039 .n_errors = TCP_N_ERROR,
2040 .error_strings = tcp_error_strings,
2041 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2042 .next_nodes =
2043 {
2044#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2045 foreach_tcp_state_next
2046#undef _
2047 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002048 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002049};
2050/* *INDENT-ON* */
2051
2052
2053VLIB_NODE_FUNCTION_MULTIARCH (tcp6_established_node, tcp6_established);
2054
2055vlib_node_registration_t tcp4_syn_sent_node;
2056vlib_node_registration_t tcp6_syn_sent_node;
2057
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002058static u8
2059tcp_lookup_is_valid (tcp_connection_t * tc, tcp_header_t * hdr)
2060{
Florin Corascea194d2017-10-02 00:18:51 -07002061 transport_connection_t *tmp = 0;
2062 u64 handle;
2063
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002064 if (!tc)
2065 return 1;
2066
Florin Coras70131132017-11-27 02:43:30 -08002067 /* Proxy case */
2068 if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
2069 return 1;
2070
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002071 u8 is_valid = (tc->c_lcl_port == hdr->dst_port
2072 && (tc->state == TCP_STATE_LISTEN
2073 || tc->c_rmt_port == hdr->src_port));
2074
2075 if (!is_valid)
2076 {
Florin Corascea194d2017-10-02 00:18:51 -07002077 handle = session_lookup_half_open_handle (&tc->connection);
2078 tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
Florin Coras3cbc04b2017-10-02 00:18:51 -07002079 tc->c_proto, tc->c_is_ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002080
2081 if (tmp)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002082 {
2083 if (tmp->lcl_port == hdr->dst_port
2084 && tmp->rmt_port == hdr->src_port)
2085 {
Florin Corascea194d2017-10-02 00:18:51 -07002086 TCP_DBG ("half-open is valid!");
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002087 }
2088 }
2089 }
2090 return is_valid;
2091}
2092
2093/**
2094 * Lookup transport connection
2095 */
2096static tcp_connection_t *
Florin Corascea194d2017-10-02 00:18:51 -07002097tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
2098 u8 is_ip4)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002099{
2100 tcp_header_t *tcp;
2101 transport_connection_t *tconn;
2102 tcp_connection_t *tc;
Florin Corasdff48db2017-11-19 18:06:58 -08002103 u8 is_filtered = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002104 if (is_ip4)
2105 {
2106 ip4_header_t *ip4;
2107 ip4 = vlib_buffer_get_current (b);
2108 tcp = ip4_next_header (ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002109 tconn = session_lookup_connection_wt4 (fib_index,
2110 &ip4->dst_address,
2111 &ip4->src_address,
2112 tcp->dst_port,
2113 tcp->src_port,
2114 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002115 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002116 tc = tcp_get_connection_from_transport (tconn);
2117 ASSERT (tcp_lookup_is_valid (tc, tcp));
2118 }
2119 else
2120 {
2121 ip6_header_t *ip6;
2122 ip6 = vlib_buffer_get_current (b);
2123 tcp = ip6_next_header (ip6);
Florin Corascea194d2017-10-02 00:18:51 -07002124 tconn = session_lookup_connection_wt6 (fib_index,
2125 &ip6->dst_address,
2126 &ip6->src_address,
2127 tcp->dst_port,
2128 tcp->src_port,
2129 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002130 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002131 tc = tcp_get_connection_from_transport (tconn);
2132 ASSERT (tcp_lookup_is_valid (tc, tcp));
2133 }
2134 return tc;
2135}
2136
Dave Barach68b0fb02017-02-28 15:15:56 -05002137always_inline uword
2138tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2139 vlib_frame_t * from_frame, int is_ip4)
2140{
2141 tcp_main_t *tm = vnet_get_tcp_main ();
2142 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02002143 u32 my_thread_index = vm->thread_index, errors = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002144
2145 from = vlib_frame_vector_args (from_frame);
2146 n_left_from = from_frame->n_vectors;
2147
2148 next_index = node->cached_next_index;
2149
2150 while (n_left_from > 0)
2151 {
2152 u32 n_left_to_next;
2153
2154 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2155
2156 while (n_left_from > 0 && n_left_to_next > 0)
2157 {
2158 u32 bi0, ack0, seq0;
2159 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002160 tcp_rx_trace_t *t0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002161 tcp_header_t *tcp0 = 0;
2162 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002163 tcp_connection_t *new_tc0;
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002164 u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002165
2166 bi0 = from[0];
2167 to_next[0] = bi0;
2168 from += 1;
2169 to_next += 1;
2170 n_left_from -= 1;
2171 n_left_to_next -= 1;
2172
2173 b0 = vlib_get_buffer (vm, bi0);
2174 tc0 =
2175 tcp_half_open_connection_get (vnet_buffer (b0)->
2176 tcp.connection_index);
Dave Barachd84ba852017-08-22 17:56:46 -04002177 if (PREDICT_FALSE (tc0 == 0))
2178 {
2179 error0 = TCP_ERROR_INVALID_CONNECTION;
2180 goto drop;
2181 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002182
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002183 /* Half-open completed recently but the connection was't removed
2184 * yet by the owning thread */
2185 if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2186 {
2187 /* Make sure the connection actually exists */
Florin Corascea194d2017-10-02 00:18:51 -07002188 ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2189 my_thread_index, is_ip4));
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002190 goto drop;
2191 }
2192
Dave Barach68b0fb02017-02-28 15:15:56 -05002193 ack0 = vnet_buffer (b0)->tcp.ack_number;
2194 seq0 = vnet_buffer (b0)->tcp.seq_number;
Florin Coras82b13a82017-04-25 11:58:06 -07002195 tcp0 = tcp_buffer_hdr (b0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002196
Florin Coras9d063042017-09-14 03:08:00 -04002197 /* Crude check to see if the connection handle does not match
2198 * the packet. Probably connection just switched to established */
2199 if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2200 || tcp0->src_port != tc0->c_rmt_port))
2201 goto drop;
2202
Dave Barach68b0fb02017-02-28 15:15:56 -05002203 if (PREDICT_FALSE
2204 (!tcp_ack (tcp0) && !tcp_rst (tcp0) && !tcp_syn (tcp0)))
2205 goto drop;
2206
2207 /* SYNs, FINs and data consume sequence numbers */
2208 vnet_buffer (b0)->tcp.seq_end = seq0 + tcp_is_syn (tcp0)
Florin Coras82b13a82017-04-25 11:58:06 -07002209 + tcp_is_fin (tcp0) + vnet_buffer (b0)->tcp.data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05002210
2211 /*
2212 * 1. check the ACK bit
2213 */
2214
2215 /*
2216 * If the ACK bit is set
2217 * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2218 * the RST bit is set, if so drop the segment and return)
2219 * <SEQ=SEG.ACK><CTL=RST>
2220 * and discard the segment. Return.
2221 * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2222 */
2223 if (tcp_ack (tcp0))
2224 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002225 if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05002226 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002227 clib_warning ("ack not in rcv wnd");
Dave Barach68b0fb02017-02-28 15:15:56 -05002228 if (!tcp_rst (tcp0))
Florin Coras1f152cd2017-08-18 19:28:03 -07002229 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002230 goto drop;
2231 }
2232
2233 /* Make sure ACK is valid */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002234 if (seq_gt (tc0->snd_una, ack0))
2235 {
2236 clib_warning ("ack invalid");
2237 goto drop;
2238 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002239 }
2240
2241 /*
2242 * 2. check the RST bit
2243 */
2244
2245 if (tcp_rst (tcp0))
2246 {
2247 /* If ACK is acceptable, signal client that peer is not
2248 * willing to accept connection and drop connection*/
2249 if (tcp_ack (tcp0))
Florin Coras6534b7a2017-07-18 05:38:03 -04002250 tcp_connection_reset (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002251 goto drop;
2252 }
2253
2254 /*
2255 * 3. check the security and precedence (skipped)
2256 */
2257
2258 /*
2259 * 4. check the SYN bit
2260 */
2261
2262 /* No SYN flag. Drop. */
2263 if (!tcp_syn (tcp0))
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002264 {
2265 clib_warning ("not synack");
2266 goto drop;
2267 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002268
Florin Coras6534b7a2017-07-18 05:38:03 -04002269 /* Parse options */
2270 if (tcp_options_parse (tcp0, &tc0->rcv_opts))
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002271 {
2272 clib_warning ("options parse fail");
2273 goto drop;
2274 }
Florin Coras6534b7a2017-07-18 05:38:03 -04002275
Dave Barach68b0fb02017-02-28 15:15:56 -05002276 /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2277 * current thread pool. */
2278 pool_get (tm->connections[my_thread_index], new_tc0);
2279 clib_memcpy (new_tc0, tc0, sizeof (*new_tc0));
Dave Barach259cdae2017-05-15 16:27:05 -04002280 new_tc0->c_c_index = new_tc0 - tm->connections[my_thread_index];
Florin Coras6534b7a2017-07-18 05:38:03 -04002281 new_tc0->c_thread_index = my_thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002282 new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2283 new_tc0->irs = seq0;
Florin Coras68810622017-07-24 17:40:28 -07002284 new_tc0->timers[TCP_TIMER_ESTABLISH] = TCP_TIMER_HANDLE_INVALID;
2285 new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] =
2286 TCP_TIMER_HANDLE_INVALID;
Florin Corasf9d05682018-04-26 08:26:52 -07002287 new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Florin Coras68810622017-07-24 17:40:28 -07002288
2289 /* If this is not the owning thread, wait for syn retransmit to
2290 * expire and cleanup then */
2291 if (tcp_half_open_connection_cleanup (tc0))
2292 tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
Dave Barach68b0fb02017-02-28 15:15:56 -05002293
Florin Coras93992a92017-05-24 18:03:56 -07002294 if (tcp_opts_tstamp (&new_tc0->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05002295 {
Florin Coras93992a92017-05-24 18:03:56 -07002296 new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
Dave Barach68b0fb02017-02-28 15:15:56 -05002297 new_tc0->tsval_recent_age = tcp_time_now ();
2298 }
2299
Florin Coras93992a92017-05-24 18:03:56 -07002300 if (tcp_opts_wscale (&new_tc0->rcv_opts))
2301 new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
Dave Barach68b0fb02017-02-28 15:15:56 -05002302
Florin Coras45ca73f2018-09-27 09:19:29 -07002303 new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2304 << new_tc0->snd_wscale;
Dave Barach68b0fb02017-02-28 15:15:56 -05002305 new_tc0->snd_wl1 = seq0;
2306 new_tc0->snd_wl2 = ack0;
2307
Florin Corase04c2992017-03-01 08:17:34 -08002308 tcp_connection_init_vars (new_tc0);
2309
Dave Barach68b0fb02017-02-28 15:15:56 -05002310 /* SYN-ACK: See if we can switch to ESTABLISHED state */
Florin Coras6534b7a2017-07-18 05:38:03 -04002311 if (PREDICT_TRUE (tcp_ack (tcp0)))
Dave Barach68b0fb02017-02-28 15:15:56 -05002312 {
2313 /* Our SYN is ACKed: we have iss < ack = snd_una */
2314
2315 /* TODO Dequeue acknowledged segments if we support Fast Open */
2316 new_tc0->snd_una = ack0;
2317 new_tc0->state = TCP_STATE_ESTABLISHED;
2318
Florin Corase04c2992017-03-01 08:17:34 -08002319 /* Make sure las is initialized for the wnd computation */
2320 new_tc0->rcv_las = new_tc0->rcv_nxt;
2321
Florin Corasf03a59a2017-06-09 21:07:32 -07002322 /* Notify app that we have connection. If session layer can't
2323 * allocate session send reset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07002324 if (session_stream_connect_notify (&new_tc0->connection, 0))
Florin Corasf03a59a2017-06-09 21:07:32 -07002325 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002326 clib_warning ("connect notify fail");
Florin Coras1f152cd2017-08-18 19:28:03 -07002327 tcp_send_reset_w_pkt (new_tc0, b0, is_ip4);
Florin Corasf03a59a2017-06-09 21:07:32 -07002328 tcp_connection_cleanup (new_tc0);
Florin Corasf03a59a2017-06-09 21:07:32 -07002329 goto drop;
2330 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002331
2332 /* Make sure after data segment processing ACK is sent */
2333 new_tc0->flags |= TCP_CONN_SNDACK;
Dave Barach2c25a622017-06-26 11:35:07 -04002334
2335 /* Update rtt with the syn-ack sample */
Dave Barach2c25a622017-06-26 11:35:07 -04002336 tcp_update_rtt (new_tc0, vnet_buffer (b0)->tcp.ack_number);
Florin Coras6534b7a2017-07-18 05:38:03 -04002337 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, new_tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002338 }
2339 /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2340 else
2341 {
2342 new_tc0->state = TCP_STATE_SYN_RCVD;
2343
Florin Corase69f4952017-03-07 10:06:24 -08002344 /* Notify app that we have connection */
Florin Coras3cbc04b2017-10-02 00:18:51 -07002345 if (session_stream_connect_notify (&new_tc0->connection, 0))
Florin Corasf03a59a2017-06-09 21:07:32 -07002346 {
2347 tcp_connection_cleanup (new_tc0);
Florin Coras1f152cd2017-08-18 19:28:03 -07002348 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -04002349 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc0);
Florin Corasf03a59a2017-06-09 21:07:32 -07002350 goto drop;
2351 }
2352
Dave Barach2c25a622017-06-26 11:35:07 -04002353 tc0->rtt_ts = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002354 tcp_init_snd_vars (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002355 tcp_make_synack (new_tc0, b0);
2356 next0 = tcp_next_output (is_ip4);
2357
2358 goto drop;
2359 }
2360
2361 /* Read data, if any */
Florin Coras6534b7a2017-07-18 05:38:03 -04002362 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
Dave Barach68b0fb02017-02-28 15:15:56 -05002363 {
Florin Coras00cd22d2018-04-18 13:20:18 -07002364 clib_warning ("rcvd data in syn-sent");
2365 error0 = tcp_segment_rcv (new_tc0, b0, &next0);
2366 if (error0 == TCP_ERROR_ACK_OK)
Dave Barach68b0fb02017-02-28 15:15:56 -05002367 error0 = TCP_ERROR_SYN_ACKS_RCVD;
Florin Coras00cd22d2018-04-18 13:20:18 -07002368 tcp_maybe_inc_counter (syn_sent, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002369 }
2370 else
2371 {
2372 tcp_make_ack (new_tc0, b0);
2373 next0 = tcp_next_output (new_tc0->c_is_ip4);
2374 }
2375
2376 drop:
2377
2378 b0->error = error0 ? node->errors[error0] : 0;
Chris Luke879ace32017-09-26 13:15:16 -04002379 if (PREDICT_FALSE
2380 ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002381 {
Clement Durand6cf260c2017-04-13 13:27:04 +02002382 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2383 clib_memcpy (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2384 clib_memcpy (&t0->tcp_connection, tc0,
2385 sizeof (t0->tcp_connection));
Dave Barach68b0fb02017-02-28 15:15:56 -05002386 }
2387
2388 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2389 n_left_to_next, bi0, next0);
2390 }
2391
2392 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2393 }
2394
Florin Coras3cbc04b2017-10-02 00:18:51 -07002395 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2396 my_thread_index);
Florin Coras00cd22d2018-04-18 13:20:18 -07002397 tcp_inc_counter (syn_sent, TCP_ERROR_EVENT_FIFO_FULL, errors);
Dave Barach68b0fb02017-02-28 15:15:56 -05002398 return from_frame->n_vectors;
2399}
2400
2401static uword
2402tcp4_syn_sent (vlib_main_t * vm, vlib_node_runtime_t * node,
2403 vlib_frame_t * from_frame)
2404{
2405 return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2406}
2407
2408static uword
2409tcp6_syn_sent_rcv (vlib_main_t * vm, vlib_node_runtime_t * node,
2410 vlib_frame_t * from_frame)
2411{
2412 return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2413}
2414
2415/* *INDENT-OFF* */
2416VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2417{
2418 .function = tcp4_syn_sent,
2419 .name = "tcp4-syn-sent",
2420 /* Takes a vector of packets. */
2421 .vector_size = sizeof (u32),
2422 .n_errors = TCP_N_ERROR,
2423 .error_strings = tcp_error_strings,
2424 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2425 .next_nodes =
2426 {
2427#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2428 foreach_tcp_state_next
2429#undef _
2430 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002431 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002432};
2433/* *INDENT-ON* */
2434
2435VLIB_NODE_FUNCTION_MULTIARCH (tcp4_syn_sent_node, tcp4_syn_sent);
2436
2437/* *INDENT-OFF* */
2438VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2439{
2440 .function = tcp6_syn_sent_rcv,
2441 .name = "tcp6-syn-sent",
2442 /* Takes a vector of packets. */
2443 .vector_size = sizeof (u32),
2444 .n_errors = TCP_N_ERROR,
2445 .error_strings = tcp_error_strings,
2446 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2447 .next_nodes =
2448 {
2449#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2450 foreach_tcp_state_next
2451#undef _
Clement Durand6cf260c2017-04-13 13:27:04 +02002452 },
2453 .format_trace = format_tcp_rx_trace_short,
2454};
Dave Barach68b0fb02017-02-28 15:15:56 -05002455/* *INDENT-ON* */
2456
2457VLIB_NODE_FUNCTION_MULTIARCH (tcp6_syn_sent_node, tcp6_syn_sent_rcv);
Florin Coras6534b7a2017-07-18 05:38:03 -04002458
Florin Coras3cbc04b2017-10-02 00:18:51 -07002459vlib_node_registration_t tcp4_rcv_process_node;
2460vlib_node_registration_t tcp6_rcv_process_node;
2461
Dave Barach68b0fb02017-02-28 15:15:56 -05002462/**
Florin Corasd79b41e2017-03-04 05:37:52 -08002463 * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
Dave Barach68b0fb02017-02-28 15:15:56 -05002464 * as per RFC793 p. 64
2465 */
2466always_inline uword
2467tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2468 vlib_frame_t * from_frame, int is_ip4)
2469{
Florin Coras00cd22d2018-04-18 13:20:18 -07002470 u32 n_left_from, next_index, *from, *to_next, n_fins = 0;
Damjan Marion586afd72017-04-05 19:18:20 +02002471 u32 my_thread_index = vm->thread_index, errors = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002472
2473 from = vlib_frame_vector_args (from_frame);
2474 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002475 next_index = node->cached_next_index;
2476
2477 while (n_left_from > 0)
2478 {
2479 u32 n_left_to_next;
2480
2481 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2482
2483 while (n_left_from > 0 && n_left_to_next > 0)
2484 {
2485 u32 bi0;
2486 vlib_buffer_t *b0;
2487 tcp_header_t *tcp0 = 0;
2488 tcp_connection_t *tc0;
Florin Coras00cd22d2018-04-18 13:20:18 -07002489 u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_NONE;
Florin Coras9d063042017-09-14 03:08:00 -04002490 u8 is_fin0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002491
2492 bi0 = from[0];
2493 to_next[0] = bi0;
2494 from += 1;
2495 to_next += 1;
2496 n_left_from -= 1;
2497 n_left_to_next -= 1;
2498
2499 b0 = vlib_get_buffer (vm, bi0);
2500 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2501 my_thread_index);
Florin Corasd79b41e2017-03-04 05:37:52 -08002502 if (PREDICT_FALSE (tc0 == 0))
2503 {
2504 error0 = TCP_ERROR_INVALID_CONNECTION;
2505 goto drop;
2506 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002507
Florin Coras82b13a82017-04-25 11:58:06 -07002508 tcp0 = tcp_buffer_hdr (b0);
Florin Coras9d063042017-09-14 03:08:00 -04002509 is_fin0 = tcp_is_fin (tcp0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002510
2511 /* SYNs, FINs and data consume sequence numbers */
2512 vnet_buffer (b0)->tcp.seq_end = vnet_buffer (b0)->tcp.seq_number
Florin Coras9d063042017-09-14 03:08:00 -04002513 + tcp_is_syn (tcp0) + is_fin0 + vnet_buffer (b0)->tcp.data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05002514
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002515 if (CLIB_DEBUG)
2516 {
2517 tcp_connection_t *tmp;
Florin Coras00cd22d2018-04-18 13:20:18 -07002518 tmp = tcp_lookup_connection (tc0->c_fib_index, b0,
2519 my_thread_index, is_ip4);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002520 if (tmp->state != tc0->state)
2521 {
2522 clib_warning ("state changed");
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002523 goto drop;
2524 }
2525 }
2526
Dave Barach68b0fb02017-02-28 15:15:56 -05002527 /*
2528 * Special treatment for CLOSED
2529 */
Florin Coras00cd22d2018-04-18 13:20:18 -07002530 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
Dave Barach68b0fb02017-02-28 15:15:56 -05002531 {
Florin Coras00cd22d2018-04-18 13:20:18 -07002532 error0 = TCP_ERROR_CONNECTION_CLOSED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002533 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002534 }
2535
2536 /*
2537 * For all other states (except LISTEN)
2538 */
2539
2540 /* 1-4: check SEQ, RST, SYN */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002541 if (PREDICT_FALSE (tcp_segment_validate (vm, tc0, b0, tcp0,
Florin Coras00cd22d2018-04-18 13:20:18 -07002542 &next0, &error0)))
Dave Barach68b0fb02017-02-28 15:15:56 -05002543 {
Florin Coras00cd22d2018-04-18 13:20:18 -07002544 tcp_maybe_inc_counter (rcv_process, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002545 goto drop;
2546 }
2547
2548 /* 5: check the ACK field */
2549 switch (tc0->state)
2550 {
2551 case TCP_STATE_SYN_RCVD:
2552 /*
2553 * If the segment acknowledgment is not acceptable, form a
2554 * reset segment,
2555 * <SEQ=SEG.ACK><CTL=RST>
2556 * and send it.
2557 */
2558 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
2559 {
Florin Corasa096f2d2017-09-28 23:49:42 -04002560 TCP_DBG ("connection not accepted");
Florin Coras1f152cd2017-08-18 19:28:03 -07002561 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
Florin Coras00cd22d2018-04-18 13:20:18 -07002562 error0 = TCP_ERROR_ACK_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05002563 goto drop;
2564 }
Florin Coras3af90fc2017-05-03 21:09:42 -07002565
2566 /* Update rtt and rto */
Florin Coras3af90fc2017-05-03 21:09:42 -07002567 tcp_update_rtt (tc0, vnet_buffer (b0)->tcp.ack_number);
2568
Dave Barach68b0fb02017-02-28 15:15:56 -05002569 /* Switch state to ESTABLISHED */
2570 tc0->state = TCP_STATE_ESTABLISHED;
Florin Corasb384b542018-01-15 01:08:33 -08002571 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002572
2573 /* Initialize session variables */
2574 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
Florin Corase04c2992017-03-01 08:17:34 -08002575 tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
Florin Coras93992a92017-05-24 18:03:56 -07002576 << tc0->rcv_opts.wscale;
Dave Barach68b0fb02017-02-28 15:15:56 -05002577 tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2578 tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
Dave Barach68b0fb02017-02-28 15:15:56 -05002579
Florin Corasab0289a2017-08-14 11:25:25 -07002580 /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
Florin Coras6792ec02017-03-13 03:49:51 -07002581 tcp_retransmit_timer_reset (tc0);
Florin Corasab0289a2017-08-14 11:25:25 -07002582 tcp_timer_reset (tc0, TCP_TIMER_ESTABLISH);
Florin Corasb384b542018-01-15 01:08:33 -08002583 stream_session_accept_notify (&tc0->connection);
Florin Coras00cd22d2018-04-18 13:20:18 -07002584 error0 = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05002585 break;
2586 case TCP_STATE_ESTABLISHED:
2587 /* We can get packets in established state here because they
2588 * were enqueued before state change */
2589 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002590 {
2591 tcp_maybe_inc_counter (rcv_process, error0, 1);
2592 goto drop;
2593 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002594
2595 break;
2596 case TCP_STATE_FIN_WAIT_1:
2597 /* In addition to the processing for the ESTABLISHED state, if
2598 * our FIN is now acknowledged then enter FIN-WAIT-2 and
2599 * continue processing in that state. */
2600 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002601 {
2602 tcp_maybe_inc_counter (rcv_process, error0, 1);
2603 goto drop;
2604 }
Florin Corasd79b41e2017-03-04 05:37:52 -08002605
Florin Corasb2215d62017-08-01 16:56:58 -07002606 /* Still have to send the FIN */
2607 if (tc0->flags & TCP_CONN_FINPNDG)
2608 {
2609 /* TX fifo finally drained */
Florin Coras25579b42018-06-06 17:55:02 -07002610 if (!session_tx_fifo_max_dequeue (&tc0->connection))
Florin Corasb2215d62017-08-01 16:56:58 -07002611 tcp_send_fin (tc0);
2612 }
Florin Corasd79b41e2017-03-04 05:37:52 -08002613 /* If FIN is ACKed */
Florin Corasb2215d62017-08-01 16:56:58 -07002614 else if (tc0->snd_una == tc0->snd_una_max)
Florin Corasd79b41e2017-03-04 05:37:52 -08002615 {
2616 tc0->state = TCP_STATE_FIN_WAIT_2;
Florin Coras6534b7a2017-07-18 05:38:03 -04002617 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
2618
Florin Coras9d063042017-09-14 03:08:00 -04002619 /* Stop all retransmit timers because we have nothing more
2620 * to send. Enable waitclose though because we're willing to
2621 * wait for peer's FIN but not indefinitely. */
2622 tcp_connection_timers_reset (tc0);
2623 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Corasd79b41e2017-03-04 05:37:52 -08002624 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002625 break;
2626 case TCP_STATE_FIN_WAIT_2:
2627 /* In addition to the processing for the ESTABLISHED state, if
2628 * the retransmission queue is empty, the user's CLOSE can be
2629 * acknowledged ("ok") but do not delete the TCB. */
2630 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002631 {
2632 tcp_maybe_inc_counter (rcv_process, error0, 1);
2633 goto drop;
2634 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002635 break;
2636 case TCP_STATE_CLOSE_WAIT:
2637 /* Do the same processing as for the ESTABLISHED state. */
2638 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002639 {
2640 tcp_maybe_inc_counter (rcv_process, error0, 1);
2641 goto drop;
2642 }
Florin Coras25579b42018-06-06 17:55:02 -07002643 if (tc0->flags & TCP_CONN_FINPNDG)
2644 {
2645 /* TX fifo finally drained */
2646 if (!session_tx_fifo_max_dequeue (&tc0->connection))
2647 {
2648 tcp_send_fin (tc0);
2649 tcp_connection_timers_reset (tc0);
2650 tc0->state = TCP_STATE_LAST_ACK;
2651 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
2652 TCP_2MSL_TIME);
2653 }
2654 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002655 break;
2656 case TCP_STATE_CLOSING:
2657 /* In addition to the processing for the ESTABLISHED state, if
2658 * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2659 * otherwise ignore the segment. */
2660 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002661 {
2662 tcp_maybe_inc_counter (rcv_process, error0, 1);
2663 goto drop;
2664 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002665
Dave Barach68b0fb02017-02-28 15:15:56 -05002666 tc0->state = TCP_STATE_TIME_WAIT;
Florin Coras6534b7a2017-07-18 05:38:03 -04002667 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Florin Corasa096f2d2017-09-28 23:49:42 -04002668 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002669 goto drop;
2670
2671 break;
2672 case TCP_STATE_LAST_ACK:
Florin Coras93992a92017-05-24 18:03:56 -07002673 /* The only thing that [should] arrive in this state is an
Dave Barach68b0fb02017-02-28 15:15:56 -05002674 * acknowledgment of our FIN. If our FIN is now acknowledged,
2675 * delete the TCB, enter the CLOSED state, and return. */
2676
2677 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
Florin Corasa096f2d2017-09-28 23:49:42 -04002678 {
2679 error0 = TCP_ERROR_ACK_INVALID;
2680 goto drop;
2681 }
Florin Coras00cd22d2018-04-18 13:20:18 -07002682 error0 = TCP_ERROR_ACK_OK;
Florin Coras9d063042017-09-14 03:08:00 -04002683 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
Florin Corasa096f2d2017-09-28 23:49:42 -04002684 /* Apparently our ACK for the peer's FIN was lost */
2685 if (is_fin0 && tc0->snd_una != tc0->snd_una_max)
Florin Coras93992a92017-05-24 18:03:56 -07002686 {
Florin Coras93992a92017-05-24 18:03:56 -07002687 tcp_send_fin (tc0);
2688 goto drop;
2689 }
2690
Florin Corasd79b41e2017-03-04 05:37:52 -08002691 tc0->state = TCP_STATE_CLOSED;
Florin Coras6534b7a2017-07-18 05:38:03 -04002692 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Florin Corasc01d5782018-10-17 14:53:11 -07002693
2694 /* Don't free the connection from the data path since
2695 * we can't ensure that we have no packets already enqueued
2696 * to output. Rely instead on the waitclose timer */
2697 tcp_connection_timers_reset (tc0);
2698 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, 1);
Florin Corasd79b41e2017-03-04 05:37:52 -08002699
Dave Barach68b0fb02017-02-28 15:15:56 -05002700 goto drop;
2701
2702 break;
2703 case TCP_STATE_TIME_WAIT:
2704 /* The only thing that can arrive in this state is a
2705 * retransmission of the remote FIN. Acknowledge it, and restart
2706 * the 2 MSL timeout. */
2707
Florin Coras93992a92017-05-24 18:03:56 -07002708 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002709 {
2710 tcp_maybe_inc_counter (rcv_process, error0, 1);
2711 goto drop;
2712 }
Florin Coras93992a92017-05-24 18:03:56 -07002713
2714 tcp_make_ack (tc0, b0);
Florin Corasa096f2d2017-09-28 23:49:42 -04002715 next0 = tcp_next_output (is_ip4);
2716 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002717 goto drop;
Florin Coras93992a92017-05-24 18:03:56 -07002718
Dave Barach68b0fb02017-02-28 15:15:56 -05002719 break;
2720 default:
2721 ASSERT (0);
2722 }
2723
2724 /* 6: check the URG bit TODO */
2725
2726 /* 7: process the segment text */
2727 switch (tc0->state)
2728 {
2729 case TCP_STATE_ESTABLISHED:
2730 case TCP_STATE_FIN_WAIT_1:
2731 case TCP_STATE_FIN_WAIT_2:
Florin Coras6534b7a2017-07-18 05:38:03 -04002732 if (vnet_buffer (b0)->tcp.data_len)
Florin Coras00cd22d2018-04-18 13:20:18 -07002733 {
2734 error0 = tcp_segment_rcv (tc0, b0, &next0);
2735 tcp_maybe_inc_counter (rcv_process, error0, 1);
2736 }
Florin Coras9d063042017-09-14 03:08:00 -04002737 else if (is_fin0)
2738 tc0->rcv_nxt += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002739 break;
2740 case TCP_STATE_CLOSE_WAIT:
2741 case TCP_STATE_CLOSING:
2742 case TCP_STATE_LAST_ACK:
2743 case TCP_STATE_TIME_WAIT:
2744 /* This should not occur, since a FIN has been received from the
2745 * remote side. Ignore the segment text. */
2746 break;
2747 }
2748
2749 /* 8: check the FIN bit */
Florin Coras9d063042017-09-14 03:08:00 -04002750 if (!is_fin0)
Dave Barach68b0fb02017-02-28 15:15:56 -05002751 goto drop;
2752
2753 switch (tc0->state)
2754 {
2755 case TCP_STATE_ESTABLISHED:
2756 case TCP_STATE_SYN_RCVD:
2757 /* Send FIN-ACK notify app and enter CLOSE-WAIT */
2758 tcp_connection_timers_reset (tc0);
Florin Corasd79b41e2017-03-04 05:37:52 -08002759 tcp_make_fin (tc0, b0);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002760 tc0->snd_nxt += 1;
Florin Coras8b20bf52018-06-14 14:55:50 -07002761 tc0->snd_una_max = tc0->snd_nxt;
Florin Corasc01c4452018-09-20 18:36:54 -07002762 tcp_retransmit_timer_set (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002763 next0 = tcp_next_output (tc0->c_is_ip4);
2764 stream_session_disconnect_notify (&tc0->connection);
2765 tc0->state = TCP_STATE_CLOSE_WAIT;
Florin Coras6534b7a2017-07-18 05:38:03 -04002766 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002767 break;
2768 case TCP_STATE_CLOSE_WAIT:
2769 case TCP_STATE_CLOSING:
2770 case TCP_STATE_LAST_ACK:
2771 /* move along .. */
2772 break;
2773 case TCP_STATE_FIN_WAIT_1:
Florin Corasab0289a2017-08-14 11:25:25 -07002774 tc0->state = TCP_STATE_CLOSING;
2775 tcp_make_ack (tc0, b0);
2776 next0 = tcp_next_output (is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -04002777 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Florin Corasab0289a2017-08-14 11:25:25 -07002778 /* Wait for ACK but not forever */
2779 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002780 break;
2781 case TCP_STATE_FIN_WAIT_2:
Florin Coras9d063042017-09-14 03:08:00 -04002782 /* Got FIN, send ACK! Be more aggressive with resource cleanup */
Dave Barach68b0fb02017-02-28 15:15:56 -05002783 tc0->state = TCP_STATE_TIME_WAIT;
Florin Corasdb84e572017-05-09 18:54:52 -07002784 tcp_connection_timers_reset (tc0);
Florin Coras9d063042017-09-14 03:08:00 -04002785 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002786 tcp_make_ack (tc0, b0);
2787 next0 = tcp_next_output (is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -04002788 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002789 break;
2790 case TCP_STATE_TIME_WAIT:
Florin Coras9d063042017-09-14 03:08:00 -04002791 /* Remain in the TIME-WAIT state. Restart the time-wait
Dave Barach68b0fb02017-02-28 15:15:56 -05002792 * timeout.
2793 */
Florin Coras9d063042017-09-14 03:08:00 -04002794 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002795 break;
2796 }
Florin Corase69f4952017-03-07 10:06:24 -08002797 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -07002798 n_fins += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002799
Florin Coras82b13a82017-04-25 11:58:06 -07002800 drop:
Dave Barach68b0fb02017-02-28 15:15:56 -05002801 b0->error = error0 ? node->errors[error0] : 0;
2802
Dave Barach68b0fb02017-02-28 15:15:56 -05002803 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2804 {
Florin Coras82b13a82017-04-25 11:58:06 -07002805 tcp_rx_trace_t *t0 =
2806 vlib_add_trace (vm, node, b0, sizeof (*t0));
2807 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002808 }
2809
2810 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2811 n_left_to_next, bi0, next0);
2812 }
2813
2814 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2815 }
2816
Florin Coras3cbc04b2017-10-02 00:18:51 -07002817 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2818 my_thread_index);
Florin Coras00cd22d2018-04-18 13:20:18 -07002819 tcp_inc_counter (rcv_process, TCP_ERROR_EVENT_FIFO_FULL, errors);
2820 tcp_inc_counter (rcv_process, TCP_ERROR_FIN_RCVD, n_fins);
Dave Barach68b0fb02017-02-28 15:15:56 -05002821 return from_frame->n_vectors;
2822}
2823
2824static uword
2825tcp4_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node,
2826 vlib_frame_t * from_frame)
2827{
2828 return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2829}
2830
2831static uword
2832tcp6_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node,
2833 vlib_frame_t * from_frame)
2834{
2835 return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2836}
2837
2838/* *INDENT-OFF* */
2839VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
2840{
2841 .function = tcp4_rcv_process,
2842 .name = "tcp4-rcv-process",
2843 /* Takes a vector of packets. */
2844 .vector_size = sizeof (u32),
2845 .n_errors = TCP_N_ERROR,
2846 .error_strings = tcp_error_strings,
2847 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2848 .next_nodes =
2849 {
2850#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
2851 foreach_tcp_state_next
2852#undef _
2853 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002854 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002855};
2856/* *INDENT-ON* */
2857
2858VLIB_NODE_FUNCTION_MULTIARCH (tcp4_rcv_process_node, tcp4_rcv_process);
2859
2860/* *INDENT-OFF* */
2861VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
2862{
2863 .function = tcp6_rcv_process,
2864 .name = "tcp6-rcv-process",
2865 /* Takes a vector of packets. */
2866 .vector_size = sizeof (u32),
2867 .n_errors = TCP_N_ERROR,
2868 .error_strings = tcp_error_strings,
2869 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2870 .next_nodes =
2871 {
2872#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
2873 foreach_tcp_state_next
2874#undef _
2875 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002876 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002877};
2878/* *INDENT-ON* */
2879
2880VLIB_NODE_FUNCTION_MULTIARCH (tcp6_rcv_process_node, tcp6_rcv_process);
2881
2882vlib_node_registration_t tcp4_listen_node;
2883vlib_node_registration_t tcp6_listen_node;
2884
2885/**
2886 * LISTEN state processing as per RFC 793 p. 65
2887 */
2888always_inline uword
2889tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2890 vlib_frame_t * from_frame, int is_ip4)
2891{
Florin Coras00cd22d2018-04-18 13:20:18 -07002892 u32 n_left_from, next_index, *from, *to_next, n_syns = 0;
Damjan Marion586afd72017-04-05 19:18:20 +02002893 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002894
2895 from = vlib_frame_vector_args (from_frame);
2896 n_left_from = from_frame->n_vectors;
2897
2898 next_index = node->cached_next_index;
2899
2900 while (n_left_from > 0)
2901 {
2902 u32 n_left_to_next;
2903
2904 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2905
2906 while (n_left_from > 0 && n_left_to_next > 0)
2907 {
2908 u32 bi0;
2909 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002910 tcp_rx_trace_t *t0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002911 tcp_header_t *th0 = 0;
2912 tcp_connection_t *lc0;
2913 ip4_header_t *ip40;
2914 ip6_header_t *ip60;
2915 tcp_connection_t *child0;
Florin Coras00cd22d2018-04-18 13:20:18 -07002916 u32 error0 = TCP_ERROR_NONE, next0 = tcp_next_drop (is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002917
2918 bi0 = from[0];
2919 to_next[0] = bi0;
2920 from += 1;
2921 to_next += 1;
2922 n_left_from -= 1;
2923 n_left_to_next -= 1;
2924
2925 b0 = vlib_get_buffer (vm, bi0);
2926 lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index);
2927
2928 if (is_ip4)
2929 {
2930 ip40 = vlib_buffer_get_current (b0);
2931 th0 = ip4_next_header (ip40);
2932 }
2933 else
2934 {
2935 ip60 = vlib_buffer_get_current (b0);
2936 th0 = ip6_next_header (ip60);
2937 }
2938
2939 /* Create child session. For syn-flood protection use filter */
2940
Florin Corasdc629cd2017-05-09 00:52:37 -07002941 /* 1. first check for an RST: handled in dispatch */
2942 /* if (tcp_rst (th0))
2943 goto drop; */
Dave Barach68b0fb02017-02-28 15:15:56 -05002944
Florin Corasdc629cd2017-05-09 00:52:37 -07002945 /* 2. second check for an ACK: handled in dispatch */
2946 /* if (tcp_ack (th0))
2947 {
2948 tcp_send_reset (b0, is_ip4);
2949 goto drop;
2950 } */
Dave Barach68b0fb02017-02-28 15:15:56 -05002951
2952 /* 3. check for a SYN (did that already) */
2953
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002954 /* Make sure connection wasn't just created */
Florin Corasc1a448b2018-04-20 10:51:49 -07002955 child0 = tcp_lookup_connection (lc0->c_fib_index, b0,
2956 my_thread_index, is_ip4);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002957 if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN))
2958 {
2959 error0 = TCP_ERROR_CREATE_EXISTS;
2960 goto drop;
2961 }
2962
Dave Barach68b0fb02017-02-28 15:15:56 -05002963 /* Create child session and send SYN-ACK */
Florin Coras6534b7a2017-07-18 05:38:03 -04002964 child0 = tcp_connection_new (my_thread_index);
Florin Coras1c710452017-10-17 00:03:13 -07002965 child0->c_lcl_port = th0->dst_port;
Dave Barach68b0fb02017-02-28 15:15:56 -05002966 child0->c_rmt_port = th0->src_port;
2967 child0->c_is_ip4 = is_ip4;
Florin Corasbb292f42017-05-19 09:49:19 -07002968 child0->state = TCP_STATE_SYN_RCVD;
Florin Coras56b39f62018-03-27 17:29:32 -07002969 child0->c_fib_index = lc0->c_fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002970
2971 if (is_ip4)
2972 {
2973 child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32;
2974 child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32;
2975 }
2976 else
2977 {
2978 clib_memcpy (&child0->c_lcl_ip6, &ip60->dst_address,
2979 sizeof (ip6_address_t));
2980 clib_memcpy (&child0->c_rmt_ip6, &ip60->src_address,
2981 sizeof (ip6_address_t));
2982 }
2983
Florin Coras93992a92017-05-24 18:03:56 -07002984 if (tcp_options_parse (th0, &child0->rcv_opts))
Florin Corasdb84e572017-05-09 18:54:52 -07002985 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002986 clib_warning ("options parse fail");
Florin Corasdb84e572017-05-09 18:54:52 -07002987 goto drop;
2988 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002989
2990 child0->irs = vnet_buffer (b0)->tcp.seq_number;
2991 child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1;
Florin Coras3e350af2017-03-30 02:54:28 -07002992 child0->rcv_las = child0->rcv_nxt;
Florin Corasf9d05682018-04-26 08:26:52 -07002993 child0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Dave Barach68b0fb02017-02-28 15:15:56 -05002994
2995 /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
2996 * segments are used to initialize PAWS. */
Florin Coras93992a92017-05-24 18:03:56 -07002997 if (tcp_opts_tstamp (&child0->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05002998 {
Florin Coras93992a92017-05-24 18:03:56 -07002999 child0->tsval_recent = child0->rcv_opts.tsval;
Dave Barach68b0fb02017-02-28 15:15:56 -05003000 child0->tsval_recent_age = tcp_time_now ();
3001 }
3002
Florin Coras93992a92017-05-24 18:03:56 -07003003 if (tcp_opts_wscale (&child0->rcv_opts))
3004 child0->snd_wscale = child0->rcv_opts.wscale;
Florin Corase04c2992017-03-01 08:17:34 -08003005
Florin Corasf03a59a2017-06-09 21:07:32 -07003006 child0->snd_wnd = clib_net_to_host_u16 (th0->window)
3007 << child0->snd_wscale;
Florin Corase04c2992017-03-01 08:17:34 -08003008 child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
3009 child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
3010
3011 tcp_connection_init_vars (child0);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04003012 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, child0, 1);
Florin Corase69f4952017-03-07 10:06:24 -08003013
Florin Coras6dfb5ac2017-11-09 16:26:03 -08003014 if (stream_session_accept (&child0->connection, lc0->c_s_index,
3015 0 /* notify */ ))
3016 {
3017 clib_warning ("session accept fail");
3018 tcp_connection_cleanup (child0);
3019 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
3020 goto drop;
3021 }
3022
Dave Barach68b0fb02017-02-28 15:15:56 -05003023 /* Reuse buffer to make syn-ack and send */
3024 tcp_make_synack (child0, b0);
3025 next0 = tcp_next_output (is_ip4);
Florin Corasab0289a2017-08-14 11:25:25 -07003026 tcp_timer_set (child0, TCP_TIMER_ESTABLISH, TCP_SYN_RCVD_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05003027
3028 drop:
3029 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3030 {
Clement Durand6cf260c2017-04-13 13:27:04 +02003031 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
3032 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
3033 clib_memcpy (&t0->tcp_connection, lc0,
3034 sizeof (t0->tcp_connection));
Dave Barach68b0fb02017-02-28 15:15:56 -05003035 }
3036
Florin Coras00cd22d2018-04-18 13:20:18 -07003037 n_syns += (error0 == TCP_ERROR_NONE);
Florin Corase04c2992017-03-01 08:17:34 -08003038 b0->error = node->errors[error0];
Dave Barach68b0fb02017-02-28 15:15:56 -05003039
3040 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
3041 n_left_to_next, bi0, next0);
3042 }
3043
3044 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
3045 }
Florin Coras00cd22d2018-04-18 13:20:18 -07003046
3047 tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
Dave Barach68b0fb02017-02-28 15:15:56 -05003048 return from_frame->n_vectors;
3049}
3050
3051static uword
3052tcp4_listen (vlib_main_t * vm, vlib_node_runtime_t * node,
3053 vlib_frame_t * from_frame)
3054{
3055 return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3056}
3057
3058static uword
3059tcp6_listen (vlib_main_t * vm, vlib_node_runtime_t * node,
3060 vlib_frame_t * from_frame)
3061{
3062 return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3063}
3064
3065/* *INDENT-OFF* */
3066VLIB_REGISTER_NODE (tcp4_listen_node) =
3067{
3068 .function = tcp4_listen,
3069 .name = "tcp4-listen",
3070 /* Takes a vector of packets. */
3071 .vector_size = sizeof (u32),
3072 .n_errors = TCP_N_ERROR,
3073 .error_strings = tcp_error_strings,
3074 .n_next_nodes = TCP_LISTEN_N_NEXT,
3075 .next_nodes =
3076 {
3077#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3078 foreach_tcp_state_next
3079#undef _
3080 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003081 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003082};
3083/* *INDENT-ON* */
3084
3085VLIB_NODE_FUNCTION_MULTIARCH (tcp4_listen_node, tcp4_listen);
3086
3087/* *INDENT-OFF* */
3088VLIB_REGISTER_NODE (tcp6_listen_node) =
3089{
3090 .function = tcp6_listen,
3091 .name = "tcp6-listen",
3092 /* Takes a vector of packets. */
3093 .vector_size = sizeof (u32),
3094 .n_errors = TCP_N_ERROR,
3095 .error_strings = tcp_error_strings,
3096 .n_next_nodes = TCP_LISTEN_N_NEXT,
3097 .next_nodes =
3098 {
3099#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3100 foreach_tcp_state_next
3101#undef _
3102 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003103 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003104};
3105/* *INDENT-ON* */
3106
3107VLIB_NODE_FUNCTION_MULTIARCH (tcp6_listen_node, tcp6_listen);
3108
3109vlib_node_registration_t tcp4_input_node;
3110vlib_node_registration_t tcp6_input_node;
3111
3112typedef enum _tcp_input_next
3113{
3114 TCP_INPUT_NEXT_DROP,
3115 TCP_INPUT_NEXT_LISTEN,
3116 TCP_INPUT_NEXT_RCV_PROCESS,
3117 TCP_INPUT_NEXT_SYN_SENT,
3118 TCP_INPUT_NEXT_ESTABLISHED,
3119 TCP_INPUT_NEXT_RESET,
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003120 TCP_INPUT_NEXT_PUNT,
Dave Barach68b0fb02017-02-28 15:15:56 -05003121 TCP_INPUT_N_NEXT
3122} tcp_input_next_t;
3123
3124#define foreach_tcp4_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003125 _ (DROP, "ip4-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003126 _ (LISTEN, "tcp4-listen") \
3127 _ (RCV_PROCESS, "tcp4-rcv-process") \
3128 _ (SYN_SENT, "tcp4-syn-sent") \
3129 _ (ESTABLISHED, "tcp4-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003130 _ (RESET, "tcp4-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003131 _ (PUNT, "ip4-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003132
3133#define foreach_tcp6_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003134 _ (DROP, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003135 _ (LISTEN, "tcp6-listen") \
3136 _ (RCV_PROCESS, "tcp6-rcv-process") \
3137 _ (SYN_SENT, "tcp6-syn-sent") \
3138 _ (ESTABLISHED, "tcp6-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003139 _ (RESET, "tcp6-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003140 _ (PUNT, "ip6-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003141
Dave Barach68b0fb02017-02-28 15:15:56 -05003142#define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
3143
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003144static void
3145tcp_input_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07003146 vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003147{
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003148 tcp_connection_t *tc;
3149 tcp_header_t *tcp;
3150 tcp_rx_trace_t *t;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003151 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05003152
Florin Coras4df38712018-06-20 12:44:16 -07003153 for (i = 0; i < n_bufs; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05003154 {
Florin Coras4df38712018-06-20 12:44:16 -07003155 if (bs[i]->flags & VLIB_BUFFER_IS_TRACED)
3156 {
3157 t = vlib_add_trace (vm, node, bs[i], sizeof (*t));
3158 tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index,
3159 vm->thread_index);
3160 tcp = vlib_buffer_get_current (bs[i]);
3161 tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4);
3162 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003163 }
3164}
Dave Barach68b0fb02017-02-28 15:15:56 -05003165
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003166static void
3167tcp_input_set_error_next (tcp_main_t * tm, u16 * next, u32 * error, u8 is_ip4)
3168{
3169 if (*error == TCP_ERROR_FILTERED)
3170 {
3171 *next = TCP_INPUT_NEXT_DROP;
3172 }
3173 else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6))
3174 {
3175 *next = TCP_INPUT_NEXT_PUNT;
3176 *error = TCP_ERROR_PUNT;
3177 }
3178 else
3179 {
3180 *next = TCP_INPUT_NEXT_RESET;
3181 *error = TCP_ERROR_NO_LISTENER;
3182 }
3183}
Dave Barach68b0fb02017-02-28 15:15:56 -05003184
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003185static inline tcp_connection_t *
3186tcp_input_lookup_buffer (vlib_buffer_t * b, u8 thread_index, u32 * error,
3187 u8 is_ip4)
3188{
3189 u32 fib_index = vnet_buffer (b)->ip.fib_index;
3190 int n_advance_bytes, n_data_bytes;
3191 transport_connection_t *tc;
3192 tcp_header_t *tcp;
3193 u8 is_filtered = 0;
3194
3195 if (is_ip4)
3196 {
3197 ip4_header_t *ip4 = vlib_buffer_get_current (b);
3198 tcp = ip4_next_header (ip4);
3199 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip4;
3200 n_advance_bytes = (ip4_header_bytes (ip4) + tcp_header_bytes (tcp));
3201 n_data_bytes = clib_net_to_host_u16 (ip4->length) - n_advance_bytes;
3202
3203 /* Length check. Checksum computed by ipx_local no need to compute again */
3204 if (PREDICT_FALSE (n_advance_bytes < 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05003205 {
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003206 *error = TCP_ERROR_LENGTH;
3207 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003208 }
3209
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003210 tc = session_lookup_connection_wt4 (fib_index, &ip4->dst_address,
3211 &ip4->src_address, tcp->dst_port,
3212 tcp->src_port, TRANSPORT_PROTO_TCP,
3213 thread_index, &is_filtered);
3214 }
3215 else
3216 {
3217 ip6_header_t *ip6 = vlib_buffer_get_current (b);
3218 tcp = ip6_next_header (ip6);
3219 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip6;
3220 n_advance_bytes = tcp_header_bytes (tcp);
3221 n_data_bytes = clib_net_to_host_u16 (ip6->payload_length)
3222 - n_advance_bytes;
3223 n_advance_bytes += sizeof (ip6[0]);
3224
3225 if (PREDICT_FALSE (n_advance_bytes < 0))
3226 {
3227 *error = TCP_ERROR_LENGTH;
3228 return 0;
3229 }
3230
3231 tc = session_lookup_connection_wt6 (fib_index, &ip6->dst_address,
3232 &ip6->src_address, tcp->dst_port,
3233 tcp->src_port, TRANSPORT_PROTO_TCP,
3234 thread_index, &is_filtered);
Dave Barach68b0fb02017-02-28 15:15:56 -05003235 }
3236
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003237 vnet_buffer (b)->tcp.seq_number = clib_net_to_host_u32 (tcp->seq_number);
3238 vnet_buffer (b)->tcp.ack_number = clib_net_to_host_u32 (tcp->ack_number);
3239 vnet_buffer (b)->tcp.data_offset = n_advance_bytes;
3240 vnet_buffer (b)->tcp.data_len = n_data_bytes;
3241 vnet_buffer (b)->tcp.flags = 0;
3242
3243 *error = is_filtered ? TCP_ERROR_FILTERED : *error;
3244
3245 return tcp_get_connection_from_transport (tc);
3246}
3247
3248static inline void
3249tcp_input_dispatch_buffer (tcp_main_t * tm, tcp_connection_t * tc,
3250 vlib_buffer_t * b, u16 * next, u32 * error)
3251{
3252 tcp_header_t *tcp;
3253 u8 flags;
3254
3255 tcp = tcp_buffer_hdr (b);
3256 flags = tcp->flags & filter_flags;
3257 *next = tm->dispatch_table[tc->state][flags].next;
3258 *error = tm->dispatch_table[tc->state][flags].error;
3259
3260 if (PREDICT_FALSE (*error == TCP_ERROR_DISPATCH
3261 || *next == TCP_INPUT_NEXT_RESET))
3262 {
3263 /* Overload tcp flags to store state */
3264 tcp_state_t state = tc->state;
3265 vnet_buffer (b)->tcp.flags = tc->state;
3266
3267 if (*error == TCP_ERROR_DISPATCH)
3268 clib_warning ("disp error state %U flags %U", format_tcp_state,
3269 state, format_tcp_flags, (int) flags);
3270 }
3271}
3272
3273always_inline uword
3274tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3275 vlib_frame_t * frame, int is_ip4)
3276{
3277 u32 n_left_from, *from, thread_index = vm->thread_index;
3278 tcp_main_t *tm = vnet_get_tcp_main ();
3279 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
3280 u16 nexts[VLIB_FRAME_SIZE], *next;
3281
3282 tcp_set_time_now (thread_index);
3283
3284 from = vlib_frame_vector_args (frame);
3285 n_left_from = frame->n_vectors;
3286 vlib_get_buffers (vm, from, bufs, n_left_from);
3287
3288 b = bufs;
3289 next = nexts;
3290
3291 while (n_left_from >= 4)
3292 {
3293 u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER;
3294 tcp_connection_t *tc0, *tc1;
3295
3296 {
3297 vlib_prefetch_buffer_header (b[2], STORE);
3298 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3299
3300 vlib_prefetch_buffer_header (b[3], STORE);
3301 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3302 }
3303
3304 next[0] = next[1] = TCP_INPUT_NEXT_DROP;
3305
3306 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4);
3307 tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4);
3308
3309 if (PREDICT_TRUE (!tc0 + !tc1 == 0))
3310 {
3311 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3312 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3313
3314 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3315 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3316
3317 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3318 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3319 }
3320 else
3321 {
3322 if (PREDICT_TRUE (tc0 != 0))
3323 {
3324 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3325 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3326 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3327 }
3328 else
3329 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3330
3331 if (PREDICT_TRUE (tc1 != 0))
3332 {
3333 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3334 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3335 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3336 }
3337 else
3338 tcp_input_set_error_next (tm, &next[1], &error1, is_ip4);
3339 }
3340
3341 b += 2;
3342 next += 2;
3343 n_left_from -= 2;
3344 }
3345 while (n_left_from > 0)
3346 {
3347 tcp_connection_t *tc0;
3348 u32 error0 = TCP_ERROR_NO_LISTENER;
3349
3350 if (n_left_from > 1)
3351 {
3352 vlib_prefetch_buffer_header (b[1], STORE);
3353 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3354 }
3355
3356 next[0] = TCP_INPUT_NEXT_DROP;
3357 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4);
3358 if (PREDICT_TRUE (tc0 != 0))
3359 {
3360 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3361 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3362 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3363 }
3364 else
3365 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3366
3367 b += 1;
3368 next += 1;
3369 n_left_from -= 1;
3370 }
3371
3372 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
3373 tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4);
3374
3375 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
3376 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05003377}
3378
3379static uword
3380tcp4_input (vlib_main_t * vm, vlib_node_runtime_t * node,
3381 vlib_frame_t * from_frame)
3382{
3383 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3384}
3385
3386static uword
3387tcp6_input (vlib_main_t * vm, vlib_node_runtime_t * node,
3388 vlib_frame_t * from_frame)
3389{
3390 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3391}
3392
3393/* *INDENT-OFF* */
3394VLIB_REGISTER_NODE (tcp4_input_node) =
3395{
3396 .function = tcp4_input,
3397 .name = "tcp4-input",
3398 /* Takes a vector of packets. */
3399 .vector_size = sizeof (u32),
3400 .n_errors = TCP_N_ERROR,
3401 .error_strings = tcp_error_strings,
3402 .n_next_nodes = TCP_INPUT_N_NEXT,
3403 .next_nodes =
3404 {
3405#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3406 foreach_tcp4_input_next
3407#undef _
3408 },
3409 .format_buffer = format_tcp_header,
3410 .format_trace = format_tcp_rx_trace,
3411};
3412/* *INDENT-ON* */
3413
3414VLIB_NODE_FUNCTION_MULTIARCH (tcp4_input_node, tcp4_input);
3415
3416/* *INDENT-OFF* */
3417VLIB_REGISTER_NODE (tcp6_input_node) =
3418{
3419 .function = tcp6_input,
3420 .name = "tcp6-input",
3421 /* Takes a vector of packets. */
3422 .vector_size = sizeof (u32),
3423 .n_errors = TCP_N_ERROR,
3424 .error_strings = tcp_error_strings,
3425 .n_next_nodes = TCP_INPUT_N_NEXT,
3426 .next_nodes =
3427 {
3428#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3429 foreach_tcp6_input_next
3430#undef _
3431 },
3432 .format_buffer = format_tcp_header,
3433 .format_trace = format_tcp_rx_trace,
3434};
3435/* *INDENT-ON* */
3436
3437VLIB_NODE_FUNCTION_MULTIARCH (tcp6_input_node, tcp6_input);
Dave Barach68b0fb02017-02-28 15:15:56 -05003438
3439static void
3440tcp_dispatch_table_init (tcp_main_t * tm)
3441{
3442 int i, j;
3443 for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3444 for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3445 {
3446 tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3447 tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3448 }
3449
3450#define _(t,f,n,e) \
3451do { \
3452 tm->dispatch_table[TCP_STATE_##t][f].next = (n); \
3453 tm->dispatch_table[TCP_STATE_##t][f].error = (e); \
3454} while (0)
3455
3456 /* SYNs for new connections -> tcp-listen. */
3457 _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003458 _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
Florin Coras00cd22d2018-04-18 13:20:18 -07003459 _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_RST_RCVD);
Dave Barach2c25a622017-06-26 11:35:07 -04003460 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3461 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003462 /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3463 _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc28764f2017-04-26 00:08:42 -07003464 _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase8460c72018-09-24 14:40:40 -07003465 _(SYN_RCVD, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3466 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003467 _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc01c4452018-09-20 18:36:54 -07003468 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3469 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003470 /* SYN-ACK for a SYN */
3471 _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3472 TCP_ERROR_NONE);
3473 _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3474 _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3475 _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3476 TCP_ERROR_NONE);
3477 /* ACK for for established connection -> tcp-established. */
3478 _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3479 /* FIN for for established connection -> tcp-established. */
3480 _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3481 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3482 TCP_ERROR_NONE);
Florin Corasd79b41e2017-03-04 05:37:52 -08003483 _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003484 _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3485 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003486 _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003487 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3488 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003489 /* ACK or FIN-ACK to our FIN */
3490 _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3491 _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
3492 TCP_ERROR_NONE);
3493 /* FIN in reply to our FIN from the other side */
3494 _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003495 _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras56318932018-05-23 20:44:12 -07003496 _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003497 /* FIN confirming that the peer (app) has closed */
3498 _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasf6d68ed2017-05-07 19:12:02 -07003499 _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003500 _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3501 TCP_ERROR_NONE);
Florin Corasf03a59a2017-06-09 21:07:32 -07003502 _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3503 _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3504 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003505 _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003506 _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3507 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3508 TCP_ERROR_NONE);
Florin Corasdb84e572017-05-09 18:54:52 -07003509 _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc01d5782018-10-17 14:53:11 -07003510 _(LAST_ACK, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003511 _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3512 _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3513 TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003514 _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras50958952017-08-29 14:50:13 -07003515 _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras9d063042017-09-14 03:08:00 -04003516 _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Corasdc629cd2017-05-09 00:52:37 -07003517 _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras9d063042017-09-14 03:08:00 -04003518 _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003519 TCP_ERROR_CONNECTION_CLOSED);
Dave Barach68b0fb02017-02-28 15:15:56 -05003520#undef _
3521}
3522
Florin Coras0dbd5172018-06-25 16:19:34 -07003523static clib_error_t *
Dave Barach68b0fb02017-02-28 15:15:56 -05003524tcp_input_init (vlib_main_t * vm)
3525{
3526 clib_error_t *error = 0;
3527 tcp_main_t *tm = vnet_get_tcp_main ();
3528
3529 if ((error = vlib_call_init_function (vm, tcp_init)))
3530 return error;
3531
3532 /* Initialize dispatch table. */
3533 tcp_dispatch_table_init (tm);
3534
3535 return error;
3536}
3537
3538VLIB_INIT_FUNCTION (tcp_input_init);
3539
3540/*
3541 * fd.io coding-style-patch-verification: ON
3542 *
3543 * Local Variables:
3544 * eval: (c-set-style "gnu")
3545 * End:
3546 */