blob: 07f183891eabb4d035c227da9d6a4ee2e2938932 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vppinfra/sparse_vec.h>
17#include <vnet/tcp/tcp_packet.h>
18#include <vnet/tcp/tcp.h>
19#include <vnet/session/session.h>
20#include <math.h>
21
22static char *tcp_error_strings[] = {
23#define tcp_error(n,s) s,
24#include <vnet/tcp/tcp_error.def>
25#undef tcp_error
26};
27
28/* All TCP nodes have the same outgoing arcs */
29#define foreach_tcp_state_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080030 _ (DROP4, "ip4-drop") \
31 _ (DROP6, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -050032 _ (TCP4_OUTPUT, "tcp4-output") \
33 _ (TCP6_OUTPUT, "tcp6-output")
34
35typedef enum _tcp_established_next
36{
37#define _(s,n) TCP_ESTABLISHED_NEXT_##s,
38 foreach_tcp_state_next
39#undef _
40 TCP_ESTABLISHED_N_NEXT,
41} tcp_established_next_t;
42
43typedef enum _tcp_rcv_process_next
44{
45#define _(s,n) TCP_RCV_PROCESS_NEXT_##s,
46 foreach_tcp_state_next
47#undef _
48 TCP_RCV_PROCESS_N_NEXT,
49} tcp_rcv_process_next_t;
50
51typedef enum _tcp_syn_sent_next
52{
53#define _(s,n) TCP_SYN_SENT_NEXT_##s,
54 foreach_tcp_state_next
55#undef _
56 TCP_SYN_SENT_N_NEXT,
57} tcp_syn_sent_next_t;
58
59typedef enum _tcp_listen_next
60{
61#define _(s,n) TCP_LISTEN_NEXT_##s,
62 foreach_tcp_state_next
63#undef _
64 TCP_LISTEN_N_NEXT,
65} tcp_listen_next_t;
66
67/* Generic, state independent indices */
68typedef enum _tcp_state_next
69{
70#define _(s,n) TCP_NEXT_##s,
71 foreach_tcp_state_next
72#undef _
73 TCP_STATE_N_NEXT,
74} tcp_state_next_t;
75
76#define tcp_next_output(is_ip4) (is_ip4 ? TCP_NEXT_TCP4_OUTPUT \
77 : TCP_NEXT_TCP6_OUTPUT)
78
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080079#define tcp_next_drop(is_ip4) (is_ip4 ? TCP_NEXT_DROP4 \
80 : TCP_NEXT_DROP6)
81
Dave Barach68b0fb02017-02-28 15:15:56 -050082vlib_node_registration_t tcp4_established_node;
83vlib_node_registration_t tcp6_established_node;
84
85/**
86 * Validate segment sequence number. As per RFC793:
87 *
88 * Segment Receive Test
89 * Length Window
90 * ------- ------- -------------------------------------------
91 * 0 0 SEG.SEQ = RCV.NXT
92 * 0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
93 * >0 0 not acceptable
94 * >0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
95 * or RCV.NXT =< SEG.SEQ+SEG.LEN-1 < RCV.NXT+RCV.WND
96 *
97 * This ultimately consists in checking if segment falls within the window.
98 * The one important difference compared to RFC793 is that we use rcv_las,
99 * or the rcv_nxt at last ack sent instead of rcv_nxt since that's the
100 * peer's reference when computing our receive window.
101 *
Florin Coras6792ec02017-03-13 03:49:51 -0700102 * This:
103 * seq_leq (end_seq, tc->rcv_las + tc->rcv_wnd) && seq_geq (seq, tc->rcv_las)
104 * however, is too strict when we have retransmits. Instead we just check that
105 * the seq is not beyond the right edge and that the end of the segment is not
106 * less than the left edge.
107 *
108 * N.B. rcv_nxt and rcv_wnd are both updated in this node if acks are sent, so
109 * use rcv_nxt in the right edge window test instead of rcv_las.
110 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500111 */
112always_inline u8
113tcp_segment_in_rcv_wnd (tcp_connection_t * tc, u32 seq, u32 end_seq)
114{
Florin Coras6792ec02017-03-13 03:49:51 -0700115 return (seq_geq (end_seq, tc->rcv_las)
116 && seq_leq (seq, tc->rcv_nxt + tc->rcv_wnd));
Dave Barach68b0fb02017-02-28 15:15:56 -0500117}
118
Florin Corasdb84e572017-05-09 18:54:52 -0700119/**
120 * Parse TCP header options.
121 *
122 * @param th TCP header
123 * @param to TCP options data structure to be populated
124 * @return -1 if parsing failed
125 */
126int
Dave Barach68b0fb02017-02-28 15:15:56 -0500127tcp_options_parse (tcp_header_t * th, tcp_options_t * to)
128{
129 const u8 *data;
130 u8 opt_len, opts_len, kind;
131 int j;
132 sack_block_t b;
133
134 opts_len = (tcp_doff (th) << 2) - sizeof (tcp_header_t);
135 data = (const u8 *) (th + 1);
136
137 /* Zero out all flags but those set in SYN */
138 to->flags &= (TCP_OPTS_FLAG_SACK_PERMITTED | TCP_OPTS_FLAG_WSCALE);
139
140 for (; opts_len > 0; opts_len -= opt_len, data += opt_len)
141 {
142 kind = data[0];
143
144 /* Get options length */
145 if (kind == TCP_OPTION_EOL)
146 break;
147 else if (kind == TCP_OPTION_NOOP)
Florin Corasdb84e572017-05-09 18:54:52 -0700148 {
149 opt_len = 1;
150 continue;
151 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500152 else
153 {
154 /* broken options */
155 if (opts_len < 2)
Florin Corasdb84e572017-05-09 18:54:52 -0700156 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500157 opt_len = data[1];
158
159 /* weird option length */
160 if (opt_len < 2 || opt_len > opts_len)
Florin Corasdb84e572017-05-09 18:54:52 -0700161 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500162 }
163
164 /* Parse options */
165 switch (kind)
166 {
167 case TCP_OPTION_MSS:
168 if ((opt_len == TCP_OPTION_LEN_MSS) && tcp_syn (th))
169 {
170 to->flags |= TCP_OPTS_FLAG_MSS;
171 to->mss = clib_net_to_host_u16 (*(u16 *) (data + 2));
172 }
173 break;
174 case TCP_OPTION_WINDOW_SCALE:
175 if ((opt_len == TCP_OPTION_LEN_WINDOW_SCALE) && tcp_syn (th))
176 {
177 to->flags |= TCP_OPTS_FLAG_WSCALE;
178 to->wscale = data[2];
179 if (to->wscale > TCP_MAX_WND_SCALE)
180 {
181 clib_warning ("Illegal window scaling value: %d",
182 to->wscale);
183 to->wscale = TCP_MAX_WND_SCALE;
184 }
185 }
186 break;
187 case TCP_OPTION_TIMESTAMP:
188 if (opt_len == TCP_OPTION_LEN_TIMESTAMP)
189 {
190 to->flags |= TCP_OPTS_FLAG_TSTAMP;
191 to->tsval = clib_net_to_host_u32 (*(u32 *) (data + 2));
192 to->tsecr = clib_net_to_host_u32 (*(u32 *) (data + 6));
193 }
194 break;
195 case TCP_OPTION_SACK_PERMITTED:
196 if (opt_len == TCP_OPTION_LEN_SACK_PERMITTED && tcp_syn (th))
197 to->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
198 break;
199 case TCP_OPTION_SACK_BLOCK:
200 /* If SACK permitted was not advertised or a SYN, break */
201 if ((to->flags & TCP_OPTS_FLAG_SACK_PERMITTED) == 0 || tcp_syn (th))
202 break;
203
204 /* If too short or not correctly formatted, break */
205 if (opt_len < 10 || ((opt_len - 2) % TCP_OPTION_LEN_SACK_BLOCK))
206 break;
207
208 to->flags |= TCP_OPTS_FLAG_SACK;
209 to->n_sack_blocks = (opt_len - 2) / TCP_OPTION_LEN_SACK_BLOCK;
210 vec_reset_length (to->sacks);
211 for (j = 0; j < to->n_sack_blocks; j++)
212 {
Florin Coras3eb50622017-07-13 01:24:57 -0400213 b.start = clib_net_to_host_u32 (*(u32 *) (data + 2 + 8 * j));
214 b.end = clib_net_to_host_u32 (*(u32 *) (data + 6 + 8 * j));
Dave Barach68b0fb02017-02-28 15:15:56 -0500215 vec_add1 (to->sacks, b);
216 }
217 break;
218 default:
219 /* Nothing to see here */
220 continue;
221 }
222 }
Florin Corasdb84e572017-05-09 18:54:52 -0700223 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500224}
225
Florin Corasc28764f2017-04-26 00:08:42 -0700226/**
227 * RFC1323: Check against wrapped sequence numbers (PAWS). If we have
228 * timestamp to echo and it's less than tsval_recent, drop segment
229 * but still send an ACK in order to retain TCP's mechanism for detecting
230 * and recovering from half-open connections
231 *
232 * Or at least that's what the theory says. It seems that this might not work
233 * very well with packet reordering and fast retransmit. XXX
234 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500235always_inline int
236tcp_segment_check_paws (tcp_connection_t * tc)
237{
Florin Coras93992a92017-05-24 18:03:56 -0700238 return tcp_opts_tstamp (&tc->rcv_opts) && tc->tsval_recent
239 && timestamp_lt (tc->rcv_opts.tsval, tc->tsval_recent);
Dave Barach68b0fb02017-02-28 15:15:56 -0500240}
241
242/**
Florin Corasc28764f2017-04-26 00:08:42 -0700243 * Update tsval recent
244 */
245always_inline void
246tcp_update_timestamp (tcp_connection_t * tc, u32 seq, u32 seq_end)
247{
248 /*
249 * RFC1323: If Last.ACK.sent falls within the range of sequence numbers
250 * of an incoming segment:
251 * SEG.SEQ <= Last.ACK.sent < SEG.SEQ + SEG.LEN
252 * then the TSval from the segment is copied to TS.Recent;
253 * otherwise, the TSval is ignored.
254 */
Florin Corasf1762d62017-09-24 19:43:08 -0400255 if (tcp_opts_tstamp (&tc->rcv_opts) && seq_leq (seq, tc->rcv_las)
256 && seq_leq (tc->rcv_las, seq_end))
Florin Corasc28764f2017-04-26 00:08:42 -0700257 {
Dave Barach2c25a622017-06-26 11:35:07 -0400258 ASSERT (timestamp_leq (tc->tsval_recent, tc->rcv_opts.tsval));
Florin Coras93992a92017-05-24 18:03:56 -0700259 tc->tsval_recent = tc->rcv_opts.tsval;
Florin Corasc28764f2017-04-26 00:08:42 -0700260 tc->tsval_recent_age = tcp_time_now ();
261 }
262}
263
264/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500265 * Validate incoming segment as per RFC793 p. 69 and RFC1323 p. 19
266 *
267 * It first verifies if segment has a wrapped sequence number (PAWS) and then
268 * does the processing associated to the first four steps (ignoring security
269 * and precedence): sequence number, rst bit and syn bit checks.
270 *
271 * @return 0 if segments passes validation.
272 */
273static int
274tcp_segment_validate (vlib_main_t * vm, tcp_connection_t * tc0,
275 vlib_buffer_t * b0, tcp_header_t * th0, u32 * next0)
276{
Dave Barach68b0fb02017-02-28 15:15:56 -0500277 if (PREDICT_FALSE (!tcp_ack (th0) && !tcp_rst (th0) && !tcp_syn (th0)))
278 return -1;
279
Florin Coras93992a92017-05-24 18:03:56 -0700280 if (PREDICT_FALSE (tcp_options_parse (th0, &tc0->rcv_opts)))
Florin Corasdb84e572017-05-09 18:54:52 -0700281 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400282 clib_warning ("options parse error");
Florin Corasdb84e572017-05-09 18:54:52 -0700283 return -1;
284 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500285
Florin Corasc28764f2017-04-26 00:08:42 -0700286 if (tcp_segment_check_paws (tc0))
Dave Barach68b0fb02017-02-28 15:15:56 -0500287 {
Florin Coras93992a92017-05-24 18:03:56 -0700288 if (CLIB_DEBUG > 2)
289 {
290 clib_warning ("paws failed\n%U", format_tcp_connection, tc0, 2);
291 clib_warning ("seq %u seq_end %u ack %u",
292 vnet_buffer (b0)->tcp.seq_number - tc0->irs,
293 vnet_buffer (b0)->tcp.seq_end - tc0->irs,
294 vnet_buffer (b0)->tcp.ack_number - tc0->iss);
295 }
Florin Corasc28764f2017-04-26 00:08:42 -0700296 TCP_EVT_DBG (TCP_EVT_PAWS_FAIL, tc0, vnet_buffer (b0)->tcp.seq_number,
297 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500298
299 /* If it just so happens that a segment updates tsval_recent for a
300 * segment over 24 days old, invalidate tsval_recent. */
301 if (timestamp_lt (tc0->tsval_recent_age + TCP_PAWS_IDLE,
302 tcp_time_now ()))
303 {
304 /* Age isn't reset until we get a valid tsval (bsd inspired) */
305 tc0->tsval_recent = 0;
Florin Corasc28764f2017-04-26 00:08:42 -0700306 clib_warning ("paws failed - really old segment. REALLY?");
Dave Barach68b0fb02017-02-28 15:15:56 -0500307 }
308 else
309 {
310 /* Drop after ack if not rst */
311 if (!tcp_rst (th0))
312 {
313 tcp_make_ack (tc0, b0);
314 *next0 = tcp_next_output (tc0->c_is_ip4);
Florin Coras6792ec02017-03-13 03:49:51 -0700315 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500316 return -1;
317 }
318 }
319 }
320
321 /* 1st: check sequence number */
322 if (!tcp_segment_in_rcv_wnd (tc0, vnet_buffer (b0)->tcp.seq_number,
323 vnet_buffer (b0)->tcp.seq_end))
324 {
Florin Coras6792ec02017-03-13 03:49:51 -0700325 /* If our window is 0 and the packet is in sequence, let it pass
326 * through for ack processing. It should be dropped later.*/
327 if (tc0->rcv_wnd == 0
328 && tc0->rcv_nxt == vnet_buffer (b0)->tcp.seq_number)
Dave Barach68b0fb02017-02-28 15:15:56 -0500329 {
Florin Coras3e350af2017-03-30 02:54:28 -0700330 /* TODO Should segment be tagged? */
Dave Barach68b0fb02017-02-28 15:15:56 -0500331 }
Florin Coras6792ec02017-03-13 03:49:51 -0700332 else
333 {
334 /* If not RST, send dup ack */
335 if (!tcp_rst (th0))
336 {
337 tcp_make_ack (tc0, b0);
338 *next0 = tcp_next_output (tc0->c_is_ip4);
339 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0);
340 }
341 return -1;
342 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500343 }
344
345 /* 2nd: check the RST bit */
346 if (tcp_rst (th0))
347 {
Florin Corasd79b41e2017-03-04 05:37:52 -0800348 tcp_connection_reset (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500349 return -1;
350 }
351
352 /* 3rd: check security and precedence (skip) */
353
354 /* 4th: check the SYN bit */
355 if (tcp_syn (th0))
356 {
Florin Coras6534b7a2017-07-18 05:38:03 -0400357 /* TODO implement RFC 5961 */
Florin Coras9d063042017-09-14 03:08:00 -0400358 if (tc0->state == TCP_STATE_SYN_RCVD)
359 {
360 tcp_make_synack (tc0, b0);
361 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, tc0, 0);
362 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400363 else
Florin Coras9d063042017-09-14 03:08:00 -0400364 {
365 tcp_make_ack (tc0, b0);
366 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, tc0);
367 }
Florin Coras6534b7a2017-07-18 05:38:03 -0400368 *next0 = tcp_next_output (tc0->c_is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -0500369 return -1;
370 }
371
Florin Corasc28764f2017-04-26 00:08:42 -0700372 /* If segment in window, save timestamp */
373 tcp_update_timestamp (tc0, vnet_buffer (b0)->tcp.seq_number,
374 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500375 return 0;
376}
377
378always_inline int
379tcp_rcv_ack_is_acceptable (tcp_connection_t * tc0, vlib_buffer_t * tb0)
380{
381 /* SND.UNA =< SEG.ACK =< SND.NXT */
382 return (seq_leq (tc0->snd_una, vnet_buffer (tb0)->tcp.ack_number)
383 && seq_leq (vnet_buffer (tb0)->tcp.ack_number, tc0->snd_nxt));
384}
385
386/**
387 * Compute smoothed RTT as per VJ's '88 SIGCOMM and RFC6298
388 *
389 * Note that although the original article, srtt and rttvar are scaled
390 * to minimize round-off errors, here we don't. Instead, we rely on
391 * better precision time measurements.
392 *
393 * TODO support us rtt resolution
394 */
395static void
396tcp_estimate_rtt (tcp_connection_t * tc, u32 mrtt)
397{
Florin Corasf03a59a2017-06-09 21:07:32 -0700398 int err, diff;
Dave Barach68b0fb02017-02-28 15:15:56 -0500399
400 if (tc->srtt != 0)
401 {
402 err = mrtt - tc->srtt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500403
404 /* XXX Drop in RTT results in RTTVAR increase and bigger RTO.
405 * The increase should be bound */
Florin Corasf03a59a2017-06-09 21:07:32 -0700406 tc->srtt = clib_max ((int) tc->srtt + (err >> 3), 1);
407 diff = (clib_abs (err) - (int) tc->rttvar) >> 2;
408 tc->rttvar = clib_max ((int) tc->rttvar + diff, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500409 }
410 else
411 {
412 /* First measurement. */
413 tc->srtt = mrtt;
Florin Coras6792ec02017-03-13 03:49:51 -0700414 tc->rttvar = mrtt >> 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500415 }
416}
417
Florin Coras93992a92017-05-24 18:03:56 -0700418void
419tcp_update_rto (tcp_connection_t * tc)
420{
421 tc->rto = clib_min (tc->srtt + (tc->rttvar << 2), TCP_RTO_MAX);
Florin Corasf03a59a2017-06-09 21:07:32 -0700422 tc->rto = clib_max (tc->rto, TCP_RTO_MIN);
Florin Coras93992a92017-05-24 18:03:56 -0700423}
424
Florin Corasf1762d62017-09-24 19:43:08 -0400425/**
426 * Update RTT estimate and RTO timer
Dave Barach68b0fb02017-02-28 15:15:56 -0500427 *
428 * Measure RTT: We have two sources of RTT measurements: TSOPT and ACK
429 * timing. Middle boxes are known to fiddle with TCP options so we
430 * should give higher priority to ACK timing.
431 *
Florin Corasf1762d62017-09-24 19:43:08 -0400432 * This should be called only if previously sent bytes have been acked.
433 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500434 * return 1 if valid rtt 0 otherwise
435 */
436static int
437tcp_update_rtt (tcp_connection_t * tc, u32 ack)
438{
439 u32 mrtt = 0;
440
441 /* Karn's rule, part 1. Don't use retransmitted segments to estimate
442 * RTT because they're ambiguous. */
Florin Corasf1762d62017-09-24 19:43:08 -0400443 if (tcp_in_cong_recovery (tc) || tc->sack_sb.sacked_bytes)
444 goto done;
445
446 if (tc->rtt_ts && seq_geq (ack, tc->rtt_seq))
Dave Barach68b0fb02017-02-28 15:15:56 -0500447 {
448 mrtt = tcp_time_now () - tc->rtt_ts;
Dave Barach68b0fb02017-02-28 15:15:56 -0500449 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500450 /* As per RFC7323 TSecr can be used for RTTM only if the segment advances
451 * snd_una, i.e., the left side of the send window:
Florin Corasf1762d62017-09-24 19:43:08 -0400452 * seq_lt (tc->snd_una, ack). This is a condition for calling update_rtt */
453 else if (tcp_opts_tstamp (&tc->rcv_opts) && tc->rcv_opts.tsecr)
Dave Barach68b0fb02017-02-28 15:15:56 -0500454 {
Florin Coras93992a92017-05-24 18:03:56 -0700455 mrtt = tcp_time_now () - tc->rcv_opts.tsecr;
Dave Barach68b0fb02017-02-28 15:15:56 -0500456 }
457
Florin Corasf1762d62017-09-24 19:43:08 -0400458 /* Ignore dubious measurements */
459 if (mrtt == 0 || mrtt > TCP_RTT_MAX)
460 goto done;
461
462 tcp_estimate_rtt (tc, mrtt);
463
464done:
465
Florin Coras3af90fc2017-05-03 21:09:42 -0700466 /* Allow measuring of a new RTT */
467 tc->rtt_ts = 0;
468
Florin Corasf1762d62017-09-24 19:43:08 -0400469 /* If we got here something must've been ACKed so make sure boff is 0,
470 * even if mrrt is not valid since we update the rto lower */
471 tc->rto_boff = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700472 tcp_update_rto (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500473
Florin Coras3af90fc2017-05-03 21:09:42 -0700474 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500475}
476
477/**
478 * Dequeue bytes that have been acked and while at it update RTT estimates.
479 */
480static void
481tcp_dequeue_acked (tcp_connection_t * tc, u32 ack)
482{
Florin Coras93992a92017-05-24 18:03:56 -0700483 /* Dequeue the newly ACKed add SACKed bytes */
484 stream_session_dequeue_drop (&tc->connection,
485 tc->bytes_acked + tc->sack_sb.snd_una_adv);
486
487 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
Dave Barach68b0fb02017-02-28 15:15:56 -0500488
489 /* Update rtt and rto */
Florin Coras3e350af2017-03-30 02:54:28 -0700490 tcp_update_rtt (tc, ack);
Florin Coras93992a92017-05-24 18:03:56 -0700491
492 /* If everything has been acked, stop retransmit timer
493 * otherwise update. */
494 tcp_retransmit_timer_update (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500495}
496
Florin Coras6792ec02017-03-13 03:49:51 -0700497/**
Florin Coras93992a92017-05-24 18:03:56 -0700498 * Check if duplicate ack as per RFC5681 Sec. 2
499 */
500static u8
501tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd,
502 u32 prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500503{
Florin Coras93992a92017-05-24 18:03:56 -0700504 return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500505 && seq_gt (tc->snd_una_max, tc->snd_una)
506 && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
Florin Coras93992a92017-05-24 18:03:56 -0700507 && (prev_snd_wnd == tc->snd_wnd));
508}
509
510/**
511 * Checks if ack is a congestion control event.
512 */
513static u8
514tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b,
515 u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
516{
517 /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
518 * defined to be 'duplicate' */
519 *is_dack = tc->sack_sb.last_sacked_bytes
520 || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
521
Dave Barach2c25a622017-06-26 11:35:07 -0400522 return ((*is_dack || tcp_in_cong_recovery (tc)) && !tcp_is_lost_fin (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -0500523}
524
525void
526scoreboard_remove_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
527{
528 sack_scoreboard_hole_t *next, *prev;
529
530 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
531 {
532 next = pool_elt_at_index (sb->holes, hole->next);
533 next->prev = hole->prev;
534 }
Florin Coras93992a92017-05-24 18:03:56 -0700535 else
536 {
537 sb->tail = hole->prev;
538 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500539
540 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
541 {
542 prev = pool_elt_at_index (sb->holes, hole->prev);
543 prev->next = hole->next;
544 }
545 else
546 {
547 sb->head = hole->next;
548 }
549
Florin Coras93992a92017-05-24 18:03:56 -0700550 if (scoreboard_hole_index (sb, hole) == sb->cur_rxt_hole)
551 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
552
Florin Coras3eb50622017-07-13 01:24:57 -0400553 /* Poison the entry */
554 if (CLIB_DEBUG > 0)
555 memset (hole, 0xfe, sizeof (*hole));
556
Dave Barach68b0fb02017-02-28 15:15:56 -0500557 pool_put (sb->holes, hole);
558}
559
560sack_scoreboard_hole_t *
Florin Coras6792ec02017-03-13 03:49:51 -0700561scoreboard_insert_hole (sack_scoreboard_t * sb, u32 prev_index,
Dave Barach68b0fb02017-02-28 15:15:56 -0500562 u32 start, u32 end)
563{
Florin Coras6792ec02017-03-13 03:49:51 -0700564 sack_scoreboard_hole_t *hole, *next, *prev;
Dave Barach68b0fb02017-02-28 15:15:56 -0500565 u32 hole_index;
566
567 pool_get (sb->holes, hole);
568 memset (hole, 0, sizeof (*hole));
569
570 hole->start = start;
571 hole->end = end;
Florin Coras3eb50622017-07-13 01:24:57 -0400572 hole_index = scoreboard_hole_index (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500573
Florin Coras6792ec02017-03-13 03:49:51 -0700574 prev = scoreboard_get_hole (sb, prev_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500575 if (prev)
576 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700577 hole->prev = prev_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500578 hole->next = prev->next;
579
580 if ((next = scoreboard_next_hole (sb, hole)))
581 next->prev = hole_index;
Florin Corasf03a59a2017-06-09 21:07:32 -0700582 else
583 sb->tail = hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500584
585 prev->next = hole_index;
586 }
587 else
588 {
589 sb->head = hole_index;
590 hole->prev = TCP_INVALID_SACK_HOLE_INDEX;
591 hole->next = TCP_INVALID_SACK_HOLE_INDEX;
592 }
593
594 return hole;
595}
596
Florin Coras6792ec02017-03-13 03:49:51 -0700597void
Florin Corasf03a59a2017-06-09 21:07:32 -0700598scoreboard_update_bytes (tcp_connection_t * tc, sack_scoreboard_t * sb)
Florin Coras93992a92017-05-24 18:03:56 -0700599{
600 sack_scoreboard_hole_t *hole, *prev;
601 u32 bytes = 0, blks = 0;
602
603 sb->lost_bytes = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700604 sb->sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700605 hole = scoreboard_last_hole (sb);
606 if (!hole)
607 return;
608
609 if (seq_gt (sb->high_sacked, hole->end))
610 {
611 bytes = sb->high_sacked - hole->end;
612 blks = 1;
613 }
614
615 while ((prev = scoreboard_prev_hole (sb, hole))
616 && (bytes < (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
617 && blks < TCP_DUPACK_THRESHOLD))
618 {
619 bytes += hole->start - prev->end;
620 blks++;
621 hole = prev;
622 }
623
Florin Coras93992a92017-05-24 18:03:56 -0700624 while (hole)
625 {
626 sb->lost_bytes += scoreboard_hole_bytes (hole);
627 hole->is_lost = 1;
Florin Corasf03a59a2017-06-09 21:07:32 -0700628 prev = hole;
Florin Coras93992a92017-05-24 18:03:56 -0700629 hole = scoreboard_prev_hole (sb, hole);
Florin Corasf03a59a2017-06-09 21:07:32 -0700630 if (hole)
631 bytes += prev->start - hole->end;
Florin Coras93992a92017-05-24 18:03:56 -0700632 }
Florin Corasf03a59a2017-06-09 21:07:32 -0700633 sb->sacked_bytes = bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700634}
635
636/**
637 * Figure out the next hole to retransmit
638 *
639 * Follows logic proposed in RFC6675 Sec. 4, NextSeg()
640 */
641sack_scoreboard_hole_t *
642scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
643 sack_scoreboard_hole_t * start,
644 u8 have_sent_1_smss,
645 u8 * can_rescue, u8 * snd_limited)
646{
647 sack_scoreboard_hole_t *hole = 0;
648
649 hole = start ? start : scoreboard_first_hole (sb);
650 while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost)
651 hole = scoreboard_next_hole (sb, hole);
652
653 /* Nothing, return */
654 if (!hole)
655 {
656 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
657 return 0;
658 }
659
660 /* Rule (1): if higher than rxt, less than high_sacked and lost */
661 if (hole->is_lost && seq_lt (hole->start, sb->high_sacked))
662 {
663 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
664 }
665 else
666 {
667 /* Rule (2): output takes care of transmitting new data */
668 if (!have_sent_1_smss)
669 {
670 hole = 0;
671 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
672 }
673 /* Rule (3): if hole not lost */
674 else if (seq_lt (hole->start, sb->high_sacked))
675 {
676 *snd_limited = 1;
677 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
678 }
679 /* Rule (4): if hole beyond high_sacked */
680 else
681 {
682 ASSERT (seq_geq (hole->start, sb->high_sacked));
683 *snd_limited = 1;
684 *can_rescue = 1;
685 /* HighRxt MUST NOT be updated */
686 return 0;
687 }
688 }
689
690 if (hole && seq_lt (sb->high_rxt, hole->start))
691 sb->high_rxt = hole->start;
692
693 return hole;
694}
695
696void
Florin Coras3eb50622017-07-13 01:24:57 -0400697scoreboard_init_high_rxt (sack_scoreboard_t * sb, u32 seq)
Florin Coras93992a92017-05-24 18:03:56 -0700698{
699 sack_scoreboard_hole_t *hole;
700 hole = scoreboard_first_hole (sb);
Florin Coras3eb50622017-07-13 01:24:57 -0400701 if (hole)
702 {
703 seq = seq_gt (seq, hole->start) ? seq : hole->start;
704 sb->cur_rxt_hole = sb->head;
705 }
706 sb->high_rxt = seq;
707}
708
709/**
710 * Test that scoreboard is sane after recovery
711 *
712 * Returns 1 if scoreboard is empty or if first hole beyond
713 * snd_una.
714 */
715u8
716tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc)
717{
718 sack_scoreboard_hole_t *hole;
719 hole = scoreboard_first_hole (&tc->sack_sb);
720 return (!hole || seq_geq (hole->start, tc->snd_una));
Florin Coras93992a92017-05-24 18:03:56 -0700721}
722
723void
Dave Barach68b0fb02017-02-28 15:15:56 -0500724tcp_rcv_sacks (tcp_connection_t * tc, u32 ack)
725{
726 sack_scoreboard_t *sb = &tc->sack_sb;
727 sack_block_t *blk, tmp;
Florin Corasf03a59a2017-06-09 21:07:32 -0700728 sack_scoreboard_hole_t *hole, *next_hole, *last_hole;
Florin Coras93992a92017-05-24 18:03:56 -0700729 u32 blk_index = 0, old_sacked_bytes, hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500730 int i, j;
731
Florin Coras6792ec02017-03-13 03:49:51 -0700732 sb->last_sacked_bytes = 0;
733 sb->snd_una_adv = 0;
734 old_sacked_bytes = sb->sacked_bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700735 sb->last_bytes_delivered = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700736
Florin Coras93992a92017-05-24 18:03:56 -0700737 if (!tcp_opts_sack (&tc->rcv_opts)
738 && sb->head == TCP_INVALID_SACK_HOLE_INDEX)
Dave Barach68b0fb02017-02-28 15:15:56 -0500739 return;
740
741 /* Remove invalid blocks */
Florin Coras93992a92017-05-24 18:03:56 -0700742 blk = tc->rcv_opts.sacks;
743 while (blk < vec_end (tc->rcv_opts.sacks))
Florin Coras6792ec02017-03-13 03:49:51 -0700744 {
745 if (seq_lt (blk->start, blk->end)
746 && seq_gt (blk->start, tc->snd_una)
Florin Coras3eb50622017-07-13 01:24:57 -0400747 && seq_gt (blk->start, ack) && seq_leq (blk->end, tc->snd_una_max))
Florin Coras6792ec02017-03-13 03:49:51 -0700748 {
749 blk++;
750 continue;
751 }
Florin Coras93992a92017-05-24 18:03:56 -0700752 vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks);
Florin Coras6792ec02017-03-13 03:49:51 -0700753 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500754
755 /* Add block for cumulative ack */
756 if (seq_gt (ack, tc->snd_una))
757 {
758 tmp.start = tc->snd_una;
759 tmp.end = ack;
Florin Coras93992a92017-05-24 18:03:56 -0700760 vec_add1 (tc->rcv_opts.sacks, tmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500761 }
762
Florin Coras93992a92017-05-24 18:03:56 -0700763 if (vec_len (tc->rcv_opts.sacks) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500764 return;
765
Florin Coras3eb50622017-07-13 01:24:57 -0400766 tcp_scoreboard_trace_add (tc, ack);
767
Dave Barach68b0fb02017-02-28 15:15:56 -0500768 /* Make sure blocks are ordered */
Florin Coras93992a92017-05-24 18:03:56 -0700769 for (i = 0; i < vec_len (tc->rcv_opts.sacks); i++)
770 for (j = i + 1; j < vec_len (tc->rcv_opts.sacks); j++)
771 if (seq_lt (tc->rcv_opts.sacks[j].start, tc->rcv_opts.sacks[i].start))
Dave Barach68b0fb02017-02-28 15:15:56 -0500772 {
Florin Coras93992a92017-05-24 18:03:56 -0700773 tmp = tc->rcv_opts.sacks[i];
774 tc->rcv_opts.sacks[i] = tc->rcv_opts.sacks[j];
775 tc->rcv_opts.sacks[j] = tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500776 }
777
Dave Barach68b0fb02017-02-28 15:15:56 -0500778 if (sb->head == TCP_INVALID_SACK_HOLE_INDEX)
779 {
Florin Coras6792ec02017-03-13 03:49:51 -0700780 /* If no holes, insert the first that covers all outstanding bytes */
781 last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
782 tc->snd_una, tc->snd_una_max);
783 sb->tail = scoreboard_hole_index (sb, last_hole);
Florin Coras93992a92017-05-24 18:03:56 -0700784 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
785 sb->high_sacked = tmp.end;
Florin Coras6792ec02017-03-13 03:49:51 -0700786 }
787 else
788 {
789 /* If we have holes but snd_una_max is beyond the last hole, update
790 * last hole end */
Florin Coras93992a92017-05-24 18:03:56 -0700791 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
Florin Coras6792ec02017-03-13 03:49:51 -0700792 last_hole = scoreboard_last_hole (sb);
Dave Barach2c25a622017-06-26 11:35:07 -0400793 if (seq_gt (tc->snd_una_max, last_hole->end))
794 {
795 if (seq_geq (last_hole->start, sb->high_sacked))
796 {
797 last_hole->end = tc->snd_una_max;
798 }
799 /* New hole after high sacked block */
800 else if (seq_lt (sb->high_sacked, tc->snd_una_max))
801 {
802 scoreboard_insert_hole (sb, sb->tail, sb->high_sacked,
803 tc->snd_una_max);
804 }
805 }
806 /* Keep track of max byte sacked for when the last hole
Florin Corasf03a59a2017-06-09 21:07:32 -0700807 * is acked */
808 if (seq_gt (tmp.end, sb->high_sacked))
809 sb->high_sacked = tmp.end;
Dave Barach68b0fb02017-02-28 15:15:56 -0500810 }
811
812 /* Walk the holes with the SACK blocks */
813 hole = pool_elt_at_index (sb->holes, sb->head);
Florin Coras93992a92017-05-24 18:03:56 -0700814 while (hole && blk_index < vec_len (tc->rcv_opts.sacks))
Dave Barach68b0fb02017-02-28 15:15:56 -0500815 {
Florin Coras93992a92017-05-24 18:03:56 -0700816 blk = &tc->rcv_opts.sacks[blk_index];
Dave Barach68b0fb02017-02-28 15:15:56 -0500817 if (seq_leq (blk->start, hole->start))
818 {
819 /* Block covers hole. Remove hole */
820 if (seq_geq (blk->end, hole->end))
821 {
822 next_hole = scoreboard_next_hole (sb, hole);
823
Florin Corasf03a59a2017-06-09 21:07:32 -0700824 /* Byte accounting: snd_una needs to be advanced */
825 if (blk->end == ack)
Dave Barach68b0fb02017-02-28 15:15:56 -0500826 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700827 if (next_hole)
Florin Coras06d11012017-05-17 14:21:51 -0700828 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700829 if (seq_lt (ack, next_hole->start))
830 sb->snd_una_adv = next_hole->start - ack;
831 sb->last_bytes_delivered +=
832 next_hole->start - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -0700833 }
Florin Coras3eb50622017-07-13 01:24:57 -0400834 else
Florin Coras06d11012017-05-17 14:21:51 -0700835 {
Dave Barach2c25a622017-06-26 11:35:07 -0400836 ASSERT (seq_geq (sb->high_sacked, ack));
Florin Coras93992a92017-05-24 18:03:56 -0700837 sb->snd_una_adv = sb->high_sacked - ack;
Florin Corasf03a59a2017-06-09 21:07:32 -0700838 sb->last_bytes_delivered += sb->high_sacked - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -0700839 }
840 }
841
Dave Barach68b0fb02017-02-28 15:15:56 -0500842 scoreboard_remove_hole (sb, hole);
843 hole = next_hole;
844 }
Florin Coras6792ec02017-03-13 03:49:51 -0700845 /* Partial 'head' overlap */
Dave Barach68b0fb02017-02-28 15:15:56 -0500846 else
847 {
Florin Coras6792ec02017-03-13 03:49:51 -0700848 if (seq_gt (blk->end, hole->start))
849 {
Florin Coras6792ec02017-03-13 03:49:51 -0700850 hole->start = blk->end;
851 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500852 blk_index++;
853 }
854 }
855 else
856 {
857 /* Hole must be split */
Florin Coras6792ec02017-03-13 03:49:51 -0700858 if (seq_lt (blk->end, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -0500859 {
Florin Coras6792ec02017-03-13 03:49:51 -0700860 hole_index = scoreboard_hole_index (sb, hole);
Florin Coras3eb50622017-07-13 01:24:57 -0400861 next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
862 hole->end);
Florin Coras6792ec02017-03-13 03:49:51 -0700863
864 /* Pool might've moved */
865 hole = scoreboard_get_hole (sb, hole_index);
866 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -0500867 blk_index++;
Florin Coras3eb50622017-07-13 01:24:57 -0400868 ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
Dave Barach68b0fb02017-02-28 15:15:56 -0500869 }
Florin Corasf03a59a2017-06-09 21:07:32 -0700870 else if (seq_lt (blk->start, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -0500871 {
Florin Coras6792ec02017-03-13 03:49:51 -0700872 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -0500873 }
Florin Coras93992a92017-05-24 18:03:56 -0700874 hole = scoreboard_next_hole (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500875 }
876 }
Florin Coras6792ec02017-03-13 03:49:51 -0700877
Florin Corasf03a59a2017-06-09 21:07:32 -0700878 scoreboard_update_bytes (tc, sb);
879 sb->last_sacked_bytes = sb->sacked_bytes
880 - (old_sacked_bytes - sb->last_bytes_delivered);
Dave Barach2c25a622017-06-26 11:35:07 -0400881 ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes);
Florin Corasf03a59a2017-06-09 21:07:32 -0700882 ASSERT (sb->sacked_bytes == 0
883 || sb->sacked_bytes < tc->snd_una_max - seq_max (tc->snd_una, ack));
884 ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_una_max
885 - seq_max (tc->snd_una, ack));
Dave Barach2c25a622017-06-26 11:35:07 -0400886 ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
887 || sb->holes[sb->head].start == ack + sb->snd_una_adv);
Dave Barach68b0fb02017-02-28 15:15:56 -0500888}
889
Florin Coras93992a92017-05-24 18:03:56 -0700890/**
891 * Try to update snd_wnd based on feedback received from peer.
Dave Barach68b0fb02017-02-28 15:15:56 -0500892 *
Florin Coras93992a92017-05-24 18:03:56 -0700893 * If successful, and new window is 'effectively' 0, activate persist
894 * timer.
895 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500896static void
897tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
898{
Florin Coras93992a92017-05-24 18:03:56 -0700899 /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
900 * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
Florin Coras6792ec02017-03-13 03:49:51 -0700901 if (seq_lt (tc->snd_wl1, seq)
902 || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500903 {
904 tc->snd_wnd = snd_wnd;
905 tc->snd_wl1 = seq;
906 tc->snd_wl2 = ack;
Florin Coras6792ec02017-03-13 03:49:51 -0700907 TCP_EVT_DBG (TCP_EVT_SND_WND, tc);
Florin Coras3e350af2017-03-30 02:54:28 -0700908
Florin Corasbb292f42017-05-19 09:49:19 -0700909 if (tc->snd_wnd < tc->snd_mss)
910 {
Florin Coras93992a92017-05-24 18:03:56 -0700911 /* Set persist timer if not set and we just got 0 wnd */
912 if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
913 && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
Florin Corasbb292f42017-05-19 09:49:19 -0700914 tcp_persist_timer_set (tc);
915 }
Florin Coras3e350af2017-03-30 02:54:28 -0700916 else
Florin Coras93992a92017-05-24 18:03:56 -0700917 {
918 tcp_persist_timer_reset (tc);
919 if (!tcp_in_recovery (tc) && tc->rto_boff > 0)
920 {
921 tc->rto_boff = 0;
922 tcp_update_rto (tc);
923 }
924 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500925 }
926}
927
Florin Coras6792ec02017-03-13 03:49:51 -0700928void
Florin Coras93992a92017-05-24 18:03:56 -0700929tcp_cc_init_congestion (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500930{
Florin Coras93992a92017-05-24 18:03:56 -0700931 tcp_fastrecovery_on (tc);
932 tc->snd_congestion = tc->snd_una_max;
Dave Barach68b0fb02017-02-28 15:15:56 -0500933 tc->cc_algo->congestion (tc);
Florin Coras6792ec02017-03-13 03:49:51 -0700934 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 4);
Dave Barach68b0fb02017-02-28 15:15:56 -0500935}
936
Florin Coras93992a92017-05-24 18:03:56 -0700937static void
938tcp_cc_recovery_exit (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500939{
Florin Coras93992a92017-05-24 18:03:56 -0700940 /* Deflate rto */
Florin Coras93992a92017-05-24 18:03:56 -0700941 tc->rto_boff = 0;
Florin Corasf1762d62017-09-24 19:43:08 -0400942 tcp_update_rto (tc);
Florin Coras93992a92017-05-24 18:03:56 -0700943 tc->snd_rxt_ts = 0;
Florin Coras84275e92017-09-26 12:30:40 -0400944 tc->snd_nxt = tc->snd_una_max;
Florin Coras93992a92017-05-24 18:03:56 -0700945 tcp_recovery_off (tc);
Florin Corasf1762d62017-09-24 19:43:08 -0400946 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Florin Coras93992a92017-05-24 18:03:56 -0700947}
Florin Coras3e350af2017-03-30 02:54:28 -0700948
Florin Coras93992a92017-05-24 18:03:56 -0700949void
950tcp_cc_fastrecovery_exit (tcp_connection_t * tc)
951{
Florin Coras6792ec02017-03-13 03:49:51 -0700952 tc->cc_algo->recovered (tc);
Florin Coras93992a92017-05-24 18:03:56 -0700953 tc->snd_rxt_bytes = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700954 tc->rcv_dupacks = 0;
Florin Coras84275e92017-09-26 12:30:40 -0400955 tc->snd_nxt = tc->snd_una_max;
Florin Coras93992a92017-05-24 18:03:56 -0700956 tcp_fastrecovery_off (tc);
957 tcp_fastrecovery_1_smss_off (tc);
Florin Corasf1762d62017-09-24 19:43:08 -0400958 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Dave Barach68b0fb02017-02-28 15:15:56 -0500959}
960
961static void
Florin Coras93992a92017-05-24 18:03:56 -0700962tcp_cc_congestion_undo (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500963{
Florin Coras93992a92017-05-24 18:03:56 -0700964 tc->cwnd = tc->prev_cwnd;
965 tc->ssthresh = tc->prev_ssthresh;
966 tc->snd_nxt = tc->snd_una_max;
967 tc->rcv_dupacks = 0;
968 if (tcp_in_recovery (tc))
969 tcp_cc_recovery_exit (tc);
970 ASSERT (tc->rto_boff == 0);
Florin Corasf1762d62017-09-24 19:43:08 -0400971 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 5);
Florin Coras93992a92017-05-24 18:03:56 -0700972 /* TODO extend for fastrecovery */
973}
Dave Barach68b0fb02017-02-28 15:15:56 -0500974
Florin Coras93992a92017-05-24 18:03:56 -0700975static u8
976tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
977{
Florin Corasf1762d62017-09-24 19:43:08 -0400978 return (tcp_in_recovery (tc) && tc->rto_boff == 1
Dave Barach2c25a622017-06-26 11:35:07 -0400979 && tc->snd_rxt_ts
Florin Coras93992a92017-05-24 18:03:56 -0700980 && tcp_opts_tstamp (&tc->rcv_opts)
981 && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
982}
983
984int
985tcp_cc_recover (tcp_connection_t * tc)
986{
987 ASSERT (tcp_in_cong_recovery (tc));
988 if (tcp_cc_is_spurious_retransmit (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -0500989 {
Florin Coras93992a92017-05-24 18:03:56 -0700990 tcp_cc_congestion_undo (tc);
991 return 1;
992 }
993
994 if (tcp_in_recovery (tc))
995 tcp_cc_recovery_exit (tc);
996 else if (tcp_in_fastrecovery (tc))
997 tcp_cc_fastrecovery_exit (tc);
998
999 ASSERT (tc->rto_boff == 0);
1000 ASSERT (!tcp_in_cong_recovery (tc));
Florin Coras3eb50622017-07-13 01:24:57 -04001001 ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001002 return 0;
1003}
1004
1005static void
1006tcp_cc_update (tcp_connection_t * tc, vlib_buffer_t * b)
1007{
Florin Coras3eb50622017-07-13 01:24:57 -04001008 ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001009
1010 /* Congestion avoidance */
1011 tc->cc_algo->rcv_ack (tc);
1012 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1013
1014 /* If a cumulative ack, make sure dupacks is 0 */
1015 tc->rcv_dupacks = 0;
1016
1017 /* When dupacks hits the threshold we only enter fast retransmit if
1018 * cumulative ack covers more than snd_congestion. Should snd_una
1019 * wrap this test may fail under otherwise valid circumstances.
1020 * Therefore, proactively update snd_congestion when wrap detected. */
1021 if (PREDICT_FALSE
1022 (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1023 && seq_gt (tc->snd_congestion, tc->snd_una)))
1024 tc->snd_congestion = tc->snd_una - 1;
1025}
1026
1027static u8
1028tcp_should_fastrecover_sack (tcp_connection_t * tc)
1029{
1030 return (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss < tc->sack_sb.sacked_bytes;
1031}
1032
1033static u8
1034tcp_should_fastrecover (tcp_connection_t * tc)
1035{
1036 return (tc->rcv_dupacks == TCP_DUPACK_THRESHOLD
1037 || tcp_should_fastrecover_sack (tc));
1038}
1039
Florin Corasf03a59a2017-06-09 21:07:32 -07001040/**
1041 * One function to rule them all ... and in the darkness bind them
1042 */
Florin Coras93992a92017-05-24 18:03:56 -07001043static void
1044tcp_cc_handle_event (tcp_connection_t * tc, u32 is_dack)
1045{
Florin Corasf03a59a2017-06-09 21:07:32 -07001046 u32 rxt_delivered;
1047
Florin Coras93992a92017-05-24 18:03:56 -07001048 /*
1049 * Duplicate ACK. Check if we should enter fast recovery, or if already in
1050 * it account for the bytes that left the network.
1051 */
1052 if (is_dack)
1053 {
1054 ASSERT (tc->snd_una != tc->snd_una_max
1055 || tc->sack_sb.last_sacked_bytes);
Dave Barach2c25a622017-06-26 11:35:07 -04001056
Florin Coras93992a92017-05-24 18:03:56 -07001057 tc->rcv_dupacks++;
1058
1059 if (tc->rcv_dupacks > TCP_DUPACK_THRESHOLD && !tc->bytes_acked)
Dave Barach68b0fb02017-02-28 15:15:56 -05001060 {
Florin Coras93992a92017-05-24 18:03:56 -07001061 ASSERT (tcp_in_fastrecovery (tc));
1062 /* Pure duplicate ack. If some data got acked, it's handled lower */
1063 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1064 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001065 }
Florin Coras93992a92017-05-24 18:03:56 -07001066 else if (tcp_should_fastrecover (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001067 {
Florin Coras93992a92017-05-24 18:03:56 -07001068 /* Things are already bad */
1069 if (tcp_in_cong_recovery (tc))
Florin Coras6792ec02017-03-13 03:49:51 -07001070 {
Florin Coras93992a92017-05-24 18:03:56 -07001071 tc->rcv_dupacks = 0;
1072 goto partial_ack_test;
1073 }
1074
Dave Barach2c25a622017-06-26 11:35:07 -04001075 /* If of of the two conditions lower hold, reset dupacks because
1076 * we're probably after timeout (RFC6582 heuristics).
1077 * If Cumulative ack does not cover more than congestion threshold,
1078 * and:
1079 * 1) The following doesn't hold: The congestion window is greater
1080 * than SMSS bytes and the difference between highest_ack
1081 * and prev_highest_ack is at most 4*SMSS bytes
1082 * 2) Echoed timestamp in the last non-dup ack does not equal the
1083 * stored timestamp
Florin Coras93992a92017-05-24 18:03:56 -07001084 */
Dave Barach2c25a622017-06-26 11:35:07 -04001085 if (seq_leq (tc->snd_una, tc->snd_congestion)
1086 && ((!(tc->cwnd > tc->snd_mss
1087 && tc->bytes_acked <= 4 * tc->snd_mss))
1088 || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
Florin Coras93992a92017-05-24 18:03:56 -07001089 {
1090 tc->rcv_dupacks = 0;
1091 return;
1092 }
1093
1094 tcp_cc_init_congestion (tc);
1095 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1096
1097 /* The first segment MUST be retransmitted */
1098 tcp_retransmit_first_unacked (tc);
1099
1100 /* Post retransmit update cwnd to ssthresh and account for the
1101 * three segments that have left the network and should've been
1102 * buffered at the receiver XXX */
1103 tc->cwnd = tc->ssthresh + tc->rcv_dupacks * tc->snd_mss;
Dave Barach2c25a622017-06-26 11:35:07 -04001104 ASSERT (tc->cwnd >= tc->snd_mss);
Florin Coras93992a92017-05-24 18:03:56 -07001105
1106 /* If cwnd allows, send more data */
Florin Coras3eb50622017-07-13 01:24:57 -04001107 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras93992a92017-05-24 18:03:56 -07001108 {
Florin Coras3eb50622017-07-13 01:24:57 -04001109 scoreboard_init_high_rxt (&tc->sack_sb,
1110 tc->snd_una + tc->snd_mss);
Florin Coras93992a92017-05-24 18:03:56 -07001111 tcp_fast_retransmit_sack (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001112 }
1113 else
1114 {
Florin Coras93992a92017-05-24 18:03:56 -07001115 tcp_fast_retransmit_no_sack (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001116 }
Florin Coras93992a92017-05-24 18:03:56 -07001117
1118 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001119 }
Florin Coras93992a92017-05-24 18:03:56 -07001120 else if (!tc->bytes_acked
1121 || (tc->bytes_acked && !tcp_in_cong_recovery (tc)))
1122 {
1123 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1124 return;
1125 }
1126 else
1127 goto partial_ack;
1128 }
1129
1130partial_ack_test:
1131
1132 if (!tc->bytes_acked)
1133 return;
1134
1135partial_ack:
1136 /*
1137 * Legitimate ACK. 1) See if we can exit recovery
1138 */
1139 /* XXX limit this only to first partial ack? */
1140 tcp_retransmit_timer_update (tc);
1141
1142 if (seq_geq (tc->snd_una, tc->snd_congestion))
1143 {
1144 /* If spurious return, we've already updated everything */
1145 if (tcp_cc_recover (tc))
Florin Corasf03a59a2017-06-09 21:07:32 -07001146 {
1147 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1148 return;
1149 }
Florin Coras93992a92017-05-24 18:03:56 -07001150
1151 tc->snd_nxt = tc->snd_una_max;
1152
1153 /* Treat as congestion avoidance ack */
1154 tc->cc_algo->rcv_ack (tc);
1155 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1156 return;
1157 }
1158
1159 /*
1160 * Legitimate ACK. 2) If PARTIAL ACK try to retransmit
1161 */
1162 TCP_EVT_DBG (TCP_EVT_CC_PACK, tc);
1163
1164 /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
1165 * reset dupacks to 0 */
1166 tc->rcv_dupacks = 0;
1167
1168 tcp_retransmit_first_unacked (tc);
1169
1170 /* Post RTO timeout don't try anything fancy */
1171 if (tcp_in_recovery (tc))
1172 return;
1173
1174 /* Remove retransmitted bytes that have been delivered */
Florin Corasf03a59a2017-06-09 21:07:32 -07001175 ASSERT (tc->bytes_acked + tc->sack_sb.snd_una_adv
Florin Corasb2215d62017-08-01 16:56:58 -07001176 >= tc->sack_sb.last_bytes_delivered
1177 || (tc->flags & TCP_CONN_FINSNT));
Florin Coras3eb50622017-07-13 01:24:57 -04001178
1179 if (seq_lt (tc->snd_una, tc->sack_sb.high_rxt))
Florin Coras93992a92017-05-24 18:03:56 -07001180 {
1181 /* If we have sacks and we haven't gotten an ack beyond high_rxt,
1182 * remove sacked bytes delivered */
Florin Coras3eb50622017-07-13 01:24:57 -04001183 rxt_delivered = tc->bytes_acked + tc->sack_sb.snd_una_adv
1184 - tc->sack_sb.last_bytes_delivered;
Florin Corasf03a59a2017-06-09 21:07:32 -07001185 ASSERT (tc->snd_rxt_bytes >= rxt_delivered);
1186 tc->snd_rxt_bytes -= rxt_delivered;
Dave Barach68b0fb02017-02-28 15:15:56 -05001187 }
1188 else
1189 {
Florin Coras93992a92017-05-24 18:03:56 -07001190 /* Either all retransmitted holes have been acked, or we're
1191 * "in the blind" and retransmitting segment by segment */
1192 tc->snd_rxt_bytes = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001193 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001194
Florin Coras93992a92017-05-24 18:03:56 -07001195 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_PARTIALACK);
Dave Barach68b0fb02017-02-28 15:15:56 -05001196
Florin Coras93992a92017-05-24 18:03:56 -07001197 /*
1198 * Since this was a partial ack, try to retransmit some more data
1199 */
1200 tcp_fast_retransmit (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001201}
1202
1203void
1204tcp_cc_init (tcp_connection_t * tc)
1205{
1206 tc->cc_algo = tcp_cc_algo_get (TCP_CC_NEWRENO);
1207 tc->cc_algo->init (tc);
1208}
1209
Florin Coras93992a92017-05-24 18:03:56 -07001210/**
1211 * Process incoming ACK
1212 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001213static int
1214tcp_rcv_ack (tcp_connection_t * tc, vlib_buffer_t * b,
1215 tcp_header_t * th, u32 * next, u32 * error)
1216{
Florin Coras93992a92017-05-24 18:03:56 -07001217 u32 prev_snd_wnd, prev_snd_una;
1218 u8 is_dack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001219
Florin Corasf03a59a2017-06-09 21:07:32 -07001220 TCP_EVT_DBG (TCP_EVT_CC_STAT, tc);
1221
Florin Coras6792ec02017-03-13 03:49:51 -07001222 /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
Florin Coras93992a92017-05-24 18:03:56 -07001223 if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001224 {
Florin Coras6792ec02017-03-13 03:49:51 -07001225 /* If we have outstanding data and this is within the window, accept it,
1226 * probably retransmit has timed out. Otherwise ACK segment and then
1227 * drop it */
1228 if (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max))
1229 {
1230 tcp_make_ack (tc, b);
1231 *next = tcp_next_output (tc->c_is_ip4);
1232 *error = TCP_ERROR_ACK_INVALID;
1233 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 0,
1234 vnet_buffer (b)->tcp.ack_number);
1235 return -1;
1236 }
1237
Florin Coras6792ec02017-03-13 03:49:51 -07001238 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 2,
1239 vnet_buffer (b)->tcp.ack_number);
Florin Coras3e350af2017-03-30 02:54:28 -07001240
1241 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
1242 *error = TCP_ERROR_ACK_FUTURE;
Dave Barach68b0fb02017-02-28 15:15:56 -05001243 }
1244
Florin Coras6792ec02017-03-13 03:49:51 -07001245 /* If old ACK, probably it's an old dupack */
Florin Coras93992a92017-05-24 18:03:56 -07001246 if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001247 {
1248 *error = TCP_ERROR_ACK_OLD;
Florin Coras6792ec02017-03-13 03:49:51 -07001249 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 1,
1250 vnet_buffer (b)->tcp.ack_number);
1251 if (tcp_in_fastrecovery (tc) && tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
1252 {
1253 TCP_EVT_DBG (TCP_EVT_DUPACK_RCVD, tc);
Florin Coras93992a92017-05-24 18:03:56 -07001254 tcp_cc_handle_event (tc, 1);
Florin Coras6792ec02017-03-13 03:49:51 -07001255 }
Florin Corasc28764f2017-04-26 00:08:42 -07001256 /* Don't drop yet */
1257 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001258 }
1259
Florin Coras93992a92017-05-24 18:03:56 -07001260 /*
1261 * Looks okay, process feedback
1262 */
1263
Florin Coras93992a92017-05-24 18:03:56 -07001264 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001265 tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1266
Florin Coras93992a92017-05-24 18:03:56 -07001267 prev_snd_wnd = tc->snd_wnd;
1268 prev_snd_una = tc->snd_una;
1269 tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1270 vnet_buffer (b)->tcp.ack_number,
1271 clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1272 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
1273 tc->snd_una = vnet_buffer (b)->tcp.ack_number + tc->sack_sb.snd_una_adv;
1274 tcp_validate_txf_size (tc, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001275
Florin Coras93992a92017-05-24 18:03:56 -07001276 if (tc->bytes_acked)
1277 tcp_dequeue_acked (tc, vnet_buffer (b)->tcp.ack_number);
1278
Florin Coras6534b7a2017-07-18 05:38:03 -04001279 TCP_EVT_DBG (TCP_EVT_ACK_RCVD, tc);
1280
Florin Coras93992a92017-05-24 18:03:56 -07001281 /*
1282 * Check if we have congestion event
1283 */
1284
1285 if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001286 {
Florin Coras93992a92017-05-24 18:03:56 -07001287 tcp_cc_handle_event (tc, is_dack);
Florin Corasb2215d62017-08-01 16:56:58 -07001288 if (!tcp_in_cong_recovery (tc))
1289 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001290 *error = TCP_ERROR_ACK_DUP;
Florin Coras93992a92017-05-24 18:03:56 -07001291 TCP_EVT_DBG (TCP_EVT_DUPACK_RCVD, tc, 1);
1292 return vnet_buffer (b)->tcp.data_len ? 0 : -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001293 }
1294
Florin Coras6792ec02017-03-13 03:49:51 -07001295 /*
Florin Coras93992a92017-05-24 18:03:56 -07001296 * Update congestion control (slow start/congestion avoidance)
Florin Coras6792ec02017-03-13 03:49:51 -07001297 */
Florin Coras93992a92017-05-24 18:03:56 -07001298 tcp_cc_update (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001299
1300 return 0;
1301}
1302
Florin Coras3eb50622017-07-13 01:24:57 -04001303static u8
1304tcp_sack_vector_is_sane (sack_block_t * sacks)
1305{
1306 int i;
1307 for (i = 1; i < vec_len (sacks); i++)
1308 {
1309 if (sacks[i - 1].end == sacks[i].start)
1310 return 0;
1311 }
1312 return 1;
1313}
1314
Dave Barach68b0fb02017-02-28 15:15:56 -05001315/**
1316 * Build SACK list as per RFC2018.
1317 *
1318 * Makes sure the first block contains the segment that generated the current
1319 * ACK and the following ones are the ones most recently reported in SACK
1320 * blocks.
1321 *
1322 * @param tc TCP connection for which the SACK list is updated
1323 * @param start Start sequence number of the newest SACK block
1324 * @param end End sequence of the newest SACK block
1325 */
Florin Coras45d34962017-04-25 00:05:27 -07001326void
Dave Barach68b0fb02017-02-28 15:15:56 -05001327tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1328{
Florin Coras45d34962017-04-25 00:05:27 -07001329 sack_block_t *new_list = 0, *block = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001330 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001331
1332 /* If the first segment is ooo add it to the list. Last write might've moved
1333 * rcv_nxt over the first segment. */
1334 if (seq_lt (tc->rcv_nxt, start))
1335 {
Florin Coras45d34962017-04-25 00:05:27 -07001336 vec_add2 (new_list, block, 1);
1337 block->start = start;
1338 block->end = end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001339 }
1340
1341 /* Find the blocks still worth keeping. */
1342 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1343 {
Florin Coras45d34962017-04-25 00:05:27 -07001344 /* Discard if rcv_nxt advanced beyond current block */
1345 if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001346 continue;
1347
Florin Coras45d34962017-04-25 00:05:27 -07001348 /* Merge or drop if segment overlapped by the new segment */
1349 if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1350 && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1351 {
1352 if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1353 new_list[0].start = tc->snd_sacks[i].start;
1354 if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1355 new_list[0].end = tc->snd_sacks[i].end;
1356 continue;
1357 }
1358
1359 /* Save to new SACK list if we have space. */
1360 if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
1361 {
1362 vec_add1 (new_list, tc->snd_sacks[i]);
1363 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001364 else
1365 {
1366 clib_warning ("sack discarded");
1367 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001368 }
1369
Florin Coras45d34962017-04-25 00:05:27 -07001370 ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
Florin Coras6792ec02017-03-13 03:49:51 -07001371
Dave Barach68b0fb02017-02-28 15:15:56 -05001372 /* Replace old vector with new one */
1373 vec_free (tc->snd_sacks);
1374 tc->snd_sacks = new_list;
Florin Coras3eb50622017-07-13 01:24:57 -04001375
1376 /* Segments should not 'touch' */
1377 ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
Dave Barach68b0fb02017-02-28 15:15:56 -05001378}
1379
1380/** Enqueue data for delivery to application */
Florin Coras6792ec02017-03-13 03:49:51 -07001381always_inline int
Dave Barach68b0fb02017-02-28 15:15:56 -05001382tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1383 u16 data_len)
1384{
Florin Coras1f152cd2017-08-18 19:28:03 -07001385 int written, error = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001386
Dave Barach2c25a622017-06-26 11:35:07 -04001387 ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
1388
Dave Barach68b0fb02017-02-28 15:15:56 -05001389 /* Pure ACK. Update rcv_nxt and be done. */
1390 if (PREDICT_FALSE (data_len == 0))
1391 {
Dave Barach68b0fb02017-02-28 15:15:56 -05001392 return TCP_ERROR_PURE_ACK;
1393 }
1394
Florin Coras3cbc04b2017-10-02 00:18:51 -07001395 written = session_enqueue_stream_connection (&tc->connection, b, 0,
1396 1 /* queue event */ , 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001397
Florin Coras6792ec02017-03-13 03:49:51 -07001398 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 0, data_len, written);
1399
Dave Barach68b0fb02017-02-28 15:15:56 -05001400 /* Update rcv_nxt */
1401 if (PREDICT_TRUE (written == data_len))
1402 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001403 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001404 }
1405 /* If more data written than expected, account for out-of-order bytes. */
1406 else if (written > data_len)
1407 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001408 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001409
1410 /* Send ACK confirming the update */
1411 tc->flags |= TCP_CONN_SNDACK;
Florin Coras6792ec02017-03-13 03:49:51 -07001412 }
1413 else if (written > 0)
1414 {
1415 /* We've written something but FIFO is probably full now */
1416 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001417
Florin Coras6792ec02017-03-13 03:49:51 -07001418 /* Depending on how fast the app is, all remaining buffers in burst will
Florin Coras3e350af2017-03-30 02:54:28 -07001419 * not be enqueued. Inform peer */
1420 tc->flags |= TCP_CONN_SNDACK;
1421
Florin Coras1f152cd2017-08-18 19:28:03 -07001422 error = TCP_ERROR_PARTIALLY_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001423 }
1424 else
1425 {
Florin Coras3e350af2017-03-30 02:54:28 -07001426 tc->flags |= TCP_CONN_SNDACK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001427 return TCP_ERROR_FIFO_FULL;
1428 }
1429
Florin Coras6792ec02017-03-13 03:49:51 -07001430 /* Update SACK list if need be */
Florin Coras93992a92017-05-24 18:03:56 -07001431 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras6792ec02017-03-13 03:49:51 -07001432 {
1433 /* Remove SACK blocks that have been delivered */
1434 tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1435 }
1436
Florin Coras1f152cd2017-08-18 19:28:03 -07001437 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -05001438}
1439
1440/** Enqueue out-of-order data */
Florin Coras6792ec02017-03-13 03:49:51 -07001441always_inline int
Dave Barach68b0fb02017-02-28 15:15:56 -05001442tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1443 u16 data_len)
1444{
1445 stream_session_t *s0;
Florin Coras3eb50622017-07-13 01:24:57 -04001446 int rv, offset;
Florin Coras6792ec02017-03-13 03:49:51 -07001447
Florin Corasf03a59a2017-06-09 21:07:32 -07001448 ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
1449
Florin Coras6792ec02017-03-13 03:49:51 -07001450 /* Pure ACK. Do nothing */
1451 if (PREDICT_FALSE (data_len == 0))
1452 {
1453 return TCP_ERROR_PURE_ACK;
1454 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001455
Florin Corasf03a59a2017-06-09 21:07:32 -07001456 /* Enqueue out-of-order data with relative offset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07001457 rv = session_enqueue_stream_connection (&tc->connection, b,
1458 vnet_buffer (b)->tcp.seq_number -
1459 tc->rcv_nxt, 0 /* queue event */ ,
1460 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001461
1462 /* Nothing written */
1463 if (rv)
1464 {
1465 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, 0);
1466 return TCP_ERROR_FIFO_FULL;
1467 }
1468
1469 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001470
1471 /* Update SACK list if in use */
Florin Coras93992a92017-05-24 18:03:56 -07001472 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001473 {
1474 ooo_segment_t *newest;
1475 u32 start, end;
1476
Florin Corascea194d2017-10-02 00:18:51 -07001477 s0 = session_get (tc->c_s_index, tc->c_thread_index);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001478
Dave Barach68b0fb02017-02-28 15:15:56 -05001479 /* Get the newest segment from the fifo */
1480 newest = svm_fifo_newest_ooo_segment (s0->server_rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001481 if (newest)
1482 {
Florin Coras3eb50622017-07-13 01:24:57 -04001483 offset = ooo_segment_offset (s0->server_rx_fifo, newest);
1484 ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1485 start = tc->rcv_nxt + offset;
Florin Corasf03a59a2017-06-09 21:07:32 -07001486 end = start + ooo_segment_length (s0->server_rx_fifo, newest);
1487 tcp_update_sack_list (tc, start, end);
Florin Coras3eb50622017-07-13 01:24:57 -04001488 svm_fifo_newest_ooo_segment_reset (s0->server_rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001489 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001490 }
1491
1492 return TCP_ERROR_ENQUEUED;
1493}
1494
1495/**
Florin Coras6792ec02017-03-13 03:49:51 -07001496 * Check if ACK could be delayed. If ack can be delayed, it should return
1497 * true for a full frame. If we're always acking return 0.
Dave Barach68b0fb02017-02-28 15:15:56 -05001498 */
1499always_inline int
1500tcp_can_delack (tcp_connection_t * tc)
1501{
Florin Coras6792ec02017-03-13 03:49:51 -07001502 /* Send ack if ... */
1503 if (TCP_ALWAYS_ACK
1504 /* just sent a rcv wnd 0 */
1505 || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0
1506 /* constrained to send ack */
1507 || (tc->flags & TCP_CONN_SNDACK) != 0
1508 /* we're almost out of tx wnd */
Florin Corasf03a59a2017-06-09 21:07:32 -07001509 || tcp_available_snd_space (tc) < 4 * tc->snd_mss)
Florin Coras6792ec02017-03-13 03:49:51 -07001510 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001511
Florin Coras6792ec02017-03-13 03:49:51 -07001512 return 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001513}
1514
1515static int
Florin Corasb2215d62017-08-01 16:56:58 -07001516tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
1517{
Florin Coras1f152cd2017-08-18 19:28:03 -07001518 u32 discard, first = b->current_length;
Florin Corasb2215d62017-08-01 16:56:58 -07001519 vlib_main_t *vm = vlib_get_main ();
1520
Florin Coras1f152cd2017-08-18 19:28:03 -07001521 /* Handle multi-buffer segments */
Florin Corasb2215d62017-08-01 16:56:58 -07001522 if (n_bytes_to_drop > b->current_length)
1523 {
1524 if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1525 return -1;
1526 do
1527 {
1528 discard = clib_min (n_bytes_to_drop, b->current_length);
1529 vlib_buffer_advance (b, discard);
1530 b = vlib_get_buffer (vm, b->next_buffer);
1531 n_bytes_to_drop -= discard;
1532 }
1533 while (n_bytes_to_drop);
Florin Coras1f152cd2017-08-18 19:28:03 -07001534 if (n_bytes_to_drop > first)
1535 b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
Florin Corasb2215d62017-08-01 16:56:58 -07001536 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001537 else
1538 vlib_buffer_advance (b, n_bytes_to_drop);
1539 vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
Florin Corasb2215d62017-08-01 16:56:58 -07001540 return 0;
1541}
1542
1543static int
Dave Barach68b0fb02017-02-28 15:15:56 -05001544tcp_segment_rcv (tcp_main_t * tm, tcp_connection_t * tc, vlib_buffer_t * b,
Florin Coras6534b7a2017-07-18 05:38:03 -04001545 u32 * next0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001546{
Florin Coras6534b7a2017-07-18 05:38:03 -04001547 u32 error = 0, n_bytes_to_drop, n_data_bytes;
1548
1549 vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1550 n_data_bytes = vnet_buffer (b)->tcp.data_len;
1551 ASSERT (n_data_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001552
1553 /* Handle out-of-order data */
1554 if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1555 {
Florin Coras6792ec02017-03-13 03:49:51 -07001556 /* Old sequence numbers allowed through because they overlapped
1557 * the rx window */
1558 if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001559 {
Florin Coras6792ec02017-03-13 03:49:51 -07001560 error = TCP_ERROR_SEGMENT_OLD;
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08001561 *next0 = tcp_next_drop (tc->c_is_ip4);
Florin Corasdb84e572017-05-09 18:54:52 -07001562
Dave Barach259cdae2017-05-15 16:27:05 -04001563 /* Completely in the past (possible retransmit) */
Florin Corasf03a59a2017-06-09 21:07:32 -07001564 if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
Florin Coras6534b7a2017-07-18 05:38:03 -04001565 {
1566 /* Ack retransmissions since we may not have any data to send */
1567 tcp_make_ack (tc, b);
1568 *next0 = tcp_next_output (tc->c_is_ip4);
1569 goto done;
1570 }
Dave Barach259cdae2017-05-15 16:27:05 -04001571
Florin Corasdb84e572017-05-09 18:54:52 -07001572 /* Chop off the bytes in the past */
1573 n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1574 n_data_bytes -= n_bytes_to_drop;
Dave Barach2c25a622017-06-26 11:35:07 -04001575 vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001576 if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
1577 goto done;
Florin Corasdb84e572017-05-09 18:54:52 -07001578
1579 goto in_order;
Dave Barach68b0fb02017-02-28 15:15:56 -05001580 }
1581
Florin Coras6792ec02017-03-13 03:49:51 -07001582 error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
1583
1584 /* N.B. Should not filter burst of dupacks. Two issues 1) dupacks open
1585 * cwnd on remote peer when congested 2) acks leaving should have the
1586 * latest rcv_wnd since the burst may eaten up all of it, so only the
1587 * old ones could be filtered.
1588 */
1589
1590 /* RFC2581: Send DUPACK for fast retransmit */
1591 tcp_make_ack (tc, b);
1592 *next0 = tcp_next_output (tc->c_is_ip4);
1593
1594 /* Mark as DUPACK. We may filter these in output if
1595 * the burst fills the holes. */
1596 if (n_data_bytes)
1597 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_DUPACK;
1598
1599 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001600 goto done;
1601 }
1602
Florin Corasdb84e572017-05-09 18:54:52 -07001603in_order:
1604
Dave Barach68b0fb02017-02-28 15:15:56 -05001605 /* In order data, enqueue. Fifo figures out by itself if any out-of-order
1606 * segments can be enqueued after fifo tail offset changes. */
1607 error = tcp_session_enqueue_data (tc, b, n_data_bytes);
1608
1609 /* Check if ACK can be delayed */
Florin Coras3e350af2017-03-30 02:54:28 -07001610 if (tcp_can_delack (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001611 {
Florin Coras6792ec02017-03-13 03:49:51 -07001612 if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
1613 tcp_timer_set (tc, TCP_TIMER_DELACK, TCP_DELACK_TIME);
Florin Coras3e350af2017-03-30 02:54:28 -07001614 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001615 }
1616
Florin Coras3e350af2017-03-30 02:54:28 -07001617 *next0 = tcp_next_output (tc->c_is_ip4);
1618 tcp_make_ack (tc, b);
1619
Dave Barach68b0fb02017-02-28 15:15:56 -05001620done:
1621 return error;
1622}
1623
Clement Durand6cf260c2017-04-13 13:27:04 +02001624typedef struct
1625{
1626 tcp_header_t tcp_header;
1627 tcp_connection_t tcp_connection;
1628} tcp_rx_trace_t;
1629
1630u8 *
1631format_tcp_rx_trace (u8 * s, va_list * args)
1632{
1633 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1634 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1635 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +02001636 u32 indent = format_get_indent (s);
Clement Durand6cf260c2017-04-13 13:27:04 +02001637
1638 s = format (s, "%U\n%U%U",
1639 format_tcp_header, &t->tcp_header, 128,
1640 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -07001641 format_tcp_connection, &t->tcp_connection, 1);
Clement Durand6cf260c2017-04-13 13:27:04 +02001642
1643 return s;
1644}
1645
1646u8 *
1647format_tcp_rx_trace_short (u8 * s, va_list * args)
1648{
1649 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1650 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1651 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
1652
1653 s = format (s, "%d -> %d (%U)",
1654 clib_net_to_host_u16 (t->tcp_header.src_port),
1655 clib_net_to_host_u16 (t->tcp_header.dst_port), format_tcp_state,
Florin Corasbb292f42017-05-19 09:49:19 -07001656 t->tcp_connection.state);
Clement Durand6cf260c2017-04-13 13:27:04 +02001657
1658 return s;
1659}
1660
Florin Coras82b13a82017-04-25 11:58:06 -07001661void
1662tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
1663 tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
1664{
1665 if (tc0)
1666 {
1667 clib_memcpy (&t0->tcp_connection, tc0, sizeof (t0->tcp_connection));
1668 }
1669 else
1670 {
1671 th0 = tcp_buffer_hdr (b0);
1672 }
1673 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
1674}
1675
Florin Coras6792ec02017-03-13 03:49:51 -07001676always_inline void
Florin Coras3cbc04b2017-10-02 00:18:51 -07001677tcp_node_inc_counter (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
1678 u8 is_ip4, u8 evt, u8 val)
Dave Barach68b0fb02017-02-28 15:15:56 -05001679{
Florin Coras6792ec02017-03-13 03:49:51 -07001680 if (PREDICT_TRUE (!val))
1681 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001682
Florin Coras6792ec02017-03-13 03:49:51 -07001683 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -07001684 vlib_node_increment_counter (vm, tcp4_node, evt, val);
Florin Coras6792ec02017-03-13 03:49:51 -07001685 else
Florin Coras3cbc04b2017-10-02 00:18:51 -07001686 vlib_node_increment_counter (vm, tcp6_node, evt, val);
Dave Barach68b0fb02017-02-28 15:15:56 -05001687}
1688
1689always_inline uword
1690tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1691 vlib_frame_t * from_frame, int is_ip4)
1692{
1693 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02001694 u32 my_thread_index = vm->thread_index, errors = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001695 tcp_main_t *tm = vnet_get_tcp_main ();
Dave Barach1f75cfd2017-04-14 16:46:44 -04001696 u8 is_fin = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001697
1698 from = vlib_frame_vector_args (from_frame);
1699 n_left_from = from_frame->n_vectors;
1700
1701 next_index = node->cached_next_index;
1702
1703 while (n_left_from > 0)
1704 {
1705 u32 n_left_to_next;
1706
1707 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Dave Barach68b0fb02017-02-28 15:15:56 -05001708 while (n_left_from > 0 && n_left_to_next > 0)
1709 {
1710 u32 bi0;
1711 vlib_buffer_t *b0;
1712 tcp_header_t *th0 = 0;
1713 tcp_connection_t *tc0;
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08001714 u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001715
Florin Coras81a13db2018-03-16 08:48:31 -07001716 if (n_left_from > 1)
1717 {
1718 vlib_buffer_t *pb;
1719 pb = vlib_get_buffer (vm, from[1]);
1720 vlib_prefetch_buffer_header (pb, LOAD);
1721 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1722 }
1723
Dave Barach68b0fb02017-02-28 15:15:56 -05001724 bi0 = from[0];
1725 to_next[0] = bi0;
1726 from += 1;
1727 to_next += 1;
1728 n_left_from -= 1;
1729 n_left_to_next -= 1;
1730
1731 b0 = vlib_get_buffer (vm, bi0);
1732 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
1733 my_thread_index);
1734
Florin Corasd79b41e2017-03-04 05:37:52 -08001735 if (PREDICT_FALSE (tc0 == 0))
1736 {
1737 error0 = TCP_ERROR_INVALID_CONNECTION;
Florin Coras6792ec02017-03-13 03:49:51 -07001738 goto done;
Florin Corasd79b41e2017-03-04 05:37:52 -08001739 }
1740
Florin Coras82b13a82017-04-25 11:58:06 -07001741 th0 = tcp_buffer_hdr (b0);
Florin Coras6534b7a2017-07-18 05:38:03 -04001742 /* N.B. buffer is rewritten if segment is ooo. Thus, th0 becomes a
1743 * dangling reference. */
1744 is_fin = tcp_is_fin (th0);
Dave Barach1f75cfd2017-04-14 16:46:44 -04001745
Dave Barach68b0fb02017-02-28 15:15:56 -05001746 /* SYNs, FINs and data consume sequence numbers */
1747 vnet_buffer (b0)->tcp.seq_end = vnet_buffer (b0)->tcp.seq_number
Florin Coras82b13a82017-04-25 11:58:06 -07001748 + tcp_is_syn (th0) + is_fin + vnet_buffer (b0)->tcp.data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05001749
1750 /* TODO header prediction fast path */
1751
1752 /* 1-4: check SEQ, RST, SYN */
1753 if (PREDICT_FALSE (tcp_segment_validate (vm, tc0, b0, th0, &next0)))
1754 {
1755 error0 = TCP_ERROR_SEGMENT_INVALID;
Florin Coras6792ec02017-03-13 03:49:51 -07001756 TCP_EVT_DBG (TCP_EVT_SEG_INVALID, tc0,
1757 vnet_buffer (b0)->tcp.seq_number,
1758 vnet_buffer (b0)->tcp.seq_end);
1759 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001760 }
1761
1762 /* 5: check the ACK field */
1763 if (tcp_rcv_ack (tc0, b0, th0, &next0, &error0))
Florin Coras6534b7a2017-07-18 05:38:03 -04001764 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001765
1766 /* 6: check the URG bit TODO */
1767
1768 /* 7: process the segment text */
Florin Coras6534b7a2017-07-18 05:38:03 -04001769 if (vnet_buffer (b0)->tcp.data_len)
1770 error0 = tcp_segment_rcv (tm, tc0, b0, &next0);
Dave Barach1f75cfd2017-04-14 16:46:44 -04001771
Dave Barach68b0fb02017-02-28 15:15:56 -05001772 /* 8: check the FIN bit */
Florin Coras6534b7a2017-07-18 05:38:03 -04001773 if (PREDICT_FALSE (is_fin))
Dave Barach68b0fb02017-02-28 15:15:56 -05001774 {
Florin Coras9d063042017-09-14 03:08:00 -04001775 /* Enter CLOSE-WAIT and notify session. To avoid lingering
Florin Corasd79b41e2017-03-04 05:37:52 -08001776 * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
Florin Coras9d063042017-09-14 03:08:00 -04001777 /* Account for the FIN if nothing else was received */
Florin Coras68810622017-07-24 17:40:28 -07001778 if (vnet_buffer (b0)->tcp.data_len == 0)
Florin Coras9d063042017-09-14 03:08:00 -04001779 tc0->rcv_nxt += 1;
1780 tcp_make_ack (tc0, b0);
1781 next0 = tcp_next_output (tc0->c_is_ip4);
1782 tc0->state = TCP_STATE_CLOSE_WAIT;
Dave Barach68b0fb02017-02-28 15:15:56 -05001783 stream_session_disconnect_notify (&tc0->connection);
Florin Coras68810622017-07-24 17:40:28 -07001784 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
Florin Coras9d063042017-09-14 03:08:00 -04001785 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001786 }
1787
Florin Coras6792ec02017-03-13 03:49:51 -07001788 done:
Dave Barach68b0fb02017-02-28 15:15:56 -05001789 b0->error = node->errors[error0];
1790 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
1791 {
Florin Coras82b13a82017-04-25 11:58:06 -07001792 tcp_rx_trace_t *t0 =
1793 vlib_add_trace (vm, node, b0, sizeof (*t0));
1794 tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001795 }
1796
1797 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1798 n_left_to_next, bi0, next0);
1799 }
1800
1801 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1802 }
1803
Florin Coras3cbc04b2017-10-02 00:18:51 -07001804 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
1805 my_thread_index);
1806 tcp_node_inc_counter (vm, is_ip4, tcp4_established_node.index,
1807 tcp6_established_node.index,
1808 TCP_ERROR_EVENT_FIFO_FULL, errors);
Florin Coras66b11312017-07-31 17:18:03 -07001809 tcp_flush_frame_to_output (vm, my_thread_index, is_ip4);
1810
Dave Barach68b0fb02017-02-28 15:15:56 -05001811 return from_frame->n_vectors;
1812}
1813
1814static uword
1815tcp4_established (vlib_main_t * vm, vlib_node_runtime_t * node,
1816 vlib_frame_t * from_frame)
1817{
1818 return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
1819}
1820
1821static uword
1822tcp6_established (vlib_main_t * vm, vlib_node_runtime_t * node,
1823 vlib_frame_t * from_frame)
1824{
1825 return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
1826}
1827
1828/* *INDENT-OFF* */
1829VLIB_REGISTER_NODE (tcp4_established_node) =
1830{
1831 .function = tcp4_established,
1832 .name = "tcp4-established",
1833 /* Takes a vector of packets. */
1834 .vector_size = sizeof (u32),
Florin Corase69f4952017-03-07 10:06:24 -08001835 .n_errors = TCP_N_ERROR,
1836 .error_strings = tcp_error_strings,
Dave Barach68b0fb02017-02-28 15:15:56 -05001837 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
1838 .next_nodes =
1839 {
1840#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
1841 foreach_tcp_state_next
1842#undef _
1843 },
Clement Durand6cf260c2017-04-13 13:27:04 +02001844 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05001845};
1846/* *INDENT-ON* */
1847
1848VLIB_NODE_FUNCTION_MULTIARCH (tcp4_established_node, tcp4_established);
1849
1850/* *INDENT-OFF* */
1851VLIB_REGISTER_NODE (tcp6_established_node) =
1852{
1853 .function = tcp6_established,
1854 .name = "tcp6-established",
1855 /* Takes a vector of packets. */
1856 .vector_size = sizeof (u32),
1857 .n_errors = TCP_N_ERROR,
1858 .error_strings = tcp_error_strings,
1859 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
1860 .next_nodes =
1861 {
1862#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
1863 foreach_tcp_state_next
1864#undef _
1865 },
Clement Durand6cf260c2017-04-13 13:27:04 +02001866 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05001867};
1868/* *INDENT-ON* */
1869
1870
1871VLIB_NODE_FUNCTION_MULTIARCH (tcp6_established_node, tcp6_established);
1872
1873vlib_node_registration_t tcp4_syn_sent_node;
1874vlib_node_registration_t tcp6_syn_sent_node;
1875
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001876static u8
1877tcp_lookup_is_valid (tcp_connection_t * tc, tcp_header_t * hdr)
1878{
Florin Corascea194d2017-10-02 00:18:51 -07001879 transport_connection_t *tmp = 0;
1880 u64 handle;
1881
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001882 if (!tc)
1883 return 1;
1884
Florin Coras70131132017-11-27 02:43:30 -08001885 /* Proxy case */
1886 if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
1887 return 1;
1888
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001889 u8 is_valid = (tc->c_lcl_port == hdr->dst_port
1890 && (tc->state == TCP_STATE_LISTEN
1891 || tc->c_rmt_port == hdr->src_port));
1892
1893 if (!is_valid)
1894 {
Florin Corascea194d2017-10-02 00:18:51 -07001895 handle = session_lookup_half_open_handle (&tc->connection);
1896 tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
Florin Coras3cbc04b2017-10-02 00:18:51 -07001897 tc->c_proto, tc->c_is_ip4);
Florin Corascea194d2017-10-02 00:18:51 -07001898
1899 if (tmp)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001900 {
1901 if (tmp->lcl_port == hdr->dst_port
1902 && tmp->rmt_port == hdr->src_port)
1903 {
Florin Corascea194d2017-10-02 00:18:51 -07001904 TCP_DBG ("half-open is valid!");
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001905 }
1906 }
1907 }
1908 return is_valid;
1909}
1910
1911/**
1912 * Lookup transport connection
1913 */
1914static tcp_connection_t *
Florin Corascea194d2017-10-02 00:18:51 -07001915tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
1916 u8 is_ip4)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001917{
1918 tcp_header_t *tcp;
1919 transport_connection_t *tconn;
1920 tcp_connection_t *tc;
Florin Corasdff48db2017-11-19 18:06:58 -08001921 u8 is_filtered = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001922 if (is_ip4)
1923 {
1924 ip4_header_t *ip4;
1925 ip4 = vlib_buffer_get_current (b);
1926 tcp = ip4_next_header (ip4);
Florin Corascea194d2017-10-02 00:18:51 -07001927 tconn = session_lookup_connection_wt4 (fib_index,
1928 &ip4->dst_address,
1929 &ip4->src_address,
1930 tcp->dst_port,
1931 tcp->src_port,
1932 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08001933 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001934 tc = tcp_get_connection_from_transport (tconn);
1935 ASSERT (tcp_lookup_is_valid (tc, tcp));
1936 }
1937 else
1938 {
1939 ip6_header_t *ip6;
1940 ip6 = vlib_buffer_get_current (b);
1941 tcp = ip6_next_header (ip6);
Florin Corascea194d2017-10-02 00:18:51 -07001942 tconn = session_lookup_connection_wt6 (fib_index,
1943 &ip6->dst_address,
1944 &ip6->src_address,
1945 tcp->dst_port,
1946 tcp->src_port,
1947 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08001948 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001949 tc = tcp_get_connection_from_transport (tconn);
1950 ASSERT (tcp_lookup_is_valid (tc, tcp));
1951 }
1952 return tc;
1953}
1954
Dave Barach68b0fb02017-02-28 15:15:56 -05001955always_inline uword
1956tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1957 vlib_frame_t * from_frame, int is_ip4)
1958{
1959 tcp_main_t *tm = vnet_get_tcp_main ();
1960 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02001961 u32 my_thread_index = vm->thread_index, errors = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001962
1963 from = vlib_frame_vector_args (from_frame);
1964 n_left_from = from_frame->n_vectors;
1965
1966 next_index = node->cached_next_index;
1967
1968 while (n_left_from > 0)
1969 {
1970 u32 n_left_to_next;
1971
1972 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1973
1974 while (n_left_from > 0 && n_left_to_next > 0)
1975 {
1976 u32 bi0, ack0, seq0;
1977 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02001978 tcp_rx_trace_t *t0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001979 tcp_header_t *tcp0 = 0;
1980 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001981 tcp_connection_t *new_tc0;
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08001982 u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001983
1984 bi0 = from[0];
1985 to_next[0] = bi0;
1986 from += 1;
1987 to_next += 1;
1988 n_left_from -= 1;
1989 n_left_to_next -= 1;
1990
1991 b0 = vlib_get_buffer (vm, bi0);
1992 tc0 =
1993 tcp_half_open_connection_get (vnet_buffer (b0)->
1994 tcp.connection_index);
Dave Barachd84ba852017-08-22 17:56:46 -04001995 if (PREDICT_FALSE (tc0 == 0))
1996 {
1997 error0 = TCP_ERROR_INVALID_CONNECTION;
1998 goto drop;
1999 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002000
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002001 /* Half-open completed recently but the connection was't removed
2002 * yet by the owning thread */
2003 if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2004 {
2005 /* Make sure the connection actually exists */
Florin Corascea194d2017-10-02 00:18:51 -07002006 ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2007 my_thread_index, is_ip4));
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002008 goto drop;
2009 }
2010
Dave Barach68b0fb02017-02-28 15:15:56 -05002011 ack0 = vnet_buffer (b0)->tcp.ack_number;
2012 seq0 = vnet_buffer (b0)->tcp.seq_number;
Florin Coras82b13a82017-04-25 11:58:06 -07002013 tcp0 = tcp_buffer_hdr (b0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002014
Florin Coras9d063042017-09-14 03:08:00 -04002015 /* Crude check to see if the connection handle does not match
2016 * the packet. Probably connection just switched to established */
2017 if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2018 || tcp0->src_port != tc0->c_rmt_port))
2019 goto drop;
2020
Dave Barach68b0fb02017-02-28 15:15:56 -05002021 if (PREDICT_FALSE
2022 (!tcp_ack (tcp0) && !tcp_rst (tcp0) && !tcp_syn (tcp0)))
2023 goto drop;
2024
2025 /* SYNs, FINs and data consume sequence numbers */
2026 vnet_buffer (b0)->tcp.seq_end = seq0 + tcp_is_syn (tcp0)
Florin Coras82b13a82017-04-25 11:58:06 -07002027 + tcp_is_fin (tcp0) + vnet_buffer (b0)->tcp.data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05002028
2029 /*
2030 * 1. check the ACK bit
2031 */
2032
2033 /*
2034 * If the ACK bit is set
2035 * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2036 * the RST bit is set, if so drop the segment and return)
2037 * <SEQ=SEG.ACK><CTL=RST>
2038 * and discard the segment. Return.
2039 * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2040 */
2041 if (tcp_ack (tcp0))
2042 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002043 if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05002044 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002045 clib_warning ("ack not in rcv wnd");
Dave Barach68b0fb02017-02-28 15:15:56 -05002046 if (!tcp_rst (tcp0))
Florin Coras1f152cd2017-08-18 19:28:03 -07002047 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002048 goto drop;
2049 }
2050
2051 /* Make sure ACK is valid */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002052 if (seq_gt (tc0->snd_una, ack0))
2053 {
2054 clib_warning ("ack invalid");
2055 goto drop;
2056 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002057 }
2058
2059 /*
2060 * 2. check the RST bit
2061 */
2062
2063 if (tcp_rst (tcp0))
2064 {
2065 /* If ACK is acceptable, signal client that peer is not
2066 * willing to accept connection and drop connection*/
2067 if (tcp_ack (tcp0))
Florin Coras6534b7a2017-07-18 05:38:03 -04002068 tcp_connection_reset (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002069 goto drop;
2070 }
2071
2072 /*
2073 * 3. check the security and precedence (skipped)
2074 */
2075
2076 /*
2077 * 4. check the SYN bit
2078 */
2079
2080 /* No SYN flag. Drop. */
2081 if (!tcp_syn (tcp0))
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002082 {
2083 clib_warning ("not synack");
2084 goto drop;
2085 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002086
Florin Coras6534b7a2017-07-18 05:38:03 -04002087 /* Parse options */
2088 if (tcp_options_parse (tcp0, &tc0->rcv_opts))
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002089 {
2090 clib_warning ("options parse fail");
2091 goto drop;
2092 }
Florin Coras6534b7a2017-07-18 05:38:03 -04002093
Dave Barach68b0fb02017-02-28 15:15:56 -05002094 /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2095 * current thread pool. */
2096 pool_get (tm->connections[my_thread_index], new_tc0);
2097 clib_memcpy (new_tc0, tc0, sizeof (*new_tc0));
Dave Barach259cdae2017-05-15 16:27:05 -04002098 new_tc0->c_c_index = new_tc0 - tm->connections[my_thread_index];
Florin Coras6534b7a2017-07-18 05:38:03 -04002099 new_tc0->c_thread_index = my_thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002100 new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2101 new_tc0->irs = seq0;
Florin Coras68810622017-07-24 17:40:28 -07002102 new_tc0->timers[TCP_TIMER_ESTABLISH] = TCP_TIMER_HANDLE_INVALID;
2103 new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] =
2104 TCP_TIMER_HANDLE_INVALID;
2105
2106 /* If this is not the owning thread, wait for syn retransmit to
2107 * expire and cleanup then */
2108 if (tcp_half_open_connection_cleanup (tc0))
2109 tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
Dave Barach68b0fb02017-02-28 15:15:56 -05002110
Florin Coras93992a92017-05-24 18:03:56 -07002111 if (tcp_opts_tstamp (&new_tc0->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05002112 {
Florin Coras93992a92017-05-24 18:03:56 -07002113 new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
Dave Barach68b0fb02017-02-28 15:15:56 -05002114 new_tc0->tsval_recent_age = tcp_time_now ();
2115 }
2116
Florin Coras93992a92017-05-24 18:03:56 -07002117 if (tcp_opts_wscale (&new_tc0->rcv_opts))
2118 new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
Dave Barach68b0fb02017-02-28 15:15:56 -05002119
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002120 /* RFC1323: SYN and SYN-ACK wnd not scaled */
2121 new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window);
Dave Barach68b0fb02017-02-28 15:15:56 -05002122 new_tc0->snd_wl1 = seq0;
2123 new_tc0->snd_wl2 = ack0;
2124
Florin Corase04c2992017-03-01 08:17:34 -08002125 tcp_connection_init_vars (new_tc0);
2126
Dave Barach68b0fb02017-02-28 15:15:56 -05002127 /* SYN-ACK: See if we can switch to ESTABLISHED state */
Florin Coras6534b7a2017-07-18 05:38:03 -04002128 if (PREDICT_TRUE (tcp_ack (tcp0)))
Dave Barach68b0fb02017-02-28 15:15:56 -05002129 {
2130 /* Our SYN is ACKed: we have iss < ack = snd_una */
2131
2132 /* TODO Dequeue acknowledged segments if we support Fast Open */
2133 new_tc0->snd_una = ack0;
2134 new_tc0->state = TCP_STATE_ESTABLISHED;
2135
Florin Corase04c2992017-03-01 08:17:34 -08002136 /* Make sure las is initialized for the wnd computation */
2137 new_tc0->rcv_las = new_tc0->rcv_nxt;
2138
Florin Corasf03a59a2017-06-09 21:07:32 -07002139 /* Notify app that we have connection. If session layer can't
2140 * allocate session send reset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07002141 if (session_stream_connect_notify (&new_tc0->connection, 0))
Florin Corasf03a59a2017-06-09 21:07:32 -07002142 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002143 clib_warning ("connect notify fail");
Florin Coras1f152cd2017-08-18 19:28:03 -07002144 tcp_send_reset_w_pkt (new_tc0, b0, is_ip4);
Florin Corasf03a59a2017-06-09 21:07:32 -07002145 tcp_connection_cleanup (new_tc0);
Florin Corasf03a59a2017-06-09 21:07:32 -07002146 goto drop;
2147 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002148
2149 /* Make sure after data segment processing ACK is sent */
2150 new_tc0->flags |= TCP_CONN_SNDACK;
Dave Barach2c25a622017-06-26 11:35:07 -04002151
2152 /* Update rtt with the syn-ack sample */
Dave Barach2c25a622017-06-26 11:35:07 -04002153 tcp_update_rtt (new_tc0, vnet_buffer (b0)->tcp.ack_number);
Florin Coras6534b7a2017-07-18 05:38:03 -04002154 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, new_tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002155 }
2156 /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2157 else
2158 {
2159 new_tc0->state = TCP_STATE_SYN_RCVD;
2160
Florin Corase69f4952017-03-07 10:06:24 -08002161 /* Notify app that we have connection */
Florin Coras3cbc04b2017-10-02 00:18:51 -07002162 if (session_stream_connect_notify (&new_tc0->connection, 0))
Florin Corasf03a59a2017-06-09 21:07:32 -07002163 {
2164 tcp_connection_cleanup (new_tc0);
Florin Coras1f152cd2017-08-18 19:28:03 -07002165 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -04002166 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc0);
Florin Corasf03a59a2017-06-09 21:07:32 -07002167 goto drop;
2168 }
2169
Dave Barach2c25a622017-06-26 11:35:07 -04002170 tc0->rtt_ts = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002171 tcp_init_snd_vars (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002172 tcp_make_synack (new_tc0, b0);
2173 next0 = tcp_next_output (is_ip4);
2174
2175 goto drop;
2176 }
2177
2178 /* Read data, if any */
Florin Coras6534b7a2017-07-18 05:38:03 -04002179 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
Dave Barach68b0fb02017-02-28 15:15:56 -05002180 {
Florin Coras6534b7a2017-07-18 05:38:03 -04002181 ASSERT (0);
2182 error0 = tcp_segment_rcv (tm, new_tc0, b0, &next0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002183 if (error0 == TCP_ERROR_PURE_ACK)
2184 error0 = TCP_ERROR_SYN_ACKS_RCVD;
2185 }
2186 else
2187 {
2188 tcp_make_ack (new_tc0, b0);
2189 next0 = tcp_next_output (new_tc0->c_is_ip4);
2190 }
2191
2192 drop:
2193
2194 b0->error = error0 ? node->errors[error0] : 0;
Chris Luke879ace32017-09-26 13:15:16 -04002195 if (PREDICT_FALSE
2196 ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002197 {
Clement Durand6cf260c2017-04-13 13:27:04 +02002198 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2199 clib_memcpy (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2200 clib_memcpy (&t0->tcp_connection, tc0,
2201 sizeof (t0->tcp_connection));
Dave Barach68b0fb02017-02-28 15:15:56 -05002202 }
2203
2204 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2205 n_left_to_next, bi0, next0);
2206 }
2207
2208 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2209 }
2210
Florin Coras3cbc04b2017-10-02 00:18:51 -07002211 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2212 my_thread_index);
2213 tcp_node_inc_counter (vm, is_ip4, tcp4_syn_sent_node.index,
2214 tcp6_syn_sent_node.index,
2215 TCP_ERROR_EVENT_FIFO_FULL, errors);
Dave Barach68b0fb02017-02-28 15:15:56 -05002216 return from_frame->n_vectors;
2217}
2218
2219static uword
2220tcp4_syn_sent (vlib_main_t * vm, vlib_node_runtime_t * node,
2221 vlib_frame_t * from_frame)
2222{
2223 return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2224}
2225
2226static uword
2227tcp6_syn_sent_rcv (vlib_main_t * vm, vlib_node_runtime_t * node,
2228 vlib_frame_t * from_frame)
2229{
2230 return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2231}
2232
2233/* *INDENT-OFF* */
2234VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2235{
2236 .function = tcp4_syn_sent,
2237 .name = "tcp4-syn-sent",
2238 /* Takes a vector of packets. */
2239 .vector_size = sizeof (u32),
2240 .n_errors = TCP_N_ERROR,
2241 .error_strings = tcp_error_strings,
2242 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2243 .next_nodes =
2244 {
2245#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2246 foreach_tcp_state_next
2247#undef _
2248 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002249 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002250};
2251/* *INDENT-ON* */
2252
2253VLIB_NODE_FUNCTION_MULTIARCH (tcp4_syn_sent_node, tcp4_syn_sent);
2254
2255/* *INDENT-OFF* */
2256VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2257{
2258 .function = tcp6_syn_sent_rcv,
2259 .name = "tcp6-syn-sent",
2260 /* Takes a vector of packets. */
2261 .vector_size = sizeof (u32),
2262 .n_errors = TCP_N_ERROR,
2263 .error_strings = tcp_error_strings,
2264 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2265 .next_nodes =
2266 {
2267#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2268 foreach_tcp_state_next
2269#undef _
Clement Durand6cf260c2017-04-13 13:27:04 +02002270 },
2271 .format_trace = format_tcp_rx_trace_short,
2272};
Dave Barach68b0fb02017-02-28 15:15:56 -05002273/* *INDENT-ON* */
2274
2275VLIB_NODE_FUNCTION_MULTIARCH (tcp6_syn_sent_node, tcp6_syn_sent_rcv);
Florin Coras6534b7a2017-07-18 05:38:03 -04002276
Florin Coras3cbc04b2017-10-02 00:18:51 -07002277vlib_node_registration_t tcp4_rcv_process_node;
2278vlib_node_registration_t tcp6_rcv_process_node;
2279
Dave Barach68b0fb02017-02-28 15:15:56 -05002280/**
Florin Corasd79b41e2017-03-04 05:37:52 -08002281 * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
Dave Barach68b0fb02017-02-28 15:15:56 -05002282 * as per RFC793 p. 64
2283 */
2284always_inline uword
2285tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2286 vlib_frame_t * from_frame, int is_ip4)
2287{
2288 tcp_main_t *tm = vnet_get_tcp_main ();
2289 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02002290 u32 my_thread_index = vm->thread_index, errors = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002291
2292 from = vlib_frame_vector_args (from_frame);
2293 n_left_from = from_frame->n_vectors;
2294
2295 next_index = node->cached_next_index;
2296
2297 while (n_left_from > 0)
2298 {
2299 u32 n_left_to_next;
2300
2301 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2302
2303 while (n_left_from > 0 && n_left_to_next > 0)
2304 {
2305 u32 bi0;
2306 vlib_buffer_t *b0;
2307 tcp_header_t *tcp0 = 0;
2308 tcp_connection_t *tc0;
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002309 u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_ENQUEUED;
Florin Coras9d063042017-09-14 03:08:00 -04002310 u8 is_fin0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002311
2312 bi0 = from[0];
2313 to_next[0] = bi0;
2314 from += 1;
2315 to_next += 1;
2316 n_left_from -= 1;
2317 n_left_to_next -= 1;
2318
2319 b0 = vlib_get_buffer (vm, bi0);
2320 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2321 my_thread_index);
Florin Corasd79b41e2017-03-04 05:37:52 -08002322 if (PREDICT_FALSE (tc0 == 0))
2323 {
2324 error0 = TCP_ERROR_INVALID_CONNECTION;
2325 goto drop;
2326 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002327
Florin Coras82b13a82017-04-25 11:58:06 -07002328 tcp0 = tcp_buffer_hdr (b0);
Florin Coras9d063042017-09-14 03:08:00 -04002329 is_fin0 = tcp_is_fin (tcp0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002330
2331 /* SYNs, FINs and data consume sequence numbers */
2332 vnet_buffer (b0)->tcp.seq_end = vnet_buffer (b0)->tcp.seq_number
Florin Coras9d063042017-09-14 03:08:00 -04002333 + tcp_is_syn (tcp0) + is_fin0 + vnet_buffer (b0)->tcp.data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05002334
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002335 if (CLIB_DEBUG)
2336 {
2337 tcp_connection_t *tmp;
Florin Corascea194d2017-10-02 00:18:51 -07002338 tmp =
2339 tcp_lookup_connection (tc0->c_fib_index, b0, my_thread_index,
2340 is_ip4);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002341 if (tmp->state != tc0->state)
2342 {
2343 clib_warning ("state changed");
2344 ASSERT (0);
2345 goto drop;
2346 }
2347 }
2348
Dave Barach68b0fb02017-02-28 15:15:56 -05002349 /*
2350 * Special treatment for CLOSED
2351 */
2352 switch (tc0->state)
2353 {
2354 case TCP_STATE_CLOSED:
2355 goto drop;
2356 break;
2357 }
2358
2359 /*
2360 * For all other states (except LISTEN)
2361 */
2362
2363 /* 1-4: check SEQ, RST, SYN */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002364 if (PREDICT_FALSE (tcp_segment_validate (vm, tc0, b0, tcp0,
2365 &next0)))
Dave Barach68b0fb02017-02-28 15:15:56 -05002366 {
2367 error0 = TCP_ERROR_SEGMENT_INVALID;
2368 goto drop;
2369 }
2370
2371 /* 5: check the ACK field */
2372 switch (tc0->state)
2373 {
2374 case TCP_STATE_SYN_RCVD:
2375 /*
2376 * If the segment acknowledgment is not acceptable, form a
2377 * reset segment,
2378 * <SEQ=SEG.ACK><CTL=RST>
2379 * and send it.
2380 */
2381 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
2382 {
Florin Corasa096f2d2017-09-28 23:49:42 -04002383 TCP_DBG ("connection not accepted");
Florin Coras1f152cd2017-08-18 19:28:03 -07002384 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002385 goto drop;
2386 }
Florin Coras3af90fc2017-05-03 21:09:42 -07002387
2388 /* Update rtt and rto */
Florin Coras3af90fc2017-05-03 21:09:42 -07002389 tcp_update_rtt (tc0, vnet_buffer (b0)->tcp.ack_number);
2390
Dave Barach68b0fb02017-02-28 15:15:56 -05002391 /* Switch state to ESTABLISHED */
2392 tc0->state = TCP_STATE_ESTABLISHED;
Florin Corasb384b542018-01-15 01:08:33 -08002393 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002394
2395 /* Initialize session variables */
2396 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
Florin Corase04c2992017-03-01 08:17:34 -08002397 tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
Florin Coras93992a92017-05-24 18:03:56 -07002398 << tc0->rcv_opts.wscale;
Dave Barach68b0fb02017-02-28 15:15:56 -05002399 tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2400 tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
Dave Barach68b0fb02017-02-28 15:15:56 -05002401
Florin Corasab0289a2017-08-14 11:25:25 -07002402 /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
Florin Coras6792ec02017-03-13 03:49:51 -07002403 tcp_retransmit_timer_reset (tc0);
Florin Corasab0289a2017-08-14 11:25:25 -07002404 tcp_timer_reset (tc0, TCP_TIMER_ESTABLISH);
Florin Corasb384b542018-01-15 01:08:33 -08002405
2406 stream_session_accept_notify (&tc0->connection);
Dave Barach68b0fb02017-02-28 15:15:56 -05002407 break;
2408 case TCP_STATE_ESTABLISHED:
2409 /* We can get packets in established state here because they
2410 * were enqueued before state change */
2411 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
2412 goto drop;
2413
2414 break;
2415 case TCP_STATE_FIN_WAIT_1:
2416 /* In addition to the processing for the ESTABLISHED state, if
2417 * our FIN is now acknowledged then enter FIN-WAIT-2 and
2418 * continue processing in that state. */
2419 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
2420 goto drop;
Florin Corasd79b41e2017-03-04 05:37:52 -08002421
Florin Corasb2215d62017-08-01 16:56:58 -07002422 /* Still have to send the FIN */
2423 if (tc0->flags & TCP_CONN_FINPNDG)
2424 {
2425 /* TX fifo finally drained */
2426 if (!stream_session_tx_fifo_max_dequeue (&tc0->connection))
2427 tcp_send_fin (tc0);
2428 }
Florin Corasd79b41e2017-03-04 05:37:52 -08002429 /* If FIN is ACKed */
Florin Corasb2215d62017-08-01 16:56:58 -07002430 else if (tc0->snd_una == tc0->snd_una_max)
Florin Corasd79b41e2017-03-04 05:37:52 -08002431 {
2432 tc0->state = TCP_STATE_FIN_WAIT_2;
Florin Coras6534b7a2017-07-18 05:38:03 -04002433 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
2434
Florin Coras9d063042017-09-14 03:08:00 -04002435 /* Stop all retransmit timers because we have nothing more
2436 * to send. Enable waitclose though because we're willing to
2437 * wait for peer's FIN but not indefinitely. */
2438 tcp_connection_timers_reset (tc0);
2439 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Corasd79b41e2017-03-04 05:37:52 -08002440 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002441 break;
2442 case TCP_STATE_FIN_WAIT_2:
2443 /* In addition to the processing for the ESTABLISHED state, if
2444 * the retransmission queue is empty, the user's CLOSE can be
2445 * acknowledged ("ok") but do not delete the TCB. */
2446 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
2447 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002448 break;
2449 case TCP_STATE_CLOSE_WAIT:
2450 /* Do the same processing as for the ESTABLISHED state. */
2451 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
2452 goto drop;
2453 break;
2454 case TCP_STATE_CLOSING:
2455 /* In addition to the processing for the ESTABLISHED state, if
2456 * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2457 * otherwise ignore the segment. */
2458 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
2459 goto drop;
2460
Dave Barach68b0fb02017-02-28 15:15:56 -05002461 tc0->state = TCP_STATE_TIME_WAIT;
Florin Coras6534b7a2017-07-18 05:38:03 -04002462 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Florin Corasa096f2d2017-09-28 23:49:42 -04002463 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002464 goto drop;
2465
2466 break;
2467 case TCP_STATE_LAST_ACK:
Florin Coras93992a92017-05-24 18:03:56 -07002468 /* The only thing that [should] arrive in this state is an
Dave Barach68b0fb02017-02-28 15:15:56 -05002469 * acknowledgment of our FIN. If our FIN is now acknowledged,
2470 * delete the TCB, enter the CLOSED state, and return. */
2471
2472 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
Florin Corasa096f2d2017-09-28 23:49:42 -04002473 {
2474 error0 = TCP_ERROR_ACK_INVALID;
2475 goto drop;
2476 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002477
Florin Coras9d063042017-09-14 03:08:00 -04002478 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
Florin Corasa096f2d2017-09-28 23:49:42 -04002479 /* Apparently our ACK for the peer's FIN was lost */
2480 if (is_fin0 && tc0->snd_una != tc0->snd_una_max)
Florin Coras93992a92017-05-24 18:03:56 -07002481 {
Florin Coras93992a92017-05-24 18:03:56 -07002482 tcp_send_fin (tc0);
2483 goto drop;
2484 }
2485
Florin Corasd79b41e2017-03-04 05:37:52 -08002486 tc0->state = TCP_STATE_CLOSED;
Florin Coras6534b7a2017-07-18 05:38:03 -04002487 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Florin Corasa096f2d2017-09-28 23:49:42 -04002488 tcp_connection_timers_reset (tc0);
Florin Corasd79b41e2017-03-04 05:37:52 -08002489
2490 /* Don't delete the connection/session yet. Instead, wait a
2491 * reasonable amount of time until the pipes are cleared. In
2492 * particular, this makes sure that we won't have dead sessions
2493 * when processing events on the tx path */
Florin Corasa096f2d2017-09-28 23:49:42 -04002494 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME);
Florin Corasd79b41e2017-03-04 05:37:52 -08002495
Dave Barach68b0fb02017-02-28 15:15:56 -05002496 goto drop;
2497
2498 break;
2499 case TCP_STATE_TIME_WAIT:
2500 /* The only thing that can arrive in this state is a
2501 * retransmission of the remote FIN. Acknowledge it, and restart
2502 * the 2 MSL timeout. */
2503
Florin Coras93992a92017-05-24 18:03:56 -07002504 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
2505 goto drop;
2506
2507 tcp_make_ack (tc0, b0);
Florin Corasa096f2d2017-09-28 23:49:42 -04002508 next0 = tcp_next_output (is_ip4);
2509 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Florin Coras93992a92017-05-24 18:03:56 -07002510
Dave Barach68b0fb02017-02-28 15:15:56 -05002511 goto drop;
Florin Coras93992a92017-05-24 18:03:56 -07002512
Dave Barach68b0fb02017-02-28 15:15:56 -05002513 break;
2514 default:
2515 ASSERT (0);
2516 }
2517
2518 /* 6: check the URG bit TODO */
2519
2520 /* 7: process the segment text */
2521 switch (tc0->state)
2522 {
2523 case TCP_STATE_ESTABLISHED:
2524 case TCP_STATE_FIN_WAIT_1:
2525 case TCP_STATE_FIN_WAIT_2:
Florin Coras6534b7a2017-07-18 05:38:03 -04002526 if (vnet_buffer (b0)->tcp.data_len)
2527 error0 = tcp_segment_rcv (tm, tc0, b0, &next0);
Florin Coras9d063042017-09-14 03:08:00 -04002528 else if (is_fin0)
2529 tc0->rcv_nxt += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002530 break;
2531 case TCP_STATE_CLOSE_WAIT:
2532 case TCP_STATE_CLOSING:
2533 case TCP_STATE_LAST_ACK:
2534 case TCP_STATE_TIME_WAIT:
2535 /* This should not occur, since a FIN has been received from the
2536 * remote side. Ignore the segment text. */
2537 break;
2538 }
2539
2540 /* 8: check the FIN bit */
Florin Coras9d063042017-09-14 03:08:00 -04002541 if (!is_fin0)
Dave Barach68b0fb02017-02-28 15:15:56 -05002542 goto drop;
2543
2544 switch (tc0->state)
2545 {
2546 case TCP_STATE_ESTABLISHED:
2547 case TCP_STATE_SYN_RCVD:
2548 /* Send FIN-ACK notify app and enter CLOSE-WAIT */
2549 tcp_connection_timers_reset (tc0);
Florin Corasd79b41e2017-03-04 05:37:52 -08002550 tcp_make_fin (tc0, b0);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002551 tc0->snd_nxt += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002552 next0 = tcp_next_output (tc0->c_is_ip4);
2553 stream_session_disconnect_notify (&tc0->connection);
2554 tc0->state = TCP_STATE_CLOSE_WAIT;
Florin Coras6534b7a2017-07-18 05:38:03 -04002555 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002556 break;
2557 case TCP_STATE_CLOSE_WAIT:
2558 case TCP_STATE_CLOSING:
2559 case TCP_STATE_LAST_ACK:
2560 /* move along .. */
2561 break;
2562 case TCP_STATE_FIN_WAIT_1:
Florin Corasab0289a2017-08-14 11:25:25 -07002563 tc0->state = TCP_STATE_CLOSING;
2564 tcp_make_ack (tc0, b0);
2565 next0 = tcp_next_output (is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -04002566 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Florin Corasab0289a2017-08-14 11:25:25 -07002567 /* Wait for ACK but not forever */
2568 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002569 break;
2570 case TCP_STATE_FIN_WAIT_2:
Florin Coras9d063042017-09-14 03:08:00 -04002571 /* Got FIN, send ACK! Be more aggressive with resource cleanup */
Dave Barach68b0fb02017-02-28 15:15:56 -05002572 tc0->state = TCP_STATE_TIME_WAIT;
Florin Corasdb84e572017-05-09 18:54:52 -07002573 tcp_connection_timers_reset (tc0);
Florin Coras9d063042017-09-14 03:08:00 -04002574 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002575 tcp_make_ack (tc0, b0);
2576 next0 = tcp_next_output (is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -04002577 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002578 break;
2579 case TCP_STATE_TIME_WAIT:
Florin Coras9d063042017-09-14 03:08:00 -04002580 /* Remain in the TIME-WAIT state. Restart the time-wait
Dave Barach68b0fb02017-02-28 15:15:56 -05002581 * timeout.
2582 */
Florin Coras9d063042017-09-14 03:08:00 -04002583 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002584 break;
2585 }
Florin Corase69f4952017-03-07 10:06:24 -08002586 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002587
Florin Coras82b13a82017-04-25 11:58:06 -07002588 drop:
Dave Barach68b0fb02017-02-28 15:15:56 -05002589 b0->error = error0 ? node->errors[error0] : 0;
2590
Dave Barach68b0fb02017-02-28 15:15:56 -05002591 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2592 {
Florin Coras82b13a82017-04-25 11:58:06 -07002593 tcp_rx_trace_t *t0 =
2594 vlib_add_trace (vm, node, b0, sizeof (*t0));
2595 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002596 }
2597
2598 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2599 n_left_to_next, bi0, next0);
2600 }
2601
2602 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2603 }
2604
Florin Coras3cbc04b2017-10-02 00:18:51 -07002605 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2606 my_thread_index);
2607 tcp_node_inc_counter (vm, is_ip4, tcp4_rcv_process_node.index,
2608 tcp6_rcv_process_node.index,
2609 TCP_ERROR_EVENT_FIFO_FULL, errors);
Dave Barach68b0fb02017-02-28 15:15:56 -05002610
2611 return from_frame->n_vectors;
2612}
2613
2614static uword
2615tcp4_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node,
2616 vlib_frame_t * from_frame)
2617{
2618 return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2619}
2620
2621static uword
2622tcp6_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node,
2623 vlib_frame_t * from_frame)
2624{
2625 return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2626}
2627
2628/* *INDENT-OFF* */
2629VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
2630{
2631 .function = tcp4_rcv_process,
2632 .name = "tcp4-rcv-process",
2633 /* Takes a vector of packets. */
2634 .vector_size = sizeof (u32),
2635 .n_errors = TCP_N_ERROR,
2636 .error_strings = tcp_error_strings,
2637 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2638 .next_nodes =
2639 {
2640#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
2641 foreach_tcp_state_next
2642#undef _
2643 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002644 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002645};
2646/* *INDENT-ON* */
2647
2648VLIB_NODE_FUNCTION_MULTIARCH (tcp4_rcv_process_node, tcp4_rcv_process);
2649
2650/* *INDENT-OFF* */
2651VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
2652{
2653 .function = tcp6_rcv_process,
2654 .name = "tcp6-rcv-process",
2655 /* Takes a vector of packets. */
2656 .vector_size = sizeof (u32),
2657 .n_errors = TCP_N_ERROR,
2658 .error_strings = tcp_error_strings,
2659 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2660 .next_nodes =
2661 {
2662#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
2663 foreach_tcp_state_next
2664#undef _
2665 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002666 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002667};
2668/* *INDENT-ON* */
2669
2670VLIB_NODE_FUNCTION_MULTIARCH (tcp6_rcv_process_node, tcp6_rcv_process);
2671
2672vlib_node_registration_t tcp4_listen_node;
2673vlib_node_registration_t tcp6_listen_node;
2674
2675/**
2676 * LISTEN state processing as per RFC 793 p. 65
2677 */
2678always_inline uword
2679tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2680 vlib_frame_t * from_frame, int is_ip4)
2681{
2682 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02002683 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002684
2685 from = vlib_frame_vector_args (from_frame);
2686 n_left_from = from_frame->n_vectors;
2687
2688 next_index = node->cached_next_index;
2689
2690 while (n_left_from > 0)
2691 {
2692 u32 n_left_to_next;
2693
2694 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2695
2696 while (n_left_from > 0 && n_left_to_next > 0)
2697 {
2698 u32 bi0;
2699 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002700 tcp_rx_trace_t *t0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002701 tcp_header_t *th0 = 0;
2702 tcp_connection_t *lc0;
2703 ip4_header_t *ip40;
2704 ip6_header_t *ip60;
2705 tcp_connection_t *child0;
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002706 u32 error0 = TCP_ERROR_SYNS_RCVD, next0 = tcp_next_drop (is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002707
2708 bi0 = from[0];
2709 to_next[0] = bi0;
2710 from += 1;
2711 to_next += 1;
2712 n_left_from -= 1;
2713 n_left_to_next -= 1;
2714
2715 b0 = vlib_get_buffer (vm, bi0);
2716 lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index);
2717
2718 if (is_ip4)
2719 {
2720 ip40 = vlib_buffer_get_current (b0);
2721 th0 = ip4_next_header (ip40);
2722 }
2723 else
2724 {
2725 ip60 = vlib_buffer_get_current (b0);
2726 th0 = ip6_next_header (ip60);
2727 }
2728
2729 /* Create child session. For syn-flood protection use filter */
2730
Florin Corasdc629cd2017-05-09 00:52:37 -07002731 /* 1. first check for an RST: handled in dispatch */
2732 /* if (tcp_rst (th0))
2733 goto drop; */
Dave Barach68b0fb02017-02-28 15:15:56 -05002734
Florin Corasdc629cd2017-05-09 00:52:37 -07002735 /* 2. second check for an ACK: handled in dispatch */
2736 /* if (tcp_ack (th0))
2737 {
2738 tcp_send_reset (b0, is_ip4);
2739 goto drop;
2740 } */
Dave Barach68b0fb02017-02-28 15:15:56 -05002741
2742 /* 3. check for a SYN (did that already) */
2743
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002744 /* Make sure connection wasn't just created */
Florin Corascea194d2017-10-02 00:18:51 -07002745 child0 =
2746 tcp_lookup_connection (lc0->c_fib_index, b0, my_thread_index,
2747 is_ip4);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002748 if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN))
2749 {
2750 error0 = TCP_ERROR_CREATE_EXISTS;
2751 goto drop;
2752 }
2753
Dave Barach68b0fb02017-02-28 15:15:56 -05002754 /* Create child session and send SYN-ACK */
Florin Coras6534b7a2017-07-18 05:38:03 -04002755 child0 = tcp_connection_new (my_thread_index);
Florin Coras1c710452017-10-17 00:03:13 -07002756 child0->c_lcl_port = th0->dst_port;
Dave Barach68b0fb02017-02-28 15:15:56 -05002757 child0->c_rmt_port = th0->src_port;
2758 child0->c_is_ip4 = is_ip4;
Florin Corasbb292f42017-05-19 09:49:19 -07002759 child0->state = TCP_STATE_SYN_RCVD;
Dave Barach68b0fb02017-02-28 15:15:56 -05002760
2761 if (is_ip4)
2762 {
2763 child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32;
2764 child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32;
2765 }
2766 else
2767 {
2768 clib_memcpy (&child0->c_lcl_ip6, &ip60->dst_address,
2769 sizeof (ip6_address_t));
2770 clib_memcpy (&child0->c_rmt_ip6, &ip60->src_address,
2771 sizeof (ip6_address_t));
2772 }
2773
Florin Coras93992a92017-05-24 18:03:56 -07002774 if (tcp_options_parse (th0, &child0->rcv_opts))
Florin Corasdb84e572017-05-09 18:54:52 -07002775 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002776 clib_warning ("options parse fail");
Florin Corasdb84e572017-05-09 18:54:52 -07002777 goto drop;
2778 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002779
2780 child0->irs = vnet_buffer (b0)->tcp.seq_number;
2781 child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1;
Florin Coras3e350af2017-03-30 02:54:28 -07002782 child0->rcv_las = child0->rcv_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -05002783
2784 /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
2785 * segments are used to initialize PAWS. */
Florin Coras93992a92017-05-24 18:03:56 -07002786 if (tcp_opts_tstamp (&child0->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05002787 {
Florin Coras93992a92017-05-24 18:03:56 -07002788 child0->tsval_recent = child0->rcv_opts.tsval;
Dave Barach68b0fb02017-02-28 15:15:56 -05002789 child0->tsval_recent_age = tcp_time_now ();
2790 }
2791
Florin Coras93992a92017-05-24 18:03:56 -07002792 if (tcp_opts_wscale (&child0->rcv_opts))
2793 child0->snd_wscale = child0->rcv_opts.wscale;
Florin Corase04c2992017-03-01 08:17:34 -08002794
Florin Corasf03a59a2017-06-09 21:07:32 -07002795 child0->snd_wnd = clib_net_to_host_u16 (th0->window)
2796 << child0->snd_wscale;
Florin Corase04c2992017-03-01 08:17:34 -08002797 child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2798 child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
2799
2800 tcp_connection_init_vars (child0);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002801 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, child0, 1);
Florin Corase69f4952017-03-07 10:06:24 -08002802
Florin Coras6dfb5ac2017-11-09 16:26:03 -08002803 if (stream_session_accept (&child0->connection, lc0->c_s_index,
2804 0 /* notify */ ))
2805 {
2806 clib_warning ("session accept fail");
2807 tcp_connection_cleanup (child0);
2808 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
2809 goto drop;
2810 }
2811
Dave Barach68b0fb02017-02-28 15:15:56 -05002812 /* Reuse buffer to make syn-ack and send */
2813 tcp_make_synack (child0, b0);
2814 next0 = tcp_next_output (is_ip4);
Florin Corasab0289a2017-08-14 11:25:25 -07002815 tcp_timer_set (child0, TCP_TIMER_ESTABLISH, TCP_SYN_RCVD_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002816
2817 drop:
2818 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2819 {
Clement Durand6cf260c2017-04-13 13:27:04 +02002820 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2821 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
2822 clib_memcpy (&t0->tcp_connection, lc0,
2823 sizeof (t0->tcp_connection));
Dave Barach68b0fb02017-02-28 15:15:56 -05002824 }
2825
Florin Corase04c2992017-03-01 08:17:34 -08002826 b0->error = node->errors[error0];
Dave Barach68b0fb02017-02-28 15:15:56 -05002827
2828 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2829 n_left_to_next, bi0, next0);
2830 }
2831
2832 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2833 }
2834 return from_frame->n_vectors;
2835}
2836
2837static uword
2838tcp4_listen (vlib_main_t * vm, vlib_node_runtime_t * node,
2839 vlib_frame_t * from_frame)
2840{
2841 return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2842}
2843
2844static uword
2845tcp6_listen (vlib_main_t * vm, vlib_node_runtime_t * node,
2846 vlib_frame_t * from_frame)
2847{
2848 return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2849}
2850
2851/* *INDENT-OFF* */
2852VLIB_REGISTER_NODE (tcp4_listen_node) =
2853{
2854 .function = tcp4_listen,
2855 .name = "tcp4-listen",
2856 /* Takes a vector of packets. */
2857 .vector_size = sizeof (u32),
2858 .n_errors = TCP_N_ERROR,
2859 .error_strings = tcp_error_strings,
2860 .n_next_nodes = TCP_LISTEN_N_NEXT,
2861 .next_nodes =
2862 {
2863#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
2864 foreach_tcp_state_next
2865#undef _
2866 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002867 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002868};
2869/* *INDENT-ON* */
2870
2871VLIB_NODE_FUNCTION_MULTIARCH (tcp4_listen_node, tcp4_listen);
2872
2873/* *INDENT-OFF* */
2874VLIB_REGISTER_NODE (tcp6_listen_node) =
2875{
2876 .function = tcp6_listen,
2877 .name = "tcp6-listen",
2878 /* Takes a vector of packets. */
2879 .vector_size = sizeof (u32),
2880 .n_errors = TCP_N_ERROR,
2881 .error_strings = tcp_error_strings,
2882 .n_next_nodes = TCP_LISTEN_N_NEXT,
2883 .next_nodes =
2884 {
2885#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
2886 foreach_tcp_state_next
2887#undef _
2888 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002889 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002890};
2891/* *INDENT-ON* */
2892
2893VLIB_NODE_FUNCTION_MULTIARCH (tcp6_listen_node, tcp6_listen);
2894
2895vlib_node_registration_t tcp4_input_node;
2896vlib_node_registration_t tcp6_input_node;
2897
2898typedef enum _tcp_input_next
2899{
2900 TCP_INPUT_NEXT_DROP,
2901 TCP_INPUT_NEXT_LISTEN,
2902 TCP_INPUT_NEXT_RCV_PROCESS,
2903 TCP_INPUT_NEXT_SYN_SENT,
2904 TCP_INPUT_NEXT_ESTABLISHED,
2905 TCP_INPUT_NEXT_RESET,
Pierre Pfister7fe51f32017-09-20 08:48:36 +02002906 TCP_INPUT_NEXT_PUNT,
Dave Barach68b0fb02017-02-28 15:15:56 -05002907 TCP_INPUT_N_NEXT
2908} tcp_input_next_t;
2909
2910#define foreach_tcp4_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002911 _ (DROP, "ip4-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05002912 _ (LISTEN, "tcp4-listen") \
2913 _ (RCV_PROCESS, "tcp4-rcv-process") \
2914 _ (SYN_SENT, "tcp4-syn-sent") \
2915 _ (ESTABLISHED, "tcp4-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02002916 _ (RESET, "tcp4-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002917 _ (PUNT, "ip4-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05002918
2919#define foreach_tcp6_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002920 _ (DROP, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05002921 _ (LISTEN, "tcp6-listen") \
2922 _ (RCV_PROCESS, "tcp6-rcv-process") \
2923 _ (SYN_SENT, "tcp6-syn-sent") \
2924 _ (ESTABLISHED, "tcp6-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02002925 _ (RESET, "tcp6-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002926 _ (PUNT, "ip6-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05002927
Dave Barach68b0fb02017-02-28 15:15:56 -05002928#define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
2929
2930always_inline uword
2931tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2932 vlib_frame_t * from_frame, int is_ip4)
2933{
2934 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02002935 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002936 tcp_main_t *tm = vnet_get_tcp_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -05002937
2938 from = vlib_frame_vector_args (from_frame);
2939 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002940 next_index = node->cached_next_index;
Florin Coras82d3ec82017-08-14 08:10:42 -07002941 tcp_set_time_now (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05002942
2943 while (n_left_from > 0)
2944 {
2945 u32 n_left_to_next;
2946
2947 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2948
2949 while (n_left_from > 0 && n_left_to_next > 0)
2950 {
Florin Coras82b13a82017-04-25 11:58:06 -07002951 int n_advance_bytes0, n_data_bytes0;
Florin Corascea194d2017-10-02 00:18:51 -07002952 u32 bi0, fib_index0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002953 vlib_buffer_t *b0;
2954 tcp_header_t *tcp0 = 0;
2955 tcp_connection_t *tc0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002956 transport_connection_t *tconn;
Dave Barach68b0fb02017-02-28 15:15:56 -05002957 ip4_header_t *ip40;
2958 ip6_header_t *ip60;
2959 u32 error0 = TCP_ERROR_NO_LISTENER, next0 = TCP_INPUT_NEXT_DROP;
Florin Corasdff48db2017-11-19 18:06:58 -08002960 u8 flags0, is_filtered = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002961
2962 bi0 = from[0];
2963 to_next[0] = bi0;
2964 from += 1;
2965 to_next += 1;
2966 n_left_from -= 1;
2967 n_left_to_next -= 1;
2968
2969 b0 = vlib_get_buffer (vm, bi0);
Florin Corasd79b41e2017-03-04 05:37:52 -08002970 vnet_buffer (b0)->tcp.flags = 0;
Florin Corascea194d2017-10-02 00:18:51 -07002971 fib_index0 = vnet_buffer (b0)->ip.fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002972
Florin Coras82b13a82017-04-25 11:58:06 -07002973 /* Checksum computed by ipx_local no need to compute again */
2974
Dave Barach68b0fb02017-02-28 15:15:56 -05002975 if (is_ip4)
2976 {
2977 ip40 = vlib_buffer_get_current (b0);
2978 tcp0 = ip4_next_header (ip40);
Florin Coras82b13a82017-04-25 11:58:06 -07002979 n_advance_bytes0 = (ip4_header_bytes (ip40)
2980 + tcp_header_bytes (tcp0));
2981 n_data_bytes0 = clib_net_to_host_u16 (ip40->length)
2982 - n_advance_bytes0;
Florin Coras3cbc04b2017-10-02 00:18:51 -07002983 tconn = session_lookup_connection_wt4 (fib_index0,
2984 &ip40->dst_address,
2985 &ip40->src_address,
2986 tcp0->dst_port,
2987 tcp0->src_port,
2988 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08002989 my_thread_index,
2990 &is_filtered);
Dave Barach68b0fb02017-02-28 15:15:56 -05002991 }
2992 else
2993 {
2994 ip60 = vlib_buffer_get_current (b0);
2995 tcp0 = ip6_next_header (ip60);
Florin Coras82b13a82017-04-25 11:58:06 -07002996 n_advance_bytes0 = tcp_header_bytes (tcp0);
2997 n_data_bytes0 = clib_net_to_host_u16 (ip60->payload_length)
2998 - n_advance_bytes0;
2999 n_advance_bytes0 += sizeof (ip60[0]);
Florin Coras3cbc04b2017-10-02 00:18:51 -07003000 tconn = session_lookup_connection_wt6 (fib_index0,
3001 &ip60->dst_address,
3002 &ip60->src_address,
3003 tcp0->dst_port,
3004 tcp0->src_port,
3005 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08003006 my_thread_index,
3007 &is_filtered);
Dave Barach68b0fb02017-02-28 15:15:56 -05003008 }
3009
Florin Coras82b13a82017-04-25 11:58:06 -07003010 /* Length check */
3011 if (PREDICT_FALSE (n_advance_bytes0 < 0))
3012 {
3013 error0 = TCP_ERROR_LENGTH;
3014 goto done;
3015 }
3016
Florin Corasf988e692017-11-27 04:34:14 -05003017 vnet_buffer (b0)->tcp.hdr_offset = (u8 *) tcp0
3018 - (u8 *) vlib_buffer_get_current (b0);
3019
Dave Barach68b0fb02017-02-28 15:15:56 -05003020 /* Session exists */
Florin Corasdff48db2017-11-19 18:06:58 -08003021 if (PREDICT_TRUE (0 != tconn))
Dave Barach68b0fb02017-02-28 15:15:56 -05003022 {
Florin Corasdff48db2017-11-19 18:06:58 -08003023 tc0 = tcp_get_connection_from_transport (tconn);
3024 ASSERT (tcp_lookup_is_valid (tc0, tcp0));
3025
Dave Barach68b0fb02017-02-28 15:15:56 -05003026 /* Save connection index */
3027 vnet_buffer (b0)->tcp.connection_index = tc0->c_c_index;
3028 vnet_buffer (b0)->tcp.seq_number =
3029 clib_net_to_host_u32 (tcp0->seq_number);
3030 vnet_buffer (b0)->tcp.ack_number =
3031 clib_net_to_host_u32 (tcp0->ack_number);
3032
Florin Coras82b13a82017-04-25 11:58:06 -07003033 vnet_buffer (b0)->tcp.data_offset = n_advance_bytes0;
3034 vnet_buffer (b0)->tcp.data_len = n_data_bytes0;
3035
Dave Barach68b0fb02017-02-28 15:15:56 -05003036 flags0 = tcp0->flags & filter_flags;
3037 next0 = tm->dispatch_table[tc0->state][flags0].next;
3038 error0 = tm->dispatch_table[tc0->state][flags0].error;
3039
Florin Corasdc629cd2017-05-09 00:52:37 -07003040 if (PREDICT_FALSE (error0 == TCP_ERROR_DISPATCH
3041 || next0 == TCP_INPUT_NEXT_RESET))
Dave Barach68b0fb02017-02-28 15:15:56 -05003042 {
3043 /* Overload tcp flags to store state */
Florin Corasdc629cd2017-05-09 00:52:37 -07003044 tcp_state_t state0 = tc0->state;
Dave Barach68b0fb02017-02-28 15:15:56 -05003045 vnet_buffer (b0)->tcp.flags = tc0->state;
Florin Corasdc629cd2017-05-09 00:52:37 -07003046
3047 if (error0 == TCP_ERROR_DISPATCH)
3048 clib_warning ("disp error state %U flags %U",
Florin Corasbb292f42017-05-19 09:49:19 -07003049 format_tcp_state, state0, format_tcp_flags,
Florin Corasdc629cd2017-05-09 00:52:37 -07003050 (int) flags0);
Dave Barach68b0fb02017-02-28 15:15:56 -05003051 }
3052 }
3053 else
3054 {
Florin Corasdff48db2017-11-19 18:06:58 -08003055 if (is_filtered)
3056 {
3057 next0 = TCP_INPUT_NEXT_DROP;
3058 error0 = TCP_ERROR_FILTERED;
3059 }
3060 else if ((is_ip4 && tm->punt_unknown4) ||
3061 (!is_ip4 && tm->punt_unknown6))
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003062 {
3063 next0 = TCP_INPUT_NEXT_PUNT;
3064 error0 = TCP_ERROR_PUNT;
3065 }
3066 else
3067 {
3068 /* Send reset */
3069 next0 = TCP_INPUT_NEXT_RESET;
3070 error0 = TCP_ERROR_NO_LISTENER;
3071 }
Florin Corasdff48db2017-11-19 18:06:58 -08003072 tc0 = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003073 }
3074
Florin Coras82b13a82017-04-25 11:58:06 -07003075 done:
Dave Barach68b0fb02017-02-28 15:15:56 -05003076 b0->error = error0 ? node->errors[error0] : 0;
3077
3078 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3079 {
Florin Corasdff48db2017-11-19 18:06:58 -08003080 tcp_rx_trace_t *t0;
3081 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Florin Coras82b13a82017-04-25 11:58:06 -07003082 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05003083 }
Dave Barach68b0fb02017-02-28 15:15:56 -05003084 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
3085 n_left_to_next, bi0, next0);
3086 }
3087
3088 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
3089 }
3090
3091 return from_frame->n_vectors;
3092}
3093
3094static uword
3095tcp4_input (vlib_main_t * vm, vlib_node_runtime_t * node,
3096 vlib_frame_t * from_frame)
3097{
3098 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3099}
3100
3101static uword
3102tcp6_input (vlib_main_t * vm, vlib_node_runtime_t * node,
3103 vlib_frame_t * from_frame)
3104{
3105 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3106}
3107
3108/* *INDENT-OFF* */
3109VLIB_REGISTER_NODE (tcp4_input_node) =
3110{
3111 .function = tcp4_input,
3112 .name = "tcp4-input",
3113 /* Takes a vector of packets. */
3114 .vector_size = sizeof (u32),
3115 .n_errors = TCP_N_ERROR,
3116 .error_strings = tcp_error_strings,
3117 .n_next_nodes = TCP_INPUT_N_NEXT,
3118 .next_nodes =
3119 {
3120#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3121 foreach_tcp4_input_next
3122#undef _
3123 },
3124 .format_buffer = format_tcp_header,
3125 .format_trace = format_tcp_rx_trace,
3126};
3127/* *INDENT-ON* */
3128
3129VLIB_NODE_FUNCTION_MULTIARCH (tcp4_input_node, tcp4_input);
3130
3131/* *INDENT-OFF* */
3132VLIB_REGISTER_NODE (tcp6_input_node) =
3133{
3134 .function = tcp6_input,
3135 .name = "tcp6-input",
3136 /* Takes a vector of packets. */
3137 .vector_size = sizeof (u32),
3138 .n_errors = TCP_N_ERROR,
3139 .error_strings = tcp_error_strings,
3140 .n_next_nodes = TCP_INPUT_N_NEXT,
3141 .next_nodes =
3142 {
3143#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3144 foreach_tcp6_input_next
3145#undef _
3146 },
3147 .format_buffer = format_tcp_header,
3148 .format_trace = format_tcp_rx_trace,
3149};
3150/* *INDENT-ON* */
3151
3152VLIB_NODE_FUNCTION_MULTIARCH (tcp6_input_node, tcp6_input);
Dave Barach68b0fb02017-02-28 15:15:56 -05003153
3154static void
3155tcp_dispatch_table_init (tcp_main_t * tm)
3156{
3157 int i, j;
3158 for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3159 for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3160 {
3161 tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3162 tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3163 }
3164
3165#define _(t,f,n,e) \
3166do { \
3167 tm->dispatch_table[TCP_STATE_##t][f].next = (n); \
3168 tm->dispatch_table[TCP_STATE_##t][f].error = (e); \
3169} while (0)
3170
3171 /* SYNs for new connections -> tcp-listen. */
3172 _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003173 _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
3174 _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003175 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3176 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003177 /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3178 _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc28764f2017-04-26 00:08:42 -07003179 _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003180 _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003181 /* SYN-ACK for a SYN */
3182 _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3183 TCP_ERROR_NONE);
3184 _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3185 _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3186 _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3187 TCP_ERROR_NONE);
3188 /* ACK for for established connection -> tcp-established. */
3189 _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3190 /* FIN for for established connection -> tcp-established. */
3191 _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3192 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3193 TCP_ERROR_NONE);
Florin Corasd79b41e2017-03-04 05:37:52 -08003194 _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003195 _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3196 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003197 _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003198 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3199 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003200 /* ACK or FIN-ACK to our FIN */
3201 _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3202 _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
3203 TCP_ERROR_NONE);
3204 /* FIN in reply to our FIN from the other side */
3205 _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003206 _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003207 /* FIN confirming that the peer (app) has closed */
3208 _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasf6d68ed2017-05-07 19:12:02 -07003209 _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003210 _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3211 TCP_ERROR_NONE);
Florin Corasf03a59a2017-06-09 21:07:32 -07003212 _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3213 _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3214 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003215 _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003216 _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3217 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3218 TCP_ERROR_NONE);
Florin Corasdb84e572017-05-09 18:54:52 -07003219 _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003220 _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3221 _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3222 TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003223 _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras50958952017-08-29 14:50:13 -07003224 _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras9d063042017-09-14 03:08:00 -04003225 _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Corasdc629cd2017-05-09 00:52:37 -07003226 _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras9d063042017-09-14 03:08:00 -04003227 _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003228 TCP_ERROR_CONNECTION_CLOSED);
Dave Barach68b0fb02017-02-28 15:15:56 -05003229#undef _
3230}
3231
3232clib_error_t *
3233tcp_input_init (vlib_main_t * vm)
3234{
3235 clib_error_t *error = 0;
3236 tcp_main_t *tm = vnet_get_tcp_main ();
3237
3238 if ((error = vlib_call_init_function (vm, tcp_init)))
3239 return error;
3240
3241 /* Initialize dispatch table. */
3242 tcp_dispatch_table_init (tm);
3243
3244 return error;
3245}
3246
3247VLIB_INIT_FUNCTION (tcp_input_init);
3248
3249/*
3250 * fd.io coding-style-patch-verification: ON
3251 *
3252 * Local Variables:
3253 * eval: (c-set-style "gnu")
3254 * End:
3255 */