blob: 6e0c1474dd509acf5a01f1f7e38f03067ff9f319 [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
28tcp_main_t tcp_main;
29
Florin Coras1c8ff632018-05-17 13:28:34 -070030typedef struct
31{
32 fib_protocol_t nh_proto;
33 vnet_link_t link_type;
34 ip46_address_t ip;
35 u32 sw_if_index;
36 u8 is_add;
37} tcp_add_del_adj_args_t;
38
39static void
40tcp_add_del_adj_cb (tcp_add_del_adj_args_t * args)
41{
42 u32 ai;
43 if (args->is_add)
44 {
45 adj_nbr_add_or_lock (args->nh_proto, args->link_type, &args->ip,
46 args->sw_if_index);
47 }
48 else
49 {
50 ai = adj_nbr_find (FIB_PROTOCOL_IP6, VNET_LINK_IP6, &args->ip,
51 args->sw_if_index);
52 if (ai != ADJ_INDEX_INVALID)
53 adj_unlock (ai);
54 }
55}
56
57static void
58tcp_add_del_adjacency (tcp_connection_t * tc, u8 is_add)
59{
60 tcp_add_del_adj_args_t args = {
61 .nh_proto = FIB_PROTOCOL_IP6,
62 .link_type = VNET_LINK_IP6,
63 .ip = tc->c_rmt_ip,
64 .sw_if_index = tc->sw_if_index,
65 .is_add = is_add
66 };
67 vlib_rpc_call_main_thread (tcp_add_del_adj_cb, (u8 *) & args,
68 sizeof (args));
69}
70
Florin Corasd9a145f2019-06-07 09:35:20 -070071static void
72tcp_cc_init (tcp_connection_t * tc)
73{
Florin Corasc8144352022-01-06 11:58:24 -080074 /* As per RFC 6582 initialize "recover" to iss */
75 if (tcp_opts_sack_permitted (&tc->rcv_opts))
76 tc->snd_congestion = tc->iss;
77
Florin Corasd9a145f2019-06-07 09:35:20 -070078 tc->cc_algo->init (tc);
79}
80
81static void
82tcp_cc_cleanup (tcp_connection_t * tc)
83{
84 if (tc->cc_algo->cleanup)
85 tc->cc_algo->cleanup (tc);
86}
87
88void
89tcp_cc_algo_register (tcp_cc_algorithm_type_e type,
90 const tcp_cc_algorithm_t * vft)
91{
92 tcp_main_t *tm = vnet_get_tcp_main ();
93 vec_validate (tm->cc_algos, type);
94
95 tm->cc_algos[type] = *vft;
96 hash_set_mem (tm->cc_algo_by_name, vft->name, type);
97}
98
99tcp_cc_algorithm_t *
100tcp_cc_algo_get (tcp_cc_algorithm_type_e type)
101{
102 tcp_main_t *tm = vnet_get_tcp_main ();
103 return &tm->cc_algos[type];
104}
105
Florin Coras4e116fb2019-06-10 08:33:50 -0700106tcp_cc_algorithm_type_e
107tcp_cc_algo_new_type (const tcp_cc_algorithm_t * vft)
108{
109 tcp_main_t *tm = vnet_get_tcp_main ();
110 tcp_cc_algo_register (++tm->cc_last_type, vft);
111 return tm->cc_last_type;
112}
113
Dave Barach68b0fb02017-02-28 15:15:56 -0500114static u32
Florin Coras0bce71e2022-02-10 11:57:06 -0800115tcp_connection_bind (u32 session_index, transport_endpoint_cfg_t *lcl)
Dave Barach68b0fb02017-02-28 15:15:56 -0500116{
117 tcp_main_t *tm = &tcp_main;
118 tcp_connection_t *listener;
Florin Corascea194d2017-10-02 00:18:51 -0700119 void *iface_ip;
Dave Barach68b0fb02017-02-28 15:15:56 -0500120
121 pool_get (tm->listener_pool, listener);
Dave Barachb7b92992018-10-17 10:38:51 -0400122 clib_memset (listener, 0, sizeof (*listener));
Dave Barach68b0fb02017-02-28 15:15:56 -0500123
124 listener->c_c_index = listener - tm->listener_pool;
Florin Coras0e495682017-09-19 22:27:18 -0700125 listener->c_lcl_port = lcl->port;
Dave Barach68b0fb02017-02-28 15:15:56 -0500126
Florin Corascea194d2017-10-02 00:18:51 -0700127 /* If we are provided a sw_if_index, bind using one of its ips */
128 if (ip_is_zero (&lcl->ip, 1) && lcl->sw_if_index != ENDPOINT_INVALID_INDEX)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700129 {
Florin Corascea194d2017-10-02 00:18:51 -0700130 if ((iface_ip = ip_interface_get_first_ip (lcl->sw_if_index,
131 lcl->is_ip4)))
132 ip_set (&lcl->ip, iface_ip, lcl->is_ip4);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700133 }
Florin Corascea194d2017-10-02 00:18:51 -0700134 ip_copy (&listener->c_lcl_ip, &lcl->ip, lcl->is_ip4);
135 listener->c_is_ip4 = lcl->is_ip4;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700136 listener->c_proto = TRANSPORT_PROTO_TCP;
Dave Barach68b0fb02017-02-28 15:15:56 -0500137 listener->c_s_index = session_index;
Florin Corascea194d2017-10-02 00:18:51 -0700138 listener->c_fib_index = lcl->fib_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500139 listener->state = TCP_STATE_LISTEN;
Florin Coras12f69362019-08-16 09:44:00 -0700140 listener->cc_algo = tcp_cc_algo_get (tcp_cfg.cc_algo);
Dave Barach68b0fb02017-02-28 15:15:56 -0500141
Florin Corase69f4952017-03-07 10:06:24 -0800142 tcp_connection_timers_init (listener);
143
Florin Corasa436a422019-08-20 07:09:31 -0700144 TCP_EVT (TCP_EVT_BIND, listener);
Florin Corase69f4952017-03-07 10:06:24 -0800145
Dave Barach68b0fb02017-02-28 15:15:56 -0500146 return listener->c_c_index;
147}
148
Florin Coras0dbd5172018-06-25 16:19:34 -0700149static u32
Florin Coras0bce71e2022-02-10 11:57:06 -0800150tcp_session_bind (u32 session_index, transport_endpoint_cfg_t *tep)
Dave Barach68b0fb02017-02-28 15:15:56 -0500151{
Florin Coras04e53442017-07-16 17:12:15 -0700152 return tcp_connection_bind (session_index, tep);
Dave Barach68b0fb02017-02-28 15:15:56 -0500153}
154
155static void
Florin Corase69f4952017-03-07 10:06:24 -0800156tcp_connection_unbind (u32 listener_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500157{
158 tcp_main_t *tm = vnet_get_tcp_main ();
Dave Barach2c25a622017-06-26 11:35:07 -0400159 tcp_connection_t *tc;
160
161 tc = pool_elt_at_index (tm->listener_pool, listener_index);
162
Florin Corasa436a422019-08-20 07:09:31 -0700163 TCP_EVT (TCP_EVT_UNBIND, tc);
Dave Barach2c25a622017-06-26 11:35:07 -0400164
165 /* Poison the entry */
166 if (CLIB_DEBUG > 0)
Dave Barachb7b92992018-10-17 10:38:51 -0400167 clib_memset (tc, 0xFA, sizeof (*tc));
Dave Barach2c25a622017-06-26 11:35:07 -0400168
Dave Barach68b0fb02017-02-28 15:15:56 -0500169 pool_put_index (tm->listener_pool, listener_index);
170}
171
Florin Coras0dbd5172018-06-25 16:19:34 -0700172static u32
Florin Corase69f4952017-03-07 10:06:24 -0800173tcp_session_unbind (u32 listener_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500174{
Florin Corase69f4952017-03-07 10:06:24 -0800175 tcp_connection_unbind (listener_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500176 return 0;
177}
178
Florin Coras0dbd5172018-06-25 16:19:34 -0700179static transport_connection_t *
Dave Barach68b0fb02017-02-28 15:15:56 -0500180tcp_session_get_listener (u32 listener_index)
181{
182 tcp_main_t *tm = vnet_get_tcp_main ();
183 tcp_connection_t *tc;
184 tc = pool_elt_at_index (tm->listener_pool, listener_index);
185 return &tc->connection;
186}
187
Florin Coras57b2e4a2021-07-06 08:25:36 -0700188static tcp_connection_t *
189tcp_half_open_connection_alloc (void)
190{
Florin Coras309f7aa2022-03-18 08:33:08 -0700191 return tcp_connection_alloc (transport_cl_thread ());
Florin Coras57b2e4a2021-07-06 08:25:36 -0700192}
193
Florin Coras68810622017-07-24 17:40:28 -0700194/**
195 * Cleanup half-open connection
196 *
197 */
Florin Coras0dbd5172018-06-25 16:19:34 -0700198static void
Florin Corasd50ff7f2020-04-16 04:30:22 +0000199tcp_half_open_connection_free (tcp_connection_t * tc)
Florin Coras68810622017-07-24 17:40:28 -0700200{
Florin Coras309f7aa2022-03-18 08:33:08 -0700201 ASSERT (vlib_get_thread_index () == tc->c_thread_index ||
202 vlib_thread_is_main_w_barrier ());
Florin Coras57b2e4a2021-07-06 08:25:36 -0700203 return tcp_connection_free (tc);
Florin Coras68810622017-07-24 17:40:28 -0700204}
205
206/**
207 * Try to cleanup half-open connection
208 *
209 * If called from a thread that doesn't own tc, the call won't have any
210 * effect.
211 *
212 * @param tc - connection to be cleaned up
213 * @return non-zero if cleanup failed.
214 */
215int
216tcp_half_open_connection_cleanup (tcp_connection_t * tc)
217{
Florin Coras0765d972020-03-18 21:26:41 +0000218 tcp_worker_ctx_t *wrk;
219
Florin Coras68810622017-07-24 17:40:28 -0700220 /* Make sure this is the owning thread */
221 if (tc->c_thread_index != vlib_get_thread_index ())
222 return 1;
Florin Coras0765d972020-03-18 21:26:41 +0000223
Florin Corasea727642021-05-07 19:39:43 -0700224 session_half_open_delete_notify (&tc->connection);
Florin Coras0765d972020-03-18 21:26:41 +0000225 wrk = tcp_get_worker (tc->c_thread_index);
226 tcp_timer_reset (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT_SYN);
Florin Corasd50ff7f2020-04-16 04:30:22 +0000227 tcp_half_open_connection_free (tc);
Florin Coras68810622017-07-24 17:40:28 -0700228 return 0;
229}
230
Dave Barach68b0fb02017-02-28 15:15:56 -0500231/**
232 * Cleans up connection state.
233 *
234 * No notifications.
235 */
236void
237tcp_connection_cleanup (tcp_connection_t * tc)
238{
Florin Corasa436a422019-08-20 07:09:31 -0700239 TCP_EVT (TCP_EVT_DELETE, tc);
Florin Coras070fd4b2019-04-02 19:03:23 -0700240
Dave Barach68b0fb02017-02-28 15:15:56 -0500241 /* Cleanup local endpoint if this was an active connect */
Florin Coras43818c12020-02-09 23:09:26 +0000242 if (!(tc->cfg_flags & TCP_CFG_F_NO_ENDPOINT))
Florin Corasbf27ca82022-11-09 15:54:39 -0800243 transport_release_local_endpoint (TRANSPORT_PROTO_TCP, &tc->c_lcl_ip,
244 tc->c_lcl_port);
Dave Barach68b0fb02017-02-28 15:15:56 -0500245
Florin Coras68810622017-07-24 17:40:28 -0700246 /* Check if connection is not yet fully established */
Dave Barach68b0fb02017-02-28 15:15:56 -0500247 if (tc->state == TCP_STATE_SYN_SENT)
Dave Barach2c25a622017-06-26 11:35:07 -0400248 {
Florin Coras68810622017-07-24 17:40:28 -0700249 /* Try to remove the half-open connection. If this is not the owning
250 * thread, tc won't be removed. Retransmit or establish timers will
251 * eventually expire and call again cleanup on the right thread. */
Florin Corasc5347d92018-10-17 10:41:28 -0700252 if (tcp_half_open_connection_cleanup (tc))
253 tc->flags |= TCP_CONN_HALF_OPEN_DONE;
Dave Barach2c25a622017-06-26 11:35:07 -0400254 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500255 else
Dave Barach2c25a622017-06-26 11:35:07 -0400256 {
Florin Coras68810622017-07-24 17:40:28 -0700257 /* Make sure all timers are cleared */
258 tcp_connection_timers_reset (tc);
259
Florin Coras1c8ff632018-05-17 13:28:34 -0700260 if (!tc->c_is_ip4 && ip6_address_is_link_local_unicast (&tc->c_rmt_ip6))
261 tcp_add_del_adjacency (tc, 0);
262
Florin Corasd9a145f2019-06-07 09:35:20 -0700263 tcp_cc_cleanup (tc);
Florin Corasb691f762019-02-22 09:07:20 -0800264 vec_free (tc->snd_sacks);
265 vec_free (tc->snd_sacks_fl);
Florin Coras558e3e02019-09-06 12:56:58 -0700266 vec_free (tc->rcv_opts.sacks);
267 pool_free (tc->sack_sb.holes);
Florin Corasb691f762019-02-22 09:07:20 -0800268
Florin Corasbbcfaac2019-10-10 13:52:04 -0700269 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
Florin Coras52814732019-06-12 15:38:19 -0700270 tcp_bt_cleanup (tc);
271
Florin Coras04261852020-02-12 01:24:29 +0000272 tcp_connection_free (tc);
Dave Barach2c25a622017-06-26 11:35:07 -0400273 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500274}
275
276/**
277 * Connection removal.
278 *
279 * This should be called only once connection enters CLOSED state. Note
280 * that it notifies the session of the removal event, so if the goal is to
281 * just remove the connection, call tcp_connection_cleanup instead.
282 */
283void
284tcp_connection_del (tcp_connection_t * tc)
285{
Florin Coras5a2ec8f2018-12-27 11:53:11 -0800286 session_transport_delete_notify (&tc->connection);
Dave Barach68b0fb02017-02-28 15:15:56 -0500287 tcp_connection_cleanup (tc);
288}
289
Florin Coras6534b7a2017-07-18 05:38:03 -0400290tcp_connection_t *
Florin Coras8124cb72018-12-16 20:57:29 -0800291tcp_connection_alloc (u8 thread_index)
Florin Coras6534b7a2017-07-18 05:38:03 -0400292{
Florin Coras04261852020-02-12 01:24:29 +0000293 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras6534b7a2017-07-18 05:38:03 -0400294 tcp_connection_t *tc;
295
Florin Corasb0187322022-03-15 16:27:43 -0700296 pool_get_aligned_safe (wrk->connections, tc, CLIB_CACHE_LINE_BYTES);
Dave Barachb7b92992018-10-17 10:38:51 -0400297 clib_memset (tc, 0, sizeof (*tc));
Florin Coras04261852020-02-12 01:24:29 +0000298 tc->c_c_index = tc - wrk->connections;
Florin Coras6534b7a2017-07-18 05:38:03 -0400299 tc->c_thread_index = thread_index;
300 return tc;
301}
302
Florin Coras12f69362019-08-16 09:44:00 -0700303tcp_connection_t *
Florin Coras57b2e4a2021-07-06 08:25:36 -0700304tcp_connection_alloc_w_base (u8 thread_index, tcp_connection_t **base)
Florin Coras12f69362019-08-16 09:44:00 -0700305{
Florin Coras04261852020-02-12 01:24:29 +0000306 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
Florin Coras12f69362019-08-16 09:44:00 -0700307 tcp_connection_t *tc;
308
Florin Coras57b2e4a2021-07-06 08:25:36 -0700309 /* Make sure connection is still valid if pool moves */
310 if ((*base)->c_thread_index == thread_index)
311 {
312 u32 base_index = (*base)->c_c_index;
Florin Corasb0187322022-03-15 16:27:43 -0700313 pool_get_aligned_safe (wrk->connections, tc, CLIB_CACHE_LINE_BYTES);
Florin Coras57b2e4a2021-07-06 08:25:36 -0700314 *base = tcp_connection_get (base_index, thread_index);
315 }
316 else
317 {
Florin Corasb0187322022-03-15 16:27:43 -0700318 pool_get_aligned_safe (wrk->connections, tc, CLIB_CACHE_LINE_BYTES);
Florin Coras57b2e4a2021-07-06 08:25:36 -0700319 }
320 clib_memcpy_fast (tc, *base, sizeof (*tc));
Florin Coras04261852020-02-12 01:24:29 +0000321 tc->c_c_index = tc - wrk->connections;
Florin Coras12f69362019-08-16 09:44:00 -0700322 tc->c_thread_index = thread_index;
323 return tc;
324}
325
Florin Coras8124cb72018-12-16 20:57:29 -0800326void
327tcp_connection_free (tcp_connection_t * tc)
328{
Florin Coras04261852020-02-12 01:24:29 +0000329 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
Florin Coras6416e622019-04-03 17:52:43 -0700330 if (CLIB_DEBUG)
331 {
Florin Coras6416e622019-04-03 17:52:43 -0700332 clib_memset (tc, 0xFA, sizeof (*tc));
Florin Coras04261852020-02-12 01:24:29 +0000333 pool_put (wrk->connections, tc);
Florin Coras6416e622019-04-03 17:52:43 -0700334 return;
335 }
Florin Coras04261852020-02-12 01:24:29 +0000336 pool_put (wrk->connections, tc);
Florin Coras8124cb72018-12-16 20:57:29 -0800337}
338
Florin Coras7a3a8662020-02-22 02:27:21 +0000339void
340tcp_program_cleanup (tcp_worker_ctx_t * wrk, tcp_connection_t * tc)
341{
342 tcp_cleanup_req_t *req;
343 clib_time_type_t now;
344
Florin Coras8f10b902021-04-02 18:32:00 -0700345 now = tcp_time_now_us (tc->c_thread_index);
Florin Coras7a3a8662020-02-22 02:27:21 +0000346 clib_fifo_add2 (wrk->pending_cleanups, req);
347 req->connection_index = tc->c_c_index;
348 req->free_time = now + tcp_cfg.cleanup_time;
349}
350
Dave Barach68b0fb02017-02-28 15:15:56 -0500351/**
352 * Begin connection closing procedure.
353 *
354 * If at the end the connection is not in CLOSED state, it is not removed.
355 * Instead, we rely on on TCP to advance through state machine to either
356 * 1) LAST_ACK (passive close) whereby when the last ACK is received
357 * tcp_connection_del is called. This notifies session of the delete and
358 * calls cleanup.
359 * 2) TIME_WAIT (active close) whereby after 2MSL the 2MSL timer triggers
360 * and cleanup is called.
Florin Corasd79b41e2017-03-04 05:37:52 -0800361 *
Dave Barach68b0fb02017-02-28 15:15:56 -0500362 */
363void
364tcp_connection_close (tcp_connection_t * tc)
365{
Florin Coras0765d972020-03-18 21:26:41 +0000366 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
367
Florin Corasa436a422019-08-20 07:09:31 -0700368 TCP_EVT (TCP_EVT_CLOSE, tc);
Florin Corase69f4952017-03-07 10:06:24 -0800369
Florin Corasb2215d62017-08-01 16:56:58 -0700370 /* Send/Program FIN if needed and switch state */
371 switch (tc->state)
372 {
373 case TCP_STATE_SYN_SENT:
Florin Coras85a3ddd2018-12-24 16:54:34 -0800374 /* Try to cleanup. If not on the right thread, mark as half-open done.
375 * Connection will be cleaned up when establish timer pops */
376 tcp_connection_cleanup (tc);
Florin Corasb2215d62017-08-01 16:56:58 -0700377 break;
378 case TCP_STATE_SYN_RCVD:
Florin Corasc5347d92018-10-17 10:41:28 -0700379 tcp_connection_timers_reset (tc);
Florin Corasb2215d62017-08-01 16:56:58 -0700380 tcp_send_fin (tc);
Florin Coras3c514d52018-12-22 11:39:33 -0800381 tcp_connection_set_state (tc, TCP_STATE_FIN_WAIT_1);
Florin Coras0765d972020-03-18 21:26:41 +0000382 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
383 tcp_cfg.finwait1_time);
Florin Corasb2215d62017-08-01 16:56:58 -0700384 break;
385 case TCP_STATE_ESTABLISHED:
Florin Corasf65074e2019-03-31 17:17:11 -0700386 /* If closing with unread data, reset the connection */
387 if (transport_max_rx_dequeue (&tc->connection))
388 {
389 tcp_send_reset (tc);
390 tcp_connection_timers_reset (tc);
391 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
Florin Corasa0904f02019-07-22 20:55:11 -0700392 session_transport_closed_notify (&tc->connection);
Florin Coras7a3a8662020-02-22 02:27:21 +0000393 tcp_program_cleanup (tcp_get_worker (tc->c_thread_index), tc);
Florin Coras0765d972020-03-18 21:26:41 +0000394 tcp_worker_stats_inc (wrk, rst_unread, 1);
Florin Corasf65074e2019-03-31 17:17:11 -0700395 break;
396 }
Florin Coras31c99552019-03-01 13:00:58 -0800397 if (!transport_max_tx_dequeue (&tc->connection))
Florin Corasb2215d62017-08-01 16:56:58 -0700398 tcp_send_fin (tc);
399 else
400 tc->flags |= TCP_CONN_FINPNDG;
Florin Coras3c514d52018-12-22 11:39:33 -0800401 tcp_connection_set_state (tc, TCP_STATE_FIN_WAIT_1);
Florin Corase96bf632018-12-18 22:44:27 -0800402 /* Set a timer in case the peer stops responding. Otherwise the
403 * connection will be stuck here forever. */
Florin Coras85a3ddd2018-12-24 16:54:34 -0800404 ASSERT (tc->timers[TCP_TIMER_WAITCLOSE] == TCP_TIMER_HANDLE_INVALID);
Florin Coras0765d972020-03-18 21:26:41 +0000405 tcp_timer_set (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
406 tcp_cfg.finwait1_time);
Florin Corasb2215d62017-08-01 16:56:58 -0700407 break;
408 case TCP_STATE_CLOSE_WAIT:
Florin Coras31c99552019-03-01 13:00:58 -0800409 if (!transport_max_tx_dequeue (&tc->connection))
Florin Coras25579b42018-06-06 17:55:02 -0700410 {
411 tcp_send_fin (tc);
412 tcp_connection_timers_reset (tc);
Florin Coras3c514d52018-12-22 11:39:33 -0800413 tcp_connection_set_state (tc, TCP_STATE_LAST_ACK);
Florin Coras0765d972020-03-18 21:26:41 +0000414 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
415 tcp_cfg.lastack_time);
Florin Coras25579b42018-06-06 17:55:02 -0700416 }
417 else
418 tc->flags |= TCP_CONN_FINPNDG;
Florin Corasb2215d62017-08-01 16:56:58 -0700419 break;
Florin Corasc87c91d2017-08-16 19:55:49 -0700420 case TCP_STATE_FIN_WAIT_1:
Florin Coras0765d972020-03-18 21:26:41 +0000421 tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
422 tcp_cfg.finwait1_time);
Florin Corasc87c91d2017-08-16 19:55:49 -0700423 break;
Florin Coras4af830c2018-12-04 09:21:36 -0800424 case TCP_STATE_CLOSED:
Florin Coras7a3a8662020-02-22 02:27:21 +0000425 /* Cleanup should've been programmed already */
Florin Coras4af830c2018-12-04 09:21:36 -0800426 break;
Florin Corasb2215d62017-08-01 16:56:58 -0700427 default:
Florin Corasa096f2d2017-09-28 23:49:42 -0400428 TCP_DBG ("state: %u", tc->state);
Florin Corasb2215d62017-08-01 16:56:58 -0700429 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500430}
431
Florin Coras0dbd5172018-06-25 16:19:34 -0700432static void
liuyacan534468e2021-05-09 03:50:40 +0000433tcp_session_half_close (u32 conn_index, u32 thread_index)
434{
435 tcp_worker_ctx_t *wrk;
436 tcp_connection_t *tc;
437
438 tc = tcp_connection_get (conn_index, thread_index);
439 wrk = tcp_get_worker (tc->c_thread_index);
440
441 /* If the connection is not in ESTABLISHED state, ignore it */
442 if (tc->state != TCP_STATE_ESTABLISHED)
443 return;
444 if (!transport_max_tx_dequeue (&tc->connection))
445 tcp_send_fin (tc);
446 else
447 tc->flags |= TCP_CONN_FINPNDG;
448 tcp_connection_set_state (tc, TCP_STATE_FIN_WAIT_1);
449 /* Set a timer in case the peer stops responding. Otherwise the
450 * connection will be stuck here forever. */
451 ASSERT (tc->timers[TCP_TIMER_WAITCLOSE] == TCP_TIMER_HANDLE_INVALID);
452 tcp_timer_set (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
453 tcp_cfg.finwait1_time);
454}
455
456static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500457tcp_session_close (u32 conn_index, u32 thread_index)
458{
459 tcp_connection_t *tc;
460 tc = tcp_connection_get (conn_index, thread_index);
461 tcp_connection_close (tc);
462}
463
Florin Coras0dbd5172018-06-25 16:19:34 -0700464static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500465tcp_session_cleanup (u32 conn_index, u32 thread_index)
466{
467 tcp_connection_t *tc;
468 tc = tcp_connection_get (conn_index, thread_index);
Florin Coras54c93cf2019-09-24 12:45:14 -0700469 if (!tc)
470 return;
Florin Coras85a3ddd2018-12-24 16:54:34 -0800471 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
Florin Coras25579b42018-06-06 17:55:02 -0700472 tcp_connection_cleanup (tc);
Dave Barach68b0fb02017-02-28 15:15:56 -0500473}
474
Florin Corasdfb3b872019-08-16 17:48:44 -0700475static void
Florin Corasd50ff7f2020-04-16 04:30:22 +0000476tcp_session_cleanup_ho (u32 conn_index)
477{
478 tcp_worker_ctx_t *wrk;
479 tcp_connection_t *tc;
480
481 tc = tcp_half_open_connection_get (conn_index);
482 wrk = tcp_get_worker (tc->c_thread_index);
483 tcp_timer_reset (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT_SYN);
484 tcp_half_open_connection_free (tc);
485}
486
487static void
Florin Corasdfb3b872019-08-16 17:48:44 -0700488tcp_session_reset (u32 conn_index, u32 thread_index)
489{
490 tcp_connection_t *tc;
491 tc = tcp_connection_get (conn_index, thread_index);
Florin Corasdfb3b872019-08-16 17:48:44 -0700492 tcp_send_reset (tc);
493 tcp_connection_timers_reset (tc);
Florin Corasfd4c3fe2019-11-07 12:33:12 -0800494 tcp_cong_recovery_off (tc);
Florin Corasdfb3b872019-08-16 17:48:44 -0700495 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
Florin Coras7a3a8662020-02-22 02:27:21 +0000496 session_transport_closed_notify (&tc->connection);
497 tcp_program_cleanup (tcp_get_worker (thread_index), tc);
Florin Corasdfb3b872019-08-16 17:48:44 -0700498}
499
Dave Barach68b0fb02017-02-28 15:15:56 -0500500/**
501 * Initialize all connection timers as invalid
502 */
503void
504tcp_connection_timers_init (tcp_connection_t * tc)
505{
506 int i;
507
508 /* Set all to invalid */
509 for (i = 0; i < TCP_N_TIMERS; i++)
510 {
511 tc->timers[i] = TCP_TIMER_HANDLE_INVALID;
512 }
513
514 tc->rto = TCP_RTO_INIT;
515}
516
517/**
518 * Stop all connection timers
519 */
520void
521tcp_connection_timers_reset (tcp_connection_t * tc)
522{
Florin Coras0765d972020-03-18 21:26:41 +0000523 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500524 int i;
Florin Coras0765d972020-03-18 21:26:41 +0000525
Dave Barach68b0fb02017-02-28 15:15:56 -0500526 for (i = 0; i < TCP_N_TIMERS; i++)
Florin Coras0765d972020-03-18 21:26:41 +0000527 tcp_timer_reset (&wrk->timer_wheel, tc, i);
Dave Barach68b0fb02017-02-28 15:15:56 -0500528}
529
Dave Barach2c25a622017-06-26 11:35:07 -0400530#if 0
Florin Corasf6359c82017-06-19 12:26:09 -0400531typedef struct ip4_tcp_hdr
532{
533 ip4_header_t ip;
534 tcp_header_t tcp;
535} ip4_tcp_hdr_t;
536
537typedef struct ip6_tcp_hdr
538{
539 ip6_header_t ip;
540 tcp_header_t tcp;
541} ip6_tcp_hdr_t;
542
543static void
544tcp_connection_select_lb_bucket (tcp_connection_t * tc, const dpo_id_t * dpo,
545 dpo_id_t * result)
546{
547 const dpo_id_t *choice;
548 load_balance_t *lb;
549 int hash;
550
551 lb = load_balance_get (dpo->dpoi_index);
552 if (tc->c_is_ip4)
553 {
554 ip4_tcp_hdr_t hdr;
Dave Barachb7b92992018-10-17 10:38:51 -0400555 clib_memset (&hdr, 0, sizeof (hdr));
Florin Corasf6359c82017-06-19 12:26:09 -0400556 hdr.ip.protocol = IP_PROTOCOL_TCP;
557 hdr.ip.address_pair.src.as_u32 = tc->c_lcl_ip.ip4.as_u32;
558 hdr.ip.address_pair.dst.as_u32 = tc->c_rmt_ip.ip4.as_u32;
559 hdr.tcp.src_port = tc->c_lcl_port;
560 hdr.tcp.dst_port = tc->c_rmt_port;
561 hash = ip4_compute_flow_hash (&hdr.ip, lb->lb_hash_config);
562 }
563 else
564 {
565 ip6_tcp_hdr_t hdr;
Dave Barachb7b92992018-10-17 10:38:51 -0400566 clib_memset (&hdr, 0, sizeof (hdr));
Florin Corasf6359c82017-06-19 12:26:09 -0400567 hdr.ip.protocol = IP_PROTOCOL_TCP;
Dave Barach178cf492018-11-13 16:34:13 -0500568 clib_memcpy_fast (&hdr.ip.src_address, &tc->c_lcl_ip.ip6,
569 sizeof (ip6_address_t));
570 clib_memcpy_fast (&hdr.ip.dst_address, &tc->c_rmt_ip.ip6,
571 sizeof (ip6_address_t));
Florin Corasf6359c82017-06-19 12:26:09 -0400572 hdr.tcp.src_port = tc->c_lcl_port;
573 hdr.tcp.dst_port = tc->c_rmt_port;
574 hash = ip6_compute_flow_hash (&hdr.ip, lb->lb_hash_config);
575 }
576 choice = load_balance_get_bucket_i (lb, hash & lb->lb_n_buckets_minus_1);
577 dpo_copy (result, choice);
578}
579
580fib_node_index_t
581tcp_lookup_rmt_in_fib (tcp_connection_t * tc)
582{
583 fib_prefix_t prefix;
Florin Coras04e53442017-07-16 17:12:15 -0700584 u32 fib_index;
Florin Corasf6359c82017-06-19 12:26:09 -0400585
Dave Barach178cf492018-11-13 16:34:13 -0500586 clib_memcpy_fast (&prefix.fp_addr, &tc->c_rmt_ip, sizeof (prefix.fp_addr));
Florin Corasf6359c82017-06-19 12:26:09 -0400587 prefix.fp_proto = tc->c_is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
588 prefix.fp_len = tc->c_is_ip4 ? 32 : 128;
Florin Corascea194d2017-10-02 00:18:51 -0700589 fib_index = fib_table_find (prefix.fp_proto, tc->c_fib_index);
Florin Coras04e53442017-07-16 17:12:15 -0700590 return fib_table_lookup (fib_index, &prefix);
Florin Corasf6359c82017-06-19 12:26:09 -0400591}
592
593static int
594tcp_connection_stack_on_fib_entry (tcp_connection_t * tc)
595{
596 dpo_id_t choice = DPO_INVALID;
597 u32 output_node_index;
598 fib_entry_t *fe;
599
600 fe = fib_entry_get (tc->c_rmt_fei);
601 if (fe->fe_lb.dpoi_type != DPO_LOAD_BALANCE)
602 return -1;
603
604 tcp_connection_select_lb_bucket (tc, &fe->fe_lb, &choice);
605
606 output_node_index =
607 tc->c_is_ip4 ? tcp4_output_node.index : tcp6_output_node.index;
608 dpo_stack_from_node (output_node_index, &tc->c_rmt_dpo, &choice);
609 return 0;
610}
611
612/** Stack tcp connection on peer's fib entry.
613 *
614 * This ultimately populates the dpo the connection will use to send packets.
615 */
616static void
617tcp_connection_fib_attach (tcp_connection_t * tc)
618{
619 tc->c_rmt_fei = tcp_lookup_rmt_in_fib (tc);
620
621 ASSERT (tc->c_rmt_fei != FIB_NODE_INDEX_INVALID);
622
623 tcp_connection_stack_on_fib_entry (tc);
624}
Dave Barach2c25a622017-06-26 11:35:07 -0400625#endif /* 0 */
Florin Corasf6359c82017-06-19 12:26:09 -0400626
Florin Coras18e0d4f2019-01-02 12:22:02 -0800627/**
628 * Generate random iss as per rfc6528
629 */
630static u32
631tcp_generate_random_iss (tcp_connection_t * tc)
632{
633 tcp_main_t *tm = &tcp_main;
634 u64 tmp;
635
636 if (tc->c_is_ip4)
637 tmp = (u64) tc->c_lcl_ip.ip4.as_u32 << 32 | (u64) tc->c_rmt_ip.ip4.as_u32;
638 else
639 tmp = tc->c_lcl_ip.ip6.as_u64[0] ^ tc->c_lcl_ip.ip6.as_u64[1]
640 ^ tc->c_rmt_ip.ip6.as_u64[0] ^ tc->c_rmt_ip.ip6.as_u64[1];
641
642 tmp ^= tm->iss_seed.first | ((u64) tc->c_lcl_port << 16 | tc->c_rmt_port);
643 tmp ^= tm->iss_seed.second;
644 tmp = clib_xxhash (tmp) + clib_cpu_time_now ();
645 return ((tmp >> 32) ^ (tmp & 0xffffffff));
646}
Florin Coras0dbd5172018-06-25 16:19:34 -0700647
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400648/**
Florin Corascedcf602019-08-27 12:15:43 -0700649 * Initialize max segment size we're able to process.
650 *
651 * The value is constrained by the output interface's MTU and by the size
652 * of the IP and TCP headers (see RFC6691). It is also what we advertise
653 * to our peer.
654 */
655static void
656tcp_init_rcv_mss (tcp_connection_t * tc)
657{
658 u8 ip_hdr_len;
659
Florin Corasff19e3b2020-02-10 17:44:13 +0000660 /* Already provided at connection init time */
661 if (tc->mss)
662 return;
663
Florin Corascedcf602019-08-27 12:15:43 -0700664 ip_hdr_len = tc->c_is_ip4 ? sizeof (ip4_header_t) : sizeof (ip6_header_t);
665 tc->mss = tcp_cfg.default_mtu - sizeof (tcp_header_t) - ip_hdr_len;
666}
667
668static void
669tcp_init_mss (tcp_connection_t * tc)
670{
671 u16 default_min_mss = 536;
672
673 tcp_init_rcv_mss (tc);
674
675 /* TODO consider PMTU discovery */
676 tc->snd_mss = clib_min (tc->rcv_opts.mss, tc->mss);
677
678 if (tc->snd_mss < 45)
679 {
680 /* Assume that at least the min default mss works */
681 tc->snd_mss = default_min_mss;
682 tc->rcv_opts.mss = default_min_mss;
683 }
684
685 /* We should have enough space for 40 bytes of options */
686 ASSERT (tc->snd_mss > 45);
687
Florin Coras7a588fc2021-03-05 13:30:18 -0800688 /* If we use timestamp option, account for it and make sure
689 * the options are 4-byte aligned */
Florin Corascedcf602019-08-27 12:15:43 -0700690 if (tcp_opts_tstamp (&tc->rcv_opts))
Florin Coras7a588fc2021-03-05 13:30:18 -0800691 tc->snd_mss -= TCP_OPTION_LEN_TIMESTAMP + 2 /* alignment */;
Florin Corascedcf602019-08-27 12:15:43 -0700692}
693
694/**
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400695 * Initialize connection send variables.
696 */
697void
698tcp_init_snd_vars (tcp_connection_t * tc)
699{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700700 /*
701 * We use the time to randomize iss and for setting up the initial
702 * timestamp. Make sure it's updated otherwise syn and ack in the
703 * handshake may make it look as if time has flown in the opposite
704 * direction for us.
705 */
Florin Coras8f10b902021-04-02 18:32:00 -0700706 tcp_update_time_now (tcp_get_worker (vlib_get_thread_index ()));
Florin Coras3cbc04b2017-10-02 00:18:51 -0700707
Florin Corascedcf602019-08-27 12:15:43 -0700708 tcp_init_rcv_mss (tc);
Michal Kalderon3effadc2021-08-08 04:30:39 -0700709 /*
710 * In special case of early-kill of timewait socket, the iss will already
711 * be initialized to ensure it is greater than the last incarnation of the
712 * connection. see syn_during_timewait() for more details.
713 */
714 if (!tc->iss)
715 tc->iss = tcp_generate_random_iss (tc);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400716 tc->snd_una = tc->iss;
717 tc->snd_nxt = tc->iss + 1;
Florin Coraseedc74b2020-07-31 12:32:40 -0700718 tc->srtt = 0.1 * THZ; /* 100 ms */
Florin Corasf4ce6ba2019-11-20 18:34:58 -0800719
720 if (!tcp_cfg.csum_offload)
721 tc->cfg_flags |= TCP_CFG_F_NO_CSUM_OFFLOAD;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400722}
723
Florin Corasd67f1122018-05-21 17:47:40 -0700724void
725tcp_enable_pacing (tcp_connection_t * tc)
726{
Florin Coras36ebcff2019-09-12 18:36:44 -0700727 u32 byte_rate;
728 byte_rate = tc->cwnd / (tc->srtt * TCP_TICK);
729 transport_connection_tx_pacer_init (&tc->connection, byte_rate, tc->cwnd);
Florin Corasd67f1122018-05-21 17:47:40 -0700730 tc->mrtt_us = (u32) ~ 0;
731}
732
Dave Barach68b0fb02017-02-28 15:15:56 -0500733/** Initialize tcp connection variables
734 *
735 * Should be called after having received a msg from the peer, i.e., a SYN or
736 * a SYNACK, such that connection options have already been exchanged. */
737void
738tcp_connection_init_vars (tcp_connection_t * tc)
739{
740 tcp_connection_timers_init (tc);
Florin Corasc8343412017-05-04 14:25:50 -0700741 tcp_init_mss (tc);
Florin Coras6792ec02017-03-13 03:49:51 -0700742 scoreboard_init (&tc->sack_sb);
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400743 if (tc->state == TCP_STATE_SYN_RCVD)
744 tcp_init_snd_vars (tc);
745
Florin Coras36ebcff2019-09-12 18:36:44 -0700746 tcp_cc_init (tc);
747
Florin Coras1c8ff632018-05-17 13:28:34 -0700748 if (!tc->c_is_ip4 && ip6_address_is_link_local_unicast (&tc->c_rmt_ip6))
749 tcp_add_del_adjacency (tc, 1);
750
Florin Corasd67f1122018-05-21 17:47:40 -0700751 /* tcp_connection_fib_attach (tc); */
752
753 if (transport_connection_is_tx_paced (&tc->connection)
Florin Coras9094b5c2019-08-12 14:17:47 -0700754 || tcp_cfg.enable_tx_pacing)
Florin Corasd67f1122018-05-21 17:47:40 -0700755 tcp_enable_pacing (tc);
Florin Coras52814732019-06-12 15:38:19 -0700756
Florin Corasbbcfaac2019-10-10 13:52:04 -0700757 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
Florin Coras52814732019-06-12 15:38:19 -0700758 tcp_bt_init (tc);
Florin Corasedfe0ee2019-07-29 18:13:25 -0700759
Florin Corasbbcfaac2019-10-10 13:52:04 -0700760 if (!tcp_cfg.allow_tso)
761 tc->cfg_flags |= TCP_CFG_F_NO_TSO;
762
Florin Corasedfe0ee2019-07-29 18:13:25 -0700763 tc->start_ts = tcp_time_now_us (tc->c_thread_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500764}
765
Florin Coras3cbc04b2017-10-02 00:18:51 -0700766static int
Florin Coras3d6156f2023-01-30 11:18:36 -0800767tcp_alloc_custom_local_endpoint (ip46_address_t *lcl_addr, u16 *lcl_port,
768 transport_endpoint_cfg_t *rmt)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700769{
Florin Coras3d6156f2023-01-30 11:18:36 -0800770 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras3cbc04b2017-10-02 00:18:51 -0700771 int index, port;
Florin Coras3d6156f2023-01-30 11:18:36 -0800772
773 if (rmt->is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700774 {
Florin Coras9094b5c2019-08-12 14:17:47 -0700775 index = tm->last_v4_addr_rotor++;
776 if (tm->last_v4_addr_rotor >= vec_len (tcp_cfg.ip4_src_addrs))
777 tm->last_v4_addr_rotor = 0;
Mercury65409fb2021-12-23 19:15:02 +0800778 clib_memset (lcl_addr, 0, sizeof (*lcl_addr));
Florin Coras9094b5c2019-08-12 14:17:47 -0700779 lcl_addr->ip4.as_u32 = tcp_cfg.ip4_src_addrs[index].as_u32;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700780 }
781 else
782 {
Florin Coras9094b5c2019-08-12 14:17:47 -0700783 index = tm->last_v6_addr_rotor++;
784 if (tm->last_v6_addr_rotor >= vec_len (tcp_cfg.ip6_src_addrs))
785 tm->last_v6_addr_rotor = 0;
786 clib_memcpy_fast (&lcl_addr->ip6, &tcp_cfg.ip6_src_addrs[index],
Dave Barach178cf492018-11-13 16:34:13 -0500787 sizeof (ip6_address_t));
Florin Coras3cbc04b2017-10-02 00:18:51 -0700788 }
Florin Coras3d6156f2023-01-30 11:18:36 -0800789 port = transport_alloc_local_port (TRANSPORT_PROTO_TCP, lcl_addr, rmt);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700790 if (port < 1)
Florin Coras00e01d32019-10-21 16:07:46 -0700791 return SESSION_E_NOPORT;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700792 *lcl_port = port;
793 return 0;
794}
795
Florin Coras0dbd5172018-06-25 16:19:34 -0700796static int
Florin Coras5665ced2018-10-25 18:03:45 -0700797tcp_session_open (transport_endpoint_cfg_t * rmt)
Dave Barach68b0fb02017-02-28 15:15:56 -0500798{
Dave Barach68b0fb02017-02-28 15:15:56 -0500799 tcp_connection_t *tc;
Dave Barach68b0fb02017-02-28 15:15:56 -0500800 ip46_address_t lcl_addr;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700801 u16 lcl_port;
802 int rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500803
804 /*
Florin Coras3cbc04b2017-10-02 00:18:51 -0700805 * Allocate local endpoint
Dave Barach68b0fb02017-02-28 15:15:56 -0500806 */
Florin Coras9094b5c2019-08-12 14:17:47 -0700807 if ((rmt->is_ip4 && vec_len (tcp_cfg.ip4_src_addrs))
808 || (!rmt->is_ip4 && vec_len (tcp_cfg.ip6_src_addrs)))
Florin Coras3d6156f2023-01-30 11:18:36 -0800809 rv = tcp_alloc_custom_local_endpoint (&lcl_addr, &lcl_port, rmt);
Dave Barach68b0fb02017-02-28 15:15:56 -0500810 else
Florin Coras3cbc04b2017-10-02 00:18:51 -0700811 rv = transport_alloc_local_endpoint (TRANSPORT_PROTO_TCP,
812 rmt, &lcl_addr, &lcl_port);
Dave Barach2c25a622017-06-26 11:35:07 -0400813
Florin Coras3cbc04b2017-10-02 00:18:51 -0700814 if (rv)
Florin Coras3d6156f2023-01-30 11:18:36 -0800815 return rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500816
817 /*
818 * Create connection and send SYN
819 */
Florin Coras57b2e4a2021-07-06 08:25:36 -0700820 tc = tcp_half_open_connection_alloc ();
Florin Coras3cbc04b2017-10-02 00:18:51 -0700821 ip_copy (&tc->c_rmt_ip, &rmt->ip, rmt->is_ip4);
822 ip_copy (&tc->c_lcl_ip, &lcl_addr, rmt->is_ip4);
Florin Coras0e495682017-09-19 22:27:18 -0700823 tc->c_rmt_port = rmt->port;
Dave Barach68b0fb02017-02-28 15:15:56 -0500824 tc->c_lcl_port = clib_host_to_net_u16 (lcl_port);
Florin Coras04e53442017-07-16 17:12:15 -0700825 tc->c_is_ip4 = rmt->is_ip4;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700826 tc->c_proto = TRANSPORT_PROTO_TCP;
Florin Corascea194d2017-10-02 00:18:51 -0700827 tc->c_fib_index = rmt->fib_index;
Florin Coras12f69362019-08-16 09:44:00 -0700828 tc->cc_algo = tcp_cc_algo_get (tcp_cfg.cc_algo);
Dave Barach68b0fb02017-02-28 15:15:56 -0500829 /* The other connection vars will be initialized after SYN ACK */
830 tcp_connection_timers_init (tc);
Florin Corasff19e3b2020-02-10 17:44:13 +0000831 tc->mss = rmt->mss;
Florin Corase2f3aa12021-10-27 10:53:41 -0700832 if (rmt->peer.sw_if_index != ENDPOINT_INVALID_INDEX)
833 tc->sw_if_index = rmt->peer.sw_if_index;
Florin Coras48057bd2021-07-06 21:07:50 -0700834 tc->next_node_index = rmt->next_node_index;
835 tc->next_node_opaque = rmt->next_node_opaque;
Dave Barach68b0fb02017-02-28 15:15:56 -0500836
Florin Corasa436a422019-08-20 07:09:31 -0700837 TCP_EVT (TCP_EVT_OPEN, tc);
Florin Coras6534b7a2017-07-18 05:38:03 -0400838 tc->state = TCP_STATE_SYN_SENT;
Florin Coras4eeeaaf2017-09-05 14:03:37 -0400839 tcp_init_snd_vars (tc);
Florin Coras6534b7a2017-07-18 05:38:03 -0400840 tcp_send_syn (tc);
Florin Corase69f4952017-03-07 10:06:24 -0800841
Dave Barach68b0fb02017-02-28 15:15:56 -0500842 return tc->c_c_index;
843}
844
Florin Coras0dbd5172018-06-25 16:19:34 -0700845static u8 *
Florin Corase69f4952017-03-07 10:06:24 -0800846format_tcp_session (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500847{
848 u32 tci = va_arg (*args, u32);
849 u32 thread_index = va_arg (*args, u32);
Florin Corasbb292f42017-05-19 09:49:19 -0700850 u32 verbose = va_arg (*args, u32);
Dave Barach68b0fb02017-02-28 15:15:56 -0500851 tcp_connection_t *tc;
852
853 tc = tcp_connection_get (tci, thread_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700854 if (tc)
Florin Coras93992a92017-05-24 18:03:56 -0700855 s = format (s, "%U", format_tcp_connection, tc, verbose);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700856 else
Florin Coras1f152cd2017-08-18 19:28:03 -0700857 s = format (s, "empty\n");
Florin Coras93992a92017-05-24 18:03:56 -0700858 return s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500859}
860
Florin Coras0dbd5172018-06-25 16:19:34 -0700861static u8 *
Florin Corase69f4952017-03-07 10:06:24 -0800862format_tcp_listener_session (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500863{
864 u32 tci = va_arg (*args, u32);
Aloys Augustina0abbff2019-07-12 12:16:16 +0200865 u32 __clib_unused thread_index = va_arg (*args, u32);
Florin Coras3389dd22019-02-01 18:00:05 -0800866 u32 verbose = va_arg (*args, u32);
Dave Barach68b0fb02017-02-28 15:15:56 -0500867 tcp_connection_t *tc = tcp_listener_get (tci);
Florin Coras7bf6ed62020-09-23 12:02:08 -0700868 s = format (s, "%-" SESSION_CLI_ID_LEN "U", format_tcp_connection_id, tc);
Florin Coras3389dd22019-02-01 18:00:05 -0800869 if (verbose)
Florin Coras7bf6ed62020-09-23 12:02:08 -0700870 s = format (s, "%-" SESSION_CLI_STATE_LEN "U", format_tcp_state,
871 tc->state);
Florin Coras3389dd22019-02-01 18:00:05 -0800872 return s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500873}
874
Florin Coras0dbd5172018-06-25 16:19:34 -0700875static u8 *
Florin Corase69f4952017-03-07 10:06:24 -0800876format_tcp_half_open_session (u8 * s, va_list * args)
Dave Barach68b0fb02017-02-28 15:15:56 -0500877{
878 u32 tci = va_arg (*args, u32);
Aloys Augustina0abbff2019-07-12 12:16:16 +0200879 u32 __clib_unused thread_index = va_arg (*args, u32);
Florin Corasea727642021-05-07 19:39:43 -0700880 u32 verbose = va_arg (*args, u32);
881 tcp_connection_t *tc;
882 u8 *state = 0;
883
884 tc = tcp_half_open_connection_get (tci);
885 if (tc->flags & TCP_CONN_HALF_OPEN_DONE)
886 state = format (state, "%s", "CLOSED");
887 else
888 state = format (state, "%U", format_tcp_state, tc->state);
889 s = format (s, "%-" SESSION_CLI_ID_LEN "U", format_tcp_connection_id, tc);
890 if (verbose)
891 s = format (s, "%-" SESSION_CLI_STATE_LEN "v", state);
892 vec_free (state);
893 return s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500894}
895
Florin Coras0dbd5172018-06-25 16:19:34 -0700896static transport_connection_t *
Dave Barach68b0fb02017-02-28 15:15:56 -0500897tcp_session_get_transport (u32 conn_index, u32 thread_index)
898{
899 tcp_connection_t *tc = tcp_connection_get (conn_index, thread_index);
Florin Coras5bb23ec2019-08-31 09:45:13 -0700900 if (PREDICT_FALSE (!tc))
901 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500902 return &tc->connection;
903}
904
Florin Coras0dbd5172018-06-25 16:19:34 -0700905static transport_connection_t *
Dave Barach68b0fb02017-02-28 15:15:56 -0500906tcp_half_open_session_get_transport (u32 conn_index)
907{
908 tcp_connection_t *tc = tcp_half_open_connection_get (conn_index);
909 return &tc->connection;
910}
911
Florin Coras04ae8272021-04-12 19:55:37 -0700912static int
913tcp_set_attribute (tcp_connection_t *tc, transport_endpt_attr_t *attr)
914{
915 int rv = 0;
916
917 switch (attr->type)
918 {
919 case TRANSPORT_ENDPT_ATTR_NEXT_OUTPUT_NODE:
920 tc->next_node_index = attr->next_output_node & 0xffffffff;
921 tc->next_node_opaque = attr->next_output_node >> 32;
922 break;
923 case TRANSPORT_ENDPT_ATTR_MSS:
924 tc->mss = attr->mss;
925 tc->snd_mss = clib_min (tc->snd_mss, tc->mss);
926 break;
927 case TRANSPORT_ENDPT_ATTR_FLAGS:
928 if (attr->flags & TRANSPORT_ENDPT_ATTR_F_CSUM_OFFLOAD)
929 tc->cfg_flags |= TCP_CFG_F_NO_CSUM_OFFLOAD;
930 else
931 tc->cfg_flags &= ~TCP_CFG_F_NO_CSUM_OFFLOAD;
932 if (attr->flags & TRANSPORT_ENDPT_ATTR_F_GSO)
933 {
934 if (!(tc->cfg_flags & TCP_CFG_F_TSO))
935 tcp_check_gso (tc);
936 tc->cfg_flags &= ~TCP_CFG_F_NO_TSO;
937 }
938 else
939 {
940 tc->cfg_flags |= TCP_CFG_F_NO_TSO;
941 tc->cfg_flags &= ~TCP_CFG_F_TSO;
942 }
Florin Coras7fdf8b22021-04-15 08:50:00 -0700943 if (attr->flags & TRANSPORT_ENDPT_ATTR_F_RATE_SAMPLING)
944 {
945 if (!(tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE))
946 tcp_bt_init (tc);
947 tc->cfg_flags |= TCP_CFG_F_RATE_SAMPLE;
948 }
949 else
950 {
951 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
952 tcp_bt_cleanup (tc);
953 tc->cfg_flags &= ~TCP_CFG_F_RATE_SAMPLE;
954 }
Florin Coras04ae8272021-04-12 19:55:37 -0700955 break;
956 case TRANSPORT_ENDPT_ATTR_CC_ALGO:
957 if (tc->cc_algo == tcp_cc_algo_get (attr->cc_algo))
958 break;
959 tcp_cc_cleanup (tc);
960 tc->cc_algo = tcp_cc_algo_get (attr->cc_algo);
961 tcp_cc_init (tc);
962 break;
963 default:
964 rv = -1;
965 break;
966 }
967
968 return rv;
969}
970
971static int
972tcp_get_attribute (tcp_connection_t *tc, transport_endpt_attr_t *attr)
973{
974 int rv = 0;
975 u64 non;
976
977 switch (attr->type)
978 {
979 case TRANSPORT_ENDPT_ATTR_NEXT_OUTPUT_NODE:
980 non = (u64) tc->next_node_opaque << 32 | tc->next_node_index;
981 attr->next_output_node = non;
982 break;
983 case TRANSPORT_ENDPT_ATTR_MSS:
984 attr->mss = tc->snd_mss;
985 break;
986 case TRANSPORT_ENDPT_ATTR_FLAGS:
987 attr->flags = 0;
988 if (!(tc->cfg_flags & TCP_CFG_F_NO_CSUM_OFFLOAD))
989 attr->flags |= TRANSPORT_ENDPT_ATTR_F_CSUM_OFFLOAD;
990 if (tc->cfg_flags & TCP_CFG_F_TSO)
991 attr->flags |= TRANSPORT_ENDPT_ATTR_F_GSO;
Florin Coras7fdf8b22021-04-15 08:50:00 -0700992 if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)
993 attr->flags |= TRANSPORT_ENDPT_ATTR_F_RATE_SAMPLING;
Florin Coras04ae8272021-04-12 19:55:37 -0700994 break;
995 case TRANSPORT_ENDPT_ATTR_CC_ALGO:
996 attr->cc_algo = tc->cc_algo - tcp_main.cc_algos;
997 break;
998 default:
999 rv = -1;
1000 break;
1001 }
1002
1003 return rv;
1004}
1005
1006static int
1007tcp_session_attribute (u32 conn_index, u32 thread_index, u8 is_get,
1008 transport_endpt_attr_t *attr)
1009{
1010 tcp_connection_t *tc = tcp_connection_get (conn_index, thread_index);
1011
1012 if (PREDICT_FALSE (!tc))
1013 return -1;
1014
1015 if (is_get)
1016 return tcp_get_attribute (tc, attr);
1017 else
1018 return tcp_set_attribute (tc, attr);
1019}
1020
Simon Zhang1146ff42019-09-02 22:54:00 +08001021static u16
1022tcp_session_cal_goal_size (tcp_connection_t * tc)
1023{
1024 u16 goal_size = tc->snd_mss;
1025
Simon Zhang23c3d342020-09-15 23:40:28 +08001026 goal_size = tcp_cfg.max_gso_size - tc->snd_mss % tcp_cfg.max_gso_size;
Simon Zhang1146ff42019-09-02 22:54:00 +08001027 goal_size = clib_min (goal_size, tc->snd_wnd / 2);
1028
Simon Zhang8a047ed2019-09-24 21:16:56 +08001029 return goal_size > tc->snd_mss ? goal_size : tc->snd_mss;
Simon Zhang1146ff42019-09-02 22:54:00 +08001030}
1031
Florin Coras3af90fc2017-05-03 21:09:42 -07001032always_inline u32
1033tcp_round_snd_space (tcp_connection_t * tc, u32 snd_space)
1034{
Dave Barach2c25a622017-06-26 11:35:07 -04001035 if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss))
Florin Coras3af90fc2017-05-03 21:09:42 -07001036 {
Florin Corasdb84e572017-05-09 18:54:52 -07001037 return tc->snd_wnd <= snd_space ? tc->snd_wnd : 0;
Florin Coras3af90fc2017-05-03 21:09:42 -07001038 }
1039
Florin Coras1f152cd2017-08-18 19:28:03 -07001040 /* If not snd_wnd constrained and we can't write at least a segment,
1041 * don't try at all */
Dave Barach2c25a622017-06-26 11:35:07 -04001042 if (PREDICT_FALSE (snd_space < tc->snd_mss))
Florin Coras9d063042017-09-14 03:08:00 -04001043 return snd_space < tc->cwnd ? 0 : snd_space;
Florin Coras3af90fc2017-05-03 21:09:42 -07001044
1045 /* round down to mss multiple */
1046 return snd_space - (snd_space % tc->snd_mss);
1047}
1048
Florin Coras6792ec02017-03-13 03:49:51 -07001049/**
1050 * Compute tx window session is allowed to fill.
Florin Corasbb292f42017-05-19 09:49:19 -07001051 *
1052 * Takes into account available send space, snd_mss and the congestion
1053 * state of the connection. If possible, the value returned is a multiple
1054 * of snd_mss.
1055 *
1056 * @param tc tcp connection
1057 * @return number of bytes session is allowed to write
Florin Coras6792ec02017-03-13 03:49:51 -07001058 */
Florin Coras45ca73f2018-09-27 09:19:29 -07001059static inline u32
1060tcp_snd_space_inline (tcp_connection_t * tc)
Dave Barach68b0fb02017-02-28 15:15:56 -05001061{
Florin Coras36ebcff2019-09-12 18:36:44 -07001062 int snd_space;
Florin Coras6792ec02017-03-13 03:49:51 -07001063
Florin Coras7d8100f2020-10-21 23:24:53 -07001064 /* Fast path is disabled when recovery is on. @ref tcp_session_custom_tx
1065 * controls both retransmits and the sending of new data while congested
1066 */
1067 if (PREDICT_FALSE (tcp_in_cong_recovery (tc)
Florin Coras4af830c2018-12-04 09:21:36 -08001068 || tc->state == TCP_STATE_CLOSED))
Florin Coras36ee9f12018-11-02 12:52:10 -07001069 return 0;
1070
1071 snd_space = tcp_available_output_snd_space (tc);
1072
Florin Coras36ebcff2019-09-12 18:36:44 -07001073 /* If we got dupacks or sacked bytes but we're not yet in recovery, try
1074 * to force the peer to send enough dupacks to start retransmitting as
1075 * per Limited Transmit (RFC3042)
1076 */
Florin Corascc4d6d02020-07-29 23:03:39 -07001077 if (PREDICT_FALSE (tc->rcv_dupacks || tc->sack_sb.sacked_bytes))
Florin Coras6792ec02017-03-13 03:49:51 -07001078 {
Florin Corascc4d6d02020-07-29 23:03:39 -07001079 int snt_limited, n_pkts;
1080
1081 n_pkts = tcp_opts_sack_permitted (&tc->rcv_opts)
1082 ? tc->sack_sb.reorder - 1 : 2;
1083
1084 if ((seq_lt (tc->limited_transmit, tc->snd_nxt - n_pkts * tc->snd_mss)
1085 || seq_gt (tc->limited_transmit, tc->snd_nxt)))
Florin Coras36ee9f12018-11-02 12:52:10 -07001086 tc->limited_transmit = tc->snd_nxt;
Florin Coras36ebcff2019-09-12 18:36:44 -07001087
Florin Coras36ee9f12018-11-02 12:52:10 -07001088 ASSERT (seq_leq (tc->limited_transmit, tc->snd_nxt));
Florin Corasf03a59a2017-06-09 21:07:32 -07001089
Florin Corascc4d6d02020-07-29 23:03:39 -07001090 snt_limited = tc->snd_nxt - tc->limited_transmit;
1091 snd_space = clib_max (n_pkts * tc->snd_mss - snt_limited, 0);
Florin Coras3af90fc2017-05-03 21:09:42 -07001092 }
Florin Coras36ee9f12018-11-02 12:52:10 -07001093 return tcp_round_snd_space (tc, snd_space);
Dave Barach68b0fb02017-02-28 15:15:56 -05001094}
1095
Florin Coras45ca73f2018-09-27 09:19:29 -07001096u32
1097tcp_snd_space (tcp_connection_t * tc)
1098{
1099 return tcp_snd_space_inline (tc);
1100}
1101
Florin Coras70f879d2020-03-13 17:54:42 +00001102static int
1103tcp_session_send_params (transport_connection_t * trans_conn,
1104 transport_send_params_t * sp)
Florin Corasbb292f42017-05-19 09:49:19 -07001105{
1106 tcp_connection_t *tc = (tcp_connection_t *) trans_conn;
Florin Corasbb292f42017-05-19 09:49:19 -07001107
Florin Coras70f879d2020-03-13 17:54:42 +00001108 /* Ensure snd_mss does accurately reflect the amount of data we can push
1109 * in a segment. This also makes sure that options are updated according to
1110 * the current state of the connection. */
1111 tcp_update_burst_snd_vars (tc);
1112
1113 if (PREDICT_FALSE (tc->cfg_flags & TCP_CFG_F_TSO))
1114 sp->snd_mss = tcp_session_cal_goal_size (tc);
1115 else
1116 sp->snd_mss = tc->snd_mss;
1117
1118 sp->snd_space = clib_min (tcp_snd_space_inline (tc),
1119 tc->snd_wnd - (tc->snd_nxt - tc->snd_una));
Florin Coras6792ec02017-03-13 03:49:51 -07001120
1121 ASSERT (seq_geq (tc->snd_nxt, tc->snd_una));
Florin Coras6792ec02017-03-13 03:49:51 -07001122 /* This still works if fast retransmit is on */
Florin Coras70f879d2020-03-13 17:54:42 +00001123 sp->tx_offset = tc->snd_nxt - tc->snd_una;
1124
Florin Coras6080e0d2020-03-13 20:39:43 +00001125 sp->flags = sp->snd_space ? 0 : TRANSPORT_SND_F_DESCHED;
Florin Coras70f879d2020-03-13 17:54:42 +00001126
1127 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001128}
1129
Florin Coras0dbd5172018-06-25 16:19:34 -07001130static void
Florin Corasaa388692020-02-14 23:41:25 +00001131tcp_timer_waitclose_handler (tcp_connection_t * tc)
1132{
Florin Coras7a3a8662020-02-22 02:27:21 +00001133 tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index);
1134
Florin Corasaa388692020-02-14 23:41:25 +00001135 switch (tc->state)
1136 {
1137 case TCP_STATE_CLOSE_WAIT:
1138 tcp_connection_timers_reset (tc);
Florin Corasaa388692020-02-14 23:41:25 +00001139 /* App never returned with a close */
1140 if (!(tc->flags & TCP_CONN_FINPNDG))
1141 {
1142 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
Florin Coras7a3a8662020-02-22 02:27:21 +00001143 session_transport_closed_notify (&tc->connection);
1144 tcp_program_cleanup (wrk, tc);
Florin Coras0765d972020-03-18 21:26:41 +00001145 tcp_worker_stats_inc (wrk, to_closewait, 1);
Florin Corasaa388692020-02-14 23:41:25 +00001146 break;
1147 }
1148
1149 /* Send FIN either way and switch to LAST_ACK. */
1150 tcp_cong_recovery_off (tc);
1151 /* Make sure we don't try to send unsent data */
1152 tc->snd_nxt = tc->snd_una;
1153 tcp_send_fin (tc);
1154 tcp_connection_set_state (tc, TCP_STATE_LAST_ACK);
Florin Coras7a3a8662020-02-22 02:27:21 +00001155 session_transport_closed_notify (&tc->connection);
Florin Corasaa388692020-02-14 23:41:25 +00001156
1157 /* Make sure we don't wait in LAST ACK forever */
Florin Coras0765d972020-03-18 21:26:41 +00001158 tcp_timer_set (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE,
1159 tcp_cfg.lastack_time);
1160 tcp_worker_stats_inc (wrk, to_closewait2, 1);
Florin Corasaa388692020-02-14 23:41:25 +00001161
1162 /* Don't delete the connection yet */
1163 break;
1164 case TCP_STATE_FIN_WAIT_1:
1165 tcp_connection_timers_reset (tc);
Florin Corasaa388692020-02-14 23:41:25 +00001166 if (tc->flags & TCP_CONN_FINPNDG)
1167 {
1168 /* If FIN pending, we haven't sent everything, but we did try.
1169 * Notify session layer that transport is closed. */
1170 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1171 tcp_send_reset (tc);
Florin Coras7a3a8662020-02-22 02:27:21 +00001172 tcp_program_cleanup (wrk, tc);
Florin Corasaa388692020-02-14 23:41:25 +00001173 }
1174 else
1175 {
1176 /* We've sent the fin but no progress. Close the connection and
1177 * to make sure everything is flushed, setup a cleanup timer */
1178 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
Florin Coras7a3a8662020-02-22 02:27:21 +00001179 tcp_program_cleanup (wrk, tc);
Florin Corasaa388692020-02-14 23:41:25 +00001180 }
Florin Coras7a3a8662020-02-22 02:27:21 +00001181 session_transport_closed_notify (&tc->connection);
Florin Coras0765d972020-03-18 21:26:41 +00001182 tcp_worker_stats_inc (wrk, to_finwait1, 1);
Florin Corasaa388692020-02-14 23:41:25 +00001183 break;
1184 case TCP_STATE_LAST_ACK:
1185 tcp_connection_timers_reset (tc);
1186 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
Florin Corasaa388692020-02-14 23:41:25 +00001187 session_transport_closed_notify (&tc->connection);
Florin Coras7a3a8662020-02-22 02:27:21 +00001188 tcp_program_cleanup (wrk, tc);
Florin Coras0765d972020-03-18 21:26:41 +00001189 tcp_worker_stats_inc (wrk, to_lastack, 1);
Florin Corasaa388692020-02-14 23:41:25 +00001190 break;
1191 case TCP_STATE_CLOSING:
1192 tcp_connection_timers_reset (tc);
1193 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
Florin Corasaa388692020-02-14 23:41:25 +00001194 session_transport_closed_notify (&tc->connection);
Florin Coras7a3a8662020-02-22 02:27:21 +00001195 tcp_program_cleanup (wrk, tc);
Florin Coras0765d972020-03-18 21:26:41 +00001196 tcp_worker_stats_inc (wrk, to_closing, 1);
Florin Corasaa388692020-02-14 23:41:25 +00001197 break;
1198 case TCP_STATE_FIN_WAIT_2:
1199 tcp_send_reset (tc);
1200 tcp_connection_timers_reset (tc);
1201 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1202 session_transport_closed_notify (&tc->connection);
Florin Coras7a3a8662020-02-22 02:27:21 +00001203 tcp_program_cleanup (wrk, tc);
Florin Coras0765d972020-03-18 21:26:41 +00001204 tcp_worker_stats_inc (wrk, to_finwait2, 1);
Florin Coras7a3a8662020-02-22 02:27:21 +00001205 break;
1206 case TCP_STATE_TIME_WAIT:
1207 tcp_connection_set_state (tc, TCP_STATE_CLOSED);
1208 tcp_program_cleanup (wrk, tc);
Florin Corasaa388692020-02-14 23:41:25 +00001209 break;
1210 default:
Florin Coras7a3a8662020-02-22 02:27:21 +00001211 clib_warning ("waitclose in state: %U", format_tcp_state, tc->state);
Florin Corasaa388692020-02-14 23:41:25 +00001212 break;
1213 }
1214}
1215
1216/* *INDENT-OFF* */
1217static timer_expiration_handler *timer_expiration_handlers[TCP_N_TIMERS] =
1218{
1219 tcp_timer_retransmit_handler,
Florin Corasaa388692020-02-14 23:41:25 +00001220 tcp_timer_persist_handler,
1221 tcp_timer_waitclose_handler,
1222 tcp_timer_retransmit_syn_handler,
1223};
1224/* *INDENT-ON* */
1225
1226static void
1227tcp_dispatch_pending_timers (tcp_worker_ctx_t * wrk)
1228{
1229 u32 n_timers, connection_index, timer_id, thread_index, timer_handle;
1230 tcp_connection_t *tc;
1231 int i;
1232
1233 if (!(n_timers = clib_fifo_elts (wrk->pending_timers)))
1234 return;
1235
1236 thread_index = wrk->vm->thread_index;
Florin Corasa9d8cb42020-02-20 05:45:31 +00001237 for (i = 0; i < clib_min (n_timers, wrk->max_timers_per_loop); i++)
Florin Corasaa388692020-02-14 23:41:25 +00001238 {
1239 clib_fifo_sub1 (wrk->pending_timers, timer_handle);
1240 connection_index = timer_handle & 0x0FFFFFFF;
1241 timer_id = timer_handle >> 28;
1242
1243 if (PREDICT_TRUE (timer_id != TCP_TIMER_RETRANSMIT_SYN))
1244 tc = tcp_connection_get (connection_index, thread_index);
1245 else
1246 tc = tcp_half_open_connection_get (connection_index);
1247
1248 if (PREDICT_FALSE (!tc))
1249 continue;
1250
Florin Coras1caf7f12020-07-16 10:05:02 -07001251 /* Skip if the timer is not pending. Probably it was reset while
Florin Corasaa043952020-10-08 13:33:20 -07001252 * waiting for dispatch */
Florin Coras1caf7f12020-07-16 10:05:02 -07001253 if (PREDICT_FALSE (!(tc->pending_timers & (1 << timer_id))))
1254 continue;
1255
1256 tc->pending_timers &= ~(1 << timer_id);
1257
Florin Corasaa388692020-02-14 23:41:25 +00001258 /* Skip timer if it was rearmed while pending dispatch */
1259 if (PREDICT_FALSE (tc->timers[timer_id] != TCP_TIMER_HANDLE_INVALID))
1260 continue;
1261
1262 (*timer_expiration_handlers[timer_id]) (tc);
1263 }
Florin Corasa9d8cb42020-02-20 05:45:31 +00001264
1265 if (thread_index == 0 && clib_fifo_elts (wrk->pending_timers))
Florin Coras5484daa2020-03-27 23:55:06 +00001266 session_queue_run_on_main_thread (wrk->vm);
Florin Corasaa388692020-02-14 23:41:25 +00001267}
1268
1269static void
Florin Coras7a3a8662020-02-22 02:27:21 +00001270tcp_handle_cleanups (tcp_worker_ctx_t * wrk, clib_time_type_t now)
1271{
1272 u32 thread_index = wrk->vm->thread_index;
1273 tcp_cleanup_req_t *req;
1274 tcp_connection_t *tc;
1275
1276 while (clib_fifo_elts (wrk->pending_cleanups))
1277 {
1278 req = clib_fifo_head (wrk->pending_cleanups);
1279 if (req->free_time > now)
1280 break;
1281 clib_fifo_sub2 (wrk->pending_cleanups, req);
1282 tc = tcp_connection_get (req->connection_index, thread_index);
Florin Coras9f4db3c2020-03-10 19:34:28 +00001283 if (PREDICT_FALSE (!tc))
1284 continue;
Florin Coras7a3a8662020-02-22 02:27:21 +00001285 session_transport_delete_notify (&tc->connection);
1286 tcp_connection_cleanup (tc);
1287 }
1288}
1289
1290static void
Florin Coras561af9b2017-12-09 10:19:43 -08001291tcp_update_time (f64 now, u8 thread_index)
1292{
Florin Corasbe72ae62018-11-01 11:23:03 -07001293 tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index);
1294
Florin Coras8f10b902021-04-02 18:32:00 -07001295 tcp_set_time_now (wrk, now);
Florin Coras7a3a8662020-02-22 02:27:21 +00001296 tcp_handle_cleanups (wrk, now);
Florin Coras49036a52020-10-08 09:28:32 -07001297 tcp_timer_expire_timers (&wrk->timer_wheel, now);
Florin Corasaa388692020-02-14 23:41:25 +00001298 tcp_dispatch_pending_timers (wrk);
Florin Coras561af9b2017-12-09 10:19:43 -08001299}
1300
Florin Coras42ceddb2018-12-12 10:56:01 -08001301static void
1302tcp_session_flush_data (transport_connection_t * tconn)
1303{
1304 tcp_connection_t *tc = (tcp_connection_t *) tconn;
1305 if (tc->flags & TCP_CONN_PSH_PENDING)
1306 return;
1307 tc->flags |= TCP_CONN_PSH_PENDING;
Florin Coras47596832019-03-12 18:58:54 -07001308 tc->psh_seq = tc->snd_una + transport_max_tx_dequeue (tconn) - 1;
Florin Coras42ceddb2018-12-12 10:56:01 -08001309}
1310
Florin Coras5a41fd52021-04-19 10:17:26 -07001311static int
1312tcp_session_app_rx_evt (transport_connection_t *conn)
1313{
1314 tcp_connection_t *tc = (tcp_connection_t *) conn;
1315 u32 min_free, lo = 4 << 10, hi = 128 << 10;
1316
1317 if (!(tc->flags & TCP_CONN_ZERO_RWND_SENT))
1318 return 0;
1319
1320 min_free = clib_clamp (transport_rx_fifo_size (conn) >> 3, lo, hi);
1321 if (transport_max_rx_enqueue (conn) < min_free)
1322 {
1323 transport_rx_fifo_req_deq_ntf (conn);
1324 return 0;
1325 }
1326
1327 tcp_send_ack (tc);
1328
1329 return 0;
1330}
1331
Dave Barach68b0fb02017-02-28 15:15:56 -05001332/* *INDENT-OFF* */
Florin Coras04e53442017-07-16 17:12:15 -07001333const static transport_proto_vft_t tcp_proto = {
Florin Coras561af9b2017-12-09 10:19:43 -08001334 .enable = vnet_tcp_enable_disable,
Florin Coras1ee78302019-02-05 15:51:15 -08001335 .start_listen = tcp_session_bind,
1336 .stop_listen = tcp_session_unbind,
Florin Coras8b20bf52018-06-14 14:55:50 -07001337 .push_header = tcp_session_push_header,
Dave Barach68b0fb02017-02-28 15:15:56 -05001338 .get_connection = tcp_session_get_transport,
1339 .get_listener = tcp_session_get_listener,
1340 .get_half_open = tcp_half_open_session_get_transport,
Florin Coras04ae8272021-04-12 19:55:37 -07001341 .attribute = tcp_session_attribute,
Florin Coras1ee78302019-02-05 15:51:15 -08001342 .connect = tcp_session_open,
liuyacan534468e2021-05-09 03:50:40 +00001343 .half_close = tcp_session_half_close,
Dave Barach68b0fb02017-02-28 15:15:56 -05001344 .close = tcp_session_close,
1345 .cleanup = tcp_session_cleanup,
Florin Corasd50ff7f2020-04-16 04:30:22 +00001346 .cleanup_ho = tcp_session_cleanup_ho,
Florin Corasdfb3b872019-08-16 17:48:44 -07001347 .reset = tcp_session_reset,
Florin Coras70f879d2020-03-13 17:54:42 +00001348 .send_params = tcp_session_send_params,
Florin Coras561af9b2017-12-09 10:19:43 -08001349 .update_time = tcp_update_time,
Florin Coras42ceddb2018-12-12 10:56:01 -08001350 .flush_data = tcp_session_flush_data,
Florin Coras26dd6de2019-07-23 23:54:47 -07001351 .custom_tx = tcp_session_custom_tx,
Florin Coras5a41fd52021-04-19 10:17:26 -07001352 .app_rx_evt = tcp_session_app_rx_evt,
Florin Corase69f4952017-03-07 10:06:24 -08001353 .format_connection = format_tcp_session,
1354 .format_listener = format_tcp_listener_session,
1355 .format_half_open = format_tcp_half_open_session,
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001356 .transport_options = {
Florin Coras07063b82020-03-13 04:44:51 +00001357 .name = "tcp",
1358 .short_name = "T",
Nathan Skrzypczake971bc92019-06-19 13:42:37 +02001359 .tx_type = TRANSPORT_TX_PEEK,
1360 .service_type = TRANSPORT_SERVICE_VC,
1361 },
Dave Barach68b0fb02017-02-28 15:15:56 -05001362};
1363/* *INDENT-ON* */
1364
Florin Corasd67f1122018-05-21 17:47:40 -07001365void
Florin Corasc44a5582018-11-01 16:30:54 -07001366tcp_connection_tx_pacer_update (tcp_connection_t * tc)
Florin Corasd67f1122018-05-21 17:47:40 -07001367{
Florin Corasd67f1122018-05-21 17:47:40 -07001368 if (!transport_connection_is_tx_paced (&tc->connection))
1369 return;
1370
Florin Coras11e9e352019-11-13 19:09:47 -08001371 f64 srtt = clib_min ((f64) tc->srtt * TCP_TICK, tc->mrtt_us);
1372
Florin Corasd2067242019-08-16 10:33:49 -07001373 transport_connection_tx_pacer_update (&tc->connection,
Florin Coras11e9e352019-11-13 19:09:47 -08001374 tcp_cc_get_pacing_rate (tc),
1375 srtt * CLIB_US_TIME_FREQ);
Florin Corasd67f1122018-05-21 17:47:40 -07001376}
1377
Florin Corasc44a5582018-11-01 16:30:54 -07001378void
1379tcp_connection_tx_pacer_reset (tcp_connection_t * tc, u32 window,
1380 u32 start_bucket)
1381{
Florin Coras36ebcff2019-09-12 18:36:44 -07001382 f64 srtt = clib_min ((f64) tc->srtt * TCP_TICK, tc->mrtt_us);
Florin Coras599db9e2019-11-25 09:41:37 -08001383 transport_connection_tx_pacer_reset (&tc->connection,
1384 tcp_cc_get_pacing_rate (tc),
1385 start_bucket,
Florin Coras11e9e352019-11-13 19:09:47 -08001386 srtt * CLIB_US_TIME_FREQ);
Florin Corasc44a5582018-11-01 16:30:54 -07001387}
1388
Florin Coras6080e0d2020-03-13 20:39:43 +00001389void
1390tcp_reschedule (tcp_connection_t * tc)
1391{
1392 if (tcp_in_cong_recovery (tc) || tcp_snd_space_inline (tc))
1393 transport_connection_reschedule (&tc->connection);
1394}
1395
Florin Coras0dbd5172018-06-25 16:19:34 -07001396static void
Dave Barach68b0fb02017-02-28 15:15:56 -05001397tcp_expired_timers_dispatch (u32 * expired_timers)
1398{
Florin Corasa9d8cb42020-02-20 05:45:31 +00001399 u32 thread_index = vlib_get_thread_index (), n_left, max_per_loop;
1400 u32 connection_index, timer_id, n_expired, max_loops;
Florin Corasaa388692020-02-14 23:41:25 +00001401 tcp_worker_ctx_t *wrk;
Florin Corasb72a0ff2019-11-22 17:38:25 -08001402 tcp_connection_t *tc;
1403 int i;
Dave Barach68b0fb02017-02-28 15:15:56 -05001404
Florin Corasaa388692020-02-14 23:41:25 +00001405 wrk = tcp_get_worker (thread_index);
Florin Coras5e6305f2020-02-12 07:42:01 +00001406 n_expired = vec_len (expired_timers);
Florin Coras0765d972020-03-18 21:26:41 +00001407 tcp_worker_stats_inc (wrk, timer_expirations, n_expired);
Florin Corasa9d8cb42020-02-20 05:45:31 +00001408 n_left = clib_fifo_elts (wrk->pending_timers);
Florin Coras5e6305f2020-02-12 07:42:01 +00001409
Florin Corasb72a0ff2019-11-22 17:38:25 -08001410 /*
1411 * Invalidate all timer handles before dispatching. This avoids dangling
1412 * index references to timer wheel pool entries that have been freed.
1413 */
Florin Coras5e6305f2020-02-12 07:42:01 +00001414 for (i = 0; i < n_expired; i++)
Dave Barach68b0fb02017-02-28 15:15:56 -05001415 {
Dave Barach68b0fb02017-02-28 15:15:56 -05001416 connection_index = expired_timers[i] & 0x0FFFFFFF;
1417 timer_id = expired_timers[i] >> 28;
1418
Florin Corasb72a0ff2019-11-22 17:38:25 -08001419 if (timer_id != TCP_TIMER_RETRANSMIT_SYN)
1420 tc = tcp_connection_get (connection_index, thread_index);
1421 else
1422 tc = tcp_half_open_connection_get (connection_index);
1423
Florin Corasa436a422019-08-20 07:09:31 -07001424 TCP_EVT (TCP_EVT_TIMER_POP, connection_index, timer_id);
Florin Corase69f4952017-03-07 10:06:24 -08001425
Florin Corasb72a0ff2019-11-22 17:38:25 -08001426 tc->timers[timer_id] = TCP_TIMER_HANDLE_INVALID;
Florin Coras1caf7f12020-07-16 10:05:02 -07001427 tc->pending_timers |= (1 << timer_id);
Florin Corasb72a0ff2019-11-22 17:38:25 -08001428 }
1429
Florin Corasaa388692020-02-14 23:41:25 +00001430 clib_fifo_add (wrk->pending_timers, expired_timers, n_expired);
Florin Corasa9d8cb42020-02-20 05:45:31 +00001431
Florin Coras273968c2022-01-03 10:34:52 -08001432 max_loops =
1433 clib_max ((u32) 0.5 * TCP_TIMER_TICK * wrk->vm->loops_per_second, 1);
Florin Corasa9d8cb42020-02-20 05:45:31 +00001434 max_per_loop = clib_max ((n_left + n_expired) / max_loops, 10);
1435 max_per_loop = clib_min (max_per_loop, VLIB_FRAME_SIZE);
1436 wrk->max_timers_per_loop = clib_max (n_left ? wrk->max_timers_per_loop : 0,
1437 max_per_loop);
1438
1439 if (thread_index == 0)
Florin Coras5484daa2020-03-27 23:55:06 +00001440 session_queue_run_on_main_thread (wrk->vm);
Dave Barach68b0fb02017-02-28 15:15:56 -05001441}
1442
Florin Coras0dbd5172018-06-25 16:19:34 -07001443static void
Florin Coras18e0d4f2019-01-02 12:22:02 -08001444tcp_initialize_iss_seed (tcp_main_t * tm)
1445{
1446 u32 default_seed = random_default_seed ();
1447 u64 time_now = clib_cpu_time_now ();
1448
1449 tm->iss_seed.first = (u64) random_u32 (&default_seed) << 32;
1450 tm->iss_seed.second = random_u64 (&time_now);
1451}
1452
Florin Coras0dbd5172018-06-25 16:19:34 -07001453static clib_error_t *
Florin Corasa0b34a72017-03-07 01:20:52 -08001454tcp_main_enable (vlib_main_t * vm)
Dave Barach68b0fb02017-02-28 15:15:56 -05001455{
Dave Barach68b0fb02017-02-28 15:15:56 -05001456 vlib_thread_main_t *vtm = vlib_get_thread_main ();
Florin Corasbe72ae62018-11-01 11:23:03 -07001457 u32 num_threads, n_workers, prealloc_conn_per_wrk;
Dave Barach2c25a622017-06-26 11:35:07 -04001458 tcp_connection_t *tc __attribute__ ((unused));
Florin Corasbe72ae62018-11-01 11:23:03 -07001459 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras04261852020-02-12 01:24:29 +00001460 tcp_worker_ctx_t *wrk;
Florin Corasbe72ae62018-11-01 11:23:03 -07001461 clib_error_t *error = 0;
1462 int thread;
Dave Barach68b0fb02017-02-28 15:15:56 -05001463
Dave Barach68b0fb02017-02-28 15:15:56 -05001464 if ((error = vlib_call_init_function (vm, ip_main_init)))
1465 return error;
1466 if ((error = vlib_call_init_function (vm, ip4_lookup_init)))
1467 return error;
1468 if ((error = vlib_call_init_function (vm, ip6_lookup_init)))
1469 return error;
1470
1471 /*
1472 * Registrations
1473 */
1474
Dave Barach68b0fb02017-02-28 15:15:56 -05001475 ip4_register_protocol (IP_PROTOCOL_TCP, tcp4_input_node.index);
rootc9d1c5b2017-08-15 12:58:31 -04001476 ip6_register_protocol (IP_PROTOCOL_TCP, tcp6_input_node.index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001477
Dave Barach68b0fb02017-02-28 15:15:56 -05001478 /*
1479 * Initialize data structures
1480 */
1481
1482 num_threads = 1 /* main thread */ + vtm->n_threads;
Florin Corase55a6d72018-10-31 23:09:22 -07001483 vec_validate (tm->wrk_ctx, num_threads - 1);
Florin Corasbe72ae62018-11-01 11:23:03 -07001484 n_workers = num_threads == 1 ? 1 : vtm->n_threads;
Florin Coras9094b5c2019-08-12 14:17:47 -07001485 prealloc_conn_per_wrk = tcp_cfg.preallocated_connections / n_workers;
Dave Barach68b0fb02017-02-28 15:15:56 -05001486
Florin Coras5484daa2020-03-27 23:55:06 +00001487 wrk = &tm->wrk_ctx[0];
1488 wrk->tco_next_node[0] = vlib_node_get_next (vm, session_queue_node.index,
1489 tcp4_output_node.index);
1490 wrk->tco_next_node[1] = vlib_node_get_next (vm, session_queue_node.index,
1491 tcp6_output_node.index);
1492
Florin Corasbe72ae62018-11-01 11:23:03 -07001493 for (thread = 0; thread < num_threads; thread++)
Dave Barach2c25a622017-06-26 11:35:07 -04001494 {
Florin Coras04261852020-02-12 01:24:29 +00001495 wrk = &tm->wrk_ctx[thread];
1496
1497 vec_validate (wrk->pending_deq_acked, 255);
1498 vec_validate (wrk->pending_disconnects, 255);
1499 vec_validate (wrk->pending_resets, 255);
1500 vec_reset_length (wrk->pending_deq_acked);
1501 vec_reset_length (wrk->pending_disconnects);
1502 vec_reset_length (wrk->pending_resets);
Damjan Marion6ffb7c62021-03-26 13:06:13 +01001503 wrk->vm = vlib_get_main_by_index (thread);
Florin Corasa9d8cb42020-02-20 05:45:31 +00001504 wrk->max_timers_per_loop = 10;
Florin Corasbe72ae62018-11-01 11:23:03 -07001505
Florin Coras5484daa2020-03-27 23:55:06 +00001506 if (thread > 0)
1507 {
1508 wrk->tco_next_node[0] = tm->wrk_ctx[0].tco_next_node[0];
1509 wrk->tco_next_node[1] = tm->wrk_ctx[0].tco_next_node[1];
1510 }
1511
Florin Corasbe72ae62018-11-01 11:23:03 -07001512 /*
1513 * Preallocate connections. Assume that thread 0 won't
1514 * use preallocated threads when running multi-core
1515 */
1516 if ((thread > 0 || num_threads == 1) && prealloc_conn_per_wrk)
Florin Coras04261852020-02-12 01:24:29 +00001517 pool_init_fixed (wrk->connections, prealloc_conn_per_wrk);
Florin Coras49036a52020-10-08 09:28:32 -07001518
1519 tcp_timer_initialize_wheel (&wrk->timer_wheel,
1520 tcp_expired_timers_dispatch,
1521 vlib_time_now (vm));
Dave Barach2c25a622017-06-26 11:35:07 -04001522 }
1523
Florin Coras18e0d4f2019-01-02 12:22:02 -08001524 tcp_initialize_iss_seed (tm);
Florin Coras66b11312017-07-31 17:18:03 -07001525
Damjan Marion8934a042019-02-09 23:29:26 +01001526 tm->bytes_per_buffer = vlib_buffer_get_default_data_size (vm);
Florin Coras4e116fb2019-06-10 08:33:50 -07001527 tm->cc_last_type = TCP_CC_LAST;
Florin Coras5484daa2020-03-27 23:55:06 +00001528
1529 tm->ipl_next_node[0] = vlib_node_get_next (vm, session_queue_node.index,
1530 ip4_lookup_node.index);
1531 tm->ipl_next_node[1] = vlib_node_get_next (vm, session_queue_node.index,
1532 ip6_lookup_node.index);
Dave Barach68b0fb02017-02-28 15:15:56 -05001533 return error;
1534}
1535
Florin Corasa0b34a72017-03-07 01:20:52 -08001536clib_error_t *
1537vnet_tcp_enable_disable (vlib_main_t * vm, u8 is_en)
1538{
1539 if (is_en)
1540 {
1541 if (tcp_main.is_enabled)
1542 return 0;
1543
1544 return tcp_main_enable (vm);
1545 }
1546 else
1547 {
1548 tcp_main.is_enabled = 0;
1549 }
1550
1551 return 0;
1552}
1553
Pierre Pfister7fe51f32017-09-20 08:48:36 +02001554void
1555tcp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add)
1556{
1557 tcp_main_t *tm = &tcp_main;
1558 if (is_ip4)
1559 tm->punt_unknown4 = is_add;
1560 else
1561 tm->punt_unknown6 = is_add;
1562}
1563
Florin Coras9094b5c2019-08-12 14:17:47 -07001564/**
1565 * Initialize default values for tcp parameters
1566 */
1567static void
1568tcp_configuration_init (void)
1569{
1570 /* Initial wnd for SYN. Fifos are not allocated at that point so use some
1571 * predefined value. For SYN-ACK we still want the scale to be computed in
1572 * the same way */
1573 tcp_cfg.max_rx_fifo = 32 << 20;
1574 tcp_cfg.min_rx_fifo = 4 << 10;
1575
Florin Corascedcf602019-08-27 12:15:43 -07001576 tcp_cfg.default_mtu = 1500;
Florin Coras9094b5c2019-08-12 14:17:47 -07001577 tcp_cfg.initial_cwnd_multiplier = 0;
1578 tcp_cfg.enable_tx_pacing = 1;
Florin Corasbbcfaac2019-10-10 13:52:04 -07001579 tcp_cfg.allow_tso = 0;
Florin Corasf4ce6ba2019-11-20 18:34:58 -08001580 tcp_cfg.csum_offload = 1;
Florin Corase57df7c2020-04-17 16:10:51 +00001581 tcp_cfg.cc_algo = TCP_CC_CUBIC;
Florin Coras017dc452019-08-30 11:06:35 -07001582 tcp_cfg.rwnd_min_update_ack = 1;
Simon Zhang23c3d342020-09-15 23:40:28 +08001583 tcp_cfg.max_gso_size = TCP_MAX_GSO_SZ;
Florin Coras9094b5c2019-08-12 14:17:47 -07001584
Ryujiro Shibuya6fa09882020-10-22 05:26:32 +00001585 /* Time constants defined as timer tick (100us) multiples */
Ryujiro Shibuya6fa09882020-10-22 05:26:32 +00001586 tcp_cfg.closewait_time = 20000; /* 2s */
1587 tcp_cfg.timewait_time = 100000; /* 10s */
1588 tcp_cfg.finwait1_time = 600000; /* 60s */
1589 tcp_cfg.lastack_time = 300000; /* 30s */
1590 tcp_cfg.finwait2_time = 300000; /* 30s */
1591 tcp_cfg.closing_time = 300000; /* 30s */
liuyacan7e781192021-06-14 18:09:01 +08001592 tcp_cfg.alloc_err_timeout = 1000; /* 100ms */
Ryujiro Shibuya6fa09882020-10-22 05:26:32 +00001593
1594 /* This value is seconds */
Florin Coras7a3a8662020-02-22 02:27:21 +00001595 tcp_cfg.cleanup_time = 0.1; /* 100ms */
Florin Coras9094b5c2019-08-12 14:17:47 -07001596}
1597
Florin Coras0dbd5172018-06-25 16:19:34 -07001598static clib_error_t *
Florin Corasa0b34a72017-03-07 01:20:52 -08001599tcp_init (vlib_main_t * vm)
1600{
1601 tcp_main_t *tm = vnet_get_tcp_main ();
Florin Coras40364272017-11-16 09:57:50 -08001602 ip_main_t *im = &ip_main;
1603 ip_protocol_info_t *pi;
1604
1605 /* Session layer, and by implication tcp, are disabled by default */
Florin Corasa0b34a72017-03-07 01:20:52 -08001606 tm->is_enabled = 0;
Florin Coras40364272017-11-16 09:57:50 -08001607
1608 /* Register with IP for header parsing */
1609 pi = ip_get_protocol_info (im, IP_PROTOCOL_TCP);
1610 if (pi == 0)
1611 return clib_error_return (0, "TCP protocol info AWOL");
1612 pi->format_header = format_tcp_header;
1613 pi->unformat_pg_edit = unformat_pg_tcp_header;
1614
Florin Coras561af9b2017-12-09 10:19:43 -08001615 /* Register as transport with session layer */
1616 transport_register_protocol (TRANSPORT_PROTO_TCP, &tcp_proto,
1617 FIB_PROTOCOL_IP4, tcp4_output_node.index);
1618 transport_register_protocol (TRANSPORT_PROTO_TCP, &tcp_proto,
1619 FIB_PROTOCOL_IP6, tcp6_output_node.index);
1620
Florin Coras9094b5c2019-08-12 14:17:47 -07001621 tcp_configuration_init ();
1622
Florin Corasfbf278a2019-03-26 14:05:38 -07001623 tm->cc_algo_by_name = hash_create_string (0, sizeof (uword));
Florin Coras9094b5c2019-08-12 14:17:47 -07001624
Florin Corasa0b34a72017-03-07 01:20:52 -08001625 return 0;
1626}
1627
Dave Barach68b0fb02017-02-28 15:15:56 -05001628VLIB_INIT_FUNCTION (tcp_init);
1629
Dave Barach68b0fb02017-02-28 15:15:56 -05001630/*
1631 * fd.io coding-style-patch-verification: ON
1632 *
1633 * Local Variables:
1634 * eval: (c-set-style "gnu")
1635 * End:
1636 */