blob: 3b1bbacbbe68c2bc9a7b46f33d67a8f5f458c4d2 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Coras222e1f412019-02-16 20:47:32 -08002 * Copyright (c) 2016-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * 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>
Florin Coras999840c2020-03-18 20:31:34 +000017#include <vnet/tcp/tcp_inlines.h>
Florin Corasb2215d62017-08-01 16:56:58 -070018#include <math.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050019
Dave Barach2c25a622017-06-26 11:35:07 -040020typedef enum _tcp_output_next
Dave Barach68b0fb02017-02-28 15:15:56 -050021{
22 TCP_OUTPUT_NEXT_DROP,
Dave Barach2c25a622017-06-26 11:35:07 -040023 TCP_OUTPUT_NEXT_IP_LOOKUP,
Florin Corasf9d05682018-04-26 08:26:52 -070024 TCP_OUTPUT_NEXT_IP_REWRITE,
25 TCP_OUTPUT_NEXT_IP_ARP,
Dave Barach68b0fb02017-02-28 15:15:56 -050026 TCP_OUTPUT_N_NEXT
27} tcp_output_next_t;
28
29#define foreach_tcp4_output_next \
30 _ (DROP, "error-drop") \
Florin Corasf9d05682018-04-26 08:26:52 -070031 _ (IP_LOOKUP, "ip4-lookup") \
32 _ (IP_REWRITE, "ip4-rewrite") \
33 _ (IP_ARP, "ip4-arp")
Dave Barach68b0fb02017-02-28 15:15:56 -050034
35#define foreach_tcp6_output_next \
36 _ (DROP, "error-drop") \
Florin Corasf9d05682018-04-26 08:26:52 -070037 _ (IP_LOOKUP, "ip6-lookup") \
38 _ (IP_REWRITE, "ip6-rewrite") \
39 _ (IP_ARP, "ip6-discover-neighbor")
Dave Barach68b0fb02017-02-28 15:15:56 -050040
41static char *tcp_error_strings[] = {
42#define tcp_error(n,s) s,
43#include <vnet/tcp/tcp_error.def>
44#undef tcp_error
45};
46
47typedef struct
48{
Clement Durand6cf260c2017-04-13 13:27:04 +020049 tcp_header_t tcp_header;
50 tcp_connection_t tcp_connection;
Dave Barach68b0fb02017-02-28 15:15:56 -050051} tcp_tx_trace_t;
52
Filip Tehlare275bed2019-03-06 00:06:56 -080053static u8 *
Dave Barach68b0fb02017-02-28 15:15:56 -050054format_tcp_tx_trace (u8 * s, va_list * args)
55{
56 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
57 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Clement Durand6cf260c2017-04-13 13:27:04 +020058 tcp_tx_trace_t *t = va_arg (*args, tcp_tx_trace_t *);
Florin Coras30928f82020-01-27 19:21:28 -080059 tcp_connection_t *tc = &t->tcp_connection;
Christophe Fontained3c008d2017-10-02 18:10:54 +020060 u32 indent = format_get_indent (s);
Dave Barach68b0fb02017-02-28 15:15:56 -050061
Florin Coras30928f82020-01-27 19:21:28 -080062 s = format (s, "%U state %U\n%U%U", format_tcp_connection_id, tc,
63 format_tcp_state, tc->state, format_white_space, indent,
64 format_tcp_header, &t->tcp_header, 128);
Dave Barach68b0fb02017-02-28 15:15:56 -050065
66 return s;
67}
68
Filip Tehlare275bed2019-03-06 00:06:56 -080069#ifndef CLIB_MARCH_VARIANT
Dave Barach68b0fb02017-02-28 15:15:56 -050070static u8
Florin Coras4eeeaaf2017-09-05 14:03:37 -040071tcp_window_compute_scale (u32 window)
Dave Barach68b0fb02017-02-28 15:15:56 -050072{
73 u8 wnd_scale = 0;
Florin Coras4eeeaaf2017-09-05 14:03:37 -040074 while (wnd_scale < TCP_MAX_WND_SCALE && (window >> wnd_scale) > TCP_WND_MAX)
Dave Barach68b0fb02017-02-28 15:15:56 -050075 wnd_scale++;
76 return wnd_scale;
77}
78
79/**
Florin Coras6534b7a2017-07-18 05:38:03 -040080 * TCP's initial window
Florin Corase04c2992017-03-01 08:17:34 -080081 */
82always_inline u32
83tcp_initial_wnd_unscaled (tcp_connection_t * tc)
84{
Florin Coras6534b7a2017-07-18 05:38:03 -040085 /* RFC 6928 recommends the value lower. However at the time our connections
86 * are initialized, fifos may not be allocated. Therefore, advertise the
87 * smallest possible unscaled window size and update once fifos are
88 * assigned to the session.
89 */
90 /*
91 tcp_update_rcv_mss (tc);
92 TCP_IW_N_SEGMENTS * tc->mss;
93 */
Florin Coras9094b5c2019-08-12 14:17:47 -070094 return tcp_cfg.min_rx_fifo;
Florin Corase04c2992017-03-01 08:17:34 -080095}
96
97/**
Dave Barach68b0fb02017-02-28 15:15:56 -050098 * Compute initial window and scale factor. As per RFC1323, window field in
99 * SYN and SYN-ACK segments is never scaled.
100 */
101u32
102tcp_initial_window_to_advertise (tcp_connection_t * tc)
103{
Florin Corase80b5912018-12-12 19:25:43 -0800104 /* Compute rcv wscale only if peer advertised support for it */
105 if (tc->state != TCP_STATE_SYN_RCVD || tcp_opts_wscale (&tc->rcv_opts))
Florin Coras9094b5c2019-08-12 14:17:47 -0700106 tc->rcv_wscale = tcp_window_compute_scale (tcp_cfg.max_rx_fifo);
Florin Corase80b5912018-12-12 19:25:43 -0800107
Florin Corase04c2992017-03-01 08:17:34 -0800108 tc->rcv_wnd = tcp_initial_wnd_unscaled (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500109
110 return clib_min (tc->rcv_wnd, TCP_WND_MAX);
111}
112
Florin Corasf20fd1a2019-03-28 13:21:19 -0700113static inline void
Florin Coras6792ec02017-03-13 03:49:51 -0700114tcp_update_rcv_wnd (tcp_connection_t * tc)
115{
Florin Corasf20fd1a2019-03-28 13:21:19 -0700116 u32 available_space, wnd;
Florin Coras6792ec02017-03-13 03:49:51 -0700117 i32 observed_wnd;
Florin Corasf20fd1a2019-03-28 13:21:19 -0700118
Florin Corase04c2992017-03-01 08:17:34 -0800119 /*
120 * Figure out how much space we have available
121 */
Florin Corasd2aab832018-05-22 11:39:59 -0700122 available_space = transport_max_rx_enqueue (&tc->connection);
Ryujiro Shibuyacc108562020-06-24 08:36:14 +0100123
124 /* Make sure we have a multiple of 1 << rcv_wscale. We round down to
125 * avoid advertising a window larger than what can be buffered */
126 available_space = round_down_pow2 (available_space, 1 << tc->rcv_wscale);
127
Florin Corasf20fd1a2019-03-28 13:21:19 -0700128 if (PREDICT_FALSE (available_space < tc->rcv_opts.mss))
Florin Coras182d2192019-07-24 10:27:20 -0700129 {
130 tc->rcv_wnd = 0;
131 return;
132 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500133
Florin Corase04c2992017-03-01 08:17:34 -0800134 /*
135 * Use the above and what we know about what we've previously advertised
136 * to compute the new window
137 */
Florin Coras6792ec02017-03-13 03:49:51 -0700138 observed_wnd = (i32) tc->rcv_wnd - (tc->rcv_nxt - tc->rcv_las);
Florin Corase04c2992017-03-01 08:17:34 -0800139
140 /* Bad. Thou shalt not shrink */
Florin Corasf20fd1a2019-03-28 13:21:19 -0700141 if (PREDICT_FALSE ((i32) available_space < observed_wnd))
Florin Corase04c2992017-03-01 08:17:34 -0800142 {
Ryujiro Shibuyacc108562020-06-24 08:36:14 +0100143 wnd = round_pow2 (clib_max (observed_wnd, 0), 1 << tc->rcv_wscale);
Florin Corasa436a422019-08-20 07:09:31 -0700144 TCP_EVT (TCP_EVT_RCV_WND_SHRUNK, tc, observed_wnd, available_space);
Florin Corase04c2992017-03-01 08:17:34 -0800145 }
Florin Coras6792ec02017-03-13 03:49:51 -0700146 else
Florin Corase04c2992017-03-01 08:17:34 -0800147 {
Florin Coras6792ec02017-03-13 03:49:51 -0700148 wnd = available_space;
Florin Corase04c2992017-03-01 08:17:34 -0800149 }
150
Florin Coras6792ec02017-03-13 03:49:51 -0700151 tc->rcv_wnd = clib_min (wnd, TCP_WND_MAX << tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500152}
153
154/**
Florin Coras0dbd5172018-06-25 16:19:34 -0700155 * Compute and return window to advertise, scaled as per RFC1323
156 */
Florin Coras47596832019-03-12 18:58:54 -0700157static inline u32
Florin Coras0dbd5172018-06-25 16:19:34 -0700158tcp_window_to_advertise (tcp_connection_t * tc, tcp_state_t state)
159{
160 if (state < TCP_STATE_ESTABLISHED)
161 return tcp_initial_window_to_advertise (tc);
162
163 tcp_update_rcv_wnd (tc);
Florin Coras0dbd5172018-06-25 16:19:34 -0700164 return tc->rcv_wnd >> tc->rcv_wscale;
165}
166
Florin Coras0dbd5172018-06-25 16:19:34 -0700167static int
Florin Corascedcf602019-08-27 12:15:43 -0700168tcp_make_syn_options (tcp_connection_t * tc, tcp_options_t * opts)
Dave Barach68b0fb02017-02-28 15:15:56 -0500169{
170 u8 len = 0;
171
172 opts->flags |= TCP_OPTS_FLAG_MSS;
Florin Corascedcf602019-08-27 12:15:43 -0700173 opts->mss = tc->mss;
Dave Barach68b0fb02017-02-28 15:15:56 -0500174 len += TCP_OPTION_LEN_MSS;
175
176 opts->flags |= TCP_OPTS_FLAG_WSCALE;
Florin Corascedcf602019-08-27 12:15:43 -0700177 opts->wscale = tc->rcv_wscale;
Dave Barach68b0fb02017-02-28 15:15:56 -0500178 len += TCP_OPTION_LEN_WINDOW_SCALE;
179
180 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
181 opts->tsval = tcp_time_now ();
182 opts->tsecr = 0;
183 len += TCP_OPTION_LEN_TIMESTAMP;
184
Florin Coras93992a92017-05-24 18:03:56 -0700185 if (TCP_USE_SACKS)
186 {
187 opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
188 len += TCP_OPTION_LEN_SACK_PERMITTED;
189 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500190
191 /* Align to needed boundary */
192 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
193 return len;
194}
195
Florin Coras0dbd5172018-06-25 16:19:34 -0700196static int
Dave Barach68b0fb02017-02-28 15:15:56 -0500197tcp_make_synack_options (tcp_connection_t * tc, tcp_options_t * opts)
198{
199 u8 len = 0;
200
201 opts->flags |= TCP_OPTS_FLAG_MSS;
Florin Corasc8343412017-05-04 14:25:50 -0700202 opts->mss = tc->mss;
Dave Barach68b0fb02017-02-28 15:15:56 -0500203 len += TCP_OPTION_LEN_MSS;
204
Florin Coras93992a92017-05-24 18:03:56 -0700205 if (tcp_opts_wscale (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500206 {
207 opts->flags |= TCP_OPTS_FLAG_WSCALE;
208 opts->wscale = tc->rcv_wscale;
209 len += TCP_OPTION_LEN_WINDOW_SCALE;
210 }
211
Florin Coras93992a92017-05-24 18:03:56 -0700212 if (tcp_opts_tstamp (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500213 {
214 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
215 opts->tsval = tcp_time_now ();
216 opts->tsecr = tc->tsval_recent;
217 len += TCP_OPTION_LEN_TIMESTAMP;
218 }
219
Florin Coras93992a92017-05-24 18:03:56 -0700220 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500221 {
222 opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
223 len += TCP_OPTION_LEN_SACK_PERMITTED;
224 }
225
226 /* Align to needed boundary */
227 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
228 return len;
229}
230
Florin Coras0dbd5172018-06-25 16:19:34 -0700231static int
Dave Barach68b0fb02017-02-28 15:15:56 -0500232tcp_make_established_options (tcp_connection_t * tc, tcp_options_t * opts)
233{
234 u8 len = 0;
235
236 opts->flags = 0;
237
Florin Coras93992a92017-05-24 18:03:56 -0700238 if (tcp_opts_tstamp (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500239 {
240 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
Vladimir Kropylev1cfcb782019-07-02 11:25:26 +0300241 opts->tsval = tcp_tstamp (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500242 opts->tsecr = tc->tsval_recent;
243 len += TCP_OPTION_LEN_TIMESTAMP;
244 }
Florin Coras93992a92017-05-24 18:03:56 -0700245 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500246 {
247 if (vec_len (tc->snd_sacks))
248 {
249 opts->flags |= TCP_OPTS_FLAG_SACK;
Florin Corase5b17912019-02-21 16:46:24 -0800250 if (tc->snd_sack_pos >= vec_len (tc->snd_sacks))
251 tc->snd_sack_pos = 0;
252 opts->sacks = &tc->snd_sacks[tc->snd_sack_pos];
253 opts->n_sack_blocks = vec_len (tc->snd_sacks) - tc->snd_sack_pos;
254 opts->n_sack_blocks = clib_min (opts->n_sack_blocks,
Florin Corasc28764f2017-04-26 00:08:42 -0700255 TCP_OPTS_MAX_SACK_BLOCKS);
Florin Corase5b17912019-02-21 16:46:24 -0800256 tc->snd_sack_pos += opts->n_sack_blocks;
Dave Barach68b0fb02017-02-28 15:15:56 -0500257 len += 2 + TCP_OPTION_LEN_SACK_BLOCK * opts->n_sack_blocks;
258 }
259 }
260
261 /* Align to needed boundary */
262 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
263 return len;
264}
265
266always_inline int
267tcp_make_options (tcp_connection_t * tc, tcp_options_t * opts,
268 tcp_state_t state)
269{
270 switch (state)
271 {
272 case TCP_STATE_ESTABLISHED:
Florin Coras25579b42018-06-06 17:55:02 -0700273 case TCP_STATE_CLOSE_WAIT:
Florin Coras54ddf432018-12-21 13:54:09 -0800274 case TCP_STATE_FIN_WAIT_1:
275 case TCP_STATE_LAST_ACK:
276 case TCP_STATE_CLOSING:
277 case TCP_STATE_FIN_WAIT_2:
278 case TCP_STATE_TIME_WAIT:
279 case TCP_STATE_CLOSED:
Dave Barach68b0fb02017-02-28 15:15:56 -0500280 return tcp_make_established_options (tc, opts);
281 case TCP_STATE_SYN_RCVD:
282 return tcp_make_synack_options (tc, opts);
283 case TCP_STATE_SYN_SENT:
Florin Corascedcf602019-08-27 12:15:43 -0700284 return tcp_make_syn_options (tc, opts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500285 default:
Florin Coras371ca502018-02-21 12:07:41 -0800286 clib_warning ("State not handled! %d", state);
Dave Barach68b0fb02017-02-28 15:15:56 -0500287 return 0;
288 }
289}
290
Florin Corasc8343412017-05-04 14:25:50 -0700291/**
Florin Corasb26743d2018-06-26 09:31:04 -0700292 * Update burst send vars
293 *
294 * - Updates snd_mss to reflect the effective segment size that we can send
295 * by taking into account all TCP options, including SACKs.
296 * - Cache 'on the wire' options for reuse
297 * - Updates receive window which can be reused for a burst.
298 *
299 * This should *only* be called when doing bursts
Florin Corasc8343412017-05-04 14:25:50 -0700300 */
301void
Florin Corasb26743d2018-06-26 09:31:04 -0700302tcp_update_burst_snd_vars (tcp_connection_t * tc)
Florin Corasc8343412017-05-04 14:25:50 -0700303{
Florin Corasb26743d2018-06-26 09:31:04 -0700304 tcp_main_t *tm = &tcp_main;
305
Florin Corasc8343412017-05-04 14:25:50 -0700306 /* Compute options to be used for connection. These may be reused when
307 * sending data or to compute the effective mss (snd_mss) */
Florin Corasb26743d2018-06-26 09:31:04 -0700308 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts,
309 TCP_STATE_ESTABLISHED);
Florin Corasc8343412017-05-04 14:25:50 -0700310
311 /* XXX check if MTU has been updated */
Florin Coras93992a92017-05-24 18:03:56 -0700312 tc->snd_mss = clib_min (tc->mss, tc->rcv_opts.mss) - tc->snd_opts_len;
Florin Corasdb84e572017-05-09 18:54:52 -0700313 ASSERT (tc->snd_mss > 0);
Florin Corasb26743d2018-06-26 09:31:04 -0700314
315 tcp_options_write (tm->wrk_ctx[tc->c_thread_index].cached_opts,
316 &tc->snd_opts);
317
318 tcp_update_rcv_wnd (tc);
Florin Coras52814732019-06-12 15:38:19 -0700319
Florin Corasbbcfaac2019-10-10 13:52:04 -0700320 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
Florin Corasd6ae4bf2019-10-12 18:10:20 -0700321 tcp_bt_check_app_limited (tc);
Florin Corasca2831a2019-07-04 17:05:59 -0700322
323 if (tc->snd_una == tc->snd_nxt)
Florin Corasc31dc312019-10-06 14:06:14 -0700324 {
325 tcp_cc_event (tc, TCP_CC_EVT_START_TX);
Florin Coras11e9e352019-11-13 19:09:47 -0800326 tcp_connection_tx_pacer_reset (tc, tc->cwnd, TRANSPORT_PACER_MIN_BURST);
Florin Corasc31dc312019-10-06 14:06:14 -0700327 }
Florin Corasc8343412017-05-04 14:25:50 -0700328}
329
Filip Tehlare275bed2019-03-06 00:06:56 -0800330#endif /* CLIB_MARCH_VARIANT */
Florin Corasc8343412017-05-04 14:25:50 -0700331
Florin Coras0dbd5172018-06-25 16:19:34 -0700332static void *
Dave Barach68b0fb02017-02-28 15:15:56 -0500333tcp_reuse_buffer (vlib_main_t * vm, vlib_buffer_t * b)
334{
Florin Corasb2215d62017-08-01 16:56:58 -0700335 if (b->flags & VLIB_BUFFER_NEXT_PRESENT)
336 vlib_buffer_free_one (vm, b->next_buffer);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400337 /* Zero all flags but free list index and trace flag */
338 b->flags &= VLIB_BUFFER_NEXT_PRESENT - 1;
Florin Coras1f152cd2017-08-18 19:28:03 -0700339 b->current_data = 0;
340 b->current_length = 0;
341 b->total_length_not_including_first_buffer = 0;
342 vnet_buffer (b)->tcp.flags = 0;
Florin Corasb2215d62017-08-01 16:56:58 -0700343
Dave Barach68b0fb02017-02-28 15:15:56 -0500344 /* Leave enough space for headers */
Florin Coras1ee78302019-02-05 15:51:15 -0800345 return vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
Florin Coras1f152cd2017-08-18 19:28:03 -0700346}
347
Filip Tehlare275bed2019-03-06 00:06:56 -0800348#ifndef CLIB_MARCH_VARIANT
Florin Coras0dbd5172018-06-25 16:19:34 -0700349static void *
Florin Coras1f152cd2017-08-18 19:28:03 -0700350tcp_init_buffer (vlib_main_t * vm, vlib_buffer_t * b)
351{
352 ASSERT ((b->flags & VLIB_BUFFER_NEXT_PRESENT) == 0);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400353 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Florin Coras1f152cd2017-08-18 19:28:03 -0700354 b->total_length_not_including_first_buffer = 0;
Florin Coras24793e32018-05-09 11:34:25 -0700355 b->current_data = 0;
Florin Corasd79b41e2017-03-04 05:37:52 -0800356 vnet_buffer (b)->tcp.flags = 0;
Florin Corasf988e692017-11-27 04:34:14 -0500357 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b);
Florin Coras1f152cd2017-08-18 19:28:03 -0700358 /* Leave enough space for headers */
Florin Coras1ee78302019-02-05 15:51:15 -0800359 return vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
Dave Barach68b0fb02017-02-28 15:15:56 -0500360}
361
Srikanth A02833ff2019-10-02 17:48:58 -0700362
363/* Compute TCP checksum in software when offloading is disabled for a connection */
364u16
365ip6_tcp_compute_checksum_custom (vlib_main_t * vm, vlib_buffer_t * p0,
366 ip46_address_t * src, ip46_address_t * dst)
367{
368 ip_csum_t sum0;
369 u16 payload_length_host_byte_order;
370 u32 i;
371
372 /* Initialize checksum with ip header. */
373 sum0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, p0)) +
374 clib_host_to_net_u16 (IP_PROTOCOL_TCP);
375 payload_length_host_byte_order = vlib_buffer_length_in_chain (vm, p0);
376
377 for (i = 0; i < ARRAY_LEN (src->ip6.as_uword); i++)
378 {
379 sum0 = ip_csum_with_carry
380 (sum0, clib_mem_unaligned (&src->ip6.as_uword[i], uword));
381 sum0 = ip_csum_with_carry
382 (sum0, clib_mem_unaligned (&dst->ip6.as_uword[i], uword));
383 }
384
385 return ip_calculate_l4_checksum (vm, p0, sum0,
386 payload_length_host_byte_order, NULL, 0,
387 NULL);
388}
389
390u16
391ip4_tcp_compute_checksum_custom (vlib_main_t * vm, vlib_buffer_t * p0,
392 ip46_address_t * src, ip46_address_t * dst)
393{
394 ip_csum_t sum0;
395 u32 payload_length_host_byte_order;
396
397 payload_length_host_byte_order = vlib_buffer_length_in_chain (vm, p0);
398 sum0 =
399 clib_host_to_net_u32 (payload_length_host_byte_order +
400 (IP_PROTOCOL_TCP << 16));
401
402 sum0 = ip_csum_with_carry (sum0, clib_mem_unaligned (&src->ip4, u32));
403 sum0 = ip_csum_with_carry (sum0, clib_mem_unaligned (&dst->ip4, u32));
404
405 return ip_calculate_l4_checksum (vm, p0, sum0,
406 payload_length_host_byte_order, NULL, 0,
407 NULL);
408}
409
410static inline u16
411tcp_compute_checksum (tcp_connection_t * tc, vlib_buffer_t * b)
412{
413 u16 checksum = 0;
Florin Corasbbcfaac2019-10-10 13:52:04 -0700414 if (PREDICT_FALSE (tc->cfg_flags & TCP_CFG_F_NO_CSUM_OFFLOAD))
Srikanth A02833ff2019-10-02 17:48:58 -0700415 {
416 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
417 vlib_main_t *vm = wrk->vm;
418
419 if (tc->c_is_ip4)
420 checksum = ip4_tcp_compute_checksum_custom
421 (vm, b, &tc->c_lcl_ip, &tc->c_rmt_ip);
422 else
423 checksum = ip6_tcp_compute_checksum_custom
424 (vm, b, &tc->c_lcl_ip, &tc->c_rmt_ip);
425 }
426 else
427 {
428 b->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
429 }
430 return checksum;
431}
432
Dave Barach68b0fb02017-02-28 15:15:56 -0500433/**
434 * Prepare ACK
435 */
Florin Corasbdf7fd62019-01-31 17:31:01 -0800436static inline void
Dave Barach68b0fb02017-02-28 15:15:56 -0500437tcp_make_ack_i (tcp_connection_t * tc, vlib_buffer_t * b, tcp_state_t state,
438 u8 flags)
439{
440 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
441 u8 tcp_opts_len, tcp_hdr_opts_len;
442 tcp_header_t *th;
443 u16 wnd;
444
445 wnd = tcp_window_to_advertise (tc, state);
446
447 /* Make and write options */
448 tcp_opts_len = tcp_make_established_options (tc, snd_opts);
449 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
450
451 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
452 tc->rcv_nxt, tcp_hdr_opts_len, flags, wnd);
453
454 tcp_options_write ((u8 *) (th + 1), snd_opts);
Srikanth A02833ff2019-10-02 17:48:58 -0700455
456 th->checksum = tcp_compute_checksum (tc, b);
457
Dave Barach68b0fb02017-02-28 15:15:56 -0500458 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Vladimir Kropylev398afbd2019-06-25 00:06:52 +0300459
460 if (wnd == 0)
461 tcp_zero_rwnd_sent_on (tc);
462 else
463 tcp_zero_rwnd_sent_off (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500464}
465
466/**
467 * Convert buffer to ACK
468 */
Florin Corasbdf7fd62019-01-31 17:31:01 -0800469static inline void
Dave Barach68b0fb02017-02-28 15:15:56 -0500470tcp_make_ack (tcp_connection_t * tc, vlib_buffer_t * b)
471{
Dave Barach68b0fb02017-02-28 15:15:56 -0500472 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, TCP_FLAG_ACK);
Florin Corasa436a422019-08-20 07:09:31 -0700473 TCP_EVT (TCP_EVT_ACK_SENT, tc);
Florin Coras3e350af2017-03-30 02:54:28 -0700474 tc->rcv_las = tc->rcv_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500475}
476
477/**
478 * Convert buffer to FIN-ACK
479 */
Florin Coras999840c2020-03-18 20:31:34 +0000480static void
Florin Corasd79b41e2017-03-04 05:37:52 -0800481tcp_make_fin (tcp_connection_t * tc, vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500482{
Florin Corasbdf7fd62019-01-31 17:31:01 -0800483 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400484}
Dave Barach68b0fb02017-02-28 15:15:56 -0500485
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400486/**
487 * Convert buffer to SYN
488 */
489void
490tcp_make_syn (tcp_connection_t * tc, vlib_buffer_t * b)
491{
492 u8 tcp_hdr_opts_len, tcp_opts_len;
493 tcp_header_t *th;
494 u16 initial_wnd;
495 tcp_options_t snd_opts;
496
497 initial_wnd = tcp_initial_window_to_advertise (tc);
498
499 /* Make and write options */
Dave Barachb7b92992018-10-17 10:38:51 -0400500 clib_memset (&snd_opts, 0, sizeof (snd_opts));
Florin Corascedcf602019-08-27 12:15:43 -0700501 tcp_opts_len = tcp_make_syn_options (tc, &snd_opts);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400502 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
503
504 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
505 tc->rcv_nxt, tcp_hdr_opts_len, TCP_FLAG_SYN,
506 initial_wnd);
507 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
508 tcp_options_write ((u8 *) (th + 1), &snd_opts);
Srikanth A02833ff2019-10-02 17:48:58 -0700509 th->checksum = tcp_compute_checksum (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500510}
511
512/**
513 * Convert buffer to SYN-ACK
514 */
Florin Coras999840c2020-03-18 20:31:34 +0000515static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500516tcp_make_synack (tcp_connection_t * tc, vlib_buffer_t * b)
517{
Dave Barach68b0fb02017-02-28 15:15:56 -0500518 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
519 u8 tcp_opts_len, tcp_hdr_opts_len;
520 tcp_header_t *th;
521 u16 initial_wnd;
Dave Barach68b0fb02017-02-28 15:15:56 -0500522
Dave Barachb7b92992018-10-17 10:38:51 -0400523 clib_memset (snd_opts, 0, sizeof (*snd_opts));
Dave Barach68b0fb02017-02-28 15:15:56 -0500524 initial_wnd = tcp_initial_window_to_advertise (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500525 tcp_opts_len = tcp_make_synack_options (tc, snd_opts);
526 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
527
528 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
529 tc->rcv_nxt, tcp_hdr_opts_len,
530 TCP_FLAG_SYN | TCP_FLAG_ACK, initial_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -0500531 tcp_options_write ((u8 *) (th + 1), snd_opts);
532
533 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Srikanth A02833ff2019-10-02 17:48:58 -0700534 th->checksum = tcp_compute_checksum (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500535}
536
Florin Coras5484daa2020-03-27 23:55:06 +0000537static void
538tcp_enqueue_to_ip_lookup (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi,
539 u8 is_ip4, u32 fib_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500540{
Florin Coras5484daa2020-03-27 23:55:06 +0000541 tcp_main_t *tm = &tcp_main;
Florin Corasbe72ae62018-11-01 11:23:03 -0700542 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500543
Damjan Marion213b5aa2017-07-13 21:19:27 +0200544 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500545 b->error = 0;
546
Florin Coras56b39f62018-03-27 17:29:32 -0700547 vnet_buffer (b)->sw_if_index[VLIB_TX] = fib_index;
548 vnet_buffer (b)->sw_if_index[VLIB_RX] = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500549
Florin Corasf988e692017-11-27 04:34:14 -0500550 tcp_trajectory_add_start (b, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500551
Florin Coras5484daa2020-03-27 23:55:06 +0000552 session_add_pending_tx_buffer (vm->thread_index, bi,
553 tm->ipl_next_node[!is_ip4]);
Florin Coras9d063042017-09-14 03:08:00 -0400554
Florin Coras5484daa2020-03-27 23:55:06 +0000555 if (vm->thread_index == 0 && vlib_num_workers ())
556 session_queue_run_on_main_thread (wrk->vm);
Dave Barach68b0fb02017-02-28 15:15:56 -0500557}
558
Florin Coras0dbd5172018-06-25 16:19:34 -0700559static void
Florin Corasbe72ae62018-11-01 11:23:03 -0700560tcp_enqueue_to_output (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi,
561 u8 is_ip4)
Florin Coras1f152cd2017-08-18 19:28:03 -0700562{
Florin Coras2a7ea2e2019-10-16 22:06:08 -0700563 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
564 b->error = 0;
565
Florin Coras5484daa2020-03-27 23:55:06 +0000566 session_add_pending_tx_buffer (wrk->vm->thread_index, bi,
567 wrk->tco_next_node[!is_ip4]);
Florin Coras1f152cd2017-08-18 19:28:03 -0700568}
569
Filip Tehlare275bed2019-03-06 00:06:56 -0800570#endif /* CLIB_MARCH_VARIANT */
Florin Coras1f152cd2017-08-18 19:28:03 -0700571
Florin Coras0dbd5172018-06-25 16:19:34 -0700572static int
Florin Coras360336f2020-02-13 18:46:18 +0000573tcp_make_reset_in_place (vlib_main_t * vm, vlib_buffer_t * b, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500574{
Dave Barach68b0fb02017-02-28 15:15:56 -0500575 ip4_header_t *ih4;
576 ip6_header_t *ih6;
Florin Coras360336f2020-02-13 18:46:18 +0000577 tcp_header_t *th;
578 ip4_address_t src_ip4, dst_ip4;
579 ip6_address_t src_ip6, dst_ip6;
Florin Corasdc629cd2017-05-09 00:52:37 -0700580 u16 src_port, dst_port;
Florin Coras360336f2020-02-13 18:46:18 +0000581 u32 tmp, len, seq, ack;
Florin Corasdc629cd2017-05-09 00:52:37 -0700582 u8 flags;
Dave Barach68b0fb02017-02-28 15:15:56 -0500583
584 /* Find IP and TCP headers */
Florin Coras360336f2020-02-13 18:46:18 +0000585 th = tcp_buffer_hdr (b);
Florin Corasdc629cd2017-05-09 00:52:37 -0700586
587 /* Save src and dst ip */
Dave Barach68b0fb02017-02-28 15:15:56 -0500588 if (is_ip4)
589 {
Florin Coras360336f2020-02-13 18:46:18 +0000590 ih4 = vlib_buffer_get_current (b);
Florin Corasdc629cd2017-05-09 00:52:37 -0700591 ASSERT ((ih4->ip_version_and_header_length & 0xF0) == 0x40);
Florin Coras360336f2020-02-13 18:46:18 +0000592 src_ip4.as_u32 = ih4->src_address.as_u32;
593 dst_ip4.as_u32 = ih4->dst_address.as_u32;
Dave Barach68b0fb02017-02-28 15:15:56 -0500594 }
595 else
596 {
Florin Coras360336f2020-02-13 18:46:18 +0000597 ih6 = vlib_buffer_get_current (b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500598 ASSERT ((ih6->ip_version_traffic_class_and_flow_label & 0xF0) == 0x60);
Florin Coras360336f2020-02-13 18:46:18 +0000599 clib_memcpy_fast (&src_ip6, &ih6->src_address, sizeof (ip6_address_t));
600 clib_memcpy_fast (&dst_ip6, &ih6->dst_address, sizeof (ip6_address_t));
Dave Barach68b0fb02017-02-28 15:15:56 -0500601 }
602
Florin Coras360336f2020-02-13 18:46:18 +0000603 src_port = th->src_port;
604 dst_port = th->dst_port;
605 flags = TCP_FLAG_RST;
Florin Corasdc629cd2017-05-09 00:52:37 -0700606
Florin Coras360336f2020-02-13 18:46:18 +0000607 /*
608 * RFC 793. If the ACK bit is off, sequence number zero is used,
609 * <SEQ=0><ACK=SEG.SEQ+SEG.LEN><CTL=RST,ACK>
610 * If the ACK bit is on,
611 * <SEQ=SEG.ACK><CTL=RST>
612 */
613 if (tcp_ack (th))
Dave Barach68b0fb02017-02-28 15:15:56 -0500614 {
Florin Coras360336f2020-02-13 18:46:18 +0000615 seq = th->ack_number;
Florin Corasdc629cd2017-05-09 00:52:37 -0700616 ack = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500617 }
Florin Coras360336f2020-02-13 18:46:18 +0000618 else
619 {
620 flags |= TCP_FLAG_ACK;
621 tmp = clib_net_to_host_u32 (th->seq_number);
622 len = vnet_buffer (b)->tcp.data_len + tcp_is_syn (th) + tcp_is_fin (th);
623 ack = clib_host_to_net_u32 (tmp + len);
624 seq = 0;
625 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500626
Florin Coras360336f2020-02-13 18:46:18 +0000627 tcp_reuse_buffer (vm, b);
628 tcp_trajectory_add_start (b, 4);
629 th = vlib_buffer_push_tcp_net_order (b, dst_port, src_port, seq, ack,
630 sizeof (tcp_header_t), flags, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500631
Dave Barach68b0fb02017-02-28 15:15:56 -0500632 if (is_ip4)
633 {
Florin Coras360336f2020-02-13 18:46:18 +0000634 ih4 = vlib_buffer_push_ip4 (vm, b, &dst_ip4, &src_ip4,
Florin Corasfdbc3822017-07-27 00:34:12 -0700635 IP_PROTOCOL_TCP, 1);
Florin Coras360336f2020-02-13 18:46:18 +0000636 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
Dave Barach68b0fb02017-02-28 15:15:56 -0500637 }
638 else
639 {
640 int bogus = ~0;
Florin Coras360336f2020-02-13 18:46:18 +0000641 ih6 = vlib_buffer_push_ip6 (vm, b, &dst_ip6, &src_ip6, IP_PROTOCOL_TCP);
642 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
Dave Barach68b0fb02017-02-28 15:15:56 -0500643 ASSERT (!bogus);
644 }
645
646 return 0;
647}
648
Filip Tehlare275bed2019-03-06 00:06:56 -0800649#ifndef CLIB_MARCH_VARIANT
Dave Barach68b0fb02017-02-28 15:15:56 -0500650/**
651 * Send reset without reusing existing buffer
Florin Coras1f152cd2017-08-18 19:28:03 -0700652 *
653 * It extracts connection info out of original packet
Dave Barach68b0fb02017-02-28 15:15:56 -0500654 */
655void
Florin Corasd4c49be2019-02-07 00:15:53 -0800656tcp_send_reset_w_pkt (tcp_connection_t * tc, vlib_buffer_t * pkt,
657 u32 thread_index, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500658{
Florin Corasd4c49be2019-02-07 00:15:53 -0800659 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Corasbe72ae62018-11-01 11:23:03 -0700660 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500661 vlib_buffer_t *b;
Florin Coras56b39f62018-03-27 17:29:32 -0700662 u32 bi, sw_if_index, fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500663 u8 tcp_hdr_len, flags = 0;
664 tcp_header_t *th, *pkt_th;
665 u32 seq, ack;
666 ip4_header_t *ih4, *pkt_ih4;
667 ip6_header_t *ih6, *pkt_ih6;
Florin Coras56b39f62018-03-27 17:29:32 -0700668 fib_protocol_t fib_proto;
Dave Barach68b0fb02017-02-28 15:15:56 -0500669
Florin Corasbdf7fd62019-01-31 17:31:01 -0800670 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Corasd4712a82020-05-22 21:51:30 +0000671 {
672 tcp_worker_stats_inc (wrk, no_buffer, 1);
673 return;
674 }
Florin Coras66b11312017-07-31 17:18:03 -0700675
Dave Barach68b0fb02017-02-28 15:15:56 -0500676 b = vlib_get_buffer (vm, bi);
Florin Coras56b39f62018-03-27 17:29:32 -0700677 sw_if_index = vnet_buffer (pkt)->sw_if_index[VLIB_RX];
678 fib_proto = is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
679 fib_index = fib_table_get_index_for_sw_if_index (fib_proto, sw_if_index);
Florin Coras1f152cd2017-08-18 19:28:03 -0700680 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500681
682 /* Make and write options */
683 tcp_hdr_len = sizeof (tcp_header_t);
684
685 if (is_ip4)
686 {
687 pkt_ih4 = vlib_buffer_get_current (pkt);
688 pkt_th = ip4_next_header (pkt_ih4);
689 }
690 else
691 {
692 pkt_ih6 = vlib_buffer_get_current (pkt);
693 pkt_th = ip6_next_header (pkt_ih6);
694 }
695
696 if (tcp_ack (pkt_th))
697 {
698 flags = TCP_FLAG_RST;
699 seq = pkt_th->ack_number;
Florin Coras776f3d82018-11-02 08:23:58 -0700700 ack = (tc->state >= TCP_STATE_SYN_RCVD) ? tc->rcv_nxt : 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500701 }
702 else
703 {
704 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
705 seq = 0;
706 ack = clib_host_to_net_u32 (vnet_buffer (pkt)->tcp.seq_end);
707 }
708
709 th = vlib_buffer_push_tcp_net_order (b, pkt_th->dst_port, pkt_th->src_port,
710 seq, ack, tcp_hdr_len, flags, 0);
711
712 /* Swap src and dst ip */
713 if (is_ip4)
714 {
715 ASSERT ((pkt_ih4->ip_version_and_header_length & 0xF0) == 0x40);
716 ih4 = vlib_buffer_push_ip4 (vm, b, &pkt_ih4->dst_address,
Srikanth A02833ff2019-10-02 17:48:58 -0700717 &pkt_ih4->src_address, IP_PROTOCOL_TCP,
Florin Corasbbcfaac2019-10-10 13:52:04 -0700718 tcp_csum_offload (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -0500719 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
720 }
721 else
722 {
723 int bogus = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500724 ASSERT ((pkt_ih6->ip_version_traffic_class_and_flow_label & 0xF0) ==
725 0x60);
Tarun Gupta2089c692019-11-04 16:35:59 -0800726 ih6 = vlib_buffer_push_ip6_custom (vm, b, &pkt_ih6->dst_address,
727 &pkt_ih6->src_address,
728 IP_PROTOCOL_TCP,
729 tc->ipv6_flow_label);
Dave Barach68b0fb02017-02-28 15:15:56 -0500730 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
731 ASSERT (!bogus);
732 }
733
Florin Coras5484daa2020-03-27 23:55:06 +0000734 tcp_enqueue_to_ip_lookup (wrk, b, bi, is_ip4, fib_index);
Florin Corasa436a422019-08-20 07:09:31 -0700735 TCP_EVT (TCP_EVT_RST_SENT, tc);
Florin Coras1f421012019-07-26 10:18:51 -0700736 vlib_node_increment_counter (vm, tcp_node_index (output, tc->c_is_ip4),
737 TCP_ERROR_RST_SENT, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500738}
739
Florin Coras1f152cd2017-08-18 19:28:03 -0700740/**
741 * Build and set reset packet for connection
742 */
743void
744tcp_send_reset (tcp_connection_t * tc)
745{
Florin Corasbe72ae62018-11-01 11:23:03 -0700746 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
747 vlib_main_t *vm = wrk->vm;
Florin Coras1f152cd2017-08-18 19:28:03 -0700748 vlib_buffer_t *b;
749 u32 bi;
750 tcp_header_t *th;
751 u16 tcp_hdr_opts_len, advertise_wnd, opts_write_len;
752 u8 flags;
753
Florin Corasbdf7fd62019-01-31 17:31:01 -0800754 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Corasd4712a82020-05-22 21:51:30 +0000755 {
756 tcp_worker_stats_inc (wrk, no_buffer, 1);
757 return;
758 }
Florin Coras1f152cd2017-08-18 19:28:03 -0700759 b = vlib_get_buffer (vm, bi);
760 tcp_init_buffer (vm, b);
761
762 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
763 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
Florin Coras4e783b92020-03-23 23:24:19 +0000764 advertise_wnd = tc->rcv_wnd >> tc->rcv_wscale;
Florin Coras1f152cd2017-08-18 19:28:03 -0700765 flags = TCP_FLAG_RST;
766 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
767 tc->rcv_nxt, tcp_hdr_opts_len, flags,
768 advertise_wnd);
769 opts_write_len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
Srikanth A02833ff2019-10-02 17:48:58 -0700770 th->checksum = tcp_compute_checksum (tc, b);
Florin Coras1f152cd2017-08-18 19:28:03 -0700771 ASSERT (opts_write_len == tc->snd_opts_len);
772 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Florin Corasdf36f492019-08-18 18:09:28 -0700773 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Corasa436a422019-08-20 07:09:31 -0700774 TCP_EVT (TCP_EVT_RST_SENT, tc);
Florin Coras1f421012019-07-26 10:18:51 -0700775 vlib_node_increment_counter (vm, tcp_node_index (output, tc->c_is_ip4),
776 TCP_ERROR_RST_SENT, 1);
Florin Coras1f152cd2017-08-18 19:28:03 -0700777}
778
Florin Coras0dbd5172018-06-25 16:19:34 -0700779static void
Florin Corasbe72ae62018-11-01 11:23:03 -0700780tcp_push_ip_hdr (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
781 vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500782{
Dave Barach68b0fb02017-02-28 15:15:56 -0500783 if (tc->c_is_ip4)
784 {
Florin Corasf4ce6ba2019-11-20 18:34:58 -0800785 vlib_buffer_push_ip4 (wrk->vm, b, &tc->c_lcl_ip4, &tc->c_rmt_ip4,
786 IP_PROTOCOL_TCP, tcp_csum_offload (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -0500787 }
788 else
789 {
Florin Corasf4ce6ba2019-11-20 18:34:58 -0800790 vlib_buffer_push_ip6_custom (wrk->vm, b, &tc->c_lcl_ip6, &tc->c_rmt_ip6,
791 IP_PROTOCOL_TCP, tc->ipv6_flow_label);
Dave Barach68b0fb02017-02-28 15:15:56 -0500792 }
793}
794
795/**
796 * Send SYN
797 *
798 * Builds a SYN packet for a half-open connection and sends it to ipx_lookup.
799 * The packet is not forwarded through tcpx_output to avoid doing lookups
800 * in the half_open pool.
801 */
802void
803tcp_send_syn (tcp_connection_t * tc)
804{
Florin Corasbe72ae62018-11-01 11:23:03 -0700805 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
806 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500807 vlib_buffer_t *b;
808 u32 bi;
Dave Barach68b0fb02017-02-28 15:15:56 -0500809
Florin Corasf988e692017-11-27 04:34:14 -0500810 /*
811 * Setup retransmit and establish timers before requesting buffer
812 * such that we can return if we've ran out.
813 */
Florin Coras0765d972020-03-18 21:26:41 +0000814 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT_SYN,
Florin Corasf988e692017-11-27 04:34:14 -0500815 tc->rto * TCP_TO_TIMER_TICK);
816
Florin Corasbdf7fd62019-01-31 17:31:01 -0800817 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coras222e1f412019-02-16 20:47:32 -0800818 {
Florin Coras0765d972020-03-18 21:26:41 +0000819 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT_SYN, 1);
Florin Corasd4712a82020-05-22 21:51:30 +0000820 tcp_worker_stats_inc (wrk, no_buffer, 1);
Florin Coras222e1f412019-02-16 20:47:32 -0800821 return;
822 }
Florin Coras66b11312017-07-31 17:18:03 -0700823
Dave Barach68b0fb02017-02-28 15:15:56 -0500824 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -0700825 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400826 tcp_make_syn (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500827
828 /* Measure RTT with this */
Florin Corasefefc6b2018-11-07 12:49:19 -0800829 tc->rtt_ts = tcp_time_now_us (vlib_num_workers ()? 1 : 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500830 tc->rtt_seq = tc->snd_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500831 tc->rto_boff = 0;
832
Florin Corasbe72ae62018-11-01 11:23:03 -0700833 tcp_push_ip_hdr (wrk, tc, b);
834 tcp_enqueue_to_ip_lookup (wrk, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Corasa436a422019-08-20 07:09:31 -0700835 TCP_EVT (TCP_EVT_SYN_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500836}
837
Florin Coras7ac053b2018-11-05 15:57:21 -0800838void
839tcp_send_synack (tcp_connection_t * tc)
840{
841 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
842 vlib_main_t *vm = wrk->vm;
843 vlib_buffer_t *b;
844 u32 bi;
845
Florin Coras0765d972020-03-18 21:26:41 +0000846 tcp_retransmit_timer_force_update (&wrk->timer_wheel, tc);
Florin Coras222e1f412019-02-16 20:47:32 -0800847
Florin Corasbdf7fd62019-01-31 17:31:01 -0800848 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coras222e1f412019-02-16 20:47:32 -0800849 {
Florin Coras0765d972020-03-18 21:26:41 +0000850 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT, 1);
Florin Corasd4712a82020-05-22 21:51:30 +0000851 tcp_worker_stats_inc (wrk, no_buffer, 1);
Florin Coras222e1f412019-02-16 20:47:32 -0800852 return;
853 }
Florin Coras7ac053b2018-11-05 15:57:21 -0800854
Florin Corasdf084782018-12-06 17:41:10 -0800855 tc->rtt_ts = tcp_time_now_us (tc->c_thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -0800856 b = vlib_get_buffer (vm, bi);
Florin Corasbdf7fd62019-01-31 17:31:01 -0800857 tcp_init_buffer (vm, b);
Florin Coras7ac053b2018-11-05 15:57:21 -0800858 tcp_make_synack (tc, b);
859 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Corasa436a422019-08-20 07:09:31 -0700860 TCP_EVT (TCP_EVT_SYNACK_SENT, tc);
Florin Coras7ac053b2018-11-05 15:57:21 -0800861}
862
Florin Coras66b11312017-07-31 17:18:03 -0700863/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500864 * Send FIN
865 */
866void
867tcp_send_fin (tcp_connection_t * tc)
868{
Florin Corasbe72ae62018-11-01 11:23:03 -0700869 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
870 vlib_main_t *vm = wrk->vm;
Florin Coras9d063042017-09-14 03:08:00 -0400871 vlib_buffer_t *b;
872 u32 bi;
873 u8 fin_snt = 0;
874
Florin Corasc977e7c2018-10-16 20:30:31 -0700875 fin_snt = tc->flags & TCP_CONN_FINSNT;
876 if (fin_snt)
Florin Coras47596832019-03-12 18:58:54 -0700877 tc->snd_nxt -= 1;
Florin Corasc977e7c2018-10-16 20:30:31 -0700878
Florin Corasbdf7fd62019-01-31 17:31:01 -0800879 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coraseb97e5f2018-10-15 21:35:42 -0700880 {
881 /* Out of buffers so program fin retransmit ASAP */
Florin Coras0765d972020-03-18 21:26:41 +0000882 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT, 1);
Florin Coras85a3ddd2018-12-24 16:54:34 -0800883 if (fin_snt)
Florin Coras47596832019-03-12 18:58:54 -0700884 tc->snd_nxt += 1;
Florin Coras222e1f412019-02-16 20:47:32 -0800885 else
886 /* Make sure retransmit retries a fin not data */
887 tc->flags |= TCP_CONN_FINSNT;
Florin Corasd4712a82020-05-22 21:51:30 +0000888 tcp_worker_stats_inc (wrk, no_buffer, 1);
Florin Coras85a3ddd2018-12-24 16:54:34 -0800889 return;
Florin Coraseb97e5f2018-10-15 21:35:42 -0700890 }
891
Florin Corascb711a42019-10-16 19:28:17 -0700892 /* If we have non-dupacks programmed, no need to send them */
893 if ((tc->flags & TCP_CONN_SNDACK) && !tc->pending_dupacks)
894 tc->flags &= ~TCP_CONN_SNDACK;
895
Florin Coras0765d972020-03-18 21:26:41 +0000896 tcp_retransmit_timer_force_update (&wrk->timer_wheel, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500897 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -0700898 tcp_init_buffer (vm, b);
Florin Corasd79b41e2017-03-04 05:37:52 -0800899 tcp_make_fin (tc, b);
Florin Coras2a7ea2e2019-10-16 22:06:08 -0700900 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Corasa436a422019-08-20 07:09:31 -0700901 TCP_EVT (TCP_EVT_FIN_SENT, tc);
Florin Coras47596832019-03-12 18:58:54 -0700902 /* Account for the FIN */
903 tc->snd_nxt += 1;
Florin Coras9d063042017-09-14 03:08:00 -0400904 if (!fin_snt)
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400905 {
906 tc->flags |= TCP_CONN_FINSNT;
907 tc->flags &= ~TCP_CONN_FINPNDG;
Florin Coras47596832019-03-12 18:58:54 -0700908 tc->snd_una_max = seq_max (tc->snd_una_max, tc->snd_nxt);
Florin Corasa096f2d2017-09-28 23:49:42 -0400909 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500910}
911
Dave Barach68b0fb02017-02-28 15:15:56 -0500912/**
Florin Corasfd247442019-03-12 16:56:26 -0700913 * Push TCP header and update connection variables. Should only be called
914 * for segments with data, not for 'control' packets.
Dave Barach68b0fb02017-02-28 15:15:56 -0500915 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700916always_inline void
Florin Coras47596832019-03-12 18:58:54 -0700917tcp_push_hdr_i (tcp_connection_t * tc, vlib_buffer_t * b, u32 snd_nxt,
918 u8 compute_opts, u8 maybe_burst, u8 update_snd_nxt)
Dave Barach68b0fb02017-02-28 15:15:56 -0500919{
Florin Corasfd247442019-03-12 16:56:26 -0700920 u8 tcp_hdr_opts_len, flags = TCP_FLAG_ACK;
Dave Barach68b0fb02017-02-28 15:15:56 -0500921 u32 advertise_wnd, data_len;
Florin Corasb26743d2018-06-26 09:31:04 -0700922 tcp_main_t *tm = &tcp_main;
Dave Barach68b0fb02017-02-28 15:15:56 -0500923 tcp_header_t *th;
924
Florin Corasb26743d2018-06-26 09:31:04 -0700925 data_len = b->current_length;
926 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_NEXT_PRESENT))
927 data_len += b->total_length_not_including_first_buffer;
928
Dave Barach68b0fb02017-02-28 15:15:56 -0500929 vnet_buffer (b)->tcp.flags = 0;
Florin Corasb26743d2018-06-26 09:31:04 -0700930 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500931
Florin Corasc8343412017-05-04 14:25:50 -0700932 if (compute_opts)
933 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
934
Florin Corasc8343412017-05-04 14:25:50 -0700935 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
Florin Corasb26743d2018-06-26 09:31:04 -0700936
937 if (maybe_burst)
938 advertise_wnd = tc->rcv_wnd >> tc->rcv_wscale;
939 else
Florin Coras47596832019-03-12 18:58:54 -0700940 advertise_wnd = tcp_window_to_advertise (tc, TCP_STATE_ESTABLISHED);
Florin Corasb26743d2018-06-26 09:31:04 -0700941
Florin Coras42ceddb2018-12-12 10:56:01 -0800942 if (PREDICT_FALSE (tc->flags & TCP_CONN_PSH_PENDING))
943 {
Florin Coras47596832019-03-12 18:58:54 -0700944 if (seq_geq (tc->psh_seq, snd_nxt)
945 && seq_lt (tc->psh_seq, snd_nxt + data_len))
Florin Coras42ceddb2018-12-12 10:56:01 -0800946 flags |= TCP_FLAG_PSH;
947 }
Florin Coras47596832019-03-12 18:58:54 -0700948 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, snd_nxt,
Dave Barach68b0fb02017-02-28 15:15:56 -0500949 tc->rcv_nxt, tcp_hdr_opts_len, flags,
950 advertise_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -0500951
Florin Corasb26743d2018-06-26 09:31:04 -0700952 if (maybe_burst)
953 {
Dave Barach178cf492018-11-13 16:34:13 -0500954 clib_memcpy_fast ((u8 *) (th + 1),
955 tm->wrk_ctx[tc->c_thread_index].cached_opts,
956 tc->snd_opts_len);
Florin Corasb26743d2018-06-26 09:31:04 -0700957 }
958 else
959 {
960 u8 len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
961 ASSERT (len == tc->snd_opts_len);
962 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500963
Florin Coras93992a92017-05-24 18:03:56 -0700964 /*
965 * Update connection variables
966 */
967
Florin Coras47596832019-03-12 18:58:54 -0700968 if (update_snd_nxt)
969 tc->snd_nxt += data_len;
Florin Corasc28764f2017-04-26 00:08:42 -0700970 tc->rcv_las = tc->rcv_nxt;
Florin Coras3e350af2017-03-30 02:54:28 -0700971
Florin Corasedfe0ee2019-07-29 18:13:25 -0700972 tc->bytes_out += data_len;
973 tc->data_segs_out += 1;
974
Srikanth A02833ff2019-10-02 17:48:58 -0700975 th->checksum = tcp_compute_checksum (tc, b);
976
Florin Corasa436a422019-08-20 07:09:31 -0700977 TCP_EVT (TCP_EVT_PKTIZE, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500978}
979
Florin Corasd6ae4bf2019-10-12 18:10:20 -0700980always_inline u32
981tcp_buffer_len (vlib_buffer_t * b)
982{
983 u32 data_len = b->current_length;
984 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_NEXT_PRESENT))
985 data_len += b->total_length_not_including_first_buffer;
986 return data_len;
987}
988
Florin Coras0dbd5172018-06-25 16:19:34 -0700989u32
Florin Coras14ed6df2019-03-06 21:13:42 -0800990tcp_session_push_header (transport_connection_t * tconn, vlib_buffer_t * b)
Florin Coras0dbd5172018-06-25 16:19:34 -0700991{
Florin Coras14ed6df2019-03-06 21:13:42 -0800992 tcp_connection_t *tc = (tcp_connection_t *) tconn;
Florin Coras52814732019-06-12 15:38:19 -0700993
Florin Corasd6ae4bf2019-10-12 18:10:20 -0700994 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
995 tcp_bt_track_tx (tc, tcp_buffer_len (b));
Florin Coras52814732019-06-12 15:38:19 -0700996
Florin Coras47596832019-03-12 18:58:54 -0700997 tcp_push_hdr_i (tc, b, tc->snd_nxt, /* compute opts */ 0, /* burst */ 1,
998 /* update_snd_nxt */ 1);
Florin Coras52814732019-06-12 15:38:19 -0700999
Florin Coras47596832019-03-12 18:58:54 -07001000 tc->snd_una_max = seq_max (tc->snd_nxt, tc->snd_una_max);
Florin Coras0dbd5172018-06-25 16:19:34 -07001001 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
1002 /* If not tracking an ACK, start tracking */
1003 if (tc->rtt_ts == 0 && !tcp_in_cong_recovery (tc))
1004 {
Florin Corasd67f1122018-05-21 17:47:40 -07001005 tc->rtt_ts = tcp_time_now_us (tc->c_thread_index);
Florin Coras0dbd5172018-06-25 16:19:34 -07001006 tc->rtt_seq = tc->snd_nxt;
1007 }
1008 if (PREDICT_FALSE (!tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)))
1009 {
Florin Coras0765d972020-03-18 21:26:41 +00001010 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
1011 tcp_retransmit_timer_set (&wrk->timer_wheel, tc);
Florin Coras0dbd5172018-06-25 16:19:34 -07001012 tc->rto_boff = 0;
1013 }
1014 tcp_trajectory_add_start (b, 3);
1015 return 0;
1016}
1017
Dave Barach68b0fb02017-02-28 15:15:56 -05001018void
Florin Coras6792ec02017-03-13 03:49:51 -07001019tcp_send_ack (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001020{
Florin Corasbe72ae62018-11-01 11:23:03 -07001021 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
1022 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -05001023 vlib_buffer_t *b;
1024 u32 bi;
1025
Florin Corasbdf7fd62019-01-31 17:31:01 -08001026 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coras222e1f412019-02-16 20:47:32 -08001027 {
1028 tcp_update_rcv_wnd (tc);
Florin Corasd4712a82020-05-22 21:51:30 +00001029 tcp_worker_stats_inc (wrk, no_buffer, 1);
Florin Coras222e1f412019-02-16 20:47:32 -08001030 return;
1031 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001032 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001033 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001034 tcp_make_ack (tc, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001035 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001036}
1037
Florin Coras7ac053b2018-11-05 15:57:21 -08001038void
Florin Coras26dd6de2019-07-23 23:54:47 -07001039tcp_program_ack (tcp_connection_t * tc)
Florin Coras7ac053b2018-11-05 15:57:21 -08001040{
1041 if (!(tc->flags & TCP_CONN_SNDACK))
1042 {
Florin Coras26dd6de2019-07-23 23:54:47 -07001043 session_add_self_custom_tx_evt (&tc->connection, 1);
Florin Coras7ac053b2018-11-05 15:57:21 -08001044 tc->flags |= TCP_CONN_SNDACK;
1045 }
1046}
1047
1048void
Florin Coras26dd6de2019-07-23 23:54:47 -07001049tcp_program_dupack (tcp_connection_t * tc)
Florin Coras7ac053b2018-11-05 15:57:21 -08001050{
1051 if (!(tc->flags & TCP_CONN_SNDACK))
1052 {
Florin Coras26dd6de2019-07-23 23:54:47 -07001053 session_add_self_custom_tx_evt (&tc->connection, 1);
Florin Coras7ac053b2018-11-05 15:57:21 -08001054 tc->flags |= TCP_CONN_SNDACK;
1055 }
1056 if (tc->pending_dupacks < 255)
1057 tc->pending_dupacks += 1;
1058}
1059
1060void
Florin Coras36ebcff2019-09-12 18:36:44 -07001061tcp_program_retransmit (tcp_connection_t * tc)
Florin Coras7ac053b2018-11-05 15:57:21 -08001062{
Florin Coras36ebcff2019-09-12 18:36:44 -07001063 if (!(tc->flags & TCP_CONN_RXT_PENDING))
Florin Coras7ac053b2018-11-05 15:57:21 -08001064 {
Florin Coras26dd6de2019-07-23 23:54:47 -07001065 session_add_self_custom_tx_evt (&tc->connection, 0);
Florin Coras36ebcff2019-09-12 18:36:44 -07001066 tc->flags |= TCP_CONN_RXT_PENDING;
Florin Coras7ac053b2018-11-05 15:57:21 -08001067 }
Florin Coras7ac053b2018-11-05 15:57:21 -08001068}
1069
Florin Corasb2215d62017-08-01 16:56:58 -07001070/**
1071 * Delayed ack timer handler
1072 *
1073 * Sends delayed ACK when timer expires
1074 */
Florin Coras6792ec02017-03-13 03:49:51 -07001075void
Florin Corasaa388692020-02-14 23:41:25 +00001076tcp_timer_delack_handler (tcp_connection_t * tc)
Florin Coras6792ec02017-03-13 03:49:51 -07001077{
Florin Coras6792ec02017-03-13 03:49:51 -07001078 tcp_send_ack (tc);
1079}
1080
Florin Corasb2215d62017-08-01 16:56:58 -07001081/**
Florin Coras017dc452019-08-30 11:06:35 -07001082 * Send window update ack
1083 *
1084 * Ensures that it will be sent only once, after a zero rwnd has been
1085 * advertised in a previous ack, and only if rwnd has grown beyond a
1086 * configurable value.
Vladimir Kropylev398afbd2019-06-25 00:06:52 +03001087 */
1088void
1089tcp_send_window_update_ack (tcp_connection_t * tc)
1090{
Vladimir Kropylev398afbd2019-06-25 00:06:52 +03001091 if (tcp_zero_rwnd_sent (tc))
1092 {
Florin Coras017dc452019-08-30 11:06:35 -07001093 tcp_update_rcv_wnd (tc);
1094 if (tc->rcv_wnd >= tcp_cfg.rwnd_min_update_ack * tc->snd_mss)
Vladimir Kropylev398afbd2019-06-25 00:06:52 +03001095 {
1096 tcp_zero_rwnd_sent_off (tc);
Florin Coras26dd6de2019-07-23 23:54:47 -07001097 tcp_program_ack (tc);
Vladimir Kropylev398afbd2019-06-25 00:06:52 +03001098 }
1099 }
1100}
1101
1102/**
Florin Coras36ee9f12018-11-02 12:52:10 -07001103 * Allocate a new buffer and build a new tcp segment
Dave Barach68b0fb02017-02-28 15:15:56 -05001104 *
Florin Coras36ee9f12018-11-02 12:52:10 -07001105 * @param wrk tcp worker
1106 * @param tc connection for which the segment will be allocated
1107 * @param offset offset of the first byte in the tx fifo
1108 * @param max_deq_byte segment size
1109 * @param[out] b pointer to buffer allocated
1110 *
1111 * @return the number of bytes in the segment or 0 if buffer cannot be
1112 * allocated or no data available
Florin Coras93992a92017-05-24 18:03:56 -07001113 */
Florin Coras36ee9f12018-11-02 12:52:10 -07001114static int
1115tcp_prepare_segment (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1116 u32 offset, u32 max_deq_bytes, vlib_buffer_t ** b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001117{
Florin Corasbe72ae62018-11-01 11:23:03 -07001118 u32 bytes_per_buffer = vnet_get_tcp_main ()->bytes_per_buffer;
1119 vlib_main_t *vm = wrk->vm;
Florin Corasbdf7fd62019-01-31 17:31:01 -08001120 u32 bi, seg_size;
Florin Coras93992a92017-05-24 18:03:56 -07001121 int n_bytes = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001122 u8 *data;
Dave Barach68b0fb02017-02-28 15:15:56 -05001123
Florin Coras1ee78302019-02-05 15:51:15 -08001124 seg_size = max_deq_bytes + TRANSPORT_MAX_HDRS_LEN;
Florin Coras1f152cd2017-08-18 19:28:03 -07001125
Florin Corasb2215d62017-08-01 16:56:58 -07001126 /*
1127 * Prepare options
1128 */
Florin Corasc8343412017-05-04 14:25:50 -07001129 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1130
Florin Corasb2215d62017-08-01 16:56:58 -07001131 /*
1132 * Allocate and fill in buffer(s)
1133 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001134
Florin Corasb2215d62017-08-01 16:56:58 -07001135 /* Easy case, buffer size greater than mss */
Florin Corasbe72ae62018-11-01 11:23:03 -07001136 if (PREDICT_TRUE (seg_size <= bytes_per_buffer))
Florin Corasb2215d62017-08-01 16:56:58 -07001137 {
Florin Corasbdf7fd62019-01-31 17:31:01 -08001138 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Corasd4712a82020-05-22 21:51:30 +00001139 {
1140 tcp_worker_stats_inc (wrk, no_buffer, 1);
1141 return 0;
1142 }
Florin Coras24793e32018-05-09 11:34:25 -07001143 *b = vlib_get_buffer (vm, bi);
1144 data = tcp_init_buffer (vm, *b);
Florin Coras31c99552019-03-01 13:00:58 -08001145 n_bytes = session_tx_fifo_peek_bytes (&tc->connection, data, offset,
1146 max_deq_bytes);
Florin Corasb2215d62017-08-01 16:56:58 -07001147 ASSERT (n_bytes == max_deq_bytes);
1148 b[0]->current_length = n_bytes;
Florin Coras47596832019-03-12 18:58:54 -07001149 tcp_push_hdr_i (tc, *b, tc->snd_una + offset, /* compute opts */ 0,
1150 /* burst */ 0, /* update_snd_nxt */ 0);
Florin Corasb2215d62017-08-01 16:56:58 -07001151 }
1152 /* Split mss into multiple buffers */
1153 else
1154 {
Florin Corasbdf7fd62019-01-31 17:31:01 -08001155 u32 chain_bi = ~0, n_bufs_per_seg, n_bufs;
1156 u16 n_peeked, len_to_deq;
Florin Corasb2215d62017-08-01 16:56:58 -07001157 vlib_buffer_t *chain_b, *prev_b;
Florin Corasb2215d62017-08-01 16:56:58 -07001158 int i;
1159
Florin Corasb2215d62017-08-01 16:56:58 -07001160 /* Make sure we have enough buffers */
Florin Corasbe72ae62018-11-01 11:23:03 -07001161 n_bufs_per_seg = ceil ((double) seg_size / bytes_per_buffer);
Florin Corasbdf7fd62019-01-31 17:31:01 -08001162 vec_validate_aligned (wrk->tx_buffers, n_bufs_per_seg - 1,
1163 CLIB_CACHE_LINE_BYTES);
1164 n_bufs = vlib_buffer_alloc (vm, wrk->tx_buffers, n_bufs_per_seg);
1165 if (PREDICT_FALSE (n_bufs != n_bufs_per_seg))
Florin Corasb2215d62017-08-01 16:56:58 -07001166 {
Florin Corasbdf7fd62019-01-31 17:31:01 -08001167 if (n_bufs)
1168 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
Florin Corasd4712a82020-05-22 21:51:30 +00001169 tcp_worker_stats_inc (wrk, no_buffer, 1);
Florin Corasbdf7fd62019-01-31 17:31:01 -08001170 return 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001171 }
1172
Florin Corasbdf7fd62019-01-31 17:31:01 -08001173 *b = vlib_get_buffer (vm, wrk->tx_buffers[--n_bufs]);
Florin Coras24793e32018-05-09 11:34:25 -07001174 data = tcp_init_buffer (vm, *b);
Florin Coras31c99552019-03-01 13:00:58 -08001175 n_bytes = session_tx_fifo_peek_bytes (&tc->connection, data, offset,
1176 bytes_per_buffer -
1177 TRANSPORT_MAX_HDRS_LEN);
Florin Corasb2215d62017-08-01 16:56:58 -07001178 b[0]->current_length = n_bytes;
1179 b[0]->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
1180 b[0]->total_length_not_including_first_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001181 max_deq_bytes -= n_bytes;
1182
1183 chain_b = *b;
1184 for (i = 1; i < n_bufs_per_seg; i++)
1185 {
1186 prev_b = chain_b;
Florin Corasbe72ae62018-11-01 11:23:03 -07001187 len_to_deq = clib_min (max_deq_bytes, bytes_per_buffer);
Florin Corasbdf7fd62019-01-31 17:31:01 -08001188 chain_bi = wrk->tx_buffers[--n_bufs];
Florin Corasb2215d62017-08-01 16:56:58 -07001189 chain_b = vlib_get_buffer (vm, chain_bi);
1190 chain_b->current_data = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001191 data = vlib_buffer_get_current (chain_b);
Florin Coras31c99552019-03-01 13:00:58 -08001192 n_peeked = session_tx_fifo_peek_bytes (&tc->connection, data,
1193 offset + n_bytes,
1194 len_to_deq);
Florin Corasb2215d62017-08-01 16:56:58 -07001195 ASSERT (n_peeked == len_to_deq);
Florin Coras1f152cd2017-08-18 19:28:03 -07001196 n_bytes += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001197 chain_b->current_length = n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001198 chain_b->next_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001199
1200 /* update previous buffer */
1201 prev_b->next_buffer = chain_bi;
1202 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
1203
Florin Corasb2215d62017-08-01 16:56:58 -07001204 max_deq_bytes -= n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001205 b[0]->total_length_not_including_first_buffer += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001206 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001207
Florin Coras47596832019-03-12 18:58:54 -07001208 tcp_push_hdr_i (tc, *b, tc->snd_una + offset, /* compute opts */ 0,
1209 /* burst */ 0, /* update_snd_nxt */ 0);
Florin Corasbdf7fd62019-01-31 17:31:01 -08001210
1211 if (PREDICT_FALSE (n_bufs))
1212 {
1213 clib_warning ("not all buffers consumed");
1214 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
1215 }
Florin Corasb2215d62017-08-01 16:56:58 -07001216 }
1217
Florin Coras93992a92017-05-24 18:03:56 -07001218 ASSERT (n_bytes > 0);
Florin Corasbe72ae62018-11-01 11:23:03 -07001219 ASSERT (((*b)->current_data + (*b)->current_length) <= bytes_per_buffer);
Florin Corasbb292f42017-05-19 09:49:19 -07001220
Florin Coras36ee9f12018-11-02 12:52:10 -07001221 return n_bytes;
1222}
1223
1224/**
1225 * Build a retransmit segment
1226 *
1227 * @return the number of bytes in the segment or 0 if there's nothing to
1228 * retransmit
1229 */
1230static u32
1231tcp_prepare_retransmit_segment (tcp_worker_ctx_t * wrk,
1232 tcp_connection_t * tc, u32 offset,
1233 u32 max_deq_bytes, vlib_buffer_t ** b)
1234{
1235 u32 start, available_bytes;
1236 int n_bytes = 0;
1237
1238 ASSERT (tc->state >= TCP_STATE_ESTABLISHED);
1239 ASSERT (max_deq_bytes != 0);
1240
1241 /*
1242 * Make sure we can retransmit something
1243 */
Florin Coras31c99552019-03-01 13:00:58 -08001244 available_bytes = transport_max_tx_dequeue (&tc->connection);
Florin Coras36ee9f12018-11-02 12:52:10 -07001245 ASSERT (available_bytes >= offset);
1246 available_bytes -= offset;
1247 if (!available_bytes)
1248 return 0;
1249
1250 max_deq_bytes = clib_min (tc->snd_mss, max_deq_bytes);
1251 max_deq_bytes = clib_min (available_bytes, max_deq_bytes);
1252
Florin Coras36ee9f12018-11-02 12:52:10 -07001253 start = tc->snd_una + offset;
Florin Coras81cb8e42019-10-22 19:44:45 -07001254 ASSERT (seq_leq (start + max_deq_bytes, tc->snd_nxt));
1255
Florin Coras36ee9f12018-11-02 12:52:10 -07001256 n_bytes = tcp_prepare_segment (wrk, tc, offset, max_deq_bytes, b);
1257 if (!n_bytes)
1258 return 0;
1259
Florin Coras36ebcff2019-09-12 18:36:44 -07001260 tc->snd_rxt_bytes += n_bytes;
1261
Florin Corasbbcfaac2019-10-10 13:52:04 -07001262 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
Florin Coras36ebcff2019-09-12 18:36:44 -07001263 tcp_bt_track_rxt (tc, start, start + n_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001264
Florin Corasedfe0ee2019-07-29 18:13:25 -07001265 tc->bytes_retrans += n_bytes;
1266 tc->segs_retrans += 1;
Florin Coras0765d972020-03-18 21:26:41 +00001267 tcp_worker_stats_inc (wrk, rxt_segs, 1);
Florin Corasa436a422019-08-20 07:09:31 -07001268 TCP_EVT (TCP_EVT_CC_RTX, tc, offset, n_bytes);
Florin Coras36ebcff2019-09-12 18:36:44 -07001269
Dave Barach68b0fb02017-02-28 15:15:56 -05001270 return n_bytes;
1271}
1272
Florin Coras36ebcff2019-09-12 18:36:44 -07001273static void
1274tcp_check_sack_reneging (tcp_connection_t * tc)
1275{
1276 sack_scoreboard_t *sb = &tc->sack_sb;
1277 sack_scoreboard_hole_t *hole;
1278
1279 hole = scoreboard_first_hole (sb);
1280 if (!sb->is_reneging && (!hole || hole->start == tc->snd_una))
1281 return;
1282
1283 scoreboard_clear_reneging (sb, tc->snd_una, tc->snd_nxt);
1284}
1285
Florin Coras6792ec02017-03-13 03:49:51 -07001286/**
1287 * Reset congestion control, switch cwnd to loss window and try again.
1288 */
1289static void
Florin Corasa3c32652019-07-03 17:47:22 -07001290tcp_cc_init_rxt_timeout (tcp_connection_t * tc)
Florin Coras6792ec02017-03-13 03:49:51 -07001291{
Florin Corasa436a422019-08-20 07:09:31 -07001292 TCP_EVT (TCP_EVT_CC_EVT, tc, 6);
Florin Coras36ebcff2019-09-12 18:36:44 -07001293
Florin Coras93992a92017-05-24 18:03:56 -07001294 tc->prev_ssthresh = tc->ssthresh;
1295 tc->prev_cwnd = tc->cwnd;
1296
Florin Coras36ebcff2019-09-12 18:36:44 -07001297 /* If we entrered loss without fast recovery, notify cc algo of the
1298 * congestion event such that it can update ssthresh and its state */
1299 if (!tcp_in_fastrecovery (tc))
1300 tcp_cc_congestion (tc);
Florin Corasa3c32652019-07-03 17:47:22 -07001301
Florin Coras36ebcff2019-09-12 18:36:44 -07001302 /* Let cc algo decide loss cwnd and ssthresh post unrecovered loss */
Florin Corasa3c32652019-07-03 17:47:22 -07001303 tcp_cc_loss (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001304
Florin Corasf1762d62017-09-24 19:43:08 -04001305 tc->rtt_ts = 0;
Florin Corasd2aab832018-05-22 11:39:59 -07001306 tc->cwnd_acc_bytes = 0;
Florin Corasedfe0ee2019-07-29 18:13:25 -07001307 tc->tr_occurences += 1;
Florin Coras3af90fc2017-05-03 21:09:42 -07001308 tcp_recovery_on (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001309}
1310
Florin Coras75c48c12019-08-02 15:17:21 -07001311void
Florin Corasaa388692020-02-14 23:41:25 +00001312tcp_timer_retransmit_handler (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001313{
Florin Corasaa388692020-02-14 23:41:25 +00001314 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
Florin Corasbe72ae62018-11-01 11:23:03 -07001315 vlib_main_t *vm = wrk->vm;
Florin Corasb2215d62017-08-01 16:56:58 -07001316 vlib_buffer_t *b = 0;
Florin Coras3af90fc2017-05-03 21:09:42 -07001317 u32 bi, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001318
Florin Coras0765d972020-03-18 21:26:41 +00001319 tcp_worker_stats_inc (wrk, tr_events, 1);
Florin Coras75c48c12019-08-02 15:17:21 -07001320
Florin Corasaa388692020-02-14 23:41:25 +00001321 /* Should be handled by a different handler */
1322 if (PREDICT_FALSE (tc->state == TCP_STATE_SYN_SENT))
Florin Coras75c48c12019-08-02 15:17:21 -07001323 return;
1324
Florin Coras75c48c12019-08-02 15:17:21 -07001325 /* Wait-close and retransmit could pop at the same time */
1326 if (tc->state == TCP_STATE_CLOSED)
1327 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001328
Florin Corase04c2992017-03-01 08:17:34 -08001329 if (tc->state >= TCP_STATE_ESTABLISHED)
Dave Barach68b0fb02017-02-28 15:15:56 -05001330 {
Florin Corasa436a422019-08-20 07:09:31 -07001331 TCP_EVT (TCP_EVT_CC_EVT, tc, 2);
Florin Corase55a6d72018-10-31 23:09:22 -07001332
Florin Coras93992a92017-05-24 18:03:56 -07001333 /* Lost FIN, retransmit and return */
Florin Coras222e1f412019-02-16 20:47:32 -08001334 if (tc->flags & TCP_CONN_FINSNT)
Florin Coras93992a92017-05-24 18:03:56 -07001335 {
1336 tcp_send_fin (tc);
Florin Corasf988e692017-11-27 04:34:14 -05001337 tc->rto_boff += 1;
1338 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
Florin Coras93992a92017-05-24 18:03:56 -07001339 return;
1340 }
1341
Florin Coras3ec66b02018-08-23 16:27:05 -07001342 /* Shouldn't be here. This condition is tricky because it has to take
1343 * into account boff > 0 due to persist timeout. */
Florin Coras47596832019-03-12 18:58:54 -07001344 if ((tc->rto_boff == 0 && tc->snd_una == tc->snd_nxt)
Florin Coras3ec66b02018-08-23 16:27:05 -07001345 || (tc->rto_boff > 0 && seq_geq (tc->snd_una, tc->snd_congestion)
1346 && !tcp_flight_size (tc)))
Florin Corasa096f2d2017-09-28 23:49:42 -04001347 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001348 ASSERT (!tcp_in_recovery (tc));
1349 tc->rto_boff = 0;
Florin Corasa096f2d2017-09-28 23:49:42 -04001350 return;
1351 }
1352
Florin Coras3ec66b02018-08-23 16:27:05 -07001353 /* We're not in recovery so make sure rto_boff is 0. Can be non 0 due
1354 * to persist timer timeout */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001355 if (!tcp_in_recovery (tc) && tc->rto_boff > 0)
1356 {
1357 tc->rto_boff = 0;
1358 tcp_update_rto (tc);
1359 }
1360
Florin Coras548f7572019-06-07 15:31:06 -07001361 /* Peer is dead or network connectivity is lost. Close connection.
1362 * RFC 1122 section 4.2.3.5 recommends a value of at least 100s. For
1363 * a min rto of 0.2s we need to retry about 8 times. */
1364 if (tc->rto_boff >= TCP_RTO_BOFF_MAX)
1365 {
1366 tcp_send_reset (tc);
1367 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1368 session_transport_closing_notify (&tc->connection);
Florin Coras52be6742019-11-14 23:32:08 -08001369 session_transport_closed_notify (&tc->connection);
Florin Coras548f7572019-06-07 15:31:06 -07001370 tcp_connection_timers_reset (tc);
Florin Coras7a3a8662020-02-22 02:27:21 +00001371 tcp_program_cleanup (wrk, tc);
Florin Coras0765d972020-03-18 21:26:41 +00001372 tcp_worker_stats_inc (wrk, tr_abort, 1);
Florin Coras548f7572019-06-07 15:31:06 -07001373 return;
1374 }
1375
Florin Coras36ebcff2019-09-12 18:36:44 -07001376 if (tcp_opts_sack_permitted (&tc->rcv_opts))
1377 tcp_check_sack_reneging (tc);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001378
Florin Coras36ebcff2019-09-12 18:36:44 -07001379 /* Update send congestion to make sure that rxt has data to send */
1380 tc->snd_congestion = tc->snd_nxt;
Florin Corasa3c32652019-07-03 17:47:22 -07001381
Florin Coras36ebcff2019-09-12 18:36:44 -07001382 /* Send the first unacked segment. If we're short on buffers, return
1383 * as soon as possible */
Florin Coras81cb8e42019-10-22 19:44:45 -07001384 n_bytes = clib_min (tc->snd_mss, tc->snd_nxt - tc->snd_una);
1385 n_bytes = tcp_prepare_retransmit_segment (wrk, tc, 0, n_bytes, &b);
Florin Coras85a3ddd2018-12-24 16:54:34 -08001386 if (!n_bytes)
Florin Corase04c2992017-03-01 08:17:34 -08001387 {
Florin Coras0765d972020-03-18 21:26:41 +00001388 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT, 1);
Florin Corase04c2992017-03-01 08:17:34 -08001389 return;
1390 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001391
Dave Barachb7f1faa2017-08-29 11:43:37 -04001392 bi = vlib_get_buffer_index (vm, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001393 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras75c48c12019-08-02 15:17:21 -07001394
1395 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
Florin Coras0765d972020-03-18 21:26:41 +00001396 tcp_retransmit_timer_force_update (&wrk->timer_wheel, tc);
Florin Coras36ebcff2019-09-12 18:36:44 -07001397
1398 tc->rto_boff += 1;
1399 if (tc->rto_boff == 1)
1400 {
1401 tcp_cc_init_rxt_timeout (tc);
1402 /* Record timestamp. Eifel detection algorithm RFC3522 */
1403 tc->snd_rxt_ts = tcp_tstamp (tc);
1404 }
1405
1406 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Corasbe237bf2019-09-27 08:16:40 -07001407 scoreboard_init_rxt (&tc->sack_sb, tc->snd_una + n_bytes);
Florin Coras36ebcff2019-09-12 18:36:44 -07001408
1409 tcp_program_retransmit (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001410 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001411 /* Retransmit SYN-ACK */
1412 else if (tc->state == TCP_STATE_SYN_RCVD)
1413 {
Florin Corasa436a422019-08-20 07:09:31 -07001414 TCP_EVT (TCP_EVT_CC_EVT, tc, 2);
Florin Corase55a6d72018-10-31 23:09:22 -07001415
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001416 tc->rtt_ts = 0;
1417
Florin Coras75c48c12019-08-02 15:17:21 -07001418 /* Passive open establish timeout */
1419 if (tc->rto > TCP_ESTABLISH_TIME >> 1)
1420 {
1421 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1422 tcp_connection_timers_reset (tc);
Florin Coras7a3a8662020-02-22 02:27:21 +00001423 tcp_program_cleanup (wrk, tc);
Florin Coras0765d972020-03-18 21:26:41 +00001424 tcp_worker_stats_inc (wrk, tr_abort, 1);
Florin Coras75c48c12019-08-02 15:17:21 -07001425 return;
1426 }
Florin Coras222e1f412019-02-16 20:47:32 -08001427
Florin Corasbdf7fd62019-01-31 17:31:01 -08001428 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Corasf988e692017-11-27 04:34:14 -05001429 {
Florin Coras0765d972020-03-18 21:26:41 +00001430 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT, 1);
Florin Corasd4712a82020-05-22 21:51:30 +00001431 tcp_worker_stats_inc (wrk, no_buffer, 1);
Florin Corasf988e692017-11-27 04:34:14 -05001432 return;
1433 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001434
Florin Coras75c48c12019-08-02 15:17:21 -07001435 tc->rto_boff += 1;
1436 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1437 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1438
Florin Coras0765d972020-03-18 21:26:41 +00001439 tcp_retransmit_timer_force_update (&wrk->timer_wheel, tc);
Florin Coras75c48c12019-08-02 15:17:21 -07001440
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001441 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001442 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001443 tcp_make_synack (tc, b);
Florin Corasa436a422019-08-20 07:09:31 -07001444 TCP_EVT (TCP_EVT_SYN_RXT, tc, 1);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001445
1446 /* Retransmit timer already updated, just enqueue to output */
Florin Corasbe72ae62018-11-01 11:23:03 -07001447 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001448 }
Florin Coras93992a92017-05-24 18:03:56 -07001449 else
1450 {
1451 ASSERT (tc->state == TCP_STATE_CLOSED);
Florin Coras93992a92017-05-24 18:03:56 -07001452 return;
1453 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001454}
1455
Florin Coras75c48c12019-08-02 15:17:21 -07001456/**
1457 * SYN retransmit timer handler. Active open only.
1458 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001459void
Florin Corasaa388692020-02-14 23:41:25 +00001460tcp_timer_retransmit_syn_handler (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001461{
Florin Corasaa388692020-02-14 23:41:25 +00001462 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
Florin Coras75c48c12019-08-02 15:17:21 -07001463 vlib_main_t *vm = wrk->vm;
Florin Coras75c48c12019-08-02 15:17:21 -07001464 vlib_buffer_t *b = 0;
1465 u32 bi;
Dave Barach68b0fb02017-02-28 15:15:56 -05001466
Florin Coras75c48c12019-08-02 15:17:21 -07001467 /* Note: the connection may have transitioned to ESTABLISHED... */
Florin Corasaa388692020-02-14 23:41:25 +00001468 if (PREDICT_FALSE (tc->state != TCP_STATE_SYN_SENT))
Florin Coras75c48c12019-08-02 15:17:21 -07001469 return;
1470
Florin Coras75c48c12019-08-02 15:17:21 -07001471 /* Half-open connection actually moved to established but we were
1472 * waiting for syn retransmit to pop to call cleanup from the right
1473 * thread. */
1474 if (tc->flags & TCP_CONN_HALF_OPEN_DONE)
1475 {
1476 if (tcp_half_open_connection_cleanup (tc))
1477 TCP_DBG ("could not remove half-open connection");
1478 return;
1479 }
1480
Florin Corasa436a422019-08-20 07:09:31 -07001481 TCP_EVT (TCP_EVT_CC_EVT, tc, 2);
Florin Coras75c48c12019-08-02 15:17:21 -07001482 tc->rtt_ts = 0;
1483
1484 /* Active open establish timeout */
1485 if (tc->rto >= TCP_ESTABLISH_TIME >> 1)
1486 {
Florin Coras00e01d32019-10-21 16:07:46 -07001487 session_stream_connect_notify (&tc->connection, SESSION_E_TIMEDOUT);
Florin Coras75c48c12019-08-02 15:17:21 -07001488 tcp_connection_cleanup (tc);
1489 return;
1490 }
1491
1492 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
1493 {
Florin Coras0765d972020-03-18 21:26:41 +00001494 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT_SYN, 1);
Florin Corasd4712a82020-05-22 21:51:30 +00001495 tcp_worker_stats_inc (wrk, no_buffer, 1);
Florin Coras75c48c12019-08-02 15:17:21 -07001496 return;
1497 }
1498
1499 /* Try without increasing RTO a number of times. If this fails,
1500 * start growing RTO exponentially */
1501 tc->rto_boff += 1;
1502 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1503 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1504
1505 b = vlib_get_buffer (vm, bi);
1506 tcp_init_buffer (vm, b);
1507 tcp_make_syn (tc, b);
1508
Florin Corasa436a422019-08-20 07:09:31 -07001509 TCP_EVT (TCP_EVT_SYN_RXT, tc, 0);
Florin Coras75c48c12019-08-02 15:17:21 -07001510
1511 /* This goes straight to ipx_lookup */
1512 tcp_push_ip_hdr (wrk, tc, b);
1513 tcp_enqueue_to_ip_lookup (wrk, b, bi, tc->c_is_ip4, tc->c_fib_index);
1514
Florin Coras0765d972020-03-18 21:26:41 +00001515 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT_SYN,
Florin Coras75c48c12019-08-02 15:17:21 -07001516 tc->rto * TCP_TO_TIMER_TICK);
Dave Barach68b0fb02017-02-28 15:15:56 -05001517}
1518
1519/**
Florin Coras3e350af2017-03-30 02:54:28 -07001520 * Got 0 snd_wnd from peer, try to do something about it.
1521 *
1522 */
1523void
Florin Corasaa388692020-02-14 23:41:25 +00001524tcp_timer_persist_handler (tcp_connection_t * tc)
Florin Coras3e350af2017-03-30 02:54:28 -07001525{
Florin Corasaa388692020-02-14 23:41:25 +00001526 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
Florin Corasbe72ae62018-11-01 11:23:03 -07001527 u32 bi, max_snd_bytes, available_bytes, offset;
1528 tcp_main_t *tm = vnet_get_tcp_main ();
1529 vlib_main_t *vm = wrk->vm;
Florin Coras3e350af2017-03-30 02:54:28 -07001530 vlib_buffer_t *b;
Florin Coras93992a92017-05-24 18:03:56 -07001531 int n_bytes = 0;
Florin Coras1f152cd2017-08-18 19:28:03 -07001532 u8 *data;
Florin Coras3e350af2017-03-30 02:54:28 -07001533
Florin Coras3e350af2017-03-30 02:54:28 -07001534 /* Problem already solved or worse */
Florin Coras7e74bf32019-03-06 16:51:58 -08001535 if (tc->state == TCP_STATE_CLOSED || tc->snd_wnd > tc->snd_mss
1536 || (tc->flags & TCP_CONN_FINSNT))
Florin Coras70f879d2020-03-13 17:54:42 +00001537 goto update_scheduler;
Florin Coras3e350af2017-03-30 02:54:28 -07001538
Florin Coras31c99552019-03-01 13:00:58 -08001539 available_bytes = transport_max_tx_dequeue (&tc->connection);
Florin Coras47596832019-03-12 18:58:54 -07001540 offset = tc->snd_nxt - tc->snd_una;
Florin Coras50958952017-08-29 14:50:13 -07001541
1542 /* Reprogram persist if no new bytes available to send. We may have data
1543 * next time */
1544 if (!available_bytes)
1545 {
Florin Coras0765d972020-03-18 21:26:41 +00001546 tcp_persist_timer_set (&wrk->timer_wheel, tc);
Florin Coras50958952017-08-29 14:50:13 -07001547 return;
1548 }
1549
1550 if (available_bytes <= offset)
Florin Coras70f879d2020-03-13 17:54:42 +00001551 goto update_scheduler;
Florin Coras50958952017-08-29 14:50:13 -07001552
Florin Coras3e350af2017-03-30 02:54:28 -07001553 /* Increment RTO backoff */
1554 tc->rto_boff += 1;
1555 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1556
Florin Corasb2215d62017-08-01 16:56:58 -07001557 /*
1558 * Try to force the first unsent segment (or buffer)
1559 */
Florin Corasbdf7fd62019-01-31 17:31:01 -08001560 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coras3ec66b02018-08-23 16:27:05 -07001561 {
Florin Coras0765d972020-03-18 21:26:41 +00001562 tcp_persist_timer_set (&wrk->timer_wheel, tc);
Florin Corasd4712a82020-05-22 21:51:30 +00001563 tcp_worker_stats_inc (wrk, no_buffer, 1);
Florin Coras3ec66b02018-08-23 16:27:05 -07001564 return;
1565 }
Florin Coras70f879d2020-03-13 17:54:42 +00001566
Florin Coras3e350af2017-03-30 02:54:28 -07001567 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001568 data = tcp_init_buffer (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001569
Florin Coras1f152cd2017-08-18 19:28:03 -07001570 tcp_validate_txf_size (tc, offset);
Florin Corasc8343412017-05-04 14:25:50 -07001571 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
Florin Coras7e74bf32019-03-06 16:51:58 -08001572 max_snd_bytes = clib_min (tc->snd_mss,
1573 tm->bytes_per_buffer - TRANSPORT_MAX_HDRS_LEN);
1574 n_bytes = session_tx_fifo_peek_bytes (&tc->connection, data, offset,
1575 max_snd_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001576 b->current_length = n_bytes;
Florin Coras84275e92017-09-26 12:30:40 -04001577 ASSERT (n_bytes != 0 && (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)
1578 || tc->snd_nxt == tc->snd_una_max
1579 || tc->rto_boff > 1));
Florin Coras93992a92017-05-24 18:03:56 -07001580
Florin Corasbbcfaac2019-10-10 13:52:04 -07001581 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
Florin Corasdd60b1b2019-10-07 17:19:09 -07001582 {
1583 tcp_bt_check_app_limited (tc);
Florin Corasd6ae4bf2019-10-12 18:10:20 -07001584 tcp_bt_track_tx (tc, n_bytes);
Florin Corasdd60b1b2019-10-07 17:19:09 -07001585 }
1586
Florin Coras47596832019-03-12 18:58:54 -07001587 tcp_push_hdr_i (tc, b, tc->snd_nxt, /* compute opts */ 0,
1588 /* burst */ 0, /* update_snd_nxt */ 1);
1589 tc->snd_una_max = seq_max (tc->snd_nxt, tc->snd_una_max);
Florin Coras8b20bf52018-06-14 14:55:50 -07001590 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
Florin Corasbe72ae62018-11-01 11:23:03 -07001591 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras3e350af2017-03-30 02:54:28 -07001592
Florin Coras1f152cd2017-08-18 19:28:03 -07001593 /* Just sent new data, enable retransmit */
Florin Coras0765d972020-03-18 21:26:41 +00001594 tcp_retransmit_timer_update (&wrk->timer_wheel, tc);
Florin Coras70f879d2020-03-13 17:54:42 +00001595
Florin Coras6080e0d2020-03-13 20:39:43 +00001596 return;
1597
Florin Coras70f879d2020-03-13 17:54:42 +00001598update_scheduler:
1599
Florin Coras6080e0d2020-03-13 20:39:43 +00001600 if (tcp_is_descheduled (tc))
Florin Coras70f879d2020-03-13 17:54:42 +00001601 transport_connection_reschedule (&tc->connection);
Florin Coras3e350af2017-03-30 02:54:28 -07001602}
1603
1604/**
Florin Coras6792ec02017-03-13 03:49:51 -07001605 * Retransmit first unacked segment
1606 */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001607int
Florin Corasbe72ae62018-11-01 11:23:03 -07001608tcp_retransmit_first_unacked (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001609{
Florin Corasbe72ae62018-11-01 11:23:03 -07001610 vlib_main_t *vm = wrk->vm;
1611 vlib_buffer_t *b;
Florin Coras47596832019-03-12 18:58:54 -07001612 u32 bi, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001613
Florin Corasa436a422019-08-20 07:09:31 -07001614 TCP_EVT (TCP_EVT_CC_EVT, tc, 1);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001615
Florin Corasbe72ae62018-11-01 11:23:03 -07001616 n_bytes = tcp_prepare_retransmit_segment (wrk, tc, 0, tc->snd_mss, &b);
Florin Corasb2215d62017-08-01 16:56:58 -07001617 if (!n_bytes)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001618 return -1;
1619
Florin Corasb2215d62017-08-01 16:56:58 -07001620 bi = vlib_get_buffer_index (vm, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001621 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001622
1623 return 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001624}
1625
Florin Coras36ee9f12018-11-02 12:52:10 -07001626static int
Florin Coras36ebcff2019-09-12 18:36:44 -07001627tcp_transmit_unsent (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1628 u32 burst_size)
Florin Coras36ee9f12018-11-02 12:52:10 -07001629{
Florin Coras635acbf2019-07-31 14:11:05 -07001630 u32 offset, n_segs = 0, n_written, bi, available_wnd;
Florin Coras36ee9f12018-11-02 12:52:10 -07001631 vlib_main_t *vm = wrk->vm;
1632 vlib_buffer_t *b = 0;
1633
Florin Coras47596832019-03-12 18:58:54 -07001634 offset = tc->snd_nxt - tc->snd_una;
Florin Coras635acbf2019-07-31 14:11:05 -07001635 available_wnd = tc->snd_wnd - offset;
1636 burst_size = clib_min (burst_size, available_wnd / tc->snd_mss);
1637
Florin Corasd6ae4bf2019-10-12 18:10:20 -07001638 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
1639 tcp_bt_check_app_limited (tc);
1640
Florin Coras36ee9f12018-11-02 12:52:10 -07001641 while (n_segs < burst_size)
1642 {
1643 n_written = tcp_prepare_segment (wrk, tc, offset, tc->snd_mss, &b);
1644 if (!n_written)
1645 goto done;
1646
1647 bi = vlib_get_buffer_index (vm, b);
1648 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
1649 offset += n_written;
1650 n_segs += 1;
Florin Coras47596832019-03-12 18:58:54 -07001651
Florin Corasd6ae4bf2019-10-12 18:10:20 -07001652 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
1653 tcp_bt_track_tx (tc, n_written);
1654
Florin Coras47596832019-03-12 18:58:54 -07001655 tc->snd_nxt += n_written;
1656 tc->snd_una_max = seq_max (tc->snd_nxt, tc->snd_una_max);
Florin Coras36ee9f12018-11-02 12:52:10 -07001657 }
1658
1659done:
1660 return n_segs;
1661}
1662
Florin Coras36ebcff2019-09-12 18:36:44 -07001663/**
1664 * Estimate send space using proportional rate reduction (RFC6937)
1665 */
Florin Corasbe237bf2019-09-27 08:16:40 -07001666int
Florin Coras36ebcff2019-09-12 18:36:44 -07001667tcp_fastrecovery_prr_snd_space (tcp_connection_t * tc)
1668{
1669 u32 pipe, prr_out;
1670 int space;
1671
1672 pipe = tcp_flight_size (tc);
1673 prr_out = tc->snd_rxt_bytes + (tc->snd_nxt - tc->snd_congestion);
1674
1675 if (pipe > tc->ssthresh)
1676 {
1677 space = ((int) tc->prr_delivered * ((f64) tc->ssthresh / tc->prev_cwnd))
1678 - prr_out;
1679 }
1680 else
1681 {
Florin Corasbe237bf2019-09-27 08:16:40 -07001682 int limit;
1683 limit = clib_max ((int) (tc->prr_delivered - prr_out), 0) + tc->snd_mss;
Florin Coras36ebcff2019-09-12 18:36:44 -07001684 space = clib_min (tc->ssthresh - pipe, limit);
1685 }
1686 space = clib_max (space, prr_out ? 0 : tc->snd_mss);
1687 return space;
1688}
1689
Florin Corasbe237bf2019-09-27 08:16:40 -07001690static inline u8
1691tcp_retransmit_should_retry_head (tcp_connection_t * tc,
1692 sack_scoreboard_t * sb)
1693{
1694 u32 tx_adv_sack = sb->high_sacked - tc->snd_congestion;
1695 f64 rr = (f64) tc->ssthresh / tc->prev_cwnd;
1696
Florin Corasb3dce892019-10-30 09:22:14 -07001697 if (tcp_fastrecovery_first (tc))
1698 return 1;
1699
Florin Corasbe237bf2019-09-27 08:16:40 -07001700 return (tx_adv_sack > (tc->snd_una - tc->prr_start) * rr);
1701}
1702
Florin Corascb711a42019-10-16 19:28:17 -07001703static inline u8
1704tcp_max_tx_deq (tcp_connection_t * tc)
1705{
1706 return (transport_max_tx_dequeue (&tc->connection)
1707 - (tc->snd_nxt - tc->snd_una));
1708}
1709
Florin Coras36ee9f12018-11-02 12:52:10 -07001710#define scoreboard_rescue_rxt_valid(_sb, _tc) \
1711 (seq_geq (_sb->rescue_rxt, _tc->snd_una) \
1712 && seq_leq (_sb->rescue_rxt, _tc->snd_congestion))
1713
Florin Coras6792ec02017-03-13 03:49:51 -07001714/**
Florin Coras36ebcff2019-09-12 18:36:44 -07001715 * Do retransmit with SACKs
Florin Coras6792ec02017-03-13 03:49:51 -07001716 */
Florin Coras36ebcff2019-09-12 18:36:44 -07001717static int
1718tcp_retransmit_sack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1719 u32 burst_size)
Dave Barach68b0fb02017-02-28 15:15:56 -05001720{
Florin Coras36ebcff2019-09-12 18:36:44 -07001721 u32 n_written = 0, offset, max_bytes, n_segs = 0;
Florin Coras11e9e352019-11-13 19:09:47 -08001722 u8 snd_limited = 0, can_rescue = 0;
1723 u32 bi, max_deq, burst_bytes;
Florin Coras93992a92017-05-24 18:03:56 -07001724 sack_scoreboard_hole_t *hole;
Florin Coras36ee9f12018-11-02 12:52:10 -07001725 vlib_main_t *vm = wrk->vm;
1726 vlib_buffer_t *b = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001727 sack_scoreboard_t *sb;
Florin Coras93992a92017-05-24 18:03:56 -07001728 int snd_space;
Dave Barach68b0fb02017-02-28 15:15:56 -05001729
Florin Coras36ebcff2019-09-12 18:36:44 -07001730 ASSERT (tcp_in_cong_recovery (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -05001731
Florin Corasa8e71c82019-10-22 19:01:39 -07001732 burst_bytes = transport_connection_tx_pacer_burst (&tc->connection);
Florin Corasc31dc312019-10-06 14:06:14 -07001733 burst_size = clib_min (burst_size, burst_bytes / tc->snd_mss);
1734 if (!burst_size)
1735 {
1736 tcp_program_retransmit (tc);
1737 return 0;
1738 }
1739
Florin Coras36ebcff2019-09-12 18:36:44 -07001740 if (tcp_in_recovery (tc))
1741 snd_space = tcp_available_cc_snd_space (tc);
1742 else
1743 snd_space = tcp_fastrecovery_prr_snd_space (tc);
1744
Florin Corasca1c8f32018-05-23 21:01:30 -07001745 if (snd_space < tc->snd_mss)
Florin Coras11e9e352019-11-13 19:09:47 -08001746 goto done;
Florin Corasc31dc312019-10-06 14:06:14 -07001747
Florin Coras36ee9f12018-11-02 12:52:10 -07001748 sb = &tc->sack_sb;
Florin Corasbe237bf2019-09-27 08:16:40 -07001749
1750 /* Check if snd_una is a lost retransmit */
Florin Coras8a8b05c2019-10-16 10:07:39 -07001751 if (pool_elts (sb->holes)
1752 && seq_gt (sb->high_sacked, tc->snd_congestion)
Florin Corasbe237bf2019-09-27 08:16:40 -07001753 && tc->rxt_head != tc->snd_una
1754 && tcp_retransmit_should_retry_head (tc, sb))
1755 {
Florin Corasbf1f8b72019-11-04 14:39:33 -08001756 max_bytes = clib_min (tc->snd_mss, tc->snd_congestion - tc->snd_una);
1757 n_written = tcp_prepare_retransmit_segment (wrk, tc, 0, max_bytes, &b);
Florin Corasbe237bf2019-09-27 08:16:40 -07001758 if (!n_written)
1759 {
1760 tcp_program_retransmit (tc);
1761 goto done;
1762 }
1763 bi = vlib_get_buffer_index (vm, b);
1764 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
1765 n_segs = 1;
1766
1767 tc->rxt_head = tc->snd_una;
1768 tc->rxt_delivered += n_written;
1769 tc->prr_delivered += n_written;
1770 ASSERT (tc->rxt_delivered <= tc->snd_rxt_bytes);
1771 }
1772
Florin Corasb3dce892019-10-30 09:22:14 -07001773 tcp_fastrecovery_first_off (tc);
1774
Florin Corasbe237bf2019-09-27 08:16:40 -07001775 TCP_EVT (TCP_EVT_CC_EVT, tc, 0);
Florin Coras36ee9f12018-11-02 12:52:10 -07001776 hole = scoreboard_get_hole (sb, sb->cur_rxt_hole);
1777
Florin Coras31c99552019-03-01 13:00:58 -08001778 max_deq = transport_max_tx_dequeue (&tc->connection);
Florin Coras47596832019-03-12 18:58:54 -07001779 max_deq -= tc->snd_nxt - tc->snd_una;
Florin Coras36ee9f12018-11-02 12:52:10 -07001780
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001781 while (snd_space > 0 && n_segs < burst_size)
Florin Coras93992a92017-05-24 18:03:56 -07001782 {
Florin Coras81cb8e42019-10-22 19:44:45 -07001783 hole = scoreboard_next_rxt_hole (sb, hole, max_deq != 0, &can_rescue,
Florin Coras36ee9f12018-11-02 12:52:10 -07001784 &snd_limited);
Florin Coras93992a92017-05-24 18:03:56 -07001785 if (!hole)
1786 {
Florin Coras36ebcff2019-09-12 18:36:44 -07001787 /* We are out of lost holes to retransmit so send some new data. */
Florin Corasbe237bf2019-09-27 08:16:40 -07001788 if (max_deq > tc->snd_mss)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001789 {
Florin Corasc31dc312019-10-06 14:06:14 -07001790 u32 n_segs_new;
1791 int av_wnd;
1792
Florin Coras3eba7f12019-11-15 17:56:48 -08001793 /* Make sure we don't exceed available window and leave space
1794 * for one more packet, to avoid zero window acks */
Florin Corasc31dc312019-10-06 14:06:14 -07001795 av_wnd = (int) tc->snd_wnd - (tc->snd_nxt - tc->snd_una);
Florin Coras3eba7f12019-11-15 17:56:48 -08001796 av_wnd = clib_max (av_wnd - tc->snd_mss, 0);
Florin Corasc31dc312019-10-06 14:06:14 -07001797 snd_space = clib_min (snd_space, av_wnd);
Florin Coras36ee9f12018-11-02 12:52:10 -07001798 snd_space = clib_min (max_deq, snd_space);
1799 burst_size = clib_min (burst_size - n_segs,
1800 snd_space / tc->snd_mss);
Florin Coras36ebcff2019-09-12 18:36:44 -07001801 burst_size = clib_min (burst_size, TCP_RXT_MAX_BURST);
1802 n_segs_new = tcp_transmit_unsent (wrk, tc, burst_size);
1803 if (max_deq > n_segs_new * tc->snd_mss)
1804 tcp_program_retransmit (tc);
1805
1806 n_segs += n_segs_new;
Florin Coras36ee9f12018-11-02 12:52:10 -07001807 goto done;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001808 }
Florin Coras93992a92017-05-24 18:03:56 -07001809
Florin Coras36ebcff2019-09-12 18:36:44 -07001810 if (tcp_in_recovery (tc) || !can_rescue
1811 || scoreboard_rescue_rxt_valid (sb, tc))
Florin Coras36ee9f12018-11-02 12:52:10 -07001812 break;
1813
Florin Coras93992a92017-05-24 18:03:56 -07001814 /* If rescue rxt undefined or less than snd_una then one segment of
1815 * up to SMSS octets that MUST include the highest outstanding
1816 * unSACKed sequence number SHOULD be returned, and RescueRxt set to
1817 * RecoveryPoint. HighRxt MUST NOT be updated.
1818 */
Florin Coras3eba7f12019-11-15 17:56:48 -08001819 hole = scoreboard_last_hole (sb);
1820 max_bytes = clib_min (tc->snd_mss, hole->end - hole->start);
Florin Coras1f152cd2017-08-18 19:28:03 -07001821 max_bytes = clib_min (max_bytes, snd_space);
Florin Coras3eba7f12019-11-15 17:56:48 -08001822 offset = hole->end - tc->snd_una - max_bytes;
Florin Corasbe72ae62018-11-01 11:23:03 -07001823 n_written = tcp_prepare_retransmit_segment (wrk, tc, offset,
1824 max_bytes, &b);
Florin Coras24793e32018-05-09 11:34:25 -07001825 if (!n_written)
1826 goto done;
1827
Florin Coras3eba7f12019-11-15 17:56:48 -08001828 sb->rescue_rxt = tc->snd_congestion;
Florin Corasb2215d62017-08-01 16:56:58 -07001829 bi = vlib_get_buffer_index (vm, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001830 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001831 n_segs += 1;
Florin Coras93992a92017-05-24 18:03:56 -07001832 break;
1833 }
1834
Florin Coras1f152cd2017-08-18 19:28:03 -07001835 max_bytes = clib_min (hole->end - sb->high_rxt, snd_space);
1836 max_bytes = snd_limited ? clib_min (max_bytes, tc->snd_mss) : max_bytes;
1837 if (max_bytes == 0)
1838 break;
Florin Coras36ee9f12018-11-02 12:52:10 -07001839
Florin Coras93992a92017-05-24 18:03:56 -07001840 offset = sb->high_rxt - tc->snd_una;
Florin Corasbe72ae62018-11-01 11:23:03 -07001841 n_written = tcp_prepare_retransmit_segment (wrk, tc, offset, max_bytes,
1842 &b);
Florin Coras36ee9f12018-11-02 12:52:10 -07001843 ASSERT (n_written <= snd_space);
Florin Coras93992a92017-05-24 18:03:56 -07001844
1845 /* Nothing left to retransmit */
1846 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001847 break;
Florin Coras93992a92017-05-24 18:03:56 -07001848
Florin Corasb2215d62017-08-01 16:56:58 -07001849 bi = vlib_get_buffer_index (vm, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001850 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras36ee9f12018-11-02 12:52:10 -07001851
1852 sb->high_rxt += n_written;
Florin Coras81cb8e42019-10-22 19:44:45 -07001853 ASSERT (seq_leq (sb->high_rxt, tc->snd_nxt));
1854
Florin Coras93992a92017-05-24 18:03:56 -07001855 snd_space -= n_written;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001856 n_segs += 1;
Florin Coras93992a92017-05-24 18:03:56 -07001857 }
1858
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001859 if (hole)
Florin Coras36ebcff2019-09-12 18:36:44 -07001860 tcp_program_retransmit (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001861
Florin Coras24793e32018-05-09 11:34:25 -07001862done:
Florin Coras36ebcff2019-09-12 18:36:44 -07001863
Florin Coras11e9e352019-11-13 19:09:47 -08001864 transport_connection_tx_pacer_reset_bucket (&tc->connection, 0);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001865 return n_segs;
Florin Coras93992a92017-05-24 18:03:56 -07001866}
1867
1868/**
1869 * Fast retransmit without SACK info
1870 */
Florin Coras36ebcff2019-09-12 18:36:44 -07001871static int
1872tcp_retransmit_no_sack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1873 u32 burst_size)
Florin Coras93992a92017-05-24 18:03:56 -07001874{
Florin Corasbf1f8b72019-11-04 14:39:33 -08001875 u32 n_written = 0, offset = 0, bi, max_deq, n_segs_now, max_bytes;
Florin Corasc31dc312019-10-06 14:06:14 -07001876 u32 burst_bytes, sent_bytes;
Florin Corasbe72ae62018-11-01 11:23:03 -07001877 vlib_main_t *vm = wrk->vm;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001878 int snd_space, n_segs = 0;
Florin Corasc31dc312019-10-06 14:06:14 -07001879 u8 cc_limited = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001880 vlib_buffer_t *b;
1881
Florin Corasbf1f8b72019-11-04 14:39:33 -08001882 ASSERT (tcp_in_cong_recovery (tc));
Florin Corasa436a422019-08-20 07:09:31 -07001883 TCP_EVT (TCP_EVT_CC_EVT, tc, 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001884
Florin Corasa8e71c82019-10-22 19:01:39 -07001885 burst_bytes = transport_connection_tx_pacer_burst (&tc->connection);
Florin Corasc31dc312019-10-06 14:06:14 -07001886 burst_size = clib_min (burst_size, burst_bytes / tc->snd_mss);
1887 if (!burst_size)
1888 {
1889 tcp_program_retransmit (tc);
1890 return 0;
1891 }
1892
Florin Coras87a9bf82019-06-12 11:26:35 -07001893 snd_space = tcp_available_cc_snd_space (tc);
Florin Corasc31dc312019-10-06 14:06:14 -07001894 cc_limited = snd_space < burst_bytes;
Florin Coras87a9bf82019-06-12 11:26:35 -07001895
Florin Coras36ee9f12018-11-02 12:52:10 -07001896 if (!tcp_fastrecovery_first (tc))
1897 goto send_unsent;
1898
1899 /* RFC 6582: [If a partial ack], retransmit the first unacknowledged
1900 * segment. */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001901 while (snd_space > 0 && n_segs < burst_size)
Dave Barach68b0fb02017-02-28 15:15:56 -05001902 {
Florin Corasbf1f8b72019-11-04 14:39:33 -08001903 max_bytes = clib_min (tc->snd_mss,
1904 tc->snd_congestion - tc->snd_una - offset);
1905 if (!max_bytes)
1906 break;
1907 n_written = tcp_prepare_retransmit_segment (wrk, tc, offset, max_bytes,
1908 &b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001909
1910 /* Nothing left to retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001911 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001912 break;
Dave Barach68b0fb02017-02-28 15:15:56 -05001913
Florin Corasb2215d62017-08-01 16:56:58 -07001914 bi = vlib_get_buffer_index (vm, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001915 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras6792ec02017-03-13 03:49:51 -07001916 snd_space -= n_written;
Florin Coras36ee9f12018-11-02 12:52:10 -07001917 offset += n_written;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001918 n_segs += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001919 }
1920
Florin Coras36ee9f12018-11-02 12:52:10 -07001921 if (n_segs == burst_size)
1922 goto done;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001923
Florin Coras36ee9f12018-11-02 12:52:10 -07001924send_unsent:
1925
1926 /* RFC 6582: Send a new segment if permitted by the new value of cwnd. */
Florin Coras9ece3c02018-11-05 11:06:53 -08001927 if (snd_space < tc->snd_mss || tc->snd_mss == 0)
Florin Coras36ee9f12018-11-02 12:52:10 -07001928 goto done;
1929
Florin Coras31c99552019-03-01 13:00:58 -08001930 max_deq = transport_max_tx_dequeue (&tc->connection);
Florin Coras47596832019-03-12 18:58:54 -07001931 max_deq -= tc->snd_nxt - tc->snd_una;
Florin Coras36ee9f12018-11-02 12:52:10 -07001932 if (max_deq)
1933 {
1934 snd_space = clib_min (max_deq, snd_space);
1935 burst_size = clib_min (burst_size - n_segs, snd_space / tc->snd_mss);
Florin Coras36ebcff2019-09-12 18:36:44 -07001936 n_segs_now = tcp_transmit_unsent (wrk, tc, burst_size);
Florin Corasbf1f8b72019-11-04 14:39:33 -08001937 if (n_segs_now && max_deq > n_segs_now * tc->snd_mss)
Florin Coras36ebcff2019-09-12 18:36:44 -07001938 tcp_program_retransmit (tc);
Florin Coras36ee9f12018-11-02 12:52:10 -07001939 n_segs += n_segs_now;
1940 }
1941
Florin Coras36ee9f12018-11-02 12:52:10 -07001942done:
1943 tcp_fastrecovery_first_off (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001944
Florin Corasc31dc312019-10-06 14:06:14 -07001945 sent_bytes = clib_min (n_segs * tc->snd_mss, burst_bytes);
1946 sent_bytes = cc_limited ? burst_bytes : sent_bytes;
1947 transport_connection_tx_pacer_update_bytes (&tc->connection, sent_bytes);
1948
1949 return n_segs;
Dave Barach68b0fb02017-02-28 15:15:56 -05001950}
Florin Coras26dd6de2019-07-23 23:54:47 -07001951
1952static int
1953tcp_send_acks (tcp_connection_t * tc, u32 max_burst_size)
1954{
1955 int j, n_acks;
1956
1957 if (!tc->pending_dupacks)
1958 {
Florin Corascb711a42019-10-16 19:28:17 -07001959 if (tcp_in_cong_recovery (tc) || !tcp_max_tx_deq (tc)
1960 || tc->state != TCP_STATE_ESTABLISHED)
1961 {
1962 tcp_send_ack (tc);
1963 return 1;
1964 }
1965 return 0;
Florin Coras26dd6de2019-07-23 23:54:47 -07001966 }
1967
1968 /* If we're supposed to send dupacks but have no ooo data
1969 * send only one ack */
1970 if (!vec_len (tc->snd_sacks))
1971 {
1972 tcp_send_ack (tc);
Florin Coras7fd59cc2020-03-12 15:50:57 +00001973 tc->dupacks_out += 1;
Florin Corascb711a42019-10-16 19:28:17 -07001974 tc->pending_dupacks = 0;
Florin Coras26dd6de2019-07-23 23:54:47 -07001975 return 1;
1976 }
1977
1978 /* Start with first sack block */
1979 tc->snd_sack_pos = 0;
1980
1981 /* Generate enough dupacks to cover all sack blocks. Do not generate
1982 * more sacks than the number of packets received. But do generate at
1983 * least 3, i.e., the number needed to signal congestion, if needed. */
1984 n_acks = vec_len (tc->snd_sacks) / TCP_OPTS_MAX_SACK_BLOCKS;
1985 n_acks = clib_min (n_acks, tc->pending_dupacks);
1986 n_acks = clib_max (n_acks, clib_min (tc->pending_dupacks, 3));
1987 for (j = 0; j < clib_min (n_acks, max_burst_size); j++)
1988 tcp_send_ack (tc);
1989
1990 if (n_acks < max_burst_size)
1991 {
1992 tc->pending_dupacks = 0;
1993 tc->snd_sack_pos = 0;
Florin Corasedfe0ee2019-07-29 18:13:25 -07001994 tc->dupacks_out += n_acks;
Florin Coras26dd6de2019-07-23 23:54:47 -07001995 return n_acks;
1996 }
1997 else
1998 {
1999 TCP_DBG ("constrained by burst size");
2000 tc->pending_dupacks = n_acks - max_burst_size;
Florin Corasedfe0ee2019-07-29 18:13:25 -07002001 tc->dupacks_out += max_burst_size;
Florin Coras26dd6de2019-07-23 23:54:47 -07002002 tcp_program_dupack (tc);
2003 return max_burst_size;
2004 }
2005}
2006
2007static int
Florin Coras36ebcff2019-09-12 18:36:44 -07002008tcp_do_retransmit (tcp_connection_t * tc, u32 max_burst_size)
Florin Coras26dd6de2019-07-23 23:54:47 -07002009{
Florin Coras26dd6de2019-07-23 23:54:47 -07002010 tcp_worker_ctx_t *wrk;
Florin Corasc31dc312019-10-06 14:06:14 -07002011 u32 n_segs;
Florin Coras26dd6de2019-07-23 23:54:47 -07002012
Florin Corasfd4c3fe2019-11-07 12:33:12 -08002013 if (PREDICT_FALSE (tc->state == TCP_STATE_CLOSED))
2014 return 0;
2015
Florin Coras26dd6de2019-07-23 23:54:47 -07002016 wrk = tcp_get_worker (tc->c_thread_index);
Florin Coras26dd6de2019-07-23 23:54:47 -07002017
Florin Corasc31dc312019-10-06 14:06:14 -07002018 if (tcp_opts_sack_permitted (&tc->rcv_opts))
2019 n_segs = tcp_retransmit_sack (wrk, tc, max_burst_size);
2020 else
2021 n_segs = tcp_retransmit_no_sack (wrk, tc, max_burst_size);
2022
Florin Coras26dd6de2019-07-23 23:54:47 -07002023 return n_segs;
2024}
2025
2026int
Florin Coras9f86d222020-03-23 15:34:22 +00002027tcp_session_custom_tx (void *conn, transport_send_params_t * sp)
Florin Coras26dd6de2019-07-23 23:54:47 -07002028{
2029 tcp_connection_t *tc = (tcp_connection_t *) conn;
2030 u32 n_segs = 0;
2031
Florin Coras36ebcff2019-09-12 18:36:44 -07002032 if (tcp_in_cong_recovery (tc) && (tc->flags & TCP_CONN_RXT_PENDING))
Florin Coras26dd6de2019-07-23 23:54:47 -07002033 {
Florin Coras36ebcff2019-09-12 18:36:44 -07002034 tc->flags &= ~TCP_CONN_RXT_PENDING;
Florin Coras9f86d222020-03-23 15:34:22 +00002035 n_segs = tcp_do_retransmit (tc, sp->max_burst_size);
Florin Coras26dd6de2019-07-23 23:54:47 -07002036 }
2037
2038 if (!(tc->flags & TCP_CONN_SNDACK))
2039 return n_segs;
2040
2041 tc->flags &= ~TCP_CONN_SNDACK;
2042
2043 /* We have retransmitted packets and no dupack */
2044 if (n_segs && !tc->pending_dupacks)
2045 return n_segs;
2046
Florin Coras9f86d222020-03-23 15:34:22 +00002047 if (sp->max_burst_size <= n_segs)
Florin Coras26dd6de2019-07-23 23:54:47 -07002048 {
2049 tcp_program_ack (tc);
Florin Coras9f86d222020-03-23 15:34:22 +00002050 return n_segs;
Florin Coras26dd6de2019-07-23 23:54:47 -07002051 }
2052
Florin Coras9f86d222020-03-23 15:34:22 +00002053 n_segs += tcp_send_acks (tc, sp->max_burst_size - n_segs);
Florin Coras26dd6de2019-07-23 23:54:47 -07002054
2055 return n_segs;
2056}
Filip Tehlare275bed2019-03-06 00:06:56 -08002057#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05002058
Florin Corasf9d05682018-04-26 08:26:52 -07002059static void
2060tcp_output_handle_link_local (tcp_connection_t * tc0, vlib_buffer_t * b0,
Florin Coras8b20bf52018-06-14 14:55:50 -07002061 u16 * next0, u32 * error0)
Florin Corasf9d05682018-04-26 08:26:52 -07002062{
2063 ip_adjacency_t *adj;
2064 adj_index_t ai;
2065
Florin Coras1c8ff632018-05-17 13:28:34 -07002066 /* Not thread safe but as long as the connection exists the adj should
2067 * not be removed */
Florin Corasf9d05682018-04-26 08:26:52 -07002068 ai = adj_nbr_find (FIB_PROTOCOL_IP6, VNET_LINK_IP6, &tc0->c_rmt_ip,
2069 tc0->sw_if_index);
2070 if (ai == ADJ_INDEX_INVALID)
2071 {
Florin Corasf9d05682018-04-26 08:26:52 -07002072 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
2073 *next0 = TCP_OUTPUT_NEXT_DROP;
2074 *error0 = TCP_ERROR_LINK_LOCAL_RW;
2075 return;
2076 }
2077
2078 adj = adj_get (ai);
Florin Coras1c8ff632018-05-17 13:28:34 -07002079 if (PREDICT_TRUE (adj->lookup_next_index == IP_LOOKUP_NEXT_REWRITE))
Florin Corasf9d05682018-04-26 08:26:52 -07002080 *next0 = TCP_OUTPUT_NEXT_IP_REWRITE;
2081 else if (adj->lookup_next_index == IP_LOOKUP_NEXT_ARP)
2082 *next0 = TCP_OUTPUT_NEXT_IP_ARP;
Florin Coras1c8ff632018-05-17 13:28:34 -07002083 else
2084 {
2085 *next0 = TCP_OUTPUT_NEXT_DROP;
2086 *error0 = TCP_ERROR_LINK_LOCAL_RW;
2087 }
2088 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = ai;
Florin Corasf9d05682018-04-26 08:26:52 -07002089}
2090
Florin Coras8b20bf52018-06-14 14:55:50 -07002091static void
2092tcp46_output_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2093 u32 * to_next, u32 n_bufs)
Dave Barach68b0fb02017-02-28 15:15:56 -05002094{
Florin Coras8b20bf52018-06-14 14:55:50 -07002095 tcp_connection_t *tc;
2096 tcp_tx_trace_t *t;
2097 vlib_buffer_t *b;
2098 tcp_header_t *th;
2099 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05002100
Florin Coras30928f82020-01-27 19:21:28 -08002101 for (i = 0; i < n_bufs; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05002102 {
Florin Coras8b20bf52018-06-14 14:55:50 -07002103 b = vlib_get_buffer (vm, to_next[i]);
Florin Coras30928f82020-01-27 19:21:28 -08002104 if (!(b->flags & VLIB_BUFFER_IS_TRACED))
2105 continue;
Florin Coras8b20bf52018-06-14 14:55:50 -07002106 th = vlib_buffer_get_current (b);
2107 tc = tcp_connection_get (vnet_buffer (b)->tcp.connection_index,
2108 vm->thread_index);
2109 t = vlib_add_trace (vm, node, b, sizeof (*t));
Dave Barach178cf492018-11-13 16:34:13 -05002110 clib_memcpy_fast (&t->tcp_header, th, sizeof (t->tcp_header));
2111 clib_memcpy_fast (&t->tcp_connection, tc, sizeof (t->tcp_connection));
Florin Coras8b20bf52018-06-14 14:55:50 -07002112 }
2113}
Dave Barach68b0fb02017-02-28 15:15:56 -05002114
Florin Coras0dbd5172018-06-25 16:19:34 -07002115always_inline void
Florin Coras8b20bf52018-06-14 14:55:50 -07002116tcp_output_push_ip (vlib_main_t * vm, vlib_buffer_t * b0,
2117 tcp_connection_t * tc0, u8 is_ip4)
2118{
Florin Corasf4ce6ba2019-11-20 18:34:58 -08002119 TCP_EVT (TCP_EVT_OUTPUT, tc0,
2120 ((tcp_header_t *) vlib_buffer_get_current (b0))->flags,
2121 b0->current_length);
Srikanth A02833ff2019-10-02 17:48:58 -07002122
Florin Coras8b20bf52018-06-14 14:55:50 -07002123 if (is_ip4)
Florin Corasf4ce6ba2019-11-20 18:34:58 -08002124 vlib_buffer_push_ip4 (vm, b0, &tc0->c_lcl_ip4, &tc0->c_rmt_ip4,
2125 IP_PROTOCOL_TCP, tcp_csum_offload (tc0));
Florin Coras8b20bf52018-06-14 14:55:50 -07002126 else
Florin Corasf4ce6ba2019-11-20 18:34:58 -08002127 vlib_buffer_push_ip6_custom (vm, b0, &tc0->c_lcl_ip6, &tc0->c_rmt_ip6,
2128 IP_PROTOCOL_TCP, tc0->ipv6_flow_label);
Florin Coras8b20bf52018-06-14 14:55:50 -07002129}
Dave Barach68b0fb02017-02-28 15:15:56 -05002130
Florin Coras0dbd5172018-06-25 16:19:34 -07002131always_inline void
Simon Zhang1146ff42019-09-02 22:54:00 +08002132tcp_check_if_gso (tcp_connection_t * tc, vlib_buffer_t * b)
2133{
Florin Corasbbcfaac2019-10-10 13:52:04 -07002134 if (PREDICT_TRUE (!(tc->cfg_flags & TCP_CFG_F_TSO)))
Simon Zhang1146ff42019-09-02 22:54:00 +08002135 return;
Florin Corasbbcfaac2019-10-10 13:52:04 -07002136
Simon Zhang8a047ed2019-09-24 21:16:56 +08002137 u16 data_len = b->current_length - sizeof (tcp_header_t) - tc->snd_opts_len;
Simon Zhang1146ff42019-09-02 22:54:00 +08002138
Simon Zhang8a047ed2019-09-24 21:16:56 +08002139 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_TOTAL_LENGTH_VALID))
2140 data_len += b->total_length_not_including_first_buffer;
2141
2142 if (PREDICT_TRUE (data_len <= tc->snd_mss))
2143 return;
2144 else
Simon Zhang1146ff42019-09-02 22:54:00 +08002145 {
2146 ASSERT ((b->flags & VNET_BUFFER_F_L3_HDR_OFFSET_VALID) != 0);
2147 ASSERT ((b->flags & VNET_BUFFER_F_L4_HDR_OFFSET_VALID) != 0);
2148 b->flags |= VNET_BUFFER_F_GSO;
2149 vnet_buffer2 (b)->gso_l4_hdr_sz =
2150 sizeof (tcp_header_t) + tc->snd_opts_len;
2151 vnet_buffer2 (b)->gso_size = tc->snd_mss;
2152 }
2153}
2154
2155always_inline void
Florin Coras8b20bf52018-06-14 14:55:50 -07002156tcp_output_handle_packet (tcp_connection_t * tc0, vlib_buffer_t * b0,
Florin Corasdf36f492019-08-18 18:09:28 -07002157 vlib_node_runtime_t * error_node, u16 * next0,
2158 u8 is_ip4)
Florin Coras8b20bf52018-06-14 14:55:50 -07002159{
Florin Coras540a8da2019-06-18 08:55:14 -07002160 /* If next_index is not drop use it */
Florin Coras07beade2019-06-20 12:18:31 -07002161 if (tc0->next_node_index)
2162 {
2163 *next0 = tc0->next_node_index;
2164 vnet_buffer (b0)->tcp.next_node_opaque = tc0->next_node_opaque;
2165 }
Florin Coras78dae002019-08-30 10:00:30 -07002166 else
2167 {
2168 *next0 = TCP_OUTPUT_NEXT_IP_LOOKUP;
2169 }
Florin Coras540a8da2019-06-18 08:55:14 -07002170
Florin Coras8b20bf52018-06-14 14:55:50 -07002171 vnet_buffer (b0)->sw_if_index[VLIB_TX] = tc0->c_fib_index;
2172 vnet_buffer (b0)->sw_if_index[VLIB_RX] = 0;
2173
2174 if (!is_ip4)
2175 {
Florin Corasdf36f492019-08-18 18:09:28 -07002176 u32 error0 = 0;
2177
Florin Coras8b20bf52018-06-14 14:55:50 -07002178 if (PREDICT_FALSE (ip6_address_is_link_local_unicast (&tc0->c_rmt_ip6)))
Florin Corasdf36f492019-08-18 18:09:28 -07002179 tcp_output_handle_link_local (tc0, b0, next0, &error0);
2180
2181 if (PREDICT_FALSE (error0))
2182 {
2183 b0->error = error_node->errors[error0];
2184 return;
2185 }
Florin Coras8b20bf52018-06-14 14:55:50 -07002186 }
2187
Florin Corasedfe0ee2019-07-29 18:13:25 -07002188 tc0->segs_out += 1;
Florin Coras8b20bf52018-06-14 14:55:50 -07002189}
2190
2191always_inline uword
2192tcp46_output_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2193 vlib_frame_t * frame, int is_ip4)
2194{
2195 u32 n_left_from, *from, thread_index = vm->thread_index;
2196 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
2197 u16 nexts[VLIB_FRAME_SIZE], *next;
2198
2199 from = vlib_frame_vector_args (frame);
2200 n_left_from = frame->n_vectors;
Florin Corasbe72ae62018-11-01 11:23:03 -07002201 tcp_set_time_now (tcp_get_worker (thread_index));
Florin Coras8b20bf52018-06-14 14:55:50 -07002202
2203 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
2204 tcp46_output_trace_frame (vm, node, from, n_left_from);
2205
2206 vlib_get_buffers (vm, from, bufs, n_left_from);
2207 b = bufs;
2208 next = nexts;
2209
2210 while (n_left_from >= 4)
2211 {
Florin Coras8b20bf52018-06-14 14:55:50 -07002212 tcp_connection_t *tc0, *tc1;
2213
2214 {
2215 vlib_prefetch_buffer_header (b[2], STORE);
2216 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
2217
2218 vlib_prefetch_buffer_header (b[3], STORE);
2219 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
2220 }
2221
Florin Coras8b20bf52018-06-14 14:55:50 -07002222 tc0 = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index,
2223 thread_index);
2224 tc1 = tcp_connection_get (vnet_buffer (b[1])->tcp.connection_index,
2225 thread_index);
2226
Florin Coras78dae002019-08-30 10:00:30 -07002227 if (PREDICT_TRUE (!tc0 + !tc1 == 0))
2228 {
2229 tcp_output_push_ip (vm, b[0], tc0, is_ip4);
2230 tcp_output_push_ip (vm, b[1], tc1, is_ip4);
Florin Coras8b20bf52018-06-14 14:55:50 -07002231
Simon Zhang1146ff42019-09-02 22:54:00 +08002232 tcp_check_if_gso (tc0, b[0]);
2233 tcp_check_if_gso (tc1, b[1]);
2234
Florin Coras573f44c2020-04-09 21:23:01 +00002235 tcp_output_handle_packet (tc0, b[0], node, &next[0], is_ip4);
2236 tcp_output_handle_packet (tc1, b[1], node, &next[1], is_ip4);
Florin Coras78dae002019-08-30 10:00:30 -07002237 }
2238 else
2239 {
2240 if (tc0 != 0)
2241 {
2242 tcp_output_push_ip (vm, b[0], tc0, is_ip4);
Simon Zhang1146ff42019-09-02 22:54:00 +08002243 tcp_check_if_gso (tc0, b[0]);
Florin Coras573f44c2020-04-09 21:23:01 +00002244 tcp_output_handle_packet (tc0, b[0], node, &next[0], is_ip4);
Florin Coras78dae002019-08-30 10:00:30 -07002245 }
2246 else
2247 {
Florin Coras573f44c2020-04-09 21:23:01 +00002248 b[0]->error = node->errors[TCP_ERROR_INVALID_CONNECTION];
Florin Coras78dae002019-08-30 10:00:30 -07002249 next[0] = TCP_OUTPUT_NEXT_DROP;
2250 }
2251 if (tc1 != 0)
2252 {
2253 tcp_output_push_ip (vm, b[1], tc1, is_ip4);
Simon Zhang1146ff42019-09-02 22:54:00 +08002254 tcp_check_if_gso (tc1, b[1]);
Florin Coras573f44c2020-04-09 21:23:01 +00002255 tcp_output_handle_packet (tc1, b[1], node, &next[1], is_ip4);
Florin Coras78dae002019-08-30 10:00:30 -07002256 }
2257 else
2258 {
Florin Coras573f44c2020-04-09 21:23:01 +00002259 b[1]->error = node->errors[TCP_ERROR_INVALID_CONNECTION];
Florin Coras78dae002019-08-30 10:00:30 -07002260 next[1] = TCP_OUTPUT_NEXT_DROP;
2261 }
2262 }
Florin Coras8b20bf52018-06-14 14:55:50 -07002263
2264 b += 2;
2265 next += 2;
2266 n_left_from -= 2;
2267 }
2268 while (n_left_from > 0)
2269 {
Florin Coras8b20bf52018-06-14 14:55:50 -07002270 tcp_connection_t *tc0;
2271
2272 if (n_left_from > 1)
2273 {
Florin Coras91ca4622018-06-30 11:27:59 -07002274 vlib_prefetch_buffer_header (b[1], STORE);
2275 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
Florin Coras8b20bf52018-06-14 14:55:50 -07002276 }
2277
Florin Coras8b20bf52018-06-14 14:55:50 -07002278 tc0 = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index,
2279 thread_index);
2280
Florin Coras78dae002019-08-30 10:00:30 -07002281 if (PREDICT_TRUE (tc0 != 0))
2282 {
2283 tcp_output_push_ip (vm, b[0], tc0, is_ip4);
Simon Zhang1146ff42019-09-02 22:54:00 +08002284 tcp_check_if_gso (tc0, b[0]);
Florin Coras573f44c2020-04-09 21:23:01 +00002285 tcp_output_handle_packet (tc0, b[0], node, &next[0], is_ip4);
Florin Coras78dae002019-08-30 10:00:30 -07002286 }
2287 else
2288 {
Florin Coras573f44c2020-04-09 21:23:01 +00002289 b[0]->error = node->errors[TCP_ERROR_INVALID_CONNECTION];
Florin Coras78dae002019-08-30 10:00:30 -07002290 next[0] = TCP_OUTPUT_NEXT_DROP;
2291 }
Florin Coras8b20bf52018-06-14 14:55:50 -07002292
2293 b += 1;
2294 next += 1;
2295 n_left_from -= 1;
2296 }
2297
2298 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
Florin Corasdf36f492019-08-18 18:09:28 -07002299 vlib_node_increment_counter (vm, tcp_node_index (output, is_ip4),
2300 TCP_ERROR_PKTS_SENT, frame->n_vectors);
Florin Coras8b20bf52018-06-14 14:55:50 -07002301 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002302}
2303
Filip Tehlare275bed2019-03-06 00:06:56 -08002304VLIB_NODE_FN (tcp4_output_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
2305 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002306{
2307 return tcp46_output_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2308}
2309
Filip Tehlare275bed2019-03-06 00:06:56 -08002310VLIB_NODE_FN (tcp6_output_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
2311 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002312{
2313 return tcp46_output_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2314}
2315
Florin Corase69f4952017-03-07 10:06:24 -08002316/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002317VLIB_REGISTER_NODE (tcp4_output_node) =
2318{
Dave Barachf970d2f2018-11-26 18:34:33 -05002319 .name = "tcp4-output",
2320 /* Takes a vector of packets. */
2321 .vector_size = sizeof (u32),
2322 .n_errors = TCP_N_ERROR,
Dave Barach7fff3d22018-11-27 16:52:59 -05002323 .protocol_hint = VLIB_NODE_PROTO_HINT_TCP,
Dave Barachf970d2f2018-11-26 18:34:33 -05002324 .error_strings = tcp_error_strings,
2325 .n_next_nodes = TCP_OUTPUT_N_NEXT,
2326 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002327#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
2328 foreach_tcp4_output_next
2329#undef _
Dave Barachf970d2f2018-11-26 18:34:33 -05002330 },
2331 .format_buffer = format_tcp_header,
2332 .format_trace = format_tcp_tx_trace,
Florin Corase69f4952017-03-07 10:06:24 -08002333};
2334/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002335
Florin Corase69f4952017-03-07 10:06:24 -08002336/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002337VLIB_REGISTER_NODE (tcp6_output_node) =
2338{
Florin Corase69f4952017-03-07 10:06:24 -08002339 .name = "tcp6-output",
Dave Barach68b0fb02017-02-28 15:15:56 -05002340 /* Takes a vector of packets. */
Florin Corase69f4952017-03-07 10:06:24 -08002341 .vector_size = sizeof (u32),
2342 .n_errors = TCP_N_ERROR,
Dave Barach7fff3d22018-11-27 16:52:59 -05002343 .protocol_hint = VLIB_NODE_PROTO_HINT_TCP,
Florin Corase69f4952017-03-07 10:06:24 -08002344 .error_strings = tcp_error_strings,
2345 .n_next_nodes = TCP_OUTPUT_N_NEXT,
2346 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002347#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
2348 foreach_tcp6_output_next
2349#undef _
Florin Corase69f4952017-03-07 10:06:24 -08002350 },
2351 .format_buffer = format_tcp_header,
2352 .format_trace = format_tcp_tx_trace,
2353};
2354/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002355
Dave Barach68b0fb02017-02-28 15:15:56 -05002356typedef enum _tcp_reset_next
2357{
2358 TCP_RESET_NEXT_DROP,
2359 TCP_RESET_NEXT_IP_LOOKUP,
2360 TCP_RESET_N_NEXT
2361} tcp_reset_next_t;
2362
2363#define foreach_tcp4_reset_next \
2364 _(DROP, "error-drop") \
2365 _(IP_LOOKUP, "ip4-lookup")
2366
2367#define foreach_tcp6_reset_next \
2368 _(DROP, "error-drop") \
2369 _(IP_LOOKUP, "ip6-lookup")
2370
2371static uword
2372tcp46_send_reset_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2373 vlib_frame_t * from_frame, u8 is_ip4)
2374{
Florin Coras360336f2020-02-13 18:46:18 +00002375 u32 error0 = TCP_ERROR_RST_SENT, next0 = TCP_RESET_NEXT_IP_LOOKUP;
Dave Barach68b0fb02017-02-28 15:15:56 -05002376 u32 n_left_from, next_index, *from, *to_next;
Dave Barach68b0fb02017-02-28 15:15:56 -05002377
2378 from = vlib_frame_vector_args (from_frame);
2379 n_left_from = from_frame->n_vectors;
2380
2381 next_index = node->cached_next_index;
2382
2383 while (n_left_from > 0)
2384 {
2385 u32 n_left_to_next;
2386
2387 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2388
2389 while (n_left_from > 0 && n_left_to_next > 0)
2390 {
Dave Barach68b0fb02017-02-28 15:15:56 -05002391 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002392 tcp_tx_trace_t *t0;
2393 tcp_header_t *th0;
Florin Coras360336f2020-02-13 18:46:18 +00002394 u32 bi0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002395
2396 bi0 = from[0];
2397 to_next[0] = bi0;
2398 from += 1;
2399 to_next += 1;
2400 n_left_from -= 1;
2401 n_left_to_next -= 1;
2402
2403 b0 = vlib_get_buffer (vm, bi0);
Florin Coras360336f2020-02-13 18:46:18 +00002404 tcp_make_reset_in_place (vm, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002405
2406 /* Prepare to send to IP lookup */
Florin Corasf988e692017-11-27 04:34:14 -05002407 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002408
Florin Corase69f4952017-03-07 10:06:24 -08002409 b0->error = node->errors[error0];
Damjan Marion213b5aa2017-07-13 21:19:27 +02002410 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002411 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2412 {
Clement Durand6cf260c2017-04-13 13:27:04 +02002413 th0 = vlib_buffer_get_current (b0);
2414 if (is_ip4)
2415 th0 = ip4_next_header ((ip4_header_t *) th0);
2416 else
2417 th0 = ip6_next_header ((ip6_header_t *) th0);
Clement Durand6cf260c2017-04-13 13:27:04 +02002418 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05002419 clib_memcpy_fast (&t0->tcp_header, th0,
2420 sizeof (t0->tcp_header));
Dave Barach68b0fb02017-02-28 15:15:56 -05002421 }
2422
2423 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2424 n_left_to_next, bi0, next0);
2425 }
2426 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2427 }
2428 return from_frame->n_vectors;
2429}
2430
Filip Tehlare275bed2019-03-06 00:06:56 -08002431VLIB_NODE_FN (tcp4_reset_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
2432 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002433{
2434 return tcp46_send_reset_inline (vm, node, from_frame, 1);
2435}
2436
Filip Tehlare275bed2019-03-06 00:06:56 -08002437VLIB_NODE_FN (tcp6_reset_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
2438 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002439{
2440 return tcp46_send_reset_inline (vm, node, from_frame, 0);
2441}
2442
2443/* *INDENT-OFF* */
2444VLIB_REGISTER_NODE (tcp4_reset_node) = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002445 .name = "tcp4-reset",
2446 .vector_size = sizeof (u32),
2447 .n_errors = TCP_N_ERROR,
2448 .error_strings = tcp_error_strings,
2449 .n_next_nodes = TCP_RESET_N_NEXT,
2450 .next_nodes = {
2451#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2452 foreach_tcp4_reset_next
2453#undef _
2454 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002455 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002456};
2457/* *INDENT-ON* */
2458
2459/* *INDENT-OFF* */
2460VLIB_REGISTER_NODE (tcp6_reset_node) = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002461 .name = "tcp6-reset",
2462 .vector_size = sizeof (u32),
2463 .n_errors = TCP_N_ERROR,
2464 .error_strings = tcp_error_strings,
2465 .n_next_nodes = TCP_RESET_N_NEXT,
2466 .next_nodes = {
2467#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2468 foreach_tcp6_reset_next
2469#undef _
2470 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002471 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002472};
2473/* *INDENT-ON* */
2474
Dave Barach68b0fb02017-02-28 15:15:56 -05002475/*
2476 * fd.io coding-style-patch-verification: ON
2477 *
2478 * Local Variables:
2479 * eval: (c-set-style "gnu")
2480 * End:
2481 */