blob: dff180291556bb9514e03fba24d9fb76b07ef97f [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vppinfra/sparse_vec.h>
17#include <vnet/tcp/tcp_packet.h>
18#include <vnet/tcp/tcp.h>
19#include <vnet/session/session.h>
20#include <math.h>
21
22static char *tcp_error_strings[] = {
23#define tcp_error(n,s) s,
24#include <vnet/tcp/tcp_error.def>
25#undef tcp_error
26};
27
28/* All TCP nodes have the same outgoing arcs */
29#define foreach_tcp_state_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080030 _ (DROP4, "ip4-drop") \
31 _ (DROP6, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -050032 _ (TCP4_OUTPUT, "tcp4-output") \
33 _ (TCP6_OUTPUT, "tcp6-output")
34
35typedef enum _tcp_established_next
36{
37#define _(s,n) TCP_ESTABLISHED_NEXT_##s,
38 foreach_tcp_state_next
39#undef _
40 TCP_ESTABLISHED_N_NEXT,
41} tcp_established_next_t;
42
43typedef enum _tcp_rcv_process_next
44{
45#define _(s,n) TCP_RCV_PROCESS_NEXT_##s,
46 foreach_tcp_state_next
47#undef _
48 TCP_RCV_PROCESS_N_NEXT,
49} tcp_rcv_process_next_t;
50
51typedef enum _tcp_syn_sent_next
52{
53#define _(s,n) TCP_SYN_SENT_NEXT_##s,
54 foreach_tcp_state_next
55#undef _
56 TCP_SYN_SENT_N_NEXT,
57} tcp_syn_sent_next_t;
58
59typedef enum _tcp_listen_next
60{
61#define _(s,n) TCP_LISTEN_NEXT_##s,
62 foreach_tcp_state_next
63#undef _
64 TCP_LISTEN_N_NEXT,
65} tcp_listen_next_t;
66
67/* Generic, state independent indices */
68typedef enum _tcp_state_next
69{
70#define _(s,n) TCP_NEXT_##s,
71 foreach_tcp_state_next
72#undef _
73 TCP_STATE_N_NEXT,
74} tcp_state_next_t;
75
76#define tcp_next_output(is_ip4) (is_ip4 ? TCP_NEXT_TCP4_OUTPUT \
77 : TCP_NEXT_TCP6_OUTPUT)
78
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080079#define tcp_next_drop(is_ip4) (is_ip4 ? TCP_NEXT_DROP4 \
80 : TCP_NEXT_DROP6)
81
Dave Barach68b0fb02017-02-28 15:15:56 -050082vlib_node_registration_t tcp4_established_node;
83vlib_node_registration_t tcp6_established_node;
84
85/**
86 * Validate segment sequence number. As per RFC793:
87 *
88 * Segment Receive Test
89 * Length Window
90 * ------- ------- -------------------------------------------
91 * 0 0 SEG.SEQ = RCV.NXT
92 * 0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
93 * >0 0 not acceptable
94 * >0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
95 * or RCV.NXT =< SEG.SEQ+SEG.LEN-1 < RCV.NXT+RCV.WND
96 *
97 * This ultimately consists in checking if segment falls within the window.
98 * The one important difference compared to RFC793 is that we use rcv_las,
99 * or the rcv_nxt at last ack sent instead of rcv_nxt since that's the
100 * peer's reference when computing our receive window.
101 *
Florin Coras6792ec02017-03-13 03:49:51 -0700102 * This:
103 * seq_leq (end_seq, tc->rcv_las + tc->rcv_wnd) && seq_geq (seq, tc->rcv_las)
104 * however, is too strict when we have retransmits. Instead we just check that
105 * the seq is not beyond the right edge and that the end of the segment is not
106 * less than the left edge.
107 *
108 * N.B. rcv_nxt and rcv_wnd are both updated in this node if acks are sent, so
109 * use rcv_nxt in the right edge window test instead of rcv_las.
110 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500111 */
112always_inline u8
113tcp_segment_in_rcv_wnd (tcp_connection_t * tc, u32 seq, u32 end_seq)
114{
Florin Coras6792ec02017-03-13 03:49:51 -0700115 return (seq_geq (end_seq, tc->rcv_las)
116 && seq_leq (seq, tc->rcv_nxt + tc->rcv_wnd));
Dave Barach68b0fb02017-02-28 15:15:56 -0500117}
118
Florin Corasdb84e572017-05-09 18:54:52 -0700119/**
120 * Parse TCP header options.
121 *
122 * @param th TCP header
123 * @param to TCP options data structure to be populated
Florin Coras80231112018-12-05 15:59:31 -0800124 * @param is_syn set if packet is syn
Florin Corasdb84e572017-05-09 18:54:52 -0700125 * @return -1 if parsing failed
126 */
Florin Coras80231112018-12-05 15:59:31 -0800127static inline int
128tcp_options_parse (tcp_header_t * th, tcp_options_t * to, u8 is_syn)
Dave Barach68b0fb02017-02-28 15:15:56 -0500129{
130 const u8 *data;
131 u8 opt_len, opts_len, kind;
132 int j;
133 sack_block_t b;
134
135 opts_len = (tcp_doff (th) << 2) - sizeof (tcp_header_t);
136 data = (const u8 *) (th + 1);
137
138 /* Zero out all flags but those set in SYN */
Florin Corasd6fe5bd2018-10-16 19:52:10 -0700139 to->flags &= (TCP_OPTS_FLAG_SACK_PERMITTED | TCP_OPTS_FLAG_WSCALE
Florin Coras80231112018-12-05 15:59:31 -0800140 | TCP_OPTS_FLAG_TSTAMP | TCP_OPTION_MSS);
Dave Barach68b0fb02017-02-28 15:15:56 -0500141
142 for (; opts_len > 0; opts_len -= opt_len, data += opt_len)
143 {
144 kind = data[0];
145
146 /* Get options length */
147 if (kind == TCP_OPTION_EOL)
148 break;
149 else if (kind == TCP_OPTION_NOOP)
Florin Corasdb84e572017-05-09 18:54:52 -0700150 {
151 opt_len = 1;
152 continue;
153 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500154 else
155 {
156 /* broken options */
157 if (opts_len < 2)
Florin Corasdb84e572017-05-09 18:54:52 -0700158 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500159 opt_len = data[1];
160
161 /* weird option length */
162 if (opt_len < 2 || opt_len > opts_len)
Florin Corasdb84e572017-05-09 18:54:52 -0700163 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500164 }
165
166 /* Parse options */
167 switch (kind)
168 {
169 case TCP_OPTION_MSS:
Florin Coras80231112018-12-05 15:59:31 -0800170 if (!is_syn)
171 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500172 if ((opt_len == TCP_OPTION_LEN_MSS) && tcp_syn (th))
173 {
174 to->flags |= TCP_OPTS_FLAG_MSS;
175 to->mss = clib_net_to_host_u16 (*(u16 *) (data + 2));
176 }
177 break;
178 case TCP_OPTION_WINDOW_SCALE:
Florin Coras80231112018-12-05 15:59:31 -0800179 if (!is_syn)
180 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500181 if ((opt_len == TCP_OPTION_LEN_WINDOW_SCALE) && tcp_syn (th))
182 {
183 to->flags |= TCP_OPTS_FLAG_WSCALE;
184 to->wscale = data[2];
185 if (to->wscale > TCP_MAX_WND_SCALE)
186 {
187 clib_warning ("Illegal window scaling value: %d",
188 to->wscale);
189 to->wscale = TCP_MAX_WND_SCALE;
190 }
191 }
192 break;
193 case TCP_OPTION_TIMESTAMP:
Florin Coras80231112018-12-05 15:59:31 -0800194 if (is_syn)
195 to->flags |= TCP_OPTS_FLAG_TSTAMP;
196 if ((to->flags & TCP_OPTS_FLAG_TSTAMP)
197 && opt_len == TCP_OPTION_LEN_TIMESTAMP)
Dave Barach68b0fb02017-02-28 15:15:56 -0500198 {
Dave Barach68b0fb02017-02-28 15:15:56 -0500199 to->tsval = clib_net_to_host_u32 (*(u32 *) (data + 2));
200 to->tsecr = clib_net_to_host_u32 (*(u32 *) (data + 6));
201 }
202 break;
203 case TCP_OPTION_SACK_PERMITTED:
Florin Coras80231112018-12-05 15:59:31 -0800204 if (!is_syn)
205 break;
Dave Barach68b0fb02017-02-28 15:15:56 -0500206 if (opt_len == TCP_OPTION_LEN_SACK_PERMITTED && tcp_syn (th))
207 to->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
208 break;
209 case TCP_OPTION_SACK_BLOCK:
210 /* If SACK permitted was not advertised or a SYN, break */
211 if ((to->flags & TCP_OPTS_FLAG_SACK_PERMITTED) == 0 || tcp_syn (th))
212 break;
213
214 /* If too short or not correctly formatted, break */
215 if (opt_len < 10 || ((opt_len - 2) % TCP_OPTION_LEN_SACK_BLOCK))
216 break;
217
218 to->flags |= TCP_OPTS_FLAG_SACK;
219 to->n_sack_blocks = (opt_len - 2) / TCP_OPTION_LEN_SACK_BLOCK;
220 vec_reset_length (to->sacks);
221 for (j = 0; j < to->n_sack_blocks; j++)
222 {
Florin Coras3eb50622017-07-13 01:24:57 -0400223 b.start = clib_net_to_host_u32 (*(u32 *) (data + 2 + 8 * j));
224 b.end = clib_net_to_host_u32 (*(u32 *) (data + 6 + 8 * j));
Dave Barach68b0fb02017-02-28 15:15:56 -0500225 vec_add1 (to->sacks, b);
226 }
227 break;
228 default:
229 /* Nothing to see here */
230 continue;
231 }
232 }
Florin Corasdb84e572017-05-09 18:54:52 -0700233 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500234}
235
Florin Corasc28764f2017-04-26 00:08:42 -0700236/**
237 * RFC1323: Check against wrapped sequence numbers (PAWS). If we have
238 * timestamp to echo and it's less than tsval_recent, drop segment
239 * but still send an ACK in order to retain TCP's mechanism for detecting
240 * and recovering from half-open connections
241 *
242 * Or at least that's what the theory says. It seems that this might not work
243 * very well with packet reordering and fast retransmit. XXX
244 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500245always_inline int
246tcp_segment_check_paws (tcp_connection_t * tc)
247{
Florin Corasea41aac2018-12-06 17:24:59 -0800248 return tcp_opts_tstamp (&tc->rcv_opts)
Florin Coras93992a92017-05-24 18:03:56 -0700249 && timestamp_lt (tc->rcv_opts.tsval, tc->tsval_recent);
Dave Barach68b0fb02017-02-28 15:15:56 -0500250}
251
252/**
Florin Corasc28764f2017-04-26 00:08:42 -0700253 * Update tsval recent
254 */
255always_inline void
256tcp_update_timestamp (tcp_connection_t * tc, u32 seq, u32 seq_end)
257{
258 /*
259 * RFC1323: If Last.ACK.sent falls within the range of sequence numbers
260 * of an incoming segment:
261 * SEG.SEQ <= Last.ACK.sent < SEG.SEQ + SEG.LEN
262 * then the TSval from the segment is copied to TS.Recent;
263 * otherwise, the TSval is ignored.
264 */
Florin Corasf1762d62017-09-24 19:43:08 -0400265 if (tcp_opts_tstamp (&tc->rcv_opts) && seq_leq (seq, tc->rcv_las)
266 && seq_leq (tc->rcv_las, seq_end))
Florin Corasc28764f2017-04-26 00:08:42 -0700267 {
Dave Barach2c25a622017-06-26 11:35:07 -0400268 ASSERT (timestamp_leq (tc->tsval_recent, tc->rcv_opts.tsval));
Florin Coras93992a92017-05-24 18:03:56 -0700269 tc->tsval_recent = tc->rcv_opts.tsval;
Florin Corasbe72ae62018-11-01 11:23:03 -0700270 tc->tsval_recent_age = tcp_time_now_w_thread (tc->c_thread_index);
Florin Corasc28764f2017-04-26 00:08:42 -0700271 }
272}
273
274/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500275 * Validate incoming segment as per RFC793 p. 69 and RFC1323 p. 19
276 *
277 * It first verifies if segment has a wrapped sequence number (PAWS) and then
278 * does the processing associated to the first four steps (ignoring security
279 * and precedence): sequence number, rst bit and syn bit checks.
280 *
281 * @return 0 if segments passes validation.
282 */
283static int
Florin Coras7ac053b2018-11-05 15:57:21 -0800284tcp_segment_validate (tcp_worker_ctx_t * wrk, tcp_connection_t * tc0,
285 vlib_buffer_t * b0, tcp_header_t * th0, u32 * error0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500286{
Florin Corasca1c8f32018-05-23 21:01:30 -0700287 /* We could get a burst of RSTs interleaved with acks */
288 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
289 {
290 tcp_send_reset (tc0);
291 *error0 = TCP_ERROR_CONNECTION_CLOSED;
Florin Coras7ac053b2018-11-05 15:57:21 -0800292 goto error;
Florin Corasca1c8f32018-05-23 21:01:30 -0700293 }
294
Dave Barach68b0fb02017-02-28 15:15:56 -0500295 if (PREDICT_FALSE (!tcp_ack (th0) && !tcp_rst (th0) && !tcp_syn (th0)))
Florin Coras00cd22d2018-04-18 13:20:18 -0700296 {
297 *error0 = TCP_ERROR_SEGMENT_INVALID;
Florin Coras7ac053b2018-11-05 15:57:21 -0800298 goto error;
Florin Coras00cd22d2018-04-18 13:20:18 -0700299 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500300
Florin Coras80231112018-12-05 15:59:31 -0800301 if (PREDICT_FALSE (tcp_options_parse (th0, &tc0->rcv_opts, 0)))
Florin Corasdb84e572017-05-09 18:54:52 -0700302 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700303 *error0 = TCP_ERROR_OPTIONS;
Florin Coras7ac053b2018-11-05 15:57:21 -0800304 goto error;
Florin Corasdb84e572017-05-09 18:54:52 -0700305 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500306
Florin Coras00cd22d2018-04-18 13:20:18 -0700307 if (PREDICT_FALSE (tcp_segment_check_paws (tc0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500308 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700309 *error0 = TCP_ERROR_PAWS;
Florin Corasc28764f2017-04-26 00:08:42 -0700310 TCP_EVT_DBG (TCP_EVT_PAWS_FAIL, tc0, vnet_buffer (b0)->tcp.seq_number,
311 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500312
313 /* If it just so happens that a segment updates tsval_recent for a
314 * segment over 24 days old, invalidate tsval_recent. */
315 if (timestamp_lt (tc0->tsval_recent_age + TCP_PAWS_IDLE,
Florin Corasbe72ae62018-11-01 11:23:03 -0700316 tcp_time_now_w_thread (tc0->c_thread_index)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500317 {
Florin Corasea41aac2018-12-06 17:24:59 -0800318 tc0->tsval_recent = tc0->rcv_opts.tsval;
Florin Corasc28764f2017-04-26 00:08:42 -0700319 clib_warning ("paws failed - really old segment. REALLY?");
Dave Barach68b0fb02017-02-28 15:15:56 -0500320 }
321 else
322 {
323 /* Drop after ack if not rst */
324 if (!tcp_rst (th0))
325 {
Florin Coras7ac053b2018-11-05 15:57:21 -0800326 tcp_program_ack (wrk, tc0);
Florin Corasca1c8f32018-05-23 21:01:30 -0700327 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500328 }
329 }
Florin Coras7ac053b2018-11-05 15:57:21 -0800330 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500331 }
332
333 /* 1st: check sequence number */
334 if (!tcp_segment_in_rcv_wnd (tc0, vnet_buffer (b0)->tcp.seq_number,
335 vnet_buffer (b0)->tcp.seq_end))
336 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700337 *error0 = TCP_ERROR_RCV_WND;
Florin Coras6792ec02017-03-13 03:49:51 -0700338 /* If our window is 0 and the packet is in sequence, let it pass
Florin Coras00cd22d2018-04-18 13:20:18 -0700339 * through for ack processing. It should be dropped later. */
340 if (!(tc0->rcv_wnd == 0
341 && tc0->rcv_nxt == vnet_buffer (b0)->tcp.seq_number))
Florin Coras6792ec02017-03-13 03:49:51 -0700342 {
343 /* If not RST, send dup ack */
344 if (!tcp_rst (th0))
345 {
Florin Coras7ac053b2018-11-05 15:57:21 -0800346 tcp_program_dupack (wrk, tc0);
Florin Corasca1c8f32018-05-23 21:01:30 -0700347 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
Florin Coras6792ec02017-03-13 03:49:51 -0700348 }
Florin Coras7ac053b2018-11-05 15:57:21 -0800349 goto error;
Florin Coras6792ec02017-03-13 03:49:51 -0700350 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500351 }
352
353 /* 2nd: check the RST bit */
Florin Coras00cd22d2018-04-18 13:20:18 -0700354 if (PREDICT_FALSE (tcp_rst (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500355 {
Florin Corasd79b41e2017-03-04 05:37:52 -0800356 tcp_connection_reset (tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -0700357 *error0 = TCP_ERROR_RST_RCVD;
Florin Coras7ac053b2018-11-05 15:57:21 -0800358 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500359 }
360
361 /* 3rd: check security and precedence (skip) */
362
363 /* 4th: check the SYN bit */
Florin Coras00cd22d2018-04-18 13:20:18 -0700364 if (PREDICT_FALSE (tcp_syn (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500365 {
Florin Coras6534b7a2017-07-18 05:38:03 -0400366 /* TODO implement RFC 5961 */
Florin Coras9d063042017-09-14 03:08:00 -0400367 if (tc0->state == TCP_STATE_SYN_RCVD)
368 {
Florin Coras80231112018-12-05 15:59:31 -0800369 tcp_options_parse (th0, &tc0->rcv_opts, 1);
Florin Coras7ac053b2018-11-05 15:57:21 -0800370 tcp_send_synack (tc0);
Florin Coras9d063042017-09-14 03:08:00 -0400371 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, tc0, 0);
372 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400373 else
Florin Coras9d063042017-09-14 03:08:00 -0400374 {
Florin Coras7ac053b2018-11-05 15:57:21 -0800375 tcp_program_ack (wrk, tc0);
Florin Coras9d063042017-09-14 03:08:00 -0400376 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, tc0);
377 }
Florin Coras00cd22d2018-04-18 13:20:18 -0700378 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500379 }
380
Florin Corasc28764f2017-04-26 00:08:42 -0700381 /* If segment in window, save timestamp */
382 tcp_update_timestamp (tc0, vnet_buffer (b0)->tcp.seq_number,
383 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500384 return 0;
Florin Coras00cd22d2018-04-18 13:20:18 -0700385
Florin Coras00cd22d2018-04-18 13:20:18 -0700386error:
Florin Coras00cd22d2018-04-18 13:20:18 -0700387 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 {
Florin Corasefefc6b2018-11-07 12:49:19 -0800464 f64 sample = tcp_time_now_us (tc->c_thread_index) - tc->rtt_ts;
465 tc->mrtt_us = tc->mrtt_us + (sample - tc->mrtt_us) * 0.125;
466 mrtt = clib_max ((u32) (sample * THZ), 1);
467 /* Allow measuring of a new RTT */
468 tc->rtt_ts = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500469 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500470 /* As per RFC7323 TSecr can be used for RTTM only if the segment advances
471 * snd_una, i.e., the left side of the send window:
Florin Corasf1762d62017-09-24 19:43:08 -0400472 * seq_lt (tc->snd_una, ack). This is a condition for calling update_rtt */
473 else if (tcp_opts_tstamp (&tc->rcv_opts) && tc->rcv_opts.tsecr)
Dave Barach68b0fb02017-02-28 15:15:56 -0500474 {
Florin Corasbe72ae62018-11-01 11:23:03 -0700475 u32 now = tcp_time_now_w_thread (tc->c_thread_index);
476 mrtt = clib_max (now - tc->rcv_opts.tsecr, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500477 }
478
Florin Corasf1762d62017-09-24 19:43:08 -0400479 /* Ignore dubious measurements */
480 if (mrtt == 0 || mrtt > TCP_RTT_MAX)
481 goto done;
482
483 tcp_estimate_rtt (tc, mrtt);
484
485done:
486
Florin Corasf1762d62017-09-24 19:43:08 -0400487 /* If we got here something must've been ACKed so make sure boff is 0,
Florin Coras3ec66b02018-08-23 16:27:05 -0700488 * even if mrtt is not valid since we update the rto lower */
Florin Corasf1762d62017-09-24 19:43:08 -0400489 tc->rto_boff = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700490 tcp_update_rto (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500491
Florin Coras3af90fc2017-05-03 21:09:42 -0700492 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500493}
494
Florin Corasefefc6b2018-11-07 12:49:19 -0800495static void
496tcp_estimate_initial_rtt (tcp_connection_t * tc)
497{
498 u8 thread_index = vlib_num_workers ()? 1 : 0;
499 int mrtt;
500
501 if (tc->rtt_ts)
502 {
503 tc->mrtt_us = tcp_time_now_us (thread_index) - tc->rtt_ts;
504 mrtt = clib_max ((u32) (tc->mrtt_us * THZ), 1);
505 tc->rtt_ts = 0;
506 }
507 else
508 {
509 mrtt = tcp_time_now_w_thread (thread_index) - tc->rcv_opts.tsecr;
Florin Coras4af830c2018-12-04 09:21:36 -0800510 mrtt = clib_max (mrtt, 1);
Florin Corasefefc6b2018-11-07 12:49:19 -0800511 tc->mrtt_us = (f64) mrtt *TCP_TICK;
Florin Corasefefc6b2018-11-07 12:49:19 -0800512 }
513
514 if (mrtt > 0 && mrtt < TCP_RTT_MAX)
515 tcp_estimate_rtt (tc, mrtt);
516}
517
Dave Barach68b0fb02017-02-28 15:15:56 -0500518/**
Florin Coras9ece3c02018-11-05 11:06:53 -0800519 * Dequeue bytes for connections that have received acks in last burst
Dave Barach68b0fb02017-02-28 15:15:56 -0500520 */
521static void
Florin Coras9ece3c02018-11-05 11:06:53 -0800522tcp_handle_postponed_dequeues (tcp_worker_ctx_t * wrk)
Dave Barach68b0fb02017-02-28 15:15:56 -0500523{
Florin Coras9ece3c02018-11-05 11:06:53 -0800524 u32 thread_index = wrk->vm->thread_index;
525 u32 *pending_deq_acked;
526 tcp_connection_t *tc;
527 int i;
Florin Coras93992a92017-05-24 18:03:56 -0700528
Florin Coras9ece3c02018-11-05 11:06:53 -0800529 if (!vec_len (wrk->pending_deq_acked))
530 return;
Dave Barach68b0fb02017-02-28 15:15:56 -0500531
Florin Coras9ece3c02018-11-05 11:06:53 -0800532 pending_deq_acked = wrk->pending_deq_acked;
533 for (i = 0; i < vec_len (pending_deq_acked); i++)
534 {
535 tc = tcp_connection_get (pending_deq_acked[i], thread_index);
536 tc->flags &= ~TCP_CONN_DEQ_PENDING;
Florin Coras93992a92017-05-24 18:03:56 -0700537
Florin Corasefefc6b2018-11-07 12:49:19 -0800538 if (PREDICT_FALSE (!tc->burst_acked))
539 continue;
540
Florin Coras9ece3c02018-11-05 11:06:53 -0800541 /* Dequeue the newly ACKed bytes */
542 stream_session_dequeue_drop (&tc->connection, tc->burst_acked);
543 tc->burst_acked = 0;
544 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
545
546 /* If everything has been acked, stop retransmit timer
547 * otherwise update. */
548 tcp_retransmit_timer_update (tc);
Florin Corasefefc6b2018-11-07 12:49:19 -0800549
550 /* If not congested, update pacer based on our new
551 * cwnd estimate */
552 if (!tcp_in_fastrecovery (tc))
553 tcp_connection_tx_pacer_update (tc);
Florin Coras9ece3c02018-11-05 11:06:53 -0800554 }
555 _vec_len (wrk->pending_deq_acked) = 0;
556}
557
558static void
559tcp_program_dequeue (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
560{
561 if (!(tc->flags & TCP_CONN_DEQ_PENDING))
562 {
563 vec_add1 (wrk->pending_deq_acked, tc->c_c_index);
564 tc->flags |= TCP_CONN_DEQ_PENDING;
565 }
566 tc->burst_acked += tc->bytes_acked + tc->sack_sb.snd_una_adv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500567}
568
Florin Coras6792ec02017-03-13 03:49:51 -0700569/**
Florin Coras93992a92017-05-24 18:03:56 -0700570 * Check if duplicate ack as per RFC5681 Sec. 2
571 */
572static u8
573tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd,
574 u32 prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500575{
Florin Coras93992a92017-05-24 18:03:56 -0700576 return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500577 && seq_gt (tc->snd_una_max, tc->snd_una)
578 && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
Florin Coras93992a92017-05-24 18:03:56 -0700579 && (prev_snd_wnd == tc->snd_wnd));
580}
581
582/**
583 * Checks if ack is a congestion control event.
584 */
585static u8
586tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b,
587 u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
588{
589 /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
590 * defined to be 'duplicate' */
591 *is_dack = tc->sack_sb.last_sacked_bytes
592 || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
593
Dave Barach2c25a622017-06-26 11:35:07 -0400594 return ((*is_dack || tcp_in_cong_recovery (tc)) && !tcp_is_lost_fin (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -0500595}
596
Florin Coras0dbd5172018-06-25 16:19:34 -0700597static u32
598scoreboard_hole_index (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
599{
600 ASSERT (!pool_is_free_index (sb->holes, hole - sb->holes));
601 return hole - sb->holes;
602}
603
604static u32
605scoreboard_hole_bytes (sack_scoreboard_hole_t * hole)
606{
607 return hole->end - hole->start;
608}
609
610sack_scoreboard_hole_t *
611scoreboard_get_hole (sack_scoreboard_t * sb, u32 index)
612{
613 if (index != TCP_INVALID_SACK_HOLE_INDEX)
614 return pool_elt_at_index (sb->holes, index);
615 return 0;
616}
617
618sack_scoreboard_hole_t *
619scoreboard_next_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
620{
621 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
622 return pool_elt_at_index (sb->holes, hole->next);
623 return 0;
624}
625
626sack_scoreboard_hole_t *
627scoreboard_prev_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
628{
629 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
630 return pool_elt_at_index (sb->holes, hole->prev);
631 return 0;
632}
633
634sack_scoreboard_hole_t *
635scoreboard_first_hole (sack_scoreboard_t * sb)
636{
637 if (sb->head != TCP_INVALID_SACK_HOLE_INDEX)
638 return pool_elt_at_index (sb->holes, sb->head);
639 return 0;
640}
641
642sack_scoreboard_hole_t *
643scoreboard_last_hole (sack_scoreboard_t * sb)
644{
645 if (sb->tail != TCP_INVALID_SACK_HOLE_INDEX)
646 return pool_elt_at_index (sb->holes, sb->tail);
647 return 0;
648}
649
650static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500651scoreboard_remove_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
652{
653 sack_scoreboard_hole_t *next, *prev;
654
655 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
656 {
657 next = pool_elt_at_index (sb->holes, hole->next);
658 next->prev = hole->prev;
659 }
Florin Coras93992a92017-05-24 18:03:56 -0700660 else
661 {
662 sb->tail = hole->prev;
663 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500664
665 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
666 {
667 prev = pool_elt_at_index (sb->holes, hole->prev);
668 prev->next = hole->next;
669 }
670 else
671 {
672 sb->head = hole->next;
673 }
674
Florin Coras93992a92017-05-24 18:03:56 -0700675 if (scoreboard_hole_index (sb, hole) == sb->cur_rxt_hole)
676 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
677
Florin Coras3eb50622017-07-13 01:24:57 -0400678 /* Poison the entry */
679 if (CLIB_DEBUG > 0)
Dave Barachb7b92992018-10-17 10:38:51 -0400680 clib_memset (hole, 0xfe, sizeof (*hole));
Florin Coras3eb50622017-07-13 01:24:57 -0400681
Dave Barach68b0fb02017-02-28 15:15:56 -0500682 pool_put (sb->holes, hole);
683}
684
Florin Coras0dbd5172018-06-25 16:19:34 -0700685static sack_scoreboard_hole_t *
Florin Coras6792ec02017-03-13 03:49:51 -0700686scoreboard_insert_hole (sack_scoreboard_t * sb, u32 prev_index,
Dave Barach68b0fb02017-02-28 15:15:56 -0500687 u32 start, u32 end)
688{
Florin Coras6792ec02017-03-13 03:49:51 -0700689 sack_scoreboard_hole_t *hole, *next, *prev;
Dave Barach68b0fb02017-02-28 15:15:56 -0500690 u32 hole_index;
691
692 pool_get (sb->holes, hole);
Dave Barachb7b92992018-10-17 10:38:51 -0400693 clib_memset (hole, 0, sizeof (*hole));
Dave Barach68b0fb02017-02-28 15:15:56 -0500694
695 hole->start = start;
696 hole->end = end;
Florin Coras3eb50622017-07-13 01:24:57 -0400697 hole_index = scoreboard_hole_index (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500698
Florin Coras6792ec02017-03-13 03:49:51 -0700699 prev = scoreboard_get_hole (sb, prev_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500700 if (prev)
701 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700702 hole->prev = prev_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500703 hole->next = prev->next;
704
705 if ((next = scoreboard_next_hole (sb, hole)))
706 next->prev = hole_index;
Florin Corasf03a59a2017-06-09 21:07:32 -0700707 else
708 sb->tail = hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500709
710 prev->next = hole_index;
711 }
712 else
713 {
714 sb->head = hole_index;
715 hole->prev = TCP_INVALID_SACK_HOLE_INDEX;
716 hole->next = TCP_INVALID_SACK_HOLE_INDEX;
717 }
718
719 return hole;
720}
721
Florin Coras0dbd5172018-06-25 16:19:34 -0700722static void
Florin Corasf03a59a2017-06-09 21:07:32 -0700723scoreboard_update_bytes (tcp_connection_t * tc, sack_scoreboard_t * sb)
Florin Coras93992a92017-05-24 18:03:56 -0700724{
Florin Corasecbd20b2018-10-17 23:34:54 -0700725 sack_scoreboard_hole_t *left, *right;
Florin Coras93992a92017-05-24 18:03:56 -0700726 u32 bytes = 0, blks = 0;
727
728 sb->lost_bytes = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700729 sb->sacked_bytes = 0;
Florin Corasecbd20b2018-10-17 23:34:54 -0700730 left = scoreboard_last_hole (sb);
731 if (!left)
Florin Coras93992a92017-05-24 18:03:56 -0700732 return;
733
Florin Corasecbd20b2018-10-17 23:34:54 -0700734 if (seq_gt (sb->high_sacked, left->end))
Florin Coras93992a92017-05-24 18:03:56 -0700735 {
Florin Corasecbd20b2018-10-17 23:34:54 -0700736 bytes = sb->high_sacked - left->end;
Florin Coras93992a92017-05-24 18:03:56 -0700737 blks = 1;
738 }
739
Florin Coras9f9e9692018-10-19 17:49:00 -0700740 while ((right = left)
741 && bytes < (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
742 && blks < TCP_DUPACK_THRESHOLD
743 /* left not updated if above conditions fail */
744 && (left = scoreboard_prev_hole (sb, right)))
Florin Coras93992a92017-05-24 18:03:56 -0700745 {
Florin Corasecbd20b2018-10-17 23:34:54 -0700746 bytes += right->start - left->end;
Florin Coras93992a92017-05-24 18:03:56 -0700747 blks++;
Florin Coras93992a92017-05-24 18:03:56 -0700748 }
749
Florin Coras9f9e9692018-10-19 17:49:00 -0700750 /* left is first lost */
751 if (left)
Florin Coras93992a92017-05-24 18:03:56 -0700752 {
Florin Coras9f9e9692018-10-19 17:49:00 -0700753 do
754 {
755 sb->lost_bytes += scoreboard_hole_bytes (right);
756 left->is_lost = 1;
757 left = scoreboard_prev_hole (sb, right);
758 if (left)
759 bytes += right->start - left->end;
760 }
761 while ((right = left));
Florin Coras93992a92017-05-24 18:03:56 -0700762 }
Florin Coras9f9e9692018-10-19 17:49:00 -0700763
Florin Corasf03a59a2017-06-09 21:07:32 -0700764 sb->sacked_bytes = bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700765}
766
767/**
768 * Figure out the next hole to retransmit
769 *
770 * Follows logic proposed in RFC6675 Sec. 4, NextSeg()
771 */
772sack_scoreboard_hole_t *
773scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
774 sack_scoreboard_hole_t * start,
Florin Coras36ee9f12018-11-02 12:52:10 -0700775 u8 have_unsent, u8 * can_rescue, u8 * snd_limited)
Florin Coras93992a92017-05-24 18:03:56 -0700776{
777 sack_scoreboard_hole_t *hole = 0;
778
779 hole = start ? start : scoreboard_first_hole (sb);
780 while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost)
781 hole = scoreboard_next_hole (sb, hole);
782
783 /* Nothing, return */
784 if (!hole)
785 {
786 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
787 return 0;
788 }
789
790 /* Rule (1): if higher than rxt, less than high_sacked and lost */
791 if (hole->is_lost && seq_lt (hole->start, sb->high_sacked))
792 {
793 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
794 }
795 else
796 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700797 /* Rule (2): available unsent data */
798 if (have_unsent)
Florin Coras93992a92017-05-24 18:03:56 -0700799 {
Florin Coras93992a92017-05-24 18:03:56 -0700800 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
Florin Coras36ee9f12018-11-02 12:52:10 -0700801 return 0;
Florin Coras93992a92017-05-24 18:03:56 -0700802 }
803 /* Rule (3): if hole not lost */
804 else if (seq_lt (hole->start, sb->high_sacked))
805 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -0700806 *snd_limited = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700807 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
808 }
809 /* Rule (4): if hole beyond high_sacked */
810 else
811 {
812 ASSERT (seq_geq (hole->start, sb->high_sacked));
813 *snd_limited = 1;
814 *can_rescue = 1;
815 /* HighRxt MUST NOT be updated */
816 return 0;
817 }
818 }
819
820 if (hole && seq_lt (sb->high_rxt, hole->start))
821 sb->high_rxt = hole->start;
822
823 return hole;
824}
825
Florin Coras0dbd5172018-06-25 16:19:34 -0700826static void
Florin Coras36ee9f12018-11-02 12:52:10 -0700827scoreboard_init_high_rxt (sack_scoreboard_t * sb, u32 snd_una)
Florin Coras93992a92017-05-24 18:03:56 -0700828{
829 sack_scoreboard_hole_t *hole;
830 hole = scoreboard_first_hole (sb);
Florin Coras3eb50622017-07-13 01:24:57 -0400831 if (hole)
832 {
Florin Coras36ee9f12018-11-02 12:52:10 -0700833 snd_una = seq_gt (snd_una, hole->start) ? snd_una : hole->start;
Florin Coras3eb50622017-07-13 01:24:57 -0400834 sb->cur_rxt_hole = sb->head;
835 }
Florin Coras36ee9f12018-11-02 12:52:10 -0700836 sb->high_rxt = snd_una;
837 sb->rescue_rxt = snd_una - 1;
Florin Coras3eb50622017-07-13 01:24:57 -0400838}
839
Florin Coras0dbd5172018-06-25 16:19:34 -0700840void
841scoreboard_init (sack_scoreboard_t * sb)
842{
843 sb->head = TCP_INVALID_SACK_HOLE_INDEX;
844 sb->tail = TCP_INVALID_SACK_HOLE_INDEX;
845 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
846}
847
848void
849scoreboard_clear (sack_scoreboard_t * sb)
850{
851 sack_scoreboard_hole_t *hole;
852 while ((hole = scoreboard_first_hole (sb)))
853 {
854 scoreboard_remove_hole (sb, hole);
855 }
856 ASSERT (sb->head == sb->tail && sb->head == TCP_INVALID_SACK_HOLE_INDEX);
857 ASSERT (pool_elts (sb->holes) == 0);
858 sb->sacked_bytes = 0;
859 sb->last_sacked_bytes = 0;
860 sb->last_bytes_delivered = 0;
861 sb->snd_una_adv = 0;
862 sb->high_sacked = 0;
863 sb->high_rxt = 0;
864 sb->lost_bytes = 0;
865 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
866}
867
Florin Coras3eb50622017-07-13 01:24:57 -0400868/**
869 * Test that scoreboard is sane after recovery
870 *
871 * Returns 1 if scoreboard is empty or if first hole beyond
872 * snd_una.
873 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700874static u8
Florin Coras3eb50622017-07-13 01:24:57 -0400875tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc)
876{
877 sack_scoreboard_hole_t *hole;
878 hole = scoreboard_first_hole (&tc->sack_sb);
Florin Corasecbd20b2018-10-17 23:34:54 -0700879 return (!hole || (seq_geq (hole->start, tc->snd_una)
880 && seq_lt (hole->end, tc->snd_una_max)));
Florin Coras93992a92017-05-24 18:03:56 -0700881}
882
883void
Dave Barach68b0fb02017-02-28 15:15:56 -0500884tcp_rcv_sacks (tcp_connection_t * tc, u32 ack)
885{
886 sack_scoreboard_t *sb = &tc->sack_sb;
887 sack_block_t *blk, tmp;
Florin Corasf03a59a2017-06-09 21:07:32 -0700888 sack_scoreboard_hole_t *hole, *next_hole, *last_hole;
Florin Coras93992a92017-05-24 18:03:56 -0700889 u32 blk_index = 0, old_sacked_bytes, hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500890 int i, j;
891
Florin Coras6792ec02017-03-13 03:49:51 -0700892 sb->last_sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700893 sb->last_bytes_delivered = 0;
Florin Coras352c2c42018-06-26 01:22:41 -0700894 sb->snd_una_adv = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700895
Florin Coras93992a92017-05-24 18:03:56 -0700896 if (!tcp_opts_sack (&tc->rcv_opts)
897 && sb->head == TCP_INVALID_SACK_HOLE_INDEX)
Dave Barach68b0fb02017-02-28 15:15:56 -0500898 return;
899
Florin Coras352c2c42018-06-26 01:22:41 -0700900 old_sacked_bytes = sb->sacked_bytes;
901
Dave Barach68b0fb02017-02-28 15:15:56 -0500902 /* Remove invalid blocks */
Florin Coras93992a92017-05-24 18:03:56 -0700903 blk = tc->rcv_opts.sacks;
904 while (blk < vec_end (tc->rcv_opts.sacks))
Florin Coras6792ec02017-03-13 03:49:51 -0700905 {
906 if (seq_lt (blk->start, blk->end)
907 && seq_gt (blk->start, tc->snd_una)
Florin Corasab86f862018-12-06 18:24:19 -0800908 && seq_gt (blk->start, ack)
909 && seq_lt (blk->start, tc->snd_una_max)
910 && seq_leq (blk->end, tc->snd_una_max))
Florin Coras6792ec02017-03-13 03:49:51 -0700911 {
912 blk++;
913 continue;
914 }
Florin Coras93992a92017-05-24 18:03:56 -0700915 vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks);
Florin Coras6792ec02017-03-13 03:49:51 -0700916 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500917
918 /* Add block for cumulative ack */
919 if (seq_gt (ack, tc->snd_una))
920 {
921 tmp.start = tc->snd_una;
922 tmp.end = ack;
Florin Coras93992a92017-05-24 18:03:56 -0700923 vec_add1 (tc->rcv_opts.sacks, tmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500924 }
925
Florin Coras93992a92017-05-24 18:03:56 -0700926 if (vec_len (tc->rcv_opts.sacks) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500927 return;
928
Florin Coras3eb50622017-07-13 01:24:57 -0400929 tcp_scoreboard_trace_add (tc, ack);
930
Dave Barach68b0fb02017-02-28 15:15:56 -0500931 /* Make sure blocks are ordered */
Florin Coras93992a92017-05-24 18:03:56 -0700932 for (i = 0; i < vec_len (tc->rcv_opts.sacks); i++)
933 for (j = i + 1; j < vec_len (tc->rcv_opts.sacks); j++)
934 if (seq_lt (tc->rcv_opts.sacks[j].start, tc->rcv_opts.sacks[i].start))
Dave Barach68b0fb02017-02-28 15:15:56 -0500935 {
Florin Coras93992a92017-05-24 18:03:56 -0700936 tmp = tc->rcv_opts.sacks[i];
937 tc->rcv_opts.sacks[i] = tc->rcv_opts.sacks[j];
938 tc->rcv_opts.sacks[j] = tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500939 }
940
Dave Barach68b0fb02017-02-28 15:15:56 -0500941 if (sb->head == TCP_INVALID_SACK_HOLE_INDEX)
942 {
Florin Coras6792ec02017-03-13 03:49:51 -0700943 /* If no holes, insert the first that covers all outstanding bytes */
944 last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
945 tc->snd_una, tc->snd_una_max);
946 sb->tail = scoreboard_hole_index (sb, last_hole);
Florin Coras93992a92017-05-24 18:03:56 -0700947 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
948 sb->high_sacked = tmp.end;
Florin Coras6792ec02017-03-13 03:49:51 -0700949 }
950 else
951 {
952 /* If we have holes but snd_una_max is beyond the last hole, update
953 * last hole end */
Florin Coras93992a92017-05-24 18:03:56 -0700954 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
Florin Coras6792ec02017-03-13 03:49:51 -0700955 last_hole = scoreboard_last_hole (sb);
Dave Barach2c25a622017-06-26 11:35:07 -0400956 if (seq_gt (tc->snd_una_max, last_hole->end))
957 {
958 if (seq_geq (last_hole->start, sb->high_sacked))
959 {
960 last_hole->end = tc->snd_una_max;
961 }
962 /* New hole after high sacked block */
963 else if (seq_lt (sb->high_sacked, tc->snd_una_max))
964 {
965 scoreboard_insert_hole (sb, sb->tail, sb->high_sacked,
966 tc->snd_una_max);
967 }
968 }
969 /* Keep track of max byte sacked for when the last hole
Florin Corasf03a59a2017-06-09 21:07:32 -0700970 * is acked */
971 if (seq_gt (tmp.end, sb->high_sacked))
972 sb->high_sacked = tmp.end;
Dave Barach68b0fb02017-02-28 15:15:56 -0500973 }
974
975 /* Walk the holes with the SACK blocks */
976 hole = pool_elt_at_index (sb->holes, sb->head);
Florin Coras93992a92017-05-24 18:03:56 -0700977 while (hole && blk_index < vec_len (tc->rcv_opts.sacks))
Dave Barach68b0fb02017-02-28 15:15:56 -0500978 {
Florin Coras93992a92017-05-24 18:03:56 -0700979 blk = &tc->rcv_opts.sacks[blk_index];
Dave Barach68b0fb02017-02-28 15:15:56 -0500980 if (seq_leq (blk->start, hole->start))
981 {
982 /* Block covers hole. Remove hole */
983 if (seq_geq (blk->end, hole->end))
984 {
985 next_hole = scoreboard_next_hole (sb, hole);
986
Florin Corasf03a59a2017-06-09 21:07:32 -0700987 /* Byte accounting: snd_una needs to be advanced */
988 if (blk->end == ack)
Dave Barach68b0fb02017-02-28 15:15:56 -0500989 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700990 if (next_hole)
Florin Coras06d11012017-05-17 14:21:51 -0700991 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700992 if (seq_lt (ack, next_hole->start))
993 sb->snd_una_adv = next_hole->start - ack;
994 sb->last_bytes_delivered +=
995 next_hole->start - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -0700996 }
Florin Coras3eb50622017-07-13 01:24:57 -0400997 else
Florin Coras06d11012017-05-17 14:21:51 -0700998 {
Dave Barach2c25a622017-06-26 11:35:07 -0400999 ASSERT (seq_geq (sb->high_sacked, ack));
Florin Coras93992a92017-05-24 18:03:56 -07001000 sb->snd_una_adv = sb->high_sacked - ack;
Florin Corasf03a59a2017-06-09 21:07:32 -07001001 sb->last_bytes_delivered += sb->high_sacked - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -07001002 }
1003 }
1004
Dave Barach68b0fb02017-02-28 15:15:56 -05001005 scoreboard_remove_hole (sb, hole);
1006 hole = next_hole;
1007 }
Florin Coras6792ec02017-03-13 03:49:51 -07001008 /* Partial 'head' overlap */
Dave Barach68b0fb02017-02-28 15:15:56 -05001009 else
1010 {
Florin Coras6792ec02017-03-13 03:49:51 -07001011 if (seq_gt (blk->end, hole->start))
1012 {
Florin Coras6792ec02017-03-13 03:49:51 -07001013 hole->start = blk->end;
1014 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001015 blk_index++;
1016 }
1017 }
1018 else
1019 {
1020 /* Hole must be split */
Florin Coras6792ec02017-03-13 03:49:51 -07001021 if (seq_lt (blk->end, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001022 {
Florin Coras6792ec02017-03-13 03:49:51 -07001023 hole_index = scoreboard_hole_index (sb, hole);
Florin Coras3eb50622017-07-13 01:24:57 -04001024 next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
1025 hole->end);
Florin Coras6792ec02017-03-13 03:49:51 -07001026
1027 /* Pool might've moved */
1028 hole = scoreboard_get_hole (sb, hole_index);
1029 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -05001030 blk_index++;
Florin Coras3eb50622017-07-13 01:24:57 -04001031 ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
Dave Barach68b0fb02017-02-28 15:15:56 -05001032 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001033 else if (seq_lt (blk->start, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -05001034 {
Florin Coras6792ec02017-03-13 03:49:51 -07001035 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -05001036 }
Florin Coras93992a92017-05-24 18:03:56 -07001037 hole = scoreboard_next_hole (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -05001038 }
1039 }
Florin Coras6792ec02017-03-13 03:49:51 -07001040
Florin Corasecbd20b2018-10-17 23:34:54 -07001041 if (pool_elts (sb->holes) == 1)
1042 {
1043 hole = scoreboard_first_hole (sb);
1044 if (hole->start == ack + sb->snd_una_adv
1045 && hole->end == tc->snd_una_max)
1046 scoreboard_remove_hole (sb, hole);
1047 }
1048
Florin Corasf03a59a2017-06-09 21:07:32 -07001049 scoreboard_update_bytes (tc, sb);
1050 sb->last_sacked_bytes = sb->sacked_bytes
1051 - (old_sacked_bytes - sb->last_bytes_delivered);
Florin Corasca1c8f32018-05-23 21:01:30 -07001052 ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes || tcp_in_recovery (tc));
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001053 ASSERT (sb->sacked_bytes == 0 || tcp_in_recovery (tc)
Florin Corasf03a59a2017-06-09 21:07:32 -07001054 || sb->sacked_bytes < tc->snd_una_max - seq_max (tc->snd_una, ack));
1055 ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_una_max
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001056 - seq_max (tc->snd_una, ack) || tcp_in_recovery (tc));
Dave Barach2c25a622017-06-26 11:35:07 -04001057 ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
1058 || sb->holes[sb->head].start == ack + sb->snd_una_adv);
Florin Corasca1c8f32018-05-23 21:01:30 -07001059 TCP_EVT_DBG (TCP_EVT_CC_SCOREBOARD, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001060}
1061
Florin Coras93992a92017-05-24 18:03:56 -07001062/**
1063 * Try to update snd_wnd based on feedback received from peer.
Dave Barach68b0fb02017-02-28 15:15:56 -05001064 *
Florin Coras93992a92017-05-24 18:03:56 -07001065 * If successful, and new window is 'effectively' 0, activate persist
1066 * timer.
1067 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001068static void
1069tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
1070{
Florin Coras93992a92017-05-24 18:03:56 -07001071 /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
1072 * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
Florin Coras6792ec02017-03-13 03:49:51 -07001073 if (seq_lt (tc->snd_wl1, seq)
1074 || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001075 {
1076 tc->snd_wnd = snd_wnd;
1077 tc->snd_wl1 = seq;
1078 tc->snd_wl2 = ack;
Florin Coras6792ec02017-03-13 03:49:51 -07001079 TCP_EVT_DBG (TCP_EVT_SND_WND, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001080
Florin Coras9ece3c02018-11-05 11:06:53 -08001081 if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
Florin Corasbb292f42017-05-19 09:49:19 -07001082 {
Florin Coras93992a92017-05-24 18:03:56 -07001083 /* Set persist timer if not set and we just got 0 wnd */
1084 if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
1085 && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
Florin Corasbb292f42017-05-19 09:49:19 -07001086 tcp_persist_timer_set (tc);
1087 }
Florin Coras3e350af2017-03-30 02:54:28 -07001088 else
Florin Coras93992a92017-05-24 18:03:56 -07001089 {
1090 tcp_persist_timer_reset (tc);
Florin Coras9ece3c02018-11-05 11:06:53 -08001091 if (PREDICT_FALSE (!tcp_in_recovery (tc) && tc->rto_boff > 0))
Florin Coras93992a92017-05-24 18:03:56 -07001092 {
1093 tc->rto_boff = 0;
1094 tcp_update_rto (tc);
1095 }
1096 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001097 }
1098}
1099
Florin Corasd2aab832018-05-22 11:39:59 -07001100/**
1101 * Init loss recovery/fast recovery.
1102 *
1103 * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
1104 * updated in @ref tcp_cc_handle_event after fast retransmit
1105 */
Florin Coras6792ec02017-03-13 03:49:51 -07001106void
Florin Coras93992a92017-05-24 18:03:56 -07001107tcp_cc_init_congestion (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001108{
Florin Coras93992a92017-05-24 18:03:56 -07001109 tcp_fastrecovery_on (tc);
1110 tc->snd_congestion = tc->snd_una_max;
Florin Coras62166002018-04-18 16:40:55 -07001111 tc->cwnd_acc_bytes = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001112 tc->snd_rxt_bytes = 0;
1113 tc->prev_ssthresh = tc->ssthresh;
1114 tc->prev_cwnd = tc->cwnd;
Dave Barach68b0fb02017-02-28 15:15:56 -05001115 tc->cc_algo->congestion (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001116 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001117}
1118
Florin Coras93992a92017-05-24 18:03:56 -07001119static void
1120tcp_cc_recovery_exit (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001121{
Florin Coras93992a92017-05-24 18:03:56 -07001122 tc->rto_boff = 0;
Florin Corasf1762d62017-09-24 19:43:08 -04001123 tcp_update_rto (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001124 tc->snd_rxt_ts = 0;
Florin Coras84275e92017-09-26 12:30:40 -04001125 tc->snd_nxt = tc->snd_una_max;
Florin Corasefefc6b2018-11-07 12:49:19 -08001126 tc->rtt_ts = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001127 tcp_recovery_off (tc);
Florin Corasf1762d62017-09-24 19:43:08 -04001128 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Florin Coras93992a92017-05-24 18:03:56 -07001129}
Florin Coras3e350af2017-03-30 02:54:28 -07001130
Florin Coras93992a92017-05-24 18:03:56 -07001131void
1132tcp_cc_fastrecovery_exit (tcp_connection_t * tc)
1133{
Florin Coras6792ec02017-03-13 03:49:51 -07001134 tc->cc_algo->recovered (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001135 tc->snd_rxt_bytes = 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001136 tc->rcv_dupacks = 0;
Florin Coras84275e92017-09-26 12:30:40 -04001137 tc->snd_nxt = tc->snd_una_max;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001138 tc->snd_rxt_bytes = 0;
Florin Corasefefc6b2018-11-07 12:49:19 -08001139 tc->rtt_ts = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001140
Florin Coras93992a92017-05-24 18:03:56 -07001141 tcp_fastrecovery_off (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001142 tcp_fastrecovery_first_off (tc);
Florin Corasd67f1122018-05-21 17:47:40 -07001143
Florin Corasf1762d62017-09-24 19:43:08 -04001144 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Dave Barach68b0fb02017-02-28 15:15:56 -05001145}
1146
1147static void
Florin Coras93992a92017-05-24 18:03:56 -07001148tcp_cc_congestion_undo (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001149{
Florin Coras93992a92017-05-24 18:03:56 -07001150 tc->cwnd = tc->prev_cwnd;
1151 tc->ssthresh = tc->prev_ssthresh;
1152 tc->snd_nxt = tc->snd_una_max;
1153 tc->rcv_dupacks = 0;
1154 if (tcp_in_recovery (tc))
1155 tcp_cc_recovery_exit (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001156 else if (tcp_in_fastrecovery (tc))
1157 tcp_cc_fastrecovery_exit (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001158 ASSERT (tc->rto_boff == 0);
Florin Corasf1762d62017-09-24 19:43:08 -04001159 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 5);
Florin Coras93992a92017-05-24 18:03:56 -07001160}
Dave Barach68b0fb02017-02-28 15:15:56 -05001161
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001162static inline u8
1163tcp_cc_is_spurious_timeout_rxt (tcp_connection_t * tc)
Florin Coras93992a92017-05-24 18:03:56 -07001164{
Florin Corasf1762d62017-09-24 19:43:08 -04001165 return (tcp_in_recovery (tc) && tc->rto_boff == 1
Dave Barach2c25a622017-06-26 11:35:07 -04001166 && tc->snd_rxt_ts
Florin Coras93992a92017-05-24 18:03:56 -07001167 && tcp_opts_tstamp (&tc->rcv_opts)
1168 && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
1169}
1170
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001171static inline u8
1172tcp_cc_is_spurious_fast_rxt (tcp_connection_t * tc)
1173{
1174 return (tcp_in_fastrecovery (tc)
1175 && tc->cwnd > tc->ssthresh + 3 * tc->snd_mss);
1176}
1177
1178static u8
1179tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
1180{
1181 return (tcp_cc_is_spurious_timeout_rxt (tc)
1182 || tcp_cc_is_spurious_fast_rxt (tc));
1183}
1184
Florin Coras0dbd5172018-06-25 16:19:34 -07001185static int
Florin Coras93992a92017-05-24 18:03:56 -07001186tcp_cc_recover (tcp_connection_t * tc)
1187{
1188 ASSERT (tcp_in_cong_recovery (tc));
1189 if (tcp_cc_is_spurious_retransmit (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001190 {
Florin Coras93992a92017-05-24 18:03:56 -07001191 tcp_cc_congestion_undo (tc);
1192 return 1;
1193 }
1194
1195 if (tcp_in_recovery (tc))
1196 tcp_cc_recovery_exit (tc);
1197 else if (tcp_in_fastrecovery (tc))
1198 tcp_cc_fastrecovery_exit (tc);
1199
1200 ASSERT (tc->rto_boff == 0);
1201 ASSERT (!tcp_in_cong_recovery (tc));
Florin Coras3eb50622017-07-13 01:24:57 -04001202 ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001203 return 0;
1204}
1205
1206static void
1207tcp_cc_update (tcp_connection_t * tc, vlib_buffer_t * b)
1208{
Florin Coras3eb50622017-07-13 01:24:57 -04001209 ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001210
1211 /* Congestion avoidance */
Florin Corasd67f1122018-05-21 17:47:40 -07001212 tcp_cc_rcv_ack (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001213
1214 /* If a cumulative ack, make sure dupacks is 0 */
1215 tc->rcv_dupacks = 0;
1216
1217 /* When dupacks hits the threshold we only enter fast retransmit if
1218 * cumulative ack covers more than snd_congestion. Should snd_una
1219 * wrap this test may fail under otherwise valid circumstances.
1220 * Therefore, proactively update snd_congestion when wrap detected. */
1221 if (PREDICT_FALSE
1222 (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1223 && seq_gt (tc->snd_congestion, tc->snd_una)))
1224 tc->snd_congestion = tc->snd_una - 1;
1225}
1226
1227static u8
1228tcp_should_fastrecover_sack (tcp_connection_t * tc)
1229{
1230 return (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss < tc->sack_sb.sacked_bytes;
1231}
1232
1233static u8
1234tcp_should_fastrecover (tcp_connection_t * tc)
1235{
1236 return (tc->rcv_dupacks == TCP_DUPACK_THRESHOLD
1237 || tcp_should_fastrecover_sack (tc));
1238}
1239
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001240void
Florin Corasbe72ae62018-11-01 11:23:03 -07001241tcp_program_fastretransmit (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001242{
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001243 if (!(tc->flags & TCP_CONN_FRXT_PENDING))
1244 {
1245 vec_add1 (wrk->pending_fast_rxt, tc->c_c_index);
1246 tc->flags |= TCP_CONN_FRXT_PENDING;
1247 }
1248}
1249
1250void
Florin Corasbe72ae62018-11-01 11:23:03 -07001251tcp_do_fastretransmits (tcp_worker_ctx_t * wrk)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001252{
Florin Corasbe72ae62018-11-01 11:23:03 -07001253 u32 *ongoing_fast_rxt, burst_bytes, sent_bytes, thread_index;
Florin Corase55a6d72018-10-31 23:09:22 -07001254 u32 max_burst_size, burst_size, n_segs = 0, n_segs_now;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001255 tcp_connection_t *tc;
Florin Corase55a6d72018-10-31 23:09:22 -07001256 u64 last_cpu_time;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001257 int i;
1258
Florin Corase55a6d72018-10-31 23:09:22 -07001259 if (vec_len (wrk->pending_fast_rxt) == 0
1260 && vec_len (wrk->postponed_fast_rxt) == 0)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001261 return;
1262
Florin Corasbe72ae62018-11-01 11:23:03 -07001263 thread_index = wrk->vm->thread_index;
Florin Corase55a6d72018-10-31 23:09:22 -07001264 last_cpu_time = wrk->vm->clib_time.last_cpu_time;
1265 ongoing_fast_rxt = wrk->ongoing_fast_rxt;
1266 vec_append (ongoing_fast_rxt, wrk->postponed_fast_rxt);
1267 vec_append (ongoing_fast_rxt, wrk->pending_fast_rxt);
1268
1269 _vec_len (wrk->postponed_fast_rxt) = 0;
1270 _vec_len (wrk->pending_fast_rxt) = 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001271
Florin Coras776f3d82018-11-02 08:23:58 -07001272 max_burst_size = VLIB_FRAME_SIZE / vec_len (ongoing_fast_rxt);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001273 max_burst_size = clib_max (max_burst_size, 1);
1274
Florin Corase55a6d72018-10-31 23:09:22 -07001275 for (i = 0; i < vec_len (ongoing_fast_rxt); i++)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001276 {
Florin Corase55a6d72018-10-31 23:09:22 -07001277 if (n_segs >= VLIB_FRAME_SIZE)
1278 {
1279 vec_add1 (wrk->postponed_fast_rxt, ongoing_fast_rxt[i]);
1280 continue;
1281 }
1282
1283 tc = tcp_connection_get (ongoing_fast_rxt[i], thread_index);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001284 tc->flags &= ~TCP_CONN_FRXT_PENDING;
1285
1286 if (!tcp_in_fastrecovery (tc))
1287 continue;
1288
Florin Corase55a6d72018-10-31 23:09:22 -07001289 burst_size = clib_min (max_burst_size, VLIB_FRAME_SIZE - n_segs);
1290 burst_bytes = transport_connection_tx_pacer_burst (&tc->connection,
1291 last_cpu_time);
1292 burst_size = clib_min (burst_size, burst_bytes / tc->snd_mss);
1293 if (!burst_size)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001294 {
Florin Corasbe72ae62018-11-01 11:23:03 -07001295 tcp_program_fastretransmit (wrk, tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001296 continue;
1297 }
1298
Florin Corasbe72ae62018-11-01 11:23:03 -07001299 n_segs_now = tcp_fast_retransmit (wrk, tc, burst_size);
Florin Corase55a6d72018-10-31 23:09:22 -07001300 sent_bytes = clib_min (n_segs_now * tc->snd_mss, burst_bytes);
1301 transport_connection_tx_pacer_update_bytes (&tc->connection,
1302 sent_bytes);
Florin Corase55a6d72018-10-31 23:09:22 -07001303 n_segs += n_segs_now;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001304 }
Florin Corase55a6d72018-10-31 23:09:22 -07001305 _vec_len (ongoing_fast_rxt) = 0;
1306 wrk->ongoing_fast_rxt = ongoing_fast_rxt;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001307}
1308
Florin Corasf03a59a2017-06-09 21:07:32 -07001309/**
1310 * One function to rule them all ... and in the darkness bind them
1311 */
Florin Coras93992a92017-05-24 18:03:56 -07001312static void
1313tcp_cc_handle_event (tcp_connection_t * tc, u32 is_dack)
1314{
Florin Corasf03a59a2017-06-09 21:07:32 -07001315 u32 rxt_delivered;
1316
Florin Corasca1c8f32018-05-23 21:01:30 -07001317 if (tcp_in_fastrecovery (tc) && tcp_opts_sack_permitted (&tc->rcv_opts))
1318 {
1319 if (tc->bytes_acked)
1320 goto partial_ack;
Florin Corasbe72ae62018-11-01 11:23:03 -07001321 tcp_program_fastretransmit (tcp_get_worker (tc->c_thread_index), tc);
Florin Corasca1c8f32018-05-23 21:01:30 -07001322 return;
1323 }
Florin Coras93992a92017-05-24 18:03:56 -07001324 /*
1325 * Duplicate ACK. Check if we should enter fast recovery, or if already in
1326 * it account for the bytes that left the network.
1327 */
Florin Corasca1c8f32018-05-23 21:01:30 -07001328 else if (is_dack && !tcp_in_recovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001329 {
Florin Corasd2aab832018-05-22 11:39:59 -07001330 TCP_EVT_DBG (TCP_EVT_DUPACK_RCVD, tc, 1);
Florin Coras93992a92017-05-24 18:03:56 -07001331 ASSERT (tc->snd_una != tc->snd_una_max
1332 || tc->sack_sb.last_sacked_bytes);
Dave Barach2c25a622017-06-26 11:35:07 -04001333
Florin Coras93992a92017-05-24 18:03:56 -07001334 tc->rcv_dupacks++;
1335
Florin Corasd2aab832018-05-22 11:39:59 -07001336 /* Pure duplicate ack. If some data got acked, it's handled lower */
Florin Coras93992a92017-05-24 18:03:56 -07001337 if (tc->rcv_dupacks > TCP_DUPACK_THRESHOLD && !tc->bytes_acked)
Dave Barach68b0fb02017-02-28 15:15:56 -05001338 {
Florin Coras93992a92017-05-24 18:03:56 -07001339 ASSERT (tcp_in_fastrecovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001340 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1341 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001342 }
Florin Coras93992a92017-05-24 18:03:56 -07001343 else if (tcp_should_fastrecover (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001344 {
Florin Corasc44a5582018-11-01 16:30:54 -07001345 u32 pacer_wnd;
1346
Florin Corasd2aab832018-05-22 11:39:59 -07001347 ASSERT (!tcp_in_fastrecovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001348
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001349 /* Heuristic to catch potential late dupacks
1350 * after fast retransmit exits */
1351 if (is_dack && tc->snd_una == tc->snd_congestion
1352 && timestamp_leq (tc->rcv_opts.tsecr, tc->tsecr_last_ack))
Florin Coras93992a92017-05-24 18:03:56 -07001353 {
1354 tc->rcv_dupacks = 0;
1355 return;
1356 }
1357
1358 tcp_cc_init_congestion (tc);
1359 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1360
Florin Coras3eb50622017-07-13 01:24:57 -04001361 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Corase55a6d72018-10-31 23:09:22 -07001362 {
1363 tc->cwnd = tc->ssthresh;
1364 scoreboard_init_high_rxt (&tc->sack_sb, tc->snd_una);
Florin Corase55a6d72018-10-31 23:09:22 -07001365 }
1366 else
1367 {
1368 /* Post retransmit update cwnd to ssthresh and account for the
1369 * three segments that have left the network and should've been
1370 * buffered at the receiver XXX */
1371 tc->cwnd = tc->ssthresh + 3 * tc->snd_mss;
1372 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001373
Florin Coras36ee9f12018-11-02 12:52:10 -07001374 /* Constrain rate until we get a partial ack */
Florin Corasc44a5582018-11-01 16:30:54 -07001375 pacer_wnd = clib_max (0.1 * tc->cwnd, 2 * tc->snd_mss);
1376 tcp_connection_tx_pacer_reset (tc, pacer_wnd,
1377 0 /* start bucket */ );
Florin Corasbe72ae62018-11-01 11:23:03 -07001378 tcp_program_fastretransmit (tcp_get_worker (tc->c_thread_index),
1379 tc);
Florin Coras93992a92017-05-24 18:03:56 -07001380 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001381 }
Florin Coras93992a92017-05-24 18:03:56 -07001382 else if (!tc->bytes_acked
1383 || (tc->bytes_acked && !tcp_in_cong_recovery (tc)))
1384 {
1385 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1386 return;
1387 }
1388 else
1389 goto partial_ack;
1390 }
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001391 /* Don't allow entry in fast recovery if still in recovery, for now */
1392 else if (0 && is_dack && tcp_in_recovery (tc))
1393 {
1394 /* If of of the two conditions lower hold, reset dupacks because
1395 * we're probably after timeout (RFC6582 heuristics).
1396 * If Cumulative ack does not cover more than congestion threshold,
1397 * and:
1398 * 1) The following doesn't hold: The congestion window is greater
1399 * than SMSS bytes and the difference between highest_ack
1400 * and prev_highest_ack is at most 4*SMSS bytes
1401 * 2) Echoed timestamp in the last non-dup ack does not equal the
1402 * stored timestamp
1403 */
1404 if (seq_leq (tc->snd_una, tc->snd_congestion)
1405 && ((!(tc->cwnd > tc->snd_mss
1406 && tc->bytes_acked <= 4 * tc->snd_mss))
1407 || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
1408 {
1409 tc->rcv_dupacks = 0;
1410 return;
1411 }
1412 }
Florin Coras93992a92017-05-24 18:03:56 -07001413
Florin Coras93992a92017-05-24 18:03:56 -07001414 if (!tc->bytes_acked)
1415 return;
1416
1417partial_ack:
Florin Corasd2aab832018-05-22 11:39:59 -07001418 TCP_EVT_DBG (TCP_EVT_CC_PACK, tc);
1419
Florin Coras93992a92017-05-24 18:03:56 -07001420 /*
1421 * Legitimate ACK. 1) See if we can exit recovery
1422 */
Florin Coras93992a92017-05-24 18:03:56 -07001423
Florin Corasefefc6b2018-11-07 12:49:19 -08001424 /* Update the pacing rate. For the first partial ack we move from
1425 * the artificially constrained rate to the one after congestion */
1426 tcp_connection_tx_pacer_update (tc);
1427
Florin Coras93992a92017-05-24 18:03:56 -07001428 if (seq_geq (tc->snd_una, tc->snd_congestion))
1429 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001430 tcp_retransmit_timer_update (tc);
1431
Florin Coras93992a92017-05-24 18:03:56 -07001432 /* If spurious return, we've already updated everything */
1433 if (tcp_cc_recover (tc))
Florin Corasf03a59a2017-06-09 21:07:32 -07001434 {
1435 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1436 return;
1437 }
Florin Coras93992a92017-05-24 18:03:56 -07001438
1439 tc->snd_nxt = tc->snd_una_max;
1440
1441 /* Treat as congestion avoidance ack */
Florin Corasd67f1122018-05-21 17:47:40 -07001442 tcp_cc_rcv_ack (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001443 return;
1444 }
1445
1446 /*
1447 * Legitimate ACK. 2) If PARTIAL ACK try to retransmit
1448 */
Florin Coras93992a92017-05-24 18:03:56 -07001449
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001450 /* XXX limit this only to first partial ack? */
Florin Coras2e31cc32018-09-25 14:00:34 -07001451 tcp_retransmit_timer_update (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001452
Florin Coras93992a92017-05-24 18:03:56 -07001453 /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
Florin Corasd2aab832018-05-22 11:39:59 -07001454 * reset dupacks to 0. Also needed if in congestion recovery */
Florin Coras93992a92017-05-24 18:03:56 -07001455 tc->rcv_dupacks = 0;
1456
Florin Coras93992a92017-05-24 18:03:56 -07001457 /* Post RTO timeout don't try anything fancy */
1458 if (tcp_in_recovery (tc))
Florin Corasd2aab832018-05-22 11:39:59 -07001459 {
Florin Corasd67f1122018-05-21 17:47:40 -07001460 tcp_cc_rcv_ack (tc);
Florin Coras3ec66b02018-08-23 16:27:05 -07001461 transport_add_tx_event (&tc->connection);
Florin Corasd2aab832018-05-22 11:39:59 -07001462 return;
1463 }
Florin Coras93992a92017-05-24 18:03:56 -07001464
1465 /* Remove retransmitted bytes that have been delivered */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001466 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras93992a92017-05-24 18:03:56 -07001467 {
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001468 ASSERT (tc->bytes_acked + tc->sack_sb.snd_una_adv
1469 >= tc->sack_sb.last_bytes_delivered
1470 || (tc->flags & TCP_CONN_FINSNT));
1471
Florin Coras93992a92017-05-24 18:03:56 -07001472 /* If we have sacks and we haven't gotten an ack beyond high_rxt,
1473 * remove sacked bytes delivered */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001474 if (seq_lt (tc->snd_una, tc->sack_sb.high_rxt))
1475 {
1476 rxt_delivered = tc->bytes_acked + tc->sack_sb.snd_una_adv
1477 - tc->sack_sb.last_bytes_delivered;
1478 ASSERT (tc->snd_rxt_bytes >= rxt_delivered);
1479 tc->snd_rxt_bytes -= rxt_delivered;
1480 }
1481 else
1482 {
1483 /* Apparently all retransmitted holes have been acked */
1484 tc->snd_rxt_bytes = 0;
Florin Coras36ee9f12018-11-02 12:52:10 -07001485 tc->sack_sb.high_rxt = tc->snd_una;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001486 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001487 }
1488 else
1489 {
Florin Coras36ee9f12018-11-02 12:52:10 -07001490 tcp_fastrecovery_first_on (tc);
1491 /* Reuse last bytes delivered to track total bytes acked */
1492 tc->sack_sb.last_bytes_delivered += tc->bytes_acked;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001493 if (tc->snd_rxt_bytes > tc->bytes_acked)
1494 tc->snd_rxt_bytes -= tc->bytes_acked;
1495 else
1496 tc->snd_rxt_bytes = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001497 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001498
Florin Coras93992a92017-05-24 18:03:56 -07001499 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_PARTIALACK);
Dave Barach68b0fb02017-02-28 15:15:56 -05001500
Florin Coras93992a92017-05-24 18:03:56 -07001501 /*
1502 * Since this was a partial ack, try to retransmit some more data
1503 */
Florin Corasbe72ae62018-11-01 11:23:03 -07001504 tcp_program_fastretransmit (tcp_get_worker (tc->c_thread_index), tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001505}
1506
Florin Coras93992a92017-05-24 18:03:56 -07001507/**
1508 * Process incoming ACK
1509 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001510static int
Florin Coras9ece3c02018-11-05 11:06:53 -08001511tcp_rcv_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
Florin Coras7ac053b2018-11-05 15:57:21 -08001512 tcp_header_t * th, u32 * error)
Dave Barach68b0fb02017-02-28 15:15:56 -05001513{
Florin Coras93992a92017-05-24 18:03:56 -07001514 u32 prev_snd_wnd, prev_snd_una;
1515 u8 is_dack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001516
Florin Corasf03a59a2017-06-09 21:07:32 -07001517 TCP_EVT_DBG (TCP_EVT_CC_STAT, tc);
1518
Florin Coras6792ec02017-03-13 03:49:51 -07001519 /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
Florin Coras93992a92017-05-24 18:03:56 -07001520 if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001521 {
Florin Corasca1c8f32018-05-23 21:01:30 -07001522 /* When we entered recovery, we reset snd_nxt to snd_una. Seems peer
1523 * still has the data so accept the ack */
1524 if (tcp_in_recovery (tc)
Florin Coras3ec66b02018-08-23 16:27:05 -07001525 && seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_congestion))
Florin Corasca1c8f32018-05-23 21:01:30 -07001526 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001527 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
1528 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
1529 tc->snd_una_max = tc->snd_nxt;
Florin Corasca1c8f32018-05-23 21:01:30 -07001530 goto process_ack;
1531 }
1532
Florin Coras6792ec02017-03-13 03:49:51 -07001533 /* If we have outstanding data and this is within the window, accept it,
1534 * probably retransmit has timed out. Otherwise ACK segment and then
1535 * drop it */
1536 if (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max))
1537 {
Florin Coras7ac053b2018-11-05 15:57:21 -08001538 tcp_program_ack (wrk, tc);
Florin Coras36ee9f12018-11-02 12:52:10 -07001539 *error = TCP_ERROR_ACK_FUTURE;
Florin Coras6792ec02017-03-13 03:49:51 -07001540 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 0,
1541 vnet_buffer (b)->tcp.ack_number);
1542 return -1;
1543 }
1544
Florin Coras6792ec02017-03-13 03:49:51 -07001545 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 2,
1546 vnet_buffer (b)->tcp.ack_number);
Florin Coras3e350af2017-03-30 02:54:28 -07001547
1548 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
Dave Barach68b0fb02017-02-28 15:15:56 -05001549 }
1550
Florin Coras6792ec02017-03-13 03:49:51 -07001551 /* If old ACK, probably it's an old dupack */
Florin Coras93992a92017-05-24 18:03:56 -07001552 if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001553 {
1554 *error = TCP_ERROR_ACK_OLD;
Florin Coras6792ec02017-03-13 03:49:51 -07001555 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 1,
1556 vnet_buffer (b)->tcp.ack_number);
1557 if (tcp_in_fastrecovery (tc) && tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
Florin Corasca1c8f32018-05-23 21:01:30 -07001558 tcp_cc_handle_event (tc, 1);
Florin Corasc28764f2017-04-26 00:08:42 -07001559 /* Don't drop yet */
1560 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001561 }
1562
Florin Coras93992a92017-05-24 18:03:56 -07001563 /*
1564 * Looks okay, process feedback
1565 */
Florin Corasca1c8f32018-05-23 21:01:30 -07001566process_ack:
Florin Coras93992a92017-05-24 18:03:56 -07001567 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001568 tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1569
Florin Coras93992a92017-05-24 18:03:56 -07001570 prev_snd_wnd = tc->snd_wnd;
1571 prev_snd_una = tc->snd_una;
1572 tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1573 vnet_buffer (b)->tcp.ack_number,
1574 clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1575 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
1576 tc->snd_una = vnet_buffer (b)->tcp.ack_number + tc->sack_sb.snd_una_adv;
1577 tcp_validate_txf_size (tc, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001578
Florin Coras93992a92017-05-24 18:03:56 -07001579 if (tc->bytes_acked)
Florin Coras9ece3c02018-11-05 11:06:53 -08001580 {
1581 tcp_program_dequeue (wrk, tc);
1582 tcp_update_rtt (tc, vnet_buffer (b)->tcp.ack_number);
1583 }
Florin Coras93992a92017-05-24 18:03:56 -07001584
Florin Coras6534b7a2017-07-18 05:38:03 -04001585 TCP_EVT_DBG (TCP_EVT_ACK_RCVD, tc);
1586
Florin Coras93992a92017-05-24 18:03:56 -07001587 /*
1588 * Check if we have congestion event
1589 */
1590
1591 if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001592 {
Florin Coras93992a92017-05-24 18:03:56 -07001593 tcp_cc_handle_event (tc, is_dack);
Florin Corasb2215d62017-08-01 16:56:58 -07001594 if (!tcp_in_cong_recovery (tc))
1595 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001596 *error = TCP_ERROR_ACK_DUP;
Florin Corasca09d072018-10-01 18:31:02 -07001597 if (vnet_buffer (b)->tcp.data_len || tcp_is_fin (th))
1598 return 0;
1599 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001600 }
1601
Florin Coras6792ec02017-03-13 03:49:51 -07001602 /*
Florin Coras93992a92017-05-24 18:03:56 -07001603 * Update congestion control (slow start/congestion avoidance)
Florin Coras6792ec02017-03-13 03:49:51 -07001604 */
Florin Coras93992a92017-05-24 18:03:56 -07001605 tcp_cc_update (tc, b);
Florin Coras00cd22d2018-04-18 13:20:18 -07001606 *error = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001607 return 0;
1608}
1609
Florin Corasb11175d2018-11-09 14:34:08 -08001610static void
1611tcp_program_disconnect (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1612{
1613 if (!tcp_disconnect_pending (tc))
1614 {
1615 vec_add1 (wrk->pending_disconnects, tc->c_c_index);
1616 tcp_disconnect_pending_on (tc);
1617 }
1618}
1619
1620static void
1621tcp_handle_disconnects (tcp_worker_ctx_t * wrk)
1622{
1623 u32 thread_index, *pending_disconnects;
1624 tcp_connection_t *tc;
1625 int i;
1626
1627 if (!vec_len (wrk->pending_disconnects))
1628 return;
1629
1630 thread_index = wrk->vm->thread_index;
1631 pending_disconnects = wrk->pending_disconnects;
1632 for (i = 0; i < vec_len (pending_disconnects); i++)
1633 {
1634 tc = tcp_connection_get (pending_disconnects[i], thread_index);
1635 tcp_disconnect_pending_off (tc);
1636 stream_session_disconnect_notify (&tc->connection);
1637 }
1638 _vec_len (wrk->pending_disconnects) = 0;
1639}
1640
1641static void
1642tcp_rcv_fin (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
1643 u32 * error)
1644{
1645 /* Enter CLOSE-WAIT and notify session. To avoid lingering
1646 * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
1647 /* Account for the FIN if nothing else was received */
1648 if (vnet_buffer (b)->tcp.data_len == 0)
1649 tc->rcv_nxt += 1;
1650 tcp_program_ack (wrk, tc);
1651 tc->state = TCP_STATE_CLOSE_WAIT;
1652 tcp_program_disconnect (wrk, tc);
1653 tcp_timer_update (tc, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
1654 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc);
1655 *error = TCP_ERROR_FIN_RCVD;
1656}
1657
Florin Coras3eb50622017-07-13 01:24:57 -04001658static u8
1659tcp_sack_vector_is_sane (sack_block_t * sacks)
1660{
1661 int i;
1662 for (i = 1; i < vec_len (sacks); i++)
1663 {
1664 if (sacks[i - 1].end == sacks[i].start)
1665 return 0;
1666 }
1667 return 1;
1668}
1669
Dave Barach68b0fb02017-02-28 15:15:56 -05001670/**
1671 * Build SACK list as per RFC2018.
1672 *
1673 * Makes sure the first block contains the segment that generated the current
1674 * ACK and the following ones are the ones most recently reported in SACK
1675 * blocks.
1676 *
1677 * @param tc TCP connection for which the SACK list is updated
1678 * @param start Start sequence number of the newest SACK block
1679 * @param end End sequence of the newest SACK block
1680 */
Florin Coras45d34962017-04-25 00:05:27 -07001681void
Dave Barach68b0fb02017-02-28 15:15:56 -05001682tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1683{
Florin Coras45d34962017-04-25 00:05:27 -07001684 sack_block_t *new_list = 0, *block = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001685 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001686
1687 /* If the first segment is ooo add it to the list. Last write might've moved
1688 * rcv_nxt over the first segment. */
1689 if (seq_lt (tc->rcv_nxt, start))
1690 {
Florin Coras45d34962017-04-25 00:05:27 -07001691 vec_add2 (new_list, block, 1);
1692 block->start = start;
1693 block->end = end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001694 }
1695
1696 /* Find the blocks still worth keeping. */
1697 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1698 {
Florin Coras45d34962017-04-25 00:05:27 -07001699 /* Discard if rcv_nxt advanced beyond current block */
1700 if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001701 continue;
1702
Florin Coras45d34962017-04-25 00:05:27 -07001703 /* Merge or drop if segment overlapped by the new segment */
1704 if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1705 && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1706 {
1707 if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1708 new_list[0].start = tc->snd_sacks[i].start;
1709 if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1710 new_list[0].end = tc->snd_sacks[i].end;
1711 continue;
1712 }
1713
1714 /* Save to new SACK list if we have space. */
1715 if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
1716 {
1717 vec_add1 (new_list, tc->snd_sacks[i]);
1718 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001719 else
1720 {
1721 clib_warning ("sack discarded");
1722 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001723 }
1724
Florin Coras45d34962017-04-25 00:05:27 -07001725 ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
Florin Coras6792ec02017-03-13 03:49:51 -07001726
Dave Barach68b0fb02017-02-28 15:15:56 -05001727 /* Replace old vector with new one */
1728 vec_free (tc->snd_sacks);
1729 tc->snd_sacks = new_list;
Florin Coras3eb50622017-07-13 01:24:57 -04001730
1731 /* Segments should not 'touch' */
1732 ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
Dave Barach68b0fb02017-02-28 15:15:56 -05001733}
1734
Florin Corasca1c8f32018-05-23 21:01:30 -07001735u32
1736tcp_sack_list_bytes (tcp_connection_t * tc)
1737{
1738 u32 bytes = 0, i;
1739 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1740 bytes += tc->snd_sacks[i].end - tc->snd_sacks[i].start;
1741 return bytes;
1742}
1743
Dave Barach68b0fb02017-02-28 15:15:56 -05001744/** Enqueue data for delivery to application */
Florin Coras0dbd5172018-06-25 16:19:34 -07001745static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001746tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1747 u16 data_len)
1748{
Florin Coras1f152cd2017-08-18 19:28:03 -07001749 int written, error = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001750
Dave Barach2c25a622017-06-26 11:35:07 -04001751 ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001752 ASSERT (data_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001753 written = session_enqueue_stream_connection (&tc->connection, b, 0,
1754 1 /* queue event */ , 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001755
Florin Coras6792ec02017-03-13 03:49:51 -07001756 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 0, data_len, written);
1757
Dave Barach68b0fb02017-02-28 15:15:56 -05001758 /* Update rcv_nxt */
1759 if (PREDICT_TRUE (written == data_len))
1760 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001761 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001762 }
1763 /* If more data written than expected, account for out-of-order bytes. */
1764 else if (written > data_len)
1765 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001766 tc->rcv_nxt += written;
Florin Corasca1c8f32018-05-23 21:01:30 -07001767 TCP_EVT_DBG (TCP_EVT_CC_INPUT, tc, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001768 }
1769 else if (written > 0)
1770 {
1771 /* We've written something but FIFO is probably full now */
1772 tc->rcv_nxt += written;
Florin Coras1f152cd2017-08-18 19:28:03 -07001773 error = TCP_ERROR_PARTIALLY_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001774 }
1775 else
1776 {
Dave Barach68b0fb02017-02-28 15:15:56 -05001777 return TCP_ERROR_FIFO_FULL;
1778 }
1779
Florin Coras6792ec02017-03-13 03:49:51 -07001780 /* Update SACK list if need be */
Florin Coras93992a92017-05-24 18:03:56 -07001781 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras6792ec02017-03-13 03:49:51 -07001782 {
1783 /* Remove SACK blocks that have been delivered */
1784 tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1785 }
1786
Florin Coras1f152cd2017-08-18 19:28:03 -07001787 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -05001788}
1789
1790/** Enqueue out-of-order data */
Florin Coras0dbd5172018-06-25 16:19:34 -07001791static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001792tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1793 u16 data_len)
1794{
1795 stream_session_t *s0;
Florin Coras3eb50622017-07-13 01:24:57 -04001796 int rv, offset;
Florin Coras6792ec02017-03-13 03:49:51 -07001797
Florin Corasf03a59a2017-06-09 21:07:32 -07001798 ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001799 ASSERT (data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001800
Florin Corasf03a59a2017-06-09 21:07:32 -07001801 /* Enqueue out-of-order data with relative offset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07001802 rv = session_enqueue_stream_connection (&tc->connection, b,
1803 vnet_buffer (b)->tcp.seq_number -
1804 tc->rcv_nxt, 0 /* queue event */ ,
1805 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001806
1807 /* Nothing written */
1808 if (rv)
1809 {
1810 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, 0);
1811 return TCP_ERROR_FIFO_FULL;
1812 }
1813
1814 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001815
1816 /* Update SACK list if in use */
Florin Coras93992a92017-05-24 18:03:56 -07001817 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001818 {
1819 ooo_segment_t *newest;
1820 u32 start, end;
1821
Florin Corascea194d2017-10-02 00:18:51 -07001822 s0 = session_get (tc->c_s_index, tc->c_thread_index);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001823
Dave Barach68b0fb02017-02-28 15:15:56 -05001824 /* Get the newest segment from the fifo */
1825 newest = svm_fifo_newest_ooo_segment (s0->server_rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001826 if (newest)
1827 {
Florin Coras3eb50622017-07-13 01:24:57 -04001828 offset = ooo_segment_offset (s0->server_rx_fifo, newest);
1829 ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1830 start = tc->rcv_nxt + offset;
Florin Corasf03a59a2017-06-09 21:07:32 -07001831 end = start + ooo_segment_length (s0->server_rx_fifo, newest);
1832 tcp_update_sack_list (tc, start, end);
Florin Coras3eb50622017-07-13 01:24:57 -04001833 svm_fifo_newest_ooo_segment_reset (s0->server_rx_fifo);
Florin Corasca1c8f32018-05-23 21:01:30 -07001834 TCP_EVT_DBG (TCP_EVT_CC_SACKS, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001835 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001836 }
1837
Florin Coras00cd22d2018-04-18 13:20:18 -07001838 return TCP_ERROR_ENQUEUED_OOO;
Dave Barach68b0fb02017-02-28 15:15:56 -05001839}
1840
1841/**
Florin Coras6792ec02017-03-13 03:49:51 -07001842 * Check if ACK could be delayed. If ack can be delayed, it should return
1843 * true for a full frame. If we're always acking return 0.
Dave Barach68b0fb02017-02-28 15:15:56 -05001844 */
1845always_inline int
1846tcp_can_delack (tcp_connection_t * tc)
1847{
Florin Coras6792ec02017-03-13 03:49:51 -07001848 /* Send ack if ... */
1849 if (TCP_ALWAYS_ACK
1850 /* just sent a rcv wnd 0 */
1851 || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0
1852 /* constrained to send ack */
1853 || (tc->flags & TCP_CONN_SNDACK) != 0
1854 /* we're almost out of tx wnd */
Florin Corasca1c8f32018-05-23 21:01:30 -07001855 || tcp_available_cc_snd_space (tc) < 4 * tc->snd_mss)
Florin Coras6792ec02017-03-13 03:49:51 -07001856 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001857
Florin Coras6792ec02017-03-13 03:49:51 -07001858 return 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001859}
1860
1861static int
Florin Corasb2215d62017-08-01 16:56:58 -07001862tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
1863{
Florin Coras1f152cd2017-08-18 19:28:03 -07001864 u32 discard, first = b->current_length;
Florin Corasb2215d62017-08-01 16:56:58 -07001865 vlib_main_t *vm = vlib_get_main ();
1866
Florin Coras1f152cd2017-08-18 19:28:03 -07001867 /* Handle multi-buffer segments */
Florin Corasb2215d62017-08-01 16:56:58 -07001868 if (n_bytes_to_drop > b->current_length)
1869 {
1870 if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1871 return -1;
1872 do
1873 {
1874 discard = clib_min (n_bytes_to_drop, b->current_length);
1875 vlib_buffer_advance (b, discard);
1876 b = vlib_get_buffer (vm, b->next_buffer);
1877 n_bytes_to_drop -= discard;
1878 }
1879 while (n_bytes_to_drop);
Florin Coras1f152cd2017-08-18 19:28:03 -07001880 if (n_bytes_to_drop > first)
1881 b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
Florin Corasb2215d62017-08-01 16:56:58 -07001882 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001883 else
1884 vlib_buffer_advance (b, n_bytes_to_drop);
1885 vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
Florin Corasb2215d62017-08-01 16:56:58 -07001886 return 0;
1887}
1888
Florin Coras00cd22d2018-04-18 13:20:18 -07001889/**
1890 * Receive buffer for connection and handle acks
1891 *
1892 * It handles both in order or out-of-order data.
1893 */
Florin Corasb2215d62017-08-01 16:56:58 -07001894static int
Florin Coras7ac053b2018-11-05 15:57:21 -08001895tcp_segment_rcv (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1896 vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001897{
Florin Coras00cd22d2018-04-18 13:20:18 -07001898 u32 error, n_bytes_to_drop, n_data_bytes;
Florin Coras6534b7a2017-07-18 05:38:03 -04001899
1900 vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1901 n_data_bytes = vnet_buffer (b)->tcp.data_len;
1902 ASSERT (n_data_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001903
1904 /* Handle out-of-order data */
1905 if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1906 {
Florin Coras6792ec02017-03-13 03:49:51 -07001907 /* Old sequence numbers allowed through because they overlapped
1908 * the rx window */
1909 if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001910 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001911 /* Completely in the past (possible retransmit). Ack
1912 * retransmissions since we may not have any data to send */
Florin Corasf03a59a2017-06-09 21:07:32 -07001913 if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
Florin Coras6534b7a2017-07-18 05:38:03 -04001914 {
Florin Coras7ac053b2018-11-05 15:57:21 -08001915 tcp_program_ack (wrk, tc);
Florin Coras00cd22d2018-04-18 13:20:18 -07001916 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras6534b7a2017-07-18 05:38:03 -04001917 goto done;
1918 }
Dave Barach259cdae2017-05-15 16:27:05 -04001919
Florin Coras00cd22d2018-04-18 13:20:18 -07001920 /* Chop off the bytes in the past and see if what is left
1921 * can be enqueued in order */
Florin Corasdb84e572017-05-09 18:54:52 -07001922 n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1923 n_data_bytes -= n_bytes_to_drop;
Dave Barach2c25a622017-06-26 11:35:07 -04001924 vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001925 if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
Florin Coras00cd22d2018-04-18 13:20:18 -07001926 {
1927 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras00cd22d2018-04-18 13:20:18 -07001928 goto done;
1929 }
Florin Corasdb84e572017-05-09 18:54:52 -07001930 goto in_order;
Dave Barach68b0fb02017-02-28 15:15:56 -05001931 }
1932
Florin Coras00cd22d2018-04-18 13:20:18 -07001933 /* RFC2581: Enqueue and send DUPACK for fast retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001934 error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
Florin Coras7ac053b2018-11-05 15:57:21 -08001935 tcp_program_dupack (wrk, tc);
Florin Corasca1c8f32018-05-23 21:01:30 -07001936 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
Dave Barach68b0fb02017-02-28 15:15:56 -05001937 goto done;
1938 }
1939
Florin Corasdb84e572017-05-09 18:54:52 -07001940in_order:
1941
Dave Barach68b0fb02017-02-28 15:15:56 -05001942 /* In order data, enqueue. Fifo figures out by itself if any out-of-order
1943 * segments can be enqueued after fifo tail offset changes. */
1944 error = tcp_session_enqueue_data (tc, b, n_data_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001945 if (tcp_can_delack (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001946 {
Florin Coras6792ec02017-03-13 03:49:51 -07001947 if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
1948 tcp_timer_set (tc, TCP_TIMER_DELACK, TCP_DELACK_TIME);
Florin Coras3e350af2017-03-30 02:54:28 -07001949 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001950 }
1951
Florin Coras7ac053b2018-11-05 15:57:21 -08001952 tcp_program_ack (wrk, tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001953
Dave Barach68b0fb02017-02-28 15:15:56 -05001954done:
1955 return error;
1956}
1957
Clement Durand6cf260c2017-04-13 13:27:04 +02001958typedef struct
1959{
1960 tcp_header_t tcp_header;
1961 tcp_connection_t tcp_connection;
1962} tcp_rx_trace_t;
1963
Florin Coras0dbd5172018-06-25 16:19:34 -07001964static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02001965format_tcp_rx_trace (u8 * s, va_list * args)
1966{
1967 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1968 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1969 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +02001970 u32 indent = format_get_indent (s);
Clement Durand6cf260c2017-04-13 13:27:04 +02001971
1972 s = format (s, "%U\n%U%U",
1973 format_tcp_header, &t->tcp_header, 128,
1974 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -07001975 format_tcp_connection, &t->tcp_connection, 1);
Clement Durand6cf260c2017-04-13 13:27:04 +02001976
1977 return s;
1978}
1979
Florin Coras0dbd5172018-06-25 16:19:34 -07001980static u8 *
Clement Durand6cf260c2017-04-13 13:27:04 +02001981format_tcp_rx_trace_short (u8 * s, va_list * args)
1982{
1983 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1984 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1985 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
1986
1987 s = format (s, "%d -> %d (%U)",
Florin Coras4df38712018-06-20 12:44:16 -07001988 clib_net_to_host_u16 (t->tcp_header.dst_port),
1989 clib_net_to_host_u16 (t->tcp_header.src_port), format_tcp_state,
Florin Corasbb292f42017-05-19 09:49:19 -07001990 t->tcp_connection.state);
Clement Durand6cf260c2017-04-13 13:27:04 +02001991
1992 return s;
1993}
1994
Florin Coras4df38712018-06-20 12:44:16 -07001995static void
Florin Coras82b13a82017-04-25 11:58:06 -07001996tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
1997 tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
1998{
1999 if (tc0)
2000 {
Dave Barach178cf492018-11-13 16:34:13 -05002001 clib_memcpy_fast (&t0->tcp_connection, tc0,
2002 sizeof (t0->tcp_connection));
Florin Coras82b13a82017-04-25 11:58:06 -07002003 }
2004 else
2005 {
2006 th0 = tcp_buffer_hdr (b0);
2007 }
Dave Barach178cf492018-11-13 16:34:13 -05002008 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
Florin Coras82b13a82017-04-25 11:58:06 -07002009}
2010
Florin Coras4df38712018-06-20 12:44:16 -07002011static void
2012tcp_established_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2013 vlib_frame_t * frame, u8 is_ip4)
2014{
2015 u32 *from, n_left;
2016
2017 n_left = frame->n_vectors;
2018 from = vlib_frame_vector_args (frame);
2019
2020 while (n_left >= 1)
2021 {
2022 tcp_connection_t *tc0;
2023 tcp_rx_trace_t *t0;
2024 tcp_header_t *th0;
2025 vlib_buffer_t *b0;
2026 u32 bi0;
2027
2028 bi0 = from[0];
2029 b0 = vlib_get_buffer (vm, bi0);
2030
2031 if (b0->flags & VLIB_BUFFER_IS_TRACED)
2032 {
2033 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2034 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2035 vm->thread_index);
2036 th0 = tcp_buffer_hdr (b0);
2037 tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
2038 }
2039
2040 from += 1;
2041 n_left -= 1;
2042 }
2043}
2044
Florin Coras6792ec02017-03-13 03:49:51 -07002045always_inline void
Florin Coras00cd22d2018-04-18 13:20:18 -07002046tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
2047 u8 is_ip4, u32 evt, u32 val)
Dave Barach68b0fb02017-02-28 15:15:56 -05002048{
Florin Coras6792ec02017-03-13 03:49:51 -07002049 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -07002050 vlib_node_increment_counter (vm, tcp4_node, evt, val);
Florin Coras6792ec02017-03-13 03:49:51 -07002051 else
Florin Coras3cbc04b2017-10-02 00:18:51 -07002052 vlib_node_increment_counter (vm, tcp6_node, evt, val);
Dave Barach68b0fb02017-02-28 15:15:56 -05002053}
2054
Florin Coras00cd22d2018-04-18 13:20:18 -07002055#define tcp_maybe_inc_counter(node_id, err, count) \
2056{ \
2057 if (next0 != tcp_next_drop (is_ip4)) \
2058 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2059 tcp6_##node_id##_node.index, is_ip4, err, \
2060 1); \
2061}
2062#define tcp_inc_counter(node_id, err, count) \
2063 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
2064 tcp6_##node_id##_node.index, is_ip4, \
2065 err, count)
2066#define tcp_maybe_inc_err_counter(cnts, err) \
2067{ \
2068 cnts[err] += (next0 != tcp_next_drop (is_ip4)); \
2069}
2070#define tcp_inc_err_counter(cnts, err, val) \
2071{ \
2072 cnts[err] += val; \
2073}
2074#define tcp_store_err_counters(node_id, cnts) \
2075{ \
2076 int i; \
2077 for (i = 0; i < TCP_N_ERROR; i++) \
2078 if (cnts[i]) \
2079 tcp_inc_counter(node_id, i, cnts[i]); \
2080}
2081
2082
Dave Barach68b0fb02017-02-28 15:15:56 -05002083always_inline uword
2084tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07002085 vlib_frame_t * frame, int is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05002086{
Florin Coras4df38712018-06-20 12:44:16 -07002087 u32 thread_index = vm->thread_index, errors = 0;
Florin Coras9ece3c02018-11-05 11:06:53 -08002088 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08002089 u32 n_left_from, *from, *first_buffer;
Florin Coras00cd22d2018-04-18 13:20:18 -07002090 u16 err_counters[TCP_N_ERROR] = { 0 };
Dave Barach1f75cfd2017-04-14 16:46:44 -04002091 u8 is_fin = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002092
Florin Coras4df38712018-06-20 12:44:16 -07002093 if (node->flags & VLIB_NODE_FLAG_TRACE)
2094 tcp_established_trace_frame (vm, node, frame, is_ip4);
2095
Florin Coras7ac053b2018-11-05 15:57:21 -08002096 first_buffer = from = vlib_frame_vector_args (frame);
Florin Coras4df38712018-06-20 12:44:16 -07002097 n_left_from = frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002098
2099 while (n_left_from > 0)
2100 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002101 u32 bi0, error0 = TCP_ERROR_ACK_OK;
2102 vlib_buffer_t *b0;
2103 tcp_header_t *th0 = 0;
2104 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002105
Florin Coras7ac053b2018-11-05 15:57:21 -08002106 if (n_left_from > 1)
Dave Barach68b0fb02017-02-28 15:15:56 -05002107 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002108 vlib_buffer_t *pb;
2109 pb = vlib_get_buffer (vm, from[1]);
2110 vlib_prefetch_buffer_header (pb, LOAD);
2111 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
Dave Barach68b0fb02017-02-28 15:15:56 -05002112 }
2113
Florin Coras7ac053b2018-11-05 15:57:21 -08002114 bi0 = from[0];
2115 from += 1;
2116 n_left_from -= 1;
2117
2118 b0 = vlib_get_buffer (vm, bi0);
2119 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2120 thread_index);
2121
2122 if (PREDICT_FALSE (tc0 == 0))
2123 {
2124 error0 = TCP_ERROR_INVALID_CONNECTION;
2125 goto done;
2126 }
2127
2128 th0 = tcp_buffer_hdr (b0);
2129 /* N.B. buffer is rewritten if segment is ooo. Thus, th0 becomes a
2130 * dangling reference. */
2131 is_fin = tcp_is_fin (th0);
2132
2133 /* SYNs, FINs and data consume sequence numbers */
2134 vnet_buffer (b0)->tcp.seq_end = vnet_buffer (b0)->tcp.seq_number
2135 + tcp_is_syn (th0) + is_fin + vnet_buffer (b0)->tcp.data_len;
2136
2137 /* TODO header prediction fast path */
2138
2139 /* 1-4: check SEQ, RST, SYN */
2140 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, th0, &error0)))
2141 {
2142 TCP_EVT_DBG (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp);
2143 goto done;
2144 }
2145
2146 /* 5: check the ACK field */
2147 if (PREDICT_FALSE (tcp_rcv_ack (wrk, tc0, b0, th0, &error0)))
2148 goto done;
2149
2150 /* 6: check the URG bit TODO */
2151
2152 /* 7: process the segment text */
2153 if (vnet_buffer (b0)->tcp.data_len)
2154 error0 = tcp_segment_rcv (wrk, tc0, b0);
2155
2156 /* 8: check the FIN bit */
2157 if (PREDICT_FALSE (is_fin))
Florin Corasb11175d2018-11-09 14:34:08 -08002158 tcp_rcv_fin (wrk, tc0, b0, &error0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002159
2160 done:
2161 tcp_inc_err_counter (err_counters, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002162 }
2163
Florin Coras3cbc04b2017-10-02 00:18:51 -07002164 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
Florin Coras4df38712018-06-20 12:44:16 -07002165 thread_index);
Florin Coras00cd22d2018-04-18 13:20:18 -07002166 err_counters[TCP_ERROR_EVENT_FIFO_FULL] = errors;
2167 tcp_store_err_counters (established, err_counters);
Florin Coras9ece3c02018-11-05 11:06:53 -08002168 tcp_handle_postponed_dequeues (wrk);
Florin Corasb11175d2018-11-09 14:34:08 -08002169 tcp_handle_disconnects (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08002170 vlib_buffer_free (vm, first_buffer, frame->n_vectors);
Florin Coras4df38712018-06-20 12:44:16 -07002171
2172 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002173}
2174
2175static uword
2176tcp4_established (vlib_main_t * vm, vlib_node_runtime_t * node,
2177 vlib_frame_t * from_frame)
2178{
2179 return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2180}
2181
2182static uword
2183tcp6_established (vlib_main_t * vm, vlib_node_runtime_t * node,
2184 vlib_frame_t * from_frame)
2185{
2186 return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2187}
2188
2189/* *INDENT-OFF* */
2190VLIB_REGISTER_NODE (tcp4_established_node) =
2191{
2192 .function = tcp4_established,
2193 .name = "tcp4-established",
2194 /* Takes a vector of packets. */
2195 .vector_size = sizeof (u32),
Florin Corase69f4952017-03-07 10:06:24 -08002196 .n_errors = TCP_N_ERROR,
2197 .error_strings = tcp_error_strings,
Dave Barach68b0fb02017-02-28 15:15:56 -05002198 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2199 .next_nodes =
2200 {
2201#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2202 foreach_tcp_state_next
2203#undef _
2204 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002205 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002206};
2207/* *INDENT-ON* */
2208
2209VLIB_NODE_FUNCTION_MULTIARCH (tcp4_established_node, tcp4_established);
2210
2211/* *INDENT-OFF* */
2212VLIB_REGISTER_NODE (tcp6_established_node) =
2213{
2214 .function = tcp6_established,
2215 .name = "tcp6-established",
2216 /* Takes a vector of packets. */
2217 .vector_size = sizeof (u32),
2218 .n_errors = TCP_N_ERROR,
2219 .error_strings = tcp_error_strings,
2220 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
2221 .next_nodes =
2222 {
2223#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
2224 foreach_tcp_state_next
2225#undef _
2226 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002227 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002228};
2229/* *INDENT-ON* */
2230
2231
2232VLIB_NODE_FUNCTION_MULTIARCH (tcp6_established_node, tcp6_established);
2233
2234vlib_node_registration_t tcp4_syn_sent_node;
2235vlib_node_registration_t tcp6_syn_sent_node;
2236
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002237static u8
2238tcp_lookup_is_valid (tcp_connection_t * tc, tcp_header_t * hdr)
2239{
Florin Corascea194d2017-10-02 00:18:51 -07002240 transport_connection_t *tmp = 0;
2241 u64 handle;
2242
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002243 if (!tc)
2244 return 1;
2245
Florin Coras70131132017-11-27 02:43:30 -08002246 /* Proxy case */
2247 if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
2248 return 1;
2249
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002250 u8 is_valid = (tc->c_lcl_port == hdr->dst_port
2251 && (tc->state == TCP_STATE_LISTEN
2252 || tc->c_rmt_port == hdr->src_port));
2253
2254 if (!is_valid)
2255 {
Florin Corascea194d2017-10-02 00:18:51 -07002256 handle = session_lookup_half_open_handle (&tc->connection);
2257 tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
Florin Coras3cbc04b2017-10-02 00:18:51 -07002258 tc->c_proto, tc->c_is_ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002259
2260 if (tmp)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002261 {
2262 if (tmp->lcl_port == hdr->dst_port
2263 && tmp->rmt_port == hdr->src_port)
2264 {
Florin Corascea194d2017-10-02 00:18:51 -07002265 TCP_DBG ("half-open is valid!");
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002266 }
2267 }
2268 }
2269 return is_valid;
2270}
2271
2272/**
2273 * Lookup transport connection
2274 */
2275static tcp_connection_t *
Florin Corascea194d2017-10-02 00:18:51 -07002276tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
2277 u8 is_ip4)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002278{
2279 tcp_header_t *tcp;
2280 transport_connection_t *tconn;
2281 tcp_connection_t *tc;
Florin Corasdff48db2017-11-19 18:06:58 -08002282 u8 is_filtered = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002283 if (is_ip4)
2284 {
2285 ip4_header_t *ip4;
2286 ip4 = vlib_buffer_get_current (b);
2287 tcp = ip4_next_header (ip4);
Florin Corascea194d2017-10-02 00:18:51 -07002288 tconn = session_lookup_connection_wt4 (fib_index,
2289 &ip4->dst_address,
2290 &ip4->src_address,
2291 tcp->dst_port,
2292 tcp->src_port,
2293 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002294 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002295 tc = tcp_get_connection_from_transport (tconn);
2296 ASSERT (tcp_lookup_is_valid (tc, tcp));
2297 }
2298 else
2299 {
2300 ip6_header_t *ip6;
2301 ip6 = vlib_buffer_get_current (b);
2302 tcp = ip6_next_header (ip6);
Florin Corascea194d2017-10-02 00:18:51 -07002303 tconn = session_lookup_connection_wt6 (fib_index,
2304 &ip6->dst_address,
2305 &ip6->src_address,
2306 tcp->dst_port,
2307 tcp->src_port,
2308 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002309 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002310 tc = tcp_get_connection_from_transport (tconn);
2311 ASSERT (tcp_lookup_is_valid (tc, tcp));
2312 }
2313 return tc;
2314}
2315
Dave Barach68b0fb02017-02-28 15:15:56 -05002316always_inline uword
2317tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2318 vlib_frame_t * from_frame, int is_ip4)
2319{
2320 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras7ac053b2018-11-05 15:57:21 -08002321 u32 n_left_from, *from, *first_buffer, errors = 0;
2322 u32 my_thread_index = vm->thread_index;
2323 tcp_worker_ctx_t *wrk = tcp_get_worker (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05002324
Florin Coras7ac053b2018-11-05 15:57:21 -08002325 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002326 n_left_from = from_frame->n_vectors;
2327
Dave Barach68b0fb02017-02-28 15:15:56 -05002328 while (n_left_from > 0)
2329 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002330 u32 bi0, ack0, seq0, error0 = TCP_ERROR_NONE;
2331 tcp_connection_t *tc0, *new_tc0;
2332 tcp_header_t *tcp0 = 0;
2333 tcp_rx_trace_t *t0;
2334 vlib_buffer_t *b0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002335
Florin Coras7ac053b2018-11-05 15:57:21 -08002336 bi0 = from[0];
2337 from += 1;
2338 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002339
Florin Coras7ac053b2018-11-05 15:57:21 -08002340 b0 = vlib_get_buffer (vm, bi0);
2341 tc0 =
2342 tcp_half_open_connection_get (vnet_buffer (b0)->tcp.connection_index);
2343 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002344 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002345 error0 = TCP_ERROR_INVALID_CONNECTION;
2346 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002347 }
2348
Florin Coras7ac053b2018-11-05 15:57:21 -08002349 /* Half-open completed recently but the connection was't removed
2350 * yet by the owning thread */
2351 if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2352 {
2353 /* Make sure the connection actually exists */
2354 ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2355 my_thread_index, is_ip4));
2356 goto drop;
2357 }
2358
2359 ack0 = vnet_buffer (b0)->tcp.ack_number;
2360 seq0 = vnet_buffer (b0)->tcp.seq_number;
2361 tcp0 = tcp_buffer_hdr (b0);
2362
2363 /* Crude check to see if the connection handle does not match
2364 * the packet. Probably connection just switched to established */
2365 if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2366 || tcp0->src_port != tc0->c_rmt_port))
2367 {
2368 error0 = TCP_ERROR_INVALID_CONNECTION;
2369 goto drop;
2370 }
2371
2372 if (PREDICT_FALSE (!tcp_ack (tcp0) && !tcp_rst (tcp0)
2373 && !tcp_syn (tcp0)))
2374 {
2375 error0 = TCP_ERROR_SEGMENT_INVALID;
2376 goto drop;
2377 }
2378
2379 /* SYNs, FINs and data consume sequence numbers */
2380 vnet_buffer (b0)->tcp.seq_end =
2381 seq0 + tcp_is_syn (tcp0) + tcp_is_fin (tcp0) +
2382 vnet_buffer (b0)->tcp.data_len;
2383
2384 /*
2385 * 1. check the ACK bit
2386 */
2387
2388 /*
2389 * If the ACK bit is set
2390 * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2391 * the RST bit is set, if so drop the segment and return)
2392 * <SEQ=SEG.ACK><CTL=RST>
2393 * and discard the segment. Return.
2394 * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2395 */
2396 if (tcp_ack (tcp0))
2397 {
2398 if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
2399 {
2400 if (!tcp_rst (tcp0))
2401 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
2402 error0 = TCP_ERROR_RCV_WND;
2403 goto drop;
2404 }
2405
2406 /* Make sure ACK is valid */
2407 if (seq_gt (tc0->snd_una, ack0))
2408 {
2409 error0 = TCP_ERROR_ACK_INVALID;
2410 goto drop;
2411 }
2412 }
2413
2414 /*
2415 * 2. check the RST bit
2416 */
2417
2418 if (tcp_rst (tcp0))
2419 {
2420 /* If ACK is acceptable, signal client that peer is not
2421 * willing to accept connection and drop connection*/
2422 if (tcp_ack (tcp0))
2423 tcp_connection_reset (tc0);
2424 error0 = TCP_ERROR_RST_RCVD;
2425 goto drop;
2426 }
2427
2428 /*
2429 * 3. check the security and precedence (skipped)
2430 */
2431
2432 /*
2433 * 4. check the SYN bit
2434 */
2435
2436 /* No SYN flag. Drop. */
2437 if (!tcp_syn (tcp0))
2438 {
2439 clib_warning ("not synack");
2440 error0 = TCP_ERROR_SEGMENT_INVALID;
2441 goto drop;
2442 }
2443
2444 /* Parse options */
Florin Coras80231112018-12-05 15:59:31 -08002445 if (tcp_options_parse (tcp0, &tc0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08002446 {
2447 clib_warning ("options parse fail");
2448 error0 = TCP_ERROR_OPTIONS;
2449 goto drop;
2450 }
2451
2452 /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2453 * current thread pool. */
2454 pool_get (tm->connections[my_thread_index], new_tc0);
Dave Barach178cf492018-11-13 16:34:13 -05002455 clib_memcpy_fast (new_tc0, tc0, sizeof (*new_tc0));
Florin Coras7ac053b2018-11-05 15:57:21 -08002456 new_tc0->c_c_index = new_tc0 - tm->connections[my_thread_index];
2457 new_tc0->c_thread_index = my_thread_index;
2458 new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2459 new_tc0->irs = seq0;
2460 new_tc0->timers[TCP_TIMER_ESTABLISH] = TCP_TIMER_HANDLE_INVALID;
2461 new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
2462 new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
2463
2464 /* If this is not the owning thread, wait for syn retransmit to
2465 * expire and cleanup then */
2466 if (tcp_half_open_connection_cleanup (tc0))
2467 tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
2468
2469 if (tcp_opts_tstamp (&new_tc0->rcv_opts))
2470 {
2471 new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
2472 new_tc0->tsval_recent_age = tcp_time_now ();
2473 }
2474
2475 if (tcp_opts_wscale (&new_tc0->rcv_opts))
2476 new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
2477
2478 new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2479 << new_tc0->snd_wscale;
2480 new_tc0->snd_wl1 = seq0;
2481 new_tc0->snd_wl2 = ack0;
2482
2483 tcp_connection_init_vars (new_tc0);
2484
2485 /* SYN-ACK: See if we can switch to ESTABLISHED state */
2486 if (PREDICT_TRUE (tcp_ack (tcp0)))
2487 {
2488 /* Our SYN is ACKed: we have iss < ack = snd_una */
2489
2490 /* TODO Dequeue acknowledged segments if we support Fast Open */
2491 new_tc0->snd_una = ack0;
2492 new_tc0->state = TCP_STATE_ESTABLISHED;
2493
2494 /* Make sure las is initialized for the wnd computation */
2495 new_tc0->rcv_las = new_tc0->rcv_nxt;
2496
2497 /* Notify app that we have connection. If session layer can't
2498 * allocate session send reset */
2499 if (session_stream_connect_notify (&new_tc0->connection, 0))
2500 {
2501 clib_warning ("connect notify fail");
2502 tcp_send_reset_w_pkt (new_tc0, b0, is_ip4);
2503 tcp_connection_cleanup (new_tc0);
2504 goto drop;
2505 }
2506
Florin Coras2e31cc32018-09-25 14:00:34 -07002507 new_tc0->tx_fifo_size =
2508 transport_tx_fifo_size (&new_tc0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08002509 /* Update rtt with the syn-ack sample */
Florin Corasefefc6b2018-11-07 12:49:19 -08002510 tcp_estimate_initial_rtt (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002511 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, new_tc0);
2512 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2513 }
2514 /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2515 else
2516 {
2517 new_tc0->state = TCP_STATE_SYN_RCVD;
2518
2519 /* Notify app that we have connection */
2520 if (session_stream_connect_notify (&new_tc0->connection, 0))
2521 {
2522 tcp_connection_cleanup (new_tc0);
2523 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
2524 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc0);
2525 goto drop;
2526 }
2527
Florin Coras2e31cc32018-09-25 14:00:34 -07002528 new_tc0->tx_fifo_size =
2529 transport_tx_fifo_size (&new_tc0->connection);
2530 new_tc0->rtt_ts = 0;
2531 tcp_init_snd_vars (new_tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002532 tcp_send_synack (new_tc0);
2533 error0 = TCP_ERROR_SYNS_RCVD;
2534 goto drop;
2535 }
2536
2537 /* Read data, if any */
2538 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
2539 {
2540 clib_warning ("rcvd data in syn-sent");
2541 error0 = tcp_segment_rcv (wrk, new_tc0, b0);
2542 if (error0 == TCP_ERROR_ACK_OK)
2543 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2544 }
2545 else
2546 {
2547 tcp_program_ack (wrk, new_tc0);
2548 }
2549
2550 drop:
2551
2552 tcp_inc_counter (syn_sent, error0, 1);
2553 if (PREDICT_FALSE ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
2554 {
2555 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05002556 clib_memcpy_fast (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2557 clib_memcpy_fast (&t0->tcp_connection, tc0,
2558 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08002559 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002560 }
2561
Florin Coras3cbc04b2017-10-02 00:18:51 -07002562 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2563 my_thread_index);
Florin Coras00cd22d2018-04-18 13:20:18 -07002564 tcp_inc_counter (syn_sent, TCP_ERROR_EVENT_FIFO_FULL, errors);
Florin Coras7ac053b2018-11-05 15:57:21 -08002565 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
2566
Dave Barach68b0fb02017-02-28 15:15:56 -05002567 return from_frame->n_vectors;
2568}
2569
2570static uword
2571tcp4_syn_sent (vlib_main_t * vm, vlib_node_runtime_t * node,
2572 vlib_frame_t * from_frame)
2573{
2574 return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2575}
2576
2577static uword
2578tcp6_syn_sent_rcv (vlib_main_t * vm, vlib_node_runtime_t * node,
2579 vlib_frame_t * from_frame)
2580{
2581 return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2582}
2583
2584/* *INDENT-OFF* */
2585VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2586{
2587 .function = tcp4_syn_sent,
2588 .name = "tcp4-syn-sent",
2589 /* Takes a vector of packets. */
2590 .vector_size = sizeof (u32),
2591 .n_errors = TCP_N_ERROR,
2592 .error_strings = tcp_error_strings,
2593 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2594 .next_nodes =
2595 {
2596#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2597 foreach_tcp_state_next
2598#undef _
2599 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002600 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002601};
2602/* *INDENT-ON* */
2603
2604VLIB_NODE_FUNCTION_MULTIARCH (tcp4_syn_sent_node, tcp4_syn_sent);
2605
2606/* *INDENT-OFF* */
2607VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2608{
2609 .function = tcp6_syn_sent_rcv,
2610 .name = "tcp6-syn-sent",
2611 /* Takes a vector of packets. */
2612 .vector_size = sizeof (u32),
2613 .n_errors = TCP_N_ERROR,
2614 .error_strings = tcp_error_strings,
2615 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2616 .next_nodes =
2617 {
2618#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2619 foreach_tcp_state_next
2620#undef _
Clement Durand6cf260c2017-04-13 13:27:04 +02002621 },
2622 .format_trace = format_tcp_rx_trace_short,
2623};
Dave Barach68b0fb02017-02-28 15:15:56 -05002624/* *INDENT-ON* */
2625
2626VLIB_NODE_FUNCTION_MULTIARCH (tcp6_syn_sent_node, tcp6_syn_sent_rcv);
Florin Coras6534b7a2017-07-18 05:38:03 -04002627
Florin Coras3cbc04b2017-10-02 00:18:51 -07002628vlib_node_registration_t tcp4_rcv_process_node;
2629vlib_node_registration_t tcp6_rcv_process_node;
2630
Dave Barach68b0fb02017-02-28 15:15:56 -05002631/**
Florin Corasd79b41e2017-03-04 05:37:52 -08002632 * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
Dave Barach68b0fb02017-02-28 15:15:56 -05002633 * as per RFC793 p. 64
2634 */
2635always_inline uword
2636tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2637 vlib_frame_t * from_frame, int is_ip4)
2638{
Florin Coras7ac053b2018-11-05 15:57:21 -08002639 u32 thread_index = vm->thread_index, errors = 0, *first_buffer;
2640 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
2641 u32 n_left_from, *from;
Dave Barach68b0fb02017-02-28 15:15:56 -05002642
Florin Coras7ac053b2018-11-05 15:57:21 -08002643 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05002644 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002645
2646 while (n_left_from > 0)
2647 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002648 u32 bi0, error0 = TCP_ERROR_NONE;
2649 tcp_header_t *tcp0 = 0;
2650 tcp_connection_t *tc0;
2651 vlib_buffer_t *b0;
2652 u8 is_fin0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002653
Florin Coras7ac053b2018-11-05 15:57:21 -08002654 bi0 = from[0];
2655 from += 1;
2656 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002657
Florin Coras7ac053b2018-11-05 15:57:21 -08002658 b0 = vlib_get_buffer (vm, bi0);
2659 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2660 thread_index);
2661 if (PREDICT_FALSE (tc0 == 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002662 {
Florin Coras7ac053b2018-11-05 15:57:21 -08002663 error0 = TCP_ERROR_INVALID_CONNECTION;
2664 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002665 }
2666
Florin Coras7ac053b2018-11-05 15:57:21 -08002667 tcp0 = tcp_buffer_hdr (b0);
2668 is_fin0 = tcp_is_fin (tcp0);
2669
2670 /* SYNs, FINs and data consume sequence numbers */
2671 vnet_buffer (b0)->tcp.seq_end = vnet_buffer (b0)->tcp.seq_number
2672 + tcp_is_syn (tcp0) + is_fin0 + vnet_buffer (b0)->tcp.data_len;
2673
2674 if (CLIB_DEBUG)
2675 {
2676 tcp_connection_t *tmp;
2677 tmp = tcp_lookup_connection (tc0->c_fib_index, b0, thread_index,
2678 is_ip4);
2679 if (tmp->state != tc0->state)
2680 {
2681 clib_warning ("state changed");
2682 goto drop;
2683 }
2684 }
2685
2686 /*
2687 * Special treatment for CLOSED
2688 */
2689 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
2690 {
2691 error0 = TCP_ERROR_CONNECTION_CLOSED;
2692 goto drop;
2693 }
2694
2695 /*
2696 * For all other states (except LISTEN)
2697 */
2698
2699 /* 1-4: check SEQ, RST, SYN */
2700 if (PREDICT_FALSE (tcp_segment_validate (wrk, tc0, b0, tcp0, &error0)))
2701 goto drop;
2702
2703 /* 5: check the ACK field */
2704 switch (tc0->state)
2705 {
2706 case TCP_STATE_SYN_RCVD:
2707 /*
2708 * If the segment acknowledgment is not acceptable, form a
2709 * reset segment,
2710 * <SEQ=SEG.ACK><CTL=RST>
2711 * and send it.
2712 */
2713 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
2714 {
2715 TCP_DBG ("connection not accepted");
2716 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
2717 error0 = TCP_ERROR_ACK_INVALID;
2718 goto drop;
2719 }
2720
2721 /* Update rtt and rto */
Florin Corasefefc6b2018-11-07 12:49:19 -08002722 tcp_estimate_initial_rtt (tc0);
Florin Coras7ac053b2018-11-05 15:57:21 -08002723
2724 /* Switch state to ESTABLISHED */
2725 tc0->state = TCP_STATE_ESTABLISHED;
2726 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
2727
2728 /* Initialize session variables */
2729 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
2730 tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
2731 << tc0->rcv_opts.wscale;
2732 tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2733 tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
2734
2735 /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
2736 tcp_retransmit_timer_reset (tc0);
2737 tcp_timer_reset (tc0, TCP_TIMER_ESTABLISH);
2738 stream_session_accept_notify (&tc0->connection);
2739 error0 = TCP_ERROR_ACK_OK;
2740 break;
2741 case TCP_STATE_ESTABLISHED:
2742 /* We can get packets in established state here because they
2743 * were enqueued before state change */
2744 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2745 goto drop;
2746
2747 break;
2748 case TCP_STATE_FIN_WAIT_1:
2749 /* In addition to the processing for the ESTABLISHED state, if
2750 * our FIN is now acknowledged then enter FIN-WAIT-2 and
2751 * continue processing in that state. */
2752 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2753 goto drop;
2754
2755 /* Still have to send the FIN */
2756 if (tc0->flags & TCP_CONN_FINPNDG)
2757 {
2758 /* TX fifo finally drained */
2759 if (!session_tx_fifo_max_dequeue (&tc0->connection))
2760 tcp_send_fin (tc0);
2761 }
2762 /* If FIN is ACKed */
2763 else if (tc0->snd_una == tc0->snd_una_max)
2764 {
2765 tc0->state = TCP_STATE_FIN_WAIT_2;
2766 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
2767
2768 /* Stop all retransmit timers because we have nothing more
2769 * to send. Enable waitclose though because we're willing to
2770 * wait for peer's FIN but not indefinitely. */
2771 tcp_connection_timers_reset (tc0);
2772 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Corasefefc6b2018-11-07 12:49:19 -08002773
2774 /* Don't try to deq the FIN acked */
2775 if (tc0->burst_acked > 1)
2776 stream_session_dequeue_drop (&tc0->connection,
2777 tc0->burst_acked - 1);
2778 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002779 }
2780 break;
2781 case TCP_STATE_FIN_WAIT_2:
2782 /* In addition to the processing for the ESTABLISHED state, if
2783 * the retransmission queue is empty, the user's CLOSE can be
2784 * acknowledged ("ok") but do not delete the TCB. */
2785 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2786 goto drop;
Florin Corasefefc6b2018-11-07 12:49:19 -08002787 tc0->burst_acked = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08002788 break;
2789 case TCP_STATE_CLOSE_WAIT:
2790 /* Do the same processing as for the ESTABLISHED state. */
2791 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2792 goto drop;
2793
2794 if (tc0->flags & TCP_CONN_FINPNDG)
2795 {
2796 /* TX fifo finally drained */
2797 if (!session_tx_fifo_max_dequeue (&tc0->connection))
2798 {
2799 tcp_send_fin (tc0);
2800 tcp_connection_timers_reset (tc0);
2801 tc0->state = TCP_STATE_LAST_ACK;
2802 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
2803 }
2804 }
2805 break;
2806 case TCP_STATE_CLOSING:
2807 /* In addition to the processing for the ESTABLISHED state, if
2808 * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2809 * otherwise ignore the segment. */
2810 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2811 goto drop;
2812
2813 tc0->state = TCP_STATE_TIME_WAIT;
2814 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
2815 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
2816 goto drop;
2817
2818 break;
2819 case TCP_STATE_LAST_ACK:
2820 /* The only thing that [should] arrive in this state is an
2821 * acknowledgment of our FIN. If our FIN is now acknowledged,
2822 * delete the TCB, enter the CLOSED state, and return. */
2823
2824 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
2825 {
2826 error0 = TCP_ERROR_ACK_INVALID;
2827 goto drop;
2828 }
2829 error0 = TCP_ERROR_ACK_OK;
2830 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
2831 /* Apparently our ACK for the peer's FIN was lost */
2832 if (is_fin0 && tc0->snd_una != tc0->snd_una_max)
2833 {
2834 tcp_send_fin (tc0);
2835 goto drop;
2836 }
2837
2838 tc0->state = TCP_STATE_CLOSED;
2839 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
2840
2841 /* Don't free the connection from the data path since
2842 * we can't ensure that we have no packets already enqueued
2843 * to output. Rely instead on the waitclose timer */
2844 tcp_connection_timers_reset (tc0);
2845 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, 1);
2846
2847 goto drop;
2848
2849 break;
2850 case TCP_STATE_TIME_WAIT:
2851 /* The only thing that can arrive in this state is a
2852 * retransmission of the remote FIN. Acknowledge it, and restart
2853 * the 2 MSL timeout. */
2854
2855 if (tcp_rcv_ack (wrk, tc0, b0, tcp0, &error0))
2856 goto drop;
2857
2858 tcp_program_ack (wrk, tc0);
2859 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
2860 goto drop;
2861
2862 break;
2863 default:
2864 ASSERT (0);
2865 }
2866
2867 /* 6: check the URG bit TODO */
2868
2869 /* 7: process the segment text */
2870 switch (tc0->state)
2871 {
2872 case TCP_STATE_ESTABLISHED:
2873 case TCP_STATE_FIN_WAIT_1:
2874 case TCP_STATE_FIN_WAIT_2:
2875 if (vnet_buffer (b0)->tcp.data_len)
2876 error0 = tcp_segment_rcv (wrk, tc0, b0);
2877 else if (is_fin0)
2878 tc0->rcv_nxt += 1;
2879 break;
2880 case TCP_STATE_CLOSE_WAIT:
2881 case TCP_STATE_CLOSING:
2882 case TCP_STATE_LAST_ACK:
2883 case TCP_STATE_TIME_WAIT:
2884 /* This should not occur, since a FIN has been received from the
2885 * remote side. Ignore the segment text. */
2886 break;
2887 }
2888
2889 /* 8: check the FIN bit */
2890 if (!is_fin0)
2891 goto drop;
2892
2893 switch (tc0->state)
2894 {
2895 case TCP_STATE_ESTABLISHED:
2896 case TCP_STATE_SYN_RCVD:
2897 /* Send FIN-ACK notify app and enter CLOSE-WAIT */
2898 tcp_connection_timers_reset (tc0);
2899 tcp_send_fin (tc0);
2900 stream_session_disconnect_notify (&tc0->connection);
2901 tc0->state = TCP_STATE_CLOSE_WAIT;
2902 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
2903 break;
2904 case TCP_STATE_CLOSE_WAIT:
2905 case TCP_STATE_CLOSING:
2906 case TCP_STATE_LAST_ACK:
2907 /* move along .. */
2908 break;
2909 case TCP_STATE_FIN_WAIT_1:
2910 tc0->state = TCP_STATE_CLOSING;
2911 tcp_program_ack (wrk, tc0);
2912 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
2913 /* Wait for ACK but not forever */
2914 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
2915 break;
2916 case TCP_STATE_FIN_WAIT_2:
2917 /* Got FIN, send ACK! Be more aggressive with resource cleanup */
2918 tc0->state = TCP_STATE_TIME_WAIT;
2919 tcp_connection_timers_reset (tc0);
2920 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
2921 tcp_program_ack (wrk, tc0);
2922 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
2923 break;
2924 case TCP_STATE_TIME_WAIT:
2925 /* Remain in the TIME-WAIT state. Restart the time-wait
2926 * timeout.
2927 */
2928 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
2929 break;
2930 }
2931 error0 = TCP_ERROR_FIN_RCVD;
2932 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0);
2933
2934 drop:
2935
2936 tcp_inc_counter (rcv_process, error0, 1);
2937 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2938 {
2939 tcp_rx_trace_t *t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2940 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
2941 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002942 }
2943
Florin Coras3cbc04b2017-10-02 00:18:51 -07002944 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
Florin Coras7ac053b2018-11-05 15:57:21 -08002945 thread_index);
Florin Coras00cd22d2018-04-18 13:20:18 -07002946 tcp_inc_counter (rcv_process, TCP_ERROR_EVENT_FIFO_FULL, errors);
Florin Coras9ece3c02018-11-05 11:06:53 -08002947 tcp_handle_postponed_dequeues (wrk);
Florin Coras7ac053b2018-11-05 15:57:21 -08002948 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
2949
Dave Barach68b0fb02017-02-28 15:15:56 -05002950 return from_frame->n_vectors;
2951}
2952
2953static uword
2954tcp4_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node,
2955 vlib_frame_t * from_frame)
2956{
2957 return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2958}
2959
2960static uword
2961tcp6_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node,
2962 vlib_frame_t * from_frame)
2963{
2964 return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2965}
2966
2967/* *INDENT-OFF* */
2968VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
2969{
2970 .function = tcp4_rcv_process,
2971 .name = "tcp4-rcv-process",
2972 /* Takes a vector of packets. */
2973 .vector_size = sizeof (u32),
2974 .n_errors = TCP_N_ERROR,
2975 .error_strings = tcp_error_strings,
2976 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2977 .next_nodes =
2978 {
2979#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
2980 foreach_tcp_state_next
2981#undef _
2982 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002983 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002984};
2985/* *INDENT-ON* */
2986
2987VLIB_NODE_FUNCTION_MULTIARCH (tcp4_rcv_process_node, tcp4_rcv_process);
2988
2989/* *INDENT-OFF* */
2990VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
2991{
2992 .function = tcp6_rcv_process,
2993 .name = "tcp6-rcv-process",
2994 /* Takes a vector of packets. */
2995 .vector_size = sizeof (u32),
2996 .n_errors = TCP_N_ERROR,
2997 .error_strings = tcp_error_strings,
2998 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2999 .next_nodes =
3000 {
3001#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
3002 foreach_tcp_state_next
3003#undef _
3004 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003005 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003006};
3007/* *INDENT-ON* */
3008
3009VLIB_NODE_FUNCTION_MULTIARCH (tcp6_rcv_process_node, tcp6_rcv_process);
3010
3011vlib_node_registration_t tcp4_listen_node;
3012vlib_node_registration_t tcp6_listen_node;
3013
3014/**
3015 * LISTEN state processing as per RFC 793 p. 65
3016 */
3017always_inline uword
3018tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3019 vlib_frame_t * from_frame, int is_ip4)
3020{
Florin Coras7ac053b2018-11-05 15:57:21 -08003021 u32 n_left_from, *from, n_syns = 0, *first_buffer;
Damjan Marion586afd72017-04-05 19:18:20 +02003022 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05003023
Florin Coras7ac053b2018-11-05 15:57:21 -08003024 from = first_buffer = vlib_frame_vector_args (from_frame);
Dave Barach68b0fb02017-02-28 15:15:56 -05003025 n_left_from = from_frame->n_vectors;
3026
Dave Barach68b0fb02017-02-28 15:15:56 -05003027 while (n_left_from > 0)
3028 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003029 u32 bi0;
3030 vlib_buffer_t *b0;
3031 tcp_rx_trace_t *t0;
3032 tcp_header_t *th0 = 0;
3033 tcp_connection_t *lc0;
3034 ip4_header_t *ip40;
3035 ip6_header_t *ip60;
3036 tcp_connection_t *child0;
3037 u32 error0 = TCP_ERROR_NONE;
Dave Barach68b0fb02017-02-28 15:15:56 -05003038
Florin Coras7ac053b2018-11-05 15:57:21 -08003039 bi0 = from[0];
3040 from += 1;
3041 n_left_from -= 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05003042
Florin Coras7ac053b2018-11-05 15:57:21 -08003043 b0 = vlib_get_buffer (vm, bi0);
3044 lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index);
3045
3046 if (is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003047 {
Florin Coras7ac053b2018-11-05 15:57:21 -08003048 ip40 = vlib_buffer_get_current (b0);
3049 th0 = ip4_next_header (ip40);
3050 }
3051 else
3052 {
3053 ip60 = vlib_buffer_get_current (b0);
3054 th0 = ip6_next_header (ip60);
Dave Barach68b0fb02017-02-28 15:15:56 -05003055 }
3056
Florin Coras7ac053b2018-11-05 15:57:21 -08003057 /* Create child session. For syn-flood protection use filter */
3058
3059 /* 1. first check for an RST: handled in dispatch */
3060 /* if (tcp_rst (th0))
3061 goto drop;
3062 */
3063
3064 /* 2. second check for an ACK: handled in dispatch */
3065 /* if (tcp_ack (th0))
3066 {
3067 tcp_send_reset (b0, is_ip4);
3068 goto drop;
3069 }
3070 */
3071
3072 /* 3. check for a SYN (did that already) */
3073
3074 /* Make sure connection wasn't just created */
3075 child0 = tcp_lookup_connection (lc0->c_fib_index, b0, my_thread_index,
3076 is_ip4);
3077 if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN))
3078 {
3079 error0 = TCP_ERROR_CREATE_EXISTS;
3080 goto drop;
3081 }
3082
3083 /* Create child session and send SYN-ACK */
3084 child0 = tcp_connection_new (my_thread_index);
3085 child0->c_lcl_port = th0->dst_port;
3086 child0->c_rmt_port = th0->src_port;
3087 child0->c_is_ip4 = is_ip4;
3088 child0->state = TCP_STATE_SYN_RCVD;
3089 child0->c_fib_index = lc0->c_fib_index;
3090
3091 if (is_ip4)
3092 {
3093 child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32;
3094 child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32;
3095 }
3096 else
3097 {
Dave Barach178cf492018-11-13 16:34:13 -05003098 clib_memcpy_fast (&child0->c_lcl_ip6, &ip60->dst_address,
3099 sizeof (ip6_address_t));
3100 clib_memcpy_fast (&child0->c_rmt_ip6, &ip60->src_address,
3101 sizeof (ip6_address_t));
Florin Coras7ac053b2018-11-05 15:57:21 -08003102 }
3103
Florin Coras80231112018-12-05 15:59:31 -08003104 if (tcp_options_parse (th0, &child0->rcv_opts, 1))
Florin Coras7ac053b2018-11-05 15:57:21 -08003105 {
3106 clib_warning ("options parse fail");
3107 goto drop;
3108 }
3109
3110 child0->irs = vnet_buffer (b0)->tcp.seq_number;
3111 child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1;
3112 child0->rcv_las = child0->rcv_nxt;
3113 child0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
3114
3115 /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
3116 * segments are used to initialize PAWS. */
3117 if (tcp_opts_tstamp (&child0->rcv_opts))
3118 {
3119 child0->tsval_recent = child0->rcv_opts.tsval;
3120 child0->tsval_recent_age = tcp_time_now ();
3121 }
3122
3123 if (tcp_opts_wscale (&child0->rcv_opts))
3124 child0->snd_wscale = child0->rcv_opts.wscale;
3125
3126 child0->snd_wnd = clib_net_to_host_u16 (th0->window)
3127 << child0->snd_wscale;
3128 child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
3129 child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
3130
3131 tcp_connection_init_vars (child0);
3132 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, child0, 1);
3133
3134 if (stream_session_accept (&child0->connection, lc0->c_s_index,
3135 0 /* notify */ ))
3136 {
3137 clib_warning ("session accept fail");
3138 tcp_connection_cleanup (child0);
3139 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
3140 goto drop;
3141 }
3142
Florin Coras2e31cc32018-09-25 14:00:34 -07003143 child0->tx_fifo_size = transport_tx_fifo_size (&child0->connection);
Florin Coras7ac053b2018-11-05 15:57:21 -08003144 tcp_send_synack (child0);
3145 tcp_timer_set (child0, TCP_TIMER_ESTABLISH, TCP_SYN_RCVD_TIME);
3146
3147 drop:
3148
3149 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3150 {
3151 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05003152 clib_memcpy_fast (&t0->tcp_header, th0, sizeof (t0->tcp_header));
3153 clib_memcpy_fast (&t0->tcp_connection, lc0,
3154 sizeof (t0->tcp_connection));
Florin Coras7ac053b2018-11-05 15:57:21 -08003155 }
3156
3157 n_syns += (error0 == TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003158 }
Florin Coras00cd22d2018-04-18 13:20:18 -07003159
3160 tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
Florin Coras7ac053b2018-11-05 15:57:21 -08003161 vlib_buffer_free (vm, first_buffer, from_frame->n_vectors);
3162
Dave Barach68b0fb02017-02-28 15:15:56 -05003163 return from_frame->n_vectors;
3164}
3165
3166static uword
3167tcp4_listen (vlib_main_t * vm, vlib_node_runtime_t * node,
3168 vlib_frame_t * from_frame)
3169{
3170 return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3171}
3172
3173static uword
3174tcp6_listen (vlib_main_t * vm, vlib_node_runtime_t * node,
3175 vlib_frame_t * from_frame)
3176{
3177 return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3178}
3179
3180/* *INDENT-OFF* */
3181VLIB_REGISTER_NODE (tcp4_listen_node) =
3182{
3183 .function = tcp4_listen,
3184 .name = "tcp4-listen",
3185 /* Takes a vector of packets. */
3186 .vector_size = sizeof (u32),
3187 .n_errors = TCP_N_ERROR,
3188 .error_strings = tcp_error_strings,
3189 .n_next_nodes = TCP_LISTEN_N_NEXT,
3190 .next_nodes =
3191 {
3192#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3193 foreach_tcp_state_next
3194#undef _
3195 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003196 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003197};
3198/* *INDENT-ON* */
3199
3200VLIB_NODE_FUNCTION_MULTIARCH (tcp4_listen_node, tcp4_listen);
3201
3202/* *INDENT-OFF* */
3203VLIB_REGISTER_NODE (tcp6_listen_node) =
3204{
3205 .function = tcp6_listen,
3206 .name = "tcp6-listen",
3207 /* Takes a vector of packets. */
3208 .vector_size = sizeof (u32),
3209 .n_errors = TCP_N_ERROR,
3210 .error_strings = tcp_error_strings,
3211 .n_next_nodes = TCP_LISTEN_N_NEXT,
3212 .next_nodes =
3213 {
3214#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
3215 foreach_tcp_state_next
3216#undef _
3217 },
Clement Durand6cf260c2017-04-13 13:27:04 +02003218 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05003219};
3220/* *INDENT-ON* */
3221
3222VLIB_NODE_FUNCTION_MULTIARCH (tcp6_listen_node, tcp6_listen);
3223
3224vlib_node_registration_t tcp4_input_node;
3225vlib_node_registration_t tcp6_input_node;
3226
3227typedef enum _tcp_input_next
3228{
3229 TCP_INPUT_NEXT_DROP,
3230 TCP_INPUT_NEXT_LISTEN,
3231 TCP_INPUT_NEXT_RCV_PROCESS,
3232 TCP_INPUT_NEXT_SYN_SENT,
3233 TCP_INPUT_NEXT_ESTABLISHED,
3234 TCP_INPUT_NEXT_RESET,
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003235 TCP_INPUT_NEXT_PUNT,
Dave Barach68b0fb02017-02-28 15:15:56 -05003236 TCP_INPUT_N_NEXT
3237} tcp_input_next_t;
3238
3239#define foreach_tcp4_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003240 _ (DROP, "ip4-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003241 _ (LISTEN, "tcp4-listen") \
3242 _ (RCV_PROCESS, "tcp4-rcv-process") \
3243 _ (SYN_SENT, "tcp4-syn-sent") \
3244 _ (ESTABLISHED, "tcp4-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003245 _ (RESET, "tcp4-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003246 _ (PUNT, "ip4-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003247
3248#define foreach_tcp6_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003249 _ (DROP, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05003250 _ (LISTEN, "tcp6-listen") \
3251 _ (RCV_PROCESS, "tcp6-rcv-process") \
3252 _ (SYN_SENT, "tcp6-syn-sent") \
3253 _ (ESTABLISHED, "tcp6-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003254 _ (RESET, "tcp6-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08003255 _ (PUNT, "ip6-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05003256
Dave Barach68b0fb02017-02-28 15:15:56 -05003257#define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
3258
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003259static void
3260tcp_input_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Coras4df38712018-06-20 12:44:16 -07003261 vlib_buffer_t ** bs, u32 n_bufs, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -05003262{
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003263 tcp_connection_t *tc;
3264 tcp_header_t *tcp;
3265 tcp_rx_trace_t *t;
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003266 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05003267
Florin Coras4df38712018-06-20 12:44:16 -07003268 for (i = 0; i < n_bufs; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05003269 {
Florin Coras4df38712018-06-20 12:44:16 -07003270 if (bs[i]->flags & VLIB_BUFFER_IS_TRACED)
3271 {
3272 t = vlib_add_trace (vm, node, bs[i], sizeof (*t));
3273 tc = tcp_connection_get (vnet_buffer (bs[i])->tcp.connection_index,
3274 vm->thread_index);
3275 tcp = vlib_buffer_get_current (bs[i]);
3276 tcp_set_rx_trace_data (t, tc, tcp, bs[i], is_ip4);
3277 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003278 }
3279}
Dave Barach68b0fb02017-02-28 15:15:56 -05003280
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003281static void
3282tcp_input_set_error_next (tcp_main_t * tm, u16 * next, u32 * error, u8 is_ip4)
3283{
3284 if (*error == TCP_ERROR_FILTERED)
3285 {
3286 *next = TCP_INPUT_NEXT_DROP;
3287 }
3288 else if ((is_ip4 && tm->punt_unknown4) || (!is_ip4 && tm->punt_unknown6))
3289 {
3290 *next = TCP_INPUT_NEXT_PUNT;
3291 *error = TCP_ERROR_PUNT;
3292 }
3293 else
3294 {
3295 *next = TCP_INPUT_NEXT_RESET;
3296 *error = TCP_ERROR_NO_LISTENER;
3297 }
3298}
Dave Barach68b0fb02017-02-28 15:15:56 -05003299
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003300static inline tcp_connection_t *
3301tcp_input_lookup_buffer (vlib_buffer_t * b, u8 thread_index, u32 * error,
3302 u8 is_ip4)
3303{
3304 u32 fib_index = vnet_buffer (b)->ip.fib_index;
3305 int n_advance_bytes, n_data_bytes;
3306 transport_connection_t *tc;
3307 tcp_header_t *tcp;
3308 u8 is_filtered = 0;
3309
3310 if (is_ip4)
3311 {
3312 ip4_header_t *ip4 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003313 int ip_hdr_bytes = ip4_header_bytes (ip4);
3314 if (PREDICT_FALSE (b->current_length < ip_hdr_bytes + sizeof (*tcp)))
3315 {
3316 *error = TCP_ERROR_LENGTH;
3317 return 0;
3318 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003319 tcp = ip4_next_header (ip4);
3320 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip4;
Florin Corasb8dda5f2018-12-05 10:03:34 -08003321 n_advance_bytes = (ip_hdr_bytes + tcp_header_bytes (tcp));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003322 n_data_bytes = clib_net_to_host_u16 (ip4->length) - n_advance_bytes;
3323
3324 /* Length check. Checksum computed by ipx_local no need to compute again */
Florin Corasb8dda5f2018-12-05 10:03:34 -08003325 if (PREDICT_FALSE (n_data_bytes < 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05003326 {
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003327 *error = TCP_ERROR_LENGTH;
3328 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003329 }
3330
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003331 tc = session_lookup_connection_wt4 (fib_index, &ip4->dst_address,
3332 &ip4->src_address, tcp->dst_port,
3333 tcp->src_port, TRANSPORT_PROTO_TCP,
3334 thread_index, &is_filtered);
3335 }
3336 else
3337 {
3338 ip6_header_t *ip6 = vlib_buffer_get_current (b);
Florin Corasb8dda5f2018-12-05 10:03:34 -08003339 if (PREDICT_FALSE (b->current_length < sizeof (*ip6) + sizeof (*tcp)))
3340 {
3341 *error = TCP_ERROR_LENGTH;
3342 return 0;
3343 }
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003344 tcp = ip6_next_header (ip6);
3345 vnet_buffer (b)->tcp.hdr_offset = (u8 *) tcp - (u8 *) ip6;
3346 n_advance_bytes = tcp_header_bytes (tcp);
3347 n_data_bytes = clib_net_to_host_u16 (ip6->payload_length)
3348 - n_advance_bytes;
3349 n_advance_bytes += sizeof (ip6[0]);
3350
Florin Corasb8dda5f2018-12-05 10:03:34 -08003351 if (PREDICT_FALSE (n_data_bytes < 0))
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003352 {
3353 *error = TCP_ERROR_LENGTH;
3354 return 0;
3355 }
3356
3357 tc = session_lookup_connection_wt6 (fib_index, &ip6->dst_address,
3358 &ip6->src_address, tcp->dst_port,
3359 tcp->src_port, TRANSPORT_PROTO_TCP,
3360 thread_index, &is_filtered);
Dave Barach68b0fb02017-02-28 15:15:56 -05003361 }
3362
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003363 vnet_buffer (b)->tcp.seq_number = clib_net_to_host_u32 (tcp->seq_number);
3364 vnet_buffer (b)->tcp.ack_number = clib_net_to_host_u32 (tcp->ack_number);
3365 vnet_buffer (b)->tcp.data_offset = n_advance_bytes;
3366 vnet_buffer (b)->tcp.data_len = n_data_bytes;
3367 vnet_buffer (b)->tcp.flags = 0;
3368
3369 *error = is_filtered ? TCP_ERROR_FILTERED : *error;
3370
3371 return tcp_get_connection_from_transport (tc);
3372}
3373
3374static inline void
3375tcp_input_dispatch_buffer (tcp_main_t * tm, tcp_connection_t * tc,
3376 vlib_buffer_t * b, u16 * next, u32 * error)
3377{
3378 tcp_header_t *tcp;
3379 u8 flags;
3380
3381 tcp = tcp_buffer_hdr (b);
3382 flags = tcp->flags & filter_flags;
3383 *next = tm->dispatch_table[tc->state][flags].next;
3384 *error = tm->dispatch_table[tc->state][flags].error;
3385
3386 if (PREDICT_FALSE (*error == TCP_ERROR_DISPATCH
3387 || *next == TCP_INPUT_NEXT_RESET))
3388 {
3389 /* Overload tcp flags to store state */
3390 tcp_state_t state = tc->state;
3391 vnet_buffer (b)->tcp.flags = tc->state;
3392
3393 if (*error == TCP_ERROR_DISPATCH)
3394 clib_warning ("disp error state %U flags %U", format_tcp_state,
3395 state, format_tcp_flags, (int) flags);
3396 }
3397}
3398
3399always_inline uword
3400tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3401 vlib_frame_t * frame, int is_ip4)
3402{
3403 u32 n_left_from, *from, thread_index = vm->thread_index;
3404 tcp_main_t *tm = vnet_get_tcp_main ();
3405 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
3406 u16 nexts[VLIB_FRAME_SIZE], *next;
3407
Florin Corasbe72ae62018-11-01 11:23:03 -07003408 tcp_set_time_now (tcp_get_worker (thread_index));
Florin Coras0c8a3bc2018-06-14 17:11:56 -07003409
3410 from = vlib_frame_vector_args (frame);
3411 n_left_from = frame->n_vectors;
3412 vlib_get_buffers (vm, from, bufs, n_left_from);
3413
3414 b = bufs;
3415 next = nexts;
3416
3417 while (n_left_from >= 4)
3418 {
3419 u32 error0 = TCP_ERROR_NO_LISTENER, error1 = TCP_ERROR_NO_LISTENER;
3420 tcp_connection_t *tc0, *tc1;
3421
3422 {
3423 vlib_prefetch_buffer_header (b[2], STORE);
3424 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3425
3426 vlib_prefetch_buffer_header (b[3], STORE);
3427 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3428 }
3429
3430 next[0] = next[1] = TCP_INPUT_NEXT_DROP;
3431
3432 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4);
3433 tc1 = tcp_input_lookup_buffer (b[1], thread_index, &error1, is_ip4);
3434
3435 if (PREDICT_TRUE (!tc0 + !tc1 == 0))
3436 {
3437 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3438 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3439
3440 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3441 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3442
3443 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3444 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3445 }
3446 else
3447 {
3448 if (PREDICT_TRUE (tc0 != 0))
3449 {
3450 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3451 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3452 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3453 }
3454 else
3455 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3456
3457 if (PREDICT_TRUE (tc1 != 0))
3458 {
3459 ASSERT (tcp_lookup_is_valid (tc1, tcp_buffer_hdr (b[1])));
3460 vnet_buffer (b[1])->tcp.connection_index = tc1->c_c_index;
3461 tcp_input_dispatch_buffer (tm, tc1, b[1], &next[1], &error1);
3462 }
3463 else
3464 tcp_input_set_error_next (tm, &next[1], &error1, is_ip4);
3465 }
3466
3467 b += 2;
3468 next += 2;
3469 n_left_from -= 2;
3470 }
3471 while (n_left_from > 0)
3472 {
3473 tcp_connection_t *tc0;
3474 u32 error0 = TCP_ERROR_NO_LISTENER;
3475
3476 if (n_left_from > 1)
3477 {
3478 vlib_prefetch_buffer_header (b[1], STORE);
3479 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
3480 }
3481
3482 next[0] = TCP_INPUT_NEXT_DROP;
3483 tc0 = tcp_input_lookup_buffer (b[0], thread_index, &error0, is_ip4);
3484 if (PREDICT_TRUE (tc0 != 0))
3485 {
3486 ASSERT (tcp_lookup_is_valid (tc0, tcp_buffer_hdr (b[0])));
3487 vnet_buffer (b[0])->tcp.connection_index = tc0->c_c_index;
3488 tcp_input_dispatch_buffer (tm, tc0, b[0], &next[0], &error0);
3489 }
3490 else
3491 tcp_input_set_error_next (tm, &next[0], &error0, is_ip4);
3492
3493 b += 1;
3494 next += 1;
3495 n_left_from -= 1;
3496 }
3497
3498 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
3499 tcp_input_trace_frame (vm, node, bufs, frame->n_vectors, is_ip4);
3500
3501 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
3502 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05003503}
3504
3505static uword
3506tcp4_input (vlib_main_t * vm, vlib_node_runtime_t * node,
3507 vlib_frame_t * from_frame)
3508{
3509 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3510}
3511
3512static uword
3513tcp6_input (vlib_main_t * vm, vlib_node_runtime_t * node,
3514 vlib_frame_t * from_frame)
3515{
3516 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3517}
3518
3519/* *INDENT-OFF* */
3520VLIB_REGISTER_NODE (tcp4_input_node) =
3521{
3522 .function = tcp4_input,
3523 .name = "tcp4-input",
3524 /* Takes a vector of packets. */
3525 .vector_size = sizeof (u32),
3526 .n_errors = TCP_N_ERROR,
3527 .error_strings = tcp_error_strings,
3528 .n_next_nodes = TCP_INPUT_N_NEXT,
3529 .next_nodes =
3530 {
3531#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3532 foreach_tcp4_input_next
3533#undef _
3534 },
3535 .format_buffer = format_tcp_header,
3536 .format_trace = format_tcp_rx_trace,
3537};
3538/* *INDENT-ON* */
3539
3540VLIB_NODE_FUNCTION_MULTIARCH (tcp4_input_node, tcp4_input);
3541
3542/* *INDENT-OFF* */
3543VLIB_REGISTER_NODE (tcp6_input_node) =
3544{
3545 .function = tcp6_input,
3546 .name = "tcp6-input",
3547 /* Takes a vector of packets. */
3548 .vector_size = sizeof (u32),
3549 .n_errors = TCP_N_ERROR,
3550 .error_strings = tcp_error_strings,
3551 .n_next_nodes = TCP_INPUT_N_NEXT,
3552 .next_nodes =
3553 {
3554#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3555 foreach_tcp6_input_next
3556#undef _
3557 },
3558 .format_buffer = format_tcp_header,
3559 .format_trace = format_tcp_rx_trace,
3560};
3561/* *INDENT-ON* */
3562
3563VLIB_NODE_FUNCTION_MULTIARCH (tcp6_input_node, tcp6_input);
Dave Barach68b0fb02017-02-28 15:15:56 -05003564
3565static void
3566tcp_dispatch_table_init (tcp_main_t * tm)
3567{
3568 int i, j;
3569 for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3570 for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3571 {
3572 tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3573 tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3574 }
3575
3576#define _(t,f,n,e) \
3577do { \
3578 tm->dispatch_table[TCP_STATE_##t][f].next = (n); \
3579 tm->dispatch_table[TCP_STATE_##t][f].error = (e); \
3580} while (0)
3581
3582 /* SYNs for new connections -> tcp-listen. */
3583 _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003584 _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
Florin Coras00cd22d2018-04-18 13:20:18 -07003585 _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_RST_RCVD);
Dave Barach2c25a622017-06-26 11:35:07 -04003586 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3587 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003588 /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3589 _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc28764f2017-04-26 00:08:42 -07003590 _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corase8460c72018-09-24 14:40:40 -07003591 _(SYN_RCVD, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3592 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003593 _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc01c4452018-09-20 18:36:54 -07003594 _(SYN_RCVD, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3595 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003596 /* SYN-ACK for a SYN */
3597 _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3598 TCP_ERROR_NONE);
3599 _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3600 _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3601 _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3602 TCP_ERROR_NONE);
3603 /* ACK for for established connection -> tcp-established. */
3604 _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3605 /* FIN for for established connection -> tcp-established. */
3606 _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3607 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3608 TCP_ERROR_NONE);
Florin Corasd79b41e2017-03-04 05:37:52 -08003609 _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003610 _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3611 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003612 _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003613 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3614 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003615 /* ACK or FIN-ACK to our FIN */
3616 _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3617 _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
3618 TCP_ERROR_NONE);
3619 /* FIN in reply to our FIN from the other side */
3620 _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003621 _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras56318932018-05-23 20:44:12 -07003622 _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003623 /* FIN confirming that the peer (app) has closed */
3624 _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasf6d68ed2017-05-07 19:12:02 -07003625 _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003626 _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3627 TCP_ERROR_NONE);
Florin Corasf03a59a2017-06-09 21:07:32 -07003628 _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3629 _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3630 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003631 _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003632 _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3633 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3634 TCP_ERROR_NONE);
Florin Corasdb84e572017-05-09 18:54:52 -07003635 _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc01d5782018-10-17 14:53:11 -07003636 _(LAST_ACK, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003637 _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3638 _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3639 TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003640 _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras50958952017-08-29 14:50:13 -07003641 _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras9d063042017-09-14 03:08:00 -04003642 _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Corasdc629cd2017-05-09 00:52:37 -07003643 _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras9d063042017-09-14 03:08:00 -04003644 _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003645 TCP_ERROR_CONNECTION_CLOSED);
Dave Barach68b0fb02017-02-28 15:15:56 -05003646#undef _
3647}
3648
Florin Coras0dbd5172018-06-25 16:19:34 -07003649static clib_error_t *
Dave Barach68b0fb02017-02-28 15:15:56 -05003650tcp_input_init (vlib_main_t * vm)
3651{
3652 clib_error_t *error = 0;
3653 tcp_main_t *tm = vnet_get_tcp_main ();
3654
3655 if ((error = vlib_call_init_function (vm, tcp_init)))
3656 return error;
3657
3658 /* Initialize dispatch table. */
3659 tcp_dispatch_table_init (tm);
3660
3661 return error;
3662}
3663
3664VLIB_INIT_FUNCTION (tcp_input_init);
3665
3666/*
3667 * fd.io coding-style-patch-verification: ON
3668 *
3669 * Local Variables:
3670 * eval: (c-set-style "gnu")
3671 * End:
3672 */