blob: 6bcca31ca77c0338f99e7351d50f86945ee92231 [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);
Florin Corasf20fd1a2019-03-28 13:21:19 -0700123 if (PREDICT_FALSE (available_space < tc->rcv_opts.mss))
Florin Coras182d2192019-07-24 10:27:20 -0700124 {
125 tc->rcv_wnd = 0;
126 return;
127 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500128
Florin Corase04c2992017-03-01 08:17:34 -0800129 /*
130 * Use the above and what we know about what we've previously advertised
131 * to compute the new window
132 */
Florin Coras6792ec02017-03-13 03:49:51 -0700133 observed_wnd = (i32) tc->rcv_wnd - (tc->rcv_nxt - tc->rcv_las);
Florin Corase04c2992017-03-01 08:17:34 -0800134
135 /* Bad. Thou shalt not shrink */
Florin Corasf20fd1a2019-03-28 13:21:19 -0700136 if (PREDICT_FALSE ((i32) available_space < observed_wnd))
Florin Corase04c2992017-03-01 08:17:34 -0800137 {
Florin Corasf20fd1a2019-03-28 13:21:19 -0700138 wnd = clib_max (observed_wnd, 0);
Florin Corasa436a422019-08-20 07:09:31 -0700139 TCP_EVT (TCP_EVT_RCV_WND_SHRUNK, tc, observed_wnd, available_space);
Florin Corase04c2992017-03-01 08:17:34 -0800140 }
Florin Coras6792ec02017-03-13 03:49:51 -0700141 else
Florin Corase04c2992017-03-01 08:17:34 -0800142 {
Florin Coras6792ec02017-03-13 03:49:51 -0700143 wnd = available_space;
Florin Corase04c2992017-03-01 08:17:34 -0800144 }
145
Florin Corasf2fe3532020-05-08 16:23:38 +0000146 /* Make sure we have a multiple of 1 << rcv_wscale. We round up to
147 * avoid advertising a window less than mss which could happen if
148 * 1 << rcv_wscale < mss */
Florin Coras3e350af2017-03-30 02:54:28 -0700149 if (wnd && tc->rcv_wscale)
Florin Corasf2fe3532020-05-08 16:23:38 +0000150 wnd = round_pow2 (wnd, 1 << tc->rcv_wscale);
Florin Coras6792ec02017-03-13 03:49:51 -0700151
152 tc->rcv_wnd = clib_min (wnd, TCP_WND_MAX << tc->rcv_wscale);
Dave Barach68b0fb02017-02-28 15:15:56 -0500153}
154
155/**
Florin Coras0dbd5172018-06-25 16:19:34 -0700156 * Compute and return window to advertise, scaled as per RFC1323
157 */
Florin Coras47596832019-03-12 18:58:54 -0700158static inline u32
Florin Coras0dbd5172018-06-25 16:19:34 -0700159tcp_window_to_advertise (tcp_connection_t * tc, tcp_state_t state)
160{
161 if (state < TCP_STATE_ESTABLISHED)
162 return tcp_initial_window_to_advertise (tc);
163
164 tcp_update_rcv_wnd (tc);
Florin Coras0dbd5172018-06-25 16:19:34 -0700165 return tc->rcv_wnd >> tc->rcv_wscale;
166}
167
Florin Coras0dbd5172018-06-25 16:19:34 -0700168static int
Florin Corascedcf602019-08-27 12:15:43 -0700169tcp_make_syn_options (tcp_connection_t * tc, tcp_options_t * opts)
Dave Barach68b0fb02017-02-28 15:15:56 -0500170{
171 u8 len = 0;
172
173 opts->flags |= TCP_OPTS_FLAG_MSS;
Florin Corascedcf602019-08-27 12:15:43 -0700174 opts->mss = tc->mss;
Dave Barach68b0fb02017-02-28 15:15:56 -0500175 len += TCP_OPTION_LEN_MSS;
176
177 opts->flags |= TCP_OPTS_FLAG_WSCALE;
Florin Corascedcf602019-08-27 12:15:43 -0700178 opts->wscale = tc->rcv_wscale;
Dave Barach68b0fb02017-02-28 15:15:56 -0500179 len += TCP_OPTION_LEN_WINDOW_SCALE;
180
181 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
182 opts->tsval = tcp_time_now ();
183 opts->tsecr = 0;
184 len += TCP_OPTION_LEN_TIMESTAMP;
185
Florin Coras93992a92017-05-24 18:03:56 -0700186 if (TCP_USE_SACKS)
187 {
188 opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
189 len += TCP_OPTION_LEN_SACK_PERMITTED;
190 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500191
192 /* Align to needed boundary */
193 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
194 return len;
195}
196
Florin Coras0dbd5172018-06-25 16:19:34 -0700197static int
Dave Barach68b0fb02017-02-28 15:15:56 -0500198tcp_make_synack_options (tcp_connection_t * tc, tcp_options_t * opts)
199{
200 u8 len = 0;
201
202 opts->flags |= TCP_OPTS_FLAG_MSS;
Florin Corasc8343412017-05-04 14:25:50 -0700203 opts->mss = tc->mss;
Dave Barach68b0fb02017-02-28 15:15:56 -0500204 len += TCP_OPTION_LEN_MSS;
205
Florin Coras93992a92017-05-24 18:03:56 -0700206 if (tcp_opts_wscale (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500207 {
208 opts->flags |= TCP_OPTS_FLAG_WSCALE;
209 opts->wscale = tc->rcv_wscale;
210 len += TCP_OPTION_LEN_WINDOW_SCALE;
211 }
212
Florin Coras93992a92017-05-24 18:03:56 -0700213 if (tcp_opts_tstamp (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500214 {
215 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
216 opts->tsval = tcp_time_now ();
217 opts->tsecr = tc->tsval_recent;
218 len += TCP_OPTION_LEN_TIMESTAMP;
219 }
220
Florin Coras93992a92017-05-24 18:03:56 -0700221 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500222 {
223 opts->flags |= TCP_OPTS_FLAG_SACK_PERMITTED;
224 len += TCP_OPTION_LEN_SACK_PERMITTED;
225 }
226
227 /* Align to needed boundary */
228 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
229 return len;
230}
231
Florin Coras0dbd5172018-06-25 16:19:34 -0700232static int
Dave Barach68b0fb02017-02-28 15:15:56 -0500233tcp_make_established_options (tcp_connection_t * tc, tcp_options_t * opts)
234{
235 u8 len = 0;
236
237 opts->flags = 0;
238
Florin Coras93992a92017-05-24 18:03:56 -0700239 if (tcp_opts_tstamp (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500240 {
241 opts->flags |= TCP_OPTS_FLAG_TSTAMP;
Vladimir Kropylev1cfcb782019-07-02 11:25:26 +0300242 opts->tsval = tcp_tstamp (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500243 opts->tsecr = tc->tsval_recent;
244 len += TCP_OPTION_LEN_TIMESTAMP;
245 }
Florin Coras93992a92017-05-24 18:03:56 -0700246 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Dave Barach68b0fb02017-02-28 15:15:56 -0500247 {
248 if (vec_len (tc->snd_sacks))
249 {
250 opts->flags |= TCP_OPTS_FLAG_SACK;
Florin Corase5b17912019-02-21 16:46:24 -0800251 if (tc->snd_sack_pos >= vec_len (tc->snd_sacks))
252 tc->snd_sack_pos = 0;
253 opts->sacks = &tc->snd_sacks[tc->snd_sack_pos];
254 opts->n_sack_blocks = vec_len (tc->snd_sacks) - tc->snd_sack_pos;
255 opts->n_sack_blocks = clib_min (opts->n_sack_blocks,
Florin Corasc28764f2017-04-26 00:08:42 -0700256 TCP_OPTS_MAX_SACK_BLOCKS);
Florin Corase5b17912019-02-21 16:46:24 -0800257 tc->snd_sack_pos += opts->n_sack_blocks;
Dave Barach68b0fb02017-02-28 15:15:56 -0500258 len += 2 + TCP_OPTION_LEN_SACK_BLOCK * opts->n_sack_blocks;
259 }
260 }
261
262 /* Align to needed boundary */
263 len += (TCP_OPTS_ALIGN - len % TCP_OPTS_ALIGN) % TCP_OPTS_ALIGN;
264 return len;
265}
266
267always_inline int
268tcp_make_options (tcp_connection_t * tc, tcp_options_t * opts,
269 tcp_state_t state)
270{
271 switch (state)
272 {
273 case TCP_STATE_ESTABLISHED:
Florin Coras25579b42018-06-06 17:55:02 -0700274 case TCP_STATE_CLOSE_WAIT:
Florin Coras54ddf432018-12-21 13:54:09 -0800275 case TCP_STATE_FIN_WAIT_1:
276 case TCP_STATE_LAST_ACK:
277 case TCP_STATE_CLOSING:
278 case TCP_STATE_FIN_WAIT_2:
279 case TCP_STATE_TIME_WAIT:
280 case TCP_STATE_CLOSED:
Dave Barach68b0fb02017-02-28 15:15:56 -0500281 return tcp_make_established_options (tc, opts);
282 case TCP_STATE_SYN_RCVD:
283 return tcp_make_synack_options (tc, opts);
284 case TCP_STATE_SYN_SENT:
Florin Corascedcf602019-08-27 12:15:43 -0700285 return tcp_make_syn_options (tc, opts);
Dave Barach68b0fb02017-02-28 15:15:56 -0500286 default:
Florin Coras371ca502018-02-21 12:07:41 -0800287 clib_warning ("State not handled! %d", state);
Dave Barach68b0fb02017-02-28 15:15:56 -0500288 return 0;
289 }
290}
291
Florin Corasc8343412017-05-04 14:25:50 -0700292/**
Florin Corasb26743d2018-06-26 09:31:04 -0700293 * Update burst send vars
294 *
295 * - Updates snd_mss to reflect the effective segment size that we can send
296 * by taking into account all TCP options, including SACKs.
297 * - Cache 'on the wire' options for reuse
298 * - Updates receive window which can be reused for a burst.
299 *
300 * This should *only* be called when doing bursts
Florin Corasc8343412017-05-04 14:25:50 -0700301 */
302void
Florin Corasb26743d2018-06-26 09:31:04 -0700303tcp_update_burst_snd_vars (tcp_connection_t * tc)
Florin Corasc8343412017-05-04 14:25:50 -0700304{
Florin Corasb26743d2018-06-26 09:31:04 -0700305 tcp_main_t *tm = &tcp_main;
306
Florin Corasc8343412017-05-04 14:25:50 -0700307 /* Compute options to be used for connection. These may be reused when
308 * sending data or to compute the effective mss (snd_mss) */
Florin Corasb26743d2018-06-26 09:31:04 -0700309 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts,
310 TCP_STATE_ESTABLISHED);
Florin Corasc8343412017-05-04 14:25:50 -0700311
312 /* XXX check if MTU has been updated */
Florin Coras93992a92017-05-24 18:03:56 -0700313 tc->snd_mss = clib_min (tc->mss, tc->rcv_opts.mss) - tc->snd_opts_len;
Florin Corasdb84e572017-05-09 18:54:52 -0700314 ASSERT (tc->snd_mss > 0);
Florin Corasb26743d2018-06-26 09:31:04 -0700315
316 tcp_options_write (tm->wrk_ctx[tc->c_thread_index].cached_opts,
317 &tc->snd_opts);
318
319 tcp_update_rcv_wnd (tc);
Florin Coras52814732019-06-12 15:38:19 -0700320
Florin Corasbbcfaac2019-10-10 13:52:04 -0700321 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
Florin Corasd6ae4bf2019-10-12 18:10:20 -0700322 tcp_bt_check_app_limited (tc);
Florin Corasca2831a2019-07-04 17:05:59 -0700323
324 if (tc->snd_una == tc->snd_nxt)
Florin Corasc31dc312019-10-06 14:06:14 -0700325 {
326 tcp_cc_event (tc, TCP_CC_EVT_START_TX);
Florin Coras11e9e352019-11-13 19:09:47 -0800327 tcp_connection_tx_pacer_reset (tc, tc->cwnd, TRANSPORT_PACER_MIN_BURST);
Florin Corasc31dc312019-10-06 14:06:14 -0700328 }
Florin Corasc8343412017-05-04 14:25:50 -0700329}
330
Filip Tehlare275bed2019-03-06 00:06:56 -0800331#endif /* CLIB_MARCH_VARIANT */
Florin Corasc8343412017-05-04 14:25:50 -0700332
Florin Coras0dbd5172018-06-25 16:19:34 -0700333static void *
Dave Barach68b0fb02017-02-28 15:15:56 -0500334tcp_reuse_buffer (vlib_main_t * vm, vlib_buffer_t * b)
335{
Florin Corasb2215d62017-08-01 16:56:58 -0700336 if (b->flags & VLIB_BUFFER_NEXT_PRESENT)
337 vlib_buffer_free_one (vm, b->next_buffer);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400338 /* Zero all flags but free list index and trace flag */
339 b->flags &= VLIB_BUFFER_NEXT_PRESENT - 1;
Florin Coras1f152cd2017-08-18 19:28:03 -0700340 b->current_data = 0;
341 b->current_length = 0;
342 b->total_length_not_including_first_buffer = 0;
343 vnet_buffer (b)->tcp.flags = 0;
Florin Corasb2215d62017-08-01 16:56:58 -0700344
Dave Barach68b0fb02017-02-28 15:15:56 -0500345 /* Leave enough space for headers */
Florin Coras1ee78302019-02-05 15:51:15 -0800346 return vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
Florin Coras1f152cd2017-08-18 19:28:03 -0700347}
348
Filip Tehlare275bed2019-03-06 00:06:56 -0800349#ifndef CLIB_MARCH_VARIANT
Florin Coras0dbd5172018-06-25 16:19:34 -0700350static void *
Florin Coras1f152cd2017-08-18 19:28:03 -0700351tcp_init_buffer (vlib_main_t * vm, vlib_buffer_t * b)
352{
353 ASSERT ((b->flags & VLIB_BUFFER_NEXT_PRESENT) == 0);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400354 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Florin Coras1f152cd2017-08-18 19:28:03 -0700355 b->total_length_not_including_first_buffer = 0;
Florin Coras24793e32018-05-09 11:34:25 -0700356 b->current_data = 0;
Florin Corasd79b41e2017-03-04 05:37:52 -0800357 vnet_buffer (b)->tcp.flags = 0;
Florin Corasf988e692017-11-27 04:34:14 -0500358 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (b);
Florin Coras1f152cd2017-08-18 19:28:03 -0700359 /* Leave enough space for headers */
Florin Coras1ee78302019-02-05 15:51:15 -0800360 return vlib_buffer_make_headroom (b, TRANSPORT_MAX_HDRS_LEN);
Dave Barach68b0fb02017-02-28 15:15:56 -0500361}
362
Srikanth A02833ff2019-10-02 17:48:58 -0700363
364/* Compute TCP checksum in software when offloading is disabled for a connection */
365u16
366ip6_tcp_compute_checksum_custom (vlib_main_t * vm, vlib_buffer_t * p0,
367 ip46_address_t * src, ip46_address_t * dst)
368{
369 ip_csum_t sum0;
370 u16 payload_length_host_byte_order;
371 u32 i;
372
373 /* Initialize checksum with ip header. */
374 sum0 = clib_host_to_net_u16 (vlib_buffer_length_in_chain (vm, p0)) +
375 clib_host_to_net_u16 (IP_PROTOCOL_TCP);
376 payload_length_host_byte_order = vlib_buffer_length_in_chain (vm, p0);
377
378 for (i = 0; i < ARRAY_LEN (src->ip6.as_uword); i++)
379 {
380 sum0 = ip_csum_with_carry
381 (sum0, clib_mem_unaligned (&src->ip6.as_uword[i], uword));
382 sum0 = ip_csum_with_carry
383 (sum0, clib_mem_unaligned (&dst->ip6.as_uword[i], uword));
384 }
385
386 return ip_calculate_l4_checksum (vm, p0, sum0,
387 payload_length_host_byte_order, NULL, 0,
388 NULL);
389}
390
391u16
392ip4_tcp_compute_checksum_custom (vlib_main_t * vm, vlib_buffer_t * p0,
393 ip46_address_t * src, ip46_address_t * dst)
394{
395 ip_csum_t sum0;
396 u32 payload_length_host_byte_order;
397
398 payload_length_host_byte_order = vlib_buffer_length_in_chain (vm, p0);
399 sum0 =
400 clib_host_to_net_u32 (payload_length_host_byte_order +
401 (IP_PROTOCOL_TCP << 16));
402
403 sum0 = ip_csum_with_carry (sum0, clib_mem_unaligned (&src->ip4, u32));
404 sum0 = ip_csum_with_carry (sum0, clib_mem_unaligned (&dst->ip4, u32));
405
406 return ip_calculate_l4_checksum (vm, p0, sum0,
407 payload_length_host_byte_order, NULL, 0,
408 NULL);
409}
410
411static inline u16
412tcp_compute_checksum (tcp_connection_t * tc, vlib_buffer_t * b)
413{
414 u16 checksum = 0;
Florin Corasbbcfaac2019-10-10 13:52:04 -0700415 if (PREDICT_FALSE (tc->cfg_flags & TCP_CFG_F_NO_CSUM_OFFLOAD))
Srikanth A02833ff2019-10-02 17:48:58 -0700416 {
417 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
418 vlib_main_t *vm = wrk->vm;
419
420 if (tc->c_is_ip4)
421 checksum = ip4_tcp_compute_checksum_custom
422 (vm, b, &tc->c_lcl_ip, &tc->c_rmt_ip);
423 else
424 checksum = ip6_tcp_compute_checksum_custom
425 (vm, b, &tc->c_lcl_ip, &tc->c_rmt_ip);
426 }
427 else
428 {
429 b->flags |= VNET_BUFFER_F_OFFLOAD_TCP_CKSUM;
430 }
431 return checksum;
432}
433
Dave Barach68b0fb02017-02-28 15:15:56 -0500434/**
435 * Prepare ACK
436 */
Florin Corasbdf7fd62019-01-31 17:31:01 -0800437static inline void
Dave Barach68b0fb02017-02-28 15:15:56 -0500438tcp_make_ack_i (tcp_connection_t * tc, vlib_buffer_t * b, tcp_state_t state,
439 u8 flags)
440{
441 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
442 u8 tcp_opts_len, tcp_hdr_opts_len;
443 tcp_header_t *th;
444 u16 wnd;
445
446 wnd = tcp_window_to_advertise (tc, state);
447
448 /* Make and write options */
449 tcp_opts_len = tcp_make_established_options (tc, snd_opts);
450 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
451
452 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
453 tc->rcv_nxt, tcp_hdr_opts_len, flags, wnd);
454
455 tcp_options_write ((u8 *) (th + 1), snd_opts);
Srikanth A02833ff2019-10-02 17:48:58 -0700456
457 th->checksum = tcp_compute_checksum (tc, b);
458
Dave Barach68b0fb02017-02-28 15:15:56 -0500459 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Vladimir Kropylev398afbd2019-06-25 00:06:52 +0300460
461 if (wnd == 0)
462 tcp_zero_rwnd_sent_on (tc);
463 else
464 tcp_zero_rwnd_sent_off (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500465}
466
467/**
468 * Convert buffer to ACK
469 */
Florin Corasbdf7fd62019-01-31 17:31:01 -0800470static inline void
Dave Barach68b0fb02017-02-28 15:15:56 -0500471tcp_make_ack (tcp_connection_t * tc, vlib_buffer_t * b)
472{
Dave Barach68b0fb02017-02-28 15:15:56 -0500473 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, TCP_FLAG_ACK);
Florin Corasa436a422019-08-20 07:09:31 -0700474 TCP_EVT (TCP_EVT_ACK_SENT, tc);
Florin Coras3e350af2017-03-30 02:54:28 -0700475 tc->rcv_las = tc->rcv_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500476}
477
478/**
479 * Convert buffer to FIN-ACK
480 */
Florin Coras999840c2020-03-18 20:31:34 +0000481static void
Florin Corasd79b41e2017-03-04 05:37:52 -0800482tcp_make_fin (tcp_connection_t * tc, vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500483{
Florin Corasbdf7fd62019-01-31 17:31:01 -0800484 tcp_make_ack_i (tc, b, TCP_STATE_ESTABLISHED, TCP_FLAG_FIN | TCP_FLAG_ACK);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400485}
Dave Barach68b0fb02017-02-28 15:15:56 -0500486
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400487/**
488 * Convert buffer to SYN
489 */
490void
491tcp_make_syn (tcp_connection_t * tc, vlib_buffer_t * b)
492{
493 u8 tcp_hdr_opts_len, tcp_opts_len;
494 tcp_header_t *th;
495 u16 initial_wnd;
496 tcp_options_t snd_opts;
497
498 initial_wnd = tcp_initial_window_to_advertise (tc);
499
500 /* Make and write options */
Dave Barachb7b92992018-10-17 10:38:51 -0400501 clib_memset (&snd_opts, 0, sizeof (snd_opts));
Florin Corascedcf602019-08-27 12:15:43 -0700502 tcp_opts_len = tcp_make_syn_options (tc, &snd_opts);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400503 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
504
505 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
506 tc->rcv_nxt, tcp_hdr_opts_len, TCP_FLAG_SYN,
507 initial_wnd);
508 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
509 tcp_options_write ((u8 *) (th + 1), &snd_opts);
Srikanth A02833ff2019-10-02 17:48:58 -0700510 th->checksum = tcp_compute_checksum (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500511}
512
513/**
514 * Convert buffer to SYN-ACK
515 */
Florin Coras999840c2020-03-18 20:31:34 +0000516static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500517tcp_make_synack (tcp_connection_t * tc, vlib_buffer_t * b)
518{
Dave Barach68b0fb02017-02-28 15:15:56 -0500519 tcp_options_t _snd_opts, *snd_opts = &_snd_opts;
520 u8 tcp_opts_len, tcp_hdr_opts_len;
521 tcp_header_t *th;
522 u16 initial_wnd;
Dave Barach68b0fb02017-02-28 15:15:56 -0500523
Dave Barachb7b92992018-10-17 10:38:51 -0400524 clib_memset (snd_opts, 0, sizeof (*snd_opts));
Dave Barach68b0fb02017-02-28 15:15:56 -0500525 initial_wnd = tcp_initial_window_to_advertise (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500526 tcp_opts_len = tcp_make_synack_options (tc, snd_opts);
527 tcp_hdr_opts_len = tcp_opts_len + sizeof (tcp_header_t);
528
529 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->iss,
530 tc->rcv_nxt, tcp_hdr_opts_len,
531 TCP_FLAG_SYN | TCP_FLAG_ACK, initial_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -0500532 tcp_options_write ((u8 *) (th + 1), snd_opts);
533
534 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Srikanth A02833ff2019-10-02 17:48:58 -0700535 th->checksum = tcp_compute_checksum (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500536}
537
Florin Coras5484daa2020-03-27 23:55:06 +0000538static void
539tcp_enqueue_to_ip_lookup (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi,
540 u8 is_ip4, u32 fib_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500541{
Florin Coras5484daa2020-03-27 23:55:06 +0000542 tcp_main_t *tm = &tcp_main;
Florin Corasbe72ae62018-11-01 11:23:03 -0700543 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500544
Damjan Marion213b5aa2017-07-13 21:19:27 +0200545 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -0500546 b->error = 0;
547
Florin Coras56b39f62018-03-27 17:29:32 -0700548 vnet_buffer (b)->sw_if_index[VLIB_TX] = fib_index;
549 vnet_buffer (b)->sw_if_index[VLIB_RX] = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500550
Florin Corasf988e692017-11-27 04:34:14 -0500551 tcp_trajectory_add_start (b, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500552
Florin Coras5484daa2020-03-27 23:55:06 +0000553 session_add_pending_tx_buffer (vm->thread_index, bi,
554 tm->ipl_next_node[!is_ip4]);
Florin Coras9d063042017-09-14 03:08:00 -0400555
Florin Coras5484daa2020-03-27 23:55:06 +0000556 if (vm->thread_index == 0 && vlib_num_workers ())
557 session_queue_run_on_main_thread (wrk->vm);
Dave Barach68b0fb02017-02-28 15:15:56 -0500558}
559
Florin Coras0dbd5172018-06-25 16:19:34 -0700560static void
Florin Corasbe72ae62018-11-01 11:23:03 -0700561tcp_enqueue_to_output (tcp_worker_ctx_t * wrk, vlib_buffer_t * b, u32 bi,
562 u8 is_ip4)
Florin Coras1f152cd2017-08-18 19:28:03 -0700563{
Florin Coras2a7ea2e2019-10-16 22:06:08 -0700564 b->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
565 b->error = 0;
566
Florin Coras5484daa2020-03-27 23:55:06 +0000567 session_add_pending_tx_buffer (wrk->vm->thread_index, bi,
568 wrk->tco_next_node[!is_ip4]);
Florin Coras1f152cd2017-08-18 19:28:03 -0700569}
570
Filip Tehlare275bed2019-03-06 00:06:56 -0800571#endif /* CLIB_MARCH_VARIANT */
Florin Coras1f152cd2017-08-18 19:28:03 -0700572
Florin Coras0dbd5172018-06-25 16:19:34 -0700573static int
Florin Coras360336f2020-02-13 18:46:18 +0000574tcp_make_reset_in_place (vlib_main_t * vm, vlib_buffer_t * b, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500575{
Dave Barach68b0fb02017-02-28 15:15:56 -0500576 ip4_header_t *ih4;
577 ip6_header_t *ih6;
Florin Coras360336f2020-02-13 18:46:18 +0000578 tcp_header_t *th;
579 ip4_address_t src_ip4, dst_ip4;
580 ip6_address_t src_ip6, dst_ip6;
Florin Corasdc629cd2017-05-09 00:52:37 -0700581 u16 src_port, dst_port;
Florin Coras360336f2020-02-13 18:46:18 +0000582 u32 tmp, len, seq, ack;
Florin Corasdc629cd2017-05-09 00:52:37 -0700583 u8 flags;
Dave Barach68b0fb02017-02-28 15:15:56 -0500584
585 /* Find IP and TCP headers */
Florin Coras360336f2020-02-13 18:46:18 +0000586 th = tcp_buffer_hdr (b);
Florin Corasdc629cd2017-05-09 00:52:37 -0700587
588 /* Save src and dst ip */
Dave Barach68b0fb02017-02-28 15:15:56 -0500589 if (is_ip4)
590 {
Florin Coras360336f2020-02-13 18:46:18 +0000591 ih4 = vlib_buffer_get_current (b);
Florin Corasdc629cd2017-05-09 00:52:37 -0700592 ASSERT ((ih4->ip_version_and_header_length & 0xF0) == 0x40);
Florin Coras360336f2020-02-13 18:46:18 +0000593 src_ip4.as_u32 = ih4->src_address.as_u32;
594 dst_ip4.as_u32 = ih4->dst_address.as_u32;
Dave Barach68b0fb02017-02-28 15:15:56 -0500595 }
596 else
597 {
Florin Coras360336f2020-02-13 18:46:18 +0000598 ih6 = vlib_buffer_get_current (b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500599 ASSERT ((ih6->ip_version_traffic_class_and_flow_label & 0xF0) == 0x60);
Florin Coras360336f2020-02-13 18:46:18 +0000600 clib_memcpy_fast (&src_ip6, &ih6->src_address, sizeof (ip6_address_t));
601 clib_memcpy_fast (&dst_ip6, &ih6->dst_address, sizeof (ip6_address_t));
Dave Barach68b0fb02017-02-28 15:15:56 -0500602 }
603
Florin Coras360336f2020-02-13 18:46:18 +0000604 src_port = th->src_port;
605 dst_port = th->dst_port;
606 flags = TCP_FLAG_RST;
Florin Corasdc629cd2017-05-09 00:52:37 -0700607
Florin Coras360336f2020-02-13 18:46:18 +0000608 /*
609 * RFC 793. If the ACK bit is off, sequence number zero is used,
610 * <SEQ=0><ACK=SEG.SEQ+SEG.LEN><CTL=RST,ACK>
611 * If the ACK bit is on,
612 * <SEQ=SEG.ACK><CTL=RST>
613 */
614 if (tcp_ack (th))
Dave Barach68b0fb02017-02-28 15:15:56 -0500615 {
Florin Coras360336f2020-02-13 18:46:18 +0000616 seq = th->ack_number;
Florin Corasdc629cd2017-05-09 00:52:37 -0700617 ack = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500618 }
Florin Coras360336f2020-02-13 18:46:18 +0000619 else
620 {
621 flags |= TCP_FLAG_ACK;
622 tmp = clib_net_to_host_u32 (th->seq_number);
623 len = vnet_buffer (b)->tcp.data_len + tcp_is_syn (th) + tcp_is_fin (th);
624 ack = clib_host_to_net_u32 (tmp + len);
625 seq = 0;
626 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500627
Florin Coras360336f2020-02-13 18:46:18 +0000628 tcp_reuse_buffer (vm, b);
629 tcp_trajectory_add_start (b, 4);
630 th = vlib_buffer_push_tcp_net_order (b, dst_port, src_port, seq, ack,
631 sizeof (tcp_header_t), flags, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500632
Dave Barach68b0fb02017-02-28 15:15:56 -0500633 if (is_ip4)
634 {
Florin Coras360336f2020-02-13 18:46:18 +0000635 ih4 = vlib_buffer_push_ip4 (vm, b, &dst_ip4, &src_ip4,
Florin Corasfdbc3822017-07-27 00:34:12 -0700636 IP_PROTOCOL_TCP, 1);
Florin Coras360336f2020-02-13 18:46:18 +0000637 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
Dave Barach68b0fb02017-02-28 15:15:56 -0500638 }
639 else
640 {
641 int bogus = ~0;
Florin Coras360336f2020-02-13 18:46:18 +0000642 ih6 = vlib_buffer_push_ip6 (vm, b, &dst_ip6, &src_ip6, IP_PROTOCOL_TCP);
643 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
Dave Barach68b0fb02017-02-28 15:15:56 -0500644 ASSERT (!bogus);
645 }
646
647 return 0;
648}
649
Filip Tehlare275bed2019-03-06 00:06:56 -0800650#ifndef CLIB_MARCH_VARIANT
Dave Barach68b0fb02017-02-28 15:15:56 -0500651/**
652 * Send reset without reusing existing buffer
Florin Coras1f152cd2017-08-18 19:28:03 -0700653 *
654 * It extracts connection info out of original packet
Dave Barach68b0fb02017-02-28 15:15:56 -0500655 */
656void
Florin Corasd4c49be2019-02-07 00:15:53 -0800657tcp_send_reset_w_pkt (tcp_connection_t * tc, vlib_buffer_t * pkt,
658 u32 thread_index, u8 is_ip4)
Dave Barach68b0fb02017-02-28 15:15:56 -0500659{
Florin Corasd4c49be2019-02-07 00:15:53 -0800660 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Corasbe72ae62018-11-01 11:23:03 -0700661 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500662 vlib_buffer_t *b;
Florin Coras56b39f62018-03-27 17:29:32 -0700663 u32 bi, sw_if_index, fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500664 u8 tcp_hdr_len, flags = 0;
665 tcp_header_t *th, *pkt_th;
666 u32 seq, ack;
667 ip4_header_t *ih4, *pkt_ih4;
668 ip6_header_t *ih6, *pkt_ih6;
Florin Coras56b39f62018-03-27 17:29:32 -0700669 fib_protocol_t fib_proto;
Dave Barach68b0fb02017-02-28 15:15:56 -0500670
Florin Corasbdf7fd62019-01-31 17:31:01 -0800671 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coras66b11312017-07-31 17:18:03 -0700672 return;
673
Dave Barach68b0fb02017-02-28 15:15:56 -0500674 b = vlib_get_buffer (vm, bi);
Florin Coras56b39f62018-03-27 17:29:32 -0700675 sw_if_index = vnet_buffer (pkt)->sw_if_index[VLIB_RX];
676 fib_proto = is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
677 fib_index = fib_table_get_index_for_sw_if_index (fib_proto, sw_if_index);
Florin Coras1f152cd2017-08-18 19:28:03 -0700678 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500679
680 /* Make and write options */
681 tcp_hdr_len = sizeof (tcp_header_t);
682
683 if (is_ip4)
684 {
685 pkt_ih4 = vlib_buffer_get_current (pkt);
686 pkt_th = ip4_next_header (pkt_ih4);
687 }
688 else
689 {
690 pkt_ih6 = vlib_buffer_get_current (pkt);
691 pkt_th = ip6_next_header (pkt_ih6);
692 }
693
694 if (tcp_ack (pkt_th))
695 {
696 flags = TCP_FLAG_RST;
697 seq = pkt_th->ack_number;
Florin Coras776f3d82018-11-02 08:23:58 -0700698 ack = (tc->state >= TCP_STATE_SYN_RCVD) ? tc->rcv_nxt : 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500699 }
700 else
701 {
702 flags = TCP_FLAG_RST | TCP_FLAG_ACK;
703 seq = 0;
704 ack = clib_host_to_net_u32 (vnet_buffer (pkt)->tcp.seq_end);
705 }
706
707 th = vlib_buffer_push_tcp_net_order (b, pkt_th->dst_port, pkt_th->src_port,
708 seq, ack, tcp_hdr_len, flags, 0);
709
710 /* Swap src and dst ip */
711 if (is_ip4)
712 {
713 ASSERT ((pkt_ih4->ip_version_and_header_length & 0xF0) == 0x40);
714 ih4 = vlib_buffer_push_ip4 (vm, b, &pkt_ih4->dst_address,
Srikanth A02833ff2019-10-02 17:48:58 -0700715 &pkt_ih4->src_address, IP_PROTOCOL_TCP,
Florin Corasbbcfaac2019-10-10 13:52:04 -0700716 tcp_csum_offload (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -0500717 th->checksum = ip4_tcp_udp_compute_checksum (vm, b, ih4);
718 }
719 else
720 {
721 int bogus = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500722 ASSERT ((pkt_ih6->ip_version_traffic_class_and_flow_label & 0xF0) ==
723 0x60);
Tarun Gupta2089c692019-11-04 16:35:59 -0800724 ih6 = vlib_buffer_push_ip6_custom (vm, b, &pkt_ih6->dst_address,
725 &pkt_ih6->src_address,
726 IP_PROTOCOL_TCP,
727 tc->ipv6_flow_label);
Dave Barach68b0fb02017-02-28 15:15:56 -0500728 th->checksum = ip6_tcp_udp_icmp_compute_checksum (vm, b, ih6, &bogus);
729 ASSERT (!bogus);
730 }
731
Florin Coras5484daa2020-03-27 23:55:06 +0000732 tcp_enqueue_to_ip_lookup (wrk, b, bi, is_ip4, fib_index);
Florin Corasa436a422019-08-20 07:09:31 -0700733 TCP_EVT (TCP_EVT_RST_SENT, tc);
Florin Coras1f421012019-07-26 10:18:51 -0700734 vlib_node_increment_counter (vm, tcp_node_index (output, tc->c_is_ip4),
735 TCP_ERROR_RST_SENT, 1);
Dave Barach68b0fb02017-02-28 15:15:56 -0500736}
737
Florin Coras1f152cd2017-08-18 19:28:03 -0700738/**
739 * Build and set reset packet for connection
740 */
741void
742tcp_send_reset (tcp_connection_t * tc)
743{
Florin Corasbe72ae62018-11-01 11:23:03 -0700744 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
745 vlib_main_t *vm = wrk->vm;
Florin Coras1f152cd2017-08-18 19:28:03 -0700746 vlib_buffer_t *b;
747 u32 bi;
748 tcp_header_t *th;
749 u16 tcp_hdr_opts_len, advertise_wnd, opts_write_len;
750 u8 flags;
751
Florin Corasbdf7fd62019-01-31 17:31:01 -0800752 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coras1f152cd2017-08-18 19:28:03 -0700753 return;
754 b = vlib_get_buffer (vm, bi);
755 tcp_init_buffer (vm, b);
756
757 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
758 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
Florin Coras4e783b92020-03-23 23:24:19 +0000759 advertise_wnd = tc->rcv_wnd >> tc->rcv_wscale;
Florin Coras1f152cd2017-08-18 19:28:03 -0700760 flags = TCP_FLAG_RST;
761 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, tc->snd_nxt,
762 tc->rcv_nxt, tcp_hdr_opts_len, flags,
763 advertise_wnd);
764 opts_write_len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
Srikanth A02833ff2019-10-02 17:48:58 -0700765 th->checksum = tcp_compute_checksum (tc, b);
Florin Coras1f152cd2017-08-18 19:28:03 -0700766 ASSERT (opts_write_len == tc->snd_opts_len);
767 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Florin Corasdf36f492019-08-18 18:09:28 -0700768 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Corasa436a422019-08-20 07:09:31 -0700769 TCP_EVT (TCP_EVT_RST_SENT, tc);
Florin Coras1f421012019-07-26 10:18:51 -0700770 vlib_node_increment_counter (vm, tcp_node_index (output, tc->c_is_ip4),
771 TCP_ERROR_RST_SENT, 1);
Florin Coras1f152cd2017-08-18 19:28:03 -0700772}
773
Florin Coras0dbd5172018-06-25 16:19:34 -0700774static void
Florin Corasbe72ae62018-11-01 11:23:03 -0700775tcp_push_ip_hdr (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
776 vlib_buffer_t * b)
Dave Barach68b0fb02017-02-28 15:15:56 -0500777{
Dave Barach68b0fb02017-02-28 15:15:56 -0500778 if (tc->c_is_ip4)
779 {
Florin Corasf4ce6ba2019-11-20 18:34:58 -0800780 vlib_buffer_push_ip4 (wrk->vm, b, &tc->c_lcl_ip4, &tc->c_rmt_ip4,
781 IP_PROTOCOL_TCP, tcp_csum_offload (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -0500782 }
783 else
784 {
Florin Corasf4ce6ba2019-11-20 18:34:58 -0800785 vlib_buffer_push_ip6_custom (wrk->vm, b, &tc->c_lcl_ip6, &tc->c_rmt_ip6,
786 IP_PROTOCOL_TCP, tc->ipv6_flow_label);
Dave Barach68b0fb02017-02-28 15:15:56 -0500787 }
788}
789
790/**
791 * Send SYN
792 *
793 * Builds a SYN packet for a half-open connection and sends it to ipx_lookup.
794 * The packet is not forwarded through tcpx_output to avoid doing lookups
795 * in the half_open pool.
796 */
797void
798tcp_send_syn (tcp_connection_t * tc)
799{
Florin Corasbe72ae62018-11-01 11:23:03 -0700800 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
801 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -0500802 vlib_buffer_t *b;
803 u32 bi;
Dave Barach68b0fb02017-02-28 15:15:56 -0500804
Florin Corasf988e692017-11-27 04:34:14 -0500805 /*
806 * Setup retransmit and establish timers before requesting buffer
807 * such that we can return if we've ran out.
808 */
Florin Coras0765d972020-03-18 21:26:41 +0000809 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT_SYN,
Florin Corasf988e692017-11-27 04:34:14 -0500810 tc->rto * TCP_TO_TIMER_TICK);
811
Florin Corasbdf7fd62019-01-31 17:31:01 -0800812 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coras222e1f412019-02-16 20:47:32 -0800813 {
Florin Coras0765d972020-03-18 21:26:41 +0000814 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT_SYN, 1);
Florin Coras222e1f412019-02-16 20:47:32 -0800815 return;
816 }
Florin Coras66b11312017-07-31 17:18:03 -0700817
Dave Barach68b0fb02017-02-28 15:15:56 -0500818 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -0700819 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400820 tcp_make_syn (tc, b);
Dave Barach68b0fb02017-02-28 15:15:56 -0500821
822 /* Measure RTT with this */
Florin Corasefefc6b2018-11-07 12:49:19 -0800823 tc->rtt_ts = tcp_time_now_us (vlib_num_workers ()? 1 : 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500824 tc->rtt_seq = tc->snd_nxt;
Dave Barach68b0fb02017-02-28 15:15:56 -0500825 tc->rto_boff = 0;
826
Florin Corasbe72ae62018-11-01 11:23:03 -0700827 tcp_push_ip_hdr (wrk, tc, b);
828 tcp_enqueue_to_ip_lookup (wrk, b, bi, tc->c_is_ip4, tc->c_fib_index);
Florin Corasa436a422019-08-20 07:09:31 -0700829 TCP_EVT (TCP_EVT_SYN_SENT, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500830}
831
Florin Coras7ac053b2018-11-05 15:57:21 -0800832void
833tcp_send_synack (tcp_connection_t * tc)
834{
835 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
836 vlib_main_t *vm = wrk->vm;
837 vlib_buffer_t *b;
838 u32 bi;
839
Florin Coras0765d972020-03-18 21:26:41 +0000840 tcp_retransmit_timer_force_update (&wrk->timer_wheel, tc);
Florin Coras222e1f412019-02-16 20:47:32 -0800841
Florin Corasbdf7fd62019-01-31 17:31:01 -0800842 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coras222e1f412019-02-16 20:47:32 -0800843 {
Florin Coras0765d972020-03-18 21:26:41 +0000844 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT, 1);
Florin Coras222e1f412019-02-16 20:47:32 -0800845 return;
846 }
Florin Coras7ac053b2018-11-05 15:57:21 -0800847
Florin Corasdf084782018-12-06 17:41:10 -0800848 tc->rtt_ts = tcp_time_now_us (tc->c_thread_index);
Florin Coras7ac053b2018-11-05 15:57:21 -0800849 b = vlib_get_buffer (vm, bi);
Florin Corasbdf7fd62019-01-31 17:31:01 -0800850 tcp_init_buffer (vm, b);
Florin Coras7ac053b2018-11-05 15:57:21 -0800851 tcp_make_synack (tc, b);
852 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Corasa436a422019-08-20 07:09:31 -0700853 TCP_EVT (TCP_EVT_SYNACK_SENT, tc);
Florin Coras7ac053b2018-11-05 15:57:21 -0800854}
855
Florin Coras66b11312017-07-31 17:18:03 -0700856/**
Dave Barach68b0fb02017-02-28 15:15:56 -0500857 * Send FIN
858 */
859void
860tcp_send_fin (tcp_connection_t * tc)
861{
Florin Corasbe72ae62018-11-01 11:23:03 -0700862 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
863 vlib_main_t *vm = wrk->vm;
Florin Coras9d063042017-09-14 03:08:00 -0400864 vlib_buffer_t *b;
865 u32 bi;
866 u8 fin_snt = 0;
867
Florin Corasc977e7c2018-10-16 20:30:31 -0700868 fin_snt = tc->flags & TCP_CONN_FINSNT;
869 if (fin_snt)
Florin Coras47596832019-03-12 18:58:54 -0700870 tc->snd_nxt -= 1;
Florin Corasc977e7c2018-10-16 20:30:31 -0700871
Florin Corasbdf7fd62019-01-31 17:31:01 -0800872 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coraseb97e5f2018-10-15 21:35:42 -0700873 {
874 /* Out of buffers so program fin retransmit ASAP */
Florin Coras0765d972020-03-18 21:26:41 +0000875 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT, 1);
Florin Coras85a3ddd2018-12-24 16:54:34 -0800876 if (fin_snt)
Florin Coras47596832019-03-12 18:58:54 -0700877 tc->snd_nxt += 1;
Florin Coras222e1f412019-02-16 20:47:32 -0800878 else
879 /* Make sure retransmit retries a fin not data */
880 tc->flags |= TCP_CONN_FINSNT;
Florin Coras85a3ddd2018-12-24 16:54:34 -0800881 return;
Florin Coraseb97e5f2018-10-15 21:35:42 -0700882 }
883
Florin Corascb711a42019-10-16 19:28:17 -0700884 /* If we have non-dupacks programmed, no need to send them */
885 if ((tc->flags & TCP_CONN_SNDACK) && !tc->pending_dupacks)
886 tc->flags &= ~TCP_CONN_SNDACK;
887
Florin Coras0765d972020-03-18 21:26:41 +0000888 tcp_retransmit_timer_force_update (&wrk->timer_wheel, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500889 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -0700890 tcp_init_buffer (vm, b);
Florin Corasd79b41e2017-03-04 05:37:52 -0800891 tcp_make_fin (tc, b);
Florin Coras2a7ea2e2019-10-16 22:06:08 -0700892 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Corasa436a422019-08-20 07:09:31 -0700893 TCP_EVT (TCP_EVT_FIN_SENT, tc);
Florin Coras47596832019-03-12 18:58:54 -0700894 /* Account for the FIN */
895 tc->snd_nxt += 1;
Florin Coras9d063042017-09-14 03:08:00 -0400896 if (!fin_snt)
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400897 {
898 tc->flags |= TCP_CONN_FINSNT;
899 tc->flags &= ~TCP_CONN_FINPNDG;
Florin Coras47596832019-03-12 18:58:54 -0700900 tc->snd_una_max = seq_max (tc->snd_una_max, tc->snd_nxt);
Florin Corasa096f2d2017-09-28 23:49:42 -0400901 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500902}
903
Dave Barach68b0fb02017-02-28 15:15:56 -0500904/**
Florin Corasfd247442019-03-12 16:56:26 -0700905 * Push TCP header and update connection variables. Should only be called
906 * for segments with data, not for 'control' packets.
Dave Barach68b0fb02017-02-28 15:15:56 -0500907 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700908always_inline void
Florin Coras47596832019-03-12 18:58:54 -0700909tcp_push_hdr_i (tcp_connection_t * tc, vlib_buffer_t * b, u32 snd_nxt,
910 u8 compute_opts, u8 maybe_burst, u8 update_snd_nxt)
Dave Barach68b0fb02017-02-28 15:15:56 -0500911{
Florin Corasfd247442019-03-12 16:56:26 -0700912 u8 tcp_hdr_opts_len, flags = TCP_FLAG_ACK;
Dave Barach68b0fb02017-02-28 15:15:56 -0500913 u32 advertise_wnd, data_len;
Florin Corasb26743d2018-06-26 09:31:04 -0700914 tcp_main_t *tm = &tcp_main;
Dave Barach68b0fb02017-02-28 15:15:56 -0500915 tcp_header_t *th;
916
Florin Corasb26743d2018-06-26 09:31:04 -0700917 data_len = b->current_length;
918 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_NEXT_PRESENT))
919 data_len += b->total_length_not_including_first_buffer;
920
Dave Barach68b0fb02017-02-28 15:15:56 -0500921 vnet_buffer (b)->tcp.flags = 0;
Florin Corasb26743d2018-06-26 09:31:04 -0700922 vnet_buffer (b)->tcp.connection_index = tc->c_c_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500923
Florin Corasc8343412017-05-04 14:25:50 -0700924 if (compute_opts)
925 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
926
Florin Corasc8343412017-05-04 14:25:50 -0700927 tcp_hdr_opts_len = tc->snd_opts_len + sizeof (tcp_header_t);
Florin Corasb26743d2018-06-26 09:31:04 -0700928
929 if (maybe_burst)
930 advertise_wnd = tc->rcv_wnd >> tc->rcv_wscale;
931 else
Florin Coras47596832019-03-12 18:58:54 -0700932 advertise_wnd = tcp_window_to_advertise (tc, TCP_STATE_ESTABLISHED);
Florin Corasb26743d2018-06-26 09:31:04 -0700933
Florin Coras42ceddb2018-12-12 10:56:01 -0800934 if (PREDICT_FALSE (tc->flags & TCP_CONN_PSH_PENDING))
935 {
Florin Coras47596832019-03-12 18:58:54 -0700936 if (seq_geq (tc->psh_seq, snd_nxt)
937 && seq_lt (tc->psh_seq, snd_nxt + data_len))
Florin Coras42ceddb2018-12-12 10:56:01 -0800938 flags |= TCP_FLAG_PSH;
939 }
Florin Coras47596832019-03-12 18:58:54 -0700940 th = vlib_buffer_push_tcp (b, tc->c_lcl_port, tc->c_rmt_port, snd_nxt,
Dave Barach68b0fb02017-02-28 15:15:56 -0500941 tc->rcv_nxt, tcp_hdr_opts_len, flags,
942 advertise_wnd);
Dave Barach68b0fb02017-02-28 15:15:56 -0500943
Florin Corasb26743d2018-06-26 09:31:04 -0700944 if (maybe_burst)
945 {
Dave Barach178cf492018-11-13 16:34:13 -0500946 clib_memcpy_fast ((u8 *) (th + 1),
947 tm->wrk_ctx[tc->c_thread_index].cached_opts,
948 tc->snd_opts_len);
Florin Corasb26743d2018-06-26 09:31:04 -0700949 }
950 else
951 {
952 u8 len = tcp_options_write ((u8 *) (th + 1), &tc->snd_opts);
953 ASSERT (len == tc->snd_opts_len);
954 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500955
Florin Coras93992a92017-05-24 18:03:56 -0700956 /*
957 * Update connection variables
958 */
959
Florin Coras47596832019-03-12 18:58:54 -0700960 if (update_snd_nxt)
961 tc->snd_nxt += data_len;
Florin Corasc28764f2017-04-26 00:08:42 -0700962 tc->rcv_las = tc->rcv_nxt;
Florin Coras3e350af2017-03-30 02:54:28 -0700963
Florin Corasedfe0ee2019-07-29 18:13:25 -0700964 tc->bytes_out += data_len;
965 tc->data_segs_out += 1;
966
Srikanth A02833ff2019-10-02 17:48:58 -0700967 th->checksum = tcp_compute_checksum (tc, b);
968
Florin Corasa436a422019-08-20 07:09:31 -0700969 TCP_EVT (TCP_EVT_PKTIZE, tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500970}
971
Florin Corasd6ae4bf2019-10-12 18:10:20 -0700972always_inline u32
973tcp_buffer_len (vlib_buffer_t * b)
974{
975 u32 data_len = b->current_length;
976 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_NEXT_PRESENT))
977 data_len += b->total_length_not_including_first_buffer;
978 return data_len;
979}
980
Florin Coras0dbd5172018-06-25 16:19:34 -0700981u32
Florin Coras14ed6df2019-03-06 21:13:42 -0800982tcp_session_push_header (transport_connection_t * tconn, vlib_buffer_t * b)
Florin Coras0dbd5172018-06-25 16:19:34 -0700983{
Florin Coras14ed6df2019-03-06 21:13:42 -0800984 tcp_connection_t *tc = (tcp_connection_t *) tconn;
Florin Coras52814732019-06-12 15:38:19 -0700985
Florin Corasd6ae4bf2019-10-12 18:10:20 -0700986 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
987 tcp_bt_track_tx (tc, tcp_buffer_len (b));
Florin Coras52814732019-06-12 15:38:19 -0700988
Florin Coras47596832019-03-12 18:58:54 -0700989 tcp_push_hdr_i (tc, b, tc->snd_nxt, /* compute opts */ 0, /* burst */ 1,
990 /* update_snd_nxt */ 1);
Florin Coras52814732019-06-12 15:38:19 -0700991
Florin Coras47596832019-03-12 18:58:54 -0700992 tc->snd_una_max = seq_max (tc->snd_nxt, tc->snd_una_max);
Florin Coras0dbd5172018-06-25 16:19:34 -0700993 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
994 /* If not tracking an ACK, start tracking */
995 if (tc->rtt_ts == 0 && !tcp_in_cong_recovery (tc))
996 {
Florin Corasd67f1122018-05-21 17:47:40 -0700997 tc->rtt_ts = tcp_time_now_us (tc->c_thread_index);
Florin Coras0dbd5172018-06-25 16:19:34 -0700998 tc->rtt_seq = tc->snd_nxt;
999 }
1000 if (PREDICT_FALSE (!tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)))
1001 {
Florin Coras0765d972020-03-18 21:26:41 +00001002 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
1003 tcp_retransmit_timer_set (&wrk->timer_wheel, tc);
Florin Coras0dbd5172018-06-25 16:19:34 -07001004 tc->rto_boff = 0;
1005 }
1006 tcp_trajectory_add_start (b, 3);
1007 return 0;
1008}
1009
Dave Barach68b0fb02017-02-28 15:15:56 -05001010void
Florin Coras6792ec02017-03-13 03:49:51 -07001011tcp_send_ack (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001012{
Florin Corasbe72ae62018-11-01 11:23:03 -07001013 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
1014 vlib_main_t *vm = wrk->vm;
Dave Barach68b0fb02017-02-28 15:15:56 -05001015 vlib_buffer_t *b;
1016 u32 bi;
1017
Florin Corasbdf7fd62019-01-31 17:31:01 -08001018 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coras222e1f412019-02-16 20:47:32 -08001019 {
1020 tcp_update_rcv_wnd (tc);
1021 return;
1022 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001023 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001024 tcp_init_buffer (vm, b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001025 tcp_make_ack (tc, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001026 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001027}
1028
Florin Coras7ac053b2018-11-05 15:57:21 -08001029void
Florin Coras26dd6de2019-07-23 23:54:47 -07001030tcp_program_ack (tcp_connection_t * tc)
Florin Coras7ac053b2018-11-05 15:57:21 -08001031{
1032 if (!(tc->flags & TCP_CONN_SNDACK))
1033 {
Florin Coras26dd6de2019-07-23 23:54:47 -07001034 session_add_self_custom_tx_evt (&tc->connection, 1);
Florin Coras7ac053b2018-11-05 15:57:21 -08001035 tc->flags |= TCP_CONN_SNDACK;
1036 }
1037}
1038
1039void
Florin Coras26dd6de2019-07-23 23:54:47 -07001040tcp_program_dupack (tcp_connection_t * tc)
Florin Coras7ac053b2018-11-05 15:57:21 -08001041{
1042 if (!(tc->flags & TCP_CONN_SNDACK))
1043 {
Florin Coras26dd6de2019-07-23 23:54:47 -07001044 session_add_self_custom_tx_evt (&tc->connection, 1);
Florin Coras7ac053b2018-11-05 15:57:21 -08001045 tc->flags |= TCP_CONN_SNDACK;
1046 }
1047 if (tc->pending_dupacks < 255)
1048 tc->pending_dupacks += 1;
1049}
1050
1051void
Florin Coras36ebcff2019-09-12 18:36:44 -07001052tcp_program_retransmit (tcp_connection_t * tc)
Florin Coras7ac053b2018-11-05 15:57:21 -08001053{
Florin Coras36ebcff2019-09-12 18:36:44 -07001054 if (!(tc->flags & TCP_CONN_RXT_PENDING))
Florin Coras7ac053b2018-11-05 15:57:21 -08001055 {
Florin Coras26dd6de2019-07-23 23:54:47 -07001056 session_add_self_custom_tx_evt (&tc->connection, 0);
Florin Coras36ebcff2019-09-12 18:36:44 -07001057 tc->flags |= TCP_CONN_RXT_PENDING;
Florin Coras7ac053b2018-11-05 15:57:21 -08001058 }
Florin Coras7ac053b2018-11-05 15:57:21 -08001059}
1060
Florin Corasb2215d62017-08-01 16:56:58 -07001061/**
1062 * Delayed ack timer handler
1063 *
1064 * Sends delayed ACK when timer expires
1065 */
Florin Coras6792ec02017-03-13 03:49:51 -07001066void
Florin Corasaa388692020-02-14 23:41:25 +00001067tcp_timer_delack_handler (tcp_connection_t * tc)
Florin Coras6792ec02017-03-13 03:49:51 -07001068{
Florin Coras6792ec02017-03-13 03:49:51 -07001069 tcp_send_ack (tc);
1070}
1071
Florin Corasb2215d62017-08-01 16:56:58 -07001072/**
Florin Coras017dc452019-08-30 11:06:35 -07001073 * Send window update ack
1074 *
1075 * Ensures that it will be sent only once, after a zero rwnd has been
1076 * advertised in a previous ack, and only if rwnd has grown beyond a
1077 * configurable value.
Vladimir Kropylev398afbd2019-06-25 00:06:52 +03001078 */
1079void
1080tcp_send_window_update_ack (tcp_connection_t * tc)
1081{
Vladimir Kropylev398afbd2019-06-25 00:06:52 +03001082 if (tcp_zero_rwnd_sent (tc))
1083 {
Florin Coras017dc452019-08-30 11:06:35 -07001084 tcp_update_rcv_wnd (tc);
1085 if (tc->rcv_wnd >= tcp_cfg.rwnd_min_update_ack * tc->snd_mss)
Vladimir Kropylev398afbd2019-06-25 00:06:52 +03001086 {
1087 tcp_zero_rwnd_sent_off (tc);
Florin Coras26dd6de2019-07-23 23:54:47 -07001088 tcp_program_ack (tc);
Vladimir Kropylev398afbd2019-06-25 00:06:52 +03001089 }
1090 }
1091}
1092
1093/**
Florin Coras36ee9f12018-11-02 12:52:10 -07001094 * Allocate a new buffer and build a new tcp segment
Dave Barach68b0fb02017-02-28 15:15:56 -05001095 *
Florin Coras36ee9f12018-11-02 12:52:10 -07001096 * @param wrk tcp worker
1097 * @param tc connection for which the segment will be allocated
1098 * @param offset offset of the first byte in the tx fifo
1099 * @param max_deq_byte segment size
1100 * @param[out] b pointer to buffer allocated
1101 *
1102 * @return the number of bytes in the segment or 0 if buffer cannot be
1103 * allocated or no data available
Florin Coras93992a92017-05-24 18:03:56 -07001104 */
Florin Coras36ee9f12018-11-02 12:52:10 -07001105static int
1106tcp_prepare_segment (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1107 u32 offset, u32 max_deq_bytes, vlib_buffer_t ** b)
Dave Barach68b0fb02017-02-28 15:15:56 -05001108{
Florin Corasbe72ae62018-11-01 11:23:03 -07001109 u32 bytes_per_buffer = vnet_get_tcp_main ()->bytes_per_buffer;
1110 vlib_main_t *vm = wrk->vm;
Florin Corasbdf7fd62019-01-31 17:31:01 -08001111 u32 bi, seg_size;
Florin Coras93992a92017-05-24 18:03:56 -07001112 int n_bytes = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001113 u8 *data;
Dave Barach68b0fb02017-02-28 15:15:56 -05001114
Florin Coras1ee78302019-02-05 15:51:15 -08001115 seg_size = max_deq_bytes + TRANSPORT_MAX_HDRS_LEN;
Florin Coras1f152cd2017-08-18 19:28:03 -07001116
Florin Corasb2215d62017-08-01 16:56:58 -07001117 /*
1118 * Prepare options
1119 */
Florin Corasc8343412017-05-04 14:25:50 -07001120 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
1121
Florin Corasb2215d62017-08-01 16:56:58 -07001122 /*
1123 * Allocate and fill in buffer(s)
1124 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001125
Florin Corasb2215d62017-08-01 16:56:58 -07001126 /* Easy case, buffer size greater than mss */
Florin Corasbe72ae62018-11-01 11:23:03 -07001127 if (PREDICT_TRUE (seg_size <= bytes_per_buffer))
Florin Corasb2215d62017-08-01 16:56:58 -07001128 {
Florin Corasbdf7fd62019-01-31 17:31:01 -08001129 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coras24793e32018-05-09 11:34:25 -07001130 return 0;
1131 *b = vlib_get_buffer (vm, bi);
1132 data = tcp_init_buffer (vm, *b);
Florin Coras31c99552019-03-01 13:00:58 -08001133 n_bytes = session_tx_fifo_peek_bytes (&tc->connection, data, offset,
1134 max_deq_bytes);
Florin Corasb2215d62017-08-01 16:56:58 -07001135 ASSERT (n_bytes == max_deq_bytes);
1136 b[0]->current_length = n_bytes;
Florin Coras47596832019-03-12 18:58:54 -07001137 tcp_push_hdr_i (tc, *b, tc->snd_una + offset, /* compute opts */ 0,
1138 /* burst */ 0, /* update_snd_nxt */ 0);
Florin Corasb2215d62017-08-01 16:56:58 -07001139 }
1140 /* Split mss into multiple buffers */
1141 else
1142 {
Florin Corasbdf7fd62019-01-31 17:31:01 -08001143 u32 chain_bi = ~0, n_bufs_per_seg, n_bufs;
1144 u16 n_peeked, len_to_deq;
Florin Corasb2215d62017-08-01 16:56:58 -07001145 vlib_buffer_t *chain_b, *prev_b;
Florin Corasb2215d62017-08-01 16:56:58 -07001146 int i;
1147
Florin Corasb2215d62017-08-01 16:56:58 -07001148 /* Make sure we have enough buffers */
Florin Corasbe72ae62018-11-01 11:23:03 -07001149 n_bufs_per_seg = ceil ((double) seg_size / bytes_per_buffer);
Florin Corasbdf7fd62019-01-31 17:31:01 -08001150 vec_validate_aligned (wrk->tx_buffers, n_bufs_per_seg - 1,
1151 CLIB_CACHE_LINE_BYTES);
1152 n_bufs = vlib_buffer_alloc (vm, wrk->tx_buffers, n_bufs_per_seg);
1153 if (PREDICT_FALSE (n_bufs != n_bufs_per_seg))
Florin Corasb2215d62017-08-01 16:56:58 -07001154 {
Florin Corasbdf7fd62019-01-31 17:31:01 -08001155 if (n_bufs)
1156 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
1157 return 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001158 }
1159
Florin Corasbdf7fd62019-01-31 17:31:01 -08001160 *b = vlib_get_buffer (vm, wrk->tx_buffers[--n_bufs]);
Florin Coras24793e32018-05-09 11:34:25 -07001161 data = tcp_init_buffer (vm, *b);
Florin Coras31c99552019-03-01 13:00:58 -08001162 n_bytes = session_tx_fifo_peek_bytes (&tc->connection, data, offset,
1163 bytes_per_buffer -
1164 TRANSPORT_MAX_HDRS_LEN);
Florin Corasb2215d62017-08-01 16:56:58 -07001165 b[0]->current_length = n_bytes;
1166 b[0]->flags |= VLIB_BUFFER_TOTAL_LENGTH_VALID;
1167 b[0]->total_length_not_including_first_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001168 max_deq_bytes -= n_bytes;
1169
1170 chain_b = *b;
1171 for (i = 1; i < n_bufs_per_seg; i++)
1172 {
1173 prev_b = chain_b;
Florin Corasbe72ae62018-11-01 11:23:03 -07001174 len_to_deq = clib_min (max_deq_bytes, bytes_per_buffer);
Florin Corasbdf7fd62019-01-31 17:31:01 -08001175 chain_bi = wrk->tx_buffers[--n_bufs];
Florin Corasb2215d62017-08-01 16:56:58 -07001176 chain_b = vlib_get_buffer (vm, chain_bi);
1177 chain_b->current_data = 0;
Florin Corase87216f2017-08-17 16:59:22 -07001178 data = vlib_buffer_get_current (chain_b);
Florin Coras31c99552019-03-01 13:00:58 -08001179 n_peeked = session_tx_fifo_peek_bytes (&tc->connection, data,
1180 offset + n_bytes,
1181 len_to_deq);
Florin Corasb2215d62017-08-01 16:56:58 -07001182 ASSERT (n_peeked == len_to_deq);
Florin Coras1f152cd2017-08-18 19:28:03 -07001183 n_bytes += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001184 chain_b->current_length = n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001185 chain_b->next_buffer = 0;
Florin Corasb2215d62017-08-01 16:56:58 -07001186
1187 /* update previous buffer */
1188 prev_b->next_buffer = chain_bi;
1189 prev_b->flags |= VLIB_BUFFER_NEXT_PRESENT;
1190
Florin Corasb2215d62017-08-01 16:56:58 -07001191 max_deq_bytes -= n_peeked;
Florin Coras1f152cd2017-08-18 19:28:03 -07001192 b[0]->total_length_not_including_first_buffer += n_peeked;
Florin Corasb2215d62017-08-01 16:56:58 -07001193 }
Florin Coras1f152cd2017-08-18 19:28:03 -07001194
Florin Coras47596832019-03-12 18:58:54 -07001195 tcp_push_hdr_i (tc, *b, tc->snd_una + offset, /* compute opts */ 0,
1196 /* burst */ 0, /* update_snd_nxt */ 0);
Florin Corasbdf7fd62019-01-31 17:31:01 -08001197
1198 if (PREDICT_FALSE (n_bufs))
1199 {
1200 clib_warning ("not all buffers consumed");
1201 vlib_buffer_free (vm, wrk->tx_buffers, n_bufs);
1202 }
Florin Corasb2215d62017-08-01 16:56:58 -07001203 }
1204
Florin Coras93992a92017-05-24 18:03:56 -07001205 ASSERT (n_bytes > 0);
Florin Corasbe72ae62018-11-01 11:23:03 -07001206 ASSERT (((*b)->current_data + (*b)->current_length) <= bytes_per_buffer);
Florin Corasbb292f42017-05-19 09:49:19 -07001207
Florin Coras36ee9f12018-11-02 12:52:10 -07001208 return n_bytes;
1209}
1210
1211/**
1212 * Build a retransmit segment
1213 *
1214 * @return the number of bytes in the segment or 0 if there's nothing to
1215 * retransmit
1216 */
1217static u32
1218tcp_prepare_retransmit_segment (tcp_worker_ctx_t * wrk,
1219 tcp_connection_t * tc, u32 offset,
1220 u32 max_deq_bytes, vlib_buffer_t ** b)
1221{
1222 u32 start, available_bytes;
1223 int n_bytes = 0;
1224
1225 ASSERT (tc->state >= TCP_STATE_ESTABLISHED);
1226 ASSERT (max_deq_bytes != 0);
1227
1228 /*
1229 * Make sure we can retransmit something
1230 */
Florin Coras31c99552019-03-01 13:00:58 -08001231 available_bytes = transport_max_tx_dequeue (&tc->connection);
Florin Coras36ee9f12018-11-02 12:52:10 -07001232 ASSERT (available_bytes >= offset);
1233 available_bytes -= offset;
1234 if (!available_bytes)
1235 return 0;
1236
1237 max_deq_bytes = clib_min (tc->snd_mss, max_deq_bytes);
1238 max_deq_bytes = clib_min (available_bytes, max_deq_bytes);
1239
Florin Coras36ee9f12018-11-02 12:52:10 -07001240 start = tc->snd_una + offset;
Florin Coras81cb8e42019-10-22 19:44:45 -07001241 ASSERT (seq_leq (start + max_deq_bytes, tc->snd_nxt));
1242
Florin Coras36ee9f12018-11-02 12:52:10 -07001243 n_bytes = tcp_prepare_segment (wrk, tc, offset, max_deq_bytes, b);
1244 if (!n_bytes)
1245 return 0;
1246
Florin Coras36ebcff2019-09-12 18:36:44 -07001247 tc->snd_rxt_bytes += n_bytes;
1248
Florin Corasbbcfaac2019-10-10 13:52:04 -07001249 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
Florin Coras36ebcff2019-09-12 18:36:44 -07001250 tcp_bt_track_rxt (tc, start, start + n_bytes);
Dave Barach68b0fb02017-02-28 15:15:56 -05001251
Florin Corasedfe0ee2019-07-29 18:13:25 -07001252 tc->bytes_retrans += n_bytes;
1253 tc->segs_retrans += 1;
Florin Coras0765d972020-03-18 21:26:41 +00001254 tcp_worker_stats_inc (wrk, rxt_segs, 1);
Florin Corasa436a422019-08-20 07:09:31 -07001255 TCP_EVT (TCP_EVT_CC_RTX, tc, offset, n_bytes);
Florin Coras36ebcff2019-09-12 18:36:44 -07001256
Dave Barach68b0fb02017-02-28 15:15:56 -05001257 return n_bytes;
1258}
1259
Florin Coras36ebcff2019-09-12 18:36:44 -07001260static void
1261tcp_check_sack_reneging (tcp_connection_t * tc)
1262{
1263 sack_scoreboard_t *sb = &tc->sack_sb;
1264 sack_scoreboard_hole_t *hole;
1265
1266 hole = scoreboard_first_hole (sb);
1267 if (!sb->is_reneging && (!hole || hole->start == tc->snd_una))
1268 return;
1269
1270 scoreboard_clear_reneging (sb, tc->snd_una, tc->snd_nxt);
1271}
1272
Florin Coras6792ec02017-03-13 03:49:51 -07001273/**
1274 * Reset congestion control, switch cwnd to loss window and try again.
1275 */
1276static void
Florin Corasa3c32652019-07-03 17:47:22 -07001277tcp_cc_init_rxt_timeout (tcp_connection_t * tc)
Florin Coras6792ec02017-03-13 03:49:51 -07001278{
Florin Corasa436a422019-08-20 07:09:31 -07001279 TCP_EVT (TCP_EVT_CC_EVT, tc, 6);
Florin Coras36ebcff2019-09-12 18:36:44 -07001280
Florin Coras93992a92017-05-24 18:03:56 -07001281 tc->prev_ssthresh = tc->ssthresh;
1282 tc->prev_cwnd = tc->cwnd;
1283
Florin Coras36ebcff2019-09-12 18:36:44 -07001284 /* If we entrered loss without fast recovery, notify cc algo of the
1285 * congestion event such that it can update ssthresh and its state */
1286 if (!tcp_in_fastrecovery (tc))
1287 tcp_cc_congestion (tc);
Florin Corasa3c32652019-07-03 17:47:22 -07001288
Florin Coras36ebcff2019-09-12 18:36:44 -07001289 /* Let cc algo decide loss cwnd and ssthresh post unrecovered loss */
Florin Corasa3c32652019-07-03 17:47:22 -07001290 tcp_cc_loss (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001291
Florin Corasf1762d62017-09-24 19:43:08 -04001292 tc->rtt_ts = 0;
Florin Corasd2aab832018-05-22 11:39:59 -07001293 tc->cwnd_acc_bytes = 0;
Florin Corasedfe0ee2019-07-29 18:13:25 -07001294 tc->tr_occurences += 1;
Florin Coras3af90fc2017-05-03 21:09:42 -07001295 tcp_recovery_on (tc);
Florin Coras6792ec02017-03-13 03:49:51 -07001296}
1297
Florin Coras75c48c12019-08-02 15:17:21 -07001298void
Florin Corasaa388692020-02-14 23:41:25 +00001299tcp_timer_retransmit_handler (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001300{
Florin Corasaa388692020-02-14 23:41:25 +00001301 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
Florin Corasbe72ae62018-11-01 11:23:03 -07001302 vlib_main_t *vm = wrk->vm;
Florin Corasb2215d62017-08-01 16:56:58 -07001303 vlib_buffer_t *b = 0;
Florin Coras3af90fc2017-05-03 21:09:42 -07001304 u32 bi, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001305
Florin Coras0765d972020-03-18 21:26:41 +00001306 tcp_worker_stats_inc (wrk, tr_events, 1);
Florin Coras75c48c12019-08-02 15:17:21 -07001307
Florin Corasaa388692020-02-14 23:41:25 +00001308 /* Should be handled by a different handler */
1309 if (PREDICT_FALSE (tc->state == TCP_STATE_SYN_SENT))
Florin Coras75c48c12019-08-02 15:17:21 -07001310 return;
1311
Florin Coras75c48c12019-08-02 15:17:21 -07001312 /* Wait-close and retransmit could pop at the same time */
1313 if (tc->state == TCP_STATE_CLOSED)
1314 return;
Dave Barach68b0fb02017-02-28 15:15:56 -05001315
Florin Corase04c2992017-03-01 08:17:34 -08001316 if (tc->state >= TCP_STATE_ESTABLISHED)
Dave Barach68b0fb02017-02-28 15:15:56 -05001317 {
Florin Corasa436a422019-08-20 07:09:31 -07001318 TCP_EVT (TCP_EVT_CC_EVT, tc, 2);
Florin Corase55a6d72018-10-31 23:09:22 -07001319
Florin Coras93992a92017-05-24 18:03:56 -07001320 /* Lost FIN, retransmit and return */
Florin Coras222e1f412019-02-16 20:47:32 -08001321 if (tc->flags & TCP_CONN_FINSNT)
Florin Coras93992a92017-05-24 18:03:56 -07001322 {
1323 tcp_send_fin (tc);
Florin Corasf988e692017-11-27 04:34:14 -05001324 tc->rto_boff += 1;
1325 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
Florin Coras93992a92017-05-24 18:03:56 -07001326 return;
1327 }
1328
Florin Coras3ec66b02018-08-23 16:27:05 -07001329 /* Shouldn't be here. This condition is tricky because it has to take
1330 * into account boff > 0 due to persist timeout. */
Florin Coras47596832019-03-12 18:58:54 -07001331 if ((tc->rto_boff == 0 && tc->snd_una == tc->snd_nxt)
Florin Coras3ec66b02018-08-23 16:27:05 -07001332 || (tc->rto_boff > 0 && seq_geq (tc->snd_una, tc->snd_congestion)
1333 && !tcp_flight_size (tc)))
Florin Corasa096f2d2017-09-28 23:49:42 -04001334 {
Florin Coras3ec66b02018-08-23 16:27:05 -07001335 ASSERT (!tcp_in_recovery (tc));
1336 tc->rto_boff = 0;
Florin Corasa096f2d2017-09-28 23:49:42 -04001337 return;
1338 }
1339
Florin Coras3ec66b02018-08-23 16:27:05 -07001340 /* We're not in recovery so make sure rto_boff is 0. Can be non 0 due
1341 * to persist timer timeout */
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001342 if (!tcp_in_recovery (tc) && tc->rto_boff > 0)
1343 {
1344 tc->rto_boff = 0;
1345 tcp_update_rto (tc);
1346 }
1347
Florin Coras548f7572019-06-07 15:31:06 -07001348 /* Peer is dead or network connectivity is lost. Close connection.
1349 * RFC 1122 section 4.2.3.5 recommends a value of at least 100s. For
1350 * a min rto of 0.2s we need to retry about 8 times. */
1351 if (tc->rto_boff >= TCP_RTO_BOFF_MAX)
1352 {
1353 tcp_send_reset (tc);
1354 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1355 session_transport_closing_notify (&tc->connection);
Florin Coras52be6742019-11-14 23:32:08 -08001356 session_transport_closed_notify (&tc->connection);
Florin Coras548f7572019-06-07 15:31:06 -07001357 tcp_connection_timers_reset (tc);
Florin Coras7a3a8662020-02-22 02:27:21 +00001358 tcp_program_cleanup (wrk, tc);
Florin Coras0765d972020-03-18 21:26:41 +00001359 tcp_worker_stats_inc (wrk, tr_abort, 1);
Florin Coras548f7572019-06-07 15:31:06 -07001360 return;
1361 }
1362
Florin Coras36ebcff2019-09-12 18:36:44 -07001363 if (tcp_opts_sack_permitted (&tc->rcv_opts))
1364 tcp_check_sack_reneging (tc);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001365
Florin Coras36ebcff2019-09-12 18:36:44 -07001366 /* Update send congestion to make sure that rxt has data to send */
1367 tc->snd_congestion = tc->snd_nxt;
Florin Corasa3c32652019-07-03 17:47:22 -07001368
Florin Coras36ebcff2019-09-12 18:36:44 -07001369 /* Send the first unacked segment. If we're short on buffers, return
1370 * as soon as possible */
Florin Coras81cb8e42019-10-22 19:44:45 -07001371 n_bytes = clib_min (tc->snd_mss, tc->snd_nxt - tc->snd_una);
1372 n_bytes = tcp_prepare_retransmit_segment (wrk, tc, 0, n_bytes, &b);
Florin Coras85a3ddd2018-12-24 16:54:34 -08001373 if (!n_bytes)
Florin Corase04c2992017-03-01 08:17:34 -08001374 {
Florin Coras0765d972020-03-18 21:26:41 +00001375 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT, 1);
Florin Corase04c2992017-03-01 08:17:34 -08001376 return;
1377 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001378
Dave Barachb7f1faa2017-08-29 11:43:37 -04001379 bi = vlib_get_buffer_index (vm, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001380 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras75c48c12019-08-02 15:17:21 -07001381
1382 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
Florin Coras0765d972020-03-18 21:26:41 +00001383 tcp_retransmit_timer_force_update (&wrk->timer_wheel, tc);
Florin Coras36ebcff2019-09-12 18:36:44 -07001384
1385 tc->rto_boff += 1;
1386 if (tc->rto_boff == 1)
1387 {
1388 tcp_cc_init_rxt_timeout (tc);
1389 /* Record timestamp. Eifel detection algorithm RFC3522 */
1390 tc->snd_rxt_ts = tcp_tstamp (tc);
1391 }
1392
1393 if (tcp_opts_sack_permitted (&tc->rcv_opts))
Florin Corasbe237bf2019-09-27 08:16:40 -07001394 scoreboard_init_rxt (&tc->sack_sb, tc->snd_una + n_bytes);
Florin Coras36ebcff2019-09-12 18:36:44 -07001395
1396 tcp_program_retransmit (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001397 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001398 /* Retransmit SYN-ACK */
1399 else if (tc->state == TCP_STATE_SYN_RCVD)
1400 {
Florin Corasa436a422019-08-20 07:09:31 -07001401 TCP_EVT (TCP_EVT_CC_EVT, tc, 2);
Florin Corase55a6d72018-10-31 23:09:22 -07001402
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001403 tc->rtt_ts = 0;
1404
Florin Coras75c48c12019-08-02 15:17:21 -07001405 /* Passive open establish timeout */
1406 if (tc->rto > TCP_ESTABLISH_TIME >> 1)
1407 {
1408 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1409 tcp_connection_timers_reset (tc);
Florin Coras7a3a8662020-02-22 02:27:21 +00001410 tcp_program_cleanup (wrk, tc);
Florin Coras0765d972020-03-18 21:26:41 +00001411 tcp_worker_stats_inc (wrk, tr_abort, 1);
Florin Coras75c48c12019-08-02 15:17:21 -07001412 return;
1413 }
Florin Coras222e1f412019-02-16 20:47:32 -08001414
Florin Corasbdf7fd62019-01-31 17:31:01 -08001415 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Corasf988e692017-11-27 04:34:14 -05001416 {
Florin Coras0765d972020-03-18 21:26:41 +00001417 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT, 1);
Florin Corasf988e692017-11-27 04:34:14 -05001418 return;
1419 }
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001420
Florin Coras75c48c12019-08-02 15:17:21 -07001421 tc->rto_boff += 1;
1422 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1423 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1424
Florin Coras0765d972020-03-18 21:26:41 +00001425 tcp_retransmit_timer_force_update (&wrk->timer_wheel, tc);
Florin Coras75c48c12019-08-02 15:17:21 -07001426
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001427 b = vlib_get_buffer (vm, bi);
Florin Coras24793e32018-05-09 11:34:25 -07001428 tcp_init_buffer (vm, b);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001429 tcp_make_synack (tc, b);
Florin Corasa436a422019-08-20 07:09:31 -07001430 TCP_EVT (TCP_EVT_SYN_RXT, tc, 1);
Florin Coras4eeeaaf2017-09-05 14:03:37 -04001431
1432 /* Retransmit timer already updated, just enqueue to output */
Florin Corasbe72ae62018-11-01 11:23:03 -07001433 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05001434 }
Florin Coras93992a92017-05-24 18:03:56 -07001435 else
1436 {
1437 ASSERT (tc->state == TCP_STATE_CLOSED);
Florin Coras93992a92017-05-24 18:03:56 -07001438 return;
1439 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001440}
1441
Florin Coras75c48c12019-08-02 15:17:21 -07001442/**
1443 * SYN retransmit timer handler. Active open only.
1444 */
Dave Barach68b0fb02017-02-28 15:15:56 -05001445void
Florin Corasaa388692020-02-14 23:41:25 +00001446tcp_timer_retransmit_syn_handler (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001447{
Florin Corasaa388692020-02-14 23:41:25 +00001448 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
Florin Coras75c48c12019-08-02 15:17:21 -07001449 vlib_main_t *vm = wrk->vm;
Florin Coras75c48c12019-08-02 15:17:21 -07001450 vlib_buffer_t *b = 0;
1451 u32 bi;
Dave Barach68b0fb02017-02-28 15:15:56 -05001452
Florin Coras75c48c12019-08-02 15:17:21 -07001453 /* Note: the connection may have transitioned to ESTABLISHED... */
Florin Corasaa388692020-02-14 23:41:25 +00001454 if (PREDICT_FALSE (tc->state != TCP_STATE_SYN_SENT))
Florin Coras75c48c12019-08-02 15:17:21 -07001455 return;
1456
Florin Coras75c48c12019-08-02 15:17:21 -07001457 /* Half-open connection actually moved to established but we were
1458 * waiting for syn retransmit to pop to call cleanup from the right
1459 * thread. */
1460 if (tc->flags & TCP_CONN_HALF_OPEN_DONE)
1461 {
1462 if (tcp_half_open_connection_cleanup (tc))
1463 TCP_DBG ("could not remove half-open connection");
1464 return;
1465 }
1466
Florin Corasa436a422019-08-20 07:09:31 -07001467 TCP_EVT (TCP_EVT_CC_EVT, tc, 2);
Florin Coras75c48c12019-08-02 15:17:21 -07001468 tc->rtt_ts = 0;
1469
1470 /* Active open establish timeout */
1471 if (tc->rto >= TCP_ESTABLISH_TIME >> 1)
1472 {
Florin Coras00e01d32019-10-21 16:07:46 -07001473 session_stream_connect_notify (&tc->connection, SESSION_E_TIMEDOUT);
Florin Coras75c48c12019-08-02 15:17:21 -07001474 tcp_connection_cleanup (tc);
1475 return;
1476 }
1477
1478 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
1479 {
Florin Coras0765d972020-03-18 21:26:41 +00001480 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT_SYN, 1);
Florin Coras75c48c12019-08-02 15:17:21 -07001481 return;
1482 }
1483
1484 /* Try without increasing RTO a number of times. If this fails,
1485 * start growing RTO exponentially */
1486 tc->rto_boff += 1;
1487 if (tc->rto_boff > TCP_RTO_SYN_RETRIES)
1488 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1489
1490 b = vlib_get_buffer (vm, bi);
1491 tcp_init_buffer (vm, b);
1492 tcp_make_syn (tc, b);
1493
Florin Corasa436a422019-08-20 07:09:31 -07001494 TCP_EVT (TCP_EVT_SYN_RXT, tc, 0);
Florin Coras75c48c12019-08-02 15:17:21 -07001495
1496 /* This goes straight to ipx_lookup */
1497 tcp_push_ip_hdr (wrk, tc, b);
1498 tcp_enqueue_to_ip_lookup (wrk, b, bi, tc->c_is_ip4, tc->c_fib_index);
1499
Florin Coras0765d972020-03-18 21:26:41 +00001500 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT_SYN,
Florin Coras75c48c12019-08-02 15:17:21 -07001501 tc->rto * TCP_TO_TIMER_TICK);
Dave Barach68b0fb02017-02-28 15:15:56 -05001502}
1503
1504/**
Florin Coras3e350af2017-03-30 02:54:28 -07001505 * Got 0 snd_wnd from peer, try to do something about it.
1506 *
1507 */
1508void
Florin Corasaa388692020-02-14 23:41:25 +00001509tcp_timer_persist_handler (tcp_connection_t * tc)
Florin Coras3e350af2017-03-30 02:54:28 -07001510{
Florin Corasaa388692020-02-14 23:41:25 +00001511 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
Florin Corasbe72ae62018-11-01 11:23:03 -07001512 u32 bi, max_snd_bytes, available_bytes, offset;
1513 tcp_main_t *tm = vnet_get_tcp_main ();
1514 vlib_main_t *vm = wrk->vm;
Florin Coras3e350af2017-03-30 02:54:28 -07001515 vlib_buffer_t *b;
Florin Coras93992a92017-05-24 18:03:56 -07001516 int n_bytes = 0;
Florin Coras1f152cd2017-08-18 19:28:03 -07001517 u8 *data;
Florin Coras3e350af2017-03-30 02:54:28 -07001518
Florin Coras3e350af2017-03-30 02:54:28 -07001519 /* Problem already solved or worse */
Florin Coras7e74bf32019-03-06 16:51:58 -08001520 if (tc->state == TCP_STATE_CLOSED || tc->snd_wnd > tc->snd_mss
1521 || (tc->flags & TCP_CONN_FINSNT))
Florin Coras70f879d2020-03-13 17:54:42 +00001522 goto update_scheduler;
Florin Coras3e350af2017-03-30 02:54:28 -07001523
Florin Coras31c99552019-03-01 13:00:58 -08001524 available_bytes = transport_max_tx_dequeue (&tc->connection);
Florin Coras47596832019-03-12 18:58:54 -07001525 offset = tc->snd_nxt - tc->snd_una;
Florin Coras50958952017-08-29 14:50:13 -07001526
1527 /* Reprogram persist if no new bytes available to send. We may have data
1528 * next time */
1529 if (!available_bytes)
1530 {
Florin Coras0765d972020-03-18 21:26:41 +00001531 tcp_persist_timer_set (&wrk->timer_wheel, tc);
Florin Coras50958952017-08-29 14:50:13 -07001532 return;
1533 }
1534
1535 if (available_bytes <= offset)
Florin Coras70f879d2020-03-13 17:54:42 +00001536 goto update_scheduler;
Florin Coras50958952017-08-29 14:50:13 -07001537
Florin Coras3e350af2017-03-30 02:54:28 -07001538 /* Increment RTO backoff */
1539 tc->rto_boff += 1;
1540 tc->rto = clib_min (tc->rto << 1, TCP_RTO_MAX);
1541
Florin Corasb2215d62017-08-01 16:56:58 -07001542 /*
1543 * Try to force the first unsent segment (or buffer)
1544 */
Florin Corasbdf7fd62019-01-31 17:31:01 -08001545 if (PREDICT_FALSE (!vlib_buffer_alloc (vm, &bi, 1)))
Florin Coras3ec66b02018-08-23 16:27:05 -07001546 {
Florin Coras0765d972020-03-18 21:26:41 +00001547 tcp_persist_timer_set (&wrk->timer_wheel, tc);
Florin Coras3ec66b02018-08-23 16:27:05 -07001548 return;
1549 }
Florin Coras70f879d2020-03-13 17:54:42 +00001550
Florin Coras3e350af2017-03-30 02:54:28 -07001551 b = vlib_get_buffer (vm, bi);
Florin Coras1f152cd2017-08-18 19:28:03 -07001552 data = tcp_init_buffer (vm, b);
Florin Coras93992a92017-05-24 18:03:56 -07001553
Florin Coras1f152cd2017-08-18 19:28:03 -07001554 tcp_validate_txf_size (tc, offset);
Florin Corasc8343412017-05-04 14:25:50 -07001555 tc->snd_opts_len = tcp_make_options (tc, &tc->snd_opts, tc->state);
Florin Coras7e74bf32019-03-06 16:51:58 -08001556 max_snd_bytes = clib_min (tc->snd_mss,
1557 tm->bytes_per_buffer - TRANSPORT_MAX_HDRS_LEN);
1558 n_bytes = session_tx_fifo_peek_bytes (&tc->connection, data, offset,
1559 max_snd_bytes);
Florin Coras3e350af2017-03-30 02:54:28 -07001560 b->current_length = n_bytes;
Florin Coras84275e92017-09-26 12:30:40 -04001561 ASSERT (n_bytes != 0 && (tcp_timer_is_active (tc, TCP_TIMER_RETRANSMIT)
1562 || tc->snd_nxt == tc->snd_una_max
1563 || tc->rto_boff > 1));
Florin Coras93992a92017-05-24 18:03:56 -07001564
Florin Corasbbcfaac2019-10-10 13:52:04 -07001565 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
Florin Corasdd60b1b2019-10-07 17:19:09 -07001566 {
1567 tcp_bt_check_app_limited (tc);
Florin Corasd6ae4bf2019-10-12 18:10:20 -07001568 tcp_bt_track_tx (tc, n_bytes);
Florin Corasdd60b1b2019-10-07 17:19:09 -07001569 }
1570
Florin Coras47596832019-03-12 18:58:54 -07001571 tcp_push_hdr_i (tc, b, tc->snd_nxt, /* compute opts */ 0,
1572 /* burst */ 0, /* update_snd_nxt */ 1);
1573 tc->snd_una_max = seq_max (tc->snd_nxt, tc->snd_una_max);
Florin Coras8b20bf52018-06-14 14:55:50 -07001574 tcp_validate_txf_size (tc, tc->snd_una_max - tc->snd_una);
Florin Corasbe72ae62018-11-01 11:23:03 -07001575 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras3e350af2017-03-30 02:54:28 -07001576
Florin Coras1f152cd2017-08-18 19:28:03 -07001577 /* Just sent new data, enable retransmit */
Florin Coras0765d972020-03-18 21:26:41 +00001578 tcp_retransmit_timer_update (&wrk->timer_wheel, tc);
Florin Coras70f879d2020-03-13 17:54:42 +00001579
Florin Coras6080e0d2020-03-13 20:39:43 +00001580 return;
1581
Florin Coras70f879d2020-03-13 17:54:42 +00001582update_scheduler:
1583
Florin Coras6080e0d2020-03-13 20:39:43 +00001584 if (tcp_is_descheduled (tc))
Florin Coras70f879d2020-03-13 17:54:42 +00001585 transport_connection_reschedule (&tc->connection);
Florin Coras3e350af2017-03-30 02:54:28 -07001586}
1587
1588/**
Florin Coras6792ec02017-03-13 03:49:51 -07001589 * Retransmit first unacked segment
1590 */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001591int
Florin Corasbe72ae62018-11-01 11:23:03 -07001592tcp_retransmit_first_unacked (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001593{
Florin Corasbe72ae62018-11-01 11:23:03 -07001594 vlib_main_t *vm = wrk->vm;
1595 vlib_buffer_t *b;
Florin Coras47596832019-03-12 18:58:54 -07001596 u32 bi, n_bytes;
Dave Barach68b0fb02017-02-28 15:15:56 -05001597
Florin Corasa436a422019-08-20 07:09:31 -07001598 TCP_EVT (TCP_EVT_CC_EVT, tc, 1);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001599
Florin Corasbe72ae62018-11-01 11:23:03 -07001600 n_bytes = tcp_prepare_retransmit_segment (wrk, tc, 0, tc->snd_mss, &b);
Florin Corasb2215d62017-08-01 16:56:58 -07001601 if (!n_bytes)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001602 return -1;
1603
Florin Corasb2215d62017-08-01 16:56:58 -07001604 bi = vlib_get_buffer_index (vm, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001605 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001606
1607 return 0;
Florin Coras6792ec02017-03-13 03:49:51 -07001608}
1609
Florin Coras36ee9f12018-11-02 12:52:10 -07001610static int
Florin Coras36ebcff2019-09-12 18:36:44 -07001611tcp_transmit_unsent (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1612 u32 burst_size)
Florin Coras36ee9f12018-11-02 12:52:10 -07001613{
Florin Coras635acbf2019-07-31 14:11:05 -07001614 u32 offset, n_segs = 0, n_written, bi, available_wnd;
Florin Coras36ee9f12018-11-02 12:52:10 -07001615 vlib_main_t *vm = wrk->vm;
1616 vlib_buffer_t *b = 0;
1617
Florin Coras47596832019-03-12 18:58:54 -07001618 offset = tc->snd_nxt - tc->snd_una;
Florin Coras635acbf2019-07-31 14:11:05 -07001619 available_wnd = tc->snd_wnd - offset;
1620 burst_size = clib_min (burst_size, available_wnd / tc->snd_mss);
1621
Florin Corasd6ae4bf2019-10-12 18:10:20 -07001622 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
1623 tcp_bt_check_app_limited (tc);
1624
Florin Coras36ee9f12018-11-02 12:52:10 -07001625 while (n_segs < burst_size)
1626 {
1627 n_written = tcp_prepare_segment (wrk, tc, offset, tc->snd_mss, &b);
1628 if (!n_written)
1629 goto done;
1630
1631 bi = vlib_get_buffer_index (vm, b);
1632 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
1633 offset += n_written;
1634 n_segs += 1;
Florin Coras47596832019-03-12 18:58:54 -07001635
Florin Corasd6ae4bf2019-10-12 18:10:20 -07001636 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
1637 tcp_bt_track_tx (tc, n_written);
1638
Florin Coras47596832019-03-12 18:58:54 -07001639 tc->snd_nxt += n_written;
1640 tc->snd_una_max = seq_max (tc->snd_nxt, tc->snd_una_max);
Florin Coras36ee9f12018-11-02 12:52:10 -07001641 }
1642
1643done:
1644 return n_segs;
1645}
1646
Florin Coras36ebcff2019-09-12 18:36:44 -07001647/**
1648 * Estimate send space using proportional rate reduction (RFC6937)
1649 */
Florin Corasbe237bf2019-09-27 08:16:40 -07001650int
Florin Coras36ebcff2019-09-12 18:36:44 -07001651tcp_fastrecovery_prr_snd_space (tcp_connection_t * tc)
1652{
1653 u32 pipe, prr_out;
1654 int space;
1655
1656 pipe = tcp_flight_size (tc);
1657 prr_out = tc->snd_rxt_bytes + (tc->snd_nxt - tc->snd_congestion);
1658
1659 if (pipe > tc->ssthresh)
1660 {
1661 space = ((int) tc->prr_delivered * ((f64) tc->ssthresh / tc->prev_cwnd))
1662 - prr_out;
1663 }
1664 else
1665 {
Florin Corasbe237bf2019-09-27 08:16:40 -07001666 int limit;
1667 limit = clib_max ((int) (tc->prr_delivered - prr_out), 0) + tc->snd_mss;
Florin Coras36ebcff2019-09-12 18:36:44 -07001668 space = clib_min (tc->ssthresh - pipe, limit);
1669 }
1670 space = clib_max (space, prr_out ? 0 : tc->snd_mss);
1671 return space;
1672}
1673
Florin Corasbe237bf2019-09-27 08:16:40 -07001674static inline u8
1675tcp_retransmit_should_retry_head (tcp_connection_t * tc,
1676 sack_scoreboard_t * sb)
1677{
1678 u32 tx_adv_sack = sb->high_sacked - tc->snd_congestion;
1679 f64 rr = (f64) tc->ssthresh / tc->prev_cwnd;
1680
Florin Corasb3dce892019-10-30 09:22:14 -07001681 if (tcp_fastrecovery_first (tc))
1682 return 1;
1683
Florin Corasbe237bf2019-09-27 08:16:40 -07001684 return (tx_adv_sack > (tc->snd_una - tc->prr_start) * rr);
1685}
1686
Florin Corascb711a42019-10-16 19:28:17 -07001687static inline u8
1688tcp_max_tx_deq (tcp_connection_t * tc)
1689{
1690 return (transport_max_tx_dequeue (&tc->connection)
1691 - (tc->snd_nxt - tc->snd_una));
1692}
1693
Florin Coras36ee9f12018-11-02 12:52:10 -07001694#define scoreboard_rescue_rxt_valid(_sb, _tc) \
1695 (seq_geq (_sb->rescue_rxt, _tc->snd_una) \
1696 && seq_leq (_sb->rescue_rxt, _tc->snd_congestion))
1697
Florin Coras6792ec02017-03-13 03:49:51 -07001698/**
Florin Coras36ebcff2019-09-12 18:36:44 -07001699 * Do retransmit with SACKs
Florin Coras6792ec02017-03-13 03:49:51 -07001700 */
Florin Coras36ebcff2019-09-12 18:36:44 -07001701static int
1702tcp_retransmit_sack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1703 u32 burst_size)
Dave Barach68b0fb02017-02-28 15:15:56 -05001704{
Florin Coras36ebcff2019-09-12 18:36:44 -07001705 u32 n_written = 0, offset, max_bytes, n_segs = 0;
Florin Coras11e9e352019-11-13 19:09:47 -08001706 u8 snd_limited = 0, can_rescue = 0;
1707 u32 bi, max_deq, burst_bytes;
Florin Coras93992a92017-05-24 18:03:56 -07001708 sack_scoreboard_hole_t *hole;
Florin Coras36ee9f12018-11-02 12:52:10 -07001709 vlib_main_t *vm = wrk->vm;
1710 vlib_buffer_t *b = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001711 sack_scoreboard_t *sb;
Florin Coras93992a92017-05-24 18:03:56 -07001712 int snd_space;
Dave Barach68b0fb02017-02-28 15:15:56 -05001713
Florin Coras36ebcff2019-09-12 18:36:44 -07001714 ASSERT (tcp_in_cong_recovery (tc));
Dave Barach68b0fb02017-02-28 15:15:56 -05001715
Florin Corasa8e71c82019-10-22 19:01:39 -07001716 burst_bytes = transport_connection_tx_pacer_burst (&tc->connection);
Florin Corasc31dc312019-10-06 14:06:14 -07001717 burst_size = clib_min (burst_size, burst_bytes / tc->snd_mss);
1718 if (!burst_size)
1719 {
1720 tcp_program_retransmit (tc);
1721 return 0;
1722 }
1723
Florin Coras36ebcff2019-09-12 18:36:44 -07001724 if (tcp_in_recovery (tc))
1725 snd_space = tcp_available_cc_snd_space (tc);
1726 else
1727 snd_space = tcp_fastrecovery_prr_snd_space (tc);
1728
Florin Corasca1c8f32018-05-23 21:01:30 -07001729 if (snd_space < tc->snd_mss)
Florin Coras11e9e352019-11-13 19:09:47 -08001730 goto done;
Florin Corasc31dc312019-10-06 14:06:14 -07001731
Florin Coras36ee9f12018-11-02 12:52:10 -07001732 sb = &tc->sack_sb;
Florin Corasbe237bf2019-09-27 08:16:40 -07001733
1734 /* Check if snd_una is a lost retransmit */
Florin Coras8a8b05c2019-10-16 10:07:39 -07001735 if (pool_elts (sb->holes)
1736 && seq_gt (sb->high_sacked, tc->snd_congestion)
Florin Corasbe237bf2019-09-27 08:16:40 -07001737 && tc->rxt_head != tc->snd_una
1738 && tcp_retransmit_should_retry_head (tc, sb))
1739 {
Florin Corasbf1f8b72019-11-04 14:39:33 -08001740 max_bytes = clib_min (tc->snd_mss, tc->snd_congestion - tc->snd_una);
1741 n_written = tcp_prepare_retransmit_segment (wrk, tc, 0, max_bytes, &b);
Florin Corasbe237bf2019-09-27 08:16:40 -07001742 if (!n_written)
1743 {
1744 tcp_program_retransmit (tc);
1745 goto done;
1746 }
1747 bi = vlib_get_buffer_index (vm, b);
1748 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
1749 n_segs = 1;
1750
1751 tc->rxt_head = tc->snd_una;
1752 tc->rxt_delivered += n_written;
1753 tc->prr_delivered += n_written;
1754 ASSERT (tc->rxt_delivered <= tc->snd_rxt_bytes);
1755 }
1756
Florin Corasb3dce892019-10-30 09:22:14 -07001757 tcp_fastrecovery_first_off (tc);
1758
Florin Corasbe237bf2019-09-27 08:16:40 -07001759 TCP_EVT (TCP_EVT_CC_EVT, tc, 0);
Florin Coras36ee9f12018-11-02 12:52:10 -07001760 hole = scoreboard_get_hole (sb, sb->cur_rxt_hole);
1761
Florin Coras31c99552019-03-01 13:00:58 -08001762 max_deq = transport_max_tx_dequeue (&tc->connection);
Florin Coras47596832019-03-12 18:58:54 -07001763 max_deq -= tc->snd_nxt - tc->snd_una;
Florin Coras36ee9f12018-11-02 12:52:10 -07001764
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001765 while (snd_space > 0 && n_segs < burst_size)
Florin Coras93992a92017-05-24 18:03:56 -07001766 {
Florin Coras81cb8e42019-10-22 19:44:45 -07001767 hole = scoreboard_next_rxt_hole (sb, hole, max_deq != 0, &can_rescue,
Florin Coras36ee9f12018-11-02 12:52:10 -07001768 &snd_limited);
Florin Coras93992a92017-05-24 18:03:56 -07001769 if (!hole)
1770 {
Florin Coras36ebcff2019-09-12 18:36:44 -07001771 /* We are out of lost holes to retransmit so send some new data. */
Florin Corasbe237bf2019-09-27 08:16:40 -07001772 if (max_deq > tc->snd_mss)
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001773 {
Florin Corasc31dc312019-10-06 14:06:14 -07001774 u32 n_segs_new;
1775 int av_wnd;
1776
Florin Coras3eba7f12019-11-15 17:56:48 -08001777 /* Make sure we don't exceed available window and leave space
1778 * for one more packet, to avoid zero window acks */
Florin Corasc31dc312019-10-06 14:06:14 -07001779 av_wnd = (int) tc->snd_wnd - (tc->snd_nxt - tc->snd_una);
Florin Coras3eba7f12019-11-15 17:56:48 -08001780 av_wnd = clib_max (av_wnd - tc->snd_mss, 0);
Florin Corasc31dc312019-10-06 14:06:14 -07001781 snd_space = clib_min (snd_space, av_wnd);
Florin Coras36ee9f12018-11-02 12:52:10 -07001782 snd_space = clib_min (max_deq, snd_space);
1783 burst_size = clib_min (burst_size - n_segs,
1784 snd_space / tc->snd_mss);
Florin Coras36ebcff2019-09-12 18:36:44 -07001785 burst_size = clib_min (burst_size, TCP_RXT_MAX_BURST);
1786 n_segs_new = tcp_transmit_unsent (wrk, tc, burst_size);
1787 if (max_deq > n_segs_new * tc->snd_mss)
1788 tcp_program_retransmit (tc);
1789
1790 n_segs += n_segs_new;
Florin Coras36ee9f12018-11-02 12:52:10 -07001791 goto done;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001792 }
Florin Coras93992a92017-05-24 18:03:56 -07001793
Florin Coras36ebcff2019-09-12 18:36:44 -07001794 if (tcp_in_recovery (tc) || !can_rescue
1795 || scoreboard_rescue_rxt_valid (sb, tc))
Florin Coras36ee9f12018-11-02 12:52:10 -07001796 break;
1797
Florin Coras93992a92017-05-24 18:03:56 -07001798 /* If rescue rxt undefined or less than snd_una then one segment of
1799 * up to SMSS octets that MUST include the highest outstanding
1800 * unSACKed sequence number SHOULD be returned, and RescueRxt set to
1801 * RecoveryPoint. HighRxt MUST NOT be updated.
1802 */
Florin Coras3eba7f12019-11-15 17:56:48 -08001803 hole = scoreboard_last_hole (sb);
1804 max_bytes = clib_min (tc->snd_mss, hole->end - hole->start);
Florin Coras1f152cd2017-08-18 19:28:03 -07001805 max_bytes = clib_min (max_bytes, snd_space);
Florin Coras3eba7f12019-11-15 17:56:48 -08001806 offset = hole->end - tc->snd_una - max_bytes;
Florin Corasbe72ae62018-11-01 11:23:03 -07001807 n_written = tcp_prepare_retransmit_segment (wrk, tc, offset,
1808 max_bytes, &b);
Florin Coras24793e32018-05-09 11:34:25 -07001809 if (!n_written)
1810 goto done;
1811
Florin Coras3eba7f12019-11-15 17:56:48 -08001812 sb->rescue_rxt = tc->snd_congestion;
Florin Corasb2215d62017-08-01 16:56:58 -07001813 bi = vlib_get_buffer_index (vm, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001814 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001815 n_segs += 1;
Florin Coras93992a92017-05-24 18:03:56 -07001816 break;
1817 }
1818
Florin Coras1f152cd2017-08-18 19:28:03 -07001819 max_bytes = clib_min (hole->end - sb->high_rxt, snd_space);
1820 max_bytes = snd_limited ? clib_min (max_bytes, tc->snd_mss) : max_bytes;
1821 if (max_bytes == 0)
1822 break;
Florin Coras36ee9f12018-11-02 12:52:10 -07001823
Florin Coras93992a92017-05-24 18:03:56 -07001824 offset = sb->high_rxt - tc->snd_una;
Florin Corasbe72ae62018-11-01 11:23:03 -07001825 n_written = tcp_prepare_retransmit_segment (wrk, tc, offset, max_bytes,
1826 &b);
Florin Coras36ee9f12018-11-02 12:52:10 -07001827 ASSERT (n_written <= snd_space);
Florin Coras93992a92017-05-24 18:03:56 -07001828
1829 /* Nothing left to retransmit */
1830 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001831 break;
Florin Coras93992a92017-05-24 18:03:56 -07001832
Florin Corasb2215d62017-08-01 16:56:58 -07001833 bi = vlib_get_buffer_index (vm, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001834 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras36ee9f12018-11-02 12:52:10 -07001835
1836 sb->high_rxt += n_written;
Florin Coras81cb8e42019-10-22 19:44:45 -07001837 ASSERT (seq_leq (sb->high_rxt, tc->snd_nxt));
1838
Florin Coras93992a92017-05-24 18:03:56 -07001839 snd_space -= n_written;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001840 n_segs += 1;
Florin Coras93992a92017-05-24 18:03:56 -07001841 }
1842
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001843 if (hole)
Florin Coras36ebcff2019-09-12 18:36:44 -07001844 tcp_program_retransmit (tc);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001845
Florin Coras24793e32018-05-09 11:34:25 -07001846done:
Florin Coras36ebcff2019-09-12 18:36:44 -07001847
Florin Coras11e9e352019-11-13 19:09:47 -08001848 transport_connection_tx_pacer_reset_bucket (&tc->connection, 0);
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001849 return n_segs;
Florin Coras93992a92017-05-24 18:03:56 -07001850}
1851
1852/**
1853 * Fast retransmit without SACK info
1854 */
Florin Coras36ebcff2019-09-12 18:36:44 -07001855static int
1856tcp_retransmit_no_sack (tcp_worker_ctx_t * wrk, tcp_connection_t * tc,
1857 u32 burst_size)
Florin Coras93992a92017-05-24 18:03:56 -07001858{
Florin Corasbf1f8b72019-11-04 14:39:33 -08001859 u32 n_written = 0, offset = 0, bi, max_deq, n_segs_now, max_bytes;
Florin Corasc31dc312019-10-06 14:06:14 -07001860 u32 burst_bytes, sent_bytes;
Florin Corasbe72ae62018-11-01 11:23:03 -07001861 vlib_main_t *vm = wrk->vm;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001862 int snd_space, n_segs = 0;
Florin Corasc31dc312019-10-06 14:06:14 -07001863 u8 cc_limited = 0;
Florin Coras93992a92017-05-24 18:03:56 -07001864 vlib_buffer_t *b;
1865
Florin Corasbf1f8b72019-11-04 14:39:33 -08001866 ASSERT (tcp_in_cong_recovery (tc));
Florin Corasa436a422019-08-20 07:09:31 -07001867 TCP_EVT (TCP_EVT_CC_EVT, tc, 0);
Florin Coras6792ec02017-03-13 03:49:51 -07001868
Florin Corasa8e71c82019-10-22 19:01:39 -07001869 burst_bytes = transport_connection_tx_pacer_burst (&tc->connection);
Florin Corasc31dc312019-10-06 14:06:14 -07001870 burst_size = clib_min (burst_size, burst_bytes / tc->snd_mss);
1871 if (!burst_size)
1872 {
1873 tcp_program_retransmit (tc);
1874 return 0;
1875 }
1876
Florin Coras87a9bf82019-06-12 11:26:35 -07001877 snd_space = tcp_available_cc_snd_space (tc);
Florin Corasc31dc312019-10-06 14:06:14 -07001878 cc_limited = snd_space < burst_bytes;
Florin Coras87a9bf82019-06-12 11:26:35 -07001879
Florin Coras36ee9f12018-11-02 12:52:10 -07001880 if (!tcp_fastrecovery_first (tc))
1881 goto send_unsent;
1882
1883 /* RFC 6582: [If a partial ack], retransmit the first unacknowledged
1884 * segment. */
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001885 while (snd_space > 0 && n_segs < burst_size)
Dave Barach68b0fb02017-02-28 15:15:56 -05001886 {
Florin Corasbf1f8b72019-11-04 14:39:33 -08001887 max_bytes = clib_min (tc->snd_mss,
1888 tc->snd_congestion - tc->snd_una - offset);
1889 if (!max_bytes)
1890 break;
1891 n_written = tcp_prepare_retransmit_segment (wrk, tc, offset, max_bytes,
1892 &b);
Dave Barach68b0fb02017-02-28 15:15:56 -05001893
1894 /* Nothing left to retransmit */
Florin Coras6792ec02017-03-13 03:49:51 -07001895 if (n_written == 0)
Florin Corasb2215d62017-08-01 16:56:58 -07001896 break;
Dave Barach68b0fb02017-02-28 15:15:56 -05001897
Florin Corasb2215d62017-08-01 16:56:58 -07001898 bi = vlib_get_buffer_index (vm, b);
Florin Corasbe72ae62018-11-01 11:23:03 -07001899 tcp_enqueue_to_output (wrk, b, bi, tc->c_is_ip4);
Florin Coras6792ec02017-03-13 03:49:51 -07001900 snd_space -= n_written;
Florin Coras36ee9f12018-11-02 12:52:10 -07001901 offset += n_written;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001902 n_segs += 1;
Dave Barach68b0fb02017-02-28 15:15:56 -05001903 }
1904
Florin Coras36ee9f12018-11-02 12:52:10 -07001905 if (n_segs == burst_size)
1906 goto done;
Florin Corasbf4d5ce2018-10-19 16:26:24 -07001907
Florin Coras36ee9f12018-11-02 12:52:10 -07001908send_unsent:
1909
1910 /* RFC 6582: Send a new segment if permitted by the new value of cwnd. */
Florin Coras9ece3c02018-11-05 11:06:53 -08001911 if (snd_space < tc->snd_mss || tc->snd_mss == 0)
Florin Coras36ee9f12018-11-02 12:52:10 -07001912 goto done;
1913
Florin Coras31c99552019-03-01 13:00:58 -08001914 max_deq = transport_max_tx_dequeue (&tc->connection);
Florin Coras47596832019-03-12 18:58:54 -07001915 max_deq -= tc->snd_nxt - tc->snd_una;
Florin Coras36ee9f12018-11-02 12:52:10 -07001916 if (max_deq)
1917 {
1918 snd_space = clib_min (max_deq, snd_space);
1919 burst_size = clib_min (burst_size - n_segs, snd_space / tc->snd_mss);
Florin Coras36ebcff2019-09-12 18:36:44 -07001920 n_segs_now = tcp_transmit_unsent (wrk, tc, burst_size);
Florin Corasbf1f8b72019-11-04 14:39:33 -08001921 if (n_segs_now && max_deq > n_segs_now * tc->snd_mss)
Florin Coras36ebcff2019-09-12 18:36:44 -07001922 tcp_program_retransmit (tc);
Florin Coras36ee9f12018-11-02 12:52:10 -07001923 n_segs += n_segs_now;
1924 }
1925
Florin Coras36ee9f12018-11-02 12:52:10 -07001926done:
1927 tcp_fastrecovery_first_off (tc);
Florin Coras93992a92017-05-24 18:03:56 -07001928
Florin Corasc31dc312019-10-06 14:06:14 -07001929 sent_bytes = clib_min (n_segs * tc->snd_mss, burst_bytes);
1930 sent_bytes = cc_limited ? burst_bytes : sent_bytes;
1931 transport_connection_tx_pacer_update_bytes (&tc->connection, sent_bytes);
1932
1933 return n_segs;
Dave Barach68b0fb02017-02-28 15:15:56 -05001934}
Florin Coras26dd6de2019-07-23 23:54:47 -07001935
1936static int
1937tcp_send_acks (tcp_connection_t * tc, u32 max_burst_size)
1938{
1939 int j, n_acks;
1940
1941 if (!tc->pending_dupacks)
1942 {
Florin Corascb711a42019-10-16 19:28:17 -07001943 if (tcp_in_cong_recovery (tc) || !tcp_max_tx_deq (tc)
1944 || tc->state != TCP_STATE_ESTABLISHED)
1945 {
1946 tcp_send_ack (tc);
1947 return 1;
1948 }
1949 return 0;
Florin Coras26dd6de2019-07-23 23:54:47 -07001950 }
1951
1952 /* If we're supposed to send dupacks but have no ooo data
1953 * send only one ack */
1954 if (!vec_len (tc->snd_sacks))
1955 {
1956 tcp_send_ack (tc);
Florin Coras7fd59cc2020-03-12 15:50:57 +00001957 tc->dupacks_out += 1;
Florin Corascb711a42019-10-16 19:28:17 -07001958 tc->pending_dupacks = 0;
Florin Coras26dd6de2019-07-23 23:54:47 -07001959 return 1;
1960 }
1961
1962 /* Start with first sack block */
1963 tc->snd_sack_pos = 0;
1964
1965 /* Generate enough dupacks to cover all sack blocks. Do not generate
1966 * more sacks than the number of packets received. But do generate at
1967 * least 3, i.e., the number needed to signal congestion, if needed. */
1968 n_acks = vec_len (tc->snd_sacks) / TCP_OPTS_MAX_SACK_BLOCKS;
1969 n_acks = clib_min (n_acks, tc->pending_dupacks);
1970 n_acks = clib_max (n_acks, clib_min (tc->pending_dupacks, 3));
1971 for (j = 0; j < clib_min (n_acks, max_burst_size); j++)
1972 tcp_send_ack (tc);
1973
1974 if (n_acks < max_burst_size)
1975 {
1976 tc->pending_dupacks = 0;
1977 tc->snd_sack_pos = 0;
Florin Corasedfe0ee2019-07-29 18:13:25 -07001978 tc->dupacks_out += n_acks;
Florin Coras26dd6de2019-07-23 23:54:47 -07001979 return n_acks;
1980 }
1981 else
1982 {
1983 TCP_DBG ("constrained by burst size");
1984 tc->pending_dupacks = n_acks - max_burst_size;
Florin Corasedfe0ee2019-07-29 18:13:25 -07001985 tc->dupacks_out += max_burst_size;
Florin Coras26dd6de2019-07-23 23:54:47 -07001986 tcp_program_dupack (tc);
1987 return max_burst_size;
1988 }
1989}
1990
1991static int
Florin Coras36ebcff2019-09-12 18:36:44 -07001992tcp_do_retransmit (tcp_connection_t * tc, u32 max_burst_size)
Florin Coras26dd6de2019-07-23 23:54:47 -07001993{
Florin Coras26dd6de2019-07-23 23:54:47 -07001994 tcp_worker_ctx_t *wrk;
Florin Corasc31dc312019-10-06 14:06:14 -07001995 u32 n_segs;
Florin Coras26dd6de2019-07-23 23:54:47 -07001996
Florin Corasfd4c3fe2019-11-07 12:33:12 -08001997 if (PREDICT_FALSE (tc->state == TCP_STATE_CLOSED))
1998 return 0;
1999
Florin Coras26dd6de2019-07-23 23:54:47 -07002000 wrk = tcp_get_worker (tc->c_thread_index);
Florin Coras26dd6de2019-07-23 23:54:47 -07002001
Florin Corasc31dc312019-10-06 14:06:14 -07002002 if (tcp_opts_sack_permitted (&tc->rcv_opts))
2003 n_segs = tcp_retransmit_sack (wrk, tc, max_burst_size);
2004 else
2005 n_segs = tcp_retransmit_no_sack (wrk, tc, max_burst_size);
2006
Florin Coras26dd6de2019-07-23 23:54:47 -07002007 return n_segs;
2008}
2009
2010int
Florin Coras9f86d222020-03-23 15:34:22 +00002011tcp_session_custom_tx (void *conn, transport_send_params_t * sp)
Florin Coras26dd6de2019-07-23 23:54:47 -07002012{
2013 tcp_connection_t *tc = (tcp_connection_t *) conn;
2014 u32 n_segs = 0;
2015
Florin Coras36ebcff2019-09-12 18:36:44 -07002016 if (tcp_in_cong_recovery (tc) && (tc->flags & TCP_CONN_RXT_PENDING))
Florin Coras26dd6de2019-07-23 23:54:47 -07002017 {
Florin Coras36ebcff2019-09-12 18:36:44 -07002018 tc->flags &= ~TCP_CONN_RXT_PENDING;
Florin Coras9f86d222020-03-23 15:34:22 +00002019 n_segs = tcp_do_retransmit (tc, sp->max_burst_size);
Florin Coras26dd6de2019-07-23 23:54:47 -07002020 }
2021
2022 if (!(tc->flags & TCP_CONN_SNDACK))
2023 return n_segs;
2024
2025 tc->flags &= ~TCP_CONN_SNDACK;
2026
2027 /* We have retransmitted packets and no dupack */
2028 if (n_segs && !tc->pending_dupacks)
2029 return n_segs;
2030
Florin Coras9f86d222020-03-23 15:34:22 +00002031 if (sp->max_burst_size <= n_segs)
Florin Coras26dd6de2019-07-23 23:54:47 -07002032 {
2033 tcp_program_ack (tc);
Florin Coras9f86d222020-03-23 15:34:22 +00002034 return n_segs;
Florin Coras26dd6de2019-07-23 23:54:47 -07002035 }
2036
Florin Coras9f86d222020-03-23 15:34:22 +00002037 n_segs += tcp_send_acks (tc, sp->max_burst_size - n_segs);
Florin Coras26dd6de2019-07-23 23:54:47 -07002038
2039 return n_segs;
2040}
Filip Tehlare275bed2019-03-06 00:06:56 -08002041#endif /* CLIB_MARCH_VARIANT */
Dave Barach68b0fb02017-02-28 15:15:56 -05002042
Florin Corasf9d05682018-04-26 08:26:52 -07002043static void
2044tcp_output_handle_link_local (tcp_connection_t * tc0, vlib_buffer_t * b0,
Florin Coras8b20bf52018-06-14 14:55:50 -07002045 u16 * next0, u32 * error0)
Florin Corasf9d05682018-04-26 08:26:52 -07002046{
2047 ip_adjacency_t *adj;
2048 adj_index_t ai;
2049
Florin Coras1c8ff632018-05-17 13:28:34 -07002050 /* Not thread safe but as long as the connection exists the adj should
2051 * not be removed */
Florin Corasf9d05682018-04-26 08:26:52 -07002052 ai = adj_nbr_find (FIB_PROTOCOL_IP6, VNET_LINK_IP6, &tc0->c_rmt_ip,
2053 tc0->sw_if_index);
2054 if (ai == ADJ_INDEX_INVALID)
2055 {
Florin Corasf9d05682018-04-26 08:26:52 -07002056 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
2057 *next0 = TCP_OUTPUT_NEXT_DROP;
2058 *error0 = TCP_ERROR_LINK_LOCAL_RW;
2059 return;
2060 }
2061
2062 adj = adj_get (ai);
Florin Coras1c8ff632018-05-17 13:28:34 -07002063 if (PREDICT_TRUE (adj->lookup_next_index == IP_LOOKUP_NEXT_REWRITE))
Florin Corasf9d05682018-04-26 08:26:52 -07002064 *next0 = TCP_OUTPUT_NEXT_IP_REWRITE;
2065 else if (adj->lookup_next_index == IP_LOOKUP_NEXT_ARP)
2066 *next0 = TCP_OUTPUT_NEXT_IP_ARP;
Florin Coras1c8ff632018-05-17 13:28:34 -07002067 else
2068 {
2069 *next0 = TCP_OUTPUT_NEXT_DROP;
2070 *error0 = TCP_ERROR_LINK_LOCAL_RW;
2071 }
2072 vnet_buffer (b0)->ip.adj_index[VLIB_TX] = ai;
Florin Corasf9d05682018-04-26 08:26:52 -07002073}
2074
Florin Coras8b20bf52018-06-14 14:55:50 -07002075static void
2076tcp46_output_trace_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
2077 u32 * to_next, u32 n_bufs)
Dave Barach68b0fb02017-02-28 15:15:56 -05002078{
Florin Coras8b20bf52018-06-14 14:55:50 -07002079 tcp_connection_t *tc;
2080 tcp_tx_trace_t *t;
2081 vlib_buffer_t *b;
2082 tcp_header_t *th;
2083 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05002084
Florin Coras30928f82020-01-27 19:21:28 -08002085 for (i = 0; i < n_bufs; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05002086 {
Florin Coras8b20bf52018-06-14 14:55:50 -07002087 b = vlib_get_buffer (vm, to_next[i]);
Florin Coras30928f82020-01-27 19:21:28 -08002088 if (!(b->flags & VLIB_BUFFER_IS_TRACED))
2089 continue;
Florin Coras8b20bf52018-06-14 14:55:50 -07002090 th = vlib_buffer_get_current (b);
2091 tc = tcp_connection_get (vnet_buffer (b)->tcp.connection_index,
2092 vm->thread_index);
2093 t = vlib_add_trace (vm, node, b, sizeof (*t));
Dave Barach178cf492018-11-13 16:34:13 -05002094 clib_memcpy_fast (&t->tcp_header, th, sizeof (t->tcp_header));
2095 clib_memcpy_fast (&t->tcp_connection, tc, sizeof (t->tcp_connection));
Florin Coras8b20bf52018-06-14 14:55:50 -07002096 }
2097}
Dave Barach68b0fb02017-02-28 15:15:56 -05002098
Florin Coras0dbd5172018-06-25 16:19:34 -07002099always_inline void
Florin Coras8b20bf52018-06-14 14:55:50 -07002100tcp_output_push_ip (vlib_main_t * vm, vlib_buffer_t * b0,
2101 tcp_connection_t * tc0, u8 is_ip4)
2102{
Florin Corasf4ce6ba2019-11-20 18:34:58 -08002103 TCP_EVT (TCP_EVT_OUTPUT, tc0,
2104 ((tcp_header_t *) vlib_buffer_get_current (b0))->flags,
2105 b0->current_length);
Srikanth A02833ff2019-10-02 17:48:58 -07002106
Florin Coras8b20bf52018-06-14 14:55:50 -07002107 if (is_ip4)
Florin Corasf4ce6ba2019-11-20 18:34:58 -08002108 vlib_buffer_push_ip4 (vm, b0, &tc0->c_lcl_ip4, &tc0->c_rmt_ip4,
2109 IP_PROTOCOL_TCP, tcp_csum_offload (tc0));
Florin Coras8b20bf52018-06-14 14:55:50 -07002110 else
Florin Corasf4ce6ba2019-11-20 18:34:58 -08002111 vlib_buffer_push_ip6_custom (vm, b0, &tc0->c_lcl_ip6, &tc0->c_rmt_ip6,
2112 IP_PROTOCOL_TCP, tc0->ipv6_flow_label);
Florin Coras8b20bf52018-06-14 14:55:50 -07002113}
Dave Barach68b0fb02017-02-28 15:15:56 -05002114
Florin Coras0dbd5172018-06-25 16:19:34 -07002115always_inline void
Simon Zhang1146ff42019-09-02 22:54:00 +08002116tcp_check_if_gso (tcp_connection_t * tc, vlib_buffer_t * b)
2117{
Florin Corasbbcfaac2019-10-10 13:52:04 -07002118 if (PREDICT_TRUE (!(tc->cfg_flags & TCP_CFG_F_TSO)))
Simon Zhang1146ff42019-09-02 22:54:00 +08002119 return;
Florin Corasbbcfaac2019-10-10 13:52:04 -07002120
Simon Zhang8a047ed2019-09-24 21:16:56 +08002121 u16 data_len = b->current_length - sizeof (tcp_header_t) - tc->snd_opts_len;
Simon Zhang1146ff42019-09-02 22:54:00 +08002122
Simon Zhang8a047ed2019-09-24 21:16:56 +08002123 if (PREDICT_FALSE (b->flags & VLIB_BUFFER_TOTAL_LENGTH_VALID))
2124 data_len += b->total_length_not_including_first_buffer;
2125
2126 if (PREDICT_TRUE (data_len <= tc->snd_mss))
2127 return;
2128 else
Simon Zhang1146ff42019-09-02 22:54:00 +08002129 {
2130 ASSERT ((b->flags & VNET_BUFFER_F_L3_HDR_OFFSET_VALID) != 0);
2131 ASSERT ((b->flags & VNET_BUFFER_F_L4_HDR_OFFSET_VALID) != 0);
2132 b->flags |= VNET_BUFFER_F_GSO;
2133 vnet_buffer2 (b)->gso_l4_hdr_sz =
2134 sizeof (tcp_header_t) + tc->snd_opts_len;
2135 vnet_buffer2 (b)->gso_size = tc->snd_mss;
2136 }
2137}
2138
2139always_inline void
Florin Coras8b20bf52018-06-14 14:55:50 -07002140tcp_output_handle_packet (tcp_connection_t * tc0, vlib_buffer_t * b0,
Florin Corasdf36f492019-08-18 18:09:28 -07002141 vlib_node_runtime_t * error_node, u16 * next0,
2142 u8 is_ip4)
Florin Coras8b20bf52018-06-14 14:55:50 -07002143{
Florin Coras540a8da2019-06-18 08:55:14 -07002144 /* If next_index is not drop use it */
Florin Coras07beade2019-06-20 12:18:31 -07002145 if (tc0->next_node_index)
2146 {
2147 *next0 = tc0->next_node_index;
2148 vnet_buffer (b0)->tcp.next_node_opaque = tc0->next_node_opaque;
2149 }
Florin Coras78dae002019-08-30 10:00:30 -07002150 else
2151 {
2152 *next0 = TCP_OUTPUT_NEXT_IP_LOOKUP;
2153 }
Florin Coras540a8da2019-06-18 08:55:14 -07002154
Florin Coras8b20bf52018-06-14 14:55:50 -07002155 vnet_buffer (b0)->sw_if_index[VLIB_TX] = tc0->c_fib_index;
2156 vnet_buffer (b0)->sw_if_index[VLIB_RX] = 0;
2157
2158 if (!is_ip4)
2159 {
Florin Corasdf36f492019-08-18 18:09:28 -07002160 u32 error0 = 0;
2161
Florin Coras8b20bf52018-06-14 14:55:50 -07002162 if (PREDICT_FALSE (ip6_address_is_link_local_unicast (&tc0->c_rmt_ip6)))
Florin Corasdf36f492019-08-18 18:09:28 -07002163 tcp_output_handle_link_local (tc0, b0, next0, &error0);
2164
2165 if (PREDICT_FALSE (error0))
2166 {
2167 b0->error = error_node->errors[error0];
2168 return;
2169 }
Florin Coras8b20bf52018-06-14 14:55:50 -07002170 }
2171
Florin Corasedfe0ee2019-07-29 18:13:25 -07002172 tc0->segs_out += 1;
Florin Coras8b20bf52018-06-14 14:55:50 -07002173}
2174
2175always_inline uword
2176tcp46_output_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2177 vlib_frame_t * frame, int is_ip4)
2178{
2179 u32 n_left_from, *from, thread_index = vm->thread_index;
2180 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
2181 u16 nexts[VLIB_FRAME_SIZE], *next;
2182
2183 from = vlib_frame_vector_args (frame);
2184 n_left_from = frame->n_vectors;
Florin Corasbe72ae62018-11-01 11:23:03 -07002185 tcp_set_time_now (tcp_get_worker (thread_index));
Florin Coras8b20bf52018-06-14 14:55:50 -07002186
2187 if (PREDICT_FALSE (node->flags & VLIB_NODE_FLAG_TRACE))
2188 tcp46_output_trace_frame (vm, node, from, n_left_from);
2189
2190 vlib_get_buffers (vm, from, bufs, n_left_from);
2191 b = bufs;
2192 next = nexts;
2193
2194 while (n_left_from >= 4)
2195 {
Florin Coras8b20bf52018-06-14 14:55:50 -07002196 tcp_connection_t *tc0, *tc1;
2197
2198 {
2199 vlib_prefetch_buffer_header (b[2], STORE);
2200 CLIB_PREFETCH (b[2]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
2201
2202 vlib_prefetch_buffer_header (b[3], STORE);
2203 CLIB_PREFETCH (b[3]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
2204 }
2205
Florin Coras8b20bf52018-06-14 14:55:50 -07002206 tc0 = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index,
2207 thread_index);
2208 tc1 = tcp_connection_get (vnet_buffer (b[1])->tcp.connection_index,
2209 thread_index);
2210
Florin Coras78dae002019-08-30 10:00:30 -07002211 if (PREDICT_TRUE (!tc0 + !tc1 == 0))
2212 {
2213 tcp_output_push_ip (vm, b[0], tc0, is_ip4);
2214 tcp_output_push_ip (vm, b[1], tc1, is_ip4);
Florin Coras8b20bf52018-06-14 14:55:50 -07002215
Simon Zhang1146ff42019-09-02 22:54:00 +08002216 tcp_check_if_gso (tc0, b[0]);
2217 tcp_check_if_gso (tc1, b[1]);
2218
Florin Coras573f44c2020-04-09 21:23:01 +00002219 tcp_output_handle_packet (tc0, b[0], node, &next[0], is_ip4);
2220 tcp_output_handle_packet (tc1, b[1], node, &next[1], is_ip4);
Florin Coras78dae002019-08-30 10:00:30 -07002221 }
2222 else
2223 {
2224 if (tc0 != 0)
2225 {
2226 tcp_output_push_ip (vm, b[0], tc0, is_ip4);
Simon Zhang1146ff42019-09-02 22:54:00 +08002227 tcp_check_if_gso (tc0, b[0]);
Florin Coras573f44c2020-04-09 21:23:01 +00002228 tcp_output_handle_packet (tc0, b[0], node, &next[0], is_ip4);
Florin Coras78dae002019-08-30 10:00:30 -07002229 }
2230 else
2231 {
Florin Coras573f44c2020-04-09 21:23:01 +00002232 b[0]->error = node->errors[TCP_ERROR_INVALID_CONNECTION];
Florin Coras78dae002019-08-30 10:00:30 -07002233 next[0] = TCP_OUTPUT_NEXT_DROP;
2234 }
2235 if (tc1 != 0)
2236 {
2237 tcp_output_push_ip (vm, b[1], tc1, is_ip4);
Simon Zhang1146ff42019-09-02 22:54:00 +08002238 tcp_check_if_gso (tc1, b[1]);
Florin Coras573f44c2020-04-09 21:23:01 +00002239 tcp_output_handle_packet (tc1, b[1], node, &next[1], is_ip4);
Florin Coras78dae002019-08-30 10:00:30 -07002240 }
2241 else
2242 {
Florin Coras573f44c2020-04-09 21:23:01 +00002243 b[1]->error = node->errors[TCP_ERROR_INVALID_CONNECTION];
Florin Coras78dae002019-08-30 10:00:30 -07002244 next[1] = TCP_OUTPUT_NEXT_DROP;
2245 }
2246 }
Florin Coras8b20bf52018-06-14 14:55:50 -07002247
2248 b += 2;
2249 next += 2;
2250 n_left_from -= 2;
2251 }
2252 while (n_left_from > 0)
2253 {
Florin Coras8b20bf52018-06-14 14:55:50 -07002254 tcp_connection_t *tc0;
2255
2256 if (n_left_from > 1)
2257 {
Florin Coras91ca4622018-06-30 11:27:59 -07002258 vlib_prefetch_buffer_header (b[1], STORE);
2259 CLIB_PREFETCH (b[1]->data, 2 * CLIB_CACHE_LINE_BYTES, STORE);
Florin Coras8b20bf52018-06-14 14:55:50 -07002260 }
2261
Florin Coras8b20bf52018-06-14 14:55:50 -07002262 tc0 = tcp_connection_get (vnet_buffer (b[0])->tcp.connection_index,
2263 thread_index);
2264
Florin Coras78dae002019-08-30 10:00:30 -07002265 if (PREDICT_TRUE (tc0 != 0))
2266 {
2267 tcp_output_push_ip (vm, b[0], tc0, is_ip4);
Simon Zhang1146ff42019-09-02 22:54:00 +08002268 tcp_check_if_gso (tc0, b[0]);
Florin Coras573f44c2020-04-09 21:23:01 +00002269 tcp_output_handle_packet (tc0, b[0], node, &next[0], is_ip4);
Florin Coras78dae002019-08-30 10:00:30 -07002270 }
2271 else
2272 {
Florin Coras573f44c2020-04-09 21:23:01 +00002273 b[0]->error = node->errors[TCP_ERROR_INVALID_CONNECTION];
Florin Coras78dae002019-08-30 10:00:30 -07002274 next[0] = TCP_OUTPUT_NEXT_DROP;
2275 }
Florin Coras8b20bf52018-06-14 14:55:50 -07002276
2277 b += 1;
2278 next += 1;
2279 n_left_from -= 1;
2280 }
2281
2282 vlib_buffer_enqueue_to_next (vm, node, from, nexts, frame->n_vectors);
Florin Corasdf36f492019-08-18 18:09:28 -07002283 vlib_node_increment_counter (vm, tcp_node_index (output, is_ip4),
2284 TCP_ERROR_PKTS_SENT, frame->n_vectors);
Florin Coras8b20bf52018-06-14 14:55:50 -07002285 return frame->n_vectors;
Dave Barach68b0fb02017-02-28 15:15:56 -05002286}
2287
Filip Tehlare275bed2019-03-06 00:06:56 -08002288VLIB_NODE_FN (tcp4_output_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
2289 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002290{
2291 return tcp46_output_inline (vm, node, from_frame, 1 /* is_ip4 */ );
2292}
2293
Filip Tehlare275bed2019-03-06 00:06:56 -08002294VLIB_NODE_FN (tcp6_output_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
2295 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002296{
2297 return tcp46_output_inline (vm, node, from_frame, 0 /* is_ip4 */ );
2298}
2299
Florin Corase69f4952017-03-07 10:06:24 -08002300/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002301VLIB_REGISTER_NODE (tcp4_output_node) =
2302{
Dave Barachf970d2f2018-11-26 18:34:33 -05002303 .name = "tcp4-output",
2304 /* Takes a vector of packets. */
2305 .vector_size = sizeof (u32),
2306 .n_errors = TCP_N_ERROR,
Dave Barach7fff3d22018-11-27 16:52:59 -05002307 .protocol_hint = VLIB_NODE_PROTO_HINT_TCP,
Dave Barachf970d2f2018-11-26 18:34:33 -05002308 .error_strings = tcp_error_strings,
2309 .n_next_nodes = TCP_OUTPUT_N_NEXT,
2310 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002311#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
2312 foreach_tcp4_output_next
2313#undef _
Dave Barachf970d2f2018-11-26 18:34:33 -05002314 },
2315 .format_buffer = format_tcp_header,
2316 .format_trace = format_tcp_tx_trace,
Florin Corase69f4952017-03-07 10:06:24 -08002317};
2318/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002319
Florin Corase69f4952017-03-07 10:06:24 -08002320/* *INDENT-OFF* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002321VLIB_REGISTER_NODE (tcp6_output_node) =
2322{
Florin Corase69f4952017-03-07 10:06:24 -08002323 .name = "tcp6-output",
Dave Barach68b0fb02017-02-28 15:15:56 -05002324 /* Takes a vector of packets. */
Florin Corase69f4952017-03-07 10:06:24 -08002325 .vector_size = sizeof (u32),
2326 .n_errors = TCP_N_ERROR,
Dave Barach7fff3d22018-11-27 16:52:59 -05002327 .protocol_hint = VLIB_NODE_PROTO_HINT_TCP,
Florin Corase69f4952017-03-07 10:06:24 -08002328 .error_strings = tcp_error_strings,
2329 .n_next_nodes = TCP_OUTPUT_N_NEXT,
2330 .next_nodes = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002331#define _(s,n) [TCP_OUTPUT_NEXT_##s] = n,
2332 foreach_tcp6_output_next
2333#undef _
Florin Corase69f4952017-03-07 10:06:24 -08002334 },
2335 .format_buffer = format_tcp_header,
2336 .format_trace = format_tcp_tx_trace,
2337};
2338/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05002339
Dave Barach68b0fb02017-02-28 15:15:56 -05002340typedef enum _tcp_reset_next
2341{
2342 TCP_RESET_NEXT_DROP,
2343 TCP_RESET_NEXT_IP_LOOKUP,
2344 TCP_RESET_N_NEXT
2345} tcp_reset_next_t;
2346
2347#define foreach_tcp4_reset_next \
2348 _(DROP, "error-drop") \
2349 _(IP_LOOKUP, "ip4-lookup")
2350
2351#define foreach_tcp6_reset_next \
2352 _(DROP, "error-drop") \
2353 _(IP_LOOKUP, "ip6-lookup")
2354
2355static uword
2356tcp46_send_reset_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
2357 vlib_frame_t * from_frame, u8 is_ip4)
2358{
Florin Coras360336f2020-02-13 18:46:18 +00002359 u32 error0 = TCP_ERROR_RST_SENT, next0 = TCP_RESET_NEXT_IP_LOOKUP;
Dave Barach68b0fb02017-02-28 15:15:56 -05002360 u32 n_left_from, next_index, *from, *to_next;
Dave Barach68b0fb02017-02-28 15:15:56 -05002361
2362 from = vlib_frame_vector_args (from_frame);
2363 n_left_from = from_frame->n_vectors;
2364
2365 next_index = node->cached_next_index;
2366
2367 while (n_left_from > 0)
2368 {
2369 u32 n_left_to_next;
2370
2371 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
2372
2373 while (n_left_from > 0 && n_left_to_next > 0)
2374 {
Dave Barach68b0fb02017-02-28 15:15:56 -05002375 vlib_buffer_t *b0;
Clement Durand6cf260c2017-04-13 13:27:04 +02002376 tcp_tx_trace_t *t0;
2377 tcp_header_t *th0;
Florin Coras360336f2020-02-13 18:46:18 +00002378 u32 bi0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002379
2380 bi0 = from[0];
2381 to_next[0] = bi0;
2382 from += 1;
2383 to_next += 1;
2384 n_left_from -= 1;
2385 n_left_to_next -= 1;
2386
2387 b0 = vlib_get_buffer (vm, bi0);
Florin Coras360336f2020-02-13 18:46:18 +00002388 tcp_make_reset_in_place (vm, b0, is_ip4);
Dave Barach68b0fb02017-02-28 15:15:56 -05002389
2390 /* Prepare to send to IP lookup */
Florin Corasf988e692017-11-27 04:34:14 -05002391 vnet_buffer (b0)->sw_if_index[VLIB_TX] = ~0;
Dave Barach68b0fb02017-02-28 15:15:56 -05002392
Florin Corase69f4952017-03-07 10:06:24 -08002393 b0->error = node->errors[error0];
Damjan Marion213b5aa2017-07-13 21:19:27 +02002394 b0->flags |= VNET_BUFFER_F_LOCALLY_ORIGINATED;
Dave Barach68b0fb02017-02-28 15:15:56 -05002395 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2396 {
Clement Durand6cf260c2017-04-13 13:27:04 +02002397 th0 = vlib_buffer_get_current (b0);
2398 if (is_ip4)
2399 th0 = ip4_next_header ((ip4_header_t *) th0);
2400 else
2401 th0 = ip6_next_header ((ip6_header_t *) th0);
Clement Durand6cf260c2017-04-13 13:27:04 +02002402 t0 = vlib_add_trace (vm, node, b0, sizeof (*t0));
Dave Barach178cf492018-11-13 16:34:13 -05002403 clib_memcpy_fast (&t0->tcp_header, th0,
2404 sizeof (t0->tcp_header));
Dave Barach68b0fb02017-02-28 15:15:56 -05002405 }
2406
2407 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
2408 n_left_to_next, bi0, next0);
2409 }
2410 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
2411 }
2412 return from_frame->n_vectors;
2413}
2414
Filip Tehlare275bed2019-03-06 00:06:56 -08002415VLIB_NODE_FN (tcp4_reset_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
2416 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002417{
2418 return tcp46_send_reset_inline (vm, node, from_frame, 1);
2419}
2420
Filip Tehlare275bed2019-03-06 00:06:56 -08002421VLIB_NODE_FN (tcp6_reset_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
2422 vlib_frame_t * from_frame)
Dave Barach68b0fb02017-02-28 15:15:56 -05002423{
2424 return tcp46_send_reset_inline (vm, node, from_frame, 0);
2425}
2426
2427/* *INDENT-OFF* */
2428VLIB_REGISTER_NODE (tcp4_reset_node) = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002429 .name = "tcp4-reset",
2430 .vector_size = sizeof (u32),
2431 .n_errors = TCP_N_ERROR,
2432 .error_strings = tcp_error_strings,
2433 .n_next_nodes = TCP_RESET_N_NEXT,
2434 .next_nodes = {
2435#define _(s,n) [TCP_RESET_NEXT_##s] = n,
2436 foreach_tcp4_reset_next
2437#undef _
2438 },
Clement Durand6cf260c2017-04-13 13:27:04 +02002439 .format_trace = format_tcp_tx_trace,
Dave Barach68b0fb02017-02-28 15:15:56 -05002440};
2441/* *INDENT-ON* */
2442
2443/* *INDENT-OFF* */
2444VLIB_REGISTER_NODE (tcp6_reset_node) = {
Dave Barach68b0fb02017-02-28 15:15:56 -05002445 .name = "tcp6-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_tcp6_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
Dave Barach68b0fb02017-02-28 15:15:56 -05002459/*
2460 * fd.io coding-style-patch-verification: ON
2461 *
2462 * Local Variables:
2463 * eval: (c-set-style "gnu")
2464 * End:
2465 */