blob: fc4bceb58cbe125e67d247e457ee4a5dd40b1b4d [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vnet/tcp/tcp.h>
17#include <vnet/lisp-cp/packets.h>
Florin Corasb2215d62017-08-01 16:56:58 -070018#include <math.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050019
20vlib_node_registration_t tcp4_output_node;
21vlib_node_registration_t tcp6_output_node;
22
Dave Barach2c25a622017-06-26 11:35:07 -040023typedef enum _tcp_output_next
Dave Barach68b0fb02017-02-28 15:15:56 -050024{
25 TCP_OUTPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -040026 TCP_OUTPUT_NEXT_IP_LOOKUP,
Florin Corasf9d05682018-04-26 08:26:52 -070027 TCP_OUTPUT_NEXT_IP_REWRITE,
28 TCP_OUTPUT_NEXT_IP_ARP,
Dave Barach68b0fb02017-02-28 15:15:56 -050029 TCP_OUTPUT_N_NEXT
30} tcp_output_next_t;
31
32#define foreach_tcp4_output_next \
33 _ (DROP, "error-drop") \
Florin Corasf9d05682018-04-26 08:26:52 -070034 _ (IP_LOOKUP, "ip4-lookup") \
35 _ (IP_REWRITE, "ip4-rewrite") \
36 _ (IP_ARP, "ip4-arp")
Dave Barach68b0fb02017-02-28 15:15:56 -050037
38#define foreach_tcp6_output_next \
39 _ (DROP, "error-drop") \
Florin Corasf9d05682018-04-26 08:26:52 -070040 _ (IP_LOOKUP, "ip6-lookup") \
41 _ (IP_REWRITE, "ip6-rewrite") \
42 _ (IP_ARP, "ip6-discover-neighbor")
Dave Barach68b0fb02017-02-28 15:15:56 -050043
44static char *tcp_error_strings[] = {
45#define tcp_error(n,s) s,
46#include <vnet/tcp/tcp_error.def>
47#undef tcp_error
48};
49
50typedef struct
51{
Clement Durand6cf260c2017-04-13 13:27:04 +020052 tcp_header_t tcp_header;
53 tcp_connection_t tcp_connection;
Dave Barach68b0fb02017-02-28 15:15:56 -050054} tcp_tx_trace_t;
55
Florin Corasf6d68ed2017-05-07 19:12:02 -070056u16 dummy_mtu = 1460;
Dave Barach68b0fb02017-02-28 15:15:56 -050057
58u8 *
59format_tcp_tx_trace (u8 * s, va_list * args)
60{
61 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
62 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Clement Durand6cf260c2017-04-13 13:27:04 +020063 tcp_tx_trace_t *t = va_arg (*args, tcp_tx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +020064 u32 indent = format_get_indent (s);
Dave Barach68b0fb02017-02-28 15:15:56 -050065
Clement Durand6cf260c2017-04-13 13:27:04 +020066 s = format (s, "%U\n%U%U",
67 format_tcp_header, &t->tcp_header, 128,
68 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -070069 format_tcp_connection, &t->tcp_connection, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -050070
71 return s;
72}
73
Dave Barach68b0fb02017-02-28 15:15:56 -050074static u8
Florin Coras4eeeaaf2017-09-05 14:03:37 -040075tcp_window_compute_scale (u32 window)
Dave Barach68b0fb02017-02-28 15:15:56 -050076{
77 u8 wnd_scale = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -040078 while (wnd_scale < TCP_MAX_WND_SCALE && (window >> wnd_scale) > TCP_WND_MAX)
Dave Barach68b0fb02017-02-28 15:15:56 -050079 wnd_scale++;
80 return wnd_scale;
81}
82
83/**
Florin Coras6534b7a2017-07-18 05:38:03 -040084 * Update max segment size we're able to process.
85 *
86 * The value is constrained by our interface's MTU and IP options. It is
87 * also what we advertise to our peer.
88 */
89void
90tcp_update_rcv_mss (tcp_connection_t * tc)
91{
92 /* TODO find our iface MTU */
Florin Corasb2215d62017-08-01 16:56:58 -070093 tc->mss = dummy_mtu - sizeof (tcp_header_t);
Florin Coras6534b7a2017-07-18 05:38:03 -040094}
95
96/**
97 * TCP's initial window
Florin Corase04c2992017-03-01 08:17:34 -080098 */
99always_inline u32
100tcp_initial_wnd_unscaled (tcp_connection_t * tc)
101{
Florin Coras6534b7a2017-07-18 05:38:03 -0400102 /* RFC 6928 recommends the value lower. However at the time our connections
103 * are initialized, fifos may not be allocated. Therefore, advertise the
104 * smallest possible unscaled window size and update once fifos are
105 * assigned to the session.
106 */
107 /*
108 tcp_update_rcv_mss (tc);
109 TCP_IW_N_SEGMENTS * tc->mss;
110 */
111 return TCP_MIN_RX_FIFO_SIZE;
Florin Corase04c2992017-03-01 08:17:34 -0800112}
113
114/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500115 * Compute initial window and scale factor. As per RFC1323, window field in
116 * SYN and SYN-ACK segments is never scaled.
117 */
118u32
119tcp_initial_window_to_advertise (tcp_connection_t * tc)
120{
Florin Corasca031862018-09-24 13:58:05 -0700121 tcp_main_t *tm = &tcp_main;
Florin Corase04c2992017-03-01 08:17:34 -0800122 u32 max_fifo;
Dave Barach68b0fb02017-02-28 15:15:56 -0500123
124 /* Initial wnd for SYN. Fifos are not allocated yet.
Florin Corase04c2992017-03-01 08:17:34 -0800125 * Use some predefined value. For SYN-ACK we still want the
126 * scale to be computed in the same way */
Florin Corasca031862018-09-24 13:58:05 -0700127 max_fifo = tm->max_rx_fifo ? tm->max_rx_fifo : TCP_MAX_RX_FIFO_SIZE;
Dave Barach68b0fb02017-02-28 15:15:56 -0500128
Florin Corase80b5912018-12-12 19:25:43 -0800129 /* Compute rcv wscale only if peer advertised support for it */
130 if (tc->state != TCP_STATE_SYN_RCVD || tcp_opts_wscale (&tc->rcv_opts))
131 tc->rcv_wscale = tcp_window_compute_scale (max_fifo);
132
Florin Corase04c2992017-03-01 08:17:34 -0800133 tc->rcv_wnd = tcp_initial_wnd_unscaled (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500134
135 return clib_min (tc->rcv_wnd, TCP_WND_MAX);
136}
137
Florin Coras0dbd5172018-06-25 16:19:34 -0700138static void
Florin Coras6792ec02017-03-13 03:49:51 -0700139tcp_update_rcv_wnd (tcp_connection_t * tc)
140{
141 i32 observed_wnd;
142 u32 available_space, max_fifo, wnd;
143
Florin Corase04c2992017-03-01 08:17:34 -0800144 /*
145 * Figure out how much space we have available
146 */
Florin Corasd2aab832018-05-22 11:39:59 -0700147 available_space = transport_max_rx_enqueue (&tc->connection);
148 max_fifo = transport_rx_fifo_size (&tc->connection);
Dave Barach68b0fb02017-02-28 15:15:56 -0500149
Florin Coras93992a92017-05-24 18:03:56 -0700150 ASSERT (tc->rcv_opts.mss < max_fifo);
151 if (available_space < tc->rcv_opts.mss && available_space < max_fifo >> 3)
Florin Corase04c2992017-03-01 08:17:34 -0800152 available_space = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500153
Florin Corase04c2992017-03-01 08:17:34 -0800154 /*
155 * Use the above and what we know about what we've previously advertised
156 * to compute the new window
157 */
Florin Coras6792ec02017-03-13 03:49:51 -0700158 observed_wnd = (i32) tc->rcv_wnd - (tc->rcv_nxt - tc->rcv_las);
159 if (observed_wnd < 0)
160 observed_wnd = 0;
Florin Corase04c2992017-03-01 08:17:34 -0800161
162 /* Bad. Thou shalt not shrink */
163 if (available_space < observed_wnd)
164 {
Florin Coras6792ec02017-03-13 03:49:51 -0700165 wnd = observed_wnd;
Florin Coras3e350af2017-03-30 02:54:28 -0700166 TCP_EVT_DBG (TCP_EVT_RCV_WND_SHRUNK, tc, observed_wnd, available_space);
Florin Corase04c2992017-03-01 08:17:34 -0800167 }
Florin Coras6792ec02017-03-13 03:49:51 -0700168 else
Florin Corase04c2992017-03-01 08:17:34 -0800169 {
Florin Coras6792ec02017-03-13 03:49:51 -0700170 wnd = available_space;
Florin Corase04c2992017-03-01 08:17:34 -0800171 }
172
Florin Coras3e350af2017-03-30 02:54:28 -0700173 /* Make sure we have a multiple of rcv_wscale */
174 if (wnd && tc->rcv_wscale)
175 {
176 wnd &= ~(1 << tc->rcv_wscale);
177 if (wnd == 0)
178 wnd = 1 << tc->rcv_wscale;
179 }
Florin Coras6792ec02017-03-13 03:49:51 -0700180
181 tc->rcv_wnd = clib_min (wnd, TCP_WND_MAX << tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500182}
183
184/**
Florin Coras0dbd5172018-06-25 16:19:34 -0700185 * Compute and return window to advertise, scaled as per RFC1323
186 */
187static u32
188tcp_window_to_advertise (tcp_connection_t * tc, tcp_state_t state)
189{
190 if (state < TCP_STATE_ESTABLISHED)
191 return tcp_initial_window_to_advertise (tc);
192
193 tcp_update_rcv_wnd (tc);
194
195 if (tc->rcv_wnd == 0)
196 {
197 tc->flags |= TCP_CONN_SENT_RCV_WND0;
198 }
199 else
200 {
201 tc->flags &= ~TCP_CONN_SENT_RCV_WND0;
202 }
203
204 return tc->rcv_wnd >> tc->rcv_wscale;
205}
206
207/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500208 * Write TCP options to segment.
209 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700210static u32
Dave Barach68b0fb02017-02-28 15:15:56 -0500211tcp_options_write (u8 * data, tcp_options_t * opts)
212{
213 u32 opts_len = 0;
214 u32 buf, seq_len = 4;
215
216 if (tcp_opts_mss (opts))
217 {
218 *data++ = TCP_OPTION_MSS;
219 *data++ = TCP_OPTION_LEN_MSS;
220 buf = clib_host_to_net_u16 (opts->mss);
Dave Barach178cf492018-11-13 16:34:13 -0500221 clib_memcpy_fast (data, &buf, sizeof (opts->mss));
Dave Barach68b0fb02017-02-28 15:15:56 -0500222 data += sizeof (opts->mss);
223 opts_len += TCP_OPTION_LEN_MSS;
224 }
225
226 if (tcp_opts_wscale (opts))
227 {
228 *data++ = TCP_OPTION_WINDOW_SCALE;
229 *data++ = TCP_OPTION_LEN_WINDOW_SCALE;
230 *data++ = opts->wscale;
231 opts_len += TCP_OPTION_LEN_WINDOW_SCALE;
232 }
233
234 if (tcp_opts_sack_permitted (opts))
235 {
236 *data++ = TCP_OPTION_SACK_PERMITTED;
237 *data++ = TCP_OPTION_LEN_SACK_PERMITTED;
238 opts_len += TCP_OPTION_LEN_SACK_PERMITTED;
239 }
240
241 if (tcp_opts_tstamp (opts))
242 {
243 *data++ = TCP_OPTION_TIMESTAMP;
244 *data++ = TCP_OPTION_LEN_TIMESTAMP;
245 buf = clib_host_to_net_u32 (opts->tsval);
Dave Barach178cf492018-11-13 16:34:13 -0500246 clib_memcpy_fast (data, &buf, sizeof (opts->tsval));
Dave Barach68b0fb02017-02-28 15:15:56 -0500247 data += sizeof (opts->tsval);
248 buf = clib_host_to_net_u32 (opts->tsecr);
Dave Barach178cf492018-11-13 16:34:13 -0500249 clib_memcpy_fast (data, &buf, sizeof (opts->tsecr));
Dave Barach68b0fb02017-02-28 15:15:56 -0500250 data += sizeof (opts->tsecr);
251 opts_len += TCP_OPTION_LEN_TIMESTAMP;
252 }
253
254 if (tcp_opts_sack (opts))
255 {
256 int i;
257 u32 n_sack_blocks = clib_min (vec_len (opts->sacks),
258 TCP_OPTS_MAX_SACK_BLOCKS);
259
260 if (n_sack_blocks != 0)
261 {
262 *data++ = TCP_OPTION_SACK_BLOCK;
263 *data++ = 2 + n_sack_blocks * TCP_OPTION_LEN_SACK_BLOCK;
264 for (i = 0; i < n_sack_blocks; i++)
265 {
266 buf = clib_host_to_net_u32 (opts->sacks[i].start);
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 buf = clib_host_to_net_u32 (opts->sacks[i].end);
Dave Barach178cf492018-11-13 16:34:13 -0500270 clib_memcpy_fast (data, &buf, seq_len);
Dave Barach68b0fb02017-02-28 15:15:56 -0500271 data += seq_len;
272 }
273 opts_len += 2 + n_sack_blocks * TCP_OPTION_LEN_SACK_BLOCK;
274 }
275 }
276
277 /* Terminate TCP options */
278 if (opts_len % 4)
279 {
280 *data++ = TCP_OPTION_EOL;
281 opts_len += TCP_OPTION_LEN_EOL;
282 }
283
284 /* Pad with zeroes to a u32 boundary */
285 while (opts_len % 4)
286 {
287 *data++ = TCP_OPTION_NOOP;
288 opts_len += TCP_OPTION_LEN_NOOP;
289 }
290 return opts_len;
291}
292
Florin Coras0dbd5172018-06-25 16:19:34 -0700293static int
Florin Corase04c2992017-03-01 08:17:34 -0800294tcp_make_syn_options (tcp_options_t * opts, u8 wnd_scale)
Dave Barach68b0fb02017-02-28 15:15:56 -0500295{
296 u8 len = 0;
297
298 opts->flags |= TCP_OPTS_FLAG_MSS;
299 opts->mss = dummy_mtu; /*XXX discover that */
300 len += TCP_OPTION_LEN_MSS;
301
302 opts->flags |= TCP_OPTS_FLAG_WSCALE;
Florin Corase04c2992017-03-01 08:17:34 -0800303 opts->wscale = wnd_scale;
Dave Barach68b0fb02017-02-28 15:15:56 -0500304 len += TCP_OPTION_LEN_WINDOW_SCALE;
305
306 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
307 opts->tsval = tcp_time_now ();
308 opts->tsecr = 0;
309 len += TCP_OPTION_LEN_TIMESTAMP;
310
Florin Coras93992a92017-05-24 18:03:56 -0700311 if (TCP_USE_SACKS)
312 {
313 opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
314 len += TCP_OPTION_LEN_SACK_PERMITTED;
315 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500316
317 /* Align to needed boundary */
318 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
319 return len;
320}
321
Florin Coras0dbd5172018-06-25 16:19:34 -0700322static int
Dave Barach68b0fb02017-02-28 15:15:56 -0500323tcp_make_synack_options (tcp_connection_t * tc, tcp_options_t * opts)
324{
325 u8 len = 0;
326
327 opts->flags |= TCP_OPTS_FLAG_MSS;
Florin Corasc8343412017-05-04 14:25:50 -0700328 opts->mss = tc->mss;
Dave Barach68b0fb02017-02-28 15:15:56 -0500329 len += TCP_OPTION_LEN_MSS;
330
Florin Coras93992a92017-05-24 18:03:56 -0700331 if (tcp_opts_wscale (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500332 {
333 opts->flags |= TCP_OPTS_FLAG_WSCALE;
334 opts->wscale = tc->rcv_wscale;
335 len += TCP_OPTION_LEN_WINDOW_SCALE;
336 }
337
Florin Coras93992a92017-05-24 18:03:56 -0700338 if (tcp_opts_tstamp (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500339 {
340 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
341 opts->tsval = tcp_time_now ();
342 opts->tsecr = tc->tsval_recent;
343 len += TCP_OPTION_LEN_TIMESTAMP;
344 }
345
Florin Coras93992a92017-05-24 18:03:56 -0700346 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500347 {
348 opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
349 len += TCP_OPTION_LEN_SACK_PERMITTED;
350 }
351
352 /* Align to needed boundary */
353 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
354 return len;
355}
356
Florin Coras0dbd5172018-06-25 16:19:34 -0700357static int
Dave Barach68b0fb02017-02-28 15:15:56 -0500358tcp_make_established_options (tcp_connection_t * tc, tcp_options_t * opts)
359{
360 u8 len = 0;
361
362 opts->flags = 0;
363
Florin Coras93992a92017-05-24 18:03:56 -0700364 if (tcp_opts_tstamp (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500365 {
366 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
Florin Corasbe72ae62018-11-01 11:23:03 -0700367 opts->tsval = tcp_time_now_w_thread (tc->c_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500368 opts->tsecr = tc->tsval_recent;
369 len += TCP_OPTION_LEN_TIMESTAMP;
370 }
Florin Coras93992a92017-05-24 18:03:56 -0700371 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500372 {
373 if (vec_len (tc->snd_sacks))
374 {
375 opts->flags |= TCP_OPTS_FLAG_SACK;
376 opts->sacks = tc->snd_sacks;
Florin Corasc28764f2017-04-26 00:08:42 -0700377 opts->n_sack_blocks = clib_min (vec_len (tc->snd_sacks),
378 TCP_OPTS_MAX_SACK_BLOCKS);
Dave Barach68b0fb02017-02-28 15:15:56 -0500379 len += 2 + TCP_OPTION_LEN_SACK_BLOCK * opts->n_sack_blocks;
380 }
381 }
382
383 /* Align to needed boundary */
384 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
385 return len;
386}
387
388always_inline int
389tcp_make_options (tcp_connection_t * tc, tcp_options_t * opts,
390 tcp_state_t state)
391{
392 switch (state)
393 {
394 case TCP_STATE_ESTABLISHED:
395 case TCP_STATE_FIN_WAIT_1:
Florin Corasca1c8f32018-05-23 21:01:30 -0700396 case TCP_STATE_CLOSED:
Florin Coras25579b42018-06-06 17:55:02 -0700397 case TCP_STATE_CLOSE_WAIT:
Dave Barach68b0fb02017-02-28 15:15:56 -0500398 return tcp_make_established_options (tc, opts);
399 case TCP_STATE_SYN_RCVD:
400 return tcp_make_synack_options (tc, opts);
401 case TCP_STATE_SYN_SENT:
Florin Corase04c2992017-03-01 08:17:34 -0800402 return tcp_make_syn_options (opts, tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500403 default:
Florin Coras371ca502018-02-21 12:07:41 -0800404 clib_warning ("State not handled! %d", state);
Dave Barach68b0fb02017-02-28 15:15:56 -0500405 return 0;
406 }
407}
408
Florin Corasc8343412017-05-04 14:25:50 -0700409/**
Florin Corasb26743d2018-06-26 09:31:04 -0700410 * Update burst send vars
411 *
412 * - Updates snd_mss to reflect the effective segment size that we can send
413 * by taking into account all TCP options, including SACKs.
414 * - Cache 'on the wire' options for reuse
415 * - Updates receive window which can be reused for a burst.
416 *
417 * This should *only* be called when doing bursts
Florin Corasc8343412017-05-04 14:25:50 -0700418 */
419void
Florin Corasb26743d2018-06-26 09:31:04 -0700420tcp_update_burst_snd_vars (tcp_connection_t * tc)
Florin Corasc8343412017-05-04 14:25:50 -0700421{
Florin Corasb26743d2018-06-26 09:31:04 -0700422 tcp_main_t *tm = &tcp_main;
423
Florin Corasc8343412017-05-04 14:25:50 -0700424 /* Compute options to be used for connection. These may be reused when
425 * sending data or to compute the effective mss (snd_mss) */
Florin Corasb26743d2018-06-26 09:31:04 -0700426 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts,
427 TCP_STATE_ESTABLISHED);
Florin Corasc8343412017-05-04 14:25:50 -0700428
429 /* XXX check if MTU has been updated */
Florin Coras93992a92017-05-24 18:03:56 -0700430 tc->snd_mss = clib_min (tc->mss, tc->rcv_opts.mss) - tc->snd_opts_len;
Florin Corasdb84e572017-05-09 18:54:52 -0700431 ASSERT (tc->snd_mss > 0);
Florin Corasb26743d2018-06-26 09:31:04 -0700432
433 tcp_options_write (tm->wrk_ctx[tc->c_thread_index].cached_opts,
434 &tc->snd_opts);
435
436 tcp_update_rcv_wnd (tc);
Florin Corasc8343412017-05-04 14:25:50 -0700437}
438
439void
440tcp_init_mss (tcp_connection_t * tc)
441{
Florin Corasdb84e572017-05-09 18:54:52 -0700442 u16 default_min_mss = 536;
Florin Corasc8343412017-05-04 14:25:50 -0700443 tcp_update_rcv_mss (tc);
444
445 /* TODO cache mss and consider PMTU discovery */
Florin Coras93992a92017-05-24 18:03:56 -0700446 tc->snd_mss = clib_min (tc->rcv_opts.mss, tc->mss);
Florin Corasc8343412017-05-04 14:25:50 -0700447
Florin Corasdb84e572017-05-09 18:54:52 -0700448 if (tc->snd_mss < 45)
Florin Corasc8343412017-05-04 14:25:50 -0700449 {
Florin Corasdb84e572017-05-09 18:54:52 -0700450 /* Assume that at least the min default mss works */
451 tc->snd_mss = default_min_mss;
Florin Coras93992a92017-05-24 18:03:56 -0700452 tc->rcv_opts.mss = default_min_mss;
Florin Corasc8343412017-05-04 14:25:50 -0700453 }
454
455 /* We should have enough space for 40 bytes of options */
456 ASSERT (tc->snd_mss > 45);
457
458 /* If we use timestamp option, account for it */
Florin Coras93992a92017-05-24 18:03:56 -0700459 if (tcp_opts_tstamp (&tc->rcv_opts))
Florin Corasc8343412017-05-04 14:25:50 -0700460 tc->snd_mss -= TCP_OPTION_LEN_TIMESTAMP;
461}
462
Florin Coras0dbd5172018-06-25 16:19:34 -0700463static int
Florin Corasbe72ae62018-11-01 11:23:03 -0700464tcp_alloc_tx_buffers (tcp_worker_ctx_t * wrk, u16 * n_bufs, u32 wanted)
Florin Corasb2215d62017-08-01 16:56:58 -0700465{
Florin Coras2f9b0c02017-09-11 20:54:15 -0400466 vlib_main_t *vm = vlib_get_main ();
Florin Coras24793e32018-05-09 11:34:25 -0700467 u32 n_alloc;
Dave Barachb7f1faa2017-08-29 11:43:37 -0400468
Florin Coras24793e32018-05-09 11:34:25 -0700469 ASSERT (wanted > *n_bufs);
Florin Corasbe72ae62018-11-01 11:23:03 -0700470 vec_validate_aligned (wrk->tx_buffers, wanted - 1, CLIB_CACHE_LINE_BYTES);
471 n_alloc = vlib_buffer_alloc (vm, &wrk->tx_buffers[*n_bufs],
Florin Coras24793e32018-05-09 11:34:25 -0700472 wanted - *n_bufs);
473 *n_bufs += n_alloc;
Florin Corasbe72ae62018-11-01 11:23:03 -0700474 _vec_len (wrk->tx_buffers) = *n_bufs;
Florin Coras24793e32018-05-09 11:34:25 -0700475 return n_alloc;
Florin Corasb2215d62017-08-01 16:56:58 -0700476}
477
478always_inline int
Florin Corasbe72ae62018-11-01 11:23:03 -0700479tcp_get_free_buffer_index (tcp_worker_ctx_t * wrk, u32 * bidx)
Florin Coras66b11312017-07-31 17:18:03 -0700480{
Florin Corasbe72ae62018-11-01 11:23:03 -0700481 u16 n_bufs = vec_len (wrk->tx_buffers);
Florin Corasf988e692017-11-27 04:34:14 -0500482
Florin Corasbe72ae62018-11-01 11:23:03 -0700483 TCP_DBG_BUFFER_ALLOC_MAYBE_FAIL (wrk->vm->thread_index);
Florin Corasf988e692017-11-27 04:34:14 -0500484
Florin Coras24793e32018-05-09 11:34:25 -0700485 if (PREDICT_FALSE (!n_bufs))
Florin Coras66b11312017-07-31 17:18:03 -0700486 {
Florin Corasbe72ae62018-11-01 11:23:03 -0700487 if (!tcp_alloc_tx_buffers (wrk, &n_bufs, VLIB_FRAME_SIZE))
Florin Coras24793e32018-05-09 11:34:25 -0700488 {
489 *bidx = ~0;
490 return -1;
491 }
Florin Coras66b11312017-07-31 17:18:03 -0700492 }
Florin Corasbe72ae62018-11-01 11:23:03 -0700493 *bidx = wrk->tx_buffers[--n_bufs];
494 _vec_len (wrk->tx_buffers) = n_bufs;
Florin Coras66b11312017-07-31 17:18:03 -0700495 return 0;
496}
Dave Barach68b0fb02017-02-28 15:15:56 -0500497
Florin Coras0dbd5172018-06-25 16:19:34 -0700498static void *
Dave Barach68b0fb02017-02-28 15:15:56 -0500499tcp_reuse_buffer (vlib_main_t * vm, vlib_buffer_t * b)
500{
Florin Corasb2215d62017-08-01 16:56:58 -0700501 if (b->flags & VLIB_BUFFER_NEXT_PRESENT)
502 vlib_buffer_free_one (vm, b->next_buffer);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400503 /* Zero all flags but free list index and trace flag */
504 b->flags &= VLIB_BUFFER_NEXT_PRESENT - 1;
Florin Coras1f152cd2017-08-18 19:28:03 -0700505 b->current_data = 0;
506 b->current_length = 0;
507 b->total_length_not_including_first_buffer = 0;
508 vnet_buffer (b)->tcp.flags = 0;
Florin Corasb2215d62017-08-01 16:56:58 -0700509
Dave Barach68b0fb02017-02-28 15:15:56 -0500510 /* Leave enough space for headers */
Florin Coras1f152cd2017-08-18 19:28:03 -0700511 return vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
512}
513
Florin Coras0dbd5172018-06-25 16:19:34 -0700514static void *
Florin Coras1f152cd2017-08-18 19:28:03 -0700515tcp_init_buffer (vlib_main_t * vm, vlib_buffer_t * b)
516{
517 ASSERT ((b->flags & VLIB_BUFFER_NEXT_PRESENT) == 0);
Damjan Mariondac03522018-02-01 15:30:13 +0100518 b->flags &= VLIB_BUFFER_NON_DEFAULT_FREELIST;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400519 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Florin Coras1f152cd2017-08-18 19:28:03 -0700520 b->total_length_not_including_first_buffer = 0;
Florin Coras24793e32018-05-09 11:34:25 -0700521 b->current_data = 0;
Florin Corasd79b41e2017-03-04 05:37:52 -0800522 vnet_buffer (b)->tcp.flags = 0;
Florin Corasf988e692017-11-27 04:34:14 -0500523 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b);
Florin Coras1f152cd2017-08-18 19:28:03 -0700524 /* Leave enough space for headers */
525 return vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
Dave Barach68b0fb02017-02-28 15:15:56 -0500526}
527
528/**
529 * Prepare ACK
530 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700531static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500532tcp_make_ack_i (tcp_connection_t * tc, vlib_buffer_t * b, tcp_state_t state,
533 u8 flags)
534{
535 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
536 u8 tcp_opts_len, tcp_hdr_opts_len;
537 tcp_header_t *th;
538 u16 wnd;
539
540 wnd = tcp_window_to_advertise (tc, state);
541
542 /* Make and write options */
543 tcp_opts_len = tcp_make_established_options (tc, snd_opts);
544 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
545
546 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
547 tc->rcv_nxt, tcp_hdr_opts_len, flags, wnd);
548
549 tcp_options_write ((u8 *) (th + 1), snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500550 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
551}
552
553/**
554 * Convert buffer to ACK
555 */
556void
557tcp_make_ack (tcp_connection_t * tc, vlib_buffer_t * b)
558{
Florin Coras6792ec02017-03-13 03:49:51 -0700559 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500560
561 tcp_reuse_buffer (vm, b);
562 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, TCP_FLAG_ACK);
Florin Coras6792ec02017-03-13 03:49:51 -0700563 TCP_EVT_DBG (TCP_EVT_ACK_SENT, tc);
Florin Coras3e350af2017-03-30 02:54:28 -0700564 tc->rcv_las = tc->rcv_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500565}
566
567/**
568 * Convert buffer to FIN-ACK
569 */
570void
Florin Corasd79b41e2017-03-04 05:37:52 -0800571tcp_make_fin (tcp_connection_t * tc, vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500572{
Florin Coras6792ec02017-03-13 03:49:51 -0700573 vlib_main_t *vm = vlib_get_main ();
Florin Corasd79b41e2017-03-04 05:37:52 -0800574 u8 flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500575
576 tcp_reuse_buffer (vm, b);
Florin Corasd79b41e2017-03-04 05:37:52 -0800577
Florin Corase69f4952017-03-07 10:06:24 -0800578 flags = TCP_FLAG_FIN | TCP_FLAG_ACK;
Florin Corasd79b41e2017-03-04 05:37:52 -0800579 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, flags);
Dave Barach68b0fb02017-02-28 15:15:56 -0500580
581 /* Reset flags, make sure ack is sent */
Dave Barach68b0fb02017-02-28 15:15:56 -0500582 vnet_buffer (b)->tcp.flags &= ~TCP_BUF_FLAG_DUPACK;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400583}
Dave Barach68b0fb02017-02-28 15:15:56 -0500584
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400585/**
586 * Convert buffer to SYN
587 */
588void
589tcp_make_syn (tcp_connection_t * tc, vlib_buffer_t * b)
590{
591 u8 tcp_hdr_opts_len, tcp_opts_len;
592 tcp_header_t *th;
593 u16 initial_wnd;
594 tcp_options_t snd_opts;
595
596 initial_wnd = tcp_initial_window_to_advertise (tc);
597
598 /* Make and write options */
Dave Barachb7b92992018-10-17 10:38:51 -0400599 clib_memset (&snd_opts, 0, sizeof (snd_opts));
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400600 tcp_opts_len = tcp_make_syn_options (&snd_opts, tc->rcv_wscale);
601 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
602
603 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
604 tc->rcv_nxt, tcp_hdr_opts_len, TCP_FLAG_SYN,
605 initial_wnd);
606 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
607 tcp_options_write ((u8 *) (th + 1), &snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500608}
609
610/**
611 * Convert buffer to SYN-ACK
612 */
613void
614tcp_make_synack (tcp_connection_t * tc, vlib_buffer_t * b)
615{
Florin Coras6792ec02017-03-13 03:49:51 -0700616 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500617 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
618 u8 tcp_opts_len, tcp_hdr_opts_len;
619 tcp_header_t *th;
620 u16 initial_wnd;
Dave Barach68b0fb02017-02-28 15:15:56 -0500621
Dave Barachb7b92992018-10-17 10:38:51 -0400622 clib_memset (snd_opts, 0, sizeof (*snd_opts));
Dave Barach68b0fb02017-02-28 15:15:56 -0500623 tcp_reuse_buffer (vm, b);
624
Dave Barach68b0fb02017-02-28 15:15:56 -0500625 initial_wnd = tcp_initial_window_to_advertise (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500626 tcp_opts_len = tcp_make_synack_options (tc, snd_opts);
627 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
628
629 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
630 tc->rcv_nxt, tcp_hdr_opts_len,
631 TCP_FLAG_SYN | TCP_FLAG_ACK, initial_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -0500632 tcp_options_write ((u8 *) (th + 1), snd_opts);
633
634 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500635
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400636 /* Init retransmit timer. Use update instead of set because of
637 * retransmissions */
638 tcp_retransmit_timer_force_update (tc);
Florin Coras6534b7a2017-07-18 05:38:03 -0400639 TCP_EVT_DBG (TCP_EVT_SYNACK_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500640}
641
642always_inline void
Florin Corasbe72ae62018-11-01 11:23:03 -0700643tcp_enqueue_to_ip_lookup_i (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi,
Florin Coras56b39f62018-03-27 17:29:32 -0700644 u8 is_ip4, u32 fib_index, u8 flush)
Dave Barach68b0fb02017-02-28 15:15:56 -0500645{
Florin Corasbe72ae62018-11-01 11:23:03 -0700646 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500647 u32 *to_next, next_index;
648 vlib_frame_t *f;
649
Damjan Marion213b5aa2017-07-13 21:19:27 +0200650 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500651 b->error = 0;
652
Florin Coras56b39f62018-03-27 17:29:32 -0700653 vnet_buffer (b)->sw_if_index[VLIB_TX] = fib_index;
654 vnet_buffer (b)->sw_if_index[VLIB_RX] = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500655
656 /* Send to IP lookup */
657 next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index;
Florin Corasf988e692017-11-27 04:34:14 -0500658 tcp_trajectory_add_start (b, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500659
Florin Corasbe72ae62018-11-01 11:23:03 -0700660 f = wrk->ip_lookup_tx_frames[!is_ip4];
Florin Coras9d063042017-09-14 03:08:00 -0400661 if (!f)
662 {
663 f = vlib_get_frame_to_node (vm, next_index);
664 ASSERT (f);
Florin Corasbe72ae62018-11-01 11:23:03 -0700665 wrk->ip_lookup_tx_frames[!is_ip4] = f;
Florin Coras9d063042017-09-14 03:08:00 -0400666 }
667
Dave Barach68b0fb02017-02-28 15:15:56 -0500668 to_next = vlib_frame_vector_args (f);
Florin Coras9d063042017-09-14 03:08:00 -0400669 to_next[f->n_vectors] = bi;
670 f->n_vectors += 1;
671 if (flush || f->n_vectors == VLIB_FRAME_SIZE)
672 {
673 vlib_put_frame_to_node (vm, next_index, f);
Florin Corasbe72ae62018-11-01 11:23:03 -0700674 wrk->ip_lookup_tx_frames[!is_ip4] = 0;
Florin Coras9d063042017-09-14 03:08:00 -0400675 }
676}
677
Florin Coras0dbd5172018-06-25 16:19:34 -0700678static void
Florin Corasbe72ae62018-11-01 11:23:03 -0700679tcp_enqueue_to_ip_lookup_now (tcp_worker_ctx_t * wrk, vlib_buffer_t * b,
680 u32 bi, u8 is_ip4, u32 fib_index)
Florin Coras9d063042017-09-14 03:08:00 -0400681{
Florin Corasbe72ae62018-11-01 11:23:03 -0700682 tcp_enqueue_to_ip_lookup_i (wrk, b, bi, is_ip4, fib_index, 1);
Florin Coras9d063042017-09-14 03:08:00 -0400683}
684
Florin Coras0dbd5172018-06-25 16:19:34 -0700685static void
Florin Corasbe72ae62018-11-01 11:23:03 -0700686tcp_enqueue_to_ip_lookup (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi,
Florin Coras56b39f62018-03-27 17:29:32 -0700687 u8 is_ip4, u32 fib_index)
Florin Coras9d063042017-09-14 03:08:00 -0400688{
Florin Corasbe72ae62018-11-01 11:23:03 -0700689 tcp_enqueue_to_ip_lookup_i (wrk, b, bi, is_ip4, fib_index, 0);
690 if (wrk->vm->thread_index == 0 && vlib_num_workers ())
691 session_flush_frames_main_thread (wrk->vm);
Dave Barach68b0fb02017-02-28 15:15:56 -0500692}
693
Florin Coras1f152cd2017-08-18 19:28:03 -0700694always_inline void
Florin Corasbe72ae62018-11-01 11:23:03 -0700695tcp_enqueue_to_output_i (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi,
Florin Coras1f152cd2017-08-18 19:28:03 -0700696 u8 is_ip4, u8 flush)
697{
Florin Coras1f152cd2017-08-18 19:28:03 -0700698 u32 *to_next, next_index;
699 vlib_frame_t *f;
700
701 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
702 b->error = 0;
703
704 /* Decide where to send the packet */
705 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
Florin Corasf988e692017-11-27 04:34:14 -0500706 tcp_trajectory_add_start (b, 2);
Florin Coras1f152cd2017-08-18 19:28:03 -0700707
708 /* Get frame to v4/6 output node */
Florin Corasbe72ae62018-11-01 11:23:03 -0700709 f = wrk->tx_frames[!is_ip4];
Florin Coras1f152cd2017-08-18 19:28:03 -0700710 if (!f)
711 {
Florin Corasbe72ae62018-11-01 11:23:03 -0700712 f = vlib_get_frame_to_node (wrk->vm, next_index);
Florin Coras1f152cd2017-08-18 19:28:03 -0700713 ASSERT (f);
Florin Corasbe72ae62018-11-01 11:23:03 -0700714 wrk->tx_frames[!is_ip4] = f;
Florin Coras1f152cd2017-08-18 19:28:03 -0700715 }
716 to_next = vlib_frame_vector_args (f);
717 to_next[f->n_vectors] = bi;
718 f->n_vectors += 1;
719 if (flush || f->n_vectors == VLIB_FRAME_SIZE)
720 {
Florin Corasbe72ae62018-11-01 11:23:03 -0700721 vlib_put_frame_to_node (wrk->vm, next_index, f);
722 wrk->tx_frames[!is_ip4] = 0;
Florin Coras1f152cd2017-08-18 19:28:03 -0700723 }
724}
725
Florin Coras0dbd5172018-06-25 16:19:34 -0700726static void
Florin Corasbe72ae62018-11-01 11:23:03 -0700727tcp_enqueue_to_output (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi,
728 u8 is_ip4)
Florin Coras1f152cd2017-08-18 19:28:03 -0700729{
Florin Corasbe72ae62018-11-01 11:23:03 -0700730 tcp_enqueue_to_output_i (wrk, b, bi, is_ip4, 0);
Florin Coras1f152cd2017-08-18 19:28:03 -0700731}
732
Florin Coras0dbd5172018-06-25 16:19:34 -0700733static void
Florin Corasbe72ae62018-11-01 11:23:03 -0700734tcp_enqueue_to_output_now (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi,
Florin Coras1f152cd2017-08-18 19:28:03 -0700735 u8 is_ip4)
736{
Florin Corasbe72ae62018-11-01 11:23:03 -0700737 tcp_enqueue_to_output_i (wrk, b, bi, is_ip4, 1);
Florin Coras1f152cd2017-08-18 19:28:03 -0700738}
739
Florin Coras0dbd5172018-06-25 16:19:34 -0700740static int
Dave Barach68b0fb02017-02-28 15:15:56 -0500741tcp_make_reset_in_place (vlib_main_t * vm, vlib_buffer_t * b0,
Florin Corasdc629cd2017-05-09 00:52:37 -0700742 tcp_state_t state, u8 thread_index, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500743{
Dave Barach68b0fb02017-02-28 15:15:56 -0500744 ip4_header_t *ih4;
745 ip6_header_t *ih6;
746 tcp_header_t *th0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700747 ip4_address_t src_ip40, dst_ip40;
748 ip6_address_t src_ip60, dst_ip60;
749 u16 src_port, dst_port;
Dave Barach68b0fb02017-02-28 15:15:56 -0500750 u32 tmp;
Florin Corasdc629cd2017-05-09 00:52:37 -0700751 u32 seq, ack;
752 u8 flags;
Dave Barach68b0fb02017-02-28 15:15:56 -0500753
754 /* Find IP and TCP headers */
Florin Corasdc629cd2017-05-09 00:52:37 -0700755 th0 = tcp_buffer_hdr (b0);
756
757 /* Save src and dst ip */
Dave Barach68b0fb02017-02-28 15:15:56 -0500758 if (is_ip4)
759 {
760 ih4 = vlib_buffer_get_current (b0);
Florin Corasdc629cd2017-05-09 00:52:37 -0700761 ASSERT ((ih4->ip_version_and_header_length & 0xF0) == 0x40);
762 src_ip40.as_u32 = ih4->src_address.as_u32;
763 dst_ip40.as_u32 = ih4->dst_address.as_u32;
Dave Barach68b0fb02017-02-28 15:15:56 -0500764 }
765 else
766 {
767 ih6 = vlib_buffer_get_current (b0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500768 ASSERT ((ih6->ip_version_traffic_class_and_flow_label & 0xF0) == 0x60);
Dave Barach178cf492018-11-13 16:34:13 -0500769 clib_memcpy_fast (&src_ip60, &ih6->src_address, sizeof (ip6_address_t));
770 clib_memcpy_fast (&dst_ip60, &ih6->dst_address, sizeof (ip6_address_t));
Dave Barach68b0fb02017-02-28 15:15:56 -0500771 }
772
Florin Corasdc629cd2017-05-09 00:52:37 -0700773 src_port = th0->src_port;
774 dst_port = th0->dst_port;
775
776 /* Try to determine what/why we're actually resetting */
Dave Barach68b0fb02017-02-28 15:15:56 -0500777 if (state == TCP_STATE_CLOSED)
778 {
779 if (!tcp_syn (th0))
780 return -1;
781
782 tmp = clib_net_to_host_u32 (th0->seq_number);
783
784 /* Got a SYN for no listener. */
Florin Corasdc629cd2017-05-09 00:52:37 -0700785 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
786 ack = clib_host_to_net_u32 (tmp + 1);
787 seq = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500788 }
Florin Corasdc629cd2017-05-09 00:52:37 -0700789 else
Dave Barach68b0fb02017-02-28 15:15:56 -0500790 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700791 flags = TCP_FLAG_RST;
792 seq = th0->ack_number;
793 ack = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500794 }
795
Florin Corasdc629cd2017-05-09 00:52:37 -0700796 tcp_reuse_buffer (vm, b0);
Florin Corasf988e692017-11-27 04:34:14 -0500797 tcp_trajectory_add_start (b0, 4);
Florin Corasdc629cd2017-05-09 00:52:37 -0700798 th0 = vlib_buffer_push_tcp_net_order (b0, dst_port, src_port, seq, ack,
799 sizeof (tcp_header_t), flags, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500800
Dave Barach68b0fb02017-02-28 15:15:56 -0500801 if (is_ip4)
802 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700803 ih4 = vlib_buffer_push_ip4 (vm, b0, &dst_ip40, &src_ip40,
Florin Corasfdbc3822017-07-27 00:34:12 -0700804 IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500805 th0->checksum = ip4_tcp_udp_compute_checksum (vm, b0, ih4);
806 }
807 else
808 {
809 int bogus = ~0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700810 ih6 = vlib_buffer_push_ip6 (vm, b0, &dst_ip60, &src_ip60,
811 IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500812 th0->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b0, ih6, &bogus);
813 ASSERT (!bogus);
814 }
815
816 return 0;
817}
818
819/**
820 * Send reset without reusing existing buffer
Florin Coras1f152cd2017-08-18 19:28:03 -0700821 *
822 * It extracts connection info out of original packet
Dave Barach68b0fb02017-02-28 15:15:56 -0500823 */
824void
Florin Coras1f152cd2017-08-18 19:28:03 -0700825tcp_send_reset_w_pkt (tcp_connection_t * tc, vlib_buffer_t * pkt, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500826{
Florin Corasbe72ae62018-11-01 11:23:03 -0700827 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
828 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500829 vlib_buffer_t *b;
Florin Coras56b39f62018-03-27 17:29:32 -0700830 u32 bi, sw_if_index, fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500831 u8 tcp_hdr_len, flags = 0;
832 tcp_header_t *th, *pkt_th;
833 u32 seq, ack;
834 ip4_header_t *ih4, *pkt_ih4;
835 ip6_header_t *ih6, *pkt_ih6;
Florin Coras56b39f62018-03-27 17:29:32 -0700836 fib_protocol_t fib_proto;
Dave Barach68b0fb02017-02-28 15:15:56 -0500837
Florin Corasbe72ae62018-11-01 11:23:03 -0700838 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
Florin Coras66b11312017-07-31 17:18:03 -0700839 return;
840
Dave Barach68b0fb02017-02-28 15:15:56 -0500841 b = vlib_get_buffer (vm, bi);
Florin Coras56b39f62018-03-27 17:29:32 -0700842 sw_if_index = vnet_buffer (pkt)->sw_if_index[VLIB_RX];
843 fib_proto = is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
844 fib_index = fib_table_get_index_for_sw_if_index (fib_proto, sw_if_index);
Florin Coras1f152cd2017-08-18 19:28:03 -0700845 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500846
847 /* Make and write options */
848 tcp_hdr_len = sizeof (tcp_header_t);
849
850 if (is_ip4)
851 {
852 pkt_ih4 = vlib_buffer_get_current (pkt);
853 pkt_th = ip4_next_header (pkt_ih4);
854 }
855 else
856 {
857 pkt_ih6 = vlib_buffer_get_current (pkt);
858 pkt_th = ip6_next_header (pkt_ih6);
859 }
860
861 if (tcp_ack (pkt_th))
862 {
863 flags = TCP_FLAG_RST;
864 seq = pkt_th->ack_number;
Florin Coras776f3d82018-11-02 08:23:58 -0700865 ack = (tc->state >= TCP_STATE_SYN_RCVD) ? tc->rcv_nxt : 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500866 }
867 else
868 {
869 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
870 seq = 0;
871 ack = clib_host_to_net_u32 (vnet_buffer (pkt)->tcp.seq_end);
872 }
873
874 th = vlib_buffer_push_tcp_net_order (b, pkt_th->dst_port, pkt_th->src_port,
875 seq, ack, tcp_hdr_len, flags, 0);
876
877 /* Swap src and dst ip */
878 if (is_ip4)
879 {
880 ASSERT ((pkt_ih4->ip_version_and_header_length & 0xF0) == 0x40);
881 ih4 = vlib_buffer_push_ip4 (vm, b, &pkt_ih4->dst_address,
Florin Corasfdbc3822017-07-27 00:34:12 -0700882 &pkt_ih4->src_address, IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500883 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
884 }
885 else
886 {
887 int bogus = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500888 ASSERT ((pkt_ih6->ip_version_traffic_class_and_flow_label & 0xF0) ==
889 0x60);
rootc9d1c5b2017-08-15 12:58:31 -0400890 ih6 = vlib_buffer_push_ip6 (vm, b, &pkt_ih6->dst_address,
891 &pkt_ih6->src_address, IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500892 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
893 ASSERT (!bogus);
894 }
895
Florin Corasbe72ae62018-11-01 11:23:03 -0700896 tcp_enqueue_to_ip_lookup_now (wrk, b, bi, is_ip4, fib_index);
Florin Coras6534b7a2017-07-18 05:38:03 -0400897 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500898}
899
Florin Coras1f152cd2017-08-18 19:28:03 -0700900/**
901 * Build and set reset packet for connection
902 */
903void
904tcp_send_reset (tcp_connection_t * tc)
905{
Florin Corasbe72ae62018-11-01 11:23:03 -0700906 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
907 vlib_main_t *vm = wrk->vm;
Florin Coras1f152cd2017-08-18 19:28:03 -0700908 vlib_buffer_t *b;
909 u32 bi;
910 tcp_header_t *th;
911 u16 tcp_hdr_opts_len, advertise_wnd, opts_write_len;
912 u8 flags;
913
Florin Corasbe72ae62018-11-01 11:23:03 -0700914 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
Florin Coras1f152cd2017-08-18 19:28:03 -0700915 return;
916 b = vlib_get_buffer (vm, bi);
917 tcp_init_buffer (vm, b);
918
919 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
920 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
921 advertise_wnd = tcp_window_to_advertise (tc, TCP_STATE_ESTABLISHED);
922 flags = TCP_FLAG_RST;
923 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
924 tc->rcv_nxt, tcp_hdr_opts_len, flags,
925 advertise_wnd);
926 opts_write_len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
927 ASSERT (opts_write_len == tc->snd_opts_len);
928 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Florin Corasf1762d62017-09-24 19:43:08 -0400929 if (tc->c_is_ip4)
930 {
931 ip4_header_t *ih4;
932 ih4 = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip.ip4,
933 &tc->c_rmt_ip.ip4, IP_PROTOCOL_TCP, 0);
934 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
935 }
936 else
937 {
938 int bogus = ~0;
939 ip6_header_t *ih6;
940 ih6 = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip.ip6,
941 &tc->c_rmt_ip.ip6, IP_PROTOCOL_TCP);
942 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
943 ASSERT (!bogus);
944 }
Florin Corasbe72ae62018-11-01 11:23:03 -0700945 tcp_enqueue_to_ip_lookup_now (wrk, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Corasf1762d62017-09-24 19:43:08 -0400946 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc);
Florin Coras1f152cd2017-08-18 19:28:03 -0700947}
948
Florin Coras0dbd5172018-06-25 16:19:34 -0700949static void
Florin Corasbe72ae62018-11-01 11:23:03 -0700950tcp_push_ip_hdr (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
951 vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500952{
953 tcp_header_t *th = vlib_buffer_get_current (b);
Florin Corasbe72ae62018-11-01 11:23:03 -0700954 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500955 if (tc->c_is_ip4)
956 {
957 ip4_header_t *ih;
Dave Barach2c25a622017-06-26 11:35:07 -0400958 ih = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip4,
Florin Corasfdbc3822017-07-27 00:34:12 -0700959 &tc->c_rmt_ip4, IP_PROTOCOL_TCP, 1);
Dave Barach2c25a622017-06-26 11:35:07 -0400960 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih);
Dave Barach68b0fb02017-02-28 15:15:56 -0500961 }
962 else
963 {
964 ip6_header_t *ih;
965 int bogus = ~0;
966
Dave Barach2c25a622017-06-26 11:35:07 -0400967 ih = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip6,
Dave Barach68b0fb02017-02-28 15:15:56 -0500968 &tc->c_rmt_ip6, IP_PROTOCOL_TCP);
Dave Barach2c25a622017-06-26 11:35:07 -0400969 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih, &bogus);
Dave Barach68b0fb02017-02-28 15:15:56 -0500970 ASSERT (!bogus);
971 }
972}
973
974/**
975 * Send SYN
976 *
977 * Builds a SYN packet for a half-open connection and sends it to ipx_lookup.
978 * The packet is not forwarded through tcpx_output to avoid doing lookups
979 * in the half_open pool.
980 */
981void
982tcp_send_syn (tcp_connection_t * tc)
983{
Florin Corasbe72ae62018-11-01 11:23:03 -0700984 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
985 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500986 vlib_buffer_t *b;
987 u32 bi;
Dave Barach68b0fb02017-02-28 15:15:56 -0500988
Florin Corasf988e692017-11-27 04:34:14 -0500989 /*
990 * Setup retransmit and establish timers before requesting buffer
991 * such that we can return if we've ran out.
992 */
993 tcp_timer_set (tc, TCP_TIMER_ESTABLISH, TCP_ESTABLISH_TIME);
994 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN,
995 tc->rto * TCP_TO_TIMER_TICK);
996
Florin Corasbe72ae62018-11-01 11:23:03 -0700997 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
Florin Coras66b11312017-07-31 17:18:03 -0700998 return;
999
Dave Barach68b0fb02017-02-28 15:15:56 -05001000 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001001 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001002 tcp_make_syn (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001003
1004 /* Measure RTT with this */
Florin Corasefefc6b2018-11-07 12:49:19 -08001005 tc->rtt_ts = tcp_time_now_us (vlib_num_workers ()? 1 : 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001006 tc->rtt_seq = tc->snd_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001007 tc->rto_boff = 0;
1008
Florin Corasbe72ae62018-11-01 11:23:03 -07001009 tcp_push_ip_hdr (wrk, tc, b);
1010 tcp_enqueue_to_ip_lookup (wrk, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Coras6534b7a2017-07-18 05:38:03 -04001011 TCP_EVT_DBG (TCP_EVT_SYN_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001012}
1013
Florin Coras7ac053b2018-11-05 15:57:21 -08001014void
1015tcp_send_synack (tcp_connection_t * tc)
1016{
1017 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
1018 vlib_main_t *vm = wrk->vm;
1019 vlib_buffer_t *b;
1020 u32 bi;
1021
1022 /* Get buffer */
1023 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
1024 return;
1025
Florin Corasdf084782018-12-06 17:41:10 -08001026 tc->rtt_ts = tcp_time_now_us (tc->c_thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08001027 b = vlib_get_buffer (vm, bi);
1028 tcp_make_synack (tc, b);
1029 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
1030}
1031
Florin Coras66b11312017-07-31 17:18:03 -07001032/**
1033 * Flush tx frame populated by retransmits and timer pops
1034 */
1035void
Florin Corasbe72ae62018-11-01 11:23:03 -07001036tcp_flush_frame_to_output (tcp_worker_ctx_t * wrk, u8 is_ip4)
Florin Coras66b11312017-07-31 17:18:03 -07001037{
Florin Corasbe72ae62018-11-01 11:23:03 -07001038 if (wrk->tx_frames[!is_ip4])
Florin Coras66b11312017-07-31 17:18:03 -07001039 {
1040 u32 next_index;
1041 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
Florin Corasbe72ae62018-11-01 11:23:03 -07001042 vlib_put_frame_to_node (wrk->vm, next_index, wrk->tx_frames[!is_ip4]);
1043 wrk->tx_frames[!is_ip4] = 0;
Florin Coras66b11312017-07-31 17:18:03 -07001044 }
1045}
1046
1047/**
Florin Coras9d063042017-09-14 03:08:00 -04001048 * Flush ip lookup tx frames populated by timer pops
1049 */
Florin Coras0dbd5172018-06-25 16:19:34 -07001050static void
Florin Corasbe72ae62018-11-01 11:23:03 -07001051tcp_flush_frame_to_ip_lookup (tcp_worker_ctx_t * wrk, u8 is_ip4)
Florin Coras9d063042017-09-14 03:08:00 -04001052{
Florin Corasbe72ae62018-11-01 11:23:03 -07001053 if (wrk->ip_lookup_tx_frames[!is_ip4])
Florin Coras9d063042017-09-14 03:08:00 -04001054 {
1055 u32 next_index;
1056 next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index;
Florin Corasbe72ae62018-11-01 11:23:03 -07001057 vlib_put_frame_to_node (wrk->vm, next_index,
1058 wrk->ip_lookup_tx_frames[!is_ip4]);
1059 wrk->ip_lookup_tx_frames[!is_ip4] = 0;
Florin Coras9d063042017-09-14 03:08:00 -04001060 }
1061}
1062
1063/**
1064 * Flush v4 and v6 tcp and ip-lookup tx frames for thread index
Florin Coras66b11312017-07-31 17:18:03 -07001065 */
1066void
Florin Corasbe72ae62018-11-01 11:23:03 -07001067tcp_flush_frames_to_output (tcp_worker_ctx_t * wrk)
Florin Coras66b11312017-07-31 17:18:03 -07001068{
Florin Corasbe72ae62018-11-01 11:23:03 -07001069 tcp_flush_frame_to_output (wrk, 1);
1070 tcp_flush_frame_to_output (wrk, 0);
1071 tcp_flush_frame_to_ip_lookup (wrk, 1);
1072 tcp_flush_frame_to_ip_lookup (wrk, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001073}
1074
1075/**
1076 * Send FIN
1077 */
1078void
1079tcp_send_fin (tcp_connection_t * tc)
1080{
Florin Corasbe72ae62018-11-01 11:23:03 -07001081 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
1082 vlib_main_t *vm = wrk->vm;
Florin Coras9d063042017-09-14 03:08:00 -04001083 vlib_buffer_t *b;
1084 u32 bi;
1085 u8 fin_snt = 0;
1086
Florin Corasc977e7c2018-10-16 20:30:31 -07001087 fin_snt = tc->flags & TCP_CONN_FINSNT;
1088 if (fin_snt)
1089 tc->snd_nxt = tc->snd_una;
1090
Florin Corasbe72ae62018-11-01 11:23:03 -07001091 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
Florin Coraseb97e5f2018-10-15 21:35:42 -07001092 {
1093 /* Out of buffers so program fin retransmit ASAP */
1094 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT, 1);
Florin Corasc977e7c2018-10-16 20:30:31 -07001095 goto post_enqueue;
Florin Coraseb97e5f2018-10-15 21:35:42 -07001096 }
1097
Florin Corasc977e7c2018-10-16 20:30:31 -07001098 tcp_retransmit_timer_force_update (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001099 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001100 tcp_init_buffer (vm, b);
Florin Corasd79b41e2017-03-04 05:37:52 -08001101 tcp_make_fin (tc, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001102 tcp_enqueue_to_output_now (wrk, b, bi, tc->c_is_ip4);
Florin Corasc977e7c2018-10-16 20:30:31 -07001103 TCP_EVT_DBG (TCP_EVT_FIN_SENT, tc);
1104
1105post_enqueue:
Florin Coras9d063042017-09-14 03:08:00 -04001106 if (!fin_snt)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001107 {
1108 tc->flags |= TCP_CONN_FINSNT;
1109 tc->flags &= ~TCP_CONN_FINPNDG;
Florin Coras9d063042017-09-14 03:08:00 -04001110 /* Account for the FIN */
1111 tc->snd_una_max += 1;
1112 tc->snd_nxt = tc->snd_una_max;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001113 }
Florin Corasa096f2d2017-09-28 23:49:42 -04001114 else
1115 {
1116 tc->snd_nxt = tc->snd_una_max;
1117 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001118}
1119
1120always_inline u8
Florin Corasb2215d62017-08-01 16:56:58 -07001121tcp_make_state_flags (tcp_connection_t * tc, tcp_state_t next_state)
Dave Barach68b0fb02017-02-28 15:15:56 -05001122{
1123 switch (next_state)
1124 {
1125 case TCP_STATE_ESTABLISHED:
Florin Coras00dfe542018-06-11 13:15:11 -07001126 case TCP_STATE_CLOSE_WAIT:
Dave Barach68b0fb02017-02-28 15:15:56 -05001127 return TCP_FLAG_ACK;
1128 case TCP_STATE_SYN_RCVD:
1129 return TCP_FLAG_SYN | TCP_FLAG_ACK;
1130 case TCP_STATE_SYN_SENT:
1131 return TCP_FLAG_SYN;
1132 case TCP_STATE_LAST_ACK:
1133 case TCP_STATE_FIN_WAIT_1:
Florin Corasb2215d62017-08-01 16:56:58 -07001134 if (tc->snd_nxt + 1 < tc->snd_una_max)
1135 return TCP_FLAG_ACK;
1136 else
1137 return TCP_FLAG_FIN;
Dave Barach68b0fb02017-02-28 15:15:56 -05001138 default:
1139 clib_warning ("Shouldn't be here!");
1140 }
1141 return 0;
1142}
1143
1144/**
1145 * Push TCP header and update connection variables
1146 */
Florin Coras0dbd5172018-06-25 16:19:34 -07001147always_inline void
Dave Barach68b0fb02017-02-28 15:15:56 -05001148tcp_push_hdr_i (tcp_connection_t * tc, vlib_buffer_t * b,
Florin Corasb26743d2018-06-26 09:31:04 -07001149 tcp_state_t next_state, u8 compute_opts, u8 maybe_burst)
Dave Barach68b0fb02017-02-28 15:15:56 -05001150{
1151 u32 advertise_wnd, data_len;
Florin Corasb26743d2018-06-26 09:31:04 -07001152 u8 tcp_hdr_opts_len, flags;
1153 tcp_main_t *tm = &tcp_main;
Dave Barach68b0fb02017-02-28 15:15:56 -05001154 tcp_header_t *th;
1155
Florin Corasb26743d2018-06-26 09:31:04 -07001156 data_len = b->current_length;
1157 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_NEXT_PRESENT))
1158 data_len += b->total_length_not_including_first_buffer;
1159
Dave Barach68b0fb02017-02-28 15:15:56 -05001160 vnet_buffer (b)->tcp.flags = 0;
Florin Corasb26743d2018-06-26 09:31:04 -07001161 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05001162
Florin Corasc8343412017-05-04 14:25:50 -07001163 if (compute_opts)
1164 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1165
Florin Corasc8343412017-05-04 14:25:50 -07001166 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
Florin Corasb26743d2018-06-26 09:31:04 -07001167
1168 if (maybe_burst)
1169 advertise_wnd = tc->rcv_wnd >> tc->rcv_wscale;
1170 else
1171 advertise_wnd = tcp_window_to_advertise (tc, next_state);
1172
Florin Corasb2215d62017-08-01 16:56:58 -07001173 flags = tcp_make_state_flags (tc, next_state);
Florin Coras42ceddb2018-12-12 10:56:01 -08001174 if (PREDICT_FALSE (tc->flags & TCP_CONN_PSH_PENDING))
1175 {
1176 if (seq_geq (tc->psh_seq, tc->snd_nxt)
1177 && seq_lt (tc->psh_seq, tc->snd_nxt + data_len))
1178 flags |= TCP_FLAG_PSH;
1179 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001180 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
1181 tc->rcv_nxt, tcp_hdr_opts_len, flags,
1182 advertise_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -05001183
Florin Corasb26743d2018-06-26 09:31:04 -07001184 if (maybe_burst)
1185 {
Dave Barach178cf492018-11-13 16:34:13 -05001186 clib_memcpy_fast ((u8 *) (th + 1),
1187 tm->wrk_ctx[tc->c_thread_index].cached_opts,
1188 tc->snd_opts_len);
Florin Corasb26743d2018-06-26 09:31:04 -07001189 }
1190 else
1191 {
1192 u8 len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
1193 ASSERT (len == tc->snd_opts_len);
1194 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001195
Florin Coras93992a92017-05-24 18:03:56 -07001196 /*
1197 * Update connection variables
1198 */
1199
Dave Barach68b0fb02017-02-28 15:15:56 -05001200 tc->snd_nxt += data_len;
Florin Corasc28764f2017-04-26 00:08:42 -07001201 tc->rcv_las = tc->rcv_nxt;
Florin Coras3e350af2017-03-30 02:54:28 -07001202
Florin Corase69f4952017-03-07 10:06:24 -08001203 TCP_EVT_DBG (TCP_EVT_PKTIZE, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001204}
1205
Florin Coras0dbd5172018-06-25 16:19:34 -07001206u32
1207tcp_push_header (tcp_connection_t * tc, vlib_buffer_t * b)
1208{
Florin Corasb26743d2018-06-26 09:31:04 -07001209 tcp_push_hdr_i (tc, b, TCP_STATE_ESTABLISHED, /* compute opts */ 0,
1210 /* burst */ 1);
Florin Coras0dbd5172018-06-25 16:19:34 -07001211 tc->snd_una_max = tc->snd_nxt;
Florin Corasb11175d2018-11-09 14:34:08 -08001212 ASSERT (seq_leq (tc->snd_una_max, tc->snd_una + tc->snd_wnd));
Florin Coras0dbd5172018-06-25 16:19:34 -07001213 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
1214 /* If not tracking an ACK, start tracking */
1215 if (tc->rtt_ts == 0 && !tcp_in_cong_recovery (tc))
1216 {
Florin Corasd67f1122018-05-21 17:47:40 -07001217 tc->rtt_ts = tcp_time_now_us (tc->c_thread_index);
Florin Coras0dbd5172018-06-25 16:19:34 -07001218 tc->rtt_seq = tc->snd_nxt;
1219 }
1220 if (PREDICT_FALSE (!tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)))
1221 {
1222 tcp_retransmit_timer_set (tc);
1223 tc->rto_boff = 0;
1224 }
1225 tcp_trajectory_add_start (b, 3);
1226 return 0;
1227}
1228
Dave Barach68b0fb02017-02-28 15:15:56 -05001229void
Florin Coras6792ec02017-03-13 03:49:51 -07001230tcp_send_ack (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001231{
Florin Corasbe72ae62018-11-01 11:23:03 -07001232 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
1233 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -05001234 vlib_buffer_t *b;
1235 u32 bi;
1236
Dave Barach68b0fb02017-02-28 15:15:56 -05001237 /* Get buffer */
Florin Corasbe72ae62018-11-01 11:23:03 -07001238 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
Florin Coras66b11312017-07-31 17:18:03 -07001239 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001240 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001241 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001242
1243 /* Fill in the ACK */
1244 tcp_make_ack (tc, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001245 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001246}
1247
Florin Coras7ac053b2018-11-05 15:57:21 -08001248void
1249tcp_program_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1250{
1251 if (!(tc->flags & TCP_CONN_SNDACK))
1252 {
1253 vec_add1 (wrk->pending_acks, tc->c_c_index);
1254 tc->flags |= TCP_CONN_SNDACK;
1255 }
1256}
1257
1258void
1259tcp_program_dupack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1260{
1261 if (!(tc->flags & TCP_CONN_SNDACK))
1262 {
1263 vec_add1 (wrk->pending_acks, tc->c_c_index);
1264 tc->flags |= TCP_CONN_SNDACK;
1265 }
1266 if (tc->pending_dupacks < 255)
1267 tc->pending_dupacks += 1;
1268}
1269
1270void
1271tcp_send_acks (tcp_worker_ctx_t * wrk)
1272{
1273 u32 thread_index, *pending_acks;
1274 tcp_connection_t *tc;
1275 int i, j, n_acks;
1276
1277 if (!vec_len (wrk->pending_acks))
1278 return;
1279
1280 thread_index = wrk->vm->thread_index;
1281 pending_acks = wrk->pending_acks;
1282 for (i = 0; i < vec_len (pending_acks); i++)
1283 {
1284 tc = tcp_connection_get (pending_acks[i], thread_index);
1285 tc->flags &= ~TCP_CONN_SNDACK;
1286 n_acks = clib_max (1, tc->pending_dupacks);
1287 /* If we're supposed to send dupacks but have no ooo data
1288 * send only one ack */
1289 if (tc->pending_dupacks && !vec_len (tc->snd_sacks))
1290 n_acks = 1;
1291 for (j = 0; j < n_acks; j++)
1292 tcp_send_ack (tc);
1293 tc->pending_dupacks = 0;
1294 }
1295 _vec_len (wrk->pending_acks) = 0;
1296}
1297
Florin Corasb2215d62017-08-01 16:56:58 -07001298/**
1299 * Delayed ack timer handler
1300 *
1301 * Sends delayed ACK when timer expires
1302 */
Florin Coras6792ec02017-03-13 03:49:51 -07001303void
1304tcp_timer_delack_handler (u32 index)
1305{
Damjan Marion586afd72017-04-05 19:18:20 +02001306 u32 thread_index = vlib_get_thread_index ();
Florin Coras6792ec02017-03-13 03:49:51 -07001307 tcp_connection_t *tc;
1308
1309 tc = tcp_connection_get (index, thread_index);
1310 tc->timers[TCP_TIMER_DELACK] = TCP_TIMER_HANDLE_INVALID;
Florin Coras6792ec02017-03-13 03:49:51 -07001311 tcp_send_ack (tc);
1312}
1313
Florin Corasb2215d62017-08-01 16:56:58 -07001314/**
Florin Coras36ee9f12018-11-02 12:52:10 -07001315 * Allocate a new buffer and build a new tcp segment
Dave Barach68b0fb02017-02-28 15:15:56 -05001316 *
Florin Coras36ee9f12018-11-02 12:52:10 -07001317 * @param wrk tcp worker
1318 * @param tc connection for which the segment will be allocated
1319 * @param offset offset of the first byte in the tx fifo
1320 * @param max_deq_byte segment size
1321 * @param[out] b pointer to buffer allocated
1322 *
1323 * @return the number of bytes in the segment or 0 if buffer cannot be
1324 * allocated or no data available
Florin Coras93992a92017-05-24 18:03:56 -07001325 */
Florin Coras36ee9f12018-11-02 12:52:10 -07001326static int
1327tcp_prepare_segment (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1328 u32 offset, u32 max_deq_bytes, vlib_buffer_t ** b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001329{
Florin Corasbe72ae62018-11-01 11:23:03 -07001330 u32 bytes_per_buffer = vnet_get_tcp_main ()->bytes_per_buffer;
Florin Coras36ee9f12018-11-02 12:52:10 -07001331 u32 bi, seg_size;
Florin Corasbe72ae62018-11-01 11:23:03 -07001332 vlib_main_t *vm = wrk->vm;
Florin Coras93992a92017-05-24 18:03:56 -07001333 int n_bytes = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001334 u8 *data;
Dave Barach68b0fb02017-02-28 15:15:56 -05001335
Florin Coras1f152cd2017-08-18 19:28:03 -07001336 seg_size = max_deq_bytes + MAX_HDRS_LEN;
1337
Florin Corasb2215d62017-08-01 16:56:58 -07001338 /*
1339 * Prepare options
1340 */
Florin Corasc8343412017-05-04 14:25:50 -07001341 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1342
Florin Corasb2215d62017-08-01 16:56:58 -07001343 /*
1344 * Allocate and fill in buffer(s)
1345 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001346
Florin Corasb2215d62017-08-01 16:56:58 -07001347 /* Easy case, buffer size greater than mss */
Florin Corasbe72ae62018-11-01 11:23:03 -07001348 if (PREDICT_TRUE (seg_size <= bytes_per_buffer))
Florin Corasb2215d62017-08-01 16:56:58 -07001349 {
Florin Corasbe72ae62018-11-01 11:23:03 -07001350 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
Florin Coras24793e32018-05-09 11:34:25 -07001351 return 0;
1352 *b = vlib_get_buffer (vm, bi);
1353 data = tcp_init_buffer (vm, *b);
Florin Corase87216f2017-08-17 16:59:22 -07001354 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1355 max_deq_bytes);
Florin Corasb2215d62017-08-01 16:56:58 -07001356 ASSERT (n_bytes == max_deq_bytes);
1357 b[0]->current_length = n_bytes;
Florin Corasb26743d2018-06-26 09:31:04 -07001358 tcp_push_hdr_i (tc, *b, tc->state, /* compute opts */ 0, /* burst */ 0);
Florin Coras208daa12018-07-02 01:30:51 -07001359 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
1360 tc->snd_una_max = tc->snd_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001361 }
1362 /* Split mss into multiple buffers */
1363 else
1364 {
1365 u32 chain_bi = ~0, n_bufs_per_seg;
Florin Corasb2215d62017-08-01 16:56:58 -07001366 u16 n_peeked, len_to_deq, available_bufs;
1367 vlib_buffer_t *chain_b, *prev_b;
Florin Corasb2215d62017-08-01 16:56:58 -07001368 int i;
1369
Florin Corasb2215d62017-08-01 16:56:58 -07001370 /* Make sure we have enough buffers */
Florin Corasbe72ae62018-11-01 11:23:03 -07001371 n_bufs_per_seg = ceil ((double) seg_size / bytes_per_buffer);
1372 available_bufs = vec_len (wrk->tx_buffers);
Florin Corasb2215d62017-08-01 16:56:58 -07001373 if (n_bufs_per_seg > available_bufs)
1374 {
Florin Corasbe72ae62018-11-01 11:23:03 -07001375 tcp_alloc_tx_buffers (wrk, &available_bufs, VLIB_FRAME_SIZE);
Florin Coras24793e32018-05-09 11:34:25 -07001376 if (n_bufs_per_seg > available_bufs)
Florin Corasb2215d62017-08-01 16:56:58 -07001377 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001378 *b = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001379 return 0;
1380 }
1381 }
1382
Florin Coras9ece3c02018-11-05 11:06:53 -08001383 (void) tcp_get_free_buffer_index (wrk, &bi);
Florin Coras24793e32018-05-09 11:34:25 -07001384 ASSERT (bi != (u32) ~ 0);
1385 *b = vlib_get_buffer (vm, bi);
1386 data = tcp_init_buffer (vm, *b);
Florin Corase87216f2017-08-17 16:59:22 -07001387 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
Florin Corasbe72ae62018-11-01 11:23:03 -07001388 bytes_per_buffer - MAX_HDRS_LEN);
Florin Corasb2215d62017-08-01 16:56:58 -07001389 b[0]->current_length = n_bytes;
1390 b[0]->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
1391 b[0]->total_length_not_including_first_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001392 max_deq_bytes -= n_bytes;
1393
1394 chain_b = *b;
1395 for (i = 1; i < n_bufs_per_seg; i++)
1396 {
1397 prev_b = chain_b;
Florin Corasbe72ae62018-11-01 11:23:03 -07001398 len_to_deq = clib_min (max_deq_bytes, bytes_per_buffer);
1399 tcp_get_free_buffer_index (wrk, &chain_bi);
Florin Corasb2215d62017-08-01 16:56:58 -07001400 ASSERT (chain_bi != (u32) ~ 0);
1401 chain_b = vlib_get_buffer (vm, chain_bi);
1402 chain_b->current_data = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001403 data = vlib_buffer_get_current (chain_b);
1404 n_peeked = stream_session_peek_bytes (&tc->connection, data,
Florin Coras1f152cd2017-08-18 19:28:03 -07001405 offset + n_bytes, len_to_deq);
Florin Corasb2215d62017-08-01 16:56:58 -07001406 ASSERT (n_peeked == len_to_deq);
Florin Coras1f152cd2017-08-18 19:28:03 -07001407 n_bytes += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001408 chain_b->current_length = n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001409 chain_b->next_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001410
1411 /* update previous buffer */
1412 prev_b->next_buffer = chain_bi;
1413 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
1414
Florin Corasb2215d62017-08-01 16:56:58 -07001415 max_deq_bytes -= n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001416 b[0]->total_length_not_including_first_buffer += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001417 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001418
Florin Corasb26743d2018-06-26 09:31:04 -07001419 tcp_push_hdr_i (tc, *b, tc->state, /* compute opts */ 0, /* burst */ 0);
Florin Coras208daa12018-07-02 01:30:51 -07001420 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
1421 tc->snd_una_max = tc->snd_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001422 }
1423
Florin Coras93992a92017-05-24 18:03:56 -07001424 ASSERT (n_bytes > 0);
Florin Corasbe72ae62018-11-01 11:23:03 -07001425 ASSERT (((*b)->current_data + (*b)->current_length) <= bytes_per_buffer);
Florin Corasbb292f42017-05-19 09:49:19 -07001426
Florin Coras36ee9f12018-11-02 12:52:10 -07001427 return n_bytes;
1428}
1429
1430/**
1431 * Build a retransmit segment
1432 *
1433 * @return the number of bytes in the segment or 0 if there's nothing to
1434 * retransmit
1435 */
1436static u32
1437tcp_prepare_retransmit_segment (tcp_worker_ctx_t * wrk,
1438 tcp_connection_t * tc, u32 offset,
1439 u32 max_deq_bytes, vlib_buffer_t ** b)
1440{
1441 u32 start, available_bytes;
1442 int n_bytes = 0;
1443
1444 ASSERT (tc->state >= TCP_STATE_ESTABLISHED);
1445 ASSERT (max_deq_bytes != 0);
1446
1447 /*
1448 * Make sure we can retransmit something
1449 */
1450 available_bytes = session_tx_fifo_max_dequeue (&tc->connection);
1451 ASSERT (available_bytes >= offset);
1452 available_bytes -= offset;
1453 if (!available_bytes)
1454 return 0;
1455
1456 max_deq_bytes = clib_min (tc->snd_mss, max_deq_bytes);
1457 max_deq_bytes = clib_min (available_bytes, max_deq_bytes);
1458
1459 /* Start is beyond snd_congestion */
1460 start = tc->snd_una + offset;
1461 if (seq_geq (start, tc->snd_congestion))
1462 goto done;
1463
1464 /* Don't overshoot snd_congestion */
1465 if (seq_gt (start + max_deq_bytes, tc->snd_congestion))
1466 {
1467 max_deq_bytes = tc->snd_congestion - start;
1468 if (max_deq_bytes == 0)
1469 goto done;
1470 }
1471
1472 n_bytes = tcp_prepare_segment (wrk, tc, offset, max_deq_bytes, b);
1473 if (!n_bytes)
1474 return 0;
1475
Florin Coras93992a92017-05-24 18:03:56 -07001476 if (tcp_in_fastrecovery (tc))
1477 tc->snd_rxt_bytes += n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001478
Florin Coras6792ec02017-03-13 03:49:51 -07001479done:
1480 TCP_EVT_DBG (TCP_EVT_CC_RTX, tc, offset, n_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001481 return n_bytes;
1482}
1483
Florin Coras6792ec02017-03-13 03:49:51 -07001484/**
1485 * Reset congestion control, switch cwnd to loss window and try again.
1486 */
1487static void
Florin Corasca1c8f32018-05-23 21:01:30 -07001488tcp_rxt_timeout_cc (tcp_connection_t * tc)
Florin Coras6792ec02017-03-13 03:49:51 -07001489{
Florin Corasca1c8f32018-05-23 21:01:30 -07001490 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 6);
Florin Coras93992a92017-05-24 18:03:56 -07001491 tc->prev_ssthresh = tc->ssthresh;
1492 tc->prev_cwnd = tc->cwnd;
1493
Florin Coras6792ec02017-03-13 03:49:51 -07001494 /* Cleanly recover cc (also clears up fast retransmit) */
1495 if (tcp_in_fastrecovery (tc))
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001496 {
1497 /* TODO be less aggressive about this */
1498 scoreboard_clear (&tc->sack_sb);
1499 tcp_cc_fastrecovery_exit (tc);
1500 }
Florin Coras6792ec02017-03-13 03:49:51 -07001501
1502 /* Start again from the beginning */
Florin Corasd2aab832018-05-22 11:39:59 -07001503 tc->cc_algo->congestion (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001504 tc->cwnd = tcp_loss_wnd (tc);
1505 tc->snd_congestion = tc->snd_una_max;
Florin Corasf1762d62017-09-24 19:43:08 -04001506 tc->rtt_ts = 0;
Florin Corasd2aab832018-05-22 11:39:59 -07001507 tc->cwnd_acc_bytes = 0;
Florin Corasc44a5582018-11-01 16:30:54 -07001508 tcp_connection_tx_pacer_reset (tc, tc->cwnd, 2 * tc->snd_mss);
Florin Coras3af90fc2017-05-03 21:09:42 -07001509 tcp_recovery_on (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001510}
1511
Florin Coras0dbd5172018-06-25 16:19:34 -07001512static inline void
Dave Barach68b0fb02017-02-28 15:15:56 -05001513tcp_timer_retransmit_handler_i (u32 index, u8 is_syn)
1514{
Damjan Marion586afd72017-04-05 19:18:20 +02001515 u32 thread_index = vlib_get_thread_index ();
Florin Corasbe72ae62018-11-01 11:23:03 -07001516 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
1517 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -05001518 tcp_connection_t *tc;
Florin Corasb2215d62017-08-01 16:56:58 -07001519 vlib_buffer_t *b = 0;
Florin Coras3af90fc2017-05-03 21:09:42 -07001520 u32 bi, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001521
1522 if (is_syn)
1523 {
1524 tc = tcp_half_open_connection_get (index);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001525 /* Note: the connection may have transitioned to ESTABLISHED... */
Florin Coras311e11b2018-12-05 11:19:14 -08001526 if (PREDICT_FALSE (tc == 0 || tc->state != TCP_STATE_SYN_SENT))
Dave Barachb7f1faa2017-08-29 11:43:37 -04001527 return;
Florin Coras68810622017-07-24 17:40:28 -07001528 tc->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05001529 }
1530 else
1531 {
1532 tc = tcp_connection_get (index, thread_index);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001533 /* Note: the connection may have been closed and pool_put */
Florin Coras311e11b2018-12-05 11:19:14 -08001534 if (PREDICT_FALSE (tc == 0 || tc->state < TCP_STATE_SYN_RCVD))
Dave Barachb7f1faa2017-08-29 11:43:37 -04001535 return;
Florin Coras68810622017-07-24 17:40:28 -07001536 tc->timers[TCP_TIMER_RETRANSMIT] = TCP_TIMER_HANDLE_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05001537 }
1538
Florin Corase04c2992017-03-01 08:17:34 -08001539 if (tc->state >= TCP_STATE_ESTABLISHED)
Dave Barach68b0fb02017-02-28 15:15:56 -05001540 {
Florin Corase55a6d72018-10-31 23:09:22 -07001541 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2);
1542
Florin Coras93992a92017-05-24 18:03:56 -07001543 /* Lost FIN, retransmit and return */
Florin Coras93e65802017-11-29 00:07:11 -05001544 if (tcp_is_lost_fin (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001545 {
1546 tcp_send_fin (tc);
Florin Corasf988e692017-11-27 04:34:14 -05001547 tc->rto_boff += 1;
1548 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
Florin Coras93992a92017-05-24 18:03:56 -07001549 return;
1550 }
1551
Florin Coras3ec66b02018-08-23 16:27:05 -07001552 /* Shouldn't be here. This condition is tricky because it has to take
1553 * into account boff > 0 due to persist timeout. */
Florin Coras887b7ba2018-06-09 06:49:59 -07001554 if ((tc->rto_boff == 0 && tc->snd_una == tc->snd_una_max)
Florin Coras3ec66b02018-08-23 16:27:05 -07001555 || (tc->rto_boff > 0 && seq_geq (tc->snd_una, tc->snd_congestion)
1556 && !tcp_flight_size (tc)))
Florin Corasa096f2d2017-09-28 23:49:42 -04001557 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001558 ASSERT (!tcp_in_recovery (tc));
1559 tc->rto_boff = 0;
Florin Corasa096f2d2017-09-28 23:49:42 -04001560 return;
1561 }
1562
Florin Coras3ec66b02018-08-23 16:27:05 -07001563 /* We're not in recovery so make sure rto_boff is 0. Can be non 0 due
1564 * to persist timer timeout */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001565 if (!tcp_in_recovery (tc) && tc->rto_boff > 0)
1566 {
1567 tc->rto_boff = 0;
1568 tcp_update_rto (tc);
1569 }
1570
1571 /* Increment RTO backoff (also equal to number of retries) and go back
1572 * to first un-acked byte */
1573 tc->rto_boff += 1;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001574
Florin Coras6792ec02017-03-13 03:49:51 -07001575 /* First retransmit timeout */
1576 if (tc->rto_boff == 1)
Florin Corasca1c8f32018-05-23 21:01:30 -07001577 tcp_rxt_timeout_cc (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001578 else
1579 scoreboard_clear (&tc->sack_sb);
Dave Barach68b0fb02017-02-28 15:15:56 -05001580
Florin Coras3ec66b02018-08-23 16:27:05 -07001581 /* If we've sent beyond snd_congestion, update it */
1582 if (seq_gt (tc->snd_una_max, tc->snd_congestion))
1583 tc->snd_congestion = tc->snd_una_max;
1584
Florin Corasd2aab832018-05-22 11:39:59 -07001585 tc->snd_una_max = tc->snd_nxt = tc->snd_una;
Dave Barach68b0fb02017-02-28 15:15:56 -05001586 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1587
Florin Coras3ec66b02018-08-23 16:27:05 -07001588 /* Send one segment. Note that n_bytes may be zero due to buffer
1589 * shortfall */
Florin Corasbe72ae62018-11-01 11:23:03 -07001590 n_bytes = tcp_prepare_retransmit_segment (wrk, tc, 0, tc->snd_mss, &b);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001591
Florin Coras3af90fc2017-05-03 21:09:42 -07001592 if (n_bytes == 0)
Florin Corase04c2992017-03-01 08:17:34 -08001593 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001594 tcp_retransmit_timer_force_update (tc);
Florin Corase04c2992017-03-01 08:17:34 -08001595 return;
1596 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001597
Dave Barachb7f1faa2017-08-29 11:43:37 -04001598 bi = vlib_get_buffer_index (vm, b);
1599
Florin Coras93992a92017-05-24 18:03:56 -07001600 /* For first retransmit, record timestamp (Eifel detection RFC3522) */
1601 if (tc->rto_boff == 1)
Florin Corasbe72ae62018-11-01 11:23:03 -07001602 tc->snd_rxt_ts = tcp_time_now_w_thread (tc->c_thread_index);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001603
Florin Corasbe72ae62018-11-01 11:23:03 -07001604 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras3ec66b02018-08-23 16:27:05 -07001605 tcp_retransmit_timer_force_update (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001606 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001607 /* Retransmit for SYN */
1608 else if (tc->state == TCP_STATE_SYN_SENT)
Florin Coras93992a92017-05-24 18:03:56 -07001609 {
Florin Coras68810622017-07-24 17:40:28 -07001610 /* Half-open connection actually moved to established but we were
1611 * waiting for syn retransmit to pop to call cleanup from the right
1612 * thread. */
1613 if (tc->flags & TCP_CONN_HALF_OPEN_DONE)
1614 {
Florin Coras68810622017-07-24 17:40:28 -07001615 if (tcp_half_open_connection_cleanup (tc))
1616 {
1617 clib_warning ("could not remove half-open connection");
1618 ASSERT (0);
1619 }
1620 return;
1621 }
1622
Florin Corase55a6d72018-10-31 23:09:22 -07001623 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2);
1624
Dave Barach68b0fb02017-02-28 15:15:56 -05001625 /* Try without increasing RTO a number of times. If this fails,
1626 * start growing RTO exponentially */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001627 tc->rto_boff += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001628 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1629 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1630
Florin Corasf988e692017-11-27 04:34:14 -05001631 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN,
1632 tc->rto * TCP_TO_TIMER_TICK);
1633
Florin Corasbe72ae62018-11-01 11:23:03 -07001634 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001635 return;
1636
Florin Corasb2215d62017-08-01 16:56:58 -07001637 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001638 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001639 tcp_make_syn (tc, b);
Florin Corase04c2992017-03-01 08:17:34 -08001640
Dave Barach2c25a622017-06-26 11:35:07 -04001641 tc->rtt_ts = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001642 TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 0);
1643
1644 /* This goes straight to ipx_lookup. Retransmit timer set already */
Florin Corasbe72ae62018-11-01 11:23:03 -07001645 tcp_push_ip_hdr (wrk, tc, b);
1646 tcp_enqueue_to_ip_lookup (wrk, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001647 }
1648 /* Retransmit SYN-ACK */
1649 else if (tc->state == TCP_STATE_SYN_RCVD)
1650 {
Florin Corase55a6d72018-10-31 23:09:22 -07001651 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2);
1652
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001653 tc->rto_boff += 1;
Florin Coras9d063042017-09-14 03:08:00 -04001654 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1655 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001656 tc->rtt_ts = 0;
1657
Florin Corasbe72ae62018-11-01 11:23:03 -07001658 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
Florin Corasf988e692017-11-27 04:34:14 -05001659 {
1660 tcp_retransmit_timer_force_update (tc);
1661 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);
1709
1710 if (!tc)
1711 return;
Florin Coras3e350af2017-03-30 02:54:28 -07001712
1713 /* Make sure timer handle is set to invalid */
1714 tc->timers[TCP_TIMER_PERSIST] = TCP_TIMER_HANDLE_INVALID;
1715
1716 /* Problem already solved or worse */
Florin Corasf03a59a2017-06-09 21:07:32 -07001717 if (tc->state == TCP_STATE_CLOSED || tc->state > TCP_STATE_ESTABLISHED
Florin Coras2e31cc32018-09-25 14:00:34 -07001718 || tc->snd_wnd > tc->snd_mss)
Florin Coras3e350af2017-03-30 02:54:28 -07001719 return;
1720
Florin Coras25579b42018-06-06 17:55:02 -07001721 available_bytes = session_tx_fifo_max_dequeue (&tc->connection);
Florin Coras50958952017-08-29 14:50:13 -07001722 offset = tc->snd_una_max - tc->snd_una;
1723
1724 /* Reprogram persist if no new bytes available to send. We may have data
1725 * next time */
1726 if (!available_bytes)
1727 {
1728 tcp_persist_timer_set (tc);
1729 return;
1730 }
1731
1732 if (available_bytes <= offset)
1733 {
1734 ASSERT (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT));
1735 return;
1736 }
1737
Florin Coras3e350af2017-03-30 02:54:28 -07001738 /* Increment RTO backoff */
1739 tc->rto_boff += 1;
1740 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1741
Florin Corasb2215d62017-08-01 16:56:58 -07001742 /*
1743 * Try to force the first unsent segment (or buffer)
1744 */
Florin Corasbe72ae62018-11-01 11:23:03 -07001745 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
Florin Coras3ec66b02018-08-23 16:27:05 -07001746 {
1747 tcp_persist_timer_set (tc);
1748 return;
1749 }
Florin Coras3e350af2017-03-30 02:54:28 -07001750 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001751 data = tcp_init_buffer (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001752
Florin Coras1f152cd2017-08-18 19:28:03 -07001753 tcp_validate_txf_size (tc, offset);
Florin Corasc8343412017-05-04 14:25:50 -07001754 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
Florin Coras1f152cd2017-08-18 19:28:03 -07001755 max_snd_bytes = clib_min (tc->snd_mss, tm->bytes_per_buffer - MAX_HDRS_LEN);
1756 n_bytes = stream_session_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
1859 max_deq = session_tx_fifo_max_dequeue (&tc->connection);
1860 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
1986 max_deq = session_tx_fifo_max_dequeue (&tc->connection);
1987 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}
2018
Florin Corasf9d05682018-04-26 08:26:52 -07002019static void
2020tcp_output_handle_link_local (tcp_connection_t * tc0, vlib_buffer_t * b0,
Florin Coras8b20bf52018-06-14 14:55:50 -07002021 u16 * next0, u32 * error0)
Florin Corasf9d05682018-04-26 08:26:52 -07002022{
2023 ip_adjacency_t *adj;
2024 adj_index_t ai;
2025
Florin Coras1c8ff632018-05-17 13:28:34 -07002026 /* Not thread safe but as long as the connection exists the adj should
2027 * not be removed */
Florin Corasf9d05682018-04-26 08:26:52 -07002028 ai = adj_nbr_find (FIB_PROTOCOL_IP6, VNET_LINK_IP6, &tc0->c_rmt_ip,
2029 tc0->sw_if_index);
2030 if (ai == ADJ_INDEX_INVALID)
2031 {
Florin Corasf9d05682018-04-26 08:26:52 -07002032 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
2033 *next0 = TCP_OUTPUT_NEXT_DROP;
2034 *error0 = TCP_ERROR_LINK_LOCAL_RW;
2035 return;
2036 }
2037
2038 adj = adj_get (ai);
Florin Coras1c8ff632018-05-17 13:28:34 -07002039 if (PREDICT_TRUE (adj->lookup_next_index == IP_LOOKUP_NEXT_REWRITE))
Florin Corasf9d05682018-04-26 08:26:52 -07002040 *next0 = TCP_OUTPUT_NEXT_IP_REWRITE;
2041 else if (adj->lookup_next_index == IP_LOOKUP_NEXT_ARP)
2042 *next0 = TCP_OUTPUT_NEXT_IP_ARP;
Florin Coras1c8ff632018-05-17 13:28:34 -07002043 else
2044 {
2045 *next0 = TCP_OUTPUT_NEXT_DROP;
2046 *error0 = TCP_ERROR_LINK_LOCAL_RW;
2047 }
2048 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = ai;
Florin Corasf9d05682018-04-26 08:26:52 -07002049}
2050
Florin Coras8b20bf52018-06-14 14:55:50 -07002051static void
2052tcp46_output_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2053 u32 * to_next, u32 n_bufs)
Dave Barach68b0fb02017-02-28 15:15:56 -05002054{
Florin Coras8b20bf52018-06-14 14:55:50 -07002055 u32 n_trace = vlib_get_trace_count (vm, node);
2056 tcp_connection_t *tc;
2057 tcp_tx_trace_t *t;
2058 vlib_buffer_t *b;
2059 tcp_header_t *th;
2060 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05002061
Florin Coras8b20bf52018-06-14 14:55:50 -07002062 for (i = 0; i < clib_min (n_trace, n_bufs); i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05002063 {
Florin Coras8b20bf52018-06-14 14:55:50 -07002064 b = vlib_get_buffer (vm, to_next[i]);
2065 th = vlib_buffer_get_current (b);
2066 tc = tcp_connection_get (vnet_buffer (b)->tcp.connection_index,
2067 vm->thread_index);
2068 t = vlib_add_trace (vm, node, b, sizeof (*t));
Dave Barach178cf492018-11-13 16:34:13 -05002069 clib_memcpy_fast (&t->tcp_header, th, sizeof (t->tcp_header));
2070 clib_memcpy_fast (&t->tcp_connection, tc, sizeof (t->tcp_connection));
Florin Coras8b20bf52018-06-14 14:55:50 -07002071 }
2072}
Dave Barach68b0fb02017-02-28 15:15:56 -05002073
Florin Coras0dbd5172018-06-25 16:19:34 -07002074always_inline void
Florin Coras8b20bf52018-06-14 14:55:50 -07002075tcp_output_push_ip (vlib_main_t * vm, vlib_buffer_t * b0,
2076 tcp_connection_t * tc0, u8 is_ip4)
2077{
2078 tcp_header_t *th0 = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002079
Florin Coras8b20bf52018-06-14 14:55:50 -07002080 th0 = vlib_buffer_get_current (b0);
2081 TCP_EVT_DBG (TCP_EVT_OUTPUT, tc0, th0->flags, b0->current_length);
2082 if (is_ip4)
2083 {
2084 vlib_buffer_push_ip4 (vm, b0, &tc0->c_lcl_ip4, &tc0->c_rmt_ip4,
2085 IP_PROTOCOL_TCP, 1);
2086 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
2087 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
2088 th0->checksum = 0;
2089 }
2090 else
2091 {
2092 ip6_header_t *ih0;
2093 ih0 = vlib_buffer_push_ip6 (vm, b0, &tc0->c_lcl_ip6,
2094 &tc0->c_rmt_ip6, IP_PROTOCOL_TCP);
2095 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
2096 vnet_buffer (b0)->l3_hdr_offset = (u8 *) ih0 - b0->data;
2097 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
2098 th0->checksum = 0;
2099 }
2100}
Dave Barach68b0fb02017-02-28 15:15:56 -05002101
Florin Coras0dbd5172018-06-25 16:19:34 -07002102always_inline void
Florin Coras8b20bf52018-06-14 14:55:50 -07002103tcp_output_handle_packet (tcp_connection_t * tc0, vlib_buffer_t * b0,
2104 u32 * error0, u16 * next0, u8 is_ip4)
2105{
Florin Coras81a13db2018-03-16 08:48:31 -07002106
Florin Coras8b20bf52018-06-14 14:55:50 -07002107 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
2108 {
2109 *error0 = TCP_ERROR_INVALID_CONNECTION;
2110 *next0 = TCP_OUTPUT_NEXT_DROP;
2111 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05002112 }
2113
Florin Coras8b20bf52018-06-14 14:55:50 -07002114 vnet_buffer (b0)->sw_if_index[VLIB_TX] = tc0->c_fib_index;
2115 vnet_buffer (b0)->sw_if_index[VLIB_RX] = 0;
2116
2117 if (!is_ip4)
2118 {
2119 if (PREDICT_FALSE (ip6_address_is_link_local_unicast (&tc0->c_rmt_ip6)))
2120 tcp_output_handle_link_local (tc0, b0, next0, error0);
2121 }
2122
Florin Coras8b20bf52018-06-14 14:55:50 -07002123 if (!TCP_ALWAYS_ACK)
2124 tcp_timer_reset (tc0, TCP_TIMER_DELACK);
2125}
2126
2127always_inline uword
2128tcp46_output_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2129 vlib_frame_t * frame, int is_ip4)
2130{
2131 u32 n_left_from, *from, thread_index = vm->thread_index;
2132 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
2133 u16 nexts[VLIB_FRAME_SIZE], *next;
2134
2135 from = vlib_frame_vector_args (frame);
2136 n_left_from = frame->n_vectors;
Florin Corasbe72ae62018-11-01 11:23:03 -07002137 tcp_set_time_now (tcp_get_worker (thread_index));
Florin Coras8b20bf52018-06-14 14:55:50 -07002138
2139 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
2140 tcp46_output_trace_frame (vm, node, from, n_left_from);
2141
2142 vlib_get_buffers (vm, from, bufs, n_left_from);
2143 b = bufs;
2144 next = nexts;
2145
2146 while (n_left_from >= 4)
2147 {
2148 u32 error0 = TCP_ERROR_PKTS_SENT, error1 = TCP_ERROR_PKTS_SENT;
2149 tcp_connection_t *tc0, *tc1;
2150
2151 {
2152 vlib_prefetch_buffer_header (b[2], STORE);
2153 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
2154
2155 vlib_prefetch_buffer_header (b[3], STORE);
2156 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
2157 }
2158
2159 next[0] = next[1] = TCP_OUTPUT_NEXT_IP_LOOKUP;
2160
2161 tc0 = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index,
2162 thread_index);
2163 tc1 = tcp_connection_get (vnet_buffer (b[1])->tcp.connection_index,
2164 thread_index);
2165
2166 tcp_output_push_ip (vm, b[0], tc0, is_ip4);
2167 tcp_output_push_ip (vm, b[1], tc1, is_ip4);
2168
2169 tcp_output_handle_packet (tc0, b[0], &error0, &next[0], is_ip4);
2170 tcp_output_handle_packet (tc1, b[1], &error1, &next[1], is_ip4);
2171
2172 b += 2;
2173 next += 2;
2174 n_left_from -= 2;
2175 }
2176 while (n_left_from > 0)
2177 {
2178 u32 error0 = TCP_ERROR_PKTS_SENT;
2179 tcp_connection_t *tc0;
2180
2181 if (n_left_from > 1)
2182 {
Florin Coras91ca4622018-06-30 11:27:59 -07002183 vlib_prefetch_buffer_header (b[1], STORE);
2184 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
Florin Coras8b20bf52018-06-14 14:55:50 -07002185 }
2186
2187 next[0] = TCP_OUTPUT_NEXT_IP_LOOKUP;
2188 tc0 = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index,
2189 thread_index);
2190
2191 tcp_output_push_ip (vm, b[0], tc0, is_ip4);
2192 tcp_output_handle_packet (tc0, b[0], &error0, &next[0], is_ip4);
2193
2194 b += 1;
2195 next += 1;
2196 n_left_from -= 1;
2197 }
2198
2199 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
2200 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002201}
2202
2203static uword
2204tcp4_output (vlib_main_t * vm, vlib_node_runtime_t * node,
2205 vlib_frame_t * from_frame)
2206{
2207 return tcp46_output_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2208}
2209
2210static uword
2211tcp6_output (vlib_main_t * vm, vlib_node_runtime_t * node,
2212 vlib_frame_t * from_frame)
2213{
2214 return tcp46_output_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2215}
2216
Florin Corase69f4952017-03-07 10:06:24 -08002217/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002218VLIB_REGISTER_NODE (tcp4_output_node) =
2219{
Dave Barachf970d2f2018-11-26 18:34:33 -05002220 .function = tcp4_output,
2221 .name = "tcp4-output",
2222 /* Takes a vector of packets. */
2223 .vector_size = sizeof (u32),
2224 .n_errors = TCP_N_ERROR,
Dave Barach7fff3d22018-11-27 16:52:59 -05002225 .protocol_hint = VLIB_NODE_PROTO_HINT_TCP,
Dave Barachf970d2f2018-11-26 18:34:33 -05002226 .error_strings = tcp_error_strings,
2227 .n_next_nodes = TCP_OUTPUT_N_NEXT,
2228 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002229#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
2230 foreach_tcp4_output_next
2231#undef _
Dave Barachf970d2f2018-11-26 18:34:33 -05002232 },
2233 .format_buffer = format_tcp_header,
2234 .format_trace = format_tcp_tx_trace,
Florin Corase69f4952017-03-07 10:06:24 -08002235};
2236/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002237
Florin Corase69f4952017-03-07 10:06:24 -08002238VLIB_NODE_FUNCTION_MULTIARCH (tcp4_output_node, tcp4_output);
2239
2240/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002241VLIB_REGISTER_NODE (tcp6_output_node) =
2242{
Florin Corase69f4952017-03-07 10:06:24 -08002243 .function = tcp6_output,
2244 .name = "tcp6-output",
Dave Barach68b0fb02017-02-28 15:15:56 -05002245 /* Takes a vector of packets. */
Florin Corase69f4952017-03-07 10:06:24 -08002246 .vector_size = sizeof (u32),
2247 .n_errors = TCP_N_ERROR,
Dave Barach7fff3d22018-11-27 16:52:59 -05002248 .protocol_hint = VLIB_NODE_PROTO_HINT_TCP,
Florin Corase69f4952017-03-07 10:06:24 -08002249 .error_strings = tcp_error_strings,
2250 .n_next_nodes = TCP_OUTPUT_N_NEXT,
2251 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002252#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
2253 foreach_tcp6_output_next
2254#undef _
Florin Corase69f4952017-03-07 10:06:24 -08002255 },
2256 .format_buffer = format_tcp_header,
2257 .format_trace = format_tcp_tx_trace,
2258};
2259/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002260
Florin Corase69f4952017-03-07 10:06:24 -08002261VLIB_NODE_FUNCTION_MULTIARCH (tcp6_output_node, tcp6_output);
2262
Dave Barach68b0fb02017-02-28 15:15:56 -05002263typedef enum _tcp_reset_next
2264{
2265 TCP_RESET_NEXT_DROP,
2266 TCP_RESET_NEXT_IP_LOOKUP,
2267 TCP_RESET_N_NEXT
2268} tcp_reset_next_t;
2269
2270#define foreach_tcp4_reset_next \
2271 _(DROP, "error-drop") \
2272 _(IP_LOOKUP, "ip4-lookup")
2273
2274#define foreach_tcp6_reset_next \
2275 _(DROP, "error-drop") \
2276 _(IP_LOOKUP, "ip6-lookup")
2277
2278static uword
2279tcp46_send_reset_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2280 vlib_frame_t * from_frame, u8 is_ip4)
2281{
2282 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02002283 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002284
2285 from = vlib_frame_vector_args (from_frame);
2286 n_left_from = from_frame->n_vectors;
2287
2288 next_index = node->cached_next_index;
2289
2290 while (n_left_from > 0)
2291 {
2292 u32 n_left_to_next;
2293
2294 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2295
2296 while (n_left_from > 0 && n_left_to_next > 0)
2297 {
2298 u32 bi0;
2299 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002300 tcp_tx_trace_t *t0;
2301 tcp_header_t *th0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002302 u32 error0 = TCP_ERROR_RST_SENT, next0 = TCP_RESET_NEXT_IP_LOOKUP;
2303
2304 bi0 = from[0];
2305 to_next[0] = bi0;
2306 from += 1;
2307 to_next += 1;
2308 n_left_from -= 1;
2309 n_left_to_next -= 1;
2310
2311 b0 = vlib_get_buffer (vm, bi0);
2312
2313 if (tcp_make_reset_in_place (vm, b0, vnet_buffer (b0)->tcp.flags,
2314 my_thread_index, is_ip4))
2315 {
2316 error0 = TCP_ERROR_LOOKUP_DROPS;
2317 next0 = TCP_RESET_NEXT_DROP;
2318 goto done;
2319 }
2320
2321 /* Prepare to send to IP lookup */
Florin Corasf988e692017-11-27 04:34:14 -05002322 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002323 next0 = TCP_RESET_NEXT_IP_LOOKUP;
2324
2325 done:
Florin Corase69f4952017-03-07 10:06:24 -08002326 b0->error = node->errors[error0];
Damjan Marion213b5aa2017-07-13 21:19:27 +02002327 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002328 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2329 {
Clement Durand6cf260c2017-04-13 13:27:04 +02002330 th0 = vlib_buffer_get_current (b0);
2331 if (is_ip4)
2332 th0 = ip4_next_header ((ip4_header_t *) th0);
2333 else
2334 th0 = ip6_next_header ((ip6_header_t *) th0);
Clement Durand6cf260c2017-04-13 13:27:04 +02002335 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05002336 clib_memcpy_fast (&t0->tcp_header, th0,
2337 sizeof (t0->tcp_header));
Dave Barach68b0fb02017-02-28 15:15:56 -05002338 }
2339
2340 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2341 n_left_to_next, bi0, next0);
2342 }
2343 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2344 }
2345 return from_frame->n_vectors;
2346}
2347
2348static uword
2349tcp4_send_reset (vlib_main_t * vm, vlib_node_runtime_t * node,
2350 vlib_frame_t * from_frame)
2351{
2352 return tcp46_send_reset_inline (vm, node, from_frame, 1);
2353}
2354
2355static uword
2356tcp6_send_reset (vlib_main_t * vm, vlib_node_runtime_t * node,
2357 vlib_frame_t * from_frame)
2358{
2359 return tcp46_send_reset_inline (vm, node, from_frame, 0);
2360}
2361
2362/* *INDENT-OFF* */
2363VLIB_REGISTER_NODE (tcp4_reset_node) = {
2364 .function = tcp4_send_reset,
2365 .name = "tcp4-reset",
2366 .vector_size = sizeof (u32),
2367 .n_errors = TCP_N_ERROR,
2368 .error_strings = tcp_error_strings,
2369 .n_next_nodes = TCP_RESET_N_NEXT,
2370 .next_nodes = {
2371#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2372 foreach_tcp4_reset_next
2373#undef _
2374 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002375 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002376};
2377/* *INDENT-ON* */
2378
Florin Corase69f4952017-03-07 10:06:24 -08002379VLIB_NODE_FUNCTION_MULTIARCH (tcp4_reset_node, tcp4_send_reset);
2380
Dave Barach68b0fb02017-02-28 15:15:56 -05002381/* *INDENT-OFF* */
2382VLIB_REGISTER_NODE (tcp6_reset_node) = {
2383 .function = tcp6_send_reset,
2384 .name = "tcp6-reset",
2385 .vector_size = sizeof (u32),
2386 .n_errors = TCP_N_ERROR,
2387 .error_strings = tcp_error_strings,
2388 .n_next_nodes = TCP_RESET_N_NEXT,
2389 .next_nodes = {
2390#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2391 foreach_tcp6_reset_next
2392#undef _
2393 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002394 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002395};
2396/* *INDENT-ON* */
2397
Florin Corase69f4952017-03-07 10:06:24 -08002398VLIB_NODE_FUNCTION_MULTIARCH (tcp6_reset_node, tcp6_send_reset);
2399
Dave Barach68b0fb02017-02-28 15:15:56 -05002400/*
2401 * fd.io coding-style-patch-verification: ON
2402 *
2403 * Local Variables:
2404 * eval: (c-set-style "gnu")
2405 * End:
2406 */