blob: 7da0c07349d3568fa10caa9b3de717136fa6ad65 [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{
443 vec_validate (tm->tx_buffers[thread_index], n_free_buffers - 1);
444 _vec_len (tm->tx_buffers[thread_index]) =
445 vlib_buffer_alloc_from_free_list (vlib_get_main (),
446 tm->tx_buffers[thread_index],
447 n_free_buffers,
448 VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
449 /* buffer shortage, report failure */
450 if (vec_len (tm->tx_buffers[thread_index]) == 0)
451 {
452 clib_warning ("out of buffers");
453 return -1;
454 }
455 return 0;
456}
457
458always_inline int
Florin Coras66b11312017-07-31 17:18:03 -0700459tcp_get_free_buffer_index (tcp_main_t * tm, u32 * bidx)
460{
Florin Corasb2215d62017-08-01 16:56:58 -0700461 u32 *my_tx_buffers;
Florin Coras66b11312017-07-31 17:18:03 -0700462 u32 thread_index = vlib_get_thread_index ();
Florin Corasb2215d62017-08-01 16:56:58 -0700463 if (PREDICT_FALSE (vec_len (tm->tx_buffers[thread_index]) == 0))
Florin Coras66b11312017-07-31 17:18:03 -0700464 {
Florin Corasb2215d62017-08-01 16:56:58 -0700465 if (tcp_alloc_tx_buffers (tm, thread_index, VLIB_FRAME_SIZE))
466 return -1;
Florin Coras66b11312017-07-31 17:18:03 -0700467 }
Florin Corasb2215d62017-08-01 16:56:58 -0700468 my_tx_buffers = tm->tx_buffers[thread_index];
Florin Coras66b11312017-07-31 17:18:03 -0700469 *bidx = my_tx_buffers[_vec_len (my_tx_buffers) - 1];
470 _vec_len (my_tx_buffers) -= 1;
471 return 0;
472}
Dave Barach68b0fb02017-02-28 15:15:56 -0500473
Florin Coras66b11312017-07-31 17:18:03 -0700474always_inline void
475tcp_return_buffer (tcp_main_t * tm)
476{
477 u32 *my_tx_buffers;
478 u32 thread_index = vlib_get_thread_index ();
479 my_tx_buffers = tm->tx_buffers[thread_index];
480 _vec_len (my_tx_buffers) += 1;
481}
Florin Coras6792ec02017-03-13 03:49:51 -0700482
Dave Barach68b0fb02017-02-28 15:15:56 -0500483always_inline void
484tcp_reuse_buffer (vlib_main_t * vm, vlib_buffer_t * b)
485{
486 vlib_buffer_t *it = b;
Florin Corasb2215d62017-08-01 16:56:58 -0700487 u32 save_free_list = b->flags & VLIB_BUFFER_FREE_LIST_INDEX_MASK;
Dave Barach68b0fb02017-02-28 15:15:56 -0500488 do
489 {
490 it->current_data = 0;
491 it->current_length = 0;
492 it->total_length_not_including_first_buffer = 0;
493 }
494 while ((it->flags & VLIB_BUFFER_NEXT_PRESENT)
495 && (it = vlib_get_buffer (vm, it->next_buffer)));
496
Florin Corasb2215d62017-08-01 16:56:58 -0700497 if (b->flags & VLIB_BUFFER_NEXT_PRESENT)
498 vlib_buffer_free_one (vm, b->next_buffer);
499 b->flags = save_free_list;
500
Dave Barach68b0fb02017-02-28 15:15:56 -0500501 /* Leave enough space for headers */
502 vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
Florin Corasd79b41e2017-03-04 05:37:52 -0800503 vnet_buffer (b)->tcp.flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500504}
505
506/**
507 * Prepare ACK
508 */
509void
510tcp_make_ack_i (tcp_connection_t * tc, vlib_buffer_t * b, tcp_state_t state,
511 u8 flags)
512{
513 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
514 u8 tcp_opts_len, tcp_hdr_opts_len;
515 tcp_header_t *th;
516 u16 wnd;
517
518 wnd = tcp_window_to_advertise (tc, state);
519
520 /* Make and write options */
521 tcp_opts_len = tcp_make_established_options (tc, snd_opts);
522 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
523
524 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
525 tc->rcv_nxt, tcp_hdr_opts_len, flags, wnd);
526
527 tcp_options_write ((u8 *) (th + 1), snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500528 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
529}
530
531/**
532 * Convert buffer to ACK
533 */
534void
535tcp_make_ack (tcp_connection_t * tc, vlib_buffer_t * b)
536{
Florin Coras6792ec02017-03-13 03:49:51 -0700537 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500538
539 tcp_reuse_buffer (vm, b);
540 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, TCP_FLAG_ACK);
Florin Coras6792ec02017-03-13 03:49:51 -0700541 TCP_EVT_DBG (TCP_EVT_ACK_SENT, tc);
Florin Coras3e350af2017-03-30 02:54:28 -0700542 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_ACK;
543 tc->rcv_las = tc->rcv_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500544}
545
546/**
547 * Convert buffer to FIN-ACK
548 */
549void
Florin Corasd79b41e2017-03-04 05:37:52 -0800550tcp_make_fin (tcp_connection_t * tc, vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500551{
Florin Coras6792ec02017-03-13 03:49:51 -0700552 vlib_main_t *vm = vlib_get_main ();
Florin Corasd79b41e2017-03-04 05:37:52 -0800553 u8 flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500554
555 tcp_reuse_buffer (vm, b);
Florin Corasd79b41e2017-03-04 05:37:52 -0800556
Florin Corase69f4952017-03-07 10:06:24 -0800557 flags = TCP_FLAG_FIN | TCP_FLAG_ACK;
Florin Corasd79b41e2017-03-04 05:37:52 -0800558 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, flags);
Dave Barach68b0fb02017-02-28 15:15:56 -0500559
560 /* Reset flags, make sure ack is sent */
Dave Barach68b0fb02017-02-28 15:15:56 -0500561 vnet_buffer (b)->tcp.flags &= ~TCP_BUF_FLAG_DUPACK;
562
563 tc->snd_nxt += 1;
564}
565
566/**
567 * Convert buffer to SYN-ACK
568 */
569void
570tcp_make_synack (tcp_connection_t * tc, vlib_buffer_t * b)
571{
Florin Coras6792ec02017-03-13 03:49:51 -0700572 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500573 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
574 u8 tcp_opts_len, tcp_hdr_opts_len;
575 tcp_header_t *th;
576 u16 initial_wnd;
577 u32 time_now;
578
579 memset (snd_opts, 0, sizeof (*snd_opts));
580
581 tcp_reuse_buffer (vm, b);
582
583 /* Set random initial sequence */
584 time_now = tcp_time_now ();
585
586 tc->iss = random_u32 (&time_now);
587 tc->snd_una = tc->iss;
588 tc->snd_nxt = tc->iss + 1;
589 tc->snd_una_max = tc->snd_nxt;
590
591 initial_wnd = tcp_initial_window_to_advertise (tc);
592
593 /* Make and write options */
594 tcp_opts_len = tcp_make_synack_options (tc, snd_opts);
595 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
596
597 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
598 tc->rcv_nxt, tcp_hdr_opts_len,
599 TCP_FLAG_SYN | TCP_FLAG_ACK, initial_wnd);
600
601 tcp_options_write ((u8 *) (th + 1), snd_opts);
602
603 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
604 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_ACK;
605
606 /* Init retransmit timer */
Florin Corasd79b41e2017-03-04 05:37:52 -0800607 tcp_retransmit_timer_set (tc);
Florin Coras6534b7a2017-07-18 05:38:03 -0400608 TCP_EVT_DBG (TCP_EVT_SYNACK_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500609}
610
611always_inline void
612tcp_enqueue_to_ip_lookup (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
613 u8 is_ip4)
614{
615 u32 *to_next, next_index;
616 vlib_frame_t *f;
617
Damjan Marion213b5aa2017-07-13 21:19:27 +0200618 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500619 b->error = 0;
620
621 /* Default FIB for now */
622 vnet_buffer (b)->sw_if_index[VLIB_TX] = 0;
623
624 /* Send to IP lookup */
625 next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index;
626 f = vlib_get_frame_to_node (vm, next_index);
627
628 /* Enqueue the packet */
629 to_next = vlib_frame_vector_args (f);
630 to_next[0] = bi;
631 f->n_vectors = 1;
632 vlib_put_frame_to_node (vm, next_index, f);
633}
634
635int
636tcp_make_reset_in_place (vlib_main_t * vm, vlib_buffer_t * b0,
Florin Corasdc629cd2017-05-09 00:52:37 -0700637 tcp_state_t state, u8 thread_index, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500638{
Dave Barach68b0fb02017-02-28 15:15:56 -0500639 ip4_header_t *ih4;
640 ip6_header_t *ih6;
641 tcp_header_t *th0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700642 ip4_address_t src_ip40, dst_ip40;
643 ip6_address_t src_ip60, dst_ip60;
644 u16 src_port, dst_port;
Dave Barach68b0fb02017-02-28 15:15:56 -0500645 u32 tmp;
Florin Corasdc629cd2017-05-09 00:52:37 -0700646 u32 seq, ack;
647 u8 flags;
Dave Barach68b0fb02017-02-28 15:15:56 -0500648
649 /* Find IP and TCP headers */
Florin Corasdc629cd2017-05-09 00:52:37 -0700650 th0 = tcp_buffer_hdr (b0);
651
652 /* Save src and dst ip */
Dave Barach68b0fb02017-02-28 15:15:56 -0500653 if (is_ip4)
654 {
655 ih4 = vlib_buffer_get_current (b0);
Florin Corasdc629cd2017-05-09 00:52:37 -0700656 ASSERT ((ih4->ip_version_and_header_length & 0xF0) == 0x40);
657 src_ip40.as_u32 = ih4->src_address.as_u32;
658 dst_ip40.as_u32 = ih4->dst_address.as_u32;
Dave Barach68b0fb02017-02-28 15:15:56 -0500659 }
660 else
661 {
662 ih6 = vlib_buffer_get_current (b0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500663 ASSERT ((ih6->ip_version_traffic_class_and_flow_label & 0xF0) == 0x60);
664 clib_memcpy (&src_ip60, &ih6->src_address, sizeof (ip6_address_t));
Florin Corasdc629cd2017-05-09 00:52:37 -0700665 clib_memcpy (&dst_ip60, &ih6->dst_address, sizeof (ip6_address_t));
Dave Barach68b0fb02017-02-28 15:15:56 -0500666 }
667
Florin Corasdc629cd2017-05-09 00:52:37 -0700668 src_port = th0->src_port;
669 dst_port = th0->dst_port;
670
671 /* Try to determine what/why we're actually resetting */
Dave Barach68b0fb02017-02-28 15:15:56 -0500672 if (state == TCP_STATE_CLOSED)
673 {
674 if (!tcp_syn (th0))
675 return -1;
676
677 tmp = clib_net_to_host_u32 (th0->seq_number);
678
679 /* Got a SYN for no listener. */
Florin Corasdc629cd2017-05-09 00:52:37 -0700680 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
681 ack = clib_host_to_net_u32 (tmp + 1);
682 seq = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500683 }
Florin Corasdc629cd2017-05-09 00:52:37 -0700684 else
Dave Barach68b0fb02017-02-28 15:15:56 -0500685 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700686 flags = TCP_FLAG_RST;
687 seq = th0->ack_number;
688 ack = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500689 }
690
Florin Corasdc629cd2017-05-09 00:52:37 -0700691 tcp_reuse_buffer (vm, b0);
692 th0 = vlib_buffer_push_tcp_net_order (b0, dst_port, src_port, seq, ack,
693 sizeof (tcp_header_t), flags, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500694
Dave Barach68b0fb02017-02-28 15:15:56 -0500695 if (is_ip4)
696 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700697 ih4 = vlib_buffer_push_ip4 (vm, b0, &dst_ip40, &src_ip40,
Florin Corasfdbc3822017-07-27 00:34:12 -0700698 IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500699 th0->checksum = ip4_tcp_udp_compute_checksum (vm, b0, ih4);
700 }
701 else
702 {
703 int bogus = ~0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700704 ih6 = vlib_buffer_push_ip6 (vm, b0, &dst_ip60, &src_ip60,
705 IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500706 th0->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b0, ih6, &bogus);
707 ASSERT (!bogus);
708 }
709
710 return 0;
711}
712
713/**
714 * Send reset without reusing existing buffer
715 */
716void
Florin Coras6534b7a2017-07-18 05:38:03 -0400717tcp_send_reset (tcp_connection_t * tc, vlib_buffer_t * pkt, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500718{
719 vlib_buffer_t *b;
720 u32 bi;
721 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -0700722 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500723 u8 tcp_hdr_len, flags = 0;
724 tcp_header_t *th, *pkt_th;
725 u32 seq, ack;
726 ip4_header_t *ih4, *pkt_ih4;
727 ip6_header_t *ih6, *pkt_ih6;
728
Florin Coras66b11312017-07-31 17:18:03 -0700729 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
730 return;
731
Dave Barach68b0fb02017-02-28 15:15:56 -0500732 b = vlib_get_buffer (vm, bi);
733
734 /* Leave enough space for headers */
735 vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
736
737 /* Make and write options */
738 tcp_hdr_len = sizeof (tcp_header_t);
739
740 if (is_ip4)
741 {
742 pkt_ih4 = vlib_buffer_get_current (pkt);
743 pkt_th = ip4_next_header (pkt_ih4);
744 }
745 else
746 {
747 pkt_ih6 = vlib_buffer_get_current (pkt);
748 pkt_th = ip6_next_header (pkt_ih6);
749 }
750
751 if (tcp_ack (pkt_th))
752 {
753 flags = TCP_FLAG_RST;
754 seq = pkt_th->ack_number;
Florin Coras6534b7a2017-07-18 05:38:03 -0400755 ack = (tc && tc->state >= TCP_STATE_SYN_RCVD) ? tc->rcv_nxt : 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500756 }
757 else
758 {
759 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
760 seq = 0;
761 ack = clib_host_to_net_u32 (vnet_buffer (pkt)->tcp.seq_end);
762 }
763
764 th = vlib_buffer_push_tcp_net_order (b, pkt_th->dst_port, pkt_th->src_port,
765 seq, ack, tcp_hdr_len, flags, 0);
766
767 /* Swap src and dst ip */
768 if (is_ip4)
769 {
770 ASSERT ((pkt_ih4->ip_version_and_header_length & 0xF0) == 0x40);
771 ih4 = vlib_buffer_push_ip4 (vm, b, &pkt_ih4->dst_address,
Florin Corasfdbc3822017-07-27 00:34:12 -0700772 &pkt_ih4->src_address, IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500773 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
774 }
775 else
776 {
777 int bogus = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500778 ASSERT ((pkt_ih6->ip_version_traffic_class_and_flow_label & 0xF0) ==
779 0x60);
rootc9d1c5b2017-08-15 12:58:31 -0400780 ih6 = vlib_buffer_push_ip6 (vm, b, &pkt_ih6->dst_address,
781 &pkt_ih6->src_address, IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500782 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
783 ASSERT (!bogus);
784 }
785
786 tcp_enqueue_to_ip_lookup (vm, b, bi, is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -0400787 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500788}
789
790void
791tcp_push_ip_hdr (tcp_main_t * tm, tcp_connection_t * tc, vlib_buffer_t * b)
792{
793 tcp_header_t *th = vlib_buffer_get_current (b);
Dave Barach2c25a622017-06-26 11:35:07 -0400794 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500795 if (tc->c_is_ip4)
796 {
797 ip4_header_t *ih;
Dave Barach2c25a622017-06-26 11:35:07 -0400798 ih = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip4,
Florin Corasfdbc3822017-07-27 00:34:12 -0700799 &tc->c_rmt_ip4, IP_PROTOCOL_TCP, 1);
Dave Barach2c25a622017-06-26 11:35:07 -0400800 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih);
Dave Barach68b0fb02017-02-28 15:15:56 -0500801 }
802 else
803 {
804 ip6_header_t *ih;
805 int bogus = ~0;
806
Dave Barach2c25a622017-06-26 11:35:07 -0400807 ih = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip6,
Dave Barach68b0fb02017-02-28 15:15:56 -0500808 &tc->c_rmt_ip6, IP_PROTOCOL_TCP);
Dave Barach2c25a622017-06-26 11:35:07 -0400809 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih, &bogus);
Dave Barach68b0fb02017-02-28 15:15:56 -0500810 ASSERT (!bogus);
811 }
812}
813
814/**
815 * Send SYN
816 *
817 * Builds a SYN packet for a half-open connection and sends it to ipx_lookup.
818 * The packet is not forwarded through tcpx_output to avoid doing lookups
819 * in the half_open pool.
820 */
821void
822tcp_send_syn (tcp_connection_t * tc)
823{
824 vlib_buffer_t *b;
825 u32 bi;
826 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -0700827 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500828 u8 tcp_hdr_opts_len, tcp_opts_len;
829 tcp_header_t *th;
830 u32 time_now;
831 u16 initial_wnd;
832 tcp_options_t snd_opts;
833
Florin Coras66b11312017-07-31 17:18:03 -0700834 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
835 return;
836
Dave Barach68b0fb02017-02-28 15:15:56 -0500837 b = vlib_get_buffer (vm, bi);
838
839 /* Leave enough space for headers */
840 vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
841
842 /* Set random initial sequence */
843 time_now = tcp_time_now ();
844
845 tc->iss = random_u32 (&time_now);
846 tc->snd_una = tc->iss;
847 tc->snd_una_max = tc->snd_nxt = tc->iss + 1;
848
849 initial_wnd = tcp_initial_window_to_advertise (tc);
850
851 /* Make and write options */
852 memset (&snd_opts, 0, sizeof (snd_opts));
Florin Corase04c2992017-03-01 08:17:34 -0800853 tcp_opts_len = tcp_make_syn_options (&snd_opts, tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500854 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
855
856 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
857 tc->rcv_nxt, tcp_hdr_opts_len, TCP_FLAG_SYN,
858 initial_wnd);
859
860 tcp_options_write ((u8 *) (th + 1), &snd_opts);
861
862 /* Measure RTT with this */
863 tc->rtt_ts = tcp_time_now ();
864 tc->rtt_seq = tc->snd_nxt;
865
866 /* Start retransmit trimer */
867 tcp_timer_set (tc, TCP_TIMER_RETRANSMIT_SYN, tc->rto * TCP_TO_TIMER_TICK);
868 tc->rto_boff = 0;
869
870 /* Set the connection establishment timer */
871 tcp_timer_set (tc, TCP_TIMER_ESTABLISH, TCP_ESTABLISH_TIME);
872
873 tcp_push_ip_hdr (tm, tc, b);
874 tcp_enqueue_to_ip_lookup (vm, b, bi, tc->c_is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -0400875 TCP_EVT_DBG (TCP_EVT_SYN_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500876}
877
878always_inline void
Florin Coras66b11312017-07-31 17:18:03 -0700879tcp_enqueue_to_output_i (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
880 u8 is_ip4, u8 flush)
Dave Barach68b0fb02017-02-28 15:15:56 -0500881{
Florin Coras66b11312017-07-31 17:18:03 -0700882 tcp_main_t *tm = vnet_get_tcp_main ();
883 u32 thread_index = vlib_get_thread_index ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500884 u32 *to_next, next_index;
885 vlib_frame_t *f;
886
Damjan Marion213b5aa2017-07-13 21:19:27 +0200887 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500888 b->error = 0;
889
890 /* Decide where to send the packet */
891 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500892
Dave Barach2c25a622017-06-26 11:35:07 -0400893 /* Initialize the trajectory trace, if configured */
894 if (VLIB_BUFFER_TRACE_TRAJECTORY > 0)
895 {
896 b->pre_data[0] = 1;
897 b->pre_data[1] = next_index;
898 }
899
Florin Coras66b11312017-07-31 17:18:03 -0700900 /* Get frame to v4/6 output node */
901 f = tm->tx_frames[!is_ip4][thread_index];
902 if (!f)
903 {
904 f = vlib_get_frame_to_node (vm, next_index);
905 ASSERT (f);
906 tm->tx_frames[!is_ip4][thread_index] = f;
907 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500908 to_next = vlib_frame_vector_args (f);
Florin Coras66b11312017-07-31 17:18:03 -0700909 to_next[f->n_vectors] = bi;
910 f->n_vectors += 1;
911 if (flush || f->n_vectors == VLIB_FRAME_SIZE)
912 {
913 vlib_put_frame_to_node (vm, next_index, f);
914 tm->tx_frames[!is_ip4][thread_index] = 0;
915 }
916}
917
918always_inline void
919tcp_enqueue_to_output (vlib_main_t * vm, vlib_buffer_t * b, u32 bi, u8 is_ip4)
920{
921 tcp_enqueue_to_output_i (vm, b, bi, is_ip4, 0);
922}
923
924always_inline void
925tcp_enqueue_to_output_now (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
926 u8 is_ip4)
927{
928 tcp_enqueue_to_output_i (vm, b, bi, is_ip4, 1);
929}
930
931/**
932 * Flush tx frame populated by retransmits and timer pops
933 */
934void
935tcp_flush_frame_to_output (vlib_main_t * vm, u8 thread_index, u8 is_ip4)
936{
937 if (tcp_main.tx_frames[!is_ip4][thread_index])
938 {
939 u32 next_index;
940 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
941 vlib_put_frame_to_node (vm, next_index,
942 tcp_main.tx_frames[!is_ip4][thread_index]);
943 tcp_main.tx_frames[!is_ip4][thread_index] = 0;
944 }
945}
946
947/**
948 * Flush both v4 and v6 tx frames for thread index
949 */
950void
951tcp_flush_frames_to_output (u8 thread_index)
952{
953 vlib_main_t *vm = vlib_get_main ();
954 tcp_flush_frame_to_output (vm, thread_index, 1);
955 tcp_flush_frame_to_output (vm, thread_index, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500956}
957
958/**
959 * Send FIN
960 */
961void
962tcp_send_fin (tcp_connection_t * tc)
963{
964 vlib_buffer_t *b;
965 u32 bi;
966 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -0700967 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500968
Florin Coras66b11312017-07-31 17:18:03 -0700969 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
970 return;
Dave Barach68b0fb02017-02-28 15:15:56 -0500971 b = vlib_get_buffer (vm, bi);
972
Florin Corasd79b41e2017-03-04 05:37:52 -0800973 tcp_make_fin (tc, b);
Florin Coras66b11312017-07-31 17:18:03 -0700974 tcp_enqueue_to_output_now (vm, b, bi, tc->c_is_ip4);
Florin Corasd79b41e2017-03-04 05:37:52 -0800975 tc->flags |= TCP_CONN_FINSNT;
Florin Corasb2215d62017-08-01 16:56:58 -0700976 tc->flags &= ~TCP_CONN_FINPNDG;
Florin Coras93992a92017-05-24 18:03:56 -0700977 tcp_retransmit_timer_force_update (tc);
Florin Corase69f4952017-03-07 10:06:24 -0800978 TCP_EVT_DBG (TCP_EVT_FIN_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500979}
980
981always_inline u8
Florin Corasb2215d62017-08-01 16:56:58 -0700982tcp_make_state_flags (tcp_connection_t * tc, tcp_state_t next_state)
Dave Barach68b0fb02017-02-28 15:15:56 -0500983{
984 switch (next_state)
985 {
986 case TCP_STATE_ESTABLISHED:
987 return TCP_FLAG_ACK;
988 case TCP_STATE_SYN_RCVD:
989 return TCP_FLAG_SYN | TCP_FLAG_ACK;
990 case TCP_STATE_SYN_SENT:
991 return TCP_FLAG_SYN;
992 case TCP_STATE_LAST_ACK:
993 case TCP_STATE_FIN_WAIT_1:
Florin Corasb2215d62017-08-01 16:56:58 -0700994 if (tc->snd_nxt + 1 < tc->snd_una_max)
995 return TCP_FLAG_ACK;
996 else
997 return TCP_FLAG_FIN;
Dave Barach68b0fb02017-02-28 15:15:56 -0500998 default:
999 clib_warning ("Shouldn't be here!");
1000 }
1001 return 0;
1002}
1003
1004/**
1005 * Push TCP header and update connection variables
1006 */
1007static void
1008tcp_push_hdr_i (tcp_connection_t * tc, vlib_buffer_t * b,
Florin Corasc8343412017-05-04 14:25:50 -07001009 tcp_state_t next_state, u8 compute_opts)
Dave Barach68b0fb02017-02-28 15:15:56 -05001010{
1011 u32 advertise_wnd, data_len;
Florin Corasc8343412017-05-04 14:25:50 -07001012 u8 tcp_hdr_opts_len, opts_write_len, flags;
Dave Barach68b0fb02017-02-28 15:15:56 -05001013 tcp_header_t *th;
1014
Florin Corasf6d68ed2017-05-07 19:12:02 -07001015 data_len = b->current_length + b->total_length_not_including_first_buffer;
Dave Barach68b0fb02017-02-28 15:15:56 -05001016 vnet_buffer (b)->tcp.flags = 0;
1017
Florin Corasc8343412017-05-04 14:25:50 -07001018 if (compute_opts)
1019 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1020
Florin Corasc8343412017-05-04 14:25:50 -07001021 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
Dave Barach68b0fb02017-02-28 15:15:56 -05001022 advertise_wnd = tcp_window_to_advertise (tc, next_state);
Florin Corasb2215d62017-08-01 16:56:58 -07001023 flags = tcp_make_state_flags (tc, next_state);
Dave Barach68b0fb02017-02-28 15:15:56 -05001024
1025 /* Push header and options */
1026 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
1027 tc->rcv_nxt, tcp_hdr_opts_len, flags,
1028 advertise_wnd);
Florin Corasc8343412017-05-04 14:25:50 -07001029 opts_write_len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -05001030
Florin Corasc8343412017-05-04 14:25:50 -07001031 ASSERT (opts_write_len == tc->snd_opts_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001032 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
1033
Florin Coras93992a92017-05-24 18:03:56 -07001034 /*
1035 * Update connection variables
1036 */
1037
Dave Barach68b0fb02017-02-28 15:15:56 -05001038 tc->snd_nxt += data_len;
Florin Corasc28764f2017-04-26 00:08:42 -07001039 tc->rcv_las = tc->rcv_nxt;
Florin Coras3e350af2017-03-30 02:54:28 -07001040
Florin Coras6792ec02017-03-13 03:49:51 -07001041 /* TODO this is updated in output as well ... */
Florin Coras93992a92017-05-24 18:03:56 -07001042 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
Florin Coras3af90fc2017-05-03 21:09:42 -07001043 {
Florin Coras93992a92017-05-24 18:03:56 -07001044 tc->snd_una_max = tc->snd_nxt;
1045 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
Florin Coras3af90fc2017-05-03 21:09:42 -07001046 }
Florin Coras93992a92017-05-24 18:03:56 -07001047
Florin Corase69f4952017-03-07 10:06:24 -08001048 TCP_EVT_DBG (TCP_EVT_PKTIZE, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001049}
1050
Dave Barach68b0fb02017-02-28 15:15:56 -05001051void
Florin Coras6792ec02017-03-13 03:49:51 -07001052tcp_send_ack (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001053{
1054 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001055 vlib_main_t *vm = vlib_get_main ();
1056
Dave Barach68b0fb02017-02-28 15:15:56 -05001057 vlib_buffer_t *b;
1058 u32 bi;
1059
Dave Barach68b0fb02017-02-28 15:15:56 -05001060 /* Get buffer */
Florin Coras66b11312017-07-31 17:18:03 -07001061 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1062 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001063 b = vlib_get_buffer (vm, bi);
1064
1065 /* Fill in the ACK */
1066 tcp_make_ack (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001067 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1068}
1069
Florin Corasb2215d62017-08-01 16:56:58 -07001070/**
1071 * Delayed ack timer handler
1072 *
1073 * Sends delayed ACK when timer expires
1074 */
Florin Coras6792ec02017-03-13 03:49:51 -07001075void
1076tcp_timer_delack_handler (u32 index)
1077{
Damjan Marion586afd72017-04-05 19:18:20 +02001078 u32 thread_index = vlib_get_thread_index ();
Florin Coras6792ec02017-03-13 03:49:51 -07001079 tcp_connection_t *tc;
1080
1081 tc = tcp_connection_get (index, thread_index);
1082 tc->timers[TCP_TIMER_DELACK] = TCP_TIMER_HANDLE_INVALID;
Florin Coras6792ec02017-03-13 03:49:51 -07001083 tcp_send_ack (tc);
1084}
1085
Florin Corasb2215d62017-08-01 16:56:58 -07001086/**
1087 * Build a retransmit segment
Dave Barach68b0fb02017-02-28 15:15:56 -05001088 *
1089 * @return the number of bytes in the segment or 0 if there's nothing to
1090 * retransmit
Florin Coras93992a92017-05-24 18:03:56 -07001091 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001092u32
Florin Corasb2215d62017-08-01 16:56:58 -07001093tcp_prepare_retransmit_segment (tcp_connection_t * tc, u32 offset,
1094 u32 max_deq_bytes, vlib_buffer_t ** b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001095{
Florin Corasb2215d62017-08-01 16:56:58 -07001096 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001097 vlib_main_t *vm = vlib_get_main ();
Florin Coras93992a92017-05-24 18:03:56 -07001098 int n_bytes = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001099 u32 start, bi, available_bytes, seg_size;
1100 u8 *data;
Dave Barach68b0fb02017-02-28 15:15:56 -05001101
Florin Corase04c2992017-03-01 08:17:34 -08001102 ASSERT (tc->state >= TCP_STATE_ESTABLISHED);
Florin Corasb2215d62017-08-01 16:56:58 -07001103 ASSERT (max_deq_bytes != 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001104
Florin Corasb2215d62017-08-01 16:56:58 -07001105 /*
1106 * Make sure we can retransmit something
1107 */
Florin Corasb2215d62017-08-01 16:56:58 -07001108 available_bytes = stream_session_tx_fifo_max_dequeue (&tc->connection);
1109 if (!available_bytes)
1110 return 0;
Florin Corase87216f2017-08-17 16:59:22 -07001111 max_deq_bytes = clib_min (tc->snd_mss, max_deq_bytes);
Florin Corasb2215d62017-08-01 16:56:58 -07001112 max_deq_bytes = clib_min (available_bytes, max_deq_bytes);
Florin Corase87216f2017-08-17 16:59:22 -07001113 seg_size = max_deq_bytes + MAX_HDRS_LEN;
Florin Coras6792ec02017-03-13 03:49:51 -07001114
1115 /* Start is beyond snd_congestion */
Florin Corase87216f2017-08-17 16:59:22 -07001116 start = tc->snd_una + offset;
Florin Coras93992a92017-05-24 18:03:56 -07001117 if (seq_geq (start, tc->snd_congestion))
Dave Barach68b0fb02017-02-28 15:15:56 -05001118 {
Florin Corasb2215d62017-08-01 16:56:58 -07001119 goto done;
Dave Barach68b0fb02017-02-28 15:15:56 -05001120 }
Florin Coras6792ec02017-03-13 03:49:51 -07001121
Florin Corasb2215d62017-08-01 16:56:58 -07001122 /* Don't overshoot snd_congestion */
1123 if (seq_gt (start + max_deq_bytes, tc->snd_congestion))
1124 {
1125 max_deq_bytes = tc->snd_congestion - start;
1126 if (max_deq_bytes == 0)
1127 {
1128 goto done;
1129 }
1130 }
1131
1132 /*
1133 * Prepare options
1134 */
Florin Corasc8343412017-05-04 14:25:50 -07001135 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1136
Florin Corasb2215d62017-08-01 16:56:58 -07001137 /*
1138 * Allocate and fill in buffer(s)
1139 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001140
Florin Corasb2215d62017-08-01 16:56:58 -07001141 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1142 return 0;
1143 *b = vlib_get_buffer (vm, bi);
Florin Corase87216f2017-08-17 16:59:22 -07001144 data = vlib_buffer_make_headroom (*b, MAX_HDRS_LEN);
Florin Corasb2215d62017-08-01 16:56:58 -07001145
1146 /* Easy case, buffer size greater than mss */
Florin Corase87216f2017-08-17 16:59:22 -07001147 if (PREDICT_TRUE (seg_size <= tm->bytes_per_buffer))
Florin Corasb2215d62017-08-01 16:56:58 -07001148 {
Florin Corase87216f2017-08-17 16:59:22 -07001149 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1150 max_deq_bytes);
Florin Corasb2215d62017-08-01 16:56:58 -07001151 ASSERT (n_bytes == max_deq_bytes);
1152 b[0]->current_length = n_bytes;
1153 tcp_push_hdr_i (tc, *b, tc->state, 0);
1154 }
1155 /* Split mss into multiple buffers */
1156 else
1157 {
1158 u32 chain_bi = ~0, n_bufs_per_seg;
1159 u32 thread_index = vlib_get_thread_index ();
1160 u16 n_peeked, len_to_deq, available_bufs;
1161 vlib_buffer_t *chain_b, *prev_b;
Florin Corasb2215d62017-08-01 16:56:58 -07001162 int i;
1163
Florin Corase87216f2017-08-17 16:59:22 -07001164 n_bufs_per_seg = ceil ((double) seg_size / tm->bytes_per_buffer);
Florin Corasb2215d62017-08-01 16:56:58 -07001165 ASSERT (available_bytes >= max_deq_bytes);
1166
1167 /* Make sure we have enough buffers */
1168 available_bufs = vec_len (tm->tx_buffers[thread_index]);
1169 if (n_bufs_per_seg > available_bufs)
1170 {
1171 if (tcp_alloc_tx_buffers (tm, thread_index,
1172 VLIB_FRAME_SIZE - available_bufs))
1173 {
1174 tcp_return_buffer (tm);
1175 return 0;
1176 }
1177 }
1178
Florin Corase87216f2017-08-17 16:59:22 -07001179 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1180 tm->bytes_per_buffer -
1181 MAX_HDRS_LEN);
Florin Corasb2215d62017-08-01 16:56:58 -07001182 b[0]->current_length = n_bytes;
1183 b[0]->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
1184 b[0]->total_length_not_including_first_buffer = 0;
1185
1186 tcp_push_hdr_i (tc, *b, tc->state, 0);
1187 max_deq_bytes -= n_bytes;
1188
1189 chain_b = *b;
1190 for (i = 1; i < n_bufs_per_seg; i++)
1191 {
1192 prev_b = chain_b;
1193 len_to_deq = clib_min (max_deq_bytes, tm->bytes_per_buffer);
1194 tcp_get_free_buffer_index (tm, &chain_bi);
1195 ASSERT (chain_bi != (u32) ~ 0);
1196 chain_b = vlib_get_buffer (vm, chain_bi);
1197 chain_b->current_data = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001198 data = vlib_buffer_get_current (chain_b);
1199 n_peeked = stream_session_peek_bytes (&tc->connection, data,
Florin Corasb2215d62017-08-01 16:56:58 -07001200 n_bytes, len_to_deq);
1201 n_bytes += n_peeked;
1202 ASSERT (n_peeked == len_to_deq);
1203 chain_b->current_length = n_peeked;
1204 b[0]->total_length_not_including_first_buffer +=
1205 chain_b->current_length;
1206
1207 /* update previous buffer */
1208 prev_b->next_buffer = chain_bi;
1209 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
1210
1211 /* update current buffer */
1212 chain_b->next_buffer = 0;
1213
1214 max_deq_bytes -= n_peeked;
1215 }
1216 }
1217
Florin Coras93992a92017-05-24 18:03:56 -07001218 ASSERT (n_bytes > 0);
Florin Corase87216f2017-08-17 16:59:22 -07001219 ASSERT (((*b)->current_data + (*b)->current_length) <=
1220 tm->bytes_per_buffer);
Florin Corasbb292f42017-05-19 09:49:19 -07001221
Florin Coras93992a92017-05-24 18:03:56 -07001222 if (tcp_in_fastrecovery (tc))
1223 tc->snd_rxt_bytes += n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001224
Florin Coras6792ec02017-03-13 03:49:51 -07001225done:
1226 TCP_EVT_DBG (TCP_EVT_CC_RTX, tc, offset, n_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001227 return n_bytes;
1228}
1229
Florin Coras6792ec02017-03-13 03:49:51 -07001230/**
1231 * Reset congestion control, switch cwnd to loss window and try again.
1232 */
1233static void
Florin Coras3e350af2017-03-30 02:54:28 -07001234tcp_rtx_timeout_cc (tcp_connection_t * tc)
Florin Coras6792ec02017-03-13 03:49:51 -07001235{
Florin Coras93992a92017-05-24 18:03:56 -07001236 tc->prev_ssthresh = tc->ssthresh;
1237 tc->prev_cwnd = tc->cwnd;
1238
Florin Coras6792ec02017-03-13 03:49:51 -07001239 /* Cleanly recover cc (also clears up fast retransmit) */
1240 if (tcp_in_fastrecovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001241 tcp_cc_fastrecovery_exit (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001242
1243 /* Start again from the beginning */
Florin Coras93992a92017-05-24 18:03:56 -07001244 tc->ssthresh = clib_max (tcp_flight_size (tc) / 2, 2 * tc->snd_mss);
Florin Coras6792ec02017-03-13 03:49:51 -07001245 tc->cwnd = tcp_loss_wnd (tc);
1246 tc->snd_congestion = tc->snd_una_max;
Florin Corasf03a59a2017-06-09 21:07:32 -07001247
Florin Coras3af90fc2017-05-03 21:09:42 -07001248 tcp_recovery_on (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001249}
1250
Dave Barach68b0fb02017-02-28 15:15:56 -05001251static void
1252tcp_timer_retransmit_handler_i (u32 index, u8 is_syn)
1253{
1254 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001255 vlib_main_t *vm = vlib_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02001256 u32 thread_index = vlib_get_thread_index ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001257 tcp_connection_t *tc;
Florin Corasb2215d62017-08-01 16:56:58 -07001258 vlib_buffer_t *b = 0;
Florin Coras3af90fc2017-05-03 21:09:42 -07001259 u32 bi, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001260
1261 if (is_syn)
1262 {
1263 tc = tcp_half_open_connection_get (index);
Florin Coras68810622017-07-24 17:40:28 -07001264 tc->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05001265 }
1266 else
1267 {
1268 tc = tcp_connection_get (index, thread_index);
Florin Coras68810622017-07-24 17:40:28 -07001269 tc->timers[TCP_TIMER_RETRANSMIT] = TCP_TIMER_HANDLE_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05001270 }
1271
Florin Coras93992a92017-05-24 18:03:56 -07001272 if (!tcp_in_recovery (tc) && tc->rto_boff > 0
1273 && tc->state >= TCP_STATE_ESTABLISHED)
1274 {
1275 tc->rto_boff = 0;
1276 tcp_update_rto (tc);
1277 }
1278
Dave Barach68b0fb02017-02-28 15:15:56 -05001279 /* Increment RTO backoff (also equal to number of retries) */
1280 tc->rto_boff += 1;
1281
1282 /* Go back to first un-acked byte */
1283 tc->snd_nxt = tc->snd_una;
1284
Florin Corase04c2992017-03-01 08:17:34 -08001285 if (tc->state >= TCP_STATE_ESTABLISHED)
Dave Barach68b0fb02017-02-28 15:15:56 -05001286 {
Florin Coras93992a92017-05-24 18:03:56 -07001287 /* Lost FIN, retransmit and return */
Florin Corasb2215d62017-08-01 16:56:58 -07001288 if (tcp_is_lost_fin (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001289 {
1290 tcp_send_fin (tc);
1291 return;
1292 }
1293
Florin Coras6792ec02017-03-13 03:49:51 -07001294 /* First retransmit timeout */
1295 if (tc->rto_boff == 1)
Florin Coras3e350af2017-03-30 02:54:28 -07001296 tcp_rtx_timeout_cc (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001297
1298 /* Exponential backoff */
1299 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1300
Florin Coras6792ec02017-03-13 03:49:51 -07001301 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 1);
1302
Florin Coras93992a92017-05-24 18:03:56 -07001303 /* Send one segment */
Florin Corasb2215d62017-08-01 16:56:58 -07001304 n_bytes = tcp_prepare_retransmit_segment (tc, 0, tc->snd_mss, &b);
1305 ASSERT (n_bytes);
1306 bi = vlib_get_buffer_index (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001307 /* TODO be less aggressive about this */
Florin Coras3af90fc2017-05-03 21:09:42 -07001308 scoreboard_clear (&tc->sack_sb);
1309
1310 if (n_bytes == 0)
Florin Corase04c2992017-03-01 08:17:34 -08001311 {
Florin Corasbb292f42017-05-19 09:49:19 -07001312 clib_warning ("could not retransmit anything");
Florin Coras93992a92017-05-24 18:03:56 -07001313 clib_warning ("%U", format_tcp_connection, tc, 2);
1314
Florin Corasbb292f42017-05-19 09:49:19 -07001315 /* Try again eventually */
1316 tcp_retransmit_timer_set (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001317 ASSERT (0 || (tc->rto_boff > 1
1318 && tc->snd_una == tc->snd_congestion));
Florin Corase04c2992017-03-01 08:17:34 -08001319 return;
1320 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001321
Florin Coras93992a92017-05-24 18:03:56 -07001322 /* For first retransmit, record timestamp (Eifel detection RFC3522) */
1323 if (tc->rto_boff == 1)
1324 tc->snd_rxt_ts = tcp_time_now ();
1325 }
1326 /* Retransmit for SYN/SYNACK */
1327 else if (tc->state == TCP_STATE_SYN_RCVD || tc->state == TCP_STATE_SYN_SENT)
1328 {
Florin Coras68810622017-07-24 17:40:28 -07001329 /* Half-open connection actually moved to established but we were
1330 * waiting for syn retransmit to pop to call cleanup from the right
1331 * thread. */
1332 if (tc->flags & TCP_CONN_HALF_OPEN_DONE)
1333 {
1334 ASSERT (tc->state == TCP_STATE_SYN_SENT);
1335 if (tcp_half_open_connection_cleanup (tc))
1336 {
1337 clib_warning ("could not remove half-open connection");
1338 ASSERT (0);
1339 }
1340 return;
1341 }
1342
Dave Barach68b0fb02017-02-28 15:15:56 -05001343 /* Try without increasing RTO a number of times. If this fails,
1344 * start growing RTO exponentially */
1345 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1346 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1347
Florin Corasb2215d62017-08-01 16:56:58 -07001348 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1349 return;
1350 b = vlib_get_buffer (vm, bi);
Dave Barach68b0fb02017-02-28 15:15:56 -05001351 vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
Florin Corasc8343412017-05-04 14:25:50 -07001352 tcp_push_hdr_i (tc, b, tc->state, 1);
Florin Corase04c2992017-03-01 08:17:34 -08001353
1354 /* Account for the SYN */
1355 tc->snd_nxt += 1;
Dave Barach2c25a622017-06-26 11:35:07 -04001356 tc->rtt_ts = 0;
Florin Coras6534b7a2017-07-18 05:38:03 -04001357 TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc,
1358 (tc->state == TCP_STATE_SYN_SENT ? 0 : 1));
Dave Barach68b0fb02017-02-28 15:15:56 -05001359 }
Florin Coras93992a92017-05-24 18:03:56 -07001360 else
1361 {
1362 ASSERT (tc->state == TCP_STATE_CLOSED);
1363 clib_warning ("connection closed ...");
1364 return;
1365 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001366
1367 if (!is_syn)
1368 {
1369 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1370
1371 /* Re-enable retransmit timer */
Florin Corasd79b41e2017-03-04 05:37:52 -08001372 tcp_retransmit_timer_set (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001373 }
1374 else
1375 {
1376 ASSERT (tc->state == TCP_STATE_SYN_SENT);
1377
1378 /* This goes straight to ipx_lookup */
1379 tcp_push_ip_hdr (tm, tc, b);
1380 tcp_enqueue_to_ip_lookup (vm, b, bi, tc->c_is_ip4);
1381
1382 /* Re-enable retransmit timer */
1383 tcp_timer_set (tc, TCP_TIMER_RETRANSMIT_SYN,
1384 tc->rto * TCP_TO_TIMER_TICK);
1385 }
1386}
1387
1388void
1389tcp_timer_retransmit_handler (u32 index)
1390{
1391 tcp_timer_retransmit_handler_i (index, 0);
1392}
1393
1394void
1395tcp_timer_retransmit_syn_handler (u32 index)
1396{
1397 tcp_timer_retransmit_handler_i (index, 1);
1398}
1399
1400/**
Florin Coras3e350af2017-03-30 02:54:28 -07001401 * Got 0 snd_wnd from peer, try to do something about it.
1402 *
1403 */
1404void
1405tcp_timer_persist_handler (u32 index)
1406{
1407 tcp_main_t *tm = vnet_get_tcp_main ();
1408 vlib_main_t *vm = vlib_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02001409 u32 thread_index = vlib_get_thread_index ();
Florin Coras3e350af2017-03-30 02:54:28 -07001410 tcp_connection_t *tc;
1411 vlib_buffer_t *b;
Florin Corasb2215d62017-08-01 16:56:58 -07001412 u32 bi, old_snd_nxt, snd_bytes = 0, available_bytes = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001413 int n_bytes = 0;
Florin Coras3e350af2017-03-30 02:54:28 -07001414
Florin Corasdb84e572017-05-09 18:54:52 -07001415 tc = tcp_connection_get_if_valid (index, thread_index);
1416
1417 if (!tc)
1418 return;
Florin Coras3e350af2017-03-30 02:54:28 -07001419
1420 /* Make sure timer handle is set to invalid */
1421 tc->timers[TCP_TIMER_PERSIST] = TCP_TIMER_HANDLE_INVALID;
1422
1423 /* Problem already solved or worse */
Florin Corasb2215d62017-08-01 16:56:58 -07001424 available_bytes = stream_session_tx_fifo_max_dequeue (&tc->connection);
Florin Corasf03a59a2017-06-09 21:07:32 -07001425 if (tc->state == TCP_STATE_CLOSED || tc->state > TCP_STATE_ESTABLISHED
Florin Corasb2215d62017-08-01 16:56:58 -07001426 || tc->snd_wnd > tc->snd_mss || tcp_in_recovery (tc)
1427 || !available_bytes)
Florin Coras3e350af2017-03-30 02:54:28 -07001428 return;
1429
1430 /* Increment RTO backoff */
1431 tc->rto_boff += 1;
1432 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1433
Florin Corasb2215d62017-08-01 16:56:58 -07001434 /*
1435 * Try to force the first unsent segment (or buffer)
1436 */
Florin Coras66b11312017-07-31 17:18:03 -07001437 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1438 return;
Florin Coras3e350af2017-03-30 02:54:28 -07001439 b = vlib_get_buffer (vm, bi);
Florin Coras93992a92017-05-24 18:03:56 -07001440
1441 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
Florin Corasc8343412017-05-04 14:25:50 -07001442 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
Florin Corasb2215d62017-08-01 16:56:58 -07001443 snd_bytes = clib_min (tc->snd_mss, tm->bytes_per_buffer);
Florin Coras3e350af2017-03-30 02:54:28 -07001444 n_bytes = stream_session_peek_bytes (&tc->connection,
1445 vlib_buffer_get_current (b),
1446 tc->snd_una_max - tc->snd_una,
Florin Corasb2215d62017-08-01 16:56:58 -07001447 snd_bytes);
1448 ASSERT (n_bytes != 0);
Florin Coras3e350af2017-03-30 02:54:28 -07001449 b->current_length = n_bytes;
Florin Coras93992a92017-05-24 18:03:56 -07001450 ASSERT (tc->snd_nxt == tc->snd_una_max || tc->rto_boff > 1
1451 || tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT));
1452
1453 /* Allow updating of snd_una_max but don't update snd_nxt */
1454 old_snd_nxt = tc->snd_nxt;
Florin Corasc8343412017-05-04 14:25:50 -07001455 tcp_push_hdr_i (tc, b, tc->state, 0);
Florin Coras93992a92017-05-24 18:03:56 -07001456 tc->snd_nxt = old_snd_nxt;
Florin Coras3e350af2017-03-30 02:54:28 -07001457 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1458
1459 /* Re-enable persist timer */
1460 tcp_persist_timer_set (tc);
1461}
1462
1463/**
Florin Coras6792ec02017-03-13 03:49:51 -07001464 * Retransmit first unacked segment
1465 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001466void
1467tcp_retransmit_first_unacked (tcp_connection_t * tc)
1468{
Florin Coras6792ec02017-03-13 03:49:51 -07001469 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001470 vlib_buffer_t *b;
Florin Corasb2215d62017-08-01 16:56:58 -07001471 u32 bi, old_snd_nxt, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001472
Florin Coras93992a92017-05-24 18:03:56 -07001473 old_snd_nxt = tc->snd_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001474 tc->snd_nxt = tc->snd_una;
1475
Florin Coras6792ec02017-03-13 03:49:51 -07001476 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2);
Florin Corasb2215d62017-08-01 16:56:58 -07001477 n_bytes = tcp_prepare_retransmit_segment (tc, 0, tc->snd_mss, &b);
1478 if (!n_bytes)
1479 return;
1480 bi = vlib_get_buffer_index (vm, b);
Florin Coras6792ec02017-03-13 03:49:51 -07001481 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras5921f982017-04-03 18:00:00 -07001482
Florin Coras93992a92017-05-24 18:03:56 -07001483 tc->snd_nxt = old_snd_nxt;
Florin Coras6792ec02017-03-13 03:49:51 -07001484}
1485
1486/**
Florin Coras93992a92017-05-24 18:03:56 -07001487 * Do fast retransmit with SACKs
Florin Coras6792ec02017-03-13 03:49:51 -07001488 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001489void
Florin Coras93992a92017-05-24 18:03:56 -07001490tcp_fast_retransmit_sack (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001491{
Florin Coras6792ec02017-03-13 03:49:51 -07001492 vlib_main_t *vm = vlib_get_main ();
Florin Coras93992a92017-05-24 18:03:56 -07001493 u32 n_written = 0, offset = 0, max_bytes;
Florin Corasb2215d62017-08-01 16:56:58 -07001494 vlib_buffer_t *b = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001495 sack_scoreboard_hole_t *hole;
1496 sack_scoreboard_t *sb;
1497 u32 bi, old_snd_nxt;
1498 int snd_space;
1499 u8 snd_limited = 0, can_rescue = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001500
1501 ASSERT (tcp_in_fastrecovery (tc));
Florin Coras6792ec02017-03-13 03:49:51 -07001502 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001503
Florin Coras93992a92017-05-24 18:03:56 -07001504 old_snd_nxt = tc->snd_nxt;
1505 sb = &tc->sack_sb;
1506 snd_space = tcp_available_snd_space (tc);
1507
1508 hole = scoreboard_get_hole (sb, sb->cur_rxt_hole);
1509 while (hole && snd_space > 0)
1510 {
Florin Coras93992a92017-05-24 18:03:56 -07001511 hole = scoreboard_next_rxt_hole (sb, hole,
1512 tcp_fastrecovery_sent_1_smss (tc),
1513 &can_rescue, &snd_limited);
1514 if (!hole)
1515 {
1516 if (!can_rescue || !(seq_lt (sb->rescue_rxt, tc->snd_una)
1517 || seq_gt (sb->rescue_rxt,
1518 tc->snd_congestion)))
1519 break;
1520
1521 /* If rescue rxt undefined or less than snd_una then one segment of
1522 * up to SMSS octets that MUST include the highest outstanding
1523 * unSACKed sequence number SHOULD be returned, and RescueRxt set to
1524 * RecoveryPoint. HighRxt MUST NOT be updated.
1525 */
1526 max_bytes = clib_min (tc->snd_mss, snd_space);
1527 offset = tc->snd_congestion - tc->snd_una - max_bytes;
1528 sb->rescue_rxt = tc->snd_congestion;
1529 tc->snd_nxt = tc->snd_una + offset;
Florin Corasb2215d62017-08-01 16:56:58 -07001530 n_written = tcp_prepare_retransmit_segment (tc, offset, max_bytes,
1531 &b);
1532 ASSERT (n_written);
1533 bi = vlib_get_buffer_index (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001534 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1535 break;
1536 }
1537
1538 max_bytes = snd_limited ? tc->snd_mss : hole->end - sb->high_rxt;
1539 offset = sb->high_rxt - tc->snd_una;
1540 tc->snd_nxt = tc->snd_una + offset;
Florin Corasb2215d62017-08-01 16:56:58 -07001541 n_written = tcp_prepare_retransmit_segment (tc, offset, max_bytes, &b);
Florin Coras93992a92017-05-24 18:03:56 -07001542
1543 /* Nothing left to retransmit */
1544 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001545 break;
Florin Coras93992a92017-05-24 18:03:56 -07001546
Florin Corasb2215d62017-08-01 16:56:58 -07001547 bi = vlib_get_buffer_index (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001548 sb->high_rxt += n_written;
1549 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1550 snd_space -= n_written;
1551 }
1552
1553 /* If window allows, send 1 SMSS of new data */
1554 tc->snd_nxt = old_snd_nxt;
1555}
1556
1557/**
1558 * Fast retransmit without SACK info
1559 */
1560void
1561tcp_fast_retransmit_no_sack (tcp_connection_t * tc)
1562{
Florin Coras93992a92017-05-24 18:03:56 -07001563 vlib_main_t *vm = vlib_get_main ();
1564 u32 n_written = 0, offset = 0, bi, old_snd_nxt;
1565 int snd_space;
1566 vlib_buffer_t *b;
1567
1568 ASSERT (tcp_in_fastrecovery (tc));
1569 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0);
1570
1571 /* Start resending from first un-acked segment */
1572 old_snd_nxt = tc->snd_nxt;
1573 tc->snd_nxt = tc->snd_una;
1574 snd_space = tcp_available_snd_space (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001575
1576 while (snd_space > 0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001577 {
Florin Coras93992a92017-05-24 18:03:56 -07001578 offset += n_written;
Florin Corasb2215d62017-08-01 16:56:58 -07001579 n_written = tcp_prepare_retransmit_segment (tc, offset, snd_space, &b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001580
1581 /* Nothing left to retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001582 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001583 break;
Dave Barach68b0fb02017-02-28 15:15:56 -05001584
Florin Corasb2215d62017-08-01 16:56:58 -07001585 bi = vlib_get_buffer_index (vm, b);
Florin Coras6792ec02017-03-13 03:49:51 -07001586 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras6792ec02017-03-13 03:49:51 -07001587 snd_space -= n_written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001588 }
1589
Florin Coras93992a92017-05-24 18:03:56 -07001590 /* Restore snd_nxt. If window allows, send 1 SMSS of new data */
1591 tc->snd_nxt = old_snd_nxt;
1592}
1593
1594/**
1595 * Do fast retransmit
1596 */
1597void
1598tcp_fast_retransmit (tcp_connection_t * tc)
1599{
1600 if (tcp_opts_sack_permitted (&tc->rcv_opts)
1601 && scoreboard_first_hole (&tc->sack_sb))
1602 tcp_fast_retransmit_sack (tc);
1603 else
1604 tcp_fast_retransmit_no_sack (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001605}
1606
1607always_inline u32
1608tcp_session_has_ooo_data (tcp_connection_t * tc)
1609{
1610 stream_session_t *s =
1611 stream_session_get (tc->c_s_index, tc->c_thread_index);
1612 return svm_fifo_has_ooo_data (s->server_rx_fifo);
1613}
1614
1615always_inline uword
1616tcp46_output_inline (vlib_main_t * vm,
1617 vlib_node_runtime_t * node,
1618 vlib_frame_t * from_frame, int is_ip4)
1619{
Dave Barach68b0fb02017-02-28 15:15:56 -05001620 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02001621 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05001622
1623 from = vlib_frame_vector_args (from_frame);
1624 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05001625 next_index = node->cached_next_index;
Florin Coras82d3ec82017-08-14 08:10:42 -07001626 tcp_set_time_now (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001627
1628 while (n_left_from > 0)
1629 {
1630 u32 n_left_to_next;
1631
1632 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1633
1634 while (n_left_from > 0 && n_left_to_next > 0)
1635 {
1636 u32 bi0;
1637 vlib_buffer_t *b0;
1638 tcp_connection_t *tc0;
Clement Durand6cf260c2017-04-13 13:27:04 +02001639 tcp_tx_trace_t *t0;
1640 tcp_header_t *th0 = 0;
Dave Barach2c25a622017-06-26 11:35:07 -04001641 u32 error0 = TCP_ERROR_PKTS_SENT, next0 = TCP_OUTPUT_NEXT_IP_LOOKUP;
Dave Barach68b0fb02017-02-28 15:15:56 -05001642
1643 bi0 = from[0];
1644 to_next[0] = bi0;
1645 from += 1;
1646 to_next += 1;
1647 n_left_from -= 1;
1648 n_left_to_next -= 1;
1649
1650 b0 = vlib_get_buffer (vm, bi0);
1651 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
1652 my_thread_index);
Florin Corasd79b41e2017-03-04 05:37:52 -08001653 if (PREDICT_FALSE (tc0 == 0 || tc0->state == TCP_STATE_CLOSED))
1654 {
1655 error0 = TCP_ERROR_INVALID_CONNECTION;
1656 next0 = TCP_OUTPUT_NEXT_DROP;
1657 goto done;
1658 }
1659
Dave Barach68b0fb02017-02-28 15:15:56 -05001660 th0 = vlib_buffer_get_current (b0);
Florin Corase69f4952017-03-07 10:06:24 -08001661 TCP_EVT_DBG (TCP_EVT_OUTPUT, tc0, th0->flags, b0->current_length);
Dave Barach68b0fb02017-02-28 15:15:56 -05001662
1663 if (is_ip4)
1664 {
Florin Coras66b11312017-07-31 17:18:03 -07001665 vlib_buffer_push_ip4 (vm, b0, &tc0->c_lcl_ip4, &tc0->c_rmt_ip4,
1666 IP_PROTOCOL_TCP, 1);
1667 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
Dave Barach2c0a4f42017-06-29 09:30:15 -04001668 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
1669 th0->checksum = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001670 }
1671 else
1672 {
1673 ip6_header_t *ih0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001674 ih0 = vlib_buffer_push_ip6 (vm, b0, &tc0->c_lcl_ip6,
1675 &tc0->c_rmt_ip6, IP_PROTOCOL_TCP);
Florin Coras66b11312017-07-31 17:18:03 -07001676 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
Dave Barach2c0a4f42017-06-29 09:30:15 -04001677 vnet_buffer (b0)->l3_hdr_offset = (u8 *) ih0 - b0->data;
1678 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
1679 th0->checksum = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001680 }
1681
1682 /* Filter out DUPACKs if there are no OOO segments left */
1683 if (PREDICT_FALSE
1684 (vnet_buffer (b0)->tcp.flags & TCP_BUF_FLAG_DUPACK))
1685 {
Dave Barach68b0fb02017-02-28 15:15:56 -05001686 if (!tcp_session_has_ooo_data (tc0))
1687 {
1688 error0 = TCP_ERROR_FILTERED_DUPACKS;
1689 next0 = TCP_OUTPUT_NEXT_DROP;
1690 goto done;
1691 }
1692 }
1693
Dave Barach68b0fb02017-02-28 15:15:56 -05001694 /* Stop DELACK timer and fix flags */
Florin Coras6792ec02017-03-13 03:49:51 -07001695 tc0->flags &= ~(TCP_CONN_SNDACK);
Florin Corasf03a59a2017-06-09 21:07:32 -07001696 tcp_timer_reset (tc0, TCP_TIMER_DELACK);
Dave Barach68b0fb02017-02-28 15:15:56 -05001697
1698 /* If not retransmitting
Florin Coras3af90fc2017-05-03 21:09:42 -07001699 * 1) update snd_una_max (SYN, SYNACK, FIN)
Dave Barach68b0fb02017-02-28 15:15:56 -05001700 * 2) If we're not tracking an ACK, start tracking */
1701 if (seq_lt (tc0->snd_una_max, tc0->snd_nxt))
1702 {
1703 tc0->snd_una_max = tc0->snd_nxt;
1704 if (tc0->rtt_ts == 0)
1705 {
1706 tc0->rtt_ts = tcp_time_now ();
1707 tc0->rtt_seq = tc0->snd_nxt;
1708 }
1709 }
1710
1711 /* Set the retransmit timer if not set already and not
1712 * doing a pure ACK */
1713 if (!tcp_timer_is_active (tc0, TCP_TIMER_RETRANSMIT)
1714 && tc0->snd_nxt != tc0->snd_una)
1715 {
Florin Corasd79b41e2017-03-04 05:37:52 -08001716 tcp_retransmit_timer_set (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001717 tc0->rto_boff = 0;
1718 }
1719
Dave Barach2c25a622017-06-26 11:35:07 -04001720#if 0
Florin Corasf6359c82017-06-19 12:26:09 -04001721 /* Make sure we haven't lost route to our peer */
1722 if (PREDICT_FALSE (tc0->last_fib_check
1723 < tc0->snd_opts.tsval + TCP_FIB_RECHECK_PERIOD))
1724 {
1725 if (PREDICT_TRUE
1726 (tc0->c_rmt_fei == tcp_lookup_rmt_in_fib (tc0)))
1727 {
1728 tc0->last_fib_check = tc0->snd_opts.tsval;
1729 }
1730 else
1731 {
1732 clib_warning ("lost connection to peer");
1733 tcp_connection_reset (tc0);
1734 goto done;
1735 }
1736 }
1737
1738 /* Use pre-computed dpo to set next node */
1739 next0 = tc0->c_rmt_dpo.dpoi_next_node;
1740 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = tc0->c_rmt_dpo.dpoi_index;
Dave Barach2c25a622017-06-26 11:35:07 -04001741#endif
1742
1743 vnet_buffer (b0)->sw_if_index[VLIB_RX] = 0;
1744 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001745
Damjan Marion213b5aa2017-07-13 21:19:27 +02001746 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001747 done:
Florin Corase69f4952017-03-07 10:06:24 -08001748 b0->error = node->errors[error0];
Dave Barach68b0fb02017-02-28 15:15:56 -05001749 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
1750 {
Clement Durand6cf260c2017-04-13 13:27:04 +02001751 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
1752 if (th0)
1753 {
1754 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
1755 }
1756 else
1757 {
1758 memset (&t0->tcp_header, 0, sizeof (t0->tcp_header));
1759 }
1760 clib_memcpy (&t0->tcp_connection, tc0,
1761 sizeof (t0->tcp_connection));
Dave Barach68b0fb02017-02-28 15:15:56 -05001762 }
1763
1764 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1765 n_left_to_next, bi0, next0);
1766 }
1767
1768 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1769 }
1770
1771 return from_frame->n_vectors;
1772}
1773
1774static uword
1775tcp4_output (vlib_main_t * vm, vlib_node_runtime_t * node,
1776 vlib_frame_t * from_frame)
1777{
1778 return tcp46_output_inline (vm, node, from_frame, 1 /* is_ip4 */ );
1779}
1780
1781static uword
1782tcp6_output (vlib_main_t * vm, vlib_node_runtime_t * node,
1783 vlib_frame_t * from_frame)
1784{
1785 return tcp46_output_inline (vm, node, from_frame, 0 /* is_ip4 */ );
1786}
1787
Florin Corase69f4952017-03-07 10:06:24 -08001788/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001789VLIB_REGISTER_NODE (tcp4_output_node) =
1790{
1791 .function = tcp4_output,.name = "tcp4-output",
1792 /* Takes a vector of packets. */
Florin Corase69f4952017-03-07 10:06:24 -08001793 .vector_size = sizeof (u32),
1794 .n_errors = TCP_N_ERROR,
1795 .error_strings = tcp_error_strings,
1796 .n_next_nodes = TCP_OUTPUT_N_NEXT,
1797 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05001798#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
1799 foreach_tcp4_output_next
1800#undef _
Florin Corase69f4952017-03-07 10:06:24 -08001801 },
1802 .format_buffer = format_tcp_header,
1803 .format_trace = format_tcp_tx_trace,
1804};
1805/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001806
Florin Corase69f4952017-03-07 10:06:24 -08001807VLIB_NODE_FUNCTION_MULTIARCH (tcp4_output_node, tcp4_output);
1808
1809/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001810VLIB_REGISTER_NODE (tcp6_output_node) =
1811{
Florin Corase69f4952017-03-07 10:06:24 -08001812 .function = tcp6_output,
1813 .name = "tcp6-output",
Dave Barach68b0fb02017-02-28 15:15:56 -05001814 /* Takes a vector of packets. */
Florin Corase69f4952017-03-07 10:06:24 -08001815 .vector_size = sizeof (u32),
1816 .n_errors = TCP_N_ERROR,
1817 .error_strings = tcp_error_strings,
1818 .n_next_nodes = TCP_OUTPUT_N_NEXT,
1819 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05001820#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
1821 foreach_tcp6_output_next
1822#undef _
Florin Corase69f4952017-03-07 10:06:24 -08001823 },
1824 .format_buffer = format_tcp_header,
1825 .format_trace = format_tcp_tx_trace,
1826};
1827/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001828
Florin Corase69f4952017-03-07 10:06:24 -08001829VLIB_NODE_FUNCTION_MULTIARCH (tcp6_output_node, tcp6_output);
1830
1831u32
Dave Barach68b0fb02017-02-28 15:15:56 -05001832tcp_push_header (transport_connection_t * tconn, vlib_buffer_t * b)
1833{
1834 tcp_connection_t *tc;
1835
1836 tc = (tcp_connection_t *) tconn;
Florin Corasc8343412017-05-04 14:25:50 -07001837 tcp_push_hdr_i (tc, b, TCP_STATE_ESTABLISHED, 0);
Florin Coras93992a92017-05-24 18:03:56 -07001838
Florin Corasf03a59a2017-06-09 21:07:32 -07001839 if (tc->rtt_ts == 0 && !tcp_in_cong_recovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001840 {
1841 tc->rtt_ts = tcp_time_now ();
1842 tc->rtt_seq = tc->snd_nxt;
1843 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001844 return 0;
1845}
1846
1847typedef enum _tcp_reset_next
1848{
1849 TCP_RESET_NEXT_DROP,
1850 TCP_RESET_NEXT_IP_LOOKUP,
1851 TCP_RESET_N_NEXT
1852} tcp_reset_next_t;
1853
1854#define foreach_tcp4_reset_next \
1855 _(DROP, "error-drop") \
1856 _(IP_LOOKUP, "ip4-lookup")
1857
1858#define foreach_tcp6_reset_next \
1859 _(DROP, "error-drop") \
1860 _(IP_LOOKUP, "ip6-lookup")
1861
1862static uword
1863tcp46_send_reset_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1864 vlib_frame_t * from_frame, u8 is_ip4)
1865{
1866 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02001867 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05001868
1869 from = vlib_frame_vector_args (from_frame);
1870 n_left_from = from_frame->n_vectors;
1871
1872 next_index = node->cached_next_index;
1873
1874 while (n_left_from > 0)
1875 {
1876 u32 n_left_to_next;
1877
1878 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1879
1880 while (n_left_from > 0 && n_left_to_next > 0)
1881 {
1882 u32 bi0;
1883 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02001884 tcp_tx_trace_t *t0;
1885 tcp_header_t *th0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001886 u32 error0 = TCP_ERROR_RST_SENT, next0 = TCP_RESET_NEXT_IP_LOOKUP;
1887
1888 bi0 = from[0];
1889 to_next[0] = bi0;
1890 from += 1;
1891 to_next += 1;
1892 n_left_from -= 1;
1893 n_left_to_next -= 1;
1894
1895 b0 = vlib_get_buffer (vm, bi0);
1896
1897 if (tcp_make_reset_in_place (vm, b0, vnet_buffer (b0)->tcp.flags,
1898 my_thread_index, is_ip4))
1899 {
1900 error0 = TCP_ERROR_LOOKUP_DROPS;
1901 next0 = TCP_RESET_NEXT_DROP;
1902 goto done;
1903 }
1904
1905 /* Prepare to send to IP lookup */
1906 vnet_buffer (b0)->sw_if_index[VLIB_TX] = 0;
1907 next0 = TCP_RESET_NEXT_IP_LOOKUP;
1908
1909 done:
Florin Corase69f4952017-03-07 10:06:24 -08001910 b0->error = node->errors[error0];
Damjan Marion213b5aa2017-07-13 21:19:27 +02001911 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001912 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
1913 {
Clement Durand6cf260c2017-04-13 13:27:04 +02001914 th0 = vlib_buffer_get_current (b0);
1915 if (is_ip4)
1916 th0 = ip4_next_header ((ip4_header_t *) th0);
1917 else
1918 th0 = ip6_next_header ((ip6_header_t *) th0);
Clement Durand6cf260c2017-04-13 13:27:04 +02001919 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
1920 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
Dave Barach68b0fb02017-02-28 15:15:56 -05001921 }
1922
1923 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1924 n_left_to_next, bi0, next0);
1925 }
1926 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1927 }
1928 return from_frame->n_vectors;
1929}
1930
1931static uword
1932tcp4_send_reset (vlib_main_t * vm, vlib_node_runtime_t * node,
1933 vlib_frame_t * from_frame)
1934{
1935 return tcp46_send_reset_inline (vm, node, from_frame, 1);
1936}
1937
1938static uword
1939tcp6_send_reset (vlib_main_t * vm, vlib_node_runtime_t * node,
1940 vlib_frame_t * from_frame)
1941{
1942 return tcp46_send_reset_inline (vm, node, from_frame, 0);
1943}
1944
1945/* *INDENT-OFF* */
1946VLIB_REGISTER_NODE (tcp4_reset_node) = {
1947 .function = tcp4_send_reset,
1948 .name = "tcp4-reset",
1949 .vector_size = sizeof (u32),
1950 .n_errors = TCP_N_ERROR,
1951 .error_strings = tcp_error_strings,
1952 .n_next_nodes = TCP_RESET_N_NEXT,
1953 .next_nodes = {
1954#define _(s,n) [TCP_RESET_NEXT_##s] = n,
1955 foreach_tcp4_reset_next
1956#undef _
1957 },
Clement Durand6cf260c2017-04-13 13:27:04 +02001958 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05001959};
1960/* *INDENT-ON* */
1961
Florin Corase69f4952017-03-07 10:06:24 -08001962VLIB_NODE_FUNCTION_MULTIARCH (tcp4_reset_node, tcp4_send_reset);
1963
Dave Barach68b0fb02017-02-28 15:15:56 -05001964/* *INDENT-OFF* */
1965VLIB_REGISTER_NODE (tcp6_reset_node) = {
1966 .function = tcp6_send_reset,
1967 .name = "tcp6-reset",
1968 .vector_size = sizeof (u32),
1969 .n_errors = TCP_N_ERROR,
1970 .error_strings = tcp_error_strings,
1971 .n_next_nodes = TCP_RESET_N_NEXT,
1972 .next_nodes = {
1973#define _(s,n) [TCP_RESET_NEXT_##s] = n,
1974 foreach_tcp6_reset_next
1975#undef _
1976 },
Clement Durand6cf260c2017-04-13 13:27:04 +02001977 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05001978};
1979/* *INDENT-ON* */
1980
Florin Corase69f4952017-03-07 10:06:24 -08001981VLIB_NODE_FUNCTION_MULTIARCH (tcp6_reset_node, tcp6_send_reset);
1982
Dave Barach68b0fb02017-02-28 15:15:56 -05001983/*
1984 * fd.io coding-style-patch-verification: ON
1985 *
1986 * Local Variables:
1987 * eval: (c-set-style "gnu")
1988 * End:
1989 */