blob: 19ecc7deef86ea57047741da1764794b67ddc3a1 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vppinfra/sparse_vec.h>
17#include <vnet/tcp/tcp_packet.h>
18#include <vnet/tcp/tcp.h>
19#include <vnet/session/session.h>
20#include <math.h>
21
22static char *tcp_error_strings[] = {
23#define tcp_error(n,s) s,
24#include <vnet/tcp/tcp_error.def>
25#undef tcp_error
26};
27
28/* All TCP nodes have the same outgoing arcs */
29#define foreach_tcp_state_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080030 _ (DROP4, "ip4-drop") \
31 _ (DROP6, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -050032 _ (TCP4_OUTPUT, "tcp4-output") \
33 _ (TCP6_OUTPUT, "tcp6-output")
34
35typedef enum _tcp_established_next
36{
37#define _(s,n) TCP_ESTABLISHED_NEXT_##s,
38 foreach_tcp_state_next
39#undef _
40 TCP_ESTABLISHED_N_NEXT,
41} tcp_established_next_t;
42
43typedef enum _tcp_rcv_process_next
44{
45#define _(s,n) TCP_RCV_PROCESS_NEXT_##s,
46 foreach_tcp_state_next
47#undef _
48 TCP_RCV_PROCESS_N_NEXT,
49} tcp_rcv_process_next_t;
50
51typedef enum _tcp_syn_sent_next
52{
53#define _(s,n) TCP_SYN_SENT_NEXT_##s,
54 foreach_tcp_state_next
55#undef _
56 TCP_SYN_SENT_N_NEXT,
57} tcp_syn_sent_next_t;
58
59typedef enum _tcp_listen_next
60{
61#define _(s,n) TCP_LISTEN_NEXT_##s,
62 foreach_tcp_state_next
63#undef _
64 TCP_LISTEN_N_NEXT,
65} tcp_listen_next_t;
66
67/* Generic, state independent indices */
68typedef enum _tcp_state_next
69{
70#define _(s,n) TCP_NEXT_##s,
71 foreach_tcp_state_next
72#undef _
73 TCP_STATE_N_NEXT,
74} tcp_state_next_t;
75
76#define tcp_next_output(is_ip4) (is_ip4 ? TCP_NEXT_TCP4_OUTPUT \
77 : TCP_NEXT_TCP6_OUTPUT)
78
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080079#define tcp_next_drop(is_ip4) (is_ip4 ? TCP_NEXT_DROP4 \
80 : TCP_NEXT_DROP6)
81
Dave Barach68b0fb02017-02-28 15:15:56 -050082vlib_node_registration_t tcp4_established_node;
83vlib_node_registration_t tcp6_established_node;
84
85/**
86 * Validate segment sequence number. As per RFC793:
87 *
88 * Segment Receive Test
89 * Length Window
90 * ------- ------- -------------------------------------------
91 * 0 0 SEG.SEQ = RCV.NXT
92 * 0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
93 * >0 0 not acceptable
94 * >0 >0 RCV.NXT =< SEG.SEQ < RCV.NXT+RCV.WND
95 * or RCV.NXT =< SEG.SEQ+SEG.LEN-1 < RCV.NXT+RCV.WND
96 *
97 * This ultimately consists in checking if segment falls within the window.
98 * The one important difference compared to RFC793 is that we use rcv_las,
99 * or the rcv_nxt at last ack sent instead of rcv_nxt since that's the
100 * peer's reference when computing our receive window.
101 *
Florin Coras6792ec02017-03-13 03:49:51 -0700102 * This:
103 * seq_leq (end_seq, tc->rcv_las + tc->rcv_wnd) && seq_geq (seq, tc->rcv_las)
104 * however, is too strict when we have retransmits. Instead we just check that
105 * the seq is not beyond the right edge and that the end of the segment is not
106 * less than the left edge.
107 *
108 * N.B. rcv_nxt and rcv_wnd are both updated in this node if acks are sent, so
109 * use rcv_nxt in the right edge window test instead of rcv_las.
110 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500111 */
112always_inline u8
113tcp_segment_in_rcv_wnd (tcp_connection_t * tc, u32 seq, u32 end_seq)
114{
Florin Coras6792ec02017-03-13 03:49:51 -0700115 return (seq_geq (end_seq, tc->rcv_las)
116 && seq_leq (seq, tc->rcv_nxt + tc->rcv_wnd));
Dave Barach68b0fb02017-02-28 15:15:56 -0500117}
118
Florin Corasdb84e572017-05-09 18:54:52 -0700119/**
120 * Parse TCP header options.
121 *
122 * @param th TCP header
123 * @param to TCP options data structure to be populated
124 * @return -1 if parsing failed
125 */
126int
Dave Barach68b0fb02017-02-28 15:15:56 -0500127tcp_options_parse (tcp_header_t * th, tcp_options_t * to)
128{
129 const u8 *data;
130 u8 opt_len, opts_len, kind;
131 int j;
132 sack_block_t b;
133
134 opts_len = (tcp_doff (th) << 2) - sizeof (tcp_header_t);
135 data = (const u8 *) (th + 1);
136
137 /* Zero out all flags but those set in SYN */
138 to->flags &= (TCP_OPTS_FLAG_SACK_PERMITTED | TCP_OPTS_FLAG_WSCALE);
139
140 for (; opts_len > 0; opts_len -= opt_len, data += opt_len)
141 {
142 kind = data[0];
143
144 /* Get options length */
145 if (kind == TCP_OPTION_EOL)
146 break;
147 else if (kind == TCP_OPTION_NOOP)
Florin Corasdb84e572017-05-09 18:54:52 -0700148 {
149 opt_len = 1;
150 continue;
151 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500152 else
153 {
154 /* broken options */
155 if (opts_len < 2)
Florin Corasdb84e572017-05-09 18:54:52 -0700156 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500157 opt_len = data[1];
158
159 /* weird option length */
160 if (opt_len < 2 || opt_len > opts_len)
Florin Corasdb84e572017-05-09 18:54:52 -0700161 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500162 }
163
164 /* Parse options */
165 switch (kind)
166 {
167 case TCP_OPTION_MSS:
168 if ((opt_len == TCP_OPTION_LEN_MSS) && tcp_syn (th))
169 {
170 to->flags |= TCP_OPTS_FLAG_MSS;
171 to->mss = clib_net_to_host_u16 (*(u16 *) (data + 2));
172 }
173 break;
174 case TCP_OPTION_WINDOW_SCALE:
175 if ((opt_len == TCP_OPTION_LEN_WINDOW_SCALE) && tcp_syn (th))
176 {
177 to->flags |= TCP_OPTS_FLAG_WSCALE;
178 to->wscale = data[2];
179 if (to->wscale > TCP_MAX_WND_SCALE)
180 {
181 clib_warning ("Illegal window scaling value: %d",
182 to->wscale);
183 to->wscale = TCP_MAX_WND_SCALE;
184 }
185 }
186 break;
187 case TCP_OPTION_TIMESTAMP:
188 if (opt_len == TCP_OPTION_LEN_TIMESTAMP)
189 {
190 to->flags |= TCP_OPTS_FLAG_TSTAMP;
191 to->tsval = clib_net_to_host_u32 (*(u32 *) (data + 2));
192 to->tsecr = clib_net_to_host_u32 (*(u32 *) (data + 6));
193 }
194 break;
195 case TCP_OPTION_SACK_PERMITTED:
196 if (opt_len == TCP_OPTION_LEN_SACK_PERMITTED && tcp_syn (th))
197 to->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
198 break;
199 case TCP_OPTION_SACK_BLOCK:
200 /* If SACK permitted was not advertised or a SYN, break */
201 if ((to->flags & TCP_OPTS_FLAG_SACK_PERMITTED) == 0 || tcp_syn (th))
202 break;
203
204 /* If too short or not correctly formatted, break */
205 if (opt_len < 10 || ((opt_len - 2) % TCP_OPTION_LEN_SACK_BLOCK))
206 break;
207
208 to->flags |= TCP_OPTS_FLAG_SACK;
209 to->n_sack_blocks = (opt_len - 2) / TCP_OPTION_LEN_SACK_BLOCK;
210 vec_reset_length (to->sacks);
211 for (j = 0; j < to->n_sack_blocks; j++)
212 {
Florin Coras3eb50622017-07-13 01:24:57 -0400213 b.start = clib_net_to_host_u32 (*(u32 *) (data + 2 + 8 * j));
214 b.end = clib_net_to_host_u32 (*(u32 *) (data + 6 + 8 * j));
Dave Barach68b0fb02017-02-28 15:15:56 -0500215 vec_add1 (to->sacks, b);
216 }
217 break;
218 default:
219 /* Nothing to see here */
220 continue;
221 }
222 }
Florin Corasdb84e572017-05-09 18:54:52 -0700223 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500224}
225
Florin Corasc28764f2017-04-26 00:08:42 -0700226/**
227 * RFC1323: Check against wrapped sequence numbers (PAWS). If we have
228 * timestamp to echo and it's less than tsval_recent, drop segment
229 * but still send an ACK in order to retain TCP's mechanism for detecting
230 * and recovering from half-open connections
231 *
232 * Or at least that's what the theory says. It seems that this might not work
233 * very well with packet reordering and fast retransmit. XXX
234 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500235always_inline int
236tcp_segment_check_paws (tcp_connection_t * tc)
237{
Florin Coras93992a92017-05-24 18:03:56 -0700238 return tcp_opts_tstamp (&tc->rcv_opts) && tc->tsval_recent
239 && timestamp_lt (tc->rcv_opts.tsval, tc->tsval_recent);
Dave Barach68b0fb02017-02-28 15:15:56 -0500240}
241
242/**
Florin Corasc28764f2017-04-26 00:08:42 -0700243 * Update tsval recent
244 */
245always_inline void
246tcp_update_timestamp (tcp_connection_t * tc, u32 seq, u32 seq_end)
247{
248 /*
249 * RFC1323: If Last.ACK.sent falls within the range of sequence numbers
250 * of an incoming segment:
251 * SEG.SEQ <= Last.ACK.sent < SEG.SEQ + SEG.LEN
252 * then the TSval from the segment is copied to TS.Recent;
253 * otherwise, the TSval is ignored.
254 */
Florin Corasf1762d62017-09-24 19:43:08 -0400255 if (tcp_opts_tstamp (&tc->rcv_opts) && seq_leq (seq, tc->rcv_las)
256 && seq_leq (tc->rcv_las, seq_end))
Florin Corasc28764f2017-04-26 00:08:42 -0700257 {
Dave Barach2c25a622017-06-26 11:35:07 -0400258 ASSERT (timestamp_leq (tc->tsval_recent, tc->rcv_opts.tsval));
Florin Coras93992a92017-05-24 18:03:56 -0700259 tc->tsval_recent = tc->rcv_opts.tsval;
Florin Corasc28764f2017-04-26 00:08:42 -0700260 tc->tsval_recent_age = tcp_time_now ();
261 }
262}
263
264/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500265 * Validate incoming segment as per RFC793 p. 69 and RFC1323 p. 19
266 *
267 * It first verifies if segment has a wrapped sequence number (PAWS) and then
268 * does the processing associated to the first four steps (ignoring security
269 * and precedence): sequence number, rst bit and syn bit checks.
270 *
271 * @return 0 if segments passes validation.
272 */
273static int
274tcp_segment_validate (vlib_main_t * vm, tcp_connection_t * tc0,
Florin Coras00cd22d2018-04-18 13:20:18 -0700275 vlib_buffer_t * b0, tcp_header_t * th0,
276 u32 * next0, u32 * error0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500277{
Florin Corasca1c8f32018-05-23 21:01:30 -0700278 /* We could get a burst of RSTs interleaved with acks */
279 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
280 {
281 tcp_send_reset (tc0);
282 *error0 = TCP_ERROR_CONNECTION_CLOSED;
283 goto drop;
284 }
285
Dave Barach68b0fb02017-02-28 15:15:56 -0500286 if (PREDICT_FALSE (!tcp_ack (th0) && !tcp_rst (th0) && !tcp_syn (th0)))
Florin Coras00cd22d2018-04-18 13:20:18 -0700287 {
288 *error0 = TCP_ERROR_SEGMENT_INVALID;
289 goto drop;
290 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500291
Florin Coras93992a92017-05-24 18:03:56 -0700292 if (PREDICT_FALSE (tcp_options_parse (th0, &tc0->rcv_opts)))
Florin Corasdb84e572017-05-09 18:54:52 -0700293 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400294 clib_warning ("options parse error");
Florin Coras00cd22d2018-04-18 13:20:18 -0700295 *error0 = TCP_ERROR_OPTIONS;
296 goto drop;
Florin Corasdb84e572017-05-09 18:54:52 -0700297 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500298
Florin Coras00cd22d2018-04-18 13:20:18 -0700299 if (PREDICT_FALSE (tcp_segment_check_paws (tc0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500300 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700301 *error0 = TCP_ERROR_PAWS;
Florin Coras93992a92017-05-24 18:03:56 -0700302 if (CLIB_DEBUG > 2)
Florin Corasca1c8f32018-05-23 21:01:30 -0700303 clib_warning ("paws failed\n%U", format_tcp_connection, tc0, 2);
Florin Corasc28764f2017-04-26 00:08:42 -0700304 TCP_EVT_DBG (TCP_EVT_PAWS_FAIL, tc0, vnet_buffer (b0)->tcp.seq_number,
305 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500306
307 /* If it just so happens that a segment updates tsval_recent for a
308 * segment over 24 days old, invalidate tsval_recent. */
309 if (timestamp_lt (tc0->tsval_recent_age + TCP_PAWS_IDLE,
310 tcp_time_now ()))
311 {
312 /* Age isn't reset until we get a valid tsval (bsd inspired) */
313 tc0->tsval_recent = 0;
Florin Corasc28764f2017-04-26 00:08:42 -0700314 clib_warning ("paws failed - really old segment. REALLY?");
Dave Barach68b0fb02017-02-28 15:15:56 -0500315 }
316 else
317 {
318 /* Drop after ack if not rst */
319 if (!tcp_rst (th0))
320 {
321 tcp_make_ack (tc0, b0);
Florin Corasca1c8f32018-05-23 21:01:30 -0700322 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
Florin Coras00cd22d2018-04-18 13:20:18 -0700323 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500324 }
325 }
Florin Coras00cd22d2018-04-18 13:20:18 -0700326 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -0500327 }
328
329 /* 1st: check sequence number */
330 if (!tcp_segment_in_rcv_wnd (tc0, vnet_buffer (b0)->tcp.seq_number,
331 vnet_buffer (b0)->tcp.seq_end))
332 {
Florin Coras00cd22d2018-04-18 13:20:18 -0700333 *error0 = TCP_ERROR_RCV_WND;
Florin Coras6792ec02017-03-13 03:49:51 -0700334 /* If our window is 0 and the packet is in sequence, let it pass
Florin Coras00cd22d2018-04-18 13:20:18 -0700335 * through for ack processing. It should be dropped later. */
336 if (!(tc0->rcv_wnd == 0
337 && tc0->rcv_nxt == vnet_buffer (b0)->tcp.seq_number))
Florin Coras6792ec02017-03-13 03:49:51 -0700338 {
339 /* If not RST, send dup ack */
340 if (!tcp_rst (th0))
341 {
342 tcp_make_ack (tc0, b0);
Florin Corasca1c8f32018-05-23 21:01:30 -0700343 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc0, vnet_buffer (b0)->tcp);
Florin Coras00cd22d2018-04-18 13:20:18 -0700344 goto error;
Florin Coras6792ec02017-03-13 03:49:51 -0700345 }
Florin Coras00cd22d2018-04-18 13:20:18 -0700346 goto drop;
Florin Coras6792ec02017-03-13 03:49:51 -0700347 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500348 }
349
350 /* 2nd: check the RST bit */
Florin Coras00cd22d2018-04-18 13:20:18 -0700351 if (PREDICT_FALSE (tcp_rst (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500352 {
Florin Corasd79b41e2017-03-04 05:37:52 -0800353 tcp_connection_reset (tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -0700354 *error0 = TCP_ERROR_RST_RCVD;
355 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -0500356 }
357
358 /* 3rd: check security and precedence (skip) */
359
360 /* 4th: check the SYN bit */
Florin Coras00cd22d2018-04-18 13:20:18 -0700361 if (PREDICT_FALSE (tcp_syn (th0)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500362 {
Florin Coras6534b7a2017-07-18 05:38:03 -0400363 /* TODO implement RFC 5961 */
Florin Coras9d063042017-09-14 03:08:00 -0400364 if (tc0->state == TCP_STATE_SYN_RCVD)
365 {
366 tcp_make_synack (tc0, b0);
367 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, tc0, 0);
368 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400369 else
Florin Coras9d063042017-09-14 03:08:00 -0400370 {
371 tcp_make_ack (tc0, b0);
372 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, tc0);
373 }
Florin Coras00cd22d2018-04-18 13:20:18 -0700374 goto error;
Dave Barach68b0fb02017-02-28 15:15:56 -0500375 }
376
Florin Corasc28764f2017-04-26 00:08:42 -0700377 /* If segment in window, save timestamp */
378 tcp_update_timestamp (tc0, vnet_buffer (b0)->tcp.seq_number,
379 vnet_buffer (b0)->tcp.seq_end);
Dave Barach68b0fb02017-02-28 15:15:56 -0500380 return 0;
Florin Coras00cd22d2018-04-18 13:20:18 -0700381
382drop:
383 *next0 = tcp_next_drop (tc0->c_is_ip4);
384 return -1;
385error:
386 *next0 = tcp_next_output (tc0->c_is_ip4);
387 return -1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500388}
389
390always_inline int
391tcp_rcv_ack_is_acceptable (tcp_connection_t * tc0, vlib_buffer_t * tb0)
392{
393 /* SND.UNA =< SEG.ACK =< SND.NXT */
394 return (seq_leq (tc0->snd_una, vnet_buffer (tb0)->tcp.ack_number)
395 && seq_leq (vnet_buffer (tb0)->tcp.ack_number, tc0->snd_nxt));
396}
397
398/**
399 * Compute smoothed RTT as per VJ's '88 SIGCOMM and RFC6298
400 *
401 * Note that although the original article, srtt and rttvar are scaled
402 * to minimize round-off errors, here we don't. Instead, we rely on
403 * better precision time measurements.
404 *
405 * TODO support us rtt resolution
406 */
407static void
408tcp_estimate_rtt (tcp_connection_t * tc, u32 mrtt)
409{
Florin Corasf03a59a2017-06-09 21:07:32 -0700410 int err, diff;
Dave Barach68b0fb02017-02-28 15:15:56 -0500411
412 if (tc->srtt != 0)
413 {
414 err = mrtt - tc->srtt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500415
416 /* XXX Drop in RTT results in RTTVAR increase and bigger RTO.
417 * The increase should be bound */
Florin Corasf03a59a2017-06-09 21:07:32 -0700418 tc->srtt = clib_max ((int) tc->srtt + (err >> 3), 1);
419 diff = (clib_abs (err) - (int) tc->rttvar) >> 2;
420 tc->rttvar = clib_max ((int) tc->rttvar + diff, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500421 }
422 else
423 {
424 /* First measurement. */
425 tc->srtt = mrtt;
Florin Coras6792ec02017-03-13 03:49:51 -0700426 tc->rttvar = mrtt >> 1;
Dave Barach68b0fb02017-02-28 15:15:56 -0500427 }
428}
429
Florin Coras93992a92017-05-24 18:03:56 -0700430void
431tcp_update_rto (tcp_connection_t * tc)
432{
433 tc->rto = clib_min (tc->srtt + (tc->rttvar << 2), TCP_RTO_MAX);
Florin Corasf03a59a2017-06-09 21:07:32 -0700434 tc->rto = clib_max (tc->rto, TCP_RTO_MIN);
Florin Coras93992a92017-05-24 18:03:56 -0700435}
436
Florin Corasf1762d62017-09-24 19:43:08 -0400437/**
438 * Update RTT estimate and RTO timer
Dave Barach68b0fb02017-02-28 15:15:56 -0500439 *
440 * Measure RTT: We have two sources of RTT measurements: TSOPT and ACK
441 * timing. Middle boxes are known to fiddle with TCP options so we
442 * should give higher priority to ACK timing.
443 *
Florin Corasf1762d62017-09-24 19:43:08 -0400444 * This should be called only if previously sent bytes have been acked.
445 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500446 * return 1 if valid rtt 0 otherwise
447 */
448static int
449tcp_update_rtt (tcp_connection_t * tc, u32 ack)
450{
451 u32 mrtt = 0;
452
453 /* Karn's rule, part 1. Don't use retransmitted segments to estimate
454 * RTT because they're ambiguous. */
Florin Corasf1762d62017-09-24 19:43:08 -0400455 if (tcp_in_cong_recovery (tc) || tc->sack_sb.sacked_bytes)
456 goto done;
457
458 if (tc->rtt_ts && seq_geq (ack, tc->rtt_seq))
Dave Barach68b0fb02017-02-28 15:15:56 -0500459 {
460 mrtt = tcp_time_now () - tc->rtt_ts;
Dave Barach68b0fb02017-02-28 15:15:56 -0500461 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500462 /* As per RFC7323 TSecr can be used for RTTM only if the segment advances
463 * snd_una, i.e., the left side of the send window:
Florin Corasf1762d62017-09-24 19:43:08 -0400464 * seq_lt (tc->snd_una, ack). This is a condition for calling update_rtt */
465 else if (tcp_opts_tstamp (&tc->rcv_opts) && tc->rcv_opts.tsecr)
Dave Barach68b0fb02017-02-28 15:15:56 -0500466 {
Florin Coras93992a92017-05-24 18:03:56 -0700467 mrtt = tcp_time_now () - tc->rcv_opts.tsecr;
Dave Barach68b0fb02017-02-28 15:15:56 -0500468 }
469
Florin Corasf1762d62017-09-24 19:43:08 -0400470 /* Ignore dubious measurements */
471 if (mrtt == 0 || mrtt > TCP_RTT_MAX)
472 goto done;
473
474 tcp_estimate_rtt (tc, mrtt);
475
476done:
477
Florin Coras3af90fc2017-05-03 21:09:42 -0700478 /* Allow measuring of a new RTT */
479 tc->rtt_ts = 0;
480
Florin Corasf1762d62017-09-24 19:43:08 -0400481 /* If we got here something must've been ACKed so make sure boff is 0,
482 * even if mrrt is not valid since we update the rto lower */
483 tc->rto_boff = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700484 tcp_update_rto (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500485
Florin Coras3af90fc2017-05-03 21:09:42 -0700486 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500487}
488
489/**
490 * Dequeue bytes that have been acked and while at it update RTT estimates.
491 */
492static void
493tcp_dequeue_acked (tcp_connection_t * tc, u32 ack)
494{
Florin Coras93992a92017-05-24 18:03:56 -0700495 /* Dequeue the newly ACKed add SACKed bytes */
496 stream_session_dequeue_drop (&tc->connection,
497 tc->bytes_acked + tc->sack_sb.snd_una_adv);
498
499 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
Dave Barach68b0fb02017-02-28 15:15:56 -0500500
501 /* Update rtt and rto */
Florin Coras3e350af2017-03-30 02:54:28 -0700502 tcp_update_rtt (tc, ack);
Florin Coras93992a92017-05-24 18:03:56 -0700503
504 /* If everything has been acked, stop retransmit timer
505 * otherwise update. */
506 tcp_retransmit_timer_update (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500507}
508
Florin Coras6792ec02017-03-13 03:49:51 -0700509/**
Florin Coras93992a92017-05-24 18:03:56 -0700510 * Check if duplicate ack as per RFC5681 Sec. 2
511 */
512static u8
513tcp_ack_is_dupack (tcp_connection_t * tc, vlib_buffer_t * b, u32 prev_snd_wnd,
514 u32 prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500515{
Florin Coras93992a92017-05-24 18:03:56 -0700516 return ((vnet_buffer (b)->tcp.ack_number == prev_snd_una)
Dave Barach68b0fb02017-02-28 15:15:56 -0500517 && seq_gt (tc->snd_una_max, tc->snd_una)
518 && (vnet_buffer (b)->tcp.seq_end == vnet_buffer (b)->tcp.seq_number)
Florin Coras93992a92017-05-24 18:03:56 -0700519 && (prev_snd_wnd == tc->snd_wnd));
520}
521
522/**
523 * Checks if ack is a congestion control event.
524 */
525static u8
526tcp_ack_is_cc_event (tcp_connection_t * tc, vlib_buffer_t * b,
527 u32 prev_snd_wnd, u32 prev_snd_una, u8 * is_dack)
528{
529 /* Check if ack is duplicate. Per RFC 6675, ACKs that SACK new data are
530 * defined to be 'duplicate' */
531 *is_dack = tc->sack_sb.last_sacked_bytes
532 || tcp_ack_is_dupack (tc, b, prev_snd_wnd, prev_snd_una);
533
Dave Barach2c25a622017-06-26 11:35:07 -0400534 return ((*is_dack || tcp_in_cong_recovery (tc)) && !tcp_is_lost_fin (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -0500535}
536
537void
538scoreboard_remove_hole (sack_scoreboard_t * sb, sack_scoreboard_hole_t * hole)
539{
540 sack_scoreboard_hole_t *next, *prev;
541
542 if (hole->next != TCP_INVALID_SACK_HOLE_INDEX)
543 {
544 next = pool_elt_at_index (sb->holes, hole->next);
545 next->prev = hole->prev;
546 }
Florin Coras93992a92017-05-24 18:03:56 -0700547 else
548 {
549 sb->tail = hole->prev;
550 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500551
552 if (hole->prev != TCP_INVALID_SACK_HOLE_INDEX)
553 {
554 prev = pool_elt_at_index (sb->holes, hole->prev);
555 prev->next = hole->next;
556 }
557 else
558 {
559 sb->head = hole->next;
560 }
561
Florin Coras93992a92017-05-24 18:03:56 -0700562 if (scoreboard_hole_index (sb, hole) == sb->cur_rxt_hole)
563 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
564
Florin Coras3eb50622017-07-13 01:24:57 -0400565 /* Poison the entry */
566 if (CLIB_DEBUG > 0)
567 memset (hole, 0xfe, sizeof (*hole));
568
Dave Barach68b0fb02017-02-28 15:15:56 -0500569 pool_put (sb->holes, hole);
570}
571
572sack_scoreboard_hole_t *
Florin Coras6792ec02017-03-13 03:49:51 -0700573scoreboard_insert_hole (sack_scoreboard_t * sb, u32 prev_index,
Dave Barach68b0fb02017-02-28 15:15:56 -0500574 u32 start, u32 end)
575{
Florin Coras6792ec02017-03-13 03:49:51 -0700576 sack_scoreboard_hole_t *hole, *next, *prev;
Dave Barach68b0fb02017-02-28 15:15:56 -0500577 u32 hole_index;
578
579 pool_get (sb->holes, hole);
580 memset (hole, 0, sizeof (*hole));
581
582 hole->start = start;
583 hole->end = end;
Florin Coras3eb50622017-07-13 01:24:57 -0400584 hole_index = scoreboard_hole_index (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500585
Florin Coras6792ec02017-03-13 03:49:51 -0700586 prev = scoreboard_get_hole (sb, prev_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500587 if (prev)
588 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700589 hole->prev = prev_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500590 hole->next = prev->next;
591
592 if ((next = scoreboard_next_hole (sb, hole)))
593 next->prev = hole_index;
Florin Corasf03a59a2017-06-09 21:07:32 -0700594 else
595 sb->tail = hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500596
597 prev->next = hole_index;
598 }
599 else
600 {
601 sb->head = hole_index;
602 hole->prev = TCP_INVALID_SACK_HOLE_INDEX;
603 hole->next = TCP_INVALID_SACK_HOLE_INDEX;
604 }
605
606 return hole;
607}
608
Florin Coras6792ec02017-03-13 03:49:51 -0700609void
Florin Corasf03a59a2017-06-09 21:07:32 -0700610scoreboard_update_bytes (tcp_connection_t * tc, sack_scoreboard_t * sb)
Florin Coras93992a92017-05-24 18:03:56 -0700611{
612 sack_scoreboard_hole_t *hole, *prev;
613 u32 bytes = 0, blks = 0;
614
615 sb->lost_bytes = 0;
Florin Corasf03a59a2017-06-09 21:07:32 -0700616 sb->sacked_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -0700617 hole = scoreboard_last_hole (sb);
618 if (!hole)
619 return;
620
621 if (seq_gt (sb->high_sacked, hole->end))
622 {
623 bytes = sb->high_sacked - hole->end;
624 blks = 1;
625 }
626
627 while ((prev = scoreboard_prev_hole (sb, hole))
628 && (bytes < (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss
629 && blks < TCP_DUPACK_THRESHOLD))
630 {
631 bytes += hole->start - prev->end;
632 blks++;
633 hole = prev;
634 }
635
Florin Coras93992a92017-05-24 18:03:56 -0700636 while (hole)
637 {
638 sb->lost_bytes += scoreboard_hole_bytes (hole);
639 hole->is_lost = 1;
Florin Corasf03a59a2017-06-09 21:07:32 -0700640 prev = hole;
Florin Coras93992a92017-05-24 18:03:56 -0700641 hole = scoreboard_prev_hole (sb, hole);
Florin Corasf03a59a2017-06-09 21:07:32 -0700642 if (hole)
643 bytes += prev->start - hole->end;
Florin Coras93992a92017-05-24 18:03:56 -0700644 }
Florin Corasf03a59a2017-06-09 21:07:32 -0700645 sb->sacked_bytes = bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700646}
647
648/**
649 * Figure out the next hole to retransmit
650 *
651 * Follows logic proposed in RFC6675 Sec. 4, NextSeg()
652 */
653sack_scoreboard_hole_t *
654scoreboard_next_rxt_hole (sack_scoreboard_t * sb,
655 sack_scoreboard_hole_t * start,
656 u8 have_sent_1_smss,
657 u8 * can_rescue, u8 * snd_limited)
658{
659 sack_scoreboard_hole_t *hole = 0;
660
661 hole = start ? start : scoreboard_first_hole (sb);
662 while (hole && seq_leq (hole->end, sb->high_rxt) && hole->is_lost)
663 hole = scoreboard_next_hole (sb, hole);
664
665 /* Nothing, return */
666 if (!hole)
667 {
668 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
669 return 0;
670 }
671
672 /* Rule (1): if higher than rxt, less than high_sacked and lost */
673 if (hole->is_lost && seq_lt (hole->start, sb->high_sacked))
674 {
675 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
676 }
677 else
678 {
679 /* Rule (2): output takes care of transmitting new data */
680 if (!have_sent_1_smss)
681 {
682 hole = 0;
683 sb->cur_rxt_hole = TCP_INVALID_SACK_HOLE_INDEX;
684 }
685 /* Rule (3): if hole not lost */
686 else if (seq_lt (hole->start, sb->high_sacked))
687 {
688 *snd_limited = 1;
689 sb->cur_rxt_hole = scoreboard_hole_index (sb, hole);
690 }
691 /* Rule (4): if hole beyond high_sacked */
692 else
693 {
694 ASSERT (seq_geq (hole->start, sb->high_sacked));
695 *snd_limited = 1;
696 *can_rescue = 1;
697 /* HighRxt MUST NOT be updated */
698 return 0;
699 }
700 }
701
702 if (hole && seq_lt (sb->high_rxt, hole->start))
703 sb->high_rxt = hole->start;
704
705 return hole;
706}
707
708void
Florin Coras3eb50622017-07-13 01:24:57 -0400709scoreboard_init_high_rxt (sack_scoreboard_t * sb, u32 seq)
Florin Coras93992a92017-05-24 18:03:56 -0700710{
711 sack_scoreboard_hole_t *hole;
712 hole = scoreboard_first_hole (sb);
Florin Coras3eb50622017-07-13 01:24:57 -0400713 if (hole)
714 {
715 seq = seq_gt (seq, hole->start) ? seq : hole->start;
716 sb->cur_rxt_hole = sb->head;
717 }
718 sb->high_rxt = seq;
719}
720
721/**
722 * Test that scoreboard is sane after recovery
723 *
724 * Returns 1 if scoreboard is empty or if first hole beyond
725 * snd_una.
726 */
727u8
728tcp_scoreboard_is_sane_post_recovery (tcp_connection_t * tc)
729{
730 sack_scoreboard_hole_t *hole;
731 hole = scoreboard_first_hole (&tc->sack_sb);
732 return (!hole || seq_geq (hole->start, tc->snd_una));
Florin Coras93992a92017-05-24 18:03:56 -0700733}
734
735void
Dave Barach68b0fb02017-02-28 15:15:56 -0500736tcp_rcv_sacks (tcp_connection_t * tc, u32 ack)
737{
738 sack_scoreboard_t *sb = &tc->sack_sb;
739 sack_block_t *blk, tmp;
Florin Corasf03a59a2017-06-09 21:07:32 -0700740 sack_scoreboard_hole_t *hole, *next_hole, *last_hole;
Florin Coras93992a92017-05-24 18:03:56 -0700741 u32 blk_index = 0, old_sacked_bytes, hole_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500742 int i, j;
743
Florin Coras6792ec02017-03-13 03:49:51 -0700744 sb->last_sacked_bytes = 0;
745 sb->snd_una_adv = 0;
746 old_sacked_bytes = sb->sacked_bytes;
Florin Coras93992a92017-05-24 18:03:56 -0700747 sb->last_bytes_delivered = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700748
Florin Coras93992a92017-05-24 18:03:56 -0700749 if (!tcp_opts_sack (&tc->rcv_opts)
750 && sb->head == TCP_INVALID_SACK_HOLE_INDEX)
Dave Barach68b0fb02017-02-28 15:15:56 -0500751 return;
752
753 /* Remove invalid blocks */
Florin Coras93992a92017-05-24 18:03:56 -0700754 blk = tc->rcv_opts.sacks;
755 while (blk < vec_end (tc->rcv_opts.sacks))
Florin Coras6792ec02017-03-13 03:49:51 -0700756 {
757 if (seq_lt (blk->start, blk->end)
758 && seq_gt (blk->start, tc->snd_una)
Florin Coras3eb50622017-07-13 01:24:57 -0400759 && seq_gt (blk->start, ack) && seq_leq (blk->end, tc->snd_una_max))
Florin Coras6792ec02017-03-13 03:49:51 -0700760 {
761 blk++;
762 continue;
763 }
Florin Coras93992a92017-05-24 18:03:56 -0700764 vec_del1 (tc->rcv_opts.sacks, blk - tc->rcv_opts.sacks);
Florin Coras6792ec02017-03-13 03:49:51 -0700765 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500766
767 /* Add block for cumulative ack */
768 if (seq_gt (ack, tc->snd_una))
769 {
770 tmp.start = tc->snd_una;
771 tmp.end = ack;
Florin Coras93992a92017-05-24 18:03:56 -0700772 vec_add1 (tc->rcv_opts.sacks, tmp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500773 }
774
Florin Coras93992a92017-05-24 18:03:56 -0700775 if (vec_len (tc->rcv_opts.sacks) == 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500776 return;
777
Florin Coras3eb50622017-07-13 01:24:57 -0400778 tcp_scoreboard_trace_add (tc, ack);
779
Dave Barach68b0fb02017-02-28 15:15:56 -0500780 /* Make sure blocks are ordered */
Florin Coras93992a92017-05-24 18:03:56 -0700781 for (i = 0; i < vec_len (tc->rcv_opts.sacks); i++)
782 for (j = i + 1; j < vec_len (tc->rcv_opts.sacks); j++)
783 if (seq_lt (tc->rcv_opts.sacks[j].start, tc->rcv_opts.sacks[i].start))
Dave Barach68b0fb02017-02-28 15:15:56 -0500784 {
Florin Coras93992a92017-05-24 18:03:56 -0700785 tmp = tc->rcv_opts.sacks[i];
786 tc->rcv_opts.sacks[i] = tc->rcv_opts.sacks[j];
787 tc->rcv_opts.sacks[j] = tmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500788 }
789
Dave Barach68b0fb02017-02-28 15:15:56 -0500790 if (sb->head == TCP_INVALID_SACK_HOLE_INDEX)
791 {
Florin Coras6792ec02017-03-13 03:49:51 -0700792 /* If no holes, insert the first that covers all outstanding bytes */
793 last_hole = scoreboard_insert_hole (sb, TCP_INVALID_SACK_HOLE_INDEX,
794 tc->snd_una, tc->snd_una_max);
795 sb->tail = scoreboard_hole_index (sb, last_hole);
Florin Coras93992a92017-05-24 18:03:56 -0700796 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
797 sb->high_sacked = tmp.end;
Florin Coras6792ec02017-03-13 03:49:51 -0700798 }
799 else
800 {
801 /* If we have holes but snd_una_max is beyond the last hole, update
802 * last hole end */
Florin Coras93992a92017-05-24 18:03:56 -0700803 tmp = tc->rcv_opts.sacks[vec_len (tc->rcv_opts.sacks) - 1];
Florin Coras6792ec02017-03-13 03:49:51 -0700804 last_hole = scoreboard_last_hole (sb);
Dave Barach2c25a622017-06-26 11:35:07 -0400805 if (seq_gt (tc->snd_una_max, last_hole->end))
806 {
807 if (seq_geq (last_hole->start, sb->high_sacked))
808 {
809 last_hole->end = tc->snd_una_max;
810 }
811 /* New hole after high sacked block */
812 else if (seq_lt (sb->high_sacked, tc->snd_una_max))
813 {
814 scoreboard_insert_hole (sb, sb->tail, sb->high_sacked,
815 tc->snd_una_max);
816 }
817 }
818 /* Keep track of max byte sacked for when the last hole
Florin Corasf03a59a2017-06-09 21:07:32 -0700819 * is acked */
820 if (seq_gt (tmp.end, sb->high_sacked))
821 sb->high_sacked = tmp.end;
Dave Barach68b0fb02017-02-28 15:15:56 -0500822 }
823
824 /* Walk the holes with the SACK blocks */
825 hole = pool_elt_at_index (sb->holes, sb->head);
Florin Coras93992a92017-05-24 18:03:56 -0700826 while (hole && blk_index < vec_len (tc->rcv_opts.sacks))
Dave Barach68b0fb02017-02-28 15:15:56 -0500827 {
Florin Coras93992a92017-05-24 18:03:56 -0700828 blk = &tc->rcv_opts.sacks[blk_index];
Dave Barach68b0fb02017-02-28 15:15:56 -0500829 if (seq_leq (blk->start, hole->start))
830 {
831 /* Block covers hole. Remove hole */
832 if (seq_geq (blk->end, hole->end))
833 {
834 next_hole = scoreboard_next_hole (sb, hole);
835
Florin Corasf03a59a2017-06-09 21:07:32 -0700836 /* Byte accounting: snd_una needs to be advanced */
837 if (blk->end == ack)
Dave Barach68b0fb02017-02-28 15:15:56 -0500838 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700839 if (next_hole)
Florin Coras06d11012017-05-17 14:21:51 -0700840 {
Florin Corasf03a59a2017-06-09 21:07:32 -0700841 if (seq_lt (ack, next_hole->start))
842 sb->snd_una_adv = next_hole->start - ack;
843 sb->last_bytes_delivered +=
844 next_hole->start - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -0700845 }
Florin Coras3eb50622017-07-13 01:24:57 -0400846 else
Florin Coras06d11012017-05-17 14:21:51 -0700847 {
Dave Barach2c25a622017-06-26 11:35:07 -0400848 ASSERT (seq_geq (sb->high_sacked, ack));
Florin Coras93992a92017-05-24 18:03:56 -0700849 sb->snd_una_adv = sb->high_sacked - ack;
Florin Corasf03a59a2017-06-09 21:07:32 -0700850 sb->last_bytes_delivered += sb->high_sacked - hole->end;
Florin Coras06d11012017-05-17 14:21:51 -0700851 }
852 }
853
Dave Barach68b0fb02017-02-28 15:15:56 -0500854 scoreboard_remove_hole (sb, hole);
855 hole = next_hole;
856 }
Florin Coras6792ec02017-03-13 03:49:51 -0700857 /* Partial 'head' overlap */
Dave Barach68b0fb02017-02-28 15:15:56 -0500858 else
859 {
Florin Coras6792ec02017-03-13 03:49:51 -0700860 if (seq_gt (blk->end, hole->start))
861 {
Florin Coras6792ec02017-03-13 03:49:51 -0700862 hole->start = blk->end;
863 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500864 blk_index++;
865 }
866 }
867 else
868 {
869 /* Hole must be split */
Florin Coras6792ec02017-03-13 03:49:51 -0700870 if (seq_lt (blk->end, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -0500871 {
Florin Coras6792ec02017-03-13 03:49:51 -0700872 hole_index = scoreboard_hole_index (sb, hole);
Florin Coras3eb50622017-07-13 01:24:57 -0400873 next_hole = scoreboard_insert_hole (sb, hole_index, blk->end,
874 hole->end);
Florin Coras6792ec02017-03-13 03:49:51 -0700875
876 /* Pool might've moved */
877 hole = scoreboard_get_hole (sb, hole_index);
878 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -0500879 blk_index++;
Florin Coras3eb50622017-07-13 01:24:57 -0400880 ASSERT (hole->next == scoreboard_hole_index (sb, next_hole));
Dave Barach68b0fb02017-02-28 15:15:56 -0500881 }
Florin Corasf03a59a2017-06-09 21:07:32 -0700882 else if (seq_lt (blk->start, hole->end))
Dave Barach68b0fb02017-02-28 15:15:56 -0500883 {
Florin Coras6792ec02017-03-13 03:49:51 -0700884 hole->end = blk->start;
Dave Barach68b0fb02017-02-28 15:15:56 -0500885 }
Florin Coras93992a92017-05-24 18:03:56 -0700886 hole = scoreboard_next_hole (sb, hole);
Dave Barach68b0fb02017-02-28 15:15:56 -0500887 }
888 }
Florin Coras6792ec02017-03-13 03:49:51 -0700889
Florin Corasf03a59a2017-06-09 21:07:32 -0700890 scoreboard_update_bytes (tc, sb);
891 sb->last_sacked_bytes = sb->sacked_bytes
892 - (old_sacked_bytes - sb->last_bytes_delivered);
Florin Corasca1c8f32018-05-23 21:01:30 -0700893 ASSERT (sb->last_sacked_bytes <= sb->sacked_bytes || tcp_in_recovery (tc));
Florin Corasf03a59a2017-06-09 21:07:32 -0700894 ASSERT (sb->sacked_bytes == 0
895 || sb->sacked_bytes < tc->snd_una_max - seq_max (tc->snd_una, ack));
896 ASSERT (sb->last_sacked_bytes + sb->lost_bytes <= tc->snd_una_max
897 - seq_max (tc->snd_una, ack));
Dave Barach2c25a622017-06-26 11:35:07 -0400898 ASSERT (sb->head == TCP_INVALID_SACK_HOLE_INDEX || tcp_in_recovery (tc)
899 || sb->holes[sb->head].start == ack + sb->snd_una_adv);
Florin Corasca1c8f32018-05-23 21:01:30 -0700900 TCP_EVT_DBG (TCP_EVT_CC_SCOREBOARD, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500901}
902
Florin Coras93992a92017-05-24 18:03:56 -0700903/**
904 * Try to update snd_wnd based on feedback received from peer.
Dave Barach68b0fb02017-02-28 15:15:56 -0500905 *
Florin Coras93992a92017-05-24 18:03:56 -0700906 * If successful, and new window is 'effectively' 0, activate persist
907 * timer.
908 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500909static void
910tcp_update_snd_wnd (tcp_connection_t * tc, u32 seq, u32 ack, u32 snd_wnd)
911{
Florin Coras93992a92017-05-24 18:03:56 -0700912 /* If (SND.WL1 < SEG.SEQ or (SND.WL1 = SEG.SEQ and SND.WL2 =< SEG.ACK)), set
913 * SND.WND <- SEG.WND, set SND.WL1 <- SEG.SEQ, and set SND.WL2 <- SEG.ACK */
Florin Coras6792ec02017-03-13 03:49:51 -0700914 if (seq_lt (tc->snd_wl1, seq)
915 || (tc->snd_wl1 == seq && seq_leq (tc->snd_wl2, ack)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500916 {
917 tc->snd_wnd = snd_wnd;
918 tc->snd_wl1 = seq;
919 tc->snd_wl2 = ack;
Florin Coras6792ec02017-03-13 03:49:51 -0700920 TCP_EVT_DBG (TCP_EVT_SND_WND, tc);
Florin Coras3e350af2017-03-30 02:54:28 -0700921
Florin Corasbb292f42017-05-19 09:49:19 -0700922 if (tc->snd_wnd < tc->snd_mss)
923 {
Florin Coras93992a92017-05-24 18:03:56 -0700924 /* Set persist timer if not set and we just got 0 wnd */
925 if (!tcp_timer_is_active (tc, TCP_TIMER_PERSIST)
926 && !tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT))
Florin Corasbb292f42017-05-19 09:49:19 -0700927 tcp_persist_timer_set (tc);
928 }
Florin Coras3e350af2017-03-30 02:54:28 -0700929 else
Florin Coras93992a92017-05-24 18:03:56 -0700930 {
931 tcp_persist_timer_reset (tc);
932 if (!tcp_in_recovery (tc) && tc->rto_boff > 0)
933 {
934 tc->rto_boff = 0;
935 tcp_update_rto (tc);
936 }
937 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500938 }
939}
940
Florin Corasd2aab832018-05-22 11:39:59 -0700941/**
942 * Init loss recovery/fast recovery.
943 *
944 * Triggered by dup acks as opposed to timer timeout. Note that cwnd is
945 * updated in @ref tcp_cc_handle_event after fast retransmit
946 */
Florin Coras6792ec02017-03-13 03:49:51 -0700947void
Florin Coras93992a92017-05-24 18:03:56 -0700948tcp_cc_init_congestion (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500949{
Florin Coras93992a92017-05-24 18:03:56 -0700950 tcp_fastrecovery_on (tc);
951 tc->snd_congestion = tc->snd_una_max;
Florin Coras62166002018-04-18 16:40:55 -0700952 tc->cwnd_acc_bytes = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500953 tc->cc_algo->congestion (tc);
Florin Coras6792ec02017-03-13 03:49:51 -0700954 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 4);
Dave Barach68b0fb02017-02-28 15:15:56 -0500955}
956
Florin Coras93992a92017-05-24 18:03:56 -0700957static void
958tcp_cc_recovery_exit (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500959{
Florin Coras93992a92017-05-24 18:03:56 -0700960 tc->rto_boff = 0;
Florin Corasf1762d62017-09-24 19:43:08 -0400961 tcp_update_rto (tc);
Florin Coras93992a92017-05-24 18:03:56 -0700962 tc->snd_rxt_ts = 0;
Florin Coras84275e92017-09-26 12:30:40 -0400963 tc->snd_nxt = tc->snd_una_max;
Florin Coras93992a92017-05-24 18:03:56 -0700964 tcp_recovery_off (tc);
Florin Corasf1762d62017-09-24 19:43:08 -0400965 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Florin Coras93992a92017-05-24 18:03:56 -0700966}
Florin Coras3e350af2017-03-30 02:54:28 -0700967
Florin Coras93992a92017-05-24 18:03:56 -0700968void
969tcp_cc_fastrecovery_exit (tcp_connection_t * tc)
970{
Florin Coras6792ec02017-03-13 03:49:51 -0700971 tc->cc_algo->recovered (tc);
Florin Coras93992a92017-05-24 18:03:56 -0700972 tc->snd_rxt_bytes = 0;
Florin Coras6792ec02017-03-13 03:49:51 -0700973 tc->rcv_dupacks = 0;
Florin Coras84275e92017-09-26 12:30:40 -0400974 tc->snd_nxt = tc->snd_una_max;
Florin Coras93992a92017-05-24 18:03:56 -0700975 tcp_fastrecovery_off (tc);
976 tcp_fastrecovery_1_smss_off (tc);
Florin Corasf1762d62017-09-24 19:43:08 -0400977 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 3);
Dave Barach68b0fb02017-02-28 15:15:56 -0500978}
979
980static void
Florin Coras93992a92017-05-24 18:03:56 -0700981tcp_cc_congestion_undo (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500982{
Florin Coras93992a92017-05-24 18:03:56 -0700983 tc->cwnd = tc->prev_cwnd;
984 tc->ssthresh = tc->prev_ssthresh;
985 tc->snd_nxt = tc->snd_una_max;
986 tc->rcv_dupacks = 0;
987 if (tcp_in_recovery (tc))
988 tcp_cc_recovery_exit (tc);
989 ASSERT (tc->rto_boff == 0);
Florin Corasf1762d62017-09-24 19:43:08 -0400990 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 5);
Florin Coras93992a92017-05-24 18:03:56 -0700991 /* TODO extend for fastrecovery */
992}
Dave Barach68b0fb02017-02-28 15:15:56 -0500993
Florin Coras93992a92017-05-24 18:03:56 -0700994static u8
995tcp_cc_is_spurious_retransmit (tcp_connection_t * tc)
996{
Florin Corasf1762d62017-09-24 19:43:08 -0400997 return (tcp_in_recovery (tc) && tc->rto_boff == 1
Dave Barach2c25a622017-06-26 11:35:07 -0400998 && tc->snd_rxt_ts
Florin Coras93992a92017-05-24 18:03:56 -0700999 && tcp_opts_tstamp (&tc->rcv_opts)
1000 && timestamp_lt (tc->rcv_opts.tsecr, tc->snd_rxt_ts));
1001}
1002
1003int
1004tcp_cc_recover (tcp_connection_t * tc)
1005{
1006 ASSERT (tcp_in_cong_recovery (tc));
1007 if (tcp_cc_is_spurious_retransmit (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001008 {
Florin Corasd2aab832018-05-22 11:39:59 -07001009 clib_warning ("here");
Florin Coras93992a92017-05-24 18:03:56 -07001010 tcp_cc_congestion_undo (tc);
1011 return 1;
1012 }
1013
1014 if (tcp_in_recovery (tc))
1015 tcp_cc_recovery_exit (tc);
1016 else if (tcp_in_fastrecovery (tc))
1017 tcp_cc_fastrecovery_exit (tc);
1018
1019 ASSERT (tc->rto_boff == 0);
1020 ASSERT (!tcp_in_cong_recovery (tc));
Florin Coras3eb50622017-07-13 01:24:57 -04001021 ASSERT (tcp_scoreboard_is_sane_post_recovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001022 return 0;
1023}
1024
1025static void
1026tcp_cc_update (tcp_connection_t * tc, vlib_buffer_t * b)
1027{
Florin Coras3eb50622017-07-13 01:24:57 -04001028 ASSERT (!tcp_in_cong_recovery (tc) || tcp_is_lost_fin (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001029
1030 /* Congestion avoidance */
1031 tc->cc_algo->rcv_ack (tc);
1032 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1033
1034 /* If a cumulative ack, make sure dupacks is 0 */
1035 tc->rcv_dupacks = 0;
1036
1037 /* When dupacks hits the threshold we only enter fast retransmit if
1038 * cumulative ack covers more than snd_congestion. Should snd_una
1039 * wrap this test may fail under otherwise valid circumstances.
1040 * Therefore, proactively update snd_congestion when wrap detected. */
1041 if (PREDICT_FALSE
1042 (seq_leq (tc->snd_congestion, tc->snd_una - tc->bytes_acked)
1043 && seq_gt (tc->snd_congestion, tc->snd_una)))
1044 tc->snd_congestion = tc->snd_una - 1;
1045}
1046
1047static u8
1048tcp_should_fastrecover_sack (tcp_connection_t * tc)
1049{
1050 return (TCP_DUPACK_THRESHOLD - 1) * tc->snd_mss < tc->sack_sb.sacked_bytes;
1051}
1052
1053static u8
1054tcp_should_fastrecover (tcp_connection_t * tc)
1055{
1056 return (tc->rcv_dupacks == TCP_DUPACK_THRESHOLD
1057 || tcp_should_fastrecover_sack (tc));
1058}
1059
Florin Corasf03a59a2017-06-09 21:07:32 -07001060/**
1061 * One function to rule them all ... and in the darkness bind them
1062 */
Florin Coras93992a92017-05-24 18:03:56 -07001063static void
1064tcp_cc_handle_event (tcp_connection_t * tc, u32 is_dack)
1065{
Florin Corasf03a59a2017-06-09 21:07:32 -07001066 u32 rxt_delivered;
1067
Florin Corasca1c8f32018-05-23 21:01:30 -07001068 if (tcp_in_fastrecovery (tc) && tcp_opts_sack_permitted (&tc->rcv_opts))
1069 {
1070 if (tc->bytes_acked)
1071 goto partial_ack;
1072 tcp_fast_retransmit (tc);
1073 return;
1074 }
Florin Coras93992a92017-05-24 18:03:56 -07001075 /*
1076 * Duplicate ACK. Check if we should enter fast recovery, or if already in
1077 * it account for the bytes that left the network.
1078 */
Florin Corasca1c8f32018-05-23 21:01:30 -07001079 else if (is_dack && !tcp_in_recovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001080 {
Florin Corasd2aab832018-05-22 11:39:59 -07001081 TCP_EVT_DBG (TCP_EVT_DUPACK_RCVD, tc, 1);
Florin Coras93992a92017-05-24 18:03:56 -07001082 ASSERT (tc->snd_una != tc->snd_una_max
1083 || tc->sack_sb.last_sacked_bytes);
Dave Barach2c25a622017-06-26 11:35:07 -04001084
Florin Coras93992a92017-05-24 18:03:56 -07001085 tc->rcv_dupacks++;
1086
Florin Corasd2aab832018-05-22 11:39:59 -07001087 /* Pure duplicate ack. If some data got acked, it's handled lower */
Florin Coras93992a92017-05-24 18:03:56 -07001088 if (tc->rcv_dupacks > TCP_DUPACK_THRESHOLD && !tc->bytes_acked)
Dave Barach68b0fb02017-02-28 15:15:56 -05001089 {
Florin Coras93992a92017-05-24 18:03:56 -07001090 ASSERT (tcp_in_fastrecovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001091 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1092 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001093 }
Florin Coras93992a92017-05-24 18:03:56 -07001094 else if (tcp_should_fastrecover (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001095 {
Florin Corasd2aab832018-05-22 11:39:59 -07001096 ASSERT (!tcp_in_fastrecovery (tc));
Florin Coras93992a92017-05-24 18:03:56 -07001097
Dave Barach2c25a622017-06-26 11:35:07 -04001098 /* If of of the two conditions lower hold, reset dupacks because
1099 * we're probably after timeout (RFC6582 heuristics).
1100 * If Cumulative ack does not cover more than congestion threshold,
1101 * and:
1102 * 1) The following doesn't hold: The congestion window is greater
1103 * than SMSS bytes and the difference between highest_ack
1104 * and prev_highest_ack is at most 4*SMSS bytes
1105 * 2) Echoed timestamp in the last non-dup ack does not equal the
1106 * stored timestamp
Florin Coras93992a92017-05-24 18:03:56 -07001107 */
Dave Barach2c25a622017-06-26 11:35:07 -04001108 if (seq_leq (tc->snd_una, tc->snd_congestion)
1109 && ((!(tc->cwnd > tc->snd_mss
1110 && tc->bytes_acked <= 4 * tc->snd_mss))
1111 || (tc->rcv_opts.tsecr != tc->tsecr_last_ack)))
Florin Coras93992a92017-05-24 18:03:56 -07001112 {
1113 tc->rcv_dupacks = 0;
1114 return;
1115 }
1116
1117 tcp_cc_init_congestion (tc);
1118 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1119
1120 /* The first segment MUST be retransmitted */
1121 tcp_retransmit_first_unacked (tc);
1122
1123 /* Post retransmit update cwnd to ssthresh and account for the
1124 * three segments that have left the network and should've been
1125 * buffered at the receiver XXX */
1126 tc->cwnd = tc->ssthresh + tc->rcv_dupacks * tc->snd_mss;
Dave Barach2c25a622017-06-26 11:35:07 -04001127 ASSERT (tc->cwnd >= tc->snd_mss);
Florin Coras93992a92017-05-24 18:03:56 -07001128
1129 /* If cwnd allows, send more data */
Florin Coras3eb50622017-07-13 01:24:57 -04001130 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras93992a92017-05-24 18:03:56 -07001131 {
Florin Coras3eb50622017-07-13 01:24:57 -04001132 scoreboard_init_high_rxt (&tc->sack_sb,
1133 tc->snd_una + tc->snd_mss);
Florin Coras93992a92017-05-24 18:03:56 -07001134 tcp_fast_retransmit_sack (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001135 }
1136 else
1137 {
Florin Coras93992a92017-05-24 18:03:56 -07001138 tcp_fast_retransmit_no_sack (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001139 }
Florin Coras93992a92017-05-24 18:03:56 -07001140 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001141 }
Florin Coras93992a92017-05-24 18:03:56 -07001142 else if (!tc->bytes_acked
1143 || (tc->bytes_acked && !tcp_in_cong_recovery (tc)))
1144 {
1145 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_DUPACK);
1146 return;
1147 }
1148 else
1149 goto partial_ack;
1150 }
1151
Florin Coras93992a92017-05-24 18:03:56 -07001152 if (!tc->bytes_acked)
1153 return;
1154
1155partial_ack:
Florin Corasd2aab832018-05-22 11:39:59 -07001156 TCP_EVT_DBG (TCP_EVT_CC_PACK, tc);
1157
Florin Coras93992a92017-05-24 18:03:56 -07001158 /*
1159 * Legitimate ACK. 1) See if we can exit recovery
1160 */
1161 /* XXX limit this only to first partial ack? */
1162 tcp_retransmit_timer_update (tc);
1163
1164 if (seq_geq (tc->snd_una, tc->snd_congestion))
1165 {
1166 /* If spurious return, we've already updated everything */
1167 if (tcp_cc_recover (tc))
Florin Corasf03a59a2017-06-09 21:07:32 -07001168 {
1169 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1170 return;
1171 }
Florin Coras93992a92017-05-24 18:03:56 -07001172
1173 tc->snd_nxt = tc->snd_una_max;
1174
1175 /* Treat as congestion avoidance ack */
1176 tc->cc_algo->rcv_ack (tc);
1177 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1178 return;
1179 }
1180
1181 /*
1182 * Legitimate ACK. 2) If PARTIAL ACK try to retransmit
1183 */
Florin Coras93992a92017-05-24 18:03:56 -07001184
1185 /* RFC6675: If the incoming ACK is a cumulative acknowledgment,
Florin Corasd2aab832018-05-22 11:39:59 -07001186 * reset dupacks to 0. Also needed if in congestion recovery */
Florin Coras93992a92017-05-24 18:03:56 -07001187 tc->rcv_dupacks = 0;
1188
Florin Coras93992a92017-05-24 18:03:56 -07001189 /* Post RTO timeout don't try anything fancy */
1190 if (tcp_in_recovery (tc))
Florin Corasd2aab832018-05-22 11:39:59 -07001191 {
1192 tc->cc_algo->rcv_ack (tc);
1193 tc->tsecr_last_ack = tc->rcv_opts.tsecr;
1194 return;
1195 }
Florin Coras93992a92017-05-24 18:03:56 -07001196
1197 /* Remove retransmitted bytes that have been delivered */
Florin Corasf03a59a2017-06-09 21:07:32 -07001198 ASSERT (tc->bytes_acked + tc->sack_sb.snd_una_adv
Florin Corasb2215d62017-08-01 16:56:58 -07001199 >= tc->sack_sb.last_bytes_delivered
1200 || (tc->flags & TCP_CONN_FINSNT));
Florin Coras3eb50622017-07-13 01:24:57 -04001201
1202 if (seq_lt (tc->snd_una, tc->sack_sb.high_rxt))
Florin Coras93992a92017-05-24 18:03:56 -07001203 {
1204 /* If we have sacks and we haven't gotten an ack beyond high_rxt,
1205 * remove sacked bytes delivered */
Florin Coras3eb50622017-07-13 01:24:57 -04001206 rxt_delivered = tc->bytes_acked + tc->sack_sb.snd_una_adv
1207 - tc->sack_sb.last_bytes_delivered;
Florin Corasf03a59a2017-06-09 21:07:32 -07001208 ASSERT (tc->snd_rxt_bytes >= rxt_delivered);
1209 tc->snd_rxt_bytes -= rxt_delivered;
Dave Barach68b0fb02017-02-28 15:15:56 -05001210 }
1211 else
1212 {
Florin Coras93992a92017-05-24 18:03:56 -07001213 /* Either all retransmitted holes have been acked, or we're
1214 * "in the blind" and retransmitting segment by segment */
1215 tc->snd_rxt_bytes = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001216 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001217
Florin Coras93992a92017-05-24 18:03:56 -07001218 tc->cc_algo->rcv_cong_ack (tc, TCP_CC_PARTIALACK);
Dave Barach68b0fb02017-02-28 15:15:56 -05001219
Florin Coras93992a92017-05-24 18:03:56 -07001220 /*
1221 * Since this was a partial ack, try to retransmit some more data
1222 */
1223 tcp_fast_retransmit (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001224}
1225
1226void
1227tcp_cc_init (tcp_connection_t * tc)
1228{
1229 tc->cc_algo = tcp_cc_algo_get (TCP_CC_NEWRENO);
1230 tc->cc_algo->init (tc);
1231}
1232
Florin Coras93992a92017-05-24 18:03:56 -07001233/**
1234 * Process incoming ACK
1235 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001236static int
1237tcp_rcv_ack (tcp_connection_t * tc, vlib_buffer_t * b,
1238 tcp_header_t * th, u32 * next, u32 * error)
1239{
Florin Coras93992a92017-05-24 18:03:56 -07001240 u32 prev_snd_wnd, prev_snd_una;
1241 u8 is_dack;
Dave Barach68b0fb02017-02-28 15:15:56 -05001242
Florin Corasf03a59a2017-06-09 21:07:32 -07001243 TCP_EVT_DBG (TCP_EVT_CC_STAT, tc);
1244
Florin Coras6792ec02017-03-13 03:49:51 -07001245 /* If the ACK acks something not yet sent (SEG.ACK > SND.NXT) */
Florin Coras93992a92017-05-24 18:03:56 -07001246 if (PREDICT_FALSE (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_nxt)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001247 {
Florin Corasca1c8f32018-05-23 21:01:30 -07001248 /* When we entered recovery, we reset snd_nxt to snd_una. Seems peer
1249 * still has the data so accept the ack */
1250 if (tcp_in_recovery (tc)
1251 && seq_leq (vnet_buffer (b)->tcp.ack_number, tc->snd_congestion)
1252 && seq_geq (vnet_buffer (b)->tcp.ack_number, tc->snd_una))
1253 {
1254 tc->snd_una_max = tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
1255 goto process_ack;
1256 }
1257
Florin Coras6792ec02017-03-13 03:49:51 -07001258 /* If we have outstanding data and this is within the window, accept it,
1259 * probably retransmit has timed out. Otherwise ACK segment and then
1260 * drop it */
1261 if (seq_gt (vnet_buffer (b)->tcp.ack_number, tc->snd_una_max))
1262 {
1263 tcp_make_ack (tc, b);
1264 *next = tcp_next_output (tc->c_is_ip4);
1265 *error = TCP_ERROR_ACK_INVALID;
1266 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 0,
1267 vnet_buffer (b)->tcp.ack_number);
1268 return -1;
1269 }
1270
Florin Coras6792ec02017-03-13 03:49:51 -07001271 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 2,
1272 vnet_buffer (b)->tcp.ack_number);
Florin Coras3e350af2017-03-30 02:54:28 -07001273
1274 tc->snd_nxt = vnet_buffer (b)->tcp.ack_number;
1275 *error = TCP_ERROR_ACK_FUTURE;
Dave Barach68b0fb02017-02-28 15:15:56 -05001276 }
1277
Florin Coras6792ec02017-03-13 03:49:51 -07001278 /* If old ACK, probably it's an old dupack */
Florin Coras93992a92017-05-24 18:03:56 -07001279 if (PREDICT_FALSE (seq_lt (vnet_buffer (b)->tcp.ack_number, tc->snd_una)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001280 {
1281 *error = TCP_ERROR_ACK_OLD;
Florin Coras6792ec02017-03-13 03:49:51 -07001282 TCP_EVT_DBG (TCP_EVT_ACK_RCV_ERR, tc, 1,
1283 vnet_buffer (b)->tcp.ack_number);
1284 if (tcp_in_fastrecovery (tc) && tc->rcv_dupacks == TCP_DUPACK_THRESHOLD)
Florin Corasca1c8f32018-05-23 21:01:30 -07001285 tcp_cc_handle_event (tc, 1);
Florin Corasc28764f2017-04-26 00:08:42 -07001286 /* Don't drop yet */
1287 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001288 }
1289
Florin Coras93992a92017-05-24 18:03:56 -07001290 /*
1291 * Looks okay, process feedback
1292 */
Florin Corasca1c8f32018-05-23 21:01:30 -07001293process_ack:
Florin Coras93992a92017-05-24 18:03:56 -07001294 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001295 tcp_rcv_sacks (tc, vnet_buffer (b)->tcp.ack_number);
1296
Florin Coras93992a92017-05-24 18:03:56 -07001297 prev_snd_wnd = tc->snd_wnd;
1298 prev_snd_una = tc->snd_una;
1299 tcp_update_snd_wnd (tc, vnet_buffer (b)->tcp.seq_number,
1300 vnet_buffer (b)->tcp.ack_number,
1301 clib_net_to_host_u16 (th->window) << tc->snd_wscale);
1302 tc->bytes_acked = vnet_buffer (b)->tcp.ack_number - tc->snd_una;
1303 tc->snd_una = vnet_buffer (b)->tcp.ack_number + tc->sack_sb.snd_una_adv;
1304 tcp_validate_txf_size (tc, tc->bytes_acked);
Dave Barach68b0fb02017-02-28 15:15:56 -05001305
Florin Coras93992a92017-05-24 18:03:56 -07001306 if (tc->bytes_acked)
1307 tcp_dequeue_acked (tc, vnet_buffer (b)->tcp.ack_number);
1308
Florin Coras6534b7a2017-07-18 05:38:03 -04001309 TCP_EVT_DBG (TCP_EVT_ACK_RCVD, tc);
1310
Florin Coras93992a92017-05-24 18:03:56 -07001311 /*
1312 * Check if we have congestion event
1313 */
1314
1315 if (tcp_ack_is_cc_event (tc, b, prev_snd_wnd, prev_snd_una, &is_dack))
Dave Barach68b0fb02017-02-28 15:15:56 -05001316 {
Florin Coras93992a92017-05-24 18:03:56 -07001317 tcp_cc_handle_event (tc, is_dack);
Florin Corasb2215d62017-08-01 16:56:58 -07001318 if (!tcp_in_cong_recovery (tc))
1319 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001320 *error = TCP_ERROR_ACK_DUP;
Florin Coras93992a92017-05-24 18:03:56 -07001321 return vnet_buffer (b)->tcp.data_len ? 0 : -1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001322 }
1323
Florin Coras6792ec02017-03-13 03:49:51 -07001324 /*
Florin Coras93992a92017-05-24 18:03:56 -07001325 * Update congestion control (slow start/congestion avoidance)
Florin Coras6792ec02017-03-13 03:49:51 -07001326 */
Florin Coras93992a92017-05-24 18:03:56 -07001327 tcp_cc_update (tc, b);
Florin Coras00cd22d2018-04-18 13:20:18 -07001328 *error = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001329 return 0;
1330}
1331
Florin Coras3eb50622017-07-13 01:24:57 -04001332static u8
1333tcp_sack_vector_is_sane (sack_block_t * sacks)
1334{
1335 int i;
1336 for (i = 1; i < vec_len (sacks); i++)
1337 {
1338 if (sacks[i - 1].end == sacks[i].start)
1339 return 0;
1340 }
1341 return 1;
1342}
1343
Dave Barach68b0fb02017-02-28 15:15:56 -05001344/**
1345 * Build SACK list as per RFC2018.
1346 *
1347 * Makes sure the first block contains the segment that generated the current
1348 * ACK and the following ones are the ones most recently reported in SACK
1349 * blocks.
1350 *
1351 * @param tc TCP connection for which the SACK list is updated
1352 * @param start Start sequence number of the newest SACK block
1353 * @param end End sequence of the newest SACK block
1354 */
Florin Coras45d34962017-04-25 00:05:27 -07001355void
Dave Barach68b0fb02017-02-28 15:15:56 -05001356tcp_update_sack_list (tcp_connection_t * tc, u32 start, u32 end)
1357{
Florin Coras45d34962017-04-25 00:05:27 -07001358 sack_block_t *new_list = 0, *block = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001359 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001360
1361 /* If the first segment is ooo add it to the list. Last write might've moved
1362 * rcv_nxt over the first segment. */
1363 if (seq_lt (tc->rcv_nxt, start))
1364 {
Florin Coras45d34962017-04-25 00:05:27 -07001365 vec_add2 (new_list, block, 1);
1366 block->start = start;
1367 block->end = end;
Dave Barach68b0fb02017-02-28 15:15:56 -05001368 }
1369
1370 /* Find the blocks still worth keeping. */
1371 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1372 {
Florin Coras45d34962017-04-25 00:05:27 -07001373 /* Discard if rcv_nxt advanced beyond current block */
1374 if (seq_leq (tc->snd_sacks[i].start, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001375 continue;
1376
Florin Coras45d34962017-04-25 00:05:27 -07001377 /* Merge or drop if segment overlapped by the new segment */
1378 if (block && (seq_geq (tc->snd_sacks[i].end, new_list[0].start)
1379 && seq_leq (tc->snd_sacks[i].start, new_list[0].end)))
1380 {
1381 if (seq_lt (tc->snd_sacks[i].start, new_list[0].start))
1382 new_list[0].start = tc->snd_sacks[i].start;
1383 if (seq_lt (new_list[0].end, tc->snd_sacks[i].end))
1384 new_list[0].end = tc->snd_sacks[i].end;
1385 continue;
1386 }
1387
1388 /* Save to new SACK list if we have space. */
1389 if (vec_len (new_list) < TCP_MAX_SACK_BLOCKS)
1390 {
1391 vec_add1 (new_list, tc->snd_sacks[i]);
1392 }
Florin Corasf03a59a2017-06-09 21:07:32 -07001393 else
1394 {
1395 clib_warning ("sack discarded");
1396 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001397 }
1398
Florin Coras45d34962017-04-25 00:05:27 -07001399 ASSERT (vec_len (new_list) <= TCP_MAX_SACK_BLOCKS);
Florin Coras6792ec02017-03-13 03:49:51 -07001400
Dave Barach68b0fb02017-02-28 15:15:56 -05001401 /* Replace old vector with new one */
1402 vec_free (tc->snd_sacks);
1403 tc->snd_sacks = new_list;
Florin Coras3eb50622017-07-13 01:24:57 -04001404
1405 /* Segments should not 'touch' */
1406 ASSERT (tcp_sack_vector_is_sane (tc->snd_sacks));
Dave Barach68b0fb02017-02-28 15:15:56 -05001407}
1408
Florin Corasca1c8f32018-05-23 21:01:30 -07001409u32
1410tcp_sack_list_bytes (tcp_connection_t * tc)
1411{
1412 u32 bytes = 0, i;
1413 for (i = 0; i < vec_len (tc->snd_sacks); i++)
1414 bytes += tc->snd_sacks[i].end - tc->snd_sacks[i].start;
1415 return bytes;
1416}
1417
Dave Barach68b0fb02017-02-28 15:15:56 -05001418/** Enqueue data for delivery to application */
Florin Coras6792ec02017-03-13 03:49:51 -07001419always_inline int
Dave Barach68b0fb02017-02-28 15:15:56 -05001420tcp_session_enqueue_data (tcp_connection_t * tc, vlib_buffer_t * b,
1421 u16 data_len)
1422{
Florin Coras1f152cd2017-08-18 19:28:03 -07001423 int written, error = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001424
Dave Barach2c25a622017-06-26 11:35:07 -04001425 ASSERT (seq_geq (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001426 ASSERT (data_len);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001427 written = session_enqueue_stream_connection (&tc->connection, b, 0,
1428 1 /* queue event */ , 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001429
Florin Coras6792ec02017-03-13 03:49:51 -07001430 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 0, data_len, written);
1431
Dave Barach68b0fb02017-02-28 15:15:56 -05001432 /* Update rcv_nxt */
1433 if (PREDICT_TRUE (written == data_len))
1434 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001435 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001436 }
1437 /* If more data written than expected, account for out-of-order bytes. */
1438 else if (written > data_len)
1439 {
Florin Coras1f152cd2017-08-18 19:28:03 -07001440 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001441
1442 /* Send ACK confirming the update */
1443 tc->flags |= TCP_CONN_SNDACK;
Florin Corasca1c8f32018-05-23 21:01:30 -07001444 TCP_EVT_DBG (TCP_EVT_CC_INPUT, tc, data_len, written);
Florin Coras6792ec02017-03-13 03:49:51 -07001445 }
1446 else if (written > 0)
1447 {
1448 /* We've written something but FIFO is probably full now */
1449 tc->rcv_nxt += written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001450
Florin Coras6792ec02017-03-13 03:49:51 -07001451 /* Depending on how fast the app is, all remaining buffers in burst will
Florin Coras3e350af2017-03-30 02:54:28 -07001452 * not be enqueued. Inform peer */
1453 tc->flags |= TCP_CONN_SNDACK;
1454
Florin Coras1f152cd2017-08-18 19:28:03 -07001455 error = TCP_ERROR_PARTIALLY_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001456 }
1457 else
1458 {
Florin Coras3e350af2017-03-30 02:54:28 -07001459 tc->flags |= TCP_CONN_SNDACK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001460 return TCP_ERROR_FIFO_FULL;
1461 }
1462
Florin Coras6792ec02017-03-13 03:49:51 -07001463 /* Update SACK list if need be */
Florin Coras93992a92017-05-24 18:03:56 -07001464 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras6792ec02017-03-13 03:49:51 -07001465 {
1466 /* Remove SACK blocks that have been delivered */
1467 tcp_update_sack_list (tc, tc->rcv_nxt, tc->rcv_nxt);
1468 }
1469
Florin Coras1f152cd2017-08-18 19:28:03 -07001470 return error;
Dave Barach68b0fb02017-02-28 15:15:56 -05001471}
1472
1473/** Enqueue out-of-order data */
Florin Coras6792ec02017-03-13 03:49:51 -07001474always_inline int
Dave Barach68b0fb02017-02-28 15:15:56 -05001475tcp_session_enqueue_ooo (tcp_connection_t * tc, vlib_buffer_t * b,
1476 u16 data_len)
1477{
1478 stream_session_t *s0;
Florin Coras3eb50622017-07-13 01:24:57 -04001479 int rv, offset;
Florin Coras6792ec02017-03-13 03:49:51 -07001480
Florin Corasf03a59a2017-06-09 21:07:32 -07001481 ASSERT (seq_gt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt));
Florin Coras00cd22d2018-04-18 13:20:18 -07001482 ASSERT (data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001483
Florin Corasf03a59a2017-06-09 21:07:32 -07001484 /* Enqueue out-of-order data with relative offset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07001485 rv = session_enqueue_stream_connection (&tc->connection, b,
1486 vnet_buffer (b)->tcp.seq_number -
1487 tc->rcv_nxt, 0 /* queue event */ ,
1488 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001489
1490 /* Nothing written */
1491 if (rv)
1492 {
1493 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, 0);
1494 return TCP_ERROR_FIFO_FULL;
1495 }
1496
1497 TCP_EVT_DBG (TCP_EVT_INPUT, tc, 1, data_len, data_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001498
1499 /* Update SACK list if in use */
Florin Coras93992a92017-05-24 18:03:56 -07001500 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05001501 {
1502 ooo_segment_t *newest;
1503 u32 start, end;
1504
Florin Corascea194d2017-10-02 00:18:51 -07001505 s0 = session_get (tc->c_s_index, tc->c_thread_index);
Florin Corasf6d68ed2017-05-07 19:12:02 -07001506
Dave Barach68b0fb02017-02-28 15:15:56 -05001507 /* Get the newest segment from the fifo */
1508 newest = svm_fifo_newest_ooo_segment (s0->server_rx_fifo);
Florin Corasf03a59a2017-06-09 21:07:32 -07001509 if (newest)
1510 {
Florin Coras3eb50622017-07-13 01:24:57 -04001511 offset = ooo_segment_offset (s0->server_rx_fifo, newest);
1512 ASSERT (offset <= vnet_buffer (b)->tcp.seq_number - tc->rcv_nxt);
1513 start = tc->rcv_nxt + offset;
Florin Corasf03a59a2017-06-09 21:07:32 -07001514 end = start + ooo_segment_length (s0->server_rx_fifo, newest);
1515 tcp_update_sack_list (tc, start, end);
Florin Coras3eb50622017-07-13 01:24:57 -04001516 svm_fifo_newest_ooo_segment_reset (s0->server_rx_fifo);
Florin Corasca1c8f32018-05-23 21:01:30 -07001517 TCP_EVT_DBG (TCP_EVT_CC_SACKS, tc);
Florin Corasf03a59a2017-06-09 21:07:32 -07001518 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001519 }
1520
Florin Coras00cd22d2018-04-18 13:20:18 -07001521 return TCP_ERROR_ENQUEUED_OOO;
Dave Barach68b0fb02017-02-28 15:15:56 -05001522}
1523
1524/**
Florin Coras6792ec02017-03-13 03:49:51 -07001525 * Check if ACK could be delayed. If ack can be delayed, it should return
1526 * true for a full frame. If we're always acking return 0.
Dave Barach68b0fb02017-02-28 15:15:56 -05001527 */
1528always_inline int
1529tcp_can_delack (tcp_connection_t * tc)
1530{
Florin Coras6792ec02017-03-13 03:49:51 -07001531 /* Send ack if ... */
1532 if (TCP_ALWAYS_ACK
1533 /* just sent a rcv wnd 0 */
1534 || (tc->flags & TCP_CONN_SENT_RCV_WND0) != 0
1535 /* constrained to send ack */
1536 || (tc->flags & TCP_CONN_SNDACK) != 0
1537 /* we're almost out of tx wnd */
Florin Corasca1c8f32018-05-23 21:01:30 -07001538 || tcp_available_cc_snd_space (tc) < 4 * tc->snd_mss)
Florin Coras6792ec02017-03-13 03:49:51 -07001539 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001540
Florin Coras6792ec02017-03-13 03:49:51 -07001541 return 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001542}
1543
1544static int
Florin Corasb2215d62017-08-01 16:56:58 -07001545tcp_buffer_discard_bytes (vlib_buffer_t * b, u32 n_bytes_to_drop)
1546{
Florin Coras1f152cd2017-08-18 19:28:03 -07001547 u32 discard, first = b->current_length;
Florin Corasb2215d62017-08-01 16:56:58 -07001548 vlib_main_t *vm = vlib_get_main ();
1549
Florin Coras1f152cd2017-08-18 19:28:03 -07001550 /* Handle multi-buffer segments */
Florin Corasb2215d62017-08-01 16:56:58 -07001551 if (n_bytes_to_drop > b->current_length)
1552 {
1553 if (!(b->flags & VLIB_BUFFER_NEXT_PRESENT))
1554 return -1;
1555 do
1556 {
1557 discard = clib_min (n_bytes_to_drop, b->current_length);
1558 vlib_buffer_advance (b, discard);
1559 b = vlib_get_buffer (vm, b->next_buffer);
1560 n_bytes_to_drop -= discard;
1561 }
1562 while (n_bytes_to_drop);
Florin Coras1f152cd2017-08-18 19:28:03 -07001563 if (n_bytes_to_drop > first)
1564 b->total_length_not_including_first_buffer -= n_bytes_to_drop - first;
Florin Corasb2215d62017-08-01 16:56:58 -07001565 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001566 else
1567 vlib_buffer_advance (b, n_bytes_to_drop);
1568 vnet_buffer (b)->tcp.data_len -= n_bytes_to_drop;
Florin Corasb2215d62017-08-01 16:56:58 -07001569 return 0;
1570}
1571
Florin Coras00cd22d2018-04-18 13:20:18 -07001572/**
1573 * Receive buffer for connection and handle acks
1574 *
1575 * It handles both in order or out-of-order data.
1576 */
Florin Corasb2215d62017-08-01 16:56:58 -07001577static int
Florin Coras00cd22d2018-04-18 13:20:18 -07001578tcp_segment_rcv (tcp_connection_t * tc, vlib_buffer_t * b, u32 * next0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001579{
Florin Coras00cd22d2018-04-18 13:20:18 -07001580 u32 error, n_bytes_to_drop, n_data_bytes;
Florin Coras6534b7a2017-07-18 05:38:03 -04001581
1582 vlib_buffer_advance (b, vnet_buffer (b)->tcp.data_offset);
1583 n_data_bytes = vnet_buffer (b)->tcp.data_len;
1584 ASSERT (n_data_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001585
1586 /* Handle out-of-order data */
1587 if (PREDICT_FALSE (vnet_buffer (b)->tcp.seq_number != tc->rcv_nxt))
1588 {
Florin Coras6792ec02017-03-13 03:49:51 -07001589 /* Old sequence numbers allowed through because they overlapped
1590 * the rx window */
1591 if (seq_lt (vnet_buffer (b)->tcp.seq_number, tc->rcv_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05001592 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001593 /* Completely in the past (possible retransmit). Ack
1594 * retransmissions since we may not have any data to send */
Florin Corasf03a59a2017-06-09 21:07:32 -07001595 if (seq_leq (vnet_buffer (b)->tcp.seq_end, tc->rcv_nxt))
Florin Coras6534b7a2017-07-18 05:38:03 -04001596 {
Florin Coras6534b7a2017-07-18 05:38:03 -04001597 tcp_make_ack (tc, b);
Florin Coras00cd22d2018-04-18 13:20:18 -07001598 error = TCP_ERROR_SEGMENT_OLD;
Florin Coras6534b7a2017-07-18 05:38:03 -04001599 *next0 = tcp_next_output (tc->c_is_ip4);
1600 goto done;
1601 }
Dave Barach259cdae2017-05-15 16:27:05 -04001602
Florin Coras00cd22d2018-04-18 13:20:18 -07001603 /* Chop off the bytes in the past and see if what is left
1604 * can be enqueued in order */
Florin Corasdb84e572017-05-09 18:54:52 -07001605 n_bytes_to_drop = tc->rcv_nxt - vnet_buffer (b)->tcp.seq_number;
1606 n_data_bytes -= n_bytes_to_drop;
Dave Barach2c25a622017-06-26 11:35:07 -04001607 vnet_buffer (b)->tcp.seq_number = tc->rcv_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001608 if (tcp_buffer_discard_bytes (b, n_bytes_to_drop))
Florin Coras00cd22d2018-04-18 13:20:18 -07001609 {
1610 error = TCP_ERROR_SEGMENT_OLD;
1611 *next0 = tcp_next_drop (tc->c_is_ip4);
1612 goto done;
1613 }
Florin Corasdb84e572017-05-09 18:54:52 -07001614 goto in_order;
Dave Barach68b0fb02017-02-28 15:15:56 -05001615 }
1616
Florin Coras00cd22d2018-04-18 13:20:18 -07001617 /* RFC2581: Enqueue and send DUPACK for fast retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001618 error = tcp_session_enqueue_ooo (tc, b, n_data_bytes);
Florin Coras6792ec02017-03-13 03:49:51 -07001619 *next0 = tcp_next_output (tc->c_is_ip4);
Florin Coras00cd22d2018-04-18 13:20:18 -07001620 tcp_make_ack (tc, b);
1621 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_DUPACK;
Florin Corasca1c8f32018-05-23 21:01:30 -07001622 TCP_EVT_DBG (TCP_EVT_DUPACK_SENT, tc, vnet_buffer (b)->tcp);
Dave Barach68b0fb02017-02-28 15:15:56 -05001623 goto done;
1624 }
1625
Florin Corasdb84e572017-05-09 18:54:52 -07001626in_order:
1627
Dave Barach68b0fb02017-02-28 15:15:56 -05001628 /* In order data, enqueue. Fifo figures out by itself if any out-of-order
1629 * segments can be enqueued after fifo tail offset changes. */
1630 error = tcp_session_enqueue_data (tc, b, n_data_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001631 if (tcp_can_delack (tc))
Dave Barach68b0fb02017-02-28 15:15:56 -05001632 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001633 *next0 = tcp_next_drop (tc->c_is_ip4);
Florin Coras6792ec02017-03-13 03:49:51 -07001634 if (!tcp_timer_is_active (tc, TCP_TIMER_DELACK))
1635 tcp_timer_set (tc, TCP_TIMER_DELACK, TCP_DELACK_TIME);
Florin Coras3e350af2017-03-30 02:54:28 -07001636 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001637 }
1638
Florin Coras3e350af2017-03-30 02:54:28 -07001639 *next0 = tcp_next_output (tc->c_is_ip4);
1640 tcp_make_ack (tc, b);
1641
Dave Barach68b0fb02017-02-28 15:15:56 -05001642done:
1643 return error;
1644}
1645
Clement Durand6cf260c2017-04-13 13:27:04 +02001646typedef struct
1647{
1648 tcp_header_t tcp_header;
1649 tcp_connection_t tcp_connection;
1650} tcp_rx_trace_t;
1651
1652u8 *
1653format_tcp_rx_trace (u8 * s, va_list * args)
1654{
1655 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1656 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1657 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +02001658 u32 indent = format_get_indent (s);
Clement Durand6cf260c2017-04-13 13:27:04 +02001659
1660 s = format (s, "%U\n%U%U",
1661 format_tcp_header, &t->tcp_header, 128,
1662 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -07001663 format_tcp_connection, &t->tcp_connection, 1);
Clement Durand6cf260c2017-04-13 13:27:04 +02001664
1665 return s;
1666}
1667
1668u8 *
1669format_tcp_rx_trace_short (u8 * s, va_list * args)
1670{
1671 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1672 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1673 tcp_rx_trace_t *t = va_arg (*args, tcp_rx_trace_t *);
1674
1675 s = format (s, "%d -> %d (%U)",
1676 clib_net_to_host_u16 (t->tcp_header.src_port),
1677 clib_net_to_host_u16 (t->tcp_header.dst_port), format_tcp_state,
Florin Corasbb292f42017-05-19 09:49:19 -07001678 t->tcp_connection.state);
Clement Durand6cf260c2017-04-13 13:27:04 +02001679
1680 return s;
1681}
1682
Florin Coras82b13a82017-04-25 11:58:06 -07001683void
1684tcp_set_rx_trace_data (tcp_rx_trace_t * t0, tcp_connection_t * tc0,
1685 tcp_header_t * th0, vlib_buffer_t * b0, u8 is_ip4)
1686{
1687 if (tc0)
1688 {
1689 clib_memcpy (&t0->tcp_connection, tc0, sizeof (t0->tcp_connection));
1690 }
1691 else
1692 {
1693 th0 = tcp_buffer_hdr (b0);
1694 }
1695 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
1696}
1697
Florin Coras6792ec02017-03-13 03:49:51 -07001698always_inline void
Florin Coras00cd22d2018-04-18 13:20:18 -07001699tcp_node_inc_counter_i (vlib_main_t * vm, u32 tcp4_node, u32 tcp6_node,
1700 u8 is_ip4, u32 evt, u32 val)
Dave Barach68b0fb02017-02-28 15:15:56 -05001701{
Florin Coras6792ec02017-03-13 03:49:51 -07001702 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -07001703 vlib_node_increment_counter (vm, tcp4_node, evt, val);
Florin Coras6792ec02017-03-13 03:49:51 -07001704 else
Florin Coras3cbc04b2017-10-02 00:18:51 -07001705 vlib_node_increment_counter (vm, tcp6_node, evt, val);
Dave Barach68b0fb02017-02-28 15:15:56 -05001706}
1707
Florin Coras00cd22d2018-04-18 13:20:18 -07001708#define tcp_maybe_inc_counter(node_id, err, count) \
1709{ \
1710 if (next0 != tcp_next_drop (is_ip4)) \
1711 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
1712 tcp6_##node_id##_node.index, is_ip4, err, \
1713 1); \
1714}
1715#define tcp_inc_counter(node_id, err, count) \
1716 tcp_node_inc_counter_i (vm, tcp4_##node_id##_node.index, \
1717 tcp6_##node_id##_node.index, is_ip4, \
1718 err, count)
1719#define tcp_maybe_inc_err_counter(cnts, err) \
1720{ \
1721 cnts[err] += (next0 != tcp_next_drop (is_ip4)); \
1722}
1723#define tcp_inc_err_counter(cnts, err, val) \
1724{ \
1725 cnts[err] += val; \
1726}
1727#define tcp_store_err_counters(node_id, cnts) \
1728{ \
1729 int i; \
1730 for (i = 0; i < TCP_N_ERROR; i++) \
1731 if (cnts[i]) \
1732 tcp_inc_counter(node_id, i, cnts[i]); \
1733}
1734
1735
Dave Barach68b0fb02017-02-28 15:15:56 -05001736always_inline uword
1737tcp46_established_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1738 vlib_frame_t * from_frame, int is_ip4)
1739{
Damjan Marion586afd72017-04-05 19:18:20 +02001740 u32 my_thread_index = vm->thread_index, errors = 0;
Florin Coras00cd22d2018-04-18 13:20:18 -07001741 u32 n_left_from, next_index, *from, *to_next;
1742 u16 err_counters[TCP_N_ERROR] = { 0 };
Dave Barach1f75cfd2017-04-14 16:46:44 -04001743 u8 is_fin = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001744
1745 from = vlib_frame_vector_args (from_frame);
1746 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05001747 next_index = node->cached_next_index;
1748
1749 while (n_left_from > 0)
1750 {
1751 u32 n_left_to_next;
1752
1753 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Dave Barach68b0fb02017-02-28 15:15:56 -05001754 while (n_left_from > 0 && n_left_to_next > 0)
1755 {
1756 u32 bi0;
1757 vlib_buffer_t *b0;
1758 tcp_header_t *th0 = 0;
1759 tcp_connection_t *tc0;
Florin Coras00cd22d2018-04-18 13:20:18 -07001760 u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05001761
Florin Coras81a13db2018-03-16 08:48:31 -07001762 if (n_left_from > 1)
1763 {
1764 vlib_buffer_t *pb;
1765 pb = vlib_get_buffer (vm, from[1]);
1766 vlib_prefetch_buffer_header (pb, LOAD);
1767 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
1768 }
1769
Dave Barach68b0fb02017-02-28 15:15:56 -05001770 bi0 = from[0];
1771 to_next[0] = bi0;
1772 from += 1;
1773 to_next += 1;
1774 n_left_from -= 1;
1775 n_left_to_next -= 1;
1776
1777 b0 = vlib_get_buffer (vm, bi0);
1778 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
1779 my_thread_index);
1780
Florin Corasd79b41e2017-03-04 05:37:52 -08001781 if (PREDICT_FALSE (tc0 == 0))
1782 {
1783 error0 = TCP_ERROR_INVALID_CONNECTION;
Florin Coras6792ec02017-03-13 03:49:51 -07001784 goto done;
Florin Corasd79b41e2017-03-04 05:37:52 -08001785 }
1786
Florin Coras82b13a82017-04-25 11:58:06 -07001787 th0 = tcp_buffer_hdr (b0);
Florin Coras6534b7a2017-07-18 05:38:03 -04001788 /* N.B. buffer is rewritten if segment is ooo. Thus, th0 becomes a
1789 * dangling reference. */
1790 is_fin = tcp_is_fin (th0);
Dave Barach1f75cfd2017-04-14 16:46:44 -04001791
Dave Barach68b0fb02017-02-28 15:15:56 -05001792 /* SYNs, FINs and data consume sequence numbers */
1793 vnet_buffer (b0)->tcp.seq_end = vnet_buffer (b0)->tcp.seq_number
Florin Coras82b13a82017-04-25 11:58:06 -07001794 + tcp_is_syn (th0) + is_fin + vnet_buffer (b0)->tcp.data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05001795
1796 /* TODO header prediction fast path */
1797
1798 /* 1-4: check SEQ, RST, SYN */
Florin Coras00cd22d2018-04-18 13:20:18 -07001799 if (PREDICT_FALSE (tcp_segment_validate (vm, tc0, b0, th0, &next0,
1800 &error0)))
Dave Barach68b0fb02017-02-28 15:15:56 -05001801 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001802 tcp_maybe_inc_err_counter (err_counters, error0);
Florin Corasca1c8f32018-05-23 21:01:30 -07001803 TCP_EVT_DBG (TCP_EVT_SEG_INVALID, tc0, vnet_buffer (b0)->tcp);
Florin Coras6792ec02017-03-13 03:49:51 -07001804 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001805 }
1806
1807 /* 5: check the ACK field */
Florin Coras00cd22d2018-04-18 13:20:18 -07001808 if (PREDICT_FALSE (tcp_rcv_ack (tc0, b0, th0, &next0, &error0)))
1809 {
1810 tcp_maybe_inc_err_counter (err_counters, error0);
1811 goto done;
1812 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001813
1814 /* 6: check the URG bit TODO */
1815
1816 /* 7: process the segment text */
Florin Coras6534b7a2017-07-18 05:38:03 -04001817 if (vnet_buffer (b0)->tcp.data_len)
Florin Coras00cd22d2018-04-18 13:20:18 -07001818 {
1819 error0 = tcp_segment_rcv (tc0, b0, &next0);
1820 tcp_maybe_inc_err_counter (err_counters, error0);
1821 }
Dave Barach1f75cfd2017-04-14 16:46:44 -04001822
Dave Barach68b0fb02017-02-28 15:15:56 -05001823 /* 8: check the FIN bit */
Florin Coras6534b7a2017-07-18 05:38:03 -04001824 if (PREDICT_FALSE (is_fin))
Dave Barach68b0fb02017-02-28 15:15:56 -05001825 {
Florin Coras9d063042017-09-14 03:08:00 -04001826 /* Enter CLOSE-WAIT and notify session. To avoid lingering
Florin Corasd79b41e2017-03-04 05:37:52 -08001827 * in CLOSE-WAIT, set timer (reuse WAITCLOSE). */
Florin Coras9d063042017-09-14 03:08:00 -04001828 /* Account for the FIN if nothing else was received */
Florin Coras68810622017-07-24 17:40:28 -07001829 if (vnet_buffer (b0)->tcp.data_len == 0)
Florin Coras9d063042017-09-14 03:08:00 -04001830 tc0->rcv_nxt += 1;
1831 tcp_make_ack (tc0, b0);
1832 next0 = tcp_next_output (tc0->c_is_ip4);
1833 tc0->state = TCP_STATE_CLOSE_WAIT;
Dave Barach68b0fb02017-02-28 15:15:56 -05001834 stream_session_disconnect_notify (&tc0->connection);
Florin Coras68810622017-07-24 17:40:28 -07001835 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_CLOSEWAIT_TIME);
Florin Coras9d063042017-09-14 03:08:00 -04001836 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -07001837 tcp_inc_err_counter (err_counters, TCP_ERROR_FIN_RCVD, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05001838 }
1839
Florin Coras6792ec02017-03-13 03:49:51 -07001840 done:
Dave Barach68b0fb02017-02-28 15:15:56 -05001841 b0->error = node->errors[error0];
1842 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
1843 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001844 tcp_rx_trace_t *t0 = vlib_add_trace (vm, node, b0,
1845 sizeof (*t0));
Florin Coras82b13a82017-04-25 11:58:06 -07001846 tcp_set_rx_trace_data (t0, tc0, th0, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001847 }
1848
1849 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1850 n_left_to_next, bi0, next0);
1851 }
1852
1853 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1854 }
1855
Florin Coras3cbc04b2017-10-02 00:18:51 -07001856 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
1857 my_thread_index);
Florin Coras00cd22d2018-04-18 13:20:18 -07001858 err_counters[TCP_ERROR_EVENT_FIFO_FULL] = errors;
1859 tcp_store_err_counters (established, err_counters);
Florin Coras66b11312017-07-31 17:18:03 -07001860 tcp_flush_frame_to_output (vm, my_thread_index, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001861 return from_frame->n_vectors;
1862}
1863
1864static uword
1865tcp4_established (vlib_main_t * vm, vlib_node_runtime_t * node,
1866 vlib_frame_t * from_frame)
1867{
1868 return tcp46_established_inline (vm, node, from_frame, 1 /* is_ip4 */ );
1869}
1870
1871static uword
1872tcp6_established (vlib_main_t * vm, vlib_node_runtime_t * node,
1873 vlib_frame_t * from_frame)
1874{
1875 return tcp46_established_inline (vm, node, from_frame, 0 /* is_ip4 */ );
1876}
1877
1878/* *INDENT-OFF* */
1879VLIB_REGISTER_NODE (tcp4_established_node) =
1880{
1881 .function = tcp4_established,
1882 .name = "tcp4-established",
1883 /* Takes a vector of packets. */
1884 .vector_size = sizeof (u32),
Florin Corase69f4952017-03-07 10:06:24 -08001885 .n_errors = TCP_N_ERROR,
1886 .error_strings = tcp_error_strings,
Dave Barach68b0fb02017-02-28 15:15:56 -05001887 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
1888 .next_nodes =
1889 {
1890#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
1891 foreach_tcp_state_next
1892#undef _
1893 },
Clement Durand6cf260c2017-04-13 13:27:04 +02001894 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05001895};
1896/* *INDENT-ON* */
1897
1898VLIB_NODE_FUNCTION_MULTIARCH (tcp4_established_node, tcp4_established);
1899
1900/* *INDENT-OFF* */
1901VLIB_REGISTER_NODE (tcp6_established_node) =
1902{
1903 .function = tcp6_established,
1904 .name = "tcp6-established",
1905 /* Takes a vector of packets. */
1906 .vector_size = sizeof (u32),
1907 .n_errors = TCP_N_ERROR,
1908 .error_strings = tcp_error_strings,
1909 .n_next_nodes = TCP_ESTABLISHED_N_NEXT,
1910 .next_nodes =
1911 {
1912#define _(s,n) [TCP_ESTABLISHED_NEXT_##s] = n,
1913 foreach_tcp_state_next
1914#undef _
1915 },
Clement Durand6cf260c2017-04-13 13:27:04 +02001916 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05001917};
1918/* *INDENT-ON* */
1919
1920
1921VLIB_NODE_FUNCTION_MULTIARCH (tcp6_established_node, tcp6_established);
1922
1923vlib_node_registration_t tcp4_syn_sent_node;
1924vlib_node_registration_t tcp6_syn_sent_node;
1925
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001926static u8
1927tcp_lookup_is_valid (tcp_connection_t * tc, tcp_header_t * hdr)
1928{
Florin Corascea194d2017-10-02 00:18:51 -07001929 transport_connection_t *tmp = 0;
1930 u64 handle;
1931
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001932 if (!tc)
1933 return 1;
1934
Florin Coras70131132017-11-27 02:43:30 -08001935 /* Proxy case */
1936 if (tc->c_lcl_port == 0 && tc->state == TCP_STATE_LISTEN)
1937 return 1;
1938
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001939 u8 is_valid = (tc->c_lcl_port == hdr->dst_port
1940 && (tc->state == TCP_STATE_LISTEN
1941 || tc->c_rmt_port == hdr->src_port));
1942
1943 if (!is_valid)
1944 {
Florin Corascea194d2017-10-02 00:18:51 -07001945 handle = session_lookup_half_open_handle (&tc->connection);
1946 tmp = session_lookup_half_open_connection (handle & 0xFFFFFFFF,
Florin Coras3cbc04b2017-10-02 00:18:51 -07001947 tc->c_proto, tc->c_is_ip4);
Florin Corascea194d2017-10-02 00:18:51 -07001948
1949 if (tmp)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001950 {
1951 if (tmp->lcl_port == hdr->dst_port
1952 && tmp->rmt_port == hdr->src_port)
1953 {
Florin Corascea194d2017-10-02 00:18:51 -07001954 TCP_DBG ("half-open is valid!");
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001955 }
1956 }
1957 }
1958 return is_valid;
1959}
1960
1961/**
1962 * Lookup transport connection
1963 */
1964static tcp_connection_t *
Florin Corascea194d2017-10-02 00:18:51 -07001965tcp_lookup_connection (u32 fib_index, vlib_buffer_t * b, u8 thread_index,
1966 u8 is_ip4)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001967{
1968 tcp_header_t *tcp;
1969 transport_connection_t *tconn;
1970 tcp_connection_t *tc;
Florin Corasdff48db2017-11-19 18:06:58 -08001971 u8 is_filtered = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001972 if (is_ip4)
1973 {
1974 ip4_header_t *ip4;
1975 ip4 = vlib_buffer_get_current (b);
1976 tcp = ip4_next_header (ip4);
Florin Corascea194d2017-10-02 00:18:51 -07001977 tconn = session_lookup_connection_wt4 (fib_index,
1978 &ip4->dst_address,
1979 &ip4->src_address,
1980 tcp->dst_port,
1981 tcp->src_port,
1982 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08001983 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001984 tc = tcp_get_connection_from_transport (tconn);
1985 ASSERT (tcp_lookup_is_valid (tc, tcp));
1986 }
1987 else
1988 {
1989 ip6_header_t *ip6;
1990 ip6 = vlib_buffer_get_current (b);
1991 tcp = ip6_next_header (ip6);
Florin Corascea194d2017-10-02 00:18:51 -07001992 tconn = session_lookup_connection_wt6 (fib_index,
1993 &ip6->dst_address,
1994 &ip6->src_address,
1995 tcp->dst_port,
1996 tcp->src_port,
1997 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08001998 thread_index, &is_filtered);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001999 tc = tcp_get_connection_from_transport (tconn);
2000 ASSERT (tcp_lookup_is_valid (tc, tcp));
2001 }
2002 return tc;
2003}
2004
Dave Barach68b0fb02017-02-28 15:15:56 -05002005always_inline uword
2006tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2007 vlib_frame_t * from_frame, int is_ip4)
2008{
2009 tcp_main_t *tm = vnet_get_tcp_main ();
2010 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02002011 u32 my_thread_index = vm->thread_index, errors = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002012
2013 from = vlib_frame_vector_args (from_frame);
2014 n_left_from = from_frame->n_vectors;
2015
2016 next_index = node->cached_next_index;
2017
2018 while (n_left_from > 0)
2019 {
2020 u32 n_left_to_next;
2021
2022 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2023
2024 while (n_left_from > 0 && n_left_to_next > 0)
2025 {
2026 u32 bi0, ack0, seq0;
2027 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002028 tcp_rx_trace_t *t0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002029 tcp_header_t *tcp0 = 0;
2030 tcp_connection_t *tc0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002031 tcp_connection_t *new_tc0;
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002032 u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_ENQUEUED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002033
2034 bi0 = from[0];
2035 to_next[0] = bi0;
2036 from += 1;
2037 to_next += 1;
2038 n_left_from -= 1;
2039 n_left_to_next -= 1;
2040
2041 b0 = vlib_get_buffer (vm, bi0);
2042 tc0 =
2043 tcp_half_open_connection_get (vnet_buffer (b0)->
2044 tcp.connection_index);
Dave Barachd84ba852017-08-22 17:56:46 -04002045 if (PREDICT_FALSE (tc0 == 0))
2046 {
2047 error0 = TCP_ERROR_INVALID_CONNECTION;
2048 goto drop;
2049 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002050
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002051 /* Half-open completed recently but the connection was't removed
2052 * yet by the owning thread */
2053 if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
2054 {
2055 /* Make sure the connection actually exists */
Florin Corascea194d2017-10-02 00:18:51 -07002056 ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
2057 my_thread_index, is_ip4));
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002058 goto drop;
2059 }
2060
Dave Barach68b0fb02017-02-28 15:15:56 -05002061 ack0 = vnet_buffer (b0)->tcp.ack_number;
2062 seq0 = vnet_buffer (b0)->tcp.seq_number;
Florin Coras82b13a82017-04-25 11:58:06 -07002063 tcp0 = tcp_buffer_hdr (b0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002064
Florin Coras9d063042017-09-14 03:08:00 -04002065 /* Crude check to see if the connection handle does not match
2066 * the packet. Probably connection just switched to established */
2067 if (PREDICT_FALSE (tcp0->dst_port != tc0->c_lcl_port
2068 || tcp0->src_port != tc0->c_rmt_port))
2069 goto drop;
2070
Dave Barach68b0fb02017-02-28 15:15:56 -05002071 if (PREDICT_FALSE
2072 (!tcp_ack (tcp0) && !tcp_rst (tcp0) && !tcp_syn (tcp0)))
2073 goto drop;
2074
2075 /* SYNs, FINs and data consume sequence numbers */
2076 vnet_buffer (b0)->tcp.seq_end = seq0 + tcp_is_syn (tcp0)
Florin Coras82b13a82017-04-25 11:58:06 -07002077 + tcp_is_fin (tcp0) + vnet_buffer (b0)->tcp.data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05002078
2079 /*
2080 * 1. check the ACK bit
2081 */
2082
2083 /*
2084 * If the ACK bit is set
2085 * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send a reset (unless
2086 * the RST bit is set, if so drop the segment and return)
2087 * <SEQ=SEG.ACK><CTL=RST>
2088 * and discard the segment. Return.
2089 * If SND.UNA =< SEG.ACK =< SND.NXT then the ACK is acceptable.
2090 */
2091 if (tcp_ack (tcp0))
2092 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002093 if (seq_leq (ack0, tc0->iss) || seq_gt (ack0, tc0->snd_nxt))
Dave Barach68b0fb02017-02-28 15:15:56 -05002094 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002095 clib_warning ("ack not in rcv wnd");
Dave Barach68b0fb02017-02-28 15:15:56 -05002096 if (!tcp_rst (tcp0))
Florin Coras1f152cd2017-08-18 19:28:03 -07002097 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002098 goto drop;
2099 }
2100
2101 /* Make sure ACK is valid */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002102 if (seq_gt (tc0->snd_una, ack0))
2103 {
2104 clib_warning ("ack invalid");
2105 goto drop;
2106 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002107 }
2108
2109 /*
2110 * 2. check the RST bit
2111 */
2112
2113 if (tcp_rst (tcp0))
2114 {
2115 /* If ACK is acceptable, signal client that peer is not
2116 * willing to accept connection and drop connection*/
2117 if (tcp_ack (tcp0))
Florin Coras6534b7a2017-07-18 05:38:03 -04002118 tcp_connection_reset (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002119 goto drop;
2120 }
2121
2122 /*
2123 * 3. check the security and precedence (skipped)
2124 */
2125
2126 /*
2127 * 4. check the SYN bit
2128 */
2129
2130 /* No SYN flag. Drop. */
2131 if (!tcp_syn (tcp0))
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002132 {
2133 clib_warning ("not synack");
2134 goto drop;
2135 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002136
Florin Coras6534b7a2017-07-18 05:38:03 -04002137 /* Parse options */
2138 if (tcp_options_parse (tcp0, &tc0->rcv_opts))
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002139 {
2140 clib_warning ("options parse fail");
2141 goto drop;
2142 }
Florin Coras6534b7a2017-07-18 05:38:03 -04002143
Dave Barach68b0fb02017-02-28 15:15:56 -05002144 /* Valid SYN or SYN-ACK. Move connection from half-open pool to
2145 * current thread pool. */
2146 pool_get (tm->connections[my_thread_index], new_tc0);
2147 clib_memcpy (new_tc0, tc0, sizeof (*new_tc0));
Dave Barach259cdae2017-05-15 16:27:05 -04002148 new_tc0->c_c_index = new_tc0 - tm->connections[my_thread_index];
Florin Coras6534b7a2017-07-18 05:38:03 -04002149 new_tc0->c_thread_index = my_thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002150 new_tc0->rcv_nxt = vnet_buffer (b0)->tcp.seq_end;
2151 new_tc0->irs = seq0;
Florin Coras68810622017-07-24 17:40:28 -07002152 new_tc0->timers[TCP_TIMER_ESTABLISH] = TCP_TIMER_HANDLE_INVALID;
2153 new_tc0->timers[TCP_TIMER_RETRANSMIT_SYN] =
2154 TCP_TIMER_HANDLE_INVALID;
Florin Corasf9d05682018-04-26 08:26:52 -07002155 new_tc0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Florin Coras68810622017-07-24 17:40:28 -07002156
2157 /* If this is not the owning thread, wait for syn retransmit to
2158 * expire and cleanup then */
2159 if (tcp_half_open_connection_cleanup (tc0))
2160 tc0->flags |= TCP_CONN_HALF_OPEN_DONE;
Dave Barach68b0fb02017-02-28 15:15:56 -05002161
Florin Coras93992a92017-05-24 18:03:56 -07002162 if (tcp_opts_tstamp (&new_tc0->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05002163 {
Florin Coras93992a92017-05-24 18:03:56 -07002164 new_tc0->tsval_recent = new_tc0->rcv_opts.tsval;
Dave Barach68b0fb02017-02-28 15:15:56 -05002165 new_tc0->tsval_recent_age = tcp_time_now ();
2166 }
2167
Florin Coras93992a92017-05-24 18:03:56 -07002168 if (tcp_opts_wscale (&new_tc0->rcv_opts))
2169 new_tc0->snd_wscale = new_tc0->rcv_opts.wscale;
Dave Barach68b0fb02017-02-28 15:15:56 -05002170
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002171 /* RFC1323: SYN and SYN-ACK wnd not scaled */
2172 new_tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window);
Dave Barach68b0fb02017-02-28 15:15:56 -05002173 new_tc0->snd_wl1 = seq0;
2174 new_tc0->snd_wl2 = ack0;
2175
Florin Corase04c2992017-03-01 08:17:34 -08002176 tcp_connection_init_vars (new_tc0);
2177
Dave Barach68b0fb02017-02-28 15:15:56 -05002178 /* SYN-ACK: See if we can switch to ESTABLISHED state */
Florin Coras6534b7a2017-07-18 05:38:03 -04002179 if (PREDICT_TRUE (tcp_ack (tcp0)))
Dave Barach68b0fb02017-02-28 15:15:56 -05002180 {
2181 /* Our SYN is ACKed: we have iss < ack = snd_una */
2182
2183 /* TODO Dequeue acknowledged segments if we support Fast Open */
2184 new_tc0->snd_una = ack0;
2185 new_tc0->state = TCP_STATE_ESTABLISHED;
2186
Florin Corase04c2992017-03-01 08:17:34 -08002187 /* Make sure las is initialized for the wnd computation */
2188 new_tc0->rcv_las = new_tc0->rcv_nxt;
2189
Florin Corasf03a59a2017-06-09 21:07:32 -07002190 /* Notify app that we have connection. If session layer can't
2191 * allocate session send reset */
Florin Coras3cbc04b2017-10-02 00:18:51 -07002192 if (session_stream_connect_notify (&new_tc0->connection, 0))
Florin Corasf03a59a2017-06-09 21:07:32 -07002193 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002194 clib_warning ("connect notify fail");
Florin Coras1f152cd2017-08-18 19:28:03 -07002195 tcp_send_reset_w_pkt (new_tc0, b0, is_ip4);
Florin Corasf03a59a2017-06-09 21:07:32 -07002196 tcp_connection_cleanup (new_tc0);
Florin Corasf03a59a2017-06-09 21:07:32 -07002197 goto drop;
2198 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002199
2200 /* Make sure after data segment processing ACK is sent */
2201 new_tc0->flags |= TCP_CONN_SNDACK;
Dave Barach2c25a622017-06-26 11:35:07 -04002202
2203 /* Update rtt with the syn-ack sample */
Dave Barach2c25a622017-06-26 11:35:07 -04002204 tcp_update_rtt (new_tc0, vnet_buffer (b0)->tcp.ack_number);
Florin Coras6534b7a2017-07-18 05:38:03 -04002205 TCP_EVT_DBG (TCP_EVT_SYNACK_RCVD, new_tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002206 }
2207 /* SYN: Simultaneous open. Change state to SYN-RCVD and send SYN-ACK */
2208 else
2209 {
2210 new_tc0->state = TCP_STATE_SYN_RCVD;
2211
Florin Corase69f4952017-03-07 10:06:24 -08002212 /* Notify app that we have connection */
Florin Coras3cbc04b2017-10-02 00:18:51 -07002213 if (session_stream_connect_notify (&new_tc0->connection, 0))
Florin Corasf03a59a2017-06-09 21:07:32 -07002214 {
2215 tcp_connection_cleanup (new_tc0);
Florin Coras1f152cd2017-08-18 19:28:03 -07002216 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -04002217 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc0);
Florin Corasf03a59a2017-06-09 21:07:32 -07002218 goto drop;
2219 }
2220
Dave Barach2c25a622017-06-26 11:35:07 -04002221 tc0->rtt_ts = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002222 tcp_init_snd_vars (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002223 tcp_make_synack (new_tc0, b0);
2224 next0 = tcp_next_output (is_ip4);
2225
2226 goto drop;
2227 }
2228
2229 /* Read data, if any */
Florin Coras6534b7a2017-07-18 05:38:03 -04002230 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.data_len))
Dave Barach68b0fb02017-02-28 15:15:56 -05002231 {
Florin Coras00cd22d2018-04-18 13:20:18 -07002232 clib_warning ("rcvd data in syn-sent");
2233 error0 = tcp_segment_rcv (new_tc0, b0, &next0);
2234 if (error0 == TCP_ERROR_ACK_OK)
Dave Barach68b0fb02017-02-28 15:15:56 -05002235 error0 = TCP_ERROR_SYN_ACKS_RCVD;
Florin Coras00cd22d2018-04-18 13:20:18 -07002236 tcp_maybe_inc_counter (syn_sent, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002237 }
2238 else
2239 {
2240 tcp_make_ack (new_tc0, b0);
2241 next0 = tcp_next_output (new_tc0->c_is_ip4);
2242 }
2243
2244 drop:
2245
2246 b0->error = error0 ? node->errors[error0] : 0;
Chris Luke879ace32017-09-26 13:15:16 -04002247 if (PREDICT_FALSE
2248 ((b0->flags & VLIB_BUFFER_IS_TRACED) && tcp0 != 0))
Dave Barach68b0fb02017-02-28 15:15:56 -05002249 {
Clement Durand6cf260c2017-04-13 13:27:04 +02002250 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2251 clib_memcpy (&t0->tcp_header, tcp0, sizeof (t0->tcp_header));
2252 clib_memcpy (&t0->tcp_connection, tc0,
2253 sizeof (t0->tcp_connection));
Dave Barach68b0fb02017-02-28 15:15:56 -05002254 }
2255
2256 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2257 n_left_to_next, bi0, next0);
2258 }
2259
2260 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2261 }
2262
Florin Coras3cbc04b2017-10-02 00:18:51 -07002263 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2264 my_thread_index);
Florin Coras00cd22d2018-04-18 13:20:18 -07002265 tcp_inc_counter (syn_sent, TCP_ERROR_EVENT_FIFO_FULL, errors);
Dave Barach68b0fb02017-02-28 15:15:56 -05002266 return from_frame->n_vectors;
2267}
2268
2269static uword
2270tcp4_syn_sent (vlib_main_t * vm, vlib_node_runtime_t * node,
2271 vlib_frame_t * from_frame)
2272{
2273 return tcp46_syn_sent_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2274}
2275
2276static uword
2277tcp6_syn_sent_rcv (vlib_main_t * vm, vlib_node_runtime_t * node,
2278 vlib_frame_t * from_frame)
2279{
2280 return tcp46_syn_sent_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2281}
2282
2283/* *INDENT-OFF* */
2284VLIB_REGISTER_NODE (tcp4_syn_sent_node) =
2285{
2286 .function = tcp4_syn_sent,
2287 .name = "tcp4-syn-sent",
2288 /* Takes a vector of packets. */
2289 .vector_size = sizeof (u32),
2290 .n_errors = TCP_N_ERROR,
2291 .error_strings = tcp_error_strings,
2292 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2293 .next_nodes =
2294 {
2295#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2296 foreach_tcp_state_next
2297#undef _
2298 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002299 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002300};
2301/* *INDENT-ON* */
2302
2303VLIB_NODE_FUNCTION_MULTIARCH (tcp4_syn_sent_node, tcp4_syn_sent);
2304
2305/* *INDENT-OFF* */
2306VLIB_REGISTER_NODE (tcp6_syn_sent_node) =
2307{
2308 .function = tcp6_syn_sent_rcv,
2309 .name = "tcp6-syn-sent",
2310 /* Takes a vector of packets. */
2311 .vector_size = sizeof (u32),
2312 .n_errors = TCP_N_ERROR,
2313 .error_strings = tcp_error_strings,
2314 .n_next_nodes = TCP_SYN_SENT_N_NEXT,
2315 .next_nodes =
2316 {
2317#define _(s,n) [TCP_SYN_SENT_NEXT_##s] = n,
2318 foreach_tcp_state_next
2319#undef _
Clement Durand6cf260c2017-04-13 13:27:04 +02002320 },
2321 .format_trace = format_tcp_rx_trace_short,
2322};
Dave Barach68b0fb02017-02-28 15:15:56 -05002323/* *INDENT-ON* */
2324
2325VLIB_NODE_FUNCTION_MULTIARCH (tcp6_syn_sent_node, tcp6_syn_sent_rcv);
Florin Coras6534b7a2017-07-18 05:38:03 -04002326
Florin Coras3cbc04b2017-10-02 00:18:51 -07002327vlib_node_registration_t tcp4_rcv_process_node;
2328vlib_node_registration_t tcp6_rcv_process_node;
2329
Dave Barach68b0fb02017-02-28 15:15:56 -05002330/**
Florin Corasd79b41e2017-03-04 05:37:52 -08002331 * Handles reception for all states except LISTEN, SYN-SENT and ESTABLISHED
Dave Barach68b0fb02017-02-28 15:15:56 -05002332 * as per RFC793 p. 64
2333 */
2334always_inline uword
2335tcp46_rcv_process_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2336 vlib_frame_t * from_frame, int is_ip4)
2337{
Florin Coras00cd22d2018-04-18 13:20:18 -07002338 u32 n_left_from, next_index, *from, *to_next, n_fins = 0;
Damjan Marion586afd72017-04-05 19:18:20 +02002339 u32 my_thread_index = vm->thread_index, errors = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002340
2341 from = vlib_frame_vector_args (from_frame);
2342 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002343 next_index = node->cached_next_index;
2344
2345 while (n_left_from > 0)
2346 {
2347 u32 n_left_to_next;
2348
2349 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2350
2351 while (n_left_from > 0 && n_left_to_next > 0)
2352 {
2353 u32 bi0;
2354 vlib_buffer_t *b0;
2355 tcp_header_t *tcp0 = 0;
2356 tcp_connection_t *tc0;
Florin Coras00cd22d2018-04-18 13:20:18 -07002357 u32 next0 = tcp_next_drop (is_ip4), error0 = TCP_ERROR_NONE;
Florin Coras9d063042017-09-14 03:08:00 -04002358 u8 is_fin0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002359
2360 bi0 = from[0];
2361 to_next[0] = bi0;
2362 from += 1;
2363 to_next += 1;
2364 n_left_from -= 1;
2365 n_left_to_next -= 1;
2366
2367 b0 = vlib_get_buffer (vm, bi0);
2368 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
2369 my_thread_index);
Florin Corasd79b41e2017-03-04 05:37:52 -08002370 if (PREDICT_FALSE (tc0 == 0))
2371 {
2372 error0 = TCP_ERROR_INVALID_CONNECTION;
2373 goto drop;
2374 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002375
Florin Coras82b13a82017-04-25 11:58:06 -07002376 tcp0 = tcp_buffer_hdr (b0);
Florin Coras9d063042017-09-14 03:08:00 -04002377 is_fin0 = tcp_is_fin (tcp0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002378
2379 /* SYNs, FINs and data consume sequence numbers */
2380 vnet_buffer (b0)->tcp.seq_end = vnet_buffer (b0)->tcp.seq_number
Florin Coras9d063042017-09-14 03:08:00 -04002381 + tcp_is_syn (tcp0) + is_fin0 + vnet_buffer (b0)->tcp.data_len;
Dave Barach68b0fb02017-02-28 15:15:56 -05002382
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002383 if (CLIB_DEBUG)
2384 {
2385 tcp_connection_t *tmp;
Florin Coras00cd22d2018-04-18 13:20:18 -07002386 tmp = tcp_lookup_connection (tc0->c_fib_index, b0,
2387 my_thread_index, is_ip4);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002388 if (tmp->state != tc0->state)
2389 {
2390 clib_warning ("state changed");
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002391 goto drop;
2392 }
2393 }
2394
Dave Barach68b0fb02017-02-28 15:15:56 -05002395 /*
2396 * Special treatment for CLOSED
2397 */
Florin Coras00cd22d2018-04-18 13:20:18 -07002398 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
Dave Barach68b0fb02017-02-28 15:15:56 -05002399 {
Florin Coras00cd22d2018-04-18 13:20:18 -07002400 error0 = TCP_ERROR_CONNECTION_CLOSED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002401 goto drop;
Dave Barach68b0fb02017-02-28 15:15:56 -05002402 }
2403
2404 /*
2405 * For all other states (except LISTEN)
2406 */
2407
2408 /* 1-4: check SEQ, RST, SYN */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002409 if (PREDICT_FALSE (tcp_segment_validate (vm, tc0, b0, tcp0,
Florin Coras00cd22d2018-04-18 13:20:18 -07002410 &next0, &error0)))
Dave Barach68b0fb02017-02-28 15:15:56 -05002411 {
Florin Coras00cd22d2018-04-18 13:20:18 -07002412 tcp_maybe_inc_counter (rcv_process, error0, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -05002413 goto drop;
2414 }
2415
2416 /* 5: check the ACK field */
2417 switch (tc0->state)
2418 {
2419 case TCP_STATE_SYN_RCVD:
2420 /*
2421 * If the segment acknowledgment is not acceptable, form a
2422 * reset segment,
2423 * <SEQ=SEG.ACK><CTL=RST>
2424 * and send it.
2425 */
2426 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
2427 {
Florin Corasa096f2d2017-09-28 23:49:42 -04002428 TCP_DBG ("connection not accepted");
Florin Coras1f152cd2017-08-18 19:28:03 -07002429 tcp_send_reset_w_pkt (tc0, b0, is_ip4);
Florin Coras00cd22d2018-04-18 13:20:18 -07002430 error0 = TCP_ERROR_ACK_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05002431 goto drop;
2432 }
Florin Coras3af90fc2017-05-03 21:09:42 -07002433
2434 /* Update rtt and rto */
Florin Coras3af90fc2017-05-03 21:09:42 -07002435 tcp_update_rtt (tc0, vnet_buffer (b0)->tcp.ack_number);
2436
Dave Barach68b0fb02017-02-28 15:15:56 -05002437 /* Switch state to ESTABLISHED */
2438 tc0->state = TCP_STATE_ESTABLISHED;
Florin Corasb384b542018-01-15 01:08:33 -08002439 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002440
2441 /* Initialize session variables */
2442 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
Florin Corase04c2992017-03-01 08:17:34 -08002443 tc0->snd_wnd = clib_net_to_host_u16 (tcp0->window)
Florin Coras93992a92017-05-24 18:03:56 -07002444 << tc0->rcv_opts.wscale;
Dave Barach68b0fb02017-02-28 15:15:56 -05002445 tc0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2446 tc0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
Dave Barach68b0fb02017-02-28 15:15:56 -05002447
Florin Corasab0289a2017-08-14 11:25:25 -07002448 /* Reset SYN-ACK retransmit and SYN_RCV establish timers */
Florin Coras6792ec02017-03-13 03:49:51 -07002449 tcp_retransmit_timer_reset (tc0);
Florin Corasab0289a2017-08-14 11:25:25 -07002450 tcp_timer_reset (tc0, TCP_TIMER_ESTABLISH);
Florin Corasb384b542018-01-15 01:08:33 -08002451 stream_session_accept_notify (&tc0->connection);
Florin Coras00cd22d2018-04-18 13:20:18 -07002452 error0 = TCP_ERROR_ACK_OK;
Dave Barach68b0fb02017-02-28 15:15:56 -05002453 break;
2454 case TCP_STATE_ESTABLISHED:
2455 /* We can get packets in established state here because they
2456 * were enqueued before state change */
2457 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002458 {
2459 tcp_maybe_inc_counter (rcv_process, error0, 1);
2460 goto drop;
2461 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002462
2463 break;
2464 case TCP_STATE_FIN_WAIT_1:
2465 /* In addition to the processing for the ESTABLISHED state, if
2466 * our FIN is now acknowledged then enter FIN-WAIT-2 and
2467 * continue processing in that state. */
2468 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002469 {
2470 tcp_maybe_inc_counter (rcv_process, error0, 1);
2471 goto drop;
2472 }
Florin Corasd79b41e2017-03-04 05:37:52 -08002473
Florin Corasb2215d62017-08-01 16:56:58 -07002474 /* Still have to send the FIN */
2475 if (tc0->flags & TCP_CONN_FINPNDG)
2476 {
2477 /* TX fifo finally drained */
2478 if (!stream_session_tx_fifo_max_dequeue (&tc0->connection))
2479 tcp_send_fin (tc0);
2480 }
Florin Corasd79b41e2017-03-04 05:37:52 -08002481 /* If FIN is ACKed */
Florin Corasb2215d62017-08-01 16:56:58 -07002482 else if (tc0->snd_una == tc0->snd_una_max)
Florin Corasd79b41e2017-03-04 05:37:52 -08002483 {
2484 tc0->state = TCP_STATE_FIN_WAIT_2;
Florin Coras6534b7a2017-07-18 05:38:03 -04002485 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
2486
Florin Coras9d063042017-09-14 03:08:00 -04002487 /* Stop all retransmit timers because we have nothing more
2488 * to send. Enable waitclose though because we're willing to
2489 * wait for peer's FIN but not indefinitely. */
2490 tcp_connection_timers_reset (tc0);
2491 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Florin Corasd79b41e2017-03-04 05:37:52 -08002492 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002493 break;
2494 case TCP_STATE_FIN_WAIT_2:
2495 /* In addition to the processing for the ESTABLISHED state, if
2496 * the retransmission queue is empty, the user's CLOSE can be
2497 * acknowledged ("ok") but do not delete the TCB. */
2498 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002499 {
2500 tcp_maybe_inc_counter (rcv_process, error0, 1);
2501 goto drop;
2502 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002503 break;
2504 case TCP_STATE_CLOSE_WAIT:
2505 /* Do the same processing as for the ESTABLISHED state. */
2506 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002507 {
2508 tcp_maybe_inc_counter (rcv_process, error0, 1);
2509 goto drop;
2510 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002511 break;
2512 case TCP_STATE_CLOSING:
2513 /* In addition to the processing for the ESTABLISHED state, if
2514 * the ACK acknowledges our FIN then enter the TIME-WAIT state,
2515 * otherwise ignore the segment. */
2516 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002517 {
2518 tcp_maybe_inc_counter (rcv_process, error0, 1);
2519 goto drop;
2520 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002521
Dave Barach68b0fb02017-02-28 15:15:56 -05002522 tc0->state = TCP_STATE_TIME_WAIT;
Florin Coras6534b7a2017-07-18 05:38:03 -04002523 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Florin Corasa096f2d2017-09-28 23:49:42 -04002524 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002525 goto drop;
2526
2527 break;
2528 case TCP_STATE_LAST_ACK:
Florin Coras93992a92017-05-24 18:03:56 -07002529 /* The only thing that [should] arrive in this state is an
Dave Barach68b0fb02017-02-28 15:15:56 -05002530 * acknowledgment of our FIN. If our FIN is now acknowledged,
2531 * delete the TCB, enter the CLOSED state, and return. */
2532
2533 if (!tcp_rcv_ack_is_acceptable (tc0, b0))
Florin Corasa096f2d2017-09-28 23:49:42 -04002534 {
2535 error0 = TCP_ERROR_ACK_INVALID;
2536 goto drop;
2537 }
Florin Coras00cd22d2018-04-18 13:20:18 -07002538 error0 = TCP_ERROR_ACK_OK;
Florin Coras9d063042017-09-14 03:08:00 -04002539 tc0->snd_una = vnet_buffer (b0)->tcp.ack_number;
Florin Corasa096f2d2017-09-28 23:49:42 -04002540 /* Apparently our ACK for the peer's FIN was lost */
2541 if (is_fin0 && tc0->snd_una != tc0->snd_una_max)
Florin Coras93992a92017-05-24 18:03:56 -07002542 {
Florin Coras93992a92017-05-24 18:03:56 -07002543 tcp_send_fin (tc0);
2544 goto drop;
2545 }
2546
Florin Corasd79b41e2017-03-04 05:37:52 -08002547 tc0->state = TCP_STATE_CLOSED;
Florin Coras6534b7a2017-07-18 05:38:03 -04002548 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Florin Corasa096f2d2017-09-28 23:49:42 -04002549 tcp_connection_timers_reset (tc0);
Florin Corasd79b41e2017-03-04 05:37:52 -08002550
2551 /* Don't delete the connection/session yet. Instead, wait a
2552 * reasonable amount of time until the pipes are cleared. In
2553 * particular, this makes sure that we won't have dead sessions
2554 * when processing events on the tx path */
Florin Corasa096f2d2017-09-28 23:49:42 -04002555 tcp_timer_set (tc0, TCP_TIMER_WAITCLOSE, TCP_CLEANUP_TIME);
Florin Corasd79b41e2017-03-04 05:37:52 -08002556
Dave Barach68b0fb02017-02-28 15:15:56 -05002557 goto drop;
2558
2559 break;
2560 case TCP_STATE_TIME_WAIT:
2561 /* The only thing that can arrive in this state is a
2562 * retransmission of the remote FIN. Acknowledge it, and restart
2563 * the 2 MSL timeout. */
2564
Florin Coras93992a92017-05-24 18:03:56 -07002565 if (tcp_rcv_ack (tc0, b0, tcp0, &next0, &error0))
Florin Coras00cd22d2018-04-18 13:20:18 -07002566 {
2567 tcp_maybe_inc_counter (rcv_process, error0, 1);
2568 goto drop;
2569 }
Florin Coras93992a92017-05-24 18:03:56 -07002570
2571 tcp_make_ack (tc0, b0);
Florin Corasa096f2d2017-09-28 23:49:42 -04002572 next0 = tcp_next_output (is_ip4);
2573 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002574 goto drop;
Florin Coras93992a92017-05-24 18:03:56 -07002575
Dave Barach68b0fb02017-02-28 15:15:56 -05002576 break;
2577 default:
2578 ASSERT (0);
2579 }
2580
2581 /* 6: check the URG bit TODO */
2582
2583 /* 7: process the segment text */
2584 switch (tc0->state)
2585 {
2586 case TCP_STATE_ESTABLISHED:
2587 case TCP_STATE_FIN_WAIT_1:
2588 case TCP_STATE_FIN_WAIT_2:
Florin Coras6534b7a2017-07-18 05:38:03 -04002589 if (vnet_buffer (b0)->tcp.data_len)
Florin Coras00cd22d2018-04-18 13:20:18 -07002590 {
2591 error0 = tcp_segment_rcv (tc0, b0, &next0);
2592 tcp_maybe_inc_counter (rcv_process, error0, 1);
2593 }
Florin Coras9d063042017-09-14 03:08:00 -04002594 else if (is_fin0)
2595 tc0->rcv_nxt += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002596 break;
2597 case TCP_STATE_CLOSE_WAIT:
2598 case TCP_STATE_CLOSING:
2599 case TCP_STATE_LAST_ACK:
2600 case TCP_STATE_TIME_WAIT:
2601 /* This should not occur, since a FIN has been received from the
2602 * remote side. Ignore the segment text. */
2603 break;
2604 }
2605
2606 /* 8: check the FIN bit */
Florin Coras9d063042017-09-14 03:08:00 -04002607 if (!is_fin0)
Dave Barach68b0fb02017-02-28 15:15:56 -05002608 goto drop;
2609
2610 switch (tc0->state)
2611 {
2612 case TCP_STATE_ESTABLISHED:
2613 case TCP_STATE_SYN_RCVD:
2614 /* Send FIN-ACK notify app and enter CLOSE-WAIT */
2615 tcp_connection_timers_reset (tc0);
Florin Corasd79b41e2017-03-04 05:37:52 -08002616 tcp_make_fin (tc0, b0);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002617 tc0->snd_nxt += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002618 next0 = tcp_next_output (tc0->c_is_ip4);
2619 stream_session_disconnect_notify (&tc0->connection);
2620 tc0->state = TCP_STATE_CLOSE_WAIT;
Florin Coras6534b7a2017-07-18 05:38:03 -04002621 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002622 break;
2623 case TCP_STATE_CLOSE_WAIT:
2624 case TCP_STATE_CLOSING:
2625 case TCP_STATE_LAST_ACK:
2626 /* move along .. */
2627 break;
2628 case TCP_STATE_FIN_WAIT_1:
Florin Corasab0289a2017-08-14 11:25:25 -07002629 tc0->state = TCP_STATE_CLOSING;
2630 tcp_make_ack (tc0, b0);
2631 next0 = tcp_next_output (is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -04002632 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Florin Corasab0289a2017-08-14 11:25:25 -07002633 /* Wait for ACK but not forever */
2634 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_2MSL_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002635 break;
2636 case TCP_STATE_FIN_WAIT_2:
Florin Coras9d063042017-09-14 03:08:00 -04002637 /* Got FIN, send ACK! Be more aggressive with resource cleanup */
Dave Barach68b0fb02017-02-28 15:15:56 -05002638 tc0->state = TCP_STATE_TIME_WAIT;
Florin Corasdb84e572017-05-09 18:54:52 -07002639 tcp_connection_timers_reset (tc0);
Florin Coras9d063042017-09-14 03:08:00 -04002640 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002641 tcp_make_ack (tc0, b0);
2642 next0 = tcp_next_output (is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -04002643 TCP_EVT_DBG (TCP_EVT_STATE_CHANGE, tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05002644 break;
2645 case TCP_STATE_TIME_WAIT:
Florin Coras9d063042017-09-14 03:08:00 -04002646 /* Remain in the TIME-WAIT state. Restart the time-wait
Dave Barach68b0fb02017-02-28 15:15:56 -05002647 * timeout.
2648 */
Florin Coras9d063042017-09-14 03:08:00 -04002649 tcp_timer_update (tc0, TCP_TIMER_WAITCLOSE, TCP_TIMEWAIT_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002650 break;
2651 }
Florin Corase69f4952017-03-07 10:06:24 -08002652 TCP_EVT_DBG (TCP_EVT_FIN_RCVD, tc0);
Florin Coras00cd22d2018-04-18 13:20:18 -07002653 n_fins += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05002654
Florin Coras82b13a82017-04-25 11:58:06 -07002655 drop:
Dave Barach68b0fb02017-02-28 15:15:56 -05002656 b0->error = error0 ? node->errors[error0] : 0;
2657
Dave Barach68b0fb02017-02-28 15:15:56 -05002658 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2659 {
Florin Coras82b13a82017-04-25 11:58:06 -07002660 tcp_rx_trace_t *t0 =
2661 vlib_add_trace (vm, node, b0, sizeof (*t0));
2662 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002663 }
2664
2665 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2666 n_left_to_next, bi0, next0);
2667 }
2668
2669 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2670 }
2671
Florin Coras3cbc04b2017-10-02 00:18:51 -07002672 errors = session_manager_flush_enqueue_events (TRANSPORT_PROTO_TCP,
2673 my_thread_index);
Florin Coras00cd22d2018-04-18 13:20:18 -07002674 tcp_inc_counter (rcv_process, TCP_ERROR_EVENT_FIFO_FULL, errors);
2675 tcp_inc_counter (rcv_process, TCP_ERROR_FIN_RCVD, n_fins);
Dave Barach68b0fb02017-02-28 15:15:56 -05002676 return from_frame->n_vectors;
2677}
2678
2679static uword
2680tcp4_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node,
2681 vlib_frame_t * from_frame)
2682{
2683 return tcp46_rcv_process_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2684}
2685
2686static uword
2687tcp6_rcv_process (vlib_main_t * vm, vlib_node_runtime_t * node,
2688 vlib_frame_t * from_frame)
2689{
2690 return tcp46_rcv_process_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2691}
2692
2693/* *INDENT-OFF* */
2694VLIB_REGISTER_NODE (tcp4_rcv_process_node) =
2695{
2696 .function = tcp4_rcv_process,
2697 .name = "tcp4-rcv-process",
2698 /* Takes a vector of packets. */
2699 .vector_size = sizeof (u32),
2700 .n_errors = TCP_N_ERROR,
2701 .error_strings = tcp_error_strings,
2702 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2703 .next_nodes =
2704 {
2705#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
2706 foreach_tcp_state_next
2707#undef _
2708 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002709 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002710};
2711/* *INDENT-ON* */
2712
2713VLIB_NODE_FUNCTION_MULTIARCH (tcp4_rcv_process_node, tcp4_rcv_process);
2714
2715/* *INDENT-OFF* */
2716VLIB_REGISTER_NODE (tcp6_rcv_process_node) =
2717{
2718 .function = tcp6_rcv_process,
2719 .name = "tcp6-rcv-process",
2720 /* Takes a vector of packets. */
2721 .vector_size = sizeof (u32),
2722 .n_errors = TCP_N_ERROR,
2723 .error_strings = tcp_error_strings,
2724 .n_next_nodes = TCP_RCV_PROCESS_N_NEXT,
2725 .next_nodes =
2726 {
2727#define _(s,n) [TCP_RCV_PROCESS_NEXT_##s] = n,
2728 foreach_tcp_state_next
2729#undef _
2730 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002731 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002732};
2733/* *INDENT-ON* */
2734
2735VLIB_NODE_FUNCTION_MULTIARCH (tcp6_rcv_process_node, tcp6_rcv_process);
2736
2737vlib_node_registration_t tcp4_listen_node;
2738vlib_node_registration_t tcp6_listen_node;
2739
2740/**
2741 * LISTEN state processing as per RFC 793 p. 65
2742 */
2743always_inline uword
2744tcp46_listen_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2745 vlib_frame_t * from_frame, int is_ip4)
2746{
Florin Coras00cd22d2018-04-18 13:20:18 -07002747 u32 n_left_from, next_index, *from, *to_next, n_syns = 0;
Damjan Marion586afd72017-04-05 19:18:20 +02002748 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002749
2750 from = vlib_frame_vector_args (from_frame);
2751 n_left_from = from_frame->n_vectors;
2752
2753 next_index = node->cached_next_index;
2754
2755 while (n_left_from > 0)
2756 {
2757 u32 n_left_to_next;
2758
2759 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2760
2761 while (n_left_from > 0 && n_left_to_next > 0)
2762 {
2763 u32 bi0;
2764 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002765 tcp_rx_trace_t *t0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002766 tcp_header_t *th0 = 0;
2767 tcp_connection_t *lc0;
2768 ip4_header_t *ip40;
2769 ip6_header_t *ip60;
2770 tcp_connection_t *child0;
Florin Coras00cd22d2018-04-18 13:20:18 -07002771 u32 error0 = TCP_ERROR_NONE, next0 = tcp_next_drop (is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002772
2773 bi0 = from[0];
2774 to_next[0] = bi0;
2775 from += 1;
2776 to_next += 1;
2777 n_left_from -= 1;
2778 n_left_to_next -= 1;
2779
2780 b0 = vlib_get_buffer (vm, bi0);
2781 lc0 = tcp_listener_get (vnet_buffer (b0)->tcp.connection_index);
2782
2783 if (is_ip4)
2784 {
2785 ip40 = vlib_buffer_get_current (b0);
2786 th0 = ip4_next_header (ip40);
2787 }
2788 else
2789 {
2790 ip60 = vlib_buffer_get_current (b0);
2791 th0 = ip6_next_header (ip60);
2792 }
2793
2794 /* Create child session. For syn-flood protection use filter */
2795
Florin Corasdc629cd2017-05-09 00:52:37 -07002796 /* 1. first check for an RST: handled in dispatch */
2797 /* if (tcp_rst (th0))
2798 goto drop; */
Dave Barach68b0fb02017-02-28 15:15:56 -05002799
Florin Corasdc629cd2017-05-09 00:52:37 -07002800 /* 2. second check for an ACK: handled in dispatch */
2801 /* if (tcp_ack (th0))
2802 {
2803 tcp_send_reset (b0, is_ip4);
2804 goto drop;
2805 } */
Dave Barach68b0fb02017-02-28 15:15:56 -05002806
2807 /* 3. check for a SYN (did that already) */
2808
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002809 /* Make sure connection wasn't just created */
Florin Corasc1a448b2018-04-20 10:51:49 -07002810 child0 = tcp_lookup_connection (lc0->c_fib_index, b0,
2811 my_thread_index, is_ip4);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002812 if (PREDICT_FALSE (child0->state != TCP_STATE_LISTEN))
2813 {
2814 error0 = TCP_ERROR_CREATE_EXISTS;
2815 goto drop;
2816 }
2817
Dave Barach68b0fb02017-02-28 15:15:56 -05002818 /* Create child session and send SYN-ACK */
Florin Coras6534b7a2017-07-18 05:38:03 -04002819 child0 = tcp_connection_new (my_thread_index);
Florin Coras1c710452017-10-17 00:03:13 -07002820 child0->c_lcl_port = th0->dst_port;
Dave Barach68b0fb02017-02-28 15:15:56 -05002821 child0->c_rmt_port = th0->src_port;
2822 child0->c_is_ip4 = is_ip4;
Florin Corasbb292f42017-05-19 09:49:19 -07002823 child0->state = TCP_STATE_SYN_RCVD;
Florin Coras56b39f62018-03-27 17:29:32 -07002824 child0->c_fib_index = lc0->c_fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002825
2826 if (is_ip4)
2827 {
2828 child0->c_lcl_ip4.as_u32 = ip40->dst_address.as_u32;
2829 child0->c_rmt_ip4.as_u32 = ip40->src_address.as_u32;
2830 }
2831 else
2832 {
2833 clib_memcpy (&child0->c_lcl_ip6, &ip60->dst_address,
2834 sizeof (ip6_address_t));
2835 clib_memcpy (&child0->c_rmt_ip6, &ip60->src_address,
2836 sizeof (ip6_address_t));
2837 }
2838
Florin Coras93992a92017-05-24 18:03:56 -07002839 if (tcp_options_parse (th0, &child0->rcv_opts))
Florin Corasdb84e572017-05-09 18:54:52 -07002840 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002841 clib_warning ("options parse fail");
Florin Corasdb84e572017-05-09 18:54:52 -07002842 goto drop;
2843 }
Dave Barach68b0fb02017-02-28 15:15:56 -05002844
2845 child0->irs = vnet_buffer (b0)->tcp.seq_number;
2846 child0->rcv_nxt = vnet_buffer (b0)->tcp.seq_number + 1;
Florin Coras3e350af2017-03-30 02:54:28 -07002847 child0->rcv_las = child0->rcv_nxt;
Florin Corasf9d05682018-04-26 08:26:52 -07002848 child0->sw_if_index = vnet_buffer (b0)->sw_if_index[VLIB_RX];
Dave Barach68b0fb02017-02-28 15:15:56 -05002849
2850 /* RFC1323: TSval timestamps sent on {SYN} and {SYN,ACK}
2851 * segments are used to initialize PAWS. */
Florin Coras93992a92017-05-24 18:03:56 -07002852 if (tcp_opts_tstamp (&child0->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -05002853 {
Florin Coras93992a92017-05-24 18:03:56 -07002854 child0->tsval_recent = child0->rcv_opts.tsval;
Dave Barach68b0fb02017-02-28 15:15:56 -05002855 child0->tsval_recent_age = tcp_time_now ();
2856 }
2857
Florin Coras93992a92017-05-24 18:03:56 -07002858 if (tcp_opts_wscale (&child0->rcv_opts))
2859 child0->snd_wscale = child0->rcv_opts.wscale;
Florin Corase04c2992017-03-01 08:17:34 -08002860
Florin Corasf03a59a2017-06-09 21:07:32 -07002861 child0->snd_wnd = clib_net_to_host_u16 (th0->window)
2862 << child0->snd_wscale;
Florin Corase04c2992017-03-01 08:17:34 -08002863 child0->snd_wl1 = vnet_buffer (b0)->tcp.seq_number;
2864 child0->snd_wl2 = vnet_buffer (b0)->tcp.ack_number;
2865
2866 tcp_connection_init_vars (child0);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04002867 TCP_EVT_DBG (TCP_EVT_SYN_RCVD, child0, 1);
Florin Corase69f4952017-03-07 10:06:24 -08002868
Florin Coras6dfb5ac2017-11-09 16:26:03 -08002869 if (stream_session_accept (&child0->connection, lc0->c_s_index,
2870 0 /* notify */ ))
2871 {
2872 clib_warning ("session accept fail");
2873 tcp_connection_cleanup (child0);
2874 error0 = TCP_ERROR_CREATE_SESSION_FAIL;
2875 goto drop;
2876 }
2877
Dave Barach68b0fb02017-02-28 15:15:56 -05002878 /* Reuse buffer to make syn-ack and send */
2879 tcp_make_synack (child0, b0);
2880 next0 = tcp_next_output (is_ip4);
Florin Corasab0289a2017-08-14 11:25:25 -07002881 tcp_timer_set (child0, TCP_TIMER_ESTABLISH, TCP_SYN_RCVD_TIME);
Dave Barach68b0fb02017-02-28 15:15:56 -05002882
2883 drop:
2884 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2885 {
Clement Durand6cf260c2017-04-13 13:27:04 +02002886 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2887 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
2888 clib_memcpy (&t0->tcp_connection, lc0,
2889 sizeof (t0->tcp_connection));
Dave Barach68b0fb02017-02-28 15:15:56 -05002890 }
2891
Florin Coras00cd22d2018-04-18 13:20:18 -07002892 n_syns += (error0 == TCP_ERROR_NONE);
Florin Corase04c2992017-03-01 08:17:34 -08002893 b0->error = node->errors[error0];
Dave Barach68b0fb02017-02-28 15:15:56 -05002894
2895 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2896 n_left_to_next, bi0, next0);
2897 }
2898
2899 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2900 }
Florin Coras00cd22d2018-04-18 13:20:18 -07002901
2902 tcp_inc_counter (listen, TCP_ERROR_SYNS_RCVD, n_syns);
Dave Barach68b0fb02017-02-28 15:15:56 -05002903 return from_frame->n_vectors;
2904}
2905
2906static uword
2907tcp4_listen (vlib_main_t * vm, vlib_node_runtime_t * node,
2908 vlib_frame_t * from_frame)
2909{
2910 return tcp46_listen_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2911}
2912
2913static uword
2914tcp6_listen (vlib_main_t * vm, vlib_node_runtime_t * node,
2915 vlib_frame_t * from_frame)
2916{
2917 return tcp46_listen_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2918}
2919
2920/* *INDENT-OFF* */
2921VLIB_REGISTER_NODE (tcp4_listen_node) =
2922{
2923 .function = tcp4_listen,
2924 .name = "tcp4-listen",
2925 /* Takes a vector of packets. */
2926 .vector_size = sizeof (u32),
2927 .n_errors = TCP_N_ERROR,
2928 .error_strings = tcp_error_strings,
2929 .n_next_nodes = TCP_LISTEN_N_NEXT,
2930 .next_nodes =
2931 {
2932#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
2933 foreach_tcp_state_next
2934#undef _
2935 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002936 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002937};
2938/* *INDENT-ON* */
2939
2940VLIB_NODE_FUNCTION_MULTIARCH (tcp4_listen_node, tcp4_listen);
2941
2942/* *INDENT-OFF* */
2943VLIB_REGISTER_NODE (tcp6_listen_node) =
2944{
2945 .function = tcp6_listen,
2946 .name = "tcp6-listen",
2947 /* Takes a vector of packets. */
2948 .vector_size = sizeof (u32),
2949 .n_errors = TCP_N_ERROR,
2950 .error_strings = tcp_error_strings,
2951 .n_next_nodes = TCP_LISTEN_N_NEXT,
2952 .next_nodes =
2953 {
2954#define _(s,n) [TCP_LISTEN_NEXT_##s] = n,
2955 foreach_tcp_state_next
2956#undef _
2957 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002958 .format_trace = format_tcp_rx_trace_short,
Dave Barach68b0fb02017-02-28 15:15:56 -05002959};
2960/* *INDENT-ON* */
2961
2962VLIB_NODE_FUNCTION_MULTIARCH (tcp6_listen_node, tcp6_listen);
2963
2964vlib_node_registration_t tcp4_input_node;
2965vlib_node_registration_t tcp6_input_node;
2966
2967typedef enum _tcp_input_next
2968{
2969 TCP_INPUT_NEXT_DROP,
2970 TCP_INPUT_NEXT_LISTEN,
2971 TCP_INPUT_NEXT_RCV_PROCESS,
2972 TCP_INPUT_NEXT_SYN_SENT,
2973 TCP_INPUT_NEXT_ESTABLISHED,
2974 TCP_INPUT_NEXT_RESET,
Pierre Pfister7fe51f32017-09-20 08:48:36 +02002975 TCP_INPUT_NEXT_PUNT,
Dave Barach68b0fb02017-02-28 15:15:56 -05002976 TCP_INPUT_N_NEXT
2977} tcp_input_next_t;
2978
2979#define foreach_tcp4_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002980 _ (DROP, "ip4-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05002981 _ (LISTEN, "tcp4-listen") \
2982 _ (RCV_PROCESS, "tcp4-rcv-process") \
2983 _ (SYN_SENT, "tcp4-syn-sent") \
2984 _ (ESTABLISHED, "tcp4-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02002985 _ (RESET, "tcp4-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002986 _ (PUNT, "ip4-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05002987
2988#define foreach_tcp6_input_next \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002989 _ (DROP, "ip6-drop") \
Dave Barach68b0fb02017-02-28 15:15:56 -05002990 _ (LISTEN, "tcp6-listen") \
2991 _ (RCV_PROCESS, "tcp6-rcv-process") \
2992 _ (SYN_SENT, "tcp6-syn-sent") \
2993 _ (ESTABLISHED, "tcp6-established") \
Pierre Pfister7fe51f32017-09-20 08:48:36 +02002994 _ (RESET, "tcp6-reset") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -08002995 _ (PUNT, "ip6-punt")
Dave Barach68b0fb02017-02-28 15:15:56 -05002996
Dave Barach68b0fb02017-02-28 15:15:56 -05002997#define filter_flags (TCP_FLAG_SYN|TCP_FLAG_ACK|TCP_FLAG_RST|TCP_FLAG_FIN)
2998
2999always_inline uword
3000tcp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
3001 vlib_frame_t * from_frame, int is_ip4)
3002{
3003 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02003004 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05003005 tcp_main_t *tm = vnet_get_tcp_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -05003006
3007 from = vlib_frame_vector_args (from_frame);
3008 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05003009 next_index = node->cached_next_index;
Florin Coras82d3ec82017-08-14 08:10:42 -07003010 tcp_set_time_now (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05003011
3012 while (n_left_from > 0)
3013 {
3014 u32 n_left_to_next;
3015
3016 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
3017
3018 while (n_left_from > 0 && n_left_to_next > 0)
3019 {
Florin Coras82b13a82017-04-25 11:58:06 -07003020 int n_advance_bytes0, n_data_bytes0;
Florin Corascea194d2017-10-02 00:18:51 -07003021 u32 bi0, fib_index0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003022 vlib_buffer_t *b0;
3023 tcp_header_t *tcp0 = 0;
3024 tcp_connection_t *tc0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04003025 transport_connection_t *tconn;
Dave Barach68b0fb02017-02-28 15:15:56 -05003026 ip4_header_t *ip40;
3027 ip6_header_t *ip60;
3028 u32 error0 = TCP_ERROR_NO_LISTENER, next0 = TCP_INPUT_NEXT_DROP;
Florin Corasdff48db2017-11-19 18:06:58 -08003029 u8 flags0, is_filtered = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003030
3031 bi0 = from[0];
3032 to_next[0] = bi0;
3033 from += 1;
3034 to_next += 1;
3035 n_left_from -= 1;
3036 n_left_to_next -= 1;
3037
3038 b0 = vlib_get_buffer (vm, bi0);
Florin Corasd79b41e2017-03-04 05:37:52 -08003039 vnet_buffer (b0)->tcp.flags = 0;
Florin Corascea194d2017-10-02 00:18:51 -07003040 fib_index0 = vnet_buffer (b0)->ip.fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05003041
Florin Coras82b13a82017-04-25 11:58:06 -07003042 /* Checksum computed by ipx_local no need to compute again */
3043
Dave Barach68b0fb02017-02-28 15:15:56 -05003044 if (is_ip4)
3045 {
3046 ip40 = vlib_buffer_get_current (b0);
3047 tcp0 = ip4_next_header (ip40);
Florin Coras82b13a82017-04-25 11:58:06 -07003048 n_advance_bytes0 = (ip4_header_bytes (ip40)
3049 + tcp_header_bytes (tcp0));
3050 n_data_bytes0 = clib_net_to_host_u16 (ip40->length)
3051 - n_advance_bytes0;
Florin Coras3cbc04b2017-10-02 00:18:51 -07003052 tconn = session_lookup_connection_wt4 (fib_index0,
3053 &ip40->dst_address,
3054 &ip40->src_address,
3055 tcp0->dst_port,
3056 tcp0->src_port,
3057 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08003058 my_thread_index,
3059 &is_filtered);
Dave Barach68b0fb02017-02-28 15:15:56 -05003060 }
3061 else
3062 {
3063 ip60 = vlib_buffer_get_current (b0);
3064 tcp0 = ip6_next_header (ip60);
Florin Coras82b13a82017-04-25 11:58:06 -07003065 n_advance_bytes0 = tcp_header_bytes (tcp0);
3066 n_data_bytes0 = clib_net_to_host_u16 (ip60->payload_length)
3067 - n_advance_bytes0;
3068 n_advance_bytes0 += sizeof (ip60[0]);
Florin Coras3cbc04b2017-10-02 00:18:51 -07003069 tconn = session_lookup_connection_wt6 (fib_index0,
3070 &ip60->dst_address,
3071 &ip60->src_address,
3072 tcp0->dst_port,
3073 tcp0->src_port,
3074 TRANSPORT_PROTO_TCP,
Florin Corasdff48db2017-11-19 18:06:58 -08003075 my_thread_index,
3076 &is_filtered);
Dave Barach68b0fb02017-02-28 15:15:56 -05003077 }
3078
Florin Coras82b13a82017-04-25 11:58:06 -07003079 /* Length check */
3080 if (PREDICT_FALSE (n_advance_bytes0 < 0))
3081 {
3082 error0 = TCP_ERROR_LENGTH;
3083 goto done;
3084 }
3085
Florin Corasf988e692017-11-27 04:34:14 -05003086 vnet_buffer (b0)->tcp.hdr_offset = (u8 *) tcp0
3087 - (u8 *) vlib_buffer_get_current (b0);
3088
Dave Barach68b0fb02017-02-28 15:15:56 -05003089 /* Session exists */
Florin Corasdff48db2017-11-19 18:06:58 -08003090 if (PREDICT_TRUE (0 != tconn))
Dave Barach68b0fb02017-02-28 15:15:56 -05003091 {
Florin Corasdff48db2017-11-19 18:06:58 -08003092 tc0 = tcp_get_connection_from_transport (tconn);
3093 ASSERT (tcp_lookup_is_valid (tc0, tcp0));
3094
Dave Barach68b0fb02017-02-28 15:15:56 -05003095 /* Save connection index */
3096 vnet_buffer (b0)->tcp.connection_index = tc0->c_c_index;
3097 vnet_buffer (b0)->tcp.seq_number =
3098 clib_net_to_host_u32 (tcp0->seq_number);
3099 vnet_buffer (b0)->tcp.ack_number =
3100 clib_net_to_host_u32 (tcp0->ack_number);
3101
Florin Coras82b13a82017-04-25 11:58:06 -07003102 vnet_buffer (b0)->tcp.data_offset = n_advance_bytes0;
3103 vnet_buffer (b0)->tcp.data_len = n_data_bytes0;
3104
Dave Barach68b0fb02017-02-28 15:15:56 -05003105 flags0 = tcp0->flags & filter_flags;
3106 next0 = tm->dispatch_table[tc0->state][flags0].next;
3107 error0 = tm->dispatch_table[tc0->state][flags0].error;
3108
Florin Corasdc629cd2017-05-09 00:52:37 -07003109 if (PREDICT_FALSE (error0 == TCP_ERROR_DISPATCH
3110 || next0 == TCP_INPUT_NEXT_RESET))
Dave Barach68b0fb02017-02-28 15:15:56 -05003111 {
3112 /* Overload tcp flags to store state */
Florin Corasdc629cd2017-05-09 00:52:37 -07003113 tcp_state_t state0 = tc0->state;
Dave Barach68b0fb02017-02-28 15:15:56 -05003114 vnet_buffer (b0)->tcp.flags = tc0->state;
Florin Corasdc629cd2017-05-09 00:52:37 -07003115
3116 if (error0 == TCP_ERROR_DISPATCH)
3117 clib_warning ("disp error state %U flags %U",
Florin Corasbb292f42017-05-19 09:49:19 -07003118 format_tcp_state, state0, format_tcp_flags,
Florin Corasdc629cd2017-05-09 00:52:37 -07003119 (int) flags0);
Dave Barach68b0fb02017-02-28 15:15:56 -05003120 }
3121 }
3122 else
3123 {
Florin Corasdff48db2017-11-19 18:06:58 -08003124 if (is_filtered)
3125 {
3126 next0 = TCP_INPUT_NEXT_DROP;
3127 error0 = TCP_ERROR_FILTERED;
3128 }
3129 else if ((is_ip4 && tm->punt_unknown4) ||
3130 (!is_ip4 && tm->punt_unknown6))
Pierre Pfister7fe51f32017-09-20 08:48:36 +02003131 {
3132 next0 = TCP_INPUT_NEXT_PUNT;
3133 error0 = TCP_ERROR_PUNT;
3134 }
3135 else
3136 {
3137 /* Send reset */
3138 next0 = TCP_INPUT_NEXT_RESET;
3139 error0 = TCP_ERROR_NO_LISTENER;
3140 }
Florin Corasdff48db2017-11-19 18:06:58 -08003141 tc0 = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05003142 }
3143
Florin Coras82b13a82017-04-25 11:58:06 -07003144 done:
Dave Barach68b0fb02017-02-28 15:15:56 -05003145 b0->error = error0 ? node->errors[error0] : 0;
3146
3147 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3148 {
Florin Corasdff48db2017-11-19 18:06:58 -08003149 tcp_rx_trace_t *t0;
3150 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Florin Coras82b13a82017-04-25 11:58:06 -07003151 tcp_set_rx_trace_data (t0, tc0, tcp0, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05003152 }
Dave Barach68b0fb02017-02-28 15:15:56 -05003153 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
3154 n_left_to_next, bi0, next0);
3155 }
3156
3157 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
3158 }
3159
3160 return from_frame->n_vectors;
3161}
3162
3163static uword
3164tcp4_input (vlib_main_t * vm, vlib_node_runtime_t * node,
3165 vlib_frame_t * from_frame)
3166{
3167 return tcp46_input_inline (vm, node, from_frame, 1 /* is_ip4 */ );
3168}
3169
3170static uword
3171tcp6_input (vlib_main_t * vm, vlib_node_runtime_t * node,
3172 vlib_frame_t * from_frame)
3173{
3174 return tcp46_input_inline (vm, node, from_frame, 0 /* is_ip4 */ );
3175}
3176
3177/* *INDENT-OFF* */
3178VLIB_REGISTER_NODE (tcp4_input_node) =
3179{
3180 .function = tcp4_input,
3181 .name = "tcp4-input",
3182 /* Takes a vector of packets. */
3183 .vector_size = sizeof (u32),
3184 .n_errors = TCP_N_ERROR,
3185 .error_strings = tcp_error_strings,
3186 .n_next_nodes = TCP_INPUT_N_NEXT,
3187 .next_nodes =
3188 {
3189#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3190 foreach_tcp4_input_next
3191#undef _
3192 },
3193 .format_buffer = format_tcp_header,
3194 .format_trace = format_tcp_rx_trace,
3195};
3196/* *INDENT-ON* */
3197
3198VLIB_NODE_FUNCTION_MULTIARCH (tcp4_input_node, tcp4_input);
3199
3200/* *INDENT-OFF* */
3201VLIB_REGISTER_NODE (tcp6_input_node) =
3202{
3203 .function = tcp6_input,
3204 .name = "tcp6-input",
3205 /* Takes a vector of packets. */
3206 .vector_size = sizeof (u32),
3207 .n_errors = TCP_N_ERROR,
3208 .error_strings = tcp_error_strings,
3209 .n_next_nodes = TCP_INPUT_N_NEXT,
3210 .next_nodes =
3211 {
3212#define _(s,n) [TCP_INPUT_NEXT_##s] = n,
3213 foreach_tcp6_input_next
3214#undef _
3215 },
3216 .format_buffer = format_tcp_header,
3217 .format_trace = format_tcp_rx_trace,
3218};
3219/* *INDENT-ON* */
3220
3221VLIB_NODE_FUNCTION_MULTIARCH (tcp6_input_node, tcp6_input);
Dave Barach68b0fb02017-02-28 15:15:56 -05003222
3223static void
3224tcp_dispatch_table_init (tcp_main_t * tm)
3225{
3226 int i, j;
3227 for (i = 0; i < ARRAY_LEN (tm->dispatch_table); i++)
3228 for (j = 0; j < ARRAY_LEN (tm->dispatch_table[i]); j++)
3229 {
3230 tm->dispatch_table[i][j].next = TCP_INPUT_NEXT_DROP;
3231 tm->dispatch_table[i][j].error = TCP_ERROR_DISPATCH;
3232 }
3233
3234#define _(t,f,n,e) \
3235do { \
3236 tm->dispatch_table[TCP_STATE_##t][f].next = (n); \
3237 tm->dispatch_table[TCP_STATE_##t][f].error = (e); \
3238} while (0)
3239
3240 /* SYNs for new connections -> tcp-listen. */
3241 _(LISTEN, TCP_FLAG_SYN, TCP_INPUT_NEXT_LISTEN, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003242 _(LISTEN, TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET, TCP_ERROR_NONE);
Florin Coras00cd22d2018-04-18 13:20:18 -07003243 _(LISTEN, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_RST_RCVD);
Dave Barach2c25a622017-06-26 11:35:07 -04003244 _(LISTEN, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RESET,
3245 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003246 /* ACK for for a SYN-ACK -> tcp-rcv-process. */
3247 _(SYN_RCVD, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasc28764f2017-04-26 00:08:42 -07003248 _(SYN_RCVD, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003249 _(SYN_RCVD, TCP_FLAG_SYN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003250 /* SYN-ACK for a SYN */
3251 _(SYN_SENT, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3252 TCP_ERROR_NONE);
3253 _(SYN_SENT, TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3254 _(SYN_SENT, TCP_FLAG_RST, TCP_INPUT_NEXT_SYN_SENT, TCP_ERROR_NONE);
3255 _(SYN_SENT, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_SYN_SENT,
3256 TCP_ERROR_NONE);
3257 /* ACK for for established connection -> tcp-established. */
3258 _(ESTABLISHED, TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3259 /* FIN for for established connection -> tcp-established. */
3260 _(ESTABLISHED, TCP_FLAG_FIN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
3261 _(ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3262 TCP_ERROR_NONE);
Florin Corasd79b41e2017-03-04 05:37:52 -08003263 _(ESTABLISHED, TCP_FLAG_RST, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Corasdc629cd2017-05-09 00:52:37 -07003264 _(ESTABLISHED, TCP_FLAG_RST | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3265 TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003266 _(ESTABLISHED, TCP_FLAG_SYN, TCP_INPUT_NEXT_ESTABLISHED, TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003267 _(ESTABLISHED, TCP_FLAG_SYN | TCP_FLAG_ACK, TCP_INPUT_NEXT_ESTABLISHED,
3268 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003269 /* ACK or FIN-ACK to our FIN */
3270 _(FIN_WAIT_1, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3271 _(FIN_WAIT_1, TCP_FLAG_ACK | TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS,
3272 TCP_ERROR_NONE);
3273 /* FIN in reply to our FIN from the other side */
3274 _(FIN_WAIT_1, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach2c25a622017-06-26 11:35:07 -04003275 _(FIN_WAIT_1, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras56318932018-05-23 20:44:12 -07003276 _(CLOSING, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003277 /* FIN confirming that the peer (app) has closed */
3278 _(FIN_WAIT_2, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Corasf6d68ed2017-05-07 19:12:02 -07003279 _(FIN_WAIT_2, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003280 _(FIN_WAIT_2, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3281 TCP_ERROR_NONE);
Florin Corasf03a59a2017-06-09 21:07:32 -07003282 _(CLOSE_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3283 _(CLOSE_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3284 TCP_ERROR_NONE);
Dave Barach68b0fb02017-02-28 15:15:56 -05003285 _(LAST_ACK, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003286 _(LAST_ACK, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3287 _(LAST_ACK, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3288 TCP_ERROR_NONE);
Florin Corasdb84e572017-05-09 18:54:52 -07003289 _(LAST_ACK, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras93992a92017-05-24 18:03:56 -07003290 _(TIME_WAIT, TCP_FLAG_FIN, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
3291 _(TIME_WAIT, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS,
3292 TCP_ERROR_NONE);
Florin Coras3eb50622017-07-13 01:24:57 -04003293 _(TIME_WAIT, TCP_FLAG_RST, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras50958952017-08-29 14:50:13 -07003294 _(TIME_WAIT, TCP_FLAG_ACK, TCP_INPUT_NEXT_RCV_PROCESS, TCP_ERROR_NONE);
Florin Coras9d063042017-09-14 03:08:00 -04003295 _(CLOSED, TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Corasdc629cd2017-05-09 00:52:37 -07003296 _(CLOSED, TCP_FLAG_RST, TCP_INPUT_NEXT_DROP, TCP_ERROR_CONNECTION_CLOSED);
Florin Coras9d063042017-09-14 03:08:00 -04003297 _(CLOSED, TCP_FLAG_FIN | TCP_FLAG_ACK, TCP_INPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -04003298 TCP_ERROR_CONNECTION_CLOSED);
Dave Barach68b0fb02017-02-28 15:15:56 -05003299#undef _
3300}
3301
3302clib_error_t *
3303tcp_input_init (vlib_main_t * vm)
3304{
3305 clib_error_t *error = 0;
3306 tcp_main_t *tm = vnet_get_tcp_main ();
3307
3308 if ((error = vlib_call_init_function (vm, tcp_init)))
3309 return error;
3310
3311 /* Initialize dispatch table. */
3312 tcp_dispatch_table_init (tm);
3313
3314 return error;
3315}
3316
3317VLIB_INIT_FUNCTION (tcp_input_init);
3318
3319/*
3320 * fd.io coding-style-patch-verification: ON
3321 *
3322 * Local Variables:
3323 * eval: (c-set-style "gnu")
3324 * End:
3325 */