blob: df882bc5ff103915f50fabd9caef53ea35922e37 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vnet/tcp/tcp.h>
17#include <vnet/lisp-cp/packets.h>
Florin Corasb2215d62017-08-01 16:56:58 -070018#include <math.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050019
20vlib_node_registration_t tcp4_output_node;
21vlib_node_registration_t tcp6_output_node;
22
Dave Barach2c25a622017-06-26 11:35:07 -040023typedef enum _tcp_output_next
Dave Barach68b0fb02017-02-28 15:15:56 -050024{
25 TCP_OUTPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -040026 TCP_OUTPUT_NEXT_IP_LOOKUP,
Dave Barach68b0fb02017-02-28 15:15:56 -050027 TCP_OUTPUT_N_NEXT
28} tcp_output_next_t;
29
30#define foreach_tcp4_output_next \
31 _ (DROP, "error-drop") \
Dave Barach2c25a622017-06-26 11:35:07 -040032 _ (IP_LOOKUP, "ip4-lookup")
Dave Barach68b0fb02017-02-28 15:15:56 -050033
34#define foreach_tcp6_output_next \
35 _ (DROP, "error-drop") \
Dave Barach2c25a622017-06-26 11:35:07 -040036 _ (IP_LOOKUP, "ip6-lookup")
Dave Barach68b0fb02017-02-28 15:15:56 -050037
38static char *tcp_error_strings[] = {
39#define tcp_error(n,s) s,
40#include <vnet/tcp/tcp_error.def>
41#undef tcp_error
42};
43
44typedef struct
45{
Clement Durand6cf260c2017-04-13 13:27:04 +020046 tcp_header_t tcp_header;
47 tcp_connection_t tcp_connection;
Dave Barach68b0fb02017-02-28 15:15:56 -050048} tcp_tx_trace_t;
49
Florin Corasf6d68ed2017-05-07 19:12:02 -070050u16 dummy_mtu = 1460;
Dave Barach68b0fb02017-02-28 15:15:56 -050051
52u8 *
53format_tcp_tx_trace (u8 * s, va_list * args)
54{
55 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
56 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Clement Durand6cf260c2017-04-13 13:27:04 +020057 tcp_tx_trace_t *t = va_arg (*args, tcp_tx_trace_t *);
Christophe Fontained3c008d2017-10-02 18:10:54 +020058 u32 indent = format_get_indent (s);
Dave Barach68b0fb02017-02-28 15:15:56 -050059
Clement Durand6cf260c2017-04-13 13:27:04 +020060 s = format (s, "%U\n%U%U",
61 format_tcp_header, &t->tcp_header, 128,
62 format_white_space, indent,
Florin Corasbb292f42017-05-19 09:49:19 -070063 format_tcp_connection, &t->tcp_connection, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -050064
65 return s;
66}
67
Dave Barach68b0fb02017-02-28 15:15:56 -050068static u8
Florin Coras4eeeaaf2017-09-05 14:03:37 -040069tcp_window_compute_scale (u32 window)
Dave Barach68b0fb02017-02-28 15:15:56 -050070{
71 u8 wnd_scale = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -040072 while (wnd_scale < TCP_MAX_WND_SCALE && (window >> wnd_scale) > TCP_WND_MAX)
Dave Barach68b0fb02017-02-28 15:15:56 -050073 wnd_scale++;
74 return wnd_scale;
75}
76
77/**
Florin Coras6534b7a2017-07-18 05:38:03 -040078 * Update max segment size we're able to process.
79 *
80 * The value is constrained by our interface's MTU and IP options. It is
81 * also what we advertise to our peer.
82 */
83void
84tcp_update_rcv_mss (tcp_connection_t * tc)
85{
86 /* TODO find our iface MTU */
Florin Corasb2215d62017-08-01 16:56:58 -070087 tc->mss = dummy_mtu - sizeof (tcp_header_t);
Florin Coras6534b7a2017-07-18 05:38:03 -040088}
89
90/**
91 * TCP's initial window
Florin Corase04c2992017-03-01 08:17:34 -080092 */
93always_inline u32
94tcp_initial_wnd_unscaled (tcp_connection_t * tc)
95{
Florin Coras6534b7a2017-07-18 05:38:03 -040096 /* RFC 6928 recommends the value lower. However at the time our connections
97 * are initialized, fifos may not be allocated. Therefore, advertise the
98 * smallest possible unscaled window size and update once fifos are
99 * assigned to the session.
100 */
101 /*
102 tcp_update_rcv_mss (tc);
103 TCP_IW_N_SEGMENTS * tc->mss;
104 */
105 return TCP_MIN_RX_FIFO_SIZE;
Florin Corase04c2992017-03-01 08:17:34 -0800106}
107
108/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500109 * Compute initial window and scale factor. As per RFC1323, window field in
110 * SYN and SYN-ACK segments is never scaled.
111 */
112u32
113tcp_initial_window_to_advertise (tcp_connection_t * tc)
114{
Florin Corase04c2992017-03-01 08:17:34 -0800115 u32 max_fifo;
Dave Barach68b0fb02017-02-28 15:15:56 -0500116
117 /* Initial wnd for SYN. Fifos are not allocated yet.
Florin Corase04c2992017-03-01 08:17:34 -0800118 * Use some predefined value. For SYN-ACK we still want the
119 * scale to be computed in the same way */
120 max_fifo = TCP_MAX_RX_FIFO_SIZE;
Dave Barach68b0fb02017-02-28 15:15:56 -0500121
Florin Corase04c2992017-03-01 08:17:34 -0800122 tc->rcv_wscale = tcp_window_compute_scale (max_fifo);
123 tc->rcv_wnd = tcp_initial_wnd_unscaled (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500124
125 return clib_min (tc->rcv_wnd, TCP_WND_MAX);
126}
127
128/**
129 * Compute and return window to advertise, scaled as per RFC1323
130 */
131u32
132tcp_window_to_advertise (tcp_connection_t * tc, tcp_state_t state)
133{
Florin Corase04c2992017-03-01 08:17:34 -0800134 if (state < TCP_STATE_ESTABLISHED)
Dave Barach68b0fb02017-02-28 15:15:56 -0500135 return tcp_initial_window_to_advertise (tc);
136
Florin Coras6792ec02017-03-13 03:49:51 -0700137 tcp_update_rcv_wnd (tc);
138
139 if (tc->rcv_wnd == 0)
140 {
141 tc->flags |= TCP_CONN_SENT_RCV_WND0;
142 }
143 else
144 {
145 tc->flags &= ~TCP_CONN_SENT_RCV_WND0;
146 }
147
148 return tc->rcv_wnd >> tc->rcv_wscale;
149}
150
151void
152tcp_update_rcv_wnd (tcp_connection_t * tc)
153{
154 i32 observed_wnd;
155 u32 available_space, max_fifo, wnd;
156
Florin Corase04c2992017-03-01 08:17:34 -0800157 /*
158 * Figure out how much space we have available
159 */
Florin Coras6792ec02017-03-13 03:49:51 -0700160 available_space = stream_session_max_rx_enqueue (&tc->connection);
Florin Coras93992a92017-05-24 18:03:56 -0700161 max_fifo = stream_session_rx_fifo_size (&tc->connection);
Dave Barach68b0fb02017-02-28 15:15:56 -0500162
Florin Coras93992a92017-05-24 18:03:56 -0700163 ASSERT (tc->rcv_opts.mss < max_fifo);
164 if (available_space < tc->rcv_opts.mss && available_space < max_fifo >> 3)
Florin Corase04c2992017-03-01 08:17:34 -0800165 available_space = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500166
Florin Corase04c2992017-03-01 08:17:34 -0800167 /*
168 * Use the above and what we know about what we've previously advertised
169 * to compute the new window
170 */
Florin Coras6792ec02017-03-13 03:49:51 -0700171 observed_wnd = (i32) tc->rcv_wnd - (tc->rcv_nxt - tc->rcv_las);
172 if (observed_wnd < 0)
173 observed_wnd = 0;
Florin Corase04c2992017-03-01 08:17:34 -0800174
175 /* Bad. Thou shalt not shrink */
176 if (available_space < observed_wnd)
177 {
Florin Coras6792ec02017-03-13 03:49:51 -0700178 wnd = observed_wnd;
Florin Coras3e350af2017-03-30 02:54:28 -0700179 TCP_EVT_DBG (TCP_EVT_RCV_WND_SHRUNK, tc, observed_wnd, available_space);
Florin Corase04c2992017-03-01 08:17:34 -0800180 }
Florin Coras6792ec02017-03-13 03:49:51 -0700181 else
Florin Corase04c2992017-03-01 08:17:34 -0800182 {
Florin Coras6792ec02017-03-13 03:49:51 -0700183 wnd = available_space;
Florin Corase04c2992017-03-01 08:17:34 -0800184 }
185
Florin Coras3e350af2017-03-30 02:54:28 -0700186 /* Make sure we have a multiple of rcv_wscale */
187 if (wnd && tc->rcv_wscale)
188 {
189 wnd &= ~(1 << tc->rcv_wscale);
190 if (wnd == 0)
191 wnd = 1 << tc->rcv_wscale;
192 }
Florin Coras6792ec02017-03-13 03:49:51 -0700193
194 tc->rcv_wnd = clib_min (wnd, TCP_WND_MAX << tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500195}
196
197/**
198 * Write TCP options to segment.
199 */
200u32
201tcp_options_write (u8 * data, tcp_options_t * opts)
202{
203 u32 opts_len = 0;
204 u32 buf, seq_len = 4;
205
206 if (tcp_opts_mss (opts))
207 {
208 *data++ = TCP_OPTION_MSS;
209 *data++ = TCP_OPTION_LEN_MSS;
210 buf = clib_host_to_net_u16 (opts->mss);
211 clib_memcpy (data, &buf, sizeof (opts->mss));
212 data += sizeof (opts->mss);
213 opts_len += TCP_OPTION_LEN_MSS;
214 }
215
216 if (tcp_opts_wscale (opts))
217 {
218 *data++ = TCP_OPTION_WINDOW_SCALE;
219 *data++ = TCP_OPTION_LEN_WINDOW_SCALE;
220 *data++ = opts->wscale;
221 opts_len += TCP_OPTION_LEN_WINDOW_SCALE;
222 }
223
224 if (tcp_opts_sack_permitted (opts))
225 {
226 *data++ = TCP_OPTION_SACK_PERMITTED;
227 *data++ = TCP_OPTION_LEN_SACK_PERMITTED;
228 opts_len += TCP_OPTION_LEN_SACK_PERMITTED;
229 }
230
231 if (tcp_opts_tstamp (opts))
232 {
233 *data++ = TCP_OPTION_TIMESTAMP;
234 *data++ = TCP_OPTION_LEN_TIMESTAMP;
235 buf = clib_host_to_net_u32 (opts->tsval);
236 clib_memcpy (data, &buf, sizeof (opts->tsval));
237 data += sizeof (opts->tsval);
238 buf = clib_host_to_net_u32 (opts->tsecr);
239 clib_memcpy (data, &buf, sizeof (opts->tsecr));
240 data += sizeof (opts->tsecr);
241 opts_len += TCP_OPTION_LEN_TIMESTAMP;
242 }
243
244 if (tcp_opts_sack (opts))
245 {
246 int i;
247 u32 n_sack_blocks = clib_min (vec_len (opts->sacks),
248 TCP_OPTS_MAX_SACK_BLOCKS);
249
250 if (n_sack_blocks != 0)
251 {
252 *data++ = TCP_OPTION_SACK_BLOCK;
253 *data++ = 2 + n_sack_blocks * TCP_OPTION_LEN_SACK_BLOCK;
254 for (i = 0; i < n_sack_blocks; i++)
255 {
256 buf = clib_host_to_net_u32 (opts->sacks[i].start);
257 clib_memcpy (data, &buf, seq_len);
258 data += seq_len;
259 buf = clib_host_to_net_u32 (opts->sacks[i].end);
260 clib_memcpy (data, &buf, seq_len);
261 data += seq_len;
262 }
263 opts_len += 2 + n_sack_blocks * TCP_OPTION_LEN_SACK_BLOCK;
264 }
265 }
266
267 /* Terminate TCP options */
268 if (opts_len % 4)
269 {
270 *data++ = TCP_OPTION_EOL;
271 opts_len += TCP_OPTION_LEN_EOL;
272 }
273
274 /* Pad with zeroes to a u32 boundary */
275 while (opts_len % 4)
276 {
277 *data++ = TCP_OPTION_NOOP;
278 opts_len += TCP_OPTION_LEN_NOOP;
279 }
280 return opts_len;
281}
282
283always_inline int
Florin Corase04c2992017-03-01 08:17:34 -0800284tcp_make_syn_options (tcp_options_t * opts, u8 wnd_scale)
Dave Barach68b0fb02017-02-28 15:15:56 -0500285{
286 u8 len = 0;
287
288 opts->flags |= TCP_OPTS_FLAG_MSS;
289 opts->mss = dummy_mtu; /*XXX discover that */
290 len += TCP_OPTION_LEN_MSS;
291
292 opts->flags |= TCP_OPTS_FLAG_WSCALE;
Florin Corase04c2992017-03-01 08:17:34 -0800293 opts->wscale = wnd_scale;
Dave Barach68b0fb02017-02-28 15:15:56 -0500294 len += TCP_OPTION_LEN_WINDOW_SCALE;
295
296 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
297 opts->tsval = tcp_time_now ();
298 opts->tsecr = 0;
299 len += TCP_OPTION_LEN_TIMESTAMP;
300
Florin Coras93992a92017-05-24 18:03:56 -0700301 if (TCP_USE_SACKS)
302 {
303 opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
304 len += TCP_OPTION_LEN_SACK_PERMITTED;
305 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500306
307 /* Align to needed boundary */
308 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
309 return len;
310}
311
312always_inline int
313tcp_make_synack_options (tcp_connection_t * tc, tcp_options_t * opts)
314{
315 u8 len = 0;
316
317 opts->flags |= TCP_OPTS_FLAG_MSS;
Florin Corasc8343412017-05-04 14:25:50 -0700318 opts->mss = tc->mss;
Dave Barach68b0fb02017-02-28 15:15:56 -0500319 len += TCP_OPTION_LEN_MSS;
320
Florin Coras93992a92017-05-24 18:03:56 -0700321 if (tcp_opts_wscale (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500322 {
323 opts->flags |= TCP_OPTS_FLAG_WSCALE;
324 opts->wscale = tc->rcv_wscale;
325 len += TCP_OPTION_LEN_WINDOW_SCALE;
326 }
327
Florin Coras93992a92017-05-24 18:03:56 -0700328 if (tcp_opts_tstamp (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500329 {
330 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
331 opts->tsval = tcp_time_now ();
332 opts->tsecr = tc->tsval_recent;
333 len += TCP_OPTION_LEN_TIMESTAMP;
334 }
335
Florin Coras93992a92017-05-24 18:03:56 -0700336 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500337 {
338 opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
339 len += TCP_OPTION_LEN_SACK_PERMITTED;
340 }
341
342 /* Align to needed boundary */
343 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
344 return len;
345}
346
347always_inline int
348tcp_make_established_options (tcp_connection_t * tc, tcp_options_t * opts)
349{
350 u8 len = 0;
351
352 opts->flags = 0;
353
Florin Coras93992a92017-05-24 18:03:56 -0700354 if (tcp_opts_tstamp (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500355 {
356 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
357 opts->tsval = tcp_time_now ();
358 opts->tsecr = tc->tsval_recent;
359 len += TCP_OPTION_LEN_TIMESTAMP;
360 }
Florin Coras93992a92017-05-24 18:03:56 -0700361 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500362 {
363 if (vec_len (tc->snd_sacks))
364 {
365 opts->flags |= TCP_OPTS_FLAG_SACK;
366 opts->sacks = tc->snd_sacks;
Florin Corasc28764f2017-04-26 00:08:42 -0700367 opts->n_sack_blocks = clib_min (vec_len (tc->snd_sacks),
368 TCP_OPTS_MAX_SACK_BLOCKS);
Dave Barach68b0fb02017-02-28 15:15:56 -0500369 len += 2 + TCP_OPTION_LEN_SACK_BLOCK * opts->n_sack_blocks;
370 }
371 }
372
373 /* Align to needed boundary */
374 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
375 return len;
376}
377
378always_inline int
379tcp_make_options (tcp_connection_t * tc, tcp_options_t * opts,
380 tcp_state_t state)
381{
382 switch (state)
383 {
384 case TCP_STATE_ESTABLISHED:
385 case TCP_STATE_FIN_WAIT_1:
386 return tcp_make_established_options (tc, opts);
387 case TCP_STATE_SYN_RCVD:
388 return tcp_make_synack_options (tc, opts);
389 case TCP_STATE_SYN_SENT:
Florin Corase04c2992017-03-01 08:17:34 -0800390 return tcp_make_syn_options (opts, tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500391 default:
Florin Coras371ca502018-02-21 12:07:41 -0800392 clib_warning ("State not handled! %d", state);
Dave Barach68b0fb02017-02-28 15:15:56 -0500393 return 0;
394 }
395}
396
Florin Corasc8343412017-05-04 14:25:50 -0700397/**
Florin Corasc8343412017-05-04 14:25:50 -0700398 * Update snd_mss to reflect the effective segment size that we can send
399 * by taking into account all TCP options, including SACKs
400 */
401void
402tcp_update_snd_mss (tcp_connection_t * tc)
403{
404 /* Compute options to be used for connection. These may be reused when
405 * sending data or to compute the effective mss (snd_mss) */
406 tc->snd_opts_len =
407 tcp_make_options (tc, &tc->snd_opts, TCP_STATE_ESTABLISHED);
408
409 /* XXX check if MTU has been updated */
Florin Coras93992a92017-05-24 18:03:56 -0700410 tc->snd_mss = clib_min (tc->mss, tc->rcv_opts.mss) - tc->snd_opts_len;
Florin Corasdb84e572017-05-09 18:54:52 -0700411 ASSERT (tc->snd_mss > 0);
Florin Corasc8343412017-05-04 14:25:50 -0700412}
413
414void
415tcp_init_mss (tcp_connection_t * tc)
416{
Florin Corasdb84e572017-05-09 18:54:52 -0700417 u16 default_min_mss = 536;
Florin Corasc8343412017-05-04 14:25:50 -0700418 tcp_update_rcv_mss (tc);
419
420 /* TODO cache mss and consider PMTU discovery */
Florin Coras93992a92017-05-24 18:03:56 -0700421 tc->snd_mss = clib_min (tc->rcv_opts.mss, tc->mss);
Florin Corasc8343412017-05-04 14:25:50 -0700422
Florin Corasdb84e572017-05-09 18:54:52 -0700423 if (tc->snd_mss < 45)
Florin Corasc8343412017-05-04 14:25:50 -0700424 {
425 clib_warning ("snd mss is 0");
Florin Corasdb84e572017-05-09 18:54:52 -0700426 /* Assume that at least the min default mss works */
427 tc->snd_mss = default_min_mss;
Florin Coras93992a92017-05-24 18:03:56 -0700428 tc->rcv_opts.mss = default_min_mss;
Florin Corasc8343412017-05-04 14:25:50 -0700429 }
430
431 /* We should have enough space for 40 bytes of options */
432 ASSERT (tc->snd_mss > 45);
433
434 /* If we use timestamp option, account for it */
Florin Coras93992a92017-05-24 18:03:56 -0700435 if (tcp_opts_tstamp (&tc->rcv_opts))
Florin Corasc8343412017-05-04 14:25:50 -0700436 tc->snd_mss -= TCP_OPTION_LEN_TIMESTAMP;
437}
438
Florin Coras66b11312017-07-31 17:18:03 -0700439always_inline int
Florin Coras24793e32018-05-09 11:34:25 -0700440tcp_alloc_tx_buffers (tcp_main_t * tm, u8 thread_index, u16 * n_bufs,
441 u32 wanted)
Florin Corasb2215d62017-08-01 16:56:58 -0700442{
Florin Coras2f9b0c02017-09-11 20:54:15 -0400443 vlib_main_t *vm = vlib_get_main ();
Florin Coras24793e32018-05-09 11:34:25 -0700444 u32 n_alloc;
Dave Barachb7f1faa2017-08-29 11:43:37 -0400445
Florin Coras24793e32018-05-09 11:34:25 -0700446 ASSERT (wanted > *n_bufs);
447 vec_validate_aligned (tm->tx_buffers[thread_index], wanted - 1,
448 CLIB_CACHE_LINE_BYTES);
449 n_alloc = vlib_buffer_alloc (vm, &tm->tx_buffers[thread_index][*n_bufs],
450 wanted - *n_bufs);
451 *n_bufs += n_alloc;
452 _vec_len (tm->tx_buffers[thread_index]) = *n_bufs;
453 return n_alloc;
Florin Corasb2215d62017-08-01 16:56:58 -0700454}
455
456always_inline int
Florin Coras66b11312017-07-31 17:18:03 -0700457tcp_get_free_buffer_index (tcp_main_t * tm, u32 * bidx)
458{
Florin Coras66b11312017-07-31 17:18:03 -0700459 u32 thread_index = vlib_get_thread_index ();
Florin Coras24793e32018-05-09 11:34:25 -0700460 u16 n_bufs = vec_len (tm->tx_buffers[thread_index]);
Florin Corasf988e692017-11-27 04:34:14 -0500461
462 TCP_DBG_BUFFER_ALLOC_MAYBE_FAIL (thread_index);
463
Florin Coras24793e32018-05-09 11:34:25 -0700464 if (PREDICT_FALSE (!n_bufs))
Florin Coras66b11312017-07-31 17:18:03 -0700465 {
Florin Coras24793e32018-05-09 11:34:25 -0700466 if (!tcp_alloc_tx_buffers (tm, thread_index, &n_bufs, VLIB_FRAME_SIZE))
467 {
468 *bidx = ~0;
469 return -1;
470 }
Florin Coras66b11312017-07-31 17:18:03 -0700471 }
Florin Coras24793e32018-05-09 11:34:25 -0700472 *bidx = tm->tx_buffers[thread_index][--n_bufs];
473 _vec_len (tm->tx_buffers[thread_index]) = n_bufs;
Florin Coras66b11312017-07-31 17:18:03 -0700474 return 0;
475}
Dave Barach68b0fb02017-02-28 15:15:56 -0500476
Florin Coras1f152cd2017-08-18 19:28:03 -0700477always_inline void *
Dave Barach68b0fb02017-02-28 15:15:56 -0500478tcp_reuse_buffer (vlib_main_t * vm, vlib_buffer_t * b)
479{
Florin Corasb2215d62017-08-01 16:56:58 -0700480 if (b->flags & VLIB_BUFFER_NEXT_PRESENT)
481 vlib_buffer_free_one (vm, b->next_buffer);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400482 /* Zero all flags but free list index and trace flag */
483 b->flags &= VLIB_BUFFER_NEXT_PRESENT - 1;
Florin Coras1f152cd2017-08-18 19:28:03 -0700484 b->current_data = 0;
485 b->current_length = 0;
486 b->total_length_not_including_first_buffer = 0;
487 vnet_buffer (b)->tcp.flags = 0;
Florin Corasb2215d62017-08-01 16:56:58 -0700488
Dave Barach68b0fb02017-02-28 15:15:56 -0500489 /* Leave enough space for headers */
Florin Coras1f152cd2017-08-18 19:28:03 -0700490 return vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
491}
492
493always_inline void *
494tcp_init_buffer (vlib_main_t * vm, vlib_buffer_t * b)
495{
496 ASSERT ((b->flags & VLIB_BUFFER_NEXT_PRESENT) == 0);
Damjan Mariondac03522018-02-01 15:30:13 +0100497 b->flags &= VLIB_BUFFER_NON_DEFAULT_FREELIST;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400498 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Florin Coras1f152cd2017-08-18 19:28:03 -0700499 b->total_length_not_including_first_buffer = 0;
Florin Coras24793e32018-05-09 11:34:25 -0700500 b->current_data = 0;
Florin Corasd79b41e2017-03-04 05:37:52 -0800501 vnet_buffer (b)->tcp.flags = 0;
Florin Corasf988e692017-11-27 04:34:14 -0500502 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b);
Florin Coras1f152cd2017-08-18 19:28:03 -0700503 /* Leave enough space for headers */
504 return vlib_buffer_make_headroom (b, MAX_HDRS_LEN);
Dave Barach68b0fb02017-02-28 15:15:56 -0500505}
506
507/**
508 * Prepare ACK
509 */
510void
511tcp_make_ack_i (tcp_connection_t * tc, vlib_buffer_t * b, tcp_state_t state,
512 u8 flags)
513{
514 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
515 u8 tcp_opts_len, tcp_hdr_opts_len;
516 tcp_header_t *th;
517 u16 wnd;
518
519 wnd = tcp_window_to_advertise (tc, state);
520
521 /* Make and write options */
522 tcp_opts_len = tcp_make_established_options (tc, snd_opts);
523 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
524
525 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
526 tc->rcv_nxt, tcp_hdr_opts_len, flags, wnd);
527
528 tcp_options_write ((u8 *) (th + 1), snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500529 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
530}
531
532/**
533 * Convert buffer to ACK
534 */
535void
536tcp_make_ack (tcp_connection_t * tc, vlib_buffer_t * b)
537{
Florin Coras6792ec02017-03-13 03:49:51 -0700538 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500539
540 tcp_reuse_buffer (vm, b);
541 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, TCP_FLAG_ACK);
Florin Coras6792ec02017-03-13 03:49:51 -0700542 TCP_EVT_DBG (TCP_EVT_ACK_SENT, tc);
Florin Coras3e350af2017-03-30 02:54:28 -0700543 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_ACK;
544 tc->rcv_las = tc->rcv_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500545}
546
547/**
548 * Convert buffer to FIN-ACK
549 */
550void
Florin Corasd79b41e2017-03-04 05:37:52 -0800551tcp_make_fin (tcp_connection_t * tc, vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500552{
Florin Coras6792ec02017-03-13 03:49:51 -0700553 vlib_main_t *vm = vlib_get_main ();
Florin Corasd79b41e2017-03-04 05:37:52 -0800554 u8 flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500555
556 tcp_reuse_buffer (vm, b);
Florin Corasd79b41e2017-03-04 05:37:52 -0800557
Florin Corase69f4952017-03-07 10:06:24 -0800558 flags = TCP_FLAG_FIN | TCP_FLAG_ACK;
Florin Corasd79b41e2017-03-04 05:37:52 -0800559 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, flags);
Dave Barach68b0fb02017-02-28 15:15:56 -0500560
561 /* Reset flags, make sure ack is sent */
Dave Barach68b0fb02017-02-28 15:15:56 -0500562 vnet_buffer (b)->tcp.flags &= ~TCP_BUF_FLAG_DUPACK;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400563}
Dave Barach68b0fb02017-02-28 15:15:56 -0500564
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400565/**
566 * Convert buffer to SYN
567 */
568void
569tcp_make_syn (tcp_connection_t * tc, vlib_buffer_t * b)
570{
571 u8 tcp_hdr_opts_len, tcp_opts_len;
572 tcp_header_t *th;
573 u16 initial_wnd;
574 tcp_options_t snd_opts;
575
576 initial_wnd = tcp_initial_window_to_advertise (tc);
577
578 /* Make and write options */
579 memset (&snd_opts, 0, sizeof (snd_opts));
580 tcp_opts_len = tcp_make_syn_options (&snd_opts, tc->rcv_wscale);
581 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
582
583 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
584 tc->rcv_nxt, tcp_hdr_opts_len, TCP_FLAG_SYN,
585 initial_wnd);
586 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
587 tcp_options_write ((u8 *) (th + 1), &snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500588}
589
590/**
591 * Convert buffer to SYN-ACK
592 */
593void
594tcp_make_synack (tcp_connection_t * tc, vlib_buffer_t * b)
595{
Florin Coras6792ec02017-03-13 03:49:51 -0700596 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500597 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
598 u8 tcp_opts_len, tcp_hdr_opts_len;
599 tcp_header_t *th;
600 u16 initial_wnd;
Dave Barach68b0fb02017-02-28 15:15:56 -0500601
602 memset (snd_opts, 0, sizeof (*snd_opts));
Dave Barach68b0fb02017-02-28 15:15:56 -0500603 tcp_reuse_buffer (vm, b);
604
Dave Barach68b0fb02017-02-28 15:15:56 -0500605 initial_wnd = tcp_initial_window_to_advertise (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500606 tcp_opts_len = tcp_make_synack_options (tc, snd_opts);
607 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
608
609 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
610 tc->rcv_nxt, tcp_hdr_opts_len,
611 TCP_FLAG_SYN | TCP_FLAG_ACK, initial_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -0500612 tcp_options_write ((u8 *) (th + 1), snd_opts);
613
614 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
615 vnet_buffer (b)->tcp.flags = TCP_BUF_FLAG_ACK;
616
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400617 /* Init retransmit timer. Use update instead of set because of
618 * retransmissions */
619 tcp_retransmit_timer_force_update (tc);
Florin Coras6534b7a2017-07-18 05:38:03 -0400620 TCP_EVT_DBG (TCP_EVT_SYNACK_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500621}
622
623always_inline void
Florin Coras9d063042017-09-14 03:08:00 -0400624tcp_enqueue_to_ip_lookup_i (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
Florin Coras56b39f62018-03-27 17:29:32 -0700625 u8 is_ip4, u32 fib_index, u8 flush)
Dave Barach68b0fb02017-02-28 15:15:56 -0500626{
Florin Coras9d063042017-09-14 03:08:00 -0400627 tcp_main_t *tm = vnet_get_tcp_main ();
628 u32 thread_index = vlib_get_thread_index ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500629 u32 *to_next, next_index;
630 vlib_frame_t *f;
631
Damjan Marion213b5aa2017-07-13 21:19:27 +0200632 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500633 b->error = 0;
634
Florin Coras56b39f62018-03-27 17:29:32 -0700635 vnet_buffer (b)->sw_if_index[VLIB_TX] = fib_index;
636 vnet_buffer (b)->sw_if_index[VLIB_RX] = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500637
638 /* Send to IP lookup */
639 next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index;
Florin Corasf988e692017-11-27 04:34:14 -0500640 tcp_trajectory_add_start (b, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500641
Florin Coras9d063042017-09-14 03:08:00 -0400642 f = tm->ip_lookup_tx_frames[!is_ip4][thread_index];
643 if (!f)
644 {
645 f = vlib_get_frame_to_node (vm, next_index);
646 ASSERT (f);
647 tm->ip_lookup_tx_frames[!is_ip4][thread_index] = f;
648 }
649
Dave Barach68b0fb02017-02-28 15:15:56 -0500650 to_next = vlib_frame_vector_args (f);
Florin Coras9d063042017-09-14 03:08:00 -0400651 to_next[f->n_vectors] = bi;
652 f->n_vectors += 1;
653 if (flush || f->n_vectors == VLIB_FRAME_SIZE)
654 {
655 vlib_put_frame_to_node (vm, next_index, f);
656 tm->ip_lookup_tx_frames[!is_ip4][thread_index] = 0;
657 }
658}
659
660always_inline void
661tcp_enqueue_to_ip_lookup_now (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
Florin Coras56b39f62018-03-27 17:29:32 -0700662 u8 is_ip4, u32 fib_index)
Florin Coras9d063042017-09-14 03:08:00 -0400663{
Florin Coras56b39f62018-03-27 17:29:32 -0700664 tcp_enqueue_to_ip_lookup_i (vm, b, bi, is_ip4, fib_index, 1);
Florin Coras9d063042017-09-14 03:08:00 -0400665}
666
667always_inline void
668tcp_enqueue_to_ip_lookup (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
Florin Coras56b39f62018-03-27 17:29:32 -0700669 u8 is_ip4, u32 fib_index)
Florin Coras9d063042017-09-14 03:08:00 -0400670{
Florin Coras56b39f62018-03-27 17:29:32 -0700671 tcp_enqueue_to_ip_lookup_i (vm, b, bi, is_ip4, fib_index, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500672}
673
Florin Coras1f152cd2017-08-18 19:28:03 -0700674always_inline void
675tcp_enqueue_to_output_i (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
676 u8 is_ip4, u8 flush)
677{
678 tcp_main_t *tm = vnet_get_tcp_main ();
679 u32 thread_index = vlib_get_thread_index ();
680 u32 *to_next, next_index;
681 vlib_frame_t *f;
682
683 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
684 b->error = 0;
685
686 /* Decide where to send the packet */
687 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
Florin Corasf988e692017-11-27 04:34:14 -0500688 tcp_trajectory_add_start (b, 2);
Florin Coras1f152cd2017-08-18 19:28:03 -0700689
690 /* Get frame to v4/6 output node */
691 f = tm->tx_frames[!is_ip4][thread_index];
692 if (!f)
693 {
694 f = vlib_get_frame_to_node (vm, next_index);
695 ASSERT (f);
696 tm->tx_frames[!is_ip4][thread_index] = f;
697 }
698 to_next = vlib_frame_vector_args (f);
699 to_next[f->n_vectors] = bi;
700 f->n_vectors += 1;
701 if (flush || f->n_vectors == VLIB_FRAME_SIZE)
702 {
703 vlib_put_frame_to_node (vm, next_index, f);
704 tm->tx_frames[!is_ip4][thread_index] = 0;
705 }
706}
707
708always_inline void
709tcp_enqueue_to_output (vlib_main_t * vm, vlib_buffer_t * b, u32 bi, u8 is_ip4)
710{
711 tcp_enqueue_to_output_i (vm, b, bi, is_ip4, 0);
712}
713
714always_inline void
715tcp_enqueue_to_output_now (vlib_main_t * vm, vlib_buffer_t * b, u32 bi,
716 u8 is_ip4)
717{
718 tcp_enqueue_to_output_i (vm, b, bi, is_ip4, 1);
719}
720
Dave Barach68b0fb02017-02-28 15:15:56 -0500721int
722tcp_make_reset_in_place (vlib_main_t * vm, vlib_buffer_t * b0,
Florin Corasdc629cd2017-05-09 00:52:37 -0700723 tcp_state_t state, u8 thread_index, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500724{
Dave Barach68b0fb02017-02-28 15:15:56 -0500725 ip4_header_t *ih4;
726 ip6_header_t *ih6;
727 tcp_header_t *th0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700728 ip4_address_t src_ip40, dst_ip40;
729 ip6_address_t src_ip60, dst_ip60;
730 u16 src_port, dst_port;
Dave Barach68b0fb02017-02-28 15:15:56 -0500731 u32 tmp;
Florin Corasdc629cd2017-05-09 00:52:37 -0700732 u32 seq, ack;
733 u8 flags;
Dave Barach68b0fb02017-02-28 15:15:56 -0500734
735 /* Find IP and TCP headers */
Florin Corasdc629cd2017-05-09 00:52:37 -0700736 th0 = tcp_buffer_hdr (b0);
737
738 /* Save src and dst ip */
Dave Barach68b0fb02017-02-28 15:15:56 -0500739 if (is_ip4)
740 {
741 ih4 = vlib_buffer_get_current (b0);
Florin Corasdc629cd2017-05-09 00:52:37 -0700742 ASSERT ((ih4->ip_version_and_header_length & 0xF0) == 0x40);
743 src_ip40.as_u32 = ih4->src_address.as_u32;
744 dst_ip40.as_u32 = ih4->dst_address.as_u32;
Dave Barach68b0fb02017-02-28 15:15:56 -0500745 }
746 else
747 {
748 ih6 = vlib_buffer_get_current (b0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500749 ASSERT ((ih6->ip_version_traffic_class_and_flow_label & 0xF0) == 0x60);
750 clib_memcpy (&src_ip60, &ih6->src_address, sizeof (ip6_address_t));
Florin Corasdc629cd2017-05-09 00:52:37 -0700751 clib_memcpy (&dst_ip60, &ih6->dst_address, sizeof (ip6_address_t));
Dave Barach68b0fb02017-02-28 15:15:56 -0500752 }
753
Florin Corasdc629cd2017-05-09 00:52:37 -0700754 src_port = th0->src_port;
755 dst_port = th0->dst_port;
756
757 /* Try to determine what/why we're actually resetting */
Dave Barach68b0fb02017-02-28 15:15:56 -0500758 if (state == TCP_STATE_CLOSED)
759 {
760 if (!tcp_syn (th0))
761 return -1;
762
763 tmp = clib_net_to_host_u32 (th0->seq_number);
764
765 /* Got a SYN for no listener. */
Florin Corasdc629cd2017-05-09 00:52:37 -0700766 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
767 ack = clib_host_to_net_u32 (tmp + 1);
768 seq = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500769 }
Florin Corasdc629cd2017-05-09 00:52:37 -0700770 else
Dave Barach68b0fb02017-02-28 15:15:56 -0500771 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700772 flags = TCP_FLAG_RST;
773 seq = th0->ack_number;
774 ack = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500775 }
776
Florin Corasdc629cd2017-05-09 00:52:37 -0700777 tcp_reuse_buffer (vm, b0);
Florin Corasf988e692017-11-27 04:34:14 -0500778 tcp_trajectory_add_start (b0, 4);
Florin Corasdc629cd2017-05-09 00:52:37 -0700779 th0 = vlib_buffer_push_tcp_net_order (b0, dst_port, src_port, seq, ack,
780 sizeof (tcp_header_t), flags, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500781
Dave Barach68b0fb02017-02-28 15:15:56 -0500782 if (is_ip4)
783 {
Florin Corasdc629cd2017-05-09 00:52:37 -0700784 ih4 = vlib_buffer_push_ip4 (vm, b0, &dst_ip40, &src_ip40,
Florin Corasfdbc3822017-07-27 00:34:12 -0700785 IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500786 th0->checksum = ip4_tcp_udp_compute_checksum (vm, b0, ih4);
787 }
788 else
789 {
790 int bogus = ~0;
Florin Corasdc629cd2017-05-09 00:52:37 -0700791 ih6 = vlib_buffer_push_ip6 (vm, b0, &dst_ip60, &src_ip60,
792 IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500793 th0->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b0, ih6, &bogus);
794 ASSERT (!bogus);
795 }
796
797 return 0;
798}
799
800/**
801 * Send reset without reusing existing buffer
Florin Coras1f152cd2017-08-18 19:28:03 -0700802 *
803 * It extracts connection info out of original packet
Dave Barach68b0fb02017-02-28 15:15:56 -0500804 */
805void
Florin Coras1f152cd2017-08-18 19:28:03 -0700806tcp_send_reset_w_pkt (tcp_connection_t * tc, vlib_buffer_t * pkt, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500807{
808 vlib_buffer_t *b;
Florin Coras56b39f62018-03-27 17:29:32 -0700809 u32 bi, sw_if_index, fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500810 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -0700811 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500812 u8 tcp_hdr_len, flags = 0;
813 tcp_header_t *th, *pkt_th;
814 u32 seq, ack;
815 ip4_header_t *ih4, *pkt_ih4;
816 ip6_header_t *ih6, *pkt_ih6;
Florin Coras56b39f62018-03-27 17:29:32 -0700817 fib_protocol_t fib_proto;
Dave Barach68b0fb02017-02-28 15:15:56 -0500818
Florin Coras66b11312017-07-31 17:18:03 -0700819 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
820 return;
821
Dave Barach68b0fb02017-02-28 15:15:56 -0500822 b = vlib_get_buffer (vm, bi);
Florin Coras56b39f62018-03-27 17:29:32 -0700823 sw_if_index = vnet_buffer (pkt)->sw_if_index[VLIB_RX];
824 fib_proto = is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
825 fib_index = fib_table_get_index_for_sw_if_index (fib_proto, sw_if_index);
Florin Coras1f152cd2017-08-18 19:28:03 -0700826 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500827
828 /* Make and write options */
829 tcp_hdr_len = sizeof (tcp_header_t);
830
831 if (is_ip4)
832 {
833 pkt_ih4 = vlib_buffer_get_current (pkt);
834 pkt_th = ip4_next_header (pkt_ih4);
835 }
836 else
837 {
838 pkt_ih6 = vlib_buffer_get_current (pkt);
839 pkt_th = ip6_next_header (pkt_ih6);
840 }
841
842 if (tcp_ack (pkt_th))
843 {
844 flags = TCP_FLAG_RST;
845 seq = pkt_th->ack_number;
Florin Coras6534b7a2017-07-18 05:38:03 -0400846 ack = (tc && tc->state >= TCP_STATE_SYN_RCVD) ? tc->rcv_nxt : 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500847 }
848 else
849 {
850 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
851 seq = 0;
852 ack = clib_host_to_net_u32 (vnet_buffer (pkt)->tcp.seq_end);
853 }
854
855 th = vlib_buffer_push_tcp_net_order (b, pkt_th->dst_port, pkt_th->src_port,
856 seq, ack, tcp_hdr_len, flags, 0);
857
858 /* Swap src and dst ip */
859 if (is_ip4)
860 {
861 ASSERT ((pkt_ih4->ip_version_and_header_length & 0xF0) == 0x40);
862 ih4 = vlib_buffer_push_ip4 (vm, b, &pkt_ih4->dst_address,
Florin Corasfdbc3822017-07-27 00:34:12 -0700863 &pkt_ih4->src_address, IP_PROTOCOL_TCP, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500864 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
865 }
866 else
867 {
868 int bogus = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500869 ASSERT ((pkt_ih6->ip_version_traffic_class_and_flow_label & 0xF0) ==
870 0x60);
rootc9d1c5b2017-08-15 12:58:31 -0400871 ih6 = vlib_buffer_push_ip6 (vm, b, &pkt_ih6->dst_address,
872 &pkt_ih6->src_address, IP_PROTOCOL_TCP);
Dave Barach68b0fb02017-02-28 15:15:56 -0500873 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
874 ASSERT (!bogus);
875 }
876
Florin Coras56b39f62018-03-27 17:29:32 -0700877 tcp_enqueue_to_ip_lookup_now (vm, b, bi, is_ip4, fib_index);
Florin Coras6534b7a2017-07-18 05:38:03 -0400878 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500879}
880
Florin Coras1f152cd2017-08-18 19:28:03 -0700881/**
882 * Build and set reset packet for connection
883 */
884void
885tcp_send_reset (tcp_connection_t * tc)
886{
887 vlib_main_t *vm = vlib_get_main ();
888 tcp_main_t *tm = vnet_get_tcp_main ();
889 vlib_buffer_t *b;
890 u32 bi;
891 tcp_header_t *th;
892 u16 tcp_hdr_opts_len, advertise_wnd, opts_write_len;
893 u8 flags;
894
895 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
896 return;
897 b = vlib_get_buffer (vm, bi);
898 tcp_init_buffer (vm, b);
899
900 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
901 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
902 advertise_wnd = tcp_window_to_advertise (tc, TCP_STATE_ESTABLISHED);
903 flags = TCP_FLAG_RST;
904 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
905 tc->rcv_nxt, tcp_hdr_opts_len, flags,
906 advertise_wnd);
907 opts_write_len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
908 ASSERT (opts_write_len == tc->snd_opts_len);
909 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Florin Corasf1762d62017-09-24 19:43:08 -0400910 if (tc->c_is_ip4)
911 {
912 ip4_header_t *ih4;
913 ih4 = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip.ip4,
914 &tc->c_rmt_ip.ip4, IP_PROTOCOL_TCP, 0);
915 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
916 }
917 else
918 {
919 int bogus = ~0;
920 ip6_header_t *ih6;
921 ih6 = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip.ip6,
922 &tc->c_rmt_ip.ip6, IP_PROTOCOL_TCP);
923 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
924 ASSERT (!bogus);
925 }
Florin Coras56b39f62018-03-27 17:29:32 -0700926 tcp_enqueue_to_ip_lookup_now (vm, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Corasf1762d62017-09-24 19:43:08 -0400927 TCP_EVT_DBG (TCP_EVT_RST_SENT, tc);
Florin Coras1f152cd2017-08-18 19:28:03 -0700928}
929
Dave Barach68b0fb02017-02-28 15:15:56 -0500930void
931tcp_push_ip_hdr (tcp_main_t * tm, tcp_connection_t * tc, vlib_buffer_t * b)
932{
933 tcp_header_t *th = vlib_buffer_get_current (b);
Dave Barach2c25a622017-06-26 11:35:07 -0400934 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500935 if (tc->c_is_ip4)
936 {
937 ip4_header_t *ih;
Dave Barach2c25a622017-06-26 11:35:07 -0400938 ih = vlib_buffer_push_ip4 (vm, b, &tc->c_lcl_ip4,
Florin Corasfdbc3822017-07-27 00:34:12 -0700939 &tc->c_rmt_ip4, IP_PROTOCOL_TCP, 1);
Dave Barach2c25a622017-06-26 11:35:07 -0400940 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih);
Dave Barach68b0fb02017-02-28 15:15:56 -0500941 }
942 else
943 {
944 ip6_header_t *ih;
945 int bogus = ~0;
946
Dave Barach2c25a622017-06-26 11:35:07 -0400947 ih = vlib_buffer_push_ip6 (vm, b, &tc->c_lcl_ip6,
Dave Barach68b0fb02017-02-28 15:15:56 -0500948 &tc->c_rmt_ip6, IP_PROTOCOL_TCP);
Dave Barach2c25a622017-06-26 11:35:07 -0400949 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih, &bogus);
Dave Barach68b0fb02017-02-28 15:15:56 -0500950 ASSERT (!bogus);
951 }
952}
953
954/**
955 * Send SYN
956 *
957 * Builds a SYN packet for a half-open connection and sends it to ipx_lookup.
958 * The packet is not forwarded through tcpx_output to avoid doing lookups
959 * in the half_open pool.
960 */
961void
962tcp_send_syn (tcp_connection_t * tc)
963{
964 vlib_buffer_t *b;
965 u32 bi;
966 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -0700967 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -0500968
Florin Corasf988e692017-11-27 04:34:14 -0500969 /*
970 * Setup retransmit and establish timers before requesting buffer
971 * such that we can return if we've ran out.
972 */
973 tcp_timer_set (tc, TCP_TIMER_ESTABLISH, TCP_ESTABLISH_TIME);
974 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN,
975 tc->rto * TCP_TO_TIMER_TICK);
976
Florin Coras66b11312017-07-31 17:18:03 -0700977 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
978 return;
979
Dave Barach68b0fb02017-02-28 15:15:56 -0500980 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -0700981 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400982 tcp_make_syn (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500983
984 /* Measure RTT with this */
985 tc->rtt_ts = tcp_time_now ();
986 tc->rtt_seq = tc->snd_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500987 tc->rto_boff = 0;
988
Dave Barach68b0fb02017-02-28 15:15:56 -0500989 tcp_push_ip_hdr (tm, tc, b);
Florin Coras56b39f62018-03-27 17:29:32 -0700990 tcp_enqueue_to_ip_lookup (vm, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Coras6534b7a2017-07-18 05:38:03 -0400991 TCP_EVT_DBG (TCP_EVT_SYN_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500992}
993
Florin Coras66b11312017-07-31 17:18:03 -0700994/**
995 * Flush tx frame populated by retransmits and timer pops
996 */
997void
998tcp_flush_frame_to_output (vlib_main_t * vm, u8 thread_index, u8 is_ip4)
999{
1000 if (tcp_main.tx_frames[!is_ip4][thread_index])
1001 {
1002 u32 next_index;
1003 next_index = is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
1004 vlib_put_frame_to_node (vm, next_index,
1005 tcp_main.tx_frames[!is_ip4][thread_index]);
1006 tcp_main.tx_frames[!is_ip4][thread_index] = 0;
1007 }
1008}
1009
1010/**
Florin Coras9d063042017-09-14 03:08:00 -04001011 * Flush ip lookup tx frames populated by timer pops
1012 */
1013always_inline void
1014tcp_flush_frame_to_ip_lookup (vlib_main_t * vm, u8 thread_index, u8 is_ip4)
1015{
1016 if (tcp_main.ip_lookup_tx_frames[!is_ip4][thread_index])
1017 {
1018 u32 next_index;
1019 next_index = is_ip4 ? ip4_lookup_node.index : ip6_lookup_node.index;
1020 vlib_put_frame_to_node (vm, next_index,
1021 tcp_main.ip_lookup_tx_frames[!is_ip4]
1022 [thread_index]);
1023 tcp_main.ip_lookup_tx_frames[!is_ip4][thread_index] = 0;
1024 }
1025}
1026
1027/**
1028 * Flush v4 and v6 tcp and ip-lookup tx frames for thread index
Florin Coras66b11312017-07-31 17:18:03 -07001029 */
1030void
1031tcp_flush_frames_to_output (u8 thread_index)
1032{
1033 vlib_main_t *vm = vlib_get_main ();
1034 tcp_flush_frame_to_output (vm, thread_index, 1);
1035 tcp_flush_frame_to_output (vm, thread_index, 0);
Florin Coras9d063042017-09-14 03:08:00 -04001036 tcp_flush_frame_to_ip_lookup (vm, thread_index, 1);
1037 tcp_flush_frame_to_ip_lookup (vm, thread_index, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001038}
1039
1040/**
1041 * Send FIN
1042 */
1043void
1044tcp_send_fin (tcp_connection_t * tc)
1045{
Dave Barach68b0fb02017-02-28 15:15:56 -05001046 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001047 vlib_main_t *vm = vlib_get_main ();
Florin Coras9d063042017-09-14 03:08:00 -04001048 vlib_buffer_t *b;
1049 u32 bi;
1050 u8 fin_snt = 0;
1051
Florin Corasf988e692017-11-27 04:34:14 -05001052 tcp_retransmit_timer_force_update (tc);
Florin Coras66b11312017-07-31 17:18:03 -07001053 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1054 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001055 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001056 tcp_init_buffer (vm, b);
Florin Coras9d063042017-09-14 03:08:00 -04001057 fin_snt = tc->flags & TCP_CONN_FINSNT;
1058 if (fin_snt)
1059 tc->snd_nxt = tc->snd_una;
Florin Corasd79b41e2017-03-04 05:37:52 -08001060 tcp_make_fin (tc, b);
Florin Coras66b11312017-07-31 17:18:03 -07001061 tcp_enqueue_to_output_now (vm, b, bi, tc->c_is_ip4);
Florin Coras9d063042017-09-14 03:08:00 -04001062 if (!fin_snt)
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001063 {
1064 tc->flags |= TCP_CONN_FINSNT;
1065 tc->flags &= ~TCP_CONN_FINPNDG;
Florin Coras9d063042017-09-14 03:08:00 -04001066 /* Account for the FIN */
1067 tc->snd_una_max += 1;
1068 tc->snd_nxt = tc->snd_una_max;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001069 }
Florin Corasa096f2d2017-09-28 23:49:42 -04001070 else
1071 {
1072 tc->snd_nxt = tc->snd_una_max;
1073 }
Florin Corase69f4952017-03-07 10:06:24 -08001074 TCP_EVT_DBG (TCP_EVT_FIN_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001075}
1076
1077always_inline u8
Florin Corasb2215d62017-08-01 16:56:58 -07001078tcp_make_state_flags (tcp_connection_t * tc, tcp_state_t next_state)
Dave Barach68b0fb02017-02-28 15:15:56 -05001079{
1080 switch (next_state)
1081 {
1082 case TCP_STATE_ESTABLISHED:
1083 return TCP_FLAG_ACK;
1084 case TCP_STATE_SYN_RCVD:
1085 return TCP_FLAG_SYN | TCP_FLAG_ACK;
1086 case TCP_STATE_SYN_SENT:
1087 return TCP_FLAG_SYN;
1088 case TCP_STATE_LAST_ACK:
1089 case TCP_STATE_FIN_WAIT_1:
Florin Corasb2215d62017-08-01 16:56:58 -07001090 if (tc->snd_nxt + 1 < tc->snd_una_max)
1091 return TCP_FLAG_ACK;
1092 else
1093 return TCP_FLAG_FIN;
Dave Barach68b0fb02017-02-28 15:15:56 -05001094 default:
1095 clib_warning ("Shouldn't be here!");
1096 }
1097 return 0;
1098}
1099
1100/**
1101 * Push TCP header and update connection variables
1102 */
1103static void
1104tcp_push_hdr_i (tcp_connection_t * tc, vlib_buffer_t * b,
Florin Corasc8343412017-05-04 14:25:50 -07001105 tcp_state_t next_state, u8 compute_opts)
Dave Barach68b0fb02017-02-28 15:15:56 -05001106{
1107 u32 advertise_wnd, data_len;
Florin Corasc8343412017-05-04 14:25:50 -07001108 u8 tcp_hdr_opts_len, opts_write_len, flags;
Dave Barach68b0fb02017-02-28 15:15:56 -05001109 tcp_header_t *th;
1110
Florin Corasf6d68ed2017-05-07 19:12:02 -07001111 data_len = b->current_length + b->total_length_not_including_first_buffer;
Florin Coras1f152cd2017-08-18 19:28:03 -07001112 ASSERT (!b->total_length_not_including_first_buffer
1113 || (b->flags & VLIB_BUFFER_NEXT_PRESENT));
Dave Barach68b0fb02017-02-28 15:15:56 -05001114 vnet_buffer (b)->tcp.flags = 0;
1115
Florin Corasc8343412017-05-04 14:25:50 -07001116 if (compute_opts)
1117 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1118
Florin Corasc8343412017-05-04 14:25:50 -07001119 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
Dave Barach68b0fb02017-02-28 15:15:56 -05001120 advertise_wnd = tcp_window_to_advertise (tc, next_state);
Florin Corasb2215d62017-08-01 16:56:58 -07001121 flags = tcp_make_state_flags (tc, next_state);
Dave Barach68b0fb02017-02-28 15:15:56 -05001122
1123 /* Push header and options */
1124 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
1125 tc->rcv_nxt, tcp_hdr_opts_len, flags,
1126 advertise_wnd);
Florin Corasc8343412017-05-04 14:25:50 -07001127 opts_write_len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
Dave Barach68b0fb02017-02-28 15:15:56 -05001128
Florin Corasc8343412017-05-04 14:25:50 -07001129 ASSERT (opts_write_len == tc->snd_opts_len);
Dave Barach68b0fb02017-02-28 15:15:56 -05001130 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
1131
Florin Coras93992a92017-05-24 18:03:56 -07001132 /*
1133 * Update connection variables
1134 */
1135
Dave Barach68b0fb02017-02-28 15:15:56 -05001136 tc->snd_nxt += data_len;
Florin Corasc28764f2017-04-26 00:08:42 -07001137 tc->rcv_las = tc->rcv_nxt;
Florin Coras3e350af2017-03-30 02:54:28 -07001138
Florin Coras6792ec02017-03-13 03:49:51 -07001139 /* TODO this is updated in output as well ... */
Florin Coras93992a92017-05-24 18:03:56 -07001140 if (seq_gt (tc->snd_nxt, tc->snd_una_max))
Florin Coras3af90fc2017-05-03 21:09:42 -07001141 {
Florin Coras93992a92017-05-24 18:03:56 -07001142 tc->snd_una_max = tc->snd_nxt;
1143 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
Florin Coras3af90fc2017-05-03 21:09:42 -07001144 }
Florin Coras93992a92017-05-24 18:03:56 -07001145
Florin Corase69f4952017-03-07 10:06:24 -08001146 TCP_EVT_DBG (TCP_EVT_PKTIZE, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001147}
1148
Dave Barach68b0fb02017-02-28 15:15:56 -05001149void
Florin Coras6792ec02017-03-13 03:49:51 -07001150tcp_send_ack (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001151{
1152 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001153 vlib_main_t *vm = vlib_get_main ();
1154
Dave Barach68b0fb02017-02-28 15:15:56 -05001155 vlib_buffer_t *b;
1156 u32 bi;
1157
Dave Barach68b0fb02017-02-28 15:15:56 -05001158 /* Get buffer */
Florin Coras66b11312017-07-31 17:18:03 -07001159 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1160 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001161 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001162 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001163
1164 /* Fill in the ACK */
1165 tcp_make_ack (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001166 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1167}
1168
Florin Corasb2215d62017-08-01 16:56:58 -07001169/**
1170 * Delayed ack timer handler
1171 *
1172 * Sends delayed ACK when timer expires
1173 */
Florin Coras6792ec02017-03-13 03:49:51 -07001174void
1175tcp_timer_delack_handler (u32 index)
1176{
Damjan Marion586afd72017-04-05 19:18:20 +02001177 u32 thread_index = vlib_get_thread_index ();
Florin Coras6792ec02017-03-13 03:49:51 -07001178 tcp_connection_t *tc;
1179
1180 tc = tcp_connection_get (index, thread_index);
1181 tc->timers[TCP_TIMER_DELACK] = TCP_TIMER_HANDLE_INVALID;
Florin Coras6792ec02017-03-13 03:49:51 -07001182 tcp_send_ack (tc);
1183}
1184
Florin Corasb2215d62017-08-01 16:56:58 -07001185/**
1186 * Build a retransmit segment
Dave Barach68b0fb02017-02-28 15:15:56 -05001187 *
1188 * @return the number of bytes in the segment or 0 if there's nothing to
1189 * retransmit
Florin Coras93992a92017-05-24 18:03:56 -07001190 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001191u32
Florin Corasb2215d62017-08-01 16:56:58 -07001192tcp_prepare_retransmit_segment (tcp_connection_t * tc, u32 offset,
1193 u32 max_deq_bytes, vlib_buffer_t ** b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001194{
Florin Corasb2215d62017-08-01 16:56:58 -07001195 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001196 vlib_main_t *vm = vlib_get_main ();
Florin Coras93992a92017-05-24 18:03:56 -07001197 int n_bytes = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001198 u32 start, bi, available_bytes, seg_size;
1199 u8 *data;
Dave Barach68b0fb02017-02-28 15:15:56 -05001200
Florin Corase04c2992017-03-01 08:17:34 -08001201 ASSERT (tc->state >= TCP_STATE_ESTABLISHED);
Florin Corasb2215d62017-08-01 16:56:58 -07001202 ASSERT (max_deq_bytes != 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001203
Florin Corasb2215d62017-08-01 16:56:58 -07001204 /*
1205 * Make sure we can retransmit something
1206 */
Florin Corasb2215d62017-08-01 16:56:58 -07001207 available_bytes = stream_session_tx_fifo_max_dequeue (&tc->connection);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001208 ASSERT (available_bytes >= offset);
Florin Coras1f152cd2017-08-18 19:28:03 -07001209 available_bytes -= offset;
Florin Corasb2215d62017-08-01 16:56:58 -07001210 if (!available_bytes)
1211 return 0;
Florin Corase87216f2017-08-17 16:59:22 -07001212 max_deq_bytes = clib_min (tc->snd_mss, max_deq_bytes);
Florin Corasb2215d62017-08-01 16:56:58 -07001213 max_deq_bytes = clib_min (available_bytes, max_deq_bytes);
Florin Coras6792ec02017-03-13 03:49:51 -07001214
1215 /* Start is beyond snd_congestion */
Florin Corase87216f2017-08-17 16:59:22 -07001216 start = tc->snd_una + offset;
Florin Coras93992a92017-05-24 18:03:56 -07001217 if (seq_geq (start, tc->snd_congestion))
Florin Coras1f152cd2017-08-18 19:28:03 -07001218 goto done;
Florin Coras6792ec02017-03-13 03:49:51 -07001219
Florin Corasb2215d62017-08-01 16:56:58 -07001220 /* Don't overshoot snd_congestion */
1221 if (seq_gt (start + max_deq_bytes, tc->snd_congestion))
1222 {
1223 max_deq_bytes = tc->snd_congestion - start;
1224 if (max_deq_bytes == 0)
Florin Coras1f152cd2017-08-18 19:28:03 -07001225 goto done;
Florin Corasb2215d62017-08-01 16:56:58 -07001226 }
1227
Florin Coras1f152cd2017-08-18 19:28:03 -07001228 seg_size = max_deq_bytes + MAX_HDRS_LEN;
1229
Florin Corasb2215d62017-08-01 16:56:58 -07001230 /*
1231 * Prepare options
1232 */
Florin Corasc8343412017-05-04 14:25:50 -07001233 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1234
Florin Corasb2215d62017-08-01 16:56:58 -07001235 /*
1236 * Allocate and fill in buffer(s)
1237 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001238
Florin Corasb2215d62017-08-01 16:56:58 -07001239 /* Easy case, buffer size greater than mss */
Florin Corase87216f2017-08-17 16:59:22 -07001240 if (PREDICT_TRUE (seg_size <= tm->bytes_per_buffer))
Florin Corasb2215d62017-08-01 16:56:58 -07001241 {
Florin Coras24793e32018-05-09 11:34:25 -07001242 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1243 return 0;
1244 *b = vlib_get_buffer (vm, bi);
1245 data = tcp_init_buffer (vm, *b);
Florin Corase87216f2017-08-17 16:59:22 -07001246 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1247 max_deq_bytes);
Florin Corasb2215d62017-08-01 16:56:58 -07001248 ASSERT (n_bytes == max_deq_bytes);
1249 b[0]->current_length = n_bytes;
1250 tcp_push_hdr_i (tc, *b, tc->state, 0);
1251 }
1252 /* Split mss into multiple buffers */
1253 else
1254 {
1255 u32 chain_bi = ~0, n_bufs_per_seg;
1256 u32 thread_index = vlib_get_thread_index ();
1257 u16 n_peeked, len_to_deq, available_bufs;
1258 vlib_buffer_t *chain_b, *prev_b;
Florin Corasb2215d62017-08-01 16:56:58 -07001259 int i;
1260
Florin Corasb2215d62017-08-01 16:56:58 -07001261 /* Make sure we have enough buffers */
Florin Coras24793e32018-05-09 11:34:25 -07001262 n_bufs_per_seg = ceil ((double) seg_size / tm->bytes_per_buffer);
Florin Corasb2215d62017-08-01 16:56:58 -07001263 available_bufs = vec_len (tm->tx_buffers[thread_index]);
1264 if (n_bufs_per_seg > available_bufs)
1265 {
Florin Coras24793e32018-05-09 11:34:25 -07001266 tcp_alloc_tx_buffers (tm, thread_index, &available_bufs,
1267 VLIB_FRAME_SIZE);
1268
1269 if (n_bufs_per_seg > available_bufs)
Florin Corasb2215d62017-08-01 16:56:58 -07001270 {
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001271 *b = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001272 return 0;
1273 }
1274 }
1275
Florin Coras24793e32018-05-09 11:34:25 -07001276 tcp_get_free_buffer_index (tm, &bi);
1277 ASSERT (bi != (u32) ~ 0);
1278 *b = vlib_get_buffer (vm, bi);
1279 data = tcp_init_buffer (vm, *b);
Florin Corase87216f2017-08-17 16:59:22 -07001280 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1281 tm->bytes_per_buffer -
1282 MAX_HDRS_LEN);
Florin Corasb2215d62017-08-01 16:56:58 -07001283 b[0]->current_length = n_bytes;
1284 b[0]->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
1285 b[0]->total_length_not_including_first_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001286 max_deq_bytes -= n_bytes;
1287
1288 chain_b = *b;
1289 for (i = 1; i < n_bufs_per_seg; i++)
1290 {
1291 prev_b = chain_b;
1292 len_to_deq = clib_min (max_deq_bytes, tm->bytes_per_buffer);
1293 tcp_get_free_buffer_index (tm, &chain_bi);
1294 ASSERT (chain_bi != (u32) ~ 0);
1295 chain_b = vlib_get_buffer (vm, chain_bi);
1296 chain_b->current_data = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001297 data = vlib_buffer_get_current (chain_b);
1298 n_peeked = stream_session_peek_bytes (&tc->connection, data,
Florin Coras1f152cd2017-08-18 19:28:03 -07001299 offset + n_bytes, len_to_deq);
Florin Corasb2215d62017-08-01 16:56:58 -07001300 ASSERT (n_peeked == len_to_deq);
Florin Coras1f152cd2017-08-18 19:28:03 -07001301 n_bytes += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001302 chain_b->current_length = n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001303 chain_b->next_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001304
1305 /* update previous buffer */
1306 prev_b->next_buffer = chain_bi;
1307 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
1308
Florin Corasb2215d62017-08-01 16:56:58 -07001309 max_deq_bytes -= n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001310 b[0]->total_length_not_including_first_buffer += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001311 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001312
1313 tcp_push_hdr_i (tc, *b, tc->state, 0);
Florin Corasb2215d62017-08-01 16:56:58 -07001314 }
1315
Florin Coras93992a92017-05-24 18:03:56 -07001316 ASSERT (n_bytes > 0);
Florin Corase87216f2017-08-17 16:59:22 -07001317 ASSERT (((*b)->current_data + (*b)->current_length) <=
1318 tm->bytes_per_buffer);
Florin Corasbb292f42017-05-19 09:49:19 -07001319
Florin Coras93992a92017-05-24 18:03:56 -07001320 if (tcp_in_fastrecovery (tc))
1321 tc->snd_rxt_bytes += n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001322
Florin Coras6792ec02017-03-13 03:49:51 -07001323done:
1324 TCP_EVT_DBG (TCP_EVT_CC_RTX, tc, offset, n_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001325 return n_bytes;
1326}
1327
Florin Coras6792ec02017-03-13 03:49:51 -07001328/**
1329 * Reset congestion control, switch cwnd to loss window and try again.
1330 */
1331static void
Florin Coras3e350af2017-03-30 02:54:28 -07001332tcp_rtx_timeout_cc (tcp_connection_t * tc)
Florin Coras6792ec02017-03-13 03:49:51 -07001333{
Florin Coras93992a92017-05-24 18:03:56 -07001334 tc->prev_ssthresh = tc->ssthresh;
1335 tc->prev_cwnd = tc->cwnd;
1336
Florin Coras6792ec02017-03-13 03:49:51 -07001337 /* Cleanly recover cc (also clears up fast retransmit) */
1338 if (tcp_in_fastrecovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001339 tcp_cc_fastrecovery_exit (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001340
1341 /* Start again from the beginning */
Florin Coras93992a92017-05-24 18:03:56 -07001342 tc->ssthresh = clib_max (tcp_flight_size (tc) / 2, 2 * tc->snd_mss);
Florin Coras6792ec02017-03-13 03:49:51 -07001343 tc->cwnd = tcp_loss_wnd (tc);
1344 tc->snd_congestion = tc->snd_una_max;
Florin Corasf1762d62017-09-24 19:43:08 -04001345 tc->rtt_ts = 0;
Florin Coras3af90fc2017-05-03 21:09:42 -07001346 tcp_recovery_on (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001347}
1348
Dave Barach68b0fb02017-02-28 15:15:56 -05001349static void
1350tcp_timer_retransmit_handler_i (u32 index, u8 is_syn)
1351{
1352 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras6792ec02017-03-13 03:49:51 -07001353 vlib_main_t *vm = vlib_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02001354 u32 thread_index = vlib_get_thread_index ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001355 tcp_connection_t *tc;
Florin Corasb2215d62017-08-01 16:56:58 -07001356 vlib_buffer_t *b = 0;
Florin Coras3af90fc2017-05-03 21:09:42 -07001357 u32 bi, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001358
1359 if (is_syn)
1360 {
1361 tc = tcp_half_open_connection_get (index);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001362 /* Note: the connection may have transitioned to ESTABLISHED... */
1363 if (PREDICT_FALSE (tc == 0))
1364 return;
Florin Coras68810622017-07-24 17:40:28 -07001365 tc->timers[TCP_TIMER_RETRANSMIT_SYN] = TCP_TIMER_HANDLE_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05001366 }
1367 else
1368 {
1369 tc = tcp_connection_get (index, thread_index);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001370 /* Note: the connection may have been closed and pool_put */
1371 if (PREDICT_FALSE (tc == 0))
1372 return;
Florin Coras68810622017-07-24 17:40:28 -07001373 tc->timers[TCP_TIMER_RETRANSMIT] = TCP_TIMER_HANDLE_INVALID;
Dave Barach68b0fb02017-02-28 15:15:56 -05001374 }
1375
Florin Corase04c2992017-03-01 08:17:34 -08001376 if (tc->state >= TCP_STATE_ESTABLISHED)
Dave Barach68b0fb02017-02-28 15:15:56 -05001377 {
Florin Coras93992a92017-05-24 18:03:56 -07001378 /* Lost FIN, retransmit and return */
Florin Coras93e65802017-11-29 00:07:11 -05001379 if (tcp_is_lost_fin (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001380 {
1381 tcp_send_fin (tc);
Florin Corasf988e692017-11-27 04:34:14 -05001382 tc->rto_boff += 1;
1383 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
Florin Coras93992a92017-05-24 18:03:56 -07001384 return;
1385 }
1386
Florin Corasa096f2d2017-09-28 23:49:42 -04001387 /* Shouldn't be here */
1388 if (tc->snd_una == tc->snd_una_max)
1389 {
1390 tcp_recovery_off (tc);
1391 return;
1392 }
1393
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001394 /* We're not in recovery so make sure rto_boff is 0 */
1395 if (!tcp_in_recovery (tc) && tc->rto_boff > 0)
1396 {
1397 tc->rto_boff = 0;
1398 tcp_update_rto (tc);
1399 }
1400
1401 /* Increment RTO backoff (also equal to number of retries) and go back
1402 * to first un-acked byte */
1403 tc->rto_boff += 1;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001404
Florin Coras6792ec02017-03-13 03:49:51 -07001405 /* First retransmit timeout */
1406 if (tc->rto_boff == 1)
Florin Coras3e350af2017-03-30 02:54:28 -07001407 tcp_rtx_timeout_cc (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001408
Florin Coras84275e92017-09-26 12:30:40 -04001409 tc->snd_nxt = tc->snd_una;
Dave Barach68b0fb02017-02-28 15:15:56 -05001410 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1411
Florin Coras6792ec02017-03-13 03:49:51 -07001412 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 1);
1413
Dave Barachb7f1faa2017-08-29 11:43:37 -04001414 /* Send one segment. Note that n_bytes may be zero due to buffer shortfall */
Florin Corasb2215d62017-08-01 16:56:58 -07001415 n_bytes = tcp_prepare_retransmit_segment (tc, 0, tc->snd_mss, &b);
Dave Barachb7f1faa2017-08-29 11:43:37 -04001416
Florin Coras93992a92017-05-24 18:03:56 -07001417 /* TODO be less aggressive about this */
Florin Coras3af90fc2017-05-03 21:09:42 -07001418 scoreboard_clear (&tc->sack_sb);
1419
1420 if (n_bytes == 0)
Florin Corase04c2992017-03-01 08:17:34 -08001421 {
Florin Corasbb292f42017-05-19 09:49:19 -07001422 tcp_retransmit_timer_set (tc);
Florin Corase04c2992017-03-01 08:17:34 -08001423 return;
1424 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001425
Dave Barachb7f1faa2017-08-29 11:43:37 -04001426 bi = vlib_get_buffer_index (vm, b);
1427
Florin Coras93992a92017-05-24 18:03:56 -07001428 /* For first retransmit, record timestamp (Eifel detection RFC3522) */
1429 if (tc->rto_boff == 1)
1430 tc->snd_rxt_ts = tcp_time_now ();
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001431
1432 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1433 tcp_retransmit_timer_update (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001434 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001435 /* Retransmit for SYN */
1436 else if (tc->state == TCP_STATE_SYN_SENT)
Florin Coras93992a92017-05-24 18:03:56 -07001437 {
Florin Coras68810622017-07-24 17:40:28 -07001438 /* Half-open connection actually moved to established but we were
1439 * waiting for syn retransmit to pop to call cleanup from the right
1440 * thread. */
1441 if (tc->flags & TCP_CONN_HALF_OPEN_DONE)
1442 {
Florin Coras68810622017-07-24 17:40:28 -07001443 if (tcp_half_open_connection_cleanup (tc))
1444 {
1445 clib_warning ("could not remove half-open connection");
1446 ASSERT (0);
1447 }
1448 return;
1449 }
1450
Dave Barach68b0fb02017-02-28 15:15:56 -05001451 /* Try without increasing RTO a number of times. If this fails,
1452 * start growing RTO exponentially */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001453 tc->rto_boff += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001454 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1455 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1456
Florin Corasf988e692017-11-27 04:34:14 -05001457 tcp_timer_update (tc, TCP_TIMER_RETRANSMIT_SYN,
1458 tc->rto * TCP_TO_TIMER_TICK);
1459
Florin Corasb2215d62017-08-01 16:56:58 -07001460 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001461 return;
1462
Florin Corasb2215d62017-08-01 16:56:58 -07001463 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001464 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001465 tcp_make_syn (tc, b);
Florin Corase04c2992017-03-01 08:17:34 -08001466
Dave Barach2c25a622017-06-26 11:35:07 -04001467 tc->rtt_ts = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001468 TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 0);
1469
1470 /* This goes straight to ipx_lookup. Retransmit timer set already */
1471 tcp_push_ip_hdr (tm, tc, b);
Florin Coras56b39f62018-03-27 17:29:32 -07001472 tcp_enqueue_to_ip_lookup (vm, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001473 }
1474 /* Retransmit SYN-ACK */
1475 else if (tc->state == TCP_STATE_SYN_RCVD)
1476 {
1477 tc->rto_boff += 1;
Florin Coras9d063042017-09-14 03:08:00 -04001478 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1479 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001480 tc->rtt_ts = 0;
1481
1482 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
Florin Corasf988e692017-11-27 04:34:14 -05001483 {
1484 tcp_retransmit_timer_force_update (tc);
1485 return;
1486 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001487
1488 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001489 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001490 tcp_make_synack (tc, b);
1491 TCP_EVT_DBG (TCP_EVT_SYN_RXT, tc, 1);
1492
1493 /* Retransmit timer already updated, just enqueue to output */
1494 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001495 }
Florin Coras93992a92017-05-24 18:03:56 -07001496 else
1497 {
1498 ASSERT (tc->state == TCP_STATE_CLOSED);
Florin Coras93992a92017-05-24 18:03:56 -07001499 return;
1500 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001501}
1502
1503void
1504tcp_timer_retransmit_handler (u32 index)
1505{
1506 tcp_timer_retransmit_handler_i (index, 0);
1507}
1508
1509void
1510tcp_timer_retransmit_syn_handler (u32 index)
1511{
1512 tcp_timer_retransmit_handler_i (index, 1);
1513}
1514
1515/**
Florin Coras3e350af2017-03-30 02:54:28 -07001516 * Got 0 snd_wnd from peer, try to do something about it.
1517 *
1518 */
1519void
1520tcp_timer_persist_handler (u32 index)
1521{
1522 tcp_main_t *tm = vnet_get_tcp_main ();
1523 vlib_main_t *vm = vlib_get_main ();
Damjan Marion586afd72017-04-05 19:18:20 +02001524 u32 thread_index = vlib_get_thread_index ();
Florin Coras3e350af2017-03-30 02:54:28 -07001525 tcp_connection_t *tc;
1526 vlib_buffer_t *b;
Florin Coras84275e92017-09-26 12:30:40 -04001527 u32 bi, max_snd_bytes, available_bytes, offset;
Florin Coras93992a92017-05-24 18:03:56 -07001528 int n_bytes = 0;
Florin Coras1f152cd2017-08-18 19:28:03 -07001529 u8 *data;
Florin Coras3e350af2017-03-30 02:54:28 -07001530
Florin Corasdb84e572017-05-09 18:54:52 -07001531 tc = tcp_connection_get_if_valid (index, thread_index);
1532
1533 if (!tc)
1534 return;
Florin Coras3e350af2017-03-30 02:54:28 -07001535
1536 /* Make sure timer handle is set to invalid */
1537 tc->timers[TCP_TIMER_PERSIST] = TCP_TIMER_HANDLE_INVALID;
1538
1539 /* Problem already solved or worse */
Florin Corasf03a59a2017-06-09 21:07:32 -07001540 if (tc->state == TCP_STATE_CLOSED || tc->state > TCP_STATE_ESTABLISHED
Florin Coras50958952017-08-29 14:50:13 -07001541 || tc->snd_wnd > tc->snd_mss || tcp_in_recovery (tc))
Florin Coras3e350af2017-03-30 02:54:28 -07001542 return;
1543
Florin Coras50958952017-08-29 14:50:13 -07001544 available_bytes = stream_session_tx_fifo_max_dequeue (&tc->connection);
1545 offset = tc->snd_una_max - tc->snd_una;
1546
1547 /* Reprogram persist if no new bytes available to send. We may have data
1548 * next time */
1549 if (!available_bytes)
1550 {
1551 tcp_persist_timer_set (tc);
1552 return;
1553 }
1554
1555 if (available_bytes <= offset)
1556 {
1557 ASSERT (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT));
1558 return;
1559 }
1560
Florin Coras3e350af2017-03-30 02:54:28 -07001561 /* Increment RTO backoff */
1562 tc->rto_boff += 1;
1563 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1564
Florin Corasb2215d62017-08-01 16:56:58 -07001565 /*
1566 * Try to force the first unsent segment (or buffer)
1567 */
Florin Coras66b11312017-07-31 17:18:03 -07001568 if (PREDICT_FALSE (tcp_get_free_buffer_index (tm, &bi)))
1569 return;
Florin Coras3e350af2017-03-30 02:54:28 -07001570 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001571 data = tcp_init_buffer (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001572
Florin Coras1f152cd2017-08-18 19:28:03 -07001573 tcp_validate_txf_size (tc, offset);
Florin Corasc8343412017-05-04 14:25:50 -07001574 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
Florin Coras1f152cd2017-08-18 19:28:03 -07001575 max_snd_bytes = clib_min (tc->snd_mss, tm->bytes_per_buffer - MAX_HDRS_LEN);
1576 n_bytes = stream_session_peek_bytes (&tc->connection, data, offset,
1577 max_snd_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001578 b->current_length = n_bytes;
Florin Coras84275e92017-09-26 12:30:40 -04001579 ASSERT (n_bytes != 0 && (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)
1580 || tc->snd_nxt == tc->snd_una_max
1581 || tc->rto_boff > 1));
Florin Coras93992a92017-05-24 18:03:56 -07001582
Florin Corasc8343412017-05-04 14:25:50 -07001583 tcp_push_hdr_i (tc, b, tc->state, 0);
Florin Coras3e350af2017-03-30 02:54:28 -07001584 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1585
Florin Coras1f152cd2017-08-18 19:28:03 -07001586 /* Just sent new data, enable retransmit */
1587 tcp_retransmit_timer_update (tc);
Florin Coras3e350af2017-03-30 02:54:28 -07001588}
1589
1590/**
Florin Coras6792ec02017-03-13 03:49:51 -07001591 * Retransmit first unacked segment
1592 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001593void
1594tcp_retransmit_first_unacked (tcp_connection_t * tc)
1595{
Florin Coras6792ec02017-03-13 03:49:51 -07001596 vlib_main_t *vm = vlib_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001597 vlib_buffer_t *b;
Florin Corasb2215d62017-08-01 16:56:58 -07001598 u32 bi, old_snd_nxt, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001599
Florin Coras93992a92017-05-24 18:03:56 -07001600 old_snd_nxt = tc->snd_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -05001601 tc->snd_nxt = tc->snd_una;
1602
Florin Coras6792ec02017-03-13 03:49:51 -07001603 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 2);
Florin Corasb2215d62017-08-01 16:56:58 -07001604 n_bytes = tcp_prepare_retransmit_segment (tc, 0, tc->snd_mss, &b);
1605 if (!n_bytes)
1606 return;
1607 bi = vlib_get_buffer_index (vm, b);
Florin Coras6792ec02017-03-13 03:49:51 -07001608 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras5921f982017-04-03 18:00:00 -07001609
Florin Coras93992a92017-05-24 18:03:56 -07001610 tc->snd_nxt = old_snd_nxt;
Florin Coras6792ec02017-03-13 03:49:51 -07001611}
1612
1613/**
Florin Coras93992a92017-05-24 18:03:56 -07001614 * Do fast retransmit with SACKs
Florin Coras6792ec02017-03-13 03:49:51 -07001615 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001616void
Florin Coras93992a92017-05-24 18:03:56 -07001617tcp_fast_retransmit_sack (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001618{
Florin Coras6792ec02017-03-13 03:49:51 -07001619 vlib_main_t *vm = vlib_get_main ();
Florin Coras1f152cd2017-08-18 19:28:03 -07001620 u32 n_written = 0, offset, max_bytes;
Florin Corasb2215d62017-08-01 16:56:58 -07001621 vlib_buffer_t *b = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001622 sack_scoreboard_hole_t *hole;
1623 sack_scoreboard_t *sb;
1624 u32 bi, old_snd_nxt;
1625 int snd_space;
1626 u8 snd_limited = 0, can_rescue = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001627
1628 ASSERT (tcp_in_fastrecovery (tc));
Florin Coras6792ec02017-03-13 03:49:51 -07001629 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001630
Florin Coras93992a92017-05-24 18:03:56 -07001631 old_snd_nxt = tc->snd_nxt;
1632 sb = &tc->sack_sb;
1633 snd_space = tcp_available_snd_space (tc);
1634
1635 hole = scoreboard_get_hole (sb, sb->cur_rxt_hole);
1636 while (hole && snd_space > 0)
1637 {
Florin Coras93992a92017-05-24 18:03:56 -07001638 hole = scoreboard_next_rxt_hole (sb, hole,
1639 tcp_fastrecovery_sent_1_smss (tc),
1640 &can_rescue, &snd_limited);
1641 if (!hole)
1642 {
1643 if (!can_rescue || !(seq_lt (sb->rescue_rxt, tc->snd_una)
1644 || seq_gt (sb->rescue_rxt,
1645 tc->snd_congestion)))
1646 break;
1647
1648 /* If rescue rxt undefined or less than snd_una then one segment of
1649 * up to SMSS octets that MUST include the highest outstanding
1650 * unSACKed sequence number SHOULD be returned, and RescueRxt set to
1651 * RecoveryPoint. HighRxt MUST NOT be updated.
1652 */
Florin Coras1f152cd2017-08-18 19:28:03 -07001653 max_bytes = clib_min (tc->snd_mss,
1654 tc->snd_congestion - tc->snd_una);
1655 max_bytes = clib_min (max_bytes, snd_space);
Florin Coras93992a92017-05-24 18:03:56 -07001656 offset = tc->snd_congestion - tc->snd_una - max_bytes;
1657 sb->rescue_rxt = tc->snd_congestion;
1658 tc->snd_nxt = tc->snd_una + offset;
Florin Corasb2215d62017-08-01 16:56:58 -07001659 n_written = tcp_prepare_retransmit_segment (tc, offset, max_bytes,
1660 &b);
Florin Coras24793e32018-05-09 11:34:25 -07001661 if (!n_written)
1662 goto done;
1663
Florin Corasb2215d62017-08-01 16:56:58 -07001664 bi = vlib_get_buffer_index (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001665 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
1666 break;
1667 }
1668
Florin Coras1f152cd2017-08-18 19:28:03 -07001669 max_bytes = clib_min (hole->end - sb->high_rxt, snd_space);
1670 max_bytes = snd_limited ? clib_min (max_bytes, tc->snd_mss) : max_bytes;
1671 if (max_bytes == 0)
1672 break;
Florin Coras93992a92017-05-24 18:03:56 -07001673 offset = sb->high_rxt - tc->snd_una;
Florin Coras1f152cd2017-08-18 19:28:03 -07001674 tc->snd_nxt = sb->high_rxt;
Florin Corasb2215d62017-08-01 16:56:58 -07001675 n_written = tcp_prepare_retransmit_segment (tc, offset, max_bytes, &b);
Florin Coras93992a92017-05-24 18:03:56 -07001676
1677 /* Nothing left to retransmit */
1678 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001679 break;
Florin Coras93992a92017-05-24 18:03:56 -07001680
Florin Corasb2215d62017-08-01 16:56:58 -07001681 bi = vlib_get_buffer_index (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001682 sb->high_rxt += n_written;
1683 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras1f152cd2017-08-18 19:28:03 -07001684 ASSERT (n_written <= snd_space);
Florin Coras93992a92017-05-24 18:03:56 -07001685 snd_space -= n_written;
1686 }
1687
Florin Coras24793e32018-05-09 11:34:25 -07001688done:
Florin Coras93992a92017-05-24 18:03:56 -07001689 /* If window allows, send 1 SMSS of new data */
1690 tc->snd_nxt = old_snd_nxt;
1691}
1692
1693/**
1694 * Fast retransmit without SACK info
1695 */
1696void
1697tcp_fast_retransmit_no_sack (tcp_connection_t * tc)
1698{
Florin Coras93992a92017-05-24 18:03:56 -07001699 vlib_main_t *vm = vlib_get_main ();
1700 u32 n_written = 0, offset = 0, bi, old_snd_nxt;
1701 int snd_space;
1702 vlib_buffer_t *b;
1703
1704 ASSERT (tcp_in_fastrecovery (tc));
1705 TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 0);
1706
1707 /* Start resending from first un-acked segment */
1708 old_snd_nxt = tc->snd_nxt;
1709 tc->snd_nxt = tc->snd_una;
1710 snd_space = tcp_available_snd_space (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001711
1712 while (snd_space > 0)
Dave Barach68b0fb02017-02-28 15:15:56 -05001713 {
Florin Coras93992a92017-05-24 18:03:56 -07001714 offset += n_written;
Florin Corasb2215d62017-08-01 16:56:58 -07001715 n_written = tcp_prepare_retransmit_segment (tc, offset, snd_space, &b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001716
1717 /* Nothing left to retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001718 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001719 break;
Dave Barach68b0fb02017-02-28 15:15:56 -05001720
Florin Corasb2215d62017-08-01 16:56:58 -07001721 bi = vlib_get_buffer_index (vm, b);
Florin Coras6792ec02017-03-13 03:49:51 -07001722 tcp_enqueue_to_output (vm, b, bi, tc->c_is_ip4);
Florin Coras6792ec02017-03-13 03:49:51 -07001723 snd_space -= n_written;
Dave Barach68b0fb02017-02-28 15:15:56 -05001724 }
1725
Florin Coras93992a92017-05-24 18:03:56 -07001726 /* Restore snd_nxt. If window allows, send 1 SMSS of new data */
1727 tc->snd_nxt = old_snd_nxt;
1728}
1729
1730/**
1731 * Do fast retransmit
1732 */
1733void
1734tcp_fast_retransmit (tcp_connection_t * tc)
1735{
1736 if (tcp_opts_sack_permitted (&tc->rcv_opts)
1737 && scoreboard_first_hole (&tc->sack_sb))
1738 tcp_fast_retransmit_sack (tc);
1739 else
1740 tcp_fast_retransmit_no_sack (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -05001741}
1742
1743always_inline u32
1744tcp_session_has_ooo_data (tcp_connection_t * tc)
1745{
Florin Corascea194d2017-10-02 00:18:51 -07001746 stream_session_t *s = session_get (tc->c_s_index, tc->c_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001747 return svm_fifo_has_ooo_data (s->server_rx_fifo);
1748}
1749
1750always_inline uword
1751tcp46_output_inline (vlib_main_t * vm,
1752 vlib_node_runtime_t * node,
1753 vlib_frame_t * from_frame, int is_ip4)
1754{
Dave Barach68b0fb02017-02-28 15:15:56 -05001755 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02001756 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05001757
1758 from = vlib_frame_vector_args (from_frame);
1759 n_left_from = from_frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05001760 next_index = node->cached_next_index;
Florin Coras82d3ec82017-08-14 08:10:42 -07001761 tcp_set_time_now (my_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001762
1763 while (n_left_from > 0)
1764 {
1765 u32 n_left_to_next;
1766
1767 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
1768
1769 while (n_left_from > 0 && n_left_to_next > 0)
1770 {
1771 u32 bi0;
1772 vlib_buffer_t *b0;
1773 tcp_connection_t *tc0;
Clement Durand6cf260c2017-04-13 13:27:04 +02001774 tcp_tx_trace_t *t0;
1775 tcp_header_t *th0 = 0;
Dave Barach2c25a622017-06-26 11:35:07 -04001776 u32 error0 = TCP_ERROR_PKTS_SENT, next0 = TCP_OUTPUT_NEXT_IP_LOOKUP;
Dave Barach68b0fb02017-02-28 15:15:56 -05001777
Florin Coras81a13db2018-03-16 08:48:31 -07001778 if (n_left_from > 1)
1779 {
1780 vlib_buffer_t *pb;
1781 pb = vlib_get_buffer (vm, from[1]);
1782 vlib_prefetch_buffer_header (pb, STORE);
1783 CLIB_PREFETCH (pb->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
1784 }
1785
Dave Barach68b0fb02017-02-28 15:15:56 -05001786 bi0 = from[0];
1787 to_next[0] = bi0;
1788 from += 1;
1789 to_next += 1;
1790 n_left_from -= 1;
1791 n_left_to_next -= 1;
1792
1793 b0 = vlib_get_buffer (vm, bi0);
1794 tc0 = tcp_connection_get (vnet_buffer (b0)->tcp.connection_index,
1795 my_thread_index);
Florin Corasd79b41e2017-03-04 05:37:52 -08001796 if (PREDICT_FALSE (tc0 == 0 || tc0->state == TCP_STATE_CLOSED))
1797 {
1798 error0 = TCP_ERROR_INVALID_CONNECTION;
1799 next0 = TCP_OUTPUT_NEXT_DROP;
1800 goto done;
1801 }
1802
Dave Barach68b0fb02017-02-28 15:15:56 -05001803 th0 = vlib_buffer_get_current (b0);
Florin Corase69f4952017-03-07 10:06:24 -08001804 TCP_EVT_DBG (TCP_EVT_OUTPUT, tc0, th0->flags, b0->current_length);
Dave Barach68b0fb02017-02-28 15:15:56 -05001805
1806 if (is_ip4)
1807 {
Florin Coras66b11312017-07-31 17:18:03 -07001808 vlib_buffer_push_ip4 (vm, b0, &tc0->c_lcl_ip4, &tc0->c_rmt_ip4,
1809 IP_PROTOCOL_TCP, 1);
1810 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
Dave Barach2c0a4f42017-06-29 09:30:15 -04001811 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
1812 th0->checksum = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001813 }
1814 else
1815 {
1816 ip6_header_t *ih0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001817 ih0 = vlib_buffer_push_ip6 (vm, b0, &tc0->c_lcl_ip6,
1818 &tc0->c_rmt_ip6, IP_PROTOCOL_TCP);
Florin Coras66b11312017-07-31 17:18:03 -07001819 b0->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
Dave Barach2c0a4f42017-06-29 09:30:15 -04001820 vnet_buffer (b0)->l3_hdr_offset = (u8 *) ih0 - b0->data;
1821 vnet_buffer (b0)->l4_hdr_offset = (u8 *) th0 - b0->data;
1822 th0->checksum = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001823 }
1824
1825 /* Filter out DUPACKs if there are no OOO segments left */
1826 if (PREDICT_FALSE
1827 (vnet_buffer (b0)->tcp.flags & TCP_BUF_FLAG_DUPACK))
1828 {
Florin Coras00cd22d2018-04-18 13:20:18 -07001829 /* N.B. Should not filter burst of dupacks. Two issues:
1830 * 1) dupacks open cwnd on remote peer when congested
1831 * 2) acks leaving should have the latest rcv_wnd since the
1832 * burst may have eaten up all of it, so only the old ones
1833 * could be filtered.
1834 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001835 if (!tcp_session_has_ooo_data (tc0))
1836 {
1837 error0 = TCP_ERROR_FILTERED_DUPACKS;
1838 next0 = TCP_OUTPUT_NEXT_DROP;
1839 goto done;
1840 }
1841 }
1842
Dave Barach68b0fb02017-02-28 15:15:56 -05001843 /* Stop DELACK timer and fix flags */
Florin Coras6792ec02017-03-13 03:49:51 -07001844 tc0->flags &= ~(TCP_CONN_SNDACK);
Florin Corasf03a59a2017-06-09 21:07:32 -07001845 tcp_timer_reset (tc0, TCP_TIMER_DELACK);
Dave Barach68b0fb02017-02-28 15:15:56 -05001846
1847 /* If not retransmitting
Florin Coras3af90fc2017-05-03 21:09:42 -07001848 * 1) update snd_una_max (SYN, SYNACK, FIN)
Dave Barach68b0fb02017-02-28 15:15:56 -05001849 * 2) If we're not tracking an ACK, start tracking */
1850 if (seq_lt (tc0->snd_una_max, tc0->snd_nxt))
1851 {
1852 tc0->snd_una_max = tc0->snd_nxt;
1853 if (tc0->rtt_ts == 0)
1854 {
1855 tc0->rtt_ts = tcp_time_now ();
1856 tc0->rtt_seq = tc0->snd_nxt;
1857 }
1858 }
1859
1860 /* Set the retransmit timer if not set already and not
1861 * doing a pure ACK */
1862 if (!tcp_timer_is_active (tc0, TCP_TIMER_RETRANSMIT)
1863 && tc0->snd_nxt != tc0->snd_una)
1864 {
Florin Corasd79b41e2017-03-04 05:37:52 -08001865 tcp_retransmit_timer_set (tc0);
Dave Barach68b0fb02017-02-28 15:15:56 -05001866 tc0->rto_boff = 0;
1867 }
1868
Dave Barach2c25a622017-06-26 11:35:07 -04001869#if 0
Florin Corasf6359c82017-06-19 12:26:09 -04001870 /* Make sure we haven't lost route to our peer */
1871 if (PREDICT_FALSE (tc0->last_fib_check
1872 < tc0->snd_opts.tsval + TCP_FIB_RECHECK_PERIOD))
1873 {
1874 if (PREDICT_TRUE
1875 (tc0->c_rmt_fei == tcp_lookup_rmt_in_fib (tc0)))
1876 {
1877 tc0->last_fib_check = tc0->snd_opts.tsval;
1878 }
1879 else
1880 {
1881 clib_warning ("lost connection to peer");
1882 tcp_connection_reset (tc0);
1883 goto done;
1884 }
1885 }
1886
1887 /* Use pre-computed dpo to set next node */
1888 next0 = tc0->c_rmt_dpo.dpoi_next_node;
1889 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = tc0->c_rmt_dpo.dpoi_index;
Dave Barach2c25a622017-06-26 11:35:07 -04001890#endif
1891
1892 vnet_buffer (b0)->sw_if_index[VLIB_RX] = 0;
Florin Coras56b39f62018-03-27 17:29:32 -07001893 vnet_buffer (b0)->sw_if_index[VLIB_TX] = tc0->c_fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05001894
Damjan Marion213b5aa2017-07-13 21:19:27 +02001895 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05001896 done:
Florin Corase69f4952017-03-07 10:06:24 -08001897 b0->error = node->errors[error0];
Dave Barach68b0fb02017-02-28 15:15:56 -05001898 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
1899 {
Clement Durand6cf260c2017-04-13 13:27:04 +02001900 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
1901 if (th0)
1902 {
1903 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
1904 }
1905 else
1906 {
1907 memset (&t0->tcp_header, 0, sizeof (t0->tcp_header));
1908 }
1909 clib_memcpy (&t0->tcp_connection, tc0,
1910 sizeof (t0->tcp_connection));
Dave Barach68b0fb02017-02-28 15:15:56 -05001911 }
1912
1913 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
1914 n_left_to_next, bi0, next0);
1915 }
1916
1917 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
1918 }
1919
1920 return from_frame->n_vectors;
1921}
1922
1923static uword
1924tcp4_output (vlib_main_t * vm, vlib_node_runtime_t * node,
1925 vlib_frame_t * from_frame)
1926{
1927 return tcp46_output_inline (vm, node, from_frame, 1 /* is_ip4 */ );
1928}
1929
1930static uword
1931tcp6_output (vlib_main_t * vm, vlib_node_runtime_t * node,
1932 vlib_frame_t * from_frame)
1933{
1934 return tcp46_output_inline (vm, node, from_frame, 0 /* is_ip4 */ );
1935}
1936
Florin Corase69f4952017-03-07 10:06:24 -08001937/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001938VLIB_REGISTER_NODE (tcp4_output_node) =
1939{
1940 .function = tcp4_output,.name = "tcp4-output",
1941 /* Takes a vector of packets. */
Florin Corase69f4952017-03-07 10:06:24 -08001942 .vector_size = sizeof (u32),
1943 .n_errors = TCP_N_ERROR,
1944 .error_strings = tcp_error_strings,
1945 .n_next_nodes = TCP_OUTPUT_N_NEXT,
1946 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05001947#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
1948 foreach_tcp4_output_next
1949#undef _
Florin Corase69f4952017-03-07 10:06:24 -08001950 },
1951 .format_buffer = format_tcp_header,
1952 .format_trace = format_tcp_tx_trace,
1953};
1954/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001955
Florin Corase69f4952017-03-07 10:06:24 -08001956VLIB_NODE_FUNCTION_MULTIARCH (tcp4_output_node, tcp4_output);
1957
1958/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001959VLIB_REGISTER_NODE (tcp6_output_node) =
1960{
Florin Corase69f4952017-03-07 10:06:24 -08001961 .function = tcp6_output,
1962 .name = "tcp6-output",
Dave Barach68b0fb02017-02-28 15:15:56 -05001963 /* Takes a vector of packets. */
Florin Corase69f4952017-03-07 10:06:24 -08001964 .vector_size = sizeof (u32),
1965 .n_errors = TCP_N_ERROR,
1966 .error_strings = tcp_error_strings,
1967 .n_next_nodes = TCP_OUTPUT_N_NEXT,
1968 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05001969#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
1970 foreach_tcp6_output_next
1971#undef _
Florin Corase69f4952017-03-07 10:06:24 -08001972 },
1973 .format_buffer = format_tcp_header,
1974 .format_trace = format_tcp_tx_trace,
1975};
1976/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001977
Florin Corase69f4952017-03-07 10:06:24 -08001978VLIB_NODE_FUNCTION_MULTIARCH (tcp6_output_node, tcp6_output);
1979
1980u32
Dave Barach68b0fb02017-02-28 15:15:56 -05001981tcp_push_header (transport_connection_t * tconn, vlib_buffer_t * b)
1982{
1983 tcp_connection_t *tc;
1984
1985 tc = (tcp_connection_t *) tconn;
Florin Corasc8343412017-05-04 14:25:50 -07001986 tcp_push_hdr_i (tc, b, TCP_STATE_ESTABLISHED, 0);
Florin Coras1f152cd2017-08-18 19:28:03 -07001987 ASSERT (seq_leq (tc->snd_una_max, tc->snd_una + tc->snd_wnd));
Florin Coras93992a92017-05-24 18:03:56 -07001988
Florin Corasf03a59a2017-06-09 21:07:32 -07001989 if (tc->rtt_ts == 0 && !tcp_in_cong_recovery (tc))
Florin Coras93992a92017-05-24 18:03:56 -07001990 {
1991 tc->rtt_ts = tcp_time_now ();
1992 tc->rtt_seq = tc->snd_nxt;
1993 }
Steven5c42f502018-02-01 09:17:17 -08001994 tcp_trajectory_add_start (b, 3);
Dave Barach68b0fb02017-02-28 15:15:56 -05001995 return 0;
1996}
1997
1998typedef enum _tcp_reset_next
1999{
2000 TCP_RESET_NEXT_DROP,
2001 TCP_RESET_NEXT_IP_LOOKUP,
2002 TCP_RESET_N_NEXT
2003} tcp_reset_next_t;
2004
2005#define foreach_tcp4_reset_next \
2006 _(DROP, "error-drop") \
2007 _(IP_LOOKUP, "ip4-lookup")
2008
2009#define foreach_tcp6_reset_next \
2010 _(DROP, "error-drop") \
2011 _(IP_LOOKUP, "ip6-lookup")
2012
2013static uword
2014tcp46_send_reset_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2015 vlib_frame_t * from_frame, u8 is_ip4)
2016{
2017 u32 n_left_from, next_index, *from, *to_next;
Damjan Marion586afd72017-04-05 19:18:20 +02002018 u32 my_thread_index = vm->thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05002019
2020 from = vlib_frame_vector_args (from_frame);
2021 n_left_from = from_frame->n_vectors;
2022
2023 next_index = node->cached_next_index;
2024
2025 while (n_left_from > 0)
2026 {
2027 u32 n_left_to_next;
2028
2029 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2030
2031 while (n_left_from > 0 && n_left_to_next > 0)
2032 {
2033 u32 bi0;
2034 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002035 tcp_tx_trace_t *t0;
2036 tcp_header_t *th0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002037 u32 error0 = TCP_ERROR_RST_SENT, next0 = TCP_RESET_NEXT_IP_LOOKUP;
2038
2039 bi0 = from[0];
2040 to_next[0] = bi0;
2041 from += 1;
2042 to_next += 1;
2043 n_left_from -= 1;
2044 n_left_to_next -= 1;
2045
2046 b0 = vlib_get_buffer (vm, bi0);
2047
2048 if (tcp_make_reset_in_place (vm, b0, vnet_buffer (b0)->tcp.flags,
2049 my_thread_index, is_ip4))
2050 {
2051 error0 = TCP_ERROR_LOOKUP_DROPS;
2052 next0 = TCP_RESET_NEXT_DROP;
2053 goto done;
2054 }
2055
2056 /* Prepare to send to IP lookup */
Florin Corasf988e692017-11-27 04:34:14 -05002057 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002058 next0 = TCP_RESET_NEXT_IP_LOOKUP;
2059
2060 done:
Florin Corase69f4952017-03-07 10:06:24 -08002061 b0->error = node->errors[error0];
Damjan Marion213b5aa2017-07-13 21:19:27 +02002062 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002063 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2064 {
Clement Durand6cf260c2017-04-13 13:27:04 +02002065 th0 = vlib_buffer_get_current (b0);
2066 if (is_ip4)
2067 th0 = ip4_next_header ((ip4_header_t *) th0);
2068 else
2069 th0 = ip6_next_header ((ip6_header_t *) th0);
Clement Durand6cf260c2017-04-13 13:27:04 +02002070 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
2071 clib_memcpy (&t0->tcp_header, th0, sizeof (t0->tcp_header));
Dave Barach68b0fb02017-02-28 15:15:56 -05002072 }
2073
2074 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2075 n_left_to_next, bi0, next0);
2076 }
2077 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2078 }
2079 return from_frame->n_vectors;
2080}
2081
2082static uword
2083tcp4_send_reset (vlib_main_t * vm, vlib_node_runtime_t * node,
2084 vlib_frame_t * from_frame)
2085{
2086 return tcp46_send_reset_inline (vm, node, from_frame, 1);
2087}
2088
2089static uword
2090tcp6_send_reset (vlib_main_t * vm, vlib_node_runtime_t * node,
2091 vlib_frame_t * from_frame)
2092{
2093 return tcp46_send_reset_inline (vm, node, from_frame, 0);
2094}
2095
2096/* *INDENT-OFF* */
2097VLIB_REGISTER_NODE (tcp4_reset_node) = {
2098 .function = tcp4_send_reset,
2099 .name = "tcp4-reset",
2100 .vector_size = sizeof (u32),
2101 .n_errors = TCP_N_ERROR,
2102 .error_strings = tcp_error_strings,
2103 .n_next_nodes = TCP_RESET_N_NEXT,
2104 .next_nodes = {
2105#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2106 foreach_tcp4_reset_next
2107#undef _
2108 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002109 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002110};
2111/* *INDENT-ON* */
2112
Florin Corase69f4952017-03-07 10:06:24 -08002113VLIB_NODE_FUNCTION_MULTIARCH (tcp4_reset_node, tcp4_send_reset);
2114
Dave Barach68b0fb02017-02-28 15:15:56 -05002115/* *INDENT-OFF* */
2116VLIB_REGISTER_NODE (tcp6_reset_node) = {
2117 .function = tcp6_send_reset,
2118 .name = "tcp6-reset",
2119 .vector_size = sizeof (u32),
2120 .n_errors = TCP_N_ERROR,
2121 .error_strings = tcp_error_strings,
2122 .n_next_nodes = TCP_RESET_N_NEXT,
2123 .next_nodes = {
2124#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2125 foreach_tcp6_reset_next
2126#undef _
2127 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002128 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002129};
2130/* *INDENT-ON* */
2131
Florin Corase69f4952017-03-07 10:06:24 -08002132VLIB_NODE_FUNCTION_MULTIARCH (tcp6_reset_node, tcp6_send_reset);
2133
Dave Barach68b0fb02017-02-28 15:15:56 -05002134/*
2135 * fd.io coding-style-patch-verification: ON
2136 *
2137 * Local Variables:
2138 * eval: (c-set-style "gnu")
2139 * End:
2140 */