blob: 10f50fefc09364761fc5013503a9d7d9432d65be [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vppinfra/sparse_vec.h>
17#include <vnet/tcp/tcp_packet.h>
18#include <vnet/tcp/tcp.h>
19#include <vnet/session/session.h>
20#include <math.h>
21
22static char *tcp_error_strings[] = {
23#define tcp_error(n,s) s,
24#include <vnet/tcp/tcp_error.def>
25#undef tcp_error
26};
27
28/* All TCP nodes have the same outgoing arcs */
29#define foreach_tcp_state_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080030 _ (DROP4, "ip4-drop") \
31 _ (DROP6, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -050032 _ (TCP4_OUTPUT, "tcp4-output") \
33 _ (TCP6_OUTPUT, "tcp6-output")
34
35typedef enum _tcp_established_next
36{
37#define _(s,n) TCP_ESTABLISHED_NEXT_##s,
38 foreach_tcp_state_next
39#undef _
40 TCP_ESTABLISHED_N_NEXT,
41} tcp_established_next_t;
42
43typedef enum _tcp_rcv_process_next
44{
45#define _(s,n) TCP_RCV_PROCESS_NEXT_##s,
46 foreach_tcp_state_next
47#undef _
48 TCP_RCV_PROCESS_N_NEXT,
49} tcp_rcv_process_next_t;
50
51typedef enum _tcp_syn_sent_next
52{
53#define _(s,n) TCP_SYN_SENT_NEXT_##s,
54 foreach_tcp_state_next
55#undef _
56 TCP_SYN_SENT_N_NEXT,
57} tcp_syn_sent_next_t;
58
59typedef enum _tcp_listen_next
60{
61#define _(s,n) TCP_LISTEN_NEXT_##s,
62 foreach_tcp_state_next
63#undef _
64 TCP_LISTEN_N_NEXT,
65} tcp_listen_next_t;
66
67/* Generic, state independent indices */
68typedef enum _tcp_state_next
69{
70#define _(s,n) TCP_NEXT_##s,
71 foreach_tcp_state_next
72#undef _
73 TCP_STATE_N_NEXT,
74} tcp_state_next_t;
75
76#define tcp_next_output(is_ip4) (is_ip4 ? TCP_NEXT_TCP4_OUTPUT \
77 : TCP_NEXT_TCP6_OUTPUT)
78
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080079#define tcp_next_drop(is_ip4) (is_ip4 ? TCP_NEXT_DROP4 \
80 : TCP_NEXT_DROP6)
81
Dave Barach68b0fb02017-02-28 15:15:56 -050082vlib_node_registration_t tcp4_established_node;
83vlib_node_registration_t tcp6_established_node;
84
85/**
86 * Validate segment sequence number. As per RFC793:
87 *
88 * Segment Receive Test
89 * Length Window
90 * ------- ------- -------------------------------------------
91 * 0 0 SEG.SEQ = RCV.NXT
92 * 0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
93 * >0 0 not acceptable
94 * >0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
95 * or RCV.NXT =< SEG.SEQ+SEG.LEN-1 < RCV.NXT+RCV.WND
96 *
97 * This ultimately consists in checking if segment falls within the window.
98 * The one important difference compared to RFC793 is that we use rcv_las,
99 * or the rcv_nxt at last ack sent instead of rcv_nxt since that's the
100 * peer's reference when computing our receive window.
101 *
Florin Coras6792ec02017-03-13 03:49:51 -0700102 * This:
103 * seq_leq (end_seq, tc->rcv_las + tc->rcv_wnd) && seq_geq (seq, tc->rcv_las)
104 * however, is too strict when we have retransmits. Instead we just check that
105 * the seq is not beyond the right edge and that the end of the segment is not
106 * less than the left edge.
107 *
108 * N.B. rcv_nxt and rcv_wnd are both updated in this node if acks are sent, so
109 * use rcv_nxt in the right edge window test instead of rcv_las.
110 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500111 */
112always_inline u8
113tcp_segment_in_rcv_wnd (tcp_connection_t * tc, u32 seq, u32 end_seq)
114{
Florin Coras6792ec02017-03-13 03:49:51 -0700115 return (seq_geq (end_seq, tc->rcv_las)
116 && seq_leq (seq, tc->rcv_nxt + tc->rcv_wnd));
Dave Barach68b0fb02017-02-28 15:15:56 -0500117}
118
Florin Corasdb84e572017-05-09 18:54:52 -0700119/**
120 * Parse TCP header options.
121 *
122 * @param th TCP header
123 * @param to TCP options data structure to be populated
124 * @return -1 if parsing failed
125 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700126static int
Dave Barach68b0fb02017-02-28 15:15:56 -0500127tcp_options_parse (tcp_header_t * th, tcp_options_t * to)
128{
129 const u8 *data;
130 u8 opt_len, opts_len, kind;
131 int j;
132 sack_block_t b;
133
134 opts_len = (tcp_doff (th) << 2) - sizeof (tcp_header_t);
135 data = (const u8 *) (th + 1);
136
137 /* Zero out all flags but those set in SYN */
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{
Florin Corasca1c8f32018-05-23 21:01:30 -0700278 /* We could get a burst of RSTs interleaved with acks */
279 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
280 {
281 tcp_send_reset (tc0);
282 *error0 = TCP_ERROR_CONNECTION_CLOSED;
283 goto drop;
284 }
285
Dave Barach68b0fb02017-02-28 15:15:56 -0500286 if (PREDICT_FALSE (!tcp_ack (th0) && !tcp_rst (th0) && !tcp_syn (th0)))
Florin Coras00cd22d2018-04-18 13:20:18 -0700287 {
288 *error0 = TCP_ERROR_SEGMENT_INVALID;
289 goto drop;
290 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500291
Florin Coras93992a92017-05-24 18:03:56 -0700292 if (PREDICT_FALSE (tcp_options_parse (th0, &tc0->rcv_opts)))
Florin Corasdb84e572017-05-09 18:54:52 -0700293 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400294 clib_warning ("options parse error");
Florin Coras00cd22d2018-04-18 13:20:18 -0700295 *error0 = TCP_ERROR_OPTIONS;
296 goto drop;
Florin Corasdb84e572017-05-09 18:54:52 -0700297 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500298
Florin Coras00cd22d2018-04-18 13:20:18 -0700299 if (PREDICT_FALSE (tcp_segment_check_paws (tc0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500300 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700301 *error0 = TCP_ERROR_PAWS;
Florin Coras93992a92017-05-24 18:03:56 -0700302 if (CLIB_DEBUG > 2)
Florin Corasca1c8f32018-05-23 21:01:30 -0700303 clib_warning ("paws failed\n%U", format_tcp_connection, tc0, 2);
Florin Corasc28764f2017-04-26 00:08:42 -0700304 TCP_EVT_DBG (TCP_EVT_PAWS_FAIL, tc0, vnet_buffer (b0)->tcp.seq_number,
305 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500306
307 /* If it just so happens that a segment updates tsval_recent for a
308 * segment over 24 days old, invalidate tsval_recent. */
309 if (timestamp_lt (tc0->tsval_recent_age + TCP_PAWS_IDLE,
310 tcp_time_now ()))
311 {
312 /* Age isn't reset until we get a valid tsval (bsd inspired) */
313 tc0->tsval_recent = 0;
Florin Corasc28764f2017-04-26 00:08:42 -0700314 clib_warning ("paws failed - really old segment. REALLY?");
Dave Barach68b0fb02017-02-28 15:15:56 -0500315 }
316 else
317 {
318 /* Drop after ack if not rst */
319 if (!tcp_rst (th0))
320 {
321 tcp_make_ack (tc0, b0);
Florin Corasca1c8f32018-05-23 21:01:30 -0700322 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
Florin Coras00cd22d2018-04-18 13:20:18 -0700323 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500324 }
325 }
Florin Coras00cd22d2018-04-18 13:20:18 -0700326 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -0500327 }
328
329 /* 1st: check sequence number */
330 if (!tcp_segment_in_rcv_wnd (tc0, vnet_buffer (b0)->tcp.seq_number,
331 vnet_buffer (b0)->tcp.seq_end))
332 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700333 *error0 = TCP_ERROR_RCV_WND;
Florin Coras6792ec02017-03-13 03:49:51 -0700334 /* If our window is 0 and the packet is in sequence, let it pass
Florin Coras00cd22d2018-04-18 13:20:18 -0700335 * through for ack processing. It should be dropped later. */
336 if (!(tc0->rcv_wnd == 0
337 && tc0->rcv_nxt == vnet_buffer (b0)->tcp.seq_number))
Florin Coras6792ec02017-03-13 03:49:51 -0700338 {
339 /* If not RST, send dup ack */
340 if (!tcp_rst (th0))
341 {
342 tcp_make_ack (tc0, b0);
Florin Corasca1c8f32018-05-23 21:01:30 -0700343 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
Florin Coras00cd22d2018-04-18 13:20:18 -0700344 goto error;
Florin Coras6792ec02017-03-13 03:49:51 -0700345 }
Florin Coras00cd22d2018-04-18 13:20:18 -0700346 goto drop;
Florin Coras6792ec02017-03-13 03:49:51 -0700347 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500348 }
349
350 /* 2nd: check the RST bit */
Florin Coras00cd22d2018-04-18 13:20:18 -0700351 if (PREDICT_FALSE (tcp_rst (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500352 {
Florin Corasd79b41e2017-03-04 05:37:52 -0800353 tcp_connection_reset (tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -0700354 *error0 = TCP_ERROR_RST_RCVD;
355 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -0500356 }
357
358 /* 3rd: check security and precedence (skip) */
359
360 /* 4th: check the SYN bit */
Florin Coras00cd22d2018-04-18 13:20:18 -0700361 if (PREDICT_FALSE (tcp_syn (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500362 {
Florin Coras6534b7a2017-07-18 05:38:03 -0400363 /* TODO implement RFC 5961 */
Florin Coras9d063042017-09-14 03:08:00 -0400364 if (tc0->state == TCP_STATE_SYN_RCVD)
365 {
366 tcp_make_synack (tc0, b0);
367 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, tc0, 0);
368 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400369 else
Florin Coras9d063042017-09-14 03:08:00 -0400370 {
371 tcp_make_ack (tc0, b0);
372 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, tc0);
373 }
Florin Coras00cd22d2018-04-18 13:20:18 -0700374 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500375 }
376
Florin Corasc28764f2017-04-26 00:08:42 -0700377 /* If segment in window, save timestamp */
378 tcp_update_timestamp (tc0, vnet_buffer (b0)->tcp.seq_number,
379 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500380 return 0;
Florin Coras00cd22d2018-04-18 13:20:18 -0700381
382drop:
383 *next0 = tcp_next_drop (tc0->c_is_ip4);
384 return -1;
385error:
386 *next0 = tcp_next_output (tc0->c_is_ip4);
387 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500388}
389
390always_inline int
391tcp_rcv_ack_is_acceptable (tcp_connection_t * tc0, vlib_buffer_t * tb0)
392{
393 /* SND.UNA =< SEG.ACK =< SND.NXT */
394 return (seq_leq (tc0->snd_una, vnet_buffer (tb0)->tcp.ack_number)
395 && seq_leq (vnet_buffer (tb0)->tcp.ack_number, tc0->snd_nxt));
396}
397
398/**
399 * Compute smoothed RTT as per VJ's '88 SIGCOMM and RFC6298
400 *
401 * Note that although the original article, srtt and rttvar are scaled
402 * to minimize round-off errors, here we don't. Instead, we rely on
403 * better precision time measurements.
404 *
405 * TODO support us rtt resolution
406 */
407static void
408tcp_estimate_rtt (tcp_connection_t * tc, u32 mrtt)
409{
Florin Corasf03a59a2017-06-09 21:07:32 -0700410 int err, diff;
Dave Barach68b0fb02017-02-28 15:15:56 -0500411
412 if (tc->srtt != 0)
413 {
414 err = mrtt - tc->srtt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500415
416 /* XXX Drop in RTT results in RTTVAR increase and bigger RTO.
417 * The increase should be bound */
Florin Corasf03a59a2017-06-09 21:07:32 -0700418 tc->srtt = clib_max ((int) tc->srtt + (err >> 3), 1);
419 diff = (clib_abs (err) - (int) tc->rttvar) >> 2;
420 tc->rttvar = clib_max ((int) tc->rttvar + diff, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500421 }
422 else
423 {
424 /* First measurement. */
425 tc->srtt = mrtt;
Florin Coras6792ec02017-03-13 03:49:51 -0700426 tc->rttvar = mrtt >> 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500427 }
428}
429
Florin Coras93992a92017-05-24 18:03:56 -0700430void
431tcp_update_rto (tcp_connection_t * tc)
432{
433 tc->rto = clib_min (tc->srtt + (tc->rttvar << 2), TCP_RTO_MAX);
Florin Corasf03a59a2017-06-09 21:07:32 -0700434 tc->rto = clib_max (tc->rto, TCP_RTO_MIN);
Florin Coras93992a92017-05-24 18:03:56 -0700435}
436
Florin Corasf1762d62017-09-24 19:43:08 -0400437/**
438 * Update RTT estimate and RTO timer
Dave Barach68b0fb02017-02-28 15:15:56 -0500439 *
440 * Measure RTT: We have two sources of RTT measurements: TSOPT and ACK
441 * timing. Middle boxes are known to fiddle with TCP options so we
442 * should give higher priority to ACK timing.
443 *
Florin Corasf1762d62017-09-24 19:43:08 -0400444 * This should be called only if previously sent bytes have been acked.
445 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500446 * return 1 if valid rtt 0 otherwise
447 */
448static int
449tcp_update_rtt (tcp_connection_t * tc, u32 ack)
450{
451 u32 mrtt = 0;
452
453 /* Karn's rule, part 1. Don't use retransmitted segments to estimate
454 * RTT because they're ambiguous. */
Florin Corasf1762d62017-09-24 19:43:08 -0400455 if (tcp_in_cong_recovery (tc) || tc->sack_sb.sacked_bytes)
Florin Coras3ec66b02018-08-23 16:27:05 -0700456 {
457 if (tcp_in_recovery (tc))
458 return 0;
459 goto done;
460 }
Florin Corasf1762d62017-09-24 19:43:08 -0400461
462 if (tc->rtt_ts && seq_geq (ack, tc->rtt_seq))
Dave Barach68b0fb02017-02-28 15:15:56 -0500463 {
464 mrtt = tcp_time_now () - tc->rtt_ts;
Dave Barach68b0fb02017-02-28 15:15:56 -0500465 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500466 /* As per RFC7323 TSecr can be used for RTTM only if the segment advances
467 * snd_una, i.e., the left side of the send window:
Florin Corasf1762d62017-09-24 19:43:08 -0400468 * seq_lt (tc->snd_una, ack). This is a condition for calling update_rtt */
469 else if (tcp_opts_tstamp (&tc->rcv_opts) && tc->rcv_opts.tsecr)
Dave Barach68b0fb02017-02-28 15:15:56 -0500470 {
Florin Coras93992a92017-05-24 18:03:56 -0700471 mrtt = tcp_time_now () - tc->rcv_opts.tsecr;
Dave Barach68b0fb02017-02-28 15:15:56 -0500472 }
473
Florin Corasf1762d62017-09-24 19:43:08 -0400474 /* Ignore dubious measurements */
475 if (mrtt == 0 || mrtt > TCP_RTT_MAX)
476 goto done;
477
478 tcp_estimate_rtt (tc, mrtt);
479
480done:
481
Florin Coras3af90fc2017-05-03 21:09:42 -0700482 /* Allow measuring of a new RTT */
483 tc->rtt_ts = 0;
484
Florin Corasf1762d62017-09-24 19:43:08 -0400485 /* If we got here something must've been ACKed so make sure boff is 0,
Florin Coras3ec66b02018-08-23 16:27:05 -0700486 * even if mrtt is not valid since we update the rto lower */
Florin Corasf1762d62017-09-24 19:43:08 -0400487 tc->rto_boff = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700488 tcp_update_rto (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500489
Florin Coras3af90fc2017-05-03 21:09:42 -0700490 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500491}
492
493/**
494 * Dequeue bytes that have been acked and while at it update RTT estimates.
495 */
496static void
497tcp_dequeue_acked (tcp_connection_t * tc, u32 ack)
498{
Florin Coras93992a92017-05-24 18:03:56 -0700499 /* Dequeue the newly ACKed add SACKed bytes */
500 stream_session_dequeue_drop (&tc->connection,
501 tc->bytes_acked + tc->sack_sb.snd_una_adv);
502
503 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
Dave Barach68b0fb02017-02-28 15:15:56 -0500504
505 /* Update rtt and rto */
Florin Coras3e350af2017-03-30 02:54:28 -0700506 tcp_update_rtt (tc, ack);
Florin Coras93992a92017-05-24 18:03:56 -0700507
508 /* If everything has been acked, stop retransmit timer
509 * otherwise update. */
510 tcp_retransmit_timer_update (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500511}
512
Florin Coras6792ec02017-03-13 03:49:51 -0700513/**
Florin Coras93992a92017-05-24 18:03:56 -0700514 * Check if duplicate ack as per RFC5681 Sec. 2
515 */
516static u8
517tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd,
518 u32 prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500519{
Florin Coras93992a92017-05-24 18:03:56 -0700520 return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500521 && seq_gt (tc->snd_una_max, tc->snd_una)
522 && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
Florin Coras93992a92017-05-24 18:03:56 -0700523 && (prev_snd_wnd == tc->snd_wnd));
524}
525
526/**
527 * Checks if ack is a congestion control event.
528 */
529static u8
530tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b,
531 u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
532{
533 /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
534 * defined to be 'duplicate' */
535 *is_dack = tc->sack_sb.last_sacked_bytes
536 || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
537
Dave Barach2c25a622017-06-26 11:35:07 -0400538 return ((*is_dack || tcp_in_cong_recovery (tc)) && !tcp_is_lost_fin (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -0500539}
540
Florin Coras0dbd5172018-06-25 16:19:34 -0700541static u32
542scoreboard_hole_index (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
543{
544 ASSERT (!pool_is_free_index (sb->holes, hole - sb->holes));
545 return hole - sb->holes;
546}
547
548static u32
549scoreboard_hole_bytes (sack_scoreboard_hole_t * hole)
550{
551 return hole->end - hole->start;
552}
553
554sack_scoreboard_hole_t *
555scoreboard_get_hole (sack_scoreboard_t * sb, u32 index)
556{
557 if (index != TCP_INVALID_SACK_HOLE_INDEX)
558 return pool_elt_at_index (sb->holes, index);
559 return 0;
560}
561
562sack_scoreboard_hole_t *
563scoreboard_next_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
564{
565 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
566 return pool_elt_at_index (sb->holes, hole->next);
567 return 0;
568}
569
570sack_scoreboard_hole_t *
571scoreboard_prev_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
572{
573 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
574 return pool_elt_at_index (sb->holes, hole->prev);
575 return 0;
576}
577
578sack_scoreboard_hole_t *
579scoreboard_first_hole (sack_scoreboard_t * sb)
580{
581 if (sb->head != TCP_INVALID_SACK_HOLE_INDEX)
582 return pool_elt_at_index (sb->holes, sb->head);
583 return 0;
584}
585
586sack_scoreboard_hole_t *
587scoreboard_last_hole (sack_scoreboard_t * sb)
588{
589 if (sb->tail != TCP_INVALID_SACK_HOLE_INDEX)
590 return pool_elt_at_index (sb->holes, sb->tail);
591 return 0;
592}
593
594static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500595scoreboard_remove_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
596{
597 sack_scoreboard_hole_t *next, *prev;
598
599 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
600 {
601 next = pool_elt_at_index (sb->holes, hole->next);
602 next->prev = hole->prev;
603 }
Florin Coras93992a92017-05-24 18:03:56 -0700604 else
605 {
606 sb->tail = hole->prev;
607 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500608
609 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
610 {
611 prev = pool_elt_at_index (sb->holes, hole->prev);
612 prev->next = hole->next;
613 }
614 else
615 {
616 sb->head = hole->next;
617 }
618
Florin Coras93992a92017-05-24 18:03:56 -0700619 if (scoreboard_hole_index (sb, hole) == sb->cur_rxt_hole)
620 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
621
Florin Coras3eb50622017-07-13 01:24:57 -0400622 /* Poison the entry */
623 if (CLIB_DEBUG > 0)
624 memset (hole, 0xfe, sizeof (*hole));
625
Dave Barach68b0fb02017-02-28 15:15:56 -0500626 pool_put (sb->holes, hole);
627}
628
Florin Coras0dbd5172018-06-25 16:19:34 -0700629static sack_scoreboard_hole_t *
Florin Coras6792ec02017-03-13 03:49:51 -0700630scoreboard_insert_hole (sack_scoreboard_t * sb, u32 prev_index,
Dave Barach68b0fb02017-02-28 15:15:56 -0500631 u32 start, u32 end)
632{
Florin Coras6792ec02017-03-13 03:49:51 -0700633 sack_scoreboard_hole_t *hole, *next, *prev;
Dave Barach68b0fb02017-02-28 15:15:56 -0500634 u32 hole_index;
635
636 pool_get (sb->holes, hole);
637 memset (hole, 0, sizeof (*hole));
638
639 hole->start = start;
640 hole->end = end;
Florin Coras3eb50622017-07-13 01:24:57 -0400641 hole_index = scoreboard_hole_index (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500642
Florin Coras6792ec02017-03-13 03:49:51 -0700643 prev = scoreboard_get_hole (sb, prev_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500644 if (prev)
645 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700646 hole->prev = prev_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500647 hole->next = prev->next;
648
649 if ((next = scoreboard_next_hole (sb, hole)))
650 next->prev = hole_index;
Florin Corasf03a59a2017-06-09 21:07:32 -0700651 else
652 sb->tail = hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500653
654 prev->next = hole_index;
655 }
656 else
657 {
658 sb->head = hole_index;
659 hole->prev = TCP_INVALID_SACK_HOLE_INDEX;
660 hole->next = TCP_INVALID_SACK_HOLE_INDEX;
661 }
662
663 return hole;
664}
665
Florin Coras0dbd5172018-06-25 16:19:34 -0700666static void
Florin Corasf03a59a2017-06-09 21:07:32 -0700667scoreboard_update_bytes (tcp_connection_t * tc, sack_scoreboard_t * sb)
Florin Coras93992a92017-05-24 18:03:56 -0700668{
669 sack_scoreboard_hole_t *hole, *prev;
670 u32 bytes = 0, blks = 0;
671
672 sb->lost_bytes = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700673 sb->sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700674 hole = scoreboard_last_hole (sb);
675 if (!hole)
676 return;
677
678 if (seq_gt (sb->high_sacked, hole->end))
679 {
680 bytes = sb->high_sacked - hole->end;
681 blks = 1;
682 }
683
684 while ((prev = scoreboard_prev_hole (sb, hole))
685 && (bytes < (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
686 && blks < TCP_DUPACK_THRESHOLD))
687 {
688 bytes += hole->start - prev->end;
689 blks++;
690 hole = prev;
691 }
692
Florin Coras93992a92017-05-24 18:03:56 -0700693 while (hole)
694 {
695 sb->lost_bytes += scoreboard_hole_bytes (hole);
696 hole->is_lost = 1;
Florin Corasf03a59a2017-06-09 21:07:32 -0700697 prev = hole;
Florin Coras93992a92017-05-24 18:03:56 -0700698 hole = scoreboard_prev_hole (sb, hole);
Florin Corasf03a59a2017-06-09 21:07:32 -0700699 if (hole)
700 bytes += prev->start - hole->end;
Florin Coras93992a92017-05-24 18:03:56 -0700701 }
Florin Corasf03a59a2017-06-09 21:07:32 -0700702 sb->sacked_bytes = bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700703}
704
705/**
706 * Figure out the next hole to retransmit
707 *
708 * Follows logic proposed in RFC6675 Sec. 4, NextSeg()
709 */
710sack_scoreboard_hole_t *
711scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
712 sack_scoreboard_hole_t * start,
713 u8 have_sent_1_smss,
714 u8 * can_rescue, u8 * snd_limited)
715{
716 sack_scoreboard_hole_t *hole = 0;
717
718 hole = start ? start : scoreboard_first_hole (sb);
719 while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost)
720 hole = scoreboard_next_hole (sb, hole);
721
722 /* Nothing, return */
723 if (!hole)
724 {
725 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
726 return 0;
727 }
728
729 /* Rule (1): if higher than rxt, less than high_sacked and lost */
730 if (hole->is_lost && seq_lt (hole->start, sb->high_sacked))
731 {
732 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
733 }
734 else
735 {
736 /* Rule (2): output takes care of transmitting new data */
737 if (!have_sent_1_smss)
738 {
739 hole = 0;
740 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
741 }
742 /* Rule (3): if hole not lost */
743 else if (seq_lt (hole->start, sb->high_sacked))
744 {
745 *snd_limited = 1;
746 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
747 }
748 /* Rule (4): if hole beyond high_sacked */
749 else
750 {
751 ASSERT (seq_geq (hole->start, sb->high_sacked));
752 *snd_limited = 1;
753 *can_rescue = 1;
754 /* HighRxt MUST NOT be updated */
755 return 0;
756 }
757 }
758
759 if (hole && seq_lt (sb->high_rxt, hole->start))
760 sb->high_rxt = hole->start;
761
762 return hole;
763}
764
Florin Coras0dbd5172018-06-25 16:19:34 -0700765static void
Florin Coras3eb50622017-07-13 01:24:57 -0400766scoreboard_init_high_rxt (sack_scoreboard_t * sb, u32 seq)
Florin Coras93992a92017-05-24 18:03:56 -0700767{
768 sack_scoreboard_hole_t *hole;
769 hole = scoreboard_first_hole (sb);
Florin Coras3eb50622017-07-13 01:24:57 -0400770 if (hole)
771 {
772 seq = seq_gt (seq, hole->start) ? seq : hole->start;
773 sb->cur_rxt_hole = sb->head;
774 }
775 sb->high_rxt = seq;
776}
777
Florin Coras0dbd5172018-06-25 16:19:34 -0700778void
779scoreboard_init (sack_scoreboard_t * sb)
780{
781 sb->head = TCP_INVALID_SACK_HOLE_INDEX;
782 sb->tail = TCP_INVALID_SACK_HOLE_INDEX;
783 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
784}
785
786void
787scoreboard_clear (sack_scoreboard_t * sb)
788{
789 sack_scoreboard_hole_t *hole;
790 while ((hole = scoreboard_first_hole (sb)))
791 {
792 scoreboard_remove_hole (sb, hole);
793 }
794 ASSERT (sb->head == sb->tail && sb->head == TCP_INVALID_SACK_HOLE_INDEX);
795 ASSERT (pool_elts (sb->holes) == 0);
796 sb->sacked_bytes = 0;
797 sb->last_sacked_bytes = 0;
798 sb->last_bytes_delivered = 0;
799 sb->snd_una_adv = 0;
800 sb->high_sacked = 0;
801 sb->high_rxt = 0;
802 sb->lost_bytes = 0;
803 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
804}
805
Florin Coras3eb50622017-07-13 01:24:57 -0400806/**
807 * Test that scoreboard is sane after recovery
808 *
809 * Returns 1 if scoreboard is empty or if first hole beyond
810 * snd_una.
811 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700812static u8
Florin Coras3eb50622017-07-13 01:24:57 -0400813tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc)
814{
815 sack_scoreboard_hole_t *hole;
816 hole = scoreboard_first_hole (&tc->sack_sb);
817 return (!hole || seq_geq (hole->start, tc->snd_una));
Florin Coras93992a92017-05-24 18:03:56 -0700818}
819
820void
Dave Barach68b0fb02017-02-28 15:15:56 -0500821tcp_rcv_sacks (tcp_connection_t * tc, u32 ack)
822{
823 sack_scoreboard_t *sb = &tc->sack_sb;
824 sack_block_t *blk, tmp;
Florin Corasf03a59a2017-06-09 21:07:32 -0700825 sack_scoreboard_hole_t *hole, *next_hole, *last_hole;
Florin Coras93992a92017-05-24 18:03:56 -0700826 u32 blk_index = 0, old_sacked_bytes, hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500827 int i, j;
828
Florin Coras6792ec02017-03-13 03:49:51 -0700829 sb->last_sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700830 sb->last_bytes_delivered = 0;
Florin Coras352c2c42018-06-26 01:22:41 -0700831 sb->snd_una_adv = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700832
Florin Coras93992a92017-05-24 18:03:56 -0700833 if (!tcp_opts_sack (&tc->rcv_opts)
834 && sb->head == TCP_INVALID_SACK_HOLE_INDEX)
Dave Barach68b0fb02017-02-28 15:15:56 -0500835 return;
836
Florin Coras352c2c42018-06-26 01:22:41 -0700837 old_sacked_bytes = sb->sacked_bytes;
838
Dave Barach68b0fb02017-02-28 15:15:56 -0500839 /* Remove invalid blocks */
Florin Coras93992a92017-05-24 18:03:56 -0700840 blk = tc->rcv_opts.sacks;
841 while (blk < vec_end (tc->rcv_opts.sacks))
Florin Coras6792ec02017-03-13 03:49:51 -0700842 {
843 if (seq_lt (blk->start, blk->end)
844 && seq_gt (blk->start, tc->snd_una)
Florin Coras3eb50622017-07-13 01:24:57 -0400845 && seq_gt (blk->start, ack) && seq_leq (blk->end, tc->snd_una_max))
Florin Coras6792ec02017-03-13 03:49:51 -0700846 {
847 blk++;
848 continue;
849 }
Florin Coras93992a92017-05-24 18:03:56 -0700850 vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks);
Florin Coras6792ec02017-03-13 03:49:51 -0700851 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500852
853 /* Add block for cumulative ack */
854 if (seq_gt (ack, tc->snd_una))
855 {
856 tmp.start = tc->snd_una;
857 tmp.end = ack;
Florin Coras93992a92017-05-24 18:03:56 -0700858 vec_add1 (tc->rcv_opts.sacks, tmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500859 }
860
Florin Coras93992a92017-05-24 18:03:56 -0700861 if (vec_len (tc->rcv_opts.sacks) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500862 return;
863
Florin Coras3eb50622017-07-13 01:24:57 -0400864 tcp_scoreboard_trace_add (tc, ack);
865
Dave Barach68b0fb02017-02-28 15:15:56 -0500866 /* Make sure blocks are ordered */
Florin Coras93992a92017-05-24 18:03:56 -0700867 for (i = 0; i < vec_len (tc->rcv_opts.sacks); i++)
868 for (j = i + 1; j < vec_len (tc->rcv_opts.sacks); j++)
869 if (seq_lt (tc->rcv_opts.sacks[j].start, tc->rcv_opts.sacks[i].start))
Dave Barach68b0fb02017-02-28 15:15:56 -0500870 {
Florin Coras93992a92017-05-24 18:03:56 -0700871 tmp = tc->rcv_opts.sacks[i];
872 tc->rcv_opts.sacks[i] = tc->rcv_opts.sacks[j];
873 tc->rcv_opts.sacks[j] = tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500874 }
875
Dave Barach68b0fb02017-02-28 15:15:56 -0500876 if (sb->head == TCP_INVALID_SACK_HOLE_INDEX)
877 {
Florin Coras6792ec02017-03-13 03:49:51 -0700878 /* If no holes, insert the first that covers all outstanding bytes */
879 last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
880 tc->snd_una, tc->snd_una_max);
881 sb->tail = scoreboard_hole_index (sb, last_hole);
Florin Coras93992a92017-05-24 18:03:56 -0700882 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
883 sb->high_sacked = tmp.end;
Florin Coras6792ec02017-03-13 03:49:51 -0700884 }
885 else
886 {
887 /* If we have holes but snd_una_max is beyond the last hole, update
888 * last hole end */
Florin Coras93992a92017-05-24 18:03:56 -0700889 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
Florin Coras6792ec02017-03-13 03:49:51 -0700890 last_hole = scoreboard_last_hole (sb);
Dave Barach2c25a622017-06-26 11:35:07 -0400891 if (seq_gt (tc->snd_una_max, last_hole->end))
892 {
893 if (seq_geq (last_hole->start, sb->high_sacked))
894 {
895 last_hole->end = tc->snd_una_max;
896 }
897 /* New hole after high sacked block */
898 else if (seq_lt (sb->high_sacked, tc->snd_una_max))
899 {
900 scoreboard_insert_hole (sb, sb->tail, sb->high_sacked,
901 tc->snd_una_max);
902 }
903 }
904 /* Keep track of max byte sacked for when the last hole
Florin Corasf03a59a2017-06-09 21:07:32 -0700905 * is acked */
906 if (seq_gt (tmp.end, sb->high_sacked))
907 sb->high_sacked = tmp.end;
Dave Barach68b0fb02017-02-28 15:15:56 -0500908 }
909
910 /* Walk the holes with the SACK blocks */
911 hole = pool_elt_at_index (sb->holes, sb->head);
Florin Coras93992a92017-05-24 18:03:56 -0700912 while (hole && blk_index < vec_len (tc->rcv_opts.sacks))
Dave Barach68b0fb02017-02-28 15:15:56 -0500913 {
Florin Coras93992a92017-05-24 18:03:56 -0700914 blk = &tc->rcv_opts.sacks[blk_index];
Dave Barach68b0fb02017-02-28 15:15:56 -0500915 if (seq_leq (blk->start, hole->start))
916 {
917 /* Block covers hole. Remove hole */
918 if (seq_geq (blk->end, hole->end))
919 {
920 next_hole = scoreboard_next_hole (sb, hole);
921
Florin Corasf03a59a2017-06-09 21:07:32 -0700922 /* Byte accounting: snd_una needs to be advanced */
923 if (blk->end == ack)
Dave Barach68b0fb02017-02-28 15:15:56 -0500924 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700925 if (next_hole)
Florin Coras06d11012017-05-17 14:21:51 -0700926 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700927 if (seq_lt (ack, next_hole->start))
928 sb->snd_una_adv = next_hole->start - ack;
929 sb->last_bytes_delivered +=
930 next_hole->start - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -0700931 }
Florin Coras3eb50622017-07-13 01:24:57 -0400932 else
Florin Coras06d11012017-05-17 14:21:51 -0700933 {
Dave Barach2c25a622017-06-26 11:35:07 -0400934 ASSERT (seq_geq (sb->high_sacked, ack));
Florin Coras93992a92017-05-24 18:03:56 -0700935 sb->snd_una_adv = sb->high_sacked - ack;
Florin Corasf03a59a2017-06-09 21:07:32 -0700936 sb->last_bytes_delivered += sb->high_sacked - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -0700937 }
938 }
939
Dave Barach68b0fb02017-02-28 15:15:56 -0500940 scoreboard_remove_hole (sb, hole);
941 hole = next_hole;
942 }
Florin Coras6792ec02017-03-13 03:49:51 -0700943 /* Partial 'head' overlap */
Dave Barach68b0fb02017-02-28 15:15:56 -0500944 else
945 {
Florin Coras6792ec02017-03-13 03:49:51 -0700946 if (seq_gt (blk->end, hole->start))
947 {
Florin Coras6792ec02017-03-13 03:49:51 -0700948 hole->start = blk->end;
949 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500950 blk_index++;
951 }
952 }
953 else
954 {
955 /* Hole must be split */
Florin Coras6792ec02017-03-13 03:49:51 -0700956 if (seq_lt (blk->end, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -0500957 {
Florin Coras6792ec02017-03-13 03:49:51 -0700958 hole_index = scoreboard_hole_index (sb, hole);
Florin Coras3eb50622017-07-13 01:24:57 -0400959 next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
960 hole->end);
Florin Coras6792ec02017-03-13 03:49:51 -0700961
962 /* Pool might've moved */
963 hole = scoreboard_get_hole (sb, hole_index);
964 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -0500965 blk_index++;
Florin Coras3eb50622017-07-13 01:24:57 -0400966 ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
Dave Barach68b0fb02017-02-28 15:15:56 -0500967 }
Florin Corasf03a59a2017-06-09 21:07:32 -0700968 else if (seq_lt (blk->start, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -0500969 {
Florin Coras6792ec02017-03-13 03:49:51 -0700970 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -0500971 }
Florin Coras93992a92017-05-24 18:03:56 -0700972 hole = scoreboard_next_hole (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500973 }
974 }
Florin Coras6792ec02017-03-13 03:49:51 -0700975
Florin Corasf03a59a2017-06-09 21:07:32 -0700976 scoreboard_update_bytes (tc, sb);
977 sb->last_sacked_bytes = sb->sacked_bytes
978 - (old_sacked_bytes - sb->last_bytes_delivered);
Florin Corasca1c8f32018-05-23 21:01:30 -0700979 ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes || tcp_in_recovery (tc));
Florin Corasf03a59a2017-06-09 21:07:32 -0700980 ASSERT (sb->sacked_bytes == 0
981 || sb->sacked_bytes < tc->snd_una_max - seq_max (tc->snd_una, ack));
982 ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_una_max
983 - seq_max (tc->snd_una, ack));
Dave Barach2c25a622017-06-26 11:35:07 -0400984 ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
985 || sb->holes[sb->head].start == ack + sb->snd_una_adv);
Florin Corasca1c8f32018-05-23 21:01:30 -0700986 TCP_EVT_DBG (TCP_EVT_CC_SCOREBOARD, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500987}
988
Florin Coras93992a92017-05-24 18:03:56 -0700989/**
990 * Try to update snd_wnd based on feedback received from peer.
Dave Barach68b0fb02017-02-28 15:15:56 -0500991 *
Florin Coras93992a92017-05-24 18:03:56 -0700992 * If successful, and new window is 'effectively' 0, activate persist
993 * timer.
994 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500995static void
996tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
997{
Florin Coras93992a92017-05-24 18:03:56 -0700998 /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
999 * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
Florin Coras6792ec02017-03-13 03:49:51 -07001000 if (seq_lt (tc->snd_wl1, seq)
1001 || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001002 {
1003 tc->snd_wnd = snd_wnd;
1004 tc->snd_wl1 = seq;
1005 tc->snd_wl2 = ack;
Florin Coras6792ec02017-03-13 03:49:51 -07001006 TCP_EVT_DBG (TCP_EVT_SND_WND, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001007
Florin Corasbb292f42017-05-19 09:49:19 -07001008 if (tc->snd_wnd < tc->snd_mss)
1009 {
Florin Coras93992a92017-05-24 18:03:56 -07001010 /* Set persist timer if not set and we just got 0 wnd */
1011 if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
1012 && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
Florin Corasbb292f42017-05-19 09:49:19 -07001013 tcp_persist_timer_set (tc);
1014 }
Florin Coras3e350af2017-03-30 02:54:28 -07001015 else
Florin Coras93992a92017-05-24 18:03:56 -07001016 {
1017 tcp_persist_timer_reset (tc);
1018 if (!tcp_in_recovery (tc) && tc->rto_boff > 0)
1019 {
1020 tc->rto_boff = 0;
1021 tcp_update_rto (tc);
1022 }
1023 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001024 }
1025}
1026
Florin Corasd2aab832018-05-22 11:39:59 -07001027/**
1028 * Init loss recovery/fast recovery.
1029 *
1030 * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
1031 * updated in @ref tcp_cc_handle_event after fast retransmit
1032 */
Florin Coras6792ec02017-03-13 03:49:51 -07001033void
Florin Coras93992a92017-05-24 18:03:56 -07001034tcp_cc_init_congestion (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001035{
Florin Coras93992a92017-05-24 18:03:56 -07001036 tcp_fastrecovery_on (tc);
1037 tc->snd_congestion = tc->snd_una_max;
Florin Coras62166002018-04-18 16:40:55 -07001038 tc->cwnd_acc_bytes = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001039 tc->cc_algo->congestion (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001040 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001041}
1042
Florin Coras93992a92017-05-24 18:03:56 -07001043static void
1044tcp_cc_recovery_exit (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001045{
Florin Coras93992a92017-05-24 18:03:56 -07001046 tc->rto_boff = 0;
Florin Corasf1762d62017-09-24 19:43:08 -04001047 tcp_update_rto (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001048 tc->snd_rxt_ts = 0;
Florin Coras84275e92017-09-26 12:30:40 -04001049 tc->snd_nxt = tc->snd_una_max;
Florin Coras93992a92017-05-24 18:03:56 -07001050 tcp_recovery_off (tc);
Florin Corasf1762d62017-09-24 19:43:08 -04001051 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Florin Coras93992a92017-05-24 18:03:56 -07001052}
Florin Coras3e350af2017-03-30 02:54:28 -07001053
Florin Coras93992a92017-05-24 18:03:56 -07001054void
1055tcp_cc_fastrecovery_exit (tcp_connection_t * tc)
1056{
Florin Coras6792ec02017-03-13 03:49:51 -07001057 tc->cc_algo->recovered (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001058 tc->snd_rxt_bytes = 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001059 tc->rcv_dupacks = 0;
Florin Coras84275e92017-09-26 12:30:40 -04001060 tc->snd_nxt = tc->snd_una_max;
Florin Coras93992a92017-05-24 18:03:56 -07001061 tcp_fastrecovery_off (tc);
1062 tcp_fastrecovery_1_smss_off (tc);
Florin Corasf1762d62017-09-24 19:43:08 -04001063 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Dave Barach68b0fb02017-02-28 15:15:56 -05001064}
1065
1066static void
Florin Coras93992a92017-05-24 18:03:56 -07001067tcp_cc_congestion_undo (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001068{
Florin Coras93992a92017-05-24 18:03:56 -07001069 tc->cwnd = tc->prev_cwnd;
1070 tc->ssthresh = tc->prev_ssthresh;
1071 tc->snd_nxt = tc->snd_una_max;
1072 tc->rcv_dupacks = 0;
1073 if (tcp_in_recovery (tc))
1074 tcp_cc_recovery_exit (tc);
1075 ASSERT (tc->rto_boff == 0);
Florin Corasf1762d62017-09-24 19:43:08 -04001076 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 5);
Florin Coras93992a92017-05-24 18:03:56 -07001077 /* TODO extend for fastrecovery */
1078}
Dave Barach68b0fb02017-02-28 15:15:56 -05001079
Florin Coras93992a92017-05-24 18:03:56 -07001080static u8
1081tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
1082{
Florin Corasf1762d62017-09-24 19:43:08 -04001083 return (tcp_in_recovery (tc) && tc->rto_boff == 1
Dave Barach2c25a622017-06-26 11:35:07 -04001084 && tc->snd_rxt_ts
Florin Coras93992a92017-05-24 18:03:56 -07001085 && tcp_opts_tstamp (&tc->rcv_opts)
1086 && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
1087}
1088
Florin Coras0dbd5172018-06-25 16:19:34 -07001089static int
Florin Coras93992a92017-05-24 18:03:56 -07001090tcp_cc_recover (tcp_connection_t * tc)
1091{
1092 ASSERT (tcp_in_cong_recovery (tc));
1093 if (tcp_cc_is_spurious_retransmit (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001094 {
Florin Coras93992a92017-05-24 18:03:56 -07001095 tcp_cc_congestion_undo (tc);
1096 return 1;
1097 }
1098
1099 if (tcp_in_recovery (tc))
1100 tcp_cc_recovery_exit (tc);
1101 else if (tcp_in_fastrecovery (tc))
1102 tcp_cc_fastrecovery_exit (tc);
1103
1104 ASSERT (tc->rto_boff == 0);
1105 ASSERT (!tcp_in_cong_recovery (tc));
Florin Coras3eb50622017-07-13 01:24:57 -04001106 ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001107 return 0;
1108}
1109
1110static void
1111tcp_cc_update (tcp_connection_t * tc, vlib_buffer_t * b)
1112{
Florin Coras3eb50622017-07-13 01:24:57 -04001113 ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001114
1115 /* Congestion avoidance */
1116 tc->cc_algo->rcv_ack (tc);
1117 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1118
1119 /* If a cumulative ack, make sure dupacks is 0 */
1120 tc->rcv_dupacks = 0;
1121
1122 /* When dupacks hits the threshold we only enter fast retransmit if
1123 * cumulative ack covers more than snd_congestion. Should snd_una
1124 * wrap this test may fail under otherwise valid circumstances.
1125 * Therefore, proactively update snd_congestion when wrap detected. */
1126 if (PREDICT_FALSE
1127 (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1128 && seq_gt (tc->snd_congestion, tc->snd_una)))
1129 tc->snd_congestion = tc->snd_una - 1;
1130}
1131
1132static u8
1133tcp_should_fastrecover_sack (tcp_connection_t * tc)
1134{
1135 return (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss < tc->sack_sb.sacked_bytes;
1136}
1137
1138static u8
1139tcp_should_fastrecover (tcp_connection_t * tc)
1140{
1141 return (tc->rcv_dupacks == TCP_DUPACK_THRESHOLD
1142 || tcp_should_fastrecover_sack (tc));
1143}
1144
Florin Corasf03a59a2017-06-09 21:07:32 -07001145/**
1146 * One function to rule them all ... and in the darkness bind them
1147 */
Florin Coras93992a92017-05-24 18:03:56 -07001148static void
1149tcp_cc_handle_event (tcp_connection_t * tc, u32 is_dack)
1150{
Florin Corasf03a59a2017-06-09 21:07:32 -07001151 u32 rxt_delivered;
1152
Florin Corasca1c8f32018-05-23 21:01:30 -07001153 if (tcp_in_fastrecovery (tc) && tcp_opts_sack_permitted (&tc->rcv_opts))
1154 {
1155 if (tc->bytes_acked)
1156 goto partial_ack;
1157 tcp_fast_retransmit (tc);
1158 return;
1159 }
Florin Coras93992a92017-05-24 18:03:56 -07001160 /*
1161 * Duplicate ACK. Check if we should enter fast recovery, or if already in
1162 * it account for the bytes that left the network.
1163 */
Florin Corasca1c8f32018-05-23 21:01:30 -07001164 else if (is_dack && !tcp_in_recovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001165 {
Florin Corasd2aab832018-05-22 11:39:59 -07001166 TCP_EVT_DBG (TCP_EVT_DUPACK_RCVD, tc, 1);
Florin Coras93992a92017-05-24 18:03:56 -07001167 ASSERT (tc->snd_una != tc->snd_una_max
1168 || tc->sack_sb.last_sacked_bytes);
Dave Barach2c25a622017-06-26 11:35:07 -04001169
Florin Coras93992a92017-05-24 18:03:56 -07001170 tc->rcv_dupacks++;
1171
Florin Corasd2aab832018-05-22 11:39:59 -07001172 /* Pure duplicate ack. If some data got acked, it's handled lower */
Florin Coras93992a92017-05-24 18:03:56 -07001173 if (tc->rcv_dupacks > TCP_DUPACK_THRESHOLD && !tc->bytes_acked)
Dave Barach68b0fb02017-02-28 15:15:56 -05001174 {
Florin Coras93992a92017-05-24 18:03:56 -07001175 ASSERT (tcp_in_fastrecovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001176 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1177 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001178 }
Florin Coras93992a92017-05-24 18:03:56 -07001179 else if (tcp_should_fastrecover (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001180 {
Florin Corasd2aab832018-05-22 11:39:59 -07001181 ASSERT (!tcp_in_fastrecovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001182
Dave Barach2c25a622017-06-26 11:35:07 -04001183 /* If of of the two conditions lower hold, reset dupacks because
1184 * we're probably after timeout (RFC6582 heuristics).
1185 * If Cumulative ack does not cover more than congestion threshold,
1186 * and:
1187 * 1) The following doesn't hold: The congestion window is greater
1188 * than SMSS bytes and the difference between highest_ack
1189 * and prev_highest_ack is at most 4*SMSS bytes
1190 * 2) Echoed timestamp in the last non-dup ack does not equal the
1191 * stored timestamp
Florin Coras93992a92017-05-24 18:03:56 -07001192 */
Dave Barach2c25a622017-06-26 11:35:07 -04001193 if (seq_leq (tc->snd_una, tc->snd_congestion)
1194 && ((!(tc->cwnd > tc->snd_mss
1195 && tc->bytes_acked <= 4 * tc->snd_mss))
1196 || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
Florin Coras93992a92017-05-24 18:03:56 -07001197 {
1198 tc->rcv_dupacks = 0;
1199 return;
1200 }
1201
1202 tcp_cc_init_congestion (tc);
1203 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1204
1205 /* The first segment MUST be retransmitted */
1206 tcp_retransmit_first_unacked (tc);
1207
1208 /* Post retransmit update cwnd to ssthresh and account for the
1209 * three segments that have left the network and should've been
1210 * buffered at the receiver XXX */
1211 tc->cwnd = tc->ssthresh + tc->rcv_dupacks * tc->snd_mss;
Dave Barach2c25a622017-06-26 11:35:07 -04001212 ASSERT (tc->cwnd >= tc->snd_mss);
Florin Coras93992a92017-05-24 18:03:56 -07001213
1214 /* If cwnd allows, send more data */
Florin Coras3eb50622017-07-13 01:24:57 -04001215 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras93992a92017-05-24 18:03:56 -07001216 {
Florin Coras3eb50622017-07-13 01:24:57 -04001217 scoreboard_init_high_rxt (&tc->sack_sb,
1218 tc->snd_una + tc->snd_mss);
Florin Coras93992a92017-05-24 18:03:56 -07001219 tcp_fast_retransmit_sack (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001220 }
1221 else
1222 {
Florin Coras93992a92017-05-24 18:03:56 -07001223 tcp_fast_retransmit_no_sack (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001224 }
Florin Coras93992a92017-05-24 18:03:56 -07001225 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001226 }
Florin Coras93992a92017-05-24 18:03:56 -07001227 else if (!tc->bytes_acked
1228 || (tc->bytes_acked && !tcp_in_cong_recovery (tc)))
1229 {
1230 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1231 return;
1232 }
1233 else
1234 goto partial_ack;
1235 }
1236
Florin Coras93992a92017-05-24 18:03:56 -07001237 if (!tc->bytes_acked)
1238 return;
1239
1240partial_ack:
Florin Corasd2aab832018-05-22 11:39:59 -07001241 TCP_EVT_DBG (TCP_EVT_CC_PACK, tc);
1242
Florin Coras93992a92017-05-24 18:03:56 -07001243 /*
1244 * Legitimate ACK. 1) See if we can exit recovery
1245 */
1246 /* XXX limit this only to first partial ack? */
Florin Coras3ec66b02018-08-23 16:27:05 -07001247 if (seq_lt (tc->snd_una, tc->snd_congestion))
1248 tcp_retransmit_timer_force_update (tc);
1249 else
1250 tcp_retransmit_timer_update (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001251
1252 if (seq_geq (tc->snd_una, tc->snd_congestion))
1253 {
1254 /* If spurious return, we've already updated everything */
1255 if (tcp_cc_recover (tc))
Florin Corasf03a59a2017-06-09 21:07:32 -07001256 {
1257 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1258 return;
1259 }
Florin Coras93992a92017-05-24 18:03:56 -07001260
1261 tc->snd_nxt = tc->snd_una_max;
1262
1263 /* Treat as congestion avoidance ack */
1264 tc->cc_algo->rcv_ack (tc);
1265 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1266 return;
1267 }
1268
1269 /*
1270 * Legitimate ACK. 2) If PARTIAL ACK try to retransmit
1271 */
Florin Coras93992a92017-05-24 18:03:56 -07001272
1273 /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
Florin Corasd2aab832018-05-22 11:39:59 -07001274 * reset dupacks to 0. Also needed if in congestion recovery */
Florin Coras93992a92017-05-24 18:03:56 -07001275 tc->rcv_dupacks = 0;
1276
Florin Coras93992a92017-05-24 18:03:56 -07001277 /* Post RTO timeout don't try anything fancy */
1278 if (tcp_in_recovery (tc))
Florin Corasd2aab832018-05-22 11:39:59 -07001279 {
1280 tc->cc_algo->rcv_ack (tc);
1281 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
Florin Coras3ec66b02018-08-23 16:27:05 -07001282 transport_add_tx_event (&tc->connection);
Florin Corasd2aab832018-05-22 11:39:59 -07001283 return;
1284 }
Florin Coras93992a92017-05-24 18:03:56 -07001285
1286 /* Remove retransmitted bytes that have been delivered */
Florin Corasf03a59a2017-06-09 21:07:32 -07001287 ASSERT (tc->bytes_acked + tc->sack_sb.snd_una_adv
Florin Corasb2215d62017-08-01 16:56:58 -07001288 >= tc->sack_sb.last_bytes_delivered
1289 || (tc->flags & TCP_CONN_FINSNT));
Florin Coras3eb50622017-07-13 01:24:57 -04001290
1291 if (seq_lt (tc->snd_una, tc->sack_sb.high_rxt))
Florin Coras93992a92017-05-24 18:03:56 -07001292 {
1293 /* If we have sacks and we haven't gotten an ack beyond high_rxt,
1294 * remove sacked bytes delivered */
Florin Coras3eb50622017-07-13 01:24:57 -04001295 rxt_delivered = tc->bytes_acked + tc->sack_sb.snd_una_adv
1296 - tc->sack_sb.last_bytes_delivered;
Florin Corasf03a59a2017-06-09 21:07:32 -07001297 ASSERT (tc->snd_rxt_bytes >= rxt_delivered);
1298 tc->snd_rxt_bytes -= rxt_delivered;
Dave Barach68b0fb02017-02-28 15:15:56 -05001299 }
1300 else
1301 {
Florin Coras93992a92017-05-24 18:03:56 -07001302 /* Either all retransmitted holes have been acked, or we're
1303 * "in the blind" and retransmitting segment by segment */
1304 tc->snd_rxt_bytes = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001305 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001306
Florin Coras93992a92017-05-24 18:03:56 -07001307 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_PARTIALACK);
Dave Barach68b0fb02017-02-28 15:15:56 -05001308
Florin Coras93992a92017-05-24 18:03:56 -07001309 /*
1310 * Since this was a partial ack, try to retransmit some more data
1311 */
1312 tcp_fast_retransmit (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001313}
1314
Florin Coras93992a92017-05-24 18:03:56 -07001315/**
1316 * Process incoming ACK
1317 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001318static int
1319tcp_rcv_ack (tcp_connection_t * tc, vlib_buffer_t * b,
1320 tcp_header_t * th, u32 * next, u32 * error)
1321{
Florin Coras93992a92017-05-24 18:03:56 -07001322 u32 prev_snd_wnd, prev_snd_una;
1323 u8 is_dack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001324
Florin Corasf03a59a2017-06-09 21:07:32 -07001325 TCP_EVT_DBG (TCP_EVT_CC_STAT, tc);
1326
Florin Coras6792ec02017-03-13 03:49:51 -07001327 /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
Florin Coras93992a92017-05-24 18:03:56 -07001328 if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001329 {
Florin Corasca1c8f32018-05-23 21:01:30 -07001330 /* When we entered recovery, we reset snd_nxt to snd_una. Seems peer
1331 * still has the data so accept the ack */
1332 if (tcp_in_recovery (tc)
Florin Coras3ec66b02018-08-23 16:27:05 -07001333 && seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_congestion))
Florin Corasca1c8f32018-05-23 21:01:30 -07001334 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001335 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
1336 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
1337 tc->snd_una_max = tc->snd_nxt;
Florin Corasca1c8f32018-05-23 21:01:30 -07001338 goto process_ack;
1339 }
1340
Florin Coras6792ec02017-03-13 03:49:51 -07001341 /* If we have outstanding data and this is within the window, accept it,
1342 * probably retransmit has timed out. Otherwise ACK segment and then
1343 * drop it */
1344 if (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max))
1345 {
1346 tcp_make_ack (tc, b);
1347 *next = tcp_next_output (tc->c_is_ip4);
1348 *error = TCP_ERROR_ACK_INVALID;
1349 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 0,
1350 vnet_buffer (b)->tcp.ack_number);
1351 return -1;
1352 }
1353
Florin Coras6792ec02017-03-13 03:49:51 -07001354 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 2,
1355 vnet_buffer (b)->tcp.ack_number);
Florin Coras3e350af2017-03-30 02:54:28 -07001356
1357 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
1358 *error = TCP_ERROR_ACK_FUTURE;
Dave Barach68b0fb02017-02-28 15:15:56 -05001359 }
1360
Florin Coras6792ec02017-03-13 03:49:51 -07001361 /* If old ACK, probably it's an old dupack */
Florin Coras93992a92017-05-24 18:03:56 -07001362 if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001363 {
1364 *error = TCP_ERROR_ACK_OLD;
Florin Coras6792ec02017-03-13 03:49:51 -07001365 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 1,
1366 vnet_buffer (b)->tcp.ack_number);
1367 if (tcp_in_fastrecovery (tc) && tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
Florin Corasca1c8f32018-05-23 21:01:30 -07001368 tcp_cc_handle_event (tc, 1);
Florin Corasc28764f2017-04-26 00:08:42 -07001369 /* Don't drop yet */
1370 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001371 }
1372
Florin Coras93992a92017-05-24 18:03:56 -07001373 /*
1374 * Looks okay, process feedback
1375 */
Florin Corasca1c8f32018-05-23 21:01:30 -07001376process_ack:
Florin Coras93992a92017-05-24 18:03:56 -07001377 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001378 tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1379
Florin Coras93992a92017-05-24 18:03:56 -07001380 prev_snd_wnd = tc->snd_wnd;
1381 prev_snd_una = tc->snd_una;
1382 tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1383 vnet_buffer (b)->tcp.ack_number,
1384 clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1385 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
1386 tc->snd_una = vnet_buffer (b)->tcp.ack_number + tc->sack_sb.snd_una_adv;
1387 tcp_validate_txf_size (tc, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001388
Florin Coras93992a92017-05-24 18:03:56 -07001389 if (tc->bytes_acked)
1390 tcp_dequeue_acked (tc, vnet_buffer (b)->tcp.ack_number);
1391
Florin Coras6534b7a2017-07-18 05:38:03 -04001392 TCP_EVT_DBG (TCP_EVT_ACK_RCVD, tc);
1393
Florin Coras93992a92017-05-24 18:03:56 -07001394 /*
1395 * Check if we have congestion event
1396 */
1397
1398 if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001399 {
Florin Coras93992a92017-05-24 18:03:56 -07001400 tcp_cc_handle_event (tc, is_dack);
Florin Corasb2215d62017-08-01 16:56:58 -07001401 if (!tcp_in_cong_recovery (tc))
1402 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001403 *error = TCP_ERROR_ACK_DUP;
Florin Corasca09d072018-10-01 18:31:02 -07001404 if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th))
1405 return 0;
1406 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001407 }
1408
Florin Coras6792ec02017-03-13 03:49:51 -07001409 /*
Florin Coras93992a92017-05-24 18:03:56 -07001410 * Update congestion control (slow start/congestion avoidance)
Florin Coras6792ec02017-03-13 03:49:51 -07001411 */
Florin Coras93992a92017-05-24 18:03:56 -07001412 tcp_cc_update (tc, b);
Florin Coras00cd22d2018-04-18 13:20:18 -07001413 *error = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001414 return 0;
1415}
1416
Florin Coras3eb50622017-07-13 01:24:57 -04001417static u8
1418tcp_sack_vector_is_sane (sack_block_t * sacks)
1419{
1420 int i;
1421 for (i = 1; i < vec_len (sacks); i++)
1422 {
1423 if (sacks[i - 1].end == sacks[i].start)
1424 return 0;
1425 }
1426 return 1;
1427}
1428
Dave Barach68b0fb02017-02-28 15:15:56 -05001429/**
1430 * Build SACK list as per RFC2018.
1431 *
1432 * Makes sure the first block contains the segment that generated the current
1433 * ACK and the following ones are the ones most recently reported in SACK
1434 * blocks.
1435 *
1436 * @param tc TCP connection for which the SACK list is updated
1437 * @param start Start sequence number of the newest SACK block
1438 * @param end End sequence of the newest SACK block
1439 */
Florin Coras45d34962017-04-25 00:05:27 -07001440void
Dave Barach68b0fb02017-02-28 15:15:56 -05001441tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1442{
Florin Coras45d34962017-04-25 00:05:27 -07001443 sack_block_t *new_list = 0, *block = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001444 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001445
1446 /* If the first segment is ooo add it to the list. Last write might've moved
1447 * rcv_nxt over the first segment. */
1448 if (seq_lt (tc->rcv_nxt, start))
1449 {
Florin Coras45d34962017-04-25 00:05:27 -07001450 vec_add2 (new_list, block, 1);
1451 block->start = start;
1452 block->end = end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001453 }
1454
1455 /* Find the blocks still worth keeping. */
1456 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1457 {
Florin Coras45d34962017-04-25 00:05:27 -07001458 /* Discard if rcv_nxt advanced beyond current block */
1459 if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001460 continue;
1461
Florin Coras45d34962017-04-25 00:05:27 -07001462 /* Merge or drop if segment overlapped by the new segment */
1463 if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1464 && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1465 {
1466 if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1467 new_list[0].start = tc->snd_sacks[i].start;
1468 if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1469 new_list[0].end = tc->snd_sacks[i].end;
1470 continue;
1471 }
1472
1473 /* Save to new SACK list if we have space. */
1474 if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
1475 {
1476 vec_add1 (new_list, tc->snd_sacks[i]);
1477 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001478 else
1479 {
1480 clib_warning ("sack discarded");
1481 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001482 }
1483
Florin Coras45d34962017-04-25 00:05:27 -07001484 ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
Florin Coras6792ec02017-03-13 03:49:51 -07001485
Dave Barach68b0fb02017-02-28 15:15:56 -05001486 /* Replace old vector with new one */
1487 vec_free (tc->snd_sacks);
1488 tc->snd_sacks = new_list;
Florin Coras3eb50622017-07-13 01:24:57 -04001489
1490 /* Segments should not 'touch' */
1491 ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
Dave Barach68b0fb02017-02-28 15:15:56 -05001492}
1493
Florin Corasca1c8f32018-05-23 21:01:30 -07001494u32
1495tcp_sack_list_bytes (tcp_connection_t * tc)
1496{
1497 u32 bytes = 0, i;
1498 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1499 bytes += tc->snd_sacks[i].end - tc->snd_sacks[i].start;
1500 return bytes;
1501}
1502
Dave Barach68b0fb02017-02-28 15:15:56 -05001503/** Enqueue data for delivery to application */
Florin Coras0dbd5172018-06-25 16:19:34 -07001504static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001505tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1506 u16 data_len)
1507{
Florin Coras1f152cd2017-08-18 19:28:03 -07001508 int written, error = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001509
Dave Barach2c25a622017-06-26 11:35:07 -04001510 ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001511 ASSERT (data_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001512 written = session_enqueue_stream_connection (&tc->connection, b, 0,
1513 1 /* queue event */ , 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001514
Florin Coras6792ec02017-03-13 03:49:51 -07001515 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 0, data_len, written);
1516
Dave Barach68b0fb02017-02-28 15:15:56 -05001517 /* Update rcv_nxt */
1518 if (PREDICT_TRUE (written == data_len))
1519 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001520 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001521 }
1522 /* If more data written than expected, account for out-of-order bytes. */
1523 else if (written > data_len)
1524 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001525 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001526
1527 /* Send ACK confirming the update */
1528 tc->flags |= TCP_CONN_SNDACK;
Florin Corasca1c8f32018-05-23 21:01:30 -07001529 TCP_EVT_DBG (TCP_EVT_CC_INPUT, tc, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001530 }
1531 else if (written > 0)
1532 {
1533 /* We've written something but FIFO is probably full now */
1534 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001535
Florin Coras6792ec02017-03-13 03:49:51 -07001536 /* Depending on how fast the app is, all remaining buffers in burst will
Florin Coras3e350af2017-03-30 02:54:28 -07001537 * not be enqueued. Inform peer */
1538 tc->flags |= TCP_CONN_SNDACK;
1539
Florin Coras1f152cd2017-08-18 19:28:03 -07001540 error = TCP_ERROR_PARTIALLY_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001541 }
1542 else
1543 {
Florin Coras3e350af2017-03-30 02:54:28 -07001544 tc->flags |= TCP_CONN_SNDACK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001545 return TCP_ERROR_FIFO_FULL;
1546 }
1547
Florin Coras6792ec02017-03-13 03:49:51 -07001548 /* Update SACK list if need be */
Florin Coras93992a92017-05-24 18:03:56 -07001549 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras6792ec02017-03-13 03:49:51 -07001550 {
1551 /* Remove SACK blocks that have been delivered */
1552 tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1553 }
1554
Florin Coras1f152cd2017-08-18 19:28:03 -07001555 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -05001556}
1557
1558/** Enqueue out-of-order data */
Florin Coras0dbd5172018-06-25 16:19:34 -07001559static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001560tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1561 u16 data_len)
1562{
1563 stream_session_t *s0;
Florin Coras3eb50622017-07-13 01:24:57 -04001564 int rv, offset;
Florin Coras6792ec02017-03-13 03:49:51 -07001565
Florin Corasf03a59a2017-06-09 21:07:32 -07001566 ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001567 ASSERT (data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001568
Florin Corasf03a59a2017-06-09 21:07:32 -07001569 /* Enqueue out-of-order data with relative offset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07001570 rv = session_enqueue_stream_connection (&tc->connection, b,
1571 vnet_buffer (b)->tcp.seq_number -
1572 tc->rcv_nxt, 0 /* queue event */ ,
1573 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001574
1575 /* Nothing written */
1576 if (rv)
1577 {
1578 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, 0);
1579 return TCP_ERROR_FIFO_FULL;
1580 }
1581
1582 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001583
1584 /* Update SACK list if in use */
Florin Coras93992a92017-05-24 18:03:56 -07001585 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001586 {
1587 ooo_segment_t *newest;
1588 u32 start, end;
1589
Florin Corascea194d2017-10-02 00:18:51 -07001590 s0 = session_get (tc->c_s_index, tc->c_thread_index);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001591
Dave Barach68b0fb02017-02-28 15:15:56 -05001592 /* Get the newest segment from the fifo */
1593 newest = svm_fifo_newest_ooo_segment (s0->server_rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001594 if (newest)
1595 {
Florin Coras3eb50622017-07-13 01:24:57 -04001596 offset = ooo_segment_offset (s0->server_rx_fifo, newest);
1597 ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1598 start = tc->rcv_nxt + offset;
Florin Corasf03a59a2017-06-09 21:07:32 -07001599 end = start + ooo_segment_length (s0->server_rx_fifo, newest);
1600 tcp_update_sack_list (tc, start, end);
Florin Coras3eb50622017-07-13 01:24:57 -04001601 svm_fifo_newest_ooo_segment_reset (s0->server_rx_fifo);
Florin Corasca1c8f32018-05-23 21:01:30 -07001602 TCP_EVT_DBG (TCP_EVT_CC_SACKS, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001603 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001604 }
1605
Florin Coras00cd22d2018-04-18 13:20:18 -07001606 return TCP_ERROR_ENQUEUED_OOO;
Dave Barach68b0fb02017-02-28 15:15:56 -05001607}
1608
1609/**
Florin Coras6792ec02017-03-13 03:49:51 -07001610 * Check if ACK could be delayed. If ack can be delayed, it should return
1611 * true for a full frame. If we're always acking return 0.
Dave Barach68b0fb02017-02-28 15:15:56 -05001612 */
1613always_inline int
1614tcp_can_delack (tcp_connection_t * tc)
1615{
Florin Coras6792ec02017-03-13 03:49:51 -07001616 /* Send ack if ... */
1617 if (TCP_ALWAYS_ACK
1618 /* just sent a rcv wnd 0 */
1619 || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0
1620 /* constrained to send ack */
1621 || (tc->flags & TCP_CONN_SNDACK) != 0
1622 /* we're almost out of tx wnd */
Florin Corasca1c8f32018-05-23 21:01:30 -07001623 || tcp_available_cc_snd_space (tc) < 4 * tc->snd_mss)
Florin Coras6792ec02017-03-13 03:49:51 -07001624 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001625
Florin Coras6792ec02017-03-13 03:49:51 -07001626 return 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001627}
1628
1629static int
Florin Corasb2215d62017-08-01 16:56:58 -07001630tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
1631{
Florin Coras1f152cd2017-08-18 19:28:03 -07001632 u32 discard, first = b->current_length;
Florin Corasb2215d62017-08-01 16:56:58 -07001633 vlib_main_t *vm = vlib_get_main ();
1634
Florin Coras1f152cd2017-08-18 19:28:03 -07001635 /* Handle multi-buffer segments */
Florin Corasb2215d62017-08-01 16:56:58 -07001636 if (n_bytes_to_drop > b->current_length)
1637 {
1638 if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1639 return -1;
1640 do
1641 {
1642 discard = clib_min (n_bytes_to_drop, b->current_length);
1643 vlib_buffer_advance (b, discard);
1644 b = vlib_get_buffer (vm, b->next_buffer);
1645 n_bytes_to_drop -= discard;
1646 }
1647 while (n_bytes_to_drop);
Florin Coras1f152cd2017-08-18 19:28:03 -07001648 if (n_bytes_to_drop > first)
1649 b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
Florin Corasb2215d62017-08-01 16:56:58 -07001650 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001651 else
1652 vlib_buffer_advance (b, n_bytes_to_drop);
1653 vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
Florin Corasb2215d62017-08-01 16:56:58 -07001654 return 0;
1655}
1656
Florin Coras00cd22d2018-04-18 13:20:18 -07001657/**
1658 * Receive buffer for connection and handle acks
1659 *
1660 * It handles both in order or out-of-order data.
1661 */
Florin Corasb2215d62017-08-01 16:56:58 -07001662static int
Florin Coras00cd22d2018-04-18 13:20:18 -07001663tcp_segment_rcv (tcp_connection_t * tc, vlib_buffer_t * b, u32 * next0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001664{
Florin Coras00cd22d2018-04-18 13:20:18 -07001665 u32 error, n_bytes_to_drop, n_data_bytes;
Florin Coras6534b7a2017-07-18 05:38:03 -04001666
1667 vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1668 n_data_bytes = vnet_buffer (b)->tcp.data_len;
1669 ASSERT (n_data_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001670
1671 /* Handle out-of-order data */
1672 if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1673 {
Florin Coras6792ec02017-03-13 03:49:51 -07001674 /* Old sequence numbers allowed through because they overlapped
1675 * the rx window */
1676 if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001677 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001678 /* Completely in the past (possible retransmit). Ack
1679 * retransmissions since we may not have any data to send */
Florin Corasf03a59a2017-06-09 21:07:32 -07001680 if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
Florin Coras6534b7a2017-07-18 05:38:03 -04001681 {
Florin Coras6534b7a2017-07-18 05:38:03 -04001682 tcp_make_ack (tc, b);
Florin Coras00cd22d2018-04-18 13:20:18 -07001683 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras6534b7a2017-07-18 05:38:03 -04001684 *next0 = tcp_next_output (tc->c_is_ip4);
1685 goto done;
1686 }
Dave Barach259cdae2017-05-15 16:27:05 -04001687
Florin Coras00cd22d2018-04-18 13:20:18 -07001688 /* Chop off the bytes in the past and see if what is left
1689 * can be enqueued in order */
Florin Corasdb84e572017-05-09 18:54:52 -07001690 n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1691 n_data_bytes -= n_bytes_to_drop;
Dave Barach2c25a622017-06-26 11:35:07 -04001692 vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001693 if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
Florin Coras00cd22d2018-04-18 13:20:18 -07001694 {
1695 error = TCP_ERROR_SEGMENT_OLD;
1696 *next0 = tcp_next_drop (tc->c_is_ip4);
1697 goto done;
1698 }
Florin Corasdb84e572017-05-09 18:54:52 -07001699 goto in_order;
Dave Barach68b0fb02017-02-28 15:15:56 -05001700 }
1701
Florin Coras00cd22d2018-04-18 13:20:18 -07001702 /* RFC2581: Enqueue and send DUPACK for fast retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001703 error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
Florin Coras6792ec02017-03-13 03:49:51 -07001704 *next0 = tcp_next_output (tc->c_is_ip4);
Florin Coras00cd22d2018-04-18 13:20:18 -07001705 tcp_make_ack (tc, b);
1706 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_DUPACK;
Florin Corasca1c8f32018-05-23 21:01:30 -07001707 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
Dave Barach68b0fb02017-02-28 15:15:56 -05001708 goto done;
1709 }
1710
Florin Corasdb84e572017-05-09 18:54:52 -07001711in_order:
1712
Dave Barach68b0fb02017-02-28 15:15:56 -05001713 /* In order data, enqueue. Fifo figures out by itself if any out-of-order
1714 * segments can be enqueued after fifo tail offset changes. */
1715 error = tcp_session_enqueue_data (tc, b, n_data_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001716 if (tcp_can_delack (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001717 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001718 *next0 = tcp_next_drop (tc->c_is_ip4);
Florin Coras6792ec02017-03-13 03:49:51 -07001719 if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
1720 tcp_timer_set (tc, TCP_TIMER_DELACK, TCP_DELACK_TIME);
Florin Coras3e350af2017-03-30 02:54:28 -07001721 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001722 }
1723
Florin Coras3e350af2017-03-30 02:54:28 -07001724 *next0 = tcp_next_output (tc->c_is_ip4);
1725 tcp_make_ack (tc, b);
1726
Dave Barach68b0fb02017-02-28 15:15:56 -05001727done:
1728 return error;
1729}
1730
Clement Durand6cf260c2017-04-13 13:27:04 +02001731typedef struct
1732{
1733 tcp_header_t tcp_header;
1734 tcp_connection_t tcp_connection;
1735} tcp_rx_trace_t;
1736
Florin Coras0dbd5172018-06-25 16:19:34 -07001737static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02001738format_tcp_rx_trace (u8 * s, va_list * args)
1739{
1740 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1741 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1742 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +02001743 u32 indent = format_get_indent (s);
Clement Durand6cf260c2017-04-13 13:27:04 +02001744
1745 s = format (s, "%U\n%U%U",
1746 format_tcp_header, &t->tcp_header, 128,
1747 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -07001748 format_tcp_connection, &t->tcp_connection, 1);
Clement Durand6cf260c2017-04-13 13:27:04 +02001749
1750 return s;
1751}
1752
Florin Coras0dbd5172018-06-25 16:19:34 -07001753static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02001754format_tcp_rx_trace_short (u8 * s, va_list * args)
1755{
1756 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1757 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1758 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
1759
1760 s = format (s, "%d -> %d (%U)",
Florin Coras4df38712018-06-20 12:44:16 -07001761 clib_net_to_host_u16 (t->tcp_header.dst_port),
1762 clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state,
Florin Corasbb292f42017-05-19 09:49:19 -07001763 t->tcp_connection.state);
Clement Durand6cf260c2017-04-13 13:27:04 +02001764
1765 return s;
1766}
1767
Florin Coras4df38712018-06-20 12:44:16 -07001768static void
Florin Coras82b13a82017-04-25 11:58:06 -07001769tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
1770 tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
1771{
1772 if (tc0)
1773 {
1774 clib_memcpy (&t0->tcp_connection, tc0, sizeof (t0->tcp_connection));
1775 }
1776 else
1777 {
1778 th0 = tcp_buffer_hdr (b0);
1779 }
1780 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
1781}
1782
Florin Coras4df38712018-06-20 12:44:16 -07001783static void
1784tcp_established_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
1785 vlib_frame_t * frame, u8 is_ip4)
1786{
1787 u32 *from, n_left;
1788
1789 n_left = frame->n_vectors;
1790 from = vlib_frame_vector_args (frame);
1791
1792 while (n_left >= 1)
1793 {
1794 tcp_connection_t *tc0;
1795 tcp_rx_trace_t *t0;
1796 tcp_header_t *th0;
1797 vlib_buffer_t *b0;
1798 u32 bi0;
1799
1800 bi0 = from[0];
1801 b0 = vlib_get_buffer (vm, bi0);
1802
1803 if (b0->flags & VLIB_BUFFER_IS_TRACED)
1804 {
1805 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
1806 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
1807 vm->thread_index);
1808 th0 = tcp_buffer_hdr (b0);
1809 tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
1810 }
1811
1812 from += 1;
1813 n_left -= 1;
1814 }
1815}
1816
Florin Coras6792ec02017-03-13 03:49:51 -07001817always_inline void
Florin Coras00cd22d2018-04-18 13:20:18 -07001818tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
1819 u8 is_ip4, u32 evt, u32 val)
Dave Barach68b0fb02017-02-28 15:15:56 -05001820{
Florin Coras6792ec02017-03-13 03:49:51 -07001821 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -07001822 vlib_node_increment_counter (vm, tcp4_node, evt, val);
Florin Coras6792ec02017-03-13 03:49:51 -07001823 else
Florin Coras3cbc04b2017-10-02 00:18:51 -07001824 vlib_node_increment_counter (vm, tcp6_node, evt, val);
Dave Barach68b0fb02017-02-28 15:15:56 -05001825}
1826
Florin Coras00cd22d2018-04-18 13:20:18 -07001827#define tcp_maybe_inc_counter(node_id, err, count) \
1828{ \
1829 if (next0 != tcp_next_drop (is_ip4)) \
1830 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
1831 tcp6_##node_id##_node.index, is_ip4, err, \
1832 1); \
1833}
1834#define tcp_inc_counter(node_id, err, count) \
1835 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
1836 tcp6_##node_id##_node.index, is_ip4, \
1837 err, count)
1838#define tcp_maybe_inc_err_counter(cnts, err) \
1839{ \
1840 cnts[err] += (next0 != tcp_next_drop (is_ip4)); \
1841}
1842#define tcp_inc_err_counter(cnts, err, val) \
1843{ \
1844 cnts[err] += val; \
1845}
1846#define tcp_store_err_counters(node_id, cnts) \
1847{ \
1848 int i; \
1849 for (i = 0; i < TCP_N_ERROR; i++) \
1850 if (cnts[i]) \
1851 tcp_inc_counter(node_id, i, cnts[i]); \
1852}
1853
1854
Dave Barach68b0fb02017-02-28 15:15:56 -05001855always_inline uword
1856tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07001857 vlib_frame_t * frame, int is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05001858{
Florin Coras4df38712018-06-20 12:44:16 -07001859 u32 thread_index = vm->thread_index, errors = 0;
Florin Coras00cd22d2018-04-18 13:20:18 -07001860 u32 n_left_from, next_index, *from, *to_next;
1861 u16 err_counters[TCP_N_ERROR] = { 0 };
Dave Barach1f75cfd2017-04-14 16:46:44 -04001862 u8 is_fin = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001863
Florin Coras4df38712018-06-20 12:44:16 -07001864 if (node->flags & VLIB_NODE_FLAG_TRACE)
1865 tcp_established_trace_frame (vm, node, frame, is_ip4);
1866
1867 from = vlib_frame_vector_args (frame);
1868 n_left_from = frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05001869 next_index = node->cached_next_index;
1870
1871 while (n_left_from > 0)
1872 {
1873 u32 n_left_to_next;
1874
1875 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Dave Barach68b0fb02017-02-28 15:15:56 -05001876 while (n_left_from > 0 && n_left_to_next > 0)
1877 {
1878 u32 bi0;
1879 vlib_buffer_t *b0;
1880 tcp_header_t *th0 = 0;
1881 tcp_connection_t *tc0;
Florin Coras00cd22d2018-04-18 13:20:18 -07001882 u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001883
Florin Coras81a13db2018-03-16 08:48:31 -07001884 if (n_left_from > 1)
1885 {
1886 vlib_buffer_t *pb;
1887 pb = vlib_get_buffer (vm, from[1]);
1888 vlib_prefetch_buffer_header (pb, LOAD);
1889 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1890 }
1891
Dave Barach68b0fb02017-02-28 15:15:56 -05001892 bi0 = from[0];
1893 to_next[0] = bi0;
1894 from += 1;
1895 to_next += 1;
1896 n_left_from -= 1;
1897 n_left_to_next -= 1;
1898
1899 b0 = vlib_get_buffer (vm, bi0);
1900 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
Florin Coras4df38712018-06-20 12:44:16 -07001901 thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001902
Florin Corasd79b41e2017-03-04 05:37:52 -08001903 if (PREDICT_FALSE (tc0 == 0))
1904 {
1905 error0 = TCP_ERROR_INVALID_CONNECTION;
Florin Coras6792ec02017-03-13 03:49:51 -07001906 goto done;
Florin Corasd79b41e2017-03-04 05:37:52 -08001907 }
1908
Florin Coras82b13a82017-04-25 11:58:06 -07001909 th0 = tcp_buffer_hdr (b0);
Florin Coras6534b7a2017-07-18 05:38:03 -04001910 /* N.B. buffer is rewritten if segment is ooo. Thus, th0 becomes a
1911 * dangling reference. */
1912 is_fin = tcp_is_fin (th0);
Dave Barach1f75cfd2017-04-14 16:46:44 -04001913
Dave Barach68b0fb02017-02-28 15:15:56 -05001914 /* SYNs, FINs and data consume sequence numbers */
1915 vnet_buffer (b0)->tcp.seq_end = vnet_buffer (b0)->tcp.seq_number
Florin Coras82b13a82017-04-25 11:58:06 -07001916 + tcp_is_syn (th0) + is_fin + vnet_buffer (b0)->tcp.data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05001917
1918 /* TODO header prediction fast path */
1919
1920 /* 1-4: check SEQ, RST, SYN */
Florin Coras00cd22d2018-04-18 13:20:18 -07001921 if (PREDICT_FALSE (tcp_segment_validate (vm, tc0, b0, th0, &next0,
1922 &error0)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001923 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001924 tcp_maybe_inc_err_counter (err_counters, error0);
Florin Corasca1c8f32018-05-23 21:01:30 -07001925 TCP_EVT_DBG (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp);
Florin Coras6792ec02017-03-13 03:49:51 -07001926 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001927 }
1928
1929 /* 5: check the ACK field */
Florin Coras00cd22d2018-04-18 13:20:18 -07001930 if (PREDICT_FALSE (tcp_rcv_ack (tc0, b0, th0, &next0, &error0)))
1931 {
1932 tcp_maybe_inc_err_counter (err_counters, error0);
1933 goto done;
1934 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001935
1936 /* 6: check the URG bit TODO */
1937
1938 /* 7: process the segment text */
Florin Coras6534b7a2017-07-18 05:38:03 -04001939 if (vnet_buffer (b0)->tcp.data_len)
Florin Coras00cd22d2018-04-18 13:20:18 -07001940 {
1941 error0 = tcp_segment_rcv (tc0, b0, &next0);
1942 tcp_maybe_inc_err_counter (err_counters, error0);
1943 }
Dave Barach1f75cfd2017-04-14 16:46:44 -04001944
Dave Barach68b0fb02017-02-28 15:15:56 -05001945 /* 8: check the FIN bit */
Florin Coras6534b7a2017-07-18 05:38:03 -04001946 if (PREDICT_FALSE (is_fin))
Dave Barach68b0fb02017-02-28 15:15:56 -05001947 {
Florin Coras9d063042017-09-14 03:08:00 -04001948 /* Enter CLOSE-WAIT and notify session. To avoid lingering
Florin Corasd79b41e2017-03-04 05:37:52 -08001949 * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
Florin Coras9d063042017-09-14 03:08:00 -04001950 /* Account for the FIN if nothing else was received */
Florin Coras68810622017-07-24 17:40:28 -07001951 if (vnet_buffer (b0)->tcp.data_len == 0)
Florin Coras9d063042017-09-14 03:08:00 -04001952 tc0->rcv_nxt += 1;
1953 tcp_make_ack (tc0, b0);
1954 next0 = tcp_next_output (tc0->c_is_ip4);
1955 tc0->state = TCP_STATE_CLOSE_WAIT;
Dave Barach68b0fb02017-02-28 15:15:56 -05001956 stream_session_disconnect_notify (&tc0->connection);
Florin Coras68810622017-07-24 17:40:28 -07001957 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
Florin Coras9d063042017-09-14 03:08:00 -04001958 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -07001959 tcp_inc_err_counter (err_counters, TCP_ERROR_FIN_RCVD, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001960 }
1961
Florin Coras6792ec02017-03-13 03:49:51 -07001962 done:
Dave Barach68b0fb02017-02-28 15:15:56 -05001963 b0->error = node->errors[error0];
Dave Barach68b0fb02017-02-28 15:15:56 -05001964 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1965 n_left_to_next, bi0, next0);
1966 }
1967
1968 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1969 }
1970
Florin Coras3cbc04b2017-10-02 00:18:51 -07001971 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
Florin Coras4df38712018-06-20 12:44:16 -07001972 thread_index);
Florin Coras00cd22d2018-04-18 13:20:18 -07001973 err_counters[TCP_ERROR_EVENT_FIFO_FULL] = errors;
1974 tcp_store_err_counters (established, err_counters);
Florin Coras4df38712018-06-20 12:44:16 -07001975 tcp_flush_frame_to_output (vm, thread_index, is_ip4);
1976
1977 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05001978}
1979
1980static uword
1981tcp4_established (vlib_main_t * vm, vlib_node_runtime_t * node,
1982 vlib_frame_t * from_frame)
1983{
1984 return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
1985}
1986
1987static uword
1988tcp6_established (vlib_main_t * vm, vlib_node_runtime_t * node,
1989 vlib_frame_t * from_frame)
1990{
1991 return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
1992}
1993
1994/* *INDENT-OFF* */
1995VLIB_REGISTER_NODE (tcp4_established_node) =
1996{
1997 .function = tcp4_established,
1998 .name = "tcp4-established",
1999 /* Takes a vector of packets. */
2000 .vector_size = sizeof (u32),
Florin Corase69f4952017-03-07 10:06:24 -08002001 .n_errors = TCP_N_ERROR,
2002 .error_strings = tcp_error_strings,
Dave Barach68b0fb02017-02-28 15:15:56 -05002003 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2004 .next_nodes =
2005 {
2006#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2007 foreach_tcp_state_next
2008#undef _
2009 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002010 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002011};
2012/* *INDENT-ON* */
2013
2014VLIB_NODE_FUNCTION_MULTIARCH (tcp4_established_node, tcp4_established);
2015
2016/* *INDENT-OFF* */
2017VLIB_REGISTER_NODE (tcp6_established_node) =
2018{
2019 .function = tcp6_established,
2020 .name = "tcp6-established",
2021 /* Takes a vector of packets. */
2022 .vector_size = sizeof (u32),
2023 .n_errors = TCP_N_ERROR,
2024 .error_strings = tcp_error_strings,
2025 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2026 .next_nodes =
2027 {
2028#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2029 foreach_tcp_state_next
2030#undef _
2031 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002032 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002033};
2034/* *INDENT-ON* */
2035
2036
2037VLIB_NODE_FUNCTION_MULTIARCH (tcp6_established_node, tcp6_established);
2038
2039vlib_node_registration_t tcp4_syn_sent_node;
2040vlib_node_registration_t tcp6_syn_sent_node;
2041
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002042static u8
2043tcp_lookup_is_valid (tcp_connection_t * tc, tcp_header_t * hdr)
2044{
Florin Corascea194d2017-10-02 00:18:51 -07002045 transport_connection_t *tmp = 0;
2046 u64 handle;
2047
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002048 if (!tc)
2049 return 1;
2050
Florin Coras70131132017-11-27 02:43:30 -08002051 /* Proxy case */
2052 if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
2053 return 1;
2054
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002055 u8 is_valid = (tc->c_lcl_port == hdr->dst_port
2056 && (tc->state == TCP_STATE_LISTEN
2057 || tc->c_rmt_port == hdr->src_port));
2058
2059 if (!is_valid)
2060 {
Florin Corascea194d2017-10-02 00:18:51 -07002061 handle = session_lookup_half_open_handle (&tc->connection);
2062 tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
Florin Coras3cbc04b2017-10-02 00:18:51 -07002063 tc->c_proto, tc->c_is_ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002064
2065 if (tmp)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002066 {
2067 if (tmp->lcl_port == hdr->dst_port
2068 && tmp->rmt_port == hdr->src_port)
2069 {
Florin Corascea194d2017-10-02 00:18:51 -07002070 TCP_DBG ("half-open is valid!");
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002071 }
2072 }
2073 }
2074 return is_valid;
2075}
2076
2077/**
2078 * Lookup transport connection
2079 */
2080static tcp_connection_t *
Florin Corascea194d2017-10-02 00:18:51 -07002081tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
2082 u8 is_ip4)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002083{
2084 tcp_header_t *tcp;
2085 transport_connection_t *tconn;
2086 tcp_connection_t *tc;
Florin Corasdff48db2017-11-19 18:06:58 -08002087 u8 is_filtered = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002088 if (is_ip4)
2089 {
2090 ip4_header_t *ip4;
2091 ip4 = vlib_buffer_get_current (b);
2092 tcp = ip4_next_header (ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002093 tconn = session_lookup_connection_wt4 (fib_index,
2094 &ip4->dst_address,
2095 &ip4->src_address,
2096 tcp->dst_port,
2097 tcp->src_port,
2098 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002099 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002100 tc = tcp_get_connection_from_transport (tconn);
2101 ASSERT (tcp_lookup_is_valid (tc, tcp));
2102 }
2103 else
2104 {
2105 ip6_header_t *ip6;
2106 ip6 = vlib_buffer_get_current (b);
2107 tcp = ip6_next_header (ip6);
Florin Corascea194d2017-10-02 00:18:51 -07002108 tconn = session_lookup_connection_wt6 (fib_index,
2109 &ip6->dst_address,
2110 &ip6->src_address,
2111 tcp->dst_port,
2112 tcp->src_port,
2113 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002114 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002115 tc = tcp_get_connection_from_transport (tconn);
2116 ASSERT (tcp_lookup_is_valid (tc, tcp));
2117 }
2118 return tc;
2119}
2120
Dave Barach68b0fb02017-02-28 15:15:56 -05002121always_inline uword
2122tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2123 vlib_frame_t * from_frame, int is_ip4)
2124{
2125 tcp_main_t *tm = vnet_get_tcp_main ();
2126 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02002127 u32 my_thread_index = vm->thread_index, errors = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002128
2129 from = vlib_frame_vector_args (from_frame);
2130 n_left_from = from_frame->n_vectors;
2131
2132 next_index = node->cached_next_index;
2133
2134 while (n_left_from > 0)
2135 {
2136 u32 n_left_to_next;
2137
2138 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2139
2140 while (n_left_from > 0 && n_left_to_next > 0)
2141 {
2142 u32 bi0, ack0, seq0;
2143 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002144 tcp_rx_trace_t *t0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002145 tcp_header_t *tcp0 = 0;
2146 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002147 tcp_connection_t *new_tc0;
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002148 u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002149
2150 bi0 = from[0];
2151 to_next[0] = bi0;
2152 from += 1;
2153 to_next += 1;
2154 n_left_from -= 1;
2155 n_left_to_next -= 1;
2156
2157 b0 = vlib_get_buffer (vm, bi0);
2158 tc0 =
2159 tcp_half_open_connection_get (vnet_buffer (b0)->
2160 tcp.connection_index);
Dave Barachd84ba852017-08-22 17:56:46 -04002161 if (PREDICT_FALSE (tc0 == 0))
2162 {
2163 error0 = TCP_ERROR_INVALID_CONNECTION;
2164 goto drop;
2165 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002166
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002167 /* Half-open completed recently but the connection was't removed
2168 * yet by the owning thread */
2169 if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2170 {
2171 /* Make sure the connection actually exists */
Florin Corascea194d2017-10-02 00:18:51 -07002172 ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2173 my_thread_index, is_ip4));
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002174 goto drop;
2175 }
2176
Dave Barach68b0fb02017-02-28 15:15:56 -05002177 ack0 = vnet_buffer (b0)->tcp.ack_number;
2178 seq0 = vnet_buffer (b0)->tcp.seq_number;
Florin Coras82b13a82017-04-25 11:58:06 -07002179 tcp0 = tcp_buffer_hdr (b0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002180
Florin Coras9d063042017-09-14 03:08:00 -04002181 /* Crude check to see if the connection handle does not match
2182 * the packet. Probably connection just switched to established */
2183 if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2184 || tcp0->src_port != tc0->c_rmt_port))
2185 goto drop;
2186
Dave Barach68b0fb02017-02-28 15:15:56 -05002187 if (PREDICT_FALSE
2188 (!tcp_ack (tcp0) && !tcp_rst (tcp0) && !tcp_syn (tcp0)))
2189 goto drop;
2190
2191 /* SYNs, FINs and data consume sequence numbers */
2192 vnet_buffer (b0)->tcp.seq_end = seq0 + tcp_is_syn (tcp0)
Florin Coras82b13a82017-04-25 11:58:06 -07002193 + tcp_is_fin (tcp0) + vnet_buffer (b0)->tcp.data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05002194
2195 /*
2196 * 1. check the ACK bit
2197 */
2198
2199 /*
2200 * If the ACK bit is set
2201 * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2202 * the RST bit is set, if so drop the segment and return)
2203 * <SEQ=SEG.ACK><CTL=RST>
2204 * and discard the segment. Return.
2205 * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2206 */
2207 if (tcp_ack (tcp0))
2208 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002209 if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05002210 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002211 clib_warning ("ack not in rcv wnd");
Dave Barach68b0fb02017-02-28 15:15:56 -05002212 if (!tcp_rst (tcp0))
Florin Coras1f152cd2017-08-18 19:28:03 -07002213 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002214 goto drop;
2215 }
2216
2217 /* Make sure ACK is valid */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002218 if (seq_gt (tc0->snd_una, ack0))
2219 {
2220 clib_warning ("ack invalid");
2221 goto drop;
2222 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002223 }
2224
2225 /*
2226 * 2. check the RST bit
2227 */
2228
2229 if (tcp_rst (tcp0))
2230 {
2231 /* If ACK is acceptable, signal client that peer is not
2232 * willing to accept connection and drop connection*/
2233 if (tcp_ack (tcp0))
Florin Coras6534b7a2017-07-18 05:38:03 -04002234 tcp_connection_reset (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002235 goto drop;
2236 }
2237
2238 /*
2239 * 3. check the security and precedence (skipped)
2240 */
2241
2242 /*
2243 * 4. check the SYN bit
2244 */
2245
2246 /* No SYN flag. Drop. */
2247 if (!tcp_syn (tcp0))
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002248 {
2249 clib_warning ("not synack");
2250 goto drop;
2251 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002252
Florin Coras6534b7a2017-07-18 05:38:03 -04002253 /* Parse options */
2254 if (tcp_options_parse (tcp0, &tc0->rcv_opts))
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002255 {
2256 clib_warning ("options parse fail");
2257 goto drop;
2258 }
Florin Coras6534b7a2017-07-18 05:38:03 -04002259
Dave Barach68b0fb02017-02-28 15:15:56 -05002260 /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2261 * current thread pool. */
2262 pool_get (tm->connections[my_thread_index], new_tc0);
2263 clib_memcpy (new_tc0, tc0, sizeof (*new_tc0));
Dave Barach259cdae2017-05-15 16:27:05 -04002264 new_tc0->c_c_index = new_tc0 - tm->connections[my_thread_index];
Florin Coras6534b7a2017-07-18 05:38:03 -04002265 new_tc0->c_thread_index = my_thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002266 new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2267 new_tc0->irs = seq0;
Florin Coras68810622017-07-24 17:40:28 -07002268 new_tc0->timers[TCP_TIMER_ESTABLISH] = TCP_TIMER_HANDLE_INVALID;
2269 new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] =
2270 TCP_TIMER_HANDLE_INVALID;
Florin Corasf9d05682018-04-26 08:26:52 -07002271 new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Florin Coras68810622017-07-24 17:40:28 -07002272
2273 /* If this is not the owning thread, wait for syn retransmit to
2274 * expire and cleanup then */
2275 if (tcp_half_open_connection_cleanup (tc0))
2276 tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
Dave Barach68b0fb02017-02-28 15:15:56 -05002277
Florin Coras93992a92017-05-24 18:03:56 -07002278 if (tcp_opts_tstamp (&new_tc0->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05002279 {
Florin Coras93992a92017-05-24 18:03:56 -07002280 new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
Dave Barach68b0fb02017-02-28 15:15:56 -05002281 new_tc0->tsval_recent_age = tcp_time_now ();
2282 }
2283
Florin Coras93992a92017-05-24 18:03:56 -07002284 if (tcp_opts_wscale (&new_tc0->rcv_opts))
2285 new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
Dave Barach68b0fb02017-02-28 15:15:56 -05002286
Florin Coras45ca73f2018-09-27 09:19:29 -07002287 new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2288 << new_tc0->snd_wscale;
Dave Barach68b0fb02017-02-28 15:15:56 -05002289 new_tc0->snd_wl1 = seq0;
2290 new_tc0->snd_wl2 = ack0;
2291
Florin Corase04c2992017-03-01 08:17:34 -08002292 tcp_connection_init_vars (new_tc0);
2293
Dave Barach68b0fb02017-02-28 15:15:56 -05002294 /* SYN-ACK: See if we can switch to ESTABLISHED state */
Florin Coras6534b7a2017-07-18 05:38:03 -04002295 if (PREDICT_TRUE (tcp_ack (tcp0)))
Dave Barach68b0fb02017-02-28 15:15:56 -05002296 {
2297 /* Our SYN is ACKed: we have iss < ack = snd_una */
2298
2299 /* TODO Dequeue acknowledged segments if we support Fast Open */
2300 new_tc0->snd_una = ack0;
2301 new_tc0->state = TCP_STATE_ESTABLISHED;
2302
Florin Corase04c2992017-03-01 08:17:34 -08002303 /* Make sure las is initialized for the wnd computation */
2304 new_tc0->rcv_las = new_tc0->rcv_nxt;
2305
Florin Corasf03a59a2017-06-09 21:07:32 -07002306 /* Notify app that we have connection. If session layer can't
2307 * allocate session send reset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07002308 if (session_stream_connect_notify (&new_tc0->connection, 0))
Florin Corasf03a59a2017-06-09 21:07:32 -07002309 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002310 clib_warning ("connect notify fail");
Florin Coras1f152cd2017-08-18 19:28:03 -07002311 tcp_send_reset_w_pkt (new_tc0, b0, is_ip4);
Florin Corasf03a59a2017-06-09 21:07:32 -07002312 tcp_connection_cleanup (new_tc0);
Florin Corasf03a59a2017-06-09 21:07:32 -07002313 goto drop;
2314 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002315
2316 /* Make sure after data segment processing ACK is sent */
2317 new_tc0->flags |= TCP_CONN_SNDACK;
Dave Barach2c25a622017-06-26 11:35:07 -04002318
2319 /* Update rtt with the syn-ack sample */
Dave Barach2c25a622017-06-26 11:35:07 -04002320 tcp_update_rtt (new_tc0, vnet_buffer (b0)->tcp.ack_number);
Florin Coras6534b7a2017-07-18 05:38:03 -04002321 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, new_tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002322 }
2323 /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2324 else
2325 {
2326 new_tc0->state = TCP_STATE_SYN_RCVD;
2327
Florin Corase69f4952017-03-07 10:06:24 -08002328 /* Notify app that we have connection */
Florin Coras3cbc04b2017-10-02 00:18:51 -07002329 if (session_stream_connect_notify (&new_tc0->connection, 0))
Florin Corasf03a59a2017-06-09 21:07:32 -07002330 {
2331 tcp_connection_cleanup (new_tc0);
Florin Coras1f152cd2017-08-18 19:28:03 -07002332 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -04002333 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc0);
Florin Corasf03a59a2017-06-09 21:07:32 -07002334 goto drop;
2335 }
2336
Dave Barach2c25a622017-06-26 11:35:07 -04002337 tc0->rtt_ts = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002338 tcp_init_snd_vars (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002339 tcp_make_synack (new_tc0, b0);
2340 next0 = tcp_next_output (is_ip4);
2341
2342 goto drop;
2343 }
2344
2345 /* Read data, if any */
Florin Coras6534b7a2017-07-18 05:38:03 -04002346 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
Dave Barach68b0fb02017-02-28 15:15:56 -05002347 {
Florin Coras00cd22d2018-04-18 13:20:18 -07002348 clib_warning ("rcvd data in syn-sent");
2349 error0 = tcp_segment_rcv (new_tc0, b0, &next0);
2350 if (error0 == TCP_ERROR_ACK_OK)
Dave Barach68b0fb02017-02-28 15:15:56 -05002351 error0 = TCP_ERROR_SYN_ACKS_RCVD;
Florin Coras00cd22d2018-04-18 13:20:18 -07002352 tcp_maybe_inc_counter (syn_sent, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002353 }
2354 else
2355 {
2356 tcp_make_ack (new_tc0, b0);
2357 next0 = tcp_next_output (new_tc0->c_is_ip4);
2358 }
2359
2360 drop:
2361
2362 b0->error = error0 ? node->errors[error0] : 0;
Chris Luke879ace32017-09-26 13:15:16 -04002363 if (PREDICT_FALSE
2364 ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002365 {
Clement Durand6cf260c2017-04-13 13:27:04 +02002366 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2367 clib_memcpy (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2368 clib_memcpy (&t0->tcp_connection, tc0,
2369 sizeof (t0->tcp_connection));
Dave Barach68b0fb02017-02-28 15:15:56 -05002370 }
2371
2372 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2373 n_left_to_next, bi0, next0);
2374 }
2375
2376 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2377 }
2378
Florin Coras3cbc04b2017-10-02 00:18:51 -07002379 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2380 my_thread_index);
Florin Coras00cd22d2018-04-18 13:20:18 -07002381 tcp_inc_counter (syn_sent, TCP_ERROR_EVENT_FIFO_FULL, errors);
Dave Barach68b0fb02017-02-28 15:15:56 -05002382 return from_frame->n_vectors;
2383}
2384
2385static uword
2386tcp4_syn_sent (vlib_main_t * vm, vlib_node_runtime_t * node,
2387 vlib_frame_t * from_frame)
2388{
2389 return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2390}
2391
2392static uword
2393tcp6_syn_sent_rcv (vlib_main_t * vm, vlib_node_runtime_t * node,
2394 vlib_frame_t * from_frame)
2395{
2396 return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2397}
2398
2399/* *INDENT-OFF* */
2400VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2401{
2402 .function = tcp4_syn_sent,
2403 .name = "tcp4-syn-sent",
2404 /* Takes a vector of packets. */
2405 .vector_size = sizeof (u32),
2406 .n_errors = TCP_N_ERROR,
2407 .error_strings = tcp_error_strings,
2408 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2409 .next_nodes =
2410 {
2411#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2412 foreach_tcp_state_next
2413#undef _
2414 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002415 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002416};
2417/* *INDENT-ON* */
2418
2419VLIB_NODE_FUNCTION_MULTIARCH (tcp4_syn_sent_node, tcp4_syn_sent);
2420
2421/* *INDENT-OFF* */
2422VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2423{
2424 .function = tcp6_syn_sent_rcv,
2425 .name = "tcp6-syn-sent",
2426 /* Takes a vector of packets. */
2427 .vector_size = sizeof (u32),
2428 .n_errors = TCP_N_ERROR,
2429 .error_strings = tcp_error_strings,
2430 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2431 .next_nodes =
2432 {
2433#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2434 foreach_tcp_state_next
2435#undef _
Clement Durand6cf260c2017-04-13 13:27:04 +02002436 },
2437 .format_trace = format_tcp_rx_trace_short,
2438};
Dave Barach68b0fb02017-02-28 15:15:56 -05002439/* *INDENT-ON* */
2440
2441VLIB_NODE_FUNCTION_MULTIARCH (tcp6_syn_sent_node, tcp6_syn_sent_rcv);
Florin Coras6534b7a2017-07-18 05:38:03 -04002442
Florin Coras3cbc04b2017-10-02 00:18:51 -07002443vlib_node_registration_t tcp4_rcv_process_node;
2444vlib_node_registration_t tcp6_rcv_process_node;
2445
Dave Barach68b0fb02017-02-28 15:15:56 -05002446/**
Florin Corasd79b41e2017-03-04 05:37:52 -08002447 * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
Dave Barach68b0fb02017-02-28 15:15:56 -05002448 * as per RFC793 p. 64
2449 */
2450always_inline uword
2451tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2452 vlib_frame_t * from_frame, int is_ip4)
2453{
Florin Coras00cd22d2018-04-18 13:20:18 -07002454 u32 n_left_from, next_index, *from, *to_next, n_fins = 0;
Damjan Marion586afd72017-04-05 19:18:20 +02002455 u32 my_thread_index = vm->thread_index, errors = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002456
2457 from = vlib_frame_vector_args (from_frame);
2458 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002459 next_index = node->cached_next_index;
2460
2461 while (n_left_from > 0)
2462 {
2463 u32 n_left_to_next;
2464
2465 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2466
2467 while (n_left_from > 0 && n_left_to_next > 0)
2468 {
2469 u32 bi0;
2470 vlib_buffer_t *b0;
2471 tcp_header_t *tcp0 = 0;
2472 tcp_connection_t *tc0;
Florin Coras00cd22d2018-04-18 13:20:18 -07002473 u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_NONE;
Florin Coras9d063042017-09-14 03:08:00 -04002474 u8 is_fin0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002475
2476 bi0 = from[0];
2477 to_next[0] = bi0;
2478 from += 1;
2479 to_next += 1;
2480 n_left_from -= 1;
2481 n_left_to_next -= 1;
2482
2483 b0 = vlib_get_buffer (vm, bi0);
2484 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2485 my_thread_index);
Florin Corasd79b41e2017-03-04 05:37:52 -08002486 if (PREDICT_FALSE (tc0 == 0))
2487 {
2488 error0 = TCP_ERROR_INVALID_CONNECTION;
2489 goto drop;
2490 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002491
Florin Coras82b13a82017-04-25 11:58:06 -07002492 tcp0 = tcp_buffer_hdr (b0);
Florin Coras9d063042017-09-14 03:08:00 -04002493 is_fin0 = tcp_is_fin (tcp0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002494
2495 /* SYNs, FINs and data consume sequence numbers */
2496 vnet_buffer (b0)->tcp.seq_end = vnet_buffer (b0)->tcp.seq_number
Florin Coras9d063042017-09-14 03:08:00 -04002497 + tcp_is_syn (tcp0) + is_fin0 + vnet_buffer (b0)->tcp.data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05002498
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002499 if (CLIB_DEBUG)
2500 {
2501 tcp_connection_t *tmp;
Florin Coras00cd22d2018-04-18 13:20:18 -07002502 tmp = tcp_lookup_connection (tc0->c_fib_index, b0,
2503 my_thread_index, is_ip4);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002504 if (tmp->state != tc0->state)
2505 {
2506 clib_warning ("state changed");
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002507 goto drop;
2508 }
2509 }
2510
Dave Barach68b0fb02017-02-28 15:15:56 -05002511 /*
2512 * Special treatment for CLOSED
2513 */
Florin Coras00cd22d2018-04-18 13:20:18 -07002514 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
Dave Barach68b0fb02017-02-28 15:15:56 -05002515 {
Florin Coras00cd22d2018-04-18 13:20:18 -07002516 error0 = TCP_ERROR_CONNECTION_CLOSED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002517 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002518 }
2519
2520 /*
2521 * For all other states (except LISTEN)
2522 */
2523
2524 /* 1-4: check SEQ, RST, SYN */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002525 if (PREDICT_FALSE (tcp_segment_validate (vm, tc0, b0, tcp0,
Florin Coras00cd22d2018-04-18 13:20:18 -07002526 &next0, &error0)))
Dave Barach68b0fb02017-02-28 15:15:56 -05002527 {
Florin Coras00cd22d2018-04-18 13:20:18 -07002528 tcp_maybe_inc_counter (rcv_process, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002529 goto drop;
2530 }
2531
2532 /* 5: check the ACK field */
2533 switch (tc0->state)
2534 {
2535 case TCP_STATE_SYN_RCVD:
2536 /*
2537 * If the segment acknowledgment is not acceptable, form a
2538 * reset segment,
2539 * <SEQ=SEG.ACK><CTL=RST>
2540 * and send it.
2541 */
2542 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
2543 {
Florin Corasa096f2d2017-09-28 23:49:42 -04002544 TCP_DBG ("connection not accepted");
Florin Coras1f152cd2017-08-18 19:28:03 -07002545 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
Florin Coras00cd22d2018-04-18 13:20:18 -07002546 error0 = TCP_ERROR_ACK_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05002547 goto drop;
2548 }
Florin Coras3af90fc2017-05-03 21:09:42 -07002549
2550 /* Update rtt and rto */
Florin Coras3af90fc2017-05-03 21:09:42 -07002551 tcp_update_rtt (tc0, vnet_buffer (b0)->tcp.ack_number);
2552
Dave Barach68b0fb02017-02-28 15:15:56 -05002553 /* Switch state to ESTABLISHED */
2554 tc0->state = TCP_STATE_ESTABLISHED;
Florin Corasb384b542018-01-15 01:08:33 -08002555 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002556
2557 /* Initialize session variables */
2558 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
Florin Corase04c2992017-03-01 08:17:34 -08002559 tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
Florin Coras93992a92017-05-24 18:03:56 -07002560 << tc0->rcv_opts.wscale;
Dave Barach68b0fb02017-02-28 15:15:56 -05002561 tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2562 tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
Dave Barach68b0fb02017-02-28 15:15:56 -05002563
Florin Corasab0289a2017-08-14 11:25:25 -07002564 /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
Florin Coras6792ec02017-03-13 03:49:51 -07002565 tcp_retransmit_timer_reset (tc0);
Florin Corasab0289a2017-08-14 11:25:25 -07002566 tcp_timer_reset (tc0, TCP_TIMER_ESTABLISH);
Florin Corasb384b542018-01-15 01:08:33 -08002567 stream_session_accept_notify (&tc0->connection);
Florin Coras00cd22d2018-04-18 13:20:18 -07002568 error0 = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05002569 break;
2570 case TCP_STATE_ESTABLISHED:
2571 /* We can get packets in established state here because they
2572 * were enqueued before state change */
2573 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002574 {
2575 tcp_maybe_inc_counter (rcv_process, error0, 1);
2576 goto drop;
2577 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002578
2579 break;
2580 case TCP_STATE_FIN_WAIT_1:
2581 /* In addition to the processing for the ESTABLISHED state, if
2582 * our FIN is now acknowledged then enter FIN-WAIT-2 and
2583 * continue processing in that state. */
2584 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002585 {
2586 tcp_maybe_inc_counter (rcv_process, error0, 1);
2587 goto drop;
2588 }
Florin Corasd79b41e2017-03-04 05:37:52 -08002589
Florin Corasb2215d62017-08-01 16:56:58 -07002590 /* Still have to send the FIN */
2591 if (tc0->flags & TCP_CONN_FINPNDG)
2592 {
2593 /* TX fifo finally drained */
Florin Coras25579b42018-06-06 17:55:02 -07002594 if (!session_tx_fifo_max_dequeue (&tc0->connection))
Florin Corasb2215d62017-08-01 16:56:58 -07002595 tcp_send_fin (tc0);
2596 }
Florin Corasd79b41e2017-03-04 05:37:52 -08002597 /* If FIN is ACKed */
Florin Corasb2215d62017-08-01 16:56:58 -07002598 else if (tc0->snd_una == tc0->snd_una_max)
Florin Corasd79b41e2017-03-04 05:37:52 -08002599 {
2600 tc0->state = TCP_STATE_FIN_WAIT_2;
Florin Coras6534b7a2017-07-18 05:38:03 -04002601 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
2602
Florin Coras9d063042017-09-14 03:08:00 -04002603 /* Stop all retransmit timers because we have nothing more
2604 * to send. Enable waitclose though because we're willing to
2605 * wait for peer's FIN but not indefinitely. */
2606 tcp_connection_timers_reset (tc0);
2607 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Corasd79b41e2017-03-04 05:37:52 -08002608 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002609 break;
2610 case TCP_STATE_FIN_WAIT_2:
2611 /* In addition to the processing for the ESTABLISHED state, if
2612 * the retransmission queue is empty, the user's CLOSE can be
2613 * acknowledged ("ok") but do not delete the TCB. */
2614 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002615 {
2616 tcp_maybe_inc_counter (rcv_process, error0, 1);
2617 goto drop;
2618 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002619 break;
2620 case TCP_STATE_CLOSE_WAIT:
2621 /* Do the same processing as for the ESTABLISHED state. */
2622 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002623 {
2624 tcp_maybe_inc_counter (rcv_process, error0, 1);
2625 goto drop;
2626 }
Florin Coras25579b42018-06-06 17:55:02 -07002627 if (tc0->flags & TCP_CONN_FINPNDG)
2628 {
2629 /* TX fifo finally drained */
2630 if (!session_tx_fifo_max_dequeue (&tc0->connection))
2631 {
2632 tcp_send_fin (tc0);
2633 tcp_connection_timers_reset (tc0);
2634 tc0->state = TCP_STATE_LAST_ACK;
2635 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE,
2636 TCP_2MSL_TIME);
2637 }
2638 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002639 break;
2640 case TCP_STATE_CLOSING:
2641 /* In addition to the processing for the ESTABLISHED state, if
2642 * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2643 * otherwise ignore the segment. */
2644 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002645 {
2646 tcp_maybe_inc_counter (rcv_process, error0, 1);
2647 goto drop;
2648 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002649
Dave Barach68b0fb02017-02-28 15:15:56 -05002650 tc0->state = TCP_STATE_TIME_WAIT;
Florin Coras6534b7a2017-07-18 05:38:03 -04002651 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Florin Corasa096f2d2017-09-28 23:49:42 -04002652 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002653 goto drop;
2654
2655 break;
2656 case TCP_STATE_LAST_ACK:
Florin Coras93992a92017-05-24 18:03:56 -07002657 /* The only thing that [should] arrive in this state is an
Dave Barach68b0fb02017-02-28 15:15:56 -05002658 * acknowledgment of our FIN. If our FIN is now acknowledged,
2659 * delete the TCB, enter the CLOSED state, and return. */
2660
2661 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
Florin Corasa096f2d2017-09-28 23:49:42 -04002662 {
2663 error0 = TCP_ERROR_ACK_INVALID;
2664 goto drop;
2665 }
Florin Coras00cd22d2018-04-18 13:20:18 -07002666 error0 = TCP_ERROR_ACK_OK;
Florin Coras9d063042017-09-14 03:08:00 -04002667 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
Florin Corasa096f2d2017-09-28 23:49:42 -04002668 /* Apparently our ACK for the peer's FIN was lost */
2669 if (is_fin0 && tc0->snd_una != tc0->snd_una_max)
Florin Coras93992a92017-05-24 18:03:56 -07002670 {
Florin Coras93992a92017-05-24 18:03:56 -07002671 tcp_send_fin (tc0);
2672 goto drop;
2673 }
2674
Florin Corasd79b41e2017-03-04 05:37:52 -08002675 tc0->state = TCP_STATE_CLOSED;
Florin Coras6534b7a2017-07-18 05:38:03 -04002676 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Florin Coras25579b42018-06-06 17:55:02 -07002677 /* Delete the connection/session since the pipes should be
2678 * clear by now */
2679 tcp_connection_del (tc0);
Florin Corasd79b41e2017-03-04 05:37:52 -08002680
Dave Barach68b0fb02017-02-28 15:15:56 -05002681 goto drop;
2682
2683 break;
2684 case TCP_STATE_TIME_WAIT:
2685 /* The only thing that can arrive in this state is a
2686 * retransmission of the remote FIN. Acknowledge it, and restart
2687 * the 2 MSL timeout. */
2688
Florin Coras93992a92017-05-24 18:03:56 -07002689 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002690 {
2691 tcp_maybe_inc_counter (rcv_process, error0, 1);
2692 goto drop;
2693 }
Florin Coras93992a92017-05-24 18:03:56 -07002694
2695 tcp_make_ack (tc0, b0);
Florin Corasa096f2d2017-09-28 23:49:42 -04002696 next0 = tcp_next_output (is_ip4);
2697 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002698 goto drop;
Florin Coras93992a92017-05-24 18:03:56 -07002699
Dave Barach68b0fb02017-02-28 15:15:56 -05002700 break;
2701 default:
2702 ASSERT (0);
2703 }
2704
2705 /* 6: check the URG bit TODO */
2706
2707 /* 7: process the segment text */
2708 switch (tc0->state)
2709 {
2710 case TCP_STATE_ESTABLISHED:
2711 case TCP_STATE_FIN_WAIT_1:
2712 case TCP_STATE_FIN_WAIT_2:
Florin Coras6534b7a2017-07-18 05:38:03 -04002713 if (vnet_buffer (b0)->tcp.data_len)
Florin Coras00cd22d2018-04-18 13:20:18 -07002714 {
2715 error0 = tcp_segment_rcv (tc0, b0, &next0);
2716 tcp_maybe_inc_counter (rcv_process, error0, 1);
2717 }
Florin Coras9d063042017-09-14 03:08:00 -04002718 else if (is_fin0)
2719 tc0->rcv_nxt += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002720 break;
2721 case TCP_STATE_CLOSE_WAIT:
2722 case TCP_STATE_CLOSING:
2723 case TCP_STATE_LAST_ACK:
2724 case TCP_STATE_TIME_WAIT:
2725 /* This should not occur, since a FIN has been received from the
2726 * remote side. Ignore the segment text. */
2727 break;
2728 }
2729
2730 /* 8: check the FIN bit */
Florin Coras9d063042017-09-14 03:08:00 -04002731 if (!is_fin0)
Dave Barach68b0fb02017-02-28 15:15:56 -05002732 goto drop;
2733
2734 switch (tc0->state)
2735 {
2736 case TCP_STATE_ESTABLISHED:
2737 case TCP_STATE_SYN_RCVD:
2738 /* Send FIN-ACK notify app and enter CLOSE-WAIT */
2739 tcp_connection_timers_reset (tc0);
Florin Corasd79b41e2017-03-04 05:37:52 -08002740 tcp_make_fin (tc0, b0);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002741 tc0->snd_nxt += 1;
Florin Coras8b20bf52018-06-14 14:55:50 -07002742 tc0->snd_una_max = tc0->snd_nxt;
Florin Corasc01c4452018-09-20 18:36:54 -07002743 tcp_retransmit_timer_set (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002744 next0 = tcp_next_output (tc0->c_is_ip4);
2745 stream_session_disconnect_notify (&tc0->connection);
2746 tc0->state = TCP_STATE_CLOSE_WAIT;
Florin Coras6534b7a2017-07-18 05:38:03 -04002747 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002748 break;
2749 case TCP_STATE_CLOSE_WAIT:
2750 case TCP_STATE_CLOSING:
2751 case TCP_STATE_LAST_ACK:
2752 /* move along .. */
2753 break;
2754 case TCP_STATE_FIN_WAIT_1:
Florin Corasab0289a2017-08-14 11:25:25 -07002755 tc0->state = TCP_STATE_CLOSING;
2756 tcp_make_ack (tc0, b0);
2757 next0 = tcp_next_output (is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -04002758 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Florin Corasab0289a2017-08-14 11:25:25 -07002759 /* Wait for ACK but not forever */
2760 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002761 break;
2762 case TCP_STATE_FIN_WAIT_2:
Florin Coras9d063042017-09-14 03:08:00 -04002763 /* Got FIN, send ACK! Be more aggressive with resource cleanup */
Dave Barach68b0fb02017-02-28 15:15:56 -05002764 tc0->state = TCP_STATE_TIME_WAIT;
Florin Corasdb84e572017-05-09 18:54:52 -07002765 tcp_connection_timers_reset (tc0);
Florin Coras9d063042017-09-14 03:08:00 -04002766 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002767 tcp_make_ack (tc0, b0);
2768 next0 = tcp_next_output (is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -04002769 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002770 break;
2771 case TCP_STATE_TIME_WAIT:
Florin Coras9d063042017-09-14 03:08:00 -04002772 /* Remain in the TIME-WAIT state. Restart the time-wait
Dave Barach68b0fb02017-02-28 15:15:56 -05002773 * timeout.
2774 */
Florin Coras9d063042017-09-14 03:08:00 -04002775 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002776 break;
2777 }
Florin Corase69f4952017-03-07 10:06:24 -08002778 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -07002779 n_fins += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002780
Florin Coras82b13a82017-04-25 11:58:06 -07002781 drop:
Dave Barach68b0fb02017-02-28 15:15:56 -05002782 b0->error = error0 ? node->errors[error0] : 0;
2783
Dave Barach68b0fb02017-02-28 15:15:56 -05002784 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2785 {
Florin Coras82b13a82017-04-25 11:58:06 -07002786 tcp_rx_trace_t *t0 =
2787 vlib_add_trace (vm, node, b0, sizeof (*t0));
2788 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002789 }
2790
2791 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2792 n_left_to_next, bi0, next0);
2793 }
2794
2795 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2796 }
2797
Florin Coras3cbc04b2017-10-02 00:18:51 -07002798 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2799 my_thread_index);
Florin Coras00cd22d2018-04-18 13:20:18 -07002800 tcp_inc_counter (rcv_process, TCP_ERROR_EVENT_FIFO_FULL, errors);
2801 tcp_inc_counter (rcv_process, TCP_ERROR_FIN_RCVD, n_fins);
Dave Barach68b0fb02017-02-28 15:15:56 -05002802 return from_frame->n_vectors;
2803}
2804
2805static uword
2806tcp4_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node,
2807 vlib_frame_t * from_frame)
2808{
2809 return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2810}
2811
2812static uword
2813tcp6_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node,
2814 vlib_frame_t * from_frame)
2815{
2816 return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2817}
2818
2819/* *INDENT-OFF* */
2820VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
2821{
2822 .function = tcp4_rcv_process,
2823 .name = "tcp4-rcv-process",
2824 /* Takes a vector of packets. */
2825 .vector_size = sizeof (u32),
2826 .n_errors = TCP_N_ERROR,
2827 .error_strings = tcp_error_strings,
2828 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2829 .next_nodes =
2830 {
2831#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
2832 foreach_tcp_state_next
2833#undef _
2834 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002835 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002836};
2837/* *INDENT-ON* */
2838
2839VLIB_NODE_FUNCTION_MULTIARCH (tcp4_rcv_process_node, tcp4_rcv_process);
2840
2841/* *INDENT-OFF* */
2842VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
2843{
2844 .function = tcp6_rcv_process,
2845 .name = "tcp6-rcv-process",
2846 /* Takes a vector of packets. */
2847 .vector_size = sizeof (u32),
2848 .n_errors = TCP_N_ERROR,
2849 .error_strings = tcp_error_strings,
2850 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2851 .next_nodes =
2852 {
2853#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
2854 foreach_tcp_state_next
2855#undef _
2856 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002857 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002858};
2859/* *INDENT-ON* */
2860
2861VLIB_NODE_FUNCTION_MULTIARCH (tcp6_rcv_process_node, tcp6_rcv_process);
2862
2863vlib_node_registration_t tcp4_listen_node;
2864vlib_node_registration_t tcp6_listen_node;
2865
2866/**
2867 * LISTEN state processing as per RFC 793 p. 65
2868 */
2869always_inline uword
2870tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2871 vlib_frame_t * from_frame, int is_ip4)
2872{
Florin Coras00cd22d2018-04-18 13:20:18 -07002873 u32 n_left_from, next_index, *from, *to_next, n_syns = 0;
Damjan Marion586afd72017-04-05 19:18:20 +02002874 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002875
2876 from = vlib_frame_vector_args (from_frame);
2877 n_left_from = from_frame->n_vectors;
2878
2879 next_index = node->cached_next_index;
2880
2881 while (n_left_from > 0)
2882 {
2883 u32 n_left_to_next;
2884
2885 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2886
2887 while (n_left_from > 0 && n_left_to_next > 0)
2888 {
2889 u32 bi0;
2890 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002891 tcp_rx_trace_t *t0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002892 tcp_header_t *th0 = 0;
2893 tcp_connection_t *lc0;
2894 ip4_header_t *ip40;
2895 ip6_header_t *ip60;
2896 tcp_connection_t *child0;
Florin Coras00cd22d2018-04-18 13:20:18 -07002897 u32 error0 = TCP_ERROR_NONE, next0 = tcp_next_drop (is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002898
2899 bi0 = from[0];
2900 to_next[0] = bi0;
2901 from += 1;
2902 to_next += 1;
2903 n_left_from -= 1;
2904 n_left_to_next -= 1;
2905
2906 b0 = vlib_get_buffer (vm, bi0);
2907 lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index);
2908
2909 if (is_ip4)
2910 {
2911 ip40 = vlib_buffer_get_current (b0);
2912 th0 = ip4_next_header (ip40);
2913 }
2914 else
2915 {
2916 ip60 = vlib_buffer_get_current (b0);
2917 th0 = ip6_next_header (ip60);
2918 }
2919
2920 /* Create child session. For syn-flood protection use filter */
2921
Florin Corasdc629cd2017-05-09 00:52:37 -07002922 /* 1. first check for an RST: handled in dispatch */
2923 /* if (tcp_rst (th0))
2924 goto drop; */
Dave Barach68b0fb02017-02-28 15:15:56 -05002925
Florin Corasdc629cd2017-05-09 00:52:37 -07002926 /* 2. second check for an ACK: handled in dispatch */
2927 /* if (tcp_ack (th0))
2928 {
2929 tcp_send_reset (b0, is_ip4);
2930 goto drop;
2931 } */
Dave Barach68b0fb02017-02-28 15:15:56 -05002932
2933 /* 3. check for a SYN (did that already) */
2934
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002935 /* Make sure connection wasn't just created */
Florin Corasc1a448b2018-04-20 10:51:49 -07002936 child0 = tcp_lookup_connection (lc0->c_fib_index, b0,
2937 my_thread_index, is_ip4);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002938 if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN))
2939 {
2940 error0 = TCP_ERROR_CREATE_EXISTS;
2941 goto drop;
2942 }
2943
Dave Barach68b0fb02017-02-28 15:15:56 -05002944 /* Create child session and send SYN-ACK */
Florin Coras6534b7a2017-07-18 05:38:03 -04002945 child0 = tcp_connection_new (my_thread_index);
Florin Coras1c710452017-10-17 00:03:13 -07002946 child0->c_lcl_port = th0->dst_port;
Dave Barach68b0fb02017-02-28 15:15:56 -05002947 child0->c_rmt_port = th0->src_port;
2948 child0->c_is_ip4 = is_ip4;
Florin Corasbb292f42017-05-19 09:49:19 -07002949 child0->state = TCP_STATE_SYN_RCVD;
Florin Coras56b39f62018-03-27 17:29:32 -07002950 child0->c_fib_index = lc0->c_fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002951
2952 if (is_ip4)
2953 {
2954 child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32;
2955 child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32;
2956 }
2957 else
2958 {
2959 clib_memcpy (&child0->c_lcl_ip6, &ip60->dst_address,
2960 sizeof (ip6_address_t));
2961 clib_memcpy (&child0->c_rmt_ip6, &ip60->src_address,
2962 sizeof (ip6_address_t));
2963 }
2964
Florin Coras93992a92017-05-24 18:03:56 -07002965 if (tcp_options_parse (th0, &child0->rcv_opts))
Florin Corasdb84e572017-05-09 18:54:52 -07002966 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002967 clib_warning ("options parse fail");
Florin Corasdb84e572017-05-09 18:54:52 -07002968 goto drop;
2969 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002970
2971 child0->irs = vnet_buffer (b0)->tcp.seq_number;
2972 child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1;
Florin Coras3e350af2017-03-30 02:54:28 -07002973 child0->rcv_las = child0->rcv_nxt;
Florin Corasf9d05682018-04-26 08:26:52 -07002974 child0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Dave Barach68b0fb02017-02-28 15:15:56 -05002975
2976 /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
2977 * segments are used to initialize PAWS. */
Florin Coras93992a92017-05-24 18:03:56 -07002978 if (tcp_opts_tstamp (&child0->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05002979 {
Florin Coras93992a92017-05-24 18:03:56 -07002980 child0->tsval_recent = child0->rcv_opts.tsval;
Dave Barach68b0fb02017-02-28 15:15:56 -05002981 child0->tsval_recent_age = tcp_time_now ();
2982 }
2983
Florin Coras93992a92017-05-24 18:03:56 -07002984 if (tcp_opts_wscale (&child0->rcv_opts))
2985 child0->snd_wscale = child0->rcv_opts.wscale;
Florin Corase04c2992017-03-01 08:17:34 -08002986
Florin Corasf03a59a2017-06-09 21:07:32 -07002987 child0->snd_wnd = clib_net_to_host_u16 (th0->window)
2988 << child0->snd_wscale;
Florin Corase04c2992017-03-01 08:17:34 -08002989 child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2990 child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
2991
2992 tcp_connection_init_vars (child0);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002993 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, child0, 1);
Florin Corase69f4952017-03-07 10:06:24 -08002994
Florin Coras6dfb5ac2017-11-09 16:26:03 -08002995 if (stream_session_accept (&child0->connection, lc0->c_s_index,
2996 0 /* notify */ ))
2997 {
2998 clib_warning ("session accept fail");
2999 tcp_connection_cleanup (child0);
3000 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
3001 goto drop;
3002 }
3003
Dave Barach68b0fb02017-02-28 15:15:56 -05003004 /* Reuse buffer to make syn-ack and send */
3005 tcp_make_synack (child0, b0);
3006 next0 = tcp_next_output (is_ip4);
Florin Corasab0289a2017-08-14 11:25:25 -07003007 tcp_timer_set (child0, TCP_TIMER_ESTABLISH, TCP_SYN_RCVD_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05003008
3009 drop:
3010 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3011 {
Clement Durand6cf260c2017-04-13 13:27:04 +02003012 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
3013 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
3014 clib_memcpy (&t0->tcp_connection, lc0,
3015 sizeof (t0->tcp_connection));
Dave Barach68b0fb02017-02-28 15:15:56 -05003016 }
3017
Florin Coras00cd22d2018-04-18 13:20:18 -07003018 n_syns += (error0 == TCP_ERROR_NONE);
Florin Corase04c2992017-03-01 08:17:34 -08003019 b0->error = node->errors[error0];
Dave Barach68b0fb02017-02-28 15:15:56 -05003020
3021 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
3022 n_left_to_next, bi0, next0);
3023 }
3024
3025 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
3026 }
Florin Coras00cd22d2018-04-18 13:20:18 -07003027
3028 tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
Dave Barach68b0fb02017-02-28 15:15:56 -05003029 return from_frame->n_vectors;
3030}
3031
3032static uword
3033tcp4_listen (vlib_main_t * vm, vlib_node_runtime_t * node,
3034 vlib_frame_t * from_frame)
3035{
3036 return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3037}
3038
3039static uword
3040tcp6_listen (vlib_main_t * vm, vlib_node_runtime_t * node,
3041 vlib_frame_t * from_frame)
3042{
3043 return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3044}
3045
3046/* *INDENT-OFF* */
3047VLIB_REGISTER_NODE (tcp4_listen_node) =
3048{
3049 .function = tcp4_listen,
3050 .name = "tcp4-listen",
3051 /* Takes a vector of packets. */
3052 .vector_size = sizeof (u32),
3053 .n_errors = TCP_N_ERROR,
3054 .error_strings = tcp_error_strings,
3055 .n_next_nodes = TCP_LISTEN_N_NEXT,
3056 .next_nodes =
3057 {
3058#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3059 foreach_tcp_state_next
3060#undef _
3061 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003062 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003063};
3064/* *INDENT-ON* */
3065
3066VLIB_NODE_FUNCTION_MULTIARCH (tcp4_listen_node, tcp4_listen);
3067
3068/* *INDENT-OFF* */
3069VLIB_REGISTER_NODE (tcp6_listen_node) =
3070{
3071 .function = tcp6_listen,
3072 .name = "tcp6-listen",
3073 /* Takes a vector of packets. */
3074 .vector_size = sizeof (u32),
3075 .n_errors = TCP_N_ERROR,
3076 .error_strings = tcp_error_strings,
3077 .n_next_nodes = TCP_LISTEN_N_NEXT,
3078 .next_nodes =
3079 {
3080#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3081 foreach_tcp_state_next
3082#undef _
3083 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003084 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003085};
3086/* *INDENT-ON* */
3087
3088VLIB_NODE_FUNCTION_MULTIARCH (tcp6_listen_node, tcp6_listen);
3089
3090vlib_node_registration_t tcp4_input_node;
3091vlib_node_registration_t tcp6_input_node;
3092
3093typedef enum _tcp_input_next
3094{
3095 TCP_INPUT_NEXT_DROP,
3096 TCP_INPUT_NEXT_LISTEN,
3097 TCP_INPUT_NEXT_RCV_PROCESS,
3098 TCP_INPUT_NEXT_SYN_SENT,
3099 TCP_INPUT_NEXT_ESTABLISHED,
3100 TCP_INPUT_NEXT_RESET,
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003101 TCP_INPUT_NEXT_PUNT,
Dave Barach68b0fb02017-02-28 15:15:56 -05003102 TCP_INPUT_N_NEXT
3103} tcp_input_next_t;
3104
3105#define foreach_tcp4_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003106 _ (DROP, "ip4-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003107 _ (LISTEN, "tcp4-listen") \
3108 _ (RCV_PROCESS, "tcp4-rcv-process") \
3109 _ (SYN_SENT, "tcp4-syn-sent") \
3110 _ (ESTABLISHED, "tcp4-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003111 _ (RESET, "tcp4-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003112 _ (PUNT, "ip4-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003113
3114#define foreach_tcp6_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003115 _ (DROP, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003116 _ (LISTEN, "tcp6-listen") \
3117 _ (RCV_PROCESS, "tcp6-rcv-process") \
3118 _ (SYN_SENT, "tcp6-syn-sent") \
3119 _ (ESTABLISHED, "tcp6-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003120 _ (RESET, "tcp6-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003121 _ (PUNT, "ip6-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003122
Dave Barach68b0fb02017-02-28 15:15:56 -05003123#define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
3124
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003125static void
3126tcp_input_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07003127 vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003128{
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003129 tcp_connection_t *tc;
3130 tcp_header_t *tcp;
3131 tcp_rx_trace_t *t;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003132 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05003133
Florin Coras4df38712018-06-20 12:44:16 -07003134 for (i = 0; i < n_bufs; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05003135 {
Florin Coras4df38712018-06-20 12:44:16 -07003136 if (bs[i]->flags & VLIB_BUFFER_IS_TRACED)
3137 {
3138 t = vlib_add_trace (vm, node, bs[i], sizeof (*t));
3139 tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index,
3140 vm->thread_index);
3141 tcp = vlib_buffer_get_current (bs[i]);
3142 tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4);
3143 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003144 }
3145}
Dave Barach68b0fb02017-02-28 15:15:56 -05003146
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003147static void
3148tcp_input_set_error_next (tcp_main_t * tm, u16 * next, u32 * error, u8 is_ip4)
3149{
3150 if (*error == TCP_ERROR_FILTERED)
3151 {
3152 *next = TCP_INPUT_NEXT_DROP;
3153 }
3154 else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6))
3155 {
3156 *next = TCP_INPUT_NEXT_PUNT;
3157 *error = TCP_ERROR_PUNT;
3158 }
3159 else
3160 {
3161 *next = TCP_INPUT_NEXT_RESET;
3162 *error = TCP_ERROR_NO_LISTENER;
3163 }
3164}
Dave Barach68b0fb02017-02-28 15:15:56 -05003165
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003166static inline tcp_connection_t *
3167tcp_input_lookup_buffer (vlib_buffer_t * b, u8 thread_index, u32 * error,
3168 u8 is_ip4)
3169{
3170 u32 fib_index = vnet_buffer (b)->ip.fib_index;
3171 int n_advance_bytes, n_data_bytes;
3172 transport_connection_t *tc;
3173 tcp_header_t *tcp;
3174 u8 is_filtered = 0;
3175
3176 if (is_ip4)
3177 {
3178 ip4_header_t *ip4 = vlib_buffer_get_current (b);
3179 tcp = ip4_next_header (ip4);
3180 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip4;
3181 n_advance_bytes = (ip4_header_bytes (ip4) + tcp_header_bytes (tcp));
3182 n_data_bytes = clib_net_to_host_u16 (ip4->length) - n_advance_bytes;
3183
3184 /* Length check. Checksum computed by ipx_local no need to compute again */
3185 if (PREDICT_FALSE (n_advance_bytes < 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05003186 {
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003187 *error = TCP_ERROR_LENGTH;
3188 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003189 }
3190
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003191 tc = session_lookup_connection_wt4 (fib_index, &ip4->dst_address,
3192 &ip4->src_address, tcp->dst_port,
3193 tcp->src_port, TRANSPORT_PROTO_TCP,
3194 thread_index, &is_filtered);
3195 }
3196 else
3197 {
3198 ip6_header_t *ip6 = vlib_buffer_get_current (b);
3199 tcp = ip6_next_header (ip6);
3200 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip6;
3201 n_advance_bytes = tcp_header_bytes (tcp);
3202 n_data_bytes = clib_net_to_host_u16 (ip6->payload_length)
3203 - n_advance_bytes;
3204 n_advance_bytes += sizeof (ip6[0]);
3205
3206 if (PREDICT_FALSE (n_advance_bytes < 0))
3207 {
3208 *error = TCP_ERROR_LENGTH;
3209 return 0;
3210 }
3211
3212 tc = session_lookup_connection_wt6 (fib_index, &ip6->dst_address,
3213 &ip6->src_address, tcp->dst_port,
3214 tcp->src_port, TRANSPORT_PROTO_TCP,
3215 thread_index, &is_filtered);
Dave Barach68b0fb02017-02-28 15:15:56 -05003216 }
3217
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003218 vnet_buffer (b)->tcp.seq_number = clib_net_to_host_u32 (tcp->seq_number);
3219 vnet_buffer (b)->tcp.ack_number = clib_net_to_host_u32 (tcp->ack_number);
3220 vnet_buffer (b)->tcp.data_offset = n_advance_bytes;
3221 vnet_buffer (b)->tcp.data_len = n_data_bytes;
3222 vnet_buffer (b)->tcp.flags = 0;
3223
3224 *error = is_filtered ? TCP_ERROR_FILTERED : *error;
3225
3226 return tcp_get_connection_from_transport (tc);
3227}
3228
3229static inline void
3230tcp_input_dispatch_buffer (tcp_main_t * tm, tcp_connection_t * tc,
3231 vlib_buffer_t * b, u16 * next, u32 * error)
3232{
3233 tcp_header_t *tcp;
3234 u8 flags;
3235
3236 tcp = tcp_buffer_hdr (b);
3237 flags = tcp->flags & filter_flags;
3238 *next = tm->dispatch_table[tc->state][flags].next;
3239 *error = tm->dispatch_table[tc->state][flags].error;
3240
3241 if (PREDICT_FALSE (*error == TCP_ERROR_DISPATCH
3242 || *next == TCP_INPUT_NEXT_RESET))
3243 {
3244 /* Overload tcp flags to store state */
3245 tcp_state_t state = tc->state;
3246 vnet_buffer (b)->tcp.flags = tc->state;
3247
3248 if (*error == TCP_ERROR_DISPATCH)
3249 clib_warning ("disp error state %U flags %U", format_tcp_state,
3250 state, format_tcp_flags, (int) flags);
3251 }
3252}
3253
3254always_inline uword
3255tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3256 vlib_frame_t * frame, int is_ip4)
3257{
3258 u32 n_left_from, *from, thread_index = vm->thread_index;
3259 tcp_main_t *tm = vnet_get_tcp_main ();
3260 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
3261 u16 nexts[VLIB_FRAME_SIZE], *next;
3262
3263 tcp_set_time_now (thread_index);
3264
3265 from = vlib_frame_vector_args (frame);
3266 n_left_from = frame->n_vectors;
3267 vlib_get_buffers (vm, from, bufs, n_left_from);
3268
3269 b = bufs;
3270 next = nexts;
3271
3272 while (n_left_from >= 4)
3273 {
3274 u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER;
3275 tcp_connection_t *tc0, *tc1;
3276
3277 {
3278 vlib_prefetch_buffer_header (b[2], STORE);
3279 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3280
3281 vlib_prefetch_buffer_header (b[3], STORE);
3282 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3283 }
3284
3285 next[0] = next[1] = TCP_INPUT_NEXT_DROP;
3286
3287 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4);
3288 tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4);
3289
3290 if (PREDICT_TRUE (!tc0 + !tc1 == 0))
3291 {
3292 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3293 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3294
3295 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3296 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3297
3298 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3299 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3300 }
3301 else
3302 {
3303 if (PREDICT_TRUE (tc0 != 0))
3304 {
3305 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3306 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3307 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3308 }
3309 else
3310 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3311
3312 if (PREDICT_TRUE (tc1 != 0))
3313 {
3314 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3315 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3316 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3317 }
3318 else
3319 tcp_input_set_error_next (tm, &next[1], &error1, is_ip4);
3320 }
3321
3322 b += 2;
3323 next += 2;
3324 n_left_from -= 2;
3325 }
3326 while (n_left_from > 0)
3327 {
3328 tcp_connection_t *tc0;
3329 u32 error0 = TCP_ERROR_NO_LISTENER;
3330
3331 if (n_left_from > 1)
3332 {
3333 vlib_prefetch_buffer_header (b[1], STORE);
3334 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3335 }
3336
3337 next[0] = TCP_INPUT_NEXT_DROP;
3338 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4);
3339 if (PREDICT_TRUE (tc0 != 0))
3340 {
3341 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3342 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3343 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3344 }
3345 else
3346 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3347
3348 b += 1;
3349 next += 1;
3350 n_left_from -= 1;
3351 }
3352
3353 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
3354 tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4);
3355
3356 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
3357 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05003358}
3359
3360static uword
3361tcp4_input (vlib_main_t * vm, vlib_node_runtime_t * node,
3362 vlib_frame_t * from_frame)
3363{
3364 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3365}
3366
3367static uword
3368tcp6_input (vlib_main_t * vm, vlib_node_runtime_t * node,
3369 vlib_frame_t * from_frame)
3370{
3371 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3372}
3373
3374/* *INDENT-OFF* */
3375VLIB_REGISTER_NODE (tcp4_input_node) =
3376{
3377 .function = tcp4_input,
3378 .name = "tcp4-input",
3379 /* Takes a vector of packets. */
3380 .vector_size = sizeof (u32),
3381 .n_errors = TCP_N_ERROR,
3382 .error_strings = tcp_error_strings,
3383 .n_next_nodes = TCP_INPUT_N_NEXT,
3384 .next_nodes =
3385 {
3386#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3387 foreach_tcp4_input_next
3388#undef _
3389 },
3390 .format_buffer = format_tcp_header,
3391 .format_trace = format_tcp_rx_trace,
3392};
3393/* *INDENT-ON* */
3394
3395VLIB_NODE_FUNCTION_MULTIARCH (tcp4_input_node, tcp4_input);
3396
3397/* *INDENT-OFF* */
3398VLIB_REGISTER_NODE (tcp6_input_node) =
3399{
3400 .function = tcp6_input,
3401 .name = "tcp6-input",
3402 /* Takes a vector of packets. */
3403 .vector_size = sizeof (u32),
3404 .n_errors = TCP_N_ERROR,
3405 .error_strings = tcp_error_strings,
3406 .n_next_nodes = TCP_INPUT_N_NEXT,
3407 .next_nodes =
3408 {
3409#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3410 foreach_tcp6_input_next
3411#undef _
3412 },
3413 .format_buffer = format_tcp_header,
3414 .format_trace = format_tcp_rx_trace,
3415};
3416/* *INDENT-ON* */
3417
3418VLIB_NODE_FUNCTION_MULTIARCH (tcp6_input_node, tcp6_input);
Dave Barach68b0fb02017-02-28 15:15:56 -05003419
3420static void
3421tcp_dispatch_table_init (tcp_main_t * tm)
3422{
3423 int i, j;
3424 for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3425 for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3426 {
3427 tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3428 tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3429 }
3430
3431#define _(t,f,n,e) \
3432do { \
3433 tm->dispatch_table[TCP_STATE_##t][f].next = (n); \
3434 tm->dispatch_table[TCP_STATE_##t][f].error = (e); \
3435} while (0)
3436
3437 /* SYNs for new connections -> tcp-listen. */
3438 _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003439 _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
Florin Coras00cd22d2018-04-18 13:20:18 -07003440 _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_RST_RCVD);
Dave Barach2c25a622017-06-26 11:35:07 -04003441 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3442 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003443 /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3444 _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc28764f2017-04-26 00:08:42 -07003445 _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase8460c72018-09-24 14:40:40 -07003446 _(SYN_RCVD, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3447 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003448 _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc01c4452018-09-20 18:36:54 -07003449 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3450 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003451 /* SYN-ACK for a SYN */
3452 _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3453 TCP_ERROR_NONE);
3454 _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3455 _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3456 _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3457 TCP_ERROR_NONE);
3458 /* ACK for for established connection -> tcp-established. */
3459 _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3460 /* FIN for for established connection -> tcp-established. */
3461 _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3462 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3463 TCP_ERROR_NONE);
Florin Corasd79b41e2017-03-04 05:37:52 -08003464 _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003465 _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3466 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003467 _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003468 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3469 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003470 /* ACK or FIN-ACK to our FIN */
3471 _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3472 _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
3473 TCP_ERROR_NONE);
3474 /* FIN in reply to our FIN from the other side */
3475 _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003476 _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras56318932018-05-23 20:44:12 -07003477 _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003478 /* FIN confirming that the peer (app) has closed */
3479 _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasf6d68ed2017-05-07 19:12:02 -07003480 _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003481 _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3482 TCP_ERROR_NONE);
Florin Corasf03a59a2017-06-09 21:07:32 -07003483 _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3484 _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3485 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003486 _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003487 _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3488 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3489 TCP_ERROR_NONE);
Florin Corasdb84e572017-05-09 18:54:52 -07003490 _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003491 _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3492 _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3493 TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003494 _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras50958952017-08-29 14:50:13 -07003495 _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras9d063042017-09-14 03:08:00 -04003496 _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Corasdc629cd2017-05-09 00:52:37 -07003497 _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras9d063042017-09-14 03:08:00 -04003498 _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003499 TCP_ERROR_CONNECTION_CLOSED);
Dave Barach68b0fb02017-02-28 15:15:56 -05003500#undef _
3501}
3502
Florin Coras0dbd5172018-06-25 16:19:34 -07003503static clib_error_t *
Dave Barach68b0fb02017-02-28 15:15:56 -05003504tcp_input_init (vlib_main_t * vm)
3505{
3506 clib_error_t *error = 0;
3507 tcp_main_t *tm = vnet_get_tcp_main ();
3508
3509 if ((error = vlib_call_init_function (vm, tcp_init)))
3510 return error;
3511
3512 /* Initialize dispatch table. */
3513 tcp_dispatch_table_init (tm);
3514
3515 return error;
3516}
3517
3518VLIB_INIT_FUNCTION (tcp_input_init);
3519
3520/*
3521 * fd.io coding-style-patch-verification: ON
3522 *
3523 * Local Variables:
3524 * eval: (c-set-style "gnu")
3525 * End:
3526 */