blob: 5a1e84f35695677eb57ba5e1d9bcee516ce0c50c [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 */
126int
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 */
138 to->flags &= (TCP_OPTS_FLAG_SACK_PERMITTED | TCP_OPTS_FLAG_WSCALE);
139
140 for (; opts_len > 0; opts_len -= opt_len, data += opt_len)
141 {
142 kind = data[0];
143
144 /* Get options length */
145 if (kind == TCP_OPTION_EOL)
146 break;
147 else if (kind == TCP_OPTION_NOOP)
Florin Corasdb84e572017-05-09 18:54:52 -0700148 {
149 opt_len = 1;
150 continue;
151 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500152 else
153 {
154 /* broken options */
155 if (opts_len < 2)
Florin Corasdb84e572017-05-09 18:54:52 -0700156 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500157 opt_len = data[1];
158
159 /* weird option length */
160 if (opt_len < 2 || opt_len > opts_len)
Florin Corasdb84e572017-05-09 18:54:52 -0700161 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500162 }
163
164 /* Parse options */
165 switch (kind)
166 {
167 case TCP_OPTION_MSS:
168 if ((opt_len == TCP_OPTION_LEN_MSS) && tcp_syn (th))
169 {
170 to->flags |= TCP_OPTS_FLAG_MSS;
171 to->mss = clib_net_to_host_u16 (*(u16 *) (data + 2));
172 }
173 break;
174 case TCP_OPTION_WINDOW_SCALE:
175 if ((opt_len == TCP_OPTION_LEN_WINDOW_SCALE) && tcp_syn (th))
176 {
177 to->flags |= TCP_OPTS_FLAG_WSCALE;
178 to->wscale = data[2];
179 if (to->wscale > TCP_MAX_WND_SCALE)
180 {
181 clib_warning ("Illegal window scaling value: %d",
182 to->wscale);
183 to->wscale = TCP_MAX_WND_SCALE;
184 }
185 }
186 break;
187 case TCP_OPTION_TIMESTAMP:
188 if (opt_len == TCP_OPTION_LEN_TIMESTAMP)
189 {
190 to->flags |= TCP_OPTS_FLAG_TSTAMP;
191 to->tsval = clib_net_to_host_u32 (*(u32 *) (data + 2));
192 to->tsecr = clib_net_to_host_u32 (*(u32 *) (data + 6));
193 }
194 break;
195 case TCP_OPTION_SACK_PERMITTED:
196 if (opt_len == TCP_OPTION_LEN_SACK_PERMITTED && tcp_syn (th))
197 to->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
198 break;
199 case TCP_OPTION_SACK_BLOCK:
200 /* If SACK permitted was not advertised or a SYN, break */
201 if ((to->flags & TCP_OPTS_FLAG_SACK_PERMITTED) == 0 || tcp_syn (th))
202 break;
203
204 /* If too short or not correctly formatted, break */
205 if (opt_len < 10 || ((opt_len - 2) % TCP_OPTION_LEN_SACK_BLOCK))
206 break;
207
208 to->flags |= TCP_OPTS_FLAG_SACK;
209 to->n_sack_blocks = (opt_len - 2) / TCP_OPTION_LEN_SACK_BLOCK;
210 vec_reset_length (to->sacks);
211 for (j = 0; j < to->n_sack_blocks; j++)
212 {
Florin Coras3eb50622017-07-13 01:24:57 -0400213 b.start = clib_net_to_host_u32 (*(u32 *) (data + 2 + 8 * j));
214 b.end = clib_net_to_host_u32 (*(u32 *) (data + 6 + 8 * j));
Dave Barach68b0fb02017-02-28 15:15:56 -0500215 vec_add1 (to->sacks, b);
216 }
217 break;
218 default:
219 /* Nothing to see here */
220 continue;
221 }
222 }
Florin Corasdb84e572017-05-09 18:54:52 -0700223 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500224}
225
Florin Corasc28764f2017-04-26 00:08:42 -0700226/**
227 * RFC1323: Check against wrapped sequence numbers (PAWS). If we have
228 * timestamp to echo and it's less than tsval_recent, drop segment
229 * but still send an ACK in order to retain TCP's mechanism for detecting
230 * and recovering from half-open connections
231 *
232 * Or at least that's what the theory says. It seems that this might not work
233 * very well with packet reordering and fast retransmit. XXX
234 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500235always_inline int
236tcp_segment_check_paws (tcp_connection_t * tc)
237{
Florin Coras93992a92017-05-24 18:03:56 -0700238 return tcp_opts_tstamp (&tc->rcv_opts) && tc->tsval_recent
239 && timestamp_lt (tc->rcv_opts.tsval, tc->tsval_recent);
Dave Barach68b0fb02017-02-28 15:15:56 -0500240}
241
242/**
Florin Corasc28764f2017-04-26 00:08:42 -0700243 * Update tsval recent
244 */
245always_inline void
246tcp_update_timestamp (tcp_connection_t * tc, u32 seq, u32 seq_end)
247{
248 /*
249 * RFC1323: If Last.ACK.sent falls within the range of sequence numbers
250 * of an incoming segment:
251 * SEG.SEQ <= Last.ACK.sent < SEG.SEQ + SEG.LEN
252 * then the TSval from the segment is copied to TS.Recent;
253 * otherwise, the TSval is ignored.
254 */
Florin Corasf1762d62017-09-24 19:43:08 -0400255 if (tcp_opts_tstamp (&tc->rcv_opts) && seq_leq (seq, tc->rcv_las)
256 && seq_leq (tc->rcv_las, seq_end))
Florin Corasc28764f2017-04-26 00:08:42 -0700257 {
Dave Barach2c25a622017-06-26 11:35:07 -0400258 ASSERT (timestamp_leq (tc->tsval_recent, tc->rcv_opts.tsval));
Florin Coras93992a92017-05-24 18:03:56 -0700259 tc->tsval_recent = tc->rcv_opts.tsval;
Florin Corasc28764f2017-04-26 00:08:42 -0700260 tc->tsval_recent_age = tcp_time_now ();
261 }
262}
263
264/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500265 * Validate incoming segment as per RFC793 p. 69 and RFC1323 p. 19
266 *
267 * It first verifies if segment has a wrapped sequence number (PAWS) and then
268 * does the processing associated to the first four steps (ignoring security
269 * and precedence): sequence number, rst bit and syn bit checks.
270 *
271 * @return 0 if segments passes validation.
272 */
273static int
274tcp_segment_validate (vlib_main_t * vm, tcp_connection_t * tc0,
Florin Coras00cd22d2018-04-18 13:20:18 -0700275 vlib_buffer_t * b0, tcp_header_t * th0,
276 u32 * next0, u32 * error0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500277{
Dave Barach68b0fb02017-02-28 15:15:56 -0500278 if (PREDICT_FALSE (!tcp_ack (th0) && !tcp_rst (th0) && !tcp_syn (th0)))
Florin Coras00cd22d2018-04-18 13:20:18 -0700279 {
280 *error0 = TCP_ERROR_SEGMENT_INVALID;
281 goto drop;
282 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500283
Florin Coras93992a92017-05-24 18:03:56 -0700284 if (PREDICT_FALSE (tcp_options_parse (th0, &tc0->rcv_opts)))
Florin Corasdb84e572017-05-09 18:54:52 -0700285 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400286 clib_warning ("options parse error");
Florin Coras00cd22d2018-04-18 13:20:18 -0700287 *error0 = TCP_ERROR_OPTIONS;
288 goto drop;
Florin Corasdb84e572017-05-09 18:54:52 -0700289 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500290
Florin Coras00cd22d2018-04-18 13:20:18 -0700291 if (PREDICT_FALSE (tcp_segment_check_paws (tc0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500292 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700293 *error0 = TCP_ERROR_PAWS;
Florin Coras93992a92017-05-24 18:03:56 -0700294 if (CLIB_DEBUG > 2)
295 {
296 clib_warning ("paws failed\n%U", format_tcp_connection, tc0, 2);
297 clib_warning ("seq %u seq_end %u ack %u",
298 vnet_buffer (b0)->tcp.seq_number - tc0->irs,
299 vnet_buffer (b0)->tcp.seq_end - tc0->irs,
300 vnet_buffer (b0)->tcp.ack_number - tc0->iss);
301 }
Florin Corasc28764f2017-04-26 00:08:42 -0700302 TCP_EVT_DBG (TCP_EVT_PAWS_FAIL, tc0, vnet_buffer (b0)->tcp.seq_number,
303 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500304
305 /* If it just so happens that a segment updates tsval_recent for a
306 * segment over 24 days old, invalidate tsval_recent. */
307 if (timestamp_lt (tc0->tsval_recent_age + TCP_PAWS_IDLE,
308 tcp_time_now ()))
309 {
310 /* Age isn't reset until we get a valid tsval (bsd inspired) */
311 tc0->tsval_recent = 0;
Florin Corasc28764f2017-04-26 00:08:42 -0700312 clib_warning ("paws failed - really old segment. REALLY?");
Dave Barach68b0fb02017-02-28 15:15:56 -0500313 }
314 else
315 {
316 /* Drop after ack if not rst */
317 if (!tcp_rst (th0))
318 {
319 tcp_make_ack (tc0, b0);
Florin Coras6792ec02017-03-13 03:49:51 -0700320 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -0700321 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500322 }
323 }
Florin Coras00cd22d2018-04-18 13:20:18 -0700324 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -0500325 }
326
327 /* 1st: check sequence number */
328 if (!tcp_segment_in_rcv_wnd (tc0, vnet_buffer (b0)->tcp.seq_number,
329 vnet_buffer (b0)->tcp.seq_end))
330 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700331 *error0 = TCP_ERROR_RCV_WND;
332
Florin Coras6792ec02017-03-13 03:49:51 -0700333 /* If our window is 0 and the packet is in sequence, let it pass
Florin Coras00cd22d2018-04-18 13:20:18 -0700334 * through for ack processing. It should be dropped later. */
335 if (!(tc0->rcv_wnd == 0
336 && tc0->rcv_nxt == vnet_buffer (b0)->tcp.seq_number))
Florin Coras6792ec02017-03-13 03:49:51 -0700337 {
338 /* If not RST, send dup ack */
339 if (!tcp_rst (th0))
340 {
341 tcp_make_ack (tc0, b0);
Florin Coras6792ec02017-03-13 03:49:51 -0700342 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -0700343 goto error;
Florin Coras6792ec02017-03-13 03:49:51 -0700344 }
Florin Coras00cd22d2018-04-18 13:20:18 -0700345 goto drop;
Florin Coras6792ec02017-03-13 03:49:51 -0700346 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500347 }
348
349 /* 2nd: check the RST bit */
Florin Coras00cd22d2018-04-18 13:20:18 -0700350 if (PREDICT_FALSE (tcp_rst (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500351 {
Florin Corasd79b41e2017-03-04 05:37:52 -0800352 tcp_connection_reset (tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -0700353 *error0 = TCP_ERROR_RST_RCVD;
354 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -0500355 }
356
357 /* 3rd: check security and precedence (skip) */
358
359 /* 4th: check the SYN bit */
Florin Coras00cd22d2018-04-18 13:20:18 -0700360 if (PREDICT_FALSE (tcp_syn (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500361 {
Florin Coras6534b7a2017-07-18 05:38:03 -0400362 /* TODO implement RFC 5961 */
Florin Coras9d063042017-09-14 03:08:00 -0400363 if (tc0->state == TCP_STATE_SYN_RCVD)
364 {
365 tcp_make_synack (tc0, b0);
366 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, tc0, 0);
367 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400368 else
Florin Coras9d063042017-09-14 03:08:00 -0400369 {
370 tcp_make_ack (tc0, b0);
371 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, tc0);
372 }
Florin Coras00cd22d2018-04-18 13:20:18 -0700373 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500374 }
375
Florin Corasc28764f2017-04-26 00:08:42 -0700376 /* If segment in window, save timestamp */
377 tcp_update_timestamp (tc0, vnet_buffer (b0)->tcp.seq_number,
378 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500379 return 0;
Florin Coras00cd22d2018-04-18 13:20:18 -0700380
381drop:
382 *next0 = tcp_next_drop (tc0->c_is_ip4);
383 return -1;
384error:
385 *next0 = tcp_next_output (tc0->c_is_ip4);
386 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500387}
388
389always_inline int
390tcp_rcv_ack_is_acceptable (tcp_connection_t * tc0, vlib_buffer_t * tb0)
391{
392 /* SND.UNA =< SEG.ACK =< SND.NXT */
393 return (seq_leq (tc0->snd_una, vnet_buffer (tb0)->tcp.ack_number)
394 && seq_leq (vnet_buffer (tb0)->tcp.ack_number, tc0->snd_nxt));
395}
396
397/**
398 * Compute smoothed RTT as per VJ's '88 SIGCOMM and RFC6298
399 *
400 * Note that although the original article, srtt and rttvar are scaled
401 * to minimize round-off errors, here we don't. Instead, we rely on
402 * better precision time measurements.
403 *
404 * TODO support us rtt resolution
405 */
406static void
407tcp_estimate_rtt (tcp_connection_t * tc, u32 mrtt)
408{
Florin Corasf03a59a2017-06-09 21:07:32 -0700409 int err, diff;
Dave Barach68b0fb02017-02-28 15:15:56 -0500410
411 if (tc->srtt != 0)
412 {
413 err = mrtt - tc->srtt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500414
415 /* XXX Drop in RTT results in RTTVAR increase and bigger RTO.
416 * The increase should be bound */
Florin Corasf03a59a2017-06-09 21:07:32 -0700417 tc->srtt = clib_max ((int) tc->srtt + (err >> 3), 1);
418 diff = (clib_abs (err) - (int) tc->rttvar) >> 2;
419 tc->rttvar = clib_max ((int) tc->rttvar + diff, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500420 }
421 else
422 {
423 /* First measurement. */
424 tc->srtt = mrtt;
Florin Coras6792ec02017-03-13 03:49:51 -0700425 tc->rttvar = mrtt >> 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500426 }
427}
428
Florin Coras93992a92017-05-24 18:03:56 -0700429void
430tcp_update_rto (tcp_connection_t * tc)
431{
432 tc->rto = clib_min (tc->srtt + (tc->rttvar << 2), TCP_RTO_MAX);
Florin Corasf03a59a2017-06-09 21:07:32 -0700433 tc->rto = clib_max (tc->rto, TCP_RTO_MIN);
Florin Coras93992a92017-05-24 18:03:56 -0700434}
435
Florin Corasf1762d62017-09-24 19:43:08 -0400436/**
437 * Update RTT estimate and RTO timer
Dave Barach68b0fb02017-02-28 15:15:56 -0500438 *
439 * Measure RTT: We have two sources of RTT measurements: TSOPT and ACK
440 * timing. Middle boxes are known to fiddle with TCP options so we
441 * should give higher priority to ACK timing.
442 *
Florin Corasf1762d62017-09-24 19:43:08 -0400443 * This should be called only if previously sent bytes have been acked.
444 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500445 * return 1 if valid rtt 0 otherwise
446 */
447static int
448tcp_update_rtt (tcp_connection_t * tc, u32 ack)
449{
450 u32 mrtt = 0;
451
452 /* Karn's rule, part 1. Don't use retransmitted segments to estimate
453 * RTT because they're ambiguous. */
Florin Corasf1762d62017-09-24 19:43:08 -0400454 if (tcp_in_cong_recovery (tc) || tc->sack_sb.sacked_bytes)
455 goto done;
456
457 if (tc->rtt_ts && seq_geq (ack, tc->rtt_seq))
Dave Barach68b0fb02017-02-28 15:15:56 -0500458 {
459 mrtt = tcp_time_now () - tc->rtt_ts;
Dave Barach68b0fb02017-02-28 15:15:56 -0500460 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500461 /* As per RFC7323 TSecr can be used for RTTM only if the segment advances
462 * snd_una, i.e., the left side of the send window:
Florin Corasf1762d62017-09-24 19:43:08 -0400463 * seq_lt (tc->snd_una, ack). This is a condition for calling update_rtt */
464 else if (tcp_opts_tstamp (&tc->rcv_opts) && tc->rcv_opts.tsecr)
Dave Barach68b0fb02017-02-28 15:15:56 -0500465 {
Florin Coras93992a92017-05-24 18:03:56 -0700466 mrtt = tcp_time_now () - tc->rcv_opts.tsecr;
Dave Barach68b0fb02017-02-28 15:15:56 -0500467 }
468
Florin Corasf1762d62017-09-24 19:43:08 -0400469 /* Ignore dubious measurements */
470 if (mrtt == 0 || mrtt > TCP_RTT_MAX)
471 goto done;
472
473 tcp_estimate_rtt (tc, mrtt);
474
475done:
476
Florin Coras3af90fc2017-05-03 21:09:42 -0700477 /* Allow measuring of a new RTT */
478 tc->rtt_ts = 0;
479
Florin Corasf1762d62017-09-24 19:43:08 -0400480 /* If we got here something must've been ACKed so make sure boff is 0,
481 * even if mrrt is not valid since we update the rto lower */
482 tc->rto_boff = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700483 tcp_update_rto (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500484
Florin Coras3af90fc2017-05-03 21:09:42 -0700485 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500486}
487
488/**
489 * Dequeue bytes that have been acked and while at it update RTT estimates.
490 */
491static void
492tcp_dequeue_acked (tcp_connection_t * tc, u32 ack)
493{
Florin Coras93992a92017-05-24 18:03:56 -0700494 /* Dequeue the newly ACKed add SACKed bytes */
495 stream_session_dequeue_drop (&tc->connection,
496 tc->bytes_acked + tc->sack_sb.snd_una_adv);
497
498 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
Dave Barach68b0fb02017-02-28 15:15:56 -0500499
500 /* Update rtt and rto */
Florin Coras3e350af2017-03-30 02:54:28 -0700501 tcp_update_rtt (tc, ack);
Florin Coras93992a92017-05-24 18:03:56 -0700502
503 /* If everything has been acked, stop retransmit timer
504 * otherwise update. */
505 tcp_retransmit_timer_update (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500506}
507
Florin Coras6792ec02017-03-13 03:49:51 -0700508/**
Florin Coras93992a92017-05-24 18:03:56 -0700509 * Check if duplicate ack as per RFC5681 Sec. 2
510 */
511static u8
512tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd,
513 u32 prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500514{
Florin Coras93992a92017-05-24 18:03:56 -0700515 return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500516 && seq_gt (tc->snd_una_max, tc->snd_una)
517 && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
Florin Coras93992a92017-05-24 18:03:56 -0700518 && (prev_snd_wnd == tc->snd_wnd));
519}
520
521/**
522 * Checks if ack is a congestion control event.
523 */
524static u8
525tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b,
526 u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
527{
528 /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
529 * defined to be 'duplicate' */
530 *is_dack = tc->sack_sb.last_sacked_bytes
531 || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
532
Dave Barach2c25a622017-06-26 11:35:07 -0400533 return ((*is_dack || tcp_in_cong_recovery (tc)) && !tcp_is_lost_fin (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -0500534}
535
536void
537scoreboard_remove_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
538{
539 sack_scoreboard_hole_t *next, *prev;
540
541 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
542 {
543 next = pool_elt_at_index (sb->holes, hole->next);
544 next->prev = hole->prev;
545 }
Florin Coras93992a92017-05-24 18:03:56 -0700546 else
547 {
548 sb->tail = hole->prev;
549 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500550
551 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
552 {
553 prev = pool_elt_at_index (sb->holes, hole->prev);
554 prev->next = hole->next;
555 }
556 else
557 {
558 sb->head = hole->next;
559 }
560
Florin Coras93992a92017-05-24 18:03:56 -0700561 if (scoreboard_hole_index (sb, hole) == sb->cur_rxt_hole)
562 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
563
Florin Coras3eb50622017-07-13 01:24:57 -0400564 /* Poison the entry */
565 if (CLIB_DEBUG > 0)
566 memset (hole, 0xfe, sizeof (*hole));
567
Dave Barach68b0fb02017-02-28 15:15:56 -0500568 pool_put (sb->holes, hole);
569}
570
571sack_scoreboard_hole_t *
Florin Coras6792ec02017-03-13 03:49:51 -0700572scoreboard_insert_hole (sack_scoreboard_t * sb, u32 prev_index,
Dave Barach68b0fb02017-02-28 15:15:56 -0500573 u32 start, u32 end)
574{
Florin Coras6792ec02017-03-13 03:49:51 -0700575 sack_scoreboard_hole_t *hole, *next, *prev;
Dave Barach68b0fb02017-02-28 15:15:56 -0500576 u32 hole_index;
577
578 pool_get (sb->holes, hole);
579 memset (hole, 0, sizeof (*hole));
580
581 hole->start = start;
582 hole->end = end;
Florin Coras3eb50622017-07-13 01:24:57 -0400583 hole_index = scoreboard_hole_index (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500584
Florin Coras6792ec02017-03-13 03:49:51 -0700585 prev = scoreboard_get_hole (sb, prev_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500586 if (prev)
587 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700588 hole->prev = prev_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500589 hole->next = prev->next;
590
591 if ((next = scoreboard_next_hole (sb, hole)))
592 next->prev = hole_index;
Florin Corasf03a59a2017-06-09 21:07:32 -0700593 else
594 sb->tail = hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500595
596 prev->next = hole_index;
597 }
598 else
599 {
600 sb->head = hole_index;
601 hole->prev = TCP_INVALID_SACK_HOLE_INDEX;
602 hole->next = TCP_INVALID_SACK_HOLE_INDEX;
603 }
604
605 return hole;
606}
607
Florin Coras6792ec02017-03-13 03:49:51 -0700608void
Florin Corasf03a59a2017-06-09 21:07:32 -0700609scoreboard_update_bytes (tcp_connection_t * tc, sack_scoreboard_t * sb)
Florin Coras93992a92017-05-24 18:03:56 -0700610{
611 sack_scoreboard_hole_t *hole, *prev;
612 u32 bytes = 0, blks = 0;
613
614 sb->lost_bytes = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700615 sb->sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700616 hole = scoreboard_last_hole (sb);
617 if (!hole)
618 return;
619
620 if (seq_gt (sb->high_sacked, hole->end))
621 {
622 bytes = sb->high_sacked - hole->end;
623 blks = 1;
624 }
625
626 while ((prev = scoreboard_prev_hole (sb, hole))
627 && (bytes < (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
628 && blks < TCP_DUPACK_THRESHOLD))
629 {
630 bytes += hole->start - prev->end;
631 blks++;
632 hole = prev;
633 }
634
Florin Coras93992a92017-05-24 18:03:56 -0700635 while (hole)
636 {
637 sb->lost_bytes += scoreboard_hole_bytes (hole);
638 hole->is_lost = 1;
Florin Corasf03a59a2017-06-09 21:07:32 -0700639 prev = hole;
Florin Coras93992a92017-05-24 18:03:56 -0700640 hole = scoreboard_prev_hole (sb, hole);
Florin Corasf03a59a2017-06-09 21:07:32 -0700641 if (hole)
642 bytes += prev->start - hole->end;
Florin Coras93992a92017-05-24 18:03:56 -0700643 }
Florin Corasf03a59a2017-06-09 21:07:32 -0700644 sb->sacked_bytes = bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700645}
646
647/**
648 * Figure out the next hole to retransmit
649 *
650 * Follows logic proposed in RFC6675 Sec. 4, NextSeg()
651 */
652sack_scoreboard_hole_t *
653scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
654 sack_scoreboard_hole_t * start,
655 u8 have_sent_1_smss,
656 u8 * can_rescue, u8 * snd_limited)
657{
658 sack_scoreboard_hole_t *hole = 0;
659
660 hole = start ? start : scoreboard_first_hole (sb);
661 while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost)
662 hole = scoreboard_next_hole (sb, hole);
663
664 /* Nothing, return */
665 if (!hole)
666 {
667 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
668 return 0;
669 }
670
671 /* Rule (1): if higher than rxt, less than high_sacked and lost */
672 if (hole->is_lost && seq_lt (hole->start, sb->high_sacked))
673 {
674 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
675 }
676 else
677 {
678 /* Rule (2): output takes care of transmitting new data */
679 if (!have_sent_1_smss)
680 {
681 hole = 0;
682 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
683 }
684 /* Rule (3): if hole not lost */
685 else if (seq_lt (hole->start, sb->high_sacked))
686 {
687 *snd_limited = 1;
688 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
689 }
690 /* Rule (4): if hole beyond high_sacked */
691 else
692 {
693 ASSERT (seq_geq (hole->start, sb->high_sacked));
694 *snd_limited = 1;
695 *can_rescue = 1;
696 /* HighRxt MUST NOT be updated */
697 return 0;
698 }
699 }
700
701 if (hole && seq_lt (sb->high_rxt, hole->start))
702 sb->high_rxt = hole->start;
703
704 return hole;
705}
706
707void
Florin Coras3eb50622017-07-13 01:24:57 -0400708scoreboard_init_high_rxt (sack_scoreboard_t * sb, u32 seq)
Florin Coras93992a92017-05-24 18:03:56 -0700709{
710 sack_scoreboard_hole_t *hole;
711 hole = scoreboard_first_hole (sb);
Florin Coras3eb50622017-07-13 01:24:57 -0400712 if (hole)
713 {
714 seq = seq_gt (seq, hole->start) ? seq : hole->start;
715 sb->cur_rxt_hole = sb->head;
716 }
717 sb->high_rxt = seq;
718}
719
720/**
721 * Test that scoreboard is sane after recovery
722 *
723 * Returns 1 if scoreboard is empty or if first hole beyond
724 * snd_una.
725 */
726u8
727tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc)
728{
729 sack_scoreboard_hole_t *hole;
730 hole = scoreboard_first_hole (&tc->sack_sb);
731 return (!hole || seq_geq (hole->start, tc->snd_una));
Florin Coras93992a92017-05-24 18:03:56 -0700732}
733
734void
Dave Barach68b0fb02017-02-28 15:15:56 -0500735tcp_rcv_sacks (tcp_connection_t * tc, u32 ack)
736{
737 sack_scoreboard_t *sb = &tc->sack_sb;
738 sack_block_t *blk, tmp;
Florin Corasf03a59a2017-06-09 21:07:32 -0700739 sack_scoreboard_hole_t *hole, *next_hole, *last_hole;
Florin Coras93992a92017-05-24 18:03:56 -0700740 u32 blk_index = 0, old_sacked_bytes, hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500741 int i, j;
742
Florin Coras6792ec02017-03-13 03:49:51 -0700743 sb->last_sacked_bytes = 0;
744 sb->snd_una_adv = 0;
745 old_sacked_bytes = sb->sacked_bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700746 sb->last_bytes_delivered = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700747
Florin Coras93992a92017-05-24 18:03:56 -0700748 if (!tcp_opts_sack (&tc->rcv_opts)
749 && sb->head == TCP_INVALID_SACK_HOLE_INDEX)
Dave Barach68b0fb02017-02-28 15:15:56 -0500750 return;
751
752 /* Remove invalid blocks */
Florin Coras93992a92017-05-24 18:03:56 -0700753 blk = tc->rcv_opts.sacks;
754 while (blk < vec_end (tc->rcv_opts.sacks))
Florin Coras6792ec02017-03-13 03:49:51 -0700755 {
756 if (seq_lt (blk->start, blk->end)
757 && seq_gt (blk->start, tc->snd_una)
Florin Coras3eb50622017-07-13 01:24:57 -0400758 && seq_gt (blk->start, ack) && seq_leq (blk->end, tc->snd_una_max))
Florin Coras6792ec02017-03-13 03:49:51 -0700759 {
760 blk++;
761 continue;
762 }
Florin Coras93992a92017-05-24 18:03:56 -0700763 vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks);
Florin Coras6792ec02017-03-13 03:49:51 -0700764 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500765
766 /* Add block for cumulative ack */
767 if (seq_gt (ack, tc->snd_una))
768 {
769 tmp.start = tc->snd_una;
770 tmp.end = ack;
Florin Coras93992a92017-05-24 18:03:56 -0700771 vec_add1 (tc->rcv_opts.sacks, tmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500772 }
773
Florin Coras93992a92017-05-24 18:03:56 -0700774 if (vec_len (tc->rcv_opts.sacks) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500775 return;
776
Florin Coras3eb50622017-07-13 01:24:57 -0400777 tcp_scoreboard_trace_add (tc, ack);
778
Dave Barach68b0fb02017-02-28 15:15:56 -0500779 /* Make sure blocks are ordered */
Florin Coras93992a92017-05-24 18:03:56 -0700780 for (i = 0; i < vec_len (tc->rcv_opts.sacks); i++)
781 for (j = i + 1; j < vec_len (tc->rcv_opts.sacks); j++)
782 if (seq_lt (tc->rcv_opts.sacks[j].start, tc->rcv_opts.sacks[i].start))
Dave Barach68b0fb02017-02-28 15:15:56 -0500783 {
Florin Coras93992a92017-05-24 18:03:56 -0700784 tmp = tc->rcv_opts.sacks[i];
785 tc->rcv_opts.sacks[i] = tc->rcv_opts.sacks[j];
786 tc->rcv_opts.sacks[j] = tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500787 }
788
Dave Barach68b0fb02017-02-28 15:15:56 -0500789 if (sb->head == TCP_INVALID_SACK_HOLE_INDEX)
790 {
Florin Coras6792ec02017-03-13 03:49:51 -0700791 /* If no holes, insert the first that covers all outstanding bytes */
792 last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
793 tc->snd_una, tc->snd_una_max);
794 sb->tail = scoreboard_hole_index (sb, last_hole);
Florin Coras93992a92017-05-24 18:03:56 -0700795 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
796 sb->high_sacked = tmp.end;
Florin Coras6792ec02017-03-13 03:49:51 -0700797 }
798 else
799 {
800 /* If we have holes but snd_una_max is beyond the last hole, update
801 * last hole end */
Florin Coras93992a92017-05-24 18:03:56 -0700802 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
Florin Coras6792ec02017-03-13 03:49:51 -0700803 last_hole = scoreboard_last_hole (sb);
Dave Barach2c25a622017-06-26 11:35:07 -0400804 if (seq_gt (tc->snd_una_max, last_hole->end))
805 {
806 if (seq_geq (last_hole->start, sb->high_sacked))
807 {
808 last_hole->end = tc->snd_una_max;
809 }
810 /* New hole after high sacked block */
811 else if (seq_lt (sb->high_sacked, tc->snd_una_max))
812 {
813 scoreboard_insert_hole (sb, sb->tail, sb->high_sacked,
814 tc->snd_una_max);
815 }
816 }
817 /* Keep track of max byte sacked for when the last hole
Florin Corasf03a59a2017-06-09 21:07:32 -0700818 * is acked */
819 if (seq_gt (tmp.end, sb->high_sacked))
820 sb->high_sacked = tmp.end;
Dave Barach68b0fb02017-02-28 15:15:56 -0500821 }
822
823 /* Walk the holes with the SACK blocks */
824 hole = pool_elt_at_index (sb->holes, sb->head);
Florin Coras93992a92017-05-24 18:03:56 -0700825 while (hole && blk_index < vec_len (tc->rcv_opts.sacks))
Dave Barach68b0fb02017-02-28 15:15:56 -0500826 {
Florin Coras93992a92017-05-24 18:03:56 -0700827 blk = &tc->rcv_opts.sacks[blk_index];
Dave Barach68b0fb02017-02-28 15:15:56 -0500828 if (seq_leq (blk->start, hole->start))
829 {
830 /* Block covers hole. Remove hole */
831 if (seq_geq (blk->end, hole->end))
832 {
833 next_hole = scoreboard_next_hole (sb, hole);
834
Florin Corasf03a59a2017-06-09 21:07:32 -0700835 /* Byte accounting: snd_una needs to be advanced */
836 if (blk->end == ack)
Dave Barach68b0fb02017-02-28 15:15:56 -0500837 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700838 if (next_hole)
Florin Coras06d11012017-05-17 14:21:51 -0700839 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700840 if (seq_lt (ack, next_hole->start))
841 sb->snd_una_adv = next_hole->start - ack;
842 sb->last_bytes_delivered +=
843 next_hole->start - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -0700844 }
Florin Coras3eb50622017-07-13 01:24:57 -0400845 else
Florin Coras06d11012017-05-17 14:21:51 -0700846 {
Dave Barach2c25a622017-06-26 11:35:07 -0400847 ASSERT (seq_geq (sb->high_sacked, ack));
Florin Coras93992a92017-05-24 18:03:56 -0700848 sb->snd_una_adv = sb->high_sacked - ack;
Florin Corasf03a59a2017-06-09 21:07:32 -0700849 sb->last_bytes_delivered += sb->high_sacked - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -0700850 }
851 }
852
Dave Barach68b0fb02017-02-28 15:15:56 -0500853 scoreboard_remove_hole (sb, hole);
854 hole = next_hole;
855 }
Florin Coras6792ec02017-03-13 03:49:51 -0700856 /* Partial 'head' overlap */
Dave Barach68b0fb02017-02-28 15:15:56 -0500857 else
858 {
Florin Coras6792ec02017-03-13 03:49:51 -0700859 if (seq_gt (blk->end, hole->start))
860 {
Florin Coras6792ec02017-03-13 03:49:51 -0700861 hole->start = blk->end;
862 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500863 blk_index++;
864 }
865 }
866 else
867 {
868 /* Hole must be split */
Florin Coras6792ec02017-03-13 03:49:51 -0700869 if (seq_lt (blk->end, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -0500870 {
Florin Coras6792ec02017-03-13 03:49:51 -0700871 hole_index = scoreboard_hole_index (sb, hole);
Florin Coras3eb50622017-07-13 01:24:57 -0400872 next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
873 hole->end);
Florin Coras6792ec02017-03-13 03:49:51 -0700874
875 /* Pool might've moved */
876 hole = scoreboard_get_hole (sb, hole_index);
877 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -0500878 blk_index++;
Florin Coras3eb50622017-07-13 01:24:57 -0400879 ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
Dave Barach68b0fb02017-02-28 15:15:56 -0500880 }
Florin Corasf03a59a2017-06-09 21:07:32 -0700881 else if (seq_lt (blk->start, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -0500882 {
Florin Coras6792ec02017-03-13 03:49:51 -0700883 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -0500884 }
Florin Coras93992a92017-05-24 18:03:56 -0700885 hole = scoreboard_next_hole (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500886 }
887 }
Florin Coras6792ec02017-03-13 03:49:51 -0700888
Florin Corasf03a59a2017-06-09 21:07:32 -0700889 scoreboard_update_bytes (tc, sb);
890 sb->last_sacked_bytes = sb->sacked_bytes
891 - (old_sacked_bytes - sb->last_bytes_delivered);
Dave Barach2c25a622017-06-26 11:35:07 -0400892 ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes);
Florin Corasf03a59a2017-06-09 21:07:32 -0700893 ASSERT (sb->sacked_bytes == 0
894 || sb->sacked_bytes < tc->snd_una_max - seq_max (tc->snd_una, ack));
895 ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_una_max
896 - seq_max (tc->snd_una, ack));
Dave Barach2c25a622017-06-26 11:35:07 -0400897 ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
898 || sb->holes[sb->head].start == ack + sb->snd_una_adv);
Dave Barach68b0fb02017-02-28 15:15:56 -0500899}
900
Florin Coras93992a92017-05-24 18:03:56 -0700901/**
902 * Try to update snd_wnd based on feedback received from peer.
Dave Barach68b0fb02017-02-28 15:15:56 -0500903 *
Florin Coras93992a92017-05-24 18:03:56 -0700904 * If successful, and new window is 'effectively' 0, activate persist
905 * timer.
906 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500907static void
908tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
909{
Florin Coras93992a92017-05-24 18:03:56 -0700910 /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
911 * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
Florin Coras6792ec02017-03-13 03:49:51 -0700912 if (seq_lt (tc->snd_wl1, seq)
913 || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500914 {
915 tc->snd_wnd = snd_wnd;
916 tc->snd_wl1 = seq;
917 tc->snd_wl2 = ack;
Florin Coras6792ec02017-03-13 03:49:51 -0700918 TCP_EVT_DBG (TCP_EVT_SND_WND, tc);
Florin Coras3e350af2017-03-30 02:54:28 -0700919
Florin Corasbb292f42017-05-19 09:49:19 -0700920 if (tc->snd_wnd < tc->snd_mss)
921 {
Florin Coras93992a92017-05-24 18:03:56 -0700922 /* Set persist timer if not set and we just got 0 wnd */
923 if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
924 && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
Florin Corasbb292f42017-05-19 09:49:19 -0700925 tcp_persist_timer_set (tc);
926 }
Florin Coras3e350af2017-03-30 02:54:28 -0700927 else
Florin Coras93992a92017-05-24 18:03:56 -0700928 {
929 tcp_persist_timer_reset (tc);
930 if (!tcp_in_recovery (tc) && tc->rto_boff > 0)
931 {
932 tc->rto_boff = 0;
933 tcp_update_rto (tc);
934 }
935 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500936 }
937}
938
Florin Coras6792ec02017-03-13 03:49:51 -0700939void
Florin Coras93992a92017-05-24 18:03:56 -0700940tcp_cc_init_congestion (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500941{
Florin Coras93992a92017-05-24 18:03:56 -0700942 tcp_fastrecovery_on (tc);
943 tc->snd_congestion = tc->snd_una_max;
Dave Barach68b0fb02017-02-28 15:15:56 -0500944 tc->cc_algo->congestion (tc);
Florin Coras6792ec02017-03-13 03:49:51 -0700945 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 4);
Dave Barach68b0fb02017-02-28 15:15:56 -0500946}
947
Florin Coras93992a92017-05-24 18:03:56 -0700948static void
949tcp_cc_recovery_exit (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500950{
Florin Coras93992a92017-05-24 18:03:56 -0700951 /* Deflate rto */
Florin Coras93992a92017-05-24 18:03:56 -0700952 tc->rto_boff = 0;
Florin Corasf1762d62017-09-24 19:43:08 -0400953 tcp_update_rto (tc);
Florin Coras93992a92017-05-24 18:03:56 -0700954 tc->snd_rxt_ts = 0;
Florin Coras84275e92017-09-26 12:30:40 -0400955 tc->snd_nxt = tc->snd_una_max;
Florin Coras93992a92017-05-24 18:03:56 -0700956 tcp_recovery_off (tc);
Florin Corasf1762d62017-09-24 19:43:08 -0400957 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Florin Coras93992a92017-05-24 18:03:56 -0700958}
Florin Coras3e350af2017-03-30 02:54:28 -0700959
Florin Coras93992a92017-05-24 18:03:56 -0700960void
961tcp_cc_fastrecovery_exit (tcp_connection_t * tc)
962{
Florin Coras6792ec02017-03-13 03:49:51 -0700963 tc->cc_algo->recovered (tc);
Florin Coras93992a92017-05-24 18:03:56 -0700964 tc->snd_rxt_bytes = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700965 tc->rcv_dupacks = 0;
Florin Coras84275e92017-09-26 12:30:40 -0400966 tc->snd_nxt = tc->snd_una_max;
Florin Coras93992a92017-05-24 18:03:56 -0700967 tcp_fastrecovery_off (tc);
968 tcp_fastrecovery_1_smss_off (tc);
Florin Corasf1762d62017-09-24 19:43:08 -0400969 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Dave Barach68b0fb02017-02-28 15:15:56 -0500970}
971
972static void
Florin Coras93992a92017-05-24 18:03:56 -0700973tcp_cc_congestion_undo (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500974{
Florin Coras93992a92017-05-24 18:03:56 -0700975 tc->cwnd = tc->prev_cwnd;
976 tc->ssthresh = tc->prev_ssthresh;
977 tc->snd_nxt = tc->snd_una_max;
978 tc->rcv_dupacks = 0;
979 if (tcp_in_recovery (tc))
980 tcp_cc_recovery_exit (tc);
981 ASSERT (tc->rto_boff == 0);
Florin Corasf1762d62017-09-24 19:43:08 -0400982 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 5);
Florin Coras93992a92017-05-24 18:03:56 -0700983 /* TODO extend for fastrecovery */
984}
Dave Barach68b0fb02017-02-28 15:15:56 -0500985
Florin Coras93992a92017-05-24 18:03:56 -0700986static u8
987tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
988{
Florin Corasf1762d62017-09-24 19:43:08 -0400989 return (tcp_in_recovery (tc) && tc->rto_boff == 1
Dave Barach2c25a622017-06-26 11:35:07 -0400990 && tc->snd_rxt_ts
Florin Coras93992a92017-05-24 18:03:56 -0700991 && tcp_opts_tstamp (&tc->rcv_opts)
992 && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
993}
994
995int
996tcp_cc_recover (tcp_connection_t * tc)
997{
998 ASSERT (tcp_in_cong_recovery (tc));
999 if (tcp_cc_is_spurious_retransmit (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001000 {
Florin Coras93992a92017-05-24 18:03:56 -07001001 tcp_cc_congestion_undo (tc);
1002 return 1;
1003 }
1004
1005 if (tcp_in_recovery (tc))
1006 tcp_cc_recovery_exit (tc);
1007 else if (tcp_in_fastrecovery (tc))
1008 tcp_cc_fastrecovery_exit (tc);
1009
1010 ASSERT (tc->rto_boff == 0);
1011 ASSERT (!tcp_in_cong_recovery (tc));
Florin Coras3eb50622017-07-13 01:24:57 -04001012 ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001013 return 0;
1014}
1015
1016static void
1017tcp_cc_update (tcp_connection_t * tc, vlib_buffer_t * b)
1018{
Florin Coras3eb50622017-07-13 01:24:57 -04001019 ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001020
1021 /* Congestion avoidance */
1022 tc->cc_algo->rcv_ack (tc);
1023 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1024
1025 /* If a cumulative ack, make sure dupacks is 0 */
1026 tc->rcv_dupacks = 0;
1027
1028 /* When dupacks hits the threshold we only enter fast retransmit if
1029 * cumulative ack covers more than snd_congestion. Should snd_una
1030 * wrap this test may fail under otherwise valid circumstances.
1031 * Therefore, proactively update snd_congestion when wrap detected. */
1032 if (PREDICT_FALSE
1033 (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1034 && seq_gt (tc->snd_congestion, tc->snd_una)))
1035 tc->snd_congestion = tc->snd_una - 1;
1036}
1037
1038static u8
1039tcp_should_fastrecover_sack (tcp_connection_t * tc)
1040{
1041 return (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss < tc->sack_sb.sacked_bytes;
1042}
1043
1044static u8
1045tcp_should_fastrecover (tcp_connection_t * tc)
1046{
1047 return (tc->rcv_dupacks == TCP_DUPACK_THRESHOLD
1048 || tcp_should_fastrecover_sack (tc));
1049}
1050
Florin Corasf03a59a2017-06-09 21:07:32 -07001051/**
1052 * One function to rule them all ... and in the darkness bind them
1053 */
Florin Coras93992a92017-05-24 18:03:56 -07001054static void
1055tcp_cc_handle_event (tcp_connection_t * tc, u32 is_dack)
1056{
Florin Corasf03a59a2017-06-09 21:07:32 -07001057 u32 rxt_delivered;
1058
Florin Coras93992a92017-05-24 18:03:56 -07001059 /*
1060 * Duplicate ACK. Check if we should enter fast recovery, or if already in
1061 * it account for the bytes that left the network.
1062 */
1063 if (is_dack)
1064 {
1065 ASSERT (tc->snd_una != tc->snd_una_max
1066 || tc->sack_sb.last_sacked_bytes);
Dave Barach2c25a622017-06-26 11:35:07 -04001067
Florin Coras93992a92017-05-24 18:03:56 -07001068 tc->rcv_dupacks++;
1069
1070 if (tc->rcv_dupacks > TCP_DUPACK_THRESHOLD && !tc->bytes_acked)
Dave Barach68b0fb02017-02-28 15:15:56 -05001071 {
Florin Coras93992a92017-05-24 18:03:56 -07001072 ASSERT (tcp_in_fastrecovery (tc));
1073 /* Pure duplicate ack. If some data got acked, it's handled lower */
1074 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1075 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001076 }
Florin Coras93992a92017-05-24 18:03:56 -07001077 else if (tcp_should_fastrecover (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001078 {
Florin Coras93992a92017-05-24 18:03:56 -07001079 /* Things are already bad */
1080 if (tcp_in_cong_recovery (tc))
Florin Coras6792ec02017-03-13 03:49:51 -07001081 {
Florin Coras93992a92017-05-24 18:03:56 -07001082 tc->rcv_dupacks = 0;
1083 goto partial_ack_test;
1084 }
1085
Dave Barach2c25a622017-06-26 11:35:07 -04001086 /* If of of the two conditions lower hold, reset dupacks because
1087 * we're probably after timeout (RFC6582 heuristics).
1088 * If Cumulative ack does not cover more than congestion threshold,
1089 * and:
1090 * 1) The following doesn't hold: The congestion window is greater
1091 * than SMSS bytes and the difference between highest_ack
1092 * and prev_highest_ack is at most 4*SMSS bytes
1093 * 2) Echoed timestamp in the last non-dup ack does not equal the
1094 * stored timestamp
Florin Coras93992a92017-05-24 18:03:56 -07001095 */
Dave Barach2c25a622017-06-26 11:35:07 -04001096 if (seq_leq (tc->snd_una, tc->snd_congestion)
1097 && ((!(tc->cwnd > tc->snd_mss
1098 && tc->bytes_acked <= 4 * tc->snd_mss))
1099 || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
Florin Coras93992a92017-05-24 18:03:56 -07001100 {
1101 tc->rcv_dupacks = 0;
1102 return;
1103 }
1104
1105 tcp_cc_init_congestion (tc);
1106 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1107
1108 /* The first segment MUST be retransmitted */
1109 tcp_retransmit_first_unacked (tc);
1110
1111 /* Post retransmit update cwnd to ssthresh and account for the
1112 * three segments that have left the network and should've been
1113 * buffered at the receiver XXX */
1114 tc->cwnd = tc->ssthresh + tc->rcv_dupacks * tc->snd_mss;
Dave Barach2c25a622017-06-26 11:35:07 -04001115 ASSERT (tc->cwnd >= tc->snd_mss);
Florin Coras93992a92017-05-24 18:03:56 -07001116
1117 /* If cwnd allows, send more data */
Florin Coras3eb50622017-07-13 01:24:57 -04001118 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras93992a92017-05-24 18:03:56 -07001119 {
Florin Coras3eb50622017-07-13 01:24:57 -04001120 scoreboard_init_high_rxt (&tc->sack_sb,
1121 tc->snd_una + tc->snd_mss);
Florin Coras93992a92017-05-24 18:03:56 -07001122 tcp_fast_retransmit_sack (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001123 }
1124 else
1125 {
Florin Coras93992a92017-05-24 18:03:56 -07001126 tcp_fast_retransmit_no_sack (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001127 }
Florin Coras93992a92017-05-24 18:03:56 -07001128
1129 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001130 }
Florin Coras93992a92017-05-24 18:03:56 -07001131 else if (!tc->bytes_acked
1132 || (tc->bytes_acked && !tcp_in_cong_recovery (tc)))
1133 {
1134 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1135 return;
1136 }
1137 else
1138 goto partial_ack;
1139 }
1140
1141partial_ack_test:
1142
1143 if (!tc->bytes_acked)
1144 return;
1145
1146partial_ack:
1147 /*
1148 * Legitimate ACK. 1) See if we can exit recovery
1149 */
1150 /* XXX limit this only to first partial ack? */
1151 tcp_retransmit_timer_update (tc);
1152
1153 if (seq_geq (tc->snd_una, tc->snd_congestion))
1154 {
1155 /* If spurious return, we've already updated everything */
1156 if (tcp_cc_recover (tc))
Florin Corasf03a59a2017-06-09 21:07:32 -07001157 {
1158 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1159 return;
1160 }
Florin Coras93992a92017-05-24 18:03:56 -07001161
1162 tc->snd_nxt = tc->snd_una_max;
1163
1164 /* Treat as congestion avoidance ack */
1165 tc->cc_algo->rcv_ack (tc);
1166 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1167 return;
1168 }
1169
1170 /*
1171 * Legitimate ACK. 2) If PARTIAL ACK try to retransmit
1172 */
1173 TCP_EVT_DBG (TCP_EVT_CC_PACK, tc);
1174
1175 /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
1176 * reset dupacks to 0 */
1177 tc->rcv_dupacks = 0;
1178
1179 tcp_retransmit_first_unacked (tc);
1180
1181 /* Post RTO timeout don't try anything fancy */
1182 if (tcp_in_recovery (tc))
1183 return;
1184
1185 /* Remove retransmitted bytes that have been delivered */
Florin Corasf03a59a2017-06-09 21:07:32 -07001186 ASSERT (tc->bytes_acked + tc->sack_sb.snd_una_adv
Florin Corasb2215d62017-08-01 16:56:58 -07001187 >= tc->sack_sb.last_bytes_delivered
1188 || (tc->flags & TCP_CONN_FINSNT));
Florin Coras3eb50622017-07-13 01:24:57 -04001189
1190 if (seq_lt (tc->snd_una, tc->sack_sb.high_rxt))
Florin Coras93992a92017-05-24 18:03:56 -07001191 {
1192 /* If we have sacks and we haven't gotten an ack beyond high_rxt,
1193 * remove sacked bytes delivered */
Florin Coras3eb50622017-07-13 01:24:57 -04001194 rxt_delivered = tc->bytes_acked + tc->sack_sb.snd_una_adv
1195 - tc->sack_sb.last_bytes_delivered;
Florin Corasf03a59a2017-06-09 21:07:32 -07001196 ASSERT (tc->snd_rxt_bytes >= rxt_delivered);
1197 tc->snd_rxt_bytes -= rxt_delivered;
Dave Barach68b0fb02017-02-28 15:15:56 -05001198 }
1199 else
1200 {
Florin Coras93992a92017-05-24 18:03:56 -07001201 /* Either all retransmitted holes have been acked, or we're
1202 * "in the blind" and retransmitting segment by segment */
1203 tc->snd_rxt_bytes = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001204 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001205
Florin Coras93992a92017-05-24 18:03:56 -07001206 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_PARTIALACK);
Dave Barach68b0fb02017-02-28 15:15:56 -05001207
Florin Coras93992a92017-05-24 18:03:56 -07001208 /*
1209 * Since this was a partial ack, try to retransmit some more data
1210 */
1211 tcp_fast_retransmit (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001212}
1213
1214void
1215tcp_cc_init (tcp_connection_t * tc)
1216{
1217 tc->cc_algo = tcp_cc_algo_get (TCP_CC_NEWRENO);
1218 tc->cc_algo->init (tc);
1219}
1220
Florin Coras93992a92017-05-24 18:03:56 -07001221/**
1222 * Process incoming ACK
1223 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001224static int
1225tcp_rcv_ack (tcp_connection_t * tc, vlib_buffer_t * b,
1226 tcp_header_t * th, u32 * next, u32 * error)
1227{
Florin Coras93992a92017-05-24 18:03:56 -07001228 u32 prev_snd_wnd, prev_snd_una;
1229 u8 is_dack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001230
Florin Corasf03a59a2017-06-09 21:07:32 -07001231 TCP_EVT_DBG (TCP_EVT_CC_STAT, tc);
1232
Florin Coras6792ec02017-03-13 03:49:51 -07001233 /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
Florin Coras93992a92017-05-24 18:03:56 -07001234 if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001235 {
Florin Coras6792ec02017-03-13 03:49:51 -07001236 /* If we have outstanding data and this is within the window, accept it,
1237 * probably retransmit has timed out. Otherwise ACK segment and then
1238 * drop it */
1239 if (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max))
1240 {
1241 tcp_make_ack (tc, b);
1242 *next = tcp_next_output (tc->c_is_ip4);
1243 *error = TCP_ERROR_ACK_INVALID;
1244 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 0,
1245 vnet_buffer (b)->tcp.ack_number);
1246 return -1;
1247 }
1248
Florin Coras6792ec02017-03-13 03:49:51 -07001249 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 2,
1250 vnet_buffer (b)->tcp.ack_number);
Florin Coras3e350af2017-03-30 02:54:28 -07001251
1252 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
1253 *error = TCP_ERROR_ACK_FUTURE;
Dave Barach68b0fb02017-02-28 15:15:56 -05001254 }
1255
Florin Coras6792ec02017-03-13 03:49:51 -07001256 /* If old ACK, probably it's an old dupack */
Florin Coras93992a92017-05-24 18:03:56 -07001257 if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001258 {
1259 *error = TCP_ERROR_ACK_OLD;
Florin Coras6792ec02017-03-13 03:49:51 -07001260 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 1,
1261 vnet_buffer (b)->tcp.ack_number);
1262 if (tcp_in_fastrecovery (tc) && tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
1263 {
1264 TCP_EVT_DBG (TCP_EVT_DUPACK_RCVD, tc);
Florin Coras93992a92017-05-24 18:03:56 -07001265 tcp_cc_handle_event (tc, 1);
Florin Coras6792ec02017-03-13 03:49:51 -07001266 }
Florin Corasc28764f2017-04-26 00:08:42 -07001267 /* Don't drop yet */
1268 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001269 }
1270
Florin Coras93992a92017-05-24 18:03:56 -07001271 /*
1272 * Looks okay, process feedback
1273 */
1274
Florin Coras93992a92017-05-24 18:03:56 -07001275 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001276 tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1277
Florin Coras93992a92017-05-24 18:03:56 -07001278 prev_snd_wnd = tc->snd_wnd;
1279 prev_snd_una = tc->snd_una;
1280 tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1281 vnet_buffer (b)->tcp.ack_number,
1282 clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1283 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
1284 tc->snd_una = vnet_buffer (b)->tcp.ack_number + tc->sack_sb.snd_una_adv;
1285 tcp_validate_txf_size (tc, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001286
Florin Coras93992a92017-05-24 18:03:56 -07001287 if (tc->bytes_acked)
1288 tcp_dequeue_acked (tc, vnet_buffer (b)->tcp.ack_number);
1289
Florin Coras6534b7a2017-07-18 05:38:03 -04001290 TCP_EVT_DBG (TCP_EVT_ACK_RCVD, tc);
1291
Florin Coras93992a92017-05-24 18:03:56 -07001292 /*
1293 * Check if we have congestion event
1294 */
1295
1296 if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001297 {
Florin Coras93992a92017-05-24 18:03:56 -07001298 tcp_cc_handle_event (tc, is_dack);
Florin Corasb2215d62017-08-01 16:56:58 -07001299 if (!tcp_in_cong_recovery (tc))
1300 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001301 *error = TCP_ERROR_ACK_DUP;
Florin Coras93992a92017-05-24 18:03:56 -07001302 TCP_EVT_DBG (TCP_EVT_DUPACK_RCVD, tc, 1);
1303 return vnet_buffer (b)->tcp.data_len ? 0 : -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001304 }
1305
Florin Coras6792ec02017-03-13 03:49:51 -07001306 /*
Florin Coras93992a92017-05-24 18:03:56 -07001307 * Update congestion control (slow start/congestion avoidance)
Florin Coras6792ec02017-03-13 03:49:51 -07001308 */
Florin Coras93992a92017-05-24 18:03:56 -07001309 tcp_cc_update (tc, b);
Florin Coras00cd22d2018-04-18 13:20:18 -07001310 *error = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001311 return 0;
1312}
1313
Florin Coras3eb50622017-07-13 01:24:57 -04001314static u8
1315tcp_sack_vector_is_sane (sack_block_t * sacks)
1316{
1317 int i;
1318 for (i = 1; i < vec_len (sacks); i++)
1319 {
1320 if (sacks[i - 1].end == sacks[i].start)
1321 return 0;
1322 }
1323 return 1;
1324}
1325
Dave Barach68b0fb02017-02-28 15:15:56 -05001326/**
1327 * Build SACK list as per RFC2018.
1328 *
1329 * Makes sure the first block contains the segment that generated the current
1330 * ACK and the following ones are the ones most recently reported in SACK
1331 * blocks.
1332 *
1333 * @param tc TCP connection for which the SACK list is updated
1334 * @param start Start sequence number of the newest SACK block
1335 * @param end End sequence of the newest SACK block
1336 */
Florin Coras45d34962017-04-25 00:05:27 -07001337void
Dave Barach68b0fb02017-02-28 15:15:56 -05001338tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1339{
Florin Coras45d34962017-04-25 00:05:27 -07001340 sack_block_t *new_list = 0, *block = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001341 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001342
1343 /* If the first segment is ooo add it to the list. Last write might've moved
1344 * rcv_nxt over the first segment. */
1345 if (seq_lt (tc->rcv_nxt, start))
1346 {
Florin Coras45d34962017-04-25 00:05:27 -07001347 vec_add2 (new_list, block, 1);
1348 block->start = start;
1349 block->end = end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001350 }
1351
1352 /* Find the blocks still worth keeping. */
1353 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1354 {
Florin Coras45d34962017-04-25 00:05:27 -07001355 /* Discard if rcv_nxt advanced beyond current block */
1356 if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001357 continue;
1358
Florin Coras45d34962017-04-25 00:05:27 -07001359 /* Merge or drop if segment overlapped by the new segment */
1360 if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1361 && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1362 {
1363 if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1364 new_list[0].start = tc->snd_sacks[i].start;
1365 if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1366 new_list[0].end = tc->snd_sacks[i].end;
1367 continue;
1368 }
1369
1370 /* Save to new SACK list if we have space. */
1371 if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
1372 {
1373 vec_add1 (new_list, tc->snd_sacks[i]);
1374 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001375 else
1376 {
1377 clib_warning ("sack discarded");
1378 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001379 }
1380
Florin Coras45d34962017-04-25 00:05:27 -07001381 ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
Florin Coras6792ec02017-03-13 03:49:51 -07001382
Dave Barach68b0fb02017-02-28 15:15:56 -05001383 /* Replace old vector with new one */
1384 vec_free (tc->snd_sacks);
1385 tc->snd_sacks = new_list;
Florin Coras3eb50622017-07-13 01:24:57 -04001386
1387 /* Segments should not 'touch' */
1388 ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
Dave Barach68b0fb02017-02-28 15:15:56 -05001389}
1390
1391/** Enqueue data for delivery to application */
Florin Coras6792ec02017-03-13 03:49:51 -07001392always_inline int
Dave Barach68b0fb02017-02-28 15:15:56 -05001393tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1394 u16 data_len)
1395{
Florin Coras1f152cd2017-08-18 19:28:03 -07001396 int written, error = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001397
Dave Barach2c25a622017-06-26 11:35:07 -04001398 ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001399 ASSERT (data_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001400 written = session_enqueue_stream_connection (&tc->connection, b, 0,
1401 1 /* queue event */ , 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001402
Florin Coras6792ec02017-03-13 03:49:51 -07001403 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 0, data_len, written);
1404
Dave Barach68b0fb02017-02-28 15:15:56 -05001405 /* Update rcv_nxt */
1406 if (PREDICT_TRUE (written == data_len))
1407 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001408 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001409 }
1410 /* If more data written than expected, account for out-of-order bytes. */
1411 else if (written > data_len)
1412 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001413 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001414
1415 /* Send ACK confirming the update */
1416 tc->flags |= TCP_CONN_SNDACK;
Florin Coras6792ec02017-03-13 03:49:51 -07001417 }
1418 else if (written > 0)
1419 {
1420 /* We've written something but FIFO is probably full now */
1421 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001422
Florin Coras6792ec02017-03-13 03:49:51 -07001423 /* Depending on how fast the app is, all remaining buffers in burst will
Florin Coras3e350af2017-03-30 02:54:28 -07001424 * not be enqueued. Inform peer */
1425 tc->flags |= TCP_CONN_SNDACK;
1426
Florin Coras1f152cd2017-08-18 19:28:03 -07001427 error = TCP_ERROR_PARTIALLY_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001428 }
1429 else
1430 {
Florin Coras3e350af2017-03-30 02:54:28 -07001431 tc->flags |= TCP_CONN_SNDACK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001432 return TCP_ERROR_FIFO_FULL;
1433 }
1434
Florin Coras6792ec02017-03-13 03:49:51 -07001435 /* Update SACK list if need be */
Florin Coras93992a92017-05-24 18:03:56 -07001436 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras6792ec02017-03-13 03:49:51 -07001437 {
1438 /* Remove SACK blocks that have been delivered */
1439 tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1440 }
1441
Florin Coras1f152cd2017-08-18 19:28:03 -07001442 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -05001443}
1444
1445/** Enqueue out-of-order data */
Florin Coras6792ec02017-03-13 03:49:51 -07001446always_inline int
Dave Barach68b0fb02017-02-28 15:15:56 -05001447tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1448 u16 data_len)
1449{
1450 stream_session_t *s0;
Florin Coras3eb50622017-07-13 01:24:57 -04001451 int rv, offset;
Florin Coras6792ec02017-03-13 03:49:51 -07001452
Florin Corasf03a59a2017-06-09 21:07:32 -07001453 ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001454 ASSERT (data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001455
Florin Corasf03a59a2017-06-09 21:07:32 -07001456 /* Enqueue out-of-order data with relative offset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07001457 rv = session_enqueue_stream_connection (&tc->connection, b,
1458 vnet_buffer (b)->tcp.seq_number -
1459 tc->rcv_nxt, 0 /* queue event */ ,
1460 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001461
1462 /* Nothing written */
1463 if (rv)
1464 {
1465 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, 0);
1466 return TCP_ERROR_FIFO_FULL;
1467 }
1468
1469 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001470
1471 /* Update SACK list if in use */
Florin Coras93992a92017-05-24 18:03:56 -07001472 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001473 {
1474 ooo_segment_t *newest;
1475 u32 start, end;
1476
Florin Corascea194d2017-10-02 00:18:51 -07001477 s0 = session_get (tc->c_s_index, tc->c_thread_index);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001478
Dave Barach68b0fb02017-02-28 15:15:56 -05001479 /* Get the newest segment from the fifo */
1480 newest = svm_fifo_newest_ooo_segment (s0->server_rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001481 if (newest)
1482 {
Florin Coras3eb50622017-07-13 01:24:57 -04001483 offset = ooo_segment_offset (s0->server_rx_fifo, newest);
1484 ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1485 start = tc->rcv_nxt + offset;
Florin Corasf03a59a2017-06-09 21:07:32 -07001486 end = start + ooo_segment_length (s0->server_rx_fifo, newest);
1487 tcp_update_sack_list (tc, start, end);
Florin Coras3eb50622017-07-13 01:24:57 -04001488 svm_fifo_newest_ooo_segment_reset (s0->server_rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001489 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001490 }
1491
Florin Coras00cd22d2018-04-18 13:20:18 -07001492 return TCP_ERROR_ENQUEUED_OOO;
Dave Barach68b0fb02017-02-28 15:15:56 -05001493}
1494
1495/**
Florin Coras6792ec02017-03-13 03:49:51 -07001496 * Check if ACK could be delayed. If ack can be delayed, it should return
1497 * true for a full frame. If we're always acking return 0.
Dave Barach68b0fb02017-02-28 15:15:56 -05001498 */
1499always_inline int
1500tcp_can_delack (tcp_connection_t * tc)
1501{
Florin Coras6792ec02017-03-13 03:49:51 -07001502 /* Send ack if ... */
1503 if (TCP_ALWAYS_ACK
1504 /* just sent a rcv wnd 0 */
1505 || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0
1506 /* constrained to send ack */
1507 || (tc->flags & TCP_CONN_SNDACK) != 0
1508 /* we're almost out of tx wnd */
Florin Corasf03a59a2017-06-09 21:07:32 -07001509 || tcp_available_snd_space (tc) < 4 * tc->snd_mss)
Florin Coras6792ec02017-03-13 03:49:51 -07001510 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001511
Florin Coras6792ec02017-03-13 03:49:51 -07001512 return 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001513}
1514
1515static int
Florin Corasb2215d62017-08-01 16:56:58 -07001516tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
1517{
Florin Coras1f152cd2017-08-18 19:28:03 -07001518 u32 discard, first = b->current_length;
Florin Corasb2215d62017-08-01 16:56:58 -07001519 vlib_main_t *vm = vlib_get_main ();
1520
Florin Coras1f152cd2017-08-18 19:28:03 -07001521 /* Handle multi-buffer segments */
Florin Corasb2215d62017-08-01 16:56:58 -07001522 if (n_bytes_to_drop > b->current_length)
1523 {
1524 if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1525 return -1;
1526 do
1527 {
1528 discard = clib_min (n_bytes_to_drop, b->current_length);
1529 vlib_buffer_advance (b, discard);
1530 b = vlib_get_buffer (vm, b->next_buffer);
1531 n_bytes_to_drop -= discard;
1532 }
1533 while (n_bytes_to_drop);
Florin Coras1f152cd2017-08-18 19:28:03 -07001534 if (n_bytes_to_drop > first)
1535 b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
Florin Corasb2215d62017-08-01 16:56:58 -07001536 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001537 else
1538 vlib_buffer_advance (b, n_bytes_to_drop);
1539 vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
Florin Corasb2215d62017-08-01 16:56:58 -07001540 return 0;
1541}
1542
Florin Coras00cd22d2018-04-18 13:20:18 -07001543/**
1544 * Receive buffer for connection and handle acks
1545 *
1546 * It handles both in order or out-of-order data.
1547 */
Florin Corasb2215d62017-08-01 16:56:58 -07001548static int
Florin Coras00cd22d2018-04-18 13:20:18 -07001549tcp_segment_rcv (tcp_connection_t * tc, vlib_buffer_t * b, u32 * next0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001550{
Florin Coras00cd22d2018-04-18 13:20:18 -07001551 u32 error, n_bytes_to_drop, n_data_bytes;
Florin Coras6534b7a2017-07-18 05:38:03 -04001552
1553 vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1554 n_data_bytes = vnet_buffer (b)->tcp.data_len;
1555 ASSERT (n_data_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001556
1557 /* Handle out-of-order data */
1558 if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1559 {
Florin Coras6792ec02017-03-13 03:49:51 -07001560 /* Old sequence numbers allowed through because they overlapped
1561 * the rx window */
1562 if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001563 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001564 /* Completely in the past (possible retransmit). Ack
1565 * retransmissions since we may not have any data to send */
Florin Corasf03a59a2017-06-09 21:07:32 -07001566 if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
Florin Coras6534b7a2017-07-18 05:38:03 -04001567 {
Florin Coras6534b7a2017-07-18 05:38:03 -04001568 tcp_make_ack (tc, b);
Florin Coras00cd22d2018-04-18 13:20:18 -07001569 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras6534b7a2017-07-18 05:38:03 -04001570 *next0 = tcp_next_output (tc->c_is_ip4);
1571 goto done;
1572 }
Dave Barach259cdae2017-05-15 16:27:05 -04001573
Florin Coras00cd22d2018-04-18 13:20:18 -07001574 /* Chop off the bytes in the past and see if what is left
1575 * can be enqueued in order */
Florin Corasdb84e572017-05-09 18:54:52 -07001576 n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1577 n_data_bytes -= n_bytes_to_drop;
Dave Barach2c25a622017-06-26 11:35:07 -04001578 vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001579 if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
Florin Coras00cd22d2018-04-18 13:20:18 -07001580 {
1581 error = TCP_ERROR_SEGMENT_OLD;
1582 *next0 = tcp_next_drop (tc->c_is_ip4);
1583 goto done;
1584 }
Florin Corasdb84e572017-05-09 18:54:52 -07001585 goto in_order;
Dave Barach68b0fb02017-02-28 15:15:56 -05001586 }
1587
Florin Coras00cd22d2018-04-18 13:20:18 -07001588 /* RFC2581: Enqueue and send DUPACK for fast retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001589 error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
Florin Coras6792ec02017-03-13 03:49:51 -07001590 *next0 = tcp_next_output (tc->c_is_ip4);
Florin Coras00cd22d2018-04-18 13:20:18 -07001591 tcp_make_ack (tc, b);
1592 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_DUPACK;
Florin Coras6792ec02017-03-13 03:49:51 -07001593 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001594 goto done;
1595 }
1596
Florin Corasdb84e572017-05-09 18:54:52 -07001597in_order:
1598
Dave Barach68b0fb02017-02-28 15:15:56 -05001599 /* In order data, enqueue. Fifo figures out by itself if any out-of-order
1600 * segments can be enqueued after fifo tail offset changes. */
1601 error = tcp_session_enqueue_data (tc, b, n_data_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001602 if (tcp_can_delack (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001603 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001604 *next0 = tcp_next_drop (tc->c_is_ip4);
Florin Coras6792ec02017-03-13 03:49:51 -07001605 if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
1606 tcp_timer_set (tc, TCP_TIMER_DELACK, TCP_DELACK_TIME);
Florin Coras3e350af2017-03-30 02:54:28 -07001607 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001608 }
1609
Florin Coras3e350af2017-03-30 02:54:28 -07001610 *next0 = tcp_next_output (tc->c_is_ip4);
1611 tcp_make_ack (tc, b);
1612
Dave Barach68b0fb02017-02-28 15:15:56 -05001613done:
1614 return error;
1615}
1616
Clement Durand6cf260c2017-04-13 13:27:04 +02001617typedef struct
1618{
1619 tcp_header_t tcp_header;
1620 tcp_connection_t tcp_connection;
1621} tcp_rx_trace_t;
1622
1623u8 *
1624format_tcp_rx_trace (u8 * s, va_list * args)
1625{
1626 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1627 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1628 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +02001629 u32 indent = format_get_indent (s);
Clement Durand6cf260c2017-04-13 13:27:04 +02001630
1631 s = format (s, "%U\n%U%U",
1632 format_tcp_header, &t->tcp_header, 128,
1633 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -07001634 format_tcp_connection, &t->tcp_connection, 1);
Clement Durand6cf260c2017-04-13 13:27:04 +02001635
1636 return s;
1637}
1638
1639u8 *
1640format_tcp_rx_trace_short (u8 * s, va_list * args)
1641{
1642 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1643 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1644 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
1645
1646 s = format (s, "%d -> %d (%U)",
1647 clib_net_to_host_u16 (t->tcp_header.src_port),
1648 clib_net_to_host_u16 (t->tcp_header.dst_port), format_tcp_state,
Florin Corasbb292f42017-05-19 09:49:19 -07001649 t->tcp_connection.state);
Clement Durand6cf260c2017-04-13 13:27:04 +02001650
1651 return s;
1652}
1653
Florin Coras82b13a82017-04-25 11:58:06 -07001654void
1655tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
1656 tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
1657{
1658 if (tc0)
1659 {
1660 clib_memcpy (&t0->tcp_connection, tc0, sizeof (t0->tcp_connection));
1661 }
1662 else
1663 {
1664 th0 = tcp_buffer_hdr (b0);
1665 }
1666 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
1667}
1668
Florin Coras6792ec02017-03-13 03:49:51 -07001669always_inline void
Florin Coras00cd22d2018-04-18 13:20:18 -07001670tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
1671 u8 is_ip4, u32 evt, u32 val)
Dave Barach68b0fb02017-02-28 15:15:56 -05001672{
Florin Coras6792ec02017-03-13 03:49:51 -07001673 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -07001674 vlib_node_increment_counter (vm, tcp4_node, evt, val);
Florin Coras6792ec02017-03-13 03:49:51 -07001675 else
Florin Coras3cbc04b2017-10-02 00:18:51 -07001676 vlib_node_increment_counter (vm, tcp6_node, evt, val);
Dave Barach68b0fb02017-02-28 15:15:56 -05001677}
1678
Florin Coras00cd22d2018-04-18 13:20:18 -07001679#define tcp_maybe_inc_counter(node_id, err, count) \
1680{ \
1681 if (next0 != tcp_next_drop (is_ip4)) \
1682 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
1683 tcp6_##node_id##_node.index, is_ip4, err, \
1684 1); \
1685}
1686#define tcp_inc_counter(node_id, err, count) \
1687 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
1688 tcp6_##node_id##_node.index, is_ip4, \
1689 err, count)
1690#define tcp_maybe_inc_err_counter(cnts, err) \
1691{ \
1692 cnts[err] += (next0 != tcp_next_drop (is_ip4)); \
1693}
1694#define tcp_inc_err_counter(cnts, err, val) \
1695{ \
1696 cnts[err] += val; \
1697}
1698#define tcp_store_err_counters(node_id, cnts) \
1699{ \
1700 int i; \
1701 for (i = 0; i < TCP_N_ERROR; i++) \
1702 if (cnts[i]) \
1703 tcp_inc_counter(node_id, i, cnts[i]); \
1704}
1705
1706
Dave Barach68b0fb02017-02-28 15:15:56 -05001707always_inline uword
1708tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1709 vlib_frame_t * from_frame, int is_ip4)
1710{
Damjan Marion586afd72017-04-05 19:18:20 +02001711 u32 my_thread_index = vm->thread_index, errors = 0;
Florin Coras00cd22d2018-04-18 13:20:18 -07001712 u32 n_left_from, next_index, *from, *to_next;
1713 u16 err_counters[TCP_N_ERROR] = { 0 };
Dave Barach1f75cfd2017-04-14 16:46:44 -04001714 u8 is_fin = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001715
1716 from = vlib_frame_vector_args (from_frame);
1717 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05001718 next_index = node->cached_next_index;
1719
1720 while (n_left_from > 0)
1721 {
1722 u32 n_left_to_next;
1723
1724 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Dave Barach68b0fb02017-02-28 15:15:56 -05001725 while (n_left_from > 0 && n_left_to_next > 0)
1726 {
1727 u32 bi0;
1728 vlib_buffer_t *b0;
1729 tcp_header_t *th0 = 0;
1730 tcp_connection_t *tc0;
Florin Coras00cd22d2018-04-18 13:20:18 -07001731 u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001732
Florin Coras81a13db2018-03-16 08:48:31 -07001733 if (n_left_from > 1)
1734 {
1735 vlib_buffer_t *pb;
1736 pb = vlib_get_buffer (vm, from[1]);
1737 vlib_prefetch_buffer_header (pb, LOAD);
1738 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1739 }
1740
Dave Barach68b0fb02017-02-28 15:15:56 -05001741 bi0 = from[0];
1742 to_next[0] = bi0;
1743 from += 1;
1744 to_next += 1;
1745 n_left_from -= 1;
1746 n_left_to_next -= 1;
1747
1748 b0 = vlib_get_buffer (vm, bi0);
1749 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
1750 my_thread_index);
1751
Florin Corasd79b41e2017-03-04 05:37:52 -08001752 if (PREDICT_FALSE (tc0 == 0))
1753 {
1754 error0 = TCP_ERROR_INVALID_CONNECTION;
Florin Coras6792ec02017-03-13 03:49:51 -07001755 goto done;
Florin Corasd79b41e2017-03-04 05:37:52 -08001756 }
1757
Florin Coras82b13a82017-04-25 11:58:06 -07001758 th0 = tcp_buffer_hdr (b0);
Florin Coras6534b7a2017-07-18 05:38:03 -04001759 /* N.B. buffer is rewritten if segment is ooo. Thus, th0 becomes a
1760 * dangling reference. */
1761 is_fin = tcp_is_fin (th0);
Dave Barach1f75cfd2017-04-14 16:46:44 -04001762
Dave Barach68b0fb02017-02-28 15:15:56 -05001763 /* SYNs, FINs and data consume sequence numbers */
1764 vnet_buffer (b0)->tcp.seq_end = vnet_buffer (b0)->tcp.seq_number
Florin Coras82b13a82017-04-25 11:58:06 -07001765 + tcp_is_syn (th0) + is_fin + vnet_buffer (b0)->tcp.data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05001766
1767 /* TODO header prediction fast path */
1768
1769 /* 1-4: check SEQ, RST, SYN */
Florin Coras00cd22d2018-04-18 13:20:18 -07001770 if (PREDICT_FALSE (tcp_segment_validate (vm, tc0, b0, th0, &next0,
1771 &error0)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001772 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001773 tcp_maybe_inc_err_counter (err_counters, error0);
Florin Coras6792ec02017-03-13 03:49:51 -07001774 TCP_EVT_DBG (TCP_EVT_SEG_INVALID, tc0,
1775 vnet_buffer (b0)->tcp.seq_number,
1776 vnet_buffer (b0)->tcp.seq_end);
1777 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001778 }
1779
1780 /* 5: check the ACK field */
Florin Coras00cd22d2018-04-18 13:20:18 -07001781 if (PREDICT_FALSE (tcp_rcv_ack (tc0, b0, th0, &next0, &error0)))
1782 {
1783 tcp_maybe_inc_err_counter (err_counters, error0);
1784 goto done;
1785 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001786
1787 /* 6: check the URG bit TODO */
1788
1789 /* 7: process the segment text */
Florin Coras6534b7a2017-07-18 05:38:03 -04001790 if (vnet_buffer (b0)->tcp.data_len)
Florin Coras00cd22d2018-04-18 13:20:18 -07001791 {
1792 error0 = tcp_segment_rcv (tc0, b0, &next0);
1793 tcp_maybe_inc_err_counter (err_counters, error0);
1794 }
Dave Barach1f75cfd2017-04-14 16:46:44 -04001795
Dave Barach68b0fb02017-02-28 15:15:56 -05001796 /* 8: check the FIN bit */
Florin Coras6534b7a2017-07-18 05:38:03 -04001797 if (PREDICT_FALSE (is_fin))
Dave Barach68b0fb02017-02-28 15:15:56 -05001798 {
Florin Coras9d063042017-09-14 03:08:00 -04001799 /* Enter CLOSE-WAIT and notify session. To avoid lingering
Florin Corasd79b41e2017-03-04 05:37:52 -08001800 * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
Florin Coras9d063042017-09-14 03:08:00 -04001801 /* Account for the FIN if nothing else was received */
Florin Coras68810622017-07-24 17:40:28 -07001802 if (vnet_buffer (b0)->tcp.data_len == 0)
Florin Coras9d063042017-09-14 03:08:00 -04001803 tc0->rcv_nxt += 1;
1804 tcp_make_ack (tc0, b0);
1805 next0 = tcp_next_output (tc0->c_is_ip4);
1806 tc0->state = TCP_STATE_CLOSE_WAIT;
Dave Barach68b0fb02017-02-28 15:15:56 -05001807 stream_session_disconnect_notify (&tc0->connection);
Florin Coras68810622017-07-24 17:40:28 -07001808 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
Florin Coras9d063042017-09-14 03:08:00 -04001809 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -07001810 tcp_inc_err_counter (err_counters, TCP_ERROR_FIN_RCVD, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001811 }
1812
Florin Coras6792ec02017-03-13 03:49:51 -07001813 done:
Dave Barach68b0fb02017-02-28 15:15:56 -05001814 b0->error = node->errors[error0];
1815 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
1816 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001817 tcp_rx_trace_t *t0 = vlib_add_trace (vm, node, b0,
1818 sizeof (*t0));
Florin Coras82b13a82017-04-25 11:58:06 -07001819 tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001820 }
1821
1822 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1823 n_left_to_next, bi0, next0);
1824 }
1825
1826 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1827 }
1828
Florin Coras3cbc04b2017-10-02 00:18:51 -07001829 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
1830 my_thread_index);
Florin Coras00cd22d2018-04-18 13:20:18 -07001831 err_counters[TCP_ERROR_EVENT_FIFO_FULL] = errors;
1832 tcp_store_err_counters (established, err_counters);
Florin Coras66b11312017-07-31 17:18:03 -07001833 tcp_flush_frame_to_output (vm, my_thread_index, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001834 return from_frame->n_vectors;
1835}
1836
1837static uword
1838tcp4_established (vlib_main_t * vm, vlib_node_runtime_t * node,
1839 vlib_frame_t * from_frame)
1840{
1841 return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
1842}
1843
1844static uword
1845tcp6_established (vlib_main_t * vm, vlib_node_runtime_t * node,
1846 vlib_frame_t * from_frame)
1847{
1848 return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
1849}
1850
1851/* *INDENT-OFF* */
1852VLIB_REGISTER_NODE (tcp4_established_node) =
1853{
1854 .function = tcp4_established,
1855 .name = "tcp4-established",
1856 /* Takes a vector of packets. */
1857 .vector_size = sizeof (u32),
Florin Corase69f4952017-03-07 10:06:24 -08001858 .n_errors = TCP_N_ERROR,
1859 .error_strings = tcp_error_strings,
Dave Barach68b0fb02017-02-28 15:15:56 -05001860 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
1861 .next_nodes =
1862 {
1863#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
1864 foreach_tcp_state_next
1865#undef _
1866 },
Clement Durand6cf260c2017-04-13 13:27:04 +02001867 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05001868};
1869/* *INDENT-ON* */
1870
1871VLIB_NODE_FUNCTION_MULTIARCH (tcp4_established_node, tcp4_established);
1872
1873/* *INDENT-OFF* */
1874VLIB_REGISTER_NODE (tcp6_established_node) =
1875{
1876 .function = tcp6_established,
1877 .name = "tcp6-established",
1878 /* Takes a vector of packets. */
1879 .vector_size = sizeof (u32),
1880 .n_errors = TCP_N_ERROR,
1881 .error_strings = tcp_error_strings,
1882 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
1883 .next_nodes =
1884 {
1885#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
1886 foreach_tcp_state_next
1887#undef _
1888 },
Clement Durand6cf260c2017-04-13 13:27:04 +02001889 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05001890};
1891/* *INDENT-ON* */
1892
1893
1894VLIB_NODE_FUNCTION_MULTIARCH (tcp6_established_node, tcp6_established);
1895
1896vlib_node_registration_t tcp4_syn_sent_node;
1897vlib_node_registration_t tcp6_syn_sent_node;
1898
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001899static u8
1900tcp_lookup_is_valid (tcp_connection_t * tc, tcp_header_t * hdr)
1901{
Florin Corascea194d2017-10-02 00:18:51 -07001902 transport_connection_t *tmp = 0;
1903 u64 handle;
1904
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001905 if (!tc)
1906 return 1;
1907
Florin Coras70131132017-11-27 02:43:30 -08001908 /* Proxy case */
1909 if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
1910 return 1;
1911
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001912 u8 is_valid = (tc->c_lcl_port == hdr->dst_port
1913 && (tc->state == TCP_STATE_LISTEN
1914 || tc->c_rmt_port == hdr->src_port));
1915
1916 if (!is_valid)
1917 {
Florin Corascea194d2017-10-02 00:18:51 -07001918 handle = session_lookup_half_open_handle (&tc->connection);
1919 tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
Florin Coras3cbc04b2017-10-02 00:18:51 -07001920 tc->c_proto, tc->c_is_ip4);
Florin Corascea194d2017-10-02 00:18:51 -07001921
1922 if (tmp)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001923 {
1924 if (tmp->lcl_port == hdr->dst_port
1925 && tmp->rmt_port == hdr->src_port)
1926 {
Florin Corascea194d2017-10-02 00:18:51 -07001927 TCP_DBG ("half-open is valid!");
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001928 }
1929 }
1930 }
1931 return is_valid;
1932}
1933
1934/**
1935 * Lookup transport connection
1936 */
1937static tcp_connection_t *
Florin Corascea194d2017-10-02 00:18:51 -07001938tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
1939 u8 is_ip4)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001940{
1941 tcp_header_t *tcp;
1942 transport_connection_t *tconn;
1943 tcp_connection_t *tc;
Florin Corasdff48db2017-11-19 18:06:58 -08001944 u8 is_filtered = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001945 if (is_ip4)
1946 {
1947 ip4_header_t *ip4;
1948 ip4 = vlib_buffer_get_current (b);
1949 tcp = ip4_next_header (ip4);
Florin Corascea194d2017-10-02 00:18:51 -07001950 tconn = session_lookup_connection_wt4 (fib_index,
1951 &ip4->dst_address,
1952 &ip4->src_address,
1953 tcp->dst_port,
1954 tcp->src_port,
1955 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08001956 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001957 tc = tcp_get_connection_from_transport (tconn);
1958 ASSERT (tcp_lookup_is_valid (tc, tcp));
1959 }
1960 else
1961 {
1962 ip6_header_t *ip6;
1963 ip6 = vlib_buffer_get_current (b);
1964 tcp = ip6_next_header (ip6);
Florin Corascea194d2017-10-02 00:18:51 -07001965 tconn = session_lookup_connection_wt6 (fib_index,
1966 &ip6->dst_address,
1967 &ip6->src_address,
1968 tcp->dst_port,
1969 tcp->src_port,
1970 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08001971 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001972 tc = tcp_get_connection_from_transport (tconn);
1973 ASSERT (tcp_lookup_is_valid (tc, tcp));
1974 }
1975 return tc;
1976}
1977
Dave Barach68b0fb02017-02-28 15:15:56 -05001978always_inline uword
1979tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1980 vlib_frame_t * from_frame, int is_ip4)
1981{
1982 tcp_main_t *tm = vnet_get_tcp_main ();
1983 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02001984 u32 my_thread_index = vm->thread_index, errors = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001985
1986 from = vlib_frame_vector_args (from_frame);
1987 n_left_from = from_frame->n_vectors;
1988
1989 next_index = node->cached_next_index;
1990
1991 while (n_left_from > 0)
1992 {
1993 u32 n_left_to_next;
1994
1995 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1996
1997 while (n_left_from > 0 && n_left_to_next > 0)
1998 {
1999 u32 bi0, ack0, seq0;
2000 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002001 tcp_rx_trace_t *t0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002002 tcp_header_t *tcp0 = 0;
2003 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002004 tcp_connection_t *new_tc0;
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002005 u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002006
2007 bi0 = from[0];
2008 to_next[0] = bi0;
2009 from += 1;
2010 to_next += 1;
2011 n_left_from -= 1;
2012 n_left_to_next -= 1;
2013
2014 b0 = vlib_get_buffer (vm, bi0);
2015 tc0 =
2016 tcp_half_open_connection_get (vnet_buffer (b0)->
2017 tcp.connection_index);
Dave Barachd84ba852017-08-22 17:56:46 -04002018 if (PREDICT_FALSE (tc0 == 0))
2019 {
2020 error0 = TCP_ERROR_INVALID_CONNECTION;
2021 goto drop;
2022 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002023
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002024 /* Half-open completed recently but the connection was't removed
2025 * yet by the owning thread */
2026 if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2027 {
2028 /* Make sure the connection actually exists */
Florin Corascea194d2017-10-02 00:18:51 -07002029 ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2030 my_thread_index, is_ip4));
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002031 goto drop;
2032 }
2033
Dave Barach68b0fb02017-02-28 15:15:56 -05002034 ack0 = vnet_buffer (b0)->tcp.ack_number;
2035 seq0 = vnet_buffer (b0)->tcp.seq_number;
Florin Coras82b13a82017-04-25 11:58:06 -07002036 tcp0 = tcp_buffer_hdr (b0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002037
Florin Coras9d063042017-09-14 03:08:00 -04002038 /* Crude check to see if the connection handle does not match
2039 * the packet. Probably connection just switched to established */
2040 if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2041 || tcp0->src_port != tc0->c_rmt_port))
2042 goto drop;
2043
Dave Barach68b0fb02017-02-28 15:15:56 -05002044 if (PREDICT_FALSE
2045 (!tcp_ack (tcp0) && !tcp_rst (tcp0) && !tcp_syn (tcp0)))
2046 goto drop;
2047
2048 /* SYNs, FINs and data consume sequence numbers */
2049 vnet_buffer (b0)->tcp.seq_end = seq0 + tcp_is_syn (tcp0)
Florin Coras82b13a82017-04-25 11:58:06 -07002050 + tcp_is_fin (tcp0) + vnet_buffer (b0)->tcp.data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05002051
2052 /*
2053 * 1. check the ACK bit
2054 */
2055
2056 /*
2057 * If the ACK bit is set
2058 * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2059 * the RST bit is set, if so drop the segment and return)
2060 * <SEQ=SEG.ACK><CTL=RST>
2061 * and discard the segment. Return.
2062 * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2063 */
2064 if (tcp_ack (tcp0))
2065 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002066 if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05002067 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002068 clib_warning ("ack not in rcv wnd");
Dave Barach68b0fb02017-02-28 15:15:56 -05002069 if (!tcp_rst (tcp0))
Florin Coras1f152cd2017-08-18 19:28:03 -07002070 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002071 goto drop;
2072 }
2073
2074 /* Make sure ACK is valid */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002075 if (seq_gt (tc0->snd_una, ack0))
2076 {
2077 clib_warning ("ack invalid");
2078 goto drop;
2079 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002080 }
2081
2082 /*
2083 * 2. check the RST bit
2084 */
2085
2086 if (tcp_rst (tcp0))
2087 {
2088 /* If ACK is acceptable, signal client that peer is not
2089 * willing to accept connection and drop connection*/
2090 if (tcp_ack (tcp0))
Florin Coras6534b7a2017-07-18 05:38:03 -04002091 tcp_connection_reset (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002092 goto drop;
2093 }
2094
2095 /*
2096 * 3. check the security and precedence (skipped)
2097 */
2098
2099 /*
2100 * 4. check the SYN bit
2101 */
2102
2103 /* No SYN flag. Drop. */
2104 if (!tcp_syn (tcp0))
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002105 {
2106 clib_warning ("not synack");
2107 goto drop;
2108 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002109
Florin Coras6534b7a2017-07-18 05:38:03 -04002110 /* Parse options */
2111 if (tcp_options_parse (tcp0, &tc0->rcv_opts))
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002112 {
2113 clib_warning ("options parse fail");
2114 goto drop;
2115 }
Florin Coras6534b7a2017-07-18 05:38:03 -04002116
Dave Barach68b0fb02017-02-28 15:15:56 -05002117 /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2118 * current thread pool. */
2119 pool_get (tm->connections[my_thread_index], new_tc0);
2120 clib_memcpy (new_tc0, tc0, sizeof (*new_tc0));
Dave Barach259cdae2017-05-15 16:27:05 -04002121 new_tc0->c_c_index = new_tc0 - tm->connections[my_thread_index];
Florin Coras6534b7a2017-07-18 05:38:03 -04002122 new_tc0->c_thread_index = my_thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002123 new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2124 new_tc0->irs = seq0;
Florin Coras68810622017-07-24 17:40:28 -07002125 new_tc0->timers[TCP_TIMER_ESTABLISH] = TCP_TIMER_HANDLE_INVALID;
2126 new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] =
2127 TCP_TIMER_HANDLE_INVALID;
2128
2129 /* If this is not the owning thread, wait for syn retransmit to
2130 * expire and cleanup then */
2131 if (tcp_half_open_connection_cleanup (tc0))
2132 tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
Dave Barach68b0fb02017-02-28 15:15:56 -05002133
Florin Coras93992a92017-05-24 18:03:56 -07002134 if (tcp_opts_tstamp (&new_tc0->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05002135 {
Florin Coras93992a92017-05-24 18:03:56 -07002136 new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
Dave Barach68b0fb02017-02-28 15:15:56 -05002137 new_tc0->tsval_recent_age = tcp_time_now ();
2138 }
2139
Florin Coras93992a92017-05-24 18:03:56 -07002140 if (tcp_opts_wscale (&new_tc0->rcv_opts))
2141 new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
Dave Barach68b0fb02017-02-28 15:15:56 -05002142
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002143 /* RFC1323: SYN and SYN-ACK wnd not scaled */
2144 new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window);
Dave Barach68b0fb02017-02-28 15:15:56 -05002145 new_tc0->snd_wl1 = seq0;
2146 new_tc0->snd_wl2 = ack0;
2147
Florin Corase04c2992017-03-01 08:17:34 -08002148 tcp_connection_init_vars (new_tc0);
2149
Dave Barach68b0fb02017-02-28 15:15:56 -05002150 /* SYN-ACK: See if we can switch to ESTABLISHED state */
Florin Coras6534b7a2017-07-18 05:38:03 -04002151 if (PREDICT_TRUE (tcp_ack (tcp0)))
Dave Barach68b0fb02017-02-28 15:15:56 -05002152 {
2153 /* Our SYN is ACKed: we have iss < ack = snd_una */
2154
2155 /* TODO Dequeue acknowledged segments if we support Fast Open */
2156 new_tc0->snd_una = ack0;
2157 new_tc0->state = TCP_STATE_ESTABLISHED;
2158
Florin Corase04c2992017-03-01 08:17:34 -08002159 /* Make sure las is initialized for the wnd computation */
2160 new_tc0->rcv_las = new_tc0->rcv_nxt;
2161
Florin Corasf03a59a2017-06-09 21:07:32 -07002162 /* Notify app that we have connection. If session layer can't
2163 * allocate session send reset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07002164 if (session_stream_connect_notify (&new_tc0->connection, 0))
Florin Corasf03a59a2017-06-09 21:07:32 -07002165 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002166 clib_warning ("connect notify fail");
Florin Coras1f152cd2017-08-18 19:28:03 -07002167 tcp_send_reset_w_pkt (new_tc0, b0, is_ip4);
Florin Corasf03a59a2017-06-09 21:07:32 -07002168 tcp_connection_cleanup (new_tc0);
Florin Corasf03a59a2017-06-09 21:07:32 -07002169 goto drop;
2170 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002171
2172 /* Make sure after data segment processing ACK is sent */
2173 new_tc0->flags |= TCP_CONN_SNDACK;
Dave Barach2c25a622017-06-26 11:35:07 -04002174
2175 /* Update rtt with the syn-ack sample */
Dave Barach2c25a622017-06-26 11:35:07 -04002176 tcp_update_rtt (new_tc0, vnet_buffer (b0)->tcp.ack_number);
Florin Coras6534b7a2017-07-18 05:38:03 -04002177 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, new_tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002178 }
2179 /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2180 else
2181 {
2182 new_tc0->state = TCP_STATE_SYN_RCVD;
2183
Florin Corase69f4952017-03-07 10:06:24 -08002184 /* Notify app that we have connection */
Florin Coras3cbc04b2017-10-02 00:18:51 -07002185 if (session_stream_connect_notify (&new_tc0->connection, 0))
Florin Corasf03a59a2017-06-09 21:07:32 -07002186 {
2187 tcp_connection_cleanup (new_tc0);
Florin Coras1f152cd2017-08-18 19:28:03 -07002188 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -04002189 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc0);
Florin Corasf03a59a2017-06-09 21:07:32 -07002190 goto drop;
2191 }
2192
Dave Barach2c25a622017-06-26 11:35:07 -04002193 tc0->rtt_ts = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002194 tcp_init_snd_vars (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002195 tcp_make_synack (new_tc0, b0);
2196 next0 = tcp_next_output (is_ip4);
2197
2198 goto drop;
2199 }
2200
2201 /* Read data, if any */
Florin Coras6534b7a2017-07-18 05:38:03 -04002202 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
Dave Barach68b0fb02017-02-28 15:15:56 -05002203 {
Florin Coras00cd22d2018-04-18 13:20:18 -07002204 clib_warning ("rcvd data in syn-sent");
2205 error0 = tcp_segment_rcv (new_tc0, b0, &next0);
2206 if (error0 == TCP_ERROR_ACK_OK)
Dave Barach68b0fb02017-02-28 15:15:56 -05002207 error0 = TCP_ERROR_SYN_ACKS_RCVD;
Florin Coras00cd22d2018-04-18 13:20:18 -07002208 tcp_maybe_inc_counter (syn_sent, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002209 }
2210 else
2211 {
2212 tcp_make_ack (new_tc0, b0);
2213 next0 = tcp_next_output (new_tc0->c_is_ip4);
2214 }
2215
2216 drop:
2217
2218 b0->error = error0 ? node->errors[error0] : 0;
Chris Luke879ace32017-09-26 13:15:16 -04002219 if (PREDICT_FALSE
2220 ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002221 {
Clement Durand6cf260c2017-04-13 13:27:04 +02002222 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2223 clib_memcpy (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2224 clib_memcpy (&t0->tcp_connection, tc0,
2225 sizeof (t0->tcp_connection));
Dave Barach68b0fb02017-02-28 15:15:56 -05002226 }
2227
2228 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2229 n_left_to_next, bi0, next0);
2230 }
2231
2232 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2233 }
2234
Florin Coras3cbc04b2017-10-02 00:18:51 -07002235 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2236 my_thread_index);
Florin Coras00cd22d2018-04-18 13:20:18 -07002237 tcp_inc_counter (syn_sent, TCP_ERROR_EVENT_FIFO_FULL, errors);
Dave Barach68b0fb02017-02-28 15:15:56 -05002238 return from_frame->n_vectors;
2239}
2240
2241static uword
2242tcp4_syn_sent (vlib_main_t * vm, vlib_node_runtime_t * node,
2243 vlib_frame_t * from_frame)
2244{
2245 return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2246}
2247
2248static uword
2249tcp6_syn_sent_rcv (vlib_main_t * vm, vlib_node_runtime_t * node,
2250 vlib_frame_t * from_frame)
2251{
2252 return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2253}
2254
2255/* *INDENT-OFF* */
2256VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2257{
2258 .function = tcp4_syn_sent,
2259 .name = "tcp4-syn-sent",
2260 /* Takes a vector of packets. */
2261 .vector_size = sizeof (u32),
2262 .n_errors = TCP_N_ERROR,
2263 .error_strings = tcp_error_strings,
2264 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2265 .next_nodes =
2266 {
2267#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2268 foreach_tcp_state_next
2269#undef _
2270 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002271 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002272};
2273/* *INDENT-ON* */
2274
2275VLIB_NODE_FUNCTION_MULTIARCH (tcp4_syn_sent_node, tcp4_syn_sent);
2276
2277/* *INDENT-OFF* */
2278VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2279{
2280 .function = tcp6_syn_sent_rcv,
2281 .name = "tcp6-syn-sent",
2282 /* Takes a vector of packets. */
2283 .vector_size = sizeof (u32),
2284 .n_errors = TCP_N_ERROR,
2285 .error_strings = tcp_error_strings,
2286 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2287 .next_nodes =
2288 {
2289#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2290 foreach_tcp_state_next
2291#undef _
Clement Durand6cf260c2017-04-13 13:27:04 +02002292 },
2293 .format_trace = format_tcp_rx_trace_short,
2294};
Dave Barach68b0fb02017-02-28 15:15:56 -05002295/* *INDENT-ON* */
2296
2297VLIB_NODE_FUNCTION_MULTIARCH (tcp6_syn_sent_node, tcp6_syn_sent_rcv);
Florin Coras6534b7a2017-07-18 05:38:03 -04002298
Florin Coras3cbc04b2017-10-02 00:18:51 -07002299vlib_node_registration_t tcp4_rcv_process_node;
2300vlib_node_registration_t tcp6_rcv_process_node;
2301
Dave Barach68b0fb02017-02-28 15:15:56 -05002302/**
Florin Corasd79b41e2017-03-04 05:37:52 -08002303 * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
Dave Barach68b0fb02017-02-28 15:15:56 -05002304 * as per RFC793 p. 64
2305 */
2306always_inline uword
2307tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2308 vlib_frame_t * from_frame, int is_ip4)
2309{
Florin Coras00cd22d2018-04-18 13:20:18 -07002310 u32 n_left_from, next_index, *from, *to_next, n_fins = 0;
Damjan Marion586afd72017-04-05 19:18:20 +02002311 u32 my_thread_index = vm->thread_index, errors = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002312
2313 from = vlib_frame_vector_args (from_frame);
2314 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002315 next_index = node->cached_next_index;
2316
2317 while (n_left_from > 0)
2318 {
2319 u32 n_left_to_next;
2320
2321 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2322
2323 while (n_left_from > 0 && n_left_to_next > 0)
2324 {
2325 u32 bi0;
2326 vlib_buffer_t *b0;
2327 tcp_header_t *tcp0 = 0;
2328 tcp_connection_t *tc0;
Florin Coras00cd22d2018-04-18 13:20:18 -07002329 u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_NONE;
Florin Coras9d063042017-09-14 03:08:00 -04002330 u8 is_fin0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002331
2332 bi0 = from[0];
2333 to_next[0] = bi0;
2334 from += 1;
2335 to_next += 1;
2336 n_left_from -= 1;
2337 n_left_to_next -= 1;
2338
2339 b0 = vlib_get_buffer (vm, bi0);
2340 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2341 my_thread_index);
Florin Corasd79b41e2017-03-04 05:37:52 -08002342 if (PREDICT_FALSE (tc0 == 0))
2343 {
2344 error0 = TCP_ERROR_INVALID_CONNECTION;
2345 goto drop;
2346 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002347
Florin Coras82b13a82017-04-25 11:58:06 -07002348 tcp0 = tcp_buffer_hdr (b0);
Florin Coras9d063042017-09-14 03:08:00 -04002349 is_fin0 = tcp_is_fin (tcp0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002350
2351 /* SYNs, FINs and data consume sequence numbers */
2352 vnet_buffer (b0)->tcp.seq_end = vnet_buffer (b0)->tcp.seq_number
Florin Coras9d063042017-09-14 03:08:00 -04002353 + tcp_is_syn (tcp0) + is_fin0 + vnet_buffer (b0)->tcp.data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05002354
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002355 if (CLIB_DEBUG)
2356 {
2357 tcp_connection_t *tmp;
Florin Coras00cd22d2018-04-18 13:20:18 -07002358 tmp = tcp_lookup_connection (tc0->c_fib_index, b0,
2359 my_thread_index, is_ip4);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002360 if (tmp->state != tc0->state)
2361 {
2362 clib_warning ("state changed");
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002363 goto drop;
2364 }
2365 }
2366
Dave Barach68b0fb02017-02-28 15:15:56 -05002367 /*
2368 * Special treatment for CLOSED
2369 */
Florin Coras00cd22d2018-04-18 13:20:18 -07002370 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
Dave Barach68b0fb02017-02-28 15:15:56 -05002371 {
Florin Coras00cd22d2018-04-18 13:20:18 -07002372 error0 = TCP_ERROR_CONNECTION_CLOSED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002373 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002374 }
2375
2376 /*
2377 * For all other states (except LISTEN)
2378 */
2379
2380 /* 1-4: check SEQ, RST, SYN */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002381 if (PREDICT_FALSE (tcp_segment_validate (vm, tc0, b0, tcp0,
Florin Coras00cd22d2018-04-18 13:20:18 -07002382 &next0, &error0)))
Dave Barach68b0fb02017-02-28 15:15:56 -05002383 {
Florin Coras00cd22d2018-04-18 13:20:18 -07002384 tcp_maybe_inc_counter (rcv_process, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002385 goto drop;
2386 }
2387
2388 /* 5: check the ACK field */
2389 switch (tc0->state)
2390 {
2391 case TCP_STATE_SYN_RCVD:
2392 /*
2393 * If the segment acknowledgment is not acceptable, form a
2394 * reset segment,
2395 * <SEQ=SEG.ACK><CTL=RST>
2396 * and send it.
2397 */
2398 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
2399 {
Florin Corasa096f2d2017-09-28 23:49:42 -04002400 TCP_DBG ("connection not accepted");
Florin Coras1f152cd2017-08-18 19:28:03 -07002401 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
Florin Coras00cd22d2018-04-18 13:20:18 -07002402 error0 = TCP_ERROR_ACK_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05002403 goto drop;
2404 }
Florin Coras3af90fc2017-05-03 21:09:42 -07002405
2406 /* Update rtt and rto */
Florin Coras3af90fc2017-05-03 21:09:42 -07002407 tcp_update_rtt (tc0, vnet_buffer (b0)->tcp.ack_number);
2408
Dave Barach68b0fb02017-02-28 15:15:56 -05002409 /* Switch state to ESTABLISHED */
2410 tc0->state = TCP_STATE_ESTABLISHED;
Florin Corasb384b542018-01-15 01:08:33 -08002411 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002412
2413 /* Initialize session variables */
2414 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
Florin Corase04c2992017-03-01 08:17:34 -08002415 tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
Florin Coras93992a92017-05-24 18:03:56 -07002416 << tc0->rcv_opts.wscale;
Dave Barach68b0fb02017-02-28 15:15:56 -05002417 tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2418 tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
Dave Barach68b0fb02017-02-28 15:15:56 -05002419
Florin Corasab0289a2017-08-14 11:25:25 -07002420 /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
Florin Coras6792ec02017-03-13 03:49:51 -07002421 tcp_retransmit_timer_reset (tc0);
Florin Corasab0289a2017-08-14 11:25:25 -07002422 tcp_timer_reset (tc0, TCP_TIMER_ESTABLISH);
Florin Corasb384b542018-01-15 01:08:33 -08002423 stream_session_accept_notify (&tc0->connection);
Florin Coras00cd22d2018-04-18 13:20:18 -07002424 error0 = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05002425 break;
2426 case TCP_STATE_ESTABLISHED:
2427 /* We can get packets in established state here because they
2428 * were enqueued before state change */
2429 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002430 {
2431 tcp_maybe_inc_counter (rcv_process, error0, 1);
2432 goto drop;
2433 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002434
2435 break;
2436 case TCP_STATE_FIN_WAIT_1:
2437 /* In addition to the processing for the ESTABLISHED state, if
2438 * our FIN is now acknowledged then enter FIN-WAIT-2 and
2439 * continue processing in that state. */
2440 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002441 {
2442 tcp_maybe_inc_counter (rcv_process, error0, 1);
2443 goto drop;
2444 }
Florin Corasd79b41e2017-03-04 05:37:52 -08002445
Florin Corasb2215d62017-08-01 16:56:58 -07002446 /* Still have to send the FIN */
2447 if (tc0->flags & TCP_CONN_FINPNDG)
2448 {
2449 /* TX fifo finally drained */
2450 if (!stream_session_tx_fifo_max_dequeue (&tc0->connection))
2451 tcp_send_fin (tc0);
2452 }
Florin Corasd79b41e2017-03-04 05:37:52 -08002453 /* If FIN is ACKed */
Florin Corasb2215d62017-08-01 16:56:58 -07002454 else if (tc0->snd_una == tc0->snd_una_max)
Florin Corasd79b41e2017-03-04 05:37:52 -08002455 {
2456 tc0->state = TCP_STATE_FIN_WAIT_2;
Florin Coras6534b7a2017-07-18 05:38:03 -04002457 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
2458
Florin Coras9d063042017-09-14 03:08:00 -04002459 /* Stop all retransmit timers because we have nothing more
2460 * to send. Enable waitclose though because we're willing to
2461 * wait for peer's FIN but not indefinitely. */
2462 tcp_connection_timers_reset (tc0);
2463 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Corasd79b41e2017-03-04 05:37:52 -08002464 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002465 break;
2466 case TCP_STATE_FIN_WAIT_2:
2467 /* In addition to the processing for the ESTABLISHED state, if
2468 * the retransmission queue is empty, the user's CLOSE can be
2469 * acknowledged ("ok") but do not delete the TCB. */
2470 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002471 {
2472 tcp_maybe_inc_counter (rcv_process, error0, 1);
2473 goto drop;
2474 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002475 break;
2476 case TCP_STATE_CLOSE_WAIT:
2477 /* Do the same processing as for the ESTABLISHED state. */
2478 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002479 {
2480 tcp_maybe_inc_counter (rcv_process, error0, 1);
2481 goto drop;
2482 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002483 break;
2484 case TCP_STATE_CLOSING:
2485 /* In addition to the processing for the ESTABLISHED state, if
2486 * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2487 * otherwise ignore the segment. */
2488 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002489 {
2490 tcp_maybe_inc_counter (rcv_process, error0, 1);
2491 goto drop;
2492 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002493
Dave Barach68b0fb02017-02-28 15:15:56 -05002494 tc0->state = TCP_STATE_TIME_WAIT;
Florin Coras6534b7a2017-07-18 05:38:03 -04002495 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Florin Corasa096f2d2017-09-28 23:49:42 -04002496 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002497 goto drop;
2498
2499 break;
2500 case TCP_STATE_LAST_ACK:
Florin Coras93992a92017-05-24 18:03:56 -07002501 /* The only thing that [should] arrive in this state is an
Dave Barach68b0fb02017-02-28 15:15:56 -05002502 * acknowledgment of our FIN. If our FIN is now acknowledged,
2503 * delete the TCB, enter the CLOSED state, and return. */
2504
2505 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
Florin Corasa096f2d2017-09-28 23:49:42 -04002506 {
2507 error0 = TCP_ERROR_ACK_INVALID;
2508 goto drop;
2509 }
Florin Coras00cd22d2018-04-18 13:20:18 -07002510 error0 = TCP_ERROR_ACK_OK;
Florin Coras9d063042017-09-14 03:08:00 -04002511 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
Florin Corasa096f2d2017-09-28 23:49:42 -04002512 /* Apparently our ACK for the peer's FIN was lost */
2513 if (is_fin0 && tc0->snd_una != tc0->snd_una_max)
Florin Coras93992a92017-05-24 18:03:56 -07002514 {
Florin Coras93992a92017-05-24 18:03:56 -07002515 tcp_send_fin (tc0);
2516 goto drop;
2517 }
2518
Florin Corasd79b41e2017-03-04 05:37:52 -08002519 tc0->state = TCP_STATE_CLOSED;
Florin Coras6534b7a2017-07-18 05:38:03 -04002520 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Florin Corasa096f2d2017-09-28 23:49:42 -04002521 tcp_connection_timers_reset (tc0);
Florin Corasd79b41e2017-03-04 05:37:52 -08002522
2523 /* Don't delete the connection/session yet. Instead, wait a
2524 * reasonable amount of time until the pipes are cleared. In
2525 * particular, this makes sure that we won't have dead sessions
2526 * when processing events on the tx path */
Florin Corasa096f2d2017-09-28 23:49:42 -04002527 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME);
Florin Corasd79b41e2017-03-04 05:37:52 -08002528
Dave Barach68b0fb02017-02-28 15:15:56 -05002529 goto drop;
2530
2531 break;
2532 case TCP_STATE_TIME_WAIT:
2533 /* The only thing that can arrive in this state is a
2534 * retransmission of the remote FIN. Acknowledge it, and restart
2535 * the 2 MSL timeout. */
2536
Florin Coras93992a92017-05-24 18:03:56 -07002537 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002538 {
2539 tcp_maybe_inc_counter (rcv_process, error0, 1);
2540 goto drop;
2541 }
Florin Coras93992a92017-05-24 18:03:56 -07002542
2543 tcp_make_ack (tc0, b0);
Florin Corasa096f2d2017-09-28 23:49:42 -04002544 next0 = tcp_next_output (is_ip4);
2545 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002546 goto drop;
Florin Coras93992a92017-05-24 18:03:56 -07002547
Dave Barach68b0fb02017-02-28 15:15:56 -05002548 break;
2549 default:
2550 ASSERT (0);
2551 }
2552
2553 /* 6: check the URG bit TODO */
2554
2555 /* 7: process the segment text */
2556 switch (tc0->state)
2557 {
2558 case TCP_STATE_ESTABLISHED:
2559 case TCP_STATE_FIN_WAIT_1:
2560 case TCP_STATE_FIN_WAIT_2:
Florin Coras6534b7a2017-07-18 05:38:03 -04002561 if (vnet_buffer (b0)->tcp.data_len)
Florin Coras00cd22d2018-04-18 13:20:18 -07002562 {
2563 error0 = tcp_segment_rcv (tc0, b0, &next0);
2564 tcp_maybe_inc_counter (rcv_process, error0, 1);
2565 }
Florin Coras9d063042017-09-14 03:08:00 -04002566 else if (is_fin0)
2567 tc0->rcv_nxt += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002568 break;
2569 case TCP_STATE_CLOSE_WAIT:
2570 case TCP_STATE_CLOSING:
2571 case TCP_STATE_LAST_ACK:
2572 case TCP_STATE_TIME_WAIT:
2573 /* This should not occur, since a FIN has been received from the
2574 * remote side. Ignore the segment text. */
2575 break;
2576 }
2577
2578 /* 8: check the FIN bit */
Florin Coras9d063042017-09-14 03:08:00 -04002579 if (!is_fin0)
Dave Barach68b0fb02017-02-28 15:15:56 -05002580 goto drop;
2581
2582 switch (tc0->state)
2583 {
2584 case TCP_STATE_ESTABLISHED:
2585 case TCP_STATE_SYN_RCVD:
2586 /* Send FIN-ACK notify app and enter CLOSE-WAIT */
2587 tcp_connection_timers_reset (tc0);
Florin Corasd79b41e2017-03-04 05:37:52 -08002588 tcp_make_fin (tc0, b0);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002589 tc0->snd_nxt += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002590 next0 = tcp_next_output (tc0->c_is_ip4);
2591 stream_session_disconnect_notify (&tc0->connection);
2592 tc0->state = TCP_STATE_CLOSE_WAIT;
Florin Coras6534b7a2017-07-18 05:38:03 -04002593 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002594 break;
2595 case TCP_STATE_CLOSE_WAIT:
2596 case TCP_STATE_CLOSING:
2597 case TCP_STATE_LAST_ACK:
2598 /* move along .. */
2599 break;
2600 case TCP_STATE_FIN_WAIT_1:
Florin Corasab0289a2017-08-14 11:25:25 -07002601 tc0->state = TCP_STATE_CLOSING;
2602 tcp_make_ack (tc0, b0);
2603 next0 = tcp_next_output (is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -04002604 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Florin Corasab0289a2017-08-14 11:25:25 -07002605 /* Wait for ACK but not forever */
2606 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002607 break;
2608 case TCP_STATE_FIN_WAIT_2:
Florin Coras9d063042017-09-14 03:08:00 -04002609 /* Got FIN, send ACK! Be more aggressive with resource cleanup */
Dave Barach68b0fb02017-02-28 15:15:56 -05002610 tc0->state = TCP_STATE_TIME_WAIT;
Florin Corasdb84e572017-05-09 18:54:52 -07002611 tcp_connection_timers_reset (tc0);
Florin Coras9d063042017-09-14 03:08:00 -04002612 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002613 tcp_make_ack (tc0, b0);
2614 next0 = tcp_next_output (is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -04002615 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002616 break;
2617 case TCP_STATE_TIME_WAIT:
Florin Coras9d063042017-09-14 03:08:00 -04002618 /* Remain in the TIME-WAIT state. Restart the time-wait
Dave Barach68b0fb02017-02-28 15:15:56 -05002619 * timeout.
2620 */
Florin Coras9d063042017-09-14 03:08:00 -04002621 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002622 break;
2623 }
Florin Corase69f4952017-03-07 10:06:24 -08002624 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -07002625 n_fins += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002626
Florin Coras82b13a82017-04-25 11:58:06 -07002627 drop:
Dave Barach68b0fb02017-02-28 15:15:56 -05002628 b0->error = error0 ? node->errors[error0] : 0;
2629
Dave Barach68b0fb02017-02-28 15:15:56 -05002630 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2631 {
Florin Coras82b13a82017-04-25 11:58:06 -07002632 tcp_rx_trace_t *t0 =
2633 vlib_add_trace (vm, node, b0, sizeof (*t0));
2634 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002635 }
2636
2637 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2638 n_left_to_next, bi0, next0);
2639 }
2640
2641 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2642 }
2643
Florin Coras3cbc04b2017-10-02 00:18:51 -07002644 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2645 my_thread_index);
Florin Coras00cd22d2018-04-18 13:20:18 -07002646 tcp_inc_counter (rcv_process, TCP_ERROR_EVENT_FIFO_FULL, errors);
2647 tcp_inc_counter (rcv_process, TCP_ERROR_FIN_RCVD, n_fins);
Dave Barach68b0fb02017-02-28 15:15:56 -05002648 return from_frame->n_vectors;
2649}
2650
2651static uword
2652tcp4_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node,
2653 vlib_frame_t * from_frame)
2654{
2655 return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2656}
2657
2658static uword
2659tcp6_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node,
2660 vlib_frame_t * from_frame)
2661{
2662 return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2663}
2664
2665/* *INDENT-OFF* */
2666VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
2667{
2668 .function = tcp4_rcv_process,
2669 .name = "tcp4-rcv-process",
2670 /* Takes a vector of packets. */
2671 .vector_size = sizeof (u32),
2672 .n_errors = TCP_N_ERROR,
2673 .error_strings = tcp_error_strings,
2674 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2675 .next_nodes =
2676 {
2677#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
2678 foreach_tcp_state_next
2679#undef _
2680 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002681 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002682};
2683/* *INDENT-ON* */
2684
2685VLIB_NODE_FUNCTION_MULTIARCH (tcp4_rcv_process_node, tcp4_rcv_process);
2686
2687/* *INDENT-OFF* */
2688VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
2689{
2690 .function = tcp6_rcv_process,
2691 .name = "tcp6-rcv-process",
2692 /* Takes a vector of packets. */
2693 .vector_size = sizeof (u32),
2694 .n_errors = TCP_N_ERROR,
2695 .error_strings = tcp_error_strings,
2696 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2697 .next_nodes =
2698 {
2699#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
2700 foreach_tcp_state_next
2701#undef _
2702 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002703 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002704};
2705/* *INDENT-ON* */
2706
2707VLIB_NODE_FUNCTION_MULTIARCH (tcp6_rcv_process_node, tcp6_rcv_process);
2708
2709vlib_node_registration_t tcp4_listen_node;
2710vlib_node_registration_t tcp6_listen_node;
2711
2712/**
2713 * LISTEN state processing as per RFC 793 p. 65
2714 */
2715always_inline uword
2716tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2717 vlib_frame_t * from_frame, int is_ip4)
2718{
Florin Coras00cd22d2018-04-18 13:20:18 -07002719 u32 n_left_from, next_index, *from, *to_next, n_syns = 0;
Damjan Marion586afd72017-04-05 19:18:20 +02002720 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002721
2722 from = vlib_frame_vector_args (from_frame);
2723 n_left_from = from_frame->n_vectors;
2724
2725 next_index = node->cached_next_index;
2726
2727 while (n_left_from > 0)
2728 {
2729 u32 n_left_to_next;
2730
2731 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2732
2733 while (n_left_from > 0 && n_left_to_next > 0)
2734 {
2735 u32 bi0;
2736 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002737 tcp_rx_trace_t *t0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002738 tcp_header_t *th0 = 0;
2739 tcp_connection_t *lc0;
2740 ip4_header_t *ip40;
2741 ip6_header_t *ip60;
2742 tcp_connection_t *child0;
Florin Coras00cd22d2018-04-18 13:20:18 -07002743 u32 error0 = TCP_ERROR_NONE, next0 = tcp_next_drop (is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002744
2745 bi0 = from[0];
2746 to_next[0] = bi0;
2747 from += 1;
2748 to_next += 1;
2749 n_left_from -= 1;
2750 n_left_to_next -= 1;
2751
2752 b0 = vlib_get_buffer (vm, bi0);
2753 lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index);
2754
2755 if (is_ip4)
2756 {
2757 ip40 = vlib_buffer_get_current (b0);
2758 th0 = ip4_next_header (ip40);
2759 }
2760 else
2761 {
2762 ip60 = vlib_buffer_get_current (b0);
2763 th0 = ip6_next_header (ip60);
2764 }
2765
2766 /* Create child session. For syn-flood protection use filter */
2767
Florin Corasdc629cd2017-05-09 00:52:37 -07002768 /* 1. first check for an RST: handled in dispatch */
2769 /* if (tcp_rst (th0))
2770 goto drop; */
Dave Barach68b0fb02017-02-28 15:15:56 -05002771
Florin Corasdc629cd2017-05-09 00:52:37 -07002772 /* 2. second check for an ACK: handled in dispatch */
2773 /* if (tcp_ack (th0))
2774 {
2775 tcp_send_reset (b0, is_ip4);
2776 goto drop;
2777 } */
Dave Barach68b0fb02017-02-28 15:15:56 -05002778
2779 /* 3. check for a SYN (did that already) */
2780
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002781 /* Make sure connection wasn't just created */
Florin Corascea194d2017-10-02 00:18:51 -07002782 child0 =
2783 tcp_lookup_connection (lc0->c_fib_index, b0, my_thread_index,
2784 is_ip4);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002785 if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN))
2786 {
2787 error0 = TCP_ERROR_CREATE_EXISTS;
2788 goto drop;
2789 }
2790
Dave Barach68b0fb02017-02-28 15:15:56 -05002791 /* Create child session and send SYN-ACK */
Florin Coras6534b7a2017-07-18 05:38:03 -04002792 child0 = tcp_connection_new (my_thread_index);
Florin Coras1c710452017-10-17 00:03:13 -07002793 child0->c_lcl_port = th0->dst_port;
Dave Barach68b0fb02017-02-28 15:15:56 -05002794 child0->c_rmt_port = th0->src_port;
2795 child0->c_is_ip4 = is_ip4;
Florin Corasbb292f42017-05-19 09:49:19 -07002796 child0->state = TCP_STATE_SYN_RCVD;
Florin Coras56b39f62018-03-27 17:29:32 -07002797 child0->c_fib_index = lc0->c_fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002798
2799 if (is_ip4)
2800 {
2801 child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32;
2802 child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32;
2803 }
2804 else
2805 {
2806 clib_memcpy (&child0->c_lcl_ip6, &ip60->dst_address,
2807 sizeof (ip6_address_t));
2808 clib_memcpy (&child0->c_rmt_ip6, &ip60->src_address,
2809 sizeof (ip6_address_t));
2810 }
2811
Florin Coras93992a92017-05-24 18:03:56 -07002812 if (tcp_options_parse (th0, &child0->rcv_opts))
Florin Corasdb84e572017-05-09 18:54:52 -07002813 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002814 clib_warning ("options parse fail");
Florin Corasdb84e572017-05-09 18:54:52 -07002815 goto drop;
2816 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002817
2818 child0->irs = vnet_buffer (b0)->tcp.seq_number;
2819 child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1;
Florin Coras3e350af2017-03-30 02:54:28 -07002820 child0->rcv_las = child0->rcv_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -05002821
2822 /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
2823 * segments are used to initialize PAWS. */
Florin Coras93992a92017-05-24 18:03:56 -07002824 if (tcp_opts_tstamp (&child0->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05002825 {
Florin Coras93992a92017-05-24 18:03:56 -07002826 child0->tsval_recent = child0->rcv_opts.tsval;
Dave Barach68b0fb02017-02-28 15:15:56 -05002827 child0->tsval_recent_age = tcp_time_now ();
2828 }
2829
Florin Coras93992a92017-05-24 18:03:56 -07002830 if (tcp_opts_wscale (&child0->rcv_opts))
2831 child0->snd_wscale = child0->rcv_opts.wscale;
Florin Corase04c2992017-03-01 08:17:34 -08002832
Florin Corasf03a59a2017-06-09 21:07:32 -07002833 child0->snd_wnd = clib_net_to_host_u16 (th0->window)
2834 << child0->snd_wscale;
Florin Corase04c2992017-03-01 08:17:34 -08002835 child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2836 child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
2837
2838 tcp_connection_init_vars (child0);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002839 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, child0, 1);
Florin Corase69f4952017-03-07 10:06:24 -08002840
Florin Coras6dfb5ac2017-11-09 16:26:03 -08002841 if (stream_session_accept (&child0->connection, lc0->c_s_index,
2842 0 /* notify */ ))
2843 {
2844 clib_warning ("session accept fail");
2845 tcp_connection_cleanup (child0);
2846 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
2847 goto drop;
2848 }
2849
Dave Barach68b0fb02017-02-28 15:15:56 -05002850 /* Reuse buffer to make syn-ack and send */
2851 tcp_make_synack (child0, b0);
2852 next0 = tcp_next_output (is_ip4);
Florin Corasab0289a2017-08-14 11:25:25 -07002853 tcp_timer_set (child0, TCP_TIMER_ESTABLISH, TCP_SYN_RCVD_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002854
2855 drop:
2856 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2857 {
Clement Durand6cf260c2017-04-13 13:27:04 +02002858 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2859 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
2860 clib_memcpy (&t0->tcp_connection, lc0,
2861 sizeof (t0->tcp_connection));
Dave Barach68b0fb02017-02-28 15:15:56 -05002862 }
2863
Florin Coras00cd22d2018-04-18 13:20:18 -07002864 n_syns += (error0 == TCP_ERROR_NONE);
Florin Corase04c2992017-03-01 08:17:34 -08002865 b0->error = node->errors[error0];
Dave Barach68b0fb02017-02-28 15:15:56 -05002866
2867 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2868 n_left_to_next, bi0, next0);
2869 }
2870
2871 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2872 }
Florin Coras00cd22d2018-04-18 13:20:18 -07002873
2874 tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
Dave Barach68b0fb02017-02-28 15:15:56 -05002875 return from_frame->n_vectors;
2876}
2877
2878static uword
2879tcp4_listen (vlib_main_t * vm, vlib_node_runtime_t * node,
2880 vlib_frame_t * from_frame)
2881{
2882 return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2883}
2884
2885static uword
2886tcp6_listen (vlib_main_t * vm, vlib_node_runtime_t * node,
2887 vlib_frame_t * from_frame)
2888{
2889 return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2890}
2891
2892/* *INDENT-OFF* */
2893VLIB_REGISTER_NODE (tcp4_listen_node) =
2894{
2895 .function = tcp4_listen,
2896 .name = "tcp4-listen",
2897 /* Takes a vector of packets. */
2898 .vector_size = sizeof (u32),
2899 .n_errors = TCP_N_ERROR,
2900 .error_strings = tcp_error_strings,
2901 .n_next_nodes = TCP_LISTEN_N_NEXT,
2902 .next_nodes =
2903 {
2904#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
2905 foreach_tcp_state_next
2906#undef _
2907 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002908 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002909};
2910/* *INDENT-ON* */
2911
2912VLIB_NODE_FUNCTION_MULTIARCH (tcp4_listen_node, tcp4_listen);
2913
2914/* *INDENT-OFF* */
2915VLIB_REGISTER_NODE (tcp6_listen_node) =
2916{
2917 .function = tcp6_listen,
2918 .name = "tcp6-listen",
2919 /* Takes a vector of packets. */
2920 .vector_size = sizeof (u32),
2921 .n_errors = TCP_N_ERROR,
2922 .error_strings = tcp_error_strings,
2923 .n_next_nodes = TCP_LISTEN_N_NEXT,
2924 .next_nodes =
2925 {
2926#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
2927 foreach_tcp_state_next
2928#undef _
2929 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002930 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002931};
2932/* *INDENT-ON* */
2933
2934VLIB_NODE_FUNCTION_MULTIARCH (tcp6_listen_node, tcp6_listen);
2935
2936vlib_node_registration_t tcp4_input_node;
2937vlib_node_registration_t tcp6_input_node;
2938
2939typedef enum _tcp_input_next
2940{
2941 TCP_INPUT_NEXT_DROP,
2942 TCP_INPUT_NEXT_LISTEN,
2943 TCP_INPUT_NEXT_RCV_PROCESS,
2944 TCP_INPUT_NEXT_SYN_SENT,
2945 TCP_INPUT_NEXT_ESTABLISHED,
2946 TCP_INPUT_NEXT_RESET,
Pierre Pfister7fe51f32017-09-20 08:48:36 +02002947 TCP_INPUT_NEXT_PUNT,
Dave Barach68b0fb02017-02-28 15:15:56 -05002948 TCP_INPUT_N_NEXT
2949} tcp_input_next_t;
2950
2951#define foreach_tcp4_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002952 _ (DROP, "ip4-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05002953 _ (LISTEN, "tcp4-listen") \
2954 _ (RCV_PROCESS, "tcp4-rcv-process") \
2955 _ (SYN_SENT, "tcp4-syn-sent") \
2956 _ (ESTABLISHED, "tcp4-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02002957 _ (RESET, "tcp4-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002958 _ (PUNT, "ip4-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05002959
2960#define foreach_tcp6_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002961 _ (DROP, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05002962 _ (LISTEN, "tcp6-listen") \
2963 _ (RCV_PROCESS, "tcp6-rcv-process") \
2964 _ (SYN_SENT, "tcp6-syn-sent") \
2965 _ (ESTABLISHED, "tcp6-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02002966 _ (RESET, "tcp6-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002967 _ (PUNT, "ip6-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05002968
Dave Barach68b0fb02017-02-28 15:15:56 -05002969#define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
2970
2971always_inline uword
2972tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2973 vlib_frame_t * from_frame, int is_ip4)
2974{
2975 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02002976 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002977 tcp_main_t *tm = vnet_get_tcp_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -05002978
2979 from = vlib_frame_vector_args (from_frame);
2980 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002981 next_index = node->cached_next_index;
Florin Coras82d3ec82017-08-14 08:10:42 -07002982 tcp_set_time_now (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05002983
2984 while (n_left_from > 0)
2985 {
2986 u32 n_left_to_next;
2987
2988 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2989
2990 while (n_left_from > 0 && n_left_to_next > 0)
2991 {
Florin Coras82b13a82017-04-25 11:58:06 -07002992 int n_advance_bytes0, n_data_bytes0;
Florin Corascea194d2017-10-02 00:18:51 -07002993 u32 bi0, fib_index0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002994 vlib_buffer_t *b0;
2995 tcp_header_t *tcp0 = 0;
2996 tcp_connection_t *tc0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002997 transport_connection_t *tconn;
Dave Barach68b0fb02017-02-28 15:15:56 -05002998 ip4_header_t *ip40;
2999 ip6_header_t *ip60;
3000 u32 error0 = TCP_ERROR_NO_LISTENER, next0 = TCP_INPUT_NEXT_DROP;
Florin Corasdff48db2017-11-19 18:06:58 -08003001 u8 flags0, is_filtered = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003002
3003 bi0 = from[0];
3004 to_next[0] = bi0;
3005 from += 1;
3006 to_next += 1;
3007 n_left_from -= 1;
3008 n_left_to_next -= 1;
3009
3010 b0 = vlib_get_buffer (vm, bi0);
Florin Corasd79b41e2017-03-04 05:37:52 -08003011 vnet_buffer (b0)->tcp.flags = 0;
Florin Corascea194d2017-10-02 00:18:51 -07003012 fib_index0 = vnet_buffer (b0)->ip.fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05003013
Florin Coras82b13a82017-04-25 11:58:06 -07003014 /* Checksum computed by ipx_local no need to compute again */
3015
Dave Barach68b0fb02017-02-28 15:15:56 -05003016 if (is_ip4)
3017 {
3018 ip40 = vlib_buffer_get_current (b0);
3019 tcp0 = ip4_next_header (ip40);
Florin Coras82b13a82017-04-25 11:58:06 -07003020 n_advance_bytes0 = (ip4_header_bytes (ip40)
3021 + tcp_header_bytes (tcp0));
3022 n_data_bytes0 = clib_net_to_host_u16 (ip40->length)
3023 - n_advance_bytes0;
Florin Coras3cbc04b2017-10-02 00:18:51 -07003024 tconn = session_lookup_connection_wt4 (fib_index0,
3025 &ip40->dst_address,
3026 &ip40->src_address,
3027 tcp0->dst_port,
3028 tcp0->src_port,
3029 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08003030 my_thread_index,
3031 &is_filtered);
Dave Barach68b0fb02017-02-28 15:15:56 -05003032 }
3033 else
3034 {
3035 ip60 = vlib_buffer_get_current (b0);
3036 tcp0 = ip6_next_header (ip60);
Florin Coras82b13a82017-04-25 11:58:06 -07003037 n_advance_bytes0 = tcp_header_bytes (tcp0);
3038 n_data_bytes0 = clib_net_to_host_u16 (ip60->payload_length)
3039 - n_advance_bytes0;
3040 n_advance_bytes0 += sizeof (ip60[0]);
Florin Coras3cbc04b2017-10-02 00:18:51 -07003041 tconn = session_lookup_connection_wt6 (fib_index0,
3042 &ip60->dst_address,
3043 &ip60->src_address,
3044 tcp0->dst_port,
3045 tcp0->src_port,
3046 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08003047 my_thread_index,
3048 &is_filtered);
Dave Barach68b0fb02017-02-28 15:15:56 -05003049 }
3050
Florin Coras82b13a82017-04-25 11:58:06 -07003051 /* Length check */
3052 if (PREDICT_FALSE (n_advance_bytes0 < 0))
3053 {
3054 error0 = TCP_ERROR_LENGTH;
3055 goto done;
3056 }
3057
Florin Corasf988e692017-11-27 04:34:14 -05003058 vnet_buffer (b0)->tcp.hdr_offset = (u8 *) tcp0
3059 - (u8 *) vlib_buffer_get_current (b0);
3060
Dave Barach68b0fb02017-02-28 15:15:56 -05003061 /* Session exists */
Florin Corasdff48db2017-11-19 18:06:58 -08003062 if (PREDICT_TRUE (0 != tconn))
Dave Barach68b0fb02017-02-28 15:15:56 -05003063 {
Florin Corasdff48db2017-11-19 18:06:58 -08003064 tc0 = tcp_get_connection_from_transport (tconn);
3065 ASSERT (tcp_lookup_is_valid (tc0, tcp0));
3066
Dave Barach68b0fb02017-02-28 15:15:56 -05003067 /* Save connection index */
3068 vnet_buffer (b0)->tcp.connection_index = tc0->c_c_index;
3069 vnet_buffer (b0)->tcp.seq_number =
3070 clib_net_to_host_u32 (tcp0->seq_number);
3071 vnet_buffer (b0)->tcp.ack_number =
3072 clib_net_to_host_u32 (tcp0->ack_number);
3073
Florin Coras82b13a82017-04-25 11:58:06 -07003074 vnet_buffer (b0)->tcp.data_offset = n_advance_bytes0;
3075 vnet_buffer (b0)->tcp.data_len = n_data_bytes0;
3076
Dave Barach68b0fb02017-02-28 15:15:56 -05003077 flags0 = tcp0->flags & filter_flags;
3078 next0 = tm->dispatch_table[tc0->state][flags0].next;
3079 error0 = tm->dispatch_table[tc0->state][flags0].error;
3080
Florin Corasdc629cd2017-05-09 00:52:37 -07003081 if (PREDICT_FALSE (error0 == TCP_ERROR_DISPATCH
3082 || next0 == TCP_INPUT_NEXT_RESET))
Dave Barach68b0fb02017-02-28 15:15:56 -05003083 {
3084 /* Overload tcp flags to store state */
Florin Corasdc629cd2017-05-09 00:52:37 -07003085 tcp_state_t state0 = tc0->state;
Dave Barach68b0fb02017-02-28 15:15:56 -05003086 vnet_buffer (b0)->tcp.flags = tc0->state;
Florin Corasdc629cd2017-05-09 00:52:37 -07003087
3088 if (error0 == TCP_ERROR_DISPATCH)
3089 clib_warning ("disp error state %U flags %U",
Florin Corasbb292f42017-05-19 09:49:19 -07003090 format_tcp_state, state0, format_tcp_flags,
Florin Corasdc629cd2017-05-09 00:52:37 -07003091 (int) flags0);
Dave Barach68b0fb02017-02-28 15:15:56 -05003092 }
3093 }
3094 else
3095 {
Florin Corasdff48db2017-11-19 18:06:58 -08003096 if (is_filtered)
3097 {
3098 next0 = TCP_INPUT_NEXT_DROP;
3099 error0 = TCP_ERROR_FILTERED;
3100 }
3101 else if ((is_ip4 && tm->punt_unknown4) ||
3102 (!is_ip4 && tm->punt_unknown6))
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003103 {
3104 next0 = TCP_INPUT_NEXT_PUNT;
3105 error0 = TCP_ERROR_PUNT;
3106 }
3107 else
3108 {
3109 /* Send reset */
3110 next0 = TCP_INPUT_NEXT_RESET;
3111 error0 = TCP_ERROR_NO_LISTENER;
3112 }
Florin Corasdff48db2017-11-19 18:06:58 -08003113 tc0 = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003114 }
3115
Florin Coras82b13a82017-04-25 11:58:06 -07003116 done:
Dave Barach68b0fb02017-02-28 15:15:56 -05003117 b0->error = error0 ? node->errors[error0] : 0;
3118
3119 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3120 {
Florin Corasdff48db2017-11-19 18:06:58 -08003121 tcp_rx_trace_t *t0;
3122 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Florin Coras82b13a82017-04-25 11:58:06 -07003123 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05003124 }
Dave Barach68b0fb02017-02-28 15:15:56 -05003125 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
3126 n_left_to_next, bi0, next0);
3127 }
3128
3129 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
3130 }
3131
3132 return from_frame->n_vectors;
3133}
3134
3135static uword
3136tcp4_input (vlib_main_t * vm, vlib_node_runtime_t * node,
3137 vlib_frame_t * from_frame)
3138{
3139 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3140}
3141
3142static uword
3143tcp6_input (vlib_main_t * vm, vlib_node_runtime_t * node,
3144 vlib_frame_t * from_frame)
3145{
3146 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3147}
3148
3149/* *INDENT-OFF* */
3150VLIB_REGISTER_NODE (tcp4_input_node) =
3151{
3152 .function = tcp4_input,
3153 .name = "tcp4-input",
3154 /* Takes a vector of packets. */
3155 .vector_size = sizeof (u32),
3156 .n_errors = TCP_N_ERROR,
3157 .error_strings = tcp_error_strings,
3158 .n_next_nodes = TCP_INPUT_N_NEXT,
3159 .next_nodes =
3160 {
3161#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3162 foreach_tcp4_input_next
3163#undef _
3164 },
3165 .format_buffer = format_tcp_header,
3166 .format_trace = format_tcp_rx_trace,
3167};
3168/* *INDENT-ON* */
3169
3170VLIB_NODE_FUNCTION_MULTIARCH (tcp4_input_node, tcp4_input);
3171
3172/* *INDENT-OFF* */
3173VLIB_REGISTER_NODE (tcp6_input_node) =
3174{
3175 .function = tcp6_input,
3176 .name = "tcp6-input",
3177 /* Takes a vector of packets. */
3178 .vector_size = sizeof (u32),
3179 .n_errors = TCP_N_ERROR,
3180 .error_strings = tcp_error_strings,
3181 .n_next_nodes = TCP_INPUT_N_NEXT,
3182 .next_nodes =
3183 {
3184#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3185 foreach_tcp6_input_next
3186#undef _
3187 },
3188 .format_buffer = format_tcp_header,
3189 .format_trace = format_tcp_rx_trace,
3190};
3191/* *INDENT-ON* */
3192
3193VLIB_NODE_FUNCTION_MULTIARCH (tcp6_input_node, tcp6_input);
Dave Barach68b0fb02017-02-28 15:15:56 -05003194
3195static void
3196tcp_dispatch_table_init (tcp_main_t * tm)
3197{
3198 int i, j;
3199 for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3200 for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3201 {
3202 tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3203 tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3204 }
3205
3206#define _(t,f,n,e) \
3207do { \
3208 tm->dispatch_table[TCP_STATE_##t][f].next = (n); \
3209 tm->dispatch_table[TCP_STATE_##t][f].error = (e); \
3210} while (0)
3211
3212 /* SYNs for new connections -> tcp-listen. */
3213 _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003214 _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
Florin Coras00cd22d2018-04-18 13:20:18 -07003215 _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_RST_RCVD);
Dave Barach2c25a622017-06-26 11:35:07 -04003216 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3217 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003218 /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3219 _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc28764f2017-04-26 00:08:42 -07003220 _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003221 _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003222 /* SYN-ACK for a SYN */
3223 _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3224 TCP_ERROR_NONE);
3225 _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3226 _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3227 _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3228 TCP_ERROR_NONE);
3229 /* ACK for for established connection -> tcp-established. */
3230 _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3231 /* FIN for for established connection -> tcp-established. */
3232 _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3233 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3234 TCP_ERROR_NONE);
Florin Corasd79b41e2017-03-04 05:37:52 -08003235 _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003236 _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3237 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003238 _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003239 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3240 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003241 /* ACK or FIN-ACK to our FIN */
3242 _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3243 _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
3244 TCP_ERROR_NONE);
3245 /* FIN in reply to our FIN from the other side */
3246 _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003247 _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003248 /* FIN confirming that the peer (app) has closed */
3249 _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasf6d68ed2017-05-07 19:12:02 -07003250 _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003251 _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3252 TCP_ERROR_NONE);
Florin Corasf03a59a2017-06-09 21:07:32 -07003253 _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3254 _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3255 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003256 _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003257 _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3258 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3259 TCP_ERROR_NONE);
Florin Corasdb84e572017-05-09 18:54:52 -07003260 _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003261 _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3262 _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3263 TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003264 _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras50958952017-08-29 14:50:13 -07003265 _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras9d063042017-09-14 03:08:00 -04003266 _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Corasdc629cd2017-05-09 00:52:37 -07003267 _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras9d063042017-09-14 03:08:00 -04003268 _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003269 TCP_ERROR_CONNECTION_CLOSED);
Dave Barach68b0fb02017-02-28 15:15:56 -05003270#undef _
3271}
3272
3273clib_error_t *
3274tcp_input_init (vlib_main_t * vm)
3275{
3276 clib_error_t *error = 0;
3277 tcp_main_t *tm = vnet_get_tcp_main ();
3278
3279 if ((error = vlib_call_init_function (vm, tcp_init)))
3280 return error;
3281
3282 /* Initialize dispatch table. */
3283 tcp_dispatch_table_init (tm);
3284
3285 return error;
3286}
3287
3288VLIB_INIT_FUNCTION (tcp_input_init);
3289
3290/*
3291 * fd.io coding-style-patch-verification: ON
3292 *
3293 * Local Variables:
3294 * eval: (c-set-style "gnu")
3295 * End:
3296 */