blob: f14a61263d4514bce5ff1559a1a730aa1189cf16 [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 Corase04c2992017-03-01 08:17:34 -0800129 tc->rcv_wscale = tcp_window_compute_scale (max_fifo);
130 tc->rcv_wnd = tcp_initial_wnd_unscaled (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500131
132 return clib_min (tc->rcv_wnd, TCP_WND_MAX);
133}
134
Florin Coras0dbd5172018-06-25 16:19:34 -0700135static void
Florin Coras6792ec02017-03-13 03:49:51 -0700136tcp_update_rcv_wnd (tcp_connection_t * tc)
137{
138 i32 observed_wnd;
139 u32 available_space, max_fifo, wnd;
140
Florin Corase04c2992017-03-01 08:17:34 -0800141 /*
142 * Figure out how much space we have available
143 */
Florin Corasd2aab832018-05-22 11:39:59 -0700144 available_space = transport_max_rx_enqueue (&tc->connection);
145 max_fifo = transport_rx_fifo_size (&tc->connection);
Dave Barach68b0fb02017-02-28 15:15:56 -0500146
Florin Coras93992a92017-05-24 18:03:56 -0700147 ASSERT (tc->rcv_opts.mss < max_fifo);
148 if (available_space < tc->rcv_opts.mss && available_space < max_fifo >> 3)
Florin Corase04c2992017-03-01 08:17:34 -0800149 available_space = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500150
Florin Corase04c2992017-03-01 08:17:34 -0800151 /*
152 * Use the above and what we know about what we've previously advertised
153 * to compute the new window
154 */
Florin Coras6792ec02017-03-13 03:49:51 -0700155 observed_wnd = (i32) tc->rcv_wnd - (tc->rcv_nxt - tc->rcv_las);
156 if (observed_wnd < 0)
157 observed_wnd = 0;
Florin Corase04c2992017-03-01 08:17:34 -0800158
159 /* Bad. Thou shalt not shrink */
160 if (available_space < observed_wnd)
161 {
Florin Coras6792ec02017-03-13 03:49:51 -0700162 wnd = observed_wnd;
Florin Coras3e350af2017-03-30 02:54:28 -0700163 TCP_EVT_DBG (TCP_EVT_RCV_WND_SHRUNK, tc, observed_wnd, available_space);
Florin Corase04c2992017-03-01 08:17:34 -0800164 }
Florin Coras6792ec02017-03-13 03:49:51 -0700165 else
Florin Corase04c2992017-03-01 08:17:34 -0800166 {
Florin Coras6792ec02017-03-13 03:49:51 -0700167 wnd = available_space;
Florin Corase04c2992017-03-01 08:17:34 -0800168 }
169
Florin Coras3e350af2017-03-30 02:54:28 -0700170 /* Make sure we have a multiple of rcv_wscale */
171 if (wnd && tc->rcv_wscale)
172 {
173 wnd &= ~(1 << tc->rcv_wscale);
174 if (wnd == 0)
175 wnd = 1 << tc->rcv_wscale;
176 }
Florin Coras6792ec02017-03-13 03:49:51 -0700177
178 tc->rcv_wnd = clib_min (wnd, TCP_WND_MAX << tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500179}
180
181/**
Florin Coras0dbd5172018-06-25 16:19:34 -0700182 * Compute and return window to advertise, scaled as per RFC1323
183 */
184static u32
185tcp_window_to_advertise (tcp_connection_t * tc, tcp_state_t state)
186{
187 if (state < TCP_STATE_ESTABLISHED)
188 return tcp_initial_window_to_advertise (tc);
189
190 tcp_update_rcv_wnd (tc);
191
192 if (tc->rcv_wnd == 0)
193 {
194 tc->flags |= TCP_CONN_SENT_RCV_WND0;
195 }
196 else
197 {
198 tc->flags &= ~TCP_CONN_SENT_RCV_WND0;
199 }
200
201 return tc->rcv_wnd >> tc->rcv_wscale;
202}
203
204/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500205 * Write TCP options to segment.
206 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700207static u32
Dave Barach68b0fb02017-02-28 15:15:56 -0500208tcp_options_write (u8 * data, tcp_options_t * opts)
209{
210 u32 opts_len = 0;
211 u32 buf, seq_len = 4;
212
213 if (tcp_opts_mss (opts))
214 {
215 *data++ = TCP_OPTION_MSS;
216 *data++ = TCP_OPTION_LEN_MSS;
217 buf = clib_host_to_net_u16 (opts->mss);
218 clib_memcpy (data, &buf, sizeof (opts->mss));
219 data += sizeof (opts->mss);
220 opts_len += TCP_OPTION_LEN_MSS;
221 }
222
223 if (tcp_opts_wscale (opts))
224 {
225 *data++ = TCP_OPTION_WINDOW_SCALE;
226 *data++ = TCP_OPTION_LEN_WINDOW_SCALE;
227 *data++ = opts->wscale;
228 opts_len += TCP_OPTION_LEN_WINDOW_SCALE;
229 }
230
231 if (tcp_opts_sack_permitted (opts))
232 {
233 *data++ = TCP_OPTION_SACK_PERMITTED;
234 *data++ = TCP_OPTION_LEN_SACK_PERMITTED;
235 opts_len += TCP_OPTION_LEN_SACK_PERMITTED;
236 }
237
238 if (tcp_opts_tstamp (opts))
239 {
240 *data++ = TCP_OPTION_TIMESTAMP;
241 *data++ = TCP_OPTION_LEN_TIMESTAMP;
242 buf = clib_host_to_net_u32 (opts->tsval);
243 clib_memcpy (data, &buf, sizeof (opts->tsval));
244 data += sizeof (opts->tsval);
245 buf = clib_host_to_net_u32 (opts->tsecr);
246 clib_memcpy (data, &buf, sizeof (opts->tsecr));
247 data += sizeof (opts->tsecr);
248 opts_len += TCP_OPTION_LEN_TIMESTAMP;
249 }
250
251 if (tcp_opts_sack (opts))
252 {
253 int i;
254 u32 n_sack_blocks = clib_min (vec_len (opts->sacks),
255 TCP_OPTS_MAX_SACK_BLOCKS);
256
257 if (n_sack_blocks != 0)
258 {
259 *data++ = TCP_OPTION_SACK_BLOCK;
260 *data++ = 2 + n_sack_blocks * TCP_OPTION_LEN_SACK_BLOCK;
261 for (i = 0; i < n_sack_blocks; i++)
262 {
263 buf = clib_host_to_net_u32 (opts->sacks[i].start);
264 clib_memcpy (data, &buf, seq_len);
265 data += seq_len;
266 buf = clib_host_to_net_u32 (opts->sacks[i].end);
267 clib_memcpy (data, &buf, seq_len);
268 data += seq_len;
269 }
270 opts_len += 2 + n_sack_blocks * TCP_OPTION_LEN_SACK_BLOCK;
271 }
272 }
273
274 /* Terminate TCP options */
275 if (opts_len % 4)
276 {
277 *data++ = TCP_OPTION_EOL;
278 opts_len += TCP_OPTION_LEN_EOL;
279 }
280
281 /* Pad with zeroes to a u32 boundary */
282 while (opts_len % 4)
283 {
284 *data++ = TCP_OPTION_NOOP;
285 opts_len += TCP_OPTION_LEN_NOOP;
286 }
287 return opts_len;
288}
289
Florin Coras0dbd5172018-06-25 16:19:34 -0700290static int
Florin Corase04c2992017-03-01 08:17:34 -0800291tcp_make_syn_options (tcp_options_t * opts, u8 wnd_scale)
Dave Barach68b0fb02017-02-28 15:15:56 -0500292{
293 u8 len = 0;
294
295 opts->flags |= TCP_OPTS_FLAG_MSS;
296 opts->mss = dummy_mtu; /*XXX discover that */
297 len += TCP_OPTION_LEN_MSS;
298
299 opts->flags |= TCP_OPTS_FLAG_WSCALE;
Florin Corase04c2992017-03-01 08:17:34 -0800300 opts->wscale = wnd_scale;
Dave Barach68b0fb02017-02-28 15:15:56 -0500301 len += TCP_OPTION_LEN_WINDOW_SCALE;
302
303 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
304 opts->tsval = tcp_time_now ();
305 opts->tsecr = 0;
306 len += TCP_OPTION_LEN_TIMESTAMP;
307
Florin Coras93992a92017-05-24 18:03:56 -0700308 if (TCP_USE_SACKS)
309 {
310 opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
311 len += TCP_OPTION_LEN_SACK_PERMITTED;
312 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500313
314 /* Align to needed boundary */
315 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
316 return len;
317}
318
Florin Coras0dbd5172018-06-25 16:19:34 -0700319static int
Dave Barach68b0fb02017-02-28 15:15:56 -0500320tcp_make_synack_options (tcp_connection_t * tc, tcp_options_t * opts)
321{
322 u8 len = 0;
323
324 opts->flags |= TCP_OPTS_FLAG_MSS;
Florin Corasc8343412017-05-04 14:25:50 -0700325 opts->mss = tc->mss;
Dave Barach68b0fb02017-02-28 15:15:56 -0500326 len += TCP_OPTION_LEN_MSS;
327
Florin Coras93992a92017-05-24 18:03:56 -0700328 if (tcp_opts_wscale (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500329 {
330 opts->flags |= TCP_OPTS_FLAG_WSCALE;
331 opts->wscale = tc->rcv_wscale;
332 len += TCP_OPTION_LEN_WINDOW_SCALE;
333 }
334
Florin Coras93992a92017-05-24 18:03:56 -0700335 if (tcp_opts_tstamp (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500336 {
337 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
338 opts->tsval = tcp_time_now ();
339 opts->tsecr = tc->tsval_recent;
340 len += TCP_OPTION_LEN_TIMESTAMP;
341 }
342
Florin Coras93992a92017-05-24 18:03:56 -0700343 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500344 {
345 opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
346 len += TCP_OPTION_LEN_SACK_PERMITTED;
347 }
348
349 /* Align to needed boundary */
350 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
351 return len;
352}
353
Florin Coras0dbd5172018-06-25 16:19:34 -0700354static int
Dave Barach68b0fb02017-02-28 15:15:56 -0500355tcp_make_established_options (tcp_connection_t * tc, tcp_options_t * opts)
356{
357 u8 len = 0;
358
359 opts->flags = 0;
360
Florin Coras93992a92017-05-24 18:03:56 -0700361 if (tcp_opts_tstamp (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500362 {
363 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
364 opts->tsval = tcp_time_now ();
365 opts->tsecr = tc->tsval_recent;
366 len += TCP_OPTION_LEN_TIMESTAMP;
367 }
Florin Coras93992a92017-05-24 18:03:56 -0700368 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500369 {
370 if (vec_len (tc->snd_sacks))
371 {
372 opts->flags |= TCP_OPTS_FLAG_SACK;
373 opts->sacks = tc->snd_sacks;
Florin Corasc28764f2017-04-26 00:08:42 -0700374 opts->n_sack_blocks = clib_min (vec_len (tc->snd_sacks),
375 TCP_OPTS_MAX_SACK_BLOCKS);
Dave Barach68b0fb02017-02-28 15:15:56 -0500376 len += 2 + TCP_OPTION_LEN_SACK_BLOCK * opts->n_sack_blocks;
377 }
378 }
379
380 /* Align to needed boundary */
381 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
382 return len;
383}
384
385always_inline int
386tcp_make_options (tcp_connection_t * tc, tcp_options_t * opts,
387 tcp_state_t state)
388{
389 switch (state)
390 {
391 case TCP_STATE_ESTABLISHED:
392 case TCP_STATE_FIN_WAIT_1:
Florin Corasca1c8f32018-05-23 21:01:30 -0700393 case TCP_STATE_CLOSED:
Florin Coras25579b42018-06-06 17:55:02 -0700394 case TCP_STATE_CLOSE_WAIT:
Dave Barach68b0fb02017-02-28 15:15:56 -0500395 return tcp_make_established_options (tc, opts);
396 case TCP_STATE_SYN_RCVD:
397 return tcp_make_synack_options (tc, opts);
398 case TCP_STATE_SYN_SENT:
Florin Corase04c2992017-03-01 08:17:34 -0800399 return tcp_make_syn_options (opts, tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500400 default:
Florin Coras371ca502018-02-21 12:07:41 -0800401 clib_warning ("State not handled! %d", state);
Dave Barach68b0fb02017-02-28 15:15:56 -0500402 return 0;
403 }
404}
405
Florin Corasc8343412017-05-04 14:25:50 -0700406/**
Florin Corasb26743d2018-06-26 09:31:04 -0700407 * Update burst send vars
408 *
409 * - Updates snd_mss to reflect the effective segment size that we can send
410 * by taking into account all TCP options, including SACKs.
411 * - Cache 'on the wire' options for reuse
412 * - Updates receive window which can be reused for a burst.
413 *
414 * This should *only* be called when doing bursts
Florin Corasc8343412017-05-04 14:25:50 -0700415 */
416void
Florin Corasb26743d2018-06-26 09:31:04 -0700417tcp_update_burst_snd_vars (tcp_connection_t * tc)
Florin Corasc8343412017-05-04 14:25:50 -0700418{
Florin Corasb26743d2018-06-26 09:31:04 -0700419 tcp_main_t *tm = &tcp_main;
420
Florin Corasc8343412017-05-04 14:25:50 -0700421 /* Compute options to be used for connection. These may be reused when
422 * sending data or to compute the effective mss (snd_mss) */
Florin Corasb26743d2018-06-26 09:31:04 -0700423 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts,
424 TCP_STATE_ESTABLISHED);
Florin Corasc8343412017-05-04 14:25:50 -0700425
426 /* XXX check if MTU has been updated */
Florin Coras93992a92017-05-24 18:03:56 -0700427 tc->snd_mss = clib_min (tc->mss, tc->rcv_opts.mss) - tc->snd_opts_len;
Florin Corasdb84e572017-05-09 18:54:52 -0700428 ASSERT (tc->snd_mss > 0);
Florin Corasb26743d2018-06-26 09:31:04 -0700429
430 tcp_options_write (tm->wrk_ctx[tc->c_thread_index].cached_opts,
431 &tc->snd_opts);
432
433 tcp_update_rcv_wnd (tc);
Florin Corasc8343412017-05-04 14:25:50 -0700434}
435
436void
437tcp_init_mss (tcp_connection_t * tc)
438{
Florin Corasdb84e572017-05-09 18:54:52 -0700439 u16 default_min_mss = 536;
Florin Corasc8343412017-05-04 14:25:50 -0700440 tcp_update_rcv_mss (tc);
441
442 /* TODO cache mss and consider PMTU discovery */
Florin Coras93992a92017-05-24 18:03:56 -0700443 tc->snd_mss = clib_min (tc->rcv_opts.mss, tc->mss);
Florin Corasc8343412017-05-04 14:25:50 -0700444
Florin Corasdb84e572017-05-09 18:54:52 -0700445 if (tc->snd_mss < 45)
Florin Corasc8343412017-05-04 14:25:50 -0700446 {
447 clib_warning ("snd mss is 0");
Florin Corasdb84e572017-05-09 18:54:52 -0700448 /* Assume that at least the min default mss works */
449 tc->snd_mss = default_min_mss;
Florin Coras93992a92017-05-24 18:03:56 -0700450 tc->rcv_opts.mss = default_min_mss;
Florin Corasc8343412017-05-04 14:25:50 -0700451 }
452
453 /* We should have enough space for 40 bytes of options */
454 ASSERT (tc->snd_mss > 45);
455
456 /* If we use timestamp option, account for it */
Florin Coras93992a92017-05-24 18:03:56 -0700457 if (tcp_opts_tstamp (&tc->rcv_opts))
Florin Corasc8343412017-05-04 14:25:50 -0700458 tc->snd_mss -= TCP_OPTION_LEN_TIMESTAMP;
459}
460
Florin Coras0dbd5172018-06-25 16:19:34 -0700461static int
Florin Coras24793e32018-05-09 11:34:25 -0700462tcp_alloc_tx_buffers (tcp_main_t * tm, u8 thread_index, u16 * n_bufs,
463 u32 wanted)
Florin Corasb2215d62017-08-01 16:56:58 -0700464{
Florin Coras2c414432018-06-19 09:58:04 -0700465 tcp_worker_ctx_t *ctx = &tm->wrk_ctx[thread_index];
Florin Coras2f9b0c02017-09-11 20:54:15 -0400466 vlib_main_t *vm = vlib_get_main ();
Florin Coras24793e32018-05-09 11:34:25 -0700467 u32 n_alloc;
Dave Barachb7f1faa2017-08-29 11:43:37 -0400468
Florin Coras24793e32018-05-09 11:34:25 -0700469 ASSERT (wanted > *n_bufs);
Florin Coras2c414432018-06-19 09:58:04 -0700470 vec_validate_aligned (ctx->tx_buffers, wanted - 1, CLIB_CACHE_LINE_BYTES);
471 n_alloc = vlib_buffer_alloc (vm, &ctx->tx_buffers[*n_bufs],
Florin Coras24793e32018-05-09 11:34:25 -0700472 wanted - *n_bufs);
473 *n_bufs += n_alloc;
Florin Coras2c414432018-06-19 09:58:04 -0700474 _vec_len (ctx->tx_buffers) = *n_bufs;
Florin Coras24793e32018-05-09 11:34:25 -0700475 return n_alloc;
Florin Corasb2215d62017-08-01 16:56:58 -0700476}
477
478always_inline int
Florin Coras66b11312017-07-31 17:18:03 -0700479tcp_get_free_buffer_index (tcp_main_t * tm, u32 * bidx)
480{
Florin Coras66b11312017-07-31 17:18:03 -0700481 u32 thread_index = vlib_get_thread_index ();
Florin Coras2c414432018-06-19 09:58:04 -0700482 tcp_worker_ctx_t *ctx = &tm->wrk_ctx[thread_index];
483 u16 n_bufs = vec_len (ctx->tx_buffers);
Florin Corasf988e692017-11-27 04:34:14 -0500484
485 TCP_DBG_BUFFER_ALLOC_MAYBE_FAIL (thread_index);
486
Florin Coras24793e32018-05-09 11:34:25 -0700487 if (PREDICT_FALSE (!n_bufs))
Florin Coras66b11312017-07-31 17:18:03 -0700488 {
Florin Coras24793e32018-05-09 11:34:25 -0700489 if (!tcp_alloc_tx_buffers (tm, thread_index, &n_bufs, VLIB_FRAME_SIZE))
490 {
491 *bidx = ~0;
492 return -1;
493 }
Florin Coras66b11312017-07-31 17:18:03 -0700494 }
Florin Coras2c414432018-06-19 09:58:04 -0700495 *bidx = ctx->tx_buffers[--n_bufs];
496 _vec_len (ctx->tx_buffers) = n_bufs;
Florin Coras66b11312017-07-31 17:18:03 -0700497 return 0;
498}
Dave Barach68b0fb02017-02-28 15:15:56 -0500499
Florin Coras0dbd5172018-06-25 16:19:34 -0700500static void *
Dave Barach68b0fb02017-02-28 15:15:56 -0500501tcp_reuse_buffer (vlib_main_t * vm, vlib_buffer_t * b)
502{
Florin Corasb2215d62017-08-01 16:56:58 -0700503 if (b->flags & VLIB_BUFFER_NEXT_PRESENT)
504 vlib_buffer_free_one (vm, b->next_buffer);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400505 /* Zero all flags but free list index and trace flag */
506 b->flags &= VLIB_BUFFER_NEXT_PRESENT - 1;
Florin Coras1f152cd2017-08-18 19:28:03 -0700507 b->current_data = 0;
508 b->current_length = 0;
509 b->total_length_not_including_first_buffer = 0;
510 vnet_buffer (b)->tcp.flags = 0;
Florin Corasb2215d62017-08-01 16:56:58 -0700511
Dave Barach68b0fb02017-02-28 15:15:56 -0500512 /* Leave enough space for headers */
Florin Coras1f152cd2017-08-18 19:28:03 -0700513 return vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
514}
515
Florin Coras0dbd5172018-06-25 16:19:34 -0700516static void *
Florin Coras1f152cd2017-08-18 19:28:03 -0700517tcp_init_buffer (vlib_main_t * vm, vlib_buffer_t * b)
518{
519 ASSERT ((b->flags & VLIB_BUFFER_NEXT_PRESENT) == 0);
Damjan Mariondac03522018-02-01 15:30:13 +0100520 b->flags &= VLIB_BUFFER_NON_DEFAULT_FREELIST;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400521 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Florin Coras1f152cd2017-08-18 19:28:03 -0700522 b->total_length_not_including_first_buffer = 0;
Florin Coras24793e32018-05-09 11:34:25 -0700523 b->current_data = 0;
Florin Corasd79b41e2017-03-04 05:37:52 -0800524 vnet_buffer (b)->tcp.flags = 0;
Florin Corasf988e692017-11-27 04:34:14 -0500525 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b);
Florin Coras1f152cd2017-08-18 19:28:03 -0700526 /* Leave enough space for headers */
527 return vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
Dave Barach68b0fb02017-02-28 15:15:56 -0500528}
529
530/**
531 * Prepare ACK
532 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700533static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500534tcp_make_ack_i (tcp_connection_t * tc, vlib_buffer_t * b, tcp_state_t state,
535 u8 flags)
536{
537 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
538 u8 tcp_opts_len, tcp_hdr_opts_len;
539 tcp_header_t *th;
540 u16 wnd;
541
542 wnd = tcp_window_to_advertise (tc, state);
543
544 /* Make and write options */
545 tcp_opts_len = tcp_make_established_options (tc, snd_opts);
546 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
547
548 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
549 tc->rcv_nxt, tcp_hdr_opts_len, flags, wnd);
550
551 tcp_options_write ((u8 *) (th + 1), snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500552 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
553}
554
555/**
556 * Convert buffer to ACK
557 */
558void
559tcp_make_ack (tcp_connection_t * tc, vlib_buffer_t * b)
560{
Florin Coras6792ec02017-03-13 03:49:51 -0700561 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500562
563 tcp_reuse_buffer (vm, b);
564 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, TCP_FLAG_ACK);
Florin Coras6792ec02017-03-13 03:49:51 -0700565 TCP_EVT_DBG (TCP_EVT_ACK_SENT, tc);
Florin Coras3e350af2017-03-30 02:54:28 -0700566 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_ACK;
567 tc->rcv_las = tc->rcv_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500568}
569
570/**
571 * Convert buffer to FIN-ACK
572 */
573void
Florin Corasd79b41e2017-03-04 05:37:52 -0800574tcp_make_fin (tcp_connection_t * tc, vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500575{
Florin Coras6792ec02017-03-13 03:49:51 -0700576 vlib_main_t *vm = vlib_get_main ();
Florin Corasd79b41e2017-03-04 05:37:52 -0800577 u8 flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500578
579 tcp_reuse_buffer (vm, b);
Florin Corasd79b41e2017-03-04 05:37:52 -0800580
Florin Corase69f4952017-03-07 10:06:24 -0800581 flags = TCP_FLAG_FIN | TCP_FLAG_ACK;
Florin Corasd79b41e2017-03-04 05:37:52 -0800582 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, flags);
Dave Barach68b0fb02017-02-28 15:15:56 -0500583
584 /* Reset flags, make sure ack is sent */
Dave Barach68b0fb02017-02-28 15:15:56 -0500585 vnet_buffer (b)->tcp.flags &= ~TCP_BUF_FLAG_DUPACK;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400586}
Dave Barach68b0fb02017-02-28 15:15:56 -0500587
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400588/**
589 * Convert buffer to SYN
590 */
591void
592tcp_make_syn (tcp_connection_t * tc, vlib_buffer_t * b)
593{
594 u8 tcp_hdr_opts_len, tcp_opts_len;
595 tcp_header_t *th;
596 u16 initial_wnd;
597 tcp_options_t snd_opts;
598
599 initial_wnd = tcp_initial_window_to_advertise (tc);
600
601 /* Make and write options */
Dave Barachb7b92992018-10-17 10:38:51 -0400602 clib_memset (&snd_opts, 0, sizeof (snd_opts));
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400603 tcp_opts_len = tcp_make_syn_options (&snd_opts, tc->rcv_wscale);
604 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
605
606 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
607 tc->rcv_nxt, tcp_hdr_opts_len, TCP_FLAG_SYN,
608 initial_wnd);
609 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
610 tcp_options_write ((u8 *) (th + 1), &snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500611}
612
613/**
614 * Convert buffer to SYN-ACK
615 */
616void
617tcp_make_synack (tcp_connection_t * tc, vlib_buffer_t * b)
618{
Florin Coras6792ec02017-03-13 03:49:51 -0700619 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500620 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
621 u8 tcp_opts_len, tcp_hdr_opts_len;
622 tcp_header_t *th;
623 u16 initial_wnd;
Dave Barach68b0fb02017-02-28 15:15:56 -0500624
Dave Barachb7b92992018-10-17 10:38:51 -0400625 clib_memset (snd_opts, 0, sizeof (*snd_opts));
Dave Barach68b0fb02017-02-28 15:15:56 -0500626 tcp_reuse_buffer (vm, b);
627
Dave Barach68b0fb02017-02-28 15:15:56 -0500628 initial_wnd = tcp_initial_window_to_advertise (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500629 tcp_opts_len = tcp_make_synack_options (tc, snd_opts);
630 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
631
632 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
633 tc->rcv_nxt, tcp_hdr_opts_len,
634 TCP_FLAG_SYN | TCP_FLAG_ACK, initial_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -0500635 tcp_options_write ((u8 *) (th + 1), snd_opts);
636
637 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
638 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_ACK;
639
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 Coras9d063042017-09-14 03:08:00 -0400647tcp_enqueue_to_ip_lookup_i (vlib_main_t * vm, 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 Coras9d063042017-09-14 03:08:00 -0400650 tcp_main_t *tm = vnet_get_tcp_main ();
651 u32 thread_index = vlib_get_thread_index ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500652 u32 *to_next, next_index;
653 vlib_frame_t *f;
654
Damjan Marion213b5aa2017-07-13 21:19:27 +0200655 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500656 b->error = 0;
657
Florin Coras56b39f62018-03-27 17:29:32 -0700658 vnet_buffer (b)->sw_if_index[VLIB_TX] = fib_index;
659 vnet_buffer (b)->sw_if_index[VLIB_RX] = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500660
661 /* Send to IP lookup */
662 next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index;
Florin Corasf988e692017-11-27 04:34:14 -0500663 tcp_trajectory_add_start (b, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500664
Florin Coras2c414432018-06-19 09:58:04 -0700665 f = tm->wrk_ctx[thread_index].ip_lookup_tx_frames[!is_ip4];
Florin Coras9d063042017-09-14 03:08:00 -0400666 if (!f)
667 {
668 f = vlib_get_frame_to_node (vm, next_index);
669 ASSERT (f);
Florin Coras2c414432018-06-19 09:58:04 -0700670 tm->wrk_ctx[thread_index].ip_lookup_tx_frames[!is_ip4] = f;
Florin Coras9d063042017-09-14 03:08:00 -0400671 }
672
Dave Barach68b0fb02017-02-28 15:15:56 -0500673 to_next = vlib_frame_vector_args (f);
Florin Coras9d063042017-09-14 03:08:00 -0400674 to_next[f->n_vectors] = bi;
675 f->n_vectors += 1;
676 if (flush || f->n_vectors == VLIB_FRAME_SIZE)
677 {
678 vlib_put_frame_to_node (vm, next_index, f);
Florin Coras2c414432018-06-19 09:58:04 -0700679 tm->wrk_ctx[thread_index].ip_lookup_tx_frames[!is_ip4] = 0;
Florin Coras9d063042017-09-14 03:08:00 -0400680 }
681}
682
Florin Coras0dbd5172018-06-25 16:19:34 -0700683static void
Florin Coras9d063042017-09-14 03:08:00 -0400684tcp_enqueue_to_ip_lookup_now (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
Florin Coras56b39f62018-03-27 17:29:32 -0700685 u8 is_ip4, u32 fib_index)
Florin Coras9d063042017-09-14 03:08:00 -0400686{
Florin Coras56b39f62018-03-27 17:29:32 -0700687 tcp_enqueue_to_ip_lookup_i (vm, b, bi, is_ip4, fib_index, 1);
Florin Coras9d063042017-09-14 03:08:00 -0400688}
689
Florin Coras0dbd5172018-06-25 16:19:34 -0700690static void
Florin Coras9d063042017-09-14 03:08:00 -0400691tcp_enqueue_to_ip_lookup (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
Florin Coras56b39f62018-03-27 17:29:32 -0700692 u8 is_ip4, u32 fib_index)
Florin Coras9d063042017-09-14 03:08:00 -0400693{
Florin Coras56b39f62018-03-27 17:29:32 -0700694 tcp_enqueue_to_ip_lookup_i (vm, b, bi, is_ip4, fib_index, 0);
Florin Corasfd542f12018-05-16 19:28:24 -0700695 if (vm->thread_index == 0 && vlib_num_workers ())
696 session_flush_frames_main_thread (vm);
Dave Barach68b0fb02017-02-28 15:15:56 -0500697}
698
Florin Coras1f152cd2017-08-18 19:28:03 -0700699always_inline void
700tcp_enqueue_to_output_i (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
701 u8 is_ip4, u8 flush)
702{
703 tcp_main_t *tm = vnet_get_tcp_main ();
704 u32 thread_index = vlib_get_thread_index ();
705 u32 *to_next, next_index;
706 vlib_frame_t *f;
707
708 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
709 b->error = 0;
710
711 /* Decide where to send the packet */
712 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
Florin Corasf988e692017-11-27 04:34:14 -0500713 tcp_trajectory_add_start (b, 2);
Florin Coras1f152cd2017-08-18 19:28:03 -0700714
715 /* Get frame to v4/6 output node */
Florin Coras2c414432018-06-19 09:58:04 -0700716 f = tm->wrk_ctx[thread_index].tx_frames[!is_ip4];
Florin Coras1f152cd2017-08-18 19:28:03 -0700717 if (!f)
718 {
719 f = vlib_get_frame_to_node (vm, next_index);
720 ASSERT (f);
Florin Coras2c414432018-06-19 09:58:04 -0700721 tm->wrk_ctx[thread_index].tx_frames[!is_ip4] = f;
Florin Coras1f152cd2017-08-18 19:28:03 -0700722 }
723 to_next = vlib_frame_vector_args (f);
724 to_next[f->n_vectors] = bi;
725 f->n_vectors += 1;
726 if (flush || f->n_vectors == VLIB_FRAME_SIZE)
727 {
728 vlib_put_frame_to_node (vm, next_index, f);
Florin Coras2c414432018-06-19 09:58:04 -0700729 tm->wrk_ctx[thread_index].tx_frames[!is_ip4] = 0;
Florin Coras1f152cd2017-08-18 19:28:03 -0700730 }
731}
732
Florin Coras0dbd5172018-06-25 16:19:34 -0700733static void
Florin Coras1f152cd2017-08-18 19:28:03 -0700734tcp_enqueue_to_output (vlib_main_t * vm, vlib_buffer_t * b, u32 bi, u8 is_ip4)
735{
736 tcp_enqueue_to_output_i (vm, b, bi, is_ip4, 0);
737}
738
Florin Coras0dbd5172018-06-25 16:19:34 -0700739static void
Florin Coras1f152cd2017-08-18 19:28:03 -0700740tcp_enqueue_to_output_now (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
741 u8 is_ip4)
742{
743 tcp_enqueue_to_output_i (vm, b, bi, is_ip4, 1);
744}
745
Florin Coras0dbd5172018-06-25 16:19:34 -0700746static int
Dave Barach68b0fb02017-02-28 15:15:56 -0500747tcp_make_reset_in_place (vlib_main_t * vm, vlib_buffer_t * b0,
Florin Corasdc629cd2017-05-09 00:52:37 -0700748 tcp_state_t state, u8 thread_index, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500749{
Dave Barach68b0fb02017-02-28 15:15:56 -0500750 ip4_header_t *ih4;
751 ip6_header_t *ih6;
752 tcp_header_t *th0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700753 ip4_address_t src_ip40, dst_ip40;
754 ip6_address_t src_ip60, dst_ip60;
755 u16 src_port, dst_port;
Dave Barach68b0fb02017-02-28 15:15:56 -0500756 u32 tmp;
Florin Corasdc629cd2017-05-09 00:52:37 -0700757 u32 seq, ack;
758 u8 flags;
Dave Barach68b0fb02017-02-28 15:15:56 -0500759
760 /* Find IP and TCP headers */
Florin Corasdc629cd2017-05-09 00:52:37 -0700761 th0 = tcp_buffer_hdr (b0);
762
763 /* Save src and dst ip */
Dave Barach68b0fb02017-02-28 15:15:56 -0500764 if (is_ip4)
765 {
766 ih4 = vlib_buffer_get_current (b0);
Florin Corasdc629cd2017-05-09 00:52:37 -0700767 ASSERT ((ih4->ip_version_and_header_length & 0xF0) == 0x40);
768 src_ip40.as_u32 = ih4->src_address.as_u32;
769 dst_ip40.as_u32 = ih4->dst_address.as_u32;
Dave Barach68b0fb02017-02-28 15:15:56 -0500770 }
771 else
772 {
773 ih6 = vlib_buffer_get_current (b0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500774 ASSERT ((ih6->ip_version_traffic_class_and_flow_label & 0xF0) == 0x60);
775 clib_memcpy (&src_ip60, &ih6->src_address, sizeof (ip6_address_t));
Florin Corasdc629cd2017-05-09 00:52:37 -0700776 clib_memcpy (&dst_ip60, &ih6->dst_address, sizeof (ip6_address_t));
Dave Barach68b0fb02017-02-28 15:15:56 -0500777 }
778
Florin Corasdc629cd2017-05-09 00:52:37 -0700779 src_port = th0->src_port;
780 dst_port = th0->dst_port;
781
782 /* Try to determine what/why we're actually resetting */
Dave Barach68b0fb02017-02-28 15:15:56 -0500783 if (state == TCP_STATE_CLOSED)
784 {
785 if (!tcp_syn (th0))
786 return -1;
787
788 tmp = clib_net_to_host_u32 (th0->seq_number);
789
790 /* Got a SYN for no listener. */
Florin Corasdc629cd2017-05-09 00:52:37 -0700791 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
792 ack = clib_host_to_net_u32 (tmp + 1);
793 seq = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500794 }
Florin Corasdc629cd2017-05-09 00:52:37 -0700795 else
Dave Barach68b0fb02017-02-28 15:15:56 -0500796 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700797 flags = TCP_FLAG_RST;
798 seq = th0->ack_number;
799 ack = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500800 }
801
Florin Corasdc629cd2017-05-09 00:52:37 -0700802 tcp_reuse_buffer (vm, b0);
Florin Corasf988e692017-11-27 04:34:14 -0500803 tcp_trajectory_add_start (b0, 4);
Florin Corasdc629cd2017-05-09 00:52:37 -0700804 th0 = vlib_buffer_push_tcp_net_order (b0, dst_port, src_port, seq, ack,
805 sizeof (tcp_header_t), flags, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500806
Dave Barach68b0fb02017-02-28 15:15:56 -0500807 if (is_ip4)
808 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700809 ih4 = vlib_buffer_push_ip4 (vm, b0, &dst_ip40, &src_ip40,
Florin Corasfdbc3822017-07-27 00:34:12 -0700810 IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500811 th0->checksum = ip4_tcp_udp_compute_checksum (vm, b0, ih4);
812 }
813 else
814 {
815 int bogus = ~0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700816 ih6 = vlib_buffer_push_ip6 (vm, b0, &dst_ip60, &src_ip60,
817 IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500818 th0->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b0, ih6, &bogus);
819 ASSERT (!bogus);
820 }
821
822 return 0;
823}
824
825/**
826 * Send reset without reusing existing buffer
Florin Coras1f152cd2017-08-18 19:28:03 -0700827 *
828 * It extracts connection info out of original packet
Dave Barach68b0fb02017-02-28 15:15:56 -0500829 */
830void
Florin Coras1f152cd2017-08-18 19:28:03 -0700831tcp_send_reset_w_pkt (tcp_connection_t * tc, vlib_buffer_t * pkt, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500832{
833 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 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -0700836 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500837 u8 tcp_hdr_len, flags = 0;
838 tcp_header_t *th, *pkt_th;
839 u32 seq, ack;
840 ip4_header_t *ih4, *pkt_ih4;
841 ip6_header_t *ih6, *pkt_ih6;
Florin Coras56b39f62018-03-27 17:29:32 -0700842 fib_protocol_t fib_proto;
Dave Barach68b0fb02017-02-28 15:15:56 -0500843
Florin Coras66b11312017-07-31 17:18:03 -0700844 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
845 return;
846
Dave Barach68b0fb02017-02-28 15:15:56 -0500847 b = vlib_get_buffer (vm, bi);
Florin Coras56b39f62018-03-27 17:29:32 -0700848 sw_if_index = vnet_buffer (pkt)->sw_if_index[VLIB_RX];
849 fib_proto = is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
850 fib_index = fib_table_get_index_for_sw_if_index (fib_proto, sw_if_index);
Florin Coras1f152cd2017-08-18 19:28:03 -0700851 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500852
853 /* Make and write options */
854 tcp_hdr_len = sizeof (tcp_header_t);
855
856 if (is_ip4)
857 {
858 pkt_ih4 = vlib_buffer_get_current (pkt);
859 pkt_th = ip4_next_header (pkt_ih4);
860 }
861 else
862 {
863 pkt_ih6 = vlib_buffer_get_current (pkt);
864 pkt_th = ip6_next_header (pkt_ih6);
865 }
866
867 if (tcp_ack (pkt_th))
868 {
869 flags = TCP_FLAG_RST;
870 seq = pkt_th->ack_number;
Florin Coras6534b7a2017-07-18 05:38:03 -0400871 ack = (tc && tc->state >= TCP_STATE_SYN_RCVD) ? tc->rcv_nxt : 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500872 }
873 else
874 {
875 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
876 seq = 0;
877 ack = clib_host_to_net_u32 (vnet_buffer (pkt)->tcp.seq_end);
878 }
879
880 th = vlib_buffer_push_tcp_net_order (b, pkt_th->dst_port, pkt_th->src_port,
881 seq, ack, tcp_hdr_len, flags, 0);
882
883 /* Swap src and dst ip */
884 if (is_ip4)
885 {
886 ASSERT ((pkt_ih4->ip_version_and_header_length & 0xF0) == 0x40);
887 ih4 = vlib_buffer_push_ip4 (vm, b, &pkt_ih4->dst_address,
Florin Corasfdbc3822017-07-27 00:34:12 -0700888 &pkt_ih4->src_address, IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500889 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
890 }
891 else
892 {
893 int bogus = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500894 ASSERT ((pkt_ih6->ip_version_traffic_class_and_flow_label & 0xF0) ==
895 0x60);
rootc9d1c5b2017-08-15 12:58:31 -0400896 ih6 = vlib_buffer_push_ip6 (vm, b, &pkt_ih6->dst_address,
897 &pkt_ih6->src_address, IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500898 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
899 ASSERT (!bogus);
900 }
901
Florin Coras56b39f62018-03-27 17:29:32 -0700902 tcp_enqueue_to_ip_lookup_now (vm, b, bi, is_ip4, fib_index);
Florin Coras6534b7a2017-07-18 05:38:03 -0400903 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500904}
905
Florin Coras1f152cd2017-08-18 19:28:03 -0700906/**
907 * Build and set reset packet for connection
908 */
909void
910tcp_send_reset (tcp_connection_t * tc)
911{
912 vlib_main_t *vm = vlib_get_main ();
913 tcp_main_t *tm = vnet_get_tcp_main ();
914 vlib_buffer_t *b;
915 u32 bi;
916 tcp_header_t *th;
917 u16 tcp_hdr_opts_len, advertise_wnd, opts_write_len;
918 u8 flags;
919
920 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
921 return;
922 b = vlib_get_buffer (vm, bi);
923 tcp_init_buffer (vm, b);
924
925 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
926 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
927 advertise_wnd = tcp_window_to_advertise (tc, TCP_STATE_ESTABLISHED);
928 flags = TCP_FLAG_RST;
929 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
930 tc->rcv_nxt, tcp_hdr_opts_len, flags,
931 advertise_wnd);
932 opts_write_len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
933 ASSERT (opts_write_len == tc->snd_opts_len);
934 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Florin Corasf1762d62017-09-24 19:43:08 -0400935 if (tc->c_is_ip4)
936 {
937 ip4_header_t *ih4;
938 ih4 = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip.ip4,
939 &tc->c_rmt_ip.ip4, IP_PROTOCOL_TCP, 0);
940 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
941 }
942 else
943 {
944 int bogus = ~0;
945 ip6_header_t *ih6;
946 ih6 = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip.ip6,
947 &tc->c_rmt_ip.ip6, IP_PROTOCOL_TCP);
948 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
949 ASSERT (!bogus);
950 }
Florin Coras56b39f62018-03-27 17:29:32 -0700951 tcp_enqueue_to_ip_lookup_now (vm, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Corasf1762d62017-09-24 19:43:08 -0400952 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc);
Florin Coras1f152cd2017-08-18 19:28:03 -0700953}
954
Florin Coras0dbd5172018-06-25 16:19:34 -0700955static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500956tcp_push_ip_hdr (tcp_main_t * tm, tcp_connection_t * tc, vlib_buffer_t * b)
957{
958 tcp_header_t *th = vlib_buffer_get_current (b);
Dave Barach2c25a622017-06-26 11:35:07 -0400959 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500960 if (tc->c_is_ip4)
961 {
962 ip4_header_t *ih;
Dave Barach2c25a622017-06-26 11:35:07 -0400963 ih = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip4,
Florin Corasfdbc3822017-07-27 00:34:12 -0700964 &tc->c_rmt_ip4, IP_PROTOCOL_TCP, 1);
Dave Barach2c25a622017-06-26 11:35:07 -0400965 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih);
Dave Barach68b0fb02017-02-28 15:15:56 -0500966 }
967 else
968 {
969 ip6_header_t *ih;
970 int bogus = ~0;
971
Dave Barach2c25a622017-06-26 11:35:07 -0400972 ih = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip6,
Dave Barach68b0fb02017-02-28 15:15:56 -0500973 &tc->c_rmt_ip6, IP_PROTOCOL_TCP);
Dave Barach2c25a622017-06-26 11:35:07 -0400974 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih, &bogus);
Dave Barach68b0fb02017-02-28 15:15:56 -0500975 ASSERT (!bogus);
976 }
977}
978
979/**
980 * Send SYN
981 *
982 * Builds a SYN packet for a half-open connection and sends it to ipx_lookup.
983 * The packet is not forwarded through tcpx_output to avoid doing lookups
984 * in the half_open pool.
985 */
986void
987tcp_send_syn (tcp_connection_t * tc)
988{
989 vlib_buffer_t *b;
990 u32 bi;
991 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -0700992 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500993
Florin Corasf988e692017-11-27 04:34:14 -0500994 /*
995 * Setup retransmit and establish timers before requesting buffer
996 * such that we can return if we've ran out.
997 */
998 tcp_timer_set (tc, TCP_TIMER_ESTABLISH, TCP_ESTABLISH_TIME);
999 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN,
1000 tc->rto * TCP_TO_TIMER_TICK);
1001
Florin Coras66b11312017-07-31 17:18:03 -07001002 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1003 return;
1004
Dave Barach68b0fb02017-02-28 15:15:56 -05001005 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001006 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001007 tcp_make_syn (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001008
1009 /* Measure RTT with this */
1010 tc->rtt_ts = tcp_time_now ();
1011 tc->rtt_seq = tc->snd_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001012 tc->rto_boff = 0;
1013
Dave Barach68b0fb02017-02-28 15:15:56 -05001014 tcp_push_ip_hdr (tm, tc, b);
Florin Coras56b39f62018-03-27 17:29:32 -07001015 tcp_enqueue_to_ip_lookup (vm, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Coras6534b7a2017-07-18 05:38:03 -04001016 TCP_EVT_DBG (TCP_EVT_SYN_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001017}
1018
Florin Coras66b11312017-07-31 17:18:03 -07001019/**
1020 * Flush tx frame populated by retransmits and timer pops
1021 */
1022void
1023tcp_flush_frame_to_output (vlib_main_t * vm, u8 thread_index, u8 is_ip4)
1024{
Florin Coras2c414432018-06-19 09:58:04 -07001025 if (tcp_main.wrk_ctx[thread_index].tx_frames[!is_ip4])
Florin Coras66b11312017-07-31 17:18:03 -07001026 {
1027 u32 next_index;
1028 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
1029 vlib_put_frame_to_node (vm, next_index,
Florin Coras2c414432018-06-19 09:58:04 -07001030 tcp_main.
1031 wrk_ctx[thread_index].tx_frames[!is_ip4]);
1032 tcp_main.wrk_ctx[thread_index].tx_frames[!is_ip4] = 0;
Florin Coras66b11312017-07-31 17:18:03 -07001033 }
1034}
1035
1036/**
Florin Coras9d063042017-09-14 03:08:00 -04001037 * Flush ip lookup tx frames populated by timer pops
1038 */
Florin Coras0dbd5172018-06-25 16:19:34 -07001039static void
Florin Coras9d063042017-09-14 03:08:00 -04001040tcp_flush_frame_to_ip_lookup (vlib_main_t * vm, u8 thread_index, u8 is_ip4)
1041{
Florin Coras2c414432018-06-19 09:58:04 -07001042 if (tcp_main.wrk_ctx[thread_index].ip_lookup_tx_frames[!is_ip4])
Florin Coras9d063042017-09-14 03:08:00 -04001043 {
1044 u32 next_index;
1045 next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index;
1046 vlib_put_frame_to_node (vm, next_index,
Florin Coras2c414432018-06-19 09:58:04 -07001047 tcp_main.
1048 wrk_ctx[thread_index].ip_lookup_tx_frames
1049 [!is_ip4]);
1050 tcp_main.wrk_ctx[thread_index].ip_lookup_tx_frames[!is_ip4] = 0;
Florin Coras9d063042017-09-14 03:08:00 -04001051 }
1052}
1053
1054/**
1055 * Flush v4 and v6 tcp and ip-lookup tx frames for thread index
Florin Coras66b11312017-07-31 17:18:03 -07001056 */
1057void
1058tcp_flush_frames_to_output (u8 thread_index)
1059{
1060 vlib_main_t *vm = vlib_get_main ();
1061 tcp_flush_frame_to_output (vm, thread_index, 1);
1062 tcp_flush_frame_to_output (vm, thread_index, 0);
Florin Coras9d063042017-09-14 03:08:00 -04001063 tcp_flush_frame_to_ip_lookup (vm, thread_index, 1);
1064 tcp_flush_frame_to_ip_lookup (vm, thread_index, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001065}
1066
1067/**
1068 * Send FIN
1069 */
1070void
1071tcp_send_fin (tcp_connection_t * tc)
1072{
Dave Barach68b0fb02017-02-28 15:15:56 -05001073 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001074 vlib_main_t *vm = vlib_get_main ();
Florin Coras9d063042017-09-14 03:08:00 -04001075 vlib_buffer_t *b;
1076 u32 bi;
1077 u8 fin_snt = 0;
1078
Florin Corasc977e7c2018-10-16 20:30:31 -07001079 fin_snt = tc->flags & TCP_CONN_FINSNT;
1080 if (fin_snt)
1081 tc->snd_nxt = tc->snd_una;
1082
Florin Coras66b11312017-07-31 17:18:03 -07001083 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
Florin Coraseb97e5f2018-10-15 21:35:42 -07001084 {
1085 /* Out of buffers so program fin retransmit ASAP */
1086 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT, 1);
Florin Corasc977e7c2018-10-16 20:30:31 -07001087 goto post_enqueue;
Florin Coraseb97e5f2018-10-15 21:35:42 -07001088 }
1089
Florin Corasc977e7c2018-10-16 20:30:31 -07001090 tcp_retransmit_timer_force_update (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001091 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001092 tcp_init_buffer (vm, b);
Florin Corasd79b41e2017-03-04 05:37:52 -08001093 tcp_make_fin (tc, b);
Florin Coras66b11312017-07-31 17:18:03 -07001094 tcp_enqueue_to_output_now (vm, b, bi, tc->c_is_ip4);
Florin Corasc977e7c2018-10-16 20:30:31 -07001095 TCP_EVT_DBG (TCP_EVT_FIN_SENT, tc);
1096
1097post_enqueue:
Florin Coras9d063042017-09-14 03:08:00 -04001098 if (!fin_snt)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001099 {
1100 tc->flags |= TCP_CONN_FINSNT;
1101 tc->flags &= ~TCP_CONN_FINPNDG;
Florin Coras9d063042017-09-14 03:08:00 -04001102 /* Account for the FIN */
1103 tc->snd_una_max += 1;
1104 tc->snd_nxt = tc->snd_una_max;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001105 }
Florin Corasa096f2d2017-09-28 23:49:42 -04001106 else
1107 {
1108 tc->snd_nxt = tc->snd_una_max;
1109 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001110}
1111
1112always_inline u8
Florin Corasb2215d62017-08-01 16:56:58 -07001113tcp_make_state_flags (tcp_connection_t * tc, tcp_state_t next_state)
Dave Barach68b0fb02017-02-28 15:15:56 -05001114{
1115 switch (next_state)
1116 {
1117 case TCP_STATE_ESTABLISHED:
Florin Coras00dfe542018-06-11 13:15:11 -07001118 case TCP_STATE_CLOSE_WAIT:
Dave Barach68b0fb02017-02-28 15:15:56 -05001119 return TCP_FLAG_ACK;
1120 case TCP_STATE_SYN_RCVD:
1121 return TCP_FLAG_SYN | TCP_FLAG_ACK;
1122 case TCP_STATE_SYN_SENT:
1123 return TCP_FLAG_SYN;
1124 case TCP_STATE_LAST_ACK:
1125 case TCP_STATE_FIN_WAIT_1:
Florin Corasb2215d62017-08-01 16:56:58 -07001126 if (tc->snd_nxt + 1 < tc->snd_una_max)
1127 return TCP_FLAG_ACK;
1128 else
1129 return TCP_FLAG_FIN;
Dave Barach68b0fb02017-02-28 15:15:56 -05001130 default:
1131 clib_warning ("Shouldn't be here!");
1132 }
1133 return 0;
1134}
1135
1136/**
1137 * Push TCP header and update connection variables
1138 */
Florin Coras0dbd5172018-06-25 16:19:34 -07001139always_inline void
Dave Barach68b0fb02017-02-28 15:15:56 -05001140tcp_push_hdr_i (tcp_connection_t * tc, vlib_buffer_t * b,
Florin Corasb26743d2018-06-26 09:31:04 -07001141 tcp_state_t next_state, u8 compute_opts, u8 maybe_burst)
Dave Barach68b0fb02017-02-28 15:15:56 -05001142{
1143 u32 advertise_wnd, data_len;
Florin Corasb26743d2018-06-26 09:31:04 -07001144 u8 tcp_hdr_opts_len, flags;
1145 tcp_main_t *tm = &tcp_main;
Dave Barach68b0fb02017-02-28 15:15:56 -05001146 tcp_header_t *th;
1147
Florin Corasb26743d2018-06-26 09:31:04 -07001148 data_len = b->current_length;
1149 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_NEXT_PRESENT))
1150 data_len += b->total_length_not_including_first_buffer;
1151
Dave Barach68b0fb02017-02-28 15:15:56 -05001152 vnet_buffer (b)->tcp.flags = 0;
Florin Corasb26743d2018-06-26 09:31:04 -07001153 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05001154
Florin Corasc8343412017-05-04 14:25:50 -07001155 if (compute_opts)
1156 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1157
Florin Corasc8343412017-05-04 14:25:50 -07001158 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
Florin Corasb26743d2018-06-26 09:31:04 -07001159
1160 if (maybe_burst)
1161 advertise_wnd = tc->rcv_wnd >> tc->rcv_wscale;
1162 else
1163 advertise_wnd = tcp_window_to_advertise (tc, next_state);
1164
Florin Corasb2215d62017-08-01 16:56:58 -07001165 flags = tcp_make_state_flags (tc, next_state);
Dave Barach68b0fb02017-02-28 15:15:56 -05001166
Dave Barach68b0fb02017-02-28 15:15:56 -05001167 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
1168 tc->rcv_nxt, tcp_hdr_opts_len, flags,
1169 advertise_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -05001170
Florin Corasb26743d2018-06-26 09:31:04 -07001171 if (maybe_burst)
1172 {
1173 clib_memcpy ((u8 *) (th + 1),
1174 tm->wrk_ctx[tc->c_thread_index].cached_opts,
1175 tc->snd_opts_len);
1176 }
1177 else
1178 {
1179 u8 len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
1180 ASSERT (len == tc->snd_opts_len);
1181 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001182
Florin Coras93992a92017-05-24 18:03:56 -07001183 /*
1184 * Update connection variables
1185 */
1186
Dave Barach68b0fb02017-02-28 15:15:56 -05001187 tc->snd_nxt += data_len;
Florin Corasc28764f2017-04-26 00:08:42 -07001188 tc->rcv_las = tc->rcv_nxt;
Florin Coras3e350af2017-03-30 02:54:28 -07001189
Florin Corase69f4952017-03-07 10:06:24 -08001190 TCP_EVT_DBG (TCP_EVT_PKTIZE, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001191}
1192
Florin Coras0dbd5172018-06-25 16:19:34 -07001193u32
1194tcp_push_header (tcp_connection_t * tc, vlib_buffer_t * b)
1195{
Florin Corasb26743d2018-06-26 09:31:04 -07001196 tcp_push_hdr_i (tc, b, TCP_STATE_ESTABLISHED, /* compute opts */ 0,
1197 /* burst */ 1);
Florin Coras0dbd5172018-06-25 16:19:34 -07001198 tc->snd_una_max = tc->snd_nxt;
Florin Coras3ec66b02018-08-23 16:27:05 -07001199 ASSERT (seq_leq (tc->snd_una_max, tc->snd_una + tc->snd_wnd
1200 + tcp_fastrecovery_sent_1_smss (tc) * tc->snd_mss));
Florin Coras0dbd5172018-06-25 16:19:34 -07001201 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
1202 /* If not tracking an ACK, start tracking */
1203 if (tc->rtt_ts == 0 && !tcp_in_cong_recovery (tc))
1204 {
Florin Corasd67f1122018-05-21 17:47:40 -07001205 tc->rtt_ts = tcp_time_now_us (tc->c_thread_index);
Florin Coras0dbd5172018-06-25 16:19:34 -07001206 tc->rtt_seq = tc->snd_nxt;
1207 }
1208 if (PREDICT_FALSE (!tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)))
1209 {
1210 tcp_retransmit_timer_set (tc);
1211 tc->rto_boff = 0;
1212 }
1213 tcp_trajectory_add_start (b, 3);
1214 return 0;
1215}
1216
Dave Barach68b0fb02017-02-28 15:15:56 -05001217void
Florin Coras6792ec02017-03-13 03:49:51 -07001218tcp_send_ack (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001219{
1220 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001221 vlib_main_t *vm = vlib_get_main ();
1222
Dave Barach68b0fb02017-02-28 15:15:56 -05001223 vlib_buffer_t *b;
1224 u32 bi;
1225
Dave Barach68b0fb02017-02-28 15:15:56 -05001226 /* Get buffer */
Florin Coras66b11312017-07-31 17:18:03 -07001227 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1228 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001229 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001230 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001231
1232 /* Fill in the ACK */
1233 tcp_make_ack (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001234 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1235}
1236
Florin Corasb2215d62017-08-01 16:56:58 -07001237/**
1238 * Delayed ack timer handler
1239 *
1240 * Sends delayed ACK when timer expires
1241 */
Florin Coras6792ec02017-03-13 03:49:51 -07001242void
1243tcp_timer_delack_handler (u32 index)
1244{
Damjan Marion586afd72017-04-05 19:18:20 +02001245 u32 thread_index = vlib_get_thread_index ();
Florin Coras6792ec02017-03-13 03:49:51 -07001246 tcp_connection_t *tc;
1247
1248 tc = tcp_connection_get (index, thread_index);
1249 tc->timers[TCP_TIMER_DELACK] = TCP_TIMER_HANDLE_INVALID;
Florin Coras6792ec02017-03-13 03:49:51 -07001250 tcp_send_ack (tc);
1251}
1252
Florin Corasb2215d62017-08-01 16:56:58 -07001253/**
1254 * Build a retransmit segment
Dave Barach68b0fb02017-02-28 15:15:56 -05001255 *
1256 * @return the number of bytes in the segment or 0 if there's nothing to
1257 * retransmit
Florin Coras93992a92017-05-24 18:03:56 -07001258 */
Florin Coras0dbd5172018-06-25 16:19:34 -07001259static u32
Florin Corasb2215d62017-08-01 16:56:58 -07001260tcp_prepare_retransmit_segment (tcp_connection_t * tc, u32 offset,
1261 u32 max_deq_bytes, vlib_buffer_t ** b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001262{
Florin Corasb2215d62017-08-01 16:56:58 -07001263 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001264 vlib_main_t *vm = vlib_get_main ();
Florin Coras93992a92017-05-24 18:03:56 -07001265 int n_bytes = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001266 u32 start, bi, available_bytes, seg_size;
1267 u8 *data;
Dave Barach68b0fb02017-02-28 15:15:56 -05001268
Florin Corase04c2992017-03-01 08:17:34 -08001269 ASSERT (tc->state >= TCP_STATE_ESTABLISHED);
Florin Corasb2215d62017-08-01 16:56:58 -07001270 ASSERT (max_deq_bytes != 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001271
Florin Corasb2215d62017-08-01 16:56:58 -07001272 /*
1273 * Make sure we can retransmit something
1274 */
Florin Coras25579b42018-06-06 17:55:02 -07001275 available_bytes = session_tx_fifo_max_dequeue (&tc->connection);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001276 ASSERT (available_bytes >= offset);
Florin Coras1f152cd2017-08-18 19:28:03 -07001277 available_bytes -= offset;
Florin Corasb2215d62017-08-01 16:56:58 -07001278 if (!available_bytes)
1279 return 0;
Florin Corase87216f2017-08-17 16:59:22 -07001280 max_deq_bytes = clib_min (tc->snd_mss, max_deq_bytes);
Florin Corasb2215d62017-08-01 16:56:58 -07001281 max_deq_bytes = clib_min (available_bytes, max_deq_bytes);
Florin Coras6792ec02017-03-13 03:49:51 -07001282
1283 /* Start is beyond snd_congestion */
Florin Corase87216f2017-08-17 16:59:22 -07001284 start = tc->snd_una + offset;
Florin Coras93992a92017-05-24 18:03:56 -07001285 if (seq_geq (start, tc->snd_congestion))
Florin Coras1f152cd2017-08-18 19:28:03 -07001286 goto done;
Florin Coras6792ec02017-03-13 03:49:51 -07001287
Florin Corasb2215d62017-08-01 16:56:58 -07001288 /* Don't overshoot snd_congestion */
1289 if (seq_gt (start + max_deq_bytes, tc->snd_congestion))
1290 {
1291 max_deq_bytes = tc->snd_congestion - start;
1292 if (max_deq_bytes == 0)
Florin Coras1f152cd2017-08-18 19:28:03 -07001293 goto done;
Florin Corasb2215d62017-08-01 16:56:58 -07001294 }
1295
Florin Coras1f152cd2017-08-18 19:28:03 -07001296 seg_size = max_deq_bytes + MAX_HDRS_LEN;
1297
Florin Corasb2215d62017-08-01 16:56:58 -07001298 /*
1299 * Prepare options
1300 */
Florin Corasc8343412017-05-04 14:25:50 -07001301 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1302
Florin Corasb2215d62017-08-01 16:56:58 -07001303 /*
1304 * Allocate and fill in buffer(s)
1305 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001306
Florin Corasb2215d62017-08-01 16:56:58 -07001307 /* Easy case, buffer size greater than mss */
Florin Corase87216f2017-08-17 16:59:22 -07001308 if (PREDICT_TRUE (seg_size <= tm->bytes_per_buffer))
Florin Corasb2215d62017-08-01 16:56:58 -07001309 {
Florin Coras24793e32018-05-09 11:34:25 -07001310 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1311 return 0;
1312 *b = vlib_get_buffer (vm, bi);
1313 data = tcp_init_buffer (vm, *b);
Florin Corase87216f2017-08-17 16:59:22 -07001314 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1315 max_deq_bytes);
Florin Corasb2215d62017-08-01 16:56:58 -07001316 ASSERT (n_bytes == max_deq_bytes);
1317 b[0]->current_length = n_bytes;
Florin Corasb26743d2018-06-26 09:31:04 -07001318 tcp_push_hdr_i (tc, *b, tc->state, /* compute opts */ 0, /* burst */ 0);
Florin Coras208daa12018-07-02 01:30:51 -07001319 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
1320 tc->snd_una_max = tc->snd_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001321 }
1322 /* Split mss into multiple buffers */
1323 else
1324 {
1325 u32 chain_bi = ~0, n_bufs_per_seg;
1326 u32 thread_index = vlib_get_thread_index ();
1327 u16 n_peeked, len_to_deq, available_bufs;
1328 vlib_buffer_t *chain_b, *prev_b;
Florin Corasb2215d62017-08-01 16:56:58 -07001329 int i;
1330
Florin Corasb2215d62017-08-01 16:56:58 -07001331 /* Make sure we have enough buffers */
Florin Coras24793e32018-05-09 11:34:25 -07001332 n_bufs_per_seg = ceil ((double) seg_size / tm->bytes_per_buffer);
Florin Coras2c414432018-06-19 09:58:04 -07001333 available_bufs = vec_len (tm->wrk_ctx[thread_index].tx_buffers);
Florin Corasb2215d62017-08-01 16:56:58 -07001334 if (n_bufs_per_seg > available_bufs)
1335 {
Florin Coras24793e32018-05-09 11:34:25 -07001336 tcp_alloc_tx_buffers (tm, thread_index, &available_bufs,
1337 VLIB_FRAME_SIZE);
1338
1339 if (n_bufs_per_seg > available_bufs)
Florin Corasb2215d62017-08-01 16:56:58 -07001340 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001341 *b = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001342 return 0;
1343 }
1344 }
1345
Florin Coras24793e32018-05-09 11:34:25 -07001346 tcp_get_free_buffer_index (tm, &bi);
1347 ASSERT (bi != (u32) ~ 0);
1348 *b = vlib_get_buffer (vm, bi);
1349 data = tcp_init_buffer (vm, *b);
Florin Corase87216f2017-08-17 16:59:22 -07001350 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1351 tm->bytes_per_buffer -
1352 MAX_HDRS_LEN);
Florin Corasb2215d62017-08-01 16:56:58 -07001353 b[0]->current_length = n_bytes;
1354 b[0]->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
1355 b[0]->total_length_not_including_first_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001356 max_deq_bytes -= n_bytes;
1357
1358 chain_b = *b;
1359 for (i = 1; i < n_bufs_per_seg; i++)
1360 {
1361 prev_b = chain_b;
1362 len_to_deq = clib_min (max_deq_bytes, tm->bytes_per_buffer);
1363 tcp_get_free_buffer_index (tm, &chain_bi);
1364 ASSERT (chain_bi != (u32) ~ 0);
1365 chain_b = vlib_get_buffer (vm, chain_bi);
1366 chain_b->current_data = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001367 data = vlib_buffer_get_current (chain_b);
1368 n_peeked = stream_session_peek_bytes (&tc->connection, data,
Florin Coras1f152cd2017-08-18 19:28:03 -07001369 offset + n_bytes, len_to_deq);
Florin Corasb2215d62017-08-01 16:56:58 -07001370 ASSERT (n_peeked == len_to_deq);
Florin Coras1f152cd2017-08-18 19:28:03 -07001371 n_bytes += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001372 chain_b->current_length = n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001373 chain_b->next_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001374
1375 /* update previous buffer */
1376 prev_b->next_buffer = chain_bi;
1377 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
1378
Florin Corasb2215d62017-08-01 16:56:58 -07001379 max_deq_bytes -= n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001380 b[0]->total_length_not_including_first_buffer += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001381 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001382
Florin Corasb26743d2018-06-26 09:31:04 -07001383 tcp_push_hdr_i (tc, *b, tc->state, /* compute opts */ 0, /* burst */ 0);
Florin Coras208daa12018-07-02 01:30:51 -07001384 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
1385 tc->snd_una_max = tc->snd_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001386 }
1387
Florin Coras93992a92017-05-24 18:03:56 -07001388 ASSERT (n_bytes > 0);
Florin Corase87216f2017-08-17 16:59:22 -07001389 ASSERT (((*b)->current_data + (*b)->current_length) <=
1390 tm->bytes_per_buffer);
Florin Corasbb292f42017-05-19 09:49:19 -07001391
Florin Coras93992a92017-05-24 18:03:56 -07001392 if (tcp_in_fastrecovery (tc))
1393 tc->snd_rxt_bytes += n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001394
Florin Coras6792ec02017-03-13 03:49:51 -07001395done:
1396 TCP_EVT_DBG (TCP_EVT_CC_RTX, tc, offset, n_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001397 return n_bytes;
1398}
1399
Florin Coras6792ec02017-03-13 03:49:51 -07001400/**
1401 * Reset congestion control, switch cwnd to loss window and try again.
1402 */
1403static void
Florin Corasca1c8f32018-05-23 21:01:30 -07001404tcp_rxt_timeout_cc (tcp_connection_t * tc)
Florin Coras6792ec02017-03-13 03:49:51 -07001405{
Florin Corasca1c8f32018-05-23 21:01:30 -07001406 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 6);
Florin Coras93992a92017-05-24 18:03:56 -07001407 tc->prev_ssthresh = tc->ssthresh;
1408 tc->prev_cwnd = tc->cwnd;
1409
Florin Coras6792ec02017-03-13 03:49:51 -07001410 /* Cleanly recover cc (also clears up fast retransmit) */
1411 if (tcp_in_fastrecovery (tc))
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001412 {
1413 /* TODO be less aggressive about this */
1414 scoreboard_clear (&tc->sack_sb);
1415 tcp_cc_fastrecovery_exit (tc);
1416 }
Florin Coras6792ec02017-03-13 03:49:51 -07001417
1418 /* Start again from the beginning */
Florin Corasd2aab832018-05-22 11:39:59 -07001419 tc->cc_algo->congestion (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001420 tc->cwnd = tcp_loss_wnd (tc);
1421 tc->snd_congestion = tc->snd_una_max;
Florin Corasf1762d62017-09-24 19:43:08 -04001422 tc->rtt_ts = 0;
Florin Corasd2aab832018-05-22 11:39:59 -07001423 tc->cwnd_acc_bytes = 0;
1424
Florin Coras3af90fc2017-05-03 21:09:42 -07001425 tcp_recovery_on (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001426}
1427
Florin Coras0dbd5172018-06-25 16:19:34 -07001428static inline void
Dave Barach68b0fb02017-02-28 15:15:56 -05001429tcp_timer_retransmit_handler_i (u32 index, u8 is_syn)
1430{
1431 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001432 vlib_main_t *vm = vlib_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02001433 u32 thread_index = vlib_get_thread_index ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001434 tcp_connection_t *tc;
Florin Corasb2215d62017-08-01 16:56:58 -07001435 vlib_buffer_t *b = 0;
Florin Coras3af90fc2017-05-03 21:09:42 -07001436 u32 bi, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001437
1438 if (is_syn)
1439 {
1440 tc = tcp_half_open_connection_get (index);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001441 /* Note: the connection may have transitioned to ESTABLISHED... */
1442 if (PREDICT_FALSE (tc == 0))
1443 return;
Florin Coras68810622017-07-24 17:40:28 -07001444 tc->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05001445 }
1446 else
1447 {
1448 tc = tcp_connection_get (index, thread_index);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001449 /* Note: the connection may have been closed and pool_put */
1450 if (PREDICT_FALSE (tc == 0))
1451 return;
Florin Coras68810622017-07-24 17:40:28 -07001452 tc->timers[TCP_TIMER_RETRANSMIT] = TCP_TIMER_HANDLE_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05001453 }
1454
Florin Corasca1c8f32018-05-23 21:01:30 -07001455 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 1);
1456
Florin Corase04c2992017-03-01 08:17:34 -08001457 if (tc->state >= TCP_STATE_ESTABLISHED)
Dave Barach68b0fb02017-02-28 15:15:56 -05001458 {
Florin Coras93992a92017-05-24 18:03:56 -07001459 /* Lost FIN, retransmit and return */
Florin Coras93e65802017-11-29 00:07:11 -05001460 if (tcp_is_lost_fin (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001461 {
1462 tcp_send_fin (tc);
Florin Corasf988e692017-11-27 04:34:14 -05001463 tc->rto_boff += 1;
1464 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
Florin Coras93992a92017-05-24 18:03:56 -07001465 return;
1466 }
1467
Florin Coras3ec66b02018-08-23 16:27:05 -07001468 /* Shouldn't be here. This condition is tricky because it has to take
1469 * into account boff > 0 due to persist timeout. */
Florin Coras887b7ba2018-06-09 06:49:59 -07001470 if ((tc->rto_boff == 0 && tc->snd_una == tc->snd_una_max)
Florin Coras3ec66b02018-08-23 16:27:05 -07001471 || (tc->rto_boff > 0 && seq_geq (tc->snd_una, tc->snd_congestion)
1472 && !tcp_flight_size (tc)))
Florin Corasa096f2d2017-09-28 23:49:42 -04001473 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001474 ASSERT (!tcp_in_recovery (tc));
1475 tc->rto_boff = 0;
Florin Corasa096f2d2017-09-28 23:49:42 -04001476 return;
1477 }
1478
Florin Coras3ec66b02018-08-23 16:27:05 -07001479 /* We're not in recovery so make sure rto_boff is 0. Can be non 0 due
1480 * to persist timer timeout */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001481 if (!tcp_in_recovery (tc) && tc->rto_boff > 0)
1482 {
1483 tc->rto_boff = 0;
1484 tcp_update_rto (tc);
1485 }
1486
1487 /* Increment RTO backoff (also equal to number of retries) and go back
1488 * to first un-acked byte */
1489 tc->rto_boff += 1;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001490
Florin Coras6792ec02017-03-13 03:49:51 -07001491 /* First retransmit timeout */
1492 if (tc->rto_boff == 1)
Florin Corasca1c8f32018-05-23 21:01:30 -07001493 tcp_rxt_timeout_cc (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001494 else
1495 scoreboard_clear (&tc->sack_sb);
Dave Barach68b0fb02017-02-28 15:15:56 -05001496
Florin Coras3ec66b02018-08-23 16:27:05 -07001497 /* If we've sent beyond snd_congestion, update it */
1498 if (seq_gt (tc->snd_una_max, tc->snd_congestion))
1499 tc->snd_congestion = tc->snd_una_max;
1500
Florin Corasd2aab832018-05-22 11:39:59 -07001501 tc->snd_una_max = tc->snd_nxt = tc->snd_una;
Dave Barach68b0fb02017-02-28 15:15:56 -05001502 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1503
Florin Coras3ec66b02018-08-23 16:27:05 -07001504 /* Send one segment. Note that n_bytes may be zero due to buffer
1505 * shortfall */
Florin Corasb2215d62017-08-01 16:56:58 -07001506 n_bytes = tcp_prepare_retransmit_segment (tc, 0, tc->snd_mss, &b);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001507
Florin Coras3af90fc2017-05-03 21:09:42 -07001508 if (n_bytes == 0)
Florin Corase04c2992017-03-01 08:17:34 -08001509 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001510 tcp_retransmit_timer_force_update (tc);
Florin Corase04c2992017-03-01 08:17:34 -08001511 return;
1512 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001513
Dave Barachb7f1faa2017-08-29 11:43:37 -04001514 bi = vlib_get_buffer_index (vm, b);
1515
Florin Coras93992a92017-05-24 18:03:56 -07001516 /* For first retransmit, record timestamp (Eifel detection RFC3522) */
1517 if (tc->rto_boff == 1)
1518 tc->snd_rxt_ts = tcp_time_now ();
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001519
1520 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras3ec66b02018-08-23 16:27:05 -07001521 tcp_retransmit_timer_force_update (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001522 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001523 /* Retransmit for SYN */
1524 else if (tc->state == TCP_STATE_SYN_SENT)
Florin Coras93992a92017-05-24 18:03:56 -07001525 {
Florin Coras68810622017-07-24 17:40:28 -07001526 /* Half-open connection actually moved to established but we were
1527 * waiting for syn retransmit to pop to call cleanup from the right
1528 * thread. */
1529 if (tc->flags & TCP_CONN_HALF_OPEN_DONE)
1530 {
Florin Coras68810622017-07-24 17:40:28 -07001531 if (tcp_half_open_connection_cleanup (tc))
1532 {
1533 clib_warning ("could not remove half-open connection");
1534 ASSERT (0);
1535 }
1536 return;
1537 }
1538
Dave Barach68b0fb02017-02-28 15:15:56 -05001539 /* Try without increasing RTO a number of times. If this fails,
1540 * start growing RTO exponentially */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001541 tc->rto_boff += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001542 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1543 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1544
Florin Corasf988e692017-11-27 04:34:14 -05001545 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN,
1546 tc->rto * TCP_TO_TIMER_TICK);
1547
Florin Corasb2215d62017-08-01 16:56:58 -07001548 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001549 return;
1550
Florin Corasb2215d62017-08-01 16:56:58 -07001551 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001552 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001553 tcp_make_syn (tc, b);
Florin Corase04c2992017-03-01 08:17:34 -08001554
Dave Barach2c25a622017-06-26 11:35:07 -04001555 tc->rtt_ts = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001556 TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 0);
1557
1558 /* This goes straight to ipx_lookup. Retransmit timer set already */
1559 tcp_push_ip_hdr (tm, tc, b);
Florin Coras56b39f62018-03-27 17:29:32 -07001560 tcp_enqueue_to_ip_lookup (vm, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001561 }
1562 /* Retransmit SYN-ACK */
1563 else if (tc->state == TCP_STATE_SYN_RCVD)
1564 {
1565 tc->rto_boff += 1;
Florin Coras9d063042017-09-14 03:08:00 -04001566 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1567 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001568 tc->rtt_ts = 0;
1569
1570 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
Florin Corasf988e692017-11-27 04:34:14 -05001571 {
1572 tcp_retransmit_timer_force_update (tc);
1573 return;
1574 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001575
1576 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001577 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001578 tcp_make_synack (tc, b);
1579 TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 1);
1580
1581 /* Retransmit timer already updated, just enqueue to output */
1582 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001583 }
Florin Coras93992a92017-05-24 18:03:56 -07001584 else
1585 {
1586 ASSERT (tc->state == TCP_STATE_CLOSED);
Florin Coras93992a92017-05-24 18:03:56 -07001587 return;
1588 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001589}
1590
1591void
1592tcp_timer_retransmit_handler (u32 index)
1593{
1594 tcp_timer_retransmit_handler_i (index, 0);
1595}
1596
1597void
1598tcp_timer_retransmit_syn_handler (u32 index)
1599{
1600 tcp_timer_retransmit_handler_i (index, 1);
1601}
1602
1603/**
Florin Coras3e350af2017-03-30 02:54:28 -07001604 * Got 0 snd_wnd from peer, try to do something about it.
1605 *
1606 */
1607void
1608tcp_timer_persist_handler (u32 index)
1609{
1610 tcp_main_t *tm = vnet_get_tcp_main ();
1611 vlib_main_t *vm = vlib_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02001612 u32 thread_index = vlib_get_thread_index ();
Florin Coras3e350af2017-03-30 02:54:28 -07001613 tcp_connection_t *tc;
1614 vlib_buffer_t *b;
Florin Coras84275e92017-09-26 12:30:40 -04001615 u32 bi, max_snd_bytes, available_bytes, offset;
Florin Coras93992a92017-05-24 18:03:56 -07001616 int n_bytes = 0;
Florin Coras1f152cd2017-08-18 19:28:03 -07001617 u8 *data;
Florin Coras3e350af2017-03-30 02:54:28 -07001618
Florin Corasdb84e572017-05-09 18:54:52 -07001619 tc = tcp_connection_get_if_valid (index, thread_index);
1620
1621 if (!tc)
1622 return;
Florin Coras3e350af2017-03-30 02:54:28 -07001623
1624 /* Make sure timer handle is set to invalid */
1625 tc->timers[TCP_TIMER_PERSIST] = TCP_TIMER_HANDLE_INVALID;
1626
1627 /* Problem already solved or worse */
Florin Corasf03a59a2017-06-09 21:07:32 -07001628 if (tc->state == TCP_STATE_CLOSED || tc->state > TCP_STATE_ESTABLISHED
Florin Coras50958952017-08-29 14:50:13 -07001629 || tc->snd_wnd > tc->snd_mss || tcp_in_recovery (tc))
Florin Coras3e350af2017-03-30 02:54:28 -07001630 return;
1631
Florin Coras25579b42018-06-06 17:55:02 -07001632 available_bytes = session_tx_fifo_max_dequeue (&tc->connection);
Florin Coras50958952017-08-29 14:50:13 -07001633 offset = tc->snd_una_max - tc->snd_una;
1634
1635 /* Reprogram persist if no new bytes available to send. We may have data
1636 * next time */
1637 if (!available_bytes)
1638 {
1639 tcp_persist_timer_set (tc);
1640 return;
1641 }
1642
1643 if (available_bytes <= offset)
1644 {
1645 ASSERT (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT));
1646 return;
1647 }
1648
Florin Coras3e350af2017-03-30 02:54:28 -07001649 /* Increment RTO backoff */
1650 tc->rto_boff += 1;
1651 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1652
Florin Corasb2215d62017-08-01 16:56:58 -07001653 /*
1654 * Try to force the first unsent segment (or buffer)
1655 */
Florin Coras66b11312017-07-31 17:18:03 -07001656 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
Florin Coras3ec66b02018-08-23 16:27:05 -07001657 {
1658 tcp_persist_timer_set (tc);
1659 return;
1660 }
Florin Coras3e350af2017-03-30 02:54:28 -07001661 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001662 data = tcp_init_buffer (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001663
Florin Coras1f152cd2017-08-18 19:28:03 -07001664 tcp_validate_txf_size (tc, offset);
Florin Corasc8343412017-05-04 14:25:50 -07001665 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
Florin Coras1f152cd2017-08-18 19:28:03 -07001666 max_snd_bytes = clib_min (tc->snd_mss, tm->bytes_per_buffer - MAX_HDRS_LEN);
1667 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1668 max_snd_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001669 b->current_length = n_bytes;
Florin Coras84275e92017-09-26 12:30:40 -04001670 ASSERT (n_bytes != 0 && (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)
1671 || tc->snd_nxt == tc->snd_una_max
1672 || tc->rto_boff > 1));
Florin Coras93992a92017-05-24 18:03:56 -07001673
Florin Corasb26743d2018-06-26 09:31:04 -07001674 tcp_push_hdr_i (tc, b, tc->state, /* compute opts */ 0, /* burst */ 0);
Florin Coras8b20bf52018-06-14 14:55:50 -07001675 tc->snd_una_max = tc->snd_nxt;
1676 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
Florin Coras3e350af2017-03-30 02:54:28 -07001677 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1678
Florin Coras1f152cd2017-08-18 19:28:03 -07001679 /* Just sent new data, enable retransmit */
1680 tcp_retransmit_timer_update (tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001681}
1682
1683/**
Florin Coras6792ec02017-03-13 03:49:51 -07001684 * Retransmit first unacked segment
1685 */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001686int
Dave Barach68b0fb02017-02-28 15:15:56 -05001687tcp_retransmit_first_unacked (tcp_connection_t * tc)
1688{
Florin Coras6792ec02017-03-13 03:49:51 -07001689 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001690 vlib_buffer_t *b;
Florin Corasb2215d62017-08-01 16:56:58 -07001691 u32 bi, old_snd_nxt, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001692
Florin Coras93992a92017-05-24 18:03:56 -07001693 old_snd_nxt = tc->snd_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001694 tc->snd_nxt = tc->snd_una;
1695
Florin Coras6792ec02017-03-13 03:49:51 -07001696 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001697
Florin Corasb2215d62017-08-01 16:56:58 -07001698 n_bytes = tcp_prepare_retransmit_segment (tc, 0, tc->snd_mss, &b);
1699 if (!n_bytes)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001700 return -1;
1701
Florin Corasb2215d62017-08-01 16:56:58 -07001702 bi = vlib_get_buffer_index (vm, b);
Florin Coras6792ec02017-03-13 03:49:51 -07001703 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras93992a92017-05-24 18:03:56 -07001704 tc->snd_nxt = old_snd_nxt;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001705
1706 return 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001707}
1708
1709/**
Florin Coras93992a92017-05-24 18:03:56 -07001710 * Do fast retransmit with SACKs
Florin Coras6792ec02017-03-13 03:49:51 -07001711 */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001712int
1713tcp_fast_retransmit_sack (tcp_connection_t * tc, u32 burst_size)
Dave Barach68b0fb02017-02-28 15:15:56 -05001714{
Florin Coras6792ec02017-03-13 03:49:51 -07001715 vlib_main_t *vm = vlib_get_main ();
Florin Corasca1c8f32018-05-23 21:01:30 -07001716 u32 n_written = 0, offset, max_bytes, n_segs = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001717 vlib_buffer_t *b = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001718 sack_scoreboard_hole_t *hole;
1719 sack_scoreboard_t *sb;
1720 u32 bi, old_snd_nxt;
1721 int snd_space;
1722 u8 snd_limited = 0, can_rescue = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001723
1724 ASSERT (tcp_in_fastrecovery (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -05001725
Florin Coras93992a92017-05-24 18:03:56 -07001726 old_snd_nxt = tc->snd_nxt;
1727 sb = &tc->sack_sb;
Florin Corasca1c8f32018-05-23 21:01:30 -07001728 snd_space = tcp_available_cc_snd_space (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001729 hole = scoreboard_get_hole (sb, sb->cur_rxt_hole);
Florin Coras93992a92017-05-24 18:03:56 -07001730
Florin Corasca1c8f32018-05-23 21:01:30 -07001731 if (snd_space < tc->snd_mss)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001732 {
1733 tcp_program_fastretransmit (tc);
1734 goto done;
1735 }
Florin Corasca1c8f32018-05-23 21:01:30 -07001736
1737 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001738 while (snd_space > 0 && n_segs < burst_size)
Florin Coras93992a92017-05-24 18:03:56 -07001739 {
Florin Coras93992a92017-05-24 18:03:56 -07001740 hole = scoreboard_next_rxt_hole (sb, hole,
1741 tcp_fastrecovery_sent_1_smss (tc),
1742 &can_rescue, &snd_limited);
1743 if (!hole)
1744 {
1745 if (!can_rescue || !(seq_lt (sb->rescue_rxt, tc->snd_una)
1746 || seq_gt (sb->rescue_rxt,
1747 tc->snd_congestion)))
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001748 {
1749 if (tcp_fastrecovery_first (tc))
1750 break;
1751
1752 /* We tend to lose the first segment. Try re-resending
1753 * it but only once and after we've tried everything */
1754 hole = scoreboard_first_hole (sb);
1755 if (hole && hole->start == tc->snd_una)
1756 {
1757 tcp_retransmit_first_unacked (tc);
1758 tcp_fastrecovery_first_on (tc);
1759 n_segs += 1;
1760 }
1761 break;
1762 }
Florin Coras93992a92017-05-24 18:03:56 -07001763
1764 /* If rescue rxt undefined or less than snd_una then one segment of
1765 * up to SMSS octets that MUST include the highest outstanding
1766 * unSACKed sequence number SHOULD be returned, and RescueRxt set to
1767 * RecoveryPoint. HighRxt MUST NOT be updated.
1768 */
Florin Coras1f152cd2017-08-18 19:28:03 -07001769 max_bytes = clib_min (tc->snd_mss,
1770 tc->snd_congestion - tc->snd_una);
1771 max_bytes = clib_min (max_bytes, snd_space);
Florin Coras93992a92017-05-24 18:03:56 -07001772 offset = tc->snd_congestion - tc->snd_una - max_bytes;
1773 sb->rescue_rxt = tc->snd_congestion;
1774 tc->snd_nxt = tc->snd_una + offset;
Florin Corasb2215d62017-08-01 16:56:58 -07001775 n_written = tcp_prepare_retransmit_segment (tc, offset, max_bytes,
1776 &b);
Florin Coras24793e32018-05-09 11:34:25 -07001777 if (!n_written)
1778 goto done;
1779
Florin Corasb2215d62017-08-01 16:56:58 -07001780 bi = vlib_get_buffer_index (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001781 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001782 n_segs += 1;
Florin Coras93992a92017-05-24 18:03:56 -07001783 break;
1784 }
1785
Florin Coras1f152cd2017-08-18 19:28:03 -07001786 max_bytes = clib_min (hole->end - sb->high_rxt, snd_space);
1787 max_bytes = snd_limited ? clib_min (max_bytes, tc->snd_mss) : max_bytes;
1788 if (max_bytes == 0)
1789 break;
Florin Coras93992a92017-05-24 18:03:56 -07001790 offset = sb->high_rxt - tc->snd_una;
Florin Coras1f152cd2017-08-18 19:28:03 -07001791 tc->snd_nxt = sb->high_rxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001792 n_written = tcp_prepare_retransmit_segment (tc, offset, max_bytes, &b);
Florin Coras93992a92017-05-24 18:03:56 -07001793
1794 /* Nothing left to retransmit */
1795 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001796 break;
Florin Coras93992a92017-05-24 18:03:56 -07001797
Florin Corasb2215d62017-08-01 16:56:58 -07001798 bi = vlib_get_buffer_index (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001799 sb->high_rxt += n_written;
1800 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras1f152cd2017-08-18 19:28:03 -07001801 ASSERT (n_written <= snd_space);
Florin Coras93992a92017-05-24 18:03:56 -07001802 snd_space -= n_written;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001803 n_segs += 1;
Florin Coras93992a92017-05-24 18:03:56 -07001804 }
1805
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001806 if (hole)
1807 tcp_program_fastretransmit (tc);
1808
Florin Coras24793e32018-05-09 11:34:25 -07001809done:
Florin Coras93992a92017-05-24 18:03:56 -07001810 /* If window allows, send 1 SMSS of new data */
1811 tc->snd_nxt = old_snd_nxt;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001812 return n_segs;
Florin Coras93992a92017-05-24 18:03:56 -07001813}
1814
1815/**
1816 * Fast retransmit without SACK info
1817 */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001818int
1819tcp_fast_retransmit_no_sack (tcp_connection_t * tc, u32 burst_size)
Florin Coras93992a92017-05-24 18:03:56 -07001820{
Florin Coras93992a92017-05-24 18:03:56 -07001821 vlib_main_t *vm = vlib_get_main ();
1822 u32 n_written = 0, offset = 0, bi, old_snd_nxt;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001823 int snd_space, n_segs = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001824 vlib_buffer_t *b;
1825
1826 ASSERT (tcp_in_fastrecovery (tc));
1827 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0);
1828
1829 /* Start resending from first un-acked segment */
1830 old_snd_nxt = tc->snd_nxt;
1831 tc->snd_nxt = tc->snd_una;
Florin Corasca1c8f32018-05-23 21:01:30 -07001832 snd_space = tcp_available_cc_snd_space (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001833
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001834 while (snd_space > 0 && n_segs < burst_size)
Dave Barach68b0fb02017-02-28 15:15:56 -05001835 {
Florin Coras93992a92017-05-24 18:03:56 -07001836 offset += n_written;
Florin Corasb2215d62017-08-01 16:56:58 -07001837 n_written = tcp_prepare_retransmit_segment (tc, offset, snd_space, &b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001838
1839 /* Nothing left to retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001840 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001841 break;
Dave Barach68b0fb02017-02-28 15:15:56 -05001842
Florin Corasb2215d62017-08-01 16:56:58 -07001843 bi = vlib_get_buffer_index (vm, b);
Florin Coras6792ec02017-03-13 03:49:51 -07001844 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras6792ec02017-03-13 03:49:51 -07001845 snd_space -= n_written;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001846 n_segs += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001847 }
1848
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001849 /* More data to resend */
1850 if (seq_lt (tc->snd_nxt, tc->snd_congestion))
1851 tcp_program_fastretransmit (tc);
1852
Florin Coras93992a92017-05-24 18:03:56 -07001853 /* Restore snd_nxt. If window allows, send 1 SMSS of new data */
1854 tc->snd_nxt = old_snd_nxt;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001855
1856 return n_segs;
Florin Coras93992a92017-05-24 18:03:56 -07001857}
1858
1859/**
1860 * Do fast retransmit
1861 */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001862int
1863tcp_fast_retransmit (tcp_connection_t * tc, u32 burst_size)
Florin Coras93992a92017-05-24 18:03:56 -07001864{
Florin Corasca1c8f32018-05-23 21:01:30 -07001865 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001866 return tcp_fast_retransmit_sack (tc, burst_size);
Florin Coras93992a92017-05-24 18:03:56 -07001867 else
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001868 return tcp_fast_retransmit_no_sack (tc, burst_size);
Dave Barach68b0fb02017-02-28 15:15:56 -05001869}
1870
Florin Coras0dbd5172018-06-25 16:19:34 -07001871static u32
Dave Barach68b0fb02017-02-28 15:15:56 -05001872tcp_session_has_ooo_data (tcp_connection_t * tc)
1873{
Florin Corascea194d2017-10-02 00:18:51 -07001874 stream_session_t *s = session_get (tc->c_s_index, tc->c_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001875 return svm_fifo_has_ooo_data (s->server_rx_fifo);
1876}
1877
Florin Corasf9d05682018-04-26 08:26:52 -07001878static void
1879tcp_output_handle_link_local (tcp_connection_t * tc0, vlib_buffer_t * b0,
Florin Coras8b20bf52018-06-14 14:55:50 -07001880 u16 * next0, u32 * error0)
Florin Corasf9d05682018-04-26 08:26:52 -07001881{
1882 ip_adjacency_t *adj;
1883 adj_index_t ai;
1884
Florin Coras1c8ff632018-05-17 13:28:34 -07001885 /* Not thread safe but as long as the connection exists the adj should
1886 * not be removed */
Florin Corasf9d05682018-04-26 08:26:52 -07001887 ai = adj_nbr_find (FIB_PROTOCOL_IP6, VNET_LINK_IP6, &tc0->c_rmt_ip,
1888 tc0->sw_if_index);
1889 if (ai == ADJ_INDEX_INVALID)
1890 {
Florin Corasf9d05682018-04-26 08:26:52 -07001891 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
1892 *next0 = TCP_OUTPUT_NEXT_DROP;
1893 *error0 = TCP_ERROR_LINK_LOCAL_RW;
1894 return;
1895 }
1896
1897 adj = adj_get (ai);
Florin Coras1c8ff632018-05-17 13:28:34 -07001898 if (PREDICT_TRUE (adj->lookup_next_index == IP_LOOKUP_NEXT_REWRITE))
Florin Corasf9d05682018-04-26 08:26:52 -07001899 *next0 = TCP_OUTPUT_NEXT_IP_REWRITE;
1900 else if (adj->lookup_next_index == IP_LOOKUP_NEXT_ARP)
1901 *next0 = TCP_OUTPUT_NEXT_IP_ARP;
Florin Coras1c8ff632018-05-17 13:28:34 -07001902 else
1903 {
1904 *next0 = TCP_OUTPUT_NEXT_DROP;
1905 *error0 = TCP_ERROR_LINK_LOCAL_RW;
1906 }
1907 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = ai;
Florin Corasf9d05682018-04-26 08:26:52 -07001908}
1909
Florin Coras8b20bf52018-06-14 14:55:50 -07001910static void
1911tcp46_output_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
1912 u32 * to_next, u32 n_bufs)
Dave Barach68b0fb02017-02-28 15:15:56 -05001913{
Florin Coras8b20bf52018-06-14 14:55:50 -07001914 u32 n_trace = vlib_get_trace_count (vm, node);
1915 tcp_connection_t *tc;
1916 tcp_tx_trace_t *t;
1917 vlib_buffer_t *b;
1918 tcp_header_t *th;
1919 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001920
Florin Coras8b20bf52018-06-14 14:55:50 -07001921 for (i = 0; i < clib_min (n_trace, n_bufs); i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05001922 {
Florin Coras8b20bf52018-06-14 14:55:50 -07001923 b = vlib_get_buffer (vm, to_next[i]);
1924 th = vlib_buffer_get_current (b);
1925 tc = tcp_connection_get (vnet_buffer (b)->tcp.connection_index,
1926 vm->thread_index);
1927 t = vlib_add_trace (vm, node, b, sizeof (*t));
1928 clib_memcpy (&t->tcp_header, th, sizeof (t->tcp_header));
1929 clib_memcpy (&t->tcp_connection, tc, sizeof (t->tcp_connection));
1930 }
1931}
Dave Barach68b0fb02017-02-28 15:15:56 -05001932
Florin Coras0dbd5172018-06-25 16:19:34 -07001933always_inline void
Florin Coras8b20bf52018-06-14 14:55:50 -07001934tcp_output_push_ip (vlib_main_t * vm, vlib_buffer_t * b0,
1935 tcp_connection_t * tc0, u8 is_ip4)
1936{
1937 tcp_header_t *th0 = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001938
Florin Coras8b20bf52018-06-14 14:55:50 -07001939 th0 = vlib_buffer_get_current (b0);
1940 TCP_EVT_DBG (TCP_EVT_OUTPUT, tc0, th0->flags, b0->current_length);
1941 if (is_ip4)
1942 {
1943 vlib_buffer_push_ip4 (vm, b0, &tc0->c_lcl_ip4, &tc0->c_rmt_ip4,
1944 IP_PROTOCOL_TCP, 1);
1945 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
1946 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
1947 th0->checksum = 0;
1948 }
1949 else
1950 {
1951 ip6_header_t *ih0;
1952 ih0 = vlib_buffer_push_ip6 (vm, b0, &tc0->c_lcl_ip6,
1953 &tc0->c_rmt_ip6, IP_PROTOCOL_TCP);
1954 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
1955 vnet_buffer (b0)->l3_hdr_offset = (u8 *) ih0 - b0->data;
1956 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
1957 th0->checksum = 0;
1958 }
1959}
Dave Barach68b0fb02017-02-28 15:15:56 -05001960
Florin Coras0dbd5172018-06-25 16:19:34 -07001961always_inline void
Florin Coras8b20bf52018-06-14 14:55:50 -07001962tcp_output_handle_packet (tcp_connection_t * tc0, vlib_buffer_t * b0,
1963 u32 * error0, u16 * next0, u8 is_ip4)
1964{
Florin Coras81a13db2018-03-16 08:48:31 -07001965
Florin Coras8b20bf52018-06-14 14:55:50 -07001966 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
1967 {
1968 *error0 = TCP_ERROR_INVALID_CONNECTION;
1969 *next0 = TCP_OUTPUT_NEXT_DROP;
1970 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001971 }
1972
Florin Coras8b20bf52018-06-14 14:55:50 -07001973 vnet_buffer (b0)->sw_if_index[VLIB_TX] = tc0->c_fib_index;
1974 vnet_buffer (b0)->sw_if_index[VLIB_RX] = 0;
1975
1976 if (!is_ip4)
1977 {
1978 if (PREDICT_FALSE (ip6_address_is_link_local_unicast (&tc0->c_rmt_ip6)))
1979 tcp_output_handle_link_local (tc0, b0, next0, error0);
1980 }
1981
1982 /* Filter out DUPACKs if there are no OOO segments left */
1983 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.flags & TCP_BUF_FLAG_DUPACK))
1984 {
1985 /* N.B. Should not filter burst of dupacks. Two issues:
1986 * 1) dupacks open cwnd on remote peer when congested
1987 * 2) acks leaving should have the latest rcv_wnd since the
1988 * burst may have eaten up all of it, so only the old ones
1989 * could be filtered.
1990 */
1991 if (!tcp_session_has_ooo_data (tc0))
1992 {
1993 *error0 = TCP_ERROR_FILTERED_DUPACKS;
1994 *next0 = TCP_OUTPUT_NEXT_DROP;
1995 return;
1996 }
1997 }
1998
1999 /* Stop DELACK timer and fix flags */
2000 tc0->flags &= ~(TCP_CONN_SNDACK);
2001 if (!TCP_ALWAYS_ACK)
2002 tcp_timer_reset (tc0, TCP_TIMER_DELACK);
2003}
2004
2005always_inline uword
2006tcp46_output_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2007 vlib_frame_t * frame, int is_ip4)
2008{
2009 u32 n_left_from, *from, thread_index = vm->thread_index;
2010 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
2011 u16 nexts[VLIB_FRAME_SIZE], *next;
2012
2013 from = vlib_frame_vector_args (frame);
2014 n_left_from = frame->n_vectors;
2015 tcp_set_time_now (thread_index);
2016
2017 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
2018 tcp46_output_trace_frame (vm, node, from, n_left_from);
2019
2020 vlib_get_buffers (vm, from, bufs, n_left_from);
2021 b = bufs;
2022 next = nexts;
2023
2024 while (n_left_from >= 4)
2025 {
2026 u32 error0 = TCP_ERROR_PKTS_SENT, error1 = TCP_ERROR_PKTS_SENT;
2027 tcp_connection_t *tc0, *tc1;
2028
2029 {
2030 vlib_prefetch_buffer_header (b[2], STORE);
2031 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
2032
2033 vlib_prefetch_buffer_header (b[3], STORE);
2034 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
2035 }
2036
2037 next[0] = next[1] = TCP_OUTPUT_NEXT_IP_LOOKUP;
2038
2039 tc0 = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index,
2040 thread_index);
2041 tc1 = tcp_connection_get (vnet_buffer (b[1])->tcp.connection_index,
2042 thread_index);
2043
2044 tcp_output_push_ip (vm, b[0], tc0, is_ip4);
2045 tcp_output_push_ip (vm, b[1], tc1, is_ip4);
2046
2047 tcp_output_handle_packet (tc0, b[0], &error0, &next[0], is_ip4);
2048 tcp_output_handle_packet (tc1, b[1], &error1, &next[1], is_ip4);
2049
2050 b += 2;
2051 next += 2;
2052 n_left_from -= 2;
2053 }
2054 while (n_left_from > 0)
2055 {
2056 u32 error0 = TCP_ERROR_PKTS_SENT;
2057 tcp_connection_t *tc0;
2058
2059 if (n_left_from > 1)
2060 {
Florin Coras91ca4622018-06-30 11:27:59 -07002061 vlib_prefetch_buffer_header (b[1], STORE);
2062 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
Florin Coras8b20bf52018-06-14 14:55:50 -07002063 }
2064
2065 next[0] = TCP_OUTPUT_NEXT_IP_LOOKUP;
2066 tc0 = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index,
2067 thread_index);
2068
2069 tcp_output_push_ip (vm, b[0], tc0, is_ip4);
2070 tcp_output_handle_packet (tc0, b[0], &error0, &next[0], is_ip4);
2071
2072 b += 1;
2073 next += 1;
2074 n_left_from -= 1;
2075 }
2076
2077 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
2078 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002079}
2080
2081static uword
2082tcp4_output (vlib_main_t * vm, vlib_node_runtime_t * node,
2083 vlib_frame_t * from_frame)
2084{
2085 return tcp46_output_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2086}
2087
2088static uword
2089tcp6_output (vlib_main_t * vm, vlib_node_runtime_t * node,
2090 vlib_frame_t * from_frame)
2091{
2092 return tcp46_output_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2093}
2094
Florin Corase69f4952017-03-07 10:06:24 -08002095/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002096VLIB_REGISTER_NODE (tcp4_output_node) =
2097{
2098 .function = tcp4_output,.name = "tcp4-output",
2099 /* Takes a vector of packets. */
Florin Corase69f4952017-03-07 10:06:24 -08002100 .vector_size = sizeof (u32),
2101 .n_errors = TCP_N_ERROR,
2102 .error_strings = tcp_error_strings,
2103 .n_next_nodes = TCP_OUTPUT_N_NEXT,
2104 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002105#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
2106 foreach_tcp4_output_next
2107#undef _
Florin Corase69f4952017-03-07 10:06:24 -08002108 },
2109 .format_buffer = format_tcp_header,
2110 .format_trace = format_tcp_tx_trace,
2111};
2112/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002113
Florin Corase69f4952017-03-07 10:06:24 -08002114VLIB_NODE_FUNCTION_MULTIARCH (tcp4_output_node, tcp4_output);
2115
2116/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002117VLIB_REGISTER_NODE (tcp6_output_node) =
2118{
Florin Corase69f4952017-03-07 10:06:24 -08002119 .function = tcp6_output,
2120 .name = "tcp6-output",
Dave Barach68b0fb02017-02-28 15:15:56 -05002121 /* Takes a vector of packets. */
Florin Corase69f4952017-03-07 10:06:24 -08002122 .vector_size = sizeof (u32),
2123 .n_errors = TCP_N_ERROR,
2124 .error_strings = tcp_error_strings,
2125 .n_next_nodes = TCP_OUTPUT_N_NEXT,
2126 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002127#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
2128 foreach_tcp6_output_next
2129#undef _
Florin Corase69f4952017-03-07 10:06:24 -08002130 },
2131 .format_buffer = format_tcp_header,
2132 .format_trace = format_tcp_tx_trace,
2133};
2134/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002135
Florin Corase69f4952017-03-07 10:06:24 -08002136VLIB_NODE_FUNCTION_MULTIARCH (tcp6_output_node, tcp6_output);
2137
Dave Barach68b0fb02017-02-28 15:15:56 -05002138typedef enum _tcp_reset_next
2139{
2140 TCP_RESET_NEXT_DROP,
2141 TCP_RESET_NEXT_IP_LOOKUP,
2142 TCP_RESET_N_NEXT
2143} tcp_reset_next_t;
2144
2145#define foreach_tcp4_reset_next \
2146 _(DROP, "error-drop") \
2147 _(IP_LOOKUP, "ip4-lookup")
2148
2149#define foreach_tcp6_reset_next \
2150 _(DROP, "error-drop") \
2151 _(IP_LOOKUP, "ip6-lookup")
2152
2153static uword
2154tcp46_send_reset_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2155 vlib_frame_t * from_frame, u8 is_ip4)
2156{
2157 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02002158 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002159
2160 from = vlib_frame_vector_args (from_frame);
2161 n_left_from = from_frame->n_vectors;
2162
2163 next_index = node->cached_next_index;
2164
2165 while (n_left_from > 0)
2166 {
2167 u32 n_left_to_next;
2168
2169 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2170
2171 while (n_left_from > 0 && n_left_to_next > 0)
2172 {
2173 u32 bi0;
2174 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002175 tcp_tx_trace_t *t0;
2176 tcp_header_t *th0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002177 u32 error0 = TCP_ERROR_RST_SENT, next0 = TCP_RESET_NEXT_IP_LOOKUP;
2178
2179 bi0 = from[0];
2180 to_next[0] = bi0;
2181 from += 1;
2182 to_next += 1;
2183 n_left_from -= 1;
2184 n_left_to_next -= 1;
2185
2186 b0 = vlib_get_buffer (vm, bi0);
2187
2188 if (tcp_make_reset_in_place (vm, b0, vnet_buffer (b0)->tcp.flags,
2189 my_thread_index, is_ip4))
2190 {
2191 error0 = TCP_ERROR_LOOKUP_DROPS;
2192 next0 = TCP_RESET_NEXT_DROP;
2193 goto done;
2194 }
2195
2196 /* Prepare to send to IP lookup */
Florin Corasf988e692017-11-27 04:34:14 -05002197 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002198 next0 = TCP_RESET_NEXT_IP_LOOKUP;
2199
2200 done:
Florin Corase69f4952017-03-07 10:06:24 -08002201 b0->error = node->errors[error0];
Damjan Marion213b5aa2017-07-13 21:19:27 +02002202 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002203 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2204 {
Clement Durand6cf260c2017-04-13 13:27:04 +02002205 th0 = vlib_buffer_get_current (b0);
2206 if (is_ip4)
2207 th0 = ip4_next_header ((ip4_header_t *) th0);
2208 else
2209 th0 = ip6_next_header ((ip6_header_t *) th0);
Clement Durand6cf260c2017-04-13 13:27:04 +02002210 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2211 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
Dave Barach68b0fb02017-02-28 15:15:56 -05002212 }
2213
2214 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2215 n_left_to_next, bi0, next0);
2216 }
2217 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2218 }
2219 return from_frame->n_vectors;
2220}
2221
2222static uword
2223tcp4_send_reset (vlib_main_t * vm, vlib_node_runtime_t * node,
2224 vlib_frame_t * from_frame)
2225{
2226 return tcp46_send_reset_inline (vm, node, from_frame, 1);
2227}
2228
2229static uword
2230tcp6_send_reset (vlib_main_t * vm, vlib_node_runtime_t * node,
2231 vlib_frame_t * from_frame)
2232{
2233 return tcp46_send_reset_inline (vm, node, from_frame, 0);
2234}
2235
2236/* *INDENT-OFF* */
2237VLIB_REGISTER_NODE (tcp4_reset_node) = {
2238 .function = tcp4_send_reset,
2239 .name = "tcp4-reset",
2240 .vector_size = sizeof (u32),
2241 .n_errors = TCP_N_ERROR,
2242 .error_strings = tcp_error_strings,
2243 .n_next_nodes = TCP_RESET_N_NEXT,
2244 .next_nodes = {
2245#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2246 foreach_tcp4_reset_next
2247#undef _
2248 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002249 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002250};
2251/* *INDENT-ON* */
2252
Florin Corase69f4952017-03-07 10:06:24 -08002253VLIB_NODE_FUNCTION_MULTIARCH (tcp4_reset_node, tcp4_send_reset);
2254
Dave Barach68b0fb02017-02-28 15:15:56 -05002255/* *INDENT-OFF* */
2256VLIB_REGISTER_NODE (tcp6_reset_node) = {
2257 .function = tcp6_send_reset,
2258 .name = "tcp6-reset",
2259 .vector_size = sizeof (u32),
2260 .n_errors = TCP_N_ERROR,
2261 .error_strings = tcp_error_strings,
2262 .n_next_nodes = TCP_RESET_N_NEXT,
2263 .next_nodes = {
2264#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2265 foreach_tcp6_reset_next
2266#undef _
2267 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002268 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002269};
2270/* *INDENT-ON* */
2271
Florin Corase69f4952017-03-07 10:06:24 -08002272VLIB_NODE_FUNCTION_MULTIARCH (tcp6_reset_node, tcp6_send_reset);
2273
Dave Barach68b0fb02017-02-28 15:15:56 -05002274/*
2275 * fd.io coding-style-patch-verification: ON
2276 *
2277 * Local Variables:
2278 * eval: (c-set-style "gnu")
2279 * End:
2280 */