blob: 0255551318a30e251e5414fe409afd6b7b8bc3a5 [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,
Dave Barach68b0fb02017-02-28 15:15:56 -050027 TCP_OUTPUT_N_NEXT
28} tcp_output_next_t;
29
30#define foreach_tcp4_output_next \
31 _ (DROP, "error-drop") \
Dave Barach2c25a622017-06-26 11:35:07 -040032 _ (IP_LOOKUP, "ip4-lookup")
Dave Barach68b0fb02017-02-28 15:15:56 -050033
34#define foreach_tcp6_output_next \
35 _ (DROP, "error-drop") \
Dave Barach2c25a622017-06-26 11:35:07 -040036 _ (IP_LOOKUP, "ip6-lookup")
Dave Barach68b0fb02017-02-28 15:15:56 -050037
38static char *tcp_error_strings[] = {
39#define tcp_error(n,s) s,
40#include <vnet/tcp/tcp_error.def>
41#undef tcp_error
42};
43
44typedef struct
45{
Clement Durand6cf260c2017-04-13 13:27:04 +020046 tcp_header_t tcp_header;
47 tcp_connection_t tcp_connection;
Dave Barach68b0fb02017-02-28 15:15:56 -050048} tcp_tx_trace_t;
49
Florin Corasf6d68ed2017-05-07 19:12:02 -070050u16 dummy_mtu = 1460;
Dave Barach68b0fb02017-02-28 15:15:56 -050051
52u8 *
53format_tcp_tx_trace (u8 * s, va_list * args)
54{
55 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
56 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Clement Durand6cf260c2017-04-13 13:27:04 +020057 tcp_tx_trace_t *t = va_arg (*args, tcp_tx_trace_t *);
58 uword indent = format_get_indent (s);
Dave Barach68b0fb02017-02-28 15:15:56 -050059
Clement Durand6cf260c2017-04-13 13:27:04 +020060 s = format (s, "%U\n%U%U",
61 format_tcp_header, &t->tcp_header, 128,
62 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -070063 format_tcp_connection, &t->tcp_connection, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -050064
65 return s;
66}
67
Dave Barach68b0fb02017-02-28 15:15:56 -050068static u8
69tcp_window_compute_scale (u32 available_space)
70{
71 u8 wnd_scale = 0;
72 while (wnd_scale < TCP_MAX_WND_SCALE
73 && (available_space >> wnd_scale) > TCP_WND_MAX)
74 wnd_scale++;
75 return wnd_scale;
76}
77
78/**
Florin Coras6534b7a2017-07-18 05:38:03 -040079 * Update max segment size we're able to process.
80 *
81 * The value is constrained by our interface's MTU and IP options. It is
82 * also what we advertise to our peer.
83 */
84void
85tcp_update_rcv_mss (tcp_connection_t * tc)
86{
87 /* TODO find our iface MTU */
Florin Corasb2215d62017-08-01 16:56:58 -070088 tc->mss = dummy_mtu - sizeof (tcp_header_t);
Florin Coras6534b7a2017-07-18 05:38:03 -040089}
90
91/**
92 * TCP's initial window
Florin Corase04c2992017-03-01 08:17:34 -080093 */
94always_inline u32
95tcp_initial_wnd_unscaled (tcp_connection_t * tc)
96{
Florin Coras6534b7a2017-07-18 05:38:03 -040097 /* RFC 6928 recommends the value lower. However at the time our connections
98 * are initialized, fifos may not be allocated. Therefore, advertise the
99 * smallest possible unscaled window size and update once fifos are
100 * assigned to the session.
101 */
102 /*
103 tcp_update_rcv_mss (tc);
104 TCP_IW_N_SEGMENTS * tc->mss;
105 */
106 return TCP_MIN_RX_FIFO_SIZE;
Florin Corase04c2992017-03-01 08:17:34 -0800107}
108
109/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500110 * Compute initial window and scale factor. As per RFC1323, window field in
111 * SYN and SYN-ACK segments is never scaled.
112 */
113u32
114tcp_initial_window_to_advertise (tcp_connection_t * tc)
115{
Florin Corase04c2992017-03-01 08:17:34 -0800116 u32 max_fifo;
Dave Barach68b0fb02017-02-28 15:15:56 -0500117
118 /* Initial wnd for SYN. Fifos are not allocated yet.
Florin Corase04c2992017-03-01 08:17:34 -0800119 * Use some predefined value. For SYN-ACK we still want the
120 * scale to be computed in the same way */
121 max_fifo = TCP_MAX_RX_FIFO_SIZE;
Dave Barach68b0fb02017-02-28 15:15:56 -0500122
Florin Corase04c2992017-03-01 08:17:34 -0800123 tc->rcv_wscale = tcp_window_compute_scale (max_fifo);
124 tc->rcv_wnd = tcp_initial_wnd_unscaled (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500125
126 return clib_min (tc->rcv_wnd, TCP_WND_MAX);
127}
128
129/**
130 * Compute and return window to advertise, scaled as per RFC1323
131 */
132u32
133tcp_window_to_advertise (tcp_connection_t * tc, tcp_state_t state)
134{
Florin Corase04c2992017-03-01 08:17:34 -0800135 if (state < TCP_STATE_ESTABLISHED)
Dave Barach68b0fb02017-02-28 15:15:56 -0500136 return tcp_initial_window_to_advertise (tc);
137
Florin Coras6792ec02017-03-13 03:49:51 -0700138 tcp_update_rcv_wnd (tc);
139
140 if (tc->rcv_wnd == 0)
141 {
142 tc->flags |= TCP_CONN_SENT_RCV_WND0;
143 }
144 else
145 {
146 tc->flags &= ~TCP_CONN_SENT_RCV_WND0;
147 }
148
149 return tc->rcv_wnd >> tc->rcv_wscale;
150}
151
152void
153tcp_update_rcv_wnd (tcp_connection_t * tc)
154{
155 i32 observed_wnd;
156 u32 available_space, max_fifo, wnd;
157
Florin Corase04c2992017-03-01 08:17:34 -0800158 /*
159 * Figure out how much space we have available
160 */
Florin Coras6792ec02017-03-13 03:49:51 -0700161 available_space = stream_session_max_rx_enqueue (&tc->connection);
Florin Coras93992a92017-05-24 18:03:56 -0700162 max_fifo = stream_session_rx_fifo_size (&tc->connection);
Dave Barach68b0fb02017-02-28 15:15:56 -0500163
Florin Coras93992a92017-05-24 18:03:56 -0700164 ASSERT (tc->rcv_opts.mss < max_fifo);
165 if (available_space < tc->rcv_opts.mss && available_space < max_fifo >> 3)
Florin Corase04c2992017-03-01 08:17:34 -0800166 available_space = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500167
Florin Corase04c2992017-03-01 08:17:34 -0800168 /*
169 * Use the above and what we know about what we've previously advertised
170 * to compute the new window
171 */
Florin Coras6792ec02017-03-13 03:49:51 -0700172 observed_wnd = (i32) tc->rcv_wnd - (tc->rcv_nxt - tc->rcv_las);
173 if (observed_wnd < 0)
174 observed_wnd = 0;
Florin Corase04c2992017-03-01 08:17:34 -0800175
176 /* Bad. Thou shalt not shrink */
177 if (available_space < observed_wnd)
178 {
Florin Coras6792ec02017-03-13 03:49:51 -0700179 wnd = observed_wnd;
Florin Coras3e350af2017-03-30 02:54:28 -0700180 TCP_EVT_DBG (TCP_EVT_RCV_WND_SHRUNK, tc, observed_wnd, available_space);
Florin Corase04c2992017-03-01 08:17:34 -0800181 }
Florin Coras6792ec02017-03-13 03:49:51 -0700182 else
Florin Corase04c2992017-03-01 08:17:34 -0800183 {
Florin Coras6792ec02017-03-13 03:49:51 -0700184 wnd = available_space;
Florin Corase04c2992017-03-01 08:17:34 -0800185 }
186
Florin Coras3e350af2017-03-30 02:54:28 -0700187 /* Make sure we have a multiple of rcv_wscale */
188 if (wnd && tc->rcv_wscale)
189 {
190 wnd &= ~(1 << tc->rcv_wscale);
191 if (wnd == 0)
192 wnd = 1 << tc->rcv_wscale;
193 }
Florin Coras6792ec02017-03-13 03:49:51 -0700194
195 tc->rcv_wnd = clib_min (wnd, TCP_WND_MAX << tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500196}
197
198/**
199 * Write TCP options to segment.
200 */
201u32
202tcp_options_write (u8 * data, tcp_options_t * opts)
203{
204 u32 opts_len = 0;
205 u32 buf, seq_len = 4;
206
207 if (tcp_opts_mss (opts))
208 {
209 *data++ = TCP_OPTION_MSS;
210 *data++ = TCP_OPTION_LEN_MSS;
211 buf = clib_host_to_net_u16 (opts->mss);
212 clib_memcpy (data, &buf, sizeof (opts->mss));
213 data += sizeof (opts->mss);
214 opts_len += TCP_OPTION_LEN_MSS;
215 }
216
217 if (tcp_opts_wscale (opts))
218 {
219 *data++ = TCP_OPTION_WINDOW_SCALE;
220 *data++ = TCP_OPTION_LEN_WINDOW_SCALE;
221 *data++ = opts->wscale;
222 opts_len += TCP_OPTION_LEN_WINDOW_SCALE;
223 }
224
225 if (tcp_opts_sack_permitted (opts))
226 {
227 *data++ = TCP_OPTION_SACK_PERMITTED;
228 *data++ = TCP_OPTION_LEN_SACK_PERMITTED;
229 opts_len += TCP_OPTION_LEN_SACK_PERMITTED;
230 }
231
232 if (tcp_opts_tstamp (opts))
233 {
234 *data++ = TCP_OPTION_TIMESTAMP;
235 *data++ = TCP_OPTION_LEN_TIMESTAMP;
236 buf = clib_host_to_net_u32 (opts->tsval);
237 clib_memcpy (data, &buf, sizeof (opts->tsval));
238 data += sizeof (opts->tsval);
239 buf = clib_host_to_net_u32 (opts->tsecr);
240 clib_memcpy (data, &buf, sizeof (opts->tsecr));
241 data += sizeof (opts->tsecr);
242 opts_len += TCP_OPTION_LEN_TIMESTAMP;
243 }
244
245 if (tcp_opts_sack (opts))
246 {
247 int i;
248 u32 n_sack_blocks = clib_min (vec_len (opts->sacks),
249 TCP_OPTS_MAX_SACK_BLOCKS);
250
251 if (n_sack_blocks != 0)
252 {
253 *data++ = TCP_OPTION_SACK_BLOCK;
254 *data++ = 2 + n_sack_blocks * TCP_OPTION_LEN_SACK_BLOCK;
255 for (i = 0; i < n_sack_blocks; i++)
256 {
257 buf = clib_host_to_net_u32 (opts->sacks[i].start);
258 clib_memcpy (data, &buf, seq_len);
259 data += seq_len;
260 buf = clib_host_to_net_u32 (opts->sacks[i].end);
261 clib_memcpy (data, &buf, seq_len);
262 data += seq_len;
263 }
264 opts_len += 2 + n_sack_blocks * TCP_OPTION_LEN_SACK_BLOCK;
265 }
266 }
267
268 /* Terminate TCP options */
269 if (opts_len % 4)
270 {
271 *data++ = TCP_OPTION_EOL;
272 opts_len += TCP_OPTION_LEN_EOL;
273 }
274
275 /* Pad with zeroes to a u32 boundary */
276 while (opts_len % 4)
277 {
278 *data++ = TCP_OPTION_NOOP;
279 opts_len += TCP_OPTION_LEN_NOOP;
280 }
281 return opts_len;
282}
283
284always_inline int
Florin Corase04c2992017-03-01 08:17:34 -0800285tcp_make_syn_options (tcp_options_t * opts, u8 wnd_scale)
Dave Barach68b0fb02017-02-28 15:15:56 -0500286{
287 u8 len = 0;
288
289 opts->flags |= TCP_OPTS_FLAG_MSS;
290 opts->mss = dummy_mtu; /*XXX discover that */
291 len += TCP_OPTION_LEN_MSS;
292
293 opts->flags |= TCP_OPTS_FLAG_WSCALE;
Florin Corase04c2992017-03-01 08:17:34 -0800294 opts->wscale = wnd_scale;
Dave Barach68b0fb02017-02-28 15:15:56 -0500295 len += TCP_OPTION_LEN_WINDOW_SCALE;
296
297 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
298 opts->tsval = tcp_time_now ();
299 opts->tsecr = 0;
300 len += TCP_OPTION_LEN_TIMESTAMP;
301
Florin Coras93992a92017-05-24 18:03:56 -0700302 if (TCP_USE_SACKS)
303 {
304 opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
305 len += TCP_OPTION_LEN_SACK_PERMITTED;
306 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500307
308 /* Align to needed boundary */
309 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
310 return len;
311}
312
313always_inline int
314tcp_make_synack_options (tcp_connection_t * tc, tcp_options_t * opts)
315{
316 u8 len = 0;
317
318 opts->flags |= TCP_OPTS_FLAG_MSS;
Florin Corasc8343412017-05-04 14:25:50 -0700319 opts->mss = tc->mss;
Dave Barach68b0fb02017-02-28 15:15:56 -0500320 len += TCP_OPTION_LEN_MSS;
321
Florin Coras93992a92017-05-24 18:03:56 -0700322 if (tcp_opts_wscale (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500323 {
324 opts->flags |= TCP_OPTS_FLAG_WSCALE;
325 opts->wscale = tc->rcv_wscale;
326 len += TCP_OPTION_LEN_WINDOW_SCALE;
327 }
328
Florin Coras93992a92017-05-24 18:03:56 -0700329 if (tcp_opts_tstamp (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500330 {
331 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
332 opts->tsval = tcp_time_now ();
333 opts->tsecr = tc->tsval_recent;
334 len += TCP_OPTION_LEN_TIMESTAMP;
335 }
336
Florin Coras93992a92017-05-24 18:03:56 -0700337 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500338 {
339 opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
340 len += TCP_OPTION_LEN_SACK_PERMITTED;
341 }
342
343 /* Align to needed boundary */
344 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
345 return len;
346}
347
348always_inline int
349tcp_make_established_options (tcp_connection_t * tc, tcp_options_t * opts)
350{
351 u8 len = 0;
352
353 opts->flags = 0;
354
Florin Coras93992a92017-05-24 18:03:56 -0700355 if (tcp_opts_tstamp (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500356 {
357 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
358 opts->tsval = tcp_time_now ();
359 opts->tsecr = tc->tsval_recent;
360 len += TCP_OPTION_LEN_TIMESTAMP;
361 }
Florin Coras93992a92017-05-24 18:03:56 -0700362 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500363 {
364 if (vec_len (tc->snd_sacks))
365 {
366 opts->flags |= TCP_OPTS_FLAG_SACK;
367 opts->sacks = tc->snd_sacks;
Florin Corasc28764f2017-04-26 00:08:42 -0700368 opts->n_sack_blocks = clib_min (vec_len (tc->snd_sacks),
369 TCP_OPTS_MAX_SACK_BLOCKS);
Dave Barach68b0fb02017-02-28 15:15:56 -0500370 len += 2 + TCP_OPTION_LEN_SACK_BLOCK * opts->n_sack_blocks;
371 }
372 }
373
374 /* Align to needed boundary */
375 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
376 return len;
377}
378
379always_inline int
380tcp_make_options (tcp_connection_t * tc, tcp_options_t * opts,
381 tcp_state_t state)
382{
383 switch (state)
384 {
385 case TCP_STATE_ESTABLISHED:
386 case TCP_STATE_FIN_WAIT_1:
387 return tcp_make_established_options (tc, opts);
388 case TCP_STATE_SYN_RCVD:
389 return tcp_make_synack_options (tc, opts);
390 case TCP_STATE_SYN_SENT:
Florin Corase04c2992017-03-01 08:17:34 -0800391 return tcp_make_syn_options (opts, tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500392 default:
393 clib_warning ("Not handled!");
394 return 0;
395 }
396}
397
Florin Corasc8343412017-05-04 14:25:50 -0700398/**
Florin Corasc8343412017-05-04 14:25:50 -0700399 * Update snd_mss to reflect the effective segment size that we can send
400 * by taking into account all TCP options, including SACKs
401 */
402void
403tcp_update_snd_mss (tcp_connection_t * tc)
404{
405 /* Compute options to be used for connection. These may be reused when
406 * sending data or to compute the effective mss (snd_mss) */
407 tc->snd_opts_len =
408 tcp_make_options (tc, &tc->snd_opts, TCP_STATE_ESTABLISHED);
409
410 /* XXX check if MTU has been updated */
Florin Coras93992a92017-05-24 18:03:56 -0700411 tc->snd_mss = clib_min (tc->mss, tc->rcv_opts.mss) - tc->snd_opts_len;
Florin Corasdb84e572017-05-09 18:54:52 -0700412 ASSERT (tc->snd_mss > 0);
Florin Corasc8343412017-05-04 14:25:50 -0700413}
414
415void
416tcp_init_mss (tcp_connection_t * tc)
417{
Florin Corasdb84e572017-05-09 18:54:52 -0700418 u16 default_min_mss = 536;
Florin Corasc8343412017-05-04 14:25:50 -0700419 tcp_update_rcv_mss (tc);
420
421 /* TODO cache mss and consider PMTU discovery */
Florin Coras93992a92017-05-24 18:03:56 -0700422 tc->snd_mss = clib_min (tc->rcv_opts.mss, tc->mss);
Florin Corasc8343412017-05-04 14:25:50 -0700423
Florin Corasdb84e572017-05-09 18:54:52 -0700424 if (tc->snd_mss < 45)
Florin Corasc8343412017-05-04 14:25:50 -0700425 {
426 clib_warning ("snd mss is 0");
Florin Corasdb84e572017-05-09 18:54:52 -0700427 /* Assume that at least the min default mss works */
428 tc->snd_mss = default_min_mss;
Florin Coras93992a92017-05-24 18:03:56 -0700429 tc->rcv_opts.mss = default_min_mss;
Florin Corasc8343412017-05-04 14:25:50 -0700430 }
431
432 /* We should have enough space for 40 bytes of options */
433 ASSERT (tc->snd_mss > 45);
434
435 /* If we use timestamp option, account for it */
Florin Coras93992a92017-05-24 18:03:56 -0700436 if (tcp_opts_tstamp (&tc->rcv_opts))
Florin Corasc8343412017-05-04 14:25:50 -0700437 tc->snd_mss -= TCP_OPTION_LEN_TIMESTAMP;
438}
439
Florin Coras66b11312017-07-31 17:18:03 -0700440always_inline int
Florin Corasb2215d62017-08-01 16:56:58 -0700441tcp_alloc_tx_buffers (tcp_main_t * tm, u8 thread_index, u32 n_free_buffers)
442{
Florin Coras1f152cd2017-08-18 19:28:03 -0700443 vec_validate (tm->tx_buffers[thread_index],
444 vec_len (tm->tx_buffers[thread_index]) + n_free_buffers - 1);
Florin Corasb2215d62017-08-01 16:56:58 -0700445 _vec_len (tm->tx_buffers[thread_index]) =
446 vlib_buffer_alloc_from_free_list (vlib_get_main (),
447 tm->tx_buffers[thread_index],
448 n_free_buffers,
449 VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
450 /* buffer shortage, report failure */
451 if (vec_len (tm->tx_buffers[thread_index]) == 0)
452 {
453 clib_warning ("out of buffers");
454 return -1;
455 }
456 return 0;
457}
458
459always_inline int
Florin Coras66b11312017-07-31 17:18:03 -0700460tcp_get_free_buffer_index (tcp_main_t * tm, u32 * bidx)
461{
Florin Corasb2215d62017-08-01 16:56:58 -0700462 u32 *my_tx_buffers;
Florin Coras66b11312017-07-31 17:18:03 -0700463 u32 thread_index = vlib_get_thread_index ();
Florin Corasb2215d62017-08-01 16:56:58 -0700464 if (PREDICT_FALSE (vec_len (tm->tx_buffers[thread_index]) == 0))
Florin Coras66b11312017-07-31 17:18:03 -0700465 {
Florin Corasb2215d62017-08-01 16:56:58 -0700466 if (tcp_alloc_tx_buffers (tm, thread_index, VLIB_FRAME_SIZE))
467 return -1;
Florin Coras66b11312017-07-31 17:18:03 -0700468 }
Florin Corasb2215d62017-08-01 16:56:58 -0700469 my_tx_buffers = tm->tx_buffers[thread_index];
Florin Coras66b11312017-07-31 17:18:03 -0700470 *bidx = my_tx_buffers[_vec_len (my_tx_buffers) - 1];
471 _vec_len (my_tx_buffers) -= 1;
472 return 0;
473}
Dave Barach68b0fb02017-02-28 15:15:56 -0500474
Florin Coras66b11312017-07-31 17:18:03 -0700475always_inline void
476tcp_return_buffer (tcp_main_t * tm)
477{
478 u32 *my_tx_buffers;
479 u32 thread_index = vlib_get_thread_index ();
480 my_tx_buffers = tm->tx_buffers[thread_index];
481 _vec_len (my_tx_buffers) += 1;
482}
Florin Coras6792ec02017-03-13 03:49:51 -0700483
Florin Coras1f152cd2017-08-18 19:28:03 -0700484always_inline void *
Dave Barach68b0fb02017-02-28 15:15:56 -0500485tcp_reuse_buffer (vlib_main_t * vm, vlib_buffer_t * b)
486{
Florin Corasb2215d62017-08-01 16:56:58 -0700487 if (b->flags & VLIB_BUFFER_NEXT_PRESENT)
488 vlib_buffer_free_one (vm, b->next_buffer);
Florin Coras1f152cd2017-08-18 19:28:03 -0700489 b->flags = 0;
490 b->current_data = 0;
491 b->current_length = 0;
492 b->total_length_not_including_first_buffer = 0;
493 vnet_buffer (b)->tcp.flags = 0;
Florin Corasb2215d62017-08-01 16:56:58 -0700494
Dave Barach68b0fb02017-02-28 15:15:56 -0500495 /* Leave enough space for headers */
Florin Coras1f152cd2017-08-18 19:28:03 -0700496 return vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
497}
498
499always_inline void *
500tcp_init_buffer (vlib_main_t * vm, vlib_buffer_t * b)
501{
502 ASSERT ((b->flags & VLIB_BUFFER_NEXT_PRESENT) == 0);
503 b->flags = VNET_BUFFER_F_LOCALLY_ORIGINATED;
504 b->total_length_not_including_first_buffer = 0;
Florin Corasd79b41e2017-03-04 05:37:52 -0800505 vnet_buffer (b)->tcp.flags = 0;
Florin Coras1f152cd2017-08-18 19:28:03 -0700506
507 /* Leave enough space for headers */
508 return vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
Dave Barach68b0fb02017-02-28 15:15:56 -0500509}
510
511/**
512 * Prepare ACK
513 */
514void
515tcp_make_ack_i (tcp_connection_t * tc, vlib_buffer_t * b, tcp_state_t state,
516 u8 flags)
517{
518 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
519 u8 tcp_opts_len, tcp_hdr_opts_len;
520 tcp_header_t *th;
521 u16 wnd;
522
523 wnd = tcp_window_to_advertise (tc, state);
524
525 /* Make and write options */
526 tcp_opts_len = tcp_make_established_options (tc, snd_opts);
527 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
528
529 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
530 tc->rcv_nxt, tcp_hdr_opts_len, flags, wnd);
531
532 tcp_options_write ((u8 *) (th + 1), snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500533 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
534}
535
536/**
537 * Convert buffer to ACK
538 */
539void
540tcp_make_ack (tcp_connection_t * tc, vlib_buffer_t * b)
541{
Florin Coras6792ec02017-03-13 03:49:51 -0700542 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500543
544 tcp_reuse_buffer (vm, b);
545 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, TCP_FLAG_ACK);
Florin Coras6792ec02017-03-13 03:49:51 -0700546 TCP_EVT_DBG (TCP_EVT_ACK_SENT, tc);
Florin Coras3e350af2017-03-30 02:54:28 -0700547 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_ACK;
548 tc->rcv_las = tc->rcv_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500549}
550
551/**
552 * Convert buffer to FIN-ACK
553 */
554void
Florin Corasd79b41e2017-03-04 05:37:52 -0800555tcp_make_fin (tcp_connection_t * tc, vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500556{
Florin Coras6792ec02017-03-13 03:49:51 -0700557 vlib_main_t *vm = vlib_get_main ();
Florin Corasd79b41e2017-03-04 05:37:52 -0800558 u8 flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500559
560 tcp_reuse_buffer (vm, b);
Florin Corasd79b41e2017-03-04 05:37:52 -0800561
Florin Corase69f4952017-03-07 10:06:24 -0800562 flags = TCP_FLAG_FIN | TCP_FLAG_ACK;
Florin Corasd79b41e2017-03-04 05:37:52 -0800563 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, flags);
Dave Barach68b0fb02017-02-28 15:15:56 -0500564
565 /* Reset flags, make sure ack is sent */
Dave Barach68b0fb02017-02-28 15:15:56 -0500566 vnet_buffer (b)->tcp.flags &= ~TCP_BUF_FLAG_DUPACK;
567
568 tc->snd_nxt += 1;
569}
570
571/**
572 * Convert buffer to SYN-ACK
573 */
574void
575tcp_make_synack (tcp_connection_t * tc, vlib_buffer_t * b)
576{
Florin Coras6792ec02017-03-13 03:49:51 -0700577 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500578 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
579 u8 tcp_opts_len, tcp_hdr_opts_len;
580 tcp_header_t *th;
581 u16 initial_wnd;
582 u32 time_now;
583
584 memset (snd_opts, 0, sizeof (*snd_opts));
585
586 tcp_reuse_buffer (vm, b);
587
588 /* Set random initial sequence */
589 time_now = tcp_time_now ();
590
591 tc->iss = random_u32 (&time_now);
592 tc->snd_una = tc->iss;
593 tc->snd_nxt = tc->iss + 1;
594 tc->snd_una_max = tc->snd_nxt;
595
596 initial_wnd = tcp_initial_window_to_advertise (tc);
597
598 /* Make and write options */
599 tcp_opts_len = tcp_make_synack_options (tc, snd_opts);
600 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
601
602 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
603 tc->rcv_nxt, tcp_hdr_opts_len,
604 TCP_FLAG_SYN | TCP_FLAG_ACK, initial_wnd);
605
606 tcp_options_write ((u8 *) (th + 1), snd_opts);
607
608 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
609 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_ACK;
610
611 /* Init retransmit timer */
Florin Corasd79b41e2017-03-04 05:37:52 -0800612 tcp_retransmit_timer_set (tc);
Florin Coras6534b7a2017-07-18 05:38:03 -0400613 TCP_EVT_DBG (TCP_EVT_SYNACK_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500614}
615
616always_inline void
617tcp_enqueue_to_ip_lookup (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
618 u8 is_ip4)
619{
620 u32 *to_next, next_index;
621 vlib_frame_t *f;
622
Damjan Marion213b5aa2017-07-13 21:19:27 +0200623 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500624 b->error = 0;
625
626 /* Default FIB for now */
627 vnet_buffer (b)->sw_if_index[VLIB_TX] = 0;
628
629 /* Send to IP lookup */
630 next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index;
631 f = vlib_get_frame_to_node (vm, next_index);
632
633 /* Enqueue the packet */
634 to_next = vlib_frame_vector_args (f);
635 to_next[0] = bi;
636 f->n_vectors = 1;
637 vlib_put_frame_to_node (vm, next_index, f);
638}
639
Florin Coras1f152cd2017-08-18 19:28:03 -0700640always_inline void
641tcp_enqueue_to_output_i (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
642 u8 is_ip4, u8 flush)
643{
644 tcp_main_t *tm = vnet_get_tcp_main ();
645 u32 thread_index = vlib_get_thread_index ();
646 u32 *to_next, next_index;
647 vlib_frame_t *f;
648
649 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
650 b->error = 0;
651
652 /* Decide where to send the packet */
653 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
654
655 /* Initialize the trajectory trace, if configured */
656 if (VLIB_BUFFER_TRACE_TRAJECTORY > 0)
657 {
658 b->pre_data[0] = 1;
659 b->pre_data[1] = next_index;
660 }
661
662 /* Get frame to v4/6 output node */
663 f = tm->tx_frames[!is_ip4][thread_index];
664 if (!f)
665 {
666 f = vlib_get_frame_to_node (vm, next_index);
667 ASSERT (f);
668 tm->tx_frames[!is_ip4][thread_index] = f;
669 }
670 to_next = vlib_frame_vector_args (f);
671 to_next[f->n_vectors] = bi;
672 f->n_vectors += 1;
673 if (flush || f->n_vectors == VLIB_FRAME_SIZE)
674 {
675 vlib_put_frame_to_node (vm, next_index, f);
676 tm->tx_frames[!is_ip4][thread_index] = 0;
677 }
678}
679
680always_inline void
681tcp_enqueue_to_output (vlib_main_t * vm, vlib_buffer_t * b, u32 bi, u8 is_ip4)
682{
683 tcp_enqueue_to_output_i (vm, b, bi, is_ip4, 0);
684}
685
686always_inline void
687tcp_enqueue_to_output_now (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
688 u8 is_ip4)
689{
690 tcp_enqueue_to_output_i (vm, b, bi, is_ip4, 1);
691}
692
Dave Barach68b0fb02017-02-28 15:15:56 -0500693int
694tcp_make_reset_in_place (vlib_main_t * vm, vlib_buffer_t * b0,
Florin Corasdc629cd2017-05-09 00:52:37 -0700695 tcp_state_t state, u8 thread_index, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500696{
Dave Barach68b0fb02017-02-28 15:15:56 -0500697 ip4_header_t *ih4;
698 ip6_header_t *ih6;
699 tcp_header_t *th0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700700 ip4_address_t src_ip40, dst_ip40;
701 ip6_address_t src_ip60, dst_ip60;
702 u16 src_port, dst_port;
Dave Barach68b0fb02017-02-28 15:15:56 -0500703 u32 tmp;
Florin Corasdc629cd2017-05-09 00:52:37 -0700704 u32 seq, ack;
705 u8 flags;
Dave Barach68b0fb02017-02-28 15:15:56 -0500706
707 /* Find IP and TCP headers */
Florin Corasdc629cd2017-05-09 00:52:37 -0700708 th0 = tcp_buffer_hdr (b0);
709
710 /* Save src and dst ip */
Dave Barach68b0fb02017-02-28 15:15:56 -0500711 if (is_ip4)
712 {
713 ih4 = vlib_buffer_get_current (b0);
Florin Corasdc629cd2017-05-09 00:52:37 -0700714 ASSERT ((ih4->ip_version_and_header_length & 0xF0) == 0x40);
715 src_ip40.as_u32 = ih4->src_address.as_u32;
716 dst_ip40.as_u32 = ih4->dst_address.as_u32;
Dave Barach68b0fb02017-02-28 15:15:56 -0500717 }
718 else
719 {
720 ih6 = vlib_buffer_get_current (b0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500721 ASSERT ((ih6->ip_version_traffic_class_and_flow_label & 0xF0) == 0x60);
722 clib_memcpy (&src_ip60, &ih6->src_address, sizeof (ip6_address_t));
Florin Corasdc629cd2017-05-09 00:52:37 -0700723 clib_memcpy (&dst_ip60, &ih6->dst_address, sizeof (ip6_address_t));
Dave Barach68b0fb02017-02-28 15:15:56 -0500724 }
725
Florin Corasdc629cd2017-05-09 00:52:37 -0700726 src_port = th0->src_port;
727 dst_port = th0->dst_port;
728
729 /* Try to determine what/why we're actually resetting */
Dave Barach68b0fb02017-02-28 15:15:56 -0500730 if (state == TCP_STATE_CLOSED)
731 {
732 if (!tcp_syn (th0))
733 return -1;
734
735 tmp = clib_net_to_host_u32 (th0->seq_number);
736
737 /* Got a SYN for no listener. */
Florin Corasdc629cd2017-05-09 00:52:37 -0700738 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
739 ack = clib_host_to_net_u32 (tmp + 1);
740 seq = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500741 }
Florin Corasdc629cd2017-05-09 00:52:37 -0700742 else
Dave Barach68b0fb02017-02-28 15:15:56 -0500743 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700744 flags = TCP_FLAG_RST;
745 seq = th0->ack_number;
746 ack = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500747 }
748
Florin Corasdc629cd2017-05-09 00:52:37 -0700749 tcp_reuse_buffer (vm, b0);
750 th0 = vlib_buffer_push_tcp_net_order (b0, dst_port, src_port, seq, ack,
751 sizeof (tcp_header_t), flags, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500752
Dave Barach68b0fb02017-02-28 15:15:56 -0500753 if (is_ip4)
754 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700755 ih4 = vlib_buffer_push_ip4 (vm, b0, &dst_ip40, &src_ip40,
Florin Corasfdbc3822017-07-27 00:34:12 -0700756 IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500757 th0->checksum = ip4_tcp_udp_compute_checksum (vm, b0, ih4);
758 }
759 else
760 {
761 int bogus = ~0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700762 ih6 = vlib_buffer_push_ip6 (vm, b0, &dst_ip60, &src_ip60,
763 IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500764 th0->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b0, ih6, &bogus);
765 ASSERT (!bogus);
766 }
767
768 return 0;
769}
770
771/**
772 * Send reset without reusing existing buffer
Florin Coras1f152cd2017-08-18 19:28:03 -0700773 *
774 * It extracts connection info out of original packet
Dave Barach68b0fb02017-02-28 15:15:56 -0500775 */
776void
Florin Coras1f152cd2017-08-18 19:28:03 -0700777tcp_send_reset_w_pkt (tcp_connection_t * tc, vlib_buffer_t * pkt, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500778{
779 vlib_buffer_t *b;
780 u32 bi;
781 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -0700782 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500783 u8 tcp_hdr_len, flags = 0;
784 tcp_header_t *th, *pkt_th;
785 u32 seq, ack;
786 ip4_header_t *ih4, *pkt_ih4;
787 ip6_header_t *ih6, *pkt_ih6;
788
Florin Coras66b11312017-07-31 17:18:03 -0700789 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
790 return;
791
Dave Barach68b0fb02017-02-28 15:15:56 -0500792 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -0700793 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500794
795 /* Make and write options */
796 tcp_hdr_len = sizeof (tcp_header_t);
797
798 if (is_ip4)
799 {
800 pkt_ih4 = vlib_buffer_get_current (pkt);
801 pkt_th = ip4_next_header (pkt_ih4);
802 }
803 else
804 {
805 pkt_ih6 = vlib_buffer_get_current (pkt);
806 pkt_th = ip6_next_header (pkt_ih6);
807 }
808
809 if (tcp_ack (pkt_th))
810 {
811 flags = TCP_FLAG_RST;
812 seq = pkt_th->ack_number;
Florin Coras6534b7a2017-07-18 05:38:03 -0400813 ack = (tc && tc->state >= TCP_STATE_SYN_RCVD) ? tc->rcv_nxt : 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500814 }
815 else
816 {
817 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
818 seq = 0;
819 ack = clib_host_to_net_u32 (vnet_buffer (pkt)->tcp.seq_end);
820 }
821
822 th = vlib_buffer_push_tcp_net_order (b, pkt_th->dst_port, pkt_th->src_port,
823 seq, ack, tcp_hdr_len, flags, 0);
824
825 /* Swap src and dst ip */
826 if (is_ip4)
827 {
828 ASSERT ((pkt_ih4->ip_version_and_header_length & 0xF0) == 0x40);
829 ih4 = vlib_buffer_push_ip4 (vm, b, &pkt_ih4->dst_address,
Florin Corasfdbc3822017-07-27 00:34:12 -0700830 &pkt_ih4->src_address, IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500831 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
832 }
833 else
834 {
835 int bogus = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500836 ASSERT ((pkt_ih6->ip_version_traffic_class_and_flow_label & 0xF0) ==
837 0x60);
rootc9d1c5b2017-08-15 12:58:31 -0400838 ih6 = vlib_buffer_push_ip6 (vm, b, &pkt_ih6->dst_address,
839 &pkt_ih6->src_address, IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500840 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
841 ASSERT (!bogus);
842 }
843
844 tcp_enqueue_to_ip_lookup (vm, b, bi, is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -0400845 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500846}
847
Florin Coras1f152cd2017-08-18 19:28:03 -0700848/**
849 * Build and set reset packet for connection
850 */
851void
852tcp_send_reset (tcp_connection_t * tc)
853{
854 vlib_main_t *vm = vlib_get_main ();
855 tcp_main_t *tm = vnet_get_tcp_main ();
856 vlib_buffer_t *b;
857 u32 bi;
858 tcp_header_t *th;
859 u16 tcp_hdr_opts_len, advertise_wnd, opts_write_len;
860 u8 flags;
861
862 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
863 return;
864 b = vlib_get_buffer (vm, bi);
865 tcp_init_buffer (vm, b);
866
867 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
868 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
869 advertise_wnd = tcp_window_to_advertise (tc, TCP_STATE_ESTABLISHED);
870 flags = TCP_FLAG_RST;
871 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
872 tc->rcv_nxt, tcp_hdr_opts_len, flags,
873 advertise_wnd);
874 opts_write_len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
875 ASSERT (opts_write_len == tc->snd_opts_len);
876 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
877 tcp_enqueue_to_output_now (vm, b, bi, tc->c_is_ip4);
878}
879
Dave Barach68b0fb02017-02-28 15:15:56 -0500880void
881tcp_push_ip_hdr (tcp_main_t * tm, tcp_connection_t * tc, vlib_buffer_t * b)
882{
883 tcp_header_t *th = vlib_buffer_get_current (b);
Dave Barach2c25a622017-06-26 11:35:07 -0400884 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500885 if (tc->c_is_ip4)
886 {
887 ip4_header_t *ih;
Dave Barach2c25a622017-06-26 11:35:07 -0400888 ih = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip4,
Florin Corasfdbc3822017-07-27 00:34:12 -0700889 &tc->c_rmt_ip4, IP_PROTOCOL_TCP, 1);
Dave Barach2c25a622017-06-26 11:35:07 -0400890 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih);
Dave Barach68b0fb02017-02-28 15:15:56 -0500891 }
892 else
893 {
894 ip6_header_t *ih;
895 int bogus = ~0;
896
Dave Barach2c25a622017-06-26 11:35:07 -0400897 ih = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip6,
Dave Barach68b0fb02017-02-28 15:15:56 -0500898 &tc->c_rmt_ip6, IP_PROTOCOL_TCP);
Dave Barach2c25a622017-06-26 11:35:07 -0400899 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih, &bogus);
Dave Barach68b0fb02017-02-28 15:15:56 -0500900 ASSERT (!bogus);
901 }
902}
903
904/**
905 * Send SYN
906 *
907 * Builds a SYN packet for a half-open connection and sends it to ipx_lookup.
908 * The packet is not forwarded through tcpx_output to avoid doing lookups
909 * in the half_open pool.
910 */
911void
912tcp_send_syn (tcp_connection_t * tc)
913{
914 vlib_buffer_t *b;
915 u32 bi;
916 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -0700917 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500918 u8 tcp_hdr_opts_len, tcp_opts_len;
919 tcp_header_t *th;
920 u32 time_now;
921 u16 initial_wnd;
922 tcp_options_t snd_opts;
923
Florin Coras66b11312017-07-31 17:18:03 -0700924 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
925 return;
926
Dave Barach68b0fb02017-02-28 15:15:56 -0500927 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -0700928 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500929
930 /* Set random initial sequence */
931 time_now = tcp_time_now ();
932
933 tc->iss = random_u32 (&time_now);
934 tc->snd_una = tc->iss;
935 tc->snd_una_max = tc->snd_nxt = tc->iss + 1;
936
937 initial_wnd = tcp_initial_window_to_advertise (tc);
938
939 /* Make and write options */
940 memset (&snd_opts, 0, sizeof (snd_opts));
Florin Corase04c2992017-03-01 08:17:34 -0800941 tcp_opts_len = tcp_make_syn_options (&snd_opts, tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500942 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
943
944 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
945 tc->rcv_nxt, tcp_hdr_opts_len, TCP_FLAG_SYN,
946 initial_wnd);
947
948 tcp_options_write ((u8 *) (th + 1), &snd_opts);
949
950 /* Measure RTT with this */
951 tc->rtt_ts = tcp_time_now ();
952 tc->rtt_seq = tc->snd_nxt;
953
954 /* Start retransmit trimer */
955 tcp_timer_set (tc, TCP_TIMER_RETRANSMIT_SYN, tc->rto * TCP_TO_TIMER_TICK);
956 tc->rto_boff = 0;
957
958 /* Set the connection establishment timer */
959 tcp_timer_set (tc, TCP_TIMER_ESTABLISH, TCP_ESTABLISH_TIME);
960
961 tcp_push_ip_hdr (tm, tc, b);
962 tcp_enqueue_to_ip_lookup (vm, b, bi, tc->c_is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -0400963 TCP_EVT_DBG (TCP_EVT_SYN_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500964}
965
Florin Coras66b11312017-07-31 17:18:03 -0700966/**
967 * Flush tx frame populated by retransmits and timer pops
968 */
969void
970tcp_flush_frame_to_output (vlib_main_t * vm, u8 thread_index, u8 is_ip4)
971{
972 if (tcp_main.tx_frames[!is_ip4][thread_index])
973 {
974 u32 next_index;
975 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
976 vlib_put_frame_to_node (vm, next_index,
977 tcp_main.tx_frames[!is_ip4][thread_index]);
978 tcp_main.tx_frames[!is_ip4][thread_index] = 0;
979 }
980}
981
982/**
983 * Flush both v4 and v6 tx frames for thread index
984 */
985void
986tcp_flush_frames_to_output (u8 thread_index)
987{
988 vlib_main_t *vm = vlib_get_main ();
989 tcp_flush_frame_to_output (vm, thread_index, 1);
990 tcp_flush_frame_to_output (vm, thread_index, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500991}
992
993/**
994 * Send FIN
995 */
996void
997tcp_send_fin (tcp_connection_t * tc)
998{
999 vlib_buffer_t *b;
1000 u32 bi;
1001 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001002 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001003
Florin Coras66b11312017-07-31 17:18:03 -07001004 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1005 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001006 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001007 /* buffer will be initialized by in tcp_make_fin */
Florin Corasd79b41e2017-03-04 05:37:52 -08001008 tcp_make_fin (tc, b);
Florin Coras66b11312017-07-31 17:18:03 -07001009 tcp_enqueue_to_output_now (vm, b, bi, tc->c_is_ip4);
Florin Corasd79b41e2017-03-04 05:37:52 -08001010 tc->flags |= TCP_CONN_FINSNT;
Florin Corasb2215d62017-08-01 16:56:58 -07001011 tc->flags &= ~TCP_CONN_FINPNDG;
Florin Coras93992a92017-05-24 18:03:56 -07001012 tcp_retransmit_timer_force_update (tc);
Florin Corase69f4952017-03-07 10:06:24 -08001013 TCP_EVT_DBG (TCP_EVT_FIN_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001014}
1015
1016always_inline u8
Florin Corasb2215d62017-08-01 16:56:58 -07001017tcp_make_state_flags (tcp_connection_t * tc, tcp_state_t next_state)
Dave Barach68b0fb02017-02-28 15:15:56 -05001018{
1019 switch (next_state)
1020 {
1021 case TCP_STATE_ESTABLISHED:
1022 return TCP_FLAG_ACK;
1023 case TCP_STATE_SYN_RCVD:
1024 return TCP_FLAG_SYN | TCP_FLAG_ACK;
1025 case TCP_STATE_SYN_SENT:
1026 return TCP_FLAG_SYN;
1027 case TCP_STATE_LAST_ACK:
1028 case TCP_STATE_FIN_WAIT_1:
Florin Corasb2215d62017-08-01 16:56:58 -07001029 if (tc->snd_nxt + 1 < tc->snd_una_max)
1030 return TCP_FLAG_ACK;
1031 else
1032 return TCP_FLAG_FIN;
Dave Barach68b0fb02017-02-28 15:15:56 -05001033 default:
1034 clib_warning ("Shouldn't be here!");
1035 }
1036 return 0;
1037}
1038
1039/**
1040 * Push TCP header and update connection variables
1041 */
1042static void
1043tcp_push_hdr_i (tcp_connection_t * tc, vlib_buffer_t * b,
Florin Corasc8343412017-05-04 14:25:50 -07001044 tcp_state_t next_state, u8 compute_opts)
Dave Barach68b0fb02017-02-28 15:15:56 -05001045{
1046 u32 advertise_wnd, data_len;
Florin Corasc8343412017-05-04 14:25:50 -07001047 u8 tcp_hdr_opts_len, opts_write_len, flags;
Dave Barach68b0fb02017-02-28 15:15:56 -05001048 tcp_header_t *th;
1049
Florin Corasf6d68ed2017-05-07 19:12:02 -07001050 data_len = b->current_length + b->total_length_not_including_first_buffer;
Florin Coras1f152cd2017-08-18 19:28:03 -07001051 ASSERT (!b->total_length_not_including_first_buffer
1052 || (b->flags & VLIB_BUFFER_NEXT_PRESENT));
Dave Barach68b0fb02017-02-28 15:15:56 -05001053 vnet_buffer (b)->tcp.flags = 0;
1054
Florin Corasc8343412017-05-04 14:25:50 -07001055 if (compute_opts)
1056 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1057
Florin Corasc8343412017-05-04 14:25:50 -07001058 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
Dave Barach68b0fb02017-02-28 15:15:56 -05001059 advertise_wnd = tcp_window_to_advertise (tc, next_state);
Florin Corasb2215d62017-08-01 16:56:58 -07001060 flags = tcp_make_state_flags (tc, next_state);
Dave Barach68b0fb02017-02-28 15:15:56 -05001061
1062 /* Push header and options */
1063 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
1064 tc->rcv_nxt, tcp_hdr_opts_len, flags,
1065 advertise_wnd);
Florin Corasc8343412017-05-04 14:25:50 -07001066 opts_write_len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -05001067
Florin Corasc8343412017-05-04 14:25:50 -07001068 ASSERT (opts_write_len == tc->snd_opts_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001069 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
1070
Florin Coras93992a92017-05-24 18:03:56 -07001071 /*
1072 * Update connection variables
1073 */
1074
Dave Barach68b0fb02017-02-28 15:15:56 -05001075 tc->snd_nxt += data_len;
Florin Corasc28764f2017-04-26 00:08:42 -07001076 tc->rcv_las = tc->rcv_nxt;
Florin Coras3e350af2017-03-30 02:54:28 -07001077
Florin Coras6792ec02017-03-13 03:49:51 -07001078 /* TODO this is updated in output as well ... */
Florin Coras93992a92017-05-24 18:03:56 -07001079 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
Florin Coras3af90fc2017-05-03 21:09:42 -07001080 {
Florin Coras93992a92017-05-24 18:03:56 -07001081 tc->snd_una_max = tc->snd_nxt;
1082 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
Florin Coras3af90fc2017-05-03 21:09:42 -07001083 }
Florin Coras93992a92017-05-24 18:03:56 -07001084
Florin Corase69f4952017-03-07 10:06:24 -08001085 TCP_EVT_DBG (TCP_EVT_PKTIZE, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001086}
1087
Dave Barach68b0fb02017-02-28 15:15:56 -05001088void
Florin Coras6792ec02017-03-13 03:49:51 -07001089tcp_send_ack (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001090{
1091 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001092 vlib_main_t *vm = vlib_get_main ();
1093
Dave Barach68b0fb02017-02-28 15:15:56 -05001094 vlib_buffer_t *b;
1095 u32 bi;
1096
Dave Barach68b0fb02017-02-28 15:15:56 -05001097 /* Get buffer */
Florin Coras66b11312017-07-31 17:18:03 -07001098 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1099 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001100 b = vlib_get_buffer (vm, bi);
1101
1102 /* Fill in the ACK */
1103 tcp_make_ack (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001104 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1105}
1106
Florin Corasb2215d62017-08-01 16:56:58 -07001107/**
1108 * Delayed ack timer handler
1109 *
1110 * Sends delayed ACK when timer expires
1111 */
Florin Coras6792ec02017-03-13 03:49:51 -07001112void
1113tcp_timer_delack_handler (u32 index)
1114{
Damjan Marion586afd72017-04-05 19:18:20 +02001115 u32 thread_index = vlib_get_thread_index ();
Florin Coras6792ec02017-03-13 03:49:51 -07001116 tcp_connection_t *tc;
1117
1118 tc = tcp_connection_get (index, thread_index);
1119 tc->timers[TCP_TIMER_DELACK] = TCP_TIMER_HANDLE_INVALID;
Florin Coras6792ec02017-03-13 03:49:51 -07001120 tcp_send_ack (tc);
1121}
1122
Florin Corasb2215d62017-08-01 16:56:58 -07001123/**
1124 * Build a retransmit segment
Dave Barach68b0fb02017-02-28 15:15:56 -05001125 *
1126 * @return the number of bytes in the segment or 0 if there's nothing to
1127 * retransmit
Florin Coras93992a92017-05-24 18:03:56 -07001128 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001129u32
Florin Corasb2215d62017-08-01 16:56:58 -07001130tcp_prepare_retransmit_segment (tcp_connection_t * tc, u32 offset,
1131 u32 max_deq_bytes, vlib_buffer_t ** b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001132{
Florin Corasb2215d62017-08-01 16:56:58 -07001133 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001134 vlib_main_t *vm = vlib_get_main ();
Florin Coras93992a92017-05-24 18:03:56 -07001135 int n_bytes = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001136 u32 start, bi, available_bytes, seg_size;
1137 u8 *data;
Dave Barach68b0fb02017-02-28 15:15:56 -05001138
Florin Corase04c2992017-03-01 08:17:34 -08001139 ASSERT (tc->state >= TCP_STATE_ESTABLISHED);
Florin Corasb2215d62017-08-01 16:56:58 -07001140 ASSERT (max_deq_bytes != 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001141
Florin Corasb2215d62017-08-01 16:56:58 -07001142 /*
1143 * Make sure we can retransmit something
1144 */
Florin Corasb2215d62017-08-01 16:56:58 -07001145 available_bytes = stream_session_tx_fifo_max_dequeue (&tc->connection);
Florin Coras1f152cd2017-08-18 19:28:03 -07001146 available_bytes -= offset;
Florin Corasb2215d62017-08-01 16:56:58 -07001147 if (!available_bytes)
1148 return 0;
Florin Corase87216f2017-08-17 16:59:22 -07001149 max_deq_bytes = clib_min (tc->snd_mss, max_deq_bytes);
Florin Corasb2215d62017-08-01 16:56:58 -07001150 max_deq_bytes = clib_min (available_bytes, max_deq_bytes);
Florin Coras6792ec02017-03-13 03:49:51 -07001151
1152 /* Start is beyond snd_congestion */
Florin Corase87216f2017-08-17 16:59:22 -07001153 start = tc->snd_una + offset;
Florin Coras93992a92017-05-24 18:03:56 -07001154 if (seq_geq (start, tc->snd_congestion))
Florin Coras1f152cd2017-08-18 19:28:03 -07001155 goto done;
Florin Coras6792ec02017-03-13 03:49:51 -07001156
Florin Corasb2215d62017-08-01 16:56:58 -07001157 /* Don't overshoot snd_congestion */
1158 if (seq_gt (start + max_deq_bytes, tc->snd_congestion))
1159 {
1160 max_deq_bytes = tc->snd_congestion - start;
1161 if (max_deq_bytes == 0)
Florin Coras1f152cd2017-08-18 19:28:03 -07001162 goto done;
Florin Corasb2215d62017-08-01 16:56:58 -07001163 }
1164
Florin Coras1f152cd2017-08-18 19:28:03 -07001165 seg_size = max_deq_bytes + MAX_HDRS_LEN;
1166
Florin Corasb2215d62017-08-01 16:56:58 -07001167 /*
1168 * Prepare options
1169 */
Florin Corasc8343412017-05-04 14:25:50 -07001170 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1171
Florin Corasb2215d62017-08-01 16:56:58 -07001172 /*
1173 * Allocate and fill in buffer(s)
1174 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001175
Florin Corasb2215d62017-08-01 16:56:58 -07001176 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1177 return 0;
1178 *b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001179 data = tcp_init_buffer (vm, *b);
Florin Corasb2215d62017-08-01 16:56:58 -07001180
1181 /* Easy case, buffer size greater than mss */
Florin Corase87216f2017-08-17 16:59:22 -07001182 if (PREDICT_TRUE (seg_size <= tm->bytes_per_buffer))
Florin Corasb2215d62017-08-01 16:56:58 -07001183 {
Florin Corase87216f2017-08-17 16:59:22 -07001184 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1185 max_deq_bytes);
Florin Corasb2215d62017-08-01 16:56:58 -07001186 ASSERT (n_bytes == max_deq_bytes);
1187 b[0]->current_length = n_bytes;
1188 tcp_push_hdr_i (tc, *b, tc->state, 0);
1189 }
1190 /* Split mss into multiple buffers */
1191 else
1192 {
1193 u32 chain_bi = ~0, n_bufs_per_seg;
1194 u32 thread_index = vlib_get_thread_index ();
1195 u16 n_peeked, len_to_deq, available_bufs;
1196 vlib_buffer_t *chain_b, *prev_b;
Florin Corasb2215d62017-08-01 16:56:58 -07001197 int i;
1198
Florin Corase87216f2017-08-17 16:59:22 -07001199 n_bufs_per_seg = ceil ((double) seg_size / tm->bytes_per_buffer);
Florin Corasb2215d62017-08-01 16:56:58 -07001200
1201 /* Make sure we have enough buffers */
1202 available_bufs = vec_len (tm->tx_buffers[thread_index]);
1203 if (n_bufs_per_seg > available_bufs)
1204 {
1205 if (tcp_alloc_tx_buffers (tm, thread_index,
1206 VLIB_FRAME_SIZE - available_bufs))
1207 {
1208 tcp_return_buffer (tm);
1209 return 0;
1210 }
1211 }
1212
Florin Corase87216f2017-08-17 16:59:22 -07001213 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1214 tm->bytes_per_buffer -
1215 MAX_HDRS_LEN);
Florin Corasb2215d62017-08-01 16:56:58 -07001216 b[0]->current_length = n_bytes;
1217 b[0]->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
1218 b[0]->total_length_not_including_first_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001219 max_deq_bytes -= n_bytes;
1220
1221 chain_b = *b;
1222 for (i = 1; i < n_bufs_per_seg; i++)
1223 {
1224 prev_b = chain_b;
1225 len_to_deq = clib_min (max_deq_bytes, tm->bytes_per_buffer);
1226 tcp_get_free_buffer_index (tm, &chain_bi);
1227 ASSERT (chain_bi != (u32) ~ 0);
1228 chain_b = vlib_get_buffer (vm, chain_bi);
1229 chain_b->current_data = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001230 data = vlib_buffer_get_current (chain_b);
1231 n_peeked = stream_session_peek_bytes (&tc->connection, data,
Florin Coras1f152cd2017-08-18 19:28:03 -07001232 offset + n_bytes, len_to_deq);
Florin Corasb2215d62017-08-01 16:56:58 -07001233 ASSERT (n_peeked == len_to_deq);
Florin Coras1f152cd2017-08-18 19:28:03 -07001234 n_bytes += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001235 chain_b->current_length = n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001236 chain_b->flags = 0;
1237 chain_b->next_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001238
1239 /* update previous buffer */
1240 prev_b->next_buffer = chain_bi;
1241 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
1242
Florin Corasb2215d62017-08-01 16:56:58 -07001243 max_deq_bytes -= n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001244 b[0]->total_length_not_including_first_buffer += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001245 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001246
1247 tcp_push_hdr_i (tc, *b, tc->state, 0);
Florin Corasb2215d62017-08-01 16:56:58 -07001248 }
1249
Florin Coras93992a92017-05-24 18:03:56 -07001250 ASSERT (n_bytes > 0);
Florin Corase87216f2017-08-17 16:59:22 -07001251 ASSERT (((*b)->current_data + (*b)->current_length) <=
1252 tm->bytes_per_buffer);
Florin Corasbb292f42017-05-19 09:49:19 -07001253
Florin Coras93992a92017-05-24 18:03:56 -07001254 if (tcp_in_fastrecovery (tc))
1255 tc->snd_rxt_bytes += n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001256
Florin Coras6792ec02017-03-13 03:49:51 -07001257done:
1258 TCP_EVT_DBG (TCP_EVT_CC_RTX, tc, offset, n_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001259 return n_bytes;
1260}
1261
Florin Coras6792ec02017-03-13 03:49:51 -07001262/**
1263 * Reset congestion control, switch cwnd to loss window and try again.
1264 */
1265static void
Florin Coras3e350af2017-03-30 02:54:28 -07001266tcp_rtx_timeout_cc (tcp_connection_t * tc)
Florin Coras6792ec02017-03-13 03:49:51 -07001267{
Florin Coras93992a92017-05-24 18:03:56 -07001268 tc->prev_ssthresh = tc->ssthresh;
1269 tc->prev_cwnd = tc->cwnd;
1270
Florin Coras6792ec02017-03-13 03:49:51 -07001271 /* Cleanly recover cc (also clears up fast retransmit) */
1272 if (tcp_in_fastrecovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001273 tcp_cc_fastrecovery_exit (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001274
1275 /* Start again from the beginning */
Florin Coras93992a92017-05-24 18:03:56 -07001276 tc->ssthresh = clib_max (tcp_flight_size (tc) / 2, 2 * tc->snd_mss);
Florin Coras6792ec02017-03-13 03:49:51 -07001277 tc->cwnd = tcp_loss_wnd (tc);
1278 tc->snd_congestion = tc->snd_una_max;
Florin Corasf03a59a2017-06-09 21:07:32 -07001279
Florin Coras3af90fc2017-05-03 21:09:42 -07001280 tcp_recovery_on (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001281}
1282
Dave Barach68b0fb02017-02-28 15:15:56 -05001283static void
1284tcp_timer_retransmit_handler_i (u32 index, u8 is_syn)
1285{
1286 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001287 vlib_main_t *vm = vlib_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02001288 u32 thread_index = vlib_get_thread_index ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001289 tcp_connection_t *tc;
Florin Corasb2215d62017-08-01 16:56:58 -07001290 vlib_buffer_t *b = 0;
Florin Coras3af90fc2017-05-03 21:09:42 -07001291 u32 bi, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001292
1293 if (is_syn)
1294 {
1295 tc = tcp_half_open_connection_get (index);
Florin Coras68810622017-07-24 17:40:28 -07001296 tc->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05001297 }
1298 else
1299 {
1300 tc = tcp_connection_get (index, thread_index);
Florin Coras68810622017-07-24 17:40:28 -07001301 tc->timers[TCP_TIMER_RETRANSMIT] = TCP_TIMER_HANDLE_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05001302 }
1303
Florin Coras93992a92017-05-24 18:03:56 -07001304 if (!tcp_in_recovery (tc) && tc->rto_boff > 0
1305 && tc->state >= TCP_STATE_ESTABLISHED)
1306 {
1307 tc->rto_boff = 0;
1308 tcp_update_rto (tc);
1309 }
1310
Dave Barach68b0fb02017-02-28 15:15:56 -05001311 /* Increment RTO backoff (also equal to number of retries) */
1312 tc->rto_boff += 1;
1313
1314 /* Go back to first un-acked byte */
1315 tc->snd_nxt = tc->snd_una;
1316
Florin Corase04c2992017-03-01 08:17:34 -08001317 if (tc->state >= TCP_STATE_ESTABLISHED)
Dave Barach68b0fb02017-02-28 15:15:56 -05001318 {
Florin Coras93992a92017-05-24 18:03:56 -07001319 /* Lost FIN, retransmit and return */
Florin Corasb2215d62017-08-01 16:56:58 -07001320 if (tcp_is_lost_fin (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001321 {
1322 tcp_send_fin (tc);
1323 return;
1324 }
1325
Florin Coras6792ec02017-03-13 03:49:51 -07001326 /* First retransmit timeout */
1327 if (tc->rto_boff == 1)
Florin Coras3e350af2017-03-30 02:54:28 -07001328 tcp_rtx_timeout_cc (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001329
1330 /* Exponential backoff */
1331 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1332
Florin Coras6792ec02017-03-13 03:49:51 -07001333 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 1);
1334
Florin Coras93992a92017-05-24 18:03:56 -07001335 /* Send one segment */
Florin Corasb2215d62017-08-01 16:56:58 -07001336 n_bytes = tcp_prepare_retransmit_segment (tc, 0, tc->snd_mss, &b);
1337 ASSERT (n_bytes);
1338 bi = vlib_get_buffer_index (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001339 /* TODO be less aggressive about this */
Florin Coras3af90fc2017-05-03 21:09:42 -07001340 scoreboard_clear (&tc->sack_sb);
1341
1342 if (n_bytes == 0)
Florin Corase04c2992017-03-01 08:17:34 -08001343 {
Florin Corasbb292f42017-05-19 09:49:19 -07001344 clib_warning ("could not retransmit anything");
Florin Coras93992a92017-05-24 18:03:56 -07001345 clib_warning ("%U", format_tcp_connection, tc, 2);
1346
Florin Corasbb292f42017-05-19 09:49:19 -07001347 /* Try again eventually */
1348 tcp_retransmit_timer_set (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001349 ASSERT (0 || (tc->rto_boff > 1
1350 && tc->snd_una == tc->snd_congestion));
Florin Corase04c2992017-03-01 08:17:34 -08001351 return;
1352 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001353
Florin Coras93992a92017-05-24 18:03:56 -07001354 /* For first retransmit, record timestamp (Eifel detection RFC3522) */
1355 if (tc->rto_boff == 1)
1356 tc->snd_rxt_ts = tcp_time_now ();
1357 }
1358 /* Retransmit for SYN/SYNACK */
1359 else if (tc->state == TCP_STATE_SYN_RCVD || tc->state == TCP_STATE_SYN_SENT)
1360 {
Florin Coras68810622017-07-24 17:40:28 -07001361 /* Half-open connection actually moved to established but we were
1362 * waiting for syn retransmit to pop to call cleanup from the right
1363 * thread. */
1364 if (tc->flags & TCP_CONN_HALF_OPEN_DONE)
1365 {
1366 ASSERT (tc->state == TCP_STATE_SYN_SENT);
1367 if (tcp_half_open_connection_cleanup (tc))
1368 {
1369 clib_warning ("could not remove half-open connection");
1370 ASSERT (0);
1371 }
1372 return;
1373 }
1374
Dave Barach68b0fb02017-02-28 15:15:56 -05001375 /* Try without increasing RTO a number of times. If this fails,
1376 * start growing RTO exponentially */
1377 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1378 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1379
Florin Corasb2215d62017-08-01 16:56:58 -07001380 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1381 return;
1382 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001383 tcp_init_buffer (vm, b);
Florin Corasc8343412017-05-04 14:25:50 -07001384 tcp_push_hdr_i (tc, b, tc->state, 1);
Florin Corase04c2992017-03-01 08:17:34 -08001385
1386 /* Account for the SYN */
1387 tc->snd_nxt += 1;
Dave Barach2c25a622017-06-26 11:35:07 -04001388 tc->rtt_ts = 0;
Florin Coras6534b7a2017-07-18 05:38:03 -04001389 TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc,
1390 (tc->state == TCP_STATE_SYN_SENT ? 0 : 1));
Dave Barach68b0fb02017-02-28 15:15:56 -05001391 }
Florin Coras93992a92017-05-24 18:03:56 -07001392 else
1393 {
1394 ASSERT (tc->state == TCP_STATE_CLOSED);
1395 clib_warning ("connection closed ...");
1396 return;
1397 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001398
1399 if (!is_syn)
1400 {
1401 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1402
1403 /* Re-enable retransmit timer */
Florin Corasd79b41e2017-03-04 05:37:52 -08001404 tcp_retransmit_timer_set (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001405 }
1406 else
1407 {
1408 ASSERT (tc->state == TCP_STATE_SYN_SENT);
1409
1410 /* This goes straight to ipx_lookup */
1411 tcp_push_ip_hdr (tm, tc, b);
1412 tcp_enqueue_to_ip_lookup (vm, b, bi, tc->c_is_ip4);
1413
1414 /* Re-enable retransmit timer */
1415 tcp_timer_set (tc, TCP_TIMER_RETRANSMIT_SYN,
1416 tc->rto * TCP_TO_TIMER_TICK);
1417 }
1418}
1419
1420void
1421tcp_timer_retransmit_handler (u32 index)
1422{
1423 tcp_timer_retransmit_handler_i (index, 0);
1424}
1425
1426void
1427tcp_timer_retransmit_syn_handler (u32 index)
1428{
1429 tcp_timer_retransmit_handler_i (index, 1);
1430}
1431
1432/**
Florin Coras3e350af2017-03-30 02:54:28 -07001433 * Got 0 snd_wnd from peer, try to do something about it.
1434 *
1435 */
1436void
1437tcp_timer_persist_handler (u32 index)
1438{
1439 tcp_main_t *tm = vnet_get_tcp_main ();
1440 vlib_main_t *vm = vlib_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02001441 u32 thread_index = vlib_get_thread_index ();
Florin Coras3e350af2017-03-30 02:54:28 -07001442 tcp_connection_t *tc;
1443 vlib_buffer_t *b;
Florin Coras1f152cd2017-08-18 19:28:03 -07001444 u32 bi, old_snd_nxt, max_snd_bytes, available_bytes, offset;
Florin Coras93992a92017-05-24 18:03:56 -07001445 int n_bytes = 0;
Florin Coras1f152cd2017-08-18 19:28:03 -07001446 u8 *data;
Florin Coras3e350af2017-03-30 02:54:28 -07001447
Florin Corasdb84e572017-05-09 18:54:52 -07001448 tc = tcp_connection_get_if_valid (index, thread_index);
1449
1450 if (!tc)
1451 return;
Florin Coras3e350af2017-03-30 02:54:28 -07001452
1453 /* Make sure timer handle is set to invalid */
1454 tc->timers[TCP_TIMER_PERSIST] = TCP_TIMER_HANDLE_INVALID;
1455
1456 /* Problem already solved or worse */
Florin Corasf03a59a2017-06-09 21:07:32 -07001457 if (tc->state == TCP_STATE_CLOSED || tc->state > TCP_STATE_ESTABLISHED
Florin Coras50958952017-08-29 14:50:13 -07001458 || tc->snd_wnd > tc->snd_mss || tcp_in_recovery (tc))
Florin Coras3e350af2017-03-30 02:54:28 -07001459 return;
1460
Florin Coras50958952017-08-29 14:50:13 -07001461 available_bytes = stream_session_tx_fifo_max_dequeue (&tc->connection);
1462 offset = tc->snd_una_max - tc->snd_una;
1463
1464 /* Reprogram persist if no new bytes available to send. We may have data
1465 * next time */
1466 if (!available_bytes)
1467 {
1468 tcp_persist_timer_set (tc);
1469 return;
1470 }
1471
1472 if (available_bytes <= offset)
1473 {
1474 ASSERT (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT));
1475 return;
1476 }
1477
Florin Coras3e350af2017-03-30 02:54:28 -07001478 /* Increment RTO backoff */
1479 tc->rto_boff += 1;
1480 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1481
Florin Corasb2215d62017-08-01 16:56:58 -07001482 /*
1483 * Try to force the first unsent segment (or buffer)
1484 */
Florin Coras66b11312017-07-31 17:18:03 -07001485 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1486 return;
Florin Coras3e350af2017-03-30 02:54:28 -07001487 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001488 data = tcp_init_buffer (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001489
Florin Coras1f152cd2017-08-18 19:28:03 -07001490 tcp_validate_txf_size (tc, offset);
Florin Corasc8343412017-05-04 14:25:50 -07001491 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
Florin Coras1f152cd2017-08-18 19:28:03 -07001492 max_snd_bytes = clib_min (tc->snd_mss, tm->bytes_per_buffer - MAX_HDRS_LEN);
1493 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1494 max_snd_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001495 b->current_length = n_bytes;
Florin Coras1f152cd2017-08-18 19:28:03 -07001496 ASSERT (n_bytes != 0 && (tc->snd_nxt == tc->snd_una_max || tc->rto_boff > 1
1497 || tcp_timer_is_active (tc,
1498 TCP_TIMER_RETRANSMIT)));
Florin Coras93992a92017-05-24 18:03:56 -07001499
1500 /* Allow updating of snd_una_max but don't update snd_nxt */
1501 old_snd_nxt = tc->snd_nxt;
Florin Corasc8343412017-05-04 14:25:50 -07001502 tcp_push_hdr_i (tc, b, tc->state, 0);
Florin Coras93992a92017-05-24 18:03:56 -07001503 tc->snd_nxt = old_snd_nxt;
Florin Coras3e350af2017-03-30 02:54:28 -07001504 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1505
Florin Coras1f152cd2017-08-18 19:28:03 -07001506 /* Just sent new data, enable retransmit */
1507 tcp_retransmit_timer_update (tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001508}
1509
1510/**
Florin Coras6792ec02017-03-13 03:49:51 -07001511 * Retransmit first unacked segment
1512 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001513void
1514tcp_retransmit_first_unacked (tcp_connection_t * tc)
1515{
Florin Coras6792ec02017-03-13 03:49:51 -07001516 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001517 vlib_buffer_t *b;
Florin Corasb2215d62017-08-01 16:56:58 -07001518 u32 bi, old_snd_nxt, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001519
Florin Coras93992a92017-05-24 18:03:56 -07001520 old_snd_nxt = tc->snd_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001521 tc->snd_nxt = tc->snd_una;
1522
Florin Coras6792ec02017-03-13 03:49:51 -07001523 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2);
Florin Corasb2215d62017-08-01 16:56:58 -07001524 n_bytes = tcp_prepare_retransmit_segment (tc, 0, tc->snd_mss, &b);
1525 if (!n_bytes)
1526 return;
1527 bi = vlib_get_buffer_index (vm, b);
Florin Coras6792ec02017-03-13 03:49:51 -07001528 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras5921f982017-04-03 18:00:00 -07001529
Florin Coras93992a92017-05-24 18:03:56 -07001530 tc->snd_nxt = old_snd_nxt;
Florin Coras6792ec02017-03-13 03:49:51 -07001531}
1532
1533/**
Florin Coras93992a92017-05-24 18:03:56 -07001534 * Do fast retransmit with SACKs
Florin Coras6792ec02017-03-13 03:49:51 -07001535 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001536void
Florin Coras93992a92017-05-24 18:03:56 -07001537tcp_fast_retransmit_sack (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001538{
Florin Coras6792ec02017-03-13 03:49:51 -07001539 vlib_main_t *vm = vlib_get_main ();
Florin Coras1f152cd2017-08-18 19:28:03 -07001540 u32 n_written = 0, offset, max_bytes;
Florin Corasb2215d62017-08-01 16:56:58 -07001541 vlib_buffer_t *b = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001542 sack_scoreboard_hole_t *hole;
1543 sack_scoreboard_t *sb;
1544 u32 bi, old_snd_nxt;
1545 int snd_space;
1546 u8 snd_limited = 0, can_rescue = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001547
1548 ASSERT (tcp_in_fastrecovery (tc));
Florin Coras6792ec02017-03-13 03:49:51 -07001549 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001550
Florin Coras93992a92017-05-24 18:03:56 -07001551 old_snd_nxt = tc->snd_nxt;
1552 sb = &tc->sack_sb;
1553 snd_space = tcp_available_snd_space (tc);
1554
1555 hole = scoreboard_get_hole (sb, sb->cur_rxt_hole);
1556 while (hole && snd_space > 0)
1557 {
Florin Coras93992a92017-05-24 18:03:56 -07001558 hole = scoreboard_next_rxt_hole (sb, hole,
1559 tcp_fastrecovery_sent_1_smss (tc),
1560 &can_rescue, &snd_limited);
1561 if (!hole)
1562 {
1563 if (!can_rescue || !(seq_lt (sb->rescue_rxt, tc->snd_una)
1564 || seq_gt (sb->rescue_rxt,
1565 tc->snd_congestion)))
1566 break;
1567
1568 /* If rescue rxt undefined or less than snd_una then one segment of
1569 * up to SMSS octets that MUST include the highest outstanding
1570 * unSACKed sequence number SHOULD be returned, and RescueRxt set to
1571 * RecoveryPoint. HighRxt MUST NOT be updated.
1572 */
Florin Coras1f152cd2017-08-18 19:28:03 -07001573 max_bytes = clib_min (tc->snd_mss,
1574 tc->snd_congestion - tc->snd_una);
1575 max_bytes = clib_min (max_bytes, snd_space);
Florin Coras93992a92017-05-24 18:03:56 -07001576 offset = tc->snd_congestion - tc->snd_una - max_bytes;
1577 sb->rescue_rxt = tc->snd_congestion;
1578 tc->snd_nxt = tc->snd_una + offset;
Florin Corasb2215d62017-08-01 16:56:58 -07001579 n_written = tcp_prepare_retransmit_segment (tc, offset, max_bytes,
1580 &b);
1581 ASSERT (n_written);
1582 bi = vlib_get_buffer_index (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001583 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1584 break;
1585 }
1586
Florin Coras1f152cd2017-08-18 19:28:03 -07001587 max_bytes = clib_min (hole->end - sb->high_rxt, snd_space);
1588 max_bytes = snd_limited ? clib_min (max_bytes, tc->snd_mss) : max_bytes;
1589 if (max_bytes == 0)
1590 break;
Florin Coras93992a92017-05-24 18:03:56 -07001591 offset = sb->high_rxt - tc->snd_una;
Florin Coras1f152cd2017-08-18 19:28:03 -07001592 tc->snd_nxt = sb->high_rxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001593 n_written = tcp_prepare_retransmit_segment (tc, offset, max_bytes, &b);
Florin Coras93992a92017-05-24 18:03:56 -07001594
1595 /* Nothing left to retransmit */
1596 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001597 break;
Florin Coras93992a92017-05-24 18:03:56 -07001598
Florin Corasb2215d62017-08-01 16:56:58 -07001599 bi = vlib_get_buffer_index (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001600 sb->high_rxt += n_written;
1601 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras1f152cd2017-08-18 19:28:03 -07001602 ASSERT (n_written <= snd_space);
Florin Coras93992a92017-05-24 18:03:56 -07001603 snd_space -= n_written;
1604 }
1605
1606 /* If window allows, send 1 SMSS of new data */
1607 tc->snd_nxt = old_snd_nxt;
1608}
1609
1610/**
1611 * Fast retransmit without SACK info
1612 */
1613void
1614tcp_fast_retransmit_no_sack (tcp_connection_t * tc)
1615{
Florin Coras93992a92017-05-24 18:03:56 -07001616 vlib_main_t *vm = vlib_get_main ();
1617 u32 n_written = 0, offset = 0, bi, old_snd_nxt;
1618 int snd_space;
1619 vlib_buffer_t *b;
1620
1621 ASSERT (tcp_in_fastrecovery (tc));
1622 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0);
1623
1624 /* Start resending from first un-acked segment */
1625 old_snd_nxt = tc->snd_nxt;
1626 tc->snd_nxt = tc->snd_una;
1627 snd_space = tcp_available_snd_space (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001628
1629 while (snd_space > 0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001630 {
Florin Coras93992a92017-05-24 18:03:56 -07001631 offset += n_written;
Florin Corasb2215d62017-08-01 16:56:58 -07001632 n_written = tcp_prepare_retransmit_segment (tc, offset, snd_space, &b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001633
1634 /* Nothing left to retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001635 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001636 break;
Dave Barach68b0fb02017-02-28 15:15:56 -05001637
Florin Corasb2215d62017-08-01 16:56:58 -07001638 bi = vlib_get_buffer_index (vm, b);
Florin Coras6792ec02017-03-13 03:49:51 -07001639 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras6792ec02017-03-13 03:49:51 -07001640 snd_space -= n_written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001641 }
1642
Florin Coras93992a92017-05-24 18:03:56 -07001643 /* Restore snd_nxt. If window allows, send 1 SMSS of new data */
1644 tc->snd_nxt = old_snd_nxt;
1645}
1646
1647/**
1648 * Do fast retransmit
1649 */
1650void
1651tcp_fast_retransmit (tcp_connection_t * tc)
1652{
1653 if (tcp_opts_sack_permitted (&tc->rcv_opts)
1654 && scoreboard_first_hole (&tc->sack_sb))
1655 tcp_fast_retransmit_sack (tc);
1656 else
1657 tcp_fast_retransmit_no_sack (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001658}
1659
1660always_inline u32
1661tcp_session_has_ooo_data (tcp_connection_t * tc)
1662{
1663 stream_session_t *s =
1664 stream_session_get (tc->c_s_index, tc->c_thread_index);
1665 return svm_fifo_has_ooo_data (s->server_rx_fifo);
1666}
1667
1668always_inline uword
1669tcp46_output_inline (vlib_main_t * vm,
1670 vlib_node_runtime_t * node,
1671 vlib_frame_t * from_frame, int is_ip4)
1672{
Dave Barach68b0fb02017-02-28 15:15:56 -05001673 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02001674 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05001675
1676 from = vlib_frame_vector_args (from_frame);
1677 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05001678 next_index = node->cached_next_index;
Florin Coras82d3ec82017-08-14 08:10:42 -07001679 tcp_set_time_now (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001680
1681 while (n_left_from > 0)
1682 {
1683 u32 n_left_to_next;
1684
1685 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1686
1687 while (n_left_from > 0 && n_left_to_next > 0)
1688 {
1689 u32 bi0;
1690 vlib_buffer_t *b0;
1691 tcp_connection_t *tc0;
Clement Durand6cf260c2017-04-13 13:27:04 +02001692 tcp_tx_trace_t *t0;
1693 tcp_header_t *th0 = 0;
Dave Barach2c25a622017-06-26 11:35:07 -04001694 u32 error0 = TCP_ERROR_PKTS_SENT, next0 = TCP_OUTPUT_NEXT_IP_LOOKUP;
Dave Barach68b0fb02017-02-28 15:15:56 -05001695
1696 bi0 = from[0];
1697 to_next[0] = bi0;
1698 from += 1;
1699 to_next += 1;
1700 n_left_from -= 1;
1701 n_left_to_next -= 1;
1702
1703 b0 = vlib_get_buffer (vm, bi0);
1704 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
1705 my_thread_index);
Florin Corasd79b41e2017-03-04 05:37:52 -08001706 if (PREDICT_FALSE (tc0 == 0 || tc0->state == TCP_STATE_CLOSED))
1707 {
1708 error0 = TCP_ERROR_INVALID_CONNECTION;
1709 next0 = TCP_OUTPUT_NEXT_DROP;
1710 goto done;
1711 }
1712
Dave Barach68b0fb02017-02-28 15:15:56 -05001713 th0 = vlib_buffer_get_current (b0);
Florin Corase69f4952017-03-07 10:06:24 -08001714 TCP_EVT_DBG (TCP_EVT_OUTPUT, tc0, th0->flags, b0->current_length);
Dave Barach68b0fb02017-02-28 15:15:56 -05001715
1716 if (is_ip4)
1717 {
Florin Coras66b11312017-07-31 17:18:03 -07001718 vlib_buffer_push_ip4 (vm, b0, &tc0->c_lcl_ip4, &tc0->c_rmt_ip4,
1719 IP_PROTOCOL_TCP, 1);
1720 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
Dave Barach2c0a4f42017-06-29 09:30:15 -04001721 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
1722 th0->checksum = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001723 }
1724 else
1725 {
1726 ip6_header_t *ih0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001727 ih0 = vlib_buffer_push_ip6 (vm, b0, &tc0->c_lcl_ip6,
1728 &tc0->c_rmt_ip6, IP_PROTOCOL_TCP);
Florin Coras66b11312017-07-31 17:18:03 -07001729 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
Dave Barach2c0a4f42017-06-29 09:30:15 -04001730 vnet_buffer (b0)->l3_hdr_offset = (u8 *) ih0 - b0->data;
1731 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
1732 th0->checksum = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001733 }
1734
1735 /* Filter out DUPACKs if there are no OOO segments left */
1736 if (PREDICT_FALSE
1737 (vnet_buffer (b0)->tcp.flags & TCP_BUF_FLAG_DUPACK))
1738 {
Dave Barach68b0fb02017-02-28 15:15:56 -05001739 if (!tcp_session_has_ooo_data (tc0))
1740 {
1741 error0 = TCP_ERROR_FILTERED_DUPACKS;
1742 next0 = TCP_OUTPUT_NEXT_DROP;
1743 goto done;
1744 }
1745 }
1746
Dave Barach68b0fb02017-02-28 15:15:56 -05001747 /* Stop DELACK timer and fix flags */
Florin Coras6792ec02017-03-13 03:49:51 -07001748 tc0->flags &= ~(TCP_CONN_SNDACK);
Florin Corasf03a59a2017-06-09 21:07:32 -07001749 tcp_timer_reset (tc0, TCP_TIMER_DELACK);
Dave Barach68b0fb02017-02-28 15:15:56 -05001750
1751 /* If not retransmitting
Florin Coras3af90fc2017-05-03 21:09:42 -07001752 * 1) update snd_una_max (SYN, SYNACK, FIN)
Dave Barach68b0fb02017-02-28 15:15:56 -05001753 * 2) If we're not tracking an ACK, start tracking */
1754 if (seq_lt (tc0->snd_una_max, tc0->snd_nxt))
1755 {
1756 tc0->snd_una_max = tc0->snd_nxt;
1757 if (tc0->rtt_ts == 0)
1758 {
1759 tc0->rtt_ts = tcp_time_now ();
1760 tc0->rtt_seq = tc0->snd_nxt;
1761 }
1762 }
1763
1764 /* Set the retransmit timer if not set already and not
1765 * doing a pure ACK */
1766 if (!tcp_timer_is_active (tc0, TCP_TIMER_RETRANSMIT)
1767 && tc0->snd_nxt != tc0->snd_una)
1768 {
Florin Corasd79b41e2017-03-04 05:37:52 -08001769 tcp_retransmit_timer_set (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001770 tc0->rto_boff = 0;
1771 }
1772
Dave Barach2c25a622017-06-26 11:35:07 -04001773#if 0
Florin Corasf6359c82017-06-19 12:26:09 -04001774 /* Make sure we haven't lost route to our peer */
1775 if (PREDICT_FALSE (tc0->last_fib_check
1776 < tc0->snd_opts.tsval + TCP_FIB_RECHECK_PERIOD))
1777 {
1778 if (PREDICT_TRUE
1779 (tc0->c_rmt_fei == tcp_lookup_rmt_in_fib (tc0)))
1780 {
1781 tc0->last_fib_check = tc0->snd_opts.tsval;
1782 }
1783 else
1784 {
1785 clib_warning ("lost connection to peer");
1786 tcp_connection_reset (tc0);
1787 goto done;
1788 }
1789 }
1790
1791 /* Use pre-computed dpo to set next node */
1792 next0 = tc0->c_rmt_dpo.dpoi_next_node;
1793 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = tc0->c_rmt_dpo.dpoi_index;
Dave Barach2c25a622017-06-26 11:35:07 -04001794#endif
1795
1796 vnet_buffer (b0)->sw_if_index[VLIB_RX] = 0;
1797 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001798
Damjan Marion213b5aa2017-07-13 21:19:27 +02001799 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001800 done:
Florin Corase69f4952017-03-07 10:06:24 -08001801 b0->error = node->errors[error0];
Dave Barach68b0fb02017-02-28 15:15:56 -05001802 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
1803 {
Clement Durand6cf260c2017-04-13 13:27:04 +02001804 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
1805 if (th0)
1806 {
1807 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
1808 }
1809 else
1810 {
1811 memset (&t0->tcp_header, 0, sizeof (t0->tcp_header));
1812 }
1813 clib_memcpy (&t0->tcp_connection, tc0,
1814 sizeof (t0->tcp_connection));
Dave Barach68b0fb02017-02-28 15:15:56 -05001815 }
1816
1817 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1818 n_left_to_next, bi0, next0);
1819 }
1820
1821 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1822 }
1823
1824 return from_frame->n_vectors;
1825}
1826
1827static uword
1828tcp4_output (vlib_main_t * vm, vlib_node_runtime_t * node,
1829 vlib_frame_t * from_frame)
1830{
1831 return tcp46_output_inline (vm, node, from_frame, 1 /* is_ip4 */ );
1832}
1833
1834static uword
1835tcp6_output (vlib_main_t * vm, vlib_node_runtime_t * node,
1836 vlib_frame_t * from_frame)
1837{
1838 return tcp46_output_inline (vm, node, from_frame, 0 /* is_ip4 */ );
1839}
1840
Florin Corase69f4952017-03-07 10:06:24 -08001841/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001842VLIB_REGISTER_NODE (tcp4_output_node) =
1843{
1844 .function = tcp4_output,.name = "tcp4-output",
1845 /* Takes a vector of packets. */
Florin Corase69f4952017-03-07 10:06:24 -08001846 .vector_size = sizeof (u32),
1847 .n_errors = TCP_N_ERROR,
1848 .error_strings = tcp_error_strings,
1849 .n_next_nodes = TCP_OUTPUT_N_NEXT,
1850 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05001851#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
1852 foreach_tcp4_output_next
1853#undef _
Florin Corase69f4952017-03-07 10:06:24 -08001854 },
1855 .format_buffer = format_tcp_header,
1856 .format_trace = format_tcp_tx_trace,
1857};
1858/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001859
Florin Corase69f4952017-03-07 10:06:24 -08001860VLIB_NODE_FUNCTION_MULTIARCH (tcp4_output_node, tcp4_output);
1861
1862/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001863VLIB_REGISTER_NODE (tcp6_output_node) =
1864{
Florin Corase69f4952017-03-07 10:06:24 -08001865 .function = tcp6_output,
1866 .name = "tcp6-output",
Dave Barach68b0fb02017-02-28 15:15:56 -05001867 /* Takes a vector of packets. */
Florin Corase69f4952017-03-07 10:06:24 -08001868 .vector_size = sizeof (u32),
1869 .n_errors = TCP_N_ERROR,
1870 .error_strings = tcp_error_strings,
1871 .n_next_nodes = TCP_OUTPUT_N_NEXT,
1872 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05001873#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
1874 foreach_tcp6_output_next
1875#undef _
Florin Corase69f4952017-03-07 10:06:24 -08001876 },
1877 .format_buffer = format_tcp_header,
1878 .format_trace = format_tcp_tx_trace,
1879};
1880/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001881
Florin Corase69f4952017-03-07 10:06:24 -08001882VLIB_NODE_FUNCTION_MULTIARCH (tcp6_output_node, tcp6_output);
1883
1884u32
Dave Barach68b0fb02017-02-28 15:15:56 -05001885tcp_push_header (transport_connection_t * tconn, vlib_buffer_t * b)
1886{
1887 tcp_connection_t *tc;
1888
1889 tc = (tcp_connection_t *) tconn;
Florin Corasc8343412017-05-04 14:25:50 -07001890 tcp_push_hdr_i (tc, b, TCP_STATE_ESTABLISHED, 0);
Florin Coras1f152cd2017-08-18 19:28:03 -07001891 ASSERT (seq_leq (tc->snd_una_max, tc->snd_una + tc->snd_wnd));
Florin Coras93992a92017-05-24 18:03:56 -07001892
Florin Corasf03a59a2017-06-09 21:07:32 -07001893 if (tc->rtt_ts == 0 && !tcp_in_cong_recovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001894 {
1895 tc->rtt_ts = tcp_time_now ();
1896 tc->rtt_seq = tc->snd_nxt;
1897 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001898 return 0;
1899}
1900
1901typedef enum _tcp_reset_next
1902{
1903 TCP_RESET_NEXT_DROP,
1904 TCP_RESET_NEXT_IP_LOOKUP,
1905 TCP_RESET_N_NEXT
1906} tcp_reset_next_t;
1907
1908#define foreach_tcp4_reset_next \
1909 _(DROP, "error-drop") \
1910 _(IP_LOOKUP, "ip4-lookup")
1911
1912#define foreach_tcp6_reset_next \
1913 _(DROP, "error-drop") \
1914 _(IP_LOOKUP, "ip6-lookup")
1915
1916static uword
1917tcp46_send_reset_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1918 vlib_frame_t * from_frame, u8 is_ip4)
1919{
1920 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02001921 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05001922
1923 from = vlib_frame_vector_args (from_frame);
1924 n_left_from = from_frame->n_vectors;
1925
1926 next_index = node->cached_next_index;
1927
1928 while (n_left_from > 0)
1929 {
1930 u32 n_left_to_next;
1931
1932 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1933
1934 while (n_left_from > 0 && n_left_to_next > 0)
1935 {
1936 u32 bi0;
1937 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02001938 tcp_tx_trace_t *t0;
1939 tcp_header_t *th0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001940 u32 error0 = TCP_ERROR_RST_SENT, next0 = TCP_RESET_NEXT_IP_LOOKUP;
1941
1942 bi0 = from[0];
1943 to_next[0] = bi0;
1944 from += 1;
1945 to_next += 1;
1946 n_left_from -= 1;
1947 n_left_to_next -= 1;
1948
1949 b0 = vlib_get_buffer (vm, bi0);
1950
1951 if (tcp_make_reset_in_place (vm, b0, vnet_buffer (b0)->tcp.flags,
1952 my_thread_index, is_ip4))
1953 {
1954 error0 = TCP_ERROR_LOOKUP_DROPS;
1955 next0 = TCP_RESET_NEXT_DROP;
1956 goto done;
1957 }
1958
1959 /* Prepare to send to IP lookup */
1960 vnet_buffer (b0)->sw_if_index[VLIB_TX] = 0;
1961 next0 = TCP_RESET_NEXT_IP_LOOKUP;
1962
1963 done:
Florin Corase69f4952017-03-07 10:06:24 -08001964 b0->error = node->errors[error0];
Damjan Marion213b5aa2017-07-13 21:19:27 +02001965 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001966 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
1967 {
Clement Durand6cf260c2017-04-13 13:27:04 +02001968 th0 = vlib_buffer_get_current (b0);
1969 if (is_ip4)
1970 th0 = ip4_next_header ((ip4_header_t *) th0);
1971 else
1972 th0 = ip6_next_header ((ip6_header_t *) th0);
Clement Durand6cf260c2017-04-13 13:27:04 +02001973 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
1974 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
Dave Barach68b0fb02017-02-28 15:15:56 -05001975 }
1976
1977 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1978 n_left_to_next, bi0, next0);
1979 }
1980 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1981 }
1982 return from_frame->n_vectors;
1983}
1984
1985static uword
1986tcp4_send_reset (vlib_main_t * vm, vlib_node_runtime_t * node,
1987 vlib_frame_t * from_frame)
1988{
1989 return tcp46_send_reset_inline (vm, node, from_frame, 1);
1990}
1991
1992static uword
1993tcp6_send_reset (vlib_main_t * vm, vlib_node_runtime_t * node,
1994 vlib_frame_t * from_frame)
1995{
1996 return tcp46_send_reset_inline (vm, node, from_frame, 0);
1997}
1998
1999/* *INDENT-OFF* */
2000VLIB_REGISTER_NODE (tcp4_reset_node) = {
2001 .function = tcp4_send_reset,
2002 .name = "tcp4-reset",
2003 .vector_size = sizeof (u32),
2004 .n_errors = TCP_N_ERROR,
2005 .error_strings = tcp_error_strings,
2006 .n_next_nodes = TCP_RESET_N_NEXT,
2007 .next_nodes = {
2008#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2009 foreach_tcp4_reset_next
2010#undef _
2011 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002012 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002013};
2014/* *INDENT-ON* */
2015
Florin Corase69f4952017-03-07 10:06:24 -08002016VLIB_NODE_FUNCTION_MULTIARCH (tcp4_reset_node, tcp4_send_reset);
2017
Dave Barach68b0fb02017-02-28 15:15:56 -05002018/* *INDENT-OFF* */
2019VLIB_REGISTER_NODE (tcp6_reset_node) = {
2020 .function = tcp6_send_reset,
2021 .name = "tcp6-reset",
2022 .vector_size = sizeof (u32),
2023 .n_errors = TCP_N_ERROR,
2024 .error_strings = tcp_error_strings,
2025 .n_next_nodes = TCP_RESET_N_NEXT,
2026 .next_nodes = {
2027#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2028 foreach_tcp6_reset_next
2029#undef _
2030 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002031 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002032};
2033/* *INDENT-ON* */
2034
Florin Corase69f4952017-03-07 10:06:24 -08002035VLIB_NODE_FUNCTION_MULTIARCH (tcp6_reset_node, tcp6_send_reset);
2036
Dave Barach68b0fb02017-02-28 15:15:56 -05002037/*
2038 * fd.io coding-style-patch-verification: ON
2039 *
2040 * Local Variables:
2041 * eval: (c-set-style "gnu")
2042 * End:
2043 */