blob: f37958e12f286b7713a8a96636ae223a12b40657 [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
Florin Coras0dbd5172018-06-25 16:19:34 -0700134static void
Florin Coras6792ec02017-03-13 03:49:51 -0700135tcp_update_rcv_wnd (tcp_connection_t * tc)
136{
137 i32 observed_wnd;
138 u32 available_space, max_fifo, wnd;
139
Florin Corase04c2992017-03-01 08:17:34 -0800140 /*
141 * Figure out how much space we have available
142 */
Florin Corasd2aab832018-05-22 11:39:59 -0700143 available_space = transport_max_rx_enqueue (&tc->connection);
144 max_fifo = transport_rx_fifo_size (&tc->connection);
Dave Barach68b0fb02017-02-28 15:15:56 -0500145
Florin Coras93992a92017-05-24 18:03:56 -0700146 ASSERT (tc->rcv_opts.mss < max_fifo);
147 if (available_space < tc->rcv_opts.mss && available_space < max_fifo >> 3)
Florin Corase04c2992017-03-01 08:17:34 -0800148 available_space = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500149
Florin Corase04c2992017-03-01 08:17:34 -0800150 /*
151 * Use the above and what we know about what we've previously advertised
152 * to compute the new window
153 */
Florin Coras6792ec02017-03-13 03:49:51 -0700154 observed_wnd = (i32) tc->rcv_wnd - (tc->rcv_nxt - tc->rcv_las);
155 if (observed_wnd < 0)
156 observed_wnd = 0;
Florin Corase04c2992017-03-01 08:17:34 -0800157
158 /* Bad. Thou shalt not shrink */
159 if (available_space < observed_wnd)
160 {
Florin Coras6792ec02017-03-13 03:49:51 -0700161 wnd = observed_wnd;
Florin Coras3e350af2017-03-30 02:54:28 -0700162 TCP_EVT_DBG (TCP_EVT_RCV_WND_SHRUNK, tc, observed_wnd, available_space);
Florin Corase04c2992017-03-01 08:17:34 -0800163 }
Florin Coras6792ec02017-03-13 03:49:51 -0700164 else
Florin Corase04c2992017-03-01 08:17:34 -0800165 {
Florin Coras6792ec02017-03-13 03:49:51 -0700166 wnd = available_space;
Florin Corase04c2992017-03-01 08:17:34 -0800167 }
168
Florin Coras3e350af2017-03-30 02:54:28 -0700169 /* Make sure we have a multiple of rcv_wscale */
170 if (wnd && tc->rcv_wscale)
171 {
172 wnd &= ~(1 << tc->rcv_wscale);
173 if (wnd == 0)
174 wnd = 1 << tc->rcv_wscale;
175 }
Florin Coras6792ec02017-03-13 03:49:51 -0700176
177 tc->rcv_wnd = clib_min (wnd, TCP_WND_MAX << tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500178}
179
180/**
Florin Coras0dbd5172018-06-25 16:19:34 -0700181 * Compute and return window to advertise, scaled as per RFC1323
182 */
183static u32
184tcp_window_to_advertise (tcp_connection_t * tc, tcp_state_t state)
185{
186 if (state < TCP_STATE_ESTABLISHED)
187 return tcp_initial_window_to_advertise (tc);
188
189 tcp_update_rcv_wnd (tc);
190
191 if (tc->rcv_wnd == 0)
192 {
193 tc->flags |= TCP_CONN_SENT_RCV_WND0;
194 }
195 else
196 {
197 tc->flags &= ~TCP_CONN_SENT_RCV_WND0;
198 }
199
200 return tc->rcv_wnd >> tc->rcv_wscale;
201}
202
203/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500204 * Write TCP options to segment.
205 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700206static u32
Dave Barach68b0fb02017-02-28 15:15:56 -0500207tcp_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
Florin Coras0dbd5172018-06-25 16:19:34 -0700289static 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
Florin Coras0dbd5172018-06-25 16:19:34 -0700318static int
Dave Barach68b0fb02017-02-28 15:15:56 -0500319tcp_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
Florin Coras0dbd5172018-06-25 16:19:34 -0700353static int
Dave Barach68b0fb02017-02-28 15:15:56 -0500354tcp_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:
Florin Coras25579b42018-06-06 17:55:02 -0700393 case TCP_STATE_CLOSE_WAIT:
Dave Barach68b0fb02017-02-28 15:15:56 -0500394 return tcp_make_established_options (tc, opts);
395 case TCP_STATE_SYN_RCVD:
396 return tcp_make_synack_options (tc, opts);
397 case TCP_STATE_SYN_SENT:
Florin Corase04c2992017-03-01 08:17:34 -0800398 return tcp_make_syn_options (opts, tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500399 default:
Florin Coras371ca502018-02-21 12:07:41 -0800400 clib_warning ("State not handled! %d", state);
Dave Barach68b0fb02017-02-28 15:15:56 -0500401 return 0;
402 }
403}
404
Florin Corasc8343412017-05-04 14:25:50 -0700405/**
Florin Corasb26743d2018-06-26 09:31:04 -0700406 * Update burst send vars
407 *
408 * - Updates snd_mss to reflect the effective segment size that we can send
409 * by taking into account all TCP options, including SACKs.
410 * - Cache 'on the wire' options for reuse
411 * - Updates receive window which can be reused for a burst.
412 *
413 * This should *only* be called when doing bursts
Florin Corasc8343412017-05-04 14:25:50 -0700414 */
415void
Florin Corasb26743d2018-06-26 09:31:04 -0700416tcp_update_burst_snd_vars (tcp_connection_t * tc)
Florin Corasc8343412017-05-04 14:25:50 -0700417{
Florin Corasb26743d2018-06-26 09:31:04 -0700418 tcp_main_t *tm = &tcp_main;
419
Florin Corasc8343412017-05-04 14:25:50 -0700420 /* Compute options to be used for connection. These may be reused when
421 * sending data or to compute the effective mss (snd_mss) */
Florin Corasb26743d2018-06-26 09:31:04 -0700422 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts,
423 TCP_STATE_ESTABLISHED);
Florin Corasc8343412017-05-04 14:25:50 -0700424
425 /* XXX check if MTU has been updated */
Florin Coras93992a92017-05-24 18:03:56 -0700426 tc->snd_mss = clib_min (tc->mss, tc->rcv_opts.mss) - tc->snd_opts_len;
Florin Corasdb84e572017-05-09 18:54:52 -0700427 ASSERT (tc->snd_mss > 0);
Florin Corasb26743d2018-06-26 09:31:04 -0700428
429 tcp_options_write (tm->wrk_ctx[tc->c_thread_index].cached_opts,
430 &tc->snd_opts);
431
432 tcp_update_rcv_wnd (tc);
Florin Corasc8343412017-05-04 14:25:50 -0700433}
434
435void
436tcp_init_mss (tcp_connection_t * tc)
437{
Florin Corasdb84e572017-05-09 18:54:52 -0700438 u16 default_min_mss = 536;
Florin Corasc8343412017-05-04 14:25:50 -0700439 tcp_update_rcv_mss (tc);
440
441 /* TODO cache mss and consider PMTU discovery */
Florin Coras93992a92017-05-24 18:03:56 -0700442 tc->snd_mss = clib_min (tc->rcv_opts.mss, tc->mss);
Florin Corasc8343412017-05-04 14:25:50 -0700443
Florin Corasdb84e572017-05-09 18:54:52 -0700444 if (tc->snd_mss < 45)
Florin Corasc8343412017-05-04 14:25:50 -0700445 {
446 clib_warning ("snd mss is 0");
Florin Corasdb84e572017-05-09 18:54:52 -0700447 /* Assume that at least the min default mss works */
448 tc->snd_mss = default_min_mss;
Florin Coras93992a92017-05-24 18:03:56 -0700449 tc->rcv_opts.mss = default_min_mss;
Florin Corasc8343412017-05-04 14:25:50 -0700450 }
451
452 /* We should have enough space for 40 bytes of options */
453 ASSERT (tc->snd_mss > 45);
454
455 /* If we use timestamp option, account for it */
Florin Coras93992a92017-05-24 18:03:56 -0700456 if (tcp_opts_tstamp (&tc->rcv_opts))
Florin Corasc8343412017-05-04 14:25:50 -0700457 tc->snd_mss -= TCP_OPTION_LEN_TIMESTAMP;
458}
459
Florin Coras0dbd5172018-06-25 16:19:34 -0700460static int
Florin Coras24793e32018-05-09 11:34:25 -0700461tcp_alloc_tx_buffers (tcp_main_t * tm, u8 thread_index, u16 * n_bufs,
462 u32 wanted)
Florin Corasb2215d62017-08-01 16:56:58 -0700463{
Florin Coras2c414432018-06-19 09:58:04 -0700464 tcp_worker_ctx_t *ctx = &tm->wrk_ctx[thread_index];
Florin Coras2f9b0c02017-09-11 20:54:15 -0400465 vlib_main_t *vm = vlib_get_main ();
Florin Coras24793e32018-05-09 11:34:25 -0700466 u32 n_alloc;
Dave Barachb7f1faa2017-08-29 11:43:37 -0400467
Florin Coras24793e32018-05-09 11:34:25 -0700468 ASSERT (wanted > *n_bufs);
Florin Coras2c414432018-06-19 09:58:04 -0700469 vec_validate_aligned (ctx->tx_buffers, wanted - 1, CLIB_CACHE_LINE_BYTES);
470 n_alloc = vlib_buffer_alloc (vm, &ctx->tx_buffers[*n_bufs],
Florin Coras24793e32018-05-09 11:34:25 -0700471 wanted - *n_bufs);
472 *n_bufs += n_alloc;
Florin Coras2c414432018-06-19 09:58:04 -0700473 _vec_len (ctx->tx_buffers) = *n_bufs;
Florin Coras24793e32018-05-09 11:34:25 -0700474 return n_alloc;
Florin Corasb2215d62017-08-01 16:56:58 -0700475}
476
477always_inline int
Florin Coras66b11312017-07-31 17:18:03 -0700478tcp_get_free_buffer_index (tcp_main_t * tm, u32 * bidx)
479{
Florin Coras66b11312017-07-31 17:18:03 -0700480 u32 thread_index = vlib_get_thread_index ();
Florin Coras2c414432018-06-19 09:58:04 -0700481 tcp_worker_ctx_t *ctx = &tm->wrk_ctx[thread_index];
482 u16 n_bufs = vec_len (ctx->tx_buffers);
Florin Corasf988e692017-11-27 04:34:14 -0500483
484 TCP_DBG_BUFFER_ALLOC_MAYBE_FAIL (thread_index);
485
Florin Coras24793e32018-05-09 11:34:25 -0700486 if (PREDICT_FALSE (!n_bufs))
Florin Coras66b11312017-07-31 17:18:03 -0700487 {
Florin Coras24793e32018-05-09 11:34:25 -0700488 if (!tcp_alloc_tx_buffers (tm, thread_index, &n_bufs, VLIB_FRAME_SIZE))
489 {
490 *bidx = ~0;
491 return -1;
492 }
Florin Coras66b11312017-07-31 17:18:03 -0700493 }
Florin Coras2c414432018-06-19 09:58:04 -0700494 *bidx = ctx->tx_buffers[--n_bufs];
495 _vec_len (ctx->tx_buffers) = n_bufs;
Florin Coras66b11312017-07-31 17:18:03 -0700496 return 0;
497}
Dave Barach68b0fb02017-02-28 15:15:56 -0500498
Florin Coras0dbd5172018-06-25 16:19:34 -0700499static void *
Dave Barach68b0fb02017-02-28 15:15:56 -0500500tcp_reuse_buffer (vlib_main_t * vm, vlib_buffer_t * b)
501{
Florin Corasb2215d62017-08-01 16:56:58 -0700502 if (b->flags & VLIB_BUFFER_NEXT_PRESENT)
503 vlib_buffer_free_one (vm, b->next_buffer);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400504 /* Zero all flags but free list index and trace flag */
505 b->flags &= VLIB_BUFFER_NEXT_PRESENT - 1;
Florin Coras1f152cd2017-08-18 19:28:03 -0700506 b->current_data = 0;
507 b->current_length = 0;
508 b->total_length_not_including_first_buffer = 0;
509 vnet_buffer (b)->tcp.flags = 0;
Florin Corasb2215d62017-08-01 16:56:58 -0700510
Dave Barach68b0fb02017-02-28 15:15:56 -0500511 /* Leave enough space for headers */
Florin Coras1f152cd2017-08-18 19:28:03 -0700512 return vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
513}
514
Florin Coras0dbd5172018-06-25 16:19:34 -0700515static void *
Florin Coras1f152cd2017-08-18 19:28:03 -0700516tcp_init_buffer (vlib_main_t * vm, vlib_buffer_t * b)
517{
518 ASSERT ((b->flags & VLIB_BUFFER_NEXT_PRESENT) == 0);
Damjan Mariondac03522018-02-01 15:30:13 +0100519 b->flags &= VLIB_BUFFER_NON_DEFAULT_FREELIST;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400520 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Florin Coras1f152cd2017-08-18 19:28:03 -0700521 b->total_length_not_including_first_buffer = 0;
Florin Coras24793e32018-05-09 11:34:25 -0700522 b->current_data = 0;
Florin Corasd79b41e2017-03-04 05:37:52 -0800523 vnet_buffer (b)->tcp.flags = 0;
Florin Corasf988e692017-11-27 04:34:14 -0500524 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b);
Florin Coras1f152cd2017-08-18 19:28:03 -0700525 /* Leave enough space for headers */
526 return vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
Dave Barach68b0fb02017-02-28 15:15:56 -0500527}
528
529/**
530 * Prepare ACK
531 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700532static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500533tcp_make_ack_i (tcp_connection_t * tc, vlib_buffer_t * b, tcp_state_t state,
534 u8 flags)
535{
536 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
537 u8 tcp_opts_len, tcp_hdr_opts_len;
538 tcp_header_t *th;
539 u16 wnd;
540
541 wnd = tcp_window_to_advertise (tc, state);
542
543 /* Make and write options */
544 tcp_opts_len = tcp_make_established_options (tc, snd_opts);
545 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
546
547 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
548 tc->rcv_nxt, tcp_hdr_opts_len, flags, wnd);
549
550 tcp_options_write ((u8 *) (th + 1), snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500551 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
552}
553
554/**
555 * Convert buffer to ACK
556 */
557void
558tcp_make_ack (tcp_connection_t * tc, vlib_buffer_t * b)
559{
Florin Coras6792ec02017-03-13 03:49:51 -0700560 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500561
562 tcp_reuse_buffer (vm, b);
563 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, TCP_FLAG_ACK);
Florin Coras6792ec02017-03-13 03:49:51 -0700564 TCP_EVT_DBG (TCP_EVT_ACK_SENT, tc);
Florin Coras3e350af2017-03-30 02:54:28 -0700565 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_ACK;
566 tc->rcv_las = tc->rcv_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500567}
568
569/**
570 * Convert buffer to FIN-ACK
571 */
572void
Florin Corasd79b41e2017-03-04 05:37:52 -0800573tcp_make_fin (tcp_connection_t * tc, vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500574{
Florin Coras6792ec02017-03-13 03:49:51 -0700575 vlib_main_t *vm = vlib_get_main ();
Florin Corasd79b41e2017-03-04 05:37:52 -0800576 u8 flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500577
578 tcp_reuse_buffer (vm, b);
Florin Corasd79b41e2017-03-04 05:37:52 -0800579
Florin Corase69f4952017-03-07 10:06:24 -0800580 flags = TCP_FLAG_FIN | TCP_FLAG_ACK;
Florin Corasd79b41e2017-03-04 05:37:52 -0800581 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, flags);
Dave Barach68b0fb02017-02-28 15:15:56 -0500582
583 /* Reset flags, make sure ack is sent */
Dave Barach68b0fb02017-02-28 15:15:56 -0500584 vnet_buffer (b)->tcp.flags &= ~TCP_BUF_FLAG_DUPACK;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400585}
Dave Barach68b0fb02017-02-28 15:15:56 -0500586
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400587/**
588 * Convert buffer to SYN
589 */
590void
591tcp_make_syn (tcp_connection_t * tc, vlib_buffer_t * b)
592{
593 u8 tcp_hdr_opts_len, tcp_opts_len;
594 tcp_header_t *th;
595 u16 initial_wnd;
596 tcp_options_t snd_opts;
597
598 initial_wnd = tcp_initial_window_to_advertise (tc);
599
600 /* Make and write options */
601 memset (&snd_opts, 0, sizeof (snd_opts));
602 tcp_opts_len = tcp_make_syn_options (&snd_opts, tc->rcv_wscale);
603 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
604
605 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
606 tc->rcv_nxt, tcp_hdr_opts_len, TCP_FLAG_SYN,
607 initial_wnd);
608 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
609 tcp_options_write ((u8 *) (th + 1), &snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500610}
611
612/**
613 * Convert buffer to SYN-ACK
614 */
615void
616tcp_make_synack (tcp_connection_t * tc, vlib_buffer_t * b)
617{
Florin Coras6792ec02017-03-13 03:49:51 -0700618 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500619 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
620 u8 tcp_opts_len, tcp_hdr_opts_len;
621 tcp_header_t *th;
622 u16 initial_wnd;
Dave Barach68b0fb02017-02-28 15:15:56 -0500623
624 memset (snd_opts, 0, sizeof (*snd_opts));
Dave Barach68b0fb02017-02-28 15:15:56 -0500625 tcp_reuse_buffer (vm, b);
626
Dave Barach68b0fb02017-02-28 15:15:56 -0500627 initial_wnd = tcp_initial_window_to_advertise (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500628 tcp_opts_len = tcp_make_synack_options (tc, snd_opts);
629 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
630
631 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
632 tc->rcv_nxt, tcp_hdr_opts_len,
633 TCP_FLAG_SYN | TCP_FLAG_ACK, initial_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -0500634 tcp_options_write ((u8 *) (th + 1), snd_opts);
635
636 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
637 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_ACK;
638
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400639 /* Init retransmit timer. Use update instead of set because of
640 * retransmissions */
641 tcp_retransmit_timer_force_update (tc);
Florin Coras6534b7a2017-07-18 05:38:03 -0400642 TCP_EVT_DBG (TCP_EVT_SYNACK_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500643}
644
645always_inline void
Florin Coras9d063042017-09-14 03:08:00 -0400646tcp_enqueue_to_ip_lookup_i (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
Florin Coras56b39f62018-03-27 17:29:32 -0700647 u8 is_ip4, u32 fib_index, u8 flush)
Dave Barach68b0fb02017-02-28 15:15:56 -0500648{
Florin Coras9d063042017-09-14 03:08:00 -0400649 tcp_main_t *tm = vnet_get_tcp_main ();
650 u32 thread_index = vlib_get_thread_index ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500651 u32 *to_next, next_index;
652 vlib_frame_t *f;
653
Damjan Marion213b5aa2017-07-13 21:19:27 +0200654 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500655 b->error = 0;
656
Florin Coras56b39f62018-03-27 17:29:32 -0700657 vnet_buffer (b)->sw_if_index[VLIB_TX] = fib_index;
658 vnet_buffer (b)->sw_if_index[VLIB_RX] = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500659
660 /* Send to IP lookup */
661 next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index;
Florin Corasf988e692017-11-27 04:34:14 -0500662 tcp_trajectory_add_start (b, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500663
Florin Coras2c414432018-06-19 09:58:04 -0700664 f = tm->wrk_ctx[thread_index].ip_lookup_tx_frames[!is_ip4];
Florin Coras9d063042017-09-14 03:08:00 -0400665 if (!f)
666 {
667 f = vlib_get_frame_to_node (vm, next_index);
668 ASSERT (f);
Florin Coras2c414432018-06-19 09:58:04 -0700669 tm->wrk_ctx[thread_index].ip_lookup_tx_frames[!is_ip4] = f;
Florin Coras9d063042017-09-14 03:08:00 -0400670 }
671
Dave Barach68b0fb02017-02-28 15:15:56 -0500672 to_next = vlib_frame_vector_args (f);
Florin Coras9d063042017-09-14 03:08:00 -0400673 to_next[f->n_vectors] = bi;
674 f->n_vectors += 1;
675 if (flush || f->n_vectors == VLIB_FRAME_SIZE)
676 {
677 vlib_put_frame_to_node (vm, next_index, f);
Florin Coras2c414432018-06-19 09:58:04 -0700678 tm->wrk_ctx[thread_index].ip_lookup_tx_frames[!is_ip4] = 0;
Florin Coras9d063042017-09-14 03:08:00 -0400679 }
680}
681
Florin Coras0dbd5172018-06-25 16:19:34 -0700682static void
Florin Coras9d063042017-09-14 03:08:00 -0400683tcp_enqueue_to_ip_lookup_now (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
Florin Coras56b39f62018-03-27 17:29:32 -0700684 u8 is_ip4, u32 fib_index)
Florin Coras9d063042017-09-14 03:08:00 -0400685{
Florin Coras56b39f62018-03-27 17:29:32 -0700686 tcp_enqueue_to_ip_lookup_i (vm, b, bi, is_ip4, fib_index, 1);
Florin Coras9d063042017-09-14 03:08:00 -0400687}
688
Florin Coras0dbd5172018-06-25 16:19:34 -0700689static void
Florin Coras9d063042017-09-14 03:08:00 -0400690tcp_enqueue_to_ip_lookup (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
Florin Coras56b39f62018-03-27 17:29:32 -0700691 u8 is_ip4, u32 fib_index)
Florin Coras9d063042017-09-14 03:08:00 -0400692{
Florin Coras56b39f62018-03-27 17:29:32 -0700693 tcp_enqueue_to_ip_lookup_i (vm, b, bi, is_ip4, fib_index, 0);
Florin Corasfd542f12018-05-16 19:28:24 -0700694 if (vm->thread_index == 0 && vlib_num_workers ())
695 session_flush_frames_main_thread (vm);
Dave Barach68b0fb02017-02-28 15:15:56 -0500696}
697
Florin Coras1f152cd2017-08-18 19:28:03 -0700698always_inline void
699tcp_enqueue_to_output_i (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
700 u8 is_ip4, u8 flush)
701{
702 tcp_main_t *tm = vnet_get_tcp_main ();
703 u32 thread_index = vlib_get_thread_index ();
704 u32 *to_next, next_index;
705 vlib_frame_t *f;
706
707 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
708 b->error = 0;
709
710 /* Decide where to send the packet */
711 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
Florin Corasf988e692017-11-27 04:34:14 -0500712 tcp_trajectory_add_start (b, 2);
Florin Coras1f152cd2017-08-18 19:28:03 -0700713
714 /* Get frame to v4/6 output node */
Florin Coras2c414432018-06-19 09:58:04 -0700715 f = tm->wrk_ctx[thread_index].tx_frames[!is_ip4];
Florin Coras1f152cd2017-08-18 19:28:03 -0700716 if (!f)
717 {
718 f = vlib_get_frame_to_node (vm, next_index);
719 ASSERT (f);
Florin Coras2c414432018-06-19 09:58:04 -0700720 tm->wrk_ctx[thread_index].tx_frames[!is_ip4] = f;
Florin Coras1f152cd2017-08-18 19:28:03 -0700721 }
722 to_next = vlib_frame_vector_args (f);
723 to_next[f->n_vectors] = bi;
724 f->n_vectors += 1;
725 if (flush || f->n_vectors == VLIB_FRAME_SIZE)
726 {
727 vlib_put_frame_to_node (vm, next_index, f);
Florin Coras2c414432018-06-19 09:58:04 -0700728 tm->wrk_ctx[thread_index].tx_frames[!is_ip4] = 0;
Florin Coras1f152cd2017-08-18 19:28:03 -0700729 }
730}
731
Florin Coras0dbd5172018-06-25 16:19:34 -0700732static void
Florin Coras1f152cd2017-08-18 19:28:03 -0700733tcp_enqueue_to_output (vlib_main_t * vm, vlib_buffer_t * b, u32 bi, u8 is_ip4)
734{
735 tcp_enqueue_to_output_i (vm, b, bi, is_ip4, 0);
736}
737
Florin Coras0dbd5172018-06-25 16:19:34 -0700738static void
Florin Coras1f152cd2017-08-18 19:28:03 -0700739tcp_enqueue_to_output_now (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
740 u8 is_ip4)
741{
742 tcp_enqueue_to_output_i (vm, b, bi, is_ip4, 1);
743}
744
Florin Coras0dbd5172018-06-25 16:19:34 -0700745static int
Dave Barach68b0fb02017-02-28 15:15:56 -0500746tcp_make_reset_in_place (vlib_main_t * vm, vlib_buffer_t * b0,
Florin Corasdc629cd2017-05-09 00:52:37 -0700747 tcp_state_t state, u8 thread_index, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500748{
Dave Barach68b0fb02017-02-28 15:15:56 -0500749 ip4_header_t *ih4;
750 ip6_header_t *ih6;
751 tcp_header_t *th0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700752 ip4_address_t src_ip40, dst_ip40;
753 ip6_address_t src_ip60, dst_ip60;
754 u16 src_port, dst_port;
Dave Barach68b0fb02017-02-28 15:15:56 -0500755 u32 tmp;
Florin Corasdc629cd2017-05-09 00:52:37 -0700756 u32 seq, ack;
757 u8 flags;
Dave Barach68b0fb02017-02-28 15:15:56 -0500758
759 /* Find IP and TCP headers */
Florin Corasdc629cd2017-05-09 00:52:37 -0700760 th0 = tcp_buffer_hdr (b0);
761
762 /* Save src and dst ip */
Dave Barach68b0fb02017-02-28 15:15:56 -0500763 if (is_ip4)
764 {
765 ih4 = vlib_buffer_get_current (b0);
Florin Corasdc629cd2017-05-09 00:52:37 -0700766 ASSERT ((ih4->ip_version_and_header_length & 0xF0) == 0x40);
767 src_ip40.as_u32 = ih4->src_address.as_u32;
768 dst_ip40.as_u32 = ih4->dst_address.as_u32;
Dave Barach68b0fb02017-02-28 15:15:56 -0500769 }
770 else
771 {
772 ih6 = vlib_buffer_get_current (b0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500773 ASSERT ((ih6->ip_version_traffic_class_and_flow_label & 0xF0) == 0x60);
774 clib_memcpy (&src_ip60, &ih6->src_address, sizeof (ip6_address_t));
Florin Corasdc629cd2017-05-09 00:52:37 -0700775 clib_memcpy (&dst_ip60, &ih6->dst_address, sizeof (ip6_address_t));
Dave Barach68b0fb02017-02-28 15:15:56 -0500776 }
777
Florin Corasdc629cd2017-05-09 00:52:37 -0700778 src_port = th0->src_port;
779 dst_port = th0->dst_port;
780
781 /* Try to determine what/why we're actually resetting */
Dave Barach68b0fb02017-02-28 15:15:56 -0500782 if (state == TCP_STATE_CLOSED)
783 {
784 if (!tcp_syn (th0))
785 return -1;
786
787 tmp = clib_net_to_host_u32 (th0->seq_number);
788
789 /* Got a SYN for no listener. */
Florin Corasdc629cd2017-05-09 00:52:37 -0700790 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
791 ack = clib_host_to_net_u32 (tmp + 1);
792 seq = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500793 }
Florin Corasdc629cd2017-05-09 00:52:37 -0700794 else
Dave Barach68b0fb02017-02-28 15:15:56 -0500795 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700796 flags = TCP_FLAG_RST;
797 seq = th0->ack_number;
798 ack = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500799 }
800
Florin Corasdc629cd2017-05-09 00:52:37 -0700801 tcp_reuse_buffer (vm, b0);
Florin Corasf988e692017-11-27 04:34:14 -0500802 tcp_trajectory_add_start (b0, 4);
Florin Corasdc629cd2017-05-09 00:52:37 -0700803 th0 = vlib_buffer_push_tcp_net_order (b0, dst_port, src_port, seq, ack,
804 sizeof (tcp_header_t), flags, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500805
Dave Barach68b0fb02017-02-28 15:15:56 -0500806 if (is_ip4)
807 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700808 ih4 = vlib_buffer_push_ip4 (vm, b0, &dst_ip40, &src_ip40,
Florin Corasfdbc3822017-07-27 00:34:12 -0700809 IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500810 th0->checksum = ip4_tcp_udp_compute_checksum (vm, b0, ih4);
811 }
812 else
813 {
814 int bogus = ~0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700815 ih6 = vlib_buffer_push_ip6 (vm, b0, &dst_ip60, &src_ip60,
816 IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500817 th0->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b0, ih6, &bogus);
818 ASSERT (!bogus);
819 }
820
821 return 0;
822}
823
824/**
825 * Send reset without reusing existing buffer
Florin Coras1f152cd2017-08-18 19:28:03 -0700826 *
827 * It extracts connection info out of original packet
Dave Barach68b0fb02017-02-28 15:15:56 -0500828 */
829void
Florin Coras1f152cd2017-08-18 19:28:03 -0700830tcp_send_reset_w_pkt (tcp_connection_t * tc, vlib_buffer_t * pkt, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500831{
832 vlib_buffer_t *b;
Florin Coras56b39f62018-03-27 17:29:32 -0700833 u32 bi, sw_if_index, fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500834 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -0700835 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500836 u8 tcp_hdr_len, flags = 0;
837 tcp_header_t *th, *pkt_th;
838 u32 seq, ack;
839 ip4_header_t *ih4, *pkt_ih4;
840 ip6_header_t *ih6, *pkt_ih6;
Florin Coras56b39f62018-03-27 17:29:32 -0700841 fib_protocol_t fib_proto;
Dave Barach68b0fb02017-02-28 15:15:56 -0500842
Florin Coras66b11312017-07-31 17:18:03 -0700843 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
844 return;
845
Dave Barach68b0fb02017-02-28 15:15:56 -0500846 b = vlib_get_buffer (vm, bi);
Florin Coras56b39f62018-03-27 17:29:32 -0700847 sw_if_index = vnet_buffer (pkt)->sw_if_index[VLIB_RX];
848 fib_proto = is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
849 fib_index = fib_table_get_index_for_sw_if_index (fib_proto, sw_if_index);
Florin Coras1f152cd2017-08-18 19:28:03 -0700850 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500851
852 /* Make and write options */
853 tcp_hdr_len = sizeof (tcp_header_t);
854
855 if (is_ip4)
856 {
857 pkt_ih4 = vlib_buffer_get_current (pkt);
858 pkt_th = ip4_next_header (pkt_ih4);
859 }
860 else
861 {
862 pkt_ih6 = vlib_buffer_get_current (pkt);
863 pkt_th = ip6_next_header (pkt_ih6);
864 }
865
866 if (tcp_ack (pkt_th))
867 {
868 flags = TCP_FLAG_RST;
869 seq = pkt_th->ack_number;
Florin Coras6534b7a2017-07-18 05:38:03 -0400870 ack = (tc && tc->state >= TCP_STATE_SYN_RCVD) ? tc->rcv_nxt : 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500871 }
872 else
873 {
874 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
875 seq = 0;
876 ack = clib_host_to_net_u32 (vnet_buffer (pkt)->tcp.seq_end);
877 }
878
879 th = vlib_buffer_push_tcp_net_order (b, pkt_th->dst_port, pkt_th->src_port,
880 seq, ack, tcp_hdr_len, flags, 0);
881
882 /* Swap src and dst ip */
883 if (is_ip4)
884 {
885 ASSERT ((pkt_ih4->ip_version_and_header_length & 0xF0) == 0x40);
886 ih4 = vlib_buffer_push_ip4 (vm, b, &pkt_ih4->dst_address,
Florin Corasfdbc3822017-07-27 00:34:12 -0700887 &pkt_ih4->src_address, IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500888 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
889 }
890 else
891 {
892 int bogus = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500893 ASSERT ((pkt_ih6->ip_version_traffic_class_and_flow_label & 0xF0) ==
894 0x60);
rootc9d1c5b2017-08-15 12:58:31 -0400895 ih6 = vlib_buffer_push_ip6 (vm, b, &pkt_ih6->dst_address,
896 &pkt_ih6->src_address, IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500897 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
898 ASSERT (!bogus);
899 }
900
Florin Coras56b39f62018-03-27 17:29:32 -0700901 tcp_enqueue_to_ip_lookup_now (vm, b, bi, is_ip4, fib_index);
Florin Coras6534b7a2017-07-18 05:38:03 -0400902 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500903}
904
Florin Coras1f152cd2017-08-18 19:28:03 -0700905/**
906 * Build and set reset packet for connection
907 */
908void
909tcp_send_reset (tcp_connection_t * tc)
910{
911 vlib_main_t *vm = vlib_get_main ();
912 tcp_main_t *tm = vnet_get_tcp_main ();
913 vlib_buffer_t *b;
914 u32 bi;
915 tcp_header_t *th;
916 u16 tcp_hdr_opts_len, advertise_wnd, opts_write_len;
917 u8 flags;
918
919 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
920 return;
921 b = vlib_get_buffer (vm, bi);
922 tcp_init_buffer (vm, b);
923
924 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
925 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
926 advertise_wnd = tcp_window_to_advertise (tc, TCP_STATE_ESTABLISHED);
927 flags = TCP_FLAG_RST;
928 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
929 tc->rcv_nxt, tcp_hdr_opts_len, flags,
930 advertise_wnd);
931 opts_write_len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
932 ASSERT (opts_write_len == tc->snd_opts_len);
933 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Florin Corasf1762d62017-09-24 19:43:08 -0400934 if (tc->c_is_ip4)
935 {
936 ip4_header_t *ih4;
937 ih4 = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip.ip4,
938 &tc->c_rmt_ip.ip4, IP_PROTOCOL_TCP, 0);
939 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
940 }
941 else
942 {
943 int bogus = ~0;
944 ip6_header_t *ih6;
945 ih6 = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip.ip6,
946 &tc->c_rmt_ip.ip6, IP_PROTOCOL_TCP);
947 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
948 ASSERT (!bogus);
949 }
Florin Coras56b39f62018-03-27 17:29:32 -0700950 tcp_enqueue_to_ip_lookup_now (vm, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Corasf1762d62017-09-24 19:43:08 -0400951 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc);
Florin Coras1f152cd2017-08-18 19:28:03 -0700952}
953
Florin Coras0dbd5172018-06-25 16:19:34 -0700954static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500955tcp_push_ip_hdr (tcp_main_t * tm, tcp_connection_t * tc, vlib_buffer_t * b)
956{
957 tcp_header_t *th = vlib_buffer_get_current (b);
Dave Barach2c25a622017-06-26 11:35:07 -0400958 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500959 if (tc->c_is_ip4)
960 {
961 ip4_header_t *ih;
Dave Barach2c25a622017-06-26 11:35:07 -0400962 ih = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip4,
Florin Corasfdbc3822017-07-27 00:34:12 -0700963 &tc->c_rmt_ip4, IP_PROTOCOL_TCP, 1);
Dave Barach2c25a622017-06-26 11:35:07 -0400964 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih);
Dave Barach68b0fb02017-02-28 15:15:56 -0500965 }
966 else
967 {
968 ip6_header_t *ih;
969 int bogus = ~0;
970
Dave Barach2c25a622017-06-26 11:35:07 -0400971 ih = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip6,
Dave Barach68b0fb02017-02-28 15:15:56 -0500972 &tc->c_rmt_ip6, IP_PROTOCOL_TCP);
Dave Barach2c25a622017-06-26 11:35:07 -0400973 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih, &bogus);
Dave Barach68b0fb02017-02-28 15:15:56 -0500974 ASSERT (!bogus);
975 }
976}
977
978/**
979 * Send SYN
980 *
981 * Builds a SYN packet for a half-open connection and sends it to ipx_lookup.
982 * The packet is not forwarded through tcpx_output to avoid doing lookups
983 * in the half_open pool.
984 */
985void
986tcp_send_syn (tcp_connection_t * tc)
987{
988 vlib_buffer_t *b;
989 u32 bi;
990 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -0700991 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500992
Florin Corasf988e692017-11-27 04:34:14 -0500993 /*
994 * Setup retransmit and establish timers before requesting buffer
995 * such that we can return if we've ran out.
996 */
997 tcp_timer_set (tc, TCP_TIMER_ESTABLISH, TCP_ESTABLISH_TIME);
998 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN,
999 tc->rto * TCP_TO_TIMER_TICK);
1000
Florin Coras66b11312017-07-31 17:18:03 -07001001 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1002 return;
1003
Dave Barach68b0fb02017-02-28 15:15:56 -05001004 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001005 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001006 tcp_make_syn (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001007
1008 /* Measure RTT with this */
1009 tc->rtt_ts = tcp_time_now ();
1010 tc->rtt_seq = tc->snd_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001011 tc->rto_boff = 0;
1012
Dave Barach68b0fb02017-02-28 15:15:56 -05001013 tcp_push_ip_hdr (tm, tc, b);
Florin Coras56b39f62018-03-27 17:29:32 -07001014 tcp_enqueue_to_ip_lookup (vm, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Coras6534b7a2017-07-18 05:38:03 -04001015 TCP_EVT_DBG (TCP_EVT_SYN_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001016}
1017
Florin Coras66b11312017-07-31 17:18:03 -07001018/**
1019 * Flush tx frame populated by retransmits and timer pops
1020 */
1021void
1022tcp_flush_frame_to_output (vlib_main_t * vm, u8 thread_index, u8 is_ip4)
1023{
Florin Coras2c414432018-06-19 09:58:04 -07001024 if (tcp_main.wrk_ctx[thread_index].tx_frames[!is_ip4])
Florin Coras66b11312017-07-31 17:18:03 -07001025 {
1026 u32 next_index;
1027 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
1028 vlib_put_frame_to_node (vm, next_index,
Florin Coras2c414432018-06-19 09:58:04 -07001029 tcp_main.
1030 wrk_ctx[thread_index].tx_frames[!is_ip4]);
1031 tcp_main.wrk_ctx[thread_index].tx_frames[!is_ip4] = 0;
Florin Coras66b11312017-07-31 17:18:03 -07001032 }
1033}
1034
1035/**
Florin Coras9d063042017-09-14 03:08:00 -04001036 * Flush ip lookup tx frames populated by timer pops
1037 */
Florin Coras0dbd5172018-06-25 16:19:34 -07001038static void
Florin Coras9d063042017-09-14 03:08:00 -04001039tcp_flush_frame_to_ip_lookup (vlib_main_t * vm, u8 thread_index, u8 is_ip4)
1040{
Florin Coras2c414432018-06-19 09:58:04 -07001041 if (tcp_main.wrk_ctx[thread_index].ip_lookup_tx_frames[!is_ip4])
Florin Coras9d063042017-09-14 03:08:00 -04001042 {
1043 u32 next_index;
1044 next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index;
1045 vlib_put_frame_to_node (vm, next_index,
Florin Coras2c414432018-06-19 09:58:04 -07001046 tcp_main.
1047 wrk_ctx[thread_index].ip_lookup_tx_frames
1048 [!is_ip4]);
1049 tcp_main.wrk_ctx[thread_index].ip_lookup_tx_frames[!is_ip4] = 0;
Florin Coras9d063042017-09-14 03:08:00 -04001050 }
1051}
1052
1053/**
1054 * Flush v4 and v6 tcp and ip-lookup tx frames for thread index
Florin Coras66b11312017-07-31 17:18:03 -07001055 */
1056void
1057tcp_flush_frames_to_output (u8 thread_index)
1058{
1059 vlib_main_t *vm = vlib_get_main ();
1060 tcp_flush_frame_to_output (vm, thread_index, 1);
1061 tcp_flush_frame_to_output (vm, thread_index, 0);
Florin Coras9d063042017-09-14 03:08:00 -04001062 tcp_flush_frame_to_ip_lookup (vm, thread_index, 1);
1063 tcp_flush_frame_to_ip_lookup (vm, thread_index, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001064}
1065
1066/**
1067 * Send FIN
1068 */
1069void
1070tcp_send_fin (tcp_connection_t * tc)
1071{
Dave Barach68b0fb02017-02-28 15:15:56 -05001072 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001073 vlib_main_t *vm = vlib_get_main ();
Florin Coras9d063042017-09-14 03:08:00 -04001074 vlib_buffer_t *b;
1075 u32 bi;
1076 u8 fin_snt = 0;
1077
Florin Corasf988e692017-11-27 04:34:14 -05001078 tcp_retransmit_timer_force_update (tc);
Florin Coras66b11312017-07-31 17:18:03 -07001079 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1080 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001081 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001082 tcp_init_buffer (vm, b);
Florin Coras9d063042017-09-14 03:08:00 -04001083 fin_snt = tc->flags & TCP_CONN_FINSNT;
1084 if (fin_snt)
1085 tc->snd_nxt = tc->snd_una;
Florin Corasd79b41e2017-03-04 05:37:52 -08001086 tcp_make_fin (tc, b);
Florin Coras66b11312017-07-31 17:18:03 -07001087 tcp_enqueue_to_output_now (vm, b, bi, tc->c_is_ip4);
Florin Coras9d063042017-09-14 03:08:00 -04001088 if (!fin_snt)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001089 {
1090 tc->flags |= TCP_CONN_FINSNT;
1091 tc->flags &= ~TCP_CONN_FINPNDG;
Florin Coras9d063042017-09-14 03:08:00 -04001092 /* Account for the FIN */
1093 tc->snd_una_max += 1;
1094 tc->snd_nxt = tc->snd_una_max;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001095 }
Florin Corasa096f2d2017-09-28 23:49:42 -04001096 else
1097 {
1098 tc->snd_nxt = tc->snd_una_max;
1099 }
Florin Corase69f4952017-03-07 10:06:24 -08001100 TCP_EVT_DBG (TCP_EVT_FIN_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001101}
1102
1103always_inline u8
Florin Corasb2215d62017-08-01 16:56:58 -07001104tcp_make_state_flags (tcp_connection_t * tc, tcp_state_t next_state)
Dave Barach68b0fb02017-02-28 15:15:56 -05001105{
1106 switch (next_state)
1107 {
1108 case TCP_STATE_ESTABLISHED:
Florin Coras00dfe542018-06-11 13:15:11 -07001109 case TCP_STATE_CLOSE_WAIT:
Dave Barach68b0fb02017-02-28 15:15:56 -05001110 return TCP_FLAG_ACK;
1111 case TCP_STATE_SYN_RCVD:
1112 return TCP_FLAG_SYN | TCP_FLAG_ACK;
1113 case TCP_STATE_SYN_SENT:
1114 return TCP_FLAG_SYN;
1115 case TCP_STATE_LAST_ACK:
1116 case TCP_STATE_FIN_WAIT_1:
Florin Corasb2215d62017-08-01 16:56:58 -07001117 if (tc->snd_nxt + 1 < tc->snd_una_max)
1118 return TCP_FLAG_ACK;
1119 else
1120 return TCP_FLAG_FIN;
Dave Barach68b0fb02017-02-28 15:15:56 -05001121 default:
1122 clib_warning ("Shouldn't be here!");
1123 }
1124 return 0;
1125}
1126
1127/**
1128 * Push TCP header and update connection variables
1129 */
Florin Coras0dbd5172018-06-25 16:19:34 -07001130always_inline void
Dave Barach68b0fb02017-02-28 15:15:56 -05001131tcp_push_hdr_i (tcp_connection_t * tc, vlib_buffer_t * b,
Florin Corasb26743d2018-06-26 09:31:04 -07001132 tcp_state_t next_state, u8 compute_opts, u8 maybe_burst)
Dave Barach68b0fb02017-02-28 15:15:56 -05001133{
1134 u32 advertise_wnd, data_len;
Florin Corasb26743d2018-06-26 09:31:04 -07001135 u8 tcp_hdr_opts_len, flags;
1136 tcp_main_t *tm = &tcp_main;
Dave Barach68b0fb02017-02-28 15:15:56 -05001137 tcp_header_t *th;
1138
Florin Corasb26743d2018-06-26 09:31:04 -07001139 data_len = b->current_length;
1140 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_NEXT_PRESENT))
1141 data_len += b->total_length_not_including_first_buffer;
1142
Dave Barach68b0fb02017-02-28 15:15:56 -05001143 vnet_buffer (b)->tcp.flags = 0;
Florin Corasb26743d2018-06-26 09:31:04 -07001144 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05001145
Florin Corasc8343412017-05-04 14:25:50 -07001146 if (compute_opts)
1147 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1148
Florin Corasc8343412017-05-04 14:25:50 -07001149 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
Florin Corasb26743d2018-06-26 09:31:04 -07001150
1151 if (maybe_burst)
1152 advertise_wnd = tc->rcv_wnd >> tc->rcv_wscale;
1153 else
1154 advertise_wnd = tcp_window_to_advertise (tc, next_state);
1155
Florin Corasb2215d62017-08-01 16:56:58 -07001156 flags = tcp_make_state_flags (tc, next_state);
Dave Barach68b0fb02017-02-28 15:15:56 -05001157
Dave Barach68b0fb02017-02-28 15:15:56 -05001158 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
1159 tc->rcv_nxt, tcp_hdr_opts_len, flags,
1160 advertise_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -05001161
Florin Corasb26743d2018-06-26 09:31:04 -07001162 if (maybe_burst)
1163 {
1164 clib_memcpy ((u8 *) (th + 1),
1165 tm->wrk_ctx[tc->c_thread_index].cached_opts,
1166 tc->snd_opts_len);
1167 }
1168 else
1169 {
1170 u8 len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
1171 ASSERT (len == tc->snd_opts_len);
1172 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001173
Florin Coras93992a92017-05-24 18:03:56 -07001174 /*
1175 * Update connection variables
1176 */
1177
Dave Barach68b0fb02017-02-28 15:15:56 -05001178 tc->snd_nxt += data_len;
Florin Corasc28764f2017-04-26 00:08:42 -07001179 tc->rcv_las = tc->rcv_nxt;
Florin Coras3e350af2017-03-30 02:54:28 -07001180
Florin Corase69f4952017-03-07 10:06:24 -08001181 TCP_EVT_DBG (TCP_EVT_PKTIZE, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001182}
1183
Florin Coras0dbd5172018-06-25 16:19:34 -07001184u32
1185tcp_push_header (tcp_connection_t * tc, vlib_buffer_t * b)
1186{
Florin Corasb26743d2018-06-26 09:31:04 -07001187 tcp_push_hdr_i (tc, b, TCP_STATE_ESTABLISHED, /* compute opts */ 0,
1188 /* burst */ 1);
Florin Coras0dbd5172018-06-25 16:19:34 -07001189 tc->snd_una_max = tc->snd_nxt;
Florin Coras3ec66b02018-08-23 16:27:05 -07001190 ASSERT (seq_leq (tc->snd_una_max, tc->snd_una + tc->snd_wnd
1191 + tcp_fastrecovery_sent_1_smss (tc) * tc->snd_mss));
Florin Coras0dbd5172018-06-25 16:19:34 -07001192 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
1193 /* If not tracking an ACK, start tracking */
1194 if (tc->rtt_ts == 0 && !tcp_in_cong_recovery (tc))
1195 {
1196 tc->rtt_ts = tcp_time_now ();
1197 tc->rtt_seq = tc->snd_nxt;
1198 }
1199 if (PREDICT_FALSE (!tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)))
1200 {
1201 tcp_retransmit_timer_set (tc);
1202 tc->rto_boff = 0;
1203 }
1204 tcp_trajectory_add_start (b, 3);
1205 return 0;
1206}
1207
Dave Barach68b0fb02017-02-28 15:15:56 -05001208void
Florin Coras6792ec02017-03-13 03:49:51 -07001209tcp_send_ack (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001210{
1211 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001212 vlib_main_t *vm = vlib_get_main ();
1213
Dave Barach68b0fb02017-02-28 15:15:56 -05001214 vlib_buffer_t *b;
1215 u32 bi;
1216
Dave Barach68b0fb02017-02-28 15:15:56 -05001217 /* Get buffer */
Florin Coras66b11312017-07-31 17:18:03 -07001218 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1219 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001220 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001221 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001222
1223 /* Fill in the ACK */
1224 tcp_make_ack (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001225 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1226}
1227
Florin Corasb2215d62017-08-01 16:56:58 -07001228/**
1229 * Delayed ack timer handler
1230 *
1231 * Sends delayed ACK when timer expires
1232 */
Florin Coras6792ec02017-03-13 03:49:51 -07001233void
1234tcp_timer_delack_handler (u32 index)
1235{
Damjan Marion586afd72017-04-05 19:18:20 +02001236 u32 thread_index = vlib_get_thread_index ();
Florin Coras6792ec02017-03-13 03:49:51 -07001237 tcp_connection_t *tc;
1238
1239 tc = tcp_connection_get (index, thread_index);
1240 tc->timers[TCP_TIMER_DELACK] = TCP_TIMER_HANDLE_INVALID;
Florin Coras6792ec02017-03-13 03:49:51 -07001241 tcp_send_ack (tc);
1242}
1243
Florin Corasb2215d62017-08-01 16:56:58 -07001244/**
1245 * Build a retransmit segment
Dave Barach68b0fb02017-02-28 15:15:56 -05001246 *
1247 * @return the number of bytes in the segment or 0 if there's nothing to
1248 * retransmit
Florin Coras93992a92017-05-24 18:03:56 -07001249 */
Florin Coras0dbd5172018-06-25 16:19:34 -07001250static u32
Florin Corasb2215d62017-08-01 16:56:58 -07001251tcp_prepare_retransmit_segment (tcp_connection_t * tc, u32 offset,
1252 u32 max_deq_bytes, vlib_buffer_t ** b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001253{
Florin Corasb2215d62017-08-01 16:56:58 -07001254 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001255 vlib_main_t *vm = vlib_get_main ();
Florin Coras93992a92017-05-24 18:03:56 -07001256 int n_bytes = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001257 u32 start, bi, available_bytes, seg_size;
1258 u8 *data;
Dave Barach68b0fb02017-02-28 15:15:56 -05001259
Florin Corase04c2992017-03-01 08:17:34 -08001260 ASSERT (tc->state >= TCP_STATE_ESTABLISHED);
Florin Corasb2215d62017-08-01 16:56:58 -07001261 ASSERT (max_deq_bytes != 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001262
Florin Corasb2215d62017-08-01 16:56:58 -07001263 /*
1264 * Make sure we can retransmit something
1265 */
Florin Coras25579b42018-06-06 17:55:02 -07001266 available_bytes = session_tx_fifo_max_dequeue (&tc->connection);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001267 ASSERT (available_bytes >= offset);
Florin Coras1f152cd2017-08-18 19:28:03 -07001268 available_bytes -= offset;
Florin Corasb2215d62017-08-01 16:56:58 -07001269 if (!available_bytes)
1270 return 0;
Florin Corase87216f2017-08-17 16:59:22 -07001271 max_deq_bytes = clib_min (tc->snd_mss, max_deq_bytes);
Florin Corasb2215d62017-08-01 16:56:58 -07001272 max_deq_bytes = clib_min (available_bytes, max_deq_bytes);
Florin Coras6792ec02017-03-13 03:49:51 -07001273
1274 /* Start is beyond snd_congestion */
Florin Corase87216f2017-08-17 16:59:22 -07001275 start = tc->snd_una + offset;
Florin Coras93992a92017-05-24 18:03:56 -07001276 if (seq_geq (start, tc->snd_congestion))
Florin Coras1f152cd2017-08-18 19:28:03 -07001277 goto done;
Florin Coras6792ec02017-03-13 03:49:51 -07001278
Florin Corasb2215d62017-08-01 16:56:58 -07001279 /* Don't overshoot snd_congestion */
1280 if (seq_gt (start + max_deq_bytes, tc->snd_congestion))
1281 {
1282 max_deq_bytes = tc->snd_congestion - start;
1283 if (max_deq_bytes == 0)
Florin Coras1f152cd2017-08-18 19:28:03 -07001284 goto done;
Florin Corasb2215d62017-08-01 16:56:58 -07001285 }
1286
Florin Coras1f152cd2017-08-18 19:28:03 -07001287 seg_size = max_deq_bytes + MAX_HDRS_LEN;
1288
Florin Corasb2215d62017-08-01 16:56:58 -07001289 /*
1290 * Prepare options
1291 */
Florin Corasc8343412017-05-04 14:25:50 -07001292 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1293
Florin Corasb2215d62017-08-01 16:56:58 -07001294 /*
1295 * Allocate and fill in buffer(s)
1296 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001297
Florin Corasb2215d62017-08-01 16:56:58 -07001298 /* Easy case, buffer size greater than mss */
Florin Corase87216f2017-08-17 16:59:22 -07001299 if (PREDICT_TRUE (seg_size <= tm->bytes_per_buffer))
Florin Corasb2215d62017-08-01 16:56:58 -07001300 {
Florin Coras24793e32018-05-09 11:34:25 -07001301 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1302 return 0;
1303 *b = vlib_get_buffer (vm, bi);
1304 data = tcp_init_buffer (vm, *b);
Florin Corase87216f2017-08-17 16:59:22 -07001305 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1306 max_deq_bytes);
Florin Corasb2215d62017-08-01 16:56:58 -07001307 ASSERT (n_bytes == max_deq_bytes);
1308 b[0]->current_length = n_bytes;
Florin Corasb26743d2018-06-26 09:31:04 -07001309 tcp_push_hdr_i (tc, *b, tc->state, /* compute opts */ 0, /* burst */ 0);
Florin Coras208daa12018-07-02 01:30:51 -07001310 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
1311 tc->snd_una_max = tc->snd_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001312 }
1313 /* Split mss into multiple buffers */
1314 else
1315 {
1316 u32 chain_bi = ~0, n_bufs_per_seg;
1317 u32 thread_index = vlib_get_thread_index ();
1318 u16 n_peeked, len_to_deq, available_bufs;
1319 vlib_buffer_t *chain_b, *prev_b;
Florin Corasb2215d62017-08-01 16:56:58 -07001320 int i;
1321
Florin Corasb2215d62017-08-01 16:56:58 -07001322 /* Make sure we have enough buffers */
Florin Coras24793e32018-05-09 11:34:25 -07001323 n_bufs_per_seg = ceil ((double) seg_size / tm->bytes_per_buffer);
Florin Coras2c414432018-06-19 09:58:04 -07001324 available_bufs = vec_len (tm->wrk_ctx[thread_index].tx_buffers);
Florin Corasb2215d62017-08-01 16:56:58 -07001325 if (n_bufs_per_seg > available_bufs)
1326 {
Florin Coras24793e32018-05-09 11:34:25 -07001327 tcp_alloc_tx_buffers (tm, thread_index, &available_bufs,
1328 VLIB_FRAME_SIZE);
1329
1330 if (n_bufs_per_seg > available_bufs)
Florin Corasb2215d62017-08-01 16:56:58 -07001331 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001332 *b = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001333 return 0;
1334 }
1335 }
1336
Florin Coras24793e32018-05-09 11:34:25 -07001337 tcp_get_free_buffer_index (tm, &bi);
1338 ASSERT (bi != (u32) ~ 0);
1339 *b = vlib_get_buffer (vm, bi);
1340 data = tcp_init_buffer (vm, *b);
Florin Corase87216f2017-08-17 16:59:22 -07001341 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1342 tm->bytes_per_buffer -
1343 MAX_HDRS_LEN);
Florin Corasb2215d62017-08-01 16:56:58 -07001344 b[0]->current_length = n_bytes;
1345 b[0]->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
1346 b[0]->total_length_not_including_first_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001347 max_deq_bytes -= n_bytes;
1348
1349 chain_b = *b;
1350 for (i = 1; i < n_bufs_per_seg; i++)
1351 {
1352 prev_b = chain_b;
1353 len_to_deq = clib_min (max_deq_bytes, tm->bytes_per_buffer);
1354 tcp_get_free_buffer_index (tm, &chain_bi);
1355 ASSERT (chain_bi != (u32) ~ 0);
1356 chain_b = vlib_get_buffer (vm, chain_bi);
1357 chain_b->current_data = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001358 data = vlib_buffer_get_current (chain_b);
1359 n_peeked = stream_session_peek_bytes (&tc->connection, data,
Florin Coras1f152cd2017-08-18 19:28:03 -07001360 offset + n_bytes, len_to_deq);
Florin Corasb2215d62017-08-01 16:56:58 -07001361 ASSERT (n_peeked == len_to_deq);
Florin Coras1f152cd2017-08-18 19:28:03 -07001362 n_bytes += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001363 chain_b->current_length = n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001364 chain_b->next_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001365
1366 /* update previous buffer */
1367 prev_b->next_buffer = chain_bi;
1368 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
1369
Florin Corasb2215d62017-08-01 16:56:58 -07001370 max_deq_bytes -= n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001371 b[0]->total_length_not_including_first_buffer += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001372 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001373
Florin Corasb26743d2018-06-26 09:31:04 -07001374 tcp_push_hdr_i (tc, *b, tc->state, /* compute opts */ 0, /* burst */ 0);
Florin Coras208daa12018-07-02 01:30:51 -07001375 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
1376 tc->snd_una_max = tc->snd_nxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001377 }
1378
Florin Coras93992a92017-05-24 18:03:56 -07001379 ASSERT (n_bytes > 0);
Florin Corase87216f2017-08-17 16:59:22 -07001380 ASSERT (((*b)->current_data + (*b)->current_length) <=
1381 tm->bytes_per_buffer);
Florin Corasbb292f42017-05-19 09:49:19 -07001382
Florin Coras93992a92017-05-24 18:03:56 -07001383 if (tcp_in_fastrecovery (tc))
1384 tc->snd_rxt_bytes += n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001385
Florin Coras6792ec02017-03-13 03:49:51 -07001386done:
1387 TCP_EVT_DBG (TCP_EVT_CC_RTX, tc, offset, n_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001388 return n_bytes;
1389}
1390
Florin Coras6792ec02017-03-13 03:49:51 -07001391/**
1392 * Reset congestion control, switch cwnd to loss window and try again.
1393 */
1394static void
Florin Corasca1c8f32018-05-23 21:01:30 -07001395tcp_rxt_timeout_cc (tcp_connection_t * tc)
Florin Coras6792ec02017-03-13 03:49:51 -07001396{
Florin Corasca1c8f32018-05-23 21:01:30 -07001397 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 6);
Florin Coras93992a92017-05-24 18:03:56 -07001398 tc->prev_ssthresh = tc->ssthresh;
1399 tc->prev_cwnd = tc->cwnd;
1400
Florin Coras6792ec02017-03-13 03:49:51 -07001401 /* Cleanly recover cc (also clears up fast retransmit) */
1402 if (tcp_in_fastrecovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001403 tcp_cc_fastrecovery_exit (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001404
1405 /* Start again from the beginning */
Florin Corasd2aab832018-05-22 11:39:59 -07001406 tc->cc_algo->congestion (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001407 tc->cwnd = tcp_loss_wnd (tc);
1408 tc->snd_congestion = tc->snd_una_max;
Florin Corasf1762d62017-09-24 19:43:08 -04001409 tc->rtt_ts = 0;
Florin Corasd2aab832018-05-22 11:39:59 -07001410 tc->cwnd_acc_bytes = 0;
1411
Florin Coras3af90fc2017-05-03 21:09:42 -07001412 tcp_recovery_on (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001413}
1414
Florin Coras0dbd5172018-06-25 16:19:34 -07001415static inline void
Dave Barach68b0fb02017-02-28 15:15:56 -05001416tcp_timer_retransmit_handler_i (u32 index, u8 is_syn)
1417{
1418 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001419 vlib_main_t *vm = vlib_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02001420 u32 thread_index = vlib_get_thread_index ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001421 tcp_connection_t *tc;
Florin Corasb2215d62017-08-01 16:56:58 -07001422 vlib_buffer_t *b = 0;
Florin Coras3af90fc2017-05-03 21:09:42 -07001423 u32 bi, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001424
1425 if (is_syn)
1426 {
1427 tc = tcp_half_open_connection_get (index);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001428 /* Note: the connection may have transitioned to ESTABLISHED... */
1429 if (PREDICT_FALSE (tc == 0))
1430 return;
Florin Coras68810622017-07-24 17:40:28 -07001431 tc->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05001432 }
1433 else
1434 {
1435 tc = tcp_connection_get (index, thread_index);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001436 /* Note: the connection may have been closed and pool_put */
1437 if (PREDICT_FALSE (tc == 0))
1438 return;
Florin Coras68810622017-07-24 17:40:28 -07001439 tc->timers[TCP_TIMER_RETRANSMIT] = TCP_TIMER_HANDLE_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05001440 }
1441
Florin Corasca1c8f32018-05-23 21:01:30 -07001442 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 1);
1443
Florin Corase04c2992017-03-01 08:17:34 -08001444 if (tc->state >= TCP_STATE_ESTABLISHED)
Dave Barach68b0fb02017-02-28 15:15:56 -05001445 {
Florin Coras93992a92017-05-24 18:03:56 -07001446 /* Lost FIN, retransmit and return */
Florin Coras93e65802017-11-29 00:07:11 -05001447 if (tcp_is_lost_fin (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001448 {
1449 tcp_send_fin (tc);
Florin Corasf988e692017-11-27 04:34:14 -05001450 tc->rto_boff += 1;
1451 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
Florin Coras93992a92017-05-24 18:03:56 -07001452 return;
1453 }
1454
Florin Coras3ec66b02018-08-23 16:27:05 -07001455 /* Shouldn't be here. This condition is tricky because it has to take
1456 * into account boff > 0 due to persist timeout. */
Florin Coras887b7ba2018-06-09 06:49:59 -07001457 if ((tc->rto_boff == 0 && tc->snd_una == tc->snd_una_max)
Florin Coras3ec66b02018-08-23 16:27:05 -07001458 || (tc->rto_boff > 0 && seq_geq (tc->snd_una, tc->snd_congestion)
1459 && !tcp_flight_size (tc)))
Florin Corasa096f2d2017-09-28 23:49:42 -04001460 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001461 ASSERT (!tcp_in_recovery (tc));
1462 tc->rto_boff = 0;
Florin Corasa096f2d2017-09-28 23:49:42 -04001463 return;
1464 }
1465
Florin Coras3ec66b02018-08-23 16:27:05 -07001466 /* We're not in recovery so make sure rto_boff is 0. Can be non 0 due
1467 * to persist timer timeout */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001468 if (!tcp_in_recovery (tc) && tc->rto_boff > 0)
1469 {
1470 tc->rto_boff = 0;
1471 tcp_update_rto (tc);
1472 }
1473
1474 /* Increment RTO backoff (also equal to number of retries) and go back
1475 * to first un-acked byte */
1476 tc->rto_boff += 1;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001477
Florin Coras6792ec02017-03-13 03:49:51 -07001478 /* First retransmit timeout */
1479 if (tc->rto_boff == 1)
Florin Corasca1c8f32018-05-23 21:01:30 -07001480 tcp_rxt_timeout_cc (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001481
Florin Coras3ec66b02018-08-23 16:27:05 -07001482 /* If we've sent beyond snd_congestion, update it */
1483 if (seq_gt (tc->snd_una_max, tc->snd_congestion))
1484 tc->snd_congestion = tc->snd_una_max;
1485
Florin Corasd2aab832018-05-22 11:39:59 -07001486 tc->snd_una_max = tc->snd_nxt = tc->snd_una;
Dave Barach68b0fb02017-02-28 15:15:56 -05001487 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1488
Florin Coras3ec66b02018-08-23 16:27:05 -07001489 /* Send one segment. Note that n_bytes may be zero due to buffer
1490 * shortfall */
Florin Corasb2215d62017-08-01 16:56:58 -07001491 n_bytes = tcp_prepare_retransmit_segment (tc, 0, tc->snd_mss, &b);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001492
Florin Coras93992a92017-05-24 18:03:56 -07001493 /* TODO be less aggressive about this */
Florin Coras3af90fc2017-05-03 21:09:42 -07001494 scoreboard_clear (&tc->sack_sb);
1495
1496 if (n_bytes == 0)
Florin Corase04c2992017-03-01 08:17:34 -08001497 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001498 tcp_retransmit_timer_force_update (tc);
Florin Corase04c2992017-03-01 08:17:34 -08001499 return;
1500 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001501
Dave Barachb7f1faa2017-08-29 11:43:37 -04001502 bi = vlib_get_buffer_index (vm, b);
1503
Florin Coras93992a92017-05-24 18:03:56 -07001504 /* For first retransmit, record timestamp (Eifel detection RFC3522) */
1505 if (tc->rto_boff == 1)
1506 tc->snd_rxt_ts = tcp_time_now ();
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001507
1508 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras3ec66b02018-08-23 16:27:05 -07001509 tcp_retransmit_timer_force_update (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001510 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001511 /* Retransmit for SYN */
1512 else if (tc->state == TCP_STATE_SYN_SENT)
Florin Coras93992a92017-05-24 18:03:56 -07001513 {
Florin Coras68810622017-07-24 17:40:28 -07001514 /* Half-open connection actually moved to established but we were
1515 * waiting for syn retransmit to pop to call cleanup from the right
1516 * thread. */
1517 if (tc->flags & TCP_CONN_HALF_OPEN_DONE)
1518 {
Florin Coras68810622017-07-24 17:40:28 -07001519 if (tcp_half_open_connection_cleanup (tc))
1520 {
1521 clib_warning ("could not remove half-open connection");
1522 ASSERT (0);
1523 }
1524 return;
1525 }
1526
Dave Barach68b0fb02017-02-28 15:15:56 -05001527 /* Try without increasing RTO a number of times. If this fails,
1528 * start growing RTO exponentially */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001529 tc->rto_boff += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001530 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1531 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1532
Florin Corasf988e692017-11-27 04:34:14 -05001533 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN,
1534 tc->rto * TCP_TO_TIMER_TICK);
1535
Florin Corasb2215d62017-08-01 16:56:58 -07001536 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001537 return;
1538
Florin Corasb2215d62017-08-01 16:56:58 -07001539 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001540 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001541 tcp_make_syn (tc, b);
Florin Corase04c2992017-03-01 08:17:34 -08001542
Dave Barach2c25a622017-06-26 11:35:07 -04001543 tc->rtt_ts = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001544 TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 0);
1545
1546 /* This goes straight to ipx_lookup. Retransmit timer set already */
1547 tcp_push_ip_hdr (tm, tc, b);
Florin Coras56b39f62018-03-27 17:29:32 -07001548 tcp_enqueue_to_ip_lookup (vm, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001549 }
1550 /* Retransmit SYN-ACK */
1551 else if (tc->state == TCP_STATE_SYN_RCVD)
1552 {
1553 tc->rto_boff += 1;
Florin Coras9d063042017-09-14 03:08:00 -04001554 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1555 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001556 tc->rtt_ts = 0;
1557
1558 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
Florin Corasf988e692017-11-27 04:34:14 -05001559 {
1560 tcp_retransmit_timer_force_update (tc);
1561 return;
1562 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001563
1564 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001565 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001566 tcp_make_synack (tc, b);
1567 TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 1);
1568
1569 /* Retransmit timer already updated, just enqueue to output */
1570 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001571 }
Florin Coras93992a92017-05-24 18:03:56 -07001572 else
1573 {
1574 ASSERT (tc->state == TCP_STATE_CLOSED);
Florin Coras93992a92017-05-24 18:03:56 -07001575 return;
1576 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001577}
1578
1579void
1580tcp_timer_retransmit_handler (u32 index)
1581{
1582 tcp_timer_retransmit_handler_i (index, 0);
1583}
1584
1585void
1586tcp_timer_retransmit_syn_handler (u32 index)
1587{
1588 tcp_timer_retransmit_handler_i (index, 1);
1589}
1590
1591/**
Florin Coras3e350af2017-03-30 02:54:28 -07001592 * Got 0 snd_wnd from peer, try to do something about it.
1593 *
1594 */
1595void
1596tcp_timer_persist_handler (u32 index)
1597{
1598 tcp_main_t *tm = vnet_get_tcp_main ();
1599 vlib_main_t *vm = vlib_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02001600 u32 thread_index = vlib_get_thread_index ();
Florin Coras3e350af2017-03-30 02:54:28 -07001601 tcp_connection_t *tc;
1602 vlib_buffer_t *b;
Florin Coras84275e92017-09-26 12:30:40 -04001603 u32 bi, max_snd_bytes, available_bytes, offset;
Florin Coras93992a92017-05-24 18:03:56 -07001604 int n_bytes = 0;
Florin Coras1f152cd2017-08-18 19:28:03 -07001605 u8 *data;
Florin Coras3e350af2017-03-30 02:54:28 -07001606
Florin Corasdb84e572017-05-09 18:54:52 -07001607 tc = tcp_connection_get_if_valid (index, thread_index);
1608
1609 if (!tc)
1610 return;
Florin Coras3e350af2017-03-30 02:54:28 -07001611
1612 /* Make sure timer handle is set to invalid */
1613 tc->timers[TCP_TIMER_PERSIST] = TCP_TIMER_HANDLE_INVALID;
1614
1615 /* Problem already solved or worse */
Florin Corasf03a59a2017-06-09 21:07:32 -07001616 if (tc->state == TCP_STATE_CLOSED || tc->state > TCP_STATE_ESTABLISHED
Florin Coras50958952017-08-29 14:50:13 -07001617 || tc->snd_wnd > tc->snd_mss || tcp_in_recovery (tc))
Florin Coras3e350af2017-03-30 02:54:28 -07001618 return;
1619
Florin Coras25579b42018-06-06 17:55:02 -07001620 available_bytes = session_tx_fifo_max_dequeue (&tc->connection);
Florin Coras50958952017-08-29 14:50:13 -07001621 offset = tc->snd_una_max - tc->snd_una;
1622
1623 /* Reprogram persist if no new bytes available to send. We may have data
1624 * next time */
1625 if (!available_bytes)
1626 {
1627 tcp_persist_timer_set (tc);
1628 return;
1629 }
1630
1631 if (available_bytes <= offset)
1632 {
1633 ASSERT (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT));
1634 return;
1635 }
1636
Florin Coras3e350af2017-03-30 02:54:28 -07001637 /* Increment RTO backoff */
1638 tc->rto_boff += 1;
1639 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1640
Florin Corasb2215d62017-08-01 16:56:58 -07001641 /*
1642 * Try to force the first unsent segment (or buffer)
1643 */
Florin Coras66b11312017-07-31 17:18:03 -07001644 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
Florin Coras3ec66b02018-08-23 16:27:05 -07001645 {
1646 tcp_persist_timer_set (tc);
1647 return;
1648 }
Florin Coras3e350af2017-03-30 02:54:28 -07001649 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001650 data = tcp_init_buffer (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001651
Florin Coras1f152cd2017-08-18 19:28:03 -07001652 tcp_validate_txf_size (tc, offset);
Florin Corasc8343412017-05-04 14:25:50 -07001653 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
Florin Coras1f152cd2017-08-18 19:28:03 -07001654 max_snd_bytes = clib_min (tc->snd_mss, tm->bytes_per_buffer - MAX_HDRS_LEN);
1655 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1656 max_snd_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001657 b->current_length = n_bytes;
Florin Coras84275e92017-09-26 12:30:40 -04001658 ASSERT (n_bytes != 0 && (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)
1659 || tc->snd_nxt == tc->snd_una_max
1660 || tc->rto_boff > 1));
Florin Coras93992a92017-05-24 18:03:56 -07001661
Florin Corasb26743d2018-06-26 09:31:04 -07001662 tcp_push_hdr_i (tc, b, tc->state, /* compute opts */ 0, /* burst */ 0);
Florin Coras8b20bf52018-06-14 14:55:50 -07001663 tc->snd_una_max = tc->snd_nxt;
1664 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
Florin Coras3e350af2017-03-30 02:54:28 -07001665 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1666
Florin Coras1f152cd2017-08-18 19:28:03 -07001667 /* Just sent new data, enable retransmit */
1668 tcp_retransmit_timer_update (tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001669}
1670
1671/**
Florin Coras6792ec02017-03-13 03:49:51 -07001672 * Retransmit first unacked segment
1673 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001674void
1675tcp_retransmit_first_unacked (tcp_connection_t * tc)
1676{
Florin Coras6792ec02017-03-13 03:49:51 -07001677 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001678 vlib_buffer_t *b;
Florin Corasb2215d62017-08-01 16:56:58 -07001679 u32 bi, old_snd_nxt, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001680
Florin Coras93992a92017-05-24 18:03:56 -07001681 old_snd_nxt = tc->snd_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001682 tc->snd_nxt = tc->snd_una;
1683
Florin Coras6792ec02017-03-13 03:49:51 -07001684 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2);
Florin Corasb2215d62017-08-01 16:56:58 -07001685 n_bytes = tcp_prepare_retransmit_segment (tc, 0, tc->snd_mss, &b);
1686 if (!n_bytes)
1687 return;
1688 bi = vlib_get_buffer_index (vm, b);
Florin Coras6792ec02017-03-13 03:49:51 -07001689 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras5921f982017-04-03 18:00:00 -07001690
Florin Coras93992a92017-05-24 18:03:56 -07001691 tc->snd_nxt = old_snd_nxt;
Florin Coras6792ec02017-03-13 03:49:51 -07001692}
1693
1694/**
Florin Coras93992a92017-05-24 18:03:56 -07001695 * Do fast retransmit with SACKs
Florin Coras6792ec02017-03-13 03:49:51 -07001696 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001697void
Florin Coras93992a92017-05-24 18:03:56 -07001698tcp_fast_retransmit_sack (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001699{
Florin Coras6792ec02017-03-13 03:49:51 -07001700 vlib_main_t *vm = vlib_get_main ();
Florin Corasca1c8f32018-05-23 21:01:30 -07001701 u32 n_written = 0, offset, max_bytes, n_segs = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001702 vlib_buffer_t *b = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001703 sack_scoreboard_hole_t *hole;
1704 sack_scoreboard_t *sb;
1705 u32 bi, old_snd_nxt;
1706 int snd_space;
1707 u8 snd_limited = 0, can_rescue = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001708
1709 ASSERT (tcp_in_fastrecovery (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -05001710
Florin Coras93992a92017-05-24 18:03:56 -07001711 old_snd_nxt = tc->snd_nxt;
1712 sb = &tc->sack_sb;
Florin Corasca1c8f32018-05-23 21:01:30 -07001713 snd_space = tcp_available_cc_snd_space (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001714
Florin Corasca1c8f32018-05-23 21:01:30 -07001715 if (snd_space < tc->snd_mss)
1716 goto done;
1717
1718 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0);
Florin Coras93992a92017-05-24 18:03:56 -07001719 hole = scoreboard_get_hole (sb, sb->cur_rxt_hole);
Florin Corasca1c8f32018-05-23 21:01:30 -07001720 while (hole && snd_space > 0 && n_segs++ < VLIB_FRAME_SIZE)
Florin Coras93992a92017-05-24 18:03:56 -07001721 {
Florin Coras93992a92017-05-24 18:03:56 -07001722 hole = scoreboard_next_rxt_hole (sb, hole,
1723 tcp_fastrecovery_sent_1_smss (tc),
1724 &can_rescue, &snd_limited);
1725 if (!hole)
1726 {
1727 if (!can_rescue || !(seq_lt (sb->rescue_rxt, tc->snd_una)
1728 || seq_gt (sb->rescue_rxt,
1729 tc->snd_congestion)))
1730 break;
1731
1732 /* If rescue rxt undefined or less than snd_una then one segment of
1733 * up to SMSS octets that MUST include the highest outstanding
1734 * unSACKed sequence number SHOULD be returned, and RescueRxt set to
1735 * RecoveryPoint. HighRxt MUST NOT be updated.
1736 */
Florin Coras1f152cd2017-08-18 19:28:03 -07001737 max_bytes = clib_min (tc->snd_mss,
1738 tc->snd_congestion - tc->snd_una);
1739 max_bytes = clib_min (max_bytes, snd_space);
Florin Coras93992a92017-05-24 18:03:56 -07001740 offset = tc->snd_congestion - tc->snd_una - max_bytes;
1741 sb->rescue_rxt = tc->snd_congestion;
1742 tc->snd_nxt = tc->snd_una + offset;
Florin Corasb2215d62017-08-01 16:56:58 -07001743 n_written = tcp_prepare_retransmit_segment (tc, offset, max_bytes,
1744 &b);
Florin Coras24793e32018-05-09 11:34:25 -07001745 if (!n_written)
1746 goto done;
1747
Florin Corasb2215d62017-08-01 16:56:58 -07001748 bi = vlib_get_buffer_index (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001749 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1750 break;
1751 }
1752
Florin Coras1f152cd2017-08-18 19:28:03 -07001753 max_bytes = clib_min (hole->end - sb->high_rxt, snd_space);
1754 max_bytes = snd_limited ? clib_min (max_bytes, tc->snd_mss) : max_bytes;
1755 if (max_bytes == 0)
1756 break;
Florin Coras93992a92017-05-24 18:03:56 -07001757 offset = sb->high_rxt - tc->snd_una;
Florin Coras1f152cd2017-08-18 19:28:03 -07001758 tc->snd_nxt = sb->high_rxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001759 n_written = tcp_prepare_retransmit_segment (tc, offset, max_bytes, &b);
Florin Coras93992a92017-05-24 18:03:56 -07001760
1761 /* Nothing left to retransmit */
1762 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001763 break;
Florin Coras93992a92017-05-24 18:03:56 -07001764
Florin Corasb2215d62017-08-01 16:56:58 -07001765 bi = vlib_get_buffer_index (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001766 sb->high_rxt += n_written;
1767 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras1f152cd2017-08-18 19:28:03 -07001768 ASSERT (n_written <= snd_space);
Florin Coras93992a92017-05-24 18:03:56 -07001769 snd_space -= n_written;
1770 }
1771
Florin Coras24793e32018-05-09 11:34:25 -07001772done:
Florin Coras93992a92017-05-24 18:03:56 -07001773 /* If window allows, send 1 SMSS of new data */
1774 tc->snd_nxt = old_snd_nxt;
1775}
1776
1777/**
1778 * Fast retransmit without SACK info
1779 */
1780void
1781tcp_fast_retransmit_no_sack (tcp_connection_t * tc)
1782{
Florin Coras93992a92017-05-24 18:03:56 -07001783 vlib_main_t *vm = vlib_get_main ();
1784 u32 n_written = 0, offset = 0, bi, old_snd_nxt;
1785 int snd_space;
1786 vlib_buffer_t *b;
1787
1788 ASSERT (tcp_in_fastrecovery (tc));
1789 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0);
1790
1791 /* Start resending from first un-acked segment */
1792 old_snd_nxt = tc->snd_nxt;
1793 tc->snd_nxt = tc->snd_una;
Florin Corasca1c8f32018-05-23 21:01:30 -07001794 snd_space = tcp_available_cc_snd_space (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001795
1796 while (snd_space > 0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001797 {
Florin Coras93992a92017-05-24 18:03:56 -07001798 offset += n_written;
Florin Corasb2215d62017-08-01 16:56:58 -07001799 n_written = tcp_prepare_retransmit_segment (tc, offset, snd_space, &b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001800
1801 /* Nothing left to retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001802 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001803 break;
Dave Barach68b0fb02017-02-28 15:15:56 -05001804
Florin Corasb2215d62017-08-01 16:56:58 -07001805 bi = vlib_get_buffer_index (vm, b);
Florin Coras6792ec02017-03-13 03:49:51 -07001806 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras6792ec02017-03-13 03:49:51 -07001807 snd_space -= n_written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001808 }
1809
Florin Coras93992a92017-05-24 18:03:56 -07001810 /* Restore snd_nxt. If window allows, send 1 SMSS of new data */
1811 tc->snd_nxt = old_snd_nxt;
1812}
1813
1814/**
1815 * Do fast retransmit
1816 */
1817void
1818tcp_fast_retransmit (tcp_connection_t * tc)
1819{
Florin Corasca1c8f32018-05-23 21:01:30 -07001820 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Coras93992a92017-05-24 18:03:56 -07001821 tcp_fast_retransmit_sack (tc);
1822 else
1823 tcp_fast_retransmit_no_sack (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001824}
1825
Florin Coras0dbd5172018-06-25 16:19:34 -07001826static u32
Dave Barach68b0fb02017-02-28 15:15:56 -05001827tcp_session_has_ooo_data (tcp_connection_t * tc)
1828{
Florin Corascea194d2017-10-02 00:18:51 -07001829 stream_session_t *s = session_get (tc->c_s_index, tc->c_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001830 return svm_fifo_has_ooo_data (s->server_rx_fifo);
1831}
1832
Florin Corasf9d05682018-04-26 08:26:52 -07001833static void
1834tcp_output_handle_link_local (tcp_connection_t * tc0, vlib_buffer_t * b0,
Florin Coras8b20bf52018-06-14 14:55:50 -07001835 u16 * next0, u32 * error0)
Florin Corasf9d05682018-04-26 08:26:52 -07001836{
1837 ip_adjacency_t *adj;
1838 adj_index_t ai;
1839
Florin Coras1c8ff632018-05-17 13:28:34 -07001840 /* Not thread safe but as long as the connection exists the adj should
1841 * not be removed */
Florin Corasf9d05682018-04-26 08:26:52 -07001842 ai = adj_nbr_find (FIB_PROTOCOL_IP6, VNET_LINK_IP6, &tc0->c_rmt_ip,
1843 tc0->sw_if_index);
1844 if (ai == ADJ_INDEX_INVALID)
1845 {
Florin Corasf9d05682018-04-26 08:26:52 -07001846 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
1847 *next0 = TCP_OUTPUT_NEXT_DROP;
1848 *error0 = TCP_ERROR_LINK_LOCAL_RW;
1849 return;
1850 }
1851
1852 adj = adj_get (ai);
Florin Coras1c8ff632018-05-17 13:28:34 -07001853 if (PREDICT_TRUE (adj->lookup_next_index == IP_LOOKUP_NEXT_REWRITE))
Florin Corasf9d05682018-04-26 08:26:52 -07001854 *next0 = TCP_OUTPUT_NEXT_IP_REWRITE;
1855 else if (adj->lookup_next_index == IP_LOOKUP_NEXT_ARP)
1856 *next0 = TCP_OUTPUT_NEXT_IP_ARP;
Florin Coras1c8ff632018-05-17 13:28:34 -07001857 else
1858 {
1859 *next0 = TCP_OUTPUT_NEXT_DROP;
1860 *error0 = TCP_ERROR_LINK_LOCAL_RW;
1861 }
1862 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = ai;
Florin Corasf9d05682018-04-26 08:26:52 -07001863}
1864
Florin Coras8b20bf52018-06-14 14:55:50 -07001865static void
1866tcp46_output_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
1867 u32 * to_next, u32 n_bufs)
Dave Barach68b0fb02017-02-28 15:15:56 -05001868{
Florin Coras8b20bf52018-06-14 14:55:50 -07001869 u32 n_trace = vlib_get_trace_count (vm, node);
1870 tcp_connection_t *tc;
1871 tcp_tx_trace_t *t;
1872 vlib_buffer_t *b;
1873 tcp_header_t *th;
1874 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001875
Florin Coras8b20bf52018-06-14 14:55:50 -07001876 for (i = 0; i < clib_min (n_trace, n_bufs); i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05001877 {
Florin Coras8b20bf52018-06-14 14:55:50 -07001878 b = vlib_get_buffer (vm, to_next[i]);
1879 th = vlib_buffer_get_current (b);
1880 tc = tcp_connection_get (vnet_buffer (b)->tcp.connection_index,
1881 vm->thread_index);
1882 t = vlib_add_trace (vm, node, b, sizeof (*t));
1883 clib_memcpy (&t->tcp_header, th, sizeof (t->tcp_header));
1884 clib_memcpy (&t->tcp_connection, tc, sizeof (t->tcp_connection));
1885 }
1886}
Dave Barach68b0fb02017-02-28 15:15:56 -05001887
Florin Coras0dbd5172018-06-25 16:19:34 -07001888always_inline void
Florin Coras8b20bf52018-06-14 14:55:50 -07001889tcp_output_push_ip (vlib_main_t * vm, vlib_buffer_t * b0,
1890 tcp_connection_t * tc0, u8 is_ip4)
1891{
1892 tcp_header_t *th0 = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001893
Florin Coras8b20bf52018-06-14 14:55:50 -07001894 th0 = vlib_buffer_get_current (b0);
1895 TCP_EVT_DBG (TCP_EVT_OUTPUT, tc0, th0->flags, b0->current_length);
1896 if (is_ip4)
1897 {
1898 vlib_buffer_push_ip4 (vm, b0, &tc0->c_lcl_ip4, &tc0->c_rmt_ip4,
1899 IP_PROTOCOL_TCP, 1);
1900 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
1901 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
1902 th0->checksum = 0;
1903 }
1904 else
1905 {
1906 ip6_header_t *ih0;
1907 ih0 = vlib_buffer_push_ip6 (vm, b0, &tc0->c_lcl_ip6,
1908 &tc0->c_rmt_ip6, IP_PROTOCOL_TCP);
1909 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
1910 vnet_buffer (b0)->l3_hdr_offset = (u8 *) ih0 - b0->data;
1911 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
1912 th0->checksum = 0;
1913 }
1914}
Dave Barach68b0fb02017-02-28 15:15:56 -05001915
Florin Coras0dbd5172018-06-25 16:19:34 -07001916always_inline void
Florin Coras8b20bf52018-06-14 14:55:50 -07001917tcp_output_handle_packet (tcp_connection_t * tc0, vlib_buffer_t * b0,
1918 u32 * error0, u16 * next0, u8 is_ip4)
1919{
Florin Coras81a13db2018-03-16 08:48:31 -07001920
Florin Coras8b20bf52018-06-14 14:55:50 -07001921 if (PREDICT_FALSE (tc0->state == TCP_STATE_CLOSED))
1922 {
1923 *error0 = TCP_ERROR_INVALID_CONNECTION;
1924 *next0 = TCP_OUTPUT_NEXT_DROP;
1925 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001926 }
1927
Florin Coras8b20bf52018-06-14 14:55:50 -07001928 vnet_buffer (b0)->sw_if_index[VLIB_TX] = tc0->c_fib_index;
1929 vnet_buffer (b0)->sw_if_index[VLIB_RX] = 0;
1930
1931 if (!is_ip4)
1932 {
1933 if (PREDICT_FALSE (ip6_address_is_link_local_unicast (&tc0->c_rmt_ip6)))
1934 tcp_output_handle_link_local (tc0, b0, next0, error0);
1935 }
1936
1937 /* Filter out DUPACKs if there are no OOO segments left */
1938 if (PREDICT_FALSE (vnet_buffer (b0)->tcp.flags & TCP_BUF_FLAG_DUPACK))
1939 {
1940 /* N.B. Should not filter burst of dupacks. Two issues:
1941 * 1) dupacks open cwnd on remote peer when congested
1942 * 2) acks leaving should have the latest rcv_wnd since the
1943 * burst may have eaten up all of it, so only the old ones
1944 * could be filtered.
1945 */
1946 if (!tcp_session_has_ooo_data (tc0))
1947 {
1948 *error0 = TCP_ERROR_FILTERED_DUPACKS;
1949 *next0 = TCP_OUTPUT_NEXT_DROP;
1950 return;
1951 }
1952 }
1953
1954 /* Stop DELACK timer and fix flags */
1955 tc0->flags &= ~(TCP_CONN_SNDACK);
1956 if (!TCP_ALWAYS_ACK)
1957 tcp_timer_reset (tc0, TCP_TIMER_DELACK);
1958}
1959
1960always_inline uword
1961tcp46_output_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
1962 vlib_frame_t * frame, int is_ip4)
1963{
1964 u32 n_left_from, *from, thread_index = vm->thread_index;
1965 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
1966 u16 nexts[VLIB_FRAME_SIZE], *next;
1967
1968 from = vlib_frame_vector_args (frame);
1969 n_left_from = frame->n_vectors;
1970 tcp_set_time_now (thread_index);
1971
1972 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
1973 tcp46_output_trace_frame (vm, node, from, n_left_from);
1974
1975 vlib_get_buffers (vm, from, bufs, n_left_from);
1976 b = bufs;
1977 next = nexts;
1978
1979 while (n_left_from >= 4)
1980 {
1981 u32 error0 = TCP_ERROR_PKTS_SENT, error1 = TCP_ERROR_PKTS_SENT;
1982 tcp_connection_t *tc0, *tc1;
1983
1984 {
1985 vlib_prefetch_buffer_header (b[2], STORE);
1986 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
1987
1988 vlib_prefetch_buffer_header (b[3], STORE);
1989 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
1990 }
1991
1992 next[0] = next[1] = TCP_OUTPUT_NEXT_IP_LOOKUP;
1993
1994 tc0 = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index,
1995 thread_index);
1996 tc1 = tcp_connection_get (vnet_buffer (b[1])->tcp.connection_index,
1997 thread_index);
1998
1999 tcp_output_push_ip (vm, b[0], tc0, is_ip4);
2000 tcp_output_push_ip (vm, b[1], tc1, is_ip4);
2001
2002 tcp_output_handle_packet (tc0, b[0], &error0, &next[0], is_ip4);
2003 tcp_output_handle_packet (tc1, b[1], &error1, &next[1], is_ip4);
2004
2005 b += 2;
2006 next += 2;
2007 n_left_from -= 2;
2008 }
2009 while (n_left_from > 0)
2010 {
2011 u32 error0 = TCP_ERROR_PKTS_SENT;
2012 tcp_connection_t *tc0;
2013
2014 if (n_left_from > 1)
2015 {
Florin Coras91ca4622018-06-30 11:27:59 -07002016 vlib_prefetch_buffer_header (b[1], STORE);
2017 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
Florin Coras8b20bf52018-06-14 14:55:50 -07002018 }
2019
2020 next[0] = TCP_OUTPUT_NEXT_IP_LOOKUP;
2021 tc0 = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index,
2022 thread_index);
2023
2024 tcp_output_push_ip (vm, b[0], tc0, is_ip4);
2025 tcp_output_handle_packet (tc0, b[0], &error0, &next[0], is_ip4);
2026
2027 b += 1;
2028 next += 1;
2029 n_left_from -= 1;
2030 }
2031
2032 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
2033 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002034}
2035
2036static uword
2037tcp4_output (vlib_main_t * vm, vlib_node_runtime_t * node,
2038 vlib_frame_t * from_frame)
2039{
2040 return tcp46_output_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2041}
2042
2043static uword
2044tcp6_output (vlib_main_t * vm, vlib_node_runtime_t * node,
2045 vlib_frame_t * from_frame)
2046{
2047 return tcp46_output_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2048}
2049
Florin Corase69f4952017-03-07 10:06:24 -08002050/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002051VLIB_REGISTER_NODE (tcp4_output_node) =
2052{
2053 .function = tcp4_output,.name = "tcp4-output",
2054 /* Takes a vector of packets. */
Florin Corase69f4952017-03-07 10:06:24 -08002055 .vector_size = sizeof (u32),
2056 .n_errors = TCP_N_ERROR,
2057 .error_strings = tcp_error_strings,
2058 .n_next_nodes = TCP_OUTPUT_N_NEXT,
2059 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002060#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
2061 foreach_tcp4_output_next
2062#undef _
Florin Corase69f4952017-03-07 10:06:24 -08002063 },
2064 .format_buffer = format_tcp_header,
2065 .format_trace = format_tcp_tx_trace,
2066};
2067/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002068
Florin Corase69f4952017-03-07 10:06:24 -08002069VLIB_NODE_FUNCTION_MULTIARCH (tcp4_output_node, tcp4_output);
2070
2071/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002072VLIB_REGISTER_NODE (tcp6_output_node) =
2073{
Florin Corase69f4952017-03-07 10:06:24 -08002074 .function = tcp6_output,
2075 .name = "tcp6-output",
Dave Barach68b0fb02017-02-28 15:15:56 -05002076 /* Takes a vector of packets. */
Florin Corase69f4952017-03-07 10:06:24 -08002077 .vector_size = sizeof (u32),
2078 .n_errors = TCP_N_ERROR,
2079 .error_strings = tcp_error_strings,
2080 .n_next_nodes = TCP_OUTPUT_N_NEXT,
2081 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002082#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
2083 foreach_tcp6_output_next
2084#undef _
Florin Corase69f4952017-03-07 10:06:24 -08002085 },
2086 .format_buffer = format_tcp_header,
2087 .format_trace = format_tcp_tx_trace,
2088};
2089/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002090
Florin Corase69f4952017-03-07 10:06:24 -08002091VLIB_NODE_FUNCTION_MULTIARCH (tcp6_output_node, tcp6_output);
2092
Dave Barach68b0fb02017-02-28 15:15:56 -05002093typedef enum _tcp_reset_next
2094{
2095 TCP_RESET_NEXT_DROP,
2096 TCP_RESET_NEXT_IP_LOOKUP,
2097 TCP_RESET_N_NEXT
2098} tcp_reset_next_t;
2099
2100#define foreach_tcp4_reset_next \
2101 _(DROP, "error-drop") \
2102 _(IP_LOOKUP, "ip4-lookup")
2103
2104#define foreach_tcp6_reset_next \
2105 _(DROP, "error-drop") \
2106 _(IP_LOOKUP, "ip6-lookup")
2107
2108static uword
2109tcp46_send_reset_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2110 vlib_frame_t * from_frame, u8 is_ip4)
2111{
2112 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02002113 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002114
2115 from = vlib_frame_vector_args (from_frame);
2116 n_left_from = from_frame->n_vectors;
2117
2118 next_index = node->cached_next_index;
2119
2120 while (n_left_from > 0)
2121 {
2122 u32 n_left_to_next;
2123
2124 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2125
2126 while (n_left_from > 0 && n_left_to_next > 0)
2127 {
2128 u32 bi0;
2129 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002130 tcp_tx_trace_t *t0;
2131 tcp_header_t *th0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002132 u32 error0 = TCP_ERROR_RST_SENT, next0 = TCP_RESET_NEXT_IP_LOOKUP;
2133
2134 bi0 = from[0];
2135 to_next[0] = bi0;
2136 from += 1;
2137 to_next += 1;
2138 n_left_from -= 1;
2139 n_left_to_next -= 1;
2140
2141 b0 = vlib_get_buffer (vm, bi0);
2142
2143 if (tcp_make_reset_in_place (vm, b0, vnet_buffer (b0)->tcp.flags,
2144 my_thread_index, is_ip4))
2145 {
2146 error0 = TCP_ERROR_LOOKUP_DROPS;
2147 next0 = TCP_RESET_NEXT_DROP;
2148 goto done;
2149 }
2150
2151 /* Prepare to send to IP lookup */
Florin Corasf988e692017-11-27 04:34:14 -05002152 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002153 next0 = TCP_RESET_NEXT_IP_LOOKUP;
2154
2155 done:
Florin Corase69f4952017-03-07 10:06:24 -08002156 b0->error = node->errors[error0];
Damjan Marion213b5aa2017-07-13 21:19:27 +02002157 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002158 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2159 {
Clement Durand6cf260c2017-04-13 13:27:04 +02002160 th0 = vlib_buffer_get_current (b0);
2161 if (is_ip4)
2162 th0 = ip4_next_header ((ip4_header_t *) th0);
2163 else
2164 th0 = ip6_next_header ((ip6_header_t *) th0);
Clement Durand6cf260c2017-04-13 13:27:04 +02002165 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2166 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
Dave Barach68b0fb02017-02-28 15:15:56 -05002167 }
2168
2169 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2170 n_left_to_next, bi0, next0);
2171 }
2172 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2173 }
2174 return from_frame->n_vectors;
2175}
2176
2177static uword
2178tcp4_send_reset (vlib_main_t * vm, vlib_node_runtime_t * node,
2179 vlib_frame_t * from_frame)
2180{
2181 return tcp46_send_reset_inline (vm, node, from_frame, 1);
2182}
2183
2184static uword
2185tcp6_send_reset (vlib_main_t * vm, vlib_node_runtime_t * node,
2186 vlib_frame_t * from_frame)
2187{
2188 return tcp46_send_reset_inline (vm, node, from_frame, 0);
2189}
2190
2191/* *INDENT-OFF* */
2192VLIB_REGISTER_NODE (tcp4_reset_node) = {
2193 .function = tcp4_send_reset,
2194 .name = "tcp4-reset",
2195 .vector_size = sizeof (u32),
2196 .n_errors = TCP_N_ERROR,
2197 .error_strings = tcp_error_strings,
2198 .n_next_nodes = TCP_RESET_N_NEXT,
2199 .next_nodes = {
2200#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2201 foreach_tcp4_reset_next
2202#undef _
2203 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002204 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002205};
2206/* *INDENT-ON* */
2207
Florin Corase69f4952017-03-07 10:06:24 -08002208VLIB_NODE_FUNCTION_MULTIARCH (tcp4_reset_node, tcp4_send_reset);
2209
Dave Barach68b0fb02017-02-28 15:15:56 -05002210/* *INDENT-OFF* */
2211VLIB_REGISTER_NODE (tcp6_reset_node) = {
2212 .function = tcp6_send_reset,
2213 .name = "tcp6-reset",
2214 .vector_size = sizeof (u32),
2215 .n_errors = TCP_N_ERROR,
2216 .error_strings = tcp_error_strings,
2217 .n_next_nodes = TCP_RESET_N_NEXT,
2218 .next_nodes = {
2219#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2220 foreach_tcp6_reset_next
2221#undef _
2222 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002223 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002224};
2225/* *INDENT-ON* */
2226
Florin Corase69f4952017-03-07 10:06:24 -08002227VLIB_NODE_FUNCTION_MULTIARCH (tcp6_reset_node, tcp6_send_reset);
2228
Dave Barach68b0fb02017-02-28 15:15:56 -05002229/*
2230 * fd.io coding-style-patch-verification: ON
2231 *
2232 * Local Variables:
2233 * eval: (c-set-style "gnu")
2234 * End:
2235 */