blob: 97f5b81f9e81daeea2b463dc63c38375efaeab2d [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:
Florin Coras25579b42018-06-06 17:55:02 -0700395 case TCP_STATE_CLOSE_WAIT:
Florin Coras54ddf432018-12-21 13:54:09 -0800396 case TCP_STATE_FIN_WAIT_1:
397 case TCP_STATE_LAST_ACK:
398 case TCP_STATE_CLOSING:
399 case TCP_STATE_FIN_WAIT_2:
400 case TCP_STATE_TIME_WAIT:
401 case TCP_STATE_CLOSED:
Dave Barach68b0fb02017-02-28 15:15:56 -0500402 return tcp_make_established_options (tc, opts);
403 case TCP_STATE_SYN_RCVD:
404 return tcp_make_synack_options (tc, opts);
405 case TCP_STATE_SYN_SENT:
Florin Corase04c2992017-03-01 08:17:34 -0800406 return tcp_make_syn_options (opts, tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500407 default:
Florin Coras371ca502018-02-21 12:07:41 -0800408 clib_warning ("State not handled! %d", state);
Dave Barach68b0fb02017-02-28 15:15:56 -0500409 return 0;
410 }
411}
412
Florin Corasc8343412017-05-04 14:25:50 -0700413/**
Florin Corasb26743d2018-06-26 09:31:04 -0700414 * Update burst send vars
415 *
416 * - Updates snd_mss to reflect the effective segment size that we can send
417 * by taking into account all TCP options, including SACKs.
418 * - Cache 'on the wire' options for reuse
419 * - Updates receive window which can be reused for a burst.
420 *
421 * This should *only* be called when doing bursts
Florin Corasc8343412017-05-04 14:25:50 -0700422 */
423void
Florin Corasb26743d2018-06-26 09:31:04 -0700424tcp_update_burst_snd_vars (tcp_connection_t * tc)
Florin Corasc8343412017-05-04 14:25:50 -0700425{
Florin Corasb26743d2018-06-26 09:31:04 -0700426 tcp_main_t *tm = &tcp_main;
427
Florin Corasc8343412017-05-04 14:25:50 -0700428 /* Compute options to be used for connection. These may be reused when
429 * sending data or to compute the effective mss (snd_mss) */
Florin Corasb26743d2018-06-26 09:31:04 -0700430 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts,
431 TCP_STATE_ESTABLISHED);
Florin Corasc8343412017-05-04 14:25:50 -0700432
433 /* XXX check if MTU has been updated */
Florin Coras93992a92017-05-24 18:03:56 -0700434 tc->snd_mss = clib_min (tc->mss, tc->rcv_opts.mss) - tc->snd_opts_len;
Florin Corasdb84e572017-05-09 18:54:52 -0700435 ASSERT (tc->snd_mss > 0);
Florin Corasb26743d2018-06-26 09:31:04 -0700436
437 tcp_options_write (tm->wrk_ctx[tc->c_thread_index].cached_opts,
438 &tc->snd_opts);
439
440 tcp_update_rcv_wnd (tc);
Florin Corasc8343412017-05-04 14:25:50 -0700441}
442
443void
444tcp_init_mss (tcp_connection_t * tc)
445{
Florin Corasdb84e572017-05-09 18:54:52 -0700446 u16 default_min_mss = 536;
Florin Corasc8343412017-05-04 14:25:50 -0700447 tcp_update_rcv_mss (tc);
448
449 /* TODO cache mss and consider PMTU discovery */
Florin Coras93992a92017-05-24 18:03:56 -0700450 tc->snd_mss = clib_min (tc->rcv_opts.mss, tc->mss);
Florin Corasc8343412017-05-04 14:25:50 -0700451
Florin Corasdb84e572017-05-09 18:54:52 -0700452 if (tc->snd_mss < 45)
Florin Corasc8343412017-05-04 14:25:50 -0700453 {
Florin Corasdb84e572017-05-09 18:54:52 -0700454 /* Assume that at least the min default mss works */
455 tc->snd_mss = default_min_mss;
Florin Coras93992a92017-05-24 18:03:56 -0700456 tc->rcv_opts.mss = default_min_mss;
Florin Corasc8343412017-05-04 14:25:50 -0700457 }
458
459 /* We should have enough space for 40 bytes of options */
460 ASSERT (tc->snd_mss > 45);
461
462 /* If we use timestamp option, account for it */
Florin Coras93992a92017-05-24 18:03:56 -0700463 if (tcp_opts_tstamp (&tc->rcv_opts))
Florin Corasc8343412017-05-04 14:25:50 -0700464 tc->snd_mss -= TCP_OPTION_LEN_TIMESTAMP;
465}
466
Florin Coras0dbd5172018-06-25 16:19:34 -0700467static int
Florin Corasbe72ae62018-11-01 11:23:03 -0700468tcp_alloc_tx_buffers (tcp_worker_ctx_t * wrk, u16 * n_bufs, u32 wanted)
Florin Corasb2215d62017-08-01 16:56:58 -0700469{
Florin Coras2f9b0c02017-09-11 20:54:15 -0400470 vlib_main_t *vm = vlib_get_main ();
Florin Coras24793e32018-05-09 11:34:25 -0700471 u32 n_alloc;
Dave Barachb7f1faa2017-08-29 11:43:37 -0400472
Florin Coras24793e32018-05-09 11:34:25 -0700473 ASSERT (wanted > *n_bufs);
Florin Corasbe72ae62018-11-01 11:23:03 -0700474 vec_validate_aligned (wrk->tx_buffers, wanted - 1, CLIB_CACHE_LINE_BYTES);
475 n_alloc = vlib_buffer_alloc (vm, &wrk->tx_buffers[*n_bufs],
Florin Coras24793e32018-05-09 11:34:25 -0700476 wanted - *n_bufs);
477 *n_bufs += n_alloc;
Florin Corasbe72ae62018-11-01 11:23:03 -0700478 _vec_len (wrk->tx_buffers) = *n_bufs;
Florin Coras24793e32018-05-09 11:34:25 -0700479 return n_alloc;
Florin Corasb2215d62017-08-01 16:56:58 -0700480}
481
482always_inline int
Florin Corasbe72ae62018-11-01 11:23:03 -0700483tcp_get_free_buffer_index (tcp_worker_ctx_t * wrk, u32 * bidx)
Florin Coras66b11312017-07-31 17:18:03 -0700484{
Florin Corasbe72ae62018-11-01 11:23:03 -0700485 u16 n_bufs = vec_len (wrk->tx_buffers);
Florin Corasf988e692017-11-27 04:34:14 -0500486
Florin Corasbe72ae62018-11-01 11:23:03 -0700487 TCP_DBG_BUFFER_ALLOC_MAYBE_FAIL (wrk->vm->thread_index);
Florin Corasf988e692017-11-27 04:34:14 -0500488
Florin Coras24793e32018-05-09 11:34:25 -0700489 if (PREDICT_FALSE (!n_bufs))
Florin Coras66b11312017-07-31 17:18:03 -0700490 {
Florin Corasbe72ae62018-11-01 11:23:03 -0700491 if (!tcp_alloc_tx_buffers (wrk, &n_bufs, VLIB_FRAME_SIZE))
Florin Coras24793e32018-05-09 11:34:25 -0700492 {
493 *bidx = ~0;
494 return -1;
495 }
Florin Coras66b11312017-07-31 17:18:03 -0700496 }
Florin Corasbe72ae62018-11-01 11:23:03 -0700497 *bidx = wrk->tx_buffers[--n_bufs];
498 _vec_len (wrk->tx_buffers) = n_bufs;
Florin Coras66b11312017-07-31 17:18:03 -0700499 return 0;
500}
Dave Barach68b0fb02017-02-28 15:15:56 -0500501
Florin Coras0dbd5172018-06-25 16:19:34 -0700502static void *
Dave Barach68b0fb02017-02-28 15:15:56 -0500503tcp_reuse_buffer (vlib_main_t * vm, vlib_buffer_t * b)
504{
Florin Corasb2215d62017-08-01 16:56:58 -0700505 if (b->flags & VLIB_BUFFER_NEXT_PRESENT)
506 vlib_buffer_free_one (vm, b->next_buffer);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400507 /* Zero all flags but free list index and trace flag */
508 b->flags &= VLIB_BUFFER_NEXT_PRESENT - 1;
Florin Coras1f152cd2017-08-18 19:28:03 -0700509 b->current_data = 0;
510 b->current_length = 0;
511 b->total_length_not_including_first_buffer = 0;
512 vnet_buffer (b)->tcp.flags = 0;
Florin Corasb2215d62017-08-01 16:56:58 -0700513
Dave Barach68b0fb02017-02-28 15:15:56 -0500514 /* Leave enough space for headers */
Florin Coras1f152cd2017-08-18 19:28:03 -0700515 return vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
516}
517
Florin Coras0dbd5172018-06-25 16:19:34 -0700518static void *
Florin Coras1f152cd2017-08-18 19:28:03 -0700519tcp_init_buffer (vlib_main_t * vm, vlib_buffer_t * b)
520{
521 ASSERT ((b->flags & VLIB_BUFFER_NEXT_PRESENT) == 0);
Damjan Mariondac03522018-02-01 15:30:13 +0100522 b->flags &= VLIB_BUFFER_NON_DEFAULT_FREELIST;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400523 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Florin Coras1f152cd2017-08-18 19:28:03 -0700524 b->total_length_not_including_first_buffer = 0;
Florin Coras24793e32018-05-09 11:34:25 -0700525 b->current_data = 0;
Florin Corasd79b41e2017-03-04 05:37:52 -0800526 vnet_buffer (b)->tcp.flags = 0;
Florin Corasf988e692017-11-27 04:34:14 -0500527 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b);
Florin Coras1f152cd2017-08-18 19:28:03 -0700528 /* Leave enough space for headers */
529 return vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
Dave Barach68b0fb02017-02-28 15:15:56 -0500530}
531
532/**
533 * Prepare ACK
534 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700535static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500536tcp_make_ack_i (tcp_connection_t * tc, vlib_buffer_t * b, tcp_state_t state,
537 u8 flags)
538{
539 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
540 u8 tcp_opts_len, tcp_hdr_opts_len;
541 tcp_header_t *th;
542 u16 wnd;
543
544 wnd = tcp_window_to_advertise (tc, state);
545
546 /* Make and write options */
547 tcp_opts_len = tcp_make_established_options (tc, snd_opts);
548 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
549
550 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
551 tc->rcv_nxt, tcp_hdr_opts_len, flags, wnd);
552
553 tcp_options_write ((u8 *) (th + 1), snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500554 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
555}
556
557/**
558 * Convert buffer to ACK
559 */
560void
561tcp_make_ack (tcp_connection_t * tc, vlib_buffer_t * b)
562{
Florin Coras6792ec02017-03-13 03:49:51 -0700563 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500564
565 tcp_reuse_buffer (vm, b);
566 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, TCP_FLAG_ACK);
Florin Coras6792ec02017-03-13 03:49:51 -0700567 TCP_EVT_DBG (TCP_EVT_ACK_SENT, tc);
Florin Coras3e350af2017-03-30 02:54:28 -0700568 tc->rcv_las = tc->rcv_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500569}
570
571/**
572 * Convert buffer to FIN-ACK
573 */
574void
Florin Corasd79b41e2017-03-04 05:37:52 -0800575tcp_make_fin (tcp_connection_t * tc, vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500576{
Florin Coras6792ec02017-03-13 03:49:51 -0700577 vlib_main_t *vm = vlib_get_main ();
Florin Corasd79b41e2017-03-04 05:37:52 -0800578 u8 flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500579
580 tcp_reuse_buffer (vm, b);
Florin Corasd79b41e2017-03-04 05:37:52 -0800581
Florin Corase69f4952017-03-07 10:06:24 -0800582 flags = TCP_FLAG_FIN | TCP_FLAG_ACK;
Florin Corasd79b41e2017-03-04 05:37:52 -0800583 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, flags);
Dave Barach68b0fb02017-02-28 15:15:56 -0500584
585 /* Reset flags, make sure ack is sent */
Dave Barach68b0fb02017-02-28 15:15:56 -0500586 vnet_buffer (b)->tcp.flags &= ~TCP_BUF_FLAG_DUPACK;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400587}
Dave Barach68b0fb02017-02-28 15:15:56 -0500588
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400589/**
590 * Convert buffer to SYN
591 */
592void
593tcp_make_syn (tcp_connection_t * tc, vlib_buffer_t * b)
594{
595 u8 tcp_hdr_opts_len, tcp_opts_len;
596 tcp_header_t *th;
597 u16 initial_wnd;
598 tcp_options_t snd_opts;
599
600 initial_wnd = tcp_initial_window_to_advertise (tc);
601
602 /* Make and write options */
Dave Barachb7b92992018-10-17 10:38:51 -0400603 clib_memset (&snd_opts, 0, sizeof (snd_opts));
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400604 tcp_opts_len = tcp_make_syn_options (&snd_opts, tc->rcv_wscale);
605 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
606
607 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
608 tc->rcv_nxt, tcp_hdr_opts_len, TCP_FLAG_SYN,
609 initial_wnd);
610 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
611 tcp_options_write ((u8 *) (th + 1), &snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500612}
613
614/**
615 * Convert buffer to SYN-ACK
616 */
617void
618tcp_make_synack (tcp_connection_t * tc, vlib_buffer_t * b)
619{
Florin Coras6792ec02017-03-13 03:49:51 -0700620 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500621 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
622 u8 tcp_opts_len, tcp_hdr_opts_len;
623 tcp_header_t *th;
624 u16 initial_wnd;
Dave Barach68b0fb02017-02-28 15:15:56 -0500625
Dave Barachb7b92992018-10-17 10:38:51 -0400626 clib_memset (snd_opts, 0, sizeof (*snd_opts));
Dave Barach68b0fb02017-02-28 15:15:56 -0500627 tcp_reuse_buffer (vm, b);
628
Dave Barach68b0fb02017-02-28 15:15:56 -0500629 initial_wnd = tcp_initial_window_to_advertise (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500630 tcp_opts_len = tcp_make_synack_options (tc, snd_opts);
631 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
632
633 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
634 tc->rcv_nxt, tcp_hdr_opts_len,
635 TCP_FLAG_SYN | TCP_FLAG_ACK, initial_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -0500636 tcp_options_write ((u8 *) (th + 1), snd_opts);
637
638 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500639
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400640 /* Init retransmit timer. Use update instead of set because of
641 * retransmissions */
642 tcp_retransmit_timer_force_update (tc);
Florin Coras6534b7a2017-07-18 05:38:03 -0400643 TCP_EVT_DBG (TCP_EVT_SYNACK_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500644}
645
646always_inline void
Florin Corasbe72ae62018-11-01 11:23:03 -0700647tcp_enqueue_to_ip_lookup_i (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi,
Florin Coras56b39f62018-03-27 17:29:32 -0700648 u8 is_ip4, u32 fib_index, u8 flush)
Dave Barach68b0fb02017-02-28 15:15:56 -0500649{
Florin Corasbe72ae62018-11-01 11:23:03 -0700650 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500651 u32 *to_next, next_index;
652 vlib_frame_t *f;
653
Damjan Marion213b5aa2017-07-13 21:19:27 +0200654 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500655 b->error = 0;
656
Florin Coras56b39f62018-03-27 17:29:32 -0700657 vnet_buffer (b)->sw_if_index[VLIB_TX] = fib_index;
658 vnet_buffer (b)->sw_if_index[VLIB_RX] = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500659
660 /* Send to IP lookup */
661 next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index;
Florin Corasf988e692017-11-27 04:34:14 -0500662 tcp_trajectory_add_start (b, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500663
Florin Corasbe72ae62018-11-01 11:23:03 -0700664 f = wrk->ip_lookup_tx_frames[!is_ip4];
Florin Coras9d063042017-09-14 03:08:00 -0400665 if (!f)
666 {
667 f = vlib_get_frame_to_node (vm, next_index);
668 ASSERT (f);
Florin Corasbe72ae62018-11-01 11:23:03 -0700669 wrk->ip_lookup_tx_frames[!is_ip4] = f;
Florin Coras9d063042017-09-14 03:08:00 -0400670 }
671
Dave Barach68b0fb02017-02-28 15:15:56 -0500672 to_next = vlib_frame_vector_args (f);
Florin Coras9d063042017-09-14 03:08:00 -0400673 to_next[f->n_vectors] = bi;
674 f->n_vectors += 1;
675 if (flush || f->n_vectors == VLIB_FRAME_SIZE)
676 {
677 vlib_put_frame_to_node (vm, next_index, f);
Florin Corasbe72ae62018-11-01 11:23:03 -0700678 wrk->ip_lookup_tx_frames[!is_ip4] = 0;
Florin Coras9d063042017-09-14 03:08:00 -0400679 }
680}
681
Florin Coras0dbd5172018-06-25 16:19:34 -0700682static void
Florin Corasbe72ae62018-11-01 11:23:03 -0700683tcp_enqueue_to_ip_lookup_now (tcp_worker_ctx_t * wrk, vlib_buffer_t * b,
684 u32 bi, u8 is_ip4, u32 fib_index)
Florin Coras9d063042017-09-14 03:08:00 -0400685{
Florin Corasbe72ae62018-11-01 11:23:03 -0700686 tcp_enqueue_to_ip_lookup_i (wrk, b, bi, is_ip4, fib_index, 1);
Florin Coras9d063042017-09-14 03:08:00 -0400687}
688
Florin Coras0dbd5172018-06-25 16:19:34 -0700689static void
Florin Corasbe72ae62018-11-01 11:23:03 -0700690tcp_enqueue_to_ip_lookup (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi,
Florin Coras56b39f62018-03-27 17:29:32 -0700691 u8 is_ip4, u32 fib_index)
Florin Coras9d063042017-09-14 03:08:00 -0400692{
Florin Corasbe72ae62018-11-01 11:23:03 -0700693 tcp_enqueue_to_ip_lookup_i (wrk, b, bi, is_ip4, fib_index, 0);
694 if (wrk->vm->thread_index == 0 && vlib_num_workers ())
695 session_flush_frames_main_thread (wrk->vm);
Dave Barach68b0fb02017-02-28 15:15:56 -0500696}
697
Florin Coras1f152cd2017-08-18 19:28:03 -0700698always_inline void
Florin Corasbe72ae62018-11-01 11:23:03 -0700699tcp_enqueue_to_output_i (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi,
Florin Coras1f152cd2017-08-18 19:28:03 -0700700 u8 is_ip4, u8 flush)
701{
Florin Coras1f152cd2017-08-18 19:28:03 -0700702 u32 *to_next, next_index;
703 vlib_frame_t *f;
704
705 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
706 b->error = 0;
707
708 /* Decide where to send the packet */
709 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
Florin Corasf988e692017-11-27 04:34:14 -0500710 tcp_trajectory_add_start (b, 2);
Florin Coras1f152cd2017-08-18 19:28:03 -0700711
712 /* Get frame to v4/6 output node */
Florin Corasbe72ae62018-11-01 11:23:03 -0700713 f = wrk->tx_frames[!is_ip4];
Florin Coras1f152cd2017-08-18 19:28:03 -0700714 if (!f)
715 {
Florin Corasbe72ae62018-11-01 11:23:03 -0700716 f = vlib_get_frame_to_node (wrk->vm, next_index);
Florin Coras1f152cd2017-08-18 19:28:03 -0700717 ASSERT (f);
Florin Corasbe72ae62018-11-01 11:23:03 -0700718 wrk->tx_frames[!is_ip4] = f;
Florin Coras1f152cd2017-08-18 19:28:03 -0700719 }
720 to_next = vlib_frame_vector_args (f);
721 to_next[f->n_vectors] = bi;
722 f->n_vectors += 1;
723 if (flush || f->n_vectors == VLIB_FRAME_SIZE)
724 {
Florin Corasbe72ae62018-11-01 11:23:03 -0700725 vlib_put_frame_to_node (wrk->vm, next_index, f);
726 wrk->tx_frames[!is_ip4] = 0;
Florin Coras1f152cd2017-08-18 19:28:03 -0700727 }
728}
729
Florin Coras0dbd5172018-06-25 16:19:34 -0700730static void
Florin Corasbe72ae62018-11-01 11:23:03 -0700731tcp_enqueue_to_output (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi,
732 u8 is_ip4)
Florin Coras1f152cd2017-08-18 19:28:03 -0700733{
Florin Corasbe72ae62018-11-01 11:23:03 -0700734 tcp_enqueue_to_output_i (wrk, b, bi, is_ip4, 0);
Florin Coras1f152cd2017-08-18 19:28:03 -0700735}
736
Florin Coras0dbd5172018-06-25 16:19:34 -0700737static void
Florin Corasbe72ae62018-11-01 11:23:03 -0700738tcp_enqueue_to_output_now (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi,
Florin Coras1f152cd2017-08-18 19:28:03 -0700739 u8 is_ip4)
740{
Florin Corasbe72ae62018-11-01 11:23:03 -0700741 tcp_enqueue_to_output_i (wrk, b, bi, is_ip4, 1);
Florin Coras1f152cd2017-08-18 19:28:03 -0700742}
743
Florin Coras0dbd5172018-06-25 16:19:34 -0700744static int
Dave Barach68b0fb02017-02-28 15:15:56 -0500745tcp_make_reset_in_place (vlib_main_t * vm, vlib_buffer_t * b0,
Florin Corasdc629cd2017-05-09 00:52:37 -0700746 tcp_state_t state, u8 thread_index, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500747{
Dave Barach68b0fb02017-02-28 15:15:56 -0500748 ip4_header_t *ih4;
749 ip6_header_t *ih6;
750 tcp_header_t *th0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700751 ip4_address_t src_ip40, dst_ip40;
752 ip6_address_t src_ip60, dst_ip60;
753 u16 src_port, dst_port;
Dave Barach68b0fb02017-02-28 15:15:56 -0500754 u32 tmp;
Florin Corasdc629cd2017-05-09 00:52:37 -0700755 u32 seq, ack;
756 u8 flags;
Dave Barach68b0fb02017-02-28 15:15:56 -0500757
758 /* Find IP and TCP headers */
Florin Corasdc629cd2017-05-09 00:52:37 -0700759 th0 = tcp_buffer_hdr (b0);
760
761 /* Save src and dst ip */
Dave Barach68b0fb02017-02-28 15:15:56 -0500762 if (is_ip4)
763 {
764 ih4 = vlib_buffer_get_current (b0);
Florin Corasdc629cd2017-05-09 00:52:37 -0700765 ASSERT ((ih4->ip_version_and_header_length & 0xF0) == 0x40);
766 src_ip40.as_u32 = ih4->src_address.as_u32;
767 dst_ip40.as_u32 = ih4->dst_address.as_u32;
Dave Barach68b0fb02017-02-28 15:15:56 -0500768 }
769 else
770 {
771 ih6 = vlib_buffer_get_current (b0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500772 ASSERT ((ih6->ip_version_traffic_class_and_flow_label & 0xF0) == 0x60);
Dave Barach178cf492018-11-13 16:34:13 -0500773 clib_memcpy_fast (&src_ip60, &ih6->src_address, sizeof (ip6_address_t));
774 clib_memcpy_fast (&dst_ip60, &ih6->dst_address, sizeof (ip6_address_t));
Dave Barach68b0fb02017-02-28 15:15:56 -0500775 }
776
Florin Corasdc629cd2017-05-09 00:52:37 -0700777 src_port = th0->src_port;
778 dst_port = th0->dst_port;
779
780 /* Try to determine what/why we're actually resetting */
Dave Barach68b0fb02017-02-28 15:15:56 -0500781 if (state == TCP_STATE_CLOSED)
782 {
783 if (!tcp_syn (th0))
784 return -1;
785
786 tmp = clib_net_to_host_u32 (th0->seq_number);
787
788 /* Got a SYN for no listener. */
Florin Corasdc629cd2017-05-09 00:52:37 -0700789 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
790 ack = clib_host_to_net_u32 (tmp + 1);
791 seq = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500792 }
Florin Corasdc629cd2017-05-09 00:52:37 -0700793 else
Dave Barach68b0fb02017-02-28 15:15:56 -0500794 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700795 flags = TCP_FLAG_RST;
796 seq = th0->ack_number;
797 ack = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500798 }
799
Florin Corasdc629cd2017-05-09 00:52:37 -0700800 tcp_reuse_buffer (vm, b0);
Florin Corasf988e692017-11-27 04:34:14 -0500801 tcp_trajectory_add_start (b0, 4);
Florin Corasdc629cd2017-05-09 00:52:37 -0700802 th0 = vlib_buffer_push_tcp_net_order (b0, dst_port, src_port, seq, ack,
803 sizeof (tcp_header_t), flags, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500804
Dave Barach68b0fb02017-02-28 15:15:56 -0500805 if (is_ip4)
806 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700807 ih4 = vlib_buffer_push_ip4 (vm, b0, &dst_ip40, &src_ip40,
Florin Corasfdbc3822017-07-27 00:34:12 -0700808 IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500809 th0->checksum = ip4_tcp_udp_compute_checksum (vm, b0, ih4);
810 }
811 else
812 {
813 int bogus = ~0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700814 ih6 = vlib_buffer_push_ip6 (vm, b0, &dst_ip60, &src_ip60,
815 IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500816 th0->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b0, ih6, &bogus);
817 ASSERT (!bogus);
818 }
819
820 return 0;
821}
822
823/**
824 * Send reset without reusing existing buffer
Florin Coras1f152cd2017-08-18 19:28:03 -0700825 *
826 * It extracts connection info out of original packet
Dave Barach68b0fb02017-02-28 15:15:56 -0500827 */
828void
Florin Coras1f152cd2017-08-18 19:28:03 -0700829tcp_send_reset_w_pkt (tcp_connection_t * tc, vlib_buffer_t * pkt, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500830{
Florin Corasbe72ae62018-11-01 11:23:03 -0700831 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
832 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500833 vlib_buffer_t *b;
Florin Coras56b39f62018-03-27 17:29:32 -0700834 u32 bi, sw_if_index, fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500835 u8 tcp_hdr_len, flags = 0;
836 tcp_header_t *th, *pkt_th;
837 u32 seq, ack;
838 ip4_header_t *ih4, *pkt_ih4;
839 ip6_header_t *ih6, *pkt_ih6;
Florin Coras56b39f62018-03-27 17:29:32 -0700840 fib_protocol_t fib_proto;
Dave Barach68b0fb02017-02-28 15:15:56 -0500841
Florin Corasbe72ae62018-11-01 11:23:03 -0700842 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
Florin Coras66b11312017-07-31 17:18:03 -0700843 return;
844
Dave Barach68b0fb02017-02-28 15:15:56 -0500845 b = vlib_get_buffer (vm, bi);
Florin Coras56b39f62018-03-27 17:29:32 -0700846 sw_if_index = vnet_buffer (pkt)->sw_if_index[VLIB_RX];
847 fib_proto = is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
848 fib_index = fib_table_get_index_for_sw_if_index (fib_proto, sw_if_index);
Florin Coras1f152cd2017-08-18 19:28:03 -0700849 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500850
851 /* Make and write options */
852 tcp_hdr_len = sizeof (tcp_header_t);
853
854 if (is_ip4)
855 {
856 pkt_ih4 = vlib_buffer_get_current (pkt);
857 pkt_th = ip4_next_header (pkt_ih4);
858 }
859 else
860 {
861 pkt_ih6 = vlib_buffer_get_current (pkt);
862 pkt_th = ip6_next_header (pkt_ih6);
863 }
864
865 if (tcp_ack (pkt_th))
866 {
867 flags = TCP_FLAG_RST;
868 seq = pkt_th->ack_number;
Florin Coras776f3d82018-11-02 08:23:58 -0700869 ack = (tc->state >= TCP_STATE_SYN_RCVD) ? tc->rcv_nxt : 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500870 }
871 else
872 {
873 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
874 seq = 0;
875 ack = clib_host_to_net_u32 (vnet_buffer (pkt)->tcp.seq_end);
876 }
877
878 th = vlib_buffer_push_tcp_net_order (b, pkt_th->dst_port, pkt_th->src_port,
879 seq, ack, tcp_hdr_len, flags, 0);
880
881 /* Swap src and dst ip */
882 if (is_ip4)
883 {
884 ASSERT ((pkt_ih4->ip_version_and_header_length & 0xF0) == 0x40);
885 ih4 = vlib_buffer_push_ip4 (vm, b, &pkt_ih4->dst_address,
Florin Corasfdbc3822017-07-27 00:34:12 -0700886 &pkt_ih4->src_address, IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500887 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
888 }
889 else
890 {
891 int bogus = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500892 ASSERT ((pkt_ih6->ip_version_traffic_class_and_flow_label & 0xF0) ==
893 0x60);
rootc9d1c5b2017-08-15 12:58:31 -0400894 ih6 = vlib_buffer_push_ip6 (vm, b, &pkt_ih6->dst_address,
895 &pkt_ih6->src_address, IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500896 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
897 ASSERT (!bogus);
898 }
899
Florin Corasbe72ae62018-11-01 11:23:03 -0700900 tcp_enqueue_to_ip_lookup_now (wrk, b, bi, is_ip4, fib_index);
Florin Coras6534b7a2017-07-18 05:38:03 -0400901 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500902}
903
Florin Coras1f152cd2017-08-18 19:28:03 -0700904/**
905 * Build and set reset packet for connection
906 */
907void
908tcp_send_reset (tcp_connection_t * tc)
909{
Florin Corasbe72ae62018-11-01 11:23:03 -0700910 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
911 vlib_main_t *vm = wrk->vm;
Florin Coras1f152cd2017-08-18 19:28:03 -0700912 vlib_buffer_t *b;
913 u32 bi;
914 tcp_header_t *th;
915 u16 tcp_hdr_opts_len, advertise_wnd, opts_write_len;
916 u8 flags;
917
Florin Corasbe72ae62018-11-01 11:23:03 -0700918 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
Florin Coras1f152cd2017-08-18 19:28:03 -0700919 return;
920 b = vlib_get_buffer (vm, bi);
921 tcp_init_buffer (vm, b);
922
923 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
924 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
925 advertise_wnd = tcp_window_to_advertise (tc, TCP_STATE_ESTABLISHED);
926 flags = TCP_FLAG_RST;
927 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
928 tc->rcv_nxt, tcp_hdr_opts_len, flags,
929 advertise_wnd);
930 opts_write_len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
931 ASSERT (opts_write_len == tc->snd_opts_len);
932 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Florin Corasf1762d62017-09-24 19:43:08 -0400933 if (tc->c_is_ip4)
934 {
935 ip4_header_t *ih4;
936 ih4 = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip.ip4,
937 &tc->c_rmt_ip.ip4, IP_PROTOCOL_TCP, 0);
938 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
939 }
940 else
941 {
942 int bogus = ~0;
943 ip6_header_t *ih6;
944 ih6 = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip.ip6,
945 &tc->c_rmt_ip.ip6, IP_PROTOCOL_TCP);
946 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
947 ASSERT (!bogus);
948 }
Florin Corasbe72ae62018-11-01 11:23:03 -0700949 tcp_enqueue_to_ip_lookup_now (wrk, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Corasf1762d62017-09-24 19:43:08 -0400950 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc);
Florin Coras1f152cd2017-08-18 19:28:03 -0700951}
952
Florin Coras0dbd5172018-06-25 16:19:34 -0700953static void
Florin Corasbe72ae62018-11-01 11:23:03 -0700954tcp_push_ip_hdr (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
955 vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500956{
957 tcp_header_t *th = vlib_buffer_get_current (b);
Florin Corasbe72ae62018-11-01 11:23:03 -0700958 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500959 if (tc->c_is_ip4)
960 {
961 ip4_header_t *ih;
Dave Barach2c25a622017-06-26 11:35:07 -0400962 ih = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip4,
Florin Corasfdbc3822017-07-27 00:34:12 -0700963 &tc->c_rmt_ip4, IP_PROTOCOL_TCP, 1);
Dave Barach2c25a622017-06-26 11:35:07 -0400964 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih);
Dave Barach68b0fb02017-02-28 15:15:56 -0500965 }
966 else
967 {
968 ip6_header_t *ih;
969 int bogus = ~0;
970
Dave Barach2c25a622017-06-26 11:35:07 -0400971 ih = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip6,
Dave Barach68b0fb02017-02-28 15:15:56 -0500972 &tc->c_rmt_ip6, IP_PROTOCOL_TCP);
Dave Barach2c25a622017-06-26 11:35:07 -0400973 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih, &bogus);
Dave Barach68b0fb02017-02-28 15:15:56 -0500974 ASSERT (!bogus);
975 }
976}
977
978/**
979 * Send SYN
980 *
981 * Builds a SYN packet for a half-open connection and sends it to ipx_lookup.
982 * The packet is not forwarded through tcpx_output to avoid doing lookups
983 * in the half_open pool.
984 */
985void
986tcp_send_syn (tcp_connection_t * tc)
987{
Florin Corasbe72ae62018-11-01 11:23:03 -0700988 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
989 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500990 vlib_buffer_t *b;
991 u32 bi;
Dave Barach68b0fb02017-02-28 15:15:56 -0500992
Florin Corasf988e692017-11-27 04:34:14 -0500993 /*
994 * Setup retransmit and establish timers before requesting buffer
995 * such that we can return if we've ran out.
996 */
Florin Coras85a3ddd2018-12-24 16:54:34 -0800997 tcp_timer_set (tc, TCP_TIMER_ESTABLISH_AO, TCP_ESTABLISH_TIME);
Florin Corasf988e692017-11-27 04:34:14 -0500998 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN,
999 tc->rto * TCP_TO_TIMER_TICK);
1000
Florin Corasbe72ae62018-11-01 11:23:03 -07001001 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
Florin Coras66b11312017-07-31 17:18:03 -07001002 return;
1003
Dave Barach68b0fb02017-02-28 15:15:56 -05001004 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001005 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001006 tcp_make_syn (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001007
1008 /* Measure RTT with this */
Florin Corasefefc6b2018-11-07 12:49:19 -08001009 tc->rtt_ts = tcp_time_now_us (vlib_num_workers ()? 1 : 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001010 tc->rtt_seq = tc->snd_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001011 tc->rto_boff = 0;
1012
Florin Corasbe72ae62018-11-01 11:23:03 -07001013 tcp_push_ip_hdr (wrk, tc, b);
1014 tcp_enqueue_to_ip_lookup (wrk, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Coras6534b7a2017-07-18 05:38:03 -04001015 TCP_EVT_DBG (TCP_EVT_SYN_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001016}
1017
Florin Coras7ac053b2018-11-05 15:57:21 -08001018void
1019tcp_send_synack (tcp_connection_t * tc)
1020{
1021 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
1022 vlib_main_t *vm = wrk->vm;
1023 vlib_buffer_t *b;
1024 u32 bi;
1025
1026 /* Get buffer */
1027 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
1028 return;
1029
Florin Corasdf084782018-12-06 17:41:10 -08001030 tc->rtt_ts = tcp_time_now_us (tc->c_thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -08001031 b = vlib_get_buffer (vm, bi);
1032 tcp_make_synack (tc, b);
1033 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
1034}
1035
Florin Coras66b11312017-07-31 17:18:03 -07001036/**
1037 * Flush tx frame populated by retransmits and timer pops
1038 */
1039void
Florin Corasbe72ae62018-11-01 11:23:03 -07001040tcp_flush_frame_to_output (tcp_worker_ctx_t * wrk, u8 is_ip4)
Florin Coras66b11312017-07-31 17:18:03 -07001041{
Florin Corasbe72ae62018-11-01 11:23:03 -07001042 if (wrk->tx_frames[!is_ip4])
Florin Coras66b11312017-07-31 17:18:03 -07001043 {
1044 u32 next_index;
1045 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
Florin Corasbe72ae62018-11-01 11:23:03 -07001046 vlib_put_frame_to_node (wrk->vm, next_index, wrk->tx_frames[!is_ip4]);
1047 wrk->tx_frames[!is_ip4] = 0;
Florin Coras66b11312017-07-31 17:18:03 -07001048 }
1049}
1050
1051/**
Florin Coras9d063042017-09-14 03:08:00 -04001052 * Flush ip lookup tx frames populated by timer pops
1053 */
Florin Coras0dbd5172018-06-25 16:19:34 -07001054static void
Florin Corasbe72ae62018-11-01 11:23:03 -07001055tcp_flush_frame_to_ip_lookup (tcp_worker_ctx_t * wrk, u8 is_ip4)
Florin Coras9d063042017-09-14 03:08:00 -04001056{
Florin Corasbe72ae62018-11-01 11:23:03 -07001057 if (wrk->ip_lookup_tx_frames[!is_ip4])
Florin Coras9d063042017-09-14 03:08:00 -04001058 {
1059 u32 next_index;
1060 next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index;
Florin Corasbe72ae62018-11-01 11:23:03 -07001061 vlib_put_frame_to_node (wrk->vm, next_index,
1062 wrk->ip_lookup_tx_frames[!is_ip4]);
1063 wrk->ip_lookup_tx_frames[!is_ip4] = 0;
Florin Coras9d063042017-09-14 03:08:00 -04001064 }
1065}
1066
1067/**
1068 * Flush v4 and v6 tcp and ip-lookup tx frames for thread index
Florin Coras66b11312017-07-31 17:18:03 -07001069 */
1070void
Florin Corasbe72ae62018-11-01 11:23:03 -07001071tcp_flush_frames_to_output (tcp_worker_ctx_t * wrk)
Florin Coras66b11312017-07-31 17:18:03 -07001072{
Florin Corasbe72ae62018-11-01 11:23:03 -07001073 tcp_flush_frame_to_output (wrk, 1);
1074 tcp_flush_frame_to_output (wrk, 0);
1075 tcp_flush_frame_to_ip_lookup (wrk, 1);
1076 tcp_flush_frame_to_ip_lookup (wrk, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001077}
1078
1079/**
1080 * Send FIN
1081 */
1082void
1083tcp_send_fin (tcp_connection_t * tc)
1084{
Florin Corasbe72ae62018-11-01 11:23:03 -07001085 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
1086 vlib_main_t *vm = wrk->vm;
Florin Coras9d063042017-09-14 03:08:00 -04001087 vlib_buffer_t *b;
1088 u32 bi;
1089 u8 fin_snt = 0;
1090
Florin Corasc977e7c2018-10-16 20:30:31 -07001091 fin_snt = tc->flags & TCP_CONN_FINSNT;
1092 if (fin_snt)
1093 tc->snd_nxt = tc->snd_una;
1094
Florin Corasbe72ae62018-11-01 11:23:03 -07001095 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
Florin Coraseb97e5f2018-10-15 21:35:42 -07001096 {
1097 /* Out of buffers so program fin retransmit ASAP */
1098 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT, 1);
Florin Coras85a3ddd2018-12-24 16:54:34 -08001099 if (fin_snt)
1100 tc->snd_nxt = tc->snd_una_max;
1101 return;
Florin Coraseb97e5f2018-10-15 21:35:42 -07001102 }
1103
Florin Corasc977e7c2018-10-16 20:30:31 -07001104 tcp_retransmit_timer_force_update (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001105 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001106 tcp_init_buffer (vm, b);
Florin Corasd79b41e2017-03-04 05:37:52 -08001107 tcp_make_fin (tc, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001108 tcp_enqueue_to_output_now (wrk, b, bi, tc->c_is_ip4);
Florin Corasc977e7c2018-10-16 20:30:31 -07001109 TCP_EVT_DBG (TCP_EVT_FIN_SENT, tc);
1110
Florin Coras9d063042017-09-14 03:08:00 -04001111 if (!fin_snt)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001112 {
1113 tc->flags |= TCP_CONN_FINSNT;
1114 tc->flags &= ~TCP_CONN_FINPNDG;
Florin Coras9d063042017-09-14 03:08:00 -04001115 /* Account for the FIN */
1116 tc->snd_una_max += 1;
1117 tc->snd_nxt = tc->snd_una_max;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001118 }
Florin Corasa096f2d2017-09-28 23:49:42 -04001119 else
1120 {
1121 tc->snd_nxt = tc->snd_una_max;
1122 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001123}
1124
1125always_inline u8
Florin Corasb2215d62017-08-01 16:56:58 -07001126tcp_make_state_flags (tcp_connection_t * tc, tcp_state_t next_state)
Dave Barach68b0fb02017-02-28 15:15:56 -05001127{
1128 switch (next_state)
1129 {
1130 case TCP_STATE_ESTABLISHED:
Florin Coras00dfe542018-06-11 13:15:11 -07001131 case TCP_STATE_CLOSE_WAIT:
Florin Coras54ddf432018-12-21 13:54:09 -08001132 case TCP_STATE_TIME_WAIT:
1133 case TCP_STATE_FIN_WAIT_2:
Dave Barach68b0fb02017-02-28 15:15:56 -05001134 return TCP_FLAG_ACK;
1135 case TCP_STATE_SYN_RCVD:
1136 return TCP_FLAG_SYN | TCP_FLAG_ACK;
1137 case TCP_STATE_SYN_SENT:
1138 return TCP_FLAG_SYN;
1139 case TCP_STATE_LAST_ACK:
1140 case TCP_STATE_FIN_WAIT_1:
Florin Coras54ddf432018-12-21 13:54:09 -08001141 case TCP_STATE_CLOSING:
Florin Corasb2215d62017-08-01 16:56:58 -07001142 if (tc->snd_nxt + 1 < tc->snd_una_max)
1143 return TCP_FLAG_ACK;
1144 else
1145 return TCP_FLAG_FIN;
Dave Barach68b0fb02017-02-28 15:15:56 -05001146 default:
1147 clib_warning ("Shouldn't be here!");
1148 }
1149 return 0;
1150}
1151
1152/**
1153 * Push TCP header and update connection variables
1154 */
Florin Coras0dbd5172018-06-25 16:19:34 -07001155always_inline void
Dave Barach68b0fb02017-02-28 15:15:56 -05001156tcp_push_hdr_i (tcp_connection_t * tc, vlib_buffer_t * b,
Florin Corasb26743d2018-06-26 09:31:04 -07001157 tcp_state_t next_state, u8 compute_opts, u8 maybe_burst)
Dave Barach68b0fb02017-02-28 15:15:56 -05001158{
1159 u32 advertise_wnd, data_len;
Florin Corasb26743d2018-06-26 09:31:04 -07001160 u8 tcp_hdr_opts_len, flags;
1161 tcp_main_t *tm = &tcp_main;
Dave Barach68b0fb02017-02-28 15:15:56 -05001162 tcp_header_t *th;
1163
Florin Corasb26743d2018-06-26 09:31:04 -07001164 data_len = b->current_length;
1165 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_NEXT_PRESENT))
1166 data_len += b->total_length_not_including_first_buffer;
1167
Dave Barach68b0fb02017-02-28 15:15:56 -05001168 vnet_buffer (b)->tcp.flags = 0;
Florin Corasb26743d2018-06-26 09:31:04 -07001169 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05001170
Florin Corasc8343412017-05-04 14:25:50 -07001171 if (compute_opts)
1172 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1173
Florin Corasc8343412017-05-04 14:25:50 -07001174 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
Florin Corasb26743d2018-06-26 09:31:04 -07001175
1176 if (maybe_burst)
1177 advertise_wnd = tc->rcv_wnd >> tc->rcv_wscale;
1178 else
1179 advertise_wnd = tcp_window_to_advertise (tc, next_state);
1180
Florin Corasb2215d62017-08-01 16:56:58 -07001181 flags = tcp_make_state_flags (tc, next_state);
Florin Coras42ceddb2018-12-12 10:56:01 -08001182 if (PREDICT_FALSE (tc->flags & TCP_CONN_PSH_PENDING))
1183 {
1184 if (seq_geq (tc->psh_seq, tc->snd_nxt)
1185 && seq_lt (tc->psh_seq, tc->snd_nxt + data_len))
1186 flags |= TCP_FLAG_PSH;
1187 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001188 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
1189 tc->rcv_nxt, tcp_hdr_opts_len, flags,
1190 advertise_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -05001191
Florin Corasb26743d2018-06-26 09:31:04 -07001192 if (maybe_burst)
1193 {
Dave Barach178cf492018-11-13 16:34:13 -05001194 clib_memcpy_fast ((u8 *) (th + 1),
1195 tm->wrk_ctx[tc->c_thread_index].cached_opts,
1196 tc->snd_opts_len);
Florin Corasb26743d2018-06-26 09:31:04 -07001197 }
1198 else
1199 {
1200 u8 len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
1201 ASSERT (len == tc->snd_opts_len);
1202 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001203
Florin Coras93992a92017-05-24 18:03:56 -07001204 /*
1205 * Update connection variables
1206 */
1207
Dave Barach68b0fb02017-02-28 15:15:56 -05001208 tc->snd_nxt += data_len;
Florin Corasc28764f2017-04-26 00:08:42 -07001209 tc->rcv_las = tc->rcv_nxt;
Florin Coras3e350af2017-03-30 02:54:28 -07001210
Florin Corase69f4952017-03-07 10:06:24 -08001211 TCP_EVT_DBG (TCP_EVT_PKTIZE, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001212}
1213
Florin Coras0dbd5172018-06-25 16:19:34 -07001214u32
1215tcp_push_header (tcp_connection_t * tc, vlib_buffer_t * b)
1216{
Florin Corasb26743d2018-06-26 09:31:04 -07001217 tcp_push_hdr_i (tc, b, TCP_STATE_ESTABLISHED, /* compute opts */ 0,
1218 /* burst */ 1);
Florin Coras0dbd5172018-06-25 16:19:34 -07001219 tc->snd_una_max = tc->snd_nxt;
Florin Corasb11175d2018-11-09 14:34:08 -08001220 ASSERT (seq_leq (tc->snd_una_max, tc->snd_una + tc->snd_wnd));
Florin Coras0dbd5172018-06-25 16:19:34 -07001221 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
1222 /* If not tracking an ACK, start tracking */
1223 if (tc->rtt_ts == 0 && !tcp_in_cong_recovery (tc))
1224 {
Florin Corasd67f1122018-05-21 17:47:40 -07001225 tc->rtt_ts = tcp_time_now_us (tc->c_thread_index);
Florin Coras0dbd5172018-06-25 16:19:34 -07001226 tc->rtt_seq = tc->snd_nxt;
1227 }
1228 if (PREDICT_FALSE (!tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)))
1229 {
1230 tcp_retransmit_timer_set (tc);
1231 tc->rto_boff = 0;
1232 }
1233 tcp_trajectory_add_start (b, 3);
1234 return 0;
1235}
1236
Dave Barach68b0fb02017-02-28 15:15:56 -05001237void
Florin Coras6792ec02017-03-13 03:49:51 -07001238tcp_send_ack (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001239{
Florin Corasbe72ae62018-11-01 11:23:03 -07001240 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
1241 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -05001242 vlib_buffer_t *b;
1243 u32 bi;
1244
Dave Barach68b0fb02017-02-28 15:15:56 -05001245 /* Get buffer */
Florin Corasbe72ae62018-11-01 11:23:03 -07001246 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
Florin Coras66b11312017-07-31 17:18:03 -07001247 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001248 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001249 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001250
1251 /* Fill in the ACK */
1252 tcp_make_ack (tc, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001253 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001254}
1255
Florin Coras7ac053b2018-11-05 15:57:21 -08001256void
1257tcp_program_ack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1258{
1259 if (!(tc->flags & TCP_CONN_SNDACK))
1260 {
1261 vec_add1 (wrk->pending_acks, tc->c_c_index);
1262 tc->flags |= TCP_CONN_SNDACK;
1263 }
1264}
1265
1266void
1267tcp_program_dupack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
1268{
1269 if (!(tc->flags & TCP_CONN_SNDACK))
1270 {
1271 vec_add1 (wrk->pending_acks, tc->c_c_index);
1272 tc->flags |= TCP_CONN_SNDACK;
1273 }
1274 if (tc->pending_dupacks < 255)
1275 tc->pending_dupacks += 1;
1276}
1277
1278void
1279tcp_send_acks (tcp_worker_ctx_t * wrk)
1280{
1281 u32 thread_index, *pending_acks;
1282 tcp_connection_t *tc;
1283 int i, j, n_acks;
1284
1285 if (!vec_len (wrk->pending_acks))
1286 return;
1287
1288 thread_index = wrk->vm->thread_index;
1289 pending_acks = wrk->pending_acks;
1290 for (i = 0; i < vec_len (pending_acks); i++)
1291 {
1292 tc = tcp_connection_get (pending_acks[i], thread_index);
1293 tc->flags &= ~TCP_CONN_SNDACK;
1294 n_acks = clib_max (1, tc->pending_dupacks);
1295 /* If we're supposed to send dupacks but have no ooo data
1296 * send only one ack */
1297 if (tc->pending_dupacks && !vec_len (tc->snd_sacks))
1298 n_acks = 1;
1299 for (j = 0; j < n_acks; j++)
1300 tcp_send_ack (tc);
1301 tc->pending_dupacks = 0;
1302 }
1303 _vec_len (wrk->pending_acks) = 0;
1304}
1305
Florin Corasb2215d62017-08-01 16:56:58 -07001306/**
1307 * Delayed ack timer handler
1308 *
1309 * Sends delayed ACK when timer expires
1310 */
Florin Coras6792ec02017-03-13 03:49:51 -07001311void
1312tcp_timer_delack_handler (u32 index)
1313{
Damjan Marion586afd72017-04-05 19:18:20 +02001314 u32 thread_index = vlib_get_thread_index ();
Florin Coras6792ec02017-03-13 03:49:51 -07001315 tcp_connection_t *tc;
1316
1317 tc = tcp_connection_get (index, thread_index);
1318 tc->timers[TCP_TIMER_DELACK] = TCP_TIMER_HANDLE_INVALID;
Florin Coras6792ec02017-03-13 03:49:51 -07001319 tcp_send_ack (tc);
1320}
1321
Florin Corasb2215d62017-08-01 16:56:58 -07001322/**
Florin Coras36ee9f12018-11-02 12:52:10 -07001323 * Allocate a new buffer and build a new tcp segment
Dave Barach68b0fb02017-02-28 15:15:56 -05001324 *
Florin Coras36ee9f12018-11-02 12:52:10 -07001325 * @param wrk tcp worker
1326 * @param tc connection for which the segment will be allocated
1327 * @param offset offset of the first byte in the tx fifo
1328 * @param max_deq_byte segment size
1329 * @param[out] b pointer to buffer allocated
1330 *
1331 * @return the number of bytes in the segment or 0 if buffer cannot be
1332 * allocated or no data available
Florin Coras93992a92017-05-24 18:03:56 -07001333 */
Florin Coras36ee9f12018-11-02 12:52:10 -07001334static int
1335tcp_prepare_segment (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1336 u32 offset, u32 max_deq_bytes, vlib_buffer_t ** b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001337{
Florin Corasbe72ae62018-11-01 11:23:03 -07001338 u32 bytes_per_buffer = vnet_get_tcp_main ()->bytes_per_buffer;
Florin Coras36ee9f12018-11-02 12:52:10 -07001339 u32 bi, seg_size;
Florin Corasbe72ae62018-11-01 11:23:03 -07001340 vlib_main_t *vm = wrk->vm;
Florin Coras93992a92017-05-24 18:03:56 -07001341 int n_bytes = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001342 u8 *data;
Dave Barach68b0fb02017-02-28 15:15:56 -05001343
Florin Coras1f152cd2017-08-18 19:28:03 -07001344 seg_size = max_deq_bytes + MAX_HDRS_LEN;
1345
Florin Corasb2215d62017-08-01 16:56:58 -07001346 /*
1347 * Prepare options
1348 */
Florin Corasc8343412017-05-04 14:25:50 -07001349 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1350
Florin Corasb2215d62017-08-01 16:56:58 -07001351 /*
1352 * Allocate and fill in buffer(s)
1353 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001354
Florin Corasb2215d62017-08-01 16:56:58 -07001355 /* Easy case, buffer size greater than mss */
Florin Corasbe72ae62018-11-01 11:23:03 -07001356 if (PREDICT_TRUE (seg_size <= bytes_per_buffer))
Florin Corasb2215d62017-08-01 16:56:58 -07001357 {
Florin Corasbe72ae62018-11-01 11:23:03 -07001358 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
Florin Coras24793e32018-05-09 11:34:25 -07001359 return 0;
1360 *b = vlib_get_buffer (vm, bi);
1361 data = tcp_init_buffer (vm, *b);
Florin Corase87216f2017-08-17 16:59:22 -07001362 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1363 max_deq_bytes);
Florin Corasb2215d62017-08-01 16:56:58 -07001364 ASSERT (n_bytes == max_deq_bytes);
1365 b[0]->current_length = n_bytes;
Florin Corasb26743d2018-06-26 09:31:04 -07001366 tcp_push_hdr_i (tc, *b, tc->state, /* compute opts */ 0, /* burst */ 0);
Florin Coras208daa12018-07-02 01:30:51 -07001367 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
1368 tc->snd_una_max = tc->snd_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001369 }
1370 /* Split mss into multiple buffers */
1371 else
1372 {
1373 u32 chain_bi = ~0, n_bufs_per_seg;
Florin Corasb2215d62017-08-01 16:56:58 -07001374 u16 n_peeked, len_to_deq, available_bufs;
1375 vlib_buffer_t *chain_b, *prev_b;
Florin Corasb2215d62017-08-01 16:56:58 -07001376 int i;
1377
Florin Corasb2215d62017-08-01 16:56:58 -07001378 /* Make sure we have enough buffers */
Florin Corasbe72ae62018-11-01 11:23:03 -07001379 n_bufs_per_seg = ceil ((double) seg_size / bytes_per_buffer);
1380 available_bufs = vec_len (wrk->tx_buffers);
Florin Corasb2215d62017-08-01 16:56:58 -07001381 if (n_bufs_per_seg > available_bufs)
1382 {
Florin Corasbe72ae62018-11-01 11:23:03 -07001383 tcp_alloc_tx_buffers (wrk, &available_bufs, VLIB_FRAME_SIZE);
Florin Coras24793e32018-05-09 11:34:25 -07001384 if (n_bufs_per_seg > available_bufs)
Florin Corasb2215d62017-08-01 16:56:58 -07001385 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001386 *b = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001387 return 0;
1388 }
1389 }
1390
Florin Coras9ece3c02018-11-05 11:06:53 -08001391 (void) tcp_get_free_buffer_index (wrk, &bi);
Florin Coras24793e32018-05-09 11:34:25 -07001392 ASSERT (bi != (u32) ~ 0);
1393 *b = vlib_get_buffer (vm, bi);
1394 data = tcp_init_buffer (vm, *b);
Florin Corase87216f2017-08-17 16:59:22 -07001395 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
Florin Corasbe72ae62018-11-01 11:23:03 -07001396 bytes_per_buffer - MAX_HDRS_LEN);
Florin Corasb2215d62017-08-01 16:56:58 -07001397 b[0]->current_length = n_bytes;
1398 b[0]->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
1399 b[0]->total_length_not_including_first_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001400 max_deq_bytes -= n_bytes;
1401
1402 chain_b = *b;
1403 for (i = 1; i < n_bufs_per_seg; i++)
1404 {
1405 prev_b = chain_b;
Florin Corasbe72ae62018-11-01 11:23:03 -07001406 len_to_deq = clib_min (max_deq_bytes, bytes_per_buffer);
1407 tcp_get_free_buffer_index (wrk, &chain_bi);
Florin Corasb2215d62017-08-01 16:56:58 -07001408 ASSERT (chain_bi != (u32) ~ 0);
1409 chain_b = vlib_get_buffer (vm, chain_bi);
1410 chain_b->current_data = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001411 data = vlib_buffer_get_current (chain_b);
1412 n_peeked = stream_session_peek_bytes (&tc->connection, data,
Florin Coras1f152cd2017-08-18 19:28:03 -07001413 offset + n_bytes, len_to_deq);
Florin Corasb2215d62017-08-01 16:56:58 -07001414 ASSERT (n_peeked == len_to_deq);
Florin Coras1f152cd2017-08-18 19:28:03 -07001415 n_bytes += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001416 chain_b->current_length = n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001417 chain_b->next_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001418
1419 /* update previous buffer */
1420 prev_b->next_buffer = chain_bi;
1421 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
1422
Florin Corasb2215d62017-08-01 16:56:58 -07001423 max_deq_bytes -= n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001424 b[0]->total_length_not_including_first_buffer += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001425 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001426
Florin Corasb26743d2018-06-26 09:31:04 -07001427 tcp_push_hdr_i (tc, *b, tc->state, /* compute opts */ 0, /* burst */ 0);
Florin Coras208daa12018-07-02 01:30:51 -07001428 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
1429 tc->snd_una_max = tc->snd_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001430 }
1431
Florin Coras93992a92017-05-24 18:03:56 -07001432 ASSERT (n_bytes > 0);
Florin Corasbe72ae62018-11-01 11:23:03 -07001433 ASSERT (((*b)->current_data + (*b)->current_length) <= bytes_per_buffer);
Florin Corasbb292f42017-05-19 09:49:19 -07001434
Florin Coras36ee9f12018-11-02 12:52:10 -07001435 return n_bytes;
1436}
1437
1438/**
1439 * Build a retransmit segment
1440 *
1441 * @return the number of bytes in the segment or 0 if there's nothing to
1442 * retransmit
1443 */
1444static u32
1445tcp_prepare_retransmit_segment (tcp_worker_ctx_t * wrk,
1446 tcp_connection_t * tc, u32 offset,
1447 u32 max_deq_bytes, vlib_buffer_t ** b)
1448{
1449 u32 start, available_bytes;
1450 int n_bytes = 0;
1451
1452 ASSERT (tc->state >= TCP_STATE_ESTABLISHED);
1453 ASSERT (max_deq_bytes != 0);
1454
1455 /*
1456 * Make sure we can retransmit something
1457 */
1458 available_bytes = session_tx_fifo_max_dequeue (&tc->connection);
1459 ASSERT (available_bytes >= offset);
1460 available_bytes -= offset;
1461 if (!available_bytes)
1462 return 0;
1463
1464 max_deq_bytes = clib_min (tc->snd_mss, max_deq_bytes);
1465 max_deq_bytes = clib_min (available_bytes, max_deq_bytes);
1466
1467 /* Start is beyond snd_congestion */
1468 start = tc->snd_una + offset;
1469 if (seq_geq (start, tc->snd_congestion))
1470 goto done;
1471
1472 /* Don't overshoot snd_congestion */
1473 if (seq_gt (start + max_deq_bytes, tc->snd_congestion))
1474 {
1475 max_deq_bytes = tc->snd_congestion - start;
1476 if (max_deq_bytes == 0)
1477 goto done;
1478 }
1479
1480 n_bytes = tcp_prepare_segment (wrk, tc, offset, max_deq_bytes, b);
1481 if (!n_bytes)
1482 return 0;
1483
Florin Coras93992a92017-05-24 18:03:56 -07001484 if (tcp_in_fastrecovery (tc))
1485 tc->snd_rxt_bytes += n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001486
Florin Coras6792ec02017-03-13 03:49:51 -07001487done:
1488 TCP_EVT_DBG (TCP_EVT_CC_RTX, tc, offset, n_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001489 return n_bytes;
1490}
1491
Florin Coras6792ec02017-03-13 03:49:51 -07001492/**
1493 * Reset congestion control, switch cwnd to loss window and try again.
1494 */
1495static void
Florin Corasca1c8f32018-05-23 21:01:30 -07001496tcp_rxt_timeout_cc (tcp_connection_t * tc)
Florin Coras6792ec02017-03-13 03:49:51 -07001497{
Florin Corasca1c8f32018-05-23 21:01:30 -07001498 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 6);
Florin Coras93992a92017-05-24 18:03:56 -07001499 tc->prev_ssthresh = tc->ssthresh;
1500 tc->prev_cwnd = tc->cwnd;
1501
Florin Coras6792ec02017-03-13 03:49:51 -07001502 /* Cleanly recover cc (also clears up fast retransmit) */
1503 if (tcp_in_fastrecovery (tc))
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001504 {
1505 /* TODO be less aggressive about this */
1506 scoreboard_clear (&tc->sack_sb);
1507 tcp_cc_fastrecovery_exit (tc);
1508 }
Florin Coras6792ec02017-03-13 03:49:51 -07001509
1510 /* Start again from the beginning */
Florin Corasd2aab832018-05-22 11:39:59 -07001511 tc->cc_algo->congestion (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001512 tc->cwnd = tcp_loss_wnd (tc);
1513 tc->snd_congestion = tc->snd_una_max;
Florin Corasf1762d62017-09-24 19:43:08 -04001514 tc->rtt_ts = 0;
Florin Corasd2aab832018-05-22 11:39:59 -07001515 tc->cwnd_acc_bytes = 0;
Florin Corasc44a5582018-11-01 16:30:54 -07001516 tcp_connection_tx_pacer_reset (tc, tc->cwnd, 2 * tc->snd_mss);
Florin Coras3af90fc2017-05-03 21:09:42 -07001517 tcp_recovery_on (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001518}
1519
Florin Coras0dbd5172018-06-25 16:19:34 -07001520static inline void
Dave Barach68b0fb02017-02-28 15:15:56 -05001521tcp_timer_retransmit_handler_i (u32 index, u8 is_syn)
1522{
Damjan Marion586afd72017-04-05 19:18:20 +02001523 u32 thread_index = vlib_get_thread_index ();
Florin Corasbe72ae62018-11-01 11:23:03 -07001524 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
1525 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -05001526 tcp_connection_t *tc;
Florin Corasb2215d62017-08-01 16:56:58 -07001527 vlib_buffer_t *b = 0;
Florin Coras3af90fc2017-05-03 21:09:42 -07001528 u32 bi, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001529
1530 if (is_syn)
1531 {
1532 tc = tcp_half_open_connection_get (index);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001533 /* Note: the connection may have transitioned to ESTABLISHED... */
Florin Coras311e11b2018-12-05 11:19:14 -08001534 if (PREDICT_FALSE (tc == 0 || tc->state != TCP_STATE_SYN_SENT))
Dave Barachb7f1faa2017-08-29 11:43:37 -04001535 return;
Florin Coras68810622017-07-24 17:40:28 -07001536 tc->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05001537 }
1538 else
1539 {
1540 tc = tcp_connection_get (index, thread_index);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001541 /* Note: the connection may have been closed and pool_put */
Florin Coras85a3ddd2018-12-24 16:54:34 -08001542 if (PREDICT_FALSE (tc == 0 || tc->state == TCP_STATE_SYN_SENT))
Dave Barachb7f1faa2017-08-29 11:43:37 -04001543 return;
Florin Coras68810622017-07-24 17:40:28 -07001544 tc->timers[TCP_TIMER_RETRANSMIT] = TCP_TIMER_HANDLE_INVALID;
Florin Coras85a3ddd2018-12-24 16:54:34 -08001545 /* Wait-close and retransmit could pop at the same time */
1546 if (tc->state == TCP_STATE_CLOSED)
1547 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001548 }
1549
Florin Corase04c2992017-03-01 08:17:34 -08001550 if (tc->state >= TCP_STATE_ESTABLISHED)
Dave Barach68b0fb02017-02-28 15:15:56 -05001551 {
Florin Corase55a6d72018-10-31 23:09:22 -07001552 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2);
1553
Florin Coras93992a92017-05-24 18:03:56 -07001554 /* Lost FIN, retransmit and return */
Florin Coras93e65802017-11-29 00:07:11 -05001555 if (tcp_is_lost_fin (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001556 {
1557 tcp_send_fin (tc);
Florin Corasf988e692017-11-27 04:34:14 -05001558 tc->rto_boff += 1;
1559 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
Florin Coras93992a92017-05-24 18:03:56 -07001560 return;
1561 }
1562
Florin Coras3ec66b02018-08-23 16:27:05 -07001563 /* Shouldn't be here. This condition is tricky because it has to take
1564 * into account boff > 0 due to persist timeout. */
Florin Coras887b7ba2018-06-09 06:49:59 -07001565 if ((tc->rto_boff == 0 && tc->snd_una == tc->snd_una_max)
Florin Coras3ec66b02018-08-23 16:27:05 -07001566 || (tc->rto_boff > 0 && seq_geq (tc->snd_una, tc->snd_congestion)
1567 && !tcp_flight_size (tc)))
Florin Corasa096f2d2017-09-28 23:49:42 -04001568 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001569 ASSERT (!tcp_in_recovery (tc));
1570 tc->rto_boff = 0;
Florin Corasa096f2d2017-09-28 23:49:42 -04001571 return;
1572 }
1573
Florin Coras3ec66b02018-08-23 16:27:05 -07001574 /* We're not in recovery so make sure rto_boff is 0. Can be non 0 due
1575 * to persist timer timeout */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001576 if (!tcp_in_recovery (tc) && tc->rto_boff > 0)
1577 {
1578 tc->rto_boff = 0;
1579 tcp_update_rto (tc);
1580 }
1581
1582 /* Increment RTO backoff (also equal to number of retries) and go back
1583 * to first un-acked byte */
1584 tc->rto_boff += 1;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001585
Florin Coras6792ec02017-03-13 03:49:51 -07001586 /* First retransmit timeout */
1587 if (tc->rto_boff == 1)
Florin Corasca1c8f32018-05-23 21:01:30 -07001588 tcp_rxt_timeout_cc (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001589 else
1590 scoreboard_clear (&tc->sack_sb);
Dave Barach68b0fb02017-02-28 15:15:56 -05001591
Florin Coras3ec66b02018-08-23 16:27:05 -07001592 /* If we've sent beyond snd_congestion, update it */
1593 if (seq_gt (tc->snd_una_max, tc->snd_congestion))
1594 tc->snd_congestion = tc->snd_una_max;
1595
Florin Corasd2aab832018-05-22 11:39:59 -07001596 tc->snd_una_max = tc->snd_nxt = tc->snd_una;
Dave Barach68b0fb02017-02-28 15:15:56 -05001597 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1598
Florin Coras3ec66b02018-08-23 16:27:05 -07001599 /* Send one segment. Note that n_bytes may be zero due to buffer
1600 * shortfall */
Florin Corasbe72ae62018-11-01 11:23:03 -07001601 n_bytes = tcp_prepare_retransmit_segment (wrk, tc, 0, tc->snd_mss, &b);
Florin Coras85a3ddd2018-12-24 16:54:34 -08001602 if (!n_bytes)
Florin Corase04c2992017-03-01 08:17:34 -08001603 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001604 tcp_retransmit_timer_force_update (tc);
Florin Corase04c2992017-03-01 08:17:34 -08001605 return;
1606 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001607
Dave Barachb7f1faa2017-08-29 11:43:37 -04001608 bi = vlib_get_buffer_index (vm, b);
1609
Florin Coras93992a92017-05-24 18:03:56 -07001610 /* For first retransmit, record timestamp (Eifel detection RFC3522) */
1611 if (tc->rto_boff == 1)
Florin Corasbe72ae62018-11-01 11:23:03 -07001612 tc->snd_rxt_ts = tcp_time_now_w_thread (tc->c_thread_index);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001613
Florin Corasbe72ae62018-11-01 11:23:03 -07001614 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras3ec66b02018-08-23 16:27:05 -07001615 tcp_retransmit_timer_force_update (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001616 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001617 /* Retransmit for SYN */
1618 else if (tc->state == TCP_STATE_SYN_SENT)
Florin Coras93992a92017-05-24 18:03:56 -07001619 {
Florin Coras68810622017-07-24 17:40:28 -07001620 /* Half-open connection actually moved to established but we were
1621 * waiting for syn retransmit to pop to call cleanup from the right
1622 * thread. */
1623 if (tc->flags & TCP_CONN_HALF_OPEN_DONE)
1624 {
Florin Coras68810622017-07-24 17:40:28 -07001625 if (tcp_half_open_connection_cleanup (tc))
Florin Coras85a3ddd2018-12-24 16:54:34 -08001626 TCP_DBG ("could not remove half-open connection");
Florin Coras68810622017-07-24 17:40:28 -07001627 return;
1628 }
1629
Florin Corase55a6d72018-10-31 23:09:22 -07001630 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2);
1631
Dave Barach68b0fb02017-02-28 15:15:56 -05001632 /* Try without increasing RTO a number of times. If this fails,
1633 * start growing RTO exponentially */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001634 tc->rto_boff += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001635 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1636 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1637
Florin Corasf988e692017-11-27 04:34:14 -05001638 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN,
1639 tc->rto * TCP_TO_TIMER_TICK);
1640
Florin Corasbe72ae62018-11-01 11:23:03 -07001641 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001642 return;
1643
Florin Corasb2215d62017-08-01 16:56:58 -07001644 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001645 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001646 tcp_make_syn (tc, b);
Florin Corase04c2992017-03-01 08:17:34 -08001647
Dave Barach2c25a622017-06-26 11:35:07 -04001648 tc->rtt_ts = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001649 TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 0);
1650
1651 /* This goes straight to ipx_lookup. Retransmit timer set already */
Florin Corasbe72ae62018-11-01 11:23:03 -07001652 tcp_push_ip_hdr (wrk, tc, b);
1653 tcp_enqueue_to_ip_lookup (wrk, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001654 }
1655 /* Retransmit SYN-ACK */
1656 else if (tc->state == TCP_STATE_SYN_RCVD)
1657 {
Florin Corase55a6d72018-10-31 23:09:22 -07001658 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2);
1659
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001660 tc->rto_boff += 1;
Florin Coras9d063042017-09-14 03:08:00 -04001661 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1662 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001663 tc->rtt_ts = 0;
1664
Florin Corasbe72ae62018-11-01 11:23:03 -07001665 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
Florin Corasf988e692017-11-27 04:34:14 -05001666 {
1667 tcp_retransmit_timer_force_update (tc);
1668 return;
1669 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001670
1671 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001672 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001673 tcp_make_synack (tc, b);
1674 TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 1);
1675
1676 /* Retransmit timer already updated, just enqueue to output */
Florin Corasbe72ae62018-11-01 11:23:03 -07001677 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001678 }
Florin Coras93992a92017-05-24 18:03:56 -07001679 else
1680 {
1681 ASSERT (tc->state == TCP_STATE_CLOSED);
Florin Coras93992a92017-05-24 18:03:56 -07001682 return;
1683 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001684}
1685
1686void
1687tcp_timer_retransmit_handler (u32 index)
1688{
1689 tcp_timer_retransmit_handler_i (index, 0);
1690}
1691
1692void
1693tcp_timer_retransmit_syn_handler (u32 index)
1694{
1695 tcp_timer_retransmit_handler_i (index, 1);
1696}
1697
1698/**
Florin Coras3e350af2017-03-30 02:54:28 -07001699 * Got 0 snd_wnd from peer, try to do something about it.
1700 *
1701 */
1702void
1703tcp_timer_persist_handler (u32 index)
1704{
Damjan Marion586afd72017-04-05 19:18:20 +02001705 u32 thread_index = vlib_get_thread_index ();
Florin Corasbe72ae62018-11-01 11:23:03 -07001706 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
1707 u32 bi, max_snd_bytes, available_bytes, offset;
1708 tcp_main_t *tm = vnet_get_tcp_main ();
1709 vlib_main_t *vm = wrk->vm;
Florin Coras3e350af2017-03-30 02:54:28 -07001710 tcp_connection_t *tc;
1711 vlib_buffer_t *b;
Florin Coras93992a92017-05-24 18:03:56 -07001712 int n_bytes = 0;
Florin Coras1f152cd2017-08-18 19:28:03 -07001713 u8 *data;
Florin Coras3e350af2017-03-30 02:54:28 -07001714
Florin Corasdb84e572017-05-09 18:54:52 -07001715 tc = tcp_connection_get_if_valid (index, thread_index);
1716
1717 if (!tc)
1718 return;
Florin Coras3e350af2017-03-30 02:54:28 -07001719
1720 /* Make sure timer handle is set to invalid */
1721 tc->timers[TCP_TIMER_PERSIST] = TCP_TIMER_HANDLE_INVALID;
1722
1723 /* Problem already solved or worse */
Florin Corasf03a59a2017-06-09 21:07:32 -07001724 if (tc->state == TCP_STATE_CLOSED || tc->state > TCP_STATE_ESTABLISHED
Florin Coras2e31cc32018-09-25 14:00:34 -07001725 || tc->snd_wnd > tc->snd_mss)
Florin Coras3e350af2017-03-30 02:54:28 -07001726 return;
1727
Florin Coras25579b42018-06-06 17:55:02 -07001728 available_bytes = session_tx_fifo_max_dequeue (&tc->connection);
Florin Coras50958952017-08-29 14:50:13 -07001729 offset = tc->snd_una_max - tc->snd_una;
1730
1731 /* Reprogram persist if no new bytes available to send. We may have data
1732 * next time */
1733 if (!available_bytes)
1734 {
1735 tcp_persist_timer_set (tc);
1736 return;
1737 }
1738
1739 if (available_bytes <= offset)
1740 {
1741 ASSERT (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT));
1742 return;
1743 }
1744
Florin Coras3e350af2017-03-30 02:54:28 -07001745 /* Increment RTO backoff */
1746 tc->rto_boff += 1;
1747 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1748
Florin Corasb2215d62017-08-01 16:56:58 -07001749 /*
1750 * Try to force the first unsent segment (or buffer)
1751 */
Florin Corasbe72ae62018-11-01 11:23:03 -07001752 if (PREDICT_FALSE (tcp_get_free_buffer_index (wrk, &bi)))
Florin Coras3ec66b02018-08-23 16:27:05 -07001753 {
1754 tcp_persist_timer_set (tc);
1755 return;
1756 }
Florin Coras3e350af2017-03-30 02:54:28 -07001757 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001758 data = tcp_init_buffer (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001759
Florin Coras1f152cd2017-08-18 19:28:03 -07001760 tcp_validate_txf_size (tc, offset);
Florin Corasc8343412017-05-04 14:25:50 -07001761 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
Florin Coras1f152cd2017-08-18 19:28:03 -07001762 max_snd_bytes = clib_min (tc->snd_mss, tm->bytes_per_buffer - MAX_HDRS_LEN);
1763 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1764 max_snd_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001765 b->current_length = n_bytes;
Florin Coras84275e92017-09-26 12:30:40 -04001766 ASSERT (n_bytes != 0 && (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)
1767 || tc->snd_nxt == tc->snd_una_max
1768 || tc->rto_boff > 1));
Florin Coras93992a92017-05-24 18:03:56 -07001769
Florin Corasb26743d2018-06-26 09:31:04 -07001770 tcp_push_hdr_i (tc, b, tc->state, /* compute opts */ 0, /* burst */ 0);
Florin Coras8b20bf52018-06-14 14:55:50 -07001771 tc->snd_una_max = tc->snd_nxt;
1772 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
Florin Corasbe72ae62018-11-01 11:23:03 -07001773 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras3e350af2017-03-30 02:54:28 -07001774
Florin Coras1f152cd2017-08-18 19:28:03 -07001775 /* Just sent new data, enable retransmit */
1776 tcp_retransmit_timer_update (tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001777}
1778
1779/**
Florin Coras6792ec02017-03-13 03:49:51 -07001780 * Retransmit first unacked segment
1781 */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001782int
Florin Corasbe72ae62018-11-01 11:23:03 -07001783tcp_retransmit_first_unacked (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001784{
Florin Corasb2215d62017-08-01 16:56:58 -07001785 u32 bi, old_snd_nxt, n_bytes;
Florin Corasbe72ae62018-11-01 11:23:03 -07001786 vlib_main_t *vm = wrk->vm;
1787 vlib_buffer_t *b;
Dave Barach68b0fb02017-02-28 15:15:56 -05001788
Florin Coras93992a92017-05-24 18:03:56 -07001789 old_snd_nxt = tc->snd_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001790 tc->snd_nxt = tc->snd_una;
1791
Florin Corase55a6d72018-10-31 23:09:22 -07001792 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 1);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001793
Florin Corasbe72ae62018-11-01 11:23:03 -07001794 n_bytes = tcp_prepare_retransmit_segment (wrk, tc, 0, tc->snd_mss, &b);
Florin Corasb2215d62017-08-01 16:56:58 -07001795 if (!n_bytes)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001796 return -1;
1797
Florin Corasb2215d62017-08-01 16:56:58 -07001798 bi = vlib_get_buffer_index (vm, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001799 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras93992a92017-05-24 18:03:56 -07001800 tc->snd_nxt = old_snd_nxt;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001801
1802 return 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001803}
1804
Florin Coras36ee9f12018-11-02 12:52:10 -07001805static int
1806tcp_fast_retransmit_unsent (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1807 u32 burst_size)
1808{
1809 u32 offset, n_segs = 0, n_written, bi;
1810 vlib_main_t *vm = wrk->vm;
1811 vlib_buffer_t *b = 0;
1812
1813 tc->snd_nxt = tc->snd_una_max;
1814 offset = tc->snd_una_max - tc->snd_una;
1815 while (n_segs < burst_size)
1816 {
1817 n_written = tcp_prepare_segment (wrk, tc, offset, tc->snd_mss, &b);
1818 if (!n_written)
1819 goto done;
1820
1821 bi = vlib_get_buffer_index (vm, b);
1822 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
1823 offset += n_written;
1824 n_segs += 1;
1825 }
1826
1827done:
1828 return n_segs;
1829}
1830
1831#define scoreboard_rescue_rxt_valid(_sb, _tc) \
1832 (seq_geq (_sb->rescue_rxt, _tc->snd_una) \
1833 && seq_leq (_sb->rescue_rxt, _tc->snd_congestion))
1834
Florin Coras6792ec02017-03-13 03:49:51 -07001835/**
Florin Coras93992a92017-05-24 18:03:56 -07001836 * Do fast retransmit with SACKs
Florin Coras6792ec02017-03-13 03:49:51 -07001837 */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001838int
Florin Corasbe72ae62018-11-01 11:23:03 -07001839tcp_fast_retransmit_sack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1840 u32 burst_size)
Dave Barach68b0fb02017-02-28 15:15:56 -05001841{
Florin Coras36ee9f12018-11-02 12:52:10 -07001842 u32 n_written = 0, offset, max_bytes, n_segs = 0, n_segs_now;
Florin Coras93992a92017-05-24 18:03:56 -07001843 sack_scoreboard_hole_t *hole;
Florin Coras36ee9f12018-11-02 12:52:10 -07001844 vlib_main_t *vm = wrk->vm;
1845 vlib_buffer_t *b = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001846 sack_scoreboard_t *sb;
1847 u32 bi, old_snd_nxt;
1848 int snd_space;
Florin Coras36ee9f12018-11-02 12:52:10 -07001849 u32 max_deq;
Florin Coras93992a92017-05-24 18:03:56 -07001850 u8 snd_limited = 0, can_rescue = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001851
1852 ASSERT (tcp_in_fastrecovery (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -05001853
Florin Corasca1c8f32018-05-23 21:01:30 -07001854 snd_space = tcp_available_cc_snd_space (tc);
Florin Corasca1c8f32018-05-23 21:01:30 -07001855 if (snd_space < tc->snd_mss)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001856 {
Florin Corasbe72ae62018-11-01 11:23:03 -07001857 tcp_program_fastretransmit (wrk, tc);
Florin Coras36ee9f12018-11-02 12:52:10 -07001858 return 0;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001859 }
Florin Corasca1c8f32018-05-23 21:01:30 -07001860
1861 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0);
Florin Coras36ee9f12018-11-02 12:52:10 -07001862 old_snd_nxt = tc->snd_nxt;
1863 sb = &tc->sack_sb;
1864 hole = scoreboard_get_hole (sb, sb->cur_rxt_hole);
1865
1866 max_deq = session_tx_fifo_max_dequeue (&tc->connection);
1867 max_deq -= tc->snd_una_max - tc->snd_una;
1868
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001869 while (snd_space > 0 && n_segs < burst_size)
Florin Coras93992a92017-05-24 18:03:56 -07001870 {
Florin Coras36ee9f12018-11-02 12:52:10 -07001871 hole = scoreboard_next_rxt_hole (sb, hole, max_deq, &can_rescue,
1872 &snd_limited);
Florin Coras93992a92017-05-24 18:03:56 -07001873 if (!hole)
1874 {
Florin Coras36ee9f12018-11-02 12:52:10 -07001875 if (max_deq)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001876 {
Florin Coras36ee9f12018-11-02 12:52:10 -07001877 snd_space = clib_min (max_deq, snd_space);
1878 burst_size = clib_min (burst_size - n_segs,
1879 snd_space / tc->snd_mss);
1880 n_segs_now = tcp_fast_retransmit_unsent (wrk, tc, burst_size);
1881 if (max_deq > n_segs_now * tc->snd_mss)
1882 tcp_program_fastretransmit (wrk, tc);
1883 n_segs += n_segs_now;
1884 goto done;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001885 }
Florin Coras93992a92017-05-24 18:03:56 -07001886
Florin Coras36ee9f12018-11-02 12:52:10 -07001887 if (!can_rescue || scoreboard_rescue_rxt_valid (sb, tc))
1888 break;
1889
Florin Coras93992a92017-05-24 18:03:56 -07001890 /* If rescue rxt undefined or less than snd_una then one segment of
1891 * up to SMSS octets that MUST include the highest outstanding
1892 * unSACKed sequence number SHOULD be returned, and RescueRxt set to
1893 * RecoveryPoint. HighRxt MUST NOT be updated.
1894 */
Florin Coras1f152cd2017-08-18 19:28:03 -07001895 max_bytes = clib_min (tc->snd_mss,
1896 tc->snd_congestion - tc->snd_una);
1897 max_bytes = clib_min (max_bytes, snd_space);
Florin Coras93992a92017-05-24 18:03:56 -07001898 offset = tc->snd_congestion - tc->snd_una - max_bytes;
1899 sb->rescue_rxt = tc->snd_congestion;
1900 tc->snd_nxt = tc->snd_una + offset;
Florin Corasbe72ae62018-11-01 11:23:03 -07001901 n_written = tcp_prepare_retransmit_segment (wrk, tc, offset,
1902 max_bytes, &b);
Florin Coras24793e32018-05-09 11:34:25 -07001903 if (!n_written)
1904 goto done;
1905
Florin Corasb2215d62017-08-01 16:56:58 -07001906 bi = vlib_get_buffer_index (vm, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001907 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001908 n_segs += 1;
Florin Coras93992a92017-05-24 18:03:56 -07001909 break;
1910 }
1911
Florin Coras1f152cd2017-08-18 19:28:03 -07001912 max_bytes = clib_min (hole->end - sb->high_rxt, snd_space);
1913 max_bytes = snd_limited ? clib_min (max_bytes, tc->snd_mss) : max_bytes;
1914 if (max_bytes == 0)
1915 break;
Florin Coras36ee9f12018-11-02 12:52:10 -07001916
Florin Coras93992a92017-05-24 18:03:56 -07001917 offset = sb->high_rxt - tc->snd_una;
Florin Coras1f152cd2017-08-18 19:28:03 -07001918 tc->snd_nxt = sb->high_rxt;
Florin Corasbe72ae62018-11-01 11:23:03 -07001919 n_written = tcp_prepare_retransmit_segment (wrk, tc, offset, max_bytes,
1920 &b);
Florin Coras36ee9f12018-11-02 12:52:10 -07001921 ASSERT (n_written <= snd_space);
Florin Coras93992a92017-05-24 18:03:56 -07001922
1923 /* Nothing left to retransmit */
1924 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001925 break;
Florin Coras93992a92017-05-24 18:03:56 -07001926
Florin Corasb2215d62017-08-01 16:56:58 -07001927 bi = vlib_get_buffer_index (vm, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001928 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras36ee9f12018-11-02 12:52:10 -07001929
1930 sb->high_rxt += n_written;
Florin Coras93992a92017-05-24 18:03:56 -07001931 snd_space -= n_written;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001932 n_segs += 1;
Florin Coras93992a92017-05-24 18:03:56 -07001933 }
1934
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001935 if (hole)
Florin Corasbe72ae62018-11-01 11:23:03 -07001936 tcp_program_fastretransmit (wrk, tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001937
Florin Coras24793e32018-05-09 11:34:25 -07001938done:
Florin Coras93992a92017-05-24 18:03:56 -07001939 /* If window allows, send 1 SMSS of new data */
1940 tc->snd_nxt = old_snd_nxt;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001941 return n_segs;
Florin Coras93992a92017-05-24 18:03:56 -07001942}
1943
1944/**
1945 * Fast retransmit without SACK info
1946 */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001947int
Florin Corasbe72ae62018-11-01 11:23:03 -07001948tcp_fast_retransmit_no_sack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1949 u32 burst_size)
Florin Coras93992a92017-05-24 18:03:56 -07001950{
Florin Coras36ee9f12018-11-02 12:52:10 -07001951 u32 n_written = 0, offset = 0, bi, old_snd_nxt, max_deq, n_segs_now;
Florin Corasbe72ae62018-11-01 11:23:03 -07001952 vlib_main_t *vm = wrk->vm;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001953 int snd_space, n_segs = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001954 vlib_buffer_t *b;
1955
1956 ASSERT (tcp_in_fastrecovery (tc));
1957 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0);
Florin Coras93992a92017-05-24 18:03:56 -07001958 old_snd_nxt = tc->snd_nxt;
Florin Coras6792ec02017-03-13 03:49:51 -07001959
Florin Coras36ee9f12018-11-02 12:52:10 -07001960 if (!tcp_fastrecovery_first (tc))
1961 goto send_unsent;
1962
1963 /* RFC 6582: [If a partial ack], retransmit the first unacknowledged
1964 * segment. */
1965 snd_space = tc->sack_sb.last_bytes_delivered;
1966 tc->snd_nxt = tc->snd_una;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001967 while (snd_space > 0 && n_segs < burst_size)
Dave Barach68b0fb02017-02-28 15:15:56 -05001968 {
Florin Coras36ee9f12018-11-02 12:52:10 -07001969 n_written = tcp_prepare_retransmit_segment (wrk, tc, offset,
1970 tc->snd_mss, &b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001971
1972 /* Nothing left to retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001973 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001974 break;
Dave Barach68b0fb02017-02-28 15:15:56 -05001975
Florin Corasb2215d62017-08-01 16:56:58 -07001976 bi = vlib_get_buffer_index (vm, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001977 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras6792ec02017-03-13 03:49:51 -07001978 snd_space -= n_written;
Florin Coras36ee9f12018-11-02 12:52:10 -07001979 offset += n_written;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001980 n_segs += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001981 }
1982
Florin Coras36ee9f12018-11-02 12:52:10 -07001983 if (n_segs == burst_size)
1984 goto done;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001985
Florin Coras36ee9f12018-11-02 12:52:10 -07001986send_unsent:
1987
1988 /* RFC 6582: Send a new segment if permitted by the new value of cwnd. */
1989 snd_space = tcp_available_cc_snd_space (tc);
Florin Coras9ece3c02018-11-05 11:06:53 -08001990 if (snd_space < tc->snd_mss || tc->snd_mss == 0)
Florin Coras36ee9f12018-11-02 12:52:10 -07001991 goto done;
1992
1993 max_deq = session_tx_fifo_max_dequeue (&tc->connection);
1994 max_deq -= tc->snd_una_max - tc->snd_una;
1995 if (max_deq)
1996 {
1997 snd_space = clib_min (max_deq, snd_space);
1998 burst_size = clib_min (burst_size - n_segs, snd_space / tc->snd_mss);
1999 n_segs_now = tcp_fast_retransmit_unsent (wrk, tc, burst_size);
2000 if (max_deq > n_segs_now * tc->snd_mss)
2001 tcp_program_fastretransmit (wrk, tc);
2002 n_segs += n_segs_now;
2003 }
2004
2005 /* Restore snd_nxt */
Florin Coras93992a92017-05-24 18:03:56 -07002006 tc->snd_nxt = old_snd_nxt;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07002007
Florin Coras36ee9f12018-11-02 12:52:10 -07002008done:
2009 tcp_fastrecovery_first_off (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07002010 return n_segs;
Florin Coras93992a92017-05-24 18:03:56 -07002011}
2012
2013/**
2014 * Do fast retransmit
2015 */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07002016int
Florin Corasbe72ae62018-11-01 11:23:03 -07002017tcp_fast_retransmit (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
2018 u32 burst_size)
Florin Coras93992a92017-05-24 18:03:56 -07002019{
Florin Corasca1c8f32018-05-23 21:01:30 -07002020 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Corasbe72ae62018-11-01 11:23:03 -07002021 return tcp_fast_retransmit_sack (wrk, tc, burst_size);
Florin Coras93992a92017-05-24 18:03:56 -07002022 else
Florin Corasbe72ae62018-11-01 11:23:03 -07002023 return tcp_fast_retransmit_no_sack (wrk, tc, burst_size);
Dave Barach68b0fb02017-02-28 15:15:56 -05002024}
2025
Florin Corasf9d05682018-04-26 08:26:52 -07002026static void
2027tcp_output_handle_link_local (tcp_connection_t * tc0, vlib_buffer_t * b0,
Florin Coras8b20bf52018-06-14 14:55:50 -07002028 u16 * next0, u32 * error0)
Florin Corasf9d05682018-04-26 08:26:52 -07002029{
2030 ip_adjacency_t *adj;
2031 adj_index_t ai;
2032
Florin Coras1c8ff632018-05-17 13:28:34 -07002033 /* Not thread safe but as long as the connection exists the adj should
2034 * not be removed */
Florin Corasf9d05682018-04-26 08:26:52 -07002035 ai = adj_nbr_find (FIB_PROTOCOL_IP6, VNET_LINK_IP6, &tc0->c_rmt_ip,
2036 tc0->sw_if_index);
2037 if (ai == ADJ_INDEX_INVALID)
2038 {
Florin Corasf9d05682018-04-26 08:26:52 -07002039 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
2040 *next0 = TCP_OUTPUT_NEXT_DROP;
2041 *error0 = TCP_ERROR_LINK_LOCAL_RW;
2042 return;
2043 }
2044
2045 adj = adj_get (ai);
Florin Coras1c8ff632018-05-17 13:28:34 -07002046 if (PREDICT_TRUE (adj->lookup_next_index == IP_LOOKUP_NEXT_REWRITE))
Florin Corasf9d05682018-04-26 08:26:52 -07002047 *next0 = TCP_OUTPUT_NEXT_IP_REWRITE;
2048 else if (adj->lookup_next_index == IP_LOOKUP_NEXT_ARP)
2049 *next0 = TCP_OUTPUT_NEXT_IP_ARP;
Florin Coras1c8ff632018-05-17 13:28:34 -07002050 else
2051 {
2052 *next0 = TCP_OUTPUT_NEXT_DROP;
2053 *error0 = TCP_ERROR_LINK_LOCAL_RW;
2054 }
2055 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = ai;
Florin Corasf9d05682018-04-26 08:26:52 -07002056}
2057
Florin Coras8b20bf52018-06-14 14:55:50 -07002058static void
2059tcp46_output_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2060 u32 * to_next, u32 n_bufs)
Dave Barach68b0fb02017-02-28 15:15:56 -05002061{
Florin Coras8b20bf52018-06-14 14:55:50 -07002062 u32 n_trace = vlib_get_trace_count (vm, node);
2063 tcp_connection_t *tc;
2064 tcp_tx_trace_t *t;
2065 vlib_buffer_t *b;
2066 tcp_header_t *th;
2067 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05002068
Florin Coras8b20bf52018-06-14 14:55:50 -07002069 for (i = 0; i < clib_min (n_trace, n_bufs); i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05002070 {
Florin Coras8b20bf52018-06-14 14:55:50 -07002071 b = vlib_get_buffer (vm, to_next[i]);
2072 th = vlib_buffer_get_current (b);
2073 tc = tcp_connection_get (vnet_buffer (b)->tcp.connection_index,
2074 vm->thread_index);
2075 t = vlib_add_trace (vm, node, b, sizeof (*t));
Dave Barach178cf492018-11-13 16:34:13 -05002076 clib_memcpy_fast (&t->tcp_header, th, sizeof (t->tcp_header));
2077 clib_memcpy_fast (&t->tcp_connection, tc, sizeof (t->tcp_connection));
Florin Coras8b20bf52018-06-14 14:55:50 -07002078 }
2079}
Dave Barach68b0fb02017-02-28 15:15:56 -05002080
Florin Coras0dbd5172018-06-25 16:19:34 -07002081always_inline void
Florin Coras8b20bf52018-06-14 14:55:50 -07002082tcp_output_push_ip (vlib_main_t * vm, vlib_buffer_t * b0,
2083 tcp_connection_t * tc0, u8 is_ip4)
2084{
2085 tcp_header_t *th0 = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002086
Florin Coras8b20bf52018-06-14 14:55:50 -07002087 th0 = vlib_buffer_get_current (b0);
2088 TCP_EVT_DBG (TCP_EVT_OUTPUT, tc0, th0->flags, b0->current_length);
2089 if (is_ip4)
2090 {
2091 vlib_buffer_push_ip4 (vm, b0, &tc0->c_lcl_ip4, &tc0->c_rmt_ip4,
2092 IP_PROTOCOL_TCP, 1);
2093 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
2094 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
2095 th0->checksum = 0;
2096 }
2097 else
2098 {
2099 ip6_header_t *ih0;
2100 ih0 = vlib_buffer_push_ip6 (vm, b0, &tc0->c_lcl_ip6,
2101 &tc0->c_rmt_ip6, IP_PROTOCOL_TCP);
2102 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
2103 vnet_buffer (b0)->l3_hdr_offset = (u8 *) ih0 - b0->data;
2104 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
2105 th0->checksum = 0;
2106 }
2107}
Dave Barach68b0fb02017-02-28 15:15:56 -05002108
Florin Coras0dbd5172018-06-25 16:19:34 -07002109always_inline void
Florin Coras8b20bf52018-06-14 14:55:50 -07002110tcp_output_handle_packet (tcp_connection_t * tc0, vlib_buffer_t * b0,
2111 u32 * error0, u16 * next0, u8 is_ip4)
2112{
Florin Coras81a13db2018-03-16 08:48:31 -07002113
Florin Coras8b20bf52018-06-14 14:55:50 -07002114 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
2115 {
2116 *error0 = TCP_ERROR_INVALID_CONNECTION;
2117 *next0 = TCP_OUTPUT_NEXT_DROP;
2118 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05002119 }
2120
Florin Coras8b20bf52018-06-14 14:55:50 -07002121 vnet_buffer (b0)->sw_if_index[VLIB_TX] = tc0->c_fib_index;
2122 vnet_buffer (b0)->sw_if_index[VLIB_RX] = 0;
2123
2124 if (!is_ip4)
2125 {
2126 if (PREDICT_FALSE (ip6_address_is_link_local_unicast (&tc0->c_rmt_ip6)))
2127 tcp_output_handle_link_local (tc0, b0, next0, error0);
2128 }
2129
Florin Coras8b20bf52018-06-14 14:55:50 -07002130 if (!TCP_ALWAYS_ACK)
2131 tcp_timer_reset (tc0, TCP_TIMER_DELACK);
2132}
2133
2134always_inline uword
2135tcp46_output_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2136 vlib_frame_t * frame, int is_ip4)
2137{
2138 u32 n_left_from, *from, thread_index = vm->thread_index;
2139 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
2140 u16 nexts[VLIB_FRAME_SIZE], *next;
2141
2142 from = vlib_frame_vector_args (frame);
2143 n_left_from = frame->n_vectors;
Florin Corasbe72ae62018-11-01 11:23:03 -07002144 tcp_set_time_now (tcp_get_worker (thread_index));
Florin Coras8b20bf52018-06-14 14:55:50 -07002145
2146 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
2147 tcp46_output_trace_frame (vm, node, from, n_left_from);
2148
2149 vlib_get_buffers (vm, from, bufs, n_left_from);
2150 b = bufs;
2151 next = nexts;
2152
2153 while (n_left_from >= 4)
2154 {
2155 u32 error0 = TCP_ERROR_PKTS_SENT, error1 = TCP_ERROR_PKTS_SENT;
2156 tcp_connection_t *tc0, *tc1;
2157
2158 {
2159 vlib_prefetch_buffer_header (b[2], STORE);
2160 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
2161
2162 vlib_prefetch_buffer_header (b[3], STORE);
2163 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
2164 }
2165
2166 next[0] = next[1] = TCP_OUTPUT_NEXT_IP_LOOKUP;
2167
2168 tc0 = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index,
2169 thread_index);
2170 tc1 = tcp_connection_get (vnet_buffer (b[1])->tcp.connection_index,
2171 thread_index);
2172
2173 tcp_output_push_ip (vm, b[0], tc0, is_ip4);
2174 tcp_output_push_ip (vm, b[1], tc1, is_ip4);
2175
2176 tcp_output_handle_packet (tc0, b[0], &error0, &next[0], is_ip4);
2177 tcp_output_handle_packet (tc1, b[1], &error1, &next[1], is_ip4);
2178
2179 b += 2;
2180 next += 2;
2181 n_left_from -= 2;
2182 }
2183 while (n_left_from > 0)
2184 {
2185 u32 error0 = TCP_ERROR_PKTS_SENT;
2186 tcp_connection_t *tc0;
2187
2188 if (n_left_from > 1)
2189 {
Florin Coras91ca4622018-06-30 11:27:59 -07002190 vlib_prefetch_buffer_header (b[1], STORE);
2191 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
Florin Coras8b20bf52018-06-14 14:55:50 -07002192 }
2193
2194 next[0] = TCP_OUTPUT_NEXT_IP_LOOKUP;
2195 tc0 = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index,
2196 thread_index);
2197
2198 tcp_output_push_ip (vm, b[0], tc0, is_ip4);
2199 tcp_output_handle_packet (tc0, b[0], &error0, &next[0], is_ip4);
2200
2201 b += 1;
2202 next += 1;
2203 n_left_from -= 1;
2204 }
2205
2206 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
2207 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002208}
2209
2210static uword
2211tcp4_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, 1 /* is_ip4 */ );
2215}
2216
2217static uword
2218tcp6_output (vlib_main_t * vm, vlib_node_runtime_t * node,
2219 vlib_frame_t * from_frame)
2220{
2221 return tcp46_output_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2222}
2223
Florin Corase69f4952017-03-07 10:06:24 -08002224/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002225VLIB_REGISTER_NODE (tcp4_output_node) =
2226{
Dave Barachf970d2f2018-11-26 18:34:33 -05002227 .function = tcp4_output,
2228 .name = "tcp4-output",
2229 /* Takes a vector of packets. */
2230 .vector_size = sizeof (u32),
2231 .n_errors = TCP_N_ERROR,
Dave Barach7fff3d22018-11-27 16:52:59 -05002232 .protocol_hint = VLIB_NODE_PROTO_HINT_TCP,
Dave Barachf970d2f2018-11-26 18:34:33 -05002233 .error_strings = tcp_error_strings,
2234 .n_next_nodes = TCP_OUTPUT_N_NEXT,
2235 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002236#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
2237 foreach_tcp4_output_next
2238#undef _
Dave Barachf970d2f2018-11-26 18:34:33 -05002239 },
2240 .format_buffer = format_tcp_header,
2241 .format_trace = format_tcp_tx_trace,
Florin Corase69f4952017-03-07 10:06:24 -08002242};
2243/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002244
Florin Corase69f4952017-03-07 10:06:24 -08002245VLIB_NODE_FUNCTION_MULTIARCH (tcp4_output_node, tcp4_output);
2246
2247/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002248VLIB_REGISTER_NODE (tcp6_output_node) =
2249{
Florin Corase69f4952017-03-07 10:06:24 -08002250 .function = tcp6_output,
2251 .name = "tcp6-output",
Dave Barach68b0fb02017-02-28 15:15:56 -05002252 /* Takes a vector of packets. */
Florin Corase69f4952017-03-07 10:06:24 -08002253 .vector_size = sizeof (u32),
2254 .n_errors = TCP_N_ERROR,
Dave Barach7fff3d22018-11-27 16:52:59 -05002255 .protocol_hint = VLIB_NODE_PROTO_HINT_TCP,
Florin Corase69f4952017-03-07 10:06:24 -08002256 .error_strings = tcp_error_strings,
2257 .n_next_nodes = TCP_OUTPUT_N_NEXT,
2258 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002259#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
2260 foreach_tcp6_output_next
2261#undef _
Florin Corase69f4952017-03-07 10:06:24 -08002262 },
2263 .format_buffer = format_tcp_header,
2264 .format_trace = format_tcp_tx_trace,
2265};
2266/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002267
Florin Corase69f4952017-03-07 10:06:24 -08002268VLIB_NODE_FUNCTION_MULTIARCH (tcp6_output_node, tcp6_output);
2269
Dave Barach68b0fb02017-02-28 15:15:56 -05002270typedef enum _tcp_reset_next
2271{
2272 TCP_RESET_NEXT_DROP,
2273 TCP_RESET_NEXT_IP_LOOKUP,
2274 TCP_RESET_N_NEXT
2275} tcp_reset_next_t;
2276
2277#define foreach_tcp4_reset_next \
2278 _(DROP, "error-drop") \
2279 _(IP_LOOKUP, "ip4-lookup")
2280
2281#define foreach_tcp6_reset_next \
2282 _(DROP, "error-drop") \
2283 _(IP_LOOKUP, "ip6-lookup")
2284
2285static uword
2286tcp46_send_reset_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2287 vlib_frame_t * from_frame, u8 is_ip4)
2288{
2289 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02002290 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002291
2292 from = vlib_frame_vector_args (from_frame);
2293 n_left_from = from_frame->n_vectors;
2294
2295 next_index = node->cached_next_index;
2296
2297 while (n_left_from > 0)
2298 {
2299 u32 n_left_to_next;
2300
2301 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2302
2303 while (n_left_from > 0 && n_left_to_next > 0)
2304 {
2305 u32 bi0;
2306 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002307 tcp_tx_trace_t *t0;
2308 tcp_header_t *th0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002309 u32 error0 = TCP_ERROR_RST_SENT, next0 = TCP_RESET_NEXT_IP_LOOKUP;
2310
2311 bi0 = from[0];
2312 to_next[0] = bi0;
2313 from += 1;
2314 to_next += 1;
2315 n_left_from -= 1;
2316 n_left_to_next -= 1;
2317
2318 b0 = vlib_get_buffer (vm, bi0);
2319
2320 if (tcp_make_reset_in_place (vm, b0, vnet_buffer (b0)->tcp.flags,
2321 my_thread_index, is_ip4))
2322 {
2323 error0 = TCP_ERROR_LOOKUP_DROPS;
2324 next0 = TCP_RESET_NEXT_DROP;
2325 goto done;
2326 }
2327
2328 /* Prepare to send to IP lookup */
Florin Corasf988e692017-11-27 04:34:14 -05002329 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002330 next0 = TCP_RESET_NEXT_IP_LOOKUP;
2331
2332 done:
Florin Corase69f4952017-03-07 10:06:24 -08002333 b0->error = node->errors[error0];
Damjan Marion213b5aa2017-07-13 21:19:27 +02002334 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002335 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2336 {
Clement Durand6cf260c2017-04-13 13:27:04 +02002337 th0 = vlib_buffer_get_current (b0);
2338 if (is_ip4)
2339 th0 = ip4_next_header ((ip4_header_t *) th0);
2340 else
2341 th0 = ip6_next_header ((ip6_header_t *) th0);
Clement Durand6cf260c2017-04-13 13:27:04 +02002342 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05002343 clib_memcpy_fast (&t0->tcp_header, th0,
2344 sizeof (t0->tcp_header));
Dave Barach68b0fb02017-02-28 15:15:56 -05002345 }
2346
2347 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2348 n_left_to_next, bi0, next0);
2349 }
2350 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2351 }
2352 return from_frame->n_vectors;
2353}
2354
2355static uword
2356tcp4_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, 1);
2360}
2361
2362static uword
2363tcp6_send_reset (vlib_main_t * vm, vlib_node_runtime_t * node,
2364 vlib_frame_t * from_frame)
2365{
2366 return tcp46_send_reset_inline (vm, node, from_frame, 0);
2367}
2368
2369/* *INDENT-OFF* */
2370VLIB_REGISTER_NODE (tcp4_reset_node) = {
2371 .function = tcp4_send_reset,
2372 .name = "tcp4-reset",
2373 .vector_size = sizeof (u32),
2374 .n_errors = TCP_N_ERROR,
2375 .error_strings = tcp_error_strings,
2376 .n_next_nodes = TCP_RESET_N_NEXT,
2377 .next_nodes = {
2378#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2379 foreach_tcp4_reset_next
2380#undef _
2381 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002382 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002383};
2384/* *INDENT-ON* */
2385
Florin Corase69f4952017-03-07 10:06:24 -08002386VLIB_NODE_FUNCTION_MULTIARCH (tcp4_reset_node, tcp4_send_reset);
2387
Dave Barach68b0fb02017-02-28 15:15:56 -05002388/* *INDENT-OFF* */
2389VLIB_REGISTER_NODE (tcp6_reset_node) = {
2390 .function = tcp6_send_reset,
2391 .name = "tcp6-reset",
2392 .vector_size = sizeof (u32),
2393 .n_errors = TCP_N_ERROR,
2394 .error_strings = tcp_error_strings,
2395 .n_next_nodes = TCP_RESET_N_NEXT,
2396 .next_nodes = {
2397#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2398 foreach_tcp6_reset_next
2399#undef _
2400 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002401 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002402};
2403/* *INDENT-ON* */
2404
Florin Corase69f4952017-03-07 10:06:24 -08002405VLIB_NODE_FUNCTION_MULTIARCH (tcp6_reset_node, tcp6_send_reset);
2406
Dave Barach68b0fb02017-02-28 15:15:56 -05002407/*
2408 * fd.io coding-style-patch-verification: ON
2409 *
2410 * Local Variables:
2411 * eval: (c-set-style "gnu")
2412 * End:
2413 */