blob: 28d7ed9fac14b61db1e61fe6d7240325b135f6d0 [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
Dave Barach3bbcfab2017-08-15 19:03:44 -040016/**
17 * @file
18 * @brief TCP host stack utilities
19 */
20
Dave Barach68b0fb02017-02-28 15:15:56 -050021#include <vnet/tcp/tcp.h>
Florin Coras999840c2020-03-18 20:31:34 +000022#include <vnet/tcp/tcp_inlines.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050023#include <vnet/session/session.h>
24#include <vnet/fib/fib.h>
Florin Corasf6359c82017-06-19 12:26:09 -040025#include <vnet/dpo/load_balance.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050026#include <math.h>
27
Florin Coras6052f4b2023-06-21 20:02:25 -070028#include <vlib/stats/stats.h>
29
Dave Barach68b0fb02017-02-28 15:15:56 -050030tcp_main_t tcp_main;
31
Florin Coras1c8ff632018-05-17 13:28:34 -070032typedef struct
33{
34 fib_protocol_t nh_proto;
35 vnet_link_t link_type;
36 ip46_address_t ip;
37 u32 sw_if_index;
38 u8 is_add;
39} tcp_add_del_adj_args_t;
40
41static void
42tcp_add_del_adj_cb (tcp_add_del_adj_args_t * args)
43{
44 u32 ai;
45 if (args->is_add)
46 {
47 adj_nbr_add_or_lock (args->nh_proto, args->link_type, &args->ip,
48 args->sw_if_index);
49 }
50 else
51 {
52 ai = adj_nbr_find (FIB_PROTOCOL_IP6, VNET_LINK_IP6, &args->ip,
53 args->sw_if_index);
54 if (ai != ADJ_INDEX_INVALID)
55 adj_unlock (ai);
56 }
57}
58
59static void
60tcp_add_del_adjacency (tcp_connection_t * tc, u8 is_add)
61{
62 tcp_add_del_adj_args_t args = {
63 .nh_proto = FIB_PROTOCOL_IP6,
64 .link_type = VNET_LINK_IP6,
65 .ip = tc->c_rmt_ip,
66 .sw_if_index = tc->sw_if_index,
67 .is_add = is_add
68 };
69 vlib_rpc_call_main_thread (tcp_add_del_adj_cb, (u8 *) & args,
70 sizeof (args));
71}
72
Florin Corasd9a145f2019-06-07 09:35:20 -070073static void
74tcp_cc_init (tcp_connection_t * tc)
75{
Florin Corasc8144352022-01-06 11:58:24 -080076 /* As per RFC 6582 initialize "recover" to iss */
77 if (tcp_opts_sack_permitted (&tc->rcv_opts))
78 tc->snd_congestion = tc->iss;
79
Florin Corasd9a145f2019-06-07 09:35:20 -070080 tc->cc_algo->init (tc);
81}
82
83static void
84tcp_cc_cleanup (tcp_connection_t * tc)
85{
86 if (tc->cc_algo->cleanup)
87 tc->cc_algo->cleanup (tc);
88}
89
90void
91tcp_cc_algo_register (tcp_cc_algorithm_type_e type,
92 const tcp_cc_algorithm_t * vft)
93{
94 tcp_main_t *tm = vnet_get_tcp_main ();
95 vec_validate (tm->cc_algos, type);
96
97 tm->cc_algos[type] = *vft;
98 hash_set_mem (tm->cc_algo_by_name, vft->name, type);
99}
100
101tcp_cc_algorithm_t *
102tcp_cc_algo_get (tcp_cc_algorithm_type_e type)
103{
104 tcp_main_t *tm = vnet_get_tcp_main ();
105 return &tm->cc_algos[type];
106}
107
Florin Coras4e116fb2019-06-10 08:33:50 -0700108tcp_cc_algorithm_type_e
109tcp_cc_algo_new_type (const tcp_cc_algorithm_t * vft)
110{
111 tcp_main_t *tm = vnet_get_tcp_main ();
112 tcp_cc_algo_register (++tm->cc_last_type, vft);
113 return tm->cc_last_type;
114}
115
Dave Barach68b0fb02017-02-28 15:15:56 -0500116static u32
Florin Coras0bce71e2022-02-10 11:57:06 -0800117tcp_connection_bind (u32 session_index, transport_endpoint_cfg_t *lcl)
Dave Barach68b0fb02017-02-28 15:15:56 -0500118{
119 tcp_main_t *tm = &tcp_main;
120 tcp_connection_t *listener;
Florin Corascea194d2017-10-02 00:18:51 -0700121 void *iface_ip;
Dave Barach68b0fb02017-02-28 15:15:56 -0500122
123 pool_get (tm->listener_pool, listener);
Dave Barachb7b92992018-10-17 10:38:51 -0400124 clib_memset (listener, 0, sizeof (*listener));
Dave Barach68b0fb02017-02-28 15:15:56 -0500125
126 listener->c_c_index = listener - tm->listener_pool;
Florin Coras0e495682017-09-19 22:27:18 -0700127 listener->c_lcl_port = lcl->port;
Dave Barach68b0fb02017-02-28 15:15:56 -0500128
Florin Corascea194d2017-10-02 00:18:51 -0700129 /* If we are provided a sw_if_index, bind using one of its ips */
130 if (ip_is_zero (&lcl->ip, 1) && lcl->sw_if_index != ENDPOINT_INVALID_INDEX)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700131 {
Florin Corascea194d2017-10-02 00:18:51 -0700132 if ((iface_ip = ip_interface_get_first_ip (lcl->sw_if_index,
133 lcl->is_ip4)))
134 ip_set (&lcl->ip, iface_ip, lcl->is_ip4);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700135 }
Florin Corascea194d2017-10-02 00:18:51 -0700136 ip_copy (&listener->c_lcl_ip, &lcl->ip, lcl->is_ip4);
137 listener->c_is_ip4 = lcl->is_ip4;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700138 listener->c_proto = TRANSPORT_PROTO_TCP;
Dave Barach68b0fb02017-02-28 15:15:56 -0500139 listener->c_s_index = session_index;
Florin Corascea194d2017-10-02 00:18:51 -0700140 listener->c_fib_index = lcl->fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500141 listener->state = TCP_STATE_LISTEN;
Florin Coras12f69362019-08-16 09:44:00 -0700142 listener->cc_algo = tcp_cc_algo_get (tcp_cfg.cc_algo);
Dave Barach68b0fb02017-02-28 15:15:56 -0500143
Florin Corase69f4952017-03-07 10:06:24 -0800144 tcp_connection_timers_init (listener);
145
Florin Corasa436a422019-08-20 07:09:31 -0700146 TCP_EVT (TCP_EVT_BIND, listener);
Florin Corase69f4952017-03-07 10:06:24 -0800147
Dave Barach68b0fb02017-02-28 15:15:56 -0500148 return listener->c_c_index;
149}
150
Florin Coras0dbd5172018-06-25 16:19:34 -0700151static u32
Florin Coras0bce71e2022-02-10 11:57:06 -0800152tcp_session_bind (u32 session_index, transport_endpoint_cfg_t *tep)
Dave Barach68b0fb02017-02-28 15:15:56 -0500153{
Florin Coras04e53442017-07-16 17:12:15 -0700154 return tcp_connection_bind (session_index, tep);
Dave Barach68b0fb02017-02-28 15:15:56 -0500155}
156
157static void
Florin Corase69f4952017-03-07 10:06:24 -0800158tcp_connection_unbind (u32 listener_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500159{
160 tcp_main_t *tm = vnet_get_tcp_main ();
Dave Barach2c25a622017-06-26 11:35:07 -0400161 tcp_connection_t *tc;
162
163 tc = pool_elt_at_index (tm->listener_pool, listener_index);
164
Florin Corasa436a422019-08-20 07:09:31 -0700165 TCP_EVT (TCP_EVT_UNBIND, tc);
Dave Barach2c25a622017-06-26 11:35:07 -0400166
167 /* Poison the entry */
168 if (CLIB_DEBUG > 0)
Dave Barachb7b92992018-10-17 10:38:51 -0400169 clib_memset (tc, 0xFA, sizeof (*tc));
Dave Barach2c25a622017-06-26 11:35:07 -0400170
Dave Barach68b0fb02017-02-28 15:15:56 -0500171 pool_put_index (tm->listener_pool, listener_index);
172}
173
Florin Coras0dbd5172018-06-25 16:19:34 -0700174static u32
Florin Corase69f4952017-03-07 10:06:24 -0800175tcp_session_unbind (u32 listener_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500176{
Florin Corase69f4952017-03-07 10:06:24 -0800177 tcp_connection_unbind (listener_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500178 return 0;
179}
180
Florin Coras0dbd5172018-06-25 16:19:34 -0700181static transport_connection_t *
Dave Barach68b0fb02017-02-28 15:15:56 -0500182tcp_session_get_listener (u32 listener_index)
183{
184 tcp_main_t *tm = vnet_get_tcp_main ();
185 tcp_connection_t *tc;
186 tc = pool_elt_at_index (tm->listener_pool, listener_index);
187 return &tc->connection;
188}
189
Florin Coras57b2e4a2021-07-06 08:25:36 -0700190static tcp_connection_t *
191tcp_half_open_connection_alloc (void)
192{
Florin Coras309f7aa2022-03-18 08:33:08 -0700193 return tcp_connection_alloc (transport_cl_thread ());
Florin Coras57b2e4a2021-07-06 08:25:36 -0700194}
195
Florin Coras68810622017-07-24 17:40:28 -0700196/**
197 * Cleanup half-open connection
198 *
199 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700200static void
Florin Corasd50ff7f2020-04-16 04:30:22 +0000201tcp_half_open_connection_free (tcp_connection_t * tc)
Florin Coras68810622017-07-24 17:40:28 -0700202{
Florin Coras309f7aa2022-03-18 08:33:08 -0700203 ASSERT (vlib_get_thread_index () == tc->c_thread_index ||
204 vlib_thread_is_main_w_barrier ());
Florin Coras57b2e4a2021-07-06 08:25:36 -0700205 return tcp_connection_free (tc);
Florin Coras68810622017-07-24 17:40:28 -0700206}
207
208/**
209 * Try to cleanup half-open connection
210 *
211 * If called from a thread that doesn't own tc, the call won't have any
212 * effect.
213 *
214 * @param tc - connection to be cleaned up
215 * @return non-zero if cleanup failed.
216 */
217int
218tcp_half_open_connection_cleanup (tcp_connection_t * tc)
219{
Florin Coras0765d972020-03-18 21:26:41 +0000220 tcp_worker_ctx_t *wrk;
221
Florin Coras68810622017-07-24 17:40:28 -0700222 /* Make sure this is the owning thread */
223 if (tc->c_thread_index != vlib_get_thread_index ())
224 return 1;
Florin Coras0765d972020-03-18 21:26:41 +0000225
Florin Corasea727642021-05-07 19:39:43 -0700226 session_half_open_delete_notify (&tc->connection);
Florin Coras0765d972020-03-18 21:26:41 +0000227 wrk = tcp_get_worker (tc->c_thread_index);
228 tcp_timer_reset (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT_SYN);
Florin Corasd50ff7f2020-04-16 04:30:22 +0000229 tcp_half_open_connection_free (tc);
Florin Coras68810622017-07-24 17:40:28 -0700230 return 0;
231}
232
Dave Barach68b0fb02017-02-28 15:15:56 -0500233/**
234 * Cleans up connection state.
235 *
236 * No notifications.
237 */
238void
239tcp_connection_cleanup (tcp_connection_t * tc)
240{
Florin Corasa436a422019-08-20 07:09:31 -0700241 TCP_EVT (TCP_EVT_DELETE, tc);
Florin Coras070fd4b2019-04-02 19:03:23 -0700242
Dave Barach68b0fb02017-02-28 15:15:56 -0500243 /* Cleanup local endpoint if this was an active connect */
Florin Coras43818c12020-02-09 23:09:26 +0000244 if (!(tc->cfg_flags & TCP_CFG_F_NO_ENDPOINT))
Florin Corasbf27ca82022-11-09 15:54:39 -0800245 transport_release_local_endpoint (TRANSPORT_PROTO_TCP, &tc->c_lcl_ip,
246 tc->c_lcl_port);
Dave Barach68b0fb02017-02-28 15:15:56 -0500247
Florin Coras68810622017-07-24 17:40:28 -0700248 /* Check if connection is not yet fully established */
Dave Barach68b0fb02017-02-28 15:15:56 -0500249 if (tc->state == TCP_STATE_SYN_SENT)
Dave Barach2c25a622017-06-26 11:35:07 -0400250 {
Florin Coras68810622017-07-24 17:40:28 -0700251 /* Try to remove the half-open connection. If this is not the owning
252 * thread, tc won't be removed. Retransmit or establish timers will
253 * eventually expire and call again cleanup on the right thread. */
Florin Corasc5347d92018-10-17 10:41:28 -0700254 if (tcp_half_open_connection_cleanup (tc))
255 tc->flags |= TCP_CONN_HALF_OPEN_DONE;
Dave Barach2c25a622017-06-26 11:35:07 -0400256 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500257 else
Dave Barach2c25a622017-06-26 11:35:07 -0400258 {
Florin Coras68810622017-07-24 17:40:28 -0700259 /* Make sure all timers are cleared */
260 tcp_connection_timers_reset (tc);
261
Florin Coras1c8ff632018-05-17 13:28:34 -0700262 if (!tc->c_is_ip4 && ip6_address_is_link_local_unicast (&tc->c_rmt_ip6))
263 tcp_add_del_adjacency (tc, 0);
264
Florin Corasd9a145f2019-06-07 09:35:20 -0700265 tcp_cc_cleanup (tc);
Florin Corasb691f762019-02-22 09:07:20 -0800266 vec_free (tc->snd_sacks);
267 vec_free (tc->snd_sacks_fl);
Florin Coras558e3e02019-09-06 12:56:58 -0700268 vec_free (tc->rcv_opts.sacks);
269 pool_free (tc->sack_sb.holes);
Florin Corasb691f762019-02-22 09:07:20 -0800270
Florin Corasbbcfaac2019-10-10 13:52:04 -0700271 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
Florin Coras52814732019-06-12 15:38:19 -0700272 tcp_bt_cleanup (tc);
273
Florin Coras04261852020-02-12 01:24:29 +0000274 tcp_connection_free (tc);
Dave Barach2c25a622017-06-26 11:35:07 -0400275 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500276}
277
278/**
279 * Connection removal.
280 *
281 * This should be called only once connection enters CLOSED state. Note
282 * that it notifies the session of the removal event, so if the goal is to
283 * just remove the connection, call tcp_connection_cleanup instead.
284 */
285void
286tcp_connection_del (tcp_connection_t * tc)
287{
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800288 session_transport_delete_notify (&tc->connection);
Dave Barach68b0fb02017-02-28 15:15:56 -0500289 tcp_connection_cleanup (tc);
290}
291
Florin Coras6534b7a2017-07-18 05:38:03 -0400292tcp_connection_t *
Florin Coras8124cb72018-12-16 20:57:29 -0800293tcp_connection_alloc (u8 thread_index)
Florin Coras6534b7a2017-07-18 05:38:03 -0400294{
Florin Coras04261852020-02-12 01:24:29 +0000295 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras6534b7a2017-07-18 05:38:03 -0400296 tcp_connection_t *tc;
297
Florin Corasb0187322022-03-15 16:27:43 -0700298 pool_get_aligned_safe (wrk->connections, tc, CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400299 clib_memset (tc, 0, sizeof (*tc));
Florin Coras04261852020-02-12 01:24:29 +0000300 tc->c_c_index = tc - wrk->connections;
Florin Coras6534b7a2017-07-18 05:38:03 -0400301 tc->c_thread_index = thread_index;
302 return tc;
303}
304
Florin Coras12f69362019-08-16 09:44:00 -0700305tcp_connection_t *
Florin Coras57b2e4a2021-07-06 08:25:36 -0700306tcp_connection_alloc_w_base (u8 thread_index, tcp_connection_t **base)
Florin Coras12f69362019-08-16 09:44:00 -0700307{
Florin Coras04261852020-02-12 01:24:29 +0000308 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras12f69362019-08-16 09:44:00 -0700309 tcp_connection_t *tc;
310
Florin Coras57b2e4a2021-07-06 08:25:36 -0700311 /* Make sure connection is still valid if pool moves */
312 if ((*base)->c_thread_index == thread_index)
313 {
314 u32 base_index = (*base)->c_c_index;
Florin Corasb0187322022-03-15 16:27:43 -0700315 pool_get_aligned_safe (wrk->connections, tc, CLIB_CACHE_LINE_BYTES);
Florin Coras57b2e4a2021-07-06 08:25:36 -0700316 *base = tcp_connection_get (base_index, thread_index);
317 }
318 else
319 {
Florin Corasb0187322022-03-15 16:27:43 -0700320 pool_get_aligned_safe (wrk->connections, tc, CLIB_CACHE_LINE_BYTES);
Florin Coras57b2e4a2021-07-06 08:25:36 -0700321 }
322 clib_memcpy_fast (tc, *base, sizeof (*tc));
Florin Coras04261852020-02-12 01:24:29 +0000323 tc->c_c_index = tc - wrk->connections;
Florin Coras12f69362019-08-16 09:44:00 -0700324 tc->c_thread_index = thread_index;
325 return tc;
326}
327
Florin Coras8124cb72018-12-16 20:57:29 -0800328void
329tcp_connection_free (tcp_connection_t * tc)
330{
Florin Coras04261852020-02-12 01:24:29 +0000331 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
Florin Coras6416e622019-04-03 17:52:43 -0700332 if (CLIB_DEBUG)
333 {
Florin Coras6416e622019-04-03 17:52:43 -0700334 clib_memset (tc, 0xFA, sizeof (*tc));
Florin Coras04261852020-02-12 01:24:29 +0000335 pool_put (wrk->connections, tc);
Florin Coras6416e622019-04-03 17:52:43 -0700336 return;
337 }
Florin Coras04261852020-02-12 01:24:29 +0000338 pool_put (wrk->connections, tc);
Florin Coras8124cb72018-12-16 20:57:29 -0800339}
340
Florin Coras7a3a8662020-02-22 02:27:21 +0000341void
342tcp_program_cleanup (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
343{
344 tcp_cleanup_req_t *req;
345 clib_time_type_t now;
346
Florin Coras8f10b902021-04-02 18:32:00 -0700347 now = tcp_time_now_us (tc->c_thread_index);
Florin Coras7a3a8662020-02-22 02:27:21 +0000348 clib_fifo_add2 (wrk->pending_cleanups, req);
349 req->connection_index = tc->c_c_index;
350 req->free_time = now + tcp_cfg.cleanup_time;
351}
352
Dave Barach68b0fb02017-02-28 15:15:56 -0500353/**
354 * Begin connection closing procedure.
355 *
356 * If at the end the connection is not in CLOSED state, it is not removed.
357 * Instead, we rely on on TCP to advance through state machine to either
358 * 1) LAST_ACK (passive close) whereby when the last ACK is received
359 * tcp_connection_del is called. This notifies session of the delete and
360 * calls cleanup.
361 * 2) TIME_WAIT (active close) whereby after 2MSL the 2MSL timer triggers
362 * and cleanup is called.
Florin Corasd79b41e2017-03-04 05:37:52 -0800363 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500364 */
365void
366tcp_connection_close (tcp_connection_t * tc)
367{
Florin Coras0765d972020-03-18 21:26:41 +0000368 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
369
Florin Corasa436a422019-08-20 07:09:31 -0700370 TCP_EVT (TCP_EVT_CLOSE, tc);
Florin Corase69f4952017-03-07 10:06:24 -0800371
Florin Corasb2215d62017-08-01 16:56:58 -0700372 /* Send/Program FIN if needed and switch state */
373 switch (tc->state)
374 {
375 case TCP_STATE_SYN_SENT:
Florin Coras85a3ddd2018-12-24 16:54:34 -0800376 /* Try to cleanup. If not on the right thread, mark as half-open done.
377 * Connection will be cleaned up when establish timer pops */
378 tcp_connection_cleanup (tc);
Florin Corasb2215d62017-08-01 16:56:58 -0700379 break;
380 case TCP_STATE_SYN_RCVD:
Florin Corasc5347d92018-10-17 10:41:28 -0700381 tcp_connection_timers_reset (tc);
Florin Corasb2215d62017-08-01 16:56:58 -0700382 tcp_send_fin (tc);
Florin Coras3c514d52018-12-22 11:39:33 -0800383 tcp_connection_set_state (tc, TCP_STATE_FIN_WAIT_1);
Florin Coras0765d972020-03-18 21:26:41 +0000384 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
385 tcp_cfg.finwait1_time);
Florin Corasb2215d62017-08-01 16:56:58 -0700386 break;
387 case TCP_STATE_ESTABLISHED:
Florin Corasf65074e2019-03-31 17:17:11 -0700388 /* If closing with unread data, reset the connection */
389 if (transport_max_rx_dequeue (&tc->connection))
390 {
391 tcp_send_reset (tc);
392 tcp_connection_timers_reset (tc);
393 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
Florin Corasa0904f02019-07-22 20:55:11 -0700394 session_transport_closed_notify (&tc->connection);
Florin Coras7a3a8662020-02-22 02:27:21 +0000395 tcp_program_cleanup (tcp_get_worker (tc->c_thread_index), tc);
Florin Coras0765d972020-03-18 21:26:41 +0000396 tcp_worker_stats_inc (wrk, rst_unread, 1);
Florin Corasf65074e2019-03-31 17:17:11 -0700397 break;
398 }
Florin Coras31c99552019-03-01 13:00:58 -0800399 if (!transport_max_tx_dequeue (&tc->connection))
Florin Corasb2215d62017-08-01 16:56:58 -0700400 tcp_send_fin (tc);
401 else
402 tc->flags |= TCP_CONN_FINPNDG;
Florin Coras3c514d52018-12-22 11:39:33 -0800403 tcp_connection_set_state (tc, TCP_STATE_FIN_WAIT_1);
Florin Corase96bf632018-12-18 22:44:27 -0800404 /* Set a timer in case the peer stops responding. Otherwise the
405 * connection will be stuck here forever. */
Florin Coras85a3ddd2018-12-24 16:54:34 -0800406 ASSERT (tc->timers[TCP_TIMER_WAITCLOSE] == TCP_TIMER_HANDLE_INVALID);
Florin Coras0765d972020-03-18 21:26:41 +0000407 tcp_timer_set (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
408 tcp_cfg.finwait1_time);
Florin Corasb2215d62017-08-01 16:56:58 -0700409 break;
410 case TCP_STATE_CLOSE_WAIT:
Florin Coras31c99552019-03-01 13:00:58 -0800411 if (!transport_max_tx_dequeue (&tc->connection))
Florin Coras25579b42018-06-06 17:55:02 -0700412 {
Florin Coras25579b42018-06-06 17:55:02 -0700413 tcp_connection_timers_reset (tc);
Florin Corasd1e17a82024-02-16 18:36:32 -0800414 tcp_send_fin (tc);
Florin Coras3c514d52018-12-22 11:39:33 -0800415 tcp_connection_set_state (tc, TCP_STATE_LAST_ACK);
Florin Coras0765d972020-03-18 21:26:41 +0000416 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
417 tcp_cfg.lastack_time);
Florin Coras25579b42018-06-06 17:55:02 -0700418 }
419 else
420 tc->flags |= TCP_CONN_FINPNDG;
Florin Corasb2215d62017-08-01 16:56:58 -0700421 break;
Florin Corasc87c91d2017-08-16 19:55:49 -0700422 case TCP_STATE_FIN_WAIT_1:
Florin Coras0765d972020-03-18 21:26:41 +0000423 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
424 tcp_cfg.finwait1_time);
Florin Corasc87c91d2017-08-16 19:55:49 -0700425 break;
Florin Coras4af830c2018-12-04 09:21:36 -0800426 case TCP_STATE_CLOSED:
Florin Coras7a3a8662020-02-22 02:27:21 +0000427 /* Cleanup should've been programmed already */
Florin Coras4af830c2018-12-04 09:21:36 -0800428 break;
Florin Corasb2215d62017-08-01 16:56:58 -0700429 default:
Florin Corasa096f2d2017-09-28 23:49:42 -0400430 TCP_DBG ("state: %u", tc->state);
Florin Corasb2215d62017-08-01 16:56:58 -0700431 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500432}
433
Florin Coras0dbd5172018-06-25 16:19:34 -0700434static void
liuyacan534468e2021-05-09 03:50:40 +0000435tcp_session_half_close (u32 conn_index, u32 thread_index)
436{
437 tcp_worker_ctx_t *wrk;
438 tcp_connection_t *tc;
439
440 tc = tcp_connection_get (conn_index, thread_index);
441 wrk = tcp_get_worker (tc->c_thread_index);
442
443 /* If the connection is not in ESTABLISHED state, ignore it */
444 if (tc->state != TCP_STATE_ESTABLISHED)
445 return;
446 if (!transport_max_tx_dequeue (&tc->connection))
447 tcp_send_fin (tc);
448 else
449 tc->flags |= TCP_CONN_FINPNDG;
450 tcp_connection_set_state (tc, TCP_STATE_FIN_WAIT_1);
451 /* Set a timer in case the peer stops responding. Otherwise the
452 * connection will be stuck here forever. */
453 ASSERT (tc->timers[TCP_TIMER_WAITCLOSE] == TCP_TIMER_HANDLE_INVALID);
454 tcp_timer_set (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
455 tcp_cfg.finwait1_time);
456}
457
458static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500459tcp_session_close (u32 conn_index, u32 thread_index)
460{
461 tcp_connection_t *tc;
462 tc = tcp_connection_get (conn_index, thread_index);
463 tcp_connection_close (tc);
464}
465
Florin Coras0dbd5172018-06-25 16:19:34 -0700466static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500467tcp_session_cleanup (u32 conn_index, u32 thread_index)
468{
469 tcp_connection_t *tc;
470 tc = tcp_connection_get (conn_index, thread_index);
Florin Coras54c93cf2019-09-24 12:45:14 -0700471 if (!tc)
472 return;
Florin Coras85a3ddd2018-12-24 16:54:34 -0800473 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
Florin Coras25579b42018-06-06 17:55:02 -0700474 tcp_connection_cleanup (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500475}
476
Florin Corasdfb3b872019-08-16 17:48:44 -0700477static void
Florin Corasd50ff7f2020-04-16 04:30:22 +0000478tcp_session_cleanup_ho (u32 conn_index)
479{
480 tcp_worker_ctx_t *wrk;
481 tcp_connection_t *tc;
482
483 tc = tcp_half_open_connection_get (conn_index);
484 wrk = tcp_get_worker (tc->c_thread_index);
485 tcp_timer_reset (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT_SYN);
486 tcp_half_open_connection_free (tc);
487}
488
489static void
Florin Corasdfb3b872019-08-16 17:48:44 -0700490tcp_session_reset (u32 conn_index, u32 thread_index)
491{
492 tcp_connection_t *tc;
493 tc = tcp_connection_get (conn_index, thread_index);
Florin Corasc9fb9872023-03-19 22:03:57 -0700494
495 /* For half-opens just cleanup */
496 if (tc->state == TCP_STATE_SYN_SENT)
497 {
498 tcp_connection_cleanup (tc);
499 return;
500 }
501
Florin Corasdfb3b872019-08-16 17:48:44 -0700502 tcp_send_reset (tc);
503 tcp_connection_timers_reset (tc);
Florin Corasfd4c3fe2019-11-07 12:33:12 -0800504 tcp_cong_recovery_off (tc);
Florin Corasdfb3b872019-08-16 17:48:44 -0700505 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
Florin Coras7a3a8662020-02-22 02:27:21 +0000506 session_transport_closed_notify (&tc->connection);
507 tcp_program_cleanup (tcp_get_worker (thread_index), tc);
Florin Corasdfb3b872019-08-16 17:48:44 -0700508}
509
Dave Barach68b0fb02017-02-28 15:15:56 -0500510/**
511 * Initialize all connection timers as invalid
512 */
513void
514tcp_connection_timers_init (tcp_connection_t * tc)
515{
516 int i;
517
518 /* Set all to invalid */
519 for (i = 0; i < TCP_N_TIMERS; i++)
520 {
521 tc->timers[i] = TCP_TIMER_HANDLE_INVALID;
522 }
523
524 tc->rto = TCP_RTO_INIT;
525}
526
527/**
528 * Stop all connection timers
529 */
530void
531tcp_connection_timers_reset (tcp_connection_t * tc)
532{
Florin Coras0765d972020-03-18 21:26:41 +0000533 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500534 int i;
Florin Coras0765d972020-03-18 21:26:41 +0000535
Dave Barach68b0fb02017-02-28 15:15:56 -0500536 for (i = 0; i < TCP_N_TIMERS; i++)
Florin Coras0765d972020-03-18 21:26:41 +0000537 tcp_timer_reset (&wrk->timer_wheel, tc, i);
Dave Barach68b0fb02017-02-28 15:15:56 -0500538}
539
Dave Barach2c25a622017-06-26 11:35:07 -0400540#if 0
Florin Corasf6359c82017-06-19 12:26:09 -0400541typedef struct ip4_tcp_hdr
542{
543 ip4_header_t ip;
544 tcp_header_t tcp;
545} ip4_tcp_hdr_t;
546
547typedef struct ip6_tcp_hdr
548{
549 ip6_header_t ip;
550 tcp_header_t tcp;
551} ip6_tcp_hdr_t;
552
553static void
554tcp_connection_select_lb_bucket (tcp_connection_t * tc, const dpo_id_t * dpo,
555 dpo_id_t * result)
556{
557 const dpo_id_t *choice;
558 load_balance_t *lb;
559 int hash;
560
561 lb = load_balance_get (dpo->dpoi_index);
562 if (tc->c_is_ip4)
563 {
564 ip4_tcp_hdr_t hdr;
Dave Barachb7b92992018-10-17 10:38:51 -0400565 clib_memset (&hdr, 0, sizeof (hdr));
Florin Corasf6359c82017-06-19 12:26:09 -0400566 hdr.ip.protocol = IP_PROTOCOL_TCP;
567 hdr.ip.address_pair.src.as_u32 = tc->c_lcl_ip.ip4.as_u32;
568 hdr.ip.address_pair.dst.as_u32 = tc->c_rmt_ip.ip4.as_u32;
569 hdr.tcp.src_port = tc->c_lcl_port;
570 hdr.tcp.dst_port = tc->c_rmt_port;
571 hash = ip4_compute_flow_hash (&hdr.ip, lb->lb_hash_config);
572 }
573 else
574 {
575 ip6_tcp_hdr_t hdr;
Dave Barachb7b92992018-10-17 10:38:51 -0400576 clib_memset (&hdr, 0, sizeof (hdr));
Florin Corasf6359c82017-06-19 12:26:09 -0400577 hdr.ip.protocol = IP_PROTOCOL_TCP;
Dave Barach178cf492018-11-13 16:34:13 -0500578 clib_memcpy_fast (&hdr.ip.src_address, &tc->c_lcl_ip.ip6,
579 sizeof (ip6_address_t));
580 clib_memcpy_fast (&hdr.ip.dst_address, &tc->c_rmt_ip.ip6,
581 sizeof (ip6_address_t));
Florin Corasf6359c82017-06-19 12:26:09 -0400582 hdr.tcp.src_port = tc->c_lcl_port;
583 hdr.tcp.dst_port = tc->c_rmt_port;
584 hash = ip6_compute_flow_hash (&hdr.ip, lb->lb_hash_config);
585 }
586 choice = load_balance_get_bucket_i (lb, hash & lb->lb_n_buckets_minus_1);
587 dpo_copy (result, choice);
588}
589
590fib_node_index_t
591tcp_lookup_rmt_in_fib (tcp_connection_t * tc)
592{
593 fib_prefix_t prefix;
Florin Coras04e53442017-07-16 17:12:15 -0700594 u32 fib_index;
Florin Corasf6359c82017-06-19 12:26:09 -0400595
Dave Barach178cf492018-11-13 16:34:13 -0500596 clib_memcpy_fast (&prefix.fp_addr, &tc->c_rmt_ip, sizeof (prefix.fp_addr));
Florin Corasf6359c82017-06-19 12:26:09 -0400597 prefix.fp_proto = tc->c_is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
598 prefix.fp_len = tc->c_is_ip4 ? 32 : 128;
Florin Corascea194d2017-10-02 00:18:51 -0700599 fib_index = fib_table_find (prefix.fp_proto, tc->c_fib_index);
Florin Coras04e53442017-07-16 17:12:15 -0700600 return fib_table_lookup (fib_index, &prefix);
Florin Corasf6359c82017-06-19 12:26:09 -0400601}
602
603static int
604tcp_connection_stack_on_fib_entry (tcp_connection_t * tc)
605{
606 dpo_id_t choice = DPO_INVALID;
607 u32 output_node_index;
608 fib_entry_t *fe;
609
610 fe = fib_entry_get (tc->c_rmt_fei);
611 if (fe->fe_lb.dpoi_type != DPO_LOAD_BALANCE)
612 return -1;
613
614 tcp_connection_select_lb_bucket (tc, &fe->fe_lb, &choice);
615
616 output_node_index =
617 tc->c_is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
618 dpo_stack_from_node (output_node_index, &tc->c_rmt_dpo, &choice);
619 return 0;
620}
621
622/** Stack tcp connection on peer's fib entry.
623 *
624 * This ultimately populates the dpo the connection will use to send packets.
625 */
626static void
627tcp_connection_fib_attach (tcp_connection_t * tc)
628{
629 tc->c_rmt_fei = tcp_lookup_rmt_in_fib (tc);
630
631 ASSERT (tc->c_rmt_fei != FIB_NODE_INDEX_INVALID);
632
633 tcp_connection_stack_on_fib_entry (tc);
634}
Dave Barach2c25a622017-06-26 11:35:07 -0400635#endif /* 0 */
Florin Corasf6359c82017-06-19 12:26:09 -0400636
Florin Coras18e0d4f2019-01-02 12:22:02 -0800637/**
638 * Generate random iss as per rfc6528
639 */
640static u32
641tcp_generate_random_iss (tcp_connection_t * tc)
642{
643 tcp_main_t *tm = &tcp_main;
644 u64 tmp;
645
646 if (tc->c_is_ip4)
647 tmp = (u64) tc->c_lcl_ip.ip4.as_u32 << 32 | (u64) tc->c_rmt_ip.ip4.as_u32;
648 else
649 tmp = tc->c_lcl_ip.ip6.as_u64[0] ^ tc->c_lcl_ip.ip6.as_u64[1]
650 ^ tc->c_rmt_ip.ip6.as_u64[0] ^ tc->c_rmt_ip.ip6.as_u64[1];
651
652 tmp ^= tm->iss_seed.first | ((u64) tc->c_lcl_port << 16 | tc->c_rmt_port);
653 tmp ^= tm->iss_seed.second;
654 tmp = clib_xxhash (tmp) + clib_cpu_time_now ();
655 return ((tmp >> 32) ^ (tmp & 0xffffffff));
656}
Florin Coras0dbd5172018-06-25 16:19:34 -0700657
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400658/**
Florin Corascedcf602019-08-27 12:15:43 -0700659 * Initialize max segment size we're able to process.
660 *
661 * The value is constrained by the output interface's MTU and by the size
662 * of the IP and TCP headers (see RFC6691). It is also what we advertise
663 * to our peer.
664 */
665static void
666tcp_init_rcv_mss (tcp_connection_t * tc)
667{
668 u8 ip_hdr_len;
669
Florin Corasff19e3b2020-02-10 17:44:13 +0000670 /* Already provided at connection init time */
671 if (tc->mss)
672 return;
673
Florin Corascedcf602019-08-27 12:15:43 -0700674 ip_hdr_len = tc->c_is_ip4 ? sizeof (ip4_header_t) : sizeof (ip6_header_t);
675 tc->mss = tcp_cfg.default_mtu - sizeof (tcp_header_t) - ip_hdr_len;
676}
677
678static void
679tcp_init_mss (tcp_connection_t * tc)
680{
681 u16 default_min_mss = 536;
682
683 tcp_init_rcv_mss (tc);
684
685 /* TODO consider PMTU discovery */
686 tc->snd_mss = clib_min (tc->rcv_opts.mss, tc->mss);
687
688 if (tc->snd_mss < 45)
689 {
690 /* Assume that at least the min default mss works */
691 tc->snd_mss = default_min_mss;
692 tc->rcv_opts.mss = default_min_mss;
693 }
694
695 /* We should have enough space for 40 bytes of options */
696 ASSERT (tc->snd_mss > 45);
697
Florin Coras7a588fc2021-03-05 13:30:18 -0800698 /* If we use timestamp option, account for it and make sure
699 * the options are 4-byte aligned */
Florin Corascedcf602019-08-27 12:15:43 -0700700 if (tcp_opts_tstamp (&tc->rcv_opts))
Florin Coras7a588fc2021-03-05 13:30:18 -0800701 tc->snd_mss -= TCP_OPTION_LEN_TIMESTAMP + 2 /* alignment */;
Florin Corascedcf602019-08-27 12:15:43 -0700702}
703
704/**
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400705 * Initialize connection send variables.
706 */
707void
708tcp_init_snd_vars (tcp_connection_t * tc)
709{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700710 /*
711 * We use the time to randomize iss and for setting up the initial
712 * timestamp. Make sure it's updated otherwise syn and ack in the
713 * handshake may make it look as if time has flown in the opposite
714 * direction for us.
715 */
Florin Coras8f10b902021-04-02 18:32:00 -0700716 tcp_update_time_now (tcp_get_worker (vlib_get_thread_index ()));
Florin Coras3cbc04b2017-10-02 00:18:51 -0700717
Florin Corascedcf602019-08-27 12:15:43 -0700718 tcp_init_rcv_mss (tc);
Michal Kalderon3effadc2021-08-08 04:30:39 -0700719 /*
720 * In special case of early-kill of timewait socket, the iss will already
721 * be initialized to ensure it is greater than the last incarnation of the
722 * connection. see syn_during_timewait() for more details.
723 */
724 if (!tc->iss)
725 tc->iss = tcp_generate_random_iss (tc);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400726 tc->snd_una = tc->iss;
727 tc->snd_nxt = tc->iss + 1;
Florin Coraseedc74b2020-07-31 12:32:40 -0700728 tc->srtt = 0.1 * THZ; /* 100 ms */
Florin Corasf4ce6ba2019-11-20 18:34:58 -0800729
730 if (!tcp_cfg.csum_offload)
731 tc->cfg_flags |= TCP_CFG_F_NO_CSUM_OFFLOAD;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400732}
733
Florin Corasd67f1122018-05-21 17:47:40 -0700734void
735tcp_enable_pacing (tcp_connection_t * tc)
736{
Florin Coras36ebcff2019-09-12 18:36:44 -0700737 u32 byte_rate;
738 byte_rate = tc->cwnd / (tc->srtt * TCP_TICK);
739 transport_connection_tx_pacer_init (&tc->connection, byte_rate, tc->cwnd);
Florin Corasd67f1122018-05-21 17:47:40 -0700740 tc->mrtt_us = (u32) ~ 0;
741}
742
Dave Barach68b0fb02017-02-28 15:15:56 -0500743/** Initialize tcp connection variables
744 *
745 * Should be called after having received a msg from the peer, i.e., a SYN or
746 * a SYNACK, such that connection options have already been exchanged. */
747void
748tcp_connection_init_vars (tcp_connection_t * tc)
749{
750 tcp_connection_timers_init (tc);
Florin Corasc8343412017-05-04 14:25:50 -0700751 tcp_init_mss (tc);
Florin Coras6792ec02017-03-13 03:49:51 -0700752 scoreboard_init (&tc->sack_sb);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400753 if (tc->state == TCP_STATE_SYN_RCVD)
754 tcp_init_snd_vars (tc);
755
Florin Coras36ebcff2019-09-12 18:36:44 -0700756 tcp_cc_init (tc);
757
Florin Coras1c8ff632018-05-17 13:28:34 -0700758 if (!tc->c_is_ip4 && ip6_address_is_link_local_unicast (&tc->c_rmt_ip6))
759 tcp_add_del_adjacency (tc, 1);
760
Florin Corasd67f1122018-05-21 17:47:40 -0700761 /* tcp_connection_fib_attach (tc); */
762
763 if (transport_connection_is_tx_paced (&tc->connection)
Florin Coras9094b5c2019-08-12 14:17:47 -0700764 || tcp_cfg.enable_tx_pacing)
Florin Corasd67f1122018-05-21 17:47:40 -0700765 tcp_enable_pacing (tc);
Florin Coras52814732019-06-12 15:38:19 -0700766
Florin Corasbbcfaac2019-10-10 13:52:04 -0700767 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
Florin Coras52814732019-06-12 15:38:19 -0700768 tcp_bt_init (tc);
Florin Corasedfe0ee2019-07-29 18:13:25 -0700769
Florin Corasbbcfaac2019-10-10 13:52:04 -0700770 if (!tcp_cfg.allow_tso)
771 tc->cfg_flags |= TCP_CFG_F_NO_TSO;
772
Florin Corasedfe0ee2019-07-29 18:13:25 -0700773 tc->start_ts = tcp_time_now_us (tc->c_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500774}
775
Florin Coras3cbc04b2017-10-02 00:18:51 -0700776static int
Florin Coras3d6156f2023-01-30 11:18:36 -0800777tcp_alloc_custom_local_endpoint (ip46_address_t *lcl_addr, u16 *lcl_port,
778 transport_endpoint_cfg_t *rmt)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700779{
Florin Coras3d6156f2023-01-30 11:18:36 -0800780 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras3cbc04b2017-10-02 00:18:51 -0700781 int index, port;
Florin Coras3d6156f2023-01-30 11:18:36 -0800782
783 if (rmt->is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700784 {
Florin Coras9094b5c2019-08-12 14:17:47 -0700785 index = tm->last_v4_addr_rotor++;
786 if (tm->last_v4_addr_rotor >= vec_len (tcp_cfg.ip4_src_addrs))
787 tm->last_v4_addr_rotor = 0;
Mercury65409fb2021-12-23 19:15:02 +0800788 clib_memset (lcl_addr, 0, sizeof (*lcl_addr));
Florin Coras9094b5c2019-08-12 14:17:47 -0700789 lcl_addr->ip4.as_u32 = tcp_cfg.ip4_src_addrs[index].as_u32;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700790 }
791 else
792 {
Florin Coras9094b5c2019-08-12 14:17:47 -0700793 index = tm->last_v6_addr_rotor++;
794 if (tm->last_v6_addr_rotor >= vec_len (tcp_cfg.ip6_src_addrs))
795 tm->last_v6_addr_rotor = 0;
796 clib_memcpy_fast (&lcl_addr->ip6, &tcp_cfg.ip6_src_addrs[index],
Dave Barach178cf492018-11-13 16:34:13 -0500797 sizeof (ip6_address_t));
Florin Coras3cbc04b2017-10-02 00:18:51 -0700798 }
Florin Coras3d6156f2023-01-30 11:18:36 -0800799 port = transport_alloc_local_port (TRANSPORT_PROTO_TCP, lcl_addr, rmt);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700800 if (port < 1)
Florin Coras00e01d32019-10-21 16:07:46 -0700801 return SESSION_E_NOPORT;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700802 *lcl_port = port;
803 return 0;
804}
805
Florin Coras0dbd5172018-06-25 16:19:34 -0700806static int
Florin Coras5665ced2018-10-25 18:03:45 -0700807tcp_session_open (transport_endpoint_cfg_t * rmt)
Dave Barach68b0fb02017-02-28 15:15:56 -0500808{
Dave Barach68b0fb02017-02-28 15:15:56 -0500809 tcp_connection_t *tc;
Dave Barach68b0fb02017-02-28 15:15:56 -0500810 ip46_address_t lcl_addr;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700811 u16 lcl_port;
812 int rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500813
814 /*
Florin Coras3cbc04b2017-10-02 00:18:51 -0700815 * Allocate local endpoint
Dave Barach68b0fb02017-02-28 15:15:56 -0500816 */
Florin Coras9094b5c2019-08-12 14:17:47 -0700817 if ((rmt->is_ip4 && vec_len (tcp_cfg.ip4_src_addrs))
818 || (!rmt->is_ip4 && vec_len (tcp_cfg.ip6_src_addrs)))
Florin Coras3d6156f2023-01-30 11:18:36 -0800819 rv = tcp_alloc_custom_local_endpoint (&lcl_addr, &lcl_port, rmt);
Dave Barach68b0fb02017-02-28 15:15:56 -0500820 else
Florin Corase541d6f2023-03-14 09:59:02 -0700821 rv = transport_alloc_local_endpoint (TRANSPORT_PROTO_TCP, rmt, &lcl_addr,
822 &lcl_port);
Dave Barach2c25a622017-06-26 11:35:07 -0400823
Florin Coras3cbc04b2017-10-02 00:18:51 -0700824 if (rv)
Florin Coras3d6156f2023-01-30 11:18:36 -0800825 return rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500826
827 /*
828 * Create connection and send SYN
829 */
Florin Coras57b2e4a2021-07-06 08:25:36 -0700830 tc = tcp_half_open_connection_alloc ();
Florin Coras3cbc04b2017-10-02 00:18:51 -0700831 ip_copy (&tc->c_rmt_ip, &rmt->ip, rmt->is_ip4);
832 ip_copy (&tc->c_lcl_ip, &lcl_addr, rmt->is_ip4);
Florin Coras0e495682017-09-19 22:27:18 -0700833 tc->c_rmt_port = rmt->port;
Florin Coras23653412024-03-09 15:51:50 -0800834 tc->c_lcl_port = lcl_port;
Florin Coras04e53442017-07-16 17:12:15 -0700835 tc->c_is_ip4 = rmt->is_ip4;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700836 tc->c_proto = TRANSPORT_PROTO_TCP;
Florin Corascea194d2017-10-02 00:18:51 -0700837 tc->c_fib_index = rmt->fib_index;
Florin Coras12f69362019-08-16 09:44:00 -0700838 tc->cc_algo = tcp_cc_algo_get (tcp_cfg.cc_algo);
Dave Barach68b0fb02017-02-28 15:15:56 -0500839 /* The other connection vars will be initialized after SYN ACK */
840 tcp_connection_timers_init (tc);
Florin Corasff19e3b2020-02-10 17:44:13 +0000841 tc->mss = rmt->mss;
Florin Corase2f3aa12021-10-27 10:53:41 -0700842 if (rmt->peer.sw_if_index != ENDPOINT_INVALID_INDEX)
843 tc->sw_if_index = rmt->peer.sw_if_index;
Florin Coras48057bd2021-07-06 21:07:50 -0700844 tc->next_node_index = rmt->next_node_index;
845 tc->next_node_opaque = rmt->next_node_opaque;
Dave Barach68b0fb02017-02-28 15:15:56 -0500846
Florin Corasa436a422019-08-20 07:09:31 -0700847 TCP_EVT (TCP_EVT_OPEN, tc);
Florin Coras6534b7a2017-07-18 05:38:03 -0400848 tc->state = TCP_STATE_SYN_SENT;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400849 tcp_init_snd_vars (tc);
Florin Coras6534b7a2017-07-18 05:38:03 -0400850 tcp_send_syn (tc);
Florin Corase69f4952017-03-07 10:06:24 -0800851
Dave Barach68b0fb02017-02-28 15:15:56 -0500852 return tc->c_c_index;
853}
854
Florin Coras0dbd5172018-06-25 16:19:34 -0700855static u8 *
Florin Corase69f4952017-03-07 10:06:24 -0800856format_tcp_session (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500857{
858 u32 tci = va_arg (*args, u32);
859 u32 thread_index = va_arg (*args, u32);
Florin Corasbb292f42017-05-19 09:49:19 -0700860 u32 verbose = va_arg (*args, u32);
Dave Barach68b0fb02017-02-28 15:15:56 -0500861 tcp_connection_t *tc;
862
863 tc = tcp_connection_get (tci, thread_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700864 if (tc)
Florin Coras93992a92017-05-24 18:03:56 -0700865 s = format (s, "%U", format_tcp_connection, tc, verbose);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700866 else
Florin Coras1f152cd2017-08-18 19:28:03 -0700867 s = format (s, "empty\n");
Florin Coras93992a92017-05-24 18:03:56 -0700868 return s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500869}
870
Florin Coras0dbd5172018-06-25 16:19:34 -0700871static u8 *
Florin Corase69f4952017-03-07 10:06:24 -0800872format_tcp_listener_session (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500873{
874 u32 tci = va_arg (*args, u32);
Aloys Augustina0abbff2019-07-12 12:16:16 +0200875 u32 __clib_unused thread_index = va_arg (*args, u32);
Florin Coras3389dd22019-02-01 18:00:05 -0800876 u32 verbose = va_arg (*args, u32);
Dave Barach68b0fb02017-02-28 15:15:56 -0500877 tcp_connection_t *tc = tcp_listener_get (tci);
Florin Coras7bf6ed62020-09-23 12:02:08 -0700878 s = format (s, "%-" SESSION_CLI_ID_LEN "U", format_tcp_connection_id, tc);
Florin Coras3389dd22019-02-01 18:00:05 -0800879 if (verbose)
Florin Coras7bf6ed62020-09-23 12:02:08 -0700880 s = format (s, "%-" SESSION_CLI_STATE_LEN "U", format_tcp_state,
881 tc->state);
Florin Coras3389dd22019-02-01 18:00:05 -0800882 return s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500883}
884
Florin Coras0dbd5172018-06-25 16:19:34 -0700885static u8 *
Florin Corase69f4952017-03-07 10:06:24 -0800886format_tcp_half_open_session (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500887{
888 u32 tci = va_arg (*args, u32);
Aloys Augustina0abbff2019-07-12 12:16:16 +0200889 u32 __clib_unused thread_index = va_arg (*args, u32);
Florin Corasea727642021-05-07 19:39:43 -0700890 u32 verbose = va_arg (*args, u32);
891 tcp_connection_t *tc;
892 u8 *state = 0;
893
894 tc = tcp_half_open_connection_get (tci);
895 if (tc->flags & TCP_CONN_HALF_OPEN_DONE)
896 state = format (state, "%s", "CLOSED");
897 else
898 state = format (state, "%U", format_tcp_state, tc->state);
899 s = format (s, "%-" SESSION_CLI_ID_LEN "U", format_tcp_connection_id, tc);
900 if (verbose)
901 s = format (s, "%-" SESSION_CLI_STATE_LEN "v", state);
902 vec_free (state);
903 return s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500904}
905
Florin Coras0dbd5172018-06-25 16:19:34 -0700906static transport_connection_t *
Dave Barach68b0fb02017-02-28 15:15:56 -0500907tcp_session_get_transport (u32 conn_index, u32 thread_index)
908{
909 tcp_connection_t *tc = tcp_connection_get (conn_index, thread_index);
Florin Coras5bb23ec2019-08-31 09:45:13 -0700910 if (PREDICT_FALSE (!tc))
911 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500912 return &tc->connection;
913}
914
Florin Coras0dbd5172018-06-25 16:19:34 -0700915static transport_connection_t *
Dave Barach68b0fb02017-02-28 15:15:56 -0500916tcp_half_open_session_get_transport (u32 conn_index)
917{
918 tcp_connection_t *tc = tcp_half_open_connection_get (conn_index);
919 return &tc->connection;
920}
921
Florin Coras04ae8272021-04-12 19:55:37 -0700922static int
923tcp_set_attribute (tcp_connection_t *tc, transport_endpt_attr_t *attr)
924{
925 int rv = 0;
926
927 switch (attr->type)
928 {
929 case TRANSPORT_ENDPT_ATTR_NEXT_OUTPUT_NODE:
930 tc->next_node_index = attr->next_output_node & 0xffffffff;
931 tc->next_node_opaque = attr->next_output_node >> 32;
932 break;
933 case TRANSPORT_ENDPT_ATTR_MSS:
934 tc->mss = attr->mss;
935 tc->snd_mss = clib_min (tc->snd_mss, tc->mss);
936 break;
937 case TRANSPORT_ENDPT_ATTR_FLAGS:
938 if (attr->flags & TRANSPORT_ENDPT_ATTR_F_CSUM_OFFLOAD)
939 tc->cfg_flags |= TCP_CFG_F_NO_CSUM_OFFLOAD;
940 else
941 tc->cfg_flags &= ~TCP_CFG_F_NO_CSUM_OFFLOAD;
942 if (attr->flags & TRANSPORT_ENDPT_ATTR_F_GSO)
943 {
944 if (!(tc->cfg_flags & TCP_CFG_F_TSO))
945 tcp_check_gso (tc);
946 tc->cfg_flags &= ~TCP_CFG_F_NO_TSO;
947 }
948 else
949 {
950 tc->cfg_flags |= TCP_CFG_F_NO_TSO;
951 tc->cfg_flags &= ~TCP_CFG_F_TSO;
952 }
Florin Coras7fdf8b22021-04-15 08:50:00 -0700953 if (attr->flags & TRANSPORT_ENDPT_ATTR_F_RATE_SAMPLING)
954 {
955 if (!(tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE))
956 tcp_bt_init (tc);
957 tc->cfg_flags |= TCP_CFG_F_RATE_SAMPLE;
958 }
959 else
960 {
961 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
962 tcp_bt_cleanup (tc);
963 tc->cfg_flags &= ~TCP_CFG_F_RATE_SAMPLE;
964 }
Florin Coras04ae8272021-04-12 19:55:37 -0700965 break;
966 case TRANSPORT_ENDPT_ATTR_CC_ALGO:
967 if (tc->cc_algo == tcp_cc_algo_get (attr->cc_algo))
968 break;
969 tcp_cc_cleanup (tc);
970 tc->cc_algo = tcp_cc_algo_get (attr->cc_algo);
971 tcp_cc_init (tc);
972 break;
973 default:
974 rv = -1;
975 break;
976 }
977
978 return rv;
979}
980
981static int
982tcp_get_attribute (tcp_connection_t *tc, transport_endpt_attr_t *attr)
983{
984 int rv = 0;
985 u64 non;
986
987 switch (attr->type)
988 {
989 case TRANSPORT_ENDPT_ATTR_NEXT_OUTPUT_NODE:
990 non = (u64) tc->next_node_opaque << 32 | tc->next_node_index;
991 attr->next_output_node = non;
992 break;
993 case TRANSPORT_ENDPT_ATTR_MSS:
994 attr->mss = tc->snd_mss;
995 break;
996 case TRANSPORT_ENDPT_ATTR_FLAGS:
997 attr->flags = 0;
998 if (!(tc->cfg_flags & TCP_CFG_F_NO_CSUM_OFFLOAD))
999 attr->flags |= TRANSPORT_ENDPT_ATTR_F_CSUM_OFFLOAD;
1000 if (tc->cfg_flags & TCP_CFG_F_TSO)
1001 attr->flags |= TRANSPORT_ENDPT_ATTR_F_GSO;
Florin Coras7fdf8b22021-04-15 08:50:00 -07001002 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
1003 attr->flags |= TRANSPORT_ENDPT_ATTR_F_RATE_SAMPLING;
Florin Coras04ae8272021-04-12 19:55:37 -07001004 break;
1005 case TRANSPORT_ENDPT_ATTR_CC_ALGO:
1006 attr->cc_algo = tc->cc_algo - tcp_main.cc_algos;
1007 break;
1008 default:
1009 rv = -1;
1010 break;
1011 }
1012
1013 return rv;
1014}
1015
1016static int
1017tcp_session_attribute (u32 conn_index, u32 thread_index, u8 is_get,
1018 transport_endpt_attr_t *attr)
1019{
1020 tcp_connection_t *tc = tcp_connection_get (conn_index, thread_index);
1021
1022 if (PREDICT_FALSE (!tc))
1023 return -1;
1024
1025 if (is_get)
1026 return tcp_get_attribute (tc, attr);
1027 else
1028 return tcp_set_attribute (tc, attr);
1029}
1030
Simon Zhang1146ff42019-09-02 22:54:00 +08001031static u16
1032tcp_session_cal_goal_size (tcp_connection_t * tc)
1033{
1034 u16 goal_size = tc->snd_mss;
1035
Simon Zhang23c3d342020-09-15 23:40:28 +08001036 goal_size = tcp_cfg.max_gso_size - tc->snd_mss % tcp_cfg.max_gso_size;
Simon Zhang1146ff42019-09-02 22:54:00 +08001037 goal_size = clib_min (goal_size, tc->snd_wnd / 2);
1038
Simon Zhang8a047ed2019-09-24 21:16:56 +08001039 return goal_size > tc->snd_mss ? goal_size : tc->snd_mss;
Simon Zhang1146ff42019-09-02 22:54:00 +08001040}
1041
Florin Coras3af90fc2017-05-03 21:09:42 -07001042always_inline u32
1043tcp_round_snd_space (tcp_connection_t * tc, u32 snd_space)
1044{
Dave Barach2c25a622017-06-26 11:35:07 -04001045 if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
Florin Coras3af90fc2017-05-03 21:09:42 -07001046 {
Florin Corasdb84e572017-05-09 18:54:52 -07001047 return tc->snd_wnd <= snd_space ? tc->snd_wnd : 0;
Florin Coras3af90fc2017-05-03 21:09:42 -07001048 }
1049
Florin Coras1f152cd2017-08-18 19:28:03 -07001050 /* If not snd_wnd constrained and we can't write at least a segment,
1051 * don't try at all */
Dave Barach2c25a622017-06-26 11:35:07 -04001052 if (PREDICT_FALSE (snd_space < tc->snd_mss))
Florin Coras9d063042017-09-14 03:08:00 -04001053 return snd_space < tc->cwnd ? 0 : snd_space;
Florin Coras3af90fc2017-05-03 21:09:42 -07001054
1055 /* round down to mss multiple */
1056 return snd_space - (snd_space % tc->snd_mss);
1057}
1058
Florin Coras6792ec02017-03-13 03:49:51 -07001059/**
1060 * Compute tx window session is allowed to fill.
Florin Corasbb292f42017-05-19 09:49:19 -07001061 *
1062 * Takes into account available send space, snd_mss and the congestion
1063 * state of the connection. If possible, the value returned is a multiple
1064 * of snd_mss.
1065 *
1066 * @param tc tcp connection
1067 * @return number of bytes session is allowed to write
Florin Coras6792ec02017-03-13 03:49:51 -07001068 */
Florin Coras45ca73f2018-09-27 09:19:29 -07001069static inline u32
1070tcp_snd_space_inline (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001071{
Florin Coras36ebcff2019-09-12 18:36:44 -07001072 int snd_space;
Florin Coras6792ec02017-03-13 03:49:51 -07001073
Florin Coras7d8100f2020-10-21 23:24:53 -07001074 /* Fast path is disabled when recovery is on. @ref tcp_session_custom_tx
1075 * controls both retransmits and the sending of new data while congested
1076 */
1077 if (PREDICT_FALSE (tcp_in_cong_recovery (tc)
Florin Coras4af830c2018-12-04 09:21:36 -08001078 || tc->state == TCP_STATE_CLOSED))
Florin Coras36ee9f12018-11-02 12:52:10 -07001079 return 0;
1080
1081 snd_space = tcp_available_output_snd_space (tc);
1082
Florin Coras36ebcff2019-09-12 18:36:44 -07001083 /* If we got dupacks or sacked bytes but we're not yet in recovery, try
1084 * to force the peer to send enough dupacks to start retransmitting as
1085 * per Limited Transmit (RFC3042)
1086 */
Florin Corascc4d6d02020-07-29 23:03:39 -07001087 if (PREDICT_FALSE (tc->rcv_dupacks || tc->sack_sb.sacked_bytes))
Florin Coras6792ec02017-03-13 03:49:51 -07001088 {
Florin Corascc4d6d02020-07-29 23:03:39 -07001089 int snt_limited, n_pkts;
1090
1091 n_pkts = tcp_opts_sack_permitted (&tc->rcv_opts)
1092 ? tc->sack_sb.reorder - 1 : 2;
1093
1094 if ((seq_lt (tc->limited_transmit, tc->snd_nxt - n_pkts * tc->snd_mss)
1095 || seq_gt (tc->limited_transmit, tc->snd_nxt)))
Florin Coras36ee9f12018-11-02 12:52:10 -07001096 tc->limited_transmit = tc->snd_nxt;
Florin Coras36ebcff2019-09-12 18:36:44 -07001097
Florin Coras36ee9f12018-11-02 12:52:10 -07001098 ASSERT (seq_leq (tc->limited_transmit, tc->snd_nxt));
Florin Corasf03a59a2017-06-09 21:07:32 -07001099
Florin Corascc4d6d02020-07-29 23:03:39 -07001100 snt_limited = tc->snd_nxt - tc->limited_transmit;
1101 snd_space = clib_max (n_pkts * tc->snd_mss - snt_limited, 0);
Florin Coras3af90fc2017-05-03 21:09:42 -07001102 }
Florin Coras36ee9f12018-11-02 12:52:10 -07001103 return tcp_round_snd_space (tc, snd_space);
Dave Barach68b0fb02017-02-28 15:15:56 -05001104}
1105
Florin Coras45ca73f2018-09-27 09:19:29 -07001106u32
1107tcp_snd_space (tcp_connection_t * tc)
1108{
1109 return tcp_snd_space_inline (tc);
1110}
1111
Florin Coras70f879d2020-03-13 17:54:42 +00001112static int
1113tcp_session_send_params (transport_connection_t * trans_conn,
1114 transport_send_params_t * sp)
Florin Corasbb292f42017-05-19 09:49:19 -07001115{
1116 tcp_connection_t *tc = (tcp_connection_t *) trans_conn;
Florin Corasbb292f42017-05-19 09:49:19 -07001117
Florin Coras70f879d2020-03-13 17:54:42 +00001118 /* Ensure snd_mss does accurately reflect the amount of data we can push
1119 * in a segment. This also makes sure that options are updated according to
1120 * the current state of the connection. */
1121 tcp_update_burst_snd_vars (tc);
1122
1123 if (PREDICT_FALSE (tc->cfg_flags & TCP_CFG_F_TSO))
1124 sp->snd_mss = tcp_session_cal_goal_size (tc);
1125 else
1126 sp->snd_mss = tc->snd_mss;
1127
1128 sp->snd_space = clib_min (tcp_snd_space_inline (tc),
1129 tc->snd_wnd - (tc->snd_nxt - tc->snd_una));
Florin Coras6792ec02017-03-13 03:49:51 -07001130
1131 ASSERT (seq_geq (tc->snd_nxt, tc->snd_una));
Florin Coras6792ec02017-03-13 03:49:51 -07001132 /* This still works if fast retransmit is on */
Florin Coras70f879d2020-03-13 17:54:42 +00001133 sp->tx_offset = tc->snd_nxt - tc->snd_una;
1134
Florin Coras6080e0d2020-03-13 20:39:43 +00001135 sp->flags = sp->snd_space ? 0 : TRANSPORT_SND_F_DESCHED;
Florin Coras70f879d2020-03-13 17:54:42 +00001136
1137 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001138}
1139
Florin Coras0dbd5172018-06-25 16:19:34 -07001140static void
Florin Corasaa388692020-02-14 23:41:25 +00001141tcp_timer_waitclose_handler (tcp_connection_t * tc)
1142{
Florin Coras7a3a8662020-02-22 02:27:21 +00001143 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
1144
Florin Corasaa388692020-02-14 23:41:25 +00001145 switch (tc->state)
1146 {
1147 case TCP_STATE_CLOSE_WAIT:
1148 tcp_connection_timers_reset (tc);
Florin Corasaa388692020-02-14 23:41:25 +00001149 /* App never returned with a close */
1150 if (!(tc->flags & TCP_CONN_FINPNDG))
1151 {
1152 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
Florin Coras7a3a8662020-02-22 02:27:21 +00001153 session_transport_closed_notify (&tc->connection);
1154 tcp_program_cleanup (wrk, tc);
Florin Coras0765d972020-03-18 21:26:41 +00001155 tcp_worker_stats_inc (wrk, to_closewait, 1);
Florin Corasaa388692020-02-14 23:41:25 +00001156 break;
1157 }
1158
1159 /* Send FIN either way and switch to LAST_ACK. */
1160 tcp_cong_recovery_off (tc);
1161 /* Make sure we don't try to send unsent data */
1162 tc->snd_nxt = tc->snd_una;
1163 tcp_send_fin (tc);
1164 tcp_connection_set_state (tc, TCP_STATE_LAST_ACK);
Florin Coras7a3a8662020-02-22 02:27:21 +00001165 session_transport_closed_notify (&tc->connection);
Florin Corasaa388692020-02-14 23:41:25 +00001166
1167 /* Make sure we don't wait in LAST ACK forever */
Florin Coras0765d972020-03-18 21:26:41 +00001168 tcp_timer_set (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
1169 tcp_cfg.lastack_time);
1170 tcp_worker_stats_inc (wrk, to_closewait2, 1);
Florin Corasaa388692020-02-14 23:41:25 +00001171
1172 /* Don't delete the connection yet */
1173 break;
1174 case TCP_STATE_FIN_WAIT_1:
1175 tcp_connection_timers_reset (tc);
Florin Corasaa388692020-02-14 23:41:25 +00001176 if (tc->flags & TCP_CONN_FINPNDG)
1177 {
1178 /* If FIN pending, we haven't sent everything, but we did try.
1179 * Notify session layer that transport is closed. */
1180 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1181 tcp_send_reset (tc);
Florin Coras7a3a8662020-02-22 02:27:21 +00001182 tcp_program_cleanup (wrk, tc);
Florin Corasaa388692020-02-14 23:41:25 +00001183 }
1184 else
1185 {
1186 /* We've sent the fin but no progress. Close the connection and
1187 * to make sure everything is flushed, setup a cleanup timer */
1188 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
Florin Coras7a3a8662020-02-22 02:27:21 +00001189 tcp_program_cleanup (wrk, tc);
Florin Corasaa388692020-02-14 23:41:25 +00001190 }
Florin Coras7a3a8662020-02-22 02:27:21 +00001191 session_transport_closed_notify (&tc->connection);
Florin Coras0765d972020-03-18 21:26:41 +00001192 tcp_worker_stats_inc (wrk, to_finwait1, 1);
Florin Corasaa388692020-02-14 23:41:25 +00001193 break;
1194 case TCP_STATE_LAST_ACK:
1195 tcp_connection_timers_reset (tc);
1196 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
Florin Corasaa388692020-02-14 23:41:25 +00001197 session_transport_closed_notify (&tc->connection);
Florin Coras7a3a8662020-02-22 02:27:21 +00001198 tcp_program_cleanup (wrk, tc);
Florin Coras0765d972020-03-18 21:26:41 +00001199 tcp_worker_stats_inc (wrk, to_lastack, 1);
Florin Corasaa388692020-02-14 23:41:25 +00001200 break;
1201 case TCP_STATE_CLOSING:
1202 tcp_connection_timers_reset (tc);
1203 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
Florin Corasaa388692020-02-14 23:41:25 +00001204 session_transport_closed_notify (&tc->connection);
Florin Coras7a3a8662020-02-22 02:27:21 +00001205 tcp_program_cleanup (wrk, tc);
Florin Coras0765d972020-03-18 21:26:41 +00001206 tcp_worker_stats_inc (wrk, to_closing, 1);
Florin Corasaa388692020-02-14 23:41:25 +00001207 break;
1208 case TCP_STATE_FIN_WAIT_2:
1209 tcp_send_reset (tc);
1210 tcp_connection_timers_reset (tc);
1211 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1212 session_transport_closed_notify (&tc->connection);
Florin Coras7a3a8662020-02-22 02:27:21 +00001213 tcp_program_cleanup (wrk, tc);
Florin Coras0765d972020-03-18 21:26:41 +00001214 tcp_worker_stats_inc (wrk, to_finwait2, 1);
Florin Coras7a3a8662020-02-22 02:27:21 +00001215 break;
1216 case TCP_STATE_TIME_WAIT:
1217 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1218 tcp_program_cleanup (wrk, tc);
Florin Corasaa388692020-02-14 23:41:25 +00001219 break;
1220 default:
Florin Coras7a3a8662020-02-22 02:27:21 +00001221 clib_warning ("waitclose in state: %U", format_tcp_state, tc->state);
Florin Corasaa388692020-02-14 23:41:25 +00001222 break;
1223 }
1224}
1225
Florin Corasaa388692020-02-14 23:41:25 +00001226static timer_expiration_handler *timer_expiration_handlers[TCP_N_TIMERS] =
1227{
1228 tcp_timer_retransmit_handler,
Florin Corasaa388692020-02-14 23:41:25 +00001229 tcp_timer_persist_handler,
1230 tcp_timer_waitclose_handler,
1231 tcp_timer_retransmit_syn_handler,
1232};
Florin Corasaa388692020-02-14 23:41:25 +00001233
1234static void
1235tcp_dispatch_pending_timers (tcp_worker_ctx_t * wrk)
1236{
1237 u32 n_timers, connection_index, timer_id, thread_index, timer_handle;
1238 tcp_connection_t *tc;
1239 int i;
1240
1241 if (!(n_timers = clib_fifo_elts (wrk->pending_timers)))
1242 return;
1243
1244 thread_index = wrk->vm->thread_index;
Florin Corasa9d8cb42020-02-20 05:45:31 +00001245 for (i = 0; i < clib_min (n_timers, wrk->max_timers_per_loop); i++)
Florin Corasaa388692020-02-14 23:41:25 +00001246 {
1247 clib_fifo_sub1 (wrk->pending_timers, timer_handle);
1248 connection_index = timer_handle & 0x0FFFFFFF;
1249 timer_id = timer_handle >> 28;
1250
1251 if (PREDICT_TRUE (timer_id != TCP_TIMER_RETRANSMIT_SYN))
1252 tc = tcp_connection_get (connection_index, thread_index);
1253 else
1254 tc = tcp_half_open_connection_get (connection_index);
1255
1256 if (PREDICT_FALSE (!tc))
1257 continue;
1258
Florin Coras1caf7f12020-07-16 10:05:02 -07001259 /* Skip if the timer is not pending. Probably it was reset while
Florin Corasaa043952020-10-08 13:33:20 -07001260 * waiting for dispatch */
Florin Coras1caf7f12020-07-16 10:05:02 -07001261 if (PREDICT_FALSE (!(tc->pending_timers & (1 << timer_id))))
1262 continue;
1263
1264 tc->pending_timers &= ~(1 << timer_id);
1265
Florin Corasaa388692020-02-14 23:41:25 +00001266 /* Skip timer if it was rearmed while pending dispatch */
1267 if (PREDICT_FALSE (tc->timers[timer_id] != TCP_TIMER_HANDLE_INVALID))
1268 continue;
1269
1270 (*timer_expiration_handlers[timer_id]) (tc);
1271 }
Florin Corasa9d8cb42020-02-20 05:45:31 +00001272
1273 if (thread_index == 0 && clib_fifo_elts (wrk->pending_timers))
Florin Coras5484daa2020-03-27 23:55:06 +00001274 session_queue_run_on_main_thread (wrk->vm);
Florin Corasaa388692020-02-14 23:41:25 +00001275}
1276
1277static void
Florin Coras7a3a8662020-02-22 02:27:21 +00001278tcp_handle_cleanups (tcp_worker_ctx_t * wrk, clib_time_type_t now)
1279{
1280 u32 thread_index = wrk->vm->thread_index;
1281 tcp_cleanup_req_t *req;
1282 tcp_connection_t *tc;
1283
1284 while (clib_fifo_elts (wrk->pending_cleanups))
1285 {
1286 req = clib_fifo_head (wrk->pending_cleanups);
1287 if (req->free_time > now)
1288 break;
1289 clib_fifo_sub2 (wrk->pending_cleanups, req);
1290 tc = tcp_connection_get (req->connection_index, thread_index);
Florin Coras9f4db3c2020-03-10 19:34:28 +00001291 if (PREDICT_FALSE (!tc))
1292 continue;
Florin Coras7a3a8662020-02-22 02:27:21 +00001293 session_transport_delete_notify (&tc->connection);
1294 tcp_connection_cleanup (tc);
1295 }
1296}
1297
1298static void
Florin Coras561af9b2017-12-09 10:19:43 -08001299tcp_update_time (f64 now, u8 thread_index)
1300{
Florin Corasbe72ae62018-11-01 11:23:03 -07001301 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
1302
Florin Coras8f10b902021-04-02 18:32:00 -07001303 tcp_set_time_now (wrk, now);
Florin Coras7a3a8662020-02-22 02:27:21 +00001304 tcp_handle_cleanups (wrk, now);
Florin Coras49036a52020-10-08 09:28:32 -07001305 tcp_timer_expire_timers (&wrk->timer_wheel, now);
Florin Corasaa388692020-02-14 23:41:25 +00001306 tcp_dispatch_pending_timers (wrk);
Florin Coras561af9b2017-12-09 10:19:43 -08001307}
1308
Florin Coras42ceddb2018-12-12 10:56:01 -08001309static void
1310tcp_session_flush_data (transport_connection_t * tconn)
1311{
1312 tcp_connection_t *tc = (tcp_connection_t *) tconn;
1313 if (tc->flags & TCP_CONN_PSH_PENDING)
1314 return;
1315 tc->flags |= TCP_CONN_PSH_PENDING;
Florin Coras47596832019-03-12 18:58:54 -07001316 tc->psh_seq = tc->snd_una + transport_max_tx_dequeue (tconn) - 1;
Florin Coras42ceddb2018-12-12 10:56:01 -08001317}
1318
Florin Coras5a41fd52021-04-19 10:17:26 -07001319static int
1320tcp_session_app_rx_evt (transport_connection_t *conn)
1321{
1322 tcp_connection_t *tc = (tcp_connection_t *) conn;
1323 u32 min_free, lo = 4 << 10, hi = 128 << 10;
1324
1325 if (!(tc->flags & TCP_CONN_ZERO_RWND_SENT))
1326 return 0;
1327
1328 min_free = clib_clamp (transport_rx_fifo_size (conn) >> 3, lo, hi);
1329 if (transport_max_rx_enqueue (conn) < min_free)
1330 {
1331 transport_rx_fifo_req_deq_ntf (conn);
1332 return 0;
1333 }
1334
1335 tcp_send_ack (tc);
1336
1337 return 0;
1338}
1339
Florin Coras04e53442017-07-16 17:12:15 -07001340const static transport_proto_vft_t tcp_proto = {
Florin Coras561af9b2017-12-09 10:19:43 -08001341 .enable = vnet_tcp_enable_disable,
Florin Coras1ee78302019-02-05 15:51:15 -08001342 .start_listen = tcp_session_bind,
1343 .stop_listen = tcp_session_unbind,
Florin Coras8b20bf52018-06-14 14:55:50 -07001344 .push_header = tcp_session_push_header,
Dave Barach68b0fb02017-02-28 15:15:56 -05001345 .get_connection = tcp_session_get_transport,
1346 .get_listener = tcp_session_get_listener,
1347 .get_half_open = tcp_half_open_session_get_transport,
Florin Coras04ae8272021-04-12 19:55:37 -07001348 .attribute = tcp_session_attribute,
Florin Coras1ee78302019-02-05 15:51:15 -08001349 .connect = tcp_session_open,
liuyacan534468e2021-05-09 03:50:40 +00001350 .half_close = tcp_session_half_close,
Dave Barach68b0fb02017-02-28 15:15:56 -05001351 .close = tcp_session_close,
1352 .cleanup = tcp_session_cleanup,
Florin Corasd50ff7f2020-04-16 04:30:22 +00001353 .cleanup_ho = tcp_session_cleanup_ho,
Florin Corasdfb3b872019-08-16 17:48:44 -07001354 .reset = tcp_session_reset,
Florin Coras70f879d2020-03-13 17:54:42 +00001355 .send_params = tcp_session_send_params,
Florin Coras561af9b2017-12-09 10:19:43 -08001356 .update_time = tcp_update_time,
Florin Coras42ceddb2018-12-12 10:56:01 -08001357 .flush_data = tcp_session_flush_data,
Florin Coras26dd6de2019-07-23 23:54:47 -07001358 .custom_tx = tcp_session_custom_tx,
Florin Coras5a41fd52021-04-19 10:17:26 -07001359 .app_rx_evt = tcp_session_app_rx_evt,
Florin Corase69f4952017-03-07 10:06:24 -08001360 .format_connection = format_tcp_session,
1361 .format_listener = format_tcp_listener_session,
1362 .format_half_open = format_tcp_half_open_session,
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001363 .transport_options = {
Florin Coras07063b82020-03-13 04:44:51 +00001364 .name = "tcp",
1365 .short_name = "T",
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001366 .tx_type = TRANSPORT_TX_PEEK,
1367 .service_type = TRANSPORT_SERVICE_VC,
1368 },
Dave Barach68b0fb02017-02-28 15:15:56 -05001369};
Dave Barach68b0fb02017-02-28 15:15:56 -05001370
Florin Corasd67f1122018-05-21 17:47:40 -07001371void
Florin Corasc44a5582018-11-01 16:30:54 -07001372tcp_connection_tx_pacer_update (tcp_connection_t * tc)
Florin Corasd67f1122018-05-21 17:47:40 -07001373{
Florin Corasd67f1122018-05-21 17:47:40 -07001374 if (!transport_connection_is_tx_paced (&tc->connection))
1375 return;
1376
Florin Coras11e9e352019-11-13 19:09:47 -08001377 f64 srtt = clib_min ((f64) tc->srtt * TCP_TICK, tc->mrtt_us);
1378
Florin Corasd2067242019-08-16 10:33:49 -07001379 transport_connection_tx_pacer_update (&tc->connection,
Florin Coras11e9e352019-11-13 19:09:47 -08001380 tcp_cc_get_pacing_rate (tc),
1381 srtt * CLIB_US_TIME_FREQ);
Florin Corasd67f1122018-05-21 17:47:40 -07001382}
1383
Florin Corasc44a5582018-11-01 16:30:54 -07001384void
1385tcp_connection_tx_pacer_reset (tcp_connection_t * tc, u32 window,
1386 u32 start_bucket)
1387{
Florin Coras36ebcff2019-09-12 18:36:44 -07001388 f64 srtt = clib_min ((f64) tc->srtt * TCP_TICK, tc->mrtt_us);
Florin Coras599db9e2019-11-25 09:41:37 -08001389 transport_connection_tx_pacer_reset (&tc->connection,
1390 tcp_cc_get_pacing_rate (tc),
1391 start_bucket,
Florin Coras11e9e352019-11-13 19:09:47 -08001392 srtt * CLIB_US_TIME_FREQ);
Florin Corasc44a5582018-11-01 16:30:54 -07001393}
1394
Florin Coras6080e0d2020-03-13 20:39:43 +00001395void
1396tcp_reschedule (tcp_connection_t * tc)
1397{
1398 if (tcp_in_cong_recovery (tc) || tcp_snd_space_inline (tc))
1399 transport_connection_reschedule (&tc->connection);
1400}
1401
Florin Coras0dbd5172018-06-25 16:19:34 -07001402static void
Dave Barach68b0fb02017-02-28 15:15:56 -05001403tcp_expired_timers_dispatch (u32 * expired_timers)
1404{
Florin Corasa9d8cb42020-02-20 05:45:31 +00001405 u32 thread_index = vlib_get_thread_index (), n_left, max_per_loop;
1406 u32 connection_index, timer_id, n_expired, max_loops;
Florin Corasaa388692020-02-14 23:41:25 +00001407 tcp_worker_ctx_t *wrk;
Florin Corasb72a0ff2019-11-22 17:38:25 -08001408 tcp_connection_t *tc;
1409 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001410
Florin Corasaa388692020-02-14 23:41:25 +00001411 wrk = tcp_get_worker (thread_index);
Florin Coras5e6305f2020-02-12 07:42:01 +00001412 n_expired = vec_len (expired_timers);
Florin Coras0765d972020-03-18 21:26:41 +00001413 tcp_worker_stats_inc (wrk, timer_expirations, n_expired);
Florin Corasa9d8cb42020-02-20 05:45:31 +00001414 n_left = clib_fifo_elts (wrk->pending_timers);
Florin Coras5e6305f2020-02-12 07:42:01 +00001415
Florin Corasb72a0ff2019-11-22 17:38:25 -08001416 /*
1417 * Invalidate all timer handles before dispatching. This avoids dangling
1418 * index references to timer wheel pool entries that have been freed.
1419 */
Florin Coras5e6305f2020-02-12 07:42:01 +00001420 for (i = 0; i < n_expired; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05001421 {
Dave Barach68b0fb02017-02-28 15:15:56 -05001422 connection_index = expired_timers[i] & 0x0FFFFFFF;
1423 timer_id = expired_timers[i] >> 28;
1424
Florin Corasb72a0ff2019-11-22 17:38:25 -08001425 if (timer_id != TCP_TIMER_RETRANSMIT_SYN)
1426 tc = tcp_connection_get (connection_index, thread_index);
1427 else
1428 tc = tcp_half_open_connection_get (connection_index);
1429
Florin Corasa436a422019-08-20 07:09:31 -07001430 TCP_EVT (TCP_EVT_TIMER_POP, connection_index, timer_id);
Florin Corase69f4952017-03-07 10:06:24 -08001431
Florin Corasb72a0ff2019-11-22 17:38:25 -08001432 tc->timers[timer_id] = TCP_TIMER_HANDLE_INVALID;
Florin Coras1caf7f12020-07-16 10:05:02 -07001433 tc->pending_timers |= (1 << timer_id);
Florin Corasb72a0ff2019-11-22 17:38:25 -08001434 }
1435
Florin Corasaa388692020-02-14 23:41:25 +00001436 clib_fifo_add (wrk->pending_timers, expired_timers, n_expired);
Florin Corasa9d8cb42020-02-20 05:45:31 +00001437
Florin Coras273968c2022-01-03 10:34:52 -08001438 max_loops =
1439 clib_max ((u32) 0.5 * TCP_TIMER_TICK * wrk->vm->loops_per_second, 1);
Florin Corasa9d8cb42020-02-20 05:45:31 +00001440 max_per_loop = clib_max ((n_left + n_expired) / max_loops, 10);
1441 max_per_loop = clib_min (max_per_loop, VLIB_FRAME_SIZE);
1442 wrk->max_timers_per_loop = clib_max (n_left ? wrk->max_timers_per_loop : 0,
1443 max_per_loop);
1444
1445 if (thread_index == 0)
Florin Coras5484daa2020-03-27 23:55:06 +00001446 session_queue_run_on_main_thread (wrk->vm);
Dave Barach68b0fb02017-02-28 15:15:56 -05001447}
1448
Florin Coras0dbd5172018-06-25 16:19:34 -07001449static void
Florin Coras18e0d4f2019-01-02 12:22:02 -08001450tcp_initialize_iss_seed (tcp_main_t * tm)
1451{
1452 u32 default_seed = random_default_seed ();
1453 u64 time_now = clib_cpu_time_now ();
1454
1455 tm->iss_seed.first = (u64) random_u32 (&default_seed) << 32;
1456 tm->iss_seed.second = random_u64 (&time_now);
1457}
1458
Florin Coras6052f4b2023-06-21 20:02:25 -07001459static void
1460tcp_stats_collector_fn (vlib_stats_collector_data_t *d)
1461{
1462 tcp_main_t *tm = vnet_get_tcp_main ();
1463 counter_t **counters = d->entry->data;
1464 counter_t *cb = counters[0];
1465 tcp_wrk_stats_t acc = {};
1466 tcp_worker_ctx_t *wrk;
1467
1468 vec_foreach (wrk, tm->wrk_ctx)
1469 {
1470#define _(name, type, str) acc.name += wrk->stats.name;
1471 foreach_tcp_wrk_stat
1472#undef _
1473 }
1474
1475#define _(name, type, str) cb[TCP_STAT_##name] = acc.name;
1476 foreach_tcp_wrk_stat
1477#undef _
1478}
1479
1480static void
Florin Coras503480d2023-06-24 18:57:17 -07001481tcp_counters_init (tcp_main_t *tm)
Florin Coras6052f4b2023-06-21 20:02:25 -07001482{
1483 vlib_stats_collector_reg_t r = {};
1484 u32 idx;
1485
Florin Coras503480d2023-06-24 18:57:17 -07001486 if (tm->counters_init)
1487 return;
1488
Florin Coras6052f4b2023-06-21 20:02:25 -07001489 r.entry_index = idx = vlib_stats_add_counter_vector ("/sys/tcp");
1490 r.collect_fn = tcp_stats_collector_fn;
1491 vlib_stats_validate (idx, 0, TCP_STAT_no_buffer);
1492
1493#define _(name, type, str) \
1494 vlib_stats_add_symlink (idx, TCP_STAT_##name, "/sys/tcp/%s", \
1495 CLIB_STRING_MACRO (name));
1496 foreach_tcp_wrk_stat
1497#undef _
1498
1499 vlib_stats_register_collector_fn (&r);
Florin Coras503480d2023-06-24 18:57:17 -07001500
1501 tm->counters_init = 1;
Florin Coras6052f4b2023-06-21 20:02:25 -07001502}
1503
Florin Coras0dbd5172018-06-25 16:19:34 -07001504static clib_error_t *
Florin Corasa0b34a72017-03-07 01:20:52 -08001505tcp_main_enable (vlib_main_t * vm)
Dave Barach68b0fb02017-02-28 15:15:56 -05001506{
Dave Barach68b0fb02017-02-28 15:15:56 -05001507 vlib_thread_main_t *vtm = vlib_get_thread_main ();
Florin Corasbe72ae62018-11-01 11:23:03 -07001508 u32 num_threads, n_workers, prealloc_conn_per_wrk;
Dave Barach2c25a622017-06-26 11:35:07 -04001509 tcp_connection_t *tc __attribute__ ((unused));
Florin Corasbe72ae62018-11-01 11:23:03 -07001510 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras04261852020-02-12 01:24:29 +00001511 tcp_worker_ctx_t *wrk;
Florin Corasbe72ae62018-11-01 11:23:03 -07001512 clib_error_t *error = 0;
1513 int thread;
Dave Barach68b0fb02017-02-28 15:15:56 -05001514
Dave Barach68b0fb02017-02-28 15:15:56 -05001515 if ((error = vlib_call_init_function (vm, ip_main_init)))
1516 return error;
1517 if ((error = vlib_call_init_function (vm, ip4_lookup_init)))
1518 return error;
1519 if ((error = vlib_call_init_function (vm, ip6_lookup_init)))
1520 return error;
1521
1522 /*
1523 * Registrations
1524 */
1525
Dave Barach68b0fb02017-02-28 15:15:56 -05001526 ip4_register_protocol (IP_PROTOCOL_TCP, tcp4_input_node.index);
rootc9d1c5b2017-08-15 12:58:31 -04001527 ip6_register_protocol (IP_PROTOCOL_TCP, tcp6_input_node.index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001528
Dave Barach68b0fb02017-02-28 15:15:56 -05001529 /*
1530 * Initialize data structures
1531 */
1532
1533 num_threads = 1 /* main thread */ + vtm->n_threads;
Florin Corase55a6d72018-10-31 23:09:22 -07001534 vec_validate (tm->wrk_ctx, num_threads - 1);
Florin Corasbe72ae62018-11-01 11:23:03 -07001535 n_workers = num_threads == 1 ? 1 : vtm->n_threads;
Florin Coras9094b5c2019-08-12 14:17:47 -07001536 prealloc_conn_per_wrk = tcp_cfg.preallocated_connections / n_workers;
Dave Barach68b0fb02017-02-28 15:15:56 -05001537
Florin Coras5484daa2020-03-27 23:55:06 +00001538 wrk = &tm->wrk_ctx[0];
1539 wrk->tco_next_node[0] = vlib_node_get_next (vm, session_queue_node.index,
1540 tcp4_output_node.index);
1541 wrk->tco_next_node[1] = vlib_node_get_next (vm, session_queue_node.index,
1542 tcp6_output_node.index);
1543
Florin Corasbe72ae62018-11-01 11:23:03 -07001544 for (thread = 0; thread < num_threads; thread++)
Dave Barach2c25a622017-06-26 11:35:07 -04001545 {
Florin Coras04261852020-02-12 01:24:29 +00001546 wrk = &tm->wrk_ctx[thread];
1547
1548 vec_validate (wrk->pending_deq_acked, 255);
1549 vec_validate (wrk->pending_disconnects, 255);
1550 vec_validate (wrk->pending_resets, 255);
1551 vec_reset_length (wrk->pending_deq_acked);
1552 vec_reset_length (wrk->pending_disconnects);
1553 vec_reset_length (wrk->pending_resets);
Damjan Marion6ffb7c62021-03-26 13:06:13 +01001554 wrk->vm = vlib_get_main_by_index (thread);
Florin Corasa9d8cb42020-02-20 05:45:31 +00001555 wrk->max_timers_per_loop = 10;
Florin Corasbe72ae62018-11-01 11:23:03 -07001556
Florin Coras5484daa2020-03-27 23:55:06 +00001557 if (thread > 0)
1558 {
1559 wrk->tco_next_node[0] = tm->wrk_ctx[0].tco_next_node[0];
1560 wrk->tco_next_node[1] = tm->wrk_ctx[0].tco_next_node[1];
1561 }
1562
Florin Corasbe72ae62018-11-01 11:23:03 -07001563 /*
1564 * Preallocate connections. Assume that thread 0 won't
1565 * use preallocated threads when running multi-core
1566 */
1567 if ((thread > 0 || num_threads == 1) && prealloc_conn_per_wrk)
Florin Coras04261852020-02-12 01:24:29 +00001568 pool_init_fixed (wrk->connections, prealloc_conn_per_wrk);
Florin Coras49036a52020-10-08 09:28:32 -07001569
1570 tcp_timer_initialize_wheel (&wrk->timer_wheel,
1571 tcp_expired_timers_dispatch,
1572 vlib_time_now (vm));
Dave Barach2c25a622017-06-26 11:35:07 -04001573 }
1574
Florin Coras18e0d4f2019-01-02 12:22:02 -08001575 tcp_initialize_iss_seed (tm);
Florin Coras66b11312017-07-31 17:18:03 -07001576
Damjan Marion8934a042019-02-09 23:29:26 +01001577 tm->bytes_per_buffer = vlib_buffer_get_default_data_size (vm);
Florin Coras4e116fb2019-06-10 08:33:50 -07001578 tm->cc_last_type = TCP_CC_LAST;
Florin Coras5484daa2020-03-27 23:55:06 +00001579
Florin Coras503480d2023-06-24 18:57:17 -07001580 tcp_counters_init (tm);
Florin Coras6052f4b2023-06-21 20:02:25 -07001581
Dave Barach68b0fb02017-02-28 15:15:56 -05001582 return error;
1583}
1584
Florin Corasa0b34a72017-03-07 01:20:52 -08001585clib_error_t *
1586vnet_tcp_enable_disable (vlib_main_t * vm, u8 is_en)
1587{
1588 if (is_en)
1589 {
1590 if (tcp_main.is_enabled)
1591 return 0;
1592
1593 return tcp_main_enable (vm);
1594 }
1595 else
1596 {
1597 tcp_main.is_enabled = 0;
1598 }
1599
1600 return 0;
1601}
1602
Pierre Pfister7fe51f32017-09-20 08:48:36 +02001603void
1604tcp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add)
1605{
1606 tcp_main_t *tm = &tcp_main;
1607 if (is_ip4)
1608 tm->punt_unknown4 = is_add;
1609 else
1610 tm->punt_unknown6 = is_add;
1611}
1612
Florin Coras9094b5c2019-08-12 14:17:47 -07001613/**
1614 * Initialize default values for tcp parameters
1615 */
1616static void
1617tcp_configuration_init (void)
1618{
1619 /* Initial wnd for SYN. Fifos are not allocated at that point so use some
1620 * predefined value. For SYN-ACK we still want the scale to be computed in
1621 * the same way */
1622 tcp_cfg.max_rx_fifo = 32 << 20;
1623 tcp_cfg.min_rx_fifo = 4 << 10;
1624
Florin Corascedcf602019-08-27 12:15:43 -07001625 tcp_cfg.default_mtu = 1500;
Florin Coras9094b5c2019-08-12 14:17:47 -07001626 tcp_cfg.initial_cwnd_multiplier = 0;
1627 tcp_cfg.enable_tx_pacing = 1;
Florin Corasbbcfaac2019-10-10 13:52:04 -07001628 tcp_cfg.allow_tso = 0;
Florin Corasf4ce6ba2019-11-20 18:34:58 -08001629 tcp_cfg.csum_offload = 1;
Florin Corase57df7c2020-04-17 16:10:51 +00001630 tcp_cfg.cc_algo = TCP_CC_CUBIC;
Florin Coras017dc452019-08-30 11:06:35 -07001631 tcp_cfg.rwnd_min_update_ack = 1;
Simon Zhang23c3d342020-09-15 23:40:28 +08001632 tcp_cfg.max_gso_size = TCP_MAX_GSO_SZ;
Florin Coras9094b5c2019-08-12 14:17:47 -07001633
Ryujiro Shibuya6fa09882020-10-22 05:26:32 +00001634 /* Time constants defined as timer tick (100us) multiples */
Ryujiro Shibuya6fa09882020-10-22 05:26:32 +00001635 tcp_cfg.closewait_time = 20000; /* 2s */
1636 tcp_cfg.timewait_time = 100000; /* 10s */
1637 tcp_cfg.finwait1_time = 600000; /* 60s */
1638 tcp_cfg.lastack_time = 300000; /* 30s */
1639 tcp_cfg.finwait2_time = 300000; /* 30s */
1640 tcp_cfg.closing_time = 300000; /* 30s */
liuyacan7e781192021-06-14 18:09:01 +08001641 tcp_cfg.alloc_err_timeout = 1000; /* 100ms */
Ryujiro Shibuya6fa09882020-10-22 05:26:32 +00001642
1643 /* This value is seconds */
Florin Coras7a3a8662020-02-22 02:27:21 +00001644 tcp_cfg.cleanup_time = 0.1; /* 100ms */
Florin Coras1c30d2d2024-06-10 13:12:40 -07001645
1646 /* Time constants defined as tcp tick (1us) multiples */
1647 tcp_cfg.syn_rcvd_time = TCP_ESTABLISH_TIME;
Florin Coras9094b5c2019-08-12 14:17:47 -07001648}
1649
Florin Coras0dbd5172018-06-25 16:19:34 -07001650static clib_error_t *
Florin Corasa0b34a72017-03-07 01:20:52 -08001651tcp_init (vlib_main_t * vm)
1652{
1653 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras40364272017-11-16 09:57:50 -08001654 ip_main_t *im = &ip_main;
1655 ip_protocol_info_t *pi;
1656
1657 /* Session layer, and by implication tcp, are disabled by default */
Florin Corasa0b34a72017-03-07 01:20:52 -08001658 tm->is_enabled = 0;
Florin Coras40364272017-11-16 09:57:50 -08001659
1660 /* Register with IP for header parsing */
1661 pi = ip_get_protocol_info (im, IP_PROTOCOL_TCP);
1662 if (pi == 0)
1663 return clib_error_return (0, "TCP protocol info AWOL");
1664 pi->format_header = format_tcp_header;
1665 pi->unformat_pg_edit = unformat_pg_tcp_header;
1666
Florin Coras561af9b2017-12-09 10:19:43 -08001667 /* Register as transport with session layer */
1668 transport_register_protocol (TRANSPORT_PROTO_TCP, &tcp_proto,
1669 FIB_PROTOCOL_IP4, tcp4_output_node.index);
1670 transport_register_protocol (TRANSPORT_PROTO_TCP, &tcp_proto,
1671 FIB_PROTOCOL_IP6, tcp6_output_node.index);
1672
Florin Coras9094b5c2019-08-12 14:17:47 -07001673 tcp_configuration_init ();
1674
Florin Corasfbf278a2019-03-26 14:05:38 -07001675 tm->cc_algo_by_name = hash_create_string (0, sizeof (uword));
Florin Coras9094b5c2019-08-12 14:17:47 -07001676
Florin Corasa0b34a72017-03-07 01:20:52 -08001677 return 0;
1678}
1679
Dave Barach68b0fb02017-02-28 15:15:56 -05001680VLIB_INIT_FUNCTION (tcp_init);
1681
Dave Barach68b0fb02017-02-28 15:15:56 -05001682/*
1683 * fd.io coding-style-patch-verification: ON
1684 *
1685 * Local Variables:
1686 * eval: (c-set-style "gnu")
1687 * End:
1688 */