Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1 | /* |
Florin Coras | 222e1f41 | 2019-02-16 20:47:32 -0800 | [diff] [blame] | 2 | * Copyright (c) 2016-2019 Cisco and/or its affiliates. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | |
Dave Barach | 3bbcfab | 2017-08-15 19:03:44 -0400 | [diff] [blame] | 16 | /** |
| 17 | * @file |
| 18 | * @brief TCP host stack utilities |
| 19 | */ |
| 20 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 21 | #include <vnet/tcp/tcp.h> |
Florin Coras | 999840c | 2020-03-18 20:31:34 +0000 | [diff] [blame] | 22 | #include <vnet/tcp/tcp_inlines.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 23 | #include <vnet/session/session.h> |
| 24 | #include <vnet/fib/fib.h> |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 25 | #include <vnet/dpo/load_balance.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 26 | #include <math.h> |
| 27 | |
| 28 | tcp_main_t tcp_main; |
| 29 | |
Florin Coras | 1c8ff63 | 2018-05-17 13:28:34 -0700 | [diff] [blame] | 30 | typedef 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 | |
| 39 | static void |
| 40 | tcp_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 | |
| 57 | static void |
| 58 | tcp_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 Coras | d9a145f | 2019-06-07 09:35:20 -0700 | [diff] [blame] | 71 | static void |
| 72 | tcp_cc_init (tcp_connection_t * tc) |
| 73 | { |
Florin Coras | d9a145f | 2019-06-07 09:35:20 -0700 | [diff] [blame] | 74 | tc->cc_algo->init (tc); |
| 75 | } |
| 76 | |
| 77 | static void |
| 78 | tcp_cc_cleanup (tcp_connection_t * tc) |
| 79 | { |
| 80 | if (tc->cc_algo->cleanup) |
| 81 | tc->cc_algo->cleanup (tc); |
| 82 | } |
| 83 | |
| 84 | void |
| 85 | tcp_cc_algo_register (tcp_cc_algorithm_type_e type, |
| 86 | const tcp_cc_algorithm_t * vft) |
| 87 | { |
| 88 | tcp_main_t *tm = vnet_get_tcp_main (); |
| 89 | vec_validate (tm->cc_algos, type); |
| 90 | |
| 91 | tm->cc_algos[type] = *vft; |
| 92 | hash_set_mem (tm->cc_algo_by_name, vft->name, type); |
| 93 | } |
| 94 | |
| 95 | tcp_cc_algorithm_t * |
| 96 | tcp_cc_algo_get (tcp_cc_algorithm_type_e type) |
| 97 | { |
| 98 | tcp_main_t *tm = vnet_get_tcp_main (); |
| 99 | return &tm->cc_algos[type]; |
| 100 | } |
| 101 | |
Florin Coras | 4e116fb | 2019-06-10 08:33:50 -0700 | [diff] [blame] | 102 | tcp_cc_algorithm_type_e |
| 103 | tcp_cc_algo_new_type (const tcp_cc_algorithm_t * vft) |
| 104 | { |
| 105 | tcp_main_t *tm = vnet_get_tcp_main (); |
| 106 | tcp_cc_algo_register (++tm->cc_last_type, vft); |
| 107 | return tm->cc_last_type; |
| 108 | } |
| 109 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 110 | static u32 |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 111 | tcp_connection_bind (u32 session_index, transport_endpoint_t * lcl) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 112 | { |
| 113 | tcp_main_t *tm = &tcp_main; |
| 114 | tcp_connection_t *listener; |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 115 | void *iface_ip; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 116 | |
| 117 | pool_get (tm->listener_pool, listener); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 118 | clib_memset (listener, 0, sizeof (*listener)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 119 | |
| 120 | listener->c_c_index = listener - tm->listener_pool; |
Florin Coras | 0e49568 | 2017-09-19 22:27:18 -0700 | [diff] [blame] | 121 | listener->c_lcl_port = lcl->port; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 122 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 123 | /* If we are provided a sw_if_index, bind using one of its ips */ |
| 124 | if (ip_is_zero (&lcl->ip, 1) && lcl->sw_if_index != ENDPOINT_INVALID_INDEX) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 125 | { |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 126 | if ((iface_ip = ip_interface_get_first_ip (lcl->sw_if_index, |
| 127 | lcl->is_ip4))) |
| 128 | ip_set (&lcl->ip, iface_ip, lcl->is_ip4); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 129 | } |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 130 | ip_copy (&listener->c_lcl_ip, &lcl->ip, lcl->is_ip4); |
| 131 | listener->c_is_ip4 = lcl->is_ip4; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 132 | listener->c_proto = TRANSPORT_PROTO_TCP; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 133 | listener->c_s_index = session_index; |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 134 | listener->c_fib_index = lcl->fib_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 135 | listener->state = TCP_STATE_LISTEN; |
Florin Coras | 12f6936 | 2019-08-16 09:44:00 -0700 | [diff] [blame] | 136 | listener->cc_algo = tcp_cc_algo_get (tcp_cfg.cc_algo); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 137 | |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 138 | tcp_connection_timers_init (listener); |
| 139 | |
Florin Coras | a436a42 | 2019-08-20 07:09:31 -0700 | [diff] [blame] | 140 | TCP_EVT (TCP_EVT_BIND, listener); |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 141 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 142 | return listener->c_c_index; |
| 143 | } |
| 144 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 145 | static u32 |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 146 | tcp_session_bind (u32 session_index, transport_endpoint_t * tep) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 147 | { |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 148 | return tcp_connection_bind (session_index, tep); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | static void |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 152 | tcp_connection_unbind (u32 listener_index) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 153 | { |
| 154 | tcp_main_t *tm = vnet_get_tcp_main (); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 155 | tcp_connection_t *tc; |
| 156 | |
| 157 | tc = pool_elt_at_index (tm->listener_pool, listener_index); |
| 158 | |
Florin Coras | a436a42 | 2019-08-20 07:09:31 -0700 | [diff] [blame] | 159 | TCP_EVT (TCP_EVT_UNBIND, tc); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 160 | |
| 161 | /* Poison the entry */ |
| 162 | if (CLIB_DEBUG > 0) |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 163 | clib_memset (tc, 0xFA, sizeof (*tc)); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 164 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 165 | pool_put_index (tm->listener_pool, listener_index); |
| 166 | } |
| 167 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 168 | static u32 |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 169 | tcp_session_unbind (u32 listener_index) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 170 | { |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 171 | tcp_connection_unbind (listener_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 172 | return 0; |
| 173 | } |
| 174 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 175 | static transport_connection_t * |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 176 | tcp_session_get_listener (u32 listener_index) |
| 177 | { |
| 178 | tcp_main_t *tm = vnet_get_tcp_main (); |
| 179 | tcp_connection_t *tc; |
| 180 | tc = pool_elt_at_index (tm->listener_pool, listener_index); |
| 181 | return &tc->connection; |
| 182 | } |
| 183 | |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 184 | /** |
| 185 | * Cleanup half-open connection |
| 186 | * |
| 187 | */ |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 188 | static void |
Florin Coras | d50ff7f | 2020-04-16 04:30:22 +0000 | [diff] [blame] | 189 | tcp_half_open_connection_free (tcp_connection_t * tc) |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 190 | { |
| 191 | tcp_main_t *tm = vnet_get_tcp_main (); |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 192 | if (CLIB_DEBUG) |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 193 | clib_memset (tc, 0xFA, sizeof (*tc)); |
Benoît Ganne | d4aeb84 | 2019-07-18 18:38:42 +0200 | [diff] [blame] | 194 | pool_put (tm->half_open_connections, tc); |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | /** |
| 198 | * Try to cleanup half-open connection |
| 199 | * |
| 200 | * If called from a thread that doesn't own tc, the call won't have any |
| 201 | * effect. |
| 202 | * |
| 203 | * @param tc - connection to be cleaned up |
| 204 | * @return non-zero if cleanup failed. |
| 205 | */ |
| 206 | int |
| 207 | tcp_half_open_connection_cleanup (tcp_connection_t * tc) |
| 208 | { |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame] | 209 | tcp_worker_ctx_t *wrk; |
| 210 | |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 211 | /* Make sure this is the owning thread */ |
| 212 | if (tc->c_thread_index != vlib_get_thread_index ()) |
| 213 | return 1; |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame] | 214 | |
Florin Coras | ea72764 | 2021-05-07 19:39:43 -0700 | [diff] [blame] | 215 | session_half_open_delete_notify (&tc->connection); |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame] | 216 | wrk = tcp_get_worker (tc->c_thread_index); |
| 217 | tcp_timer_reset (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT_SYN); |
Florin Coras | d50ff7f | 2020-04-16 04:30:22 +0000 | [diff] [blame] | 218 | tcp_half_open_connection_free (tc); |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 219 | return 0; |
| 220 | } |
| 221 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 222 | static tcp_connection_t * |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 223 | tcp_half_open_connection_new (void) |
| 224 | { |
| 225 | tcp_main_t *tm = vnet_get_tcp_main (); |
| 226 | tcp_connection_t *tc = 0; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 227 | ASSERT (vlib_get_thread_index () == 0); |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 228 | pool_get (tm->half_open_connections, tc); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 229 | clib_memset (tc, 0, sizeof (*tc)); |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 230 | tc->c_c_index = tc - tm->half_open_connections; |
| 231 | return tc; |
| 232 | } |
| 233 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 234 | /** |
| 235 | * Cleans up connection state. |
| 236 | * |
| 237 | * No notifications. |
| 238 | */ |
| 239 | void |
| 240 | tcp_connection_cleanup (tcp_connection_t * tc) |
| 241 | { |
Florin Coras | a436a42 | 2019-08-20 07:09:31 -0700 | [diff] [blame] | 242 | TCP_EVT (TCP_EVT_DELETE, tc); |
Florin Coras | 070fd4b | 2019-04-02 19:03:23 -0700 | [diff] [blame] | 243 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 244 | /* Cleanup local endpoint if this was an active connect */ |
Florin Coras | 43818c1 | 2020-02-09 23:09:26 +0000 | [diff] [blame] | 245 | if (!(tc->cfg_flags & TCP_CFG_F_NO_ENDPOINT)) |
| 246 | transport_endpoint_cleanup (TRANSPORT_PROTO_TCP, &tc->c_lcl_ip, |
| 247 | tc->c_lcl_port); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 248 | |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 249 | /* Check if connection is not yet fully established */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 250 | if (tc->state == TCP_STATE_SYN_SENT) |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 251 | { |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 252 | /* Try to remove the half-open connection. If this is not the owning |
| 253 | * thread, tc won't be removed. Retransmit or establish timers will |
| 254 | * eventually expire and call again cleanup on the right thread. */ |
Florin Coras | c5347d9 | 2018-10-17 10:41:28 -0700 | [diff] [blame] | 255 | if (tcp_half_open_connection_cleanup (tc)) |
| 256 | tc->flags |= TCP_CONN_HALF_OPEN_DONE; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 257 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 258 | else |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 259 | { |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 260 | /* Make sure all timers are cleared */ |
| 261 | tcp_connection_timers_reset (tc); |
| 262 | |
Florin Coras | 1c8ff63 | 2018-05-17 13:28:34 -0700 | [diff] [blame] | 263 | if (!tc->c_is_ip4 && ip6_address_is_link_local_unicast (&tc->c_rmt_ip6)) |
| 264 | tcp_add_del_adjacency (tc, 0); |
| 265 | |
Florin Coras | d9a145f | 2019-06-07 09:35:20 -0700 | [diff] [blame] | 266 | tcp_cc_cleanup (tc); |
Florin Coras | b691f76 | 2019-02-22 09:07:20 -0800 | [diff] [blame] | 267 | vec_free (tc->snd_sacks); |
| 268 | vec_free (tc->snd_sacks_fl); |
Florin Coras | 558e3e0 | 2019-09-06 12:56:58 -0700 | [diff] [blame] | 269 | vec_free (tc->rcv_opts.sacks); |
| 270 | pool_free (tc->sack_sb.holes); |
Florin Coras | b691f76 | 2019-02-22 09:07:20 -0800 | [diff] [blame] | 271 | |
Florin Coras | bbcfaac | 2019-10-10 13:52:04 -0700 | [diff] [blame] | 272 | if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE) |
Florin Coras | 5281473 | 2019-06-12 15:38:19 -0700 | [diff] [blame] | 273 | tcp_bt_cleanup (tc); |
| 274 | |
Florin Coras | 0426185 | 2020-02-12 01:24:29 +0000 | [diff] [blame] | 275 | tcp_connection_free (tc); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 276 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 277 | } |
| 278 | |
| 279 | /** |
| 280 | * Connection removal. |
| 281 | * |
| 282 | * This should be called only once connection enters CLOSED state. Note |
| 283 | * that it notifies the session of the removal event, so if the goal is to |
| 284 | * just remove the connection, call tcp_connection_cleanup instead. |
| 285 | */ |
| 286 | void |
| 287 | tcp_connection_del (tcp_connection_t * tc) |
| 288 | { |
Florin Coras | 5a2ec8f | 2018-12-27 11:53:11 -0800 | [diff] [blame] | 289 | session_transport_delete_notify (&tc->connection); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 290 | tcp_connection_cleanup (tc); |
| 291 | } |
| 292 | |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 293 | tcp_connection_t * |
Florin Coras | 8124cb7 | 2018-12-16 20:57:29 -0800 | [diff] [blame] | 294 | tcp_connection_alloc (u8 thread_index) |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 295 | { |
Florin Coras | 0426185 | 2020-02-12 01:24:29 +0000 | [diff] [blame] | 296 | tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 297 | tcp_connection_t *tc; |
| 298 | |
Florin Coras | 0426185 | 2020-02-12 01:24:29 +0000 | [diff] [blame] | 299 | pool_get (wrk->connections, tc); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 300 | clib_memset (tc, 0, sizeof (*tc)); |
Florin Coras | 0426185 | 2020-02-12 01:24:29 +0000 | [diff] [blame] | 301 | tc->c_c_index = tc - wrk->connections; |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 302 | tc->c_thread_index = thread_index; |
| 303 | return tc; |
| 304 | } |
| 305 | |
Florin Coras | 12f6936 | 2019-08-16 09:44:00 -0700 | [diff] [blame] | 306 | tcp_connection_t * |
| 307 | tcp_connection_alloc_w_base (u8 thread_index, tcp_connection_t * base) |
| 308 | { |
Florin Coras | 0426185 | 2020-02-12 01:24:29 +0000 | [diff] [blame] | 309 | tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index); |
Florin Coras | 12f6936 | 2019-08-16 09:44:00 -0700 | [diff] [blame] | 310 | tcp_connection_t *tc; |
| 311 | |
Florin Coras | 0426185 | 2020-02-12 01:24:29 +0000 | [diff] [blame] | 312 | pool_get (wrk->connections, tc); |
Florin Coras | 12f6936 | 2019-08-16 09:44:00 -0700 | [diff] [blame] | 313 | clib_memcpy_fast (tc, base, sizeof (*tc)); |
Florin Coras | 0426185 | 2020-02-12 01:24:29 +0000 | [diff] [blame] | 314 | tc->c_c_index = tc - wrk->connections; |
Florin Coras | 12f6936 | 2019-08-16 09:44:00 -0700 | [diff] [blame] | 315 | tc->c_thread_index = thread_index; |
| 316 | return tc; |
| 317 | } |
| 318 | |
Florin Coras | 8124cb7 | 2018-12-16 20:57:29 -0800 | [diff] [blame] | 319 | void |
| 320 | tcp_connection_free (tcp_connection_t * tc) |
| 321 | { |
Florin Coras | 0426185 | 2020-02-12 01:24:29 +0000 | [diff] [blame] | 322 | tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index); |
Florin Coras | 6416e62 | 2019-04-03 17:52:43 -0700 | [diff] [blame] | 323 | if (CLIB_DEBUG) |
| 324 | { |
Florin Coras | 6416e62 | 2019-04-03 17:52:43 -0700 | [diff] [blame] | 325 | clib_memset (tc, 0xFA, sizeof (*tc)); |
Florin Coras | 0426185 | 2020-02-12 01:24:29 +0000 | [diff] [blame] | 326 | pool_put (wrk->connections, tc); |
Florin Coras | 6416e62 | 2019-04-03 17:52:43 -0700 | [diff] [blame] | 327 | return; |
| 328 | } |
Florin Coras | 0426185 | 2020-02-12 01:24:29 +0000 | [diff] [blame] | 329 | pool_put (wrk->connections, tc); |
Florin Coras | 8124cb7 | 2018-12-16 20:57:29 -0800 | [diff] [blame] | 330 | } |
| 331 | |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 332 | void |
| 333 | tcp_program_cleanup (tcp_worker_ctx_t * wrk, tcp_connection_t * tc) |
| 334 | { |
| 335 | tcp_cleanup_req_t *req; |
| 336 | clib_time_type_t now; |
| 337 | |
Florin Coras | 8f10b90 | 2021-04-02 18:32:00 -0700 | [diff] [blame] | 338 | now = tcp_time_now_us (tc->c_thread_index); |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 339 | clib_fifo_add2 (wrk->pending_cleanups, req); |
| 340 | req->connection_index = tc->c_c_index; |
| 341 | req->free_time = now + tcp_cfg.cleanup_time; |
| 342 | } |
| 343 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 344 | /** |
| 345 | * Begin connection closing procedure. |
| 346 | * |
| 347 | * If at the end the connection is not in CLOSED state, it is not removed. |
| 348 | * Instead, we rely on on TCP to advance through state machine to either |
| 349 | * 1) LAST_ACK (passive close) whereby when the last ACK is received |
| 350 | * tcp_connection_del is called. This notifies session of the delete and |
| 351 | * calls cleanup. |
| 352 | * 2) TIME_WAIT (active close) whereby after 2MSL the 2MSL timer triggers |
| 353 | * and cleanup is called. |
Florin Coras | d79b41e | 2017-03-04 05:37:52 -0800 | [diff] [blame] | 354 | * |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 355 | */ |
| 356 | void |
| 357 | tcp_connection_close (tcp_connection_t * tc) |
| 358 | { |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame] | 359 | tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index); |
| 360 | |
Florin Coras | a436a42 | 2019-08-20 07:09:31 -0700 | [diff] [blame] | 361 | TCP_EVT (TCP_EVT_CLOSE, tc); |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 362 | |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 363 | /* Send/Program FIN if needed and switch state */ |
| 364 | switch (tc->state) |
| 365 | { |
| 366 | case TCP_STATE_SYN_SENT: |
Florin Coras | 85a3ddd | 2018-12-24 16:54:34 -0800 | [diff] [blame] | 367 | /* Try to cleanup. If not on the right thread, mark as half-open done. |
| 368 | * Connection will be cleaned up when establish timer pops */ |
| 369 | tcp_connection_cleanup (tc); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 370 | break; |
| 371 | case TCP_STATE_SYN_RCVD: |
Florin Coras | c5347d9 | 2018-10-17 10:41:28 -0700 | [diff] [blame] | 372 | tcp_connection_timers_reset (tc); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 373 | tcp_send_fin (tc); |
Florin Coras | 3c514d5 | 2018-12-22 11:39:33 -0800 | [diff] [blame] | 374 | tcp_connection_set_state (tc, TCP_STATE_FIN_WAIT_1); |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame] | 375 | tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE, |
| 376 | tcp_cfg.finwait1_time); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 377 | break; |
| 378 | case TCP_STATE_ESTABLISHED: |
Florin Coras | f65074e | 2019-03-31 17:17:11 -0700 | [diff] [blame] | 379 | /* If closing with unread data, reset the connection */ |
| 380 | if (transport_max_rx_dequeue (&tc->connection)) |
| 381 | { |
| 382 | tcp_send_reset (tc); |
| 383 | tcp_connection_timers_reset (tc); |
| 384 | tcp_connection_set_state (tc, TCP_STATE_CLOSED); |
Florin Coras | a0904f0 | 2019-07-22 20:55:11 -0700 | [diff] [blame] | 385 | session_transport_closed_notify (&tc->connection); |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 386 | tcp_program_cleanup (tcp_get_worker (tc->c_thread_index), tc); |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame] | 387 | tcp_worker_stats_inc (wrk, rst_unread, 1); |
Florin Coras | f65074e | 2019-03-31 17:17:11 -0700 | [diff] [blame] | 388 | break; |
| 389 | } |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 390 | if (!transport_max_tx_dequeue (&tc->connection)) |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 391 | tcp_send_fin (tc); |
| 392 | else |
| 393 | tc->flags |= TCP_CONN_FINPNDG; |
Florin Coras | 3c514d5 | 2018-12-22 11:39:33 -0800 | [diff] [blame] | 394 | tcp_connection_set_state (tc, TCP_STATE_FIN_WAIT_1); |
Florin Coras | e96bf63 | 2018-12-18 22:44:27 -0800 | [diff] [blame] | 395 | /* Set a timer in case the peer stops responding. Otherwise the |
| 396 | * connection will be stuck here forever. */ |
Florin Coras | 85a3ddd | 2018-12-24 16:54:34 -0800 | [diff] [blame] | 397 | ASSERT (tc->timers[TCP_TIMER_WAITCLOSE] == TCP_TIMER_HANDLE_INVALID); |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame] | 398 | tcp_timer_set (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE, |
| 399 | tcp_cfg.finwait1_time); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 400 | break; |
| 401 | case TCP_STATE_CLOSE_WAIT: |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 402 | if (!transport_max_tx_dequeue (&tc->connection)) |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 403 | { |
| 404 | tcp_send_fin (tc); |
| 405 | tcp_connection_timers_reset (tc); |
Florin Coras | 3c514d5 | 2018-12-22 11:39:33 -0800 | [diff] [blame] | 406 | tcp_connection_set_state (tc, TCP_STATE_LAST_ACK); |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame] | 407 | tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE, |
| 408 | tcp_cfg.lastack_time); |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 409 | } |
| 410 | else |
| 411 | tc->flags |= TCP_CONN_FINPNDG; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 412 | break; |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 413 | case TCP_STATE_FIN_WAIT_1: |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame] | 414 | tcp_timer_update (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE, |
| 415 | tcp_cfg.finwait1_time); |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 416 | break; |
Florin Coras | 4af830c | 2018-12-04 09:21:36 -0800 | [diff] [blame] | 417 | case TCP_STATE_CLOSED: |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 418 | /* Cleanup should've been programmed already */ |
Florin Coras | 4af830c | 2018-12-04 09:21:36 -0800 | [diff] [blame] | 419 | break; |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 420 | default: |
Florin Coras | a096f2d | 2017-09-28 23:49:42 -0400 | [diff] [blame] | 421 | TCP_DBG ("state: %u", tc->state); |
Florin Coras | b2215d6 | 2017-08-01 16:56:58 -0700 | [diff] [blame] | 422 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 423 | } |
| 424 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 425 | static void |
liuyacan | 534468e | 2021-05-09 03:50:40 +0000 | [diff] [blame] | 426 | tcp_session_half_close (u32 conn_index, u32 thread_index) |
| 427 | { |
| 428 | tcp_worker_ctx_t *wrk; |
| 429 | tcp_connection_t *tc; |
| 430 | |
| 431 | tc = tcp_connection_get (conn_index, thread_index); |
| 432 | wrk = tcp_get_worker (tc->c_thread_index); |
| 433 | |
| 434 | /* If the connection is not in ESTABLISHED state, ignore it */ |
| 435 | if (tc->state != TCP_STATE_ESTABLISHED) |
| 436 | return; |
| 437 | if (!transport_max_tx_dequeue (&tc->connection)) |
| 438 | tcp_send_fin (tc); |
| 439 | else |
| 440 | tc->flags |= TCP_CONN_FINPNDG; |
| 441 | tcp_connection_set_state (tc, TCP_STATE_FIN_WAIT_1); |
| 442 | /* Set a timer in case the peer stops responding. Otherwise the |
| 443 | * connection will be stuck here forever. */ |
| 444 | ASSERT (tc->timers[TCP_TIMER_WAITCLOSE] == TCP_TIMER_HANDLE_INVALID); |
| 445 | tcp_timer_set (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE, |
| 446 | tcp_cfg.finwait1_time); |
| 447 | } |
| 448 | |
| 449 | static void |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 450 | tcp_session_close (u32 conn_index, u32 thread_index) |
| 451 | { |
| 452 | tcp_connection_t *tc; |
| 453 | tc = tcp_connection_get (conn_index, thread_index); |
| 454 | tcp_connection_close (tc); |
| 455 | } |
| 456 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 457 | static void |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 458 | tcp_session_cleanup (u32 conn_index, u32 thread_index) |
| 459 | { |
| 460 | tcp_connection_t *tc; |
| 461 | tc = tcp_connection_get (conn_index, thread_index); |
Florin Coras | 54c93cf | 2019-09-24 12:45:14 -0700 | [diff] [blame] | 462 | if (!tc) |
| 463 | return; |
Florin Coras | 85a3ddd | 2018-12-24 16:54:34 -0800 | [diff] [blame] | 464 | tcp_connection_set_state (tc, TCP_STATE_CLOSED); |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 465 | tcp_connection_cleanup (tc); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 466 | } |
| 467 | |
Florin Coras | dfb3b87 | 2019-08-16 17:48:44 -0700 | [diff] [blame] | 468 | static void |
Florin Coras | d50ff7f | 2020-04-16 04:30:22 +0000 | [diff] [blame] | 469 | tcp_session_cleanup_ho (u32 conn_index) |
| 470 | { |
| 471 | tcp_worker_ctx_t *wrk; |
| 472 | tcp_connection_t *tc; |
| 473 | |
| 474 | tc = tcp_half_open_connection_get (conn_index); |
| 475 | wrk = tcp_get_worker (tc->c_thread_index); |
| 476 | tcp_timer_reset (&wrk->timer_wheel, tc, TCP_TIMER_RETRANSMIT_SYN); |
| 477 | tcp_half_open_connection_free (tc); |
| 478 | } |
| 479 | |
| 480 | static void |
Florin Coras | dfb3b87 | 2019-08-16 17:48:44 -0700 | [diff] [blame] | 481 | tcp_session_reset (u32 conn_index, u32 thread_index) |
| 482 | { |
| 483 | tcp_connection_t *tc; |
| 484 | tc = tcp_connection_get (conn_index, thread_index); |
Florin Coras | dfb3b87 | 2019-08-16 17:48:44 -0700 | [diff] [blame] | 485 | tcp_send_reset (tc); |
| 486 | tcp_connection_timers_reset (tc); |
Florin Coras | fd4c3fe | 2019-11-07 12:33:12 -0800 | [diff] [blame] | 487 | tcp_cong_recovery_off (tc); |
Florin Coras | dfb3b87 | 2019-08-16 17:48:44 -0700 | [diff] [blame] | 488 | tcp_connection_set_state (tc, TCP_STATE_CLOSED); |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 489 | session_transport_closed_notify (&tc->connection); |
| 490 | tcp_program_cleanup (tcp_get_worker (thread_index), tc); |
Florin Coras | dfb3b87 | 2019-08-16 17:48:44 -0700 | [diff] [blame] | 491 | } |
| 492 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 493 | /** |
| 494 | * Initialize all connection timers as invalid |
| 495 | */ |
| 496 | void |
| 497 | tcp_connection_timers_init (tcp_connection_t * tc) |
| 498 | { |
| 499 | int i; |
| 500 | |
| 501 | /* Set all to invalid */ |
| 502 | for (i = 0; i < TCP_N_TIMERS; i++) |
| 503 | { |
| 504 | tc->timers[i] = TCP_TIMER_HANDLE_INVALID; |
| 505 | } |
| 506 | |
| 507 | tc->rto = TCP_RTO_INIT; |
| 508 | } |
| 509 | |
| 510 | /** |
| 511 | * Stop all connection timers |
| 512 | */ |
| 513 | void |
| 514 | tcp_connection_timers_reset (tcp_connection_t * tc) |
| 515 | { |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame] | 516 | tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 517 | int i; |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame] | 518 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 519 | for (i = 0; i < TCP_N_TIMERS; i++) |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame] | 520 | tcp_timer_reset (&wrk->timer_wheel, tc, i); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 521 | } |
| 522 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 523 | #if 0 |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 524 | typedef struct ip4_tcp_hdr |
| 525 | { |
| 526 | ip4_header_t ip; |
| 527 | tcp_header_t tcp; |
| 528 | } ip4_tcp_hdr_t; |
| 529 | |
| 530 | typedef struct ip6_tcp_hdr |
| 531 | { |
| 532 | ip6_header_t ip; |
| 533 | tcp_header_t tcp; |
| 534 | } ip6_tcp_hdr_t; |
| 535 | |
| 536 | static void |
| 537 | tcp_connection_select_lb_bucket (tcp_connection_t * tc, const dpo_id_t * dpo, |
| 538 | dpo_id_t * result) |
| 539 | { |
| 540 | const dpo_id_t *choice; |
| 541 | load_balance_t *lb; |
| 542 | int hash; |
| 543 | |
| 544 | lb = load_balance_get (dpo->dpoi_index); |
| 545 | if (tc->c_is_ip4) |
| 546 | { |
| 547 | ip4_tcp_hdr_t hdr; |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 548 | clib_memset (&hdr, 0, sizeof (hdr)); |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 549 | hdr.ip.protocol = IP_PROTOCOL_TCP; |
| 550 | hdr.ip.address_pair.src.as_u32 = tc->c_lcl_ip.ip4.as_u32; |
| 551 | hdr.ip.address_pair.dst.as_u32 = tc->c_rmt_ip.ip4.as_u32; |
| 552 | hdr.tcp.src_port = tc->c_lcl_port; |
| 553 | hdr.tcp.dst_port = tc->c_rmt_port; |
| 554 | hash = ip4_compute_flow_hash (&hdr.ip, lb->lb_hash_config); |
| 555 | } |
| 556 | else |
| 557 | { |
| 558 | ip6_tcp_hdr_t hdr; |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 559 | clib_memset (&hdr, 0, sizeof (hdr)); |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 560 | hdr.ip.protocol = IP_PROTOCOL_TCP; |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 561 | clib_memcpy_fast (&hdr.ip.src_address, &tc->c_lcl_ip.ip6, |
| 562 | sizeof (ip6_address_t)); |
| 563 | clib_memcpy_fast (&hdr.ip.dst_address, &tc->c_rmt_ip.ip6, |
| 564 | sizeof (ip6_address_t)); |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 565 | hdr.tcp.src_port = tc->c_lcl_port; |
| 566 | hdr.tcp.dst_port = tc->c_rmt_port; |
| 567 | hash = ip6_compute_flow_hash (&hdr.ip, lb->lb_hash_config); |
| 568 | } |
| 569 | choice = load_balance_get_bucket_i (lb, hash & lb->lb_n_buckets_minus_1); |
| 570 | dpo_copy (result, choice); |
| 571 | } |
| 572 | |
| 573 | fib_node_index_t |
| 574 | tcp_lookup_rmt_in_fib (tcp_connection_t * tc) |
| 575 | { |
| 576 | fib_prefix_t prefix; |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 577 | u32 fib_index; |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 578 | |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 579 | clib_memcpy_fast (&prefix.fp_addr, &tc->c_rmt_ip, sizeof (prefix.fp_addr)); |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 580 | prefix.fp_proto = tc->c_is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6; |
| 581 | prefix.fp_len = tc->c_is_ip4 ? 32 : 128; |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 582 | fib_index = fib_table_find (prefix.fp_proto, tc->c_fib_index); |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 583 | return fib_table_lookup (fib_index, &prefix); |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 584 | } |
| 585 | |
| 586 | static int |
| 587 | tcp_connection_stack_on_fib_entry (tcp_connection_t * tc) |
| 588 | { |
| 589 | dpo_id_t choice = DPO_INVALID; |
| 590 | u32 output_node_index; |
| 591 | fib_entry_t *fe; |
| 592 | |
| 593 | fe = fib_entry_get (tc->c_rmt_fei); |
| 594 | if (fe->fe_lb.dpoi_type != DPO_LOAD_BALANCE) |
| 595 | return -1; |
| 596 | |
| 597 | tcp_connection_select_lb_bucket (tc, &fe->fe_lb, &choice); |
| 598 | |
| 599 | output_node_index = |
| 600 | tc->c_is_ip4 ? tcp4_output_node.index : tcp6_output_node.index; |
| 601 | dpo_stack_from_node (output_node_index, &tc->c_rmt_dpo, &choice); |
| 602 | return 0; |
| 603 | } |
| 604 | |
| 605 | /** Stack tcp connection on peer's fib entry. |
| 606 | * |
| 607 | * This ultimately populates the dpo the connection will use to send packets. |
| 608 | */ |
| 609 | static void |
| 610 | tcp_connection_fib_attach (tcp_connection_t * tc) |
| 611 | { |
| 612 | tc->c_rmt_fei = tcp_lookup_rmt_in_fib (tc); |
| 613 | |
| 614 | ASSERT (tc->c_rmt_fei != FIB_NODE_INDEX_INVALID); |
| 615 | |
| 616 | tcp_connection_stack_on_fib_entry (tc); |
| 617 | } |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 618 | #endif /* 0 */ |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 619 | |
Florin Coras | 18e0d4f | 2019-01-02 12:22:02 -0800 | [diff] [blame] | 620 | /** |
| 621 | * Generate random iss as per rfc6528 |
| 622 | */ |
| 623 | static u32 |
| 624 | tcp_generate_random_iss (tcp_connection_t * tc) |
| 625 | { |
| 626 | tcp_main_t *tm = &tcp_main; |
| 627 | u64 tmp; |
| 628 | |
| 629 | if (tc->c_is_ip4) |
| 630 | tmp = (u64) tc->c_lcl_ip.ip4.as_u32 << 32 | (u64) tc->c_rmt_ip.ip4.as_u32; |
| 631 | else |
| 632 | tmp = tc->c_lcl_ip.ip6.as_u64[0] ^ tc->c_lcl_ip.ip6.as_u64[1] |
| 633 | ^ tc->c_rmt_ip.ip6.as_u64[0] ^ tc->c_rmt_ip.ip6.as_u64[1]; |
| 634 | |
| 635 | tmp ^= tm->iss_seed.first | ((u64) tc->c_lcl_port << 16 | tc->c_rmt_port); |
| 636 | tmp ^= tm->iss_seed.second; |
| 637 | tmp = clib_xxhash (tmp) + clib_cpu_time_now (); |
| 638 | return ((tmp >> 32) ^ (tmp & 0xffffffff)); |
| 639 | } |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 640 | |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 641 | /** |
Florin Coras | cedcf60 | 2019-08-27 12:15:43 -0700 | [diff] [blame] | 642 | * Initialize max segment size we're able to process. |
| 643 | * |
| 644 | * The value is constrained by the output interface's MTU and by the size |
| 645 | * of the IP and TCP headers (see RFC6691). It is also what we advertise |
| 646 | * to our peer. |
| 647 | */ |
| 648 | static void |
| 649 | tcp_init_rcv_mss (tcp_connection_t * tc) |
| 650 | { |
| 651 | u8 ip_hdr_len; |
| 652 | |
Florin Coras | ff19e3b | 2020-02-10 17:44:13 +0000 | [diff] [blame] | 653 | /* Already provided at connection init time */ |
| 654 | if (tc->mss) |
| 655 | return; |
| 656 | |
Florin Coras | cedcf60 | 2019-08-27 12:15:43 -0700 | [diff] [blame] | 657 | ip_hdr_len = tc->c_is_ip4 ? sizeof (ip4_header_t) : sizeof (ip6_header_t); |
| 658 | tc->mss = tcp_cfg.default_mtu - sizeof (tcp_header_t) - ip_hdr_len; |
| 659 | } |
| 660 | |
| 661 | static void |
| 662 | tcp_init_mss (tcp_connection_t * tc) |
| 663 | { |
| 664 | u16 default_min_mss = 536; |
| 665 | |
| 666 | tcp_init_rcv_mss (tc); |
| 667 | |
| 668 | /* TODO consider PMTU discovery */ |
| 669 | tc->snd_mss = clib_min (tc->rcv_opts.mss, tc->mss); |
| 670 | |
| 671 | if (tc->snd_mss < 45) |
| 672 | { |
| 673 | /* Assume that at least the min default mss works */ |
| 674 | tc->snd_mss = default_min_mss; |
| 675 | tc->rcv_opts.mss = default_min_mss; |
| 676 | } |
| 677 | |
| 678 | /* We should have enough space for 40 bytes of options */ |
| 679 | ASSERT (tc->snd_mss > 45); |
| 680 | |
Florin Coras | 7a588fc | 2021-03-05 13:30:18 -0800 | [diff] [blame] | 681 | /* If we use timestamp option, account for it and make sure |
| 682 | * the options are 4-byte aligned */ |
Florin Coras | cedcf60 | 2019-08-27 12:15:43 -0700 | [diff] [blame] | 683 | if (tcp_opts_tstamp (&tc->rcv_opts)) |
Florin Coras | 7a588fc | 2021-03-05 13:30:18 -0800 | [diff] [blame] | 684 | tc->snd_mss -= TCP_OPTION_LEN_TIMESTAMP + 2 /* alignment */; |
Florin Coras | cedcf60 | 2019-08-27 12:15:43 -0700 | [diff] [blame] | 685 | } |
| 686 | |
| 687 | /** |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 688 | * Initialize connection send variables. |
| 689 | */ |
| 690 | void |
| 691 | tcp_init_snd_vars (tcp_connection_t * tc) |
| 692 | { |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 693 | /* |
| 694 | * We use the time to randomize iss and for setting up the initial |
| 695 | * timestamp. Make sure it's updated otherwise syn and ack in the |
| 696 | * handshake may make it look as if time has flown in the opposite |
| 697 | * direction for us. |
| 698 | */ |
Florin Coras | 8f10b90 | 2021-04-02 18:32:00 -0700 | [diff] [blame] | 699 | tcp_update_time_now (tcp_get_worker (vlib_get_thread_index ())); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 700 | |
Florin Coras | cedcf60 | 2019-08-27 12:15:43 -0700 | [diff] [blame] | 701 | tcp_init_rcv_mss (tc); |
Florin Coras | 18e0d4f | 2019-01-02 12:22:02 -0800 | [diff] [blame] | 702 | tc->iss = tcp_generate_random_iss (tc); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 703 | tc->snd_una = tc->iss; |
| 704 | tc->snd_nxt = tc->iss + 1; |
Florin Coras | eedc74b | 2020-07-31 12:32:40 -0700 | [diff] [blame] | 705 | tc->srtt = 0.1 * THZ; /* 100 ms */ |
Florin Coras | f4ce6ba | 2019-11-20 18:34:58 -0800 | [diff] [blame] | 706 | |
| 707 | if (!tcp_cfg.csum_offload) |
| 708 | tc->cfg_flags |= TCP_CFG_F_NO_CSUM_OFFLOAD; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 709 | } |
| 710 | |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 711 | void |
| 712 | tcp_enable_pacing (tcp_connection_t * tc) |
| 713 | { |
Florin Coras | 36ebcff | 2019-09-12 18:36:44 -0700 | [diff] [blame] | 714 | u32 byte_rate; |
| 715 | byte_rate = tc->cwnd / (tc->srtt * TCP_TICK); |
| 716 | transport_connection_tx_pacer_init (&tc->connection, byte_rate, tc->cwnd); |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 717 | tc->mrtt_us = (u32) ~ 0; |
| 718 | } |
| 719 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 720 | /** Initialize tcp connection variables |
| 721 | * |
| 722 | * Should be called after having received a msg from the peer, i.e., a SYN or |
| 723 | * a SYNACK, such that connection options have already been exchanged. */ |
| 724 | void |
| 725 | tcp_connection_init_vars (tcp_connection_t * tc) |
| 726 | { |
| 727 | tcp_connection_timers_init (tc); |
Florin Coras | c834341 | 2017-05-04 14:25:50 -0700 | [diff] [blame] | 728 | tcp_init_mss (tc); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 729 | scoreboard_init (&tc->sack_sb); |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 730 | if (tc->state == TCP_STATE_SYN_RCVD) |
| 731 | tcp_init_snd_vars (tc); |
| 732 | |
Florin Coras | 36ebcff | 2019-09-12 18:36:44 -0700 | [diff] [blame] | 733 | tcp_cc_init (tc); |
| 734 | |
Florin Coras | 1c8ff63 | 2018-05-17 13:28:34 -0700 | [diff] [blame] | 735 | if (!tc->c_is_ip4 && ip6_address_is_link_local_unicast (&tc->c_rmt_ip6)) |
| 736 | tcp_add_del_adjacency (tc, 1); |
| 737 | |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 738 | /* tcp_connection_fib_attach (tc); */ |
| 739 | |
| 740 | if (transport_connection_is_tx_paced (&tc->connection) |
Florin Coras | 9094b5c | 2019-08-12 14:17:47 -0700 | [diff] [blame] | 741 | || tcp_cfg.enable_tx_pacing) |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 742 | tcp_enable_pacing (tc); |
Florin Coras | 5281473 | 2019-06-12 15:38:19 -0700 | [diff] [blame] | 743 | |
Florin Coras | bbcfaac | 2019-10-10 13:52:04 -0700 | [diff] [blame] | 744 | if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE) |
Florin Coras | 5281473 | 2019-06-12 15:38:19 -0700 | [diff] [blame] | 745 | tcp_bt_init (tc); |
Florin Coras | edfe0ee | 2019-07-29 18:13:25 -0700 | [diff] [blame] | 746 | |
Florin Coras | bbcfaac | 2019-10-10 13:52:04 -0700 | [diff] [blame] | 747 | if (!tcp_cfg.allow_tso) |
| 748 | tc->cfg_flags |= TCP_CFG_F_NO_TSO; |
| 749 | |
Florin Coras | edfe0ee | 2019-07-29 18:13:25 -0700 | [diff] [blame] | 750 | tc->start_ts = tcp_time_now_us (tc->c_thread_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 751 | } |
| 752 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 753 | static int |
| 754 | tcp_alloc_custom_local_endpoint (tcp_main_t * tm, ip46_address_t * lcl_addr, |
| 755 | u16 * lcl_port, u8 is_ip4) |
| 756 | { |
| 757 | int index, port; |
| 758 | if (is_ip4) |
| 759 | { |
Florin Coras | 9094b5c | 2019-08-12 14:17:47 -0700 | [diff] [blame] | 760 | index = tm->last_v4_addr_rotor++; |
| 761 | if (tm->last_v4_addr_rotor >= vec_len (tcp_cfg.ip4_src_addrs)) |
| 762 | tm->last_v4_addr_rotor = 0; |
| 763 | lcl_addr->ip4.as_u32 = tcp_cfg.ip4_src_addrs[index].as_u32; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 764 | } |
| 765 | else |
| 766 | { |
Florin Coras | 9094b5c | 2019-08-12 14:17:47 -0700 | [diff] [blame] | 767 | index = tm->last_v6_addr_rotor++; |
| 768 | if (tm->last_v6_addr_rotor >= vec_len (tcp_cfg.ip6_src_addrs)) |
| 769 | tm->last_v6_addr_rotor = 0; |
| 770 | clib_memcpy_fast (&lcl_addr->ip6, &tcp_cfg.ip6_src_addrs[index], |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 771 | sizeof (ip6_address_t)); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 772 | } |
| 773 | port = transport_alloc_local_port (TRANSPORT_PROTO_TCP, lcl_addr); |
| 774 | if (port < 1) |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 775 | return SESSION_E_NOPORT; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 776 | *lcl_port = port; |
| 777 | return 0; |
| 778 | } |
| 779 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 780 | static int |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 781 | tcp_session_open (transport_endpoint_cfg_t * rmt) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 782 | { |
| 783 | tcp_main_t *tm = vnet_get_tcp_main (); |
| 784 | tcp_connection_t *tc; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 785 | ip46_address_t lcl_addr; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 786 | u16 lcl_port; |
| 787 | int rv; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 788 | |
| 789 | /* |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 790 | * Allocate local endpoint |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 791 | */ |
Florin Coras | 9094b5c | 2019-08-12 14:17:47 -0700 | [diff] [blame] | 792 | if ((rmt->is_ip4 && vec_len (tcp_cfg.ip4_src_addrs)) |
| 793 | || (!rmt->is_ip4 && vec_len (tcp_cfg.ip6_src_addrs))) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 794 | rv = tcp_alloc_custom_local_endpoint (tm, &lcl_addr, &lcl_port, |
| 795 | rmt->is_ip4); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 796 | else |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 797 | rv = transport_alloc_local_endpoint (TRANSPORT_PROTO_TCP, |
| 798 | rmt, &lcl_addr, &lcl_port); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 799 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 800 | if (rv) |
Florin Coras | 1e8d949 | 2020-04-10 14:51:46 +0000 | [diff] [blame] | 801 | { |
| 802 | if (rv != SESSION_E_PORTINUSE) |
| 803 | return rv; |
| 804 | |
| 805 | if (session_lookup_connection (rmt->fib_index, &lcl_addr, &rmt->ip, |
Florin Coras | 41a6fba | 2021-06-12 11:47:37 -0700 | [diff] [blame^] | 806 | lcl_port, rmt->port, TRANSPORT_PROTO_TCP, |
Florin Coras | 1e8d949 | 2020-04-10 14:51:46 +0000 | [diff] [blame] | 807 | rmt->is_ip4)) |
| 808 | return SESSION_E_PORTINUSE; |
| 809 | |
| 810 | /* 5-tuple is available so increase lcl endpoint refcount and proceed |
| 811 | * with connection allocation */ |
Florin Coras | 41a6fba | 2021-06-12 11:47:37 -0700 | [diff] [blame^] | 812 | transport_share_local_endpoint (TRANSPORT_PROTO_TCP, &lcl_addr, |
Florin Coras | 1e8d949 | 2020-04-10 14:51:46 +0000 | [diff] [blame] | 813 | lcl_port); |
| 814 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 815 | |
| 816 | /* |
| 817 | * Create connection and send SYN |
| 818 | */ |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 819 | tc = tcp_half_open_connection_new (); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 820 | ip_copy (&tc->c_rmt_ip, &rmt->ip, rmt->is_ip4); |
| 821 | ip_copy (&tc->c_lcl_ip, &lcl_addr, rmt->is_ip4); |
Florin Coras | 0e49568 | 2017-09-19 22:27:18 -0700 | [diff] [blame] | 822 | tc->c_rmt_port = rmt->port; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 823 | tc->c_lcl_port = clib_host_to_net_u16 (lcl_port); |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 824 | tc->c_is_ip4 = rmt->is_ip4; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 825 | tc->c_proto = TRANSPORT_PROTO_TCP; |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 826 | tc->c_fib_index = rmt->fib_index; |
Florin Coras | 12f6936 | 2019-08-16 09:44:00 -0700 | [diff] [blame] | 827 | tc->cc_algo = tcp_cc_algo_get (tcp_cfg.cc_algo); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 828 | /* The other connection vars will be initialized after SYN ACK */ |
| 829 | tcp_connection_timers_init (tc); |
Florin Coras | ff19e3b | 2020-02-10 17:44:13 +0000 | [diff] [blame] | 830 | tc->mss = rmt->mss; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 831 | |
Florin Coras | a436a42 | 2019-08-20 07:09:31 -0700 | [diff] [blame] | 832 | TCP_EVT (TCP_EVT_OPEN, tc); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 833 | tc->state = TCP_STATE_SYN_SENT; |
Florin Coras | 4eeeaaf | 2017-09-05 14:03:37 -0400 | [diff] [blame] | 834 | tcp_init_snd_vars (tc); |
Florin Coras | 6534b7a | 2017-07-18 05:38:03 -0400 | [diff] [blame] | 835 | tcp_send_syn (tc); |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 836 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 837 | return tc->c_c_index; |
| 838 | } |
| 839 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 840 | static u8 * |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 841 | format_tcp_session (u8 * s, va_list * args) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 842 | { |
| 843 | u32 tci = va_arg (*args, u32); |
| 844 | u32 thread_index = va_arg (*args, u32); |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 845 | u32 verbose = va_arg (*args, u32); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 846 | tcp_connection_t *tc; |
| 847 | |
| 848 | tc = tcp_connection_get (tci, thread_index); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 849 | if (tc) |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 850 | s = format (s, "%U", format_tcp_connection, tc, verbose); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 851 | else |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 852 | s = format (s, "empty\n"); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 853 | return s; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 854 | } |
| 855 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 856 | static u8 * |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 857 | format_tcp_listener_session (u8 * s, va_list * args) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 858 | { |
| 859 | u32 tci = va_arg (*args, u32); |
Aloys Augustin | a0abbff | 2019-07-12 12:16:16 +0200 | [diff] [blame] | 860 | u32 __clib_unused thread_index = va_arg (*args, u32); |
Florin Coras | 3389dd2 | 2019-02-01 18:00:05 -0800 | [diff] [blame] | 861 | u32 verbose = va_arg (*args, u32); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 862 | tcp_connection_t *tc = tcp_listener_get (tci); |
Florin Coras | 7bf6ed6 | 2020-09-23 12:02:08 -0700 | [diff] [blame] | 863 | s = format (s, "%-" SESSION_CLI_ID_LEN "U", format_tcp_connection_id, tc); |
Florin Coras | 3389dd2 | 2019-02-01 18:00:05 -0800 | [diff] [blame] | 864 | if (verbose) |
Florin Coras | 7bf6ed6 | 2020-09-23 12:02:08 -0700 | [diff] [blame] | 865 | s = format (s, "%-" SESSION_CLI_STATE_LEN "U", format_tcp_state, |
| 866 | tc->state); |
Florin Coras | 3389dd2 | 2019-02-01 18:00:05 -0800 | [diff] [blame] | 867 | return s; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 868 | } |
| 869 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 870 | static u8 * |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 871 | format_tcp_half_open_session (u8 * s, va_list * args) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 872 | { |
| 873 | u32 tci = va_arg (*args, u32); |
Aloys Augustin | a0abbff | 2019-07-12 12:16:16 +0200 | [diff] [blame] | 874 | u32 __clib_unused thread_index = va_arg (*args, u32); |
Florin Coras | ea72764 | 2021-05-07 19:39:43 -0700 | [diff] [blame] | 875 | u32 verbose = va_arg (*args, u32); |
| 876 | tcp_connection_t *tc; |
| 877 | u8 *state = 0; |
| 878 | |
| 879 | tc = tcp_half_open_connection_get (tci); |
| 880 | if (tc->flags & TCP_CONN_HALF_OPEN_DONE) |
| 881 | state = format (state, "%s", "CLOSED"); |
| 882 | else |
| 883 | state = format (state, "%U", format_tcp_state, tc->state); |
| 884 | s = format (s, "%-" SESSION_CLI_ID_LEN "U", format_tcp_connection_id, tc); |
| 885 | if (verbose) |
| 886 | s = format (s, "%-" SESSION_CLI_STATE_LEN "v", state); |
| 887 | vec_free (state); |
| 888 | return s; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 889 | } |
| 890 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 891 | static transport_connection_t * |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 892 | tcp_session_get_transport (u32 conn_index, u32 thread_index) |
| 893 | { |
| 894 | tcp_connection_t *tc = tcp_connection_get (conn_index, thread_index); |
Florin Coras | 5bb23ec | 2019-08-31 09:45:13 -0700 | [diff] [blame] | 895 | if (PREDICT_FALSE (!tc)) |
| 896 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 897 | return &tc->connection; |
| 898 | } |
| 899 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 900 | static transport_connection_t * |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 901 | tcp_half_open_session_get_transport (u32 conn_index) |
| 902 | { |
| 903 | tcp_connection_t *tc = tcp_half_open_connection_get (conn_index); |
| 904 | return &tc->connection; |
| 905 | } |
| 906 | |
Florin Coras | 04ae827 | 2021-04-12 19:55:37 -0700 | [diff] [blame] | 907 | static int |
| 908 | tcp_set_attribute (tcp_connection_t *tc, transport_endpt_attr_t *attr) |
| 909 | { |
| 910 | int rv = 0; |
| 911 | |
| 912 | switch (attr->type) |
| 913 | { |
| 914 | case TRANSPORT_ENDPT_ATTR_NEXT_OUTPUT_NODE: |
| 915 | tc->next_node_index = attr->next_output_node & 0xffffffff; |
| 916 | tc->next_node_opaque = attr->next_output_node >> 32; |
| 917 | break; |
| 918 | case TRANSPORT_ENDPT_ATTR_MSS: |
| 919 | tc->mss = attr->mss; |
| 920 | tc->snd_mss = clib_min (tc->snd_mss, tc->mss); |
| 921 | break; |
| 922 | case TRANSPORT_ENDPT_ATTR_FLAGS: |
| 923 | if (attr->flags & TRANSPORT_ENDPT_ATTR_F_CSUM_OFFLOAD) |
| 924 | tc->cfg_flags |= TCP_CFG_F_NO_CSUM_OFFLOAD; |
| 925 | else |
| 926 | tc->cfg_flags &= ~TCP_CFG_F_NO_CSUM_OFFLOAD; |
| 927 | if (attr->flags & TRANSPORT_ENDPT_ATTR_F_GSO) |
| 928 | { |
| 929 | if (!(tc->cfg_flags & TCP_CFG_F_TSO)) |
| 930 | tcp_check_gso (tc); |
| 931 | tc->cfg_flags &= ~TCP_CFG_F_NO_TSO; |
| 932 | } |
| 933 | else |
| 934 | { |
| 935 | tc->cfg_flags |= TCP_CFG_F_NO_TSO; |
| 936 | tc->cfg_flags &= ~TCP_CFG_F_TSO; |
| 937 | } |
Florin Coras | 7fdf8b2 | 2021-04-15 08:50:00 -0700 | [diff] [blame] | 938 | if (attr->flags & TRANSPORT_ENDPT_ATTR_F_RATE_SAMPLING) |
| 939 | { |
| 940 | if (!(tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE)) |
| 941 | tcp_bt_init (tc); |
| 942 | tc->cfg_flags |= TCP_CFG_F_RATE_SAMPLE; |
| 943 | } |
| 944 | else |
| 945 | { |
| 946 | if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE) |
| 947 | tcp_bt_cleanup (tc); |
| 948 | tc->cfg_flags &= ~TCP_CFG_F_RATE_SAMPLE; |
| 949 | } |
Florin Coras | 04ae827 | 2021-04-12 19:55:37 -0700 | [diff] [blame] | 950 | break; |
| 951 | case TRANSPORT_ENDPT_ATTR_CC_ALGO: |
| 952 | if (tc->cc_algo == tcp_cc_algo_get (attr->cc_algo)) |
| 953 | break; |
| 954 | tcp_cc_cleanup (tc); |
| 955 | tc->cc_algo = tcp_cc_algo_get (attr->cc_algo); |
| 956 | tcp_cc_init (tc); |
| 957 | break; |
| 958 | default: |
| 959 | rv = -1; |
| 960 | break; |
| 961 | } |
| 962 | |
| 963 | return rv; |
| 964 | } |
| 965 | |
| 966 | static int |
| 967 | tcp_get_attribute (tcp_connection_t *tc, transport_endpt_attr_t *attr) |
| 968 | { |
| 969 | int rv = 0; |
| 970 | u64 non; |
| 971 | |
| 972 | switch (attr->type) |
| 973 | { |
| 974 | case TRANSPORT_ENDPT_ATTR_NEXT_OUTPUT_NODE: |
| 975 | non = (u64) tc->next_node_opaque << 32 | tc->next_node_index; |
| 976 | attr->next_output_node = non; |
| 977 | break; |
| 978 | case TRANSPORT_ENDPT_ATTR_MSS: |
| 979 | attr->mss = tc->snd_mss; |
| 980 | break; |
| 981 | case TRANSPORT_ENDPT_ATTR_FLAGS: |
| 982 | attr->flags = 0; |
| 983 | if (!(tc->cfg_flags & TCP_CFG_F_NO_CSUM_OFFLOAD)) |
| 984 | attr->flags |= TRANSPORT_ENDPT_ATTR_F_CSUM_OFFLOAD; |
| 985 | if (tc->cfg_flags & TCP_CFG_F_TSO) |
| 986 | attr->flags |= TRANSPORT_ENDPT_ATTR_F_GSO; |
Florin Coras | 7fdf8b2 | 2021-04-15 08:50:00 -0700 | [diff] [blame] | 987 | if (tc->cfg_flags & TCP_CFG_F_RATE_SAMPLE) |
| 988 | attr->flags |= TRANSPORT_ENDPT_ATTR_F_RATE_SAMPLING; |
Florin Coras | 04ae827 | 2021-04-12 19:55:37 -0700 | [diff] [blame] | 989 | break; |
| 990 | case TRANSPORT_ENDPT_ATTR_CC_ALGO: |
| 991 | attr->cc_algo = tc->cc_algo - tcp_main.cc_algos; |
| 992 | break; |
| 993 | default: |
| 994 | rv = -1; |
| 995 | break; |
| 996 | } |
| 997 | |
| 998 | return rv; |
| 999 | } |
| 1000 | |
| 1001 | static int |
| 1002 | tcp_session_attribute (u32 conn_index, u32 thread_index, u8 is_get, |
| 1003 | transport_endpt_attr_t *attr) |
| 1004 | { |
| 1005 | tcp_connection_t *tc = tcp_connection_get (conn_index, thread_index); |
| 1006 | |
| 1007 | if (PREDICT_FALSE (!tc)) |
| 1008 | return -1; |
| 1009 | |
| 1010 | if (is_get) |
| 1011 | return tcp_get_attribute (tc, attr); |
| 1012 | else |
| 1013 | return tcp_set_attribute (tc, attr); |
| 1014 | } |
| 1015 | |
Simon Zhang | 1146ff4 | 2019-09-02 22:54:00 +0800 | [diff] [blame] | 1016 | static u16 |
| 1017 | tcp_session_cal_goal_size (tcp_connection_t * tc) |
| 1018 | { |
| 1019 | u16 goal_size = tc->snd_mss; |
| 1020 | |
Simon Zhang | 23c3d34 | 2020-09-15 23:40:28 +0800 | [diff] [blame] | 1021 | goal_size = tcp_cfg.max_gso_size - tc->snd_mss % tcp_cfg.max_gso_size; |
Simon Zhang | 1146ff4 | 2019-09-02 22:54:00 +0800 | [diff] [blame] | 1022 | goal_size = clib_min (goal_size, tc->snd_wnd / 2); |
| 1023 | |
Simon Zhang | 8a047ed | 2019-09-24 21:16:56 +0800 | [diff] [blame] | 1024 | return goal_size > tc->snd_mss ? goal_size : tc->snd_mss; |
Simon Zhang | 1146ff4 | 2019-09-02 22:54:00 +0800 | [diff] [blame] | 1025 | } |
| 1026 | |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 1027 | always_inline u32 |
| 1028 | tcp_round_snd_space (tcp_connection_t * tc, u32 snd_space) |
| 1029 | { |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1030 | if (PREDICT_FALSE (tc->snd_wnd < tc->snd_mss)) |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 1031 | { |
Florin Coras | db84e57 | 2017-05-09 18:54:52 -0700 | [diff] [blame] | 1032 | return tc->snd_wnd <= snd_space ? tc->snd_wnd : 0; |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 1033 | } |
| 1034 | |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 1035 | /* If not snd_wnd constrained and we can't write at least a segment, |
| 1036 | * don't try at all */ |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1037 | if (PREDICT_FALSE (snd_space < tc->snd_mss)) |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 1038 | return snd_space < tc->cwnd ? 0 : snd_space; |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 1039 | |
| 1040 | /* round down to mss multiple */ |
| 1041 | return snd_space - (snd_space % tc->snd_mss); |
| 1042 | } |
| 1043 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1044 | /** |
| 1045 | * Compute tx window session is allowed to fill. |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 1046 | * |
| 1047 | * Takes into account available send space, snd_mss and the congestion |
| 1048 | * state of the connection. If possible, the value returned is a multiple |
| 1049 | * of snd_mss. |
| 1050 | * |
| 1051 | * @param tc tcp connection |
| 1052 | * @return number of bytes session is allowed to write |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1053 | */ |
Florin Coras | 45ca73f | 2018-09-27 09:19:29 -0700 | [diff] [blame] | 1054 | static inline u32 |
| 1055 | tcp_snd_space_inline (tcp_connection_t * tc) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1056 | { |
Florin Coras | 36ebcff | 2019-09-12 18:36:44 -0700 | [diff] [blame] | 1057 | int snd_space; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1058 | |
Florin Coras | 7d8100f | 2020-10-21 23:24:53 -0700 | [diff] [blame] | 1059 | /* Fast path is disabled when recovery is on. @ref tcp_session_custom_tx |
| 1060 | * controls both retransmits and the sending of new data while congested |
| 1061 | */ |
| 1062 | if (PREDICT_FALSE (tcp_in_cong_recovery (tc) |
Florin Coras | 4af830c | 2018-12-04 09:21:36 -0800 | [diff] [blame] | 1063 | || tc->state == TCP_STATE_CLOSED)) |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1064 | return 0; |
| 1065 | |
| 1066 | snd_space = tcp_available_output_snd_space (tc); |
| 1067 | |
Florin Coras | 36ebcff | 2019-09-12 18:36:44 -0700 | [diff] [blame] | 1068 | /* If we got dupacks or sacked bytes but we're not yet in recovery, try |
| 1069 | * to force the peer to send enough dupacks to start retransmitting as |
| 1070 | * per Limited Transmit (RFC3042) |
| 1071 | */ |
Florin Coras | cc4d6d0 | 2020-07-29 23:03:39 -0700 | [diff] [blame] | 1072 | if (PREDICT_FALSE (tc->rcv_dupacks || tc->sack_sb.sacked_bytes)) |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1073 | { |
Florin Coras | cc4d6d0 | 2020-07-29 23:03:39 -0700 | [diff] [blame] | 1074 | int snt_limited, n_pkts; |
| 1075 | |
| 1076 | n_pkts = tcp_opts_sack_permitted (&tc->rcv_opts) |
| 1077 | ? tc->sack_sb.reorder - 1 : 2; |
| 1078 | |
| 1079 | if ((seq_lt (tc->limited_transmit, tc->snd_nxt - n_pkts * tc->snd_mss) |
| 1080 | || seq_gt (tc->limited_transmit, tc->snd_nxt))) |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1081 | tc->limited_transmit = tc->snd_nxt; |
Florin Coras | 36ebcff | 2019-09-12 18:36:44 -0700 | [diff] [blame] | 1082 | |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1083 | ASSERT (seq_leq (tc->limited_transmit, tc->snd_nxt)); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 1084 | |
Florin Coras | cc4d6d0 | 2020-07-29 23:03:39 -0700 | [diff] [blame] | 1085 | snt_limited = tc->snd_nxt - tc->limited_transmit; |
| 1086 | snd_space = clib_max (n_pkts * tc->snd_mss - snt_limited, 0); |
Florin Coras | 3af90fc | 2017-05-03 21:09:42 -0700 | [diff] [blame] | 1087 | } |
Florin Coras | 36ee9f1 | 2018-11-02 12:52:10 -0700 | [diff] [blame] | 1088 | return tcp_round_snd_space (tc, snd_space); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1089 | } |
| 1090 | |
Florin Coras | 45ca73f | 2018-09-27 09:19:29 -0700 | [diff] [blame] | 1091 | u32 |
| 1092 | tcp_snd_space (tcp_connection_t * tc) |
| 1093 | { |
| 1094 | return tcp_snd_space_inline (tc); |
| 1095 | } |
| 1096 | |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 1097 | static int |
| 1098 | tcp_session_send_params (transport_connection_t * trans_conn, |
| 1099 | transport_send_params_t * sp) |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 1100 | { |
| 1101 | tcp_connection_t *tc = (tcp_connection_t *) trans_conn; |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 1102 | |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 1103 | /* Ensure snd_mss does accurately reflect the amount of data we can push |
| 1104 | * in a segment. This also makes sure that options are updated according to |
| 1105 | * the current state of the connection. */ |
| 1106 | tcp_update_burst_snd_vars (tc); |
| 1107 | |
| 1108 | if (PREDICT_FALSE (tc->cfg_flags & TCP_CFG_F_TSO)) |
| 1109 | sp->snd_mss = tcp_session_cal_goal_size (tc); |
| 1110 | else |
| 1111 | sp->snd_mss = tc->snd_mss; |
| 1112 | |
| 1113 | sp->snd_space = clib_min (tcp_snd_space_inline (tc), |
| 1114 | tc->snd_wnd - (tc->snd_nxt - tc->snd_una)); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1115 | |
| 1116 | ASSERT (seq_geq (tc->snd_nxt, tc->snd_una)); |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1117 | /* This still works if fast retransmit is on */ |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 1118 | sp->tx_offset = tc->snd_nxt - tc->snd_una; |
| 1119 | |
Florin Coras | 6080e0d | 2020-03-13 20:39:43 +0000 | [diff] [blame] | 1120 | sp->flags = sp->snd_space ? 0 : TRANSPORT_SND_F_DESCHED; |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 1121 | |
| 1122 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1123 | } |
| 1124 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1125 | static void |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1126 | tcp_timer_waitclose_handler (tcp_connection_t * tc) |
| 1127 | { |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 1128 | tcp_worker_ctx_t *wrk = tcp_get_worker (tc->c_thread_index); |
| 1129 | |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1130 | switch (tc->state) |
| 1131 | { |
| 1132 | case TCP_STATE_CLOSE_WAIT: |
| 1133 | tcp_connection_timers_reset (tc); |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1134 | /* App never returned with a close */ |
| 1135 | if (!(tc->flags & TCP_CONN_FINPNDG)) |
| 1136 | { |
| 1137 | tcp_connection_set_state (tc, TCP_STATE_CLOSED); |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 1138 | session_transport_closed_notify (&tc->connection); |
| 1139 | tcp_program_cleanup (wrk, tc); |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame] | 1140 | tcp_worker_stats_inc (wrk, to_closewait, 1); |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1141 | break; |
| 1142 | } |
| 1143 | |
| 1144 | /* Send FIN either way and switch to LAST_ACK. */ |
| 1145 | tcp_cong_recovery_off (tc); |
| 1146 | /* Make sure we don't try to send unsent data */ |
| 1147 | tc->snd_nxt = tc->snd_una; |
| 1148 | tcp_send_fin (tc); |
| 1149 | tcp_connection_set_state (tc, TCP_STATE_LAST_ACK); |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 1150 | session_transport_closed_notify (&tc->connection); |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1151 | |
| 1152 | /* Make sure we don't wait in LAST ACK forever */ |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame] | 1153 | tcp_timer_set (&wrk->timer_wheel, tc, TCP_TIMER_WAITCLOSE, |
| 1154 | tcp_cfg.lastack_time); |
| 1155 | tcp_worker_stats_inc (wrk, to_closewait2, 1); |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1156 | |
| 1157 | /* Don't delete the connection yet */ |
| 1158 | break; |
| 1159 | case TCP_STATE_FIN_WAIT_1: |
| 1160 | tcp_connection_timers_reset (tc); |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1161 | if (tc->flags & TCP_CONN_FINPNDG) |
| 1162 | { |
| 1163 | /* If FIN pending, we haven't sent everything, but we did try. |
| 1164 | * Notify session layer that transport is closed. */ |
| 1165 | tcp_connection_set_state (tc, TCP_STATE_CLOSED); |
| 1166 | tcp_send_reset (tc); |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 1167 | tcp_program_cleanup (wrk, tc); |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1168 | } |
| 1169 | else |
| 1170 | { |
| 1171 | /* We've sent the fin but no progress. Close the connection and |
| 1172 | * to make sure everything is flushed, setup a cleanup timer */ |
| 1173 | tcp_connection_set_state (tc, TCP_STATE_CLOSED); |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 1174 | tcp_program_cleanup (wrk, tc); |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1175 | } |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 1176 | session_transport_closed_notify (&tc->connection); |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame] | 1177 | tcp_worker_stats_inc (wrk, to_finwait1, 1); |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1178 | break; |
| 1179 | case TCP_STATE_LAST_ACK: |
| 1180 | tcp_connection_timers_reset (tc); |
| 1181 | tcp_connection_set_state (tc, TCP_STATE_CLOSED); |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1182 | session_transport_closed_notify (&tc->connection); |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 1183 | tcp_program_cleanup (wrk, tc); |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame] | 1184 | tcp_worker_stats_inc (wrk, to_lastack, 1); |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1185 | break; |
| 1186 | case TCP_STATE_CLOSING: |
| 1187 | tcp_connection_timers_reset (tc); |
| 1188 | tcp_connection_set_state (tc, TCP_STATE_CLOSED); |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1189 | session_transport_closed_notify (&tc->connection); |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 1190 | tcp_program_cleanup (wrk, tc); |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame] | 1191 | tcp_worker_stats_inc (wrk, to_closing, 1); |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1192 | break; |
| 1193 | case TCP_STATE_FIN_WAIT_2: |
| 1194 | tcp_send_reset (tc); |
| 1195 | tcp_connection_timers_reset (tc); |
| 1196 | tcp_connection_set_state (tc, TCP_STATE_CLOSED); |
| 1197 | session_transport_closed_notify (&tc->connection); |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 1198 | tcp_program_cleanup (wrk, tc); |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame] | 1199 | tcp_worker_stats_inc (wrk, to_finwait2, 1); |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 1200 | break; |
| 1201 | case TCP_STATE_TIME_WAIT: |
| 1202 | tcp_connection_set_state (tc, TCP_STATE_CLOSED); |
| 1203 | tcp_program_cleanup (wrk, tc); |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1204 | break; |
| 1205 | default: |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 1206 | clib_warning ("waitclose in state: %U", format_tcp_state, tc->state); |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1207 | break; |
| 1208 | } |
| 1209 | } |
| 1210 | |
| 1211 | /* *INDENT-OFF* */ |
| 1212 | static timer_expiration_handler *timer_expiration_handlers[TCP_N_TIMERS] = |
| 1213 | { |
| 1214 | tcp_timer_retransmit_handler, |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1215 | tcp_timer_persist_handler, |
| 1216 | tcp_timer_waitclose_handler, |
| 1217 | tcp_timer_retransmit_syn_handler, |
| 1218 | }; |
| 1219 | /* *INDENT-ON* */ |
| 1220 | |
| 1221 | static void |
| 1222 | tcp_dispatch_pending_timers (tcp_worker_ctx_t * wrk) |
| 1223 | { |
| 1224 | u32 n_timers, connection_index, timer_id, thread_index, timer_handle; |
| 1225 | tcp_connection_t *tc; |
| 1226 | int i; |
| 1227 | |
| 1228 | if (!(n_timers = clib_fifo_elts (wrk->pending_timers))) |
| 1229 | return; |
| 1230 | |
| 1231 | thread_index = wrk->vm->thread_index; |
Florin Coras | a9d8cb4 | 2020-02-20 05:45:31 +0000 | [diff] [blame] | 1232 | for (i = 0; i < clib_min (n_timers, wrk->max_timers_per_loop); i++) |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1233 | { |
| 1234 | clib_fifo_sub1 (wrk->pending_timers, timer_handle); |
| 1235 | connection_index = timer_handle & 0x0FFFFFFF; |
| 1236 | timer_id = timer_handle >> 28; |
| 1237 | |
| 1238 | if (PREDICT_TRUE (timer_id != TCP_TIMER_RETRANSMIT_SYN)) |
| 1239 | tc = tcp_connection_get (connection_index, thread_index); |
| 1240 | else |
| 1241 | tc = tcp_half_open_connection_get (connection_index); |
| 1242 | |
| 1243 | if (PREDICT_FALSE (!tc)) |
| 1244 | continue; |
| 1245 | |
Florin Coras | 1caf7f1 | 2020-07-16 10:05:02 -0700 | [diff] [blame] | 1246 | /* Skip if the timer is not pending. Probably it was reset while |
Florin Coras | aa04395 | 2020-10-08 13:33:20 -0700 | [diff] [blame] | 1247 | * waiting for dispatch */ |
Florin Coras | 1caf7f1 | 2020-07-16 10:05:02 -0700 | [diff] [blame] | 1248 | if (PREDICT_FALSE (!(tc->pending_timers & (1 << timer_id)))) |
| 1249 | continue; |
| 1250 | |
| 1251 | tc->pending_timers &= ~(1 << timer_id); |
| 1252 | |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1253 | /* Skip timer if it was rearmed while pending dispatch */ |
| 1254 | if (PREDICT_FALSE (tc->timers[timer_id] != TCP_TIMER_HANDLE_INVALID)) |
| 1255 | continue; |
| 1256 | |
| 1257 | (*timer_expiration_handlers[timer_id]) (tc); |
| 1258 | } |
Florin Coras | a9d8cb4 | 2020-02-20 05:45:31 +0000 | [diff] [blame] | 1259 | |
| 1260 | if (thread_index == 0 && clib_fifo_elts (wrk->pending_timers)) |
Florin Coras | 5484daa | 2020-03-27 23:55:06 +0000 | [diff] [blame] | 1261 | session_queue_run_on_main_thread (wrk->vm); |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1262 | } |
| 1263 | |
| 1264 | static void |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 1265 | tcp_handle_cleanups (tcp_worker_ctx_t * wrk, clib_time_type_t now) |
| 1266 | { |
| 1267 | u32 thread_index = wrk->vm->thread_index; |
| 1268 | tcp_cleanup_req_t *req; |
| 1269 | tcp_connection_t *tc; |
| 1270 | |
| 1271 | while (clib_fifo_elts (wrk->pending_cleanups)) |
| 1272 | { |
| 1273 | req = clib_fifo_head (wrk->pending_cleanups); |
| 1274 | if (req->free_time > now) |
| 1275 | break; |
| 1276 | clib_fifo_sub2 (wrk->pending_cleanups, req); |
| 1277 | tc = tcp_connection_get (req->connection_index, thread_index); |
Florin Coras | 9f4db3c | 2020-03-10 19:34:28 +0000 | [diff] [blame] | 1278 | if (PREDICT_FALSE (!tc)) |
| 1279 | continue; |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 1280 | session_transport_delete_notify (&tc->connection); |
| 1281 | tcp_connection_cleanup (tc); |
| 1282 | } |
| 1283 | } |
| 1284 | |
| 1285 | static void |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1286 | tcp_update_time (f64 now, u8 thread_index) |
| 1287 | { |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1288 | tcp_worker_ctx_t *wrk = tcp_get_worker (thread_index); |
| 1289 | |
Florin Coras | 8f10b90 | 2021-04-02 18:32:00 -0700 | [diff] [blame] | 1290 | tcp_set_time_now (wrk, now); |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 1291 | tcp_handle_cleanups (wrk, now); |
Florin Coras | 49036a5 | 2020-10-08 09:28:32 -0700 | [diff] [blame] | 1292 | tcp_timer_expire_timers (&wrk->timer_wheel, now); |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1293 | tcp_dispatch_pending_timers (wrk); |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1294 | } |
| 1295 | |
Florin Coras | 42ceddb | 2018-12-12 10:56:01 -0800 | [diff] [blame] | 1296 | static void |
| 1297 | tcp_session_flush_data (transport_connection_t * tconn) |
| 1298 | { |
| 1299 | tcp_connection_t *tc = (tcp_connection_t *) tconn; |
| 1300 | if (tc->flags & TCP_CONN_PSH_PENDING) |
| 1301 | return; |
| 1302 | tc->flags |= TCP_CONN_PSH_PENDING; |
Florin Coras | 4759683 | 2019-03-12 18:58:54 -0700 | [diff] [blame] | 1303 | tc->psh_seq = tc->snd_una + transport_max_tx_dequeue (tconn) - 1; |
Florin Coras | 42ceddb | 2018-12-12 10:56:01 -0800 | [diff] [blame] | 1304 | } |
| 1305 | |
Florin Coras | 5a41fd5 | 2021-04-19 10:17:26 -0700 | [diff] [blame] | 1306 | static int |
| 1307 | tcp_session_app_rx_evt (transport_connection_t *conn) |
| 1308 | { |
| 1309 | tcp_connection_t *tc = (tcp_connection_t *) conn; |
| 1310 | u32 min_free, lo = 4 << 10, hi = 128 << 10; |
| 1311 | |
| 1312 | if (!(tc->flags & TCP_CONN_ZERO_RWND_SENT)) |
| 1313 | return 0; |
| 1314 | |
| 1315 | min_free = clib_clamp (transport_rx_fifo_size (conn) >> 3, lo, hi); |
| 1316 | if (transport_max_rx_enqueue (conn) < min_free) |
| 1317 | { |
| 1318 | transport_rx_fifo_req_deq_ntf (conn); |
| 1319 | return 0; |
| 1320 | } |
| 1321 | |
| 1322 | tcp_send_ack (tc); |
| 1323 | |
| 1324 | return 0; |
| 1325 | } |
| 1326 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1327 | /* *INDENT-OFF* */ |
Florin Coras | 04e5344 | 2017-07-16 17:12:15 -0700 | [diff] [blame] | 1328 | const static transport_proto_vft_t tcp_proto = { |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1329 | .enable = vnet_tcp_enable_disable, |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 1330 | .start_listen = tcp_session_bind, |
| 1331 | .stop_listen = tcp_session_unbind, |
Florin Coras | 8b20bf5 | 2018-06-14 14:55:50 -0700 | [diff] [blame] | 1332 | .push_header = tcp_session_push_header, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1333 | .get_connection = tcp_session_get_transport, |
| 1334 | .get_listener = tcp_session_get_listener, |
| 1335 | .get_half_open = tcp_half_open_session_get_transport, |
Florin Coras | 04ae827 | 2021-04-12 19:55:37 -0700 | [diff] [blame] | 1336 | .attribute = tcp_session_attribute, |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 1337 | .connect = tcp_session_open, |
liuyacan | 534468e | 2021-05-09 03:50:40 +0000 | [diff] [blame] | 1338 | .half_close = tcp_session_half_close, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1339 | .close = tcp_session_close, |
| 1340 | .cleanup = tcp_session_cleanup, |
Florin Coras | d50ff7f | 2020-04-16 04:30:22 +0000 | [diff] [blame] | 1341 | .cleanup_ho = tcp_session_cleanup_ho, |
Florin Coras | dfb3b87 | 2019-08-16 17:48:44 -0700 | [diff] [blame] | 1342 | .reset = tcp_session_reset, |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 1343 | .send_params = tcp_session_send_params, |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1344 | .update_time = tcp_update_time, |
Florin Coras | 42ceddb | 2018-12-12 10:56:01 -0800 | [diff] [blame] | 1345 | .flush_data = tcp_session_flush_data, |
Florin Coras | 26dd6de | 2019-07-23 23:54:47 -0700 | [diff] [blame] | 1346 | .custom_tx = tcp_session_custom_tx, |
Florin Coras | 5a41fd5 | 2021-04-19 10:17:26 -0700 | [diff] [blame] | 1347 | .app_rx_evt = tcp_session_app_rx_evt, |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 1348 | .format_connection = format_tcp_session, |
| 1349 | .format_listener = format_tcp_listener_session, |
| 1350 | .format_half_open = format_tcp_half_open_session, |
Nathan Skrzypczak | e971bc9 | 2019-06-19 13:42:37 +0200 | [diff] [blame] | 1351 | .transport_options = { |
Florin Coras | 07063b8 | 2020-03-13 04:44:51 +0000 | [diff] [blame] | 1352 | .name = "tcp", |
| 1353 | .short_name = "T", |
Nathan Skrzypczak | e971bc9 | 2019-06-19 13:42:37 +0200 | [diff] [blame] | 1354 | .tx_type = TRANSPORT_TX_PEEK, |
| 1355 | .service_type = TRANSPORT_SERVICE_VC, |
| 1356 | }, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1357 | }; |
| 1358 | /* *INDENT-ON* */ |
| 1359 | |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 1360 | void |
Florin Coras | c44a558 | 2018-11-01 16:30:54 -0700 | [diff] [blame] | 1361 | tcp_connection_tx_pacer_update (tcp_connection_t * tc) |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 1362 | { |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 1363 | if (!transport_connection_is_tx_paced (&tc->connection)) |
| 1364 | return; |
| 1365 | |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 1366 | f64 srtt = clib_min ((f64) tc->srtt * TCP_TICK, tc->mrtt_us); |
| 1367 | |
Florin Coras | d206724 | 2019-08-16 10:33:49 -0700 | [diff] [blame] | 1368 | transport_connection_tx_pacer_update (&tc->connection, |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 1369 | tcp_cc_get_pacing_rate (tc), |
| 1370 | srtt * CLIB_US_TIME_FREQ); |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 1371 | } |
| 1372 | |
Florin Coras | c44a558 | 2018-11-01 16:30:54 -0700 | [diff] [blame] | 1373 | void |
| 1374 | tcp_connection_tx_pacer_reset (tcp_connection_t * tc, u32 window, |
| 1375 | u32 start_bucket) |
| 1376 | { |
Florin Coras | 36ebcff | 2019-09-12 18:36:44 -0700 | [diff] [blame] | 1377 | f64 srtt = clib_min ((f64) tc->srtt * TCP_TICK, tc->mrtt_us); |
Florin Coras | 599db9e | 2019-11-25 09:41:37 -0800 | [diff] [blame] | 1378 | transport_connection_tx_pacer_reset (&tc->connection, |
| 1379 | tcp_cc_get_pacing_rate (tc), |
| 1380 | start_bucket, |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 1381 | srtt * CLIB_US_TIME_FREQ); |
Florin Coras | c44a558 | 2018-11-01 16:30:54 -0700 | [diff] [blame] | 1382 | } |
| 1383 | |
Florin Coras | 6080e0d | 2020-03-13 20:39:43 +0000 | [diff] [blame] | 1384 | void |
| 1385 | tcp_reschedule (tcp_connection_t * tc) |
| 1386 | { |
| 1387 | if (tcp_in_cong_recovery (tc) || tcp_snd_space_inline (tc)) |
| 1388 | transport_connection_reschedule (&tc->connection); |
| 1389 | } |
| 1390 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1391 | static void |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1392 | tcp_expired_timers_dispatch (u32 * expired_timers) |
| 1393 | { |
Florin Coras | a9d8cb4 | 2020-02-20 05:45:31 +0000 | [diff] [blame] | 1394 | u32 thread_index = vlib_get_thread_index (), n_left, max_per_loop; |
| 1395 | u32 connection_index, timer_id, n_expired, max_loops; |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1396 | tcp_worker_ctx_t *wrk; |
Florin Coras | b72a0ff | 2019-11-22 17:38:25 -0800 | [diff] [blame] | 1397 | tcp_connection_t *tc; |
| 1398 | int i; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1399 | |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1400 | wrk = tcp_get_worker (thread_index); |
Florin Coras | 5e6305f | 2020-02-12 07:42:01 +0000 | [diff] [blame] | 1401 | n_expired = vec_len (expired_timers); |
Florin Coras | 0765d97 | 2020-03-18 21:26:41 +0000 | [diff] [blame] | 1402 | tcp_worker_stats_inc (wrk, timer_expirations, n_expired); |
Florin Coras | a9d8cb4 | 2020-02-20 05:45:31 +0000 | [diff] [blame] | 1403 | n_left = clib_fifo_elts (wrk->pending_timers); |
Florin Coras | 5e6305f | 2020-02-12 07:42:01 +0000 | [diff] [blame] | 1404 | |
Florin Coras | b72a0ff | 2019-11-22 17:38:25 -0800 | [diff] [blame] | 1405 | /* |
| 1406 | * Invalidate all timer handles before dispatching. This avoids dangling |
| 1407 | * index references to timer wheel pool entries that have been freed. |
| 1408 | */ |
Florin Coras | 5e6305f | 2020-02-12 07:42:01 +0000 | [diff] [blame] | 1409 | for (i = 0; i < n_expired; i++) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1410 | { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1411 | connection_index = expired_timers[i] & 0x0FFFFFFF; |
| 1412 | timer_id = expired_timers[i] >> 28; |
| 1413 | |
Florin Coras | b72a0ff | 2019-11-22 17:38:25 -0800 | [diff] [blame] | 1414 | if (timer_id != TCP_TIMER_RETRANSMIT_SYN) |
| 1415 | tc = tcp_connection_get (connection_index, thread_index); |
| 1416 | else |
| 1417 | tc = tcp_half_open_connection_get (connection_index); |
| 1418 | |
Florin Coras | a436a42 | 2019-08-20 07:09:31 -0700 | [diff] [blame] | 1419 | TCP_EVT (TCP_EVT_TIMER_POP, connection_index, timer_id); |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 1420 | |
Florin Coras | b72a0ff | 2019-11-22 17:38:25 -0800 | [diff] [blame] | 1421 | tc->timers[timer_id] = TCP_TIMER_HANDLE_INVALID; |
Florin Coras | 1caf7f1 | 2020-07-16 10:05:02 -0700 | [diff] [blame] | 1422 | tc->pending_timers |= (1 << timer_id); |
Florin Coras | b72a0ff | 2019-11-22 17:38:25 -0800 | [diff] [blame] | 1423 | } |
| 1424 | |
Florin Coras | aa38869 | 2020-02-14 23:41:25 +0000 | [diff] [blame] | 1425 | clib_fifo_add (wrk->pending_timers, expired_timers, n_expired); |
Florin Coras | a9d8cb4 | 2020-02-20 05:45:31 +0000 | [diff] [blame] | 1426 | |
| 1427 | max_loops = clib_max (1, 0.5 * TCP_TIMER_TICK * wrk->vm->loops_per_second); |
| 1428 | max_per_loop = clib_max ((n_left + n_expired) / max_loops, 10); |
| 1429 | max_per_loop = clib_min (max_per_loop, VLIB_FRAME_SIZE); |
| 1430 | wrk->max_timers_per_loop = clib_max (n_left ? wrk->max_timers_per_loop : 0, |
| 1431 | max_per_loop); |
| 1432 | |
| 1433 | if (thread_index == 0) |
Florin Coras | 5484daa | 2020-03-27 23:55:06 +0000 | [diff] [blame] | 1434 | session_queue_run_on_main_thread (wrk->vm); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1435 | } |
| 1436 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1437 | static void |
Florin Coras | 18e0d4f | 2019-01-02 12:22:02 -0800 | [diff] [blame] | 1438 | tcp_initialize_iss_seed (tcp_main_t * tm) |
| 1439 | { |
| 1440 | u32 default_seed = random_default_seed (); |
| 1441 | u64 time_now = clib_cpu_time_now (); |
| 1442 | |
| 1443 | tm->iss_seed.first = (u64) random_u32 (&default_seed) << 32; |
| 1444 | tm->iss_seed.second = random_u64 (&time_now); |
| 1445 | } |
| 1446 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1447 | static clib_error_t * |
Florin Coras | a0b34a7 | 2017-03-07 01:20:52 -0800 | [diff] [blame] | 1448 | tcp_main_enable (vlib_main_t * vm) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1449 | { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1450 | vlib_thread_main_t *vtm = vlib_get_thread_main (); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1451 | u32 num_threads, n_workers, prealloc_conn_per_wrk; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1452 | tcp_connection_t *tc __attribute__ ((unused)); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1453 | tcp_main_t *tm = vnet_get_tcp_main (); |
Florin Coras | 0426185 | 2020-02-12 01:24:29 +0000 | [diff] [blame] | 1454 | tcp_worker_ctx_t *wrk; |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1455 | clib_error_t *error = 0; |
| 1456 | int thread; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1457 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1458 | if ((error = vlib_call_init_function (vm, ip_main_init))) |
| 1459 | return error; |
| 1460 | if ((error = vlib_call_init_function (vm, ip4_lookup_init))) |
| 1461 | return error; |
| 1462 | if ((error = vlib_call_init_function (vm, ip6_lookup_init))) |
| 1463 | return error; |
| 1464 | |
| 1465 | /* |
| 1466 | * Registrations |
| 1467 | */ |
| 1468 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1469 | ip4_register_protocol (IP_PROTOCOL_TCP, tcp4_input_node.index); |
root | c9d1c5b | 2017-08-15 12:58:31 -0400 | [diff] [blame] | 1470 | ip6_register_protocol (IP_PROTOCOL_TCP, tcp6_input_node.index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1471 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1472 | /* |
| 1473 | * Initialize data structures |
| 1474 | */ |
| 1475 | |
| 1476 | num_threads = 1 /* main thread */ + vtm->n_threads; |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 1477 | vec_validate (tm->wrk_ctx, num_threads - 1); |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1478 | n_workers = num_threads == 1 ? 1 : vtm->n_threads; |
Florin Coras | 9094b5c | 2019-08-12 14:17:47 -0700 | [diff] [blame] | 1479 | prealloc_conn_per_wrk = tcp_cfg.preallocated_connections / n_workers; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1480 | |
Florin Coras | 5484daa | 2020-03-27 23:55:06 +0000 | [diff] [blame] | 1481 | wrk = &tm->wrk_ctx[0]; |
| 1482 | wrk->tco_next_node[0] = vlib_node_get_next (vm, session_queue_node.index, |
| 1483 | tcp4_output_node.index); |
| 1484 | wrk->tco_next_node[1] = vlib_node_get_next (vm, session_queue_node.index, |
| 1485 | tcp6_output_node.index); |
| 1486 | |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1487 | for (thread = 0; thread < num_threads; thread++) |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1488 | { |
Florin Coras | 0426185 | 2020-02-12 01:24:29 +0000 | [diff] [blame] | 1489 | wrk = &tm->wrk_ctx[thread]; |
| 1490 | |
| 1491 | vec_validate (wrk->pending_deq_acked, 255); |
| 1492 | vec_validate (wrk->pending_disconnects, 255); |
| 1493 | vec_validate (wrk->pending_resets, 255); |
| 1494 | vec_reset_length (wrk->pending_deq_acked); |
| 1495 | vec_reset_length (wrk->pending_disconnects); |
| 1496 | vec_reset_length (wrk->pending_resets); |
Damjan Marion | 6ffb7c6 | 2021-03-26 13:06:13 +0100 | [diff] [blame] | 1497 | wrk->vm = vlib_get_main_by_index (thread); |
Florin Coras | a9d8cb4 | 2020-02-20 05:45:31 +0000 | [diff] [blame] | 1498 | wrk->max_timers_per_loop = 10; |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1499 | |
Florin Coras | 5484daa | 2020-03-27 23:55:06 +0000 | [diff] [blame] | 1500 | if (thread > 0) |
| 1501 | { |
| 1502 | wrk->tco_next_node[0] = tm->wrk_ctx[0].tco_next_node[0]; |
| 1503 | wrk->tco_next_node[1] = tm->wrk_ctx[0].tco_next_node[1]; |
| 1504 | } |
| 1505 | |
Florin Coras | be72ae6 | 2018-11-01 11:23:03 -0700 | [diff] [blame] | 1506 | /* |
| 1507 | * Preallocate connections. Assume that thread 0 won't |
| 1508 | * use preallocated threads when running multi-core |
| 1509 | */ |
| 1510 | if ((thread > 0 || num_threads == 1) && prealloc_conn_per_wrk) |
Florin Coras | 0426185 | 2020-02-12 01:24:29 +0000 | [diff] [blame] | 1511 | pool_init_fixed (wrk->connections, prealloc_conn_per_wrk); |
Florin Coras | 49036a5 | 2020-10-08 09:28:32 -0700 | [diff] [blame] | 1512 | |
| 1513 | tcp_timer_initialize_wheel (&wrk->timer_wheel, |
| 1514 | tcp_expired_timers_dispatch, |
| 1515 | vlib_time_now (vm)); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1516 | } |
| 1517 | |
| 1518 | /* |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1519 | * Use a preallocated half-open connection pool? |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1520 | */ |
Florin Coras | 9094b5c | 2019-08-12 14:17:47 -0700 | [diff] [blame] | 1521 | if (tcp_cfg.preallocated_half_open_connections) |
Dave Barach | b7f1faa | 2017-08-29 11:43:37 -0400 | [diff] [blame] | 1522 | pool_init_fixed (tm->half_open_connections, |
Florin Coras | 9094b5c | 2019-08-12 14:17:47 -0700 | [diff] [blame] | 1523 | tcp_cfg.preallocated_half_open_connections); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 1524 | |
Florin Coras | 18e0d4f | 2019-01-02 12:22:02 -0800 | [diff] [blame] | 1525 | tcp_initialize_iss_seed (tm); |
Florin Coras | 66b1131 | 2017-07-31 17:18:03 -0700 | [diff] [blame] | 1526 | |
Damjan Marion | 8934a04 | 2019-02-09 23:29:26 +0100 | [diff] [blame] | 1527 | tm->bytes_per_buffer = vlib_buffer_get_default_data_size (vm); |
Florin Coras | 4e116fb | 2019-06-10 08:33:50 -0700 | [diff] [blame] | 1528 | tm->cc_last_type = TCP_CC_LAST; |
Florin Coras | 5484daa | 2020-03-27 23:55:06 +0000 | [diff] [blame] | 1529 | |
| 1530 | tm->ipl_next_node[0] = vlib_node_get_next (vm, session_queue_node.index, |
| 1531 | ip4_lookup_node.index); |
| 1532 | tm->ipl_next_node[1] = vlib_node_get_next (vm, session_queue_node.index, |
| 1533 | ip6_lookup_node.index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1534 | return error; |
| 1535 | } |
| 1536 | |
Florin Coras | a0b34a7 | 2017-03-07 01:20:52 -0800 | [diff] [blame] | 1537 | clib_error_t * |
| 1538 | vnet_tcp_enable_disable (vlib_main_t * vm, u8 is_en) |
| 1539 | { |
| 1540 | if (is_en) |
| 1541 | { |
| 1542 | if (tcp_main.is_enabled) |
| 1543 | return 0; |
| 1544 | |
| 1545 | return tcp_main_enable (vm); |
| 1546 | } |
| 1547 | else |
| 1548 | { |
| 1549 | tcp_main.is_enabled = 0; |
| 1550 | } |
| 1551 | |
| 1552 | return 0; |
| 1553 | } |
| 1554 | |
Pierre Pfister | 7fe51f3 | 2017-09-20 08:48:36 +0200 | [diff] [blame] | 1555 | void |
| 1556 | tcp_punt_unknown (vlib_main_t * vm, u8 is_ip4, u8 is_add) |
| 1557 | { |
| 1558 | tcp_main_t *tm = &tcp_main; |
| 1559 | if (is_ip4) |
| 1560 | tm->punt_unknown4 = is_add; |
| 1561 | else |
| 1562 | tm->punt_unknown6 = is_add; |
| 1563 | } |
| 1564 | |
Florin Coras | 9094b5c | 2019-08-12 14:17:47 -0700 | [diff] [blame] | 1565 | /** |
| 1566 | * Initialize default values for tcp parameters |
| 1567 | */ |
| 1568 | static void |
| 1569 | tcp_configuration_init (void) |
| 1570 | { |
| 1571 | /* Initial wnd for SYN. Fifos are not allocated at that point so use some |
| 1572 | * predefined value. For SYN-ACK we still want the scale to be computed in |
| 1573 | * the same way */ |
| 1574 | tcp_cfg.max_rx_fifo = 32 << 20; |
| 1575 | tcp_cfg.min_rx_fifo = 4 << 10; |
| 1576 | |
Florin Coras | cedcf60 | 2019-08-27 12:15:43 -0700 | [diff] [blame] | 1577 | tcp_cfg.default_mtu = 1500; |
Florin Coras | 9094b5c | 2019-08-12 14:17:47 -0700 | [diff] [blame] | 1578 | tcp_cfg.initial_cwnd_multiplier = 0; |
| 1579 | tcp_cfg.enable_tx_pacing = 1; |
Florin Coras | bbcfaac | 2019-10-10 13:52:04 -0700 | [diff] [blame] | 1580 | tcp_cfg.allow_tso = 0; |
Florin Coras | f4ce6ba | 2019-11-20 18:34:58 -0800 | [diff] [blame] | 1581 | tcp_cfg.csum_offload = 1; |
Florin Coras | e57df7c | 2020-04-17 16:10:51 +0000 | [diff] [blame] | 1582 | tcp_cfg.cc_algo = TCP_CC_CUBIC; |
Florin Coras | 017dc45 | 2019-08-30 11:06:35 -0700 | [diff] [blame] | 1583 | tcp_cfg.rwnd_min_update_ack = 1; |
Simon Zhang | 23c3d34 | 2020-09-15 23:40:28 +0800 | [diff] [blame] | 1584 | tcp_cfg.max_gso_size = TCP_MAX_GSO_SZ; |
Florin Coras | 9094b5c | 2019-08-12 14:17:47 -0700 | [diff] [blame] | 1585 | |
Ryujiro Shibuya | 6fa0988 | 2020-10-22 05:26:32 +0000 | [diff] [blame] | 1586 | /* Time constants defined as timer tick (100us) multiples */ |
Ryujiro Shibuya | 6fa0988 | 2020-10-22 05:26:32 +0000 | [diff] [blame] | 1587 | tcp_cfg.closewait_time = 20000; /* 2s */ |
| 1588 | tcp_cfg.timewait_time = 100000; /* 10s */ |
| 1589 | tcp_cfg.finwait1_time = 600000; /* 60s */ |
| 1590 | tcp_cfg.lastack_time = 300000; /* 30s */ |
| 1591 | tcp_cfg.finwait2_time = 300000; /* 30s */ |
| 1592 | tcp_cfg.closing_time = 300000; /* 30s */ |
| 1593 | |
| 1594 | /* This value is seconds */ |
Florin Coras | 7a3a866 | 2020-02-22 02:27:21 +0000 | [diff] [blame] | 1595 | tcp_cfg.cleanup_time = 0.1; /* 100ms */ |
Florin Coras | 9094b5c | 2019-08-12 14:17:47 -0700 | [diff] [blame] | 1596 | } |
| 1597 | |
Florin Coras | 0dbd517 | 2018-06-25 16:19:34 -0700 | [diff] [blame] | 1598 | static clib_error_t * |
Florin Coras | a0b34a7 | 2017-03-07 01:20:52 -0800 | [diff] [blame] | 1599 | tcp_init (vlib_main_t * vm) |
| 1600 | { |
| 1601 | tcp_main_t *tm = vnet_get_tcp_main (); |
Florin Coras | 4036427 | 2017-11-16 09:57:50 -0800 | [diff] [blame] | 1602 | 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 Coras | a0b34a7 | 2017-03-07 01:20:52 -0800 | [diff] [blame] | 1606 | tm->is_enabled = 0; |
Florin Coras | 4036427 | 2017-11-16 09:57:50 -0800 | [diff] [blame] | 1607 | |
| 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 Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 1615 | /* 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 Coras | 9094b5c | 2019-08-12 14:17:47 -0700 | [diff] [blame] | 1621 | tcp_configuration_init (); |
| 1622 | |
Florin Coras | fbf278a | 2019-03-26 14:05:38 -0700 | [diff] [blame] | 1623 | tm->cc_algo_by_name = hash_create_string (0, sizeof (uword)); |
Florin Coras | 9094b5c | 2019-08-12 14:17:47 -0700 | [diff] [blame] | 1624 | |
Florin Coras | a0b34a7 | 2017-03-07 01:20:52 -0800 | [diff] [blame] | 1625 | return 0; |
| 1626 | } |
| 1627 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1628 | VLIB_INIT_FUNCTION (tcp_init); |
| 1629 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1630 | /* |
| 1631 | * fd.io coding-style-patch-verification: ON |
| 1632 | * |
| 1633 | * Local Variables: |
| 1634 | * eval: (c-set-style "gnu") |
| 1635 | * End: |
| 1636 | */ |