blob: a036287a51c5a115abc413e0875ffd09e8af30e3 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vnet/tcp/tcp.h>
17#include <vnet/lisp-cp/packets.h>
Florin Corasb2215d62017-08-01 16:56:58 -070018#include <math.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050019
20vlib_node_registration_t tcp4_output_node;
21vlib_node_registration_t tcp6_output_node;
22
Dave Barach2c25a622017-06-26 11:35:07 -040023typedef enum _tcp_output_next
Dave Barach68b0fb02017-02-28 15:15:56 -050024{
25 TCP_OUTPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -040026 TCP_OUTPUT_NEXT_IP_LOOKUP,
Florin Corasf9d05682018-04-26 08:26:52 -070027 TCP_OUTPUT_NEXT_IP_REWRITE,
28 TCP_OUTPUT_NEXT_IP_ARP,
Dave Barach68b0fb02017-02-28 15:15:56 -050029 TCP_OUTPUT_N_NEXT
30} tcp_output_next_t;
31
32#define foreach_tcp4_output_next \
33 _ (DROP, "error-drop") \
Florin Corasf9d05682018-04-26 08:26:52 -070034 _ (IP_LOOKUP, "ip4-lookup") \
35 _ (IP_REWRITE, "ip4-rewrite") \
36 _ (IP_ARP, "ip4-arp")
Dave Barach68b0fb02017-02-28 15:15:56 -050037
38#define foreach_tcp6_output_next \
39 _ (DROP, "error-drop") \
Florin Corasf9d05682018-04-26 08:26:52 -070040 _ (IP_LOOKUP, "ip6-lookup") \
41 _ (IP_REWRITE, "ip6-rewrite") \
42 _ (IP_ARP, "ip6-discover-neighbor")
Dave Barach68b0fb02017-02-28 15:15:56 -050043
44static char *tcp_error_strings[] = {
45#define tcp_error(n,s) s,
46#include <vnet/tcp/tcp_error.def>
47#undef tcp_error
48};
49
50typedef struct
51{
Clement Durand6cf260c2017-04-13 13:27:04 +020052 tcp_header_t tcp_header;
53 tcp_connection_t tcp_connection;
Dave Barach68b0fb02017-02-28 15:15:56 -050054} tcp_tx_trace_t;
55
Florin Corasf6d68ed2017-05-07 19:12:02 -070056u16 dummy_mtu = 1460;
Dave Barach68b0fb02017-02-28 15:15:56 -050057
58u8 *
59format_tcp_tx_trace (u8 * s, va_list * args)
60{
61 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
62 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Clement Durand6cf260c2017-04-13 13:27:04 +020063 tcp_tx_trace_t *t = va_arg (*args, tcp_tx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +020064 u32 indent = format_get_indent (s);
Dave Barach68b0fb02017-02-28 15:15:56 -050065
Clement Durand6cf260c2017-04-13 13:27:04 +020066 s = format (s, "%U\n%U%U",
67 format_tcp_header, &t->tcp_header, 128,
68 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -070069 format_tcp_connection, &t->tcp_connection, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -050070
71 return s;
72}
73
Dave Barach68b0fb02017-02-28 15:15:56 -050074static u8
Florin Coras4eeeaaf2017-09-05 14:03:37 -040075tcp_window_compute_scale (u32 window)
Dave Barach68b0fb02017-02-28 15:15:56 -050076{
77 u8 wnd_scale = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -040078 while (wnd_scale < TCP_MAX_WND_SCALE && (window >> wnd_scale) > TCP_WND_MAX)
Dave Barach68b0fb02017-02-28 15:15:56 -050079 wnd_scale++;
80 return wnd_scale;
81}
82
83/**
Florin Coras6534b7a2017-07-18 05:38:03 -040084 * Update max segment size we're able to process.
85 *
86 * The value is constrained by our interface's MTU and IP options. It is
87 * also what we advertise to our peer.
88 */
89void
90tcp_update_rcv_mss (tcp_connection_t * tc)
91{
92 /* TODO find our iface MTU */
Florin Corasb2215d62017-08-01 16:56:58 -070093 tc->mss = dummy_mtu - sizeof (tcp_header_t);
Florin Coras6534b7a2017-07-18 05:38:03 -040094}
95
96/**
97 * TCP's initial window
Florin Corase04c2992017-03-01 08:17:34 -080098 */
99always_inline u32
100tcp_initial_wnd_unscaled (tcp_connection_t * tc)
101{
Florin Coras6534b7a2017-07-18 05:38:03 -0400102 /* RFC 6928 recommends the value lower. However at the time our connections
103 * are initialized, fifos may not be allocated. Therefore, advertise the
104 * smallest possible unscaled window size and update once fifos are
105 * assigned to the session.
106 */
107 /*
108 tcp_update_rcv_mss (tc);
109 TCP_IW_N_SEGMENTS * tc->mss;
110 */
111 return TCP_MIN_RX_FIFO_SIZE;
Florin Corase04c2992017-03-01 08:17:34 -0800112}
113
114/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500115 * Compute initial window and scale factor. As per RFC1323, window field in
116 * SYN and SYN-ACK segments is never scaled.
117 */
118u32
119tcp_initial_window_to_advertise (tcp_connection_t * tc)
120{
Florin Corase04c2992017-03-01 08:17:34 -0800121 u32 max_fifo;
Dave Barach68b0fb02017-02-28 15:15:56 -0500122
123 /* Initial wnd for SYN. Fifos are not allocated yet.
Florin Corase04c2992017-03-01 08:17:34 -0800124 * Use some predefined value. For SYN-ACK we still want the
125 * scale to be computed in the same way */
126 max_fifo = TCP_MAX_RX_FIFO_SIZE;
Dave Barach68b0fb02017-02-28 15:15:56 -0500127
Florin Corase04c2992017-03-01 08:17:34 -0800128 tc->rcv_wscale = tcp_window_compute_scale (max_fifo);
129 tc->rcv_wnd = tcp_initial_wnd_unscaled (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500130
131 return clib_min (tc->rcv_wnd, TCP_WND_MAX);
132}
133
134/**
135 * Compute and return window to advertise, scaled as per RFC1323
136 */
137u32
138tcp_window_to_advertise (tcp_connection_t * tc, tcp_state_t state)
139{
Florin Corase04c2992017-03-01 08:17:34 -0800140 if (state < TCP_STATE_ESTABLISHED)
Dave Barach68b0fb02017-02-28 15:15:56 -0500141 return tcp_initial_window_to_advertise (tc);
142
Florin Coras6792ec02017-03-13 03:49:51 -0700143 tcp_update_rcv_wnd (tc);
144
145 if (tc->rcv_wnd == 0)
146 {
147 tc->flags |= TCP_CONN_SENT_RCV_WND0;
148 }
149 else
150 {
151 tc->flags &= ~TCP_CONN_SENT_RCV_WND0;
152 }
153
154 return tc->rcv_wnd >> tc->rcv_wscale;
155}
156
157void
158tcp_update_rcv_wnd (tcp_connection_t * tc)
159{
160 i32 observed_wnd;
161 u32 available_space, max_fifo, wnd;
162
Florin Corase04c2992017-03-01 08:17:34 -0800163 /*
164 * Figure out how much space we have available
165 */
Florin Corasd2aab832018-05-22 11:39:59 -0700166 available_space = transport_max_rx_enqueue (&tc->connection);
167 max_fifo = transport_rx_fifo_size (&tc->connection);
Dave Barach68b0fb02017-02-28 15:15:56 -0500168
Florin Coras93992a92017-05-24 18:03:56 -0700169 ASSERT (tc->rcv_opts.mss < max_fifo);
170 if (available_space < tc->rcv_opts.mss && available_space < max_fifo >> 3)
Florin Corase04c2992017-03-01 08:17:34 -0800171 available_space = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500172
Florin Corase04c2992017-03-01 08:17:34 -0800173 /*
174 * Use the above and what we know about what we've previously advertised
175 * to compute the new window
176 */
Florin Coras6792ec02017-03-13 03:49:51 -0700177 observed_wnd = (i32) tc->rcv_wnd - (tc->rcv_nxt - tc->rcv_las);
178 if (observed_wnd < 0)
179 observed_wnd = 0;
Florin Corase04c2992017-03-01 08:17:34 -0800180
181 /* Bad. Thou shalt not shrink */
182 if (available_space < observed_wnd)
183 {
Florin Coras6792ec02017-03-13 03:49:51 -0700184 wnd = observed_wnd;
Florin Coras3e350af2017-03-30 02:54:28 -0700185 TCP_EVT_DBG (TCP_EVT_RCV_WND_SHRUNK, tc, observed_wnd, available_space);
Florin Corase04c2992017-03-01 08:17:34 -0800186 }
Florin Coras6792ec02017-03-13 03:49:51 -0700187 else
Florin Corase04c2992017-03-01 08:17:34 -0800188 {
Florin Coras6792ec02017-03-13 03:49:51 -0700189 wnd = available_space;
Florin Corase04c2992017-03-01 08:17:34 -0800190 }
191
Florin Coras3e350af2017-03-30 02:54:28 -0700192 /* Make sure we have a multiple of rcv_wscale */
193 if (wnd && tc->rcv_wscale)
194 {
195 wnd &= ~(1 << tc->rcv_wscale);
196 if (wnd == 0)
197 wnd = 1 << tc->rcv_wscale;
198 }
Florin Coras6792ec02017-03-13 03:49:51 -0700199
200 tc->rcv_wnd = clib_min (wnd, TCP_WND_MAX << tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500201}
202
203/**
204 * Write TCP options to segment.
205 */
206u32
207tcp_options_write (u8 * data, tcp_options_t * opts)
208{
209 u32 opts_len = 0;
210 u32 buf, seq_len = 4;
211
212 if (tcp_opts_mss (opts))
213 {
214 *data++ = TCP_OPTION_MSS;
215 *data++ = TCP_OPTION_LEN_MSS;
216 buf = clib_host_to_net_u16 (opts->mss);
217 clib_memcpy (data, &buf, sizeof (opts->mss));
218 data += sizeof (opts->mss);
219 opts_len += TCP_OPTION_LEN_MSS;
220 }
221
222 if (tcp_opts_wscale (opts))
223 {
224 *data++ = TCP_OPTION_WINDOW_SCALE;
225 *data++ = TCP_OPTION_LEN_WINDOW_SCALE;
226 *data++ = opts->wscale;
227 opts_len += TCP_OPTION_LEN_WINDOW_SCALE;
228 }
229
230 if (tcp_opts_sack_permitted (opts))
231 {
232 *data++ = TCP_OPTION_SACK_PERMITTED;
233 *data++ = TCP_OPTION_LEN_SACK_PERMITTED;
234 opts_len += TCP_OPTION_LEN_SACK_PERMITTED;
235 }
236
237 if (tcp_opts_tstamp (opts))
238 {
239 *data++ = TCP_OPTION_TIMESTAMP;
240 *data++ = TCP_OPTION_LEN_TIMESTAMP;
241 buf = clib_host_to_net_u32 (opts->tsval);
242 clib_memcpy (data, &buf, sizeof (opts->tsval));
243 data += sizeof (opts->tsval);
244 buf = clib_host_to_net_u32 (opts->tsecr);
245 clib_memcpy (data, &buf, sizeof (opts->tsecr));
246 data += sizeof (opts->tsecr);
247 opts_len += TCP_OPTION_LEN_TIMESTAMP;
248 }
249
250 if (tcp_opts_sack (opts))
251 {
252 int i;
253 u32 n_sack_blocks = clib_min (vec_len (opts->sacks),
254 TCP_OPTS_MAX_SACK_BLOCKS);
255
256 if (n_sack_blocks != 0)
257 {
258 *data++ = TCP_OPTION_SACK_BLOCK;
259 *data++ = 2 + n_sack_blocks * TCP_OPTION_LEN_SACK_BLOCK;
260 for (i = 0; i < n_sack_blocks; i++)
261 {
262 buf = clib_host_to_net_u32 (opts->sacks[i].start);
263 clib_memcpy (data, &buf, seq_len);
264 data += seq_len;
265 buf = clib_host_to_net_u32 (opts->sacks[i].end);
266 clib_memcpy (data, &buf, seq_len);
267 data += seq_len;
268 }
269 opts_len += 2 + n_sack_blocks * TCP_OPTION_LEN_SACK_BLOCK;
270 }
271 }
272
273 /* Terminate TCP options */
274 if (opts_len % 4)
275 {
276 *data++ = TCP_OPTION_EOL;
277 opts_len += TCP_OPTION_LEN_EOL;
278 }
279
280 /* Pad with zeroes to a u32 boundary */
281 while (opts_len % 4)
282 {
283 *data++ = TCP_OPTION_NOOP;
284 opts_len += TCP_OPTION_LEN_NOOP;
285 }
286 return opts_len;
287}
288
289always_inline int
Florin Corase04c2992017-03-01 08:17:34 -0800290tcp_make_syn_options (tcp_options_t * opts, u8 wnd_scale)
Dave Barach68b0fb02017-02-28 15:15:56 -0500291{
292 u8 len = 0;
293
294 opts->flags |= TCP_OPTS_FLAG_MSS;
295 opts->mss = dummy_mtu; /*XXX discover that */
296 len += TCP_OPTION_LEN_MSS;
297
298 opts->flags |= TCP_OPTS_FLAG_WSCALE;
Florin Corase04c2992017-03-01 08:17:34 -0800299 opts->wscale = wnd_scale;
Dave Barach68b0fb02017-02-28 15:15:56 -0500300 len += TCP_OPTION_LEN_WINDOW_SCALE;
301
302 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
303 opts->tsval = tcp_time_now ();
304 opts->tsecr = 0;
305 len += TCP_OPTION_LEN_TIMESTAMP;
306
Florin Coras93992a92017-05-24 18:03:56 -0700307 if (TCP_USE_SACKS)
308 {
309 opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
310 len += TCP_OPTION_LEN_SACK_PERMITTED;
311 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500312
313 /* Align to needed boundary */
314 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
315 return len;
316}
317
318always_inline int
319tcp_make_synack_options (tcp_connection_t * tc, tcp_options_t * opts)
320{
321 u8 len = 0;
322
323 opts->flags |= TCP_OPTS_FLAG_MSS;
Florin Corasc8343412017-05-04 14:25:50 -0700324 opts->mss = tc->mss;
Dave Barach68b0fb02017-02-28 15:15:56 -0500325 len += TCP_OPTION_LEN_MSS;
326
Florin Coras93992a92017-05-24 18:03:56 -0700327 if (tcp_opts_wscale (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500328 {
329 opts->flags |= TCP_OPTS_FLAG_WSCALE;
330 opts->wscale = tc->rcv_wscale;
331 len += TCP_OPTION_LEN_WINDOW_SCALE;
332 }
333
Florin Coras93992a92017-05-24 18:03:56 -0700334 if (tcp_opts_tstamp (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500335 {
336 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
337 opts->tsval = tcp_time_now ();
338 opts->tsecr = tc->tsval_recent;
339 len += TCP_OPTION_LEN_TIMESTAMP;
340 }
341
Florin Coras93992a92017-05-24 18:03:56 -0700342 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500343 {
344 opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
345 len += TCP_OPTION_LEN_SACK_PERMITTED;
346 }
347
348 /* Align to needed boundary */
349 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
350 return len;
351}
352
353always_inline int
354tcp_make_established_options (tcp_connection_t * tc, tcp_options_t * opts)
355{
356 u8 len = 0;
357
358 opts->flags = 0;
359
Florin Coras93992a92017-05-24 18:03:56 -0700360 if (tcp_opts_tstamp (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500361 {
362 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
363 opts->tsval = tcp_time_now ();
364 opts->tsecr = tc->tsval_recent;
365 len += TCP_OPTION_LEN_TIMESTAMP;
366 }
Florin Coras93992a92017-05-24 18:03:56 -0700367 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500368 {
369 if (vec_len (tc->snd_sacks))
370 {
371 opts->flags |= TCP_OPTS_FLAG_SACK;
372 opts->sacks = tc->snd_sacks;
Florin Corasc28764f2017-04-26 00:08:42 -0700373 opts->n_sack_blocks = clib_min (vec_len (tc->snd_sacks),
374 TCP_OPTS_MAX_SACK_BLOCKS);
Dave Barach68b0fb02017-02-28 15:15:56 -0500375 len += 2 + TCP_OPTION_LEN_SACK_BLOCK * opts->n_sack_blocks;
376 }
377 }
378
379 /* Align to needed boundary */
380 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
381 return len;
382}
383
384always_inline int
385tcp_make_options (tcp_connection_t * tc, tcp_options_t * opts,
386 tcp_state_t state)
387{
388 switch (state)
389 {
390 case TCP_STATE_ESTABLISHED:
391 case TCP_STATE_FIN_WAIT_1:
Florin Corasca1c8f32018-05-23 21:01:30 -0700392 case TCP_STATE_CLOSED:
Dave Barach68b0fb02017-02-28 15:15:56 -0500393 return tcp_make_established_options (tc, opts);
394 case TCP_STATE_SYN_RCVD:
395 return tcp_make_synack_options (tc, opts);
396 case TCP_STATE_SYN_SENT:
Florin Corase04c2992017-03-01 08:17:34 -0800397 return tcp_make_syn_options (opts, tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500398 default:
Florin Coras371ca502018-02-21 12:07:41 -0800399 clib_warning ("State not handled! %d", state);
Dave Barach68b0fb02017-02-28 15:15:56 -0500400 return 0;
401 }
402}
403
Florin Corasc8343412017-05-04 14:25:50 -0700404/**
Florin Corasc8343412017-05-04 14:25:50 -0700405 * Update snd_mss to reflect the effective segment size that we can send
406 * by taking into account all TCP options, including SACKs
407 */
408void
409tcp_update_snd_mss (tcp_connection_t * tc)
410{
411 /* Compute options to be used for connection. These may be reused when
412 * sending data or to compute the effective mss (snd_mss) */
413 tc->snd_opts_len =
414 tcp_make_options (tc, &tc->snd_opts, TCP_STATE_ESTABLISHED);
415
416 /* XXX check if MTU has been updated */
Florin Coras93992a92017-05-24 18:03:56 -0700417 tc->snd_mss = clib_min (tc->mss, tc->rcv_opts.mss) - tc->snd_opts_len;
Florin Corasdb84e572017-05-09 18:54:52 -0700418 ASSERT (tc->snd_mss > 0);
Florin Corasc8343412017-05-04 14:25:50 -0700419}
420
421void
422tcp_init_mss (tcp_connection_t * tc)
423{
Florin Corasdb84e572017-05-09 18:54:52 -0700424 u16 default_min_mss = 536;
Florin Corasc8343412017-05-04 14:25:50 -0700425 tcp_update_rcv_mss (tc);
426
427 /* TODO cache mss and consider PMTU discovery */
Florin Coras93992a92017-05-24 18:03:56 -0700428 tc->snd_mss = clib_min (tc->rcv_opts.mss, tc->mss);
Florin Corasc8343412017-05-04 14:25:50 -0700429
Florin Corasdb84e572017-05-09 18:54:52 -0700430 if (tc->snd_mss < 45)
Florin Corasc8343412017-05-04 14:25:50 -0700431 {
432 clib_warning ("snd mss is 0");
Florin Corasdb84e572017-05-09 18:54:52 -0700433 /* Assume that at least the min default mss works */
434 tc->snd_mss = default_min_mss;
Florin Coras93992a92017-05-24 18:03:56 -0700435 tc->rcv_opts.mss = default_min_mss;
Florin Corasc8343412017-05-04 14:25:50 -0700436 }
437
438 /* We should have enough space for 40 bytes of options */
439 ASSERT (tc->snd_mss > 45);
440
441 /* If we use timestamp option, account for it */
Florin Coras93992a92017-05-24 18:03:56 -0700442 if (tcp_opts_tstamp (&tc->rcv_opts))
Florin Corasc8343412017-05-04 14:25:50 -0700443 tc->snd_mss -= TCP_OPTION_LEN_TIMESTAMP;
444}
445
Florin Coras66b11312017-07-31 17:18:03 -0700446always_inline int
Florin Coras24793e32018-05-09 11:34:25 -0700447tcp_alloc_tx_buffers (tcp_main_t * tm, u8 thread_index, u16 * n_bufs,
448 u32 wanted)
Florin Corasb2215d62017-08-01 16:56:58 -0700449{
Florin Coras2f9b0c02017-09-11 20:54:15 -0400450 vlib_main_t *vm = vlib_get_main ();
Florin Coras24793e32018-05-09 11:34:25 -0700451 u32 n_alloc;
Dave Barachb7f1faa2017-08-29 11:43:37 -0400452
Florin Coras24793e32018-05-09 11:34:25 -0700453 ASSERT (wanted > *n_bufs);
454 vec_validate_aligned (tm->tx_buffers[thread_index], wanted - 1,
455 CLIB_CACHE_LINE_BYTES);
456 n_alloc = vlib_buffer_alloc (vm, &tm->tx_buffers[thread_index][*n_bufs],
457 wanted - *n_bufs);
458 *n_bufs += n_alloc;
459 _vec_len (tm->tx_buffers[thread_index]) = *n_bufs;
460 return n_alloc;
Florin Corasb2215d62017-08-01 16:56:58 -0700461}
462
463always_inline int
Florin Coras66b11312017-07-31 17:18:03 -0700464tcp_get_free_buffer_index (tcp_main_t * tm, u32 * bidx)
465{
Florin Coras66b11312017-07-31 17:18:03 -0700466 u32 thread_index = vlib_get_thread_index ();
Florin Coras24793e32018-05-09 11:34:25 -0700467 u16 n_bufs = vec_len (tm->tx_buffers[thread_index]);
Florin Corasf988e692017-11-27 04:34:14 -0500468
469 TCP_DBG_BUFFER_ALLOC_MAYBE_FAIL (thread_index);
470
Florin Coras24793e32018-05-09 11:34:25 -0700471 if (PREDICT_FALSE (!n_bufs))
Florin Coras66b11312017-07-31 17:18:03 -0700472 {
Florin Coras24793e32018-05-09 11:34:25 -0700473 if (!tcp_alloc_tx_buffers (tm, thread_index, &n_bufs, VLIB_FRAME_SIZE))
474 {
475 *bidx = ~0;
476 return -1;
477 }
Florin Coras66b11312017-07-31 17:18:03 -0700478 }
Florin Coras24793e32018-05-09 11:34:25 -0700479 *bidx = tm->tx_buffers[thread_index][--n_bufs];
480 _vec_len (tm->tx_buffers[thread_index]) = n_bufs;
Florin Coras66b11312017-07-31 17:18:03 -0700481 return 0;
482}
Dave Barach68b0fb02017-02-28 15:15:56 -0500483
Florin Coras1f152cd2017-08-18 19:28:03 -0700484always_inline void *
Dave Barach68b0fb02017-02-28 15:15:56 -0500485tcp_reuse_buffer (vlib_main_t * vm, vlib_buffer_t * b)
486{
Florin Corasb2215d62017-08-01 16:56:58 -0700487 if (b->flags & VLIB_BUFFER_NEXT_PRESENT)
488 vlib_buffer_free_one (vm, b->next_buffer);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400489 /* Zero all flags but free list index and trace flag */
490 b->flags &= VLIB_BUFFER_NEXT_PRESENT - 1;
Florin Coras1f152cd2017-08-18 19:28:03 -0700491 b->current_data = 0;
492 b->current_length = 0;
493 b->total_length_not_including_first_buffer = 0;
494 vnet_buffer (b)->tcp.flags = 0;
Florin Corasb2215d62017-08-01 16:56:58 -0700495
Dave Barach68b0fb02017-02-28 15:15:56 -0500496 /* Leave enough space for headers */
Florin Coras1f152cd2017-08-18 19:28:03 -0700497 return vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
498}
499
500always_inline void *
501tcp_init_buffer (vlib_main_t * vm, vlib_buffer_t * b)
502{
503 ASSERT ((b->flags & VLIB_BUFFER_NEXT_PRESENT) == 0);
Damjan Mariondac03522018-02-01 15:30:13 +0100504 b->flags &= VLIB_BUFFER_NON_DEFAULT_FREELIST;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400505 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Florin Coras1f152cd2017-08-18 19:28:03 -0700506 b->total_length_not_including_first_buffer = 0;
Florin Coras24793e32018-05-09 11:34:25 -0700507 b->current_data = 0;
Florin Corasd79b41e2017-03-04 05:37:52 -0800508 vnet_buffer (b)->tcp.flags = 0;
Florin Corasf988e692017-11-27 04:34:14 -0500509 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b);
Florin Coras1f152cd2017-08-18 19:28:03 -0700510 /* Leave enough space for headers */
511 return vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
Dave Barach68b0fb02017-02-28 15:15:56 -0500512}
513
514/**
515 * Prepare ACK
516 */
517void
518tcp_make_ack_i (tcp_connection_t * tc, vlib_buffer_t * b, tcp_state_t state,
519 u8 flags)
520{
521 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
522 u8 tcp_opts_len, tcp_hdr_opts_len;
523 tcp_header_t *th;
524 u16 wnd;
525
526 wnd = tcp_window_to_advertise (tc, state);
527
528 /* Make and write options */
529 tcp_opts_len = tcp_make_established_options (tc, snd_opts);
530 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
531
532 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
533 tc->rcv_nxt, tcp_hdr_opts_len, flags, wnd);
534
535 tcp_options_write ((u8 *) (th + 1), snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500536 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
537}
538
539/**
540 * Convert buffer to ACK
541 */
542void
543tcp_make_ack (tcp_connection_t * tc, vlib_buffer_t * b)
544{
Florin Coras6792ec02017-03-13 03:49:51 -0700545 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500546
547 tcp_reuse_buffer (vm, b);
548 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, TCP_FLAG_ACK);
Florin Coras6792ec02017-03-13 03:49:51 -0700549 TCP_EVT_DBG (TCP_EVT_ACK_SENT, tc);
Florin Coras3e350af2017-03-30 02:54:28 -0700550 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_ACK;
551 tc->rcv_las = tc->rcv_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500552}
553
554/**
555 * Convert buffer to FIN-ACK
556 */
557void
Florin Corasd79b41e2017-03-04 05:37:52 -0800558tcp_make_fin (tcp_connection_t * tc, vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500559{
Florin Coras6792ec02017-03-13 03:49:51 -0700560 vlib_main_t *vm = vlib_get_main ();
Florin Corasd79b41e2017-03-04 05:37:52 -0800561 u8 flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500562
563 tcp_reuse_buffer (vm, b);
Florin Corasd79b41e2017-03-04 05:37:52 -0800564
Florin Corase69f4952017-03-07 10:06:24 -0800565 flags = TCP_FLAG_FIN | TCP_FLAG_ACK;
Florin Corasd79b41e2017-03-04 05:37:52 -0800566 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, flags);
Dave Barach68b0fb02017-02-28 15:15:56 -0500567
568 /* Reset flags, make sure ack is sent */
Dave Barach68b0fb02017-02-28 15:15:56 -0500569 vnet_buffer (b)->tcp.flags &= ~TCP_BUF_FLAG_DUPACK;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400570}
Dave Barach68b0fb02017-02-28 15:15:56 -0500571
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400572/**
573 * Convert buffer to SYN
574 */
575void
576tcp_make_syn (tcp_connection_t * tc, vlib_buffer_t * b)
577{
578 u8 tcp_hdr_opts_len, tcp_opts_len;
579 tcp_header_t *th;
580 u16 initial_wnd;
581 tcp_options_t snd_opts;
582
583 initial_wnd = tcp_initial_window_to_advertise (tc);
584
585 /* Make and write options */
586 memset (&snd_opts, 0, sizeof (snd_opts));
587 tcp_opts_len = tcp_make_syn_options (&snd_opts, tc->rcv_wscale);
588 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
589
590 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
591 tc->rcv_nxt, tcp_hdr_opts_len, TCP_FLAG_SYN,
592 initial_wnd);
593 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
594 tcp_options_write ((u8 *) (th + 1), &snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500595}
596
597/**
598 * Convert buffer to SYN-ACK
599 */
600void
601tcp_make_synack (tcp_connection_t * tc, vlib_buffer_t * b)
602{
Florin Coras6792ec02017-03-13 03:49:51 -0700603 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500604 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
605 u8 tcp_opts_len, tcp_hdr_opts_len;
606 tcp_header_t *th;
607 u16 initial_wnd;
Dave Barach68b0fb02017-02-28 15:15:56 -0500608
609 memset (snd_opts, 0, sizeof (*snd_opts));
Dave Barach68b0fb02017-02-28 15:15:56 -0500610 tcp_reuse_buffer (vm, b);
611
Dave Barach68b0fb02017-02-28 15:15:56 -0500612 initial_wnd = tcp_initial_window_to_advertise (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500613 tcp_opts_len = tcp_make_synack_options (tc, snd_opts);
614 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
615
616 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
617 tc->rcv_nxt, tcp_hdr_opts_len,
618 TCP_FLAG_SYN | TCP_FLAG_ACK, initial_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -0500619 tcp_options_write ((u8 *) (th + 1), snd_opts);
620
621 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
622 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_ACK;
623
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400624 /* Init retransmit timer. Use update instead of set because of
625 * retransmissions */
626 tcp_retransmit_timer_force_update (tc);
Florin Coras6534b7a2017-07-18 05:38:03 -0400627 TCP_EVT_DBG (TCP_EVT_SYNACK_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500628}
629
630always_inline void
Florin Coras9d063042017-09-14 03:08:00 -0400631tcp_enqueue_to_ip_lookup_i (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
Florin Coras56b39f62018-03-27 17:29:32 -0700632 u8 is_ip4, u32 fib_index, u8 flush)
Dave Barach68b0fb02017-02-28 15:15:56 -0500633{
Florin Coras9d063042017-09-14 03:08:00 -0400634 tcp_main_t *tm = vnet_get_tcp_main ();
635 u32 thread_index = vlib_get_thread_index ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500636 u32 *to_next, next_index;
637 vlib_frame_t *f;
638
Damjan Marion213b5aa2017-07-13 21:19:27 +0200639 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500640 b->error = 0;
641
Florin Coras56b39f62018-03-27 17:29:32 -0700642 vnet_buffer (b)->sw_if_index[VLIB_TX] = fib_index;
643 vnet_buffer (b)->sw_if_index[VLIB_RX] = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500644
645 /* Send to IP lookup */
646 next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index;
Florin Corasf988e692017-11-27 04:34:14 -0500647 tcp_trajectory_add_start (b, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500648
Florin Coras9d063042017-09-14 03:08:00 -0400649 f = tm->ip_lookup_tx_frames[!is_ip4][thread_index];
650 if (!f)
651 {
652 f = vlib_get_frame_to_node (vm, next_index);
653 ASSERT (f);
654 tm->ip_lookup_tx_frames[!is_ip4][thread_index] = f;
655 }
656
Dave Barach68b0fb02017-02-28 15:15:56 -0500657 to_next = vlib_frame_vector_args (f);
Florin Coras9d063042017-09-14 03:08:00 -0400658 to_next[f->n_vectors] = bi;
659 f->n_vectors += 1;
660 if (flush || f->n_vectors == VLIB_FRAME_SIZE)
661 {
662 vlib_put_frame_to_node (vm, next_index, f);
663 tm->ip_lookup_tx_frames[!is_ip4][thread_index] = 0;
664 }
665}
666
667always_inline void
668tcp_enqueue_to_ip_lookup_now (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
Florin Coras56b39f62018-03-27 17:29:32 -0700669 u8 is_ip4, u32 fib_index)
Florin Coras9d063042017-09-14 03:08:00 -0400670{
Florin Coras56b39f62018-03-27 17:29:32 -0700671 tcp_enqueue_to_ip_lookup_i (vm, b, bi, is_ip4, fib_index, 1);
Florin Coras9d063042017-09-14 03:08:00 -0400672}
673
674always_inline void
675tcp_enqueue_to_ip_lookup (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
Florin Coras56b39f62018-03-27 17:29:32 -0700676 u8 is_ip4, u32 fib_index)
Florin Coras9d063042017-09-14 03:08:00 -0400677{
Florin Coras56b39f62018-03-27 17:29:32 -0700678 tcp_enqueue_to_ip_lookup_i (vm, b, bi, is_ip4, fib_index, 0);
Florin Corasfd542f12018-05-16 19:28:24 -0700679 if (vm->thread_index == 0 && vlib_num_workers ())
680 session_flush_frames_main_thread (vm);
Dave Barach68b0fb02017-02-28 15:15:56 -0500681}
682
Florin Coras1f152cd2017-08-18 19:28:03 -0700683always_inline void
684tcp_enqueue_to_output_i (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
685 u8 is_ip4, u8 flush)
686{
687 tcp_main_t *tm = vnet_get_tcp_main ();
688 u32 thread_index = vlib_get_thread_index ();
689 u32 *to_next, next_index;
690 vlib_frame_t *f;
691
692 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
693 b->error = 0;
694
695 /* Decide where to send the packet */
696 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
Florin Corasf988e692017-11-27 04:34:14 -0500697 tcp_trajectory_add_start (b, 2);
Florin Coras1f152cd2017-08-18 19:28:03 -0700698
699 /* Get frame to v4/6 output node */
700 f = tm->tx_frames[!is_ip4][thread_index];
701 if (!f)
702 {
703 f = vlib_get_frame_to_node (vm, next_index);
704 ASSERT (f);
705 tm->tx_frames[!is_ip4][thread_index] = f;
706 }
707 to_next = vlib_frame_vector_args (f);
708 to_next[f->n_vectors] = bi;
709 f->n_vectors += 1;
710 if (flush || f->n_vectors == VLIB_FRAME_SIZE)
711 {
712 vlib_put_frame_to_node (vm, next_index, f);
713 tm->tx_frames[!is_ip4][thread_index] = 0;
714 }
715}
716
717always_inline void
718tcp_enqueue_to_output (vlib_main_t * vm, vlib_buffer_t * b, u32 bi, u8 is_ip4)
719{
720 tcp_enqueue_to_output_i (vm, b, bi, is_ip4, 0);
721}
722
723always_inline void
724tcp_enqueue_to_output_now (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
725 u8 is_ip4)
726{
727 tcp_enqueue_to_output_i (vm, b, bi, is_ip4, 1);
728}
729
Dave Barach68b0fb02017-02-28 15:15:56 -0500730int
731tcp_make_reset_in_place (vlib_main_t * vm, vlib_buffer_t * b0,
Florin Corasdc629cd2017-05-09 00:52:37 -0700732 tcp_state_t state, u8 thread_index, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500733{
Dave Barach68b0fb02017-02-28 15:15:56 -0500734 ip4_header_t *ih4;
735 ip6_header_t *ih6;
736 tcp_header_t *th0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700737 ip4_address_t src_ip40, dst_ip40;
738 ip6_address_t src_ip60, dst_ip60;
739 u16 src_port, dst_port;
Dave Barach68b0fb02017-02-28 15:15:56 -0500740 u32 tmp;
Florin Corasdc629cd2017-05-09 00:52:37 -0700741 u32 seq, ack;
742 u8 flags;
Dave Barach68b0fb02017-02-28 15:15:56 -0500743
744 /* Find IP and TCP headers */
Florin Corasdc629cd2017-05-09 00:52:37 -0700745 th0 = tcp_buffer_hdr (b0);
746
747 /* Save src and dst ip */
Dave Barach68b0fb02017-02-28 15:15:56 -0500748 if (is_ip4)
749 {
750 ih4 = vlib_buffer_get_current (b0);
Florin Corasdc629cd2017-05-09 00:52:37 -0700751 ASSERT ((ih4->ip_version_and_header_length & 0xF0) == 0x40);
752 src_ip40.as_u32 = ih4->src_address.as_u32;
753 dst_ip40.as_u32 = ih4->dst_address.as_u32;
Dave Barach68b0fb02017-02-28 15:15:56 -0500754 }
755 else
756 {
757 ih6 = vlib_buffer_get_current (b0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500758 ASSERT ((ih6->ip_version_traffic_class_and_flow_label & 0xF0) == 0x60);
759 clib_memcpy (&src_ip60, &ih6->src_address, sizeof (ip6_address_t));
Florin Corasdc629cd2017-05-09 00:52:37 -0700760 clib_memcpy (&dst_ip60, &ih6->dst_address, sizeof (ip6_address_t));
Dave Barach68b0fb02017-02-28 15:15:56 -0500761 }
762
Florin Corasdc629cd2017-05-09 00:52:37 -0700763 src_port = th0->src_port;
764 dst_port = th0->dst_port;
765
766 /* Try to determine what/why we're actually resetting */
Dave Barach68b0fb02017-02-28 15:15:56 -0500767 if (state == TCP_STATE_CLOSED)
768 {
769 if (!tcp_syn (th0))
770 return -1;
771
772 tmp = clib_net_to_host_u32 (th0->seq_number);
773
774 /* Got a SYN for no listener. */
Florin Corasdc629cd2017-05-09 00:52:37 -0700775 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
776 ack = clib_host_to_net_u32 (tmp + 1);
777 seq = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500778 }
Florin Corasdc629cd2017-05-09 00:52:37 -0700779 else
Dave Barach68b0fb02017-02-28 15:15:56 -0500780 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700781 flags = TCP_FLAG_RST;
782 seq = th0->ack_number;
783 ack = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500784 }
785
Florin Corasdc629cd2017-05-09 00:52:37 -0700786 tcp_reuse_buffer (vm, b0);
Florin Corasf988e692017-11-27 04:34:14 -0500787 tcp_trajectory_add_start (b0, 4);
Florin Corasdc629cd2017-05-09 00:52:37 -0700788 th0 = vlib_buffer_push_tcp_net_order (b0, dst_port, src_port, seq, ack,
789 sizeof (tcp_header_t), flags, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500790
Dave Barach68b0fb02017-02-28 15:15:56 -0500791 if (is_ip4)
792 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700793 ih4 = vlib_buffer_push_ip4 (vm, b0, &dst_ip40, &src_ip40,
Florin Corasfdbc3822017-07-27 00:34:12 -0700794 IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500795 th0->checksum = ip4_tcp_udp_compute_checksum (vm, b0, ih4);
796 }
797 else
798 {
799 int bogus = ~0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700800 ih6 = vlib_buffer_push_ip6 (vm, b0, &dst_ip60, &src_ip60,
801 IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500802 th0->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b0, ih6, &bogus);
803 ASSERT (!bogus);
804 }
805
806 return 0;
807}
808
809/**
810 * Send reset without reusing existing buffer
Florin Coras1f152cd2017-08-18 19:28:03 -0700811 *
812 * It extracts connection info out of original packet
Dave Barach68b0fb02017-02-28 15:15:56 -0500813 */
814void
Florin Coras1f152cd2017-08-18 19:28:03 -0700815tcp_send_reset_w_pkt (tcp_connection_t * tc, vlib_buffer_t * pkt, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500816{
817 vlib_buffer_t *b;
Florin Coras56b39f62018-03-27 17:29:32 -0700818 u32 bi, sw_if_index, fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500819 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -0700820 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500821 u8 tcp_hdr_len, flags = 0;
822 tcp_header_t *th, *pkt_th;
823 u32 seq, ack;
824 ip4_header_t *ih4, *pkt_ih4;
825 ip6_header_t *ih6, *pkt_ih6;
Florin Coras56b39f62018-03-27 17:29:32 -0700826 fib_protocol_t fib_proto;
Dave Barach68b0fb02017-02-28 15:15:56 -0500827
Florin Coras66b11312017-07-31 17:18:03 -0700828 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
829 return;
830
Dave Barach68b0fb02017-02-28 15:15:56 -0500831 b = vlib_get_buffer (vm, bi);
Florin Coras56b39f62018-03-27 17:29:32 -0700832 sw_if_index = vnet_buffer (pkt)->sw_if_index[VLIB_RX];
833 fib_proto = is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
834 fib_index = fib_table_get_index_for_sw_if_index (fib_proto, sw_if_index);
Florin Coras1f152cd2017-08-18 19:28:03 -0700835 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500836
837 /* Make and write options */
838 tcp_hdr_len = sizeof (tcp_header_t);
839
840 if (is_ip4)
841 {
842 pkt_ih4 = vlib_buffer_get_current (pkt);
843 pkt_th = ip4_next_header (pkt_ih4);
844 }
845 else
846 {
847 pkt_ih6 = vlib_buffer_get_current (pkt);
848 pkt_th = ip6_next_header (pkt_ih6);
849 }
850
851 if (tcp_ack (pkt_th))
852 {
853 flags = TCP_FLAG_RST;
854 seq = pkt_th->ack_number;
Florin Coras6534b7a2017-07-18 05:38:03 -0400855 ack = (tc && tc->state >= TCP_STATE_SYN_RCVD) ? tc->rcv_nxt : 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500856 }
857 else
858 {
859 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
860 seq = 0;
861 ack = clib_host_to_net_u32 (vnet_buffer (pkt)->tcp.seq_end);
862 }
863
864 th = vlib_buffer_push_tcp_net_order (b, pkt_th->dst_port, pkt_th->src_port,
865 seq, ack, tcp_hdr_len, flags, 0);
866
867 /* Swap src and dst ip */
868 if (is_ip4)
869 {
870 ASSERT ((pkt_ih4->ip_version_and_header_length & 0xF0) == 0x40);
871 ih4 = vlib_buffer_push_ip4 (vm, b, &pkt_ih4->dst_address,
Florin Corasfdbc3822017-07-27 00:34:12 -0700872 &pkt_ih4->src_address, IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500873 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
874 }
875 else
876 {
877 int bogus = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500878 ASSERT ((pkt_ih6->ip_version_traffic_class_and_flow_label & 0xF0) ==
879 0x60);
rootc9d1c5b2017-08-15 12:58:31 -0400880 ih6 = vlib_buffer_push_ip6 (vm, b, &pkt_ih6->dst_address,
881 &pkt_ih6->src_address, IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500882 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
883 ASSERT (!bogus);
884 }
885
Florin Coras56b39f62018-03-27 17:29:32 -0700886 tcp_enqueue_to_ip_lookup_now (vm, b, bi, is_ip4, fib_index);
Florin Coras6534b7a2017-07-18 05:38:03 -0400887 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500888}
889
Florin Coras1f152cd2017-08-18 19:28:03 -0700890/**
891 * Build and set reset packet for connection
892 */
893void
894tcp_send_reset (tcp_connection_t * tc)
895{
896 vlib_main_t *vm = vlib_get_main ();
897 tcp_main_t *tm = vnet_get_tcp_main ();
898 vlib_buffer_t *b;
899 u32 bi;
900 tcp_header_t *th;
901 u16 tcp_hdr_opts_len, advertise_wnd, opts_write_len;
902 u8 flags;
903
904 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
905 return;
906 b = vlib_get_buffer (vm, bi);
907 tcp_init_buffer (vm, b);
908
909 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
910 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
911 advertise_wnd = tcp_window_to_advertise (tc, TCP_STATE_ESTABLISHED);
912 flags = TCP_FLAG_RST;
913 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
914 tc->rcv_nxt, tcp_hdr_opts_len, flags,
915 advertise_wnd);
916 opts_write_len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
917 ASSERT (opts_write_len == tc->snd_opts_len);
918 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Florin Corasf1762d62017-09-24 19:43:08 -0400919 if (tc->c_is_ip4)
920 {
921 ip4_header_t *ih4;
922 ih4 = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip.ip4,
923 &tc->c_rmt_ip.ip4, IP_PROTOCOL_TCP, 0);
924 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
925 }
926 else
927 {
928 int bogus = ~0;
929 ip6_header_t *ih6;
930 ih6 = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip.ip6,
931 &tc->c_rmt_ip.ip6, IP_PROTOCOL_TCP);
932 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
933 ASSERT (!bogus);
934 }
Florin Coras56b39f62018-03-27 17:29:32 -0700935 tcp_enqueue_to_ip_lookup_now (vm, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Corasf1762d62017-09-24 19:43:08 -0400936 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc);
Florin Coras1f152cd2017-08-18 19:28:03 -0700937}
938
Dave Barach68b0fb02017-02-28 15:15:56 -0500939void
940tcp_push_ip_hdr (tcp_main_t * tm, tcp_connection_t * tc, vlib_buffer_t * b)
941{
942 tcp_header_t *th = vlib_buffer_get_current (b);
Dave Barach2c25a622017-06-26 11:35:07 -0400943 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500944 if (tc->c_is_ip4)
945 {
946 ip4_header_t *ih;
Dave Barach2c25a622017-06-26 11:35:07 -0400947 ih = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip4,
Florin Corasfdbc3822017-07-27 00:34:12 -0700948 &tc->c_rmt_ip4, IP_PROTOCOL_TCP, 1);
Dave Barach2c25a622017-06-26 11:35:07 -0400949 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih);
Dave Barach68b0fb02017-02-28 15:15:56 -0500950 }
951 else
952 {
953 ip6_header_t *ih;
954 int bogus = ~0;
955
Dave Barach2c25a622017-06-26 11:35:07 -0400956 ih = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip6,
Dave Barach68b0fb02017-02-28 15:15:56 -0500957 &tc->c_rmt_ip6, IP_PROTOCOL_TCP);
Dave Barach2c25a622017-06-26 11:35:07 -0400958 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih, &bogus);
Dave Barach68b0fb02017-02-28 15:15:56 -0500959 ASSERT (!bogus);
960 }
961}
962
963/**
964 * Send SYN
965 *
966 * Builds a SYN packet for a half-open connection and sends it to ipx_lookup.
967 * The packet is not forwarded through tcpx_output to avoid doing lookups
968 * in the half_open pool.
969 */
970void
971tcp_send_syn (tcp_connection_t * tc)
972{
973 vlib_buffer_t *b;
974 u32 bi;
975 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -0700976 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500977
Florin Corasf988e692017-11-27 04:34:14 -0500978 /*
979 * Setup retransmit and establish timers before requesting buffer
980 * such that we can return if we've ran out.
981 */
982 tcp_timer_set (tc, TCP_TIMER_ESTABLISH, TCP_ESTABLISH_TIME);
983 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN,
984 tc->rto * TCP_TO_TIMER_TICK);
985
Florin Coras66b11312017-07-31 17:18:03 -0700986 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
987 return;
988
Dave Barach68b0fb02017-02-28 15:15:56 -0500989 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -0700990 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400991 tcp_make_syn (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500992
993 /* Measure RTT with this */
994 tc->rtt_ts = tcp_time_now ();
995 tc->rtt_seq = tc->snd_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500996 tc->rto_boff = 0;
997
Dave Barach68b0fb02017-02-28 15:15:56 -0500998 tcp_push_ip_hdr (tm, tc, b);
Florin Coras56b39f62018-03-27 17:29:32 -0700999 tcp_enqueue_to_ip_lookup (vm, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Coras6534b7a2017-07-18 05:38:03 -04001000 TCP_EVT_DBG (TCP_EVT_SYN_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001001}
1002
Florin Coras66b11312017-07-31 17:18:03 -07001003/**
1004 * Flush tx frame populated by retransmits and timer pops
1005 */
1006void
1007tcp_flush_frame_to_output (vlib_main_t * vm, u8 thread_index, u8 is_ip4)
1008{
1009 if (tcp_main.tx_frames[!is_ip4][thread_index])
1010 {
1011 u32 next_index;
1012 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
1013 vlib_put_frame_to_node (vm, next_index,
1014 tcp_main.tx_frames[!is_ip4][thread_index]);
1015 tcp_main.tx_frames[!is_ip4][thread_index] = 0;
1016 }
1017}
1018
1019/**
Florin Coras9d063042017-09-14 03:08:00 -04001020 * Flush ip lookup tx frames populated by timer pops
1021 */
1022always_inline void
1023tcp_flush_frame_to_ip_lookup (vlib_main_t * vm, u8 thread_index, u8 is_ip4)
1024{
1025 if (tcp_main.ip_lookup_tx_frames[!is_ip4][thread_index])
1026 {
1027 u32 next_index;
1028 next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index;
1029 vlib_put_frame_to_node (vm, next_index,
1030 tcp_main.ip_lookup_tx_frames[!is_ip4]
1031 [thread_index]);
1032 tcp_main.ip_lookup_tx_frames[!is_ip4][thread_index] = 0;
1033 }
1034}
1035
1036/**
1037 * Flush v4 and v6 tcp and ip-lookup tx frames for thread index
Florin Coras66b11312017-07-31 17:18:03 -07001038 */
1039void
1040tcp_flush_frames_to_output (u8 thread_index)
1041{
1042 vlib_main_t *vm = vlib_get_main ();
1043 tcp_flush_frame_to_output (vm, thread_index, 1);
1044 tcp_flush_frame_to_output (vm, thread_index, 0);
Florin Coras9d063042017-09-14 03:08:00 -04001045 tcp_flush_frame_to_ip_lookup (vm, thread_index, 1);
1046 tcp_flush_frame_to_ip_lookup (vm, thread_index, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001047}
1048
1049/**
1050 * Send FIN
1051 */
1052void
1053tcp_send_fin (tcp_connection_t * tc)
1054{
Dave Barach68b0fb02017-02-28 15:15:56 -05001055 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001056 vlib_main_t *vm = vlib_get_main ();
Florin Coras9d063042017-09-14 03:08:00 -04001057 vlib_buffer_t *b;
1058 u32 bi;
1059 u8 fin_snt = 0;
1060
Florin Corasf988e692017-11-27 04:34:14 -05001061 tcp_retransmit_timer_force_update (tc);
Florin Coras66b11312017-07-31 17:18:03 -07001062 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1063 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001064 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001065 tcp_init_buffer (vm, b);
Florin Coras9d063042017-09-14 03:08:00 -04001066 fin_snt = tc->flags & TCP_CONN_FINSNT;
1067 if (fin_snt)
1068 tc->snd_nxt = tc->snd_una;
Florin Corasd79b41e2017-03-04 05:37:52 -08001069 tcp_make_fin (tc, b);
Florin Coras66b11312017-07-31 17:18:03 -07001070 tcp_enqueue_to_output_now (vm, b, bi, tc->c_is_ip4);
Florin Coras9d063042017-09-14 03:08:00 -04001071 if (!fin_snt)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001072 {
1073 tc->flags |= TCP_CONN_FINSNT;
1074 tc->flags &= ~TCP_CONN_FINPNDG;
Florin Coras9d063042017-09-14 03:08:00 -04001075 /* Account for the FIN */
1076 tc->snd_una_max += 1;
1077 tc->snd_nxt = tc->snd_una_max;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001078 }
Florin Corasa096f2d2017-09-28 23:49:42 -04001079 else
1080 {
1081 tc->snd_nxt = tc->snd_una_max;
1082 }
Florin Corase69f4952017-03-07 10:06:24 -08001083 TCP_EVT_DBG (TCP_EVT_FIN_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001084}
1085
1086always_inline u8
Florin Corasb2215d62017-08-01 16:56:58 -07001087tcp_make_state_flags (tcp_connection_t * tc, tcp_state_t next_state)
Dave Barach68b0fb02017-02-28 15:15:56 -05001088{
1089 switch (next_state)
1090 {
1091 case TCP_STATE_ESTABLISHED:
1092 return TCP_FLAG_ACK;
1093 case TCP_STATE_SYN_RCVD:
1094 return TCP_FLAG_SYN | TCP_FLAG_ACK;
1095 case TCP_STATE_SYN_SENT:
1096 return TCP_FLAG_SYN;
1097 case TCP_STATE_LAST_ACK:
1098 case TCP_STATE_FIN_WAIT_1:
Florin Corasb2215d62017-08-01 16:56:58 -07001099 if (tc->snd_nxt + 1 < tc->snd_una_max)
1100 return TCP_FLAG_ACK;
1101 else
1102 return TCP_FLAG_FIN;
Dave Barach68b0fb02017-02-28 15:15:56 -05001103 default:
1104 clib_warning ("Shouldn't be here!");
1105 }
1106 return 0;
1107}
1108
1109/**
1110 * Push TCP header and update connection variables
1111 */
1112static void
1113tcp_push_hdr_i (tcp_connection_t * tc, vlib_buffer_t * b,
Florin Corasc8343412017-05-04 14:25:50 -07001114 tcp_state_t next_state, u8 compute_opts)
Dave Barach68b0fb02017-02-28 15:15:56 -05001115{
1116 u32 advertise_wnd, data_len;
Florin Corasc8343412017-05-04 14:25:50 -07001117 u8 tcp_hdr_opts_len, opts_write_len, flags;
Dave Barach68b0fb02017-02-28 15:15:56 -05001118 tcp_header_t *th;
1119
Florin Corasf6d68ed2017-05-07 19:12:02 -07001120 data_len = b->current_length + b->total_length_not_including_first_buffer;
Florin Coras1f152cd2017-08-18 19:28:03 -07001121 ASSERT (!b->total_length_not_including_first_buffer
1122 || (b->flags & VLIB_BUFFER_NEXT_PRESENT));
Dave Barach68b0fb02017-02-28 15:15:56 -05001123 vnet_buffer (b)->tcp.flags = 0;
1124
Florin Corasc8343412017-05-04 14:25:50 -07001125 if (compute_opts)
1126 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1127
Florin Corasc8343412017-05-04 14:25:50 -07001128 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
Dave Barach68b0fb02017-02-28 15:15:56 -05001129 advertise_wnd = tcp_window_to_advertise (tc, next_state);
Florin Corasb2215d62017-08-01 16:56:58 -07001130 flags = tcp_make_state_flags (tc, next_state);
Dave Barach68b0fb02017-02-28 15:15:56 -05001131
1132 /* Push header and options */
1133 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
1134 tc->rcv_nxt, tcp_hdr_opts_len, flags,
1135 advertise_wnd);
Florin Corasc8343412017-05-04 14:25:50 -07001136 opts_write_len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -05001137
Florin Corasc8343412017-05-04 14:25:50 -07001138 ASSERT (opts_write_len == tc->snd_opts_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001139 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
1140
Florin Coras93992a92017-05-24 18:03:56 -07001141 /*
1142 * Update connection variables
1143 */
1144
Dave Barach68b0fb02017-02-28 15:15:56 -05001145 tc->snd_nxt += data_len;
Florin Corasc28764f2017-04-26 00:08:42 -07001146 tc->rcv_las = tc->rcv_nxt;
Florin Coras3e350af2017-03-30 02:54:28 -07001147
Florin Coras6792ec02017-03-13 03:49:51 -07001148 /* TODO this is updated in output as well ... */
Florin Coras93992a92017-05-24 18:03:56 -07001149 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
Florin Coras3af90fc2017-05-03 21:09:42 -07001150 {
Florin Coras93992a92017-05-24 18:03:56 -07001151 tc->snd_una_max = tc->snd_nxt;
1152 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
Florin Coras3af90fc2017-05-03 21:09:42 -07001153 }
Florin Coras93992a92017-05-24 18:03:56 -07001154
Florin Corase69f4952017-03-07 10:06:24 -08001155 TCP_EVT_DBG (TCP_EVT_PKTIZE, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001156}
1157
Dave Barach68b0fb02017-02-28 15:15:56 -05001158void
Florin Coras6792ec02017-03-13 03:49:51 -07001159tcp_send_ack (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001160{
1161 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001162 vlib_main_t *vm = vlib_get_main ();
1163
Dave Barach68b0fb02017-02-28 15:15:56 -05001164 vlib_buffer_t *b;
1165 u32 bi;
1166
Dave Barach68b0fb02017-02-28 15:15:56 -05001167 /* Get buffer */
Florin Coras66b11312017-07-31 17:18:03 -07001168 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1169 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001170 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001171 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001172
1173 /* Fill in the ACK */
1174 tcp_make_ack (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001175 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1176}
1177
Florin Corasb2215d62017-08-01 16:56:58 -07001178/**
1179 * Delayed ack timer handler
1180 *
1181 * Sends delayed ACK when timer expires
1182 */
Florin Coras6792ec02017-03-13 03:49:51 -07001183void
1184tcp_timer_delack_handler (u32 index)
1185{
Damjan Marion586afd72017-04-05 19:18:20 +02001186 u32 thread_index = vlib_get_thread_index ();
Florin Coras6792ec02017-03-13 03:49:51 -07001187 tcp_connection_t *tc;
1188
1189 tc = tcp_connection_get (index, thread_index);
1190 tc->timers[TCP_TIMER_DELACK] = TCP_TIMER_HANDLE_INVALID;
Florin Coras6792ec02017-03-13 03:49:51 -07001191 tcp_send_ack (tc);
1192}
1193
Florin Corasb2215d62017-08-01 16:56:58 -07001194/**
1195 * Build a retransmit segment
Dave Barach68b0fb02017-02-28 15:15:56 -05001196 *
1197 * @return the number of bytes in the segment or 0 if there's nothing to
1198 * retransmit
Florin Coras93992a92017-05-24 18:03:56 -07001199 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001200u32
Florin Corasb2215d62017-08-01 16:56:58 -07001201tcp_prepare_retransmit_segment (tcp_connection_t * tc, u32 offset,
1202 u32 max_deq_bytes, vlib_buffer_t ** b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001203{
Florin Corasb2215d62017-08-01 16:56:58 -07001204 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001205 vlib_main_t *vm = vlib_get_main ();
Florin Coras93992a92017-05-24 18:03:56 -07001206 int n_bytes = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001207 u32 start, bi, available_bytes, seg_size;
1208 u8 *data;
Dave Barach68b0fb02017-02-28 15:15:56 -05001209
Florin Corase04c2992017-03-01 08:17:34 -08001210 ASSERT (tc->state >= TCP_STATE_ESTABLISHED);
Florin Corasb2215d62017-08-01 16:56:58 -07001211 ASSERT (max_deq_bytes != 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001212
Florin Corasb2215d62017-08-01 16:56:58 -07001213 /*
1214 * Make sure we can retransmit something
1215 */
Florin Corasb2215d62017-08-01 16:56:58 -07001216 available_bytes = stream_session_tx_fifo_max_dequeue (&tc->connection);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001217 ASSERT (available_bytes >= offset);
Florin Coras1f152cd2017-08-18 19:28:03 -07001218 available_bytes -= offset;
Florin Corasb2215d62017-08-01 16:56:58 -07001219 if (!available_bytes)
1220 return 0;
Florin Corase87216f2017-08-17 16:59:22 -07001221 max_deq_bytes = clib_min (tc->snd_mss, max_deq_bytes);
Florin Corasb2215d62017-08-01 16:56:58 -07001222 max_deq_bytes = clib_min (available_bytes, max_deq_bytes);
Florin Coras6792ec02017-03-13 03:49:51 -07001223
1224 /* Start is beyond snd_congestion */
Florin Corase87216f2017-08-17 16:59:22 -07001225 start = tc->snd_una + offset;
Florin Coras93992a92017-05-24 18:03:56 -07001226 if (seq_geq (start, tc->snd_congestion))
Florin Coras1f152cd2017-08-18 19:28:03 -07001227 goto done;
Florin Coras6792ec02017-03-13 03:49:51 -07001228
Florin Corasb2215d62017-08-01 16:56:58 -07001229 /* Don't overshoot snd_congestion */
1230 if (seq_gt (start + max_deq_bytes, tc->snd_congestion))
1231 {
1232 max_deq_bytes = tc->snd_congestion - start;
1233 if (max_deq_bytes == 0)
Florin Coras1f152cd2017-08-18 19:28:03 -07001234 goto done;
Florin Corasb2215d62017-08-01 16:56:58 -07001235 }
1236
Florin Coras1f152cd2017-08-18 19:28:03 -07001237 seg_size = max_deq_bytes + MAX_HDRS_LEN;
1238
Florin Corasb2215d62017-08-01 16:56:58 -07001239 /*
1240 * Prepare options
1241 */
Florin Corasc8343412017-05-04 14:25:50 -07001242 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1243
Florin Corasb2215d62017-08-01 16:56:58 -07001244 /*
1245 * Allocate and fill in buffer(s)
1246 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001247
Florin Corasb2215d62017-08-01 16:56:58 -07001248 /* Easy case, buffer size greater than mss */
Florin Corase87216f2017-08-17 16:59:22 -07001249 if (PREDICT_TRUE (seg_size <= tm->bytes_per_buffer))
Florin Corasb2215d62017-08-01 16:56:58 -07001250 {
Florin Coras24793e32018-05-09 11:34:25 -07001251 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1252 return 0;
1253 *b = vlib_get_buffer (vm, bi);
1254 data = tcp_init_buffer (vm, *b);
Florin Corase87216f2017-08-17 16:59:22 -07001255 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1256 max_deq_bytes);
Florin Corasb2215d62017-08-01 16:56:58 -07001257 ASSERT (n_bytes == max_deq_bytes);
1258 b[0]->current_length = n_bytes;
1259 tcp_push_hdr_i (tc, *b, tc->state, 0);
1260 }
1261 /* Split mss into multiple buffers */
1262 else
1263 {
1264 u32 chain_bi = ~0, n_bufs_per_seg;
1265 u32 thread_index = vlib_get_thread_index ();
1266 u16 n_peeked, len_to_deq, available_bufs;
1267 vlib_buffer_t *chain_b, *prev_b;
Florin Corasb2215d62017-08-01 16:56:58 -07001268 int i;
1269
Florin Corasb2215d62017-08-01 16:56:58 -07001270 /* Make sure we have enough buffers */
Florin Coras24793e32018-05-09 11:34:25 -07001271 n_bufs_per_seg = ceil ((double) seg_size / tm->bytes_per_buffer);
Florin Corasb2215d62017-08-01 16:56:58 -07001272 available_bufs = vec_len (tm->tx_buffers[thread_index]);
1273 if (n_bufs_per_seg > available_bufs)
1274 {
Florin Coras24793e32018-05-09 11:34:25 -07001275 tcp_alloc_tx_buffers (tm, thread_index, &available_bufs,
1276 VLIB_FRAME_SIZE);
1277
1278 if (n_bufs_per_seg > available_bufs)
Florin Corasb2215d62017-08-01 16:56:58 -07001279 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001280 *b = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001281 return 0;
1282 }
1283 }
1284
Florin Coras24793e32018-05-09 11:34:25 -07001285 tcp_get_free_buffer_index (tm, &bi);
1286 ASSERT (bi != (u32) ~ 0);
1287 *b = vlib_get_buffer (vm, bi);
1288 data = tcp_init_buffer (vm, *b);
Florin Corase87216f2017-08-17 16:59:22 -07001289 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1290 tm->bytes_per_buffer -
1291 MAX_HDRS_LEN);
Florin Corasb2215d62017-08-01 16:56:58 -07001292 b[0]->current_length = n_bytes;
1293 b[0]->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
1294 b[0]->total_length_not_including_first_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001295 max_deq_bytes -= n_bytes;
1296
1297 chain_b = *b;
1298 for (i = 1; i < n_bufs_per_seg; i++)
1299 {
1300 prev_b = chain_b;
1301 len_to_deq = clib_min (max_deq_bytes, tm->bytes_per_buffer);
1302 tcp_get_free_buffer_index (tm, &chain_bi);
1303 ASSERT (chain_bi != (u32) ~ 0);
1304 chain_b = vlib_get_buffer (vm, chain_bi);
1305 chain_b->current_data = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001306 data = vlib_buffer_get_current (chain_b);
1307 n_peeked = stream_session_peek_bytes (&tc->connection, data,
Florin Coras1f152cd2017-08-18 19:28:03 -07001308 offset + n_bytes, len_to_deq);
Florin Corasb2215d62017-08-01 16:56:58 -07001309 ASSERT (n_peeked == len_to_deq);
Florin Coras1f152cd2017-08-18 19:28:03 -07001310 n_bytes += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001311 chain_b->current_length = n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001312 chain_b->next_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001313
1314 /* update previous buffer */
1315 prev_b->next_buffer = chain_bi;
1316 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
1317
Florin Corasb2215d62017-08-01 16:56:58 -07001318 max_deq_bytes -= n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001319 b[0]->total_length_not_including_first_buffer += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001320 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001321
1322 tcp_push_hdr_i (tc, *b, tc->state, 0);
Florin Corasb2215d62017-08-01 16:56:58 -07001323 }
1324
Florin Coras93992a92017-05-24 18:03:56 -07001325 ASSERT (n_bytes > 0);
Florin Corase87216f2017-08-17 16:59:22 -07001326 ASSERT (((*b)->current_data + (*b)->current_length) <=
1327 tm->bytes_per_buffer);
Florin Corasbb292f42017-05-19 09:49:19 -07001328
Florin Coras93992a92017-05-24 18:03:56 -07001329 if (tcp_in_fastrecovery (tc))
1330 tc->snd_rxt_bytes += n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001331
Florin Coras6792ec02017-03-13 03:49:51 -07001332done:
1333 TCP_EVT_DBG (TCP_EVT_CC_RTX, tc, offset, n_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001334 return n_bytes;
1335}
1336
Florin Coras6792ec02017-03-13 03:49:51 -07001337/**
1338 * Reset congestion control, switch cwnd to loss window and try again.
1339 */
1340static void
Florin Corasca1c8f32018-05-23 21:01:30 -07001341tcp_rxt_timeout_cc (tcp_connection_t * tc)
Florin Coras6792ec02017-03-13 03:49:51 -07001342{
Florin Corasca1c8f32018-05-23 21:01:30 -07001343 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 6);
Florin Coras93992a92017-05-24 18:03:56 -07001344 tc->prev_ssthresh = tc->ssthresh;
1345 tc->prev_cwnd = tc->cwnd;
1346
Florin Coras6792ec02017-03-13 03:49:51 -07001347 /* Cleanly recover cc (also clears up fast retransmit) */
1348 if (tcp_in_fastrecovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001349 tcp_cc_fastrecovery_exit (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001350
1351 /* Start again from the beginning */
Florin Corasd2aab832018-05-22 11:39:59 -07001352 tc->cc_algo->congestion (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001353 tc->cwnd = tcp_loss_wnd (tc);
1354 tc->snd_congestion = tc->snd_una_max;
Florin Corasf1762d62017-09-24 19:43:08 -04001355 tc->rtt_ts = 0;
Florin Corasd2aab832018-05-22 11:39:59 -07001356 tc->cwnd_acc_bytes = 0;
1357
Florin Coras3af90fc2017-05-03 21:09:42 -07001358 tcp_recovery_on (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001359}
1360
Dave Barach68b0fb02017-02-28 15:15:56 -05001361static void
1362tcp_timer_retransmit_handler_i (u32 index, u8 is_syn)
1363{
1364 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001365 vlib_main_t *vm = vlib_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02001366 u32 thread_index = vlib_get_thread_index ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001367 tcp_connection_t *tc;
Florin Corasb2215d62017-08-01 16:56:58 -07001368 vlib_buffer_t *b = 0;
Florin Coras3af90fc2017-05-03 21:09:42 -07001369 u32 bi, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001370
1371 if (is_syn)
1372 {
1373 tc = tcp_half_open_connection_get (index);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001374 /* Note: the connection may have transitioned to ESTABLISHED... */
1375 if (PREDICT_FALSE (tc == 0))
1376 return;
Florin Coras68810622017-07-24 17:40:28 -07001377 tc->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05001378 }
1379 else
1380 {
1381 tc = tcp_connection_get (index, thread_index);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001382 /* Note: the connection may have been closed and pool_put */
1383 if (PREDICT_FALSE (tc == 0))
1384 return;
Florin Coras68810622017-07-24 17:40:28 -07001385 tc->timers[TCP_TIMER_RETRANSMIT] = TCP_TIMER_HANDLE_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05001386 }
1387
Florin Corasca1c8f32018-05-23 21:01:30 -07001388 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 1);
1389
Florin Corase04c2992017-03-01 08:17:34 -08001390 if (tc->state >= TCP_STATE_ESTABLISHED)
Dave Barach68b0fb02017-02-28 15:15:56 -05001391 {
Florin Coras93992a92017-05-24 18:03:56 -07001392 /* Lost FIN, retransmit and return */
Florin Coras93e65802017-11-29 00:07:11 -05001393 if (tcp_is_lost_fin (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001394 {
1395 tcp_send_fin (tc);
Florin Corasf988e692017-11-27 04:34:14 -05001396 tc->rto_boff += 1;
1397 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
Florin Coras93992a92017-05-24 18:03:56 -07001398 return;
1399 }
1400
Florin Corasa096f2d2017-09-28 23:49:42 -04001401 /* Shouldn't be here */
Florin Corasd2aab832018-05-22 11:39:59 -07001402 if (seq_geq (tc->snd_una, tc->snd_congestion))
Florin Corasa096f2d2017-09-28 23:49:42 -04001403 {
1404 tcp_recovery_off (tc);
1405 return;
1406 }
1407
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001408 /* We're not in recovery so make sure rto_boff is 0 */
1409 if (!tcp_in_recovery (tc) && tc->rto_boff > 0)
1410 {
1411 tc->rto_boff = 0;
1412 tcp_update_rto (tc);
1413 }
1414
1415 /* Increment RTO backoff (also equal to number of retries) and go back
1416 * to first un-acked byte */
1417 tc->rto_boff += 1;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001418
Florin Coras6792ec02017-03-13 03:49:51 -07001419 /* First retransmit timeout */
1420 if (tc->rto_boff == 1)
Florin Corasca1c8f32018-05-23 21:01:30 -07001421 tcp_rxt_timeout_cc (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001422
Florin Corasd2aab832018-05-22 11:39:59 -07001423 tc->snd_una_max = tc->snd_nxt = tc->snd_una;
Dave Barach68b0fb02017-02-28 15:15:56 -05001424 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1425
Dave Barachb7f1faa2017-08-29 11:43:37 -04001426 /* Send one segment. Note that n_bytes may be zero due to buffer shortfall */
Florin Corasb2215d62017-08-01 16:56:58 -07001427 n_bytes = tcp_prepare_retransmit_segment (tc, 0, tc->snd_mss, &b);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001428
Florin Coras93992a92017-05-24 18:03:56 -07001429 /* TODO be less aggressive about this */
Florin Coras3af90fc2017-05-03 21:09:42 -07001430 scoreboard_clear (&tc->sack_sb);
1431
1432 if (n_bytes == 0)
Florin Corase04c2992017-03-01 08:17:34 -08001433 {
Florin Corasbb292f42017-05-19 09:49:19 -07001434 tcp_retransmit_timer_set (tc);
Florin Corase04c2992017-03-01 08:17:34 -08001435 return;
1436 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001437
Dave Barachb7f1faa2017-08-29 11:43:37 -04001438 bi = vlib_get_buffer_index (vm, b);
1439
Florin Coras93992a92017-05-24 18:03:56 -07001440 /* For first retransmit, record timestamp (Eifel detection RFC3522) */
1441 if (tc->rto_boff == 1)
1442 tc->snd_rxt_ts = tcp_time_now ();
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001443
1444 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1445 tcp_retransmit_timer_update (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001446 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001447 /* Retransmit for SYN */
1448 else if (tc->state == TCP_STATE_SYN_SENT)
Florin Coras93992a92017-05-24 18:03:56 -07001449 {
Florin Coras68810622017-07-24 17:40:28 -07001450 /* Half-open connection actually moved to established but we were
1451 * waiting for syn retransmit to pop to call cleanup from the right
1452 * thread. */
1453 if (tc->flags & TCP_CONN_HALF_OPEN_DONE)
1454 {
Florin Coras68810622017-07-24 17:40:28 -07001455 if (tcp_half_open_connection_cleanup (tc))
1456 {
1457 clib_warning ("could not remove half-open connection");
1458 ASSERT (0);
1459 }
1460 return;
1461 }
1462
Dave Barach68b0fb02017-02-28 15:15:56 -05001463 /* Try without increasing RTO a number of times. If this fails,
1464 * start growing RTO exponentially */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001465 tc->rto_boff += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001466 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1467 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1468
Florin Corasf988e692017-11-27 04:34:14 -05001469 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN,
1470 tc->rto * TCP_TO_TIMER_TICK);
1471
Florin Corasb2215d62017-08-01 16:56:58 -07001472 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001473 return;
1474
Florin Corasb2215d62017-08-01 16:56:58 -07001475 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001476 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001477 tcp_make_syn (tc, b);
Florin Corase04c2992017-03-01 08:17:34 -08001478
Dave Barach2c25a622017-06-26 11:35:07 -04001479 tc->rtt_ts = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001480 TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 0);
1481
1482 /* This goes straight to ipx_lookup. Retransmit timer set already */
1483 tcp_push_ip_hdr (tm, tc, b);
Florin Coras56b39f62018-03-27 17:29:32 -07001484 tcp_enqueue_to_ip_lookup (vm, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001485 }
1486 /* Retransmit SYN-ACK */
1487 else if (tc->state == TCP_STATE_SYN_RCVD)
1488 {
1489 tc->rto_boff += 1;
Florin Coras9d063042017-09-14 03:08:00 -04001490 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1491 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001492 tc->rtt_ts = 0;
1493
1494 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
Florin Corasf988e692017-11-27 04:34:14 -05001495 {
1496 tcp_retransmit_timer_force_update (tc);
1497 return;
1498 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001499
1500 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001501 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001502 tcp_make_synack (tc, b);
1503 TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 1);
1504
1505 /* Retransmit timer already updated, just enqueue to output */
1506 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001507 }
Florin Coras93992a92017-05-24 18:03:56 -07001508 else
1509 {
1510 ASSERT (tc->state == TCP_STATE_CLOSED);
Florin Coras93992a92017-05-24 18:03:56 -07001511 return;
1512 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001513}
1514
1515void
1516tcp_timer_retransmit_handler (u32 index)
1517{
1518 tcp_timer_retransmit_handler_i (index, 0);
1519}
1520
1521void
1522tcp_timer_retransmit_syn_handler (u32 index)
1523{
1524 tcp_timer_retransmit_handler_i (index, 1);
1525}
1526
1527/**
Florin Coras3e350af2017-03-30 02:54:28 -07001528 * Got 0 snd_wnd from peer, try to do something about it.
1529 *
1530 */
1531void
1532tcp_timer_persist_handler (u32 index)
1533{
1534 tcp_main_t *tm = vnet_get_tcp_main ();
1535 vlib_main_t *vm = vlib_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02001536 u32 thread_index = vlib_get_thread_index ();
Florin Coras3e350af2017-03-30 02:54:28 -07001537 tcp_connection_t *tc;
1538 vlib_buffer_t *b;
Florin Coras84275e92017-09-26 12:30:40 -04001539 u32 bi, max_snd_bytes, available_bytes, offset;
Florin Coras93992a92017-05-24 18:03:56 -07001540 int n_bytes = 0;
Florin Coras1f152cd2017-08-18 19:28:03 -07001541 u8 *data;
Florin Coras3e350af2017-03-30 02:54:28 -07001542
Florin Corasdb84e572017-05-09 18:54:52 -07001543 tc = tcp_connection_get_if_valid (index, thread_index);
1544
1545 if (!tc)
1546 return;
Florin Coras3e350af2017-03-30 02:54:28 -07001547
1548 /* Make sure timer handle is set to invalid */
1549 tc->timers[TCP_TIMER_PERSIST] = TCP_TIMER_HANDLE_INVALID;
1550
1551 /* Problem already solved or worse */
Florin Corasf03a59a2017-06-09 21:07:32 -07001552 if (tc->state == TCP_STATE_CLOSED || tc->state > TCP_STATE_ESTABLISHED
Florin Coras50958952017-08-29 14:50:13 -07001553 || tc->snd_wnd > tc->snd_mss || tcp_in_recovery (tc))
Florin Coras3e350af2017-03-30 02:54:28 -07001554 return;
1555
Florin Coras50958952017-08-29 14:50:13 -07001556 available_bytes = stream_session_tx_fifo_max_dequeue (&tc->connection);
1557 offset = tc->snd_una_max - tc->snd_una;
1558
1559 /* Reprogram persist if no new bytes available to send. We may have data
1560 * next time */
1561 if (!available_bytes)
1562 {
1563 tcp_persist_timer_set (tc);
1564 return;
1565 }
1566
1567 if (available_bytes <= offset)
1568 {
1569 ASSERT (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT));
1570 return;
1571 }
1572
Florin Coras3e350af2017-03-30 02:54:28 -07001573 /* Increment RTO backoff */
1574 tc->rto_boff += 1;
1575 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1576
Florin Corasb2215d62017-08-01 16:56:58 -07001577 /*
1578 * Try to force the first unsent segment (or buffer)
1579 */
Florin Coras66b11312017-07-31 17:18:03 -07001580 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1581 return;
Florin Coras3e350af2017-03-30 02:54:28 -07001582 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001583 data = tcp_init_buffer (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001584
Florin Coras1f152cd2017-08-18 19:28:03 -07001585 tcp_validate_txf_size (tc, offset);
Florin Corasc8343412017-05-04 14:25:50 -07001586 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
Florin Coras1f152cd2017-08-18 19:28:03 -07001587 max_snd_bytes = clib_min (tc->snd_mss, tm->bytes_per_buffer - MAX_HDRS_LEN);
1588 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1589 max_snd_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001590 b->current_length = n_bytes;
Florin Coras84275e92017-09-26 12:30:40 -04001591 ASSERT (n_bytes != 0 && (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)
1592 || tc->snd_nxt == tc->snd_una_max
1593 || tc->rto_boff > 1));
Florin Coras93992a92017-05-24 18:03:56 -07001594
Florin Corasc8343412017-05-04 14:25:50 -07001595 tcp_push_hdr_i (tc, b, tc->state, 0);
Florin Coras3e350af2017-03-30 02:54:28 -07001596 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1597
Florin Coras1f152cd2017-08-18 19:28:03 -07001598 /* Just sent new data, enable retransmit */
1599 tcp_retransmit_timer_update (tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001600}
1601
1602/**
Florin Coras6792ec02017-03-13 03:49:51 -07001603 * Retransmit first unacked segment
1604 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001605void
1606tcp_retransmit_first_unacked (tcp_connection_t * tc)
1607{
Florin Coras6792ec02017-03-13 03:49:51 -07001608 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001609 vlib_buffer_t *b;
Florin Corasb2215d62017-08-01 16:56:58 -07001610 u32 bi, old_snd_nxt, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001611
Florin Coras93992a92017-05-24 18:03:56 -07001612 old_snd_nxt = tc->snd_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001613 tc->snd_nxt = tc->snd_una;
1614
Florin Coras6792ec02017-03-13 03:49:51 -07001615 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2);
Florin Corasb2215d62017-08-01 16:56:58 -07001616 n_bytes = tcp_prepare_retransmit_segment (tc, 0, tc->snd_mss, &b);
1617 if (!n_bytes)
1618 return;
1619 bi = vlib_get_buffer_index (vm, b);
Florin Coras6792ec02017-03-13 03:49:51 -07001620 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras5921f982017-04-03 18:00:00 -07001621
Florin Coras93992a92017-05-24 18:03:56 -07001622 tc->snd_nxt = old_snd_nxt;
Florin Coras6792ec02017-03-13 03:49:51 -07001623}
1624
1625/**
Florin Coras93992a92017-05-24 18:03:56 -07001626 * Do fast retransmit with SACKs
Florin Coras6792ec02017-03-13 03:49:51 -07001627 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001628void
Florin Coras93992a92017-05-24 18:03:56 -07001629tcp_fast_retransmit_sack (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001630{
Florin Coras6792ec02017-03-13 03:49:51 -07001631 vlib_main_t *vm = vlib_get_main ();
Florin Corasca1c8f32018-05-23 21:01:30 -07001632 u32 n_written = 0, offset, max_bytes, n_segs = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001633 vlib_buffer_t *b = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001634 sack_scoreboard_hole_t *hole;
1635 sack_scoreboard_t *sb;
1636 u32 bi, old_snd_nxt;
1637 int snd_space;
1638 u8 snd_limited = 0, can_rescue = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001639
1640 ASSERT (tcp_in_fastrecovery (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -05001641
Florin Coras93992a92017-05-24 18:03:56 -07001642 old_snd_nxt = tc->snd_nxt;
1643 sb = &tc->sack_sb;
Florin Corasca1c8f32018-05-23 21:01:30 -07001644 snd_space = tcp_available_cc_snd_space (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001645
Florin Corasca1c8f32018-05-23 21:01:30 -07001646 if (snd_space < tc->snd_mss)
1647 goto done;
1648
1649 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0);
Florin Coras93992a92017-05-24 18:03:56 -07001650 hole = scoreboard_get_hole (sb, sb->cur_rxt_hole);
Florin Corasca1c8f32018-05-23 21:01:30 -07001651 while (hole && snd_space > 0 && n_segs++ < VLIB_FRAME_SIZE)
Florin Coras93992a92017-05-24 18:03:56 -07001652 {
Florin Coras93992a92017-05-24 18:03:56 -07001653 hole = scoreboard_next_rxt_hole (sb, hole,
1654 tcp_fastrecovery_sent_1_smss (tc),
1655 &can_rescue, &snd_limited);
1656 if (!hole)
1657 {
1658 if (!can_rescue || !(seq_lt (sb->rescue_rxt, tc->snd_una)
1659 || seq_gt (sb->rescue_rxt,
1660 tc->snd_congestion)))
1661 break;
1662
1663 /* If rescue rxt undefined or less than snd_una then one segment of
1664 * up to SMSS octets that MUST include the highest outstanding
1665 * unSACKed sequence number SHOULD be returned, and RescueRxt set to
1666 * RecoveryPoint. HighRxt MUST NOT be updated.
1667 */
Florin Coras1f152cd2017-08-18 19:28:03 -07001668 max_bytes = clib_min (tc->snd_mss,
1669 tc->snd_congestion - tc->snd_una);
1670 max_bytes = clib_min (max_bytes, snd_space);
Florin Coras93992a92017-05-24 18:03:56 -07001671 offset = tc->snd_congestion - tc->snd_una - max_bytes;
1672 sb->rescue_rxt = tc->snd_congestion;
1673 tc->snd_nxt = tc->snd_una + offset;
Florin Corasb2215d62017-08-01 16:56:58 -07001674 n_written = tcp_prepare_retransmit_segment (tc, offset, max_bytes,
1675 &b);
Florin Coras24793e32018-05-09 11:34:25 -07001676 if (!n_written)
1677 goto done;
1678
Florin Corasb2215d62017-08-01 16:56:58 -07001679 bi = vlib_get_buffer_index (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001680 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1681 break;
1682 }
1683
Florin Coras1f152cd2017-08-18 19:28:03 -07001684 max_bytes = clib_min (hole->end - sb->high_rxt, snd_space);
1685 max_bytes = snd_limited ? clib_min (max_bytes, tc->snd_mss) : max_bytes;
1686 if (max_bytes == 0)
1687 break;
Florin Coras93992a92017-05-24 18:03:56 -07001688 offset = sb->high_rxt - tc->snd_una;
Florin Coras1f152cd2017-08-18 19:28:03 -07001689 tc->snd_nxt = sb->high_rxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001690 n_written = tcp_prepare_retransmit_segment (tc, offset, max_bytes, &b);
Florin Coras93992a92017-05-24 18:03:56 -07001691
1692 /* Nothing left to retransmit */
1693 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001694 break;
Florin Coras93992a92017-05-24 18:03:56 -07001695
Florin Corasb2215d62017-08-01 16:56:58 -07001696 bi = vlib_get_buffer_index (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001697 sb->high_rxt += n_written;
1698 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras1f152cd2017-08-18 19:28:03 -07001699 ASSERT (n_written <= snd_space);
Florin Coras93992a92017-05-24 18:03:56 -07001700 snd_space -= n_written;
1701 }
1702
Florin Coras24793e32018-05-09 11:34:25 -07001703done:
Florin Coras93992a92017-05-24 18:03:56 -07001704 /* If window allows, send 1 SMSS of new data */
1705 tc->snd_nxt = old_snd_nxt;
1706}
1707
1708/**
1709 * Fast retransmit without SACK info
1710 */
1711void
1712tcp_fast_retransmit_no_sack (tcp_connection_t * tc)
1713{
Florin Coras93992a92017-05-24 18:03:56 -07001714 vlib_main_t *vm = vlib_get_main ();
1715 u32 n_written = 0, offset = 0, bi, old_snd_nxt;
1716 int snd_space;
1717 vlib_buffer_t *b;
1718
1719 ASSERT (tcp_in_fastrecovery (tc));
1720 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0);
1721
1722 /* Start resending from first un-acked segment */
1723 old_snd_nxt = tc->snd_nxt;
1724 tc->snd_nxt = tc->snd_una;
Florin Corasca1c8f32018-05-23 21:01:30 -07001725 snd_space = tcp_available_cc_snd_space (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001726
1727 while (snd_space > 0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001728 {
Florin Coras93992a92017-05-24 18:03:56 -07001729 offset += n_written;
Florin Corasb2215d62017-08-01 16:56:58 -07001730 n_written = tcp_prepare_retransmit_segment (tc, offset, snd_space, &b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001731
1732 /* Nothing left to retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001733 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001734 break;
Dave Barach68b0fb02017-02-28 15:15:56 -05001735
Florin Corasb2215d62017-08-01 16:56:58 -07001736 bi = vlib_get_buffer_index (vm, b);
Florin Coras6792ec02017-03-13 03:49:51 -07001737 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras6792ec02017-03-13 03:49:51 -07001738 snd_space -= n_written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001739 }
1740
Florin Coras93992a92017-05-24 18:03:56 -07001741 /* Restore snd_nxt. If window allows, send 1 SMSS of new data */
1742 tc->snd_nxt = old_snd_nxt;
1743}
1744
1745/**
1746 * Do fast retransmit
1747 */
1748void
1749tcp_fast_retransmit (tcp_connection_t * tc)
1750{
Florin Corasca1c8f32018-05-23 21:01:30 -07001751 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras93992a92017-05-24 18:03:56 -07001752 tcp_fast_retransmit_sack (tc);
1753 else
1754 tcp_fast_retransmit_no_sack (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001755}
1756
1757always_inline u32
1758tcp_session_has_ooo_data (tcp_connection_t * tc)
1759{
Florin Corascea194d2017-10-02 00:18:51 -07001760 stream_session_t *s = session_get (tc->c_s_index, tc->c_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001761 return svm_fifo_has_ooo_data (s->server_rx_fifo);
1762}
1763
Florin Corasf9d05682018-04-26 08:26:52 -07001764static void
1765tcp_output_handle_link_local (tcp_connection_t * tc0, vlib_buffer_t * b0,
1766 u32 * next0, u32 * error0)
1767{
1768 ip_adjacency_t *adj;
1769 adj_index_t ai;
1770
Florin Coras1c8ff632018-05-17 13:28:34 -07001771 /* Not thread safe but as long as the connection exists the adj should
1772 * not be removed */
Florin Corasf9d05682018-04-26 08:26:52 -07001773 ai = adj_nbr_find (FIB_PROTOCOL_IP6, VNET_LINK_IP6, &tc0->c_rmt_ip,
1774 tc0->sw_if_index);
1775 if (ai == ADJ_INDEX_INVALID)
1776 {
Florin Corasf9d05682018-04-26 08:26:52 -07001777 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
1778 *next0 = TCP_OUTPUT_NEXT_DROP;
1779 *error0 = TCP_ERROR_LINK_LOCAL_RW;
1780 return;
1781 }
1782
1783 adj = adj_get (ai);
Florin Coras1c8ff632018-05-17 13:28:34 -07001784 if (PREDICT_TRUE (adj->lookup_next_index == IP_LOOKUP_NEXT_REWRITE))
Florin Corasf9d05682018-04-26 08:26:52 -07001785 *next0 = TCP_OUTPUT_NEXT_IP_REWRITE;
1786 else if (adj->lookup_next_index == IP_LOOKUP_NEXT_ARP)
1787 *next0 = TCP_OUTPUT_NEXT_IP_ARP;
Florin Coras1c8ff632018-05-17 13:28:34 -07001788 else
1789 {
1790 *next0 = TCP_OUTPUT_NEXT_DROP;
1791 *error0 = TCP_ERROR_LINK_LOCAL_RW;
1792 }
1793 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = ai;
Florin Corasf9d05682018-04-26 08:26:52 -07001794}
1795
Dave Barach68b0fb02017-02-28 15:15:56 -05001796always_inline uword
1797tcp46_output_inline (vlib_main_t * vm,
1798 vlib_node_runtime_t * node,
1799 vlib_frame_t * from_frame, int is_ip4)
1800{
Dave Barach68b0fb02017-02-28 15:15:56 -05001801 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02001802 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05001803
1804 from = vlib_frame_vector_args (from_frame);
1805 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05001806 next_index = node->cached_next_index;
Florin Coras82d3ec82017-08-14 08:10:42 -07001807 tcp_set_time_now (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001808
1809 while (n_left_from > 0)
1810 {
1811 u32 n_left_to_next;
1812
1813 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1814
1815 while (n_left_from > 0 && n_left_to_next > 0)
1816 {
1817 u32 bi0;
1818 vlib_buffer_t *b0;
1819 tcp_connection_t *tc0;
Clement Durand6cf260c2017-04-13 13:27:04 +02001820 tcp_tx_trace_t *t0;
1821 tcp_header_t *th0 = 0;
Dave Barach2c25a622017-06-26 11:35:07 -04001822 u32 error0 = TCP_ERROR_PKTS_SENT, next0 = TCP_OUTPUT_NEXT_IP_LOOKUP;
Dave Barach68b0fb02017-02-28 15:15:56 -05001823
Florin Coras81a13db2018-03-16 08:48:31 -07001824 if (n_left_from > 1)
1825 {
1826 vlib_buffer_t *pb;
1827 pb = vlib_get_buffer (vm, from[1]);
1828 vlib_prefetch_buffer_header (pb, STORE);
1829 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
1830 }
1831
Dave Barach68b0fb02017-02-28 15:15:56 -05001832 bi0 = from[0];
1833 to_next[0] = bi0;
1834 from += 1;
1835 to_next += 1;
1836 n_left_from -= 1;
1837 n_left_to_next -= 1;
1838
1839 b0 = vlib_get_buffer (vm, bi0);
1840 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
1841 my_thread_index);
Florin Corasd79b41e2017-03-04 05:37:52 -08001842 if (PREDICT_FALSE (tc0 == 0 || tc0->state == TCP_STATE_CLOSED))
1843 {
1844 error0 = TCP_ERROR_INVALID_CONNECTION;
1845 next0 = TCP_OUTPUT_NEXT_DROP;
1846 goto done;
1847 }
1848
Dave Barach68b0fb02017-02-28 15:15:56 -05001849 th0 = vlib_buffer_get_current (b0);
Florin Corase69f4952017-03-07 10:06:24 -08001850 TCP_EVT_DBG (TCP_EVT_OUTPUT, tc0, th0->flags, b0->current_length);
Florin Corasf9d05682018-04-26 08:26:52 -07001851 vnet_buffer (b0)->sw_if_index[VLIB_TX] = tc0->c_fib_index;
1852 vnet_buffer (b0)->sw_if_index[VLIB_RX] = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001853
1854 if (is_ip4)
1855 {
Florin Coras66b11312017-07-31 17:18:03 -07001856 vlib_buffer_push_ip4 (vm, b0, &tc0->c_lcl_ip4, &tc0->c_rmt_ip4,
1857 IP_PROTOCOL_TCP, 1);
1858 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
Dave Barach2c0a4f42017-06-29 09:30:15 -04001859 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
1860 th0->checksum = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001861 }
1862 else
1863 {
1864 ip6_header_t *ih0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001865 ih0 = vlib_buffer_push_ip6 (vm, b0, &tc0->c_lcl_ip6,
1866 &tc0->c_rmt_ip6, IP_PROTOCOL_TCP);
Florin Coras66b11312017-07-31 17:18:03 -07001867 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
Dave Barach2c0a4f42017-06-29 09:30:15 -04001868 vnet_buffer (b0)->l3_hdr_offset = (u8 *) ih0 - b0->data;
1869 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
1870 th0->checksum = 0;
Florin Corasf9d05682018-04-26 08:26:52 -07001871
1872 if (PREDICT_FALSE
1873 (ip6_address_is_link_local_unicast (&tc0->c_rmt_ip6)))
1874 tcp_output_handle_link_local (tc0, b0, &next0, &error0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001875 }
1876
1877 /* Filter out DUPACKs if there are no OOO segments left */
1878 if (PREDICT_FALSE
1879 (vnet_buffer (b0)->tcp.flags & TCP_BUF_FLAG_DUPACK))
1880 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001881 /* N.B. Should not filter burst of dupacks. Two issues:
1882 * 1) dupacks open cwnd on remote peer when congested
1883 * 2) acks leaving should have the latest rcv_wnd since the
1884 * burst may have eaten up all of it, so only the old ones
1885 * could be filtered.
1886 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001887 if (!tcp_session_has_ooo_data (tc0))
1888 {
1889 error0 = TCP_ERROR_FILTERED_DUPACKS;
1890 next0 = TCP_OUTPUT_NEXT_DROP;
1891 goto done;
1892 }
1893 }
1894
Dave Barach68b0fb02017-02-28 15:15:56 -05001895 /* Stop DELACK timer and fix flags */
Florin Coras6792ec02017-03-13 03:49:51 -07001896 tc0->flags &= ~(TCP_CONN_SNDACK);
Florin Corasf03a59a2017-06-09 21:07:32 -07001897 tcp_timer_reset (tc0, TCP_TIMER_DELACK);
Dave Barach68b0fb02017-02-28 15:15:56 -05001898
1899 /* If not retransmitting
Florin Coras3af90fc2017-05-03 21:09:42 -07001900 * 1) update snd_una_max (SYN, SYNACK, FIN)
Dave Barach68b0fb02017-02-28 15:15:56 -05001901 * 2) If we're not tracking an ACK, start tracking */
1902 if (seq_lt (tc0->snd_una_max, tc0->snd_nxt))
1903 {
1904 tc0->snd_una_max = tc0->snd_nxt;
1905 if (tc0->rtt_ts == 0)
1906 {
1907 tc0->rtt_ts = tcp_time_now ();
1908 tc0->rtt_seq = tc0->snd_nxt;
1909 }
1910 }
1911
1912 /* Set the retransmit timer if not set already and not
1913 * doing a pure ACK */
1914 if (!tcp_timer_is_active (tc0, TCP_TIMER_RETRANSMIT)
1915 && tc0->snd_nxt != tc0->snd_una)
1916 {
Florin Corasd79b41e2017-03-04 05:37:52 -08001917 tcp_retransmit_timer_set (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001918 tc0->rto_boff = 0;
1919 }
1920
Dave Barach2c25a622017-06-26 11:35:07 -04001921#if 0
Florin Corasf6359c82017-06-19 12:26:09 -04001922 /* Make sure we haven't lost route to our peer */
1923 if (PREDICT_FALSE (tc0->last_fib_check
1924 < tc0->snd_opts.tsval + TCP_FIB_RECHECK_PERIOD))
1925 {
1926 if (PREDICT_TRUE
1927 (tc0->c_rmt_fei == tcp_lookup_rmt_in_fib (tc0)))
1928 {
1929 tc0->last_fib_check = tc0->snd_opts.tsval;
1930 }
1931 else
1932 {
1933 clib_warning ("lost connection to peer");
1934 tcp_connection_reset (tc0);
1935 goto done;
1936 }
1937 }
1938
1939 /* Use pre-computed dpo to set next node */
1940 next0 = tc0->c_rmt_dpo.dpoi_next_node;
1941 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = tc0->c_rmt_dpo.dpoi_index;
Dave Barach2c25a622017-06-26 11:35:07 -04001942#endif
1943
Dave Barach68b0fb02017-02-28 15:15:56 -05001944 done:
Florin Corase69f4952017-03-07 10:06:24 -08001945 b0->error = node->errors[error0];
Dave Barach68b0fb02017-02-28 15:15:56 -05001946 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
1947 {
Clement Durand6cf260c2017-04-13 13:27:04 +02001948 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
1949 if (th0)
1950 {
1951 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
1952 }
1953 else
1954 {
1955 memset (&t0->tcp_header, 0, sizeof (t0->tcp_header));
1956 }
1957 clib_memcpy (&t0->tcp_connection, tc0,
1958 sizeof (t0->tcp_connection));
Dave Barach68b0fb02017-02-28 15:15:56 -05001959 }
1960
1961 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1962 n_left_to_next, bi0, next0);
1963 }
1964
1965 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1966 }
1967
1968 return from_frame->n_vectors;
1969}
1970
1971static uword
1972tcp4_output (vlib_main_t * vm, vlib_node_runtime_t * node,
1973 vlib_frame_t * from_frame)
1974{
1975 return tcp46_output_inline (vm, node, from_frame, 1 /* is_ip4 */ );
1976}
1977
1978static uword
1979tcp6_output (vlib_main_t * vm, vlib_node_runtime_t * node,
1980 vlib_frame_t * from_frame)
1981{
1982 return tcp46_output_inline (vm, node, from_frame, 0 /* is_ip4 */ );
1983}
1984
Florin Corase69f4952017-03-07 10:06:24 -08001985/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001986VLIB_REGISTER_NODE (tcp4_output_node) =
1987{
1988 .function = tcp4_output,.name = "tcp4-output",
1989 /* Takes a vector of packets. */
Florin Corase69f4952017-03-07 10:06:24 -08001990 .vector_size = sizeof (u32),
1991 .n_errors = TCP_N_ERROR,
1992 .error_strings = tcp_error_strings,
1993 .n_next_nodes = TCP_OUTPUT_N_NEXT,
1994 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05001995#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
1996 foreach_tcp4_output_next
1997#undef _
Florin Corase69f4952017-03-07 10:06:24 -08001998 },
1999 .format_buffer = format_tcp_header,
2000 .format_trace = format_tcp_tx_trace,
2001};
2002/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002003
Florin Corase69f4952017-03-07 10:06:24 -08002004VLIB_NODE_FUNCTION_MULTIARCH (tcp4_output_node, tcp4_output);
2005
2006/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002007VLIB_REGISTER_NODE (tcp6_output_node) =
2008{
Florin Corase69f4952017-03-07 10:06:24 -08002009 .function = tcp6_output,
2010 .name = "tcp6-output",
Dave Barach68b0fb02017-02-28 15:15:56 -05002011 /* Takes a vector of packets. */
Florin Corase69f4952017-03-07 10:06:24 -08002012 .vector_size = sizeof (u32),
2013 .n_errors = TCP_N_ERROR,
2014 .error_strings = tcp_error_strings,
2015 .n_next_nodes = TCP_OUTPUT_N_NEXT,
2016 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002017#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
2018 foreach_tcp6_output_next
2019#undef _
Florin Corase69f4952017-03-07 10:06:24 -08002020 },
2021 .format_buffer = format_tcp_header,
2022 .format_trace = format_tcp_tx_trace,
2023};
2024/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002025
Florin Corase69f4952017-03-07 10:06:24 -08002026VLIB_NODE_FUNCTION_MULTIARCH (tcp6_output_node, tcp6_output);
2027
2028u32
Dave Barach68b0fb02017-02-28 15:15:56 -05002029tcp_push_header (transport_connection_t * tconn, vlib_buffer_t * b)
2030{
2031 tcp_connection_t *tc;
2032
2033 tc = (tcp_connection_t *) tconn;
Florin Corasc8343412017-05-04 14:25:50 -07002034 tcp_push_hdr_i (tc, b, TCP_STATE_ESTABLISHED, 0);
Florin Coras1f152cd2017-08-18 19:28:03 -07002035 ASSERT (seq_leq (tc->snd_una_max, tc->snd_una + tc->snd_wnd));
Florin Coras93992a92017-05-24 18:03:56 -07002036
Florin Corasf03a59a2017-06-09 21:07:32 -07002037 if (tc->rtt_ts == 0 && !tcp_in_cong_recovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07002038 {
2039 tc->rtt_ts = tcp_time_now ();
2040 tc->rtt_seq = tc->snd_nxt;
2041 }
Steven5c42f502018-02-01 09:17:17 -08002042 tcp_trajectory_add_start (b, 3);
Dave Barach68b0fb02017-02-28 15:15:56 -05002043 return 0;
2044}
2045
2046typedef enum _tcp_reset_next
2047{
2048 TCP_RESET_NEXT_DROP,
2049 TCP_RESET_NEXT_IP_LOOKUP,
2050 TCP_RESET_N_NEXT
2051} tcp_reset_next_t;
2052
2053#define foreach_tcp4_reset_next \
2054 _(DROP, "error-drop") \
2055 _(IP_LOOKUP, "ip4-lookup")
2056
2057#define foreach_tcp6_reset_next \
2058 _(DROP, "error-drop") \
2059 _(IP_LOOKUP, "ip6-lookup")
2060
2061static uword
2062tcp46_send_reset_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2063 vlib_frame_t * from_frame, u8 is_ip4)
2064{
2065 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02002066 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002067
2068 from = vlib_frame_vector_args (from_frame);
2069 n_left_from = from_frame->n_vectors;
2070
2071 next_index = node->cached_next_index;
2072
2073 while (n_left_from > 0)
2074 {
2075 u32 n_left_to_next;
2076
2077 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2078
2079 while (n_left_from > 0 && n_left_to_next > 0)
2080 {
2081 u32 bi0;
2082 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002083 tcp_tx_trace_t *t0;
2084 tcp_header_t *th0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002085 u32 error0 = TCP_ERROR_RST_SENT, next0 = TCP_RESET_NEXT_IP_LOOKUP;
2086
2087 bi0 = from[0];
2088 to_next[0] = bi0;
2089 from += 1;
2090 to_next += 1;
2091 n_left_from -= 1;
2092 n_left_to_next -= 1;
2093
2094 b0 = vlib_get_buffer (vm, bi0);
2095
2096 if (tcp_make_reset_in_place (vm, b0, vnet_buffer (b0)->tcp.flags,
2097 my_thread_index, is_ip4))
2098 {
2099 error0 = TCP_ERROR_LOOKUP_DROPS;
2100 next0 = TCP_RESET_NEXT_DROP;
2101 goto done;
2102 }
2103
2104 /* Prepare to send to IP lookup */
Florin Corasf988e692017-11-27 04:34:14 -05002105 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002106 next0 = TCP_RESET_NEXT_IP_LOOKUP;
2107
2108 done:
Florin Corase69f4952017-03-07 10:06:24 -08002109 b0->error = node->errors[error0];
Damjan Marion213b5aa2017-07-13 21:19:27 +02002110 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002111 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2112 {
Clement Durand6cf260c2017-04-13 13:27:04 +02002113 th0 = vlib_buffer_get_current (b0);
2114 if (is_ip4)
2115 th0 = ip4_next_header ((ip4_header_t *) th0);
2116 else
2117 th0 = ip6_next_header ((ip6_header_t *) th0);
Clement Durand6cf260c2017-04-13 13:27:04 +02002118 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2119 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
Dave Barach68b0fb02017-02-28 15:15:56 -05002120 }
2121
2122 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2123 n_left_to_next, bi0, next0);
2124 }
2125 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2126 }
2127 return from_frame->n_vectors;
2128}
2129
2130static uword
2131tcp4_send_reset (vlib_main_t * vm, vlib_node_runtime_t * node,
2132 vlib_frame_t * from_frame)
2133{
2134 return tcp46_send_reset_inline (vm, node, from_frame, 1);
2135}
2136
2137static uword
2138tcp6_send_reset (vlib_main_t * vm, vlib_node_runtime_t * node,
2139 vlib_frame_t * from_frame)
2140{
2141 return tcp46_send_reset_inline (vm, node, from_frame, 0);
2142}
2143
2144/* *INDENT-OFF* */
2145VLIB_REGISTER_NODE (tcp4_reset_node) = {
2146 .function = tcp4_send_reset,
2147 .name = "tcp4-reset",
2148 .vector_size = sizeof (u32),
2149 .n_errors = TCP_N_ERROR,
2150 .error_strings = tcp_error_strings,
2151 .n_next_nodes = TCP_RESET_N_NEXT,
2152 .next_nodes = {
2153#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2154 foreach_tcp4_reset_next
2155#undef _
2156 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002157 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002158};
2159/* *INDENT-ON* */
2160
Florin Corase69f4952017-03-07 10:06:24 -08002161VLIB_NODE_FUNCTION_MULTIARCH (tcp4_reset_node, tcp4_send_reset);
2162
Dave Barach68b0fb02017-02-28 15:15:56 -05002163/* *INDENT-OFF* */
2164VLIB_REGISTER_NODE (tcp6_reset_node) = {
2165 .function = tcp6_send_reset,
2166 .name = "tcp6-reset",
2167 .vector_size = sizeof (u32),
2168 .n_errors = TCP_N_ERROR,
2169 .error_strings = tcp_error_strings,
2170 .n_next_nodes = TCP_RESET_N_NEXT,
2171 .next_nodes = {
2172#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2173 foreach_tcp6_reset_next
2174#undef _
2175 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002176 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002177};
2178/* *INDENT-ON* */
2179
Florin Corase69f4952017-03-07 10:06:24 -08002180VLIB_NODE_FUNCTION_MULTIARCH (tcp6_reset_node, tcp6_send_reset);
2181
Dave Barach68b0fb02017-02-28 15:15:56 -05002182/*
2183 * fd.io coding-style-patch-verification: ON
2184 *
2185 * Local Variables:
2186 * eval: (c-set-style "gnu")
2187 * End:
2188 */