blob: e75c77d0e2fa118074f44d03dde640f796852b0d [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;
Florin Corasecbd20b2018-10-17 23:34:54 -0700683 if (bytes > (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
684 && left->prev == TCP_INVALID_SACK_HOLE_INDEX)
685 sb->lost_bytes += scoreboard_hole_bytes (left);
Florin Coras93992a92017-05-24 18:03:56 -0700686 }
687
Florin Corasecbd20b2018-10-17 23:34:54 -0700688 right = left;
689 while ((left = scoreboard_prev_hole (sb, right))
Florin Coras93992a92017-05-24 18:03:56 -0700690 && (bytes < (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
691 && blks < TCP_DUPACK_THRESHOLD))
692 {
Florin Corasecbd20b2018-10-17 23:34:54 -0700693 bytes += right->start - left->end;
Florin Coras93992a92017-05-24 18:03:56 -0700694 blks++;
Florin Corasecbd20b2018-10-17 23:34:54 -0700695 right = left;
Florin Coras93992a92017-05-24 18:03:56 -0700696 }
697
Florin Corasecbd20b2018-10-17 23:34:54 -0700698 while (left)
Florin Coras93992a92017-05-24 18:03:56 -0700699 {
Florin Corasecbd20b2018-10-17 23:34:54 -0700700 bytes += right->start - left->end;
701 sb->lost_bytes += scoreboard_hole_bytes (left);
702 left->is_lost = 1;
703 right = left;
704 left = scoreboard_prev_hole (sb, left);
Florin Coras93992a92017-05-24 18:03:56 -0700705 }
Florin Corasf03a59a2017-06-09 21:07:32 -0700706 sb->sacked_bytes = bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700707}
708
709/**
710 * Figure out the next hole to retransmit
711 *
712 * Follows logic proposed in RFC6675 Sec. 4, NextSeg()
713 */
714sack_scoreboard_hole_t *
715scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
716 sack_scoreboard_hole_t * start,
717 u8 have_sent_1_smss,
718 u8 * can_rescue, u8 * snd_limited)
719{
720 sack_scoreboard_hole_t *hole = 0;
721
722 hole = start ? start : scoreboard_first_hole (sb);
723 while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost)
724 hole = scoreboard_next_hole (sb, hole);
725
726 /* Nothing, return */
727 if (!hole)
728 {
729 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
730 return 0;
731 }
732
733 /* Rule (1): if higher than rxt, less than high_sacked and lost */
734 if (hole->is_lost && seq_lt (hole->start, sb->high_sacked))
735 {
736 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
737 }
738 else
739 {
740 /* Rule (2): output takes care of transmitting new data */
741 if (!have_sent_1_smss)
742 {
743 hole = 0;
744 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
745 }
746 /* Rule (3): if hole not lost */
747 else if (seq_lt (hole->start, sb->high_sacked))
748 {
749 *snd_limited = 1;
750 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
751 }
752 /* Rule (4): if hole beyond high_sacked */
753 else
754 {
755 ASSERT (seq_geq (hole->start, sb->high_sacked));
756 *snd_limited = 1;
757 *can_rescue = 1;
758 /* HighRxt MUST NOT be updated */
759 return 0;
760 }
761 }
762
763 if (hole && seq_lt (sb->high_rxt, hole->start))
764 sb->high_rxt = hole->start;
765
766 return hole;
767}
768
Florin Coras0dbd5172018-06-25 16:19:34 -0700769static void
Florin Coras3eb50622017-07-13 01:24:57 -0400770scoreboard_init_high_rxt (sack_scoreboard_t * sb, u32 seq)
Florin Coras93992a92017-05-24 18:03:56 -0700771{
772 sack_scoreboard_hole_t *hole;
773 hole = scoreboard_first_hole (sb);
Florin Coras3eb50622017-07-13 01:24:57 -0400774 if (hole)
775 {
776 seq = seq_gt (seq, hole->start) ? seq : hole->start;
777 sb->cur_rxt_hole = sb->head;
778 }
779 sb->high_rxt = seq;
780}
781
Florin Coras0dbd5172018-06-25 16:19:34 -0700782void
783scoreboard_init (sack_scoreboard_t * sb)
784{
785 sb->head = TCP_INVALID_SACK_HOLE_INDEX;
786 sb->tail = TCP_INVALID_SACK_HOLE_INDEX;
787 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
788}
789
790void
791scoreboard_clear (sack_scoreboard_t * sb)
792{
793 sack_scoreboard_hole_t *hole;
794 while ((hole = scoreboard_first_hole (sb)))
795 {
796 scoreboard_remove_hole (sb, hole);
797 }
798 ASSERT (sb->head == sb->tail && sb->head == TCP_INVALID_SACK_HOLE_INDEX);
799 ASSERT (pool_elts (sb->holes) == 0);
800 sb->sacked_bytes = 0;
801 sb->last_sacked_bytes = 0;
802 sb->last_bytes_delivered = 0;
803 sb->snd_una_adv = 0;
804 sb->high_sacked = 0;
805 sb->high_rxt = 0;
806 sb->lost_bytes = 0;
807 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
808}
809
Florin Coras3eb50622017-07-13 01:24:57 -0400810/**
811 * Test that scoreboard is sane after recovery
812 *
813 * Returns 1 if scoreboard is empty or if first hole beyond
814 * snd_una.
815 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700816static u8
Florin Coras3eb50622017-07-13 01:24:57 -0400817tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc)
818{
819 sack_scoreboard_hole_t *hole;
820 hole = scoreboard_first_hole (&tc->sack_sb);
Florin Corasecbd20b2018-10-17 23:34:54 -0700821 return (!hole || (seq_geq (hole->start, tc->snd_una)
822 && seq_lt (hole->end, tc->snd_una_max)));
Florin Coras93992a92017-05-24 18:03:56 -0700823}
824
825void
Dave Barach68b0fb02017-02-28 15:15:56 -0500826tcp_rcv_sacks (tcp_connection_t * tc, u32 ack)
827{
828 sack_scoreboard_t *sb = &tc->sack_sb;
829 sack_block_t *blk, tmp;
Florin Corasf03a59a2017-06-09 21:07:32 -0700830 sack_scoreboard_hole_t *hole, *next_hole, *last_hole;
Florin Coras93992a92017-05-24 18:03:56 -0700831 u32 blk_index = 0, old_sacked_bytes, hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500832 int i, j;
833
Florin Coras6792ec02017-03-13 03:49:51 -0700834 sb->last_sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700835 sb->last_bytes_delivered = 0;
Florin Coras352c2c42018-06-26 01:22:41 -0700836 sb->snd_una_adv = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700837
Florin Coras93992a92017-05-24 18:03:56 -0700838 if (!tcp_opts_sack (&tc->rcv_opts)
839 && sb->head == TCP_INVALID_SACK_HOLE_INDEX)
Dave Barach68b0fb02017-02-28 15:15:56 -0500840 return;
841
Florin Coras352c2c42018-06-26 01:22:41 -0700842 old_sacked_bytes = sb->sacked_bytes;
843
Dave Barach68b0fb02017-02-28 15:15:56 -0500844 /* Remove invalid blocks */
Florin Coras93992a92017-05-24 18:03:56 -0700845 blk = tc->rcv_opts.sacks;
846 while (blk < vec_end (tc->rcv_opts.sacks))
Florin Coras6792ec02017-03-13 03:49:51 -0700847 {
848 if (seq_lt (blk->start, blk->end)
849 && seq_gt (blk->start, tc->snd_una)
Florin Coras3eb50622017-07-13 01:24:57 -0400850 && seq_gt (blk->start, ack) && seq_leq (blk->end, tc->snd_una_max))
Florin Coras6792ec02017-03-13 03:49:51 -0700851 {
852 blk++;
853 continue;
854 }
Florin Coras93992a92017-05-24 18:03:56 -0700855 vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks);
Florin Coras6792ec02017-03-13 03:49:51 -0700856 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500857
858 /* Add block for cumulative ack */
859 if (seq_gt (ack, tc->snd_una))
860 {
861 tmp.start = tc->snd_una;
862 tmp.end = ack;
Florin Coras93992a92017-05-24 18:03:56 -0700863 vec_add1 (tc->rcv_opts.sacks, tmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500864 }
865
Florin Coras93992a92017-05-24 18:03:56 -0700866 if (vec_len (tc->rcv_opts.sacks) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500867 return;
868
Florin Coras3eb50622017-07-13 01:24:57 -0400869 tcp_scoreboard_trace_add (tc, ack);
870
Dave Barach68b0fb02017-02-28 15:15:56 -0500871 /* Make sure blocks are ordered */
Florin Coras93992a92017-05-24 18:03:56 -0700872 for (i = 0; i < vec_len (tc->rcv_opts.sacks); i++)
873 for (j = i + 1; j < vec_len (tc->rcv_opts.sacks); j++)
874 if (seq_lt (tc->rcv_opts.sacks[j].start, tc->rcv_opts.sacks[i].start))
Dave Barach68b0fb02017-02-28 15:15:56 -0500875 {
Florin Coras93992a92017-05-24 18:03:56 -0700876 tmp = tc->rcv_opts.sacks[i];
877 tc->rcv_opts.sacks[i] = tc->rcv_opts.sacks[j];
878 tc->rcv_opts.sacks[j] = tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500879 }
880
Dave Barach68b0fb02017-02-28 15:15:56 -0500881 if (sb->head == TCP_INVALID_SACK_HOLE_INDEX)
882 {
Florin Coras6792ec02017-03-13 03:49:51 -0700883 /* If no holes, insert the first that covers all outstanding bytes */
884 last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
885 tc->snd_una, tc->snd_una_max);
886 sb->tail = scoreboard_hole_index (sb, last_hole);
Florin Coras93992a92017-05-24 18:03:56 -0700887 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
888 sb->high_sacked = tmp.end;
Florin Coras6792ec02017-03-13 03:49:51 -0700889 }
890 else
891 {
892 /* If we have holes but snd_una_max is beyond the last hole, update
893 * last hole end */
Florin Coras93992a92017-05-24 18:03:56 -0700894 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
Florin Coras6792ec02017-03-13 03:49:51 -0700895 last_hole = scoreboard_last_hole (sb);
Dave Barach2c25a622017-06-26 11:35:07 -0400896 if (seq_gt (tc->snd_una_max, last_hole->end))
897 {
898 if (seq_geq (last_hole->start, sb->high_sacked))
899 {
900 last_hole->end = tc->snd_una_max;
901 }
902 /* New hole after high sacked block */
903 else if (seq_lt (sb->high_sacked, tc->snd_una_max))
904 {
905 scoreboard_insert_hole (sb, sb->tail, sb->high_sacked,
906 tc->snd_una_max);
907 }
908 }
909 /* Keep track of max byte sacked for when the last hole
Florin Corasf03a59a2017-06-09 21:07:32 -0700910 * is acked */
911 if (seq_gt (tmp.end, sb->high_sacked))
912 sb->high_sacked = tmp.end;
Dave Barach68b0fb02017-02-28 15:15:56 -0500913 }
914
915 /* Walk the holes with the SACK blocks */
916 hole = pool_elt_at_index (sb->holes, sb->head);
Florin Coras93992a92017-05-24 18:03:56 -0700917 while (hole && blk_index < vec_len (tc->rcv_opts.sacks))
Dave Barach68b0fb02017-02-28 15:15:56 -0500918 {
Florin Coras93992a92017-05-24 18:03:56 -0700919 blk = &tc->rcv_opts.sacks[blk_index];
Dave Barach68b0fb02017-02-28 15:15:56 -0500920 if (seq_leq (blk->start, hole->start))
921 {
922 /* Block covers hole. Remove hole */
923 if (seq_geq (blk->end, hole->end))
924 {
925 next_hole = scoreboard_next_hole (sb, hole);
926
Florin Corasf03a59a2017-06-09 21:07:32 -0700927 /* Byte accounting: snd_una needs to be advanced */
928 if (blk->end == ack)
Dave Barach68b0fb02017-02-28 15:15:56 -0500929 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700930 if (next_hole)
Florin Coras06d11012017-05-17 14:21:51 -0700931 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700932 if (seq_lt (ack, next_hole->start))
933 sb->snd_una_adv = next_hole->start - ack;
934 sb->last_bytes_delivered +=
935 next_hole->start - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -0700936 }
Florin Coras3eb50622017-07-13 01:24:57 -0400937 else
Florin Coras06d11012017-05-17 14:21:51 -0700938 {
Dave Barach2c25a622017-06-26 11:35:07 -0400939 ASSERT (seq_geq (sb->high_sacked, ack));
Florin Coras93992a92017-05-24 18:03:56 -0700940 sb->snd_una_adv = sb->high_sacked - ack;
Florin Corasf03a59a2017-06-09 21:07:32 -0700941 sb->last_bytes_delivered += sb->high_sacked - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -0700942 }
943 }
944
Dave Barach68b0fb02017-02-28 15:15:56 -0500945 scoreboard_remove_hole (sb, hole);
946 hole = next_hole;
947 }
Florin Coras6792ec02017-03-13 03:49:51 -0700948 /* Partial 'head' overlap */
Dave Barach68b0fb02017-02-28 15:15:56 -0500949 else
950 {
Florin Coras6792ec02017-03-13 03:49:51 -0700951 if (seq_gt (blk->end, hole->start))
952 {
Florin Coras6792ec02017-03-13 03:49:51 -0700953 hole->start = blk->end;
954 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500955 blk_index++;
956 }
957 }
958 else
959 {
960 /* Hole must be split */
Florin Coras6792ec02017-03-13 03:49:51 -0700961 if (seq_lt (blk->end, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -0500962 {
Florin Coras6792ec02017-03-13 03:49:51 -0700963 hole_index = scoreboard_hole_index (sb, hole);
Florin Coras3eb50622017-07-13 01:24:57 -0400964 next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
965 hole->end);
Florin Coras6792ec02017-03-13 03:49:51 -0700966
967 /* Pool might've moved */
968 hole = scoreboard_get_hole (sb, hole_index);
969 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -0500970 blk_index++;
Florin Coras3eb50622017-07-13 01:24:57 -0400971 ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
Dave Barach68b0fb02017-02-28 15:15:56 -0500972 }
Florin Corasf03a59a2017-06-09 21:07:32 -0700973 else if (seq_lt (blk->start, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -0500974 {
Florin Coras6792ec02017-03-13 03:49:51 -0700975 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -0500976 }
Florin Coras93992a92017-05-24 18:03:56 -0700977 hole = scoreboard_next_hole (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500978 }
979 }
Florin Coras6792ec02017-03-13 03:49:51 -0700980
Florin Corasecbd20b2018-10-17 23:34:54 -0700981 if (pool_elts (sb->holes) == 1)
982 {
983 hole = scoreboard_first_hole (sb);
984 if (hole->start == ack + sb->snd_una_adv
985 && hole->end == tc->snd_una_max)
986 scoreboard_remove_hole (sb, hole);
987 }
988
Florin Corasf03a59a2017-06-09 21:07:32 -0700989 scoreboard_update_bytes (tc, sb);
990 sb->last_sacked_bytes = sb->sacked_bytes
991 - (old_sacked_bytes - sb->last_bytes_delivered);
Florin Corasca1c8f32018-05-23 21:01:30 -0700992 ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes || tcp_in_recovery (tc));
Florin Corasf03a59a2017-06-09 21:07:32 -0700993 ASSERT (sb->sacked_bytes == 0
994 || sb->sacked_bytes < tc->snd_una_max - seq_max (tc->snd_una, ack));
995 ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_una_max
996 - seq_max (tc->snd_una, ack));
Dave Barach2c25a622017-06-26 11:35:07 -0400997 ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
998 || sb->holes[sb->head].start == ack + sb->snd_una_adv);
Florin Corasca1c8f32018-05-23 21:01:30 -0700999 TCP_EVT_DBG (TCP_EVT_CC_SCOREBOARD, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001000}
1001
Florin Coras93992a92017-05-24 18:03:56 -07001002/**
1003 * Try to update snd_wnd based on feedback received from peer.
Dave Barach68b0fb02017-02-28 15:15:56 -05001004 *
Florin Coras93992a92017-05-24 18:03:56 -07001005 * If successful, and new window is 'effectively' 0, activate persist
1006 * timer.
1007 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001008static void
1009tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
1010{
Florin Coras93992a92017-05-24 18:03:56 -07001011 /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
1012 * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
Florin Coras6792ec02017-03-13 03:49:51 -07001013 if (seq_lt (tc->snd_wl1, seq)
1014 || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001015 {
1016 tc->snd_wnd = snd_wnd;
1017 tc->snd_wl1 = seq;
1018 tc->snd_wl2 = ack;
Florin Coras6792ec02017-03-13 03:49:51 -07001019 TCP_EVT_DBG (TCP_EVT_SND_WND, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001020
Florin Corasbb292f42017-05-19 09:49:19 -07001021 if (tc->snd_wnd < tc->snd_mss)
1022 {
Florin Coras93992a92017-05-24 18:03:56 -07001023 /* Set persist timer if not set and we just got 0 wnd */
1024 if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
1025 && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
Florin Corasbb292f42017-05-19 09:49:19 -07001026 tcp_persist_timer_set (tc);
1027 }
Florin Coras3e350af2017-03-30 02:54:28 -07001028 else
Florin Coras93992a92017-05-24 18:03:56 -07001029 {
1030 tcp_persist_timer_reset (tc);
1031 if (!tcp_in_recovery (tc) && tc->rto_boff > 0)
1032 {
1033 tc->rto_boff = 0;
1034 tcp_update_rto (tc);
1035 }
1036 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001037 }
1038}
1039
Florin Corasd2aab832018-05-22 11:39:59 -07001040/**
1041 * Init loss recovery/fast recovery.
1042 *
1043 * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
1044 * updated in @ref tcp_cc_handle_event after fast retransmit
1045 */
Florin Coras6792ec02017-03-13 03:49:51 -07001046void
Florin Coras93992a92017-05-24 18:03:56 -07001047tcp_cc_init_congestion (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001048{
Florin Coras93992a92017-05-24 18:03:56 -07001049 tcp_fastrecovery_on (tc);
1050 tc->snd_congestion = tc->snd_una_max;
Florin Coras62166002018-04-18 16:40:55 -07001051 tc->cwnd_acc_bytes = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001052 tc->cc_algo->congestion (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001053 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001054}
1055
Florin Coras93992a92017-05-24 18:03:56 -07001056static void
1057tcp_cc_recovery_exit (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001058{
Florin Coras93992a92017-05-24 18:03:56 -07001059 tc->rto_boff = 0;
Florin Corasf1762d62017-09-24 19:43:08 -04001060 tcp_update_rto (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001061 tc->snd_rxt_ts = 0;
Florin Coras84275e92017-09-26 12:30:40 -04001062 tc->snd_nxt = tc->snd_una_max;
Florin Coras93992a92017-05-24 18:03:56 -07001063 tcp_recovery_off (tc);
Florin Corasf1762d62017-09-24 19:43:08 -04001064 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Florin Coras93992a92017-05-24 18:03:56 -07001065}
Florin Coras3e350af2017-03-30 02:54:28 -07001066
Florin Coras93992a92017-05-24 18:03:56 -07001067void
1068tcp_cc_fastrecovery_exit (tcp_connection_t * tc)
1069{
Florin Coras6792ec02017-03-13 03:49:51 -07001070 tc->cc_algo->recovered (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001071 tc->snd_rxt_bytes = 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001072 tc->rcv_dupacks = 0;
Florin Coras84275e92017-09-26 12:30:40 -04001073 tc->snd_nxt = tc->snd_una_max;
Florin Coras93992a92017-05-24 18:03:56 -07001074 tcp_fastrecovery_off (tc);
1075 tcp_fastrecovery_1_smss_off (tc);
Florin Corasf1762d62017-09-24 19:43:08 -04001076 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Dave Barach68b0fb02017-02-28 15:15:56 -05001077}
1078
1079static void
Florin Coras93992a92017-05-24 18:03:56 -07001080tcp_cc_congestion_undo (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001081{
Florin Coras93992a92017-05-24 18:03:56 -07001082 tc->cwnd = tc->prev_cwnd;
1083 tc->ssthresh = tc->prev_ssthresh;
1084 tc->snd_nxt = tc->snd_una_max;
1085 tc->rcv_dupacks = 0;
1086 if (tcp_in_recovery (tc))
1087 tcp_cc_recovery_exit (tc);
1088 ASSERT (tc->rto_boff == 0);
Florin Corasf1762d62017-09-24 19:43:08 -04001089 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 5);
Florin Coras93992a92017-05-24 18:03:56 -07001090 /* TODO extend for fastrecovery */
1091}
Dave Barach68b0fb02017-02-28 15:15:56 -05001092
Florin Coras93992a92017-05-24 18:03:56 -07001093static u8
1094tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
1095{
Florin Corasf1762d62017-09-24 19:43:08 -04001096 return (tcp_in_recovery (tc) && tc->rto_boff == 1
Dave Barach2c25a622017-06-26 11:35:07 -04001097 && tc->snd_rxt_ts
Florin Coras93992a92017-05-24 18:03:56 -07001098 && tcp_opts_tstamp (&tc->rcv_opts)
1099 && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
1100}
1101
Florin Coras0dbd5172018-06-25 16:19:34 -07001102static int
Florin Coras93992a92017-05-24 18:03:56 -07001103tcp_cc_recover (tcp_connection_t * tc)
1104{
1105 ASSERT (tcp_in_cong_recovery (tc));
1106 if (tcp_cc_is_spurious_retransmit (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001107 {
Florin Coras93992a92017-05-24 18:03:56 -07001108 tcp_cc_congestion_undo (tc);
1109 return 1;
1110 }
1111
1112 if (tcp_in_recovery (tc))
1113 tcp_cc_recovery_exit (tc);
1114 else if (tcp_in_fastrecovery (tc))
1115 tcp_cc_fastrecovery_exit (tc);
1116
1117 ASSERT (tc->rto_boff == 0);
1118 ASSERT (!tcp_in_cong_recovery (tc));
Florin Coras3eb50622017-07-13 01:24:57 -04001119 ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001120 return 0;
1121}
1122
1123static void
1124tcp_cc_update (tcp_connection_t * tc, vlib_buffer_t * b)
1125{
Florin Coras3eb50622017-07-13 01:24:57 -04001126 ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001127
1128 /* Congestion avoidance */
1129 tc->cc_algo->rcv_ack (tc);
1130 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1131
1132 /* If a cumulative ack, make sure dupacks is 0 */
1133 tc->rcv_dupacks = 0;
1134
1135 /* When dupacks hits the threshold we only enter fast retransmit if
1136 * cumulative ack covers more than snd_congestion. Should snd_una
1137 * wrap this test may fail under otherwise valid circumstances.
1138 * Therefore, proactively update snd_congestion when wrap detected. */
1139 if (PREDICT_FALSE
1140 (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1141 && seq_gt (tc->snd_congestion, tc->snd_una)))
1142 tc->snd_congestion = tc->snd_una - 1;
1143}
1144
1145static u8
1146tcp_should_fastrecover_sack (tcp_connection_t * tc)
1147{
1148 return (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss < tc->sack_sb.sacked_bytes;
1149}
1150
1151static u8
1152tcp_should_fastrecover (tcp_connection_t * tc)
1153{
1154 return (tc->rcv_dupacks == TCP_DUPACK_THRESHOLD
1155 || tcp_should_fastrecover_sack (tc));
1156}
1157
Florin Corasf03a59a2017-06-09 21:07:32 -07001158/**
1159 * One function to rule them all ... and in the darkness bind them
1160 */
Florin Coras93992a92017-05-24 18:03:56 -07001161static void
1162tcp_cc_handle_event (tcp_connection_t * tc, u32 is_dack)
1163{
Florin Corasf03a59a2017-06-09 21:07:32 -07001164 u32 rxt_delivered;
1165
Florin Corasca1c8f32018-05-23 21:01:30 -07001166 if (tcp_in_fastrecovery (tc) && tcp_opts_sack_permitted (&tc->rcv_opts))
1167 {
1168 if (tc->bytes_acked)
1169 goto partial_ack;
1170 tcp_fast_retransmit (tc);
1171 return;
1172 }
Florin Coras93992a92017-05-24 18:03:56 -07001173 /*
1174 * Duplicate ACK. Check if we should enter fast recovery, or if already in
1175 * it account for the bytes that left the network.
1176 */
Florin Corasca1c8f32018-05-23 21:01:30 -07001177 else if (is_dack && !tcp_in_recovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001178 {
Florin Corasd2aab832018-05-22 11:39:59 -07001179 TCP_EVT_DBG (TCP_EVT_DUPACK_RCVD, tc, 1);
Florin Coras93992a92017-05-24 18:03:56 -07001180 ASSERT (tc->snd_una != tc->snd_una_max
1181 || tc->sack_sb.last_sacked_bytes);
Dave Barach2c25a622017-06-26 11:35:07 -04001182
Florin Coras93992a92017-05-24 18:03:56 -07001183 tc->rcv_dupacks++;
1184
Florin Corasd2aab832018-05-22 11:39:59 -07001185 /* Pure duplicate ack. If some data got acked, it's handled lower */
Florin Coras93992a92017-05-24 18:03:56 -07001186 if (tc->rcv_dupacks > TCP_DUPACK_THRESHOLD && !tc->bytes_acked)
Dave Barach68b0fb02017-02-28 15:15:56 -05001187 {
Florin Coras93992a92017-05-24 18:03:56 -07001188 ASSERT (tcp_in_fastrecovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001189 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1190 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001191 }
Florin Coras93992a92017-05-24 18:03:56 -07001192 else if (tcp_should_fastrecover (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001193 {
Florin Corasd2aab832018-05-22 11:39:59 -07001194 ASSERT (!tcp_in_fastrecovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001195
Dave Barach2c25a622017-06-26 11:35:07 -04001196 /* If of of the two conditions lower hold, reset dupacks because
1197 * we're probably after timeout (RFC6582 heuristics).
1198 * If Cumulative ack does not cover more than congestion threshold,
1199 * and:
1200 * 1) The following doesn't hold: The congestion window is greater
1201 * than SMSS bytes and the difference between highest_ack
1202 * and prev_highest_ack is at most 4*SMSS bytes
1203 * 2) Echoed timestamp in the last non-dup ack does not equal the
1204 * stored timestamp
Florin Coras93992a92017-05-24 18:03:56 -07001205 */
Dave Barach2c25a622017-06-26 11:35:07 -04001206 if (seq_leq (tc->snd_una, tc->snd_congestion)
1207 && ((!(tc->cwnd > tc->snd_mss
1208 && tc->bytes_acked <= 4 * tc->snd_mss))
1209 || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
Florin Coras93992a92017-05-24 18:03:56 -07001210 {
1211 tc->rcv_dupacks = 0;
1212 return;
1213 }
1214
1215 tcp_cc_init_congestion (tc);
1216 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1217
1218 /* The first segment MUST be retransmitted */
1219 tcp_retransmit_first_unacked (tc);
1220
1221 /* Post retransmit update cwnd to ssthresh and account for the
1222 * three segments that have left the network and should've been
1223 * buffered at the receiver XXX */
1224 tc->cwnd = tc->ssthresh + tc->rcv_dupacks * tc->snd_mss;
Dave Barach2c25a622017-06-26 11:35:07 -04001225 ASSERT (tc->cwnd >= tc->snd_mss);
Florin Coras93992a92017-05-24 18:03:56 -07001226
1227 /* If cwnd allows, send more data */
Florin Coras3eb50622017-07-13 01:24:57 -04001228 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras93992a92017-05-24 18:03:56 -07001229 {
Florin Coras3eb50622017-07-13 01:24:57 -04001230 scoreboard_init_high_rxt (&tc->sack_sb,
1231 tc->snd_una + tc->snd_mss);
Florin Coras93992a92017-05-24 18:03:56 -07001232 tcp_fast_retransmit_sack (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001233 }
1234 else
1235 {
Florin Coras93992a92017-05-24 18:03:56 -07001236 tcp_fast_retransmit_no_sack (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001237 }
Florin Coras93992a92017-05-24 18:03:56 -07001238 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001239 }
Florin Coras93992a92017-05-24 18:03:56 -07001240 else if (!tc->bytes_acked
1241 || (tc->bytes_acked && !tcp_in_cong_recovery (tc)))
1242 {
1243 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1244 return;
1245 }
1246 else
1247 goto partial_ack;
1248 }
1249
Florin Coras93992a92017-05-24 18:03:56 -07001250 if (!tc->bytes_acked)
1251 return;
1252
1253partial_ack:
Florin Corasd2aab832018-05-22 11:39:59 -07001254 TCP_EVT_DBG (TCP_EVT_CC_PACK, tc);
1255
Florin Coras93992a92017-05-24 18:03:56 -07001256 /*
1257 * Legitimate ACK. 1) See if we can exit recovery
1258 */
1259 /* XXX limit this only to first partial ack? */
Florin Coras3ec66b02018-08-23 16:27:05 -07001260 if (seq_lt (tc->snd_una, tc->snd_congestion))
1261 tcp_retransmit_timer_force_update (tc);
1262 else
1263 tcp_retransmit_timer_update (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001264
1265 if (seq_geq (tc->snd_una, tc->snd_congestion))
1266 {
1267 /* If spurious return, we've already updated everything */
1268 if (tcp_cc_recover (tc))
Florin Corasf03a59a2017-06-09 21:07:32 -07001269 {
1270 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1271 return;
1272 }
Florin Coras93992a92017-05-24 18:03:56 -07001273
1274 tc->snd_nxt = tc->snd_una_max;
1275
1276 /* Treat as congestion avoidance ack */
1277 tc->cc_algo->rcv_ack (tc);
1278 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1279 return;
1280 }
1281
1282 /*
1283 * Legitimate ACK. 2) If PARTIAL ACK try to retransmit
1284 */
Florin Coras93992a92017-05-24 18:03:56 -07001285
1286 /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
Florin Corasd2aab832018-05-22 11:39:59 -07001287 * reset dupacks to 0. Also needed if in congestion recovery */
Florin Coras93992a92017-05-24 18:03:56 -07001288 tc->rcv_dupacks = 0;
1289
Florin Coras93992a92017-05-24 18:03:56 -07001290 /* Post RTO timeout don't try anything fancy */
1291 if (tcp_in_recovery (tc))
Florin Corasd2aab832018-05-22 11:39:59 -07001292 {
1293 tc->cc_algo->rcv_ack (tc);
1294 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
Florin Coras3ec66b02018-08-23 16:27:05 -07001295 transport_add_tx_event (&tc->connection);
Florin Corasd2aab832018-05-22 11:39:59 -07001296 return;
1297 }
Florin Coras93992a92017-05-24 18:03:56 -07001298
1299 /* Remove retransmitted bytes that have been delivered */
Florin Corasf03a59a2017-06-09 21:07:32 -07001300 ASSERT (tc->bytes_acked + tc->sack_sb.snd_una_adv
Florin Corasb2215d62017-08-01 16:56:58 -07001301 >= tc->sack_sb.last_bytes_delivered
1302 || (tc->flags & TCP_CONN_FINSNT));
Florin Coras3eb50622017-07-13 01:24:57 -04001303
1304 if (seq_lt (tc->snd_una, tc->sack_sb.high_rxt))
Florin Coras93992a92017-05-24 18:03:56 -07001305 {
1306 /* If we have sacks and we haven't gotten an ack beyond high_rxt,
1307 * remove sacked bytes delivered */
Florin Coras3eb50622017-07-13 01:24:57 -04001308 rxt_delivered = tc->bytes_acked + tc->sack_sb.snd_una_adv
1309 - tc->sack_sb.last_bytes_delivered;
Florin Corasf03a59a2017-06-09 21:07:32 -07001310 ASSERT (tc->snd_rxt_bytes >= rxt_delivered);
1311 tc->snd_rxt_bytes -= rxt_delivered;
Dave Barach68b0fb02017-02-28 15:15:56 -05001312 }
1313 else
1314 {
Florin Coras93992a92017-05-24 18:03:56 -07001315 /* Either all retransmitted holes have been acked, or we're
1316 * "in the blind" and retransmitting segment by segment */
1317 tc->snd_rxt_bytes = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001318 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001319
Florin Coras93992a92017-05-24 18:03:56 -07001320 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_PARTIALACK);
Dave Barach68b0fb02017-02-28 15:15:56 -05001321
Florin Coras93992a92017-05-24 18:03:56 -07001322 /*
1323 * Since this was a partial ack, try to retransmit some more data
1324 */
1325 tcp_fast_retransmit (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001326}
1327
Florin Coras93992a92017-05-24 18:03:56 -07001328/**
1329 * Process incoming ACK
1330 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001331static int
1332tcp_rcv_ack (tcp_connection_t * tc, vlib_buffer_t * b,
1333 tcp_header_t * th, u32 * next, u32 * error)
1334{
Florin Coras93992a92017-05-24 18:03:56 -07001335 u32 prev_snd_wnd, prev_snd_una;
1336 u8 is_dack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001337
Florin Corasf03a59a2017-06-09 21:07:32 -07001338 TCP_EVT_DBG (TCP_EVT_CC_STAT, tc);
1339
Florin Coras6792ec02017-03-13 03:49:51 -07001340 /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
Florin Coras93992a92017-05-24 18:03:56 -07001341 if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001342 {
Florin Corasca1c8f32018-05-23 21:01:30 -07001343 /* When we entered recovery, we reset snd_nxt to snd_una. Seems peer
1344 * still has the data so accept the ack */
1345 if (tcp_in_recovery (tc)
Florin Coras3ec66b02018-08-23 16:27:05 -07001346 && seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_congestion))
Florin Corasca1c8f32018-05-23 21:01:30 -07001347 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001348 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
1349 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
1350 tc->snd_una_max = tc->snd_nxt;
Florin Corasca1c8f32018-05-23 21:01:30 -07001351 goto process_ack;
1352 }
1353
Florin Coras6792ec02017-03-13 03:49:51 -07001354 /* If we have outstanding data and this is within the window, accept it,
1355 * probably retransmit has timed out. Otherwise ACK segment and then
1356 * drop it */
1357 if (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max))
1358 {
1359 tcp_make_ack (tc, b);
1360 *next = tcp_next_output (tc->c_is_ip4);
1361 *error = TCP_ERROR_ACK_INVALID;
1362 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 0,
1363 vnet_buffer (b)->tcp.ack_number);
1364 return -1;
1365 }
1366
Florin Coras6792ec02017-03-13 03:49:51 -07001367 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 2,
1368 vnet_buffer (b)->tcp.ack_number);
Florin Coras3e350af2017-03-30 02:54:28 -07001369
1370 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
1371 *error = TCP_ERROR_ACK_FUTURE;
Dave Barach68b0fb02017-02-28 15:15:56 -05001372 }
1373
Florin Coras6792ec02017-03-13 03:49:51 -07001374 /* If old ACK, probably it's an old dupack */
Florin Coras93992a92017-05-24 18:03:56 -07001375 if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001376 {
1377 *error = TCP_ERROR_ACK_OLD;
Florin Coras6792ec02017-03-13 03:49:51 -07001378 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 1,
1379 vnet_buffer (b)->tcp.ack_number);
1380 if (tcp_in_fastrecovery (tc) && tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
Florin Corasca1c8f32018-05-23 21:01:30 -07001381 tcp_cc_handle_event (tc, 1);
Florin Corasc28764f2017-04-26 00:08:42 -07001382 /* Don't drop yet */
1383 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001384 }
1385
Florin Coras93992a92017-05-24 18:03:56 -07001386 /*
1387 * Looks okay, process feedback
1388 */
Florin Corasca1c8f32018-05-23 21:01:30 -07001389process_ack:
Florin Coras93992a92017-05-24 18:03:56 -07001390 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001391 tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1392
Florin Coras93992a92017-05-24 18:03:56 -07001393 prev_snd_wnd = tc->snd_wnd;
1394 prev_snd_una = tc->snd_una;
1395 tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1396 vnet_buffer (b)->tcp.ack_number,
1397 clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1398 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
1399 tc->snd_una = vnet_buffer (b)->tcp.ack_number + tc->sack_sb.snd_una_adv;
1400 tcp_validate_txf_size (tc, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001401
Florin Coras93992a92017-05-24 18:03:56 -07001402 if (tc->bytes_acked)
1403 tcp_dequeue_acked (tc, vnet_buffer (b)->tcp.ack_number);
1404
Florin Coras6534b7a2017-07-18 05:38:03 -04001405 TCP_EVT_DBG (TCP_EVT_ACK_RCVD, tc);
1406
Florin Coras93992a92017-05-24 18:03:56 -07001407 /*
1408 * Check if we have congestion event
1409 */
1410
1411 if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001412 {
Florin Coras93992a92017-05-24 18:03:56 -07001413 tcp_cc_handle_event (tc, is_dack);
Florin Corasb2215d62017-08-01 16:56:58 -07001414 if (!tcp_in_cong_recovery (tc))
1415 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001416 *error = TCP_ERROR_ACK_DUP;
Florin Corasca09d072018-10-01 18:31:02 -07001417 if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th))
1418 return 0;
1419 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001420 }
1421
Florin Coras6792ec02017-03-13 03:49:51 -07001422 /*
Florin Coras93992a92017-05-24 18:03:56 -07001423 * Update congestion control (slow start/congestion avoidance)
Florin Coras6792ec02017-03-13 03:49:51 -07001424 */
Florin Coras93992a92017-05-24 18:03:56 -07001425 tcp_cc_update (tc, b);
Florin Coras00cd22d2018-04-18 13:20:18 -07001426 *error = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001427 return 0;
1428}
1429
Florin Coras3eb50622017-07-13 01:24:57 -04001430static u8
1431tcp_sack_vector_is_sane (sack_block_t * sacks)
1432{
1433 int i;
1434 for (i = 1; i < vec_len (sacks); i++)
1435 {
1436 if (sacks[i - 1].end == sacks[i].start)
1437 return 0;
1438 }
1439 return 1;
1440}
1441
Dave Barach68b0fb02017-02-28 15:15:56 -05001442/**
1443 * Build SACK list as per RFC2018.
1444 *
1445 * Makes sure the first block contains the segment that generated the current
1446 * ACK and the following ones are the ones most recently reported in SACK
1447 * blocks.
1448 *
1449 * @param tc TCP connection for which the SACK list is updated
1450 * @param start Start sequence number of the newest SACK block
1451 * @param end End sequence of the newest SACK block
1452 */
Florin Coras45d34962017-04-25 00:05:27 -07001453void
Dave Barach68b0fb02017-02-28 15:15:56 -05001454tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1455{
Florin Coras45d34962017-04-25 00:05:27 -07001456 sack_block_t *new_list = 0, *block = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001457 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001458
1459 /* If the first segment is ooo add it to the list. Last write might've moved
1460 * rcv_nxt over the first segment. */
1461 if (seq_lt (tc->rcv_nxt, start))
1462 {
Florin Coras45d34962017-04-25 00:05:27 -07001463 vec_add2 (new_list, block, 1);
1464 block->start = start;
1465 block->end = end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001466 }
1467
1468 /* Find the blocks still worth keeping. */
1469 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1470 {
Florin Coras45d34962017-04-25 00:05:27 -07001471 /* Discard if rcv_nxt advanced beyond current block */
1472 if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001473 continue;
1474
Florin Coras45d34962017-04-25 00:05:27 -07001475 /* Merge or drop if segment overlapped by the new segment */
1476 if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1477 && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1478 {
1479 if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1480 new_list[0].start = tc->snd_sacks[i].start;
1481 if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1482 new_list[0].end = tc->snd_sacks[i].end;
1483 continue;
1484 }
1485
1486 /* Save to new SACK list if we have space. */
1487 if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
1488 {
1489 vec_add1 (new_list, tc->snd_sacks[i]);
1490 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001491 else
1492 {
1493 clib_warning ("sack discarded");
1494 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001495 }
1496
Florin Coras45d34962017-04-25 00:05:27 -07001497 ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
Florin Coras6792ec02017-03-13 03:49:51 -07001498
Dave Barach68b0fb02017-02-28 15:15:56 -05001499 /* Replace old vector with new one */
1500 vec_free (tc->snd_sacks);
1501 tc->snd_sacks = new_list;
Florin Coras3eb50622017-07-13 01:24:57 -04001502
1503 /* Segments should not 'touch' */
1504 ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
Dave Barach68b0fb02017-02-28 15:15:56 -05001505}
1506
Florin Corasca1c8f32018-05-23 21:01:30 -07001507u32
1508tcp_sack_list_bytes (tcp_connection_t * tc)
1509{
1510 u32 bytes = 0, i;
1511 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1512 bytes += tc->snd_sacks[i].end - tc->snd_sacks[i].start;
1513 return bytes;
1514}
1515
Dave Barach68b0fb02017-02-28 15:15:56 -05001516/** Enqueue data for delivery to application */
Florin Coras0dbd5172018-06-25 16:19:34 -07001517static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001518tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1519 u16 data_len)
1520{
Florin Coras1f152cd2017-08-18 19:28:03 -07001521 int written, error = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001522
Dave Barach2c25a622017-06-26 11:35:07 -04001523 ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001524 ASSERT (data_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001525 written = session_enqueue_stream_connection (&tc->connection, b, 0,
1526 1 /* queue event */ , 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001527
Florin Coras6792ec02017-03-13 03:49:51 -07001528 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 0, data_len, written);
1529
Dave Barach68b0fb02017-02-28 15:15:56 -05001530 /* Update rcv_nxt */
1531 if (PREDICT_TRUE (written == data_len))
1532 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001533 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001534 }
1535 /* If more data written than expected, account for out-of-order bytes. */
1536 else if (written > data_len)
1537 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001538 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001539
1540 /* Send ACK confirming the update */
1541 tc->flags |= TCP_CONN_SNDACK;
Florin Corasca1c8f32018-05-23 21:01:30 -07001542 TCP_EVT_DBG (TCP_EVT_CC_INPUT, tc, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001543 }
1544 else if (written > 0)
1545 {
1546 /* We've written something but FIFO is probably full now */
1547 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001548
Florin Coras6792ec02017-03-13 03:49:51 -07001549 /* Depending on how fast the app is, all remaining buffers in burst will
Florin Coras3e350af2017-03-30 02:54:28 -07001550 * not be enqueued. Inform peer */
1551 tc->flags |= TCP_CONN_SNDACK;
1552
Florin Coras1f152cd2017-08-18 19:28:03 -07001553 error = TCP_ERROR_PARTIALLY_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001554 }
1555 else
1556 {
Florin Coras3e350af2017-03-30 02:54:28 -07001557 tc->flags |= TCP_CONN_SNDACK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001558 return TCP_ERROR_FIFO_FULL;
1559 }
1560
Florin Coras6792ec02017-03-13 03:49:51 -07001561 /* Update SACK list if need be */
Florin Coras93992a92017-05-24 18:03:56 -07001562 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras6792ec02017-03-13 03:49:51 -07001563 {
1564 /* Remove SACK blocks that have been delivered */
1565 tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1566 }
1567
Florin Coras1f152cd2017-08-18 19:28:03 -07001568 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -05001569}
1570
1571/** Enqueue out-of-order data */
Florin Coras0dbd5172018-06-25 16:19:34 -07001572static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001573tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1574 u16 data_len)
1575{
1576 stream_session_t *s0;
Florin Coras3eb50622017-07-13 01:24:57 -04001577 int rv, offset;
Florin Coras6792ec02017-03-13 03:49:51 -07001578
Florin Corasf03a59a2017-06-09 21:07:32 -07001579 ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001580 ASSERT (data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001581
Florin Corasf03a59a2017-06-09 21:07:32 -07001582 /* Enqueue out-of-order data with relative offset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07001583 rv = session_enqueue_stream_connection (&tc->connection, b,
1584 vnet_buffer (b)->tcp.seq_number -
1585 tc->rcv_nxt, 0 /* queue event */ ,
1586 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001587
1588 /* Nothing written */
1589 if (rv)
1590 {
1591 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, 0);
1592 return TCP_ERROR_FIFO_FULL;
1593 }
1594
1595 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001596
1597 /* Update SACK list if in use */
Florin Coras93992a92017-05-24 18:03:56 -07001598 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001599 {
1600 ooo_segment_t *newest;
1601 u32 start, end;
1602
Florin Corascea194d2017-10-02 00:18:51 -07001603 s0 = session_get (tc->c_s_index, tc->c_thread_index);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001604
Dave Barach68b0fb02017-02-28 15:15:56 -05001605 /* Get the newest segment from the fifo */
1606 newest = svm_fifo_newest_ooo_segment (s0->server_rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001607 if (newest)
1608 {
Florin Coras3eb50622017-07-13 01:24:57 -04001609 offset = ooo_segment_offset (s0->server_rx_fifo, newest);
1610 ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1611 start = tc->rcv_nxt + offset;
Florin Corasf03a59a2017-06-09 21:07:32 -07001612 end = start + ooo_segment_length (s0->server_rx_fifo, newest);
1613 tcp_update_sack_list (tc, start, end);
Florin Coras3eb50622017-07-13 01:24:57 -04001614 svm_fifo_newest_ooo_segment_reset (s0->server_rx_fifo);
Florin Corasca1c8f32018-05-23 21:01:30 -07001615 TCP_EVT_DBG (TCP_EVT_CC_SACKS, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001616 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001617 }
1618
Florin Coras00cd22d2018-04-18 13:20:18 -07001619 return TCP_ERROR_ENQUEUED_OOO;
Dave Barach68b0fb02017-02-28 15:15:56 -05001620}
1621
1622/**
Florin Coras6792ec02017-03-13 03:49:51 -07001623 * Check if ACK could be delayed. If ack can be delayed, it should return
1624 * true for a full frame. If we're always acking return 0.
Dave Barach68b0fb02017-02-28 15:15:56 -05001625 */
1626always_inline int
1627tcp_can_delack (tcp_connection_t * tc)
1628{
Florin Coras6792ec02017-03-13 03:49:51 -07001629 /* Send ack if ... */
1630 if (TCP_ALWAYS_ACK
1631 /* just sent a rcv wnd 0 */
1632 || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0
1633 /* constrained to send ack */
1634 || (tc->flags & TCP_CONN_SNDACK) != 0
1635 /* we're almost out of tx wnd */
Florin Corasca1c8f32018-05-23 21:01:30 -07001636 || tcp_available_cc_snd_space (tc) < 4 * tc->snd_mss)
Florin Coras6792ec02017-03-13 03:49:51 -07001637 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001638
Florin Coras6792ec02017-03-13 03:49:51 -07001639 return 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001640}
1641
1642static int
Florin Corasb2215d62017-08-01 16:56:58 -07001643tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
1644{
Florin Coras1f152cd2017-08-18 19:28:03 -07001645 u32 discard, first = b->current_length;
Florin Corasb2215d62017-08-01 16:56:58 -07001646 vlib_main_t *vm = vlib_get_main ();
1647
Florin Coras1f152cd2017-08-18 19:28:03 -07001648 /* Handle multi-buffer segments */
Florin Corasb2215d62017-08-01 16:56:58 -07001649 if (n_bytes_to_drop > b->current_length)
1650 {
1651 if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1652 return -1;
1653 do
1654 {
1655 discard = clib_min (n_bytes_to_drop, b->current_length);
1656 vlib_buffer_advance (b, discard);
1657 b = vlib_get_buffer (vm, b->next_buffer);
1658 n_bytes_to_drop -= discard;
1659 }
1660 while (n_bytes_to_drop);
Florin Coras1f152cd2017-08-18 19:28:03 -07001661 if (n_bytes_to_drop > first)
1662 b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
Florin Corasb2215d62017-08-01 16:56:58 -07001663 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001664 else
1665 vlib_buffer_advance (b, n_bytes_to_drop);
1666 vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
Florin Corasb2215d62017-08-01 16:56:58 -07001667 return 0;
1668}
1669
Florin Coras00cd22d2018-04-18 13:20:18 -07001670/**
1671 * Receive buffer for connection and handle acks
1672 *
1673 * It handles both in order or out-of-order data.
1674 */
Florin Corasb2215d62017-08-01 16:56:58 -07001675static int
Florin Coras00cd22d2018-04-18 13:20:18 -07001676tcp_segment_rcv (tcp_connection_t * tc, vlib_buffer_t * b, u32 * next0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001677{
Florin Coras00cd22d2018-04-18 13:20:18 -07001678 u32 error, n_bytes_to_drop, n_data_bytes;
Florin Coras6534b7a2017-07-18 05:38:03 -04001679
1680 vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1681 n_data_bytes = vnet_buffer (b)->tcp.data_len;
1682 ASSERT (n_data_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001683
1684 /* Handle out-of-order data */
1685 if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1686 {
Florin Coras6792ec02017-03-13 03:49:51 -07001687 /* Old sequence numbers allowed through because they overlapped
1688 * the rx window */
1689 if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001690 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001691 /* Completely in the past (possible retransmit). Ack
1692 * retransmissions since we may not have any data to send */
Florin Corasf03a59a2017-06-09 21:07:32 -07001693 if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
Florin Coras6534b7a2017-07-18 05:38:03 -04001694 {
Florin Coras6534b7a2017-07-18 05:38:03 -04001695 tcp_make_ack (tc, b);
Florin Coras00cd22d2018-04-18 13:20:18 -07001696 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras6534b7a2017-07-18 05:38:03 -04001697 *next0 = tcp_next_output (tc->c_is_ip4);
1698 goto done;
1699 }
Dave Barach259cdae2017-05-15 16:27:05 -04001700
Florin Coras00cd22d2018-04-18 13:20:18 -07001701 /* Chop off the bytes in the past and see if what is left
1702 * can be enqueued in order */
Florin Corasdb84e572017-05-09 18:54:52 -07001703 n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1704 n_data_bytes -= n_bytes_to_drop;
Dave Barach2c25a622017-06-26 11:35:07 -04001705 vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001706 if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
Florin Coras00cd22d2018-04-18 13:20:18 -07001707 {
1708 error = TCP_ERROR_SEGMENT_OLD;
1709 *next0 = tcp_next_drop (tc->c_is_ip4);
1710 goto done;
1711 }
Florin Corasdb84e572017-05-09 18:54:52 -07001712 goto in_order;
Dave Barach68b0fb02017-02-28 15:15:56 -05001713 }
1714
Florin Coras00cd22d2018-04-18 13:20:18 -07001715 /* RFC2581: Enqueue and send DUPACK for fast retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001716 error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
Florin Coras6792ec02017-03-13 03:49:51 -07001717 *next0 = tcp_next_output (tc->c_is_ip4);
Florin Coras00cd22d2018-04-18 13:20:18 -07001718 tcp_make_ack (tc, b);
1719 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_DUPACK;
Florin Corasca1c8f32018-05-23 21:01:30 -07001720 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
Dave Barach68b0fb02017-02-28 15:15:56 -05001721 goto done;
1722 }
1723
Florin Corasdb84e572017-05-09 18:54:52 -07001724in_order:
1725
Dave Barach68b0fb02017-02-28 15:15:56 -05001726 /* In order data, enqueue. Fifo figures out by itself if any out-of-order
1727 * segments can be enqueued after fifo tail offset changes. */
1728 error = tcp_session_enqueue_data (tc, b, n_data_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001729 if (tcp_can_delack (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001730 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001731 *next0 = tcp_next_drop (tc->c_is_ip4);
Florin Coras6792ec02017-03-13 03:49:51 -07001732 if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
1733 tcp_timer_set (tc, TCP_TIMER_DELACK, TCP_DELACK_TIME);
Florin Coras3e350af2017-03-30 02:54:28 -07001734 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001735 }
1736
Florin Coras3e350af2017-03-30 02:54:28 -07001737 *next0 = tcp_next_output (tc->c_is_ip4);
1738 tcp_make_ack (tc, b);
1739
Dave Barach68b0fb02017-02-28 15:15:56 -05001740done:
1741 return error;
1742}
1743
Clement Durand6cf260c2017-04-13 13:27:04 +02001744typedef struct
1745{
1746 tcp_header_t tcp_header;
1747 tcp_connection_t tcp_connection;
1748} tcp_rx_trace_t;
1749
Florin Coras0dbd5172018-06-25 16:19:34 -07001750static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02001751format_tcp_rx_trace (u8 * s, va_list * args)
1752{
1753 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1754 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1755 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +02001756 u32 indent = format_get_indent (s);
Clement Durand6cf260c2017-04-13 13:27:04 +02001757
1758 s = format (s, "%U\n%U%U",
1759 format_tcp_header, &t->tcp_header, 128,
1760 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -07001761 format_tcp_connection, &t->tcp_connection, 1);
Clement Durand6cf260c2017-04-13 13:27:04 +02001762
1763 return s;
1764}
1765
Florin Coras0dbd5172018-06-25 16:19:34 -07001766static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02001767format_tcp_rx_trace_short (u8 * s, va_list * args)
1768{
1769 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1770 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1771 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
1772
1773 s = format (s, "%d -> %d (%U)",
Florin Coras4df38712018-06-20 12:44:16 -07001774 clib_net_to_host_u16 (t->tcp_header.dst_port),
1775 clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state,
Florin Corasbb292f42017-05-19 09:49:19 -07001776 t->tcp_connection.state);
Clement Durand6cf260c2017-04-13 13:27:04 +02001777
1778 return s;
1779}
1780
Florin Coras4df38712018-06-20 12:44:16 -07001781static void
Florin Coras82b13a82017-04-25 11:58:06 -07001782tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
1783 tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
1784{
1785 if (tc0)
1786 {
1787 clib_memcpy (&t0->tcp_connection, tc0, sizeof (t0->tcp_connection));
1788 }
1789 else
1790 {
1791 th0 = tcp_buffer_hdr (b0);
1792 }
1793 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
1794}
1795
Florin Coras4df38712018-06-20 12:44:16 -07001796static void
1797tcp_established_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
1798 vlib_frame_t * frame, u8 is_ip4)
1799{
1800 u32 *from, n_left;
1801
1802 n_left = frame->n_vectors;
1803 from = vlib_frame_vector_args (frame);
1804
1805 while (n_left >= 1)
1806 {
1807 tcp_connection_t *tc0;
1808 tcp_rx_trace_t *t0;
1809 tcp_header_t *th0;
1810 vlib_buffer_t *b0;
1811 u32 bi0;
1812
1813 bi0 = from[0];
1814 b0 = vlib_get_buffer (vm, bi0);
1815
1816 if (b0->flags & VLIB_BUFFER_IS_TRACED)
1817 {
1818 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
1819 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
1820 vm->thread_index);
1821 th0 = tcp_buffer_hdr (b0);
1822 tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
1823 }
1824
1825 from += 1;
1826 n_left -= 1;
1827 }
1828}
1829
Florin Coras6792ec02017-03-13 03:49:51 -07001830always_inline void
Florin Coras00cd22d2018-04-18 13:20:18 -07001831tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
1832 u8 is_ip4, u32 evt, u32 val)
Dave Barach68b0fb02017-02-28 15:15:56 -05001833{
Florin Coras6792ec02017-03-13 03:49:51 -07001834 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -07001835 vlib_node_increment_counter (vm, tcp4_node, evt, val);
Florin Coras6792ec02017-03-13 03:49:51 -07001836 else
Florin Coras3cbc04b2017-10-02 00:18:51 -07001837 vlib_node_increment_counter (vm, tcp6_node, evt, val);
Dave Barach68b0fb02017-02-28 15:15:56 -05001838}
1839
Florin Coras00cd22d2018-04-18 13:20:18 -07001840#define tcp_maybe_inc_counter(node_id, err, count) \
1841{ \
1842 if (next0 != tcp_next_drop (is_ip4)) \
1843 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
1844 tcp6_##node_id##_node.index, is_ip4, err, \
1845 1); \
1846}
1847#define tcp_inc_counter(node_id, err, count) \
1848 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
1849 tcp6_##node_id##_node.index, is_ip4, \
1850 err, count)
1851#define tcp_maybe_inc_err_counter(cnts, err) \
1852{ \
1853 cnts[err] += (next0 != tcp_next_drop (is_ip4)); \
1854}
1855#define tcp_inc_err_counter(cnts, err, val) \
1856{ \
1857 cnts[err] += val; \
1858}
1859#define tcp_store_err_counters(node_id, cnts) \
1860{ \
1861 int i; \
1862 for (i = 0; i < TCP_N_ERROR; i++) \
1863 if (cnts[i]) \
1864 tcp_inc_counter(node_id, i, cnts[i]); \
1865}
1866
1867
Dave Barach68b0fb02017-02-28 15:15:56 -05001868always_inline uword
1869tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07001870 vlib_frame_t * frame, int is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05001871{
Florin Coras4df38712018-06-20 12:44:16 -07001872 u32 thread_index = vm->thread_index, errors = 0;
Florin Coras00cd22d2018-04-18 13:20:18 -07001873 u32 n_left_from, next_index, *from, *to_next;
1874 u16 err_counters[TCP_N_ERROR] = { 0 };
Dave Barach1f75cfd2017-04-14 16:46:44 -04001875 u8 is_fin = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001876
Florin Coras4df38712018-06-20 12:44:16 -07001877 if (node->flags & VLIB_NODE_FLAG_TRACE)
1878 tcp_established_trace_frame (vm, node, frame, is_ip4);
1879
1880 from = vlib_frame_vector_args (frame);
1881 n_left_from = frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05001882 next_index = node->cached_next_index;
1883
1884 while (n_left_from > 0)
1885 {
1886 u32 n_left_to_next;
1887
1888 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Dave Barach68b0fb02017-02-28 15:15:56 -05001889 while (n_left_from > 0 && n_left_to_next > 0)
1890 {
1891 u32 bi0;
1892 vlib_buffer_t *b0;
1893 tcp_header_t *th0 = 0;
1894 tcp_connection_t *tc0;
Florin Coras00cd22d2018-04-18 13:20:18 -07001895 u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001896
Florin Coras81a13db2018-03-16 08:48:31 -07001897 if (n_left_from > 1)
1898 {
1899 vlib_buffer_t *pb;
1900 pb = vlib_get_buffer (vm, from[1]);
1901 vlib_prefetch_buffer_header (pb, LOAD);
1902 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1903 }
1904
Dave Barach68b0fb02017-02-28 15:15:56 -05001905 bi0 = from[0];
1906 to_next[0] = bi0;
1907 from += 1;
1908 to_next += 1;
1909 n_left_from -= 1;
1910 n_left_to_next -= 1;
1911
1912 b0 = vlib_get_buffer (vm, bi0);
1913 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
Florin Coras4df38712018-06-20 12:44:16 -07001914 thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001915
Florin Corasd79b41e2017-03-04 05:37:52 -08001916 if (PREDICT_FALSE (tc0 == 0))
1917 {
1918 error0 = TCP_ERROR_INVALID_CONNECTION;
Florin Coras6792ec02017-03-13 03:49:51 -07001919 goto done;
Florin Corasd79b41e2017-03-04 05:37:52 -08001920 }
1921
Florin Coras82b13a82017-04-25 11:58:06 -07001922 th0 = tcp_buffer_hdr (b0);
Florin Coras6534b7a2017-07-18 05:38:03 -04001923 /* N.B. buffer is rewritten if segment is ooo. Thus, th0 becomes a
1924 * dangling reference. */
1925 is_fin = tcp_is_fin (th0);
Dave Barach1f75cfd2017-04-14 16:46:44 -04001926
Dave Barach68b0fb02017-02-28 15:15:56 -05001927 /* SYNs, FINs and data consume sequence numbers */
1928 vnet_buffer (b0)->tcp.seq_end = vnet_buffer (b0)->tcp.seq_number
Florin Coras82b13a82017-04-25 11:58:06 -07001929 + tcp_is_syn (th0) + is_fin + vnet_buffer (b0)->tcp.data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05001930
1931 /* TODO header prediction fast path */
1932
1933 /* 1-4: check SEQ, RST, SYN */
Florin Coras00cd22d2018-04-18 13:20:18 -07001934 if (PREDICT_FALSE (tcp_segment_validate (vm, tc0, b0, th0, &next0,
1935 &error0)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001936 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001937 tcp_maybe_inc_err_counter (err_counters, error0);
Florin Corasca1c8f32018-05-23 21:01:30 -07001938 TCP_EVT_DBG (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp);
Florin Coras6792ec02017-03-13 03:49:51 -07001939 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001940 }
1941
1942 /* 5: check the ACK field */
Florin Coras00cd22d2018-04-18 13:20:18 -07001943 if (PREDICT_FALSE (tcp_rcv_ack (tc0, b0, th0, &next0, &error0)))
1944 {
1945 tcp_maybe_inc_err_counter (err_counters, error0);
1946 goto done;
1947 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001948
1949 /* 6: check the URG bit TODO */
1950
1951 /* 7: process the segment text */
Florin Coras6534b7a2017-07-18 05:38:03 -04001952 if (vnet_buffer (b0)->tcp.data_len)
Florin Coras00cd22d2018-04-18 13:20:18 -07001953 {
1954 error0 = tcp_segment_rcv (tc0, b0, &next0);
1955 tcp_maybe_inc_err_counter (err_counters, error0);
1956 }
Dave Barach1f75cfd2017-04-14 16:46:44 -04001957
Dave Barach68b0fb02017-02-28 15:15:56 -05001958 /* 8: check the FIN bit */
Florin Coras6534b7a2017-07-18 05:38:03 -04001959 if (PREDICT_FALSE (is_fin))
Dave Barach68b0fb02017-02-28 15:15:56 -05001960 {
Florin Coras9d063042017-09-14 03:08:00 -04001961 /* Enter CLOSE-WAIT and notify session. To avoid lingering
Florin Corasd79b41e2017-03-04 05:37:52 -08001962 * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
Florin Coras9d063042017-09-14 03:08:00 -04001963 /* Account for the FIN if nothing else was received */
Florin Coras68810622017-07-24 17:40:28 -07001964 if (vnet_buffer (b0)->tcp.data_len == 0)
Florin Coras9d063042017-09-14 03:08:00 -04001965 tc0->rcv_nxt += 1;
1966 tcp_make_ack (tc0, b0);
1967 next0 = tcp_next_output (tc0->c_is_ip4);
1968 tc0->state = TCP_STATE_CLOSE_WAIT;
Dave Barach68b0fb02017-02-28 15:15:56 -05001969 stream_session_disconnect_notify (&tc0->connection);
Florin Coras68810622017-07-24 17:40:28 -07001970 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
Florin Coras9d063042017-09-14 03:08:00 -04001971 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -07001972 tcp_inc_err_counter (err_counters, TCP_ERROR_FIN_RCVD, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001973 }
1974
Florin Coras6792ec02017-03-13 03:49:51 -07001975 done:
Dave Barach68b0fb02017-02-28 15:15:56 -05001976 b0->error = node->errors[error0];
Dave Barach68b0fb02017-02-28 15:15:56 -05001977 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1978 n_left_to_next, bi0, next0);
1979 }
1980
1981 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1982 }
1983
Florin Coras3cbc04b2017-10-02 00:18:51 -07001984 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
Florin Coras4df38712018-06-20 12:44:16 -07001985 thread_index);
Florin Coras00cd22d2018-04-18 13:20:18 -07001986 err_counters[TCP_ERROR_EVENT_FIFO_FULL] = errors;
1987 tcp_store_err_counters (established, err_counters);
Florin Coras4df38712018-06-20 12:44:16 -07001988 tcp_flush_frame_to_output (vm, thread_index, is_ip4);
1989
1990 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05001991}
1992
1993static uword
1994tcp4_established (vlib_main_t * vm, vlib_node_runtime_t * node,
1995 vlib_frame_t * from_frame)
1996{
1997 return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
1998}
1999
2000static uword
2001tcp6_established (vlib_main_t * vm, vlib_node_runtime_t * node,
2002 vlib_frame_t * from_frame)
2003{
2004 return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2005}
2006
2007/* *INDENT-OFF* */
2008VLIB_REGISTER_NODE (tcp4_established_node) =
2009{
2010 .function = tcp4_established,
2011 .name = "tcp4-established",
2012 /* Takes a vector of packets. */
2013 .vector_size = sizeof (u32),
Florin Corase69f4952017-03-07 10:06:24 -08002014 .n_errors = TCP_N_ERROR,
2015 .error_strings = tcp_error_strings,
Dave Barach68b0fb02017-02-28 15:15:56 -05002016 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2017 .next_nodes =
2018 {
2019#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2020 foreach_tcp_state_next
2021#undef _
2022 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002023 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002024};
2025/* *INDENT-ON* */
2026
2027VLIB_NODE_FUNCTION_MULTIARCH (tcp4_established_node, tcp4_established);
2028
2029/* *INDENT-OFF* */
2030VLIB_REGISTER_NODE (tcp6_established_node) =
2031{
2032 .function = tcp6_established,
2033 .name = "tcp6-established",
2034 /* Takes a vector of packets. */
2035 .vector_size = sizeof (u32),
2036 .n_errors = TCP_N_ERROR,
2037 .error_strings = tcp_error_strings,
2038 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2039 .next_nodes =
2040 {
2041#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2042 foreach_tcp_state_next
2043#undef _
2044 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002045 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002046};
2047/* *INDENT-ON* */
2048
2049
2050VLIB_NODE_FUNCTION_MULTIARCH (tcp6_established_node, tcp6_established);
2051
2052vlib_node_registration_t tcp4_syn_sent_node;
2053vlib_node_registration_t tcp6_syn_sent_node;
2054
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002055static u8
2056tcp_lookup_is_valid (tcp_connection_t * tc, tcp_header_t * hdr)
2057{
Florin Corascea194d2017-10-02 00:18:51 -07002058 transport_connection_t *tmp = 0;
2059 u64 handle;
2060
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002061 if (!tc)
2062 return 1;
2063
Florin Coras70131132017-11-27 02:43:30 -08002064 /* Proxy case */
2065 if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
2066 return 1;
2067
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002068 u8 is_valid = (tc->c_lcl_port == hdr->dst_port
2069 && (tc->state == TCP_STATE_LISTEN
2070 || tc->c_rmt_port == hdr->src_port));
2071
2072 if (!is_valid)
2073 {
Florin Corascea194d2017-10-02 00:18:51 -07002074 handle = session_lookup_half_open_handle (&tc->connection);
2075 tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
Florin Coras3cbc04b2017-10-02 00:18:51 -07002076 tc->c_proto, tc->c_is_ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002077
2078 if (tmp)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002079 {
2080 if (tmp->lcl_port == hdr->dst_port
2081 && tmp->rmt_port == hdr->src_port)
2082 {
Florin Corascea194d2017-10-02 00:18:51 -07002083 TCP_DBG ("half-open is valid!");
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002084 }
2085 }
2086 }
2087 return is_valid;
2088}
2089
2090/**
2091 * Lookup transport connection
2092 */
2093static tcp_connection_t *
Florin Corascea194d2017-10-02 00:18:51 -07002094tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
2095 u8 is_ip4)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002096{
2097 tcp_header_t *tcp;
2098 transport_connection_t *tconn;
2099 tcp_connection_t *tc;
Florin Corasdff48db2017-11-19 18:06:58 -08002100 u8 is_filtered = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002101 if (is_ip4)
2102 {
2103 ip4_header_t *ip4;
2104 ip4 = vlib_buffer_get_current (b);
2105 tcp = ip4_next_header (ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002106 tconn = session_lookup_connection_wt4 (fib_index,
2107 &ip4->dst_address,
2108 &ip4->src_address,
2109 tcp->dst_port,
2110 tcp->src_port,
2111 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002112 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002113 tc = tcp_get_connection_from_transport (tconn);
2114 ASSERT (tcp_lookup_is_valid (tc, tcp));
2115 }
2116 else
2117 {
2118 ip6_header_t *ip6;
2119 ip6 = vlib_buffer_get_current (b);
2120 tcp = ip6_next_header (ip6);
Florin Corascea194d2017-10-02 00:18:51 -07002121 tconn = session_lookup_connection_wt6 (fib_index,
2122 &ip6->dst_address,
2123 &ip6->src_address,
2124 tcp->dst_port,
2125 tcp->src_port,
2126 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002127 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002128 tc = tcp_get_connection_from_transport (tconn);
2129 ASSERT (tcp_lookup_is_valid (tc, tcp));
2130 }
2131 return tc;
2132}
2133
Dave Barach68b0fb02017-02-28 15:15:56 -05002134always_inline uword
2135tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2136 vlib_frame_t * from_frame, int is_ip4)
2137{
2138 tcp_main_t *tm = vnet_get_tcp_main ();
2139 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02002140 u32 my_thread_index = vm->thread_index, errors = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002141
2142 from = vlib_frame_vector_args (from_frame);
2143 n_left_from = from_frame->n_vectors;
2144
2145 next_index = node->cached_next_index;
2146
2147 while (n_left_from > 0)
2148 {
2149 u32 n_left_to_next;
2150
2151 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2152
2153 while (n_left_from > 0 && n_left_to_next > 0)
2154 {
2155 u32 bi0, ack0, seq0;
2156 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002157 tcp_rx_trace_t *t0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002158 tcp_header_t *tcp0 = 0;
2159 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002160 tcp_connection_t *new_tc0;
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002161 u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002162
2163 bi0 = from[0];
2164 to_next[0] = bi0;
2165 from += 1;
2166 to_next += 1;
2167 n_left_from -= 1;
2168 n_left_to_next -= 1;
2169
2170 b0 = vlib_get_buffer (vm, bi0);
2171 tc0 =
2172 tcp_half_open_connection_get (vnet_buffer (b0)->
2173 tcp.connection_index);
Dave Barachd84ba852017-08-22 17:56:46 -04002174 if (PREDICT_FALSE (tc0 == 0))
2175 {
2176 error0 = TCP_ERROR_INVALID_CONNECTION;
2177 goto drop;
2178 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002179
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002180 /* Half-open completed recently but the connection was't removed
2181 * yet by the owning thread */
2182 if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2183 {
2184 /* Make sure the connection actually exists */
Florin Corascea194d2017-10-02 00:18:51 -07002185 ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2186 my_thread_index, is_ip4));
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002187 goto drop;
2188 }
2189
Dave Barach68b0fb02017-02-28 15:15:56 -05002190 ack0 = vnet_buffer (b0)->tcp.ack_number;
2191 seq0 = vnet_buffer (b0)->tcp.seq_number;
Florin Coras82b13a82017-04-25 11:58:06 -07002192 tcp0 = tcp_buffer_hdr (b0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002193
Florin Coras9d063042017-09-14 03:08:00 -04002194 /* Crude check to see if the connection handle does not match
2195 * the packet. Probably connection just switched to established */
2196 if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2197 || tcp0->src_port != tc0->c_rmt_port))
2198 goto drop;
2199
Dave Barach68b0fb02017-02-28 15:15:56 -05002200 if (PREDICT_FALSE
2201 (!tcp_ack (tcp0) && !tcp_rst (tcp0) && !tcp_syn (tcp0)))
2202 goto drop;
2203
2204 /* SYNs, FINs and data consume sequence numbers */
2205 vnet_buffer (b0)->tcp.seq_end = seq0 + tcp_is_syn (tcp0)
Florin Coras82b13a82017-04-25 11:58:06 -07002206 + tcp_is_fin (tcp0) + vnet_buffer (b0)->tcp.data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05002207
2208 /*
2209 * 1. check the ACK bit
2210 */
2211
2212 /*
2213 * If the ACK bit is set
2214 * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2215 * the RST bit is set, if so drop the segment and return)
2216 * <SEQ=SEG.ACK><CTL=RST>
2217 * and discard the segment. Return.
2218 * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2219 */
2220 if (tcp_ack (tcp0))
2221 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002222 if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05002223 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002224 clib_warning ("ack not in rcv wnd");
Dave Barach68b0fb02017-02-28 15:15:56 -05002225 if (!tcp_rst (tcp0))
Florin Coras1f152cd2017-08-18 19:28:03 -07002226 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002227 goto drop;
2228 }
2229
2230 /* Make sure ACK is valid */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002231 if (seq_gt (tc0->snd_una, ack0))
2232 {
2233 clib_warning ("ack invalid");
2234 goto drop;
2235 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002236 }
2237
2238 /*
2239 * 2. check the RST bit
2240 */
2241
2242 if (tcp_rst (tcp0))
2243 {
2244 /* If ACK is acceptable, signal client that peer is not
2245 * willing to accept connection and drop connection*/
2246 if (tcp_ack (tcp0))
Florin Coras6534b7a2017-07-18 05:38:03 -04002247 tcp_connection_reset (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002248 goto drop;
2249 }
2250
2251 /*
2252 * 3. check the security and precedence (skipped)
2253 */
2254
2255 /*
2256 * 4. check the SYN bit
2257 */
2258
2259 /* No SYN flag. Drop. */
2260 if (!tcp_syn (tcp0))
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002261 {
2262 clib_warning ("not synack");
2263 goto drop;
2264 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002265
Florin Coras6534b7a2017-07-18 05:38:03 -04002266 /* Parse options */
2267 if (tcp_options_parse (tcp0, &tc0->rcv_opts))
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002268 {
2269 clib_warning ("options parse fail");
2270 goto drop;
2271 }
Florin Coras6534b7a2017-07-18 05:38:03 -04002272
Dave Barach68b0fb02017-02-28 15:15:56 -05002273 /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2274 * current thread pool. */
2275 pool_get (tm->connections[my_thread_index], new_tc0);
2276 clib_memcpy (new_tc0, tc0, sizeof (*new_tc0));
Dave Barach259cdae2017-05-15 16:27:05 -04002277 new_tc0->c_c_index = new_tc0 - tm->connections[my_thread_index];
Florin Coras6534b7a2017-07-18 05:38:03 -04002278 new_tc0->c_thread_index = my_thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002279 new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2280 new_tc0->irs = seq0;
Florin Coras68810622017-07-24 17:40:28 -07002281 new_tc0->timers[TCP_TIMER_ESTABLISH] = TCP_TIMER_HANDLE_INVALID;
2282 new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] =
2283 TCP_TIMER_HANDLE_INVALID;
Florin Corasf9d05682018-04-26 08:26:52 -07002284 new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Florin Coras68810622017-07-24 17:40:28 -07002285
2286 /* If this is not the owning thread, wait for syn retransmit to
2287 * expire and cleanup then */
2288 if (tcp_half_open_connection_cleanup (tc0))
2289 tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
Dave Barach68b0fb02017-02-28 15:15:56 -05002290
Florin Coras93992a92017-05-24 18:03:56 -07002291 if (tcp_opts_tstamp (&new_tc0->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05002292 {
Florin Coras93992a92017-05-24 18:03:56 -07002293 new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
Dave Barach68b0fb02017-02-28 15:15:56 -05002294 new_tc0->tsval_recent_age = tcp_time_now ();
2295 }
2296
Florin Coras93992a92017-05-24 18:03:56 -07002297 if (tcp_opts_wscale (&new_tc0->rcv_opts))
2298 new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
Dave Barach68b0fb02017-02-28 15:15:56 -05002299
Florin Coras45ca73f2018-09-27 09:19:29 -07002300 new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2301 << new_tc0->snd_wscale;
Dave Barach68b0fb02017-02-28 15:15:56 -05002302 new_tc0->snd_wl1 = seq0;
2303 new_tc0->snd_wl2 = ack0;
2304
Florin Corase04c2992017-03-01 08:17:34 -08002305 tcp_connection_init_vars (new_tc0);
2306
Dave Barach68b0fb02017-02-28 15:15:56 -05002307 /* SYN-ACK: See if we can switch to ESTABLISHED state */
Florin Coras6534b7a2017-07-18 05:38:03 -04002308 if (PREDICT_TRUE (tcp_ack (tcp0)))
Dave Barach68b0fb02017-02-28 15:15:56 -05002309 {
2310 /* Our SYN is ACKed: we have iss < ack = snd_una */
2311
2312 /* TODO Dequeue acknowledged segments if we support Fast Open */
2313 new_tc0->snd_una = ack0;
2314 new_tc0->state = TCP_STATE_ESTABLISHED;
2315
Florin Corase04c2992017-03-01 08:17:34 -08002316 /* Make sure las is initialized for the wnd computation */
2317 new_tc0->rcv_las = new_tc0->rcv_nxt;
2318
Florin Corasf03a59a2017-06-09 21:07:32 -07002319 /* Notify app that we have connection. If session layer can't
2320 * allocate session send reset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07002321 if (session_stream_connect_notify (&new_tc0->connection, 0))
Florin Corasf03a59a2017-06-09 21:07:32 -07002322 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002323 clib_warning ("connect notify fail");
Florin Coras1f152cd2017-08-18 19:28:03 -07002324 tcp_send_reset_w_pkt (new_tc0, b0, is_ip4);
Florin Corasf03a59a2017-06-09 21:07:32 -07002325 tcp_connection_cleanup (new_tc0);
Florin Corasf03a59a2017-06-09 21:07:32 -07002326 goto drop;
2327 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002328
2329 /* Make sure after data segment processing ACK is sent */
2330 new_tc0->flags |= TCP_CONN_SNDACK;
Dave Barach2c25a622017-06-26 11:35:07 -04002331
2332 /* Update rtt with the syn-ack sample */
Dave Barach2c25a622017-06-26 11:35:07 -04002333 tcp_update_rtt (new_tc0, vnet_buffer (b0)->tcp.ack_number);
Florin Coras6534b7a2017-07-18 05:38:03 -04002334 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, new_tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002335 }
2336 /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2337 else
2338 {
2339 new_tc0->state = TCP_STATE_SYN_RCVD;
2340
Florin Corase69f4952017-03-07 10:06:24 -08002341 /* Notify app that we have connection */
Florin Coras3cbc04b2017-10-02 00:18:51 -07002342 if (session_stream_connect_notify (&new_tc0->connection, 0))
Florin Corasf03a59a2017-06-09 21:07:32 -07002343 {
2344 tcp_connection_cleanup (new_tc0);
Florin Coras1f152cd2017-08-18 19:28:03 -07002345 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -04002346 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc0);
Florin Corasf03a59a2017-06-09 21:07:32 -07002347 goto drop;
2348 }
2349
Dave Barach2c25a622017-06-26 11:35:07 -04002350 tc0->rtt_ts = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002351 tcp_init_snd_vars (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002352 tcp_make_synack (new_tc0, b0);
2353 next0 = tcp_next_output (is_ip4);
2354
2355 goto drop;
2356 }
2357
2358 /* Read data, if any */
Florin Coras6534b7a2017-07-18 05:38:03 -04002359 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
Dave Barach68b0fb02017-02-28 15:15:56 -05002360 {
Florin Coras00cd22d2018-04-18 13:20:18 -07002361 clib_warning ("rcvd data in syn-sent");
2362 error0 = tcp_segment_rcv (new_tc0, b0, &next0);
2363 if (error0 == TCP_ERROR_ACK_OK)
Dave Barach68b0fb02017-02-28 15:15:56 -05002364 error0 = TCP_ERROR_SYN_ACKS_RCVD;
Florin Coras00cd22d2018-04-18 13:20:18 -07002365 tcp_maybe_inc_counter (syn_sent, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002366 }
2367 else
2368 {
2369 tcp_make_ack (new_tc0, b0);
2370 next0 = tcp_next_output (new_tc0->c_is_ip4);
2371 }
2372
2373 drop:
2374
2375 b0->error = error0 ? node->errors[error0] : 0;
Chris Luke879ace32017-09-26 13:15:16 -04002376 if (PREDICT_FALSE
2377 ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002378 {
Clement Durand6cf260c2017-04-13 13:27:04 +02002379 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2380 clib_memcpy (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2381 clib_memcpy (&t0->tcp_connection, tc0,
2382 sizeof (t0->tcp_connection));
Dave Barach68b0fb02017-02-28 15:15:56 -05002383 }
2384
2385 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2386 n_left_to_next, bi0, next0);
2387 }
2388
2389 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2390 }
2391
Florin Coras3cbc04b2017-10-02 00:18:51 -07002392 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2393 my_thread_index);
Florin Coras00cd22d2018-04-18 13:20:18 -07002394 tcp_inc_counter (syn_sent, TCP_ERROR_EVENT_FIFO_FULL, errors);
Dave Barach68b0fb02017-02-28 15:15:56 -05002395 return from_frame->n_vectors;
2396}
2397
2398static uword
2399tcp4_syn_sent (vlib_main_t * vm, vlib_node_runtime_t * node,
2400 vlib_frame_t * from_frame)
2401{
2402 return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2403}
2404
2405static uword
2406tcp6_syn_sent_rcv (vlib_main_t * vm, vlib_node_runtime_t * node,
2407 vlib_frame_t * from_frame)
2408{
2409 return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2410}
2411
2412/* *INDENT-OFF* */
2413VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2414{
2415 .function = tcp4_syn_sent,
2416 .name = "tcp4-syn-sent",
2417 /* Takes a vector of packets. */
2418 .vector_size = sizeof (u32),
2419 .n_errors = TCP_N_ERROR,
2420 .error_strings = tcp_error_strings,
2421 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2422 .next_nodes =
2423 {
2424#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2425 foreach_tcp_state_next
2426#undef _
2427 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002428 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002429};
2430/* *INDENT-ON* */
2431
2432VLIB_NODE_FUNCTION_MULTIARCH (tcp4_syn_sent_node, tcp4_syn_sent);
2433
2434/* *INDENT-OFF* */
2435VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2436{
2437 .function = tcp6_syn_sent_rcv,
2438 .name = "tcp6-syn-sent",
2439 /* Takes a vector of packets. */
2440 .vector_size = sizeof (u32),
2441 .n_errors = TCP_N_ERROR,
2442 .error_strings = tcp_error_strings,
2443 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2444 .next_nodes =
2445 {
2446#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2447 foreach_tcp_state_next
2448#undef _
Clement Durand6cf260c2017-04-13 13:27:04 +02002449 },
2450 .format_trace = format_tcp_rx_trace_short,
2451};
Dave Barach68b0fb02017-02-28 15:15:56 -05002452/* *INDENT-ON* */
2453
2454VLIB_NODE_FUNCTION_MULTIARCH (tcp6_syn_sent_node, tcp6_syn_sent_rcv);
Florin Coras6534b7a2017-07-18 05:38:03 -04002455
Florin Coras3cbc04b2017-10-02 00:18:51 -07002456vlib_node_registration_t tcp4_rcv_process_node;
2457vlib_node_registration_t tcp6_rcv_process_node;
2458
Dave Barach68b0fb02017-02-28 15:15:56 -05002459/**
Florin Corasd79b41e2017-03-04 05:37:52 -08002460 * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
Dave Barach68b0fb02017-02-28 15:15:56 -05002461 * as per RFC793 p. 64
2462 */
2463always_inline uword
2464tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2465 vlib_frame_t * from_frame, int is_ip4)
2466{
Florin Coras00cd22d2018-04-18 13:20:18 -07002467 u32 n_left_from, next_index, *from, *to_next, n_fins = 0;
Damjan Marion586afd72017-04-05 19:18:20 +02002468 u32 my_thread_index = vm->thread_index, errors = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002469
2470 from = vlib_frame_vector_args (from_frame);
2471 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002472 next_index = node->cached_next_index;
2473
2474 while (n_left_from > 0)
2475 {
2476 u32 n_left_to_next;
2477
2478 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2479
2480 while (n_left_from > 0 && n_left_to_next > 0)
2481 {
2482 u32 bi0;
2483 vlib_buffer_t *b0;
2484 tcp_header_t *tcp0 = 0;
2485 tcp_connection_t *tc0;
Florin Coras00cd22d2018-04-18 13:20:18 -07002486 u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_NONE;
Florin Coras9d063042017-09-14 03:08:00 -04002487 u8 is_fin0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002488
2489 bi0 = from[0];
2490 to_next[0] = bi0;
2491 from += 1;
2492 to_next += 1;
2493 n_left_from -= 1;
2494 n_left_to_next -= 1;
2495
2496 b0 = vlib_get_buffer (vm, bi0);
2497 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2498 my_thread_index);
Florin Corasd79b41e2017-03-04 05:37:52 -08002499 if (PREDICT_FALSE (tc0 == 0))
2500 {
2501 error0 = TCP_ERROR_INVALID_CONNECTION;
2502 goto drop;
2503 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002504
Florin Coras82b13a82017-04-25 11:58:06 -07002505 tcp0 = tcp_buffer_hdr (b0);
Florin Coras9d063042017-09-14 03:08:00 -04002506 is_fin0 = tcp_is_fin (tcp0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002507
2508 /* SYNs, FINs and data consume sequence numbers */
2509 vnet_buffer (b0)->tcp.seq_end = vnet_buffer (b0)->tcp.seq_number
Florin Coras9d063042017-09-14 03:08:00 -04002510 + tcp_is_syn (tcp0) + is_fin0 + vnet_buffer (b0)->tcp.data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05002511
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002512 if (CLIB_DEBUG)
2513 {
2514 tcp_connection_t *tmp;
Florin Coras00cd22d2018-04-18 13:20:18 -07002515 tmp = tcp_lookup_connection (tc0->c_fib_index, b0,
2516 my_thread_index, is_ip4);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002517 if (tmp->state != tc0->state)
2518 {
2519 clib_warning ("state changed");
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002520 goto drop;
2521 }
2522 }
2523
Dave Barach68b0fb02017-02-28 15:15:56 -05002524 /*
2525 * Special treatment for CLOSED
2526 */
Florin Coras00cd22d2018-04-18 13:20:18 -07002527 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
Dave Barach68b0fb02017-02-28 15:15:56 -05002528 {
Florin Coras00cd22d2018-04-18 13:20:18 -07002529 error0 = TCP_ERROR_CONNECTION_CLOSED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002530 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002531 }
2532
2533 /*
2534 * For all other states (except LISTEN)
2535 */
2536
2537 /* 1-4: check SEQ, RST, SYN */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002538 if (PREDICT_FALSE (tcp_segment_validate (vm, tc0, b0, tcp0,
Florin Coras00cd22d2018-04-18 13:20:18 -07002539 &next0, &error0)))
Dave Barach68b0fb02017-02-28 15:15:56 -05002540 {
Florin Coras00cd22d2018-04-18 13:20:18 -07002541 tcp_maybe_inc_counter (rcv_process, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002542 goto drop;
2543 }
2544
2545 /* 5: check the ACK field */
2546 switch (tc0->state)
2547 {
2548 case TCP_STATE_SYN_RCVD:
2549 /*
2550 * If the segment acknowledgment is not acceptable, form a
2551 * reset segment,
2552 * <SEQ=SEG.ACK><CTL=RST>
2553 * and send it.
2554 */
2555 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
2556 {
Florin Corasa096f2d2017-09-28 23:49:42 -04002557 TCP_DBG ("connection not accepted");
Florin Coras1f152cd2017-08-18 19:28:03 -07002558 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
Florin Coras00cd22d2018-04-18 13:20:18 -07002559 error0 = TCP_ERROR_ACK_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05002560 goto drop;
2561 }
Florin Coras3af90fc2017-05-03 21:09:42 -07002562
2563 /* Update rtt and rto */
Florin Coras3af90fc2017-05-03 21:09:42 -07002564 tcp_update_rtt (tc0, vnet_buffer (b0)->tcp.ack_number);
2565
Dave Barach68b0fb02017-02-28 15:15:56 -05002566 /* Switch state to ESTABLISHED */
2567 tc0->state = TCP_STATE_ESTABLISHED;
Florin Corasb384b542018-01-15 01:08:33 -08002568 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002569
2570 /* Initialize session variables */
2571 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
Florin Corase04c2992017-03-01 08:17:34 -08002572 tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
Florin Coras93992a92017-05-24 18:03:56 -07002573 << tc0->rcv_opts.wscale;
Dave Barach68b0fb02017-02-28 15:15:56 -05002574 tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2575 tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
Dave Barach68b0fb02017-02-28 15:15:56 -05002576
Florin Corasab0289a2017-08-14 11:25:25 -07002577 /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
Florin Coras6792ec02017-03-13 03:49:51 -07002578 tcp_retransmit_timer_reset (tc0);
Florin Corasab0289a2017-08-14 11:25:25 -07002579 tcp_timer_reset (tc0, TCP_TIMER_ESTABLISH);
Florin Corasb384b542018-01-15 01:08:33 -08002580 stream_session_accept_notify (&tc0->connection);
Florin Coras00cd22d2018-04-18 13:20:18 -07002581 error0 = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05002582 break;
2583 case TCP_STATE_ESTABLISHED:
2584 /* We can get packets in established state here because they
2585 * were enqueued before state change */
2586 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002587 {
2588 tcp_maybe_inc_counter (rcv_process, error0, 1);
2589 goto drop;
2590 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002591
2592 break;
2593 case TCP_STATE_FIN_WAIT_1:
2594 /* In addition to the processing for the ESTABLISHED state, if
2595 * our FIN is now acknowledged then enter FIN-WAIT-2 and
2596 * continue processing in that state. */
2597 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002598 {
2599 tcp_maybe_inc_counter (rcv_process, error0, 1);
2600 goto drop;
2601 }
Florin Corasd79b41e2017-03-04 05:37:52 -08002602
Florin Corasb2215d62017-08-01 16:56:58 -07002603 /* Still have to send the FIN */
2604 if (tc0->flags & TCP_CONN_FINPNDG)
2605 {
2606 /* TX fifo finally drained */
Florin Coras25579b42018-06-06 17:55:02 -07002607 if (!session_tx_fifo_max_dequeue (&tc0->connection))
Florin Corasb2215d62017-08-01 16:56:58 -07002608 tcp_send_fin (tc0);
2609 }
Florin Corasd79b41e2017-03-04 05:37:52 -08002610 /* If FIN is ACKed */
Florin Corasb2215d62017-08-01 16:56:58 -07002611 else if (tc0->snd_una == tc0->snd_una_max)
Florin Corasd79b41e2017-03-04 05:37:52 -08002612 {
2613 tc0->state = TCP_STATE_FIN_WAIT_2;
Florin Coras6534b7a2017-07-18 05:38:03 -04002614 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
2615
Florin Coras9d063042017-09-14 03:08:00 -04002616 /* Stop all retransmit timers because we have nothing more
2617 * to send. Enable waitclose though because we're willing to
2618 * wait for peer's FIN but not indefinitely. */
2619 tcp_connection_timers_reset (tc0);
2620 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Corasd79b41e2017-03-04 05:37:52 -08002621 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002622 break;
2623 case TCP_STATE_FIN_WAIT_2:
2624 /* In addition to the processing for the ESTABLISHED state, if
2625 * the retransmission queue is empty, the user's CLOSE can be
2626 * acknowledged ("ok") but do not delete the TCB. */
2627 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002628 {
2629 tcp_maybe_inc_counter (rcv_process, error0, 1);
2630 goto drop;
2631 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002632 break;
2633 case TCP_STATE_CLOSE_WAIT:
2634 /* Do the same processing as for the ESTABLISHED state. */
2635 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002636 {
2637 tcp_maybe_inc_counter (rcv_process, error0, 1);
2638 goto drop;
2639 }
Florin Coras25579b42018-06-06 17:55:02 -07002640 if (tc0->flags & TCP_CONN_FINPNDG)
2641 {
2642 /* TX fifo finally drained */
2643 if (!session_tx_fifo_max_dequeue (&tc0->connection))
2644 {
2645 tcp_send_fin (tc0);
2646 tcp_connection_timers_reset (tc0);
2647 tc0->state = TCP_STATE_LAST_ACK;
2648 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
2649 TCP_2MSL_TIME);
2650 }
2651 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002652 break;
2653 case TCP_STATE_CLOSING:
2654 /* In addition to the processing for the ESTABLISHED state, if
2655 * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2656 * otherwise ignore the segment. */
2657 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002658 {
2659 tcp_maybe_inc_counter (rcv_process, error0, 1);
2660 goto drop;
2661 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002662
Dave Barach68b0fb02017-02-28 15:15:56 -05002663 tc0->state = TCP_STATE_TIME_WAIT;
Florin Coras6534b7a2017-07-18 05:38:03 -04002664 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Florin Corasa096f2d2017-09-28 23:49:42 -04002665 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002666 goto drop;
2667
2668 break;
2669 case TCP_STATE_LAST_ACK:
Florin Coras93992a92017-05-24 18:03:56 -07002670 /* The only thing that [should] arrive in this state is an
Dave Barach68b0fb02017-02-28 15:15:56 -05002671 * acknowledgment of our FIN. If our FIN is now acknowledged,
2672 * delete the TCB, enter the CLOSED state, and return. */
2673
2674 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
Florin Corasa096f2d2017-09-28 23:49:42 -04002675 {
2676 error0 = TCP_ERROR_ACK_INVALID;
2677 goto drop;
2678 }
Florin Coras00cd22d2018-04-18 13:20:18 -07002679 error0 = TCP_ERROR_ACK_OK;
Florin Coras9d063042017-09-14 03:08:00 -04002680 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
Florin Corasa096f2d2017-09-28 23:49:42 -04002681 /* Apparently our ACK for the peer's FIN was lost */
2682 if (is_fin0 && tc0->snd_una != tc0->snd_una_max)
Florin Coras93992a92017-05-24 18:03:56 -07002683 {
Florin Coras93992a92017-05-24 18:03:56 -07002684 tcp_send_fin (tc0);
2685 goto drop;
2686 }
2687
Florin Corasd79b41e2017-03-04 05:37:52 -08002688 tc0->state = TCP_STATE_CLOSED;
Florin Coras6534b7a2017-07-18 05:38:03 -04002689 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Florin Corasc01d5782018-10-17 14:53:11 -07002690
2691 /* Don't free the connection from the data path since
2692 * we can't ensure that we have no packets already enqueued
2693 * to output. Rely instead on the waitclose timer */
2694 tcp_connection_timers_reset (tc0);
2695 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, 1);
Florin Corasd79b41e2017-03-04 05:37:52 -08002696
Dave Barach68b0fb02017-02-28 15:15:56 -05002697 goto drop;
2698
2699 break;
2700 case TCP_STATE_TIME_WAIT:
2701 /* The only thing that can arrive in this state is a
2702 * retransmission of the remote FIN. Acknowledge it, and restart
2703 * the 2 MSL timeout. */
2704
Florin Coras93992a92017-05-24 18:03:56 -07002705 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002706 {
2707 tcp_maybe_inc_counter (rcv_process, error0, 1);
2708 goto drop;
2709 }
Florin Coras93992a92017-05-24 18:03:56 -07002710
2711 tcp_make_ack (tc0, b0);
Florin Corasa096f2d2017-09-28 23:49:42 -04002712 next0 = tcp_next_output (is_ip4);
2713 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002714 goto drop;
Florin Coras93992a92017-05-24 18:03:56 -07002715
Dave Barach68b0fb02017-02-28 15:15:56 -05002716 break;
2717 default:
2718 ASSERT (0);
2719 }
2720
2721 /* 6: check the URG bit TODO */
2722
2723 /* 7: process the segment text */
2724 switch (tc0->state)
2725 {
2726 case TCP_STATE_ESTABLISHED:
2727 case TCP_STATE_FIN_WAIT_1:
2728 case TCP_STATE_FIN_WAIT_2:
Florin Coras6534b7a2017-07-18 05:38:03 -04002729 if (vnet_buffer (b0)->tcp.data_len)
Florin Coras00cd22d2018-04-18 13:20:18 -07002730 {
2731 error0 = tcp_segment_rcv (tc0, b0, &next0);
2732 tcp_maybe_inc_counter (rcv_process, error0, 1);
2733 }
Florin Coras9d063042017-09-14 03:08:00 -04002734 else if (is_fin0)
2735 tc0->rcv_nxt += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002736 break;
2737 case TCP_STATE_CLOSE_WAIT:
2738 case TCP_STATE_CLOSING:
2739 case TCP_STATE_LAST_ACK:
2740 case TCP_STATE_TIME_WAIT:
2741 /* This should not occur, since a FIN has been received from the
2742 * remote side. Ignore the segment text. */
2743 break;
2744 }
2745
2746 /* 8: check the FIN bit */
Florin Coras9d063042017-09-14 03:08:00 -04002747 if (!is_fin0)
Dave Barach68b0fb02017-02-28 15:15:56 -05002748 goto drop;
2749
2750 switch (tc0->state)
2751 {
2752 case TCP_STATE_ESTABLISHED:
2753 case TCP_STATE_SYN_RCVD:
2754 /* Send FIN-ACK notify app and enter CLOSE-WAIT */
2755 tcp_connection_timers_reset (tc0);
Florin Corasd79b41e2017-03-04 05:37:52 -08002756 tcp_make_fin (tc0, b0);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002757 tc0->snd_nxt += 1;
Florin Coras8b20bf52018-06-14 14:55:50 -07002758 tc0->snd_una_max = tc0->snd_nxt;
Florin Corasc01c4452018-09-20 18:36:54 -07002759 tcp_retransmit_timer_set (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002760 next0 = tcp_next_output (tc0->c_is_ip4);
2761 stream_session_disconnect_notify (&tc0->connection);
2762 tc0->state = TCP_STATE_CLOSE_WAIT;
Florin Coras6534b7a2017-07-18 05:38:03 -04002763 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002764 break;
2765 case TCP_STATE_CLOSE_WAIT:
2766 case TCP_STATE_CLOSING:
2767 case TCP_STATE_LAST_ACK:
2768 /* move along .. */
2769 break;
2770 case TCP_STATE_FIN_WAIT_1:
Florin Corasab0289a2017-08-14 11:25:25 -07002771 tc0->state = TCP_STATE_CLOSING;
2772 tcp_make_ack (tc0, b0);
2773 next0 = tcp_next_output (is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -04002774 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Florin Corasab0289a2017-08-14 11:25:25 -07002775 /* Wait for ACK but not forever */
2776 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002777 break;
2778 case TCP_STATE_FIN_WAIT_2:
Florin Coras9d063042017-09-14 03:08:00 -04002779 /* Got FIN, send ACK! Be more aggressive with resource cleanup */
Dave Barach68b0fb02017-02-28 15:15:56 -05002780 tc0->state = TCP_STATE_TIME_WAIT;
Florin Corasdb84e572017-05-09 18:54:52 -07002781 tcp_connection_timers_reset (tc0);
Florin Coras9d063042017-09-14 03:08:00 -04002782 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002783 tcp_make_ack (tc0, b0);
2784 next0 = tcp_next_output (is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -04002785 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002786 break;
2787 case TCP_STATE_TIME_WAIT:
Florin Coras9d063042017-09-14 03:08:00 -04002788 /* Remain in the TIME-WAIT state. Restart the time-wait
Dave Barach68b0fb02017-02-28 15:15:56 -05002789 * timeout.
2790 */
Florin Coras9d063042017-09-14 03:08:00 -04002791 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002792 break;
2793 }
Florin Corase69f4952017-03-07 10:06:24 -08002794 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -07002795 n_fins += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002796
Florin Coras82b13a82017-04-25 11:58:06 -07002797 drop:
Dave Barach68b0fb02017-02-28 15:15:56 -05002798 b0->error = error0 ? node->errors[error0] : 0;
2799
Dave Barach68b0fb02017-02-28 15:15:56 -05002800 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2801 {
Florin Coras82b13a82017-04-25 11:58:06 -07002802 tcp_rx_trace_t *t0 =
2803 vlib_add_trace (vm, node, b0, sizeof (*t0));
2804 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002805 }
2806
2807 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2808 n_left_to_next, bi0, next0);
2809 }
2810
2811 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2812 }
2813
Florin Coras3cbc04b2017-10-02 00:18:51 -07002814 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2815 my_thread_index);
Florin Coras00cd22d2018-04-18 13:20:18 -07002816 tcp_inc_counter (rcv_process, TCP_ERROR_EVENT_FIFO_FULL, errors);
2817 tcp_inc_counter (rcv_process, TCP_ERROR_FIN_RCVD, n_fins);
Dave Barach68b0fb02017-02-28 15:15:56 -05002818 return from_frame->n_vectors;
2819}
2820
2821static uword
2822tcp4_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node,
2823 vlib_frame_t * from_frame)
2824{
2825 return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2826}
2827
2828static uword
2829tcp6_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node,
2830 vlib_frame_t * from_frame)
2831{
2832 return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2833}
2834
2835/* *INDENT-OFF* */
2836VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
2837{
2838 .function = tcp4_rcv_process,
2839 .name = "tcp4-rcv-process",
2840 /* Takes a vector of packets. */
2841 .vector_size = sizeof (u32),
2842 .n_errors = TCP_N_ERROR,
2843 .error_strings = tcp_error_strings,
2844 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2845 .next_nodes =
2846 {
2847#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
2848 foreach_tcp_state_next
2849#undef _
2850 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002851 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002852};
2853/* *INDENT-ON* */
2854
2855VLIB_NODE_FUNCTION_MULTIARCH (tcp4_rcv_process_node, tcp4_rcv_process);
2856
2857/* *INDENT-OFF* */
2858VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
2859{
2860 .function = tcp6_rcv_process,
2861 .name = "tcp6-rcv-process",
2862 /* Takes a vector of packets. */
2863 .vector_size = sizeof (u32),
2864 .n_errors = TCP_N_ERROR,
2865 .error_strings = tcp_error_strings,
2866 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2867 .next_nodes =
2868 {
2869#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
2870 foreach_tcp_state_next
2871#undef _
2872 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002873 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002874};
2875/* *INDENT-ON* */
2876
2877VLIB_NODE_FUNCTION_MULTIARCH (tcp6_rcv_process_node, tcp6_rcv_process);
2878
2879vlib_node_registration_t tcp4_listen_node;
2880vlib_node_registration_t tcp6_listen_node;
2881
2882/**
2883 * LISTEN state processing as per RFC 793 p. 65
2884 */
2885always_inline uword
2886tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2887 vlib_frame_t * from_frame, int is_ip4)
2888{
Florin Coras00cd22d2018-04-18 13:20:18 -07002889 u32 n_left_from, next_index, *from, *to_next, n_syns = 0;
Damjan Marion586afd72017-04-05 19:18:20 +02002890 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002891
2892 from = vlib_frame_vector_args (from_frame);
2893 n_left_from = from_frame->n_vectors;
2894
2895 next_index = node->cached_next_index;
2896
2897 while (n_left_from > 0)
2898 {
2899 u32 n_left_to_next;
2900
2901 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2902
2903 while (n_left_from > 0 && n_left_to_next > 0)
2904 {
2905 u32 bi0;
2906 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002907 tcp_rx_trace_t *t0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002908 tcp_header_t *th0 = 0;
2909 tcp_connection_t *lc0;
2910 ip4_header_t *ip40;
2911 ip6_header_t *ip60;
2912 tcp_connection_t *child0;
Florin Coras00cd22d2018-04-18 13:20:18 -07002913 u32 error0 = TCP_ERROR_NONE, next0 = tcp_next_drop (is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002914
2915 bi0 = from[0];
2916 to_next[0] = bi0;
2917 from += 1;
2918 to_next += 1;
2919 n_left_from -= 1;
2920 n_left_to_next -= 1;
2921
2922 b0 = vlib_get_buffer (vm, bi0);
2923 lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index);
2924
2925 if (is_ip4)
2926 {
2927 ip40 = vlib_buffer_get_current (b0);
2928 th0 = ip4_next_header (ip40);
2929 }
2930 else
2931 {
2932 ip60 = vlib_buffer_get_current (b0);
2933 th0 = ip6_next_header (ip60);
2934 }
2935
2936 /* Create child session. For syn-flood protection use filter */
2937
Florin Corasdc629cd2017-05-09 00:52:37 -07002938 /* 1. first check for an RST: handled in dispatch */
2939 /* if (tcp_rst (th0))
2940 goto drop; */
Dave Barach68b0fb02017-02-28 15:15:56 -05002941
Florin Corasdc629cd2017-05-09 00:52:37 -07002942 /* 2. second check for an ACK: handled in dispatch */
2943 /* if (tcp_ack (th0))
2944 {
2945 tcp_send_reset (b0, is_ip4);
2946 goto drop;
2947 } */
Dave Barach68b0fb02017-02-28 15:15:56 -05002948
2949 /* 3. check for a SYN (did that already) */
2950
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002951 /* Make sure connection wasn't just created */
Florin Corasc1a448b2018-04-20 10:51:49 -07002952 child0 = tcp_lookup_connection (lc0->c_fib_index, b0,
2953 my_thread_index, is_ip4);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002954 if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN))
2955 {
2956 error0 = TCP_ERROR_CREATE_EXISTS;
2957 goto drop;
2958 }
2959
Dave Barach68b0fb02017-02-28 15:15:56 -05002960 /* Create child session and send SYN-ACK */
Florin Coras6534b7a2017-07-18 05:38:03 -04002961 child0 = tcp_connection_new (my_thread_index);
Florin Coras1c710452017-10-17 00:03:13 -07002962 child0->c_lcl_port = th0->dst_port;
Dave Barach68b0fb02017-02-28 15:15:56 -05002963 child0->c_rmt_port = th0->src_port;
2964 child0->c_is_ip4 = is_ip4;
Florin Corasbb292f42017-05-19 09:49:19 -07002965 child0->state = TCP_STATE_SYN_RCVD;
Florin Coras56b39f62018-03-27 17:29:32 -07002966 child0->c_fib_index = lc0->c_fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002967
2968 if (is_ip4)
2969 {
2970 child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32;
2971 child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32;
2972 }
2973 else
2974 {
2975 clib_memcpy (&child0->c_lcl_ip6, &ip60->dst_address,
2976 sizeof (ip6_address_t));
2977 clib_memcpy (&child0->c_rmt_ip6, &ip60->src_address,
2978 sizeof (ip6_address_t));
2979 }
2980
Florin Coras93992a92017-05-24 18:03:56 -07002981 if (tcp_options_parse (th0, &child0->rcv_opts))
Florin Corasdb84e572017-05-09 18:54:52 -07002982 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002983 clib_warning ("options parse fail");
Florin Corasdb84e572017-05-09 18:54:52 -07002984 goto drop;
2985 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002986
2987 child0->irs = vnet_buffer (b0)->tcp.seq_number;
2988 child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1;
Florin Coras3e350af2017-03-30 02:54:28 -07002989 child0->rcv_las = child0->rcv_nxt;
Florin Corasf9d05682018-04-26 08:26:52 -07002990 child0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Dave Barach68b0fb02017-02-28 15:15:56 -05002991
2992 /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
2993 * segments are used to initialize PAWS. */
Florin Coras93992a92017-05-24 18:03:56 -07002994 if (tcp_opts_tstamp (&child0->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05002995 {
Florin Coras93992a92017-05-24 18:03:56 -07002996 child0->tsval_recent = child0->rcv_opts.tsval;
Dave Barach68b0fb02017-02-28 15:15:56 -05002997 child0->tsval_recent_age = tcp_time_now ();
2998 }
2999
Florin Coras93992a92017-05-24 18:03:56 -07003000 if (tcp_opts_wscale (&child0->rcv_opts))
3001 child0->snd_wscale = child0->rcv_opts.wscale;
Florin Corase04c2992017-03-01 08:17:34 -08003002
Florin Corasf03a59a2017-06-09 21:07:32 -07003003 child0->snd_wnd = clib_net_to_host_u16 (th0->window)
3004 << child0->snd_wscale;
Florin Corase04c2992017-03-01 08:17:34 -08003005 child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
3006 child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
3007
3008 tcp_connection_init_vars (child0);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04003009 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, child0, 1);
Florin Corase69f4952017-03-07 10:06:24 -08003010
Florin Coras6dfb5ac2017-11-09 16:26:03 -08003011 if (stream_session_accept (&child0->connection, lc0->c_s_index,
3012 0 /* notify */ ))
3013 {
3014 clib_warning ("session accept fail");
3015 tcp_connection_cleanup (child0);
3016 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
3017 goto drop;
3018 }
3019
Dave Barach68b0fb02017-02-28 15:15:56 -05003020 /* Reuse buffer to make syn-ack and send */
3021 tcp_make_synack (child0, b0);
3022 next0 = tcp_next_output (is_ip4);
Florin Corasab0289a2017-08-14 11:25:25 -07003023 tcp_timer_set (child0, TCP_TIMER_ESTABLISH, TCP_SYN_RCVD_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05003024
3025 drop:
3026 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3027 {
Clement Durand6cf260c2017-04-13 13:27:04 +02003028 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
3029 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
3030 clib_memcpy (&t0->tcp_connection, lc0,
3031 sizeof (t0->tcp_connection));
Dave Barach68b0fb02017-02-28 15:15:56 -05003032 }
3033
Florin Coras00cd22d2018-04-18 13:20:18 -07003034 n_syns += (error0 == TCP_ERROR_NONE);
Florin Corase04c2992017-03-01 08:17:34 -08003035 b0->error = node->errors[error0];
Dave Barach68b0fb02017-02-28 15:15:56 -05003036
3037 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
3038 n_left_to_next, bi0, next0);
3039 }
3040
3041 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
3042 }
Florin Coras00cd22d2018-04-18 13:20:18 -07003043
3044 tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
Dave Barach68b0fb02017-02-28 15:15:56 -05003045 return from_frame->n_vectors;
3046}
3047
3048static uword
3049tcp4_listen (vlib_main_t * vm, vlib_node_runtime_t * node,
3050 vlib_frame_t * from_frame)
3051{
3052 return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3053}
3054
3055static uword
3056tcp6_listen (vlib_main_t * vm, vlib_node_runtime_t * node,
3057 vlib_frame_t * from_frame)
3058{
3059 return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3060}
3061
3062/* *INDENT-OFF* */
3063VLIB_REGISTER_NODE (tcp4_listen_node) =
3064{
3065 .function = tcp4_listen,
3066 .name = "tcp4-listen",
3067 /* Takes a vector of packets. */
3068 .vector_size = sizeof (u32),
3069 .n_errors = TCP_N_ERROR,
3070 .error_strings = tcp_error_strings,
3071 .n_next_nodes = TCP_LISTEN_N_NEXT,
3072 .next_nodes =
3073 {
3074#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3075 foreach_tcp_state_next
3076#undef _
3077 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003078 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003079};
3080/* *INDENT-ON* */
3081
3082VLIB_NODE_FUNCTION_MULTIARCH (tcp4_listen_node, tcp4_listen);
3083
3084/* *INDENT-OFF* */
3085VLIB_REGISTER_NODE (tcp6_listen_node) =
3086{
3087 .function = tcp6_listen,
3088 .name = "tcp6-listen",
3089 /* Takes a vector of packets. */
3090 .vector_size = sizeof (u32),
3091 .n_errors = TCP_N_ERROR,
3092 .error_strings = tcp_error_strings,
3093 .n_next_nodes = TCP_LISTEN_N_NEXT,
3094 .next_nodes =
3095 {
3096#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3097 foreach_tcp_state_next
3098#undef _
3099 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003100 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003101};
3102/* *INDENT-ON* */
3103
3104VLIB_NODE_FUNCTION_MULTIARCH (tcp6_listen_node, tcp6_listen);
3105
3106vlib_node_registration_t tcp4_input_node;
3107vlib_node_registration_t tcp6_input_node;
3108
3109typedef enum _tcp_input_next
3110{
3111 TCP_INPUT_NEXT_DROP,
3112 TCP_INPUT_NEXT_LISTEN,
3113 TCP_INPUT_NEXT_RCV_PROCESS,
3114 TCP_INPUT_NEXT_SYN_SENT,
3115 TCP_INPUT_NEXT_ESTABLISHED,
3116 TCP_INPUT_NEXT_RESET,
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003117 TCP_INPUT_NEXT_PUNT,
Dave Barach68b0fb02017-02-28 15:15:56 -05003118 TCP_INPUT_N_NEXT
3119} tcp_input_next_t;
3120
3121#define foreach_tcp4_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003122 _ (DROP, "ip4-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003123 _ (LISTEN, "tcp4-listen") \
3124 _ (RCV_PROCESS, "tcp4-rcv-process") \
3125 _ (SYN_SENT, "tcp4-syn-sent") \
3126 _ (ESTABLISHED, "tcp4-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003127 _ (RESET, "tcp4-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003128 _ (PUNT, "ip4-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003129
3130#define foreach_tcp6_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003131 _ (DROP, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003132 _ (LISTEN, "tcp6-listen") \
3133 _ (RCV_PROCESS, "tcp6-rcv-process") \
3134 _ (SYN_SENT, "tcp6-syn-sent") \
3135 _ (ESTABLISHED, "tcp6-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003136 _ (RESET, "tcp6-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003137 _ (PUNT, "ip6-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003138
Dave Barach68b0fb02017-02-28 15:15:56 -05003139#define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
3140
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003141static void
3142tcp_input_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07003143 vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003144{
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003145 tcp_connection_t *tc;
3146 tcp_header_t *tcp;
3147 tcp_rx_trace_t *t;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003148 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05003149
Florin Coras4df38712018-06-20 12:44:16 -07003150 for (i = 0; i < n_bufs; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05003151 {
Florin Coras4df38712018-06-20 12:44:16 -07003152 if (bs[i]->flags & VLIB_BUFFER_IS_TRACED)
3153 {
3154 t = vlib_add_trace (vm, node, bs[i], sizeof (*t));
3155 tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index,
3156 vm->thread_index);
3157 tcp = vlib_buffer_get_current (bs[i]);
3158 tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4);
3159 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003160 }
3161}
Dave Barach68b0fb02017-02-28 15:15:56 -05003162
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003163static void
3164tcp_input_set_error_next (tcp_main_t * tm, u16 * next, u32 * error, u8 is_ip4)
3165{
3166 if (*error == TCP_ERROR_FILTERED)
3167 {
3168 *next = TCP_INPUT_NEXT_DROP;
3169 }
3170 else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6))
3171 {
3172 *next = TCP_INPUT_NEXT_PUNT;
3173 *error = TCP_ERROR_PUNT;
3174 }
3175 else
3176 {
3177 *next = TCP_INPUT_NEXT_RESET;
3178 *error = TCP_ERROR_NO_LISTENER;
3179 }
3180}
Dave Barach68b0fb02017-02-28 15:15:56 -05003181
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003182static inline tcp_connection_t *
3183tcp_input_lookup_buffer (vlib_buffer_t * b, u8 thread_index, u32 * error,
3184 u8 is_ip4)
3185{
3186 u32 fib_index = vnet_buffer (b)->ip.fib_index;
3187 int n_advance_bytes, n_data_bytes;
3188 transport_connection_t *tc;
3189 tcp_header_t *tcp;
3190 u8 is_filtered = 0;
3191
3192 if (is_ip4)
3193 {
3194 ip4_header_t *ip4 = vlib_buffer_get_current (b);
3195 tcp = ip4_next_header (ip4);
3196 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip4;
3197 n_advance_bytes = (ip4_header_bytes (ip4) + tcp_header_bytes (tcp));
3198 n_data_bytes = clib_net_to_host_u16 (ip4->length) - n_advance_bytes;
3199
3200 /* Length check. Checksum computed by ipx_local no need to compute again */
3201 if (PREDICT_FALSE (n_advance_bytes < 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05003202 {
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003203 *error = TCP_ERROR_LENGTH;
3204 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003205 }
3206
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003207 tc = session_lookup_connection_wt4 (fib_index, &ip4->dst_address,
3208 &ip4->src_address, tcp->dst_port,
3209 tcp->src_port, TRANSPORT_PROTO_TCP,
3210 thread_index, &is_filtered);
3211 }
3212 else
3213 {
3214 ip6_header_t *ip6 = vlib_buffer_get_current (b);
3215 tcp = ip6_next_header (ip6);
3216 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip6;
3217 n_advance_bytes = tcp_header_bytes (tcp);
3218 n_data_bytes = clib_net_to_host_u16 (ip6->payload_length)
3219 - n_advance_bytes;
3220 n_advance_bytes += sizeof (ip6[0]);
3221
3222 if (PREDICT_FALSE (n_advance_bytes < 0))
3223 {
3224 *error = TCP_ERROR_LENGTH;
3225 return 0;
3226 }
3227
3228 tc = session_lookup_connection_wt6 (fib_index, &ip6->dst_address,
3229 &ip6->src_address, tcp->dst_port,
3230 tcp->src_port, TRANSPORT_PROTO_TCP,
3231 thread_index, &is_filtered);
Dave Barach68b0fb02017-02-28 15:15:56 -05003232 }
3233
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003234 vnet_buffer (b)->tcp.seq_number = clib_net_to_host_u32 (tcp->seq_number);
3235 vnet_buffer (b)->tcp.ack_number = clib_net_to_host_u32 (tcp->ack_number);
3236 vnet_buffer (b)->tcp.data_offset = n_advance_bytes;
3237 vnet_buffer (b)->tcp.data_len = n_data_bytes;
3238 vnet_buffer (b)->tcp.flags = 0;
3239
3240 *error = is_filtered ? TCP_ERROR_FILTERED : *error;
3241
3242 return tcp_get_connection_from_transport (tc);
3243}
3244
3245static inline void
3246tcp_input_dispatch_buffer (tcp_main_t * tm, tcp_connection_t * tc,
3247 vlib_buffer_t * b, u16 * next, u32 * error)
3248{
3249 tcp_header_t *tcp;
3250 u8 flags;
3251
3252 tcp = tcp_buffer_hdr (b);
3253 flags = tcp->flags & filter_flags;
3254 *next = tm->dispatch_table[tc->state][flags].next;
3255 *error = tm->dispatch_table[tc->state][flags].error;
3256
3257 if (PREDICT_FALSE (*error == TCP_ERROR_DISPATCH
3258 || *next == TCP_INPUT_NEXT_RESET))
3259 {
3260 /* Overload tcp flags to store state */
3261 tcp_state_t state = tc->state;
3262 vnet_buffer (b)->tcp.flags = tc->state;
3263
3264 if (*error == TCP_ERROR_DISPATCH)
3265 clib_warning ("disp error state %U flags %U", format_tcp_state,
3266 state, format_tcp_flags, (int) flags);
3267 }
3268}
3269
3270always_inline uword
3271tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3272 vlib_frame_t * frame, int is_ip4)
3273{
3274 u32 n_left_from, *from, thread_index = vm->thread_index;
3275 tcp_main_t *tm = vnet_get_tcp_main ();
3276 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
3277 u16 nexts[VLIB_FRAME_SIZE], *next;
3278
3279 tcp_set_time_now (thread_index);
3280
3281 from = vlib_frame_vector_args (frame);
3282 n_left_from = frame->n_vectors;
3283 vlib_get_buffers (vm, from, bufs, n_left_from);
3284
3285 b = bufs;
3286 next = nexts;
3287
3288 while (n_left_from >= 4)
3289 {
3290 u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER;
3291 tcp_connection_t *tc0, *tc1;
3292
3293 {
3294 vlib_prefetch_buffer_header (b[2], STORE);
3295 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3296
3297 vlib_prefetch_buffer_header (b[3], STORE);
3298 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3299 }
3300
3301 next[0] = next[1] = TCP_INPUT_NEXT_DROP;
3302
3303 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4);
3304 tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4);
3305
3306 if (PREDICT_TRUE (!tc0 + !tc1 == 0))
3307 {
3308 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3309 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3310
3311 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3312 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3313
3314 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3315 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3316 }
3317 else
3318 {
3319 if (PREDICT_TRUE (tc0 != 0))
3320 {
3321 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3322 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3323 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3324 }
3325 else
3326 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3327
3328 if (PREDICT_TRUE (tc1 != 0))
3329 {
3330 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3331 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3332 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3333 }
3334 else
3335 tcp_input_set_error_next (tm, &next[1], &error1, is_ip4);
3336 }
3337
3338 b += 2;
3339 next += 2;
3340 n_left_from -= 2;
3341 }
3342 while (n_left_from > 0)
3343 {
3344 tcp_connection_t *tc0;
3345 u32 error0 = TCP_ERROR_NO_LISTENER;
3346
3347 if (n_left_from > 1)
3348 {
3349 vlib_prefetch_buffer_header (b[1], STORE);
3350 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3351 }
3352
3353 next[0] = TCP_INPUT_NEXT_DROP;
3354 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4);
3355 if (PREDICT_TRUE (tc0 != 0))
3356 {
3357 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3358 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3359 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3360 }
3361 else
3362 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3363
3364 b += 1;
3365 next += 1;
3366 n_left_from -= 1;
3367 }
3368
3369 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
3370 tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4);
3371
3372 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
3373 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05003374}
3375
3376static uword
3377tcp4_input (vlib_main_t * vm, vlib_node_runtime_t * node,
3378 vlib_frame_t * from_frame)
3379{
3380 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3381}
3382
3383static uword
3384tcp6_input (vlib_main_t * vm, vlib_node_runtime_t * node,
3385 vlib_frame_t * from_frame)
3386{
3387 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3388}
3389
3390/* *INDENT-OFF* */
3391VLIB_REGISTER_NODE (tcp4_input_node) =
3392{
3393 .function = tcp4_input,
3394 .name = "tcp4-input",
3395 /* Takes a vector of packets. */
3396 .vector_size = sizeof (u32),
3397 .n_errors = TCP_N_ERROR,
3398 .error_strings = tcp_error_strings,
3399 .n_next_nodes = TCP_INPUT_N_NEXT,
3400 .next_nodes =
3401 {
3402#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3403 foreach_tcp4_input_next
3404#undef _
3405 },
3406 .format_buffer = format_tcp_header,
3407 .format_trace = format_tcp_rx_trace,
3408};
3409/* *INDENT-ON* */
3410
3411VLIB_NODE_FUNCTION_MULTIARCH (tcp4_input_node, tcp4_input);
3412
3413/* *INDENT-OFF* */
3414VLIB_REGISTER_NODE (tcp6_input_node) =
3415{
3416 .function = tcp6_input,
3417 .name = "tcp6-input",
3418 /* Takes a vector of packets. */
3419 .vector_size = sizeof (u32),
3420 .n_errors = TCP_N_ERROR,
3421 .error_strings = tcp_error_strings,
3422 .n_next_nodes = TCP_INPUT_N_NEXT,
3423 .next_nodes =
3424 {
3425#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3426 foreach_tcp6_input_next
3427#undef _
3428 },
3429 .format_buffer = format_tcp_header,
3430 .format_trace = format_tcp_rx_trace,
3431};
3432/* *INDENT-ON* */
3433
3434VLIB_NODE_FUNCTION_MULTIARCH (tcp6_input_node, tcp6_input);
Dave Barach68b0fb02017-02-28 15:15:56 -05003435
3436static void
3437tcp_dispatch_table_init (tcp_main_t * tm)
3438{
3439 int i, j;
3440 for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3441 for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3442 {
3443 tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3444 tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3445 }
3446
3447#define _(t,f,n,e) \
3448do { \
3449 tm->dispatch_table[TCP_STATE_##t][f].next = (n); \
3450 tm->dispatch_table[TCP_STATE_##t][f].error = (e); \
3451} while (0)
3452
3453 /* SYNs for new connections -> tcp-listen. */
3454 _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003455 _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
Florin Coras00cd22d2018-04-18 13:20:18 -07003456 _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_RST_RCVD);
Dave Barach2c25a622017-06-26 11:35:07 -04003457 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3458 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003459 /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3460 _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc28764f2017-04-26 00:08:42 -07003461 _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase8460c72018-09-24 14:40:40 -07003462 _(SYN_RCVD, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3463 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003464 _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc01c4452018-09-20 18:36:54 -07003465 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3466 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003467 /* SYN-ACK for a SYN */
3468 _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3469 TCP_ERROR_NONE);
3470 _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3471 _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3472 _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3473 TCP_ERROR_NONE);
3474 /* ACK for for established connection -> tcp-established. */
3475 _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3476 /* FIN for for established connection -> tcp-established. */
3477 _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3478 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3479 TCP_ERROR_NONE);
Florin Corasd79b41e2017-03-04 05:37:52 -08003480 _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003481 _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3482 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003483 _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003484 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3485 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003486 /* ACK or FIN-ACK to our FIN */
3487 _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3488 _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
3489 TCP_ERROR_NONE);
3490 /* FIN in reply to our FIN from the other side */
3491 _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003492 _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras56318932018-05-23 20:44:12 -07003493 _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003494 /* FIN confirming that the peer (app) has closed */
3495 _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasf6d68ed2017-05-07 19:12:02 -07003496 _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003497 _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3498 TCP_ERROR_NONE);
Florin Corasf03a59a2017-06-09 21:07:32 -07003499 _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3500 _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3501 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003502 _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003503 _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3504 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3505 TCP_ERROR_NONE);
Florin Corasdb84e572017-05-09 18:54:52 -07003506 _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc01d5782018-10-17 14:53:11 -07003507 _(LAST_ACK, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003508 _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3509 _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3510 TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003511 _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras50958952017-08-29 14:50:13 -07003512 _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras9d063042017-09-14 03:08:00 -04003513 _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Corasdc629cd2017-05-09 00:52:37 -07003514 _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras9d063042017-09-14 03:08:00 -04003515 _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003516 TCP_ERROR_CONNECTION_CLOSED);
Dave Barach68b0fb02017-02-28 15:15:56 -05003517#undef _
3518}
3519
Florin Coras0dbd5172018-06-25 16:19:34 -07003520static clib_error_t *
Dave Barach68b0fb02017-02-28 15:15:56 -05003521tcp_input_init (vlib_main_t * vm)
3522{
3523 clib_error_t *error = 0;
3524 tcp_main_t *tm = vnet_get_tcp_main ();
3525
3526 if ((error = vlib_call_init_function (vm, tcp_init)))
3527 return error;
3528
3529 /* Initialize dispatch table. */
3530 tcp_dispatch_table_init (tm);
3531
3532 return error;
3533}
3534
3535VLIB_INIT_FUNCTION (tcp_input_init);
3536
3537/*
3538 * fd.io coding-style-patch-verification: ON
3539 *
3540 * Local Variables:
3541 * eval: (c-set-style "gnu")
3542 * End:
3543 */