blob: be29f05f65c39b879936aeb4511a9410f061072c [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
Florin Coras4eeeaaf2017-09-05 14:03:37 -040069tcp_window_compute_scale (u32 window)
Dave Barach68b0fb02017-02-28 15:15:56 -050070{
71 u8 wnd_scale = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -040072 while (wnd_scale < TCP_MAX_WND_SCALE && (window >> wnd_scale) > TCP_WND_MAX)
Dave Barach68b0fb02017-02-28 15:15:56 -050073 wnd_scale++;
74 return wnd_scale;
75}
76
77/**
Florin Coras6534b7a2017-07-18 05:38:03 -040078 * Update max segment size we're able to process.
79 *
80 * The value is constrained by our interface's MTU and IP options. It is
81 * also what we advertise to our peer.
82 */
83void
84tcp_update_rcv_mss (tcp_connection_t * tc)
85{
86 /* TODO find our iface MTU */
Florin Corasb2215d62017-08-01 16:56:58 -070087 tc->mss = dummy_mtu - sizeof (tcp_header_t);
Florin Coras6534b7a2017-07-18 05:38:03 -040088}
89
90/**
91 * TCP's initial window
Florin Corase04c2992017-03-01 08:17:34 -080092 */
93always_inline u32
94tcp_initial_wnd_unscaled (tcp_connection_t * tc)
95{
Florin Coras6534b7a2017-07-18 05:38:03 -040096 /* RFC 6928 recommends the value lower. However at the time our connections
97 * are initialized, fifos may not be allocated. Therefore, advertise the
98 * smallest possible unscaled window size and update once fifos are
99 * assigned to the session.
100 */
101 /*
102 tcp_update_rcv_mss (tc);
103 TCP_IW_N_SEGMENTS * tc->mss;
104 */
105 return TCP_MIN_RX_FIFO_SIZE;
Florin Corase04c2992017-03-01 08:17:34 -0800106}
107
108/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500109 * Compute initial window and scale factor. As per RFC1323, window field in
110 * SYN and SYN-ACK segments is never scaled.
111 */
112u32
113tcp_initial_window_to_advertise (tcp_connection_t * tc)
114{
Florin Corase04c2992017-03-01 08:17:34 -0800115 u32 max_fifo;
Dave Barach68b0fb02017-02-28 15:15:56 -0500116
117 /* Initial wnd for SYN. Fifos are not allocated yet.
Florin Corase04c2992017-03-01 08:17:34 -0800118 * Use some predefined value. For SYN-ACK we still want the
119 * scale to be computed in the same way */
120 max_fifo = TCP_MAX_RX_FIFO_SIZE;
Dave Barach68b0fb02017-02-28 15:15:56 -0500121
Florin Corase04c2992017-03-01 08:17:34 -0800122 tc->rcv_wscale = tcp_window_compute_scale (max_fifo);
123 tc->rcv_wnd = tcp_initial_wnd_unscaled (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500124
125 return clib_min (tc->rcv_wnd, TCP_WND_MAX);
126}
127
128/**
129 * Compute and return window to advertise, scaled as per RFC1323
130 */
131u32
132tcp_window_to_advertise (tcp_connection_t * tc, tcp_state_t state)
133{
Florin Corase04c2992017-03-01 08:17:34 -0800134 if (state < TCP_STATE_ESTABLISHED)
Dave Barach68b0fb02017-02-28 15:15:56 -0500135 return tcp_initial_window_to_advertise (tc);
136
Florin Coras6792ec02017-03-13 03:49:51 -0700137 tcp_update_rcv_wnd (tc);
138
139 if (tc->rcv_wnd == 0)
140 {
141 tc->flags |= TCP_CONN_SENT_RCV_WND0;
142 }
143 else
144 {
145 tc->flags &= ~TCP_CONN_SENT_RCV_WND0;
146 }
147
148 return tc->rcv_wnd >> tc->rcv_wscale;
149}
150
151void
152tcp_update_rcv_wnd (tcp_connection_t * tc)
153{
154 i32 observed_wnd;
155 u32 available_space, max_fifo, wnd;
156
Florin Corase04c2992017-03-01 08:17:34 -0800157 /*
158 * Figure out how much space we have available
159 */
Florin Coras6792ec02017-03-13 03:49:51 -0700160 available_space = stream_session_max_rx_enqueue (&tc->connection);
Florin Coras93992a92017-05-24 18:03:56 -0700161 max_fifo = stream_session_rx_fifo_size (&tc->connection);
Dave Barach68b0fb02017-02-28 15:15:56 -0500162
Florin Coras93992a92017-05-24 18:03:56 -0700163 ASSERT (tc->rcv_opts.mss < max_fifo);
164 if (available_space < tc->rcv_opts.mss && available_space < max_fifo >> 3)
Florin Corase04c2992017-03-01 08:17:34 -0800165 available_space = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500166
Florin Corase04c2992017-03-01 08:17:34 -0800167 /*
168 * Use the above and what we know about what we've previously advertised
169 * to compute the new window
170 */
Florin Coras6792ec02017-03-13 03:49:51 -0700171 observed_wnd = (i32) tc->rcv_wnd - (tc->rcv_nxt - tc->rcv_las);
172 if (observed_wnd < 0)
173 observed_wnd = 0;
Florin Corase04c2992017-03-01 08:17:34 -0800174
175 /* Bad. Thou shalt not shrink */
176 if (available_space < observed_wnd)
177 {
Florin Coras6792ec02017-03-13 03:49:51 -0700178 wnd = observed_wnd;
Florin Coras3e350af2017-03-30 02:54:28 -0700179 TCP_EVT_DBG (TCP_EVT_RCV_WND_SHRUNK, tc, observed_wnd, available_space);
Florin Corase04c2992017-03-01 08:17:34 -0800180 }
Florin Coras6792ec02017-03-13 03:49:51 -0700181 else
Florin Corase04c2992017-03-01 08:17:34 -0800182 {
Florin Coras6792ec02017-03-13 03:49:51 -0700183 wnd = available_space;
Florin Corase04c2992017-03-01 08:17:34 -0800184 }
185
Florin Coras3e350af2017-03-30 02:54:28 -0700186 /* Make sure we have a multiple of rcv_wscale */
187 if (wnd && tc->rcv_wscale)
188 {
189 wnd &= ~(1 << tc->rcv_wscale);
190 if (wnd == 0)
191 wnd = 1 << tc->rcv_wscale;
192 }
Florin Coras6792ec02017-03-13 03:49:51 -0700193
194 tc->rcv_wnd = clib_min (wnd, TCP_WND_MAX << tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500195}
196
197/**
198 * Write TCP options to segment.
199 */
200u32
201tcp_options_write (u8 * data, tcp_options_t * opts)
202{
203 u32 opts_len = 0;
204 u32 buf, seq_len = 4;
205
206 if (tcp_opts_mss (opts))
207 {
208 *data++ = TCP_OPTION_MSS;
209 *data++ = TCP_OPTION_LEN_MSS;
210 buf = clib_host_to_net_u16 (opts->mss);
211 clib_memcpy (data, &buf, sizeof (opts->mss));
212 data += sizeof (opts->mss);
213 opts_len += TCP_OPTION_LEN_MSS;
214 }
215
216 if (tcp_opts_wscale (opts))
217 {
218 *data++ = TCP_OPTION_WINDOW_SCALE;
219 *data++ = TCP_OPTION_LEN_WINDOW_SCALE;
220 *data++ = opts->wscale;
221 opts_len += TCP_OPTION_LEN_WINDOW_SCALE;
222 }
223
224 if (tcp_opts_sack_permitted (opts))
225 {
226 *data++ = TCP_OPTION_SACK_PERMITTED;
227 *data++ = TCP_OPTION_LEN_SACK_PERMITTED;
228 opts_len += TCP_OPTION_LEN_SACK_PERMITTED;
229 }
230
231 if (tcp_opts_tstamp (opts))
232 {
233 *data++ = TCP_OPTION_TIMESTAMP;
234 *data++ = TCP_OPTION_LEN_TIMESTAMP;
235 buf = clib_host_to_net_u32 (opts->tsval);
236 clib_memcpy (data, &buf, sizeof (opts->tsval));
237 data += sizeof (opts->tsval);
238 buf = clib_host_to_net_u32 (opts->tsecr);
239 clib_memcpy (data, &buf, sizeof (opts->tsecr));
240 data += sizeof (opts->tsecr);
241 opts_len += TCP_OPTION_LEN_TIMESTAMP;
242 }
243
244 if (tcp_opts_sack (opts))
245 {
246 int i;
247 u32 n_sack_blocks = clib_min (vec_len (opts->sacks),
248 TCP_OPTS_MAX_SACK_BLOCKS);
249
250 if (n_sack_blocks != 0)
251 {
252 *data++ = TCP_OPTION_SACK_BLOCK;
253 *data++ = 2 + n_sack_blocks * TCP_OPTION_LEN_SACK_BLOCK;
254 for (i = 0; i < n_sack_blocks; i++)
255 {
256 buf = clib_host_to_net_u32 (opts->sacks[i].start);
257 clib_memcpy (data, &buf, seq_len);
258 data += seq_len;
259 buf = clib_host_to_net_u32 (opts->sacks[i].end);
260 clib_memcpy (data, &buf, seq_len);
261 data += seq_len;
262 }
263 opts_len += 2 + n_sack_blocks * TCP_OPTION_LEN_SACK_BLOCK;
264 }
265 }
266
267 /* Terminate TCP options */
268 if (opts_len % 4)
269 {
270 *data++ = TCP_OPTION_EOL;
271 opts_len += TCP_OPTION_LEN_EOL;
272 }
273
274 /* Pad with zeroes to a u32 boundary */
275 while (opts_len % 4)
276 {
277 *data++ = TCP_OPTION_NOOP;
278 opts_len += TCP_OPTION_LEN_NOOP;
279 }
280 return opts_len;
281}
282
283always_inline int
Florin Corase04c2992017-03-01 08:17:34 -0800284tcp_make_syn_options (tcp_options_t * opts, u8 wnd_scale)
Dave Barach68b0fb02017-02-28 15:15:56 -0500285{
286 u8 len = 0;
287
288 opts->flags |= TCP_OPTS_FLAG_MSS;
289 opts->mss = dummy_mtu; /*XXX discover that */
290 len += TCP_OPTION_LEN_MSS;
291
292 opts->flags |= TCP_OPTS_FLAG_WSCALE;
Florin Corase04c2992017-03-01 08:17:34 -0800293 opts->wscale = wnd_scale;
Dave Barach68b0fb02017-02-28 15:15:56 -0500294 len += TCP_OPTION_LEN_WINDOW_SCALE;
295
296 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
297 opts->tsval = tcp_time_now ();
298 opts->tsecr = 0;
299 len += TCP_OPTION_LEN_TIMESTAMP;
300
Florin Coras93992a92017-05-24 18:03:56 -0700301 if (TCP_USE_SACKS)
302 {
303 opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
304 len += TCP_OPTION_LEN_SACK_PERMITTED;
305 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500306
307 /* Align to needed boundary */
308 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
309 return len;
310}
311
312always_inline int
313tcp_make_synack_options (tcp_connection_t * tc, tcp_options_t * opts)
314{
315 u8 len = 0;
316
317 opts->flags |= TCP_OPTS_FLAG_MSS;
Florin Corasc8343412017-05-04 14:25:50 -0700318 opts->mss = tc->mss;
Dave Barach68b0fb02017-02-28 15:15:56 -0500319 len += TCP_OPTION_LEN_MSS;
320
Florin Coras93992a92017-05-24 18:03:56 -0700321 if (tcp_opts_wscale (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500322 {
323 opts->flags |= TCP_OPTS_FLAG_WSCALE;
324 opts->wscale = tc->rcv_wscale;
325 len += TCP_OPTION_LEN_WINDOW_SCALE;
326 }
327
Florin Coras93992a92017-05-24 18:03:56 -0700328 if (tcp_opts_tstamp (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500329 {
330 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
331 opts->tsval = tcp_time_now ();
332 opts->tsecr = tc->tsval_recent;
333 len += TCP_OPTION_LEN_TIMESTAMP;
334 }
335
Florin Coras93992a92017-05-24 18:03:56 -0700336 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500337 {
338 opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
339 len += TCP_OPTION_LEN_SACK_PERMITTED;
340 }
341
342 /* Align to needed boundary */
343 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
344 return len;
345}
346
347always_inline int
348tcp_make_established_options (tcp_connection_t * tc, tcp_options_t * opts)
349{
350 u8 len = 0;
351
352 opts->flags = 0;
353
Florin Coras93992a92017-05-24 18:03:56 -0700354 if (tcp_opts_tstamp (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500355 {
356 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
357 opts->tsval = tcp_time_now ();
358 opts->tsecr = tc->tsval_recent;
359 len += TCP_OPTION_LEN_TIMESTAMP;
360 }
Florin Coras93992a92017-05-24 18:03:56 -0700361 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500362 {
363 if (vec_len (tc->snd_sacks))
364 {
365 opts->flags |= TCP_OPTS_FLAG_SACK;
366 opts->sacks = tc->snd_sacks;
Florin Corasc28764f2017-04-26 00:08:42 -0700367 opts->n_sack_blocks = clib_min (vec_len (tc->snd_sacks),
368 TCP_OPTS_MAX_SACK_BLOCKS);
Dave Barach68b0fb02017-02-28 15:15:56 -0500369 len += 2 + TCP_OPTION_LEN_SACK_BLOCK * opts->n_sack_blocks;
370 }
371 }
372
373 /* Align to needed boundary */
374 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
375 return len;
376}
377
378always_inline int
379tcp_make_options (tcp_connection_t * tc, tcp_options_t * opts,
380 tcp_state_t state)
381{
382 switch (state)
383 {
384 case TCP_STATE_ESTABLISHED:
385 case TCP_STATE_FIN_WAIT_1:
386 return tcp_make_established_options (tc, opts);
387 case TCP_STATE_SYN_RCVD:
388 return tcp_make_synack_options (tc, opts);
389 case TCP_STATE_SYN_SENT:
Florin Corase04c2992017-03-01 08:17:34 -0800390 return tcp_make_syn_options (opts, tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500391 default:
392 clib_warning ("Not handled!");
393 return 0;
394 }
395}
396
Florin Corasc8343412017-05-04 14:25:50 -0700397/**
Florin Corasc8343412017-05-04 14:25:50 -0700398 * Update snd_mss to reflect the effective segment size that we can send
399 * by taking into account all TCP options, including SACKs
400 */
401void
402tcp_update_snd_mss (tcp_connection_t * tc)
403{
404 /* Compute options to be used for connection. These may be reused when
405 * sending data or to compute the effective mss (snd_mss) */
406 tc->snd_opts_len =
407 tcp_make_options (tc, &tc->snd_opts, TCP_STATE_ESTABLISHED);
408
409 /* XXX check if MTU has been updated */
Florin Coras93992a92017-05-24 18:03:56 -0700410 tc->snd_mss = clib_min (tc->mss, tc->rcv_opts.mss) - tc->snd_opts_len;
Florin Corasdb84e572017-05-09 18:54:52 -0700411 ASSERT (tc->snd_mss > 0);
Florin Corasc8343412017-05-04 14:25:50 -0700412}
413
414void
415tcp_init_mss (tcp_connection_t * tc)
416{
Florin Corasdb84e572017-05-09 18:54:52 -0700417 u16 default_min_mss = 536;
Florin Corasc8343412017-05-04 14:25:50 -0700418 tcp_update_rcv_mss (tc);
419
420 /* TODO cache mss and consider PMTU discovery */
Florin Coras93992a92017-05-24 18:03:56 -0700421 tc->snd_mss = clib_min (tc->rcv_opts.mss, tc->mss);
Florin Corasc8343412017-05-04 14:25:50 -0700422
Florin Corasdb84e572017-05-09 18:54:52 -0700423 if (tc->snd_mss < 45)
Florin Corasc8343412017-05-04 14:25:50 -0700424 {
425 clib_warning ("snd mss is 0");
Florin Corasdb84e572017-05-09 18:54:52 -0700426 /* Assume that at least the min default mss works */
427 tc->snd_mss = default_min_mss;
Florin Coras93992a92017-05-24 18:03:56 -0700428 tc->rcv_opts.mss = default_min_mss;
Florin Corasc8343412017-05-04 14:25:50 -0700429 }
430
431 /* We should have enough space for 40 bytes of options */
432 ASSERT (tc->snd_mss > 45);
433
434 /* If we use timestamp option, account for it */
Florin Coras93992a92017-05-24 18:03:56 -0700435 if (tcp_opts_tstamp (&tc->rcv_opts))
Florin Corasc8343412017-05-04 14:25:50 -0700436 tc->snd_mss -= TCP_OPTION_LEN_TIMESTAMP;
437}
438
Florin Coras66b11312017-07-31 17:18:03 -0700439always_inline int
Florin Corasb2215d62017-08-01 16:56:58 -0700440tcp_alloc_tx_buffers (tcp_main_t * tm, u8 thread_index, u32 n_free_buffers)
441{
Florin Coras2f9b0c02017-09-11 20:54:15 -0400442 vlib_main_t *vm = vlib_get_main ();
Dave Barachb7f1faa2017-08-29 11:43:37 -0400443 u32 current_length = vec_len (tm->tx_buffers[thread_index]);
Florin Coras2f9b0c02017-09-11 20:54:15 -0400444 u32 n_allocated;
Dave Barachb7f1faa2017-08-29 11:43:37 -0400445
Florin Coras1f152cd2017-08-18 19:28:03 -0700446 vec_validate (tm->tx_buffers[thread_index],
Dave Barachb7f1faa2017-08-29 11:43:37 -0400447 current_length + n_free_buffers - 1);
Florin Coras2f9b0c02017-09-11 20:54:15 -0400448 n_allocated =
449 vlib_buffer_alloc (vm, &tm->tx_buffers[thread_index][current_length],
450 n_free_buffers);
451 _vec_len (tm->tx_buffers[thread_index]) = current_length + n_allocated;
Florin Corasb2215d62017-08-01 16:56:58 -0700452 /* buffer shortage, report failure */
453 if (vec_len (tm->tx_buffers[thread_index]) == 0)
454 {
455 clib_warning ("out of buffers");
456 return -1;
457 }
458 return 0;
459}
460
461always_inline int
Florin Coras66b11312017-07-31 17:18:03 -0700462tcp_get_free_buffer_index (tcp_main_t * tm, u32 * bidx)
463{
Florin Corasb2215d62017-08-01 16:56:58 -0700464 u32 *my_tx_buffers;
Florin Coras66b11312017-07-31 17:18:03 -0700465 u32 thread_index = vlib_get_thread_index ();
Florin Corasb2215d62017-08-01 16:56:58 -0700466 if (PREDICT_FALSE (vec_len (tm->tx_buffers[thread_index]) == 0))
Florin Coras66b11312017-07-31 17:18:03 -0700467 {
Florin Corasb2215d62017-08-01 16:56:58 -0700468 if (tcp_alloc_tx_buffers (tm, thread_index, VLIB_FRAME_SIZE))
469 return -1;
Florin Coras66b11312017-07-31 17:18:03 -0700470 }
Florin Corasb2215d62017-08-01 16:56:58 -0700471 my_tx_buffers = tm->tx_buffers[thread_index];
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400472 *bidx = my_tx_buffers[vec_len (my_tx_buffers) - 1];
Florin Coras66b11312017-07-31 17:18:03 -0700473 _vec_len (my_tx_buffers) -= 1;
474 return 0;
475}
Dave Barach68b0fb02017-02-28 15:15:56 -0500476
Florin Coras66b11312017-07-31 17:18:03 -0700477always_inline void
478tcp_return_buffer (tcp_main_t * tm)
479{
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400480 _vec_len (tm->tx_buffers[vlib_get_thread_index ()]) += 1;
Florin Coras66b11312017-07-31 17:18:03 -0700481}
Florin Coras6792ec02017-03-13 03:49:51 -0700482
Florin Coras1f152cd2017-08-18 19:28:03 -0700483always_inline void *
Dave Barach68b0fb02017-02-28 15:15:56 -0500484tcp_reuse_buffer (vlib_main_t * vm, vlib_buffer_t * b)
485{
Florin Corasb2215d62017-08-01 16:56:58 -0700486 if (b->flags & VLIB_BUFFER_NEXT_PRESENT)
487 vlib_buffer_free_one (vm, b->next_buffer);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400488 /* Zero all flags but free list index and trace flag */
489 b->flags &= VLIB_BUFFER_NEXT_PRESENT - 1;
Florin Coras1f152cd2017-08-18 19:28:03 -0700490 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);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400503 b->flags &= VLIB_BUFFER_FREE_LIST_INDEX_MASK;
504 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Florin Coras1f152cd2017-08-18 19:28:03 -0700505 b->total_length_not_including_first_buffer = 0;
Florin Corasd79b41e2017-03-04 05:37:52 -0800506 vnet_buffer (b)->tcp.flags = 0;
Florin Coras1f152cd2017-08-18 19:28:03 -0700507
508 /* Leave enough space for headers */
509 return vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
Dave Barach68b0fb02017-02-28 15:15:56 -0500510}
511
512/**
513 * Prepare ACK
514 */
515void
516tcp_make_ack_i (tcp_connection_t * tc, vlib_buffer_t * b, tcp_state_t state,
517 u8 flags)
518{
519 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
520 u8 tcp_opts_len, tcp_hdr_opts_len;
521 tcp_header_t *th;
522 u16 wnd;
523
524 wnd = tcp_window_to_advertise (tc, state);
525
526 /* Make and write options */
527 tcp_opts_len = tcp_make_established_options (tc, snd_opts);
528 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
529
530 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
531 tc->rcv_nxt, tcp_hdr_opts_len, flags, wnd);
532
533 tcp_options_write ((u8 *) (th + 1), snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500534 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
535}
536
537/**
538 * Convert buffer to ACK
539 */
540void
541tcp_make_ack (tcp_connection_t * tc, vlib_buffer_t * b)
542{
Florin Coras6792ec02017-03-13 03:49:51 -0700543 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500544
545 tcp_reuse_buffer (vm, b);
546 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, TCP_FLAG_ACK);
Florin Coras6792ec02017-03-13 03:49:51 -0700547 TCP_EVT_DBG (TCP_EVT_ACK_SENT, tc);
Florin Coras3e350af2017-03-30 02:54:28 -0700548 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_ACK;
549 tc->rcv_las = tc->rcv_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500550}
551
552/**
553 * Convert buffer to FIN-ACK
554 */
555void
Florin Corasd79b41e2017-03-04 05:37:52 -0800556tcp_make_fin (tcp_connection_t * tc, vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500557{
Florin Coras6792ec02017-03-13 03:49:51 -0700558 vlib_main_t *vm = vlib_get_main ();
Florin Corasd79b41e2017-03-04 05:37:52 -0800559 u8 flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500560
561 tcp_reuse_buffer (vm, b);
Florin Corasd79b41e2017-03-04 05:37:52 -0800562
Florin Corase69f4952017-03-07 10:06:24 -0800563 flags = TCP_FLAG_FIN | TCP_FLAG_ACK;
Florin Corasd79b41e2017-03-04 05:37:52 -0800564 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, flags);
Dave Barach68b0fb02017-02-28 15:15:56 -0500565
566 /* Reset flags, make sure ack is sent */
Dave Barach68b0fb02017-02-28 15:15:56 -0500567 vnet_buffer (b)->tcp.flags &= ~TCP_BUF_FLAG_DUPACK;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400568}
Dave Barach68b0fb02017-02-28 15:15:56 -0500569
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400570/**
571 * Convert buffer to SYN
572 */
573void
574tcp_make_syn (tcp_connection_t * tc, vlib_buffer_t * b)
575{
576 u8 tcp_hdr_opts_len, tcp_opts_len;
577 tcp_header_t *th;
578 u16 initial_wnd;
579 tcp_options_t snd_opts;
580
581 initial_wnd = tcp_initial_window_to_advertise (tc);
582
583 /* Make and write options */
584 memset (&snd_opts, 0, sizeof (snd_opts));
585 tcp_opts_len = tcp_make_syn_options (&snd_opts, tc->rcv_wscale);
586 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
587
588 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
589 tc->rcv_nxt, tcp_hdr_opts_len, TCP_FLAG_SYN,
590 initial_wnd);
591 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
592 tcp_options_write ((u8 *) (th + 1), &snd_opts);
593
594 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN,
595 tc->rto * TCP_TO_TIMER_TICK);
Dave Barach68b0fb02017-02-28 15:15:56 -0500596}
597
598/**
599 * Convert buffer to SYN-ACK
600 */
601void
602tcp_make_synack (tcp_connection_t * tc, vlib_buffer_t * b)
603{
Florin Coras6792ec02017-03-13 03:49:51 -0700604 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500605 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
606 u8 tcp_opts_len, tcp_hdr_opts_len;
607 tcp_header_t *th;
608 u16 initial_wnd;
Dave Barach68b0fb02017-02-28 15:15:56 -0500609
610 memset (snd_opts, 0, sizeof (*snd_opts));
Dave Barach68b0fb02017-02-28 15:15:56 -0500611 tcp_reuse_buffer (vm, b);
612
Dave Barach68b0fb02017-02-28 15:15:56 -0500613 initial_wnd = tcp_initial_window_to_advertise (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500614 tcp_opts_len = tcp_make_synack_options (tc, snd_opts);
615 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
616
617 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
618 tc->rcv_nxt, tcp_hdr_opts_len,
619 TCP_FLAG_SYN | TCP_FLAG_ACK, initial_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -0500620 tcp_options_write ((u8 *) (th + 1), snd_opts);
621
622 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
623 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_ACK;
624
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400625 /* Init retransmit timer. Use update instead of set because of
626 * retransmissions */
627 tcp_retransmit_timer_force_update (tc);
Florin Coras6534b7a2017-07-18 05:38:03 -0400628 TCP_EVT_DBG (TCP_EVT_SYNACK_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500629}
630
631always_inline void
Florin Coras9d063042017-09-14 03:08:00 -0400632tcp_enqueue_to_ip_lookup_i (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
633 u8 is_ip4, u8 flush)
Dave Barach68b0fb02017-02-28 15:15:56 -0500634{
Florin Coras9d063042017-09-14 03:08:00 -0400635 tcp_main_t *tm = vnet_get_tcp_main ();
636 u32 thread_index = vlib_get_thread_index ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500637 u32 *to_next, next_index;
638 vlib_frame_t *f;
639
Damjan Marion213b5aa2017-07-13 21:19:27 +0200640 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500641 b->error = 0;
642
643 /* Default FIB for now */
644 vnet_buffer (b)->sw_if_index[VLIB_TX] = 0;
645
646 /* Send to IP lookup */
647 next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index;
Florin Coras9d063042017-09-14 03:08:00 -0400648 if (VLIB_BUFFER_TRACE_TRAJECTORY > 0)
649 {
650 b->pre_data[0] = 2;
651 b->pre_data[1] = next_index;
652 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500653
Florin Coras9d063042017-09-14 03:08:00 -0400654 f = tm->ip_lookup_tx_frames[!is_ip4][thread_index];
655 if (!f)
656 {
657 f = vlib_get_frame_to_node (vm, next_index);
658 ASSERT (f);
659 tm->ip_lookup_tx_frames[!is_ip4][thread_index] = f;
660 }
661
Dave Barach68b0fb02017-02-28 15:15:56 -0500662 to_next = vlib_frame_vector_args (f);
Florin Coras9d063042017-09-14 03:08:00 -0400663 to_next[f->n_vectors] = bi;
664 f->n_vectors += 1;
665 if (flush || f->n_vectors == VLIB_FRAME_SIZE)
666 {
667 vlib_put_frame_to_node (vm, next_index, f);
668 tm->ip_lookup_tx_frames[!is_ip4][thread_index] = 0;
669 }
670}
671
672always_inline void
673tcp_enqueue_to_ip_lookup_now (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
674 u8 is_ip4)
675{
676 tcp_enqueue_to_ip_lookup_i (vm, b, bi, is_ip4, 1);
677}
678
679always_inline void
680tcp_enqueue_to_ip_lookup (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
681 u8 is_ip4)
682{
683 tcp_enqueue_to_ip_lookup_i (vm, b, bi, is_ip4, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500684}
685
Florin Coras1f152cd2017-08-18 19:28:03 -0700686always_inline void
687tcp_enqueue_to_output_i (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
688 u8 is_ip4, u8 flush)
689{
690 tcp_main_t *tm = vnet_get_tcp_main ();
691 u32 thread_index = vlib_get_thread_index ();
692 u32 *to_next, next_index;
693 vlib_frame_t *f;
694
695 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
696 b->error = 0;
697
698 /* Decide where to send the packet */
699 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
Florin Coras1f152cd2017-08-18 19:28:03 -0700700 if (VLIB_BUFFER_TRACE_TRAJECTORY > 0)
701 {
702 b->pre_data[0] = 1;
703 b->pre_data[1] = next_index;
704 }
705
706 /* Get frame to v4/6 output node */
707 f = tm->tx_frames[!is_ip4][thread_index];
708 if (!f)
709 {
710 f = vlib_get_frame_to_node (vm, next_index);
711 ASSERT (f);
712 tm->tx_frames[!is_ip4][thread_index] = f;
713 }
714 to_next = vlib_frame_vector_args (f);
715 to_next[f->n_vectors] = bi;
716 f->n_vectors += 1;
717 if (flush || f->n_vectors == VLIB_FRAME_SIZE)
718 {
719 vlib_put_frame_to_node (vm, next_index, f);
720 tm->tx_frames[!is_ip4][thread_index] = 0;
721 }
722}
723
724always_inline void
725tcp_enqueue_to_output (vlib_main_t * vm, vlib_buffer_t * b, u32 bi, u8 is_ip4)
726{
727 tcp_enqueue_to_output_i (vm, b, bi, is_ip4, 0);
728}
729
730always_inline void
731tcp_enqueue_to_output_now (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
732 u8 is_ip4)
733{
734 tcp_enqueue_to_output_i (vm, b, bi, is_ip4, 1);
735}
736
Dave Barach68b0fb02017-02-28 15:15:56 -0500737int
738tcp_make_reset_in_place (vlib_main_t * vm, vlib_buffer_t * b0,
Florin Corasdc629cd2017-05-09 00:52:37 -0700739 tcp_state_t state, u8 thread_index, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500740{
Dave Barach68b0fb02017-02-28 15:15:56 -0500741 ip4_header_t *ih4;
742 ip6_header_t *ih6;
743 tcp_header_t *th0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700744 ip4_address_t src_ip40, dst_ip40;
745 ip6_address_t src_ip60, dst_ip60;
746 u16 src_port, dst_port;
Dave Barach68b0fb02017-02-28 15:15:56 -0500747 u32 tmp;
Florin Corasdc629cd2017-05-09 00:52:37 -0700748 u32 seq, ack;
749 u8 flags;
Dave Barach68b0fb02017-02-28 15:15:56 -0500750
751 /* Find IP and TCP headers */
Florin Corasdc629cd2017-05-09 00:52:37 -0700752 th0 = tcp_buffer_hdr (b0);
753
754 /* Save src and dst ip */
Dave Barach68b0fb02017-02-28 15:15:56 -0500755 if (is_ip4)
756 {
757 ih4 = vlib_buffer_get_current (b0);
Florin Corasdc629cd2017-05-09 00:52:37 -0700758 ASSERT ((ih4->ip_version_and_header_length & 0xF0) == 0x40);
759 src_ip40.as_u32 = ih4->src_address.as_u32;
760 dst_ip40.as_u32 = ih4->dst_address.as_u32;
Dave Barach68b0fb02017-02-28 15:15:56 -0500761 }
762 else
763 {
764 ih6 = vlib_buffer_get_current (b0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500765 ASSERT ((ih6->ip_version_traffic_class_and_flow_label & 0xF0) == 0x60);
766 clib_memcpy (&src_ip60, &ih6->src_address, sizeof (ip6_address_t));
Florin Corasdc629cd2017-05-09 00:52:37 -0700767 clib_memcpy (&dst_ip60, &ih6->dst_address, sizeof (ip6_address_t));
Dave Barach68b0fb02017-02-28 15:15:56 -0500768 }
769
Florin Corasdc629cd2017-05-09 00:52:37 -0700770 src_port = th0->src_port;
771 dst_port = th0->dst_port;
772
773 /* Try to determine what/why we're actually resetting */
Dave Barach68b0fb02017-02-28 15:15:56 -0500774 if (state == TCP_STATE_CLOSED)
775 {
776 if (!tcp_syn (th0))
777 return -1;
778
779 tmp = clib_net_to_host_u32 (th0->seq_number);
780
781 /* Got a SYN for no listener. */
Florin Corasdc629cd2017-05-09 00:52:37 -0700782 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
783 ack = clib_host_to_net_u32 (tmp + 1);
784 seq = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500785 }
Florin Corasdc629cd2017-05-09 00:52:37 -0700786 else
Dave Barach68b0fb02017-02-28 15:15:56 -0500787 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700788 flags = TCP_FLAG_RST;
789 seq = th0->ack_number;
790 ack = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500791 }
792
Florin Corasdc629cd2017-05-09 00:52:37 -0700793 tcp_reuse_buffer (vm, b0);
794 th0 = vlib_buffer_push_tcp_net_order (b0, dst_port, src_port, seq, ack,
795 sizeof (tcp_header_t), flags, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500796
Dave Barach68b0fb02017-02-28 15:15:56 -0500797 if (is_ip4)
798 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700799 ih4 = vlib_buffer_push_ip4 (vm, b0, &dst_ip40, &src_ip40,
Florin Corasfdbc3822017-07-27 00:34:12 -0700800 IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500801 th0->checksum = ip4_tcp_udp_compute_checksum (vm, b0, ih4);
802 }
803 else
804 {
805 int bogus = ~0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700806 ih6 = vlib_buffer_push_ip6 (vm, b0, &dst_ip60, &src_ip60,
807 IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500808 th0->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b0, ih6, &bogus);
809 ASSERT (!bogus);
810 }
811
812 return 0;
813}
814
815/**
816 * Send reset without reusing existing buffer
Florin Coras1f152cd2017-08-18 19:28:03 -0700817 *
818 * It extracts connection info out of original packet
Dave Barach68b0fb02017-02-28 15:15:56 -0500819 */
820void
Florin Coras1f152cd2017-08-18 19:28:03 -0700821tcp_send_reset_w_pkt (tcp_connection_t * tc, vlib_buffer_t * pkt, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500822{
823 vlib_buffer_t *b;
824 u32 bi;
825 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -0700826 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500827 u8 tcp_hdr_len, flags = 0;
828 tcp_header_t *th, *pkt_th;
829 u32 seq, ack;
830 ip4_header_t *ih4, *pkt_ih4;
831 ip6_header_t *ih6, *pkt_ih6;
832
Florin Coras66b11312017-07-31 17:18:03 -0700833 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
834 return;
835
Dave Barach68b0fb02017-02-28 15:15:56 -0500836 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -0700837 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500838
839 /* Make and write options */
840 tcp_hdr_len = sizeof (tcp_header_t);
841
842 if (is_ip4)
843 {
844 pkt_ih4 = vlib_buffer_get_current (pkt);
845 pkt_th = ip4_next_header (pkt_ih4);
846 }
847 else
848 {
849 pkt_ih6 = vlib_buffer_get_current (pkt);
850 pkt_th = ip6_next_header (pkt_ih6);
851 }
852
853 if (tcp_ack (pkt_th))
854 {
855 flags = TCP_FLAG_RST;
856 seq = pkt_th->ack_number;
Florin Coras6534b7a2017-07-18 05:38:03 -0400857 ack = (tc && tc->state >= TCP_STATE_SYN_RCVD) ? tc->rcv_nxt : 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500858 }
859 else
860 {
861 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
862 seq = 0;
863 ack = clib_host_to_net_u32 (vnet_buffer (pkt)->tcp.seq_end);
864 }
865
866 th = vlib_buffer_push_tcp_net_order (b, pkt_th->dst_port, pkt_th->src_port,
867 seq, ack, tcp_hdr_len, flags, 0);
868
869 /* Swap src and dst ip */
870 if (is_ip4)
871 {
872 ASSERT ((pkt_ih4->ip_version_and_header_length & 0xF0) == 0x40);
873 ih4 = vlib_buffer_push_ip4 (vm, b, &pkt_ih4->dst_address,
Florin Corasfdbc3822017-07-27 00:34:12 -0700874 &pkt_ih4->src_address, IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500875 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
876 }
877 else
878 {
879 int bogus = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500880 ASSERT ((pkt_ih6->ip_version_traffic_class_and_flow_label & 0xF0) ==
881 0x60);
rootc9d1c5b2017-08-15 12:58:31 -0400882 ih6 = vlib_buffer_push_ip6 (vm, b, &pkt_ih6->dst_address,
883 &pkt_ih6->src_address, IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500884 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
885 ASSERT (!bogus);
886 }
887
Florin Coras9d063042017-09-14 03:08:00 -0400888 tcp_enqueue_to_ip_lookup_now (vm, b, bi, is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -0400889 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500890}
891
Florin Coras1f152cd2017-08-18 19:28:03 -0700892/**
893 * Build and set reset packet for connection
894 */
895void
896tcp_send_reset (tcp_connection_t * tc)
897{
898 vlib_main_t *vm = vlib_get_main ();
899 tcp_main_t *tm = vnet_get_tcp_main ();
900 vlib_buffer_t *b;
901 u32 bi;
902 tcp_header_t *th;
903 u16 tcp_hdr_opts_len, advertise_wnd, opts_write_len;
904 u8 flags;
905
906 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
907 return;
908 b = vlib_get_buffer (vm, bi);
909 tcp_init_buffer (vm, b);
910
911 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
912 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
913 advertise_wnd = tcp_window_to_advertise (tc, TCP_STATE_ESTABLISHED);
914 flags = TCP_FLAG_RST;
915 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
916 tc->rcv_nxt, tcp_hdr_opts_len, flags,
917 advertise_wnd);
918 opts_write_len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
919 ASSERT (opts_write_len == tc->snd_opts_len);
920 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
921 tcp_enqueue_to_output_now (vm, b, bi, tc->c_is_ip4);
922}
923
Dave Barach68b0fb02017-02-28 15:15:56 -0500924void
925tcp_push_ip_hdr (tcp_main_t * tm, tcp_connection_t * tc, vlib_buffer_t * b)
926{
927 tcp_header_t *th = vlib_buffer_get_current (b);
Dave Barach2c25a622017-06-26 11:35:07 -0400928 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500929 if (tc->c_is_ip4)
930 {
931 ip4_header_t *ih;
Dave Barach2c25a622017-06-26 11:35:07 -0400932 ih = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip4,
Florin Corasfdbc3822017-07-27 00:34:12 -0700933 &tc->c_rmt_ip4, IP_PROTOCOL_TCP, 1);
Dave Barach2c25a622017-06-26 11:35:07 -0400934 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih);
Dave Barach68b0fb02017-02-28 15:15:56 -0500935 }
936 else
937 {
938 ip6_header_t *ih;
939 int bogus = ~0;
940
Dave Barach2c25a622017-06-26 11:35:07 -0400941 ih = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip6,
Dave Barach68b0fb02017-02-28 15:15:56 -0500942 &tc->c_rmt_ip6, IP_PROTOCOL_TCP);
Dave Barach2c25a622017-06-26 11:35:07 -0400943 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih, &bogus);
Dave Barach68b0fb02017-02-28 15:15:56 -0500944 ASSERT (!bogus);
945 }
946}
947
948/**
949 * Send SYN
950 *
951 * Builds a SYN packet for a half-open connection and sends it to ipx_lookup.
952 * The packet is not forwarded through tcpx_output to avoid doing lookups
953 * in the half_open pool.
954 */
955void
956tcp_send_syn (tcp_connection_t * tc)
957{
958 vlib_buffer_t *b;
959 u32 bi;
960 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -0700961 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500962
Florin Coras66b11312017-07-31 17:18:03 -0700963 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
964 return;
965
Dave Barach68b0fb02017-02-28 15:15:56 -0500966 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -0700967 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400968 tcp_make_syn (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500969
970 /* Measure RTT with this */
971 tc->rtt_ts = tcp_time_now ();
972 tc->rtt_seq = tc->snd_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500973 tc->rto_boff = 0;
974
975 /* Set the connection establishment timer */
976 tcp_timer_set (tc, TCP_TIMER_ESTABLISH, TCP_ESTABLISH_TIME);
977
978 tcp_push_ip_hdr (tm, tc, b);
979 tcp_enqueue_to_ip_lookup (vm, b, bi, tc->c_is_ip4);
Florin Coras6534b7a2017-07-18 05:38:03 -0400980 TCP_EVT_DBG (TCP_EVT_SYN_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500981}
982
Florin Coras66b11312017-07-31 17:18:03 -0700983/**
984 * Flush tx frame populated by retransmits and timer pops
985 */
986void
987tcp_flush_frame_to_output (vlib_main_t * vm, u8 thread_index, u8 is_ip4)
988{
989 if (tcp_main.tx_frames[!is_ip4][thread_index])
990 {
991 u32 next_index;
992 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
993 vlib_put_frame_to_node (vm, next_index,
994 tcp_main.tx_frames[!is_ip4][thread_index]);
995 tcp_main.tx_frames[!is_ip4][thread_index] = 0;
996 }
997}
998
999/**
Florin Coras9d063042017-09-14 03:08:00 -04001000 * Flush ip lookup tx frames populated by timer pops
1001 */
1002always_inline void
1003tcp_flush_frame_to_ip_lookup (vlib_main_t * vm, u8 thread_index, u8 is_ip4)
1004{
1005 if (tcp_main.ip_lookup_tx_frames[!is_ip4][thread_index])
1006 {
1007 u32 next_index;
1008 next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index;
1009 vlib_put_frame_to_node (vm, next_index,
1010 tcp_main.ip_lookup_tx_frames[!is_ip4]
1011 [thread_index]);
1012 tcp_main.ip_lookup_tx_frames[!is_ip4][thread_index] = 0;
1013 }
1014}
1015
1016/**
1017 * Flush v4 and v6 tcp and ip-lookup tx frames for thread index
Florin Coras66b11312017-07-31 17:18:03 -07001018 */
1019void
1020tcp_flush_frames_to_output (u8 thread_index)
1021{
1022 vlib_main_t *vm = vlib_get_main ();
1023 tcp_flush_frame_to_output (vm, thread_index, 1);
1024 tcp_flush_frame_to_output (vm, thread_index, 0);
Florin Coras9d063042017-09-14 03:08:00 -04001025 tcp_flush_frame_to_ip_lookup (vm, thread_index, 1);
1026 tcp_flush_frame_to_ip_lookup (vm, thread_index, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001027}
1028
1029/**
1030 * Send FIN
1031 */
1032void
1033tcp_send_fin (tcp_connection_t * tc)
1034{
Dave Barach68b0fb02017-02-28 15:15:56 -05001035 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001036 vlib_main_t *vm = vlib_get_main ();
Florin Coras9d063042017-09-14 03:08:00 -04001037 vlib_buffer_t *b;
1038 u32 bi;
1039 u8 fin_snt = 0;
1040
Dave Barach68b0fb02017-02-28 15:15:56 -05001041
Florin Coras66b11312017-07-31 17:18:03 -07001042 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1043 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001044 b = vlib_get_buffer (vm, bi);
Florin Coras9d063042017-09-14 03:08:00 -04001045 fin_snt = tc->flags & TCP_CONN_FINSNT;
1046 if (fin_snt)
1047 tc->snd_nxt = tc->snd_una;
Florin Corasd79b41e2017-03-04 05:37:52 -08001048 tcp_make_fin (tc, b);
Florin Coras66b11312017-07-31 17:18:03 -07001049 tcp_enqueue_to_output_now (vm, b, bi, tc->c_is_ip4);
Florin Coras9d063042017-09-14 03:08:00 -04001050 if (!fin_snt)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001051 {
1052 tc->flags |= TCP_CONN_FINSNT;
1053 tc->flags &= ~TCP_CONN_FINPNDG;
Florin Coras9d063042017-09-14 03:08:00 -04001054 /* Account for the FIN */
1055 tc->snd_una_max += 1;
1056 tc->snd_nxt = tc->snd_una_max;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001057 }
Florin Coras93992a92017-05-24 18:03:56 -07001058 tcp_retransmit_timer_force_update (tc);
Florin Corase69f4952017-03-07 10:06:24 -08001059 TCP_EVT_DBG (TCP_EVT_FIN_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001060}
1061
1062always_inline u8
Florin Corasb2215d62017-08-01 16:56:58 -07001063tcp_make_state_flags (tcp_connection_t * tc, tcp_state_t next_state)
Dave Barach68b0fb02017-02-28 15:15:56 -05001064{
1065 switch (next_state)
1066 {
1067 case TCP_STATE_ESTABLISHED:
1068 return TCP_FLAG_ACK;
1069 case TCP_STATE_SYN_RCVD:
1070 return TCP_FLAG_SYN | TCP_FLAG_ACK;
1071 case TCP_STATE_SYN_SENT:
1072 return TCP_FLAG_SYN;
1073 case TCP_STATE_LAST_ACK:
1074 case TCP_STATE_FIN_WAIT_1:
Florin Corasb2215d62017-08-01 16:56:58 -07001075 if (tc->snd_nxt + 1 < tc->snd_una_max)
1076 return TCP_FLAG_ACK;
1077 else
1078 return TCP_FLAG_FIN;
Dave Barach68b0fb02017-02-28 15:15:56 -05001079 default:
1080 clib_warning ("Shouldn't be here!");
1081 }
1082 return 0;
1083}
1084
1085/**
1086 * Push TCP header and update connection variables
1087 */
1088static void
1089tcp_push_hdr_i (tcp_connection_t * tc, vlib_buffer_t * b,
Florin Corasc8343412017-05-04 14:25:50 -07001090 tcp_state_t next_state, u8 compute_opts)
Dave Barach68b0fb02017-02-28 15:15:56 -05001091{
1092 u32 advertise_wnd, data_len;
Florin Corasc8343412017-05-04 14:25:50 -07001093 u8 tcp_hdr_opts_len, opts_write_len, flags;
Dave Barach68b0fb02017-02-28 15:15:56 -05001094 tcp_header_t *th;
1095
Florin Corasf6d68ed2017-05-07 19:12:02 -07001096 data_len = b->current_length + b->total_length_not_including_first_buffer;
Florin Coras1f152cd2017-08-18 19:28:03 -07001097 ASSERT (!b->total_length_not_including_first_buffer
1098 || (b->flags & VLIB_BUFFER_NEXT_PRESENT));
Dave Barach68b0fb02017-02-28 15:15:56 -05001099 vnet_buffer (b)->tcp.flags = 0;
1100
Florin Corasc8343412017-05-04 14:25:50 -07001101 if (compute_opts)
1102 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1103
Florin Corasc8343412017-05-04 14:25:50 -07001104 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
Dave Barach68b0fb02017-02-28 15:15:56 -05001105 advertise_wnd = tcp_window_to_advertise (tc, next_state);
Florin Corasb2215d62017-08-01 16:56:58 -07001106 flags = tcp_make_state_flags (tc, next_state);
Dave Barach68b0fb02017-02-28 15:15:56 -05001107
1108 /* Push header and options */
1109 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
1110 tc->rcv_nxt, tcp_hdr_opts_len, flags,
1111 advertise_wnd);
Florin Corasc8343412017-05-04 14:25:50 -07001112 opts_write_len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -05001113
Florin Corasc8343412017-05-04 14:25:50 -07001114 ASSERT (opts_write_len == tc->snd_opts_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001115 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
1116
Florin Coras93992a92017-05-24 18:03:56 -07001117 /*
1118 * Update connection variables
1119 */
1120
Dave Barach68b0fb02017-02-28 15:15:56 -05001121 tc->snd_nxt += data_len;
Florin Corasc28764f2017-04-26 00:08:42 -07001122 tc->rcv_las = tc->rcv_nxt;
Florin Coras3e350af2017-03-30 02:54:28 -07001123
Florin Coras6792ec02017-03-13 03:49:51 -07001124 /* TODO this is updated in output as well ... */
Florin Coras93992a92017-05-24 18:03:56 -07001125 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
Florin Coras3af90fc2017-05-03 21:09:42 -07001126 {
Florin Coras93992a92017-05-24 18:03:56 -07001127 tc->snd_una_max = tc->snd_nxt;
1128 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
Florin Coras3af90fc2017-05-03 21:09:42 -07001129 }
Florin Coras93992a92017-05-24 18:03:56 -07001130
Florin Corase69f4952017-03-07 10:06:24 -08001131 TCP_EVT_DBG (TCP_EVT_PKTIZE, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001132}
1133
Dave Barach68b0fb02017-02-28 15:15:56 -05001134void
Florin Coras6792ec02017-03-13 03:49:51 -07001135tcp_send_ack (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001136{
1137 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001138 vlib_main_t *vm = vlib_get_main ();
1139
Dave Barach68b0fb02017-02-28 15:15:56 -05001140 vlib_buffer_t *b;
1141 u32 bi;
1142
Dave Barach68b0fb02017-02-28 15:15:56 -05001143 /* Get buffer */
Florin Coras66b11312017-07-31 17:18:03 -07001144 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1145 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001146 b = vlib_get_buffer (vm, bi);
1147
1148 /* Fill in the ACK */
1149 tcp_make_ack (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001150 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1151}
1152
Florin Corasb2215d62017-08-01 16:56:58 -07001153/**
1154 * Delayed ack timer handler
1155 *
1156 * Sends delayed ACK when timer expires
1157 */
Florin Coras6792ec02017-03-13 03:49:51 -07001158void
1159tcp_timer_delack_handler (u32 index)
1160{
Damjan Marion586afd72017-04-05 19:18:20 +02001161 u32 thread_index = vlib_get_thread_index ();
Florin Coras6792ec02017-03-13 03:49:51 -07001162 tcp_connection_t *tc;
1163
1164 tc = tcp_connection_get (index, thread_index);
1165 tc->timers[TCP_TIMER_DELACK] = TCP_TIMER_HANDLE_INVALID;
Florin Coras6792ec02017-03-13 03:49:51 -07001166 tcp_send_ack (tc);
1167}
1168
Florin Corasb2215d62017-08-01 16:56:58 -07001169/**
1170 * Build a retransmit segment
Dave Barach68b0fb02017-02-28 15:15:56 -05001171 *
1172 * @return the number of bytes in the segment or 0 if there's nothing to
1173 * retransmit
Florin Coras93992a92017-05-24 18:03:56 -07001174 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001175u32
Florin Corasb2215d62017-08-01 16:56:58 -07001176tcp_prepare_retransmit_segment (tcp_connection_t * tc, u32 offset,
1177 u32 max_deq_bytes, vlib_buffer_t ** b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001178{
Florin Corasb2215d62017-08-01 16:56:58 -07001179 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001180 vlib_main_t *vm = vlib_get_main ();
Florin Coras93992a92017-05-24 18:03:56 -07001181 int n_bytes = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001182 u32 start, bi, available_bytes, seg_size;
1183 u8 *data;
Dave Barach68b0fb02017-02-28 15:15:56 -05001184
Florin Corase04c2992017-03-01 08:17:34 -08001185 ASSERT (tc->state >= TCP_STATE_ESTABLISHED);
Florin Corasb2215d62017-08-01 16:56:58 -07001186 ASSERT (max_deq_bytes != 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001187
Florin Corasb2215d62017-08-01 16:56:58 -07001188 /*
1189 * Make sure we can retransmit something
1190 */
Florin Corasb2215d62017-08-01 16:56:58 -07001191 available_bytes = stream_session_tx_fifo_max_dequeue (&tc->connection);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001192 ASSERT (available_bytes >= offset);
Florin Coras1f152cd2017-08-18 19:28:03 -07001193 available_bytes -= offset;
Florin Corasb2215d62017-08-01 16:56:58 -07001194 if (!available_bytes)
1195 return 0;
Florin Corase87216f2017-08-17 16:59:22 -07001196 max_deq_bytes = clib_min (tc->snd_mss, max_deq_bytes);
Florin Corasb2215d62017-08-01 16:56:58 -07001197 max_deq_bytes = clib_min (available_bytes, max_deq_bytes);
Florin Coras6792ec02017-03-13 03:49:51 -07001198
1199 /* Start is beyond snd_congestion */
Florin Corase87216f2017-08-17 16:59:22 -07001200 start = tc->snd_una + offset;
Florin Coras93992a92017-05-24 18:03:56 -07001201 if (seq_geq (start, tc->snd_congestion))
Florin Coras1f152cd2017-08-18 19:28:03 -07001202 goto done;
Florin Coras6792ec02017-03-13 03:49:51 -07001203
Florin Corasb2215d62017-08-01 16:56:58 -07001204 /* Don't overshoot snd_congestion */
1205 if (seq_gt (start + max_deq_bytes, tc->snd_congestion))
1206 {
1207 max_deq_bytes = tc->snd_congestion - start;
1208 if (max_deq_bytes == 0)
Florin Coras1f152cd2017-08-18 19:28:03 -07001209 goto done;
Florin Corasb2215d62017-08-01 16:56:58 -07001210 }
1211
Florin Coras1f152cd2017-08-18 19:28:03 -07001212 seg_size = max_deq_bytes + MAX_HDRS_LEN;
1213
Florin Corasb2215d62017-08-01 16:56:58 -07001214 /*
1215 * Prepare options
1216 */
Florin Corasc8343412017-05-04 14:25:50 -07001217 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1218
Florin Corasb2215d62017-08-01 16:56:58 -07001219 /*
1220 * Allocate and fill in buffer(s)
1221 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001222
Florin Corasb2215d62017-08-01 16:56:58 -07001223 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1224 return 0;
1225 *b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001226 data = tcp_init_buffer (vm, *b);
Florin Corasb2215d62017-08-01 16:56:58 -07001227
1228 /* Easy case, buffer size greater than mss */
Florin Corase87216f2017-08-17 16:59:22 -07001229 if (PREDICT_TRUE (seg_size <= tm->bytes_per_buffer))
Florin Corasb2215d62017-08-01 16:56:58 -07001230 {
Florin Corase87216f2017-08-17 16:59:22 -07001231 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1232 max_deq_bytes);
Florin Corasb2215d62017-08-01 16:56:58 -07001233 ASSERT (n_bytes == max_deq_bytes);
1234 b[0]->current_length = n_bytes;
1235 tcp_push_hdr_i (tc, *b, tc->state, 0);
1236 }
1237 /* Split mss into multiple buffers */
1238 else
1239 {
1240 u32 chain_bi = ~0, n_bufs_per_seg;
1241 u32 thread_index = vlib_get_thread_index ();
1242 u16 n_peeked, len_to_deq, available_bufs;
1243 vlib_buffer_t *chain_b, *prev_b;
Florin Corasb2215d62017-08-01 16:56:58 -07001244 int i;
1245
Florin Corase87216f2017-08-17 16:59:22 -07001246 n_bufs_per_seg = ceil ((double) seg_size / tm->bytes_per_buffer);
Florin Corasb2215d62017-08-01 16:56:58 -07001247
1248 /* Make sure we have enough buffers */
1249 available_bufs = vec_len (tm->tx_buffers[thread_index]);
1250 if (n_bufs_per_seg > available_bufs)
1251 {
1252 if (tcp_alloc_tx_buffers (tm, thread_index,
1253 VLIB_FRAME_SIZE - available_bufs))
1254 {
1255 tcp_return_buffer (tm);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001256 *b = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001257 return 0;
1258 }
1259 }
1260
Florin Corase87216f2017-08-17 16:59:22 -07001261 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1262 tm->bytes_per_buffer -
1263 MAX_HDRS_LEN);
Florin Corasb2215d62017-08-01 16:56:58 -07001264 b[0]->current_length = n_bytes;
1265 b[0]->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
1266 b[0]->total_length_not_including_first_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001267 max_deq_bytes -= n_bytes;
1268
1269 chain_b = *b;
1270 for (i = 1; i < n_bufs_per_seg; i++)
1271 {
1272 prev_b = chain_b;
1273 len_to_deq = clib_min (max_deq_bytes, tm->bytes_per_buffer);
1274 tcp_get_free_buffer_index (tm, &chain_bi);
1275 ASSERT (chain_bi != (u32) ~ 0);
1276 chain_b = vlib_get_buffer (vm, chain_bi);
1277 chain_b->current_data = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001278 data = vlib_buffer_get_current (chain_b);
1279 n_peeked = stream_session_peek_bytes (&tc->connection, data,
Florin Coras1f152cd2017-08-18 19:28:03 -07001280 offset + n_bytes, len_to_deq);
Florin Corasb2215d62017-08-01 16:56:58 -07001281 ASSERT (n_peeked == len_to_deq);
Florin Coras1f152cd2017-08-18 19:28:03 -07001282 n_bytes += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001283 chain_b->current_length = n_peeked;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001284 chain_b->flags &= VLIB_BUFFER_FREE_LIST_INDEX_MASK;
Florin Coras1f152cd2017-08-18 19:28:03 -07001285 chain_b->next_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001286
1287 /* update previous buffer */
1288 prev_b->next_buffer = chain_bi;
1289 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
1290
Florin Corasb2215d62017-08-01 16:56:58 -07001291 max_deq_bytes -= n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001292 b[0]->total_length_not_including_first_buffer += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001293 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001294
1295 tcp_push_hdr_i (tc, *b, tc->state, 0);
Florin Corasb2215d62017-08-01 16:56:58 -07001296 }
1297
Florin Coras93992a92017-05-24 18:03:56 -07001298 ASSERT (n_bytes > 0);
Florin Corase87216f2017-08-17 16:59:22 -07001299 ASSERT (((*b)->current_data + (*b)->current_length) <=
1300 tm->bytes_per_buffer);
Florin Corasbb292f42017-05-19 09:49:19 -07001301
Florin Coras93992a92017-05-24 18:03:56 -07001302 if (tcp_in_fastrecovery (tc))
1303 tc->snd_rxt_bytes += n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001304
Florin Coras6792ec02017-03-13 03:49:51 -07001305done:
1306 TCP_EVT_DBG (TCP_EVT_CC_RTX, tc, offset, n_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001307 return n_bytes;
1308}
1309
Florin Coras6792ec02017-03-13 03:49:51 -07001310/**
1311 * Reset congestion control, switch cwnd to loss window and try again.
1312 */
1313static void
Florin Coras3e350af2017-03-30 02:54:28 -07001314tcp_rtx_timeout_cc (tcp_connection_t * tc)
Florin Coras6792ec02017-03-13 03:49:51 -07001315{
Florin Coras93992a92017-05-24 18:03:56 -07001316 tc->prev_ssthresh = tc->ssthresh;
1317 tc->prev_cwnd = tc->cwnd;
1318
Florin Coras6792ec02017-03-13 03:49:51 -07001319 /* Cleanly recover cc (also clears up fast retransmit) */
1320 if (tcp_in_fastrecovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001321 tcp_cc_fastrecovery_exit (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001322
1323 /* Start again from the beginning */
Florin Coras93992a92017-05-24 18:03:56 -07001324 tc->ssthresh = clib_max (tcp_flight_size (tc) / 2, 2 * tc->snd_mss);
Florin Coras6792ec02017-03-13 03:49:51 -07001325 tc->cwnd = tcp_loss_wnd (tc);
1326 tc->snd_congestion = tc->snd_una_max;
Florin Corasf03a59a2017-06-09 21:07:32 -07001327
Florin Coras3af90fc2017-05-03 21:09:42 -07001328 tcp_recovery_on (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001329}
1330
Dave Barach68b0fb02017-02-28 15:15:56 -05001331static void
1332tcp_timer_retransmit_handler_i (u32 index, u8 is_syn)
1333{
1334 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001335 vlib_main_t *vm = vlib_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02001336 u32 thread_index = vlib_get_thread_index ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001337 tcp_connection_t *tc;
Florin Corasb2215d62017-08-01 16:56:58 -07001338 vlib_buffer_t *b = 0;
Florin Coras3af90fc2017-05-03 21:09:42 -07001339 u32 bi, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001340
1341 if (is_syn)
1342 {
1343 tc = tcp_half_open_connection_get (index);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001344 /* Note: the connection may have transitioned to ESTABLISHED... */
1345 if (PREDICT_FALSE (tc == 0))
1346 return;
Florin Coras68810622017-07-24 17:40:28 -07001347 tc->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05001348 }
1349 else
1350 {
1351 tc = tcp_connection_get (index, thread_index);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001352 /* Note: the connection may have been closed and pool_put */
1353 if (PREDICT_FALSE (tc == 0))
1354 return;
Florin Coras68810622017-07-24 17:40:28 -07001355 tc->timers[TCP_TIMER_RETRANSMIT] = TCP_TIMER_HANDLE_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05001356 }
1357
Florin Corase04c2992017-03-01 08:17:34 -08001358 if (tc->state >= TCP_STATE_ESTABLISHED)
Dave Barach68b0fb02017-02-28 15:15:56 -05001359 {
Florin Coras93992a92017-05-24 18:03:56 -07001360 /* Lost FIN, retransmit and return */
Florin Corasb2215d62017-08-01 16:56:58 -07001361 if (tcp_is_lost_fin (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001362 {
1363 tcp_send_fin (tc);
1364 return;
1365 }
1366
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001367 /* We're not in recovery so make sure rto_boff is 0 */
1368 if (!tcp_in_recovery (tc) && tc->rto_boff > 0)
1369 {
1370 tc->rto_boff = 0;
1371 tcp_update_rto (tc);
1372 }
1373
1374 /* Increment RTO backoff (also equal to number of retries) and go back
1375 * to first un-acked byte */
1376 tc->rto_boff += 1;
1377 tc->snd_nxt = tc->snd_una;
1378
Florin Coras6792ec02017-03-13 03:49:51 -07001379 /* First retransmit timeout */
1380 if (tc->rto_boff == 1)
Florin Coras3e350af2017-03-30 02:54:28 -07001381 tcp_rtx_timeout_cc (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001382
1383 /* Exponential backoff */
1384 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1385
Florin Coras6792ec02017-03-13 03:49:51 -07001386 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 1);
1387
Dave Barachb7f1faa2017-08-29 11:43:37 -04001388 /* Send one segment. Note that n_bytes may be zero due to buffer shortfall */
Florin Corasb2215d62017-08-01 16:56:58 -07001389 n_bytes = tcp_prepare_retransmit_segment (tc, 0, tc->snd_mss, &b);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001390
Florin Coras93992a92017-05-24 18:03:56 -07001391 /* TODO be less aggressive about this */
Florin Coras3af90fc2017-05-03 21:09:42 -07001392 scoreboard_clear (&tc->sack_sb);
1393
1394 if (n_bytes == 0)
Florin Corase04c2992017-03-01 08:17:34 -08001395 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001396 ASSERT (!b);
1397 if (tc->snd_una == tc->snd_una_max)
1398 return;
1399 ASSERT (tc->rto_boff > 1 && tc->snd_una == tc->snd_congestion);
1400 clib_warning ("retransmit fail: %U", format_tcp_connection, tc, 2);
Florin Corasbb292f42017-05-19 09:49:19 -07001401 /* Try again eventually */
1402 tcp_retransmit_timer_set (tc);
Florin Corase04c2992017-03-01 08:17:34 -08001403 return;
1404 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001405
Dave Barachb7f1faa2017-08-29 11:43:37 -04001406 bi = vlib_get_buffer_index (vm, b);
1407
Florin Coras93992a92017-05-24 18:03:56 -07001408 /* For first retransmit, record timestamp (Eifel detection RFC3522) */
1409 if (tc->rto_boff == 1)
1410 tc->snd_rxt_ts = tcp_time_now ();
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001411
1412 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1413 tcp_retransmit_timer_update (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001414 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001415 /* Retransmit for SYN */
1416 else if (tc->state == TCP_STATE_SYN_SENT)
Florin Coras93992a92017-05-24 18:03:56 -07001417 {
Florin Coras68810622017-07-24 17:40:28 -07001418 /* Half-open connection actually moved to established but we were
1419 * waiting for syn retransmit to pop to call cleanup from the right
1420 * thread. */
1421 if (tc->flags & TCP_CONN_HALF_OPEN_DONE)
1422 {
Florin Coras68810622017-07-24 17:40:28 -07001423 if (tcp_half_open_connection_cleanup (tc))
1424 {
1425 clib_warning ("could not remove half-open connection");
1426 ASSERT (0);
1427 }
1428 return;
1429 }
1430
Dave Barach68b0fb02017-02-28 15:15:56 -05001431 /* Try without increasing RTO a number of times. If this fails,
1432 * start growing RTO exponentially */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001433 tc->rto_boff += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001434 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1435 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1436
Florin Corasb2215d62017-08-01 16:56:58 -07001437 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001438 return;
1439
Florin Corasb2215d62017-08-01 16:56:58 -07001440 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001441 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001442 tcp_make_syn (tc, b);
Florin Corase04c2992017-03-01 08:17:34 -08001443
Dave Barach2c25a622017-06-26 11:35:07 -04001444 tc->rtt_ts = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001445 TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 0);
1446
1447 /* This goes straight to ipx_lookup. Retransmit timer set already */
1448 tcp_push_ip_hdr (tm, tc, b);
1449 tcp_enqueue_to_ip_lookup (vm, b, bi, tc->c_is_ip4);
1450 }
1451 /* Retransmit SYN-ACK */
1452 else if (tc->state == TCP_STATE_SYN_RCVD)
1453 {
1454 tc->rto_boff += 1;
Florin Coras9d063042017-09-14 03:08:00 -04001455 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1456 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001457 tc->rtt_ts = 0;
1458
1459 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1460 return;
1461
1462 b = vlib_get_buffer (vm, bi);
1463 tcp_make_synack (tc, b);
1464 TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 1);
1465
1466 /* Retransmit timer already updated, just enqueue to output */
1467 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001468 }
Florin Coras93992a92017-05-24 18:03:56 -07001469 else
1470 {
1471 ASSERT (tc->state == TCP_STATE_CLOSED);
Florin Coras9d063042017-09-14 03:08:00 -04001472 TCP_DBG ("connection state: %d", tc->state);
Florin Coras93992a92017-05-24 18:03:56 -07001473 return;
1474 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001475}
1476
1477void
1478tcp_timer_retransmit_handler (u32 index)
1479{
1480 tcp_timer_retransmit_handler_i (index, 0);
1481}
1482
1483void
1484tcp_timer_retransmit_syn_handler (u32 index)
1485{
1486 tcp_timer_retransmit_handler_i (index, 1);
1487}
1488
1489/**
Florin Coras3e350af2017-03-30 02:54:28 -07001490 * Got 0 snd_wnd from peer, try to do something about it.
1491 *
1492 */
1493void
1494tcp_timer_persist_handler (u32 index)
1495{
1496 tcp_main_t *tm = vnet_get_tcp_main ();
1497 vlib_main_t *vm = vlib_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02001498 u32 thread_index = vlib_get_thread_index ();
Florin Coras3e350af2017-03-30 02:54:28 -07001499 tcp_connection_t *tc;
1500 vlib_buffer_t *b;
Florin Coras1f152cd2017-08-18 19:28:03 -07001501 u32 bi, old_snd_nxt, max_snd_bytes, available_bytes, offset;
Florin Coras93992a92017-05-24 18:03:56 -07001502 int n_bytes = 0;
Florin Coras1f152cd2017-08-18 19:28:03 -07001503 u8 *data;
Florin Coras3e350af2017-03-30 02:54:28 -07001504
Florin Corasdb84e572017-05-09 18:54:52 -07001505 tc = tcp_connection_get_if_valid (index, thread_index);
1506
1507 if (!tc)
1508 return;
Florin Coras3e350af2017-03-30 02:54:28 -07001509
1510 /* Make sure timer handle is set to invalid */
1511 tc->timers[TCP_TIMER_PERSIST] = TCP_TIMER_HANDLE_INVALID;
1512
1513 /* Problem already solved or worse */
Florin Corasf03a59a2017-06-09 21:07:32 -07001514 if (tc->state == TCP_STATE_CLOSED || tc->state > TCP_STATE_ESTABLISHED
Florin Coras50958952017-08-29 14:50:13 -07001515 || tc->snd_wnd > tc->snd_mss || tcp_in_recovery (tc))
Florin Coras3e350af2017-03-30 02:54:28 -07001516 return;
1517
Florin Coras50958952017-08-29 14:50:13 -07001518 available_bytes = stream_session_tx_fifo_max_dequeue (&tc->connection);
1519 offset = tc->snd_una_max - tc->snd_una;
1520
1521 /* Reprogram persist if no new bytes available to send. We may have data
1522 * next time */
1523 if (!available_bytes)
1524 {
1525 tcp_persist_timer_set (tc);
1526 return;
1527 }
1528
1529 if (available_bytes <= offset)
1530 {
1531 ASSERT (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT));
1532 return;
1533 }
1534
Florin Coras3e350af2017-03-30 02:54:28 -07001535 /* Increment RTO backoff */
1536 tc->rto_boff += 1;
1537 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1538
Florin Corasb2215d62017-08-01 16:56:58 -07001539 /*
1540 * Try to force the first unsent segment (or buffer)
1541 */
Florin Coras66b11312017-07-31 17:18:03 -07001542 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1543 return;
Florin Coras3e350af2017-03-30 02:54:28 -07001544 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001545 data = tcp_init_buffer (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001546
Florin Coras1f152cd2017-08-18 19:28:03 -07001547 tcp_validate_txf_size (tc, offset);
Florin Corasc8343412017-05-04 14:25:50 -07001548 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
Florin Coras1f152cd2017-08-18 19:28:03 -07001549 max_snd_bytes = clib_min (tc->snd_mss, tm->bytes_per_buffer - MAX_HDRS_LEN);
1550 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1551 max_snd_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001552 b->current_length = n_bytes;
Florin Coras1f152cd2017-08-18 19:28:03 -07001553 ASSERT (n_bytes != 0 && (tc->snd_nxt == tc->snd_una_max || tc->rto_boff > 1
1554 || tcp_timer_is_active (tc,
1555 TCP_TIMER_RETRANSMIT)));
Florin Coras93992a92017-05-24 18:03:56 -07001556
1557 /* Allow updating of snd_una_max but don't update snd_nxt */
1558 old_snd_nxt = tc->snd_nxt;
Florin Corasc8343412017-05-04 14:25:50 -07001559 tcp_push_hdr_i (tc, b, tc->state, 0);
Florin Coras93992a92017-05-24 18:03:56 -07001560 tc->snd_nxt = old_snd_nxt;
Florin Coras3e350af2017-03-30 02:54:28 -07001561 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1562
Florin Coras1f152cd2017-08-18 19:28:03 -07001563 /* Just sent new data, enable retransmit */
1564 tcp_retransmit_timer_update (tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001565}
1566
1567/**
Florin Coras6792ec02017-03-13 03:49:51 -07001568 * Retransmit first unacked segment
1569 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001570void
1571tcp_retransmit_first_unacked (tcp_connection_t * tc)
1572{
Florin Coras6792ec02017-03-13 03:49:51 -07001573 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001574 vlib_buffer_t *b;
Florin Corasb2215d62017-08-01 16:56:58 -07001575 u32 bi, old_snd_nxt, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001576
Florin Coras93992a92017-05-24 18:03:56 -07001577 old_snd_nxt = tc->snd_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001578 tc->snd_nxt = tc->snd_una;
1579
Florin Coras6792ec02017-03-13 03:49:51 -07001580 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2);
Florin Corasb2215d62017-08-01 16:56:58 -07001581 n_bytes = tcp_prepare_retransmit_segment (tc, 0, tc->snd_mss, &b);
1582 if (!n_bytes)
1583 return;
1584 bi = vlib_get_buffer_index (vm, b);
Florin Coras6792ec02017-03-13 03:49:51 -07001585 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras5921f982017-04-03 18:00:00 -07001586
Florin Coras93992a92017-05-24 18:03:56 -07001587 tc->snd_nxt = old_snd_nxt;
Florin Coras6792ec02017-03-13 03:49:51 -07001588}
1589
1590/**
Florin Coras93992a92017-05-24 18:03:56 -07001591 * Do fast retransmit with SACKs
Florin Coras6792ec02017-03-13 03:49:51 -07001592 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001593void
Florin Coras93992a92017-05-24 18:03:56 -07001594tcp_fast_retransmit_sack (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001595{
Florin Coras6792ec02017-03-13 03:49:51 -07001596 vlib_main_t *vm = vlib_get_main ();
Florin Coras1f152cd2017-08-18 19:28:03 -07001597 u32 n_written = 0, offset, max_bytes;
Florin Corasb2215d62017-08-01 16:56:58 -07001598 vlib_buffer_t *b = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001599 sack_scoreboard_hole_t *hole;
1600 sack_scoreboard_t *sb;
1601 u32 bi, old_snd_nxt;
1602 int snd_space;
1603 u8 snd_limited = 0, can_rescue = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001604
1605 ASSERT (tcp_in_fastrecovery (tc));
Florin Coras6792ec02017-03-13 03:49:51 -07001606 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001607
Florin Coras93992a92017-05-24 18:03:56 -07001608 old_snd_nxt = tc->snd_nxt;
1609 sb = &tc->sack_sb;
1610 snd_space = tcp_available_snd_space (tc);
1611
1612 hole = scoreboard_get_hole (sb, sb->cur_rxt_hole);
1613 while (hole && snd_space > 0)
1614 {
Florin Coras93992a92017-05-24 18:03:56 -07001615 hole = scoreboard_next_rxt_hole (sb, hole,
1616 tcp_fastrecovery_sent_1_smss (tc),
1617 &can_rescue, &snd_limited);
1618 if (!hole)
1619 {
1620 if (!can_rescue || !(seq_lt (sb->rescue_rxt, tc->snd_una)
1621 || seq_gt (sb->rescue_rxt,
1622 tc->snd_congestion)))
1623 break;
1624
1625 /* If rescue rxt undefined or less than snd_una then one segment of
1626 * up to SMSS octets that MUST include the highest outstanding
1627 * unSACKed sequence number SHOULD be returned, and RescueRxt set to
1628 * RecoveryPoint. HighRxt MUST NOT be updated.
1629 */
Florin Coras1f152cd2017-08-18 19:28:03 -07001630 max_bytes = clib_min (tc->snd_mss,
1631 tc->snd_congestion - tc->snd_una);
1632 max_bytes = clib_min (max_bytes, snd_space);
Florin Coras93992a92017-05-24 18:03:56 -07001633 offset = tc->snd_congestion - tc->snd_una - max_bytes;
1634 sb->rescue_rxt = tc->snd_congestion;
1635 tc->snd_nxt = tc->snd_una + offset;
Florin Corasb2215d62017-08-01 16:56:58 -07001636 n_written = tcp_prepare_retransmit_segment (tc, offset, max_bytes,
1637 &b);
1638 ASSERT (n_written);
1639 bi = vlib_get_buffer_index (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001640 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1641 break;
1642 }
1643
Florin Coras1f152cd2017-08-18 19:28:03 -07001644 max_bytes = clib_min (hole->end - sb->high_rxt, snd_space);
1645 max_bytes = snd_limited ? clib_min (max_bytes, tc->snd_mss) : max_bytes;
1646 if (max_bytes == 0)
1647 break;
Florin Coras93992a92017-05-24 18:03:56 -07001648 offset = sb->high_rxt - tc->snd_una;
Florin Coras1f152cd2017-08-18 19:28:03 -07001649 tc->snd_nxt = sb->high_rxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001650 n_written = tcp_prepare_retransmit_segment (tc, offset, max_bytes, &b);
Florin Coras93992a92017-05-24 18:03:56 -07001651
1652 /* Nothing left to retransmit */
1653 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001654 break;
Florin Coras93992a92017-05-24 18:03:56 -07001655
Florin Corasb2215d62017-08-01 16:56:58 -07001656 bi = vlib_get_buffer_index (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001657 sb->high_rxt += n_written;
1658 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras1f152cd2017-08-18 19:28:03 -07001659 ASSERT (n_written <= snd_space);
Florin Coras93992a92017-05-24 18:03:56 -07001660 snd_space -= n_written;
1661 }
1662
1663 /* If window allows, send 1 SMSS of new data */
1664 tc->snd_nxt = old_snd_nxt;
1665}
1666
1667/**
1668 * Fast retransmit without SACK info
1669 */
1670void
1671tcp_fast_retransmit_no_sack (tcp_connection_t * tc)
1672{
Florin Coras93992a92017-05-24 18:03:56 -07001673 vlib_main_t *vm = vlib_get_main ();
1674 u32 n_written = 0, offset = 0, bi, old_snd_nxt;
1675 int snd_space;
1676 vlib_buffer_t *b;
1677
1678 ASSERT (tcp_in_fastrecovery (tc));
1679 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0);
1680
1681 /* Start resending from first un-acked segment */
1682 old_snd_nxt = tc->snd_nxt;
1683 tc->snd_nxt = tc->snd_una;
1684 snd_space = tcp_available_snd_space (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001685
1686 while (snd_space > 0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001687 {
Florin Coras93992a92017-05-24 18:03:56 -07001688 offset += n_written;
Florin Corasb2215d62017-08-01 16:56:58 -07001689 n_written = tcp_prepare_retransmit_segment (tc, offset, snd_space, &b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001690
1691 /* Nothing left to retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001692 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001693 break;
Dave Barach68b0fb02017-02-28 15:15:56 -05001694
Florin Corasb2215d62017-08-01 16:56:58 -07001695 bi = vlib_get_buffer_index (vm, b);
Florin Coras6792ec02017-03-13 03:49:51 -07001696 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras6792ec02017-03-13 03:49:51 -07001697 snd_space -= n_written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001698 }
1699
Florin Coras93992a92017-05-24 18:03:56 -07001700 /* Restore snd_nxt. If window allows, send 1 SMSS of new data */
1701 tc->snd_nxt = old_snd_nxt;
1702}
1703
1704/**
1705 * Do fast retransmit
1706 */
1707void
1708tcp_fast_retransmit (tcp_connection_t * tc)
1709{
1710 if (tcp_opts_sack_permitted (&tc->rcv_opts)
1711 && scoreboard_first_hole (&tc->sack_sb))
1712 tcp_fast_retransmit_sack (tc);
1713 else
1714 tcp_fast_retransmit_no_sack (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001715}
1716
1717always_inline u32
1718tcp_session_has_ooo_data (tcp_connection_t * tc)
1719{
1720 stream_session_t *s =
1721 stream_session_get (tc->c_s_index, tc->c_thread_index);
1722 return svm_fifo_has_ooo_data (s->server_rx_fifo);
1723}
1724
1725always_inline uword
1726tcp46_output_inline (vlib_main_t * vm,
1727 vlib_node_runtime_t * node,
1728 vlib_frame_t * from_frame, int is_ip4)
1729{
Dave Barach68b0fb02017-02-28 15:15:56 -05001730 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02001731 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05001732
1733 from = vlib_frame_vector_args (from_frame);
1734 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05001735 next_index = node->cached_next_index;
Florin Coras82d3ec82017-08-14 08:10:42 -07001736 tcp_set_time_now (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001737
1738 while (n_left_from > 0)
1739 {
1740 u32 n_left_to_next;
1741
1742 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1743
1744 while (n_left_from > 0 && n_left_to_next > 0)
1745 {
1746 u32 bi0;
1747 vlib_buffer_t *b0;
1748 tcp_connection_t *tc0;
Clement Durand6cf260c2017-04-13 13:27:04 +02001749 tcp_tx_trace_t *t0;
1750 tcp_header_t *th0 = 0;
Dave Barach2c25a622017-06-26 11:35:07 -04001751 u32 error0 = TCP_ERROR_PKTS_SENT, next0 = TCP_OUTPUT_NEXT_IP_LOOKUP;
Dave Barach68b0fb02017-02-28 15:15:56 -05001752
1753 bi0 = from[0];
1754 to_next[0] = bi0;
1755 from += 1;
1756 to_next += 1;
1757 n_left_from -= 1;
1758 n_left_to_next -= 1;
1759
1760 b0 = vlib_get_buffer (vm, bi0);
1761 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
1762 my_thread_index);
Florin Corasd79b41e2017-03-04 05:37:52 -08001763 if (PREDICT_FALSE (tc0 == 0 || tc0->state == TCP_STATE_CLOSED))
1764 {
1765 error0 = TCP_ERROR_INVALID_CONNECTION;
1766 next0 = TCP_OUTPUT_NEXT_DROP;
1767 goto done;
1768 }
1769
Dave Barach68b0fb02017-02-28 15:15:56 -05001770 th0 = vlib_buffer_get_current (b0);
Florin Corase69f4952017-03-07 10:06:24 -08001771 TCP_EVT_DBG (TCP_EVT_OUTPUT, tc0, th0->flags, b0->current_length);
Dave Barach68b0fb02017-02-28 15:15:56 -05001772
1773 if (is_ip4)
1774 {
Florin Coras66b11312017-07-31 17:18:03 -07001775 vlib_buffer_push_ip4 (vm, b0, &tc0->c_lcl_ip4, &tc0->c_rmt_ip4,
1776 IP_PROTOCOL_TCP, 1);
1777 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
Dave Barach2c0a4f42017-06-29 09:30:15 -04001778 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
1779 th0->checksum = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001780 }
1781 else
1782 {
1783 ip6_header_t *ih0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001784 ih0 = vlib_buffer_push_ip6 (vm, b0, &tc0->c_lcl_ip6,
1785 &tc0->c_rmt_ip6, IP_PROTOCOL_TCP);
Florin Coras66b11312017-07-31 17:18:03 -07001786 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
Dave Barach2c0a4f42017-06-29 09:30:15 -04001787 vnet_buffer (b0)->l3_hdr_offset = (u8 *) ih0 - b0->data;
1788 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
1789 th0->checksum = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001790 }
1791
1792 /* Filter out DUPACKs if there are no OOO segments left */
1793 if (PREDICT_FALSE
1794 (vnet_buffer (b0)->tcp.flags & TCP_BUF_FLAG_DUPACK))
1795 {
Dave Barach68b0fb02017-02-28 15:15:56 -05001796 if (!tcp_session_has_ooo_data (tc0))
1797 {
1798 error0 = TCP_ERROR_FILTERED_DUPACKS;
1799 next0 = TCP_OUTPUT_NEXT_DROP;
1800 goto done;
1801 }
1802 }
1803
Dave Barach68b0fb02017-02-28 15:15:56 -05001804 /* Stop DELACK timer and fix flags */
Florin Coras6792ec02017-03-13 03:49:51 -07001805 tc0->flags &= ~(TCP_CONN_SNDACK);
Florin Corasf03a59a2017-06-09 21:07:32 -07001806 tcp_timer_reset (tc0, TCP_TIMER_DELACK);
Dave Barach68b0fb02017-02-28 15:15:56 -05001807
1808 /* If not retransmitting
Florin Coras3af90fc2017-05-03 21:09:42 -07001809 * 1) update snd_una_max (SYN, SYNACK, FIN)
Dave Barach68b0fb02017-02-28 15:15:56 -05001810 * 2) If we're not tracking an ACK, start tracking */
1811 if (seq_lt (tc0->snd_una_max, tc0->snd_nxt))
1812 {
1813 tc0->snd_una_max = tc0->snd_nxt;
1814 if (tc0->rtt_ts == 0)
1815 {
1816 tc0->rtt_ts = tcp_time_now ();
1817 tc0->rtt_seq = tc0->snd_nxt;
1818 }
1819 }
1820
1821 /* Set the retransmit timer if not set already and not
1822 * doing a pure ACK */
1823 if (!tcp_timer_is_active (tc0, TCP_TIMER_RETRANSMIT)
1824 && tc0->snd_nxt != tc0->snd_una)
1825 {
Florin Corasd79b41e2017-03-04 05:37:52 -08001826 tcp_retransmit_timer_set (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001827 tc0->rto_boff = 0;
1828 }
1829
Dave Barach2c25a622017-06-26 11:35:07 -04001830#if 0
Florin Corasf6359c82017-06-19 12:26:09 -04001831 /* Make sure we haven't lost route to our peer */
1832 if (PREDICT_FALSE (tc0->last_fib_check
1833 < tc0->snd_opts.tsval + TCP_FIB_RECHECK_PERIOD))
1834 {
1835 if (PREDICT_TRUE
1836 (tc0->c_rmt_fei == tcp_lookup_rmt_in_fib (tc0)))
1837 {
1838 tc0->last_fib_check = tc0->snd_opts.tsval;
1839 }
1840 else
1841 {
1842 clib_warning ("lost connection to peer");
1843 tcp_connection_reset (tc0);
1844 goto done;
1845 }
1846 }
1847
1848 /* Use pre-computed dpo to set next node */
1849 next0 = tc0->c_rmt_dpo.dpoi_next_node;
1850 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = tc0->c_rmt_dpo.dpoi_index;
Dave Barach2c25a622017-06-26 11:35:07 -04001851#endif
1852
1853 vnet_buffer (b0)->sw_if_index[VLIB_RX] = 0;
1854 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001855
Damjan Marion213b5aa2017-07-13 21:19:27 +02001856 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001857 done:
Florin Corase69f4952017-03-07 10:06:24 -08001858 b0->error = node->errors[error0];
Dave Barach68b0fb02017-02-28 15:15:56 -05001859 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
1860 {
Clement Durand6cf260c2017-04-13 13:27:04 +02001861 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
1862 if (th0)
1863 {
1864 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
1865 }
1866 else
1867 {
1868 memset (&t0->tcp_header, 0, sizeof (t0->tcp_header));
1869 }
1870 clib_memcpy (&t0->tcp_connection, tc0,
1871 sizeof (t0->tcp_connection));
Dave Barach68b0fb02017-02-28 15:15:56 -05001872 }
1873
1874 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1875 n_left_to_next, bi0, next0);
1876 }
1877
1878 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1879 }
1880
1881 return from_frame->n_vectors;
1882}
1883
1884static uword
1885tcp4_output (vlib_main_t * vm, vlib_node_runtime_t * node,
1886 vlib_frame_t * from_frame)
1887{
1888 return tcp46_output_inline (vm, node, from_frame, 1 /* is_ip4 */ );
1889}
1890
1891static uword
1892tcp6_output (vlib_main_t * vm, vlib_node_runtime_t * node,
1893 vlib_frame_t * from_frame)
1894{
1895 return tcp46_output_inline (vm, node, from_frame, 0 /* is_ip4 */ );
1896}
1897
Florin Corase69f4952017-03-07 10:06:24 -08001898/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001899VLIB_REGISTER_NODE (tcp4_output_node) =
1900{
1901 .function = tcp4_output,.name = "tcp4-output",
1902 /* Takes a vector of packets. */
Florin Corase69f4952017-03-07 10:06:24 -08001903 .vector_size = sizeof (u32),
1904 .n_errors = TCP_N_ERROR,
1905 .error_strings = tcp_error_strings,
1906 .n_next_nodes = TCP_OUTPUT_N_NEXT,
1907 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05001908#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
1909 foreach_tcp4_output_next
1910#undef _
Florin Corase69f4952017-03-07 10:06:24 -08001911 },
1912 .format_buffer = format_tcp_header,
1913 .format_trace = format_tcp_tx_trace,
1914};
1915/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001916
Florin Corase69f4952017-03-07 10:06:24 -08001917VLIB_NODE_FUNCTION_MULTIARCH (tcp4_output_node, tcp4_output);
1918
1919/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001920VLIB_REGISTER_NODE (tcp6_output_node) =
1921{
Florin Corase69f4952017-03-07 10:06:24 -08001922 .function = tcp6_output,
1923 .name = "tcp6-output",
Dave Barach68b0fb02017-02-28 15:15:56 -05001924 /* Takes a vector of packets. */
Florin Corase69f4952017-03-07 10:06:24 -08001925 .vector_size = sizeof (u32),
1926 .n_errors = TCP_N_ERROR,
1927 .error_strings = tcp_error_strings,
1928 .n_next_nodes = TCP_OUTPUT_N_NEXT,
1929 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05001930#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
1931 foreach_tcp6_output_next
1932#undef _
Florin Corase69f4952017-03-07 10:06:24 -08001933 },
1934 .format_buffer = format_tcp_header,
1935 .format_trace = format_tcp_tx_trace,
1936};
1937/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001938
Florin Corase69f4952017-03-07 10:06:24 -08001939VLIB_NODE_FUNCTION_MULTIARCH (tcp6_output_node, tcp6_output);
1940
1941u32
Dave Barach68b0fb02017-02-28 15:15:56 -05001942tcp_push_header (transport_connection_t * tconn, vlib_buffer_t * b)
1943{
1944 tcp_connection_t *tc;
1945
1946 tc = (tcp_connection_t *) tconn;
Florin Corasc8343412017-05-04 14:25:50 -07001947 tcp_push_hdr_i (tc, b, TCP_STATE_ESTABLISHED, 0);
Florin Coras1f152cd2017-08-18 19:28:03 -07001948 ASSERT (seq_leq (tc->snd_una_max, tc->snd_una + tc->snd_wnd));
Florin Coras93992a92017-05-24 18:03:56 -07001949
Florin Corasf03a59a2017-06-09 21:07:32 -07001950 if (tc->rtt_ts == 0 && !tcp_in_cong_recovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001951 {
1952 tc->rtt_ts = tcp_time_now ();
1953 tc->rtt_seq = tc->snd_nxt;
1954 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001955 return 0;
1956}
1957
1958typedef enum _tcp_reset_next
1959{
1960 TCP_RESET_NEXT_DROP,
1961 TCP_RESET_NEXT_IP_LOOKUP,
1962 TCP_RESET_N_NEXT
1963} tcp_reset_next_t;
1964
1965#define foreach_tcp4_reset_next \
1966 _(DROP, "error-drop") \
1967 _(IP_LOOKUP, "ip4-lookup")
1968
1969#define foreach_tcp6_reset_next \
1970 _(DROP, "error-drop") \
1971 _(IP_LOOKUP, "ip6-lookup")
1972
1973static uword
1974tcp46_send_reset_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1975 vlib_frame_t * from_frame, u8 is_ip4)
1976{
1977 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02001978 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05001979
1980 from = vlib_frame_vector_args (from_frame);
1981 n_left_from = from_frame->n_vectors;
1982
1983 next_index = node->cached_next_index;
1984
1985 while (n_left_from > 0)
1986 {
1987 u32 n_left_to_next;
1988
1989 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1990
1991 while (n_left_from > 0 && n_left_to_next > 0)
1992 {
1993 u32 bi0;
1994 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02001995 tcp_tx_trace_t *t0;
1996 tcp_header_t *th0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001997 u32 error0 = TCP_ERROR_RST_SENT, next0 = TCP_RESET_NEXT_IP_LOOKUP;
1998
1999 bi0 = from[0];
2000 to_next[0] = bi0;
2001 from += 1;
2002 to_next += 1;
2003 n_left_from -= 1;
2004 n_left_to_next -= 1;
2005
2006 b0 = vlib_get_buffer (vm, bi0);
2007
2008 if (tcp_make_reset_in_place (vm, b0, vnet_buffer (b0)->tcp.flags,
2009 my_thread_index, is_ip4))
2010 {
2011 error0 = TCP_ERROR_LOOKUP_DROPS;
2012 next0 = TCP_RESET_NEXT_DROP;
2013 goto done;
2014 }
2015
2016 /* Prepare to send to IP lookup */
2017 vnet_buffer (b0)->sw_if_index[VLIB_TX] = 0;
2018 next0 = TCP_RESET_NEXT_IP_LOOKUP;
2019
2020 done:
Florin Corase69f4952017-03-07 10:06:24 -08002021 b0->error = node->errors[error0];
Damjan Marion213b5aa2017-07-13 21:19:27 +02002022 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002023 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2024 {
Clement Durand6cf260c2017-04-13 13:27:04 +02002025 th0 = vlib_buffer_get_current (b0);
2026 if (is_ip4)
2027 th0 = ip4_next_header ((ip4_header_t *) th0);
2028 else
2029 th0 = ip6_next_header ((ip6_header_t *) th0);
Clement Durand6cf260c2017-04-13 13:27:04 +02002030 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2031 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
Dave Barach68b0fb02017-02-28 15:15:56 -05002032 }
2033
2034 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2035 n_left_to_next, bi0, next0);
2036 }
2037 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2038 }
2039 return from_frame->n_vectors;
2040}
2041
2042static uword
2043tcp4_send_reset (vlib_main_t * vm, vlib_node_runtime_t * node,
2044 vlib_frame_t * from_frame)
2045{
2046 return tcp46_send_reset_inline (vm, node, from_frame, 1);
2047}
2048
2049static uword
2050tcp6_send_reset (vlib_main_t * vm, vlib_node_runtime_t * node,
2051 vlib_frame_t * from_frame)
2052{
2053 return tcp46_send_reset_inline (vm, node, from_frame, 0);
2054}
2055
2056/* *INDENT-OFF* */
2057VLIB_REGISTER_NODE (tcp4_reset_node) = {
2058 .function = tcp4_send_reset,
2059 .name = "tcp4-reset",
2060 .vector_size = sizeof (u32),
2061 .n_errors = TCP_N_ERROR,
2062 .error_strings = tcp_error_strings,
2063 .n_next_nodes = TCP_RESET_N_NEXT,
2064 .next_nodes = {
2065#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2066 foreach_tcp4_reset_next
2067#undef _
2068 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002069 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002070};
2071/* *INDENT-ON* */
2072
Florin Corase69f4952017-03-07 10:06:24 -08002073VLIB_NODE_FUNCTION_MULTIARCH (tcp4_reset_node, tcp4_send_reset);
2074
Dave Barach68b0fb02017-02-28 15:15:56 -05002075/* *INDENT-OFF* */
2076VLIB_REGISTER_NODE (tcp6_reset_node) = {
2077 .function = tcp6_send_reset,
2078 .name = "tcp6-reset",
2079 .vector_size = sizeof (u32),
2080 .n_errors = TCP_N_ERROR,
2081 .error_strings = tcp_error_strings,
2082 .n_next_nodes = TCP_RESET_N_NEXT,
2083 .next_nodes = {
2084#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2085 foreach_tcp6_reset_next
2086#undef _
2087 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002088 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002089};
2090/* *INDENT-ON* */
2091
Florin Corase69f4952017-03-07 10:06:24 -08002092VLIB_NODE_FUNCTION_MULTIARCH (tcp6_reset_node, tcp6_send_reset);
2093
Dave Barach68b0fb02017-02-28 15:15:56 -05002094/*
2095 * fd.io coding-style-patch-verification: ON
2096 *
2097 * Local Variables:
2098 * eval: (c-set-style "gnu")
2099 * End:
2100 */