blob: 5a5c7fe4b8bf7b31582b316a19cda9af0a4575fe [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Coras222e1f412019-02-16 20:47:32 -08002 * Copyright (c) 2016-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * 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 <vnet/tcp/tcp.h>
Florin Corasb2215d62017-08-01 16:56:58 -070017#include <math.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050018
Dave Barach2c25a622017-06-26 11:35:07 -040019typedef enum _tcp_output_next
Dave Barach68b0fb02017-02-28 15:15:56 -050020{
21 TCP_OUTPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -040022 TCP_OUTPUT_NEXT_IP_LOOKUP,
Florin Corasf9d05682018-04-26 08:26:52 -070023 TCP_OUTPUT_NEXT_IP_REWRITE,
24 TCP_OUTPUT_NEXT_IP_ARP,
Dave Barach68b0fb02017-02-28 15:15:56 -050025 TCP_OUTPUT_N_NEXT
26} tcp_output_next_t;
27
28#define foreach_tcp4_output_next \
29 _ (DROP, "error-drop") \
Florin Corasf9d05682018-04-26 08:26:52 -070030 _ (IP_LOOKUP, "ip4-lookup") \
31 _ (IP_REWRITE, "ip4-rewrite") \
32 _ (IP_ARP, "ip4-arp")
Dave Barach68b0fb02017-02-28 15:15:56 -050033
34#define foreach_tcp6_output_next \
35 _ (DROP, "error-drop") \
Florin Corasf9d05682018-04-26 08:26:52 -070036 _ (IP_LOOKUP, "ip6-lookup") \
37 _ (IP_REWRITE, "ip6-rewrite") \
38 _ (IP_ARP, "ip6-discover-neighbor")
Dave Barach68b0fb02017-02-28 15:15:56 -050039
40static char *tcp_error_strings[] = {
41#define tcp_error(n,s) s,
42#include <vnet/tcp/tcp_error.def>
43#undef tcp_error
44};
45
46typedef struct
47{
Clement Durand6cf260c2017-04-13 13:27:04 +020048 tcp_header_t tcp_header;
49 tcp_connection_t tcp_connection;
Dave Barach68b0fb02017-02-28 15:15:56 -050050} tcp_tx_trace_t;
51
Filip Tehlare275bed2019-03-06 00:06:56 -080052#ifndef CLIB_MARCH_VARIANT
Florin Corasf6d68ed2017-05-07 19:12:02 -070053u16 dummy_mtu = 1460;
Filip Tehlare275bed2019-03-06 00:06:56 -080054#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -050055
Filip Tehlare275bed2019-03-06 00:06:56 -080056static u8 *
Dave Barach68b0fb02017-02-28 15:15:56 -050057format_tcp_tx_trace (u8 * s, va_list * args)
58{
59 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
60 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Clement Durand6cf260c2017-04-13 13:27:04 +020061 tcp_tx_trace_t *t = va_arg (*args, tcp_tx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +020062 u32 indent = format_get_indent (s);
Dave Barach68b0fb02017-02-28 15:15:56 -050063
Clement Durand6cf260c2017-04-13 13:27:04 +020064 s = format (s, "%U\n%U%U",
65 format_tcp_header, &t->tcp_header, 128,
66 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -070067 format_tcp_connection, &t->tcp_connection, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -050068
69 return s;
70}
71
Filip Tehlare275bed2019-03-06 00:06:56 -080072#ifndef CLIB_MARCH_VARIANT
Dave Barach68b0fb02017-02-28 15:15:56 -050073static u8
Florin Coras4eeeaaf2017-09-05 14:03:37 -040074tcp_window_compute_scale (u32 window)
Dave Barach68b0fb02017-02-28 15:15:56 -050075{
76 u8 wnd_scale = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -040077 while (wnd_scale < TCP_MAX_WND_SCALE && (window >> wnd_scale) > TCP_WND_MAX)
Dave Barach68b0fb02017-02-28 15:15:56 -050078 wnd_scale++;
79 return wnd_scale;
80}
81
82/**
Florin Coras6534b7a2017-07-18 05:38:03 -040083 * Update max segment size we're able to process.
84 *
85 * The value is constrained by our interface's MTU and IP options. It is
86 * also what we advertise to our peer.
87 */
88void
89tcp_update_rcv_mss (tcp_connection_t * tc)
90{
91 /* TODO find our iface MTU */
Florin Corasb2215d62017-08-01 16:56:58 -070092 tc->mss = dummy_mtu - sizeof (tcp_header_t);
Florin Coras6534b7a2017-07-18 05:38:03 -040093}
94
95/**
96 * TCP's initial window
Florin Corase04c2992017-03-01 08:17:34 -080097 */
98always_inline u32
99tcp_initial_wnd_unscaled (tcp_connection_t * tc)
100{
Florin Coras6534b7a2017-07-18 05:38:03 -0400101 /* RFC 6928 recommends the value lower. However at the time our connections
102 * are initialized, fifos may not be allocated. Therefore, advertise the
103 * smallest possible unscaled window size and update once fifos are
104 * assigned to the session.
105 */
106 /*
107 tcp_update_rcv_mss (tc);
108 TCP_IW_N_SEGMENTS * tc->mss;
109 */
110 return TCP_MIN_RX_FIFO_SIZE;
Florin Corase04c2992017-03-01 08:17:34 -0800111}
112
113/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500114 * Compute initial window and scale factor. As per RFC1323, window field in
115 * SYN and SYN-ACK segments is never scaled.
116 */
117u32
118tcp_initial_window_to_advertise (tcp_connection_t * tc)
119{
Florin Corasca031862018-09-24 13:58:05 -0700120 tcp_main_t *tm = &tcp_main;
Florin Corase04c2992017-03-01 08:17:34 -0800121 u32 max_fifo;
Dave Barach68b0fb02017-02-28 15:15:56 -0500122
123 /* Initial wnd for SYN. Fifos are not allocated yet.
Florin Corase04c2992017-03-01 08:17:34 -0800124 * Use some predefined value. For SYN-ACK we still want the
125 * scale to be computed in the same way */
Florin Corasca031862018-09-24 13:58:05 -0700126 max_fifo = tm->max_rx_fifo ? tm->max_rx_fifo : TCP_MAX_RX_FIFO_SIZE;
Dave Barach68b0fb02017-02-28 15:15:56 -0500127
Florin Corase80b5912018-12-12 19:25:43 -0800128 /* Compute rcv wscale only if peer advertised support for it */
129 if (tc->state != TCP_STATE_SYN_RCVD || tcp_opts_wscale (&tc->rcv_opts))
130 tc->rcv_wscale = tcp_window_compute_scale (max_fifo);
131
Florin Corase04c2992017-03-01 08:17:34 -0800132 tc->rcv_wnd = tcp_initial_wnd_unscaled (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500133
134 return clib_min (tc->rcv_wnd, TCP_WND_MAX);
135}
136
Florin Coras0dbd5172018-06-25 16:19:34 -0700137static void
Florin Coras6792ec02017-03-13 03:49:51 -0700138tcp_update_rcv_wnd (tcp_connection_t * tc)
139{
140 i32 observed_wnd;
141 u32 available_space, max_fifo, wnd;
142
Florin Corase04c2992017-03-01 08:17:34 -0800143 /*
144 * Figure out how much space we have available
145 */
Florin Corasd2aab832018-05-22 11:39:59 -0700146 available_space = transport_max_rx_enqueue (&tc->connection);
147 max_fifo = transport_rx_fifo_size (&tc->connection);
Dave Barach68b0fb02017-02-28 15:15:56 -0500148
Florin Coras93992a92017-05-24 18:03:56 -0700149 ASSERT (tc->rcv_opts.mss < max_fifo);
150 if (available_space < tc->rcv_opts.mss && available_space < max_fifo >> 3)
Florin Corase04c2992017-03-01 08:17:34 -0800151 available_space = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500152
Florin Corase04c2992017-03-01 08:17:34 -0800153 /*
154 * Use the above and what we know about what we've previously advertised
155 * to compute the new window
156 */
Florin Coras6792ec02017-03-13 03:49:51 -0700157 observed_wnd = (i32) tc->rcv_wnd - (tc->rcv_nxt - tc->rcv_las);
158 if (observed_wnd < 0)
159 observed_wnd = 0;
Florin Corase04c2992017-03-01 08:17:34 -0800160
161 /* Bad. Thou shalt not shrink */
162 if (available_space < observed_wnd)
163 {
Florin Coras6792ec02017-03-13 03:49:51 -0700164 wnd = observed_wnd;
Florin Coras3e350af2017-03-30 02:54:28 -0700165 TCP_EVT_DBG (TCP_EVT_RCV_WND_SHRUNK, tc, observed_wnd, available_space);
Florin Corase04c2992017-03-01 08:17:34 -0800166 }
Florin Coras6792ec02017-03-13 03:49:51 -0700167 else
Florin Corase04c2992017-03-01 08:17:34 -0800168 {
Florin Coras6792ec02017-03-13 03:49:51 -0700169 wnd = available_space;
Florin Corase04c2992017-03-01 08:17:34 -0800170 }
171
Florin Coras3e350af2017-03-30 02:54:28 -0700172 /* Make sure we have a multiple of rcv_wscale */
173 if (wnd && tc->rcv_wscale)
174 {
Florin Coras679b78f2019-03-06 21:16:26 -0800175 wnd &= ~((1 << tc->rcv_wscale) - 1);
Florin Coras3e350af2017-03-30 02:54:28 -0700176 if (wnd == 0)
177 wnd = 1 << tc->rcv_wscale;
178 }
Florin Coras6792ec02017-03-13 03:49:51 -0700179
180 tc->rcv_wnd = clib_min (wnd, TCP_WND_MAX << tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500181}
182
183/**
Florin Coras0dbd5172018-06-25 16:19:34 -0700184 * Compute and return window to advertise, scaled as per RFC1323
185 */
186static u32
187tcp_window_to_advertise (tcp_connection_t * tc, tcp_state_t state)
188{
189 if (state < TCP_STATE_ESTABLISHED)
190 return tcp_initial_window_to_advertise (tc);
191
192 tcp_update_rcv_wnd (tc);
193
194 if (tc->rcv_wnd == 0)
195 {
196 tc->flags |= TCP_CONN_SENT_RCV_WND0;
197 }
198 else
199 {
200 tc->flags &= ~TCP_CONN_SENT_RCV_WND0;
201 }
202
203 return tc->rcv_wnd >> tc->rcv_wscale;
204}
205
206/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500207 * Write TCP options to segment.
208 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700209static u32
Dave Barach68b0fb02017-02-28 15:15:56 -0500210tcp_options_write (u8 * data, tcp_options_t * opts)
211{
212 u32 opts_len = 0;
213 u32 buf, seq_len = 4;
214
215 if (tcp_opts_mss (opts))
216 {
217 *data++ = TCP_OPTION_MSS;
218 *data++ = TCP_OPTION_LEN_MSS;
219 buf = clib_host_to_net_u16 (opts->mss);
Dave Barach178cf492018-11-13 16:34:13 -0500220 clib_memcpy_fast (data, &buf, sizeof (opts->mss));
Dave Barach68b0fb02017-02-28 15:15:56 -0500221 data += sizeof (opts->mss);
222 opts_len += TCP_OPTION_LEN_MSS;
223 }
224
225 if (tcp_opts_wscale (opts))
226 {
227 *data++ = TCP_OPTION_WINDOW_SCALE;
228 *data++ = TCP_OPTION_LEN_WINDOW_SCALE;
229 *data++ = opts->wscale;
230 opts_len += TCP_OPTION_LEN_WINDOW_SCALE;
231 }
232
233 if (tcp_opts_sack_permitted (opts))
234 {
235 *data++ = TCP_OPTION_SACK_PERMITTED;
236 *data++ = TCP_OPTION_LEN_SACK_PERMITTED;
237 opts_len += TCP_OPTION_LEN_SACK_PERMITTED;
238 }
239
240 if (tcp_opts_tstamp (opts))
241 {
242 *data++ = TCP_OPTION_TIMESTAMP;
243 *data++ = TCP_OPTION_LEN_TIMESTAMP;
244 buf = clib_host_to_net_u32 (opts->tsval);
Dave Barach178cf492018-11-13 16:34:13 -0500245 clib_memcpy_fast (data, &buf, sizeof (opts->tsval));
Dave Barach68b0fb02017-02-28 15:15:56 -0500246 data += sizeof (opts->tsval);
247 buf = clib_host_to_net_u32 (opts->tsecr);
Dave Barach178cf492018-11-13 16:34:13 -0500248 clib_memcpy_fast (data, &buf, sizeof (opts->tsecr));
Dave Barach68b0fb02017-02-28 15:15:56 -0500249 data += sizeof (opts->tsecr);
250 opts_len += TCP_OPTION_LEN_TIMESTAMP;
251 }
252
253 if (tcp_opts_sack (opts))
254 {
255 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -0500256
Florin Corase5b17912019-02-21 16:46:24 -0800257 if (opts->n_sack_blocks != 0)
Dave Barach68b0fb02017-02-28 15:15:56 -0500258 {
259 *data++ = TCP_OPTION_SACK_BLOCK;
Florin Corase5b17912019-02-21 16:46:24 -0800260 *data++ = 2 + opts->n_sack_blocks * TCP_OPTION_LEN_SACK_BLOCK;
261 for (i = 0; i < opts->n_sack_blocks; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -0500262 {
263 buf = clib_host_to_net_u32 (opts->sacks[i].start);
Dave Barach178cf492018-11-13 16:34:13 -0500264 clib_memcpy_fast (data, &buf, seq_len);
Dave Barach68b0fb02017-02-28 15:15:56 -0500265 data += seq_len;
266 buf = clib_host_to_net_u32 (opts->sacks[i].end);
Dave Barach178cf492018-11-13 16:34:13 -0500267 clib_memcpy_fast (data, &buf, seq_len);
Dave Barach68b0fb02017-02-28 15:15:56 -0500268 data += seq_len;
269 }
Florin Corase5b17912019-02-21 16:46:24 -0800270 opts_len += 2 + opts->n_sack_blocks * TCP_OPTION_LEN_SACK_BLOCK;
Dave Barach68b0fb02017-02-28 15:15:56 -0500271 }
272 }
273
274 /* Terminate TCP options */
275 if (opts_len % 4)
276 {
277 *data++ = TCP_OPTION_EOL;
278 opts_len += TCP_OPTION_LEN_EOL;
279 }
280
281 /* Pad with zeroes to a u32 boundary */
282 while (opts_len % 4)
283 {
284 *data++ = TCP_OPTION_NOOP;
285 opts_len += TCP_OPTION_LEN_NOOP;
286 }
287 return opts_len;
288}
289
Florin Coras0dbd5172018-06-25 16:19:34 -0700290static int
Florin Corase04c2992017-03-01 08:17:34 -0800291tcp_make_syn_options (tcp_options_t * opts, u8 wnd_scale)
Dave Barach68b0fb02017-02-28 15:15:56 -0500292{
293 u8 len = 0;
294
295 opts->flags |= TCP_OPTS_FLAG_MSS;
296 opts->mss = dummy_mtu; /*XXX discover that */
297 len += TCP_OPTION_LEN_MSS;
298
299 opts->flags |= TCP_OPTS_FLAG_WSCALE;
Florin Corase04c2992017-03-01 08:17:34 -0800300 opts->wscale = wnd_scale;
Dave Barach68b0fb02017-02-28 15:15:56 -0500301 len += TCP_OPTION_LEN_WINDOW_SCALE;
302
303 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
304 opts->tsval = tcp_time_now ();
305 opts->tsecr = 0;
306 len += TCP_OPTION_LEN_TIMESTAMP;
307
Florin Coras93992a92017-05-24 18:03:56 -0700308 if (TCP_USE_SACKS)
309 {
310 opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
311 len += TCP_OPTION_LEN_SACK_PERMITTED;
312 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500313
314 /* Align to needed boundary */
315 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
316 return len;
317}
318
Florin Coras0dbd5172018-06-25 16:19:34 -0700319static int
Dave Barach68b0fb02017-02-28 15:15:56 -0500320tcp_make_synack_options (tcp_connection_t * tc, tcp_options_t * opts)
321{
322 u8 len = 0;
323
324 opts->flags |= TCP_OPTS_FLAG_MSS;
Florin Corasc8343412017-05-04 14:25:50 -0700325 opts->mss = tc->mss;
Dave Barach68b0fb02017-02-28 15:15:56 -0500326 len += TCP_OPTION_LEN_MSS;
327
Florin Coras93992a92017-05-24 18:03:56 -0700328 if (tcp_opts_wscale (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500329 {
330 opts->flags |= TCP_OPTS_FLAG_WSCALE;
331 opts->wscale = tc->rcv_wscale;
332 len += TCP_OPTION_LEN_WINDOW_SCALE;
333 }
334
Florin Coras93992a92017-05-24 18:03:56 -0700335 if (tcp_opts_tstamp (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500336 {
337 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
338 opts->tsval = tcp_time_now ();
339 opts->tsecr = tc->tsval_recent;
340 len += TCP_OPTION_LEN_TIMESTAMP;
341 }
342
Florin Coras93992a92017-05-24 18:03:56 -0700343 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500344 {
345 opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
346 len += TCP_OPTION_LEN_SACK_PERMITTED;
347 }
348
349 /* Align to needed boundary */
350 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
351 return len;
352}
353
Florin Coras0dbd5172018-06-25 16:19:34 -0700354static int
Dave Barach68b0fb02017-02-28 15:15:56 -0500355tcp_make_established_options (tcp_connection_t * tc, tcp_options_t * opts)
356{
357 u8 len = 0;
358
359 opts->flags = 0;
360
Florin Coras93992a92017-05-24 18:03:56 -0700361 if (tcp_opts_tstamp (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500362 {
363 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
Florin Corasbe72ae62018-11-01 11:23:03 -0700364 opts->tsval = tcp_time_now_w_thread (tc->c_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500365 opts->tsecr = tc->tsval_recent;
366 len += TCP_OPTION_LEN_TIMESTAMP;
367 }
Florin Coras93992a92017-05-24 18:03:56 -0700368 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500369 {
370 if (vec_len (tc->snd_sacks))
371 {
372 opts->flags |= TCP_OPTS_FLAG_SACK;
Florin Corase5b17912019-02-21 16:46:24 -0800373 if (tc->snd_sack_pos >= vec_len (tc->snd_sacks))
374 tc->snd_sack_pos = 0;
375 opts->sacks = &tc->snd_sacks[tc->snd_sack_pos];
376 opts->n_sack_blocks = vec_len (tc->snd_sacks) - tc->snd_sack_pos;
377 opts->n_sack_blocks = clib_min (opts->n_sack_blocks,
Florin Corasc28764f2017-04-26 00:08:42 -0700378 TCP_OPTS_MAX_SACK_BLOCKS);
Florin Corase5b17912019-02-21 16:46:24 -0800379 tc->snd_sack_pos += opts->n_sack_blocks;
Dave Barach68b0fb02017-02-28 15:15:56 -0500380 len += 2 + TCP_OPTION_LEN_SACK_BLOCK * opts->n_sack_blocks;
381 }
382 }
383
384 /* Align to needed boundary */
385 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
386 return len;
387}
388
389always_inline int
390tcp_make_options (tcp_connection_t * tc, tcp_options_t * opts,
391 tcp_state_t state)
392{
393 switch (state)
394 {
395 case TCP_STATE_ESTABLISHED:
Florin Coras25579b42018-06-06 17:55:02 -0700396 case TCP_STATE_CLOSE_WAIT:
Florin Coras54ddf432018-12-21 13:54:09 -0800397 case TCP_STATE_FIN_WAIT_1:
398 case TCP_STATE_LAST_ACK:
399 case TCP_STATE_CLOSING:
400 case TCP_STATE_FIN_WAIT_2:
401 case TCP_STATE_TIME_WAIT:
402 case TCP_STATE_CLOSED:
Dave Barach68b0fb02017-02-28 15:15:56 -0500403 return tcp_make_established_options (tc, opts);
404 case TCP_STATE_SYN_RCVD:
405 return tcp_make_synack_options (tc, opts);
406 case TCP_STATE_SYN_SENT:
Florin Corase04c2992017-03-01 08:17:34 -0800407 return tcp_make_syn_options (opts, tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500408 default:
Florin Coras371ca502018-02-21 12:07:41 -0800409 clib_warning ("State not handled! %d", state);
Dave Barach68b0fb02017-02-28 15:15:56 -0500410 return 0;
411 }
412}
413
Florin Corasc8343412017-05-04 14:25:50 -0700414/**
Florin Corasb26743d2018-06-26 09:31:04 -0700415 * Update burst send vars
416 *
417 * - Updates snd_mss to reflect the effective segment size that we can send
418 * by taking into account all TCP options, including SACKs.
419 * - Cache 'on the wire' options for reuse
420 * - Updates receive window which can be reused for a burst.
421 *
422 * This should *only* be called when doing bursts
Florin Corasc8343412017-05-04 14:25:50 -0700423 */
424void
Florin Corasb26743d2018-06-26 09:31:04 -0700425tcp_update_burst_snd_vars (tcp_connection_t * tc)
Florin Corasc8343412017-05-04 14:25:50 -0700426{
Florin Corasb26743d2018-06-26 09:31:04 -0700427 tcp_main_t *tm = &tcp_main;
428
Florin Corasc8343412017-05-04 14:25:50 -0700429 /* Compute options to be used for connection. These may be reused when
430 * sending data or to compute the effective mss (snd_mss) */
Florin Corasb26743d2018-06-26 09:31:04 -0700431 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts,
432 TCP_STATE_ESTABLISHED);
Florin Corasc8343412017-05-04 14:25:50 -0700433
434 /* XXX check if MTU has been updated */
Florin Coras93992a92017-05-24 18:03:56 -0700435 tc->snd_mss = clib_min (tc->mss, tc->rcv_opts.mss) - tc->snd_opts_len;
Florin Corasdb84e572017-05-09 18:54:52 -0700436 ASSERT (tc->snd_mss > 0);
Florin Corasb26743d2018-06-26 09:31:04 -0700437
438 tcp_options_write (tm->wrk_ctx[tc->c_thread_index].cached_opts,
439 &tc->snd_opts);
440
441 tcp_update_rcv_wnd (tc);
Florin Corasc8343412017-05-04 14:25:50 -0700442}
443
444void
445tcp_init_mss (tcp_connection_t * tc)
446{
Florin Corasdb84e572017-05-09 18:54:52 -0700447 u16 default_min_mss = 536;
Florin Corasc8343412017-05-04 14:25:50 -0700448 tcp_update_rcv_mss (tc);
449
450 /* TODO cache mss and consider PMTU discovery */
Florin Coras93992a92017-05-24 18:03:56 -0700451 tc->snd_mss = clib_min (tc->rcv_opts.mss, tc->mss);
Florin Corasc8343412017-05-04 14:25:50 -0700452
Florin Corasdb84e572017-05-09 18:54:52 -0700453 if (tc->snd_mss < 45)
Florin Corasc8343412017-05-04 14:25:50 -0700454 {
Florin Corasdb84e572017-05-09 18:54:52 -0700455 /* Assume that at least the min default mss works */
456 tc->snd_mss = default_min_mss;
Florin Coras93992a92017-05-24 18:03:56 -0700457 tc->rcv_opts.mss = default_min_mss;
Florin Corasc8343412017-05-04 14:25:50 -0700458 }
459
460 /* We should have enough space for 40 bytes of options */
461 ASSERT (tc->snd_mss > 45);
462
463 /* If we use timestamp option, account for it */
Florin Coras93992a92017-05-24 18:03:56 -0700464 if (tcp_opts_tstamp (&tc->rcv_opts))
Florin Corasc8343412017-05-04 14:25:50 -0700465 tc->snd_mss -= TCP_OPTION_LEN_TIMESTAMP;
466}
Filip Tehlare275bed2019-03-06 00:06:56 -0800467#endif /* CLIB_MARCH_VARIANT */
Florin Corasc8343412017-05-04 14:25:50 -0700468
Florin Coras0dbd5172018-06-25 16:19:34 -0700469static void *
Dave Barach68b0fb02017-02-28 15:15:56 -0500470tcp_reuse_buffer (vlib_main_t * vm, vlib_buffer_t * b)
471{
Florin Corasb2215d62017-08-01 16:56:58 -0700472 if (b->flags & VLIB_BUFFER_NEXT_PRESENT)
473 vlib_buffer_free_one (vm, b->next_buffer);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400474 /* Zero all flags but free list index and trace flag */
475 b->flags &= VLIB_BUFFER_NEXT_PRESENT - 1;
Florin Coras1f152cd2017-08-18 19:28:03 -0700476 b->current_data = 0;
477 b->current_length = 0;
478 b->total_length_not_including_first_buffer = 0;
479 vnet_buffer (b)->tcp.flags = 0;
Florin Corasb2215d62017-08-01 16:56:58 -0700480
Dave Barach68b0fb02017-02-28 15:15:56 -0500481 /* Leave enough space for headers */
Florin Coras1ee78302019-02-05 15:51:15 -0800482 return vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
Florin Coras1f152cd2017-08-18 19:28:03 -0700483}
484
Filip Tehlare275bed2019-03-06 00:06:56 -0800485#ifndef CLIB_MARCH_VARIANT
Florin Coras0dbd5172018-06-25 16:19:34 -0700486static void *
Florin Coras1f152cd2017-08-18 19:28:03 -0700487tcp_init_buffer (vlib_main_t * vm, vlib_buffer_t * b)
488{
489 ASSERT ((b->flags & VLIB_BUFFER_NEXT_PRESENT) == 0);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400490 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Florin Coras1f152cd2017-08-18 19:28:03 -0700491 b->total_length_not_including_first_buffer = 0;
Florin Coras24793e32018-05-09 11:34:25 -0700492 b->current_data = 0;
Florin Corasd79b41e2017-03-04 05:37:52 -0800493 vnet_buffer (b)->tcp.flags = 0;
Florin Corasf988e692017-11-27 04:34:14 -0500494 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b);
Florin Coras1f152cd2017-08-18 19:28:03 -0700495 /* Leave enough space for headers */
Florin Coras1ee78302019-02-05 15:51:15 -0800496 return vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
Dave Barach68b0fb02017-02-28 15:15:56 -0500497}
498
499/**
500 * Prepare ACK
501 */
Florin Corasbdf7fd62019-01-31 17:31:01 -0800502static inline void
Dave Barach68b0fb02017-02-28 15:15:56 -0500503tcp_make_ack_i (tcp_connection_t * tc, vlib_buffer_t * b, tcp_state_t state,
504 u8 flags)
505{
506 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
507 u8 tcp_opts_len, tcp_hdr_opts_len;
508 tcp_header_t *th;
509 u16 wnd;
510
511 wnd = tcp_window_to_advertise (tc, state);
512
513 /* Make and write options */
514 tcp_opts_len = tcp_make_established_options (tc, snd_opts);
515 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
516
517 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
518 tc->rcv_nxt, tcp_hdr_opts_len, flags, wnd);
519
520 tcp_options_write ((u8 *) (th + 1), snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500521 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
522}
523
524/**
525 * Convert buffer to ACK
526 */
Florin Corasbdf7fd62019-01-31 17:31:01 -0800527static inline void
Dave Barach68b0fb02017-02-28 15:15:56 -0500528tcp_make_ack (tcp_connection_t * tc, vlib_buffer_t * b)
529{
Dave Barach68b0fb02017-02-28 15:15:56 -0500530 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, TCP_FLAG_ACK);
Florin Coras6792ec02017-03-13 03:49:51 -0700531 TCP_EVT_DBG (TCP_EVT_ACK_SENT, tc);
Florin Coras3e350af2017-03-30 02:54:28 -0700532 tc->rcv_las = tc->rcv_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500533}
534
535/**
536 * Convert buffer to FIN-ACK
537 */
538void
Florin Corasd79b41e2017-03-04 05:37:52 -0800539tcp_make_fin (tcp_connection_t * tc, vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500540{
Florin Corasbdf7fd62019-01-31 17:31:01 -0800541 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK);
Dave Barach68b0fb02017-02-28 15:15:56 -0500542
543 /* Reset flags, make sure ack is sent */
Dave Barach68b0fb02017-02-28 15:15:56 -0500544 vnet_buffer (b)->tcp.flags &= ~TCP_BUF_FLAG_DUPACK;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400545}
Dave Barach68b0fb02017-02-28 15:15:56 -0500546
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400547/**
548 * Convert buffer to SYN
549 */
550void
551tcp_make_syn (tcp_connection_t * tc, vlib_buffer_t * b)
552{
553 u8 tcp_hdr_opts_len, tcp_opts_len;
554 tcp_header_t *th;
555 u16 initial_wnd;
556 tcp_options_t snd_opts;
557
558 initial_wnd = tcp_initial_window_to_advertise (tc);
559
560 /* Make and write options */
Dave Barachb7b92992018-10-17 10:38:51 -0400561 clib_memset (&snd_opts, 0, sizeof (snd_opts));
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400562 tcp_opts_len = tcp_make_syn_options (&snd_opts, tc->rcv_wscale);
563 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
564
565 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
566 tc->rcv_nxt, tcp_hdr_opts_len, TCP_FLAG_SYN,
567 initial_wnd);
568 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
569 tcp_options_write ((u8 *) (th + 1), &snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500570}
571
572/**
573 * Convert buffer to SYN-ACK
574 */
575void
576tcp_make_synack (tcp_connection_t * tc, vlib_buffer_t * b)
577{
Dave Barach68b0fb02017-02-28 15:15:56 -0500578 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
579 u8 tcp_opts_len, tcp_hdr_opts_len;
580 tcp_header_t *th;
581 u16 initial_wnd;
Dave Barach68b0fb02017-02-28 15:15:56 -0500582
Dave Barachb7b92992018-10-17 10:38:51 -0400583 clib_memset (snd_opts, 0, sizeof (*snd_opts));
Dave Barach68b0fb02017-02-28 15:15:56 -0500584 initial_wnd = tcp_initial_window_to_advertise (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500585 tcp_opts_len = tcp_make_synack_options (tc, snd_opts);
586 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
587
588 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
589 tc->rcv_nxt, tcp_hdr_opts_len,
590 TCP_FLAG_SYN | TCP_FLAG_ACK, initial_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -0500591 tcp_options_write ((u8 *) (th + 1), snd_opts);
592
593 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500594}
595
596always_inline void
Florin Corasbe72ae62018-11-01 11:23:03 -0700597tcp_enqueue_to_ip_lookup_i (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi,
Florin Coras56b39f62018-03-27 17:29:32 -0700598 u8 is_ip4, u32 fib_index, u8 flush)
Dave Barach68b0fb02017-02-28 15:15:56 -0500599{
Florin Corasbe72ae62018-11-01 11:23:03 -0700600 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500601 u32 *to_next, next_index;
602 vlib_frame_t *f;
603
Damjan Marion213b5aa2017-07-13 21:19:27 +0200604 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500605 b->error = 0;
606
Florin Coras56b39f62018-03-27 17:29:32 -0700607 vnet_buffer (b)->sw_if_index[VLIB_TX] = fib_index;
608 vnet_buffer (b)->sw_if_index[VLIB_RX] = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500609
610 /* Send to IP lookup */
611 next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index;
Florin Corasf988e692017-11-27 04:34:14 -0500612 tcp_trajectory_add_start (b, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500613
Florin Corasbe72ae62018-11-01 11:23:03 -0700614 f = wrk->ip_lookup_tx_frames[!is_ip4];
Florin Coras9d063042017-09-14 03:08:00 -0400615 if (!f)
616 {
617 f = vlib_get_frame_to_node (vm, next_index);
618 ASSERT (f);
Florin Corasbe72ae62018-11-01 11:23:03 -0700619 wrk->ip_lookup_tx_frames[!is_ip4] = f;
Florin Coras9d063042017-09-14 03:08:00 -0400620 }
621
Dave Barach68b0fb02017-02-28 15:15:56 -0500622 to_next = vlib_frame_vector_args (f);
Florin Coras9d063042017-09-14 03:08:00 -0400623 to_next[f->n_vectors] = bi;
624 f->n_vectors += 1;
625 if (flush || f->n_vectors == VLIB_FRAME_SIZE)
626 {
627 vlib_put_frame_to_node (vm, next_index, f);
Florin Corasbe72ae62018-11-01 11:23:03 -0700628 wrk->ip_lookup_tx_frames[!is_ip4] = 0;
Florin Coras9d063042017-09-14 03:08:00 -0400629 }
630}
631
Florin Coras0dbd5172018-06-25 16:19:34 -0700632static void
Florin Corasbe72ae62018-11-01 11:23:03 -0700633tcp_enqueue_to_ip_lookup_now (tcp_worker_ctx_t * wrk, vlib_buffer_t * b,
634 u32 bi, u8 is_ip4, u32 fib_index)
Florin Coras9d063042017-09-14 03:08:00 -0400635{
Florin Corasbe72ae62018-11-01 11:23:03 -0700636 tcp_enqueue_to_ip_lookup_i (wrk, b, bi, is_ip4, fib_index, 1);
Florin Coras9d063042017-09-14 03:08:00 -0400637}
638
Florin Coras0dbd5172018-06-25 16:19:34 -0700639static void
Florin Corasbe72ae62018-11-01 11:23:03 -0700640tcp_enqueue_to_ip_lookup (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi,
Florin Coras56b39f62018-03-27 17:29:32 -0700641 u8 is_ip4, u32 fib_index)
Florin Coras9d063042017-09-14 03:08:00 -0400642{
Florin Corasbe72ae62018-11-01 11:23:03 -0700643 tcp_enqueue_to_ip_lookup_i (wrk, b, bi, is_ip4, fib_index, 0);
644 if (wrk->vm->thread_index == 0 && vlib_num_workers ())
645 session_flush_frames_main_thread (wrk->vm);
Dave Barach68b0fb02017-02-28 15:15:56 -0500646}
647
Florin Coras1f152cd2017-08-18 19:28:03 -0700648always_inline void
Florin Corasbe72ae62018-11-01 11:23:03 -0700649tcp_enqueue_to_output_i (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi,
Florin Coras1f152cd2017-08-18 19:28:03 -0700650 u8 is_ip4, u8 flush)
651{
Florin Coras1f152cd2017-08-18 19:28:03 -0700652 u32 *to_next, next_index;
653 vlib_frame_t *f;
654
655 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
656 b->error = 0;
657
658 /* Decide where to send the packet */
659 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
Florin Corasf988e692017-11-27 04:34:14 -0500660 tcp_trajectory_add_start (b, 2);
Florin Coras1f152cd2017-08-18 19:28:03 -0700661
662 /* Get frame to v4/6 output node */
Florin Corasbe72ae62018-11-01 11:23:03 -0700663 f = wrk->tx_frames[!is_ip4];
Florin Coras1f152cd2017-08-18 19:28:03 -0700664 if (!f)
665 {
Florin Corasbe72ae62018-11-01 11:23:03 -0700666 f = vlib_get_frame_to_node (wrk->vm, next_index);
Florin Coras1f152cd2017-08-18 19:28:03 -0700667 ASSERT (f);
Florin Corasbe72ae62018-11-01 11:23:03 -0700668 wrk->tx_frames[!is_ip4] = f;
Florin Coras1f152cd2017-08-18 19:28:03 -0700669 }
670 to_next = vlib_frame_vector_args (f);
671 to_next[f->n_vectors] = bi;
672 f->n_vectors += 1;
673 if (flush || f->n_vectors == VLIB_FRAME_SIZE)
674 {
Florin Corasbe72ae62018-11-01 11:23:03 -0700675 vlib_put_frame_to_node (wrk->vm, next_index, f);
676 wrk->tx_frames[!is_ip4] = 0;
Florin Coras1f152cd2017-08-18 19:28:03 -0700677 }
678}
679
Florin Coras0dbd5172018-06-25 16:19:34 -0700680static void
Florin Corasbe72ae62018-11-01 11:23:03 -0700681tcp_enqueue_to_output (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi,
682 u8 is_ip4)
Florin Coras1f152cd2017-08-18 19:28:03 -0700683{
Florin Corasbe72ae62018-11-01 11:23:03 -0700684 tcp_enqueue_to_output_i (wrk, b, bi, is_ip4, 0);
Florin Coras1f152cd2017-08-18 19:28:03 -0700685}
686
Florin Coras0dbd5172018-06-25 16:19:34 -0700687static void
Florin Corasbe72ae62018-11-01 11:23:03 -0700688tcp_enqueue_to_output_now (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi,
Florin Coras1f152cd2017-08-18 19:28:03 -0700689 u8 is_ip4)
690{
Florin Corasbe72ae62018-11-01 11:23:03 -0700691 tcp_enqueue_to_output_i (wrk, b, bi, is_ip4, 1);
Florin Coras1f152cd2017-08-18 19:28:03 -0700692}
Filip Tehlare275bed2019-03-06 00:06:56 -0800693#endif /* CLIB_MARCH_VARIANT */
Florin Coras1f152cd2017-08-18 19:28:03 -0700694
Florin Coras0dbd5172018-06-25 16:19:34 -0700695static int
Dave Barach68b0fb02017-02-28 15:15:56 -0500696tcp_make_reset_in_place (vlib_main_t * vm, vlib_buffer_t * b0,
Florin Corasdc629cd2017-05-09 00:52:37 -0700697 tcp_state_t state, u8 thread_index, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500698{
Dave Barach68b0fb02017-02-28 15:15:56 -0500699 ip4_header_t *ih4;
700 ip6_header_t *ih6;
701 tcp_header_t *th0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700702 ip4_address_t src_ip40, dst_ip40;
703 ip6_address_t src_ip60, dst_ip60;
704 u16 src_port, dst_port;
Dave Barach68b0fb02017-02-28 15:15:56 -0500705 u32 tmp;
Florin Corasdc629cd2017-05-09 00:52:37 -0700706 u32 seq, ack;
707 u8 flags;
Dave Barach68b0fb02017-02-28 15:15:56 -0500708
709 /* Find IP and TCP headers */
Florin Corasdc629cd2017-05-09 00:52:37 -0700710 th0 = tcp_buffer_hdr (b0);
711
712 /* Save src and dst ip */
Dave Barach68b0fb02017-02-28 15:15:56 -0500713 if (is_ip4)
714 {
715 ih4 = vlib_buffer_get_current (b0);
Florin Corasdc629cd2017-05-09 00:52:37 -0700716 ASSERT ((ih4->ip_version_and_header_length & 0xF0) == 0x40);
717 src_ip40.as_u32 = ih4->src_address.as_u32;
718 dst_ip40.as_u32 = ih4->dst_address.as_u32;
Dave Barach68b0fb02017-02-28 15:15:56 -0500719 }
720 else
721 {
722 ih6 = vlib_buffer_get_current (b0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500723 ASSERT ((ih6->ip_version_traffic_class_and_flow_label & 0xF0) == 0x60);
Dave Barach178cf492018-11-13 16:34:13 -0500724 clib_memcpy_fast (&src_ip60, &ih6->src_address, sizeof (ip6_address_t));
725 clib_memcpy_fast (&dst_ip60, &ih6->dst_address, sizeof (ip6_address_t));
Dave Barach68b0fb02017-02-28 15:15:56 -0500726 }
727
Florin Corasdc629cd2017-05-09 00:52:37 -0700728 src_port = th0->src_port;
729 dst_port = th0->dst_port;
730
731 /* Try to determine what/why we're actually resetting */
Dave Barach68b0fb02017-02-28 15:15:56 -0500732 if (state == TCP_STATE_CLOSED)
733 {
734 if (!tcp_syn (th0))
735 return -1;
736
737 tmp = clib_net_to_host_u32 (th0->seq_number);
738
739 /* Got a SYN for no listener. */
Florin Corasdc629cd2017-05-09 00:52:37 -0700740 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
741 ack = clib_host_to_net_u32 (tmp + 1);
742 seq = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500743 }
Florin Corasdc629cd2017-05-09 00:52:37 -0700744 else
Dave Barach68b0fb02017-02-28 15:15:56 -0500745 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700746 flags = TCP_FLAG_RST;
747 seq = th0->ack_number;
748 ack = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500749 }
750
Florin Corasdc629cd2017-05-09 00:52:37 -0700751 tcp_reuse_buffer (vm, b0);
Florin Corasf988e692017-11-27 04:34:14 -0500752 tcp_trajectory_add_start (b0, 4);
Florin Corasdc629cd2017-05-09 00:52:37 -0700753 th0 = vlib_buffer_push_tcp_net_order (b0, dst_port, src_port, seq, ack,
754 sizeof (tcp_header_t), flags, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500755
Dave Barach68b0fb02017-02-28 15:15:56 -0500756 if (is_ip4)
757 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700758 ih4 = vlib_buffer_push_ip4 (vm, b0, &dst_ip40, &src_ip40,
Florin Corasfdbc3822017-07-27 00:34:12 -0700759 IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500760 th0->checksum = ip4_tcp_udp_compute_checksum (vm, b0, ih4);
761 }
762 else
763 {
764 int bogus = ~0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700765 ih6 = vlib_buffer_push_ip6 (vm, b0, &dst_ip60, &src_ip60,
766 IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500767 th0->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b0, ih6, &bogus);
768 ASSERT (!bogus);
769 }
770
771 return 0;
772}
773
Filip Tehlare275bed2019-03-06 00:06:56 -0800774#ifndef CLIB_MARCH_VARIANT
Dave Barach68b0fb02017-02-28 15:15:56 -0500775/**
776 * Send reset without reusing existing buffer
Florin Coras1f152cd2017-08-18 19:28:03 -0700777 *
778 * It extracts connection info out of original packet
Dave Barach68b0fb02017-02-28 15:15:56 -0500779 */
780void
Florin Corasd4c49be2019-02-07 00:15:53 -0800781tcp_send_reset_w_pkt (tcp_connection_t * tc, vlib_buffer_t * pkt,
782 u32 thread_index, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500783{
Florin Corasd4c49be2019-02-07 00:15:53 -0800784 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Corasbe72ae62018-11-01 11:23:03 -0700785 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500786 vlib_buffer_t *b;
Florin Coras56b39f62018-03-27 17:29:32 -0700787 u32 bi, sw_if_index, fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500788 u8 tcp_hdr_len, flags = 0;
789 tcp_header_t *th, *pkt_th;
790 u32 seq, ack;
791 ip4_header_t *ih4, *pkt_ih4;
792 ip6_header_t *ih6, *pkt_ih6;
Florin Coras56b39f62018-03-27 17:29:32 -0700793 fib_protocol_t fib_proto;
Dave Barach68b0fb02017-02-28 15:15:56 -0500794
Florin Corasbdf7fd62019-01-31 17:31:01 -0800795 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coras66b11312017-07-31 17:18:03 -0700796 return;
797
Dave Barach68b0fb02017-02-28 15:15:56 -0500798 b = vlib_get_buffer (vm, bi);
Florin Coras56b39f62018-03-27 17:29:32 -0700799 sw_if_index = vnet_buffer (pkt)->sw_if_index[VLIB_RX];
800 fib_proto = is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
801 fib_index = fib_table_get_index_for_sw_if_index (fib_proto, sw_if_index);
Florin Coras1f152cd2017-08-18 19:28:03 -0700802 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500803
804 /* Make and write options */
805 tcp_hdr_len = sizeof (tcp_header_t);
806
807 if (is_ip4)
808 {
809 pkt_ih4 = vlib_buffer_get_current (pkt);
810 pkt_th = ip4_next_header (pkt_ih4);
811 }
812 else
813 {
814 pkt_ih6 = vlib_buffer_get_current (pkt);
815 pkt_th = ip6_next_header (pkt_ih6);
816 }
817
818 if (tcp_ack (pkt_th))
819 {
820 flags = TCP_FLAG_RST;
821 seq = pkt_th->ack_number;
Florin Coras776f3d82018-11-02 08:23:58 -0700822 ack = (tc->state >= TCP_STATE_SYN_RCVD) ? tc->rcv_nxt : 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500823 }
824 else
825 {
826 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
827 seq = 0;
828 ack = clib_host_to_net_u32 (vnet_buffer (pkt)->tcp.seq_end);
829 }
830
831 th = vlib_buffer_push_tcp_net_order (b, pkt_th->dst_port, pkt_th->src_port,
832 seq, ack, tcp_hdr_len, flags, 0);
833
834 /* Swap src and dst ip */
835 if (is_ip4)
836 {
837 ASSERT ((pkt_ih4->ip_version_and_header_length & 0xF0) == 0x40);
838 ih4 = vlib_buffer_push_ip4 (vm, b, &pkt_ih4->dst_address,
Florin Corasfdbc3822017-07-27 00:34:12 -0700839 &pkt_ih4->src_address, IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500840 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
841 }
842 else
843 {
844 int bogus = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500845 ASSERT ((pkt_ih6->ip_version_traffic_class_and_flow_label & 0xF0) ==
846 0x60);
rootc9d1c5b2017-08-15 12:58:31 -0400847 ih6 = vlib_buffer_push_ip6 (vm, b, &pkt_ih6->dst_address,
848 &pkt_ih6->src_address, IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500849 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
850 ASSERT (!bogus);
851 }
852
Florin Corasbe72ae62018-11-01 11:23:03 -0700853 tcp_enqueue_to_ip_lookup_now (wrk, b, bi, is_ip4, fib_index);
Florin Coras6534b7a2017-07-18 05:38:03 -0400854 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500855}
856
Florin Coras1f152cd2017-08-18 19:28:03 -0700857/**
858 * Build and set reset packet for connection
859 */
860void
861tcp_send_reset (tcp_connection_t * tc)
862{
Florin Corasbe72ae62018-11-01 11:23:03 -0700863 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
864 vlib_main_t *vm = wrk->vm;
Florin Coras1f152cd2017-08-18 19:28:03 -0700865 vlib_buffer_t *b;
866 u32 bi;
867 tcp_header_t *th;
868 u16 tcp_hdr_opts_len, advertise_wnd, opts_write_len;
869 u8 flags;
870
Florin Corasbdf7fd62019-01-31 17:31:01 -0800871 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coras1f152cd2017-08-18 19:28:03 -0700872 return;
873 b = vlib_get_buffer (vm, bi);
874 tcp_init_buffer (vm, b);
875
876 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
877 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
878 advertise_wnd = tcp_window_to_advertise (tc, TCP_STATE_ESTABLISHED);
879 flags = TCP_FLAG_RST;
880 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
881 tc->rcv_nxt, tcp_hdr_opts_len, flags,
882 advertise_wnd);
883 opts_write_len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
884 ASSERT (opts_write_len == tc->snd_opts_len);
885 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Florin Corasf1762d62017-09-24 19:43:08 -0400886 if (tc->c_is_ip4)
887 {
888 ip4_header_t *ih4;
889 ih4 = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip.ip4,
890 &tc->c_rmt_ip.ip4, IP_PROTOCOL_TCP, 0);
891 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
892 }
893 else
894 {
895 int bogus = ~0;
896 ip6_header_t *ih6;
897 ih6 = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip.ip6,
898 &tc->c_rmt_ip.ip6, IP_PROTOCOL_TCP);
899 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
900 ASSERT (!bogus);
901 }
Florin Corasbe72ae62018-11-01 11:23:03 -0700902 tcp_enqueue_to_ip_lookup_now (wrk, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Corasf1762d62017-09-24 19:43:08 -0400903 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc);
Florin Coras1f152cd2017-08-18 19:28:03 -0700904}
905
Florin Coras0dbd5172018-06-25 16:19:34 -0700906static void
Florin Corasbe72ae62018-11-01 11:23:03 -0700907tcp_push_ip_hdr (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
908 vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500909{
910 tcp_header_t *th = vlib_buffer_get_current (b);
Florin Corasbe72ae62018-11-01 11:23:03 -0700911 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500912 if (tc->c_is_ip4)
913 {
914 ip4_header_t *ih;
Dave Barach2c25a622017-06-26 11:35:07 -0400915 ih = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip4,
Florin Corasfdbc3822017-07-27 00:34:12 -0700916 &tc->c_rmt_ip4, IP_PROTOCOL_TCP, 1);
Dave Barach2c25a622017-06-26 11:35:07 -0400917 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih);
Dave Barach68b0fb02017-02-28 15:15:56 -0500918 }
919 else
920 {
921 ip6_header_t *ih;
922 int bogus = ~0;
923
Dave Barach2c25a622017-06-26 11:35:07 -0400924 ih = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip6,
Dave Barach68b0fb02017-02-28 15:15:56 -0500925 &tc->c_rmt_ip6, IP_PROTOCOL_TCP);
Dave Barach2c25a622017-06-26 11:35:07 -0400926 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih, &bogus);
Dave Barach68b0fb02017-02-28 15:15:56 -0500927 ASSERT (!bogus);
928 }
929}
930
931/**
932 * Send SYN
933 *
934 * Builds a SYN packet for a half-open connection and sends it to ipx_lookup.
935 * The packet is not forwarded through tcpx_output to avoid doing lookups
936 * in the half_open pool.
937 */
938void
939tcp_send_syn (tcp_connection_t * tc)
940{
Florin Corasbe72ae62018-11-01 11:23:03 -0700941 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
942 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500943 vlib_buffer_t *b;
944 u32 bi;
Dave Barach68b0fb02017-02-28 15:15:56 -0500945
Florin Corasf988e692017-11-27 04:34:14 -0500946 /*
947 * Setup retransmit and establish timers before requesting buffer
948 * such that we can return if we've ran out.
949 */
Florin Coras85a3ddd2018-12-24 16:54:34 -0800950 tcp_timer_set (tc, TCP_TIMER_ESTABLISH_AO, TCP_ESTABLISH_TIME);
Florin Corasf988e692017-11-27 04:34:14 -0500951 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN,
952 tc->rto * TCP_TO_TIMER_TICK);
953
Florin Corasbdf7fd62019-01-31 17:31:01 -0800954 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coras222e1f412019-02-16 20:47:32 -0800955 {
956 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN, 1);
957 return;
958 }
Florin Coras66b11312017-07-31 17:18:03 -0700959
Dave Barach68b0fb02017-02-28 15:15:56 -0500960 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -0700961 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400962 tcp_make_syn (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500963
964 /* Measure RTT with this */
Florin Corasefefc6b2018-11-07 12:49:19 -0800965 tc->rtt_ts = tcp_time_now_us (vlib_num_workers ()? 1 : 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500966 tc->rtt_seq = tc->snd_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500967 tc->rto_boff = 0;
968
Florin Corasbe72ae62018-11-01 11:23:03 -0700969 tcp_push_ip_hdr (wrk, tc, b);
970 tcp_enqueue_to_ip_lookup (wrk, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Coras6534b7a2017-07-18 05:38:03 -0400971 TCP_EVT_DBG (TCP_EVT_SYN_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500972}
973
Florin Coras7ac053b2018-11-05 15:57:21 -0800974void
975tcp_send_synack (tcp_connection_t * tc)
976{
977 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
978 vlib_main_t *vm = wrk->vm;
979 vlib_buffer_t *b;
980 u32 bi;
981
Florin Coras222e1f412019-02-16 20:47:32 -0800982 tcp_retransmit_timer_force_update (tc);
983
Florin Corasbdf7fd62019-01-31 17:31:01 -0800984 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coras222e1f412019-02-16 20:47:32 -0800985 {
986 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT, 1);
987 return;
988 }
Florin Coras7ac053b2018-11-05 15:57:21 -0800989
Florin Corasdf084782018-12-06 17:41:10 -0800990 tc->rtt_ts = tcp_time_now_us (tc->c_thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -0800991 b = vlib_get_buffer (vm, bi);
Florin Corasbdf7fd62019-01-31 17:31:01 -0800992 tcp_init_buffer (vm, b);
Florin Coras7ac053b2018-11-05 15:57:21 -0800993 tcp_make_synack (tc, b);
994 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras222e1f412019-02-16 20:47:32 -0800995 TCP_EVT_DBG (TCP_EVT_SYNACK_SENT, tc);
Florin Coras7ac053b2018-11-05 15:57:21 -0800996}
997
Florin Coras66b11312017-07-31 17:18:03 -0700998/**
999 * Flush tx frame populated by retransmits and timer pops
1000 */
1001void
Florin Corasbe72ae62018-11-01 11:23:03 -07001002tcp_flush_frame_to_output (tcp_worker_ctx_t * wrk, u8 is_ip4)
Florin Coras66b11312017-07-31 17:18:03 -07001003{
Florin Corasbe72ae62018-11-01 11:23:03 -07001004 if (wrk->tx_frames[!is_ip4])
Florin Coras66b11312017-07-31 17:18:03 -07001005 {
1006 u32 next_index;
1007 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
Florin Corasbe72ae62018-11-01 11:23:03 -07001008 vlib_put_frame_to_node (wrk->vm, next_index, wrk->tx_frames[!is_ip4]);
1009 wrk->tx_frames[!is_ip4] = 0;
Florin Coras66b11312017-07-31 17:18:03 -07001010 }
1011}
1012
1013/**
Florin Coras9d063042017-09-14 03:08:00 -04001014 * Flush ip lookup tx frames populated by timer pops
1015 */
Florin Coras0dbd5172018-06-25 16:19:34 -07001016static void
Florin Corasbe72ae62018-11-01 11:23:03 -07001017tcp_flush_frame_to_ip_lookup (tcp_worker_ctx_t * wrk, u8 is_ip4)
Florin Coras9d063042017-09-14 03:08:00 -04001018{
Florin Corasbe72ae62018-11-01 11:23:03 -07001019 if (wrk->ip_lookup_tx_frames[!is_ip4])
Florin Coras9d063042017-09-14 03:08:00 -04001020 {
1021 u32 next_index;
1022 next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index;
Florin Corasbe72ae62018-11-01 11:23:03 -07001023 vlib_put_frame_to_node (wrk->vm, next_index,
1024 wrk->ip_lookup_tx_frames[!is_ip4]);
1025 wrk->ip_lookup_tx_frames[!is_ip4] = 0;
Florin Coras9d063042017-09-14 03:08:00 -04001026 }
1027}
1028
1029/**
1030 * Flush v4 and v6 tcp and ip-lookup tx frames for thread index
Florin Coras66b11312017-07-31 17:18:03 -07001031 */
1032void
Florin Corasbe72ae62018-11-01 11:23:03 -07001033tcp_flush_frames_to_output (tcp_worker_ctx_t * wrk)
Florin Coras66b11312017-07-31 17:18:03 -07001034{
Florin Corasbe72ae62018-11-01 11:23:03 -07001035 tcp_flush_frame_to_output (wrk, 1);
1036 tcp_flush_frame_to_output (wrk, 0);
1037 tcp_flush_frame_to_ip_lookup (wrk, 1);
1038 tcp_flush_frame_to_ip_lookup (wrk, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001039}
1040
1041/**
1042 * Send FIN
1043 */
1044void
1045tcp_send_fin (tcp_connection_t * tc)
1046{
Florin Corasbe72ae62018-11-01 11:23:03 -07001047 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
1048 vlib_main_t *vm = wrk->vm;
Florin Coras9d063042017-09-14 03:08:00 -04001049 vlib_buffer_t *b;
1050 u32 bi;
1051 u8 fin_snt = 0;
1052
Florin Corasc977e7c2018-10-16 20:30:31 -07001053 fin_snt = tc->flags & TCP_CONN_FINSNT;
1054 if (fin_snt)
1055 tc->snd_nxt = tc->snd_una;
1056
Florin Corasbdf7fd62019-01-31 17:31:01 -08001057 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coraseb97e5f2018-10-15 21:35:42 -07001058 {
1059 /* Out of buffers so program fin retransmit ASAP */
1060 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT, 1);
Florin Coras85a3ddd2018-12-24 16:54:34 -08001061 if (fin_snt)
1062 tc->snd_nxt = tc->snd_una_max;
Florin Coras222e1f412019-02-16 20:47:32 -08001063 else
1064 /* Make sure retransmit retries a fin not data */
1065 tc->flags |= TCP_CONN_FINSNT;
Florin Coras85a3ddd2018-12-24 16:54:34 -08001066 return;
Florin Coraseb97e5f2018-10-15 21:35:42 -07001067 }
1068
Florin Corasc977e7c2018-10-16 20:30:31 -07001069 tcp_retransmit_timer_force_update (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001070 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001071 tcp_init_buffer (vm, b);
Florin Corasd79b41e2017-03-04 05:37:52 -08001072 tcp_make_fin (tc, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001073 tcp_enqueue_to_output_now (wrk, b, bi, tc->c_is_ip4);
Florin Corasc977e7c2018-10-16 20:30:31 -07001074 TCP_EVT_DBG (TCP_EVT_FIN_SENT, tc);
1075
Florin Coras9d063042017-09-14 03:08:00 -04001076 if (!fin_snt)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001077 {
1078 tc->flags |= TCP_CONN_FINSNT;
1079 tc->flags &= ~TCP_CONN_FINPNDG;
Florin Coras9d063042017-09-14 03:08:00 -04001080 /* Account for the FIN */
1081 tc->snd_una_max += 1;
1082 tc->snd_nxt = tc->snd_una_max;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001083 }
Florin Corasa096f2d2017-09-28 23:49:42 -04001084 else
1085 {
1086 tc->snd_nxt = tc->snd_una_max;
1087 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001088}
1089
1090always_inline u8
Florin Corasb2215d62017-08-01 16:56:58 -07001091tcp_make_state_flags (tcp_connection_t * tc, tcp_state_t next_state)
Dave Barach68b0fb02017-02-28 15:15:56 -05001092{
1093 switch (next_state)
1094 {
1095 case TCP_STATE_ESTABLISHED:
Florin Coras00dfe542018-06-11 13:15:11 -07001096 case TCP_STATE_CLOSE_WAIT:
Florin Coras54ddf432018-12-21 13:54:09 -08001097 case TCP_STATE_TIME_WAIT:
1098 case TCP_STATE_FIN_WAIT_2:
Florin Coras7e74bf32019-03-06 16:51:58 -08001099 case TCP_STATE_CLOSING:
1100 case TCP_STATE_LAST_ACK:
1101 case TCP_STATE_FIN_WAIT_1:
Dave Barach68b0fb02017-02-28 15:15:56 -05001102 return TCP_FLAG_ACK;
1103 case TCP_STATE_SYN_RCVD:
1104 return TCP_FLAG_SYN | TCP_FLAG_ACK;
1105 case TCP_STATE_SYN_SENT:
1106 return TCP_FLAG_SYN;
Dave Barach68b0fb02017-02-28 15:15:56 -05001107 default:
1108 clib_warning ("Shouldn't be here!");
1109 }
1110 return 0;
1111}
1112
1113/**
1114 * Push TCP header and update connection variables
1115 */
Florin Coras0dbd5172018-06-25 16:19:34 -07001116always_inline void
Dave Barach68b0fb02017-02-28 15:15:56 -05001117tcp_push_hdr_i (tcp_connection_t * tc, vlib_buffer_t * b,
Florin Corasb26743d2018-06-26 09:31:04 -07001118 tcp_state_t next_state, u8 compute_opts, u8 maybe_burst)
Dave Barach68b0fb02017-02-28 15:15:56 -05001119{
1120 u32 advertise_wnd, data_len;
Florin Corasb26743d2018-06-26 09:31:04 -07001121 u8 tcp_hdr_opts_len, flags;
1122 tcp_main_t *tm = &tcp_main;
Dave Barach68b0fb02017-02-28 15:15:56 -05001123 tcp_header_t *th;
1124
Florin Corasb26743d2018-06-26 09:31:04 -07001125 data_len = b->current_length;
1126 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_NEXT_PRESENT))
1127 data_len += b->total_length_not_including_first_buffer;
1128
Dave Barach68b0fb02017-02-28 15:15:56 -05001129 vnet_buffer (b)->tcp.flags = 0;
Florin Corasb26743d2018-06-26 09:31:04 -07001130 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05001131
Florin Corasc8343412017-05-04 14:25:50 -07001132 if (compute_opts)
1133 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1134
Florin Corasc8343412017-05-04 14:25:50 -07001135 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
Florin Corasb26743d2018-06-26 09:31:04 -07001136
1137 if (maybe_burst)
1138 advertise_wnd = tc->rcv_wnd >> tc->rcv_wscale;
1139 else
1140 advertise_wnd = tcp_window_to_advertise (tc, next_state);
1141
Florin Corasb2215d62017-08-01 16:56:58 -07001142 flags = tcp_make_state_flags (tc, next_state);
Florin Coras42ceddb2018-12-12 10:56:01 -08001143 if (PREDICT_FALSE (tc->flags & TCP_CONN_PSH_PENDING))
1144 {
1145 if (seq_geq (tc->psh_seq, tc->snd_nxt)
1146 && seq_lt (tc->psh_seq, tc->snd_nxt + data_len))
1147 flags |= TCP_FLAG_PSH;
1148 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001149 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
1150 tc->rcv_nxt, tcp_hdr_opts_len, flags,
1151 advertise_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -05001152
Florin Corasb26743d2018-06-26 09:31:04 -07001153 if (maybe_burst)
1154 {
Dave Barach178cf492018-11-13 16:34:13 -05001155 clib_memcpy_fast ((u8 *) (th + 1),
1156 tm->wrk_ctx[tc->c_thread_index].cached_opts,
1157 tc->snd_opts_len);
Florin Corasb26743d2018-06-26 09:31:04 -07001158 }
1159 else
1160 {
1161 u8 len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
1162 ASSERT (len == tc->snd_opts_len);
1163 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001164
Florin Coras93992a92017-05-24 18:03:56 -07001165 /*
1166 * Update connection variables
1167 */
1168
Dave Barach68b0fb02017-02-28 15:15:56 -05001169 tc->snd_nxt += data_len;
Florin Corasc28764f2017-04-26 00:08:42 -07001170 tc->rcv_las = tc->rcv_nxt;
Florin Coras3e350af2017-03-30 02:54:28 -07001171
Florin Corase69f4952017-03-07 10:06:24 -08001172 TCP_EVT_DBG (TCP_EVT_PKTIZE, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001173}
1174
Florin Coras0dbd5172018-06-25 16:19:34 -07001175u32
Florin Coras14ed6df2019-03-06 21:13:42 -08001176tcp_session_push_header (transport_connection_t * tconn, vlib_buffer_t * b)
Florin Coras0dbd5172018-06-25 16:19:34 -07001177{
Florin Coras14ed6df2019-03-06 21:13:42 -08001178 tcp_connection_t *tc = (tcp_connection_t *) tconn;
Florin Corasb26743d2018-06-26 09:31:04 -07001179 tcp_push_hdr_i (tc, b, TCP_STATE_ESTABLISHED, /* compute opts */ 0,
1180 /* burst */ 1);
Florin Coras0dbd5172018-06-25 16:19:34 -07001181 tc->snd_una_max = tc->snd_nxt;
Florin Corasb11175d2018-11-09 14:34:08 -08001182 ASSERT (seq_leq (tc->snd_una_max, tc->snd_una + tc->snd_wnd));
Florin Coras0dbd5172018-06-25 16:19:34 -07001183 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
1184 /* If not tracking an ACK, start tracking */
1185 if (tc->rtt_ts == 0 && !tcp_in_cong_recovery (tc))
1186 {
Florin Corasd67f1122018-05-21 17:47:40 -07001187 tc->rtt_ts = tcp_time_now_us (tc->c_thread_index);
Florin Coras0dbd5172018-06-25 16:19:34 -07001188 tc->rtt_seq = tc->snd_nxt;
1189 }
1190 if (PREDICT_FALSE (!tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)))
1191 {
1192 tcp_retransmit_timer_set (tc);
1193 tc->rto_boff = 0;
1194 }
1195 tcp_trajectory_add_start (b, 3);
1196 return 0;
1197}
1198
Dave Barach68b0fb02017-02-28 15:15:56 -05001199void
Florin Coras6792ec02017-03-13 03:49:51 -07001200tcp_send_ack (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001201{
Florin Corasbe72ae62018-11-01 11:23:03 -07001202 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
1203 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -05001204 vlib_buffer_t *b;
1205 u32 bi;
1206
Florin Corasbdf7fd62019-01-31 17:31:01 -08001207 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coras222e1f412019-02-16 20:47:32 -08001208 {
1209 tcp_update_rcv_wnd (tc);
1210 return;
1211 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001212 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001213 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001214 tcp_make_ack (tc, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001215 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001216}
1217
Florin Coras7ac053b2018-11-05 15:57:21 -08001218void
1219tcp_program_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1220{
1221 if (!(tc->flags & TCP_CONN_SNDACK))
1222 {
1223 vec_add1 (wrk->pending_acks, tc->c_c_index);
1224 tc->flags |= TCP_CONN_SNDACK;
1225 }
1226}
1227
1228void
1229tcp_program_dupack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1230{
1231 if (!(tc->flags & TCP_CONN_SNDACK))
1232 {
1233 vec_add1 (wrk->pending_acks, tc->c_c_index);
1234 tc->flags |= TCP_CONN_SNDACK;
1235 }
1236 if (tc->pending_dupacks < 255)
1237 tc->pending_dupacks += 1;
1238}
1239
1240void
1241tcp_send_acks (tcp_worker_ctx_t * wrk)
1242{
1243 u32 thread_index, *pending_acks;
1244 tcp_connection_t *tc;
1245 int i, j, n_acks;
1246
1247 if (!vec_len (wrk->pending_acks))
1248 return;
1249
1250 thread_index = wrk->vm->thread_index;
1251 pending_acks = wrk->pending_acks;
1252 for (i = 0; i < vec_len (pending_acks); i++)
1253 {
1254 tc = tcp_connection_get (pending_acks[i], thread_index);
1255 tc->flags &= ~TCP_CONN_SNDACK;
Florin Corase5b17912019-02-21 16:46:24 -08001256 if (!tc->pending_dupacks)
1257 {
1258 tcp_send_ack (tc);
1259 continue;
1260 }
1261
Florin Coras7ac053b2018-11-05 15:57:21 -08001262 /* If we're supposed to send dupacks but have no ooo data
1263 * send only one ack */
Florin Corase5b17912019-02-21 16:46:24 -08001264 if (!vec_len (tc->snd_sacks))
1265 {
1266 tcp_send_ack (tc);
1267 continue;
1268 }
1269
1270 /* Start with first sack block */
1271 tc->snd_sack_pos = 0;
1272
1273 /* Generate enough dupacks to cover all sack blocks. Do not generate
1274 * more sacks than the number of packets received. But do generate at
1275 * least 3, i.e., the number needed to signal congestion, if needed. */
1276 n_acks = vec_len (tc->snd_sacks) / TCP_OPTS_MAX_SACK_BLOCKS;
1277 n_acks = clib_min (n_acks, tc->pending_dupacks);
1278 n_acks = clib_max (n_acks, clib_min (tc->pending_dupacks, 3));
Florin Coras7ac053b2018-11-05 15:57:21 -08001279 for (j = 0; j < n_acks; j++)
1280 tcp_send_ack (tc);
Florin Corase5b17912019-02-21 16:46:24 -08001281
Florin Coras7ac053b2018-11-05 15:57:21 -08001282 tc->pending_dupacks = 0;
Florin Corase5b17912019-02-21 16:46:24 -08001283 tc->snd_sack_pos = 0;
Florin Coras7ac053b2018-11-05 15:57:21 -08001284 }
1285 _vec_len (wrk->pending_acks) = 0;
1286}
1287
Florin Corasb2215d62017-08-01 16:56:58 -07001288/**
1289 * Delayed ack timer handler
1290 *
1291 * Sends delayed ACK when timer expires
1292 */
Florin Coras6792ec02017-03-13 03:49:51 -07001293void
1294tcp_timer_delack_handler (u32 index)
1295{
Damjan Marion586afd72017-04-05 19:18:20 +02001296 u32 thread_index = vlib_get_thread_index ();
Florin Coras6792ec02017-03-13 03:49:51 -07001297 tcp_connection_t *tc;
1298
1299 tc = tcp_connection_get (index, thread_index);
1300 tc->timers[TCP_TIMER_DELACK] = TCP_TIMER_HANDLE_INVALID;
Florin Coras6792ec02017-03-13 03:49:51 -07001301 tcp_send_ack (tc);
1302}
1303
Florin Corasb2215d62017-08-01 16:56:58 -07001304/**
Florin Coras36ee9f12018-11-02 12:52:10 -07001305 * Allocate a new buffer and build a new tcp segment
Dave Barach68b0fb02017-02-28 15:15:56 -05001306 *
Florin Coras36ee9f12018-11-02 12:52:10 -07001307 * @param wrk tcp worker
1308 * @param tc connection for which the segment will be allocated
1309 * @param offset offset of the first byte in the tx fifo
1310 * @param max_deq_byte segment size
1311 * @param[out] b pointer to buffer allocated
1312 *
1313 * @return the number of bytes in the segment or 0 if buffer cannot be
1314 * allocated or no data available
Florin Coras93992a92017-05-24 18:03:56 -07001315 */
Florin Coras36ee9f12018-11-02 12:52:10 -07001316static int
1317tcp_prepare_segment (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1318 u32 offset, u32 max_deq_bytes, vlib_buffer_t ** b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001319{
Florin Corasbe72ae62018-11-01 11:23:03 -07001320 u32 bytes_per_buffer = vnet_get_tcp_main ()->bytes_per_buffer;
1321 vlib_main_t *vm = wrk->vm;
Florin Corasbdf7fd62019-01-31 17:31:01 -08001322 u32 bi, seg_size;
Florin Coras93992a92017-05-24 18:03:56 -07001323 int n_bytes = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001324 u8 *data;
Dave Barach68b0fb02017-02-28 15:15:56 -05001325
Florin Coras1ee78302019-02-05 15:51:15 -08001326 seg_size = max_deq_bytes + TRANSPORT_MAX_HDRS_LEN;
Florin Coras1f152cd2017-08-18 19:28:03 -07001327
Florin Corasb2215d62017-08-01 16:56:58 -07001328 /*
1329 * Prepare options
1330 */
Florin Corasc8343412017-05-04 14:25:50 -07001331 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1332
Florin Corasb2215d62017-08-01 16:56:58 -07001333 /*
1334 * Allocate and fill in buffer(s)
1335 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001336
Florin Corasb2215d62017-08-01 16:56:58 -07001337 /* Easy case, buffer size greater than mss */
Florin Corasbe72ae62018-11-01 11:23:03 -07001338 if (PREDICT_TRUE (seg_size <= bytes_per_buffer))
Florin Corasb2215d62017-08-01 16:56:58 -07001339 {
Florin Corasbdf7fd62019-01-31 17:31:01 -08001340 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coras24793e32018-05-09 11:34:25 -07001341 return 0;
1342 *b = vlib_get_buffer (vm, bi);
1343 data = tcp_init_buffer (vm, *b);
Florin Coras31c99552019-03-01 13:00:58 -08001344 n_bytes = session_tx_fifo_peek_bytes (&tc->connection, data, offset,
1345 max_deq_bytes);
Florin Corasb2215d62017-08-01 16:56:58 -07001346 ASSERT (n_bytes == max_deq_bytes);
1347 b[0]->current_length = n_bytes;
Florin Corasb26743d2018-06-26 09:31:04 -07001348 tcp_push_hdr_i (tc, *b, tc->state, /* compute opts */ 0, /* burst */ 0);
Florin Coras208daa12018-07-02 01:30:51 -07001349 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
1350 tc->snd_una_max = tc->snd_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001351 }
1352 /* Split mss into multiple buffers */
1353 else
1354 {
Florin Corasbdf7fd62019-01-31 17:31:01 -08001355 u32 chain_bi = ~0, n_bufs_per_seg, n_bufs;
1356 u16 n_peeked, len_to_deq;
Florin Corasb2215d62017-08-01 16:56:58 -07001357 vlib_buffer_t *chain_b, *prev_b;
Florin Corasb2215d62017-08-01 16:56:58 -07001358 int i;
1359
Florin Corasb2215d62017-08-01 16:56:58 -07001360 /* Make sure we have enough buffers */
Florin Corasbe72ae62018-11-01 11:23:03 -07001361 n_bufs_per_seg = ceil ((double) seg_size / bytes_per_buffer);
Florin Corasbdf7fd62019-01-31 17:31:01 -08001362 vec_validate_aligned (wrk->tx_buffers, n_bufs_per_seg - 1,
1363 CLIB_CACHE_LINE_BYTES);
1364 n_bufs = vlib_buffer_alloc (vm, wrk->tx_buffers, n_bufs_per_seg);
1365 if (PREDICT_FALSE (n_bufs != n_bufs_per_seg))
Florin Corasb2215d62017-08-01 16:56:58 -07001366 {
Florin Corasbdf7fd62019-01-31 17:31:01 -08001367 if (n_bufs)
1368 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
1369 return 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001370 }
1371
Florin Corasbdf7fd62019-01-31 17:31:01 -08001372 *b = vlib_get_buffer (vm, wrk->tx_buffers[--n_bufs]);
Florin Coras24793e32018-05-09 11:34:25 -07001373 data = tcp_init_buffer (vm, *b);
Florin Coras31c99552019-03-01 13:00:58 -08001374 n_bytes = session_tx_fifo_peek_bytes (&tc->connection, data, offset,
1375 bytes_per_buffer -
1376 TRANSPORT_MAX_HDRS_LEN);
Florin Corasb2215d62017-08-01 16:56:58 -07001377 b[0]->current_length = n_bytes;
1378 b[0]->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
1379 b[0]->total_length_not_including_first_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001380 max_deq_bytes -= n_bytes;
1381
1382 chain_b = *b;
1383 for (i = 1; i < n_bufs_per_seg; i++)
1384 {
1385 prev_b = chain_b;
Florin Corasbe72ae62018-11-01 11:23:03 -07001386 len_to_deq = clib_min (max_deq_bytes, bytes_per_buffer);
Florin Corasbdf7fd62019-01-31 17:31:01 -08001387 chain_bi = wrk->tx_buffers[--n_bufs];
Florin Corasb2215d62017-08-01 16:56:58 -07001388 chain_b = vlib_get_buffer (vm, chain_bi);
1389 chain_b->current_data = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001390 data = vlib_buffer_get_current (chain_b);
Florin Coras31c99552019-03-01 13:00:58 -08001391 n_peeked = session_tx_fifo_peek_bytes (&tc->connection, data,
1392 offset + n_bytes,
1393 len_to_deq);
Florin Corasb2215d62017-08-01 16:56:58 -07001394 ASSERT (n_peeked == len_to_deq);
Florin Coras1f152cd2017-08-18 19:28:03 -07001395 n_bytes += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001396 chain_b->current_length = n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001397 chain_b->next_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001398
1399 /* update previous buffer */
1400 prev_b->next_buffer = chain_bi;
1401 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
1402
Florin Corasb2215d62017-08-01 16:56:58 -07001403 max_deq_bytes -= n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001404 b[0]->total_length_not_including_first_buffer += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001405 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001406
Florin Corasb26743d2018-06-26 09:31:04 -07001407 tcp_push_hdr_i (tc, *b, tc->state, /* compute opts */ 0, /* burst */ 0);
Florin Coras208daa12018-07-02 01:30:51 -07001408 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
1409 tc->snd_una_max = tc->snd_nxt;
Florin Corasbdf7fd62019-01-31 17:31:01 -08001410
1411 if (PREDICT_FALSE (n_bufs))
1412 {
1413 clib_warning ("not all buffers consumed");
1414 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
1415 }
Florin Corasb2215d62017-08-01 16:56:58 -07001416 }
1417
Florin Coras93992a92017-05-24 18:03:56 -07001418 ASSERT (n_bytes > 0);
Florin Corasbe72ae62018-11-01 11:23:03 -07001419 ASSERT (((*b)->current_data + (*b)->current_length) <= bytes_per_buffer);
Florin Corasbb292f42017-05-19 09:49:19 -07001420
Florin Coras36ee9f12018-11-02 12:52:10 -07001421 return n_bytes;
1422}
1423
1424/**
1425 * Build a retransmit segment
1426 *
1427 * @return the number of bytes in the segment or 0 if there's nothing to
1428 * retransmit
1429 */
1430static u32
1431tcp_prepare_retransmit_segment (tcp_worker_ctx_t * wrk,
1432 tcp_connection_t * tc, u32 offset,
1433 u32 max_deq_bytes, vlib_buffer_t ** b)
1434{
1435 u32 start, available_bytes;
1436 int n_bytes = 0;
1437
1438 ASSERT (tc->state >= TCP_STATE_ESTABLISHED);
1439 ASSERT (max_deq_bytes != 0);
1440
1441 /*
1442 * Make sure we can retransmit something
1443 */
Florin Coras31c99552019-03-01 13:00:58 -08001444 available_bytes = transport_max_tx_dequeue (&tc->connection);
Florin Coras36ee9f12018-11-02 12:52:10 -07001445 ASSERT (available_bytes >= offset);
1446 available_bytes -= offset;
1447 if (!available_bytes)
1448 return 0;
1449
1450 max_deq_bytes = clib_min (tc->snd_mss, max_deq_bytes);
1451 max_deq_bytes = clib_min (available_bytes, max_deq_bytes);
1452
1453 /* Start is beyond snd_congestion */
1454 start = tc->snd_una + offset;
1455 if (seq_geq (start, tc->snd_congestion))
1456 goto done;
1457
1458 /* Don't overshoot snd_congestion */
1459 if (seq_gt (start + max_deq_bytes, tc->snd_congestion))
1460 {
1461 max_deq_bytes = tc->snd_congestion - start;
1462 if (max_deq_bytes == 0)
1463 goto done;
1464 }
1465
1466 n_bytes = tcp_prepare_segment (wrk, tc, offset, max_deq_bytes, b);
1467 if (!n_bytes)
1468 return 0;
1469
Florin Coras93992a92017-05-24 18:03:56 -07001470 if (tcp_in_fastrecovery (tc))
1471 tc->snd_rxt_bytes += n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001472
Florin Coras6792ec02017-03-13 03:49:51 -07001473done:
1474 TCP_EVT_DBG (TCP_EVT_CC_RTX, tc, offset, n_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001475 return n_bytes;
1476}
1477
Florin Coras6792ec02017-03-13 03:49:51 -07001478/**
1479 * Reset congestion control, switch cwnd to loss window and try again.
1480 */
1481static void
Florin Corasca1c8f32018-05-23 21:01:30 -07001482tcp_rxt_timeout_cc (tcp_connection_t * tc)
Florin Coras6792ec02017-03-13 03:49:51 -07001483{
Florin Corasca1c8f32018-05-23 21:01:30 -07001484 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 6);
Florin Coras93992a92017-05-24 18:03:56 -07001485 tc->prev_ssthresh = tc->ssthresh;
1486 tc->prev_cwnd = tc->cwnd;
1487
Florin Coras6792ec02017-03-13 03:49:51 -07001488 /* Cleanly recover cc (also clears up fast retransmit) */
1489 if (tcp_in_fastrecovery (tc))
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001490 {
1491 /* TODO be less aggressive about this */
1492 scoreboard_clear (&tc->sack_sb);
1493 tcp_cc_fastrecovery_exit (tc);
1494 }
Florin Coras222e1f412019-02-16 20:47:32 -08001495 else
1496 tc->rcv_dupacks = 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001497
1498 /* Start again from the beginning */
Florin Corasd2aab832018-05-22 11:39:59 -07001499 tc->cc_algo->congestion (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001500 tc->cwnd = tcp_loss_wnd (tc);
1501 tc->snd_congestion = tc->snd_una_max;
Florin Corasf1762d62017-09-24 19:43:08 -04001502 tc->rtt_ts = 0;
Florin Corasd2aab832018-05-22 11:39:59 -07001503 tc->cwnd_acc_bytes = 0;
Florin Corasc44a5582018-11-01 16:30:54 -07001504 tcp_connection_tx_pacer_reset (tc, tc->cwnd, 2 * tc->snd_mss);
Florin Coras3af90fc2017-05-03 21:09:42 -07001505 tcp_recovery_on (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001506}
1507
Florin Coras0dbd5172018-06-25 16:19:34 -07001508static inline void
Dave Barach68b0fb02017-02-28 15:15:56 -05001509tcp_timer_retransmit_handler_i (u32 index, u8 is_syn)
1510{
Damjan Marion586afd72017-04-05 19:18:20 +02001511 u32 thread_index = vlib_get_thread_index ();
Florin Corasbe72ae62018-11-01 11:23:03 -07001512 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
1513 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -05001514 tcp_connection_t *tc;
Florin Corasb2215d62017-08-01 16:56:58 -07001515 vlib_buffer_t *b = 0;
Florin Coras3af90fc2017-05-03 21:09:42 -07001516 u32 bi, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001517
1518 if (is_syn)
1519 {
1520 tc = tcp_half_open_connection_get (index);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001521 /* Note: the connection may have transitioned to ESTABLISHED... */
Florin Coras311e11b2018-12-05 11:19:14 -08001522 if (PREDICT_FALSE (tc == 0 || tc->state != TCP_STATE_SYN_SENT))
Dave Barachb7f1faa2017-08-29 11:43:37 -04001523 return;
Florin Coras68810622017-07-24 17:40:28 -07001524 tc->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05001525 }
1526 else
1527 {
1528 tc = tcp_connection_get (index, thread_index);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001529 /* Note: the connection may have been closed and pool_put */
Florin Coras85a3ddd2018-12-24 16:54:34 -08001530 if (PREDICT_FALSE (tc == 0 || tc->state == TCP_STATE_SYN_SENT))
Dave Barachb7f1faa2017-08-29 11:43:37 -04001531 return;
Florin Coras68810622017-07-24 17:40:28 -07001532 tc->timers[TCP_TIMER_RETRANSMIT] = TCP_TIMER_HANDLE_INVALID;
Florin Coras85a3ddd2018-12-24 16:54:34 -08001533 /* Wait-close and retransmit could pop at the same time */
1534 if (tc->state == TCP_STATE_CLOSED)
1535 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001536 }
1537
Florin Corase04c2992017-03-01 08:17:34 -08001538 if (tc->state >= TCP_STATE_ESTABLISHED)
Dave Barach68b0fb02017-02-28 15:15:56 -05001539 {
Florin Corase55a6d72018-10-31 23:09:22 -07001540 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2);
1541
Florin Coras93992a92017-05-24 18:03:56 -07001542 /* Lost FIN, retransmit and return */
Florin Coras222e1f412019-02-16 20:47:32 -08001543 if (tc->flags & TCP_CONN_FINSNT)
Florin Coras93992a92017-05-24 18:03:56 -07001544 {
1545 tcp_send_fin (tc);
Florin Corasf988e692017-11-27 04:34:14 -05001546 tc->rto_boff += 1;
1547 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
Florin Coras93992a92017-05-24 18:03:56 -07001548 return;
1549 }
1550
Florin Coras3ec66b02018-08-23 16:27:05 -07001551 /* Shouldn't be here. This condition is tricky because it has to take
1552 * into account boff > 0 due to persist timeout. */
Florin Coras887b7ba2018-06-09 06:49:59 -07001553 if ((tc->rto_boff == 0 && tc->snd_una == tc->snd_una_max)
Florin Coras3ec66b02018-08-23 16:27:05 -07001554 || (tc->rto_boff > 0 && seq_geq (tc->snd_una, tc->snd_congestion)
1555 && !tcp_flight_size (tc)))
Florin Corasa096f2d2017-09-28 23:49:42 -04001556 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001557 ASSERT (!tcp_in_recovery (tc));
1558 tc->rto_boff = 0;
Florin Corasa096f2d2017-09-28 23:49:42 -04001559 return;
1560 }
1561
Florin Coras3ec66b02018-08-23 16:27:05 -07001562 /* We're not in recovery so make sure rto_boff is 0. Can be non 0 due
1563 * to persist timer timeout */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001564 if (!tcp_in_recovery (tc) && tc->rto_boff > 0)
1565 {
1566 tc->rto_boff = 0;
1567 tcp_update_rto (tc);
1568 }
1569
1570 /* Increment RTO backoff (also equal to number of retries) and go back
1571 * to first un-acked byte */
1572 tc->rto_boff += 1;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001573
Florin Coras6792ec02017-03-13 03:49:51 -07001574 /* First retransmit timeout */
1575 if (tc->rto_boff == 1)
Florin Corasca1c8f32018-05-23 21:01:30 -07001576 tcp_rxt_timeout_cc (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001577 else
1578 scoreboard_clear (&tc->sack_sb);
Dave Barach68b0fb02017-02-28 15:15:56 -05001579
Florin Coras3ec66b02018-08-23 16:27:05 -07001580 /* If we've sent beyond snd_congestion, update it */
1581 if (seq_gt (tc->snd_una_max, tc->snd_congestion))
1582 tc->snd_congestion = tc->snd_una_max;
1583
Florin Corasd2aab832018-05-22 11:39:59 -07001584 tc->snd_una_max = tc->snd_nxt = tc->snd_una;
Dave Barach68b0fb02017-02-28 15:15:56 -05001585 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1586
Florin Coras3ec66b02018-08-23 16:27:05 -07001587 /* Send one segment. Note that n_bytes may be zero due to buffer
1588 * shortfall */
Florin Corasbe72ae62018-11-01 11:23:03 -07001589 n_bytes = tcp_prepare_retransmit_segment (wrk, tc, 0, tc->snd_mss, &b);
Florin Coras85a3ddd2018-12-24 16:54:34 -08001590 if (!n_bytes)
Florin Corase04c2992017-03-01 08:17:34 -08001591 {
Florin Coras222e1f412019-02-16 20:47:32 -08001592 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT, 1);
Florin Corase04c2992017-03-01 08:17:34 -08001593 return;
1594 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001595
Dave Barachb7f1faa2017-08-29 11:43:37 -04001596 bi = vlib_get_buffer_index (vm, b);
1597
Florin Coras93992a92017-05-24 18:03:56 -07001598 /* For first retransmit, record timestamp (Eifel detection RFC3522) */
1599 if (tc->rto_boff == 1)
Florin Corasbe72ae62018-11-01 11:23:03 -07001600 tc->snd_rxt_ts = tcp_time_now_w_thread (tc->c_thread_index);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001601
Florin Corasbe72ae62018-11-01 11:23:03 -07001602 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras3ec66b02018-08-23 16:27:05 -07001603 tcp_retransmit_timer_force_update (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001604 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001605 /* Retransmit for SYN */
1606 else if (tc->state == TCP_STATE_SYN_SENT)
Florin Coras93992a92017-05-24 18:03:56 -07001607 {
Florin Coras68810622017-07-24 17:40:28 -07001608 /* Half-open connection actually moved to established but we were
1609 * waiting for syn retransmit to pop to call cleanup from the right
1610 * thread. */
1611 if (tc->flags & TCP_CONN_HALF_OPEN_DONE)
1612 {
Florin Coras68810622017-07-24 17:40:28 -07001613 if (tcp_half_open_connection_cleanup (tc))
Florin Coras85a3ddd2018-12-24 16:54:34 -08001614 TCP_DBG ("could not remove half-open connection");
Florin Coras68810622017-07-24 17:40:28 -07001615 return;
1616 }
1617
Florin Corase55a6d72018-10-31 23:09:22 -07001618 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2);
1619
Dave Barach68b0fb02017-02-28 15:15:56 -05001620 /* Try without increasing RTO a number of times. If this fails,
1621 * start growing RTO exponentially */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001622 tc->rto_boff += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001623 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1624 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1625
Florin Corasf988e692017-11-27 04:34:14 -05001626 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN,
1627 tc->rto * TCP_TO_TIMER_TICK);
1628
Florin Corasbdf7fd62019-01-31 17:31:01 -08001629 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coras222e1f412019-02-16 20:47:32 -08001630 {
1631 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN, 1);
1632 return;
1633 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001634
Florin Corasb2215d62017-08-01 16:56:58 -07001635 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001636 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001637 tcp_make_syn (tc, b);
Florin Corase04c2992017-03-01 08:17:34 -08001638
Dave Barach2c25a622017-06-26 11:35:07 -04001639 tc->rtt_ts = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001640 TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 0);
1641
1642 /* This goes straight to ipx_lookup. Retransmit timer set already */
Florin Corasbe72ae62018-11-01 11:23:03 -07001643 tcp_push_ip_hdr (wrk, tc, b);
1644 tcp_enqueue_to_ip_lookup (wrk, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001645 }
1646 /* Retransmit SYN-ACK */
1647 else if (tc->state == TCP_STATE_SYN_RCVD)
1648 {
Florin Corase55a6d72018-10-31 23:09:22 -07001649 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2);
1650
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001651 tc->rto_boff += 1;
Florin Coras9d063042017-09-14 03:08:00 -04001652 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1653 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001654 tc->rtt_ts = 0;
1655
Florin Coras222e1f412019-02-16 20:47:32 -08001656 tcp_retransmit_timer_force_update (tc);
1657
Florin Corasbdf7fd62019-01-31 17:31:01 -08001658 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Corasf988e692017-11-27 04:34:14 -05001659 {
Florin Coras222e1f412019-02-16 20:47:32 -08001660 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT, 1);
Florin Corasf988e692017-11-27 04:34:14 -05001661 return;
1662 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001663
1664 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001665 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001666 tcp_make_synack (tc, b);
1667 TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 1);
1668
1669 /* Retransmit timer already updated, just enqueue to output */
Florin Corasbe72ae62018-11-01 11:23:03 -07001670 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001671 }
Florin Coras93992a92017-05-24 18:03:56 -07001672 else
1673 {
1674 ASSERT (tc->state == TCP_STATE_CLOSED);
Florin Coras93992a92017-05-24 18:03:56 -07001675 return;
1676 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001677}
1678
1679void
1680tcp_timer_retransmit_handler (u32 index)
1681{
1682 tcp_timer_retransmit_handler_i (index, 0);
1683}
1684
1685void
1686tcp_timer_retransmit_syn_handler (u32 index)
1687{
1688 tcp_timer_retransmit_handler_i (index, 1);
1689}
1690
1691/**
Florin Coras3e350af2017-03-30 02:54:28 -07001692 * Got 0 snd_wnd from peer, try to do something about it.
1693 *
1694 */
1695void
1696tcp_timer_persist_handler (u32 index)
1697{
Damjan Marion586afd72017-04-05 19:18:20 +02001698 u32 thread_index = vlib_get_thread_index ();
Florin Corasbe72ae62018-11-01 11:23:03 -07001699 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
1700 u32 bi, max_snd_bytes, available_bytes, offset;
1701 tcp_main_t *tm = vnet_get_tcp_main ();
1702 vlib_main_t *vm = wrk->vm;
Florin Coras3e350af2017-03-30 02:54:28 -07001703 tcp_connection_t *tc;
1704 vlib_buffer_t *b;
Florin Coras93992a92017-05-24 18:03:56 -07001705 int n_bytes = 0;
Florin Coras1f152cd2017-08-18 19:28:03 -07001706 u8 *data;
Florin Coras3e350af2017-03-30 02:54:28 -07001707
Florin Corasdb84e572017-05-09 18:54:52 -07001708 tc = tcp_connection_get_if_valid (index, thread_index);
Florin Corasdb84e572017-05-09 18:54:52 -07001709 if (!tc)
1710 return;
Florin Coras3e350af2017-03-30 02:54:28 -07001711
1712 /* Make sure timer handle is set to invalid */
1713 tc->timers[TCP_TIMER_PERSIST] = TCP_TIMER_HANDLE_INVALID;
1714
1715 /* Problem already solved or worse */
Florin Coras7e74bf32019-03-06 16:51:58 -08001716 if (tc->state == TCP_STATE_CLOSED || tc->snd_wnd > tc->snd_mss
1717 || (tc->flags & TCP_CONN_FINSNT))
Florin Coras3e350af2017-03-30 02:54:28 -07001718 return;
1719
Florin Coras31c99552019-03-01 13:00:58 -08001720 available_bytes = transport_max_tx_dequeue (&tc->connection);
Florin Coras50958952017-08-29 14:50:13 -07001721 offset = tc->snd_una_max - tc->snd_una;
1722
1723 /* Reprogram persist if no new bytes available to send. We may have data
1724 * next time */
1725 if (!available_bytes)
1726 {
1727 tcp_persist_timer_set (tc);
1728 return;
1729 }
1730
1731 if (available_bytes <= offset)
1732 {
1733 ASSERT (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT));
1734 return;
1735 }
1736
Florin Coras3e350af2017-03-30 02:54:28 -07001737 /* Increment RTO backoff */
1738 tc->rto_boff += 1;
1739 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1740
Florin Corasb2215d62017-08-01 16:56:58 -07001741 /*
1742 * Try to force the first unsent segment (or buffer)
1743 */
Florin Corasbdf7fd62019-01-31 17:31:01 -08001744 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coras3ec66b02018-08-23 16:27:05 -07001745 {
1746 tcp_persist_timer_set (tc);
1747 return;
1748 }
Florin Coras3e350af2017-03-30 02:54:28 -07001749 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001750 data = tcp_init_buffer (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001751
Florin Coras1f152cd2017-08-18 19:28:03 -07001752 tcp_validate_txf_size (tc, offset);
Florin Corasc8343412017-05-04 14:25:50 -07001753 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
Florin Coras7e74bf32019-03-06 16:51:58 -08001754 max_snd_bytes = clib_min (tc->snd_mss,
1755 tm->bytes_per_buffer - TRANSPORT_MAX_HDRS_LEN);
1756 n_bytes = session_tx_fifo_peek_bytes (&tc->connection, data, offset,
1757 max_snd_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001758 b->current_length = n_bytes;
Florin Coras84275e92017-09-26 12:30:40 -04001759 ASSERT (n_bytes != 0 && (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)
1760 || tc->snd_nxt == tc->snd_una_max
1761 || tc->rto_boff > 1));
Florin Coras93992a92017-05-24 18:03:56 -07001762
Florin Corasb26743d2018-06-26 09:31:04 -07001763 tcp_push_hdr_i (tc, b, tc->state, /* compute opts */ 0, /* burst */ 0);
Florin Coras8b20bf52018-06-14 14:55:50 -07001764 tc->snd_una_max = tc->snd_nxt;
1765 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
Florin Corasbe72ae62018-11-01 11:23:03 -07001766 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras3e350af2017-03-30 02:54:28 -07001767
Florin Coras1f152cd2017-08-18 19:28:03 -07001768 /* Just sent new data, enable retransmit */
1769 tcp_retransmit_timer_update (tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001770}
1771
1772/**
Florin Coras6792ec02017-03-13 03:49:51 -07001773 * Retransmit first unacked segment
1774 */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001775int
Florin Corasbe72ae62018-11-01 11:23:03 -07001776tcp_retransmit_first_unacked (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001777{
Florin Corasb2215d62017-08-01 16:56:58 -07001778 u32 bi, old_snd_nxt, n_bytes;
Florin Corasbe72ae62018-11-01 11:23:03 -07001779 vlib_main_t *vm = wrk->vm;
1780 vlib_buffer_t *b;
Dave Barach68b0fb02017-02-28 15:15:56 -05001781
Florin Coras93992a92017-05-24 18:03:56 -07001782 old_snd_nxt = tc->snd_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001783 tc->snd_nxt = tc->snd_una;
1784
Florin Corase55a6d72018-10-31 23:09:22 -07001785 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 1);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001786
Florin Corasbe72ae62018-11-01 11:23:03 -07001787 n_bytes = tcp_prepare_retransmit_segment (wrk, tc, 0, tc->snd_mss, &b);
Florin Corasb2215d62017-08-01 16:56:58 -07001788 if (!n_bytes)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001789 return -1;
1790
Florin Corasb2215d62017-08-01 16:56:58 -07001791 bi = vlib_get_buffer_index (vm, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001792 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras93992a92017-05-24 18:03:56 -07001793 tc->snd_nxt = old_snd_nxt;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001794
1795 return 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001796}
1797
Florin Coras36ee9f12018-11-02 12:52:10 -07001798static int
1799tcp_fast_retransmit_unsent (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1800 u32 burst_size)
1801{
1802 u32 offset, n_segs = 0, n_written, bi;
1803 vlib_main_t *vm = wrk->vm;
1804 vlib_buffer_t *b = 0;
1805
1806 tc->snd_nxt = tc->snd_una_max;
1807 offset = tc->snd_una_max - tc->snd_una;
1808 while (n_segs < burst_size)
1809 {
1810 n_written = tcp_prepare_segment (wrk, tc, offset, tc->snd_mss, &b);
1811 if (!n_written)
1812 goto done;
1813
1814 bi = vlib_get_buffer_index (vm, b);
1815 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
1816 offset += n_written;
1817 n_segs += 1;
1818 }
1819
1820done:
1821 return n_segs;
1822}
1823
1824#define scoreboard_rescue_rxt_valid(_sb, _tc) \
1825 (seq_geq (_sb->rescue_rxt, _tc->snd_una) \
1826 && seq_leq (_sb->rescue_rxt, _tc->snd_congestion))
1827
Florin Coras6792ec02017-03-13 03:49:51 -07001828/**
Florin Coras93992a92017-05-24 18:03:56 -07001829 * Do fast retransmit with SACKs
Florin Coras6792ec02017-03-13 03:49:51 -07001830 */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001831int
Florin Corasbe72ae62018-11-01 11:23:03 -07001832tcp_fast_retransmit_sack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1833 u32 burst_size)
Dave Barach68b0fb02017-02-28 15:15:56 -05001834{
Florin Coras36ee9f12018-11-02 12:52:10 -07001835 u32 n_written = 0, offset, max_bytes, n_segs = 0, n_segs_now;
Florin Coras93992a92017-05-24 18:03:56 -07001836 sack_scoreboard_hole_t *hole;
Florin Coras36ee9f12018-11-02 12:52:10 -07001837 vlib_main_t *vm = wrk->vm;
1838 vlib_buffer_t *b = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001839 sack_scoreboard_t *sb;
1840 u32 bi, old_snd_nxt;
1841 int snd_space;
Florin Coras36ee9f12018-11-02 12:52:10 -07001842 u32 max_deq;
Florin Coras93992a92017-05-24 18:03:56 -07001843 u8 snd_limited = 0, can_rescue = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001844
1845 ASSERT (tcp_in_fastrecovery (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -05001846
Florin Corasca1c8f32018-05-23 21:01:30 -07001847 snd_space = tcp_available_cc_snd_space (tc);
Florin Corasca1c8f32018-05-23 21:01:30 -07001848 if (snd_space < tc->snd_mss)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001849 {
Florin Corasbe72ae62018-11-01 11:23:03 -07001850 tcp_program_fastretransmit (wrk, tc);
Florin Coras36ee9f12018-11-02 12:52:10 -07001851 return 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001852 }
Florin Corasca1c8f32018-05-23 21:01:30 -07001853
1854 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0);
Florin Coras36ee9f12018-11-02 12:52:10 -07001855 old_snd_nxt = tc->snd_nxt;
1856 sb = &tc->sack_sb;
1857 hole = scoreboard_get_hole (sb, sb->cur_rxt_hole);
1858
Florin Coras31c99552019-03-01 13:00:58 -08001859 max_deq = transport_max_tx_dequeue (&tc->connection);
Florin Coras36ee9f12018-11-02 12:52:10 -07001860 max_deq -= tc->snd_una_max - tc->snd_una;
1861
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001862 while (snd_space > 0 && n_segs < burst_size)
Florin Coras93992a92017-05-24 18:03:56 -07001863 {
Florin Coras36ee9f12018-11-02 12:52:10 -07001864 hole = scoreboard_next_rxt_hole (sb, hole, max_deq, &can_rescue,
1865 &snd_limited);
Florin Coras93992a92017-05-24 18:03:56 -07001866 if (!hole)
1867 {
Florin Coras36ee9f12018-11-02 12:52:10 -07001868 if (max_deq)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001869 {
Florin Coras36ee9f12018-11-02 12:52:10 -07001870 snd_space = clib_min (max_deq, snd_space);
1871 burst_size = clib_min (burst_size - n_segs,
1872 snd_space / tc->snd_mss);
1873 n_segs_now = tcp_fast_retransmit_unsent (wrk, tc, burst_size);
1874 if (max_deq > n_segs_now * tc->snd_mss)
1875 tcp_program_fastretransmit (wrk, tc);
1876 n_segs += n_segs_now;
1877 goto done;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001878 }
Florin Coras93992a92017-05-24 18:03:56 -07001879
Florin Coras36ee9f12018-11-02 12:52:10 -07001880 if (!can_rescue || scoreboard_rescue_rxt_valid (sb, tc))
1881 break;
1882
Florin Coras93992a92017-05-24 18:03:56 -07001883 /* If rescue rxt undefined or less than snd_una then one segment of
1884 * up to SMSS octets that MUST include the highest outstanding
1885 * unSACKed sequence number SHOULD be returned, and RescueRxt set to
1886 * RecoveryPoint. HighRxt MUST NOT be updated.
1887 */
Florin Coras1f152cd2017-08-18 19:28:03 -07001888 max_bytes = clib_min (tc->snd_mss,
1889 tc->snd_congestion - tc->snd_una);
1890 max_bytes = clib_min (max_bytes, snd_space);
Florin Coras93992a92017-05-24 18:03:56 -07001891 offset = tc->snd_congestion - tc->snd_una - max_bytes;
1892 sb->rescue_rxt = tc->snd_congestion;
1893 tc->snd_nxt = tc->snd_una + offset;
Florin Corasbe72ae62018-11-01 11:23:03 -07001894 n_written = tcp_prepare_retransmit_segment (wrk, tc, offset,
1895 max_bytes, &b);
Florin Coras24793e32018-05-09 11:34:25 -07001896 if (!n_written)
1897 goto done;
1898
Florin Corasb2215d62017-08-01 16:56:58 -07001899 bi = vlib_get_buffer_index (vm, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001900 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001901 n_segs += 1;
Florin Coras93992a92017-05-24 18:03:56 -07001902 break;
1903 }
1904
Florin Coras1f152cd2017-08-18 19:28:03 -07001905 max_bytes = clib_min (hole->end - sb->high_rxt, snd_space);
1906 max_bytes = snd_limited ? clib_min (max_bytes, tc->snd_mss) : max_bytes;
1907 if (max_bytes == 0)
1908 break;
Florin Coras36ee9f12018-11-02 12:52:10 -07001909
Florin Coras93992a92017-05-24 18:03:56 -07001910 offset = sb->high_rxt - tc->snd_una;
Florin Coras1f152cd2017-08-18 19:28:03 -07001911 tc->snd_nxt = sb->high_rxt;
Florin Corasbe72ae62018-11-01 11:23:03 -07001912 n_written = tcp_prepare_retransmit_segment (wrk, tc, offset, max_bytes,
1913 &b);
Florin Coras36ee9f12018-11-02 12:52:10 -07001914 ASSERT (n_written <= snd_space);
Florin Coras93992a92017-05-24 18:03:56 -07001915
1916 /* Nothing left to retransmit */
1917 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001918 break;
Florin Coras93992a92017-05-24 18:03:56 -07001919
Florin Corasb2215d62017-08-01 16:56:58 -07001920 bi = vlib_get_buffer_index (vm, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001921 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras36ee9f12018-11-02 12:52:10 -07001922
1923 sb->high_rxt += n_written;
Florin Coras93992a92017-05-24 18:03:56 -07001924 snd_space -= n_written;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001925 n_segs += 1;
Florin Coras93992a92017-05-24 18:03:56 -07001926 }
1927
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001928 if (hole)
Florin Corasbe72ae62018-11-01 11:23:03 -07001929 tcp_program_fastretransmit (wrk, tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001930
Florin Coras24793e32018-05-09 11:34:25 -07001931done:
Florin Coras93992a92017-05-24 18:03:56 -07001932 /* If window allows, send 1 SMSS of new data */
1933 tc->snd_nxt = old_snd_nxt;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001934 return n_segs;
Florin Coras93992a92017-05-24 18:03:56 -07001935}
1936
1937/**
1938 * Fast retransmit without SACK info
1939 */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001940int
Florin Corasbe72ae62018-11-01 11:23:03 -07001941tcp_fast_retransmit_no_sack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1942 u32 burst_size)
Florin Coras93992a92017-05-24 18:03:56 -07001943{
Florin Coras36ee9f12018-11-02 12:52:10 -07001944 u32 n_written = 0, offset = 0, bi, old_snd_nxt, max_deq, n_segs_now;
Florin Corasbe72ae62018-11-01 11:23:03 -07001945 vlib_main_t *vm = wrk->vm;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001946 int snd_space, n_segs = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001947 vlib_buffer_t *b;
1948
1949 ASSERT (tcp_in_fastrecovery (tc));
1950 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0);
Florin Coras93992a92017-05-24 18:03:56 -07001951 old_snd_nxt = tc->snd_nxt;
Florin Coras6792ec02017-03-13 03:49:51 -07001952
Florin Coras36ee9f12018-11-02 12:52:10 -07001953 if (!tcp_fastrecovery_first (tc))
1954 goto send_unsent;
1955
1956 /* RFC 6582: [If a partial ack], retransmit the first unacknowledged
1957 * segment. */
1958 snd_space = tc->sack_sb.last_bytes_delivered;
1959 tc->snd_nxt = tc->snd_una;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001960 while (snd_space > 0 && n_segs < burst_size)
Dave Barach68b0fb02017-02-28 15:15:56 -05001961 {
Florin Coras36ee9f12018-11-02 12:52:10 -07001962 n_written = tcp_prepare_retransmit_segment (wrk, tc, offset,
1963 tc->snd_mss, &b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001964
1965 /* Nothing left to retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001966 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001967 break;
Dave Barach68b0fb02017-02-28 15:15:56 -05001968
Florin Corasb2215d62017-08-01 16:56:58 -07001969 bi = vlib_get_buffer_index (vm, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001970 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras6792ec02017-03-13 03:49:51 -07001971 snd_space -= n_written;
Florin Coras36ee9f12018-11-02 12:52:10 -07001972 offset += n_written;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001973 n_segs += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001974 }
1975
Florin Coras36ee9f12018-11-02 12:52:10 -07001976 if (n_segs == burst_size)
1977 goto done;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001978
Florin Coras36ee9f12018-11-02 12:52:10 -07001979send_unsent:
1980
1981 /* RFC 6582: Send a new segment if permitted by the new value of cwnd. */
1982 snd_space = tcp_available_cc_snd_space (tc);
Florin Coras9ece3c02018-11-05 11:06:53 -08001983 if (snd_space < tc->snd_mss || tc->snd_mss == 0)
Florin Coras36ee9f12018-11-02 12:52:10 -07001984 goto done;
1985
Florin Coras31c99552019-03-01 13:00:58 -08001986 max_deq = transport_max_tx_dequeue (&tc->connection);
Florin Coras36ee9f12018-11-02 12:52:10 -07001987 max_deq -= tc->snd_una_max - tc->snd_una;
1988 if (max_deq)
1989 {
1990 snd_space = clib_min (max_deq, snd_space);
1991 burst_size = clib_min (burst_size - n_segs, snd_space / tc->snd_mss);
1992 n_segs_now = tcp_fast_retransmit_unsent (wrk, tc, burst_size);
1993 if (max_deq > n_segs_now * tc->snd_mss)
1994 tcp_program_fastretransmit (wrk, tc);
1995 n_segs += n_segs_now;
1996 }
1997
1998 /* Restore snd_nxt */
Florin Coras93992a92017-05-24 18:03:56 -07001999 tc->snd_nxt = old_snd_nxt;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07002000
Florin Coras36ee9f12018-11-02 12:52:10 -07002001done:
2002 tcp_fastrecovery_first_off (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07002003 return n_segs;
Florin Coras93992a92017-05-24 18:03:56 -07002004}
2005
2006/**
2007 * Do fast retransmit
2008 */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07002009int
Florin Corasbe72ae62018-11-01 11:23:03 -07002010tcp_fast_retransmit (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
2011 u32 burst_size)
Florin Coras93992a92017-05-24 18:03:56 -07002012{
Florin Corasca1c8f32018-05-23 21:01:30 -07002013 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Corasbe72ae62018-11-01 11:23:03 -07002014 return tcp_fast_retransmit_sack (wrk, tc, burst_size);
Florin Coras93992a92017-05-24 18:03:56 -07002015 else
Florin Corasbe72ae62018-11-01 11:23:03 -07002016 return tcp_fast_retransmit_no_sack (wrk, tc, burst_size);
Dave Barach68b0fb02017-02-28 15:15:56 -05002017}
Filip Tehlare275bed2019-03-06 00:06:56 -08002018#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05002019
Florin Corasf9d05682018-04-26 08:26:52 -07002020static void
2021tcp_output_handle_link_local (tcp_connection_t * tc0, vlib_buffer_t * b0,
Florin Coras8b20bf52018-06-14 14:55:50 -07002022 u16 * next0, u32 * error0)
Florin Corasf9d05682018-04-26 08:26:52 -07002023{
2024 ip_adjacency_t *adj;
2025 adj_index_t ai;
2026
Florin Coras1c8ff632018-05-17 13:28:34 -07002027 /* Not thread safe but as long as the connection exists the adj should
2028 * not be removed */
Florin Corasf9d05682018-04-26 08:26:52 -07002029 ai = adj_nbr_find (FIB_PROTOCOL_IP6, VNET_LINK_IP6, &tc0->c_rmt_ip,
2030 tc0->sw_if_index);
2031 if (ai == ADJ_INDEX_INVALID)
2032 {
Florin Corasf9d05682018-04-26 08:26:52 -07002033 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
2034 *next0 = TCP_OUTPUT_NEXT_DROP;
2035 *error0 = TCP_ERROR_LINK_LOCAL_RW;
2036 return;
2037 }
2038
2039 adj = adj_get (ai);
Florin Coras1c8ff632018-05-17 13:28:34 -07002040 if (PREDICT_TRUE (adj->lookup_next_index == IP_LOOKUP_NEXT_REWRITE))
Florin Corasf9d05682018-04-26 08:26:52 -07002041 *next0 = TCP_OUTPUT_NEXT_IP_REWRITE;
2042 else if (adj->lookup_next_index == IP_LOOKUP_NEXT_ARP)
2043 *next0 = TCP_OUTPUT_NEXT_IP_ARP;
Florin Coras1c8ff632018-05-17 13:28:34 -07002044 else
2045 {
2046 *next0 = TCP_OUTPUT_NEXT_DROP;
2047 *error0 = TCP_ERROR_LINK_LOCAL_RW;
2048 }
2049 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = ai;
Florin Corasf9d05682018-04-26 08:26:52 -07002050}
2051
Florin Coras8b20bf52018-06-14 14:55:50 -07002052static void
2053tcp46_output_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2054 u32 * to_next, u32 n_bufs)
Dave Barach68b0fb02017-02-28 15:15:56 -05002055{
Florin Coras8b20bf52018-06-14 14:55:50 -07002056 u32 n_trace = vlib_get_trace_count (vm, node);
2057 tcp_connection_t *tc;
2058 tcp_tx_trace_t *t;
2059 vlib_buffer_t *b;
2060 tcp_header_t *th;
2061 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05002062
Florin Coras8b20bf52018-06-14 14:55:50 -07002063 for (i = 0; i < clib_min (n_trace, n_bufs); i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05002064 {
Florin Coras8b20bf52018-06-14 14:55:50 -07002065 b = vlib_get_buffer (vm, to_next[i]);
2066 th = vlib_buffer_get_current (b);
2067 tc = tcp_connection_get (vnet_buffer (b)->tcp.connection_index,
2068 vm->thread_index);
2069 t = vlib_add_trace (vm, node, b, sizeof (*t));
Dave Barach178cf492018-11-13 16:34:13 -05002070 clib_memcpy_fast (&t->tcp_header, th, sizeof (t->tcp_header));
2071 clib_memcpy_fast (&t->tcp_connection, tc, sizeof (t->tcp_connection));
Florin Coras8b20bf52018-06-14 14:55:50 -07002072 }
2073}
Dave Barach68b0fb02017-02-28 15:15:56 -05002074
Florin Coras0dbd5172018-06-25 16:19:34 -07002075always_inline void
Florin Coras8b20bf52018-06-14 14:55:50 -07002076tcp_output_push_ip (vlib_main_t * vm, vlib_buffer_t * b0,
2077 tcp_connection_t * tc0, u8 is_ip4)
2078{
2079 tcp_header_t *th0 = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002080
Florin Coras8b20bf52018-06-14 14:55:50 -07002081 th0 = vlib_buffer_get_current (b0);
2082 TCP_EVT_DBG (TCP_EVT_OUTPUT, tc0, th0->flags, b0->current_length);
2083 if (is_ip4)
2084 {
2085 vlib_buffer_push_ip4 (vm, b0, &tc0->c_lcl_ip4, &tc0->c_rmt_ip4,
2086 IP_PROTOCOL_TCP, 1);
2087 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
2088 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
2089 th0->checksum = 0;
2090 }
2091 else
2092 {
2093 ip6_header_t *ih0;
2094 ih0 = vlib_buffer_push_ip6 (vm, b0, &tc0->c_lcl_ip6,
2095 &tc0->c_rmt_ip6, IP_PROTOCOL_TCP);
2096 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
2097 vnet_buffer (b0)->l3_hdr_offset = (u8 *) ih0 - b0->data;
2098 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
2099 th0->checksum = 0;
2100 }
2101}
Dave Barach68b0fb02017-02-28 15:15:56 -05002102
Florin Coras0dbd5172018-06-25 16:19:34 -07002103always_inline void
Florin Coras8b20bf52018-06-14 14:55:50 -07002104tcp_output_handle_packet (tcp_connection_t * tc0, vlib_buffer_t * b0,
2105 u32 * error0, u16 * next0, u8 is_ip4)
2106{
Florin Coras81a13db2018-03-16 08:48:31 -07002107
Florin Coras8b20bf52018-06-14 14:55:50 -07002108 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
2109 {
2110 *error0 = TCP_ERROR_INVALID_CONNECTION;
2111 *next0 = TCP_OUTPUT_NEXT_DROP;
2112 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05002113 }
2114
Florin Coras8b20bf52018-06-14 14:55:50 -07002115 vnet_buffer (b0)->sw_if_index[VLIB_TX] = tc0->c_fib_index;
2116 vnet_buffer (b0)->sw_if_index[VLIB_RX] = 0;
2117
2118 if (!is_ip4)
2119 {
2120 if (PREDICT_FALSE (ip6_address_is_link_local_unicast (&tc0->c_rmt_ip6)))
2121 tcp_output_handle_link_local (tc0, b0, next0, error0);
2122 }
2123
Florin Coras8b20bf52018-06-14 14:55:50 -07002124 if (!TCP_ALWAYS_ACK)
2125 tcp_timer_reset (tc0, TCP_TIMER_DELACK);
2126}
2127
2128always_inline uword
2129tcp46_output_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2130 vlib_frame_t * frame, int is_ip4)
2131{
2132 u32 n_left_from, *from, thread_index = vm->thread_index;
2133 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
2134 u16 nexts[VLIB_FRAME_SIZE], *next;
2135
2136 from = vlib_frame_vector_args (frame);
2137 n_left_from = frame->n_vectors;
Florin Corasbe72ae62018-11-01 11:23:03 -07002138 tcp_set_time_now (tcp_get_worker (thread_index));
Florin Coras8b20bf52018-06-14 14:55:50 -07002139
2140 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
2141 tcp46_output_trace_frame (vm, node, from, n_left_from);
2142
2143 vlib_get_buffers (vm, from, bufs, n_left_from);
2144 b = bufs;
2145 next = nexts;
2146
2147 while (n_left_from >= 4)
2148 {
2149 u32 error0 = TCP_ERROR_PKTS_SENT, error1 = TCP_ERROR_PKTS_SENT;
2150 tcp_connection_t *tc0, *tc1;
2151
2152 {
2153 vlib_prefetch_buffer_header (b[2], STORE);
2154 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
2155
2156 vlib_prefetch_buffer_header (b[3], STORE);
2157 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
2158 }
2159
2160 next[0] = next[1] = TCP_OUTPUT_NEXT_IP_LOOKUP;
2161
2162 tc0 = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index,
2163 thread_index);
2164 tc1 = tcp_connection_get (vnet_buffer (b[1])->tcp.connection_index,
2165 thread_index);
2166
2167 tcp_output_push_ip (vm, b[0], tc0, is_ip4);
2168 tcp_output_push_ip (vm, b[1], tc1, is_ip4);
2169
2170 tcp_output_handle_packet (tc0, b[0], &error0, &next[0], is_ip4);
2171 tcp_output_handle_packet (tc1, b[1], &error1, &next[1], is_ip4);
2172
2173 b += 2;
2174 next += 2;
2175 n_left_from -= 2;
2176 }
2177 while (n_left_from > 0)
2178 {
2179 u32 error0 = TCP_ERROR_PKTS_SENT;
2180 tcp_connection_t *tc0;
2181
2182 if (n_left_from > 1)
2183 {
Florin Coras91ca4622018-06-30 11:27:59 -07002184 vlib_prefetch_buffer_header (b[1], STORE);
2185 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
Florin Coras8b20bf52018-06-14 14:55:50 -07002186 }
2187
2188 next[0] = TCP_OUTPUT_NEXT_IP_LOOKUP;
2189 tc0 = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index,
2190 thread_index);
2191
2192 tcp_output_push_ip (vm, b[0], tc0, is_ip4);
2193 tcp_output_handle_packet (tc0, b[0], &error0, &next[0], is_ip4);
2194
2195 b += 1;
2196 next += 1;
2197 n_left_from -= 1;
2198 }
2199
2200 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
2201 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002202}
2203
Filip Tehlare275bed2019-03-06 00:06:56 -08002204VLIB_NODE_FN (tcp4_output_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
2205 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002206{
2207 return tcp46_output_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2208}
2209
Filip Tehlare275bed2019-03-06 00:06:56 -08002210VLIB_NODE_FN (tcp6_output_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
2211 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002212{
2213 return tcp46_output_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2214}
2215
Florin Corase69f4952017-03-07 10:06:24 -08002216/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002217VLIB_REGISTER_NODE (tcp4_output_node) =
2218{
Dave Barachf970d2f2018-11-26 18:34:33 -05002219 .name = "tcp4-output",
2220 /* Takes a vector of packets. */
2221 .vector_size = sizeof (u32),
2222 .n_errors = TCP_N_ERROR,
Dave Barach7fff3d22018-11-27 16:52:59 -05002223 .protocol_hint = VLIB_NODE_PROTO_HINT_TCP,
Dave Barachf970d2f2018-11-26 18:34:33 -05002224 .error_strings = tcp_error_strings,
2225 .n_next_nodes = TCP_OUTPUT_N_NEXT,
2226 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002227#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
2228 foreach_tcp4_output_next
2229#undef _
Dave Barachf970d2f2018-11-26 18:34:33 -05002230 },
2231 .format_buffer = format_tcp_header,
2232 .format_trace = format_tcp_tx_trace,
Florin Corase69f4952017-03-07 10:06:24 -08002233};
2234/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002235
Florin Corase69f4952017-03-07 10:06:24 -08002236/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002237VLIB_REGISTER_NODE (tcp6_output_node) =
2238{
Florin Corase69f4952017-03-07 10:06:24 -08002239 .name = "tcp6-output",
Dave Barach68b0fb02017-02-28 15:15:56 -05002240 /* Takes a vector of packets. */
Florin Corase69f4952017-03-07 10:06:24 -08002241 .vector_size = sizeof (u32),
2242 .n_errors = TCP_N_ERROR,
Dave Barach7fff3d22018-11-27 16:52:59 -05002243 .protocol_hint = VLIB_NODE_PROTO_HINT_TCP,
Florin Corase69f4952017-03-07 10:06:24 -08002244 .error_strings = tcp_error_strings,
2245 .n_next_nodes = TCP_OUTPUT_N_NEXT,
2246 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002247#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
2248 foreach_tcp6_output_next
2249#undef _
Florin Corase69f4952017-03-07 10:06:24 -08002250 },
2251 .format_buffer = format_tcp_header,
2252 .format_trace = format_tcp_tx_trace,
2253};
2254/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002255
Dave Barach68b0fb02017-02-28 15:15:56 -05002256typedef enum _tcp_reset_next
2257{
2258 TCP_RESET_NEXT_DROP,
2259 TCP_RESET_NEXT_IP_LOOKUP,
2260 TCP_RESET_N_NEXT
2261} tcp_reset_next_t;
2262
2263#define foreach_tcp4_reset_next \
2264 _(DROP, "error-drop") \
2265 _(IP_LOOKUP, "ip4-lookup")
2266
2267#define foreach_tcp6_reset_next \
2268 _(DROP, "error-drop") \
2269 _(IP_LOOKUP, "ip6-lookup")
2270
2271static uword
2272tcp46_send_reset_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2273 vlib_frame_t * from_frame, u8 is_ip4)
2274{
2275 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02002276 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002277
2278 from = vlib_frame_vector_args (from_frame);
2279 n_left_from = from_frame->n_vectors;
2280
2281 next_index = node->cached_next_index;
2282
2283 while (n_left_from > 0)
2284 {
2285 u32 n_left_to_next;
2286
2287 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2288
2289 while (n_left_from > 0 && n_left_to_next > 0)
2290 {
2291 u32 bi0;
2292 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002293 tcp_tx_trace_t *t0;
2294 tcp_header_t *th0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002295 u32 error0 = TCP_ERROR_RST_SENT, next0 = TCP_RESET_NEXT_IP_LOOKUP;
2296
2297 bi0 = from[0];
2298 to_next[0] = bi0;
2299 from += 1;
2300 to_next += 1;
2301 n_left_from -= 1;
2302 n_left_to_next -= 1;
2303
2304 b0 = vlib_get_buffer (vm, bi0);
2305
2306 if (tcp_make_reset_in_place (vm, b0, vnet_buffer (b0)->tcp.flags,
2307 my_thread_index, is_ip4))
2308 {
2309 error0 = TCP_ERROR_LOOKUP_DROPS;
2310 next0 = TCP_RESET_NEXT_DROP;
2311 goto done;
2312 }
2313
2314 /* Prepare to send to IP lookup */
Florin Corasf988e692017-11-27 04:34:14 -05002315 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002316 next0 = TCP_RESET_NEXT_IP_LOOKUP;
2317
2318 done:
Florin Corase69f4952017-03-07 10:06:24 -08002319 b0->error = node->errors[error0];
Damjan Marion213b5aa2017-07-13 21:19:27 +02002320 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002321 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2322 {
Clement Durand6cf260c2017-04-13 13:27:04 +02002323 th0 = vlib_buffer_get_current (b0);
2324 if (is_ip4)
2325 th0 = ip4_next_header ((ip4_header_t *) th0);
2326 else
2327 th0 = ip6_next_header ((ip6_header_t *) th0);
Clement Durand6cf260c2017-04-13 13:27:04 +02002328 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05002329 clib_memcpy_fast (&t0->tcp_header, th0,
2330 sizeof (t0->tcp_header));
Dave Barach68b0fb02017-02-28 15:15:56 -05002331 }
2332
2333 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2334 n_left_to_next, bi0, next0);
2335 }
2336 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2337 }
2338 return from_frame->n_vectors;
2339}
2340
Filip Tehlare275bed2019-03-06 00:06:56 -08002341VLIB_NODE_FN (tcp4_reset_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
2342 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002343{
2344 return tcp46_send_reset_inline (vm, node, from_frame, 1);
2345}
2346
Filip Tehlare275bed2019-03-06 00:06:56 -08002347VLIB_NODE_FN (tcp6_reset_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
2348 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002349{
2350 return tcp46_send_reset_inline (vm, node, from_frame, 0);
2351}
2352
2353/* *INDENT-OFF* */
2354VLIB_REGISTER_NODE (tcp4_reset_node) = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002355 .name = "tcp4-reset",
2356 .vector_size = sizeof (u32),
2357 .n_errors = TCP_N_ERROR,
2358 .error_strings = tcp_error_strings,
2359 .n_next_nodes = TCP_RESET_N_NEXT,
2360 .next_nodes = {
2361#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2362 foreach_tcp4_reset_next
2363#undef _
2364 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002365 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002366};
2367/* *INDENT-ON* */
2368
2369/* *INDENT-OFF* */
2370VLIB_REGISTER_NODE (tcp6_reset_node) = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002371 .name = "tcp6-reset",
2372 .vector_size = sizeof (u32),
2373 .n_errors = TCP_N_ERROR,
2374 .error_strings = tcp_error_strings,
2375 .n_next_nodes = TCP_RESET_N_NEXT,
2376 .next_nodes = {
2377#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2378 foreach_tcp6_reset_next
2379#undef _
2380 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002381 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002382};
2383/* *INDENT-ON* */
2384
Dave Barach68b0fb02017-02-28 15:15:56 -05002385/*
2386 * fd.io coding-style-patch-verification: ON
2387 *
2388 * Local Variables:
2389 * eval: (c-set-style "gnu")
2390 * End:
2391 */