Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 1 | /* |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 2 | * Copyright (c) 2017-2019 Cisco and/or its affiliates. |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [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 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 16 | #include <vnet/session/transport.h> |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 17 | #include <vnet/session/session.h> |
| 18 | #include <vnet/fib/fib.h> |
| 19 | |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 20 | /** |
| 21 | * Per-type vector of transport protocol virtual function tables |
| 22 | */ |
| 23 | transport_proto_vft_t *tp_vfts; |
| 24 | |
Florin Coras | 57660d9 | 2020-04-04 22:45:34 +0000 | [diff] [blame] | 25 | typedef struct local_endpoint_ |
| 26 | { |
| 27 | transport_endpoint_t ep; |
Florin Coras | bf27ca8 | 2022-11-09 15:54:39 -0800 | [diff] [blame] | 28 | transport_proto_t proto; |
Florin Coras | 57660d9 | 2020-04-04 22:45:34 +0000 | [diff] [blame] | 29 | int refcnt; |
| 30 | } local_endpoint_t; |
| 31 | |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 32 | typedef struct transport_main_ |
| 33 | { |
| 34 | transport_endpoint_table_t local_endpoints_table; |
| 35 | local_endpoint_t *local_endpoints; |
Florin Coras | bf27ca8 | 2022-11-09 15:54:39 -0800 | [diff] [blame] | 36 | u32 *lcl_endpts_freelist; |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 37 | u32 port_allocator_seed; |
Nathan Skrzypczak | e111bbd | 2023-10-03 13:54:15 +0200 | [diff] [blame^] | 38 | u16 port_allocator_min_src_port; |
| 39 | u16 port_allocator_max_src_port; |
Florin Coras | bf27ca8 | 2022-11-09 15:54:39 -0800 | [diff] [blame] | 40 | u8 lcl_endpts_cleanup_pending; |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 41 | clib_spinlock_t local_endpoints_lock; |
| 42 | } transport_main_t; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 43 | |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 44 | static transport_main_t tp_main; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 45 | |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 46 | u8 * |
| 47 | format_transport_proto (u8 * s, va_list * args) |
| 48 | { |
| 49 | u32 transport_proto = va_arg (*args, u32); |
Florin Coras | 07063b8 | 2020-03-13 04:44:51 +0000 | [diff] [blame] | 50 | |
| 51 | if (tp_vfts[transport_proto].transport_options.name) |
| 52 | s = format (s, "%s", tp_vfts[transport_proto].transport_options.name); |
| 53 | else |
| 54 | s = format (s, "n/a"); |
| 55 | |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 56 | return s; |
| 57 | } |
| 58 | |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 59 | u8 * |
| 60 | format_transport_proto_short (u8 * s, va_list * args) |
| 61 | { |
| 62 | u32 transport_proto = va_arg (*args, u32); |
Florin Coras | 07063b8 | 2020-03-13 04:44:51 +0000 | [diff] [blame] | 63 | char *short_name; |
| 64 | |
| 65 | short_name = tp_vfts[transport_proto].transport_options.short_name; |
| 66 | if (short_name) |
| 67 | s = format (s, "%s", short_name); |
| 68 | else |
| 69 | s = format (s, "NA"); |
| 70 | |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 71 | return s; |
| 72 | } |
| 73 | |
Florin Coras | 0d712c1 | 2023-03-13 14:33:37 -0700 | [diff] [blame] | 74 | const char *transport_flags_str[] = { |
| 75 | #define _(sym, str) str, |
| 76 | foreach_transport_connection_flag |
| 77 | #undef _ |
| 78 | }; |
| 79 | |
| 80 | u8 * |
| 81 | format_transport_flags (u8 *s, va_list *args) |
| 82 | { |
| 83 | transport_connection_flags_t flags; |
| 84 | int i, last = -1; |
| 85 | |
| 86 | flags = va_arg (*args, transport_connection_flags_t); |
| 87 | |
| 88 | for (i = 0; i < TRANSPORT_CONNECTION_N_FLAGS; i++) |
| 89 | if (flags & (1 << i)) |
| 90 | last = i; |
| 91 | |
| 92 | for (i = 0; i < last; i++) |
| 93 | { |
| 94 | if (flags & (1 << i)) |
| 95 | s = format (s, "%s, ", transport_flags_str[i]); |
| 96 | } |
| 97 | if (last >= 0) |
| 98 | s = format (s, "%s", transport_flags_str[last]); |
| 99 | |
| 100 | return s; |
| 101 | } |
| 102 | |
Florin Coras | de9a849 | 2018-10-24 22:18:58 -0700 | [diff] [blame] | 103 | u8 * |
| 104 | format_transport_connection (u8 * s, va_list * args) |
| 105 | { |
| 106 | u32 transport_proto = va_arg (*args, u32); |
| 107 | u32 conn_index = va_arg (*args, u32); |
| 108 | u32 thread_index = va_arg (*args, u32); |
| 109 | u32 verbose = va_arg (*args, u32); |
| 110 | transport_proto_vft_t *tp_vft; |
| 111 | transport_connection_t *tc; |
| 112 | u32 indent; |
| 113 | |
| 114 | tp_vft = transport_protocol_get_vft (transport_proto); |
| 115 | if (!tp_vft) |
| 116 | return s; |
| 117 | |
| 118 | s = format (s, "%U", tp_vft->format_connection, conn_index, thread_index, |
| 119 | verbose); |
| 120 | tc = tp_vft->get_connection (conn_index, thread_index); |
Florin Coras | 36d4939 | 2020-04-24 23:00:11 +0000 | [diff] [blame] | 121 | if (tc && verbose > 1) |
Florin Coras | de9a849 | 2018-10-24 22:18:58 -0700 | [diff] [blame] | 122 | { |
| 123 | indent = format_get_indent (s) + 1; |
Florin Coras | 36d4939 | 2020-04-24 23:00:11 +0000 | [diff] [blame] | 124 | if (transport_connection_is_tx_paced (tc)) |
| 125 | s = format (s, "%Upacer: %U\n", format_white_space, indent, |
| 126 | format_transport_pacer, &tc->pacer, tc->thread_index); |
Florin Coras | 0d712c1 | 2023-03-13 14:33:37 -0700 | [diff] [blame] | 127 | s = format (s, "%Utransport: flags: %U\n", format_white_space, indent, |
| 128 | format_transport_flags, tc->flags); |
Florin Coras | de9a849 | 2018-10-24 22:18:58 -0700 | [diff] [blame] | 129 | } |
| 130 | return s; |
| 131 | } |
| 132 | |
| 133 | u8 * |
| 134 | format_transport_listen_connection (u8 * s, va_list * args) |
| 135 | { |
| 136 | u32 transport_proto = va_arg (*args, u32); |
Florin Coras | de9a849 | 2018-10-24 22:18:58 -0700 | [diff] [blame] | 137 | transport_proto_vft_t *tp_vft; |
| 138 | |
| 139 | tp_vft = transport_protocol_get_vft (transport_proto); |
| 140 | if (!tp_vft) |
| 141 | return s; |
| 142 | |
Florin Coras | 3389dd2 | 2019-02-01 18:00:05 -0800 | [diff] [blame] | 143 | s = (tp_vft->format_listener) (s, args); |
Florin Coras | de9a849 | 2018-10-24 22:18:58 -0700 | [diff] [blame] | 144 | return s; |
| 145 | } |
| 146 | |
| 147 | u8 * |
| 148 | format_transport_half_open_connection (u8 * s, va_list * args) |
| 149 | { |
| 150 | u32 transport_proto = va_arg (*args, u32); |
Florin Coras | de9a849 | 2018-10-24 22:18:58 -0700 | [diff] [blame] | 151 | transport_proto_vft_t *tp_vft; |
| 152 | |
| 153 | tp_vft = transport_protocol_get_vft (transport_proto); |
| 154 | if (!tp_vft) |
| 155 | return s; |
| 156 | |
Florin Coras | 49a1032 | 2023-03-22 19:07:35 -0700 | [diff] [blame] | 157 | s = (tp_vft->format_half_open) (s, args); |
Florin Coras | de9a849 | 2018-10-24 22:18:58 -0700 | [diff] [blame] | 158 | return s; |
| 159 | } |
| 160 | |
Florin Coras | 3bbbf0d | 2019-11-19 17:23:22 -0800 | [diff] [blame] | 161 | static u8 |
| 162 | unformat_transport_str_match (unformat_input_t * input, const char *str) |
| 163 | { |
| 164 | int i; |
| 165 | |
| 166 | if (strlen (str) > vec_len (input->buffer) - input->index) |
| 167 | return 0; |
| 168 | |
| 169 | for (i = 0; i < strlen (str); i++) |
| 170 | { |
| 171 | if (input->buffer[i + input->index] != str[i]) |
| 172 | return 0; |
| 173 | } |
| 174 | return 1; |
| 175 | } |
| 176 | |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 177 | uword |
| 178 | unformat_transport_proto (unformat_input_t * input, va_list * args) |
| 179 | { |
| 180 | u32 *proto = va_arg (*args, u32 *); |
Florin Coras | 07063b8 | 2020-03-13 04:44:51 +0000 | [diff] [blame] | 181 | transport_proto_vft_t *tp_vft; |
Florin Coras | 3bbbf0d | 2019-11-19 17:23:22 -0800 | [diff] [blame] | 182 | u8 longest_match = 0, match; |
Florin Coras | 07063b8 | 2020-03-13 04:44:51 +0000 | [diff] [blame] | 183 | char *str, *str_match = 0; |
| 184 | transport_proto_t tp; |
Florin Coras | 5bb23ec | 2019-08-31 09:45:13 -0700 | [diff] [blame] | 185 | |
Florin Coras | 07063b8 | 2020-03-13 04:44:51 +0000 | [diff] [blame] | 186 | for (tp = 0; tp < vec_len (tp_vfts); tp++) |
| 187 | { |
| 188 | tp_vft = &tp_vfts[tp]; |
| 189 | str = tp_vft->transport_options.name; |
| 190 | if (!str) |
| 191 | continue; |
| 192 | if (unformat_transport_str_match (input, str)) |
| 193 | { |
| 194 | match = strlen (str); |
| 195 | if (match > longest_match) |
| 196 | { |
| 197 | *proto = tp; |
| 198 | longest_match = match; |
| 199 | str_match = str; |
| 200 | } |
| 201 | } |
Florin Coras | 5bb23ec | 2019-08-31 09:45:13 -0700 | [diff] [blame] | 202 | } |
Florin Coras | 07063b8 | 2020-03-13 04:44:51 +0000 | [diff] [blame] | 203 | if (longest_match) |
Florin Coras | 3bbbf0d | 2019-11-19 17:23:22 -0800 | [diff] [blame] | 204 | { |
Dave Barach | 4897d77 | 2020-03-26 10:56:13 -0400 | [diff] [blame] | 205 | (void) unformat (input, str_match); |
Florin Coras | 3bbbf0d | 2019-11-19 17:23:22 -0800 | [diff] [blame] | 206 | return 1; |
| 207 | } |
| 208 | |
| 209 | return 0; |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 210 | } |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 211 | |
Florin Coras | 07063b8 | 2020-03-13 04:44:51 +0000 | [diff] [blame] | 212 | u8 * |
| 213 | format_transport_protos (u8 * s, va_list * args) |
| 214 | { |
| 215 | transport_proto_vft_t *tp_vft; |
| 216 | |
| 217 | vec_foreach (tp_vft, tp_vfts) |
| 218 | s = format (s, "%s\n", tp_vft->transport_options.name); |
| 219 | |
| 220 | return s; |
| 221 | } |
| 222 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 223 | u32 |
| 224 | transport_endpoint_lookup (transport_endpoint_table_t * ht, u8 proto, |
| 225 | ip46_address_t * ip, u16 port) |
| 226 | { |
| 227 | clib_bihash_kv_24_8_t kv; |
| 228 | int rv; |
| 229 | |
| 230 | kv.key[0] = ip->as_u64[0]; |
| 231 | kv.key[1] = ip->as_u64[1]; |
| 232 | kv.key[2] = (u64) port << 8 | (u64) proto; |
| 233 | |
| 234 | rv = clib_bihash_search_inline_24_8 (ht, &kv); |
| 235 | if (rv == 0) |
| 236 | return kv.value; |
| 237 | |
| 238 | return ENDPOINT_INVALID_INDEX; |
| 239 | } |
| 240 | |
| 241 | void |
| 242 | transport_endpoint_table_add (transport_endpoint_table_t * ht, u8 proto, |
| 243 | transport_endpoint_t * te, u32 value) |
| 244 | { |
| 245 | clib_bihash_kv_24_8_t kv; |
| 246 | |
| 247 | kv.key[0] = te->ip.as_u64[0]; |
| 248 | kv.key[1] = te->ip.as_u64[1]; |
| 249 | kv.key[2] = (u64) te->port << 8 | (u64) proto; |
| 250 | kv.value = value; |
| 251 | |
| 252 | clib_bihash_add_del_24_8 (ht, &kv, 1); |
| 253 | } |
| 254 | |
| 255 | void |
| 256 | transport_endpoint_table_del (transport_endpoint_table_t * ht, u8 proto, |
| 257 | transport_endpoint_t * te) |
| 258 | { |
| 259 | clib_bihash_kv_24_8_t kv; |
| 260 | |
| 261 | kv.key[0] = te->ip.as_u64[0]; |
| 262 | kv.key[1] = te->ip.as_u64[1]; |
| 263 | kv.key[2] = (u64) te->port << 8 | (u64) proto; |
| 264 | |
| 265 | clib_bihash_add_del_24_8 (ht, &kv, 0); |
| 266 | } |
| 267 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 268 | void |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 269 | transport_register_protocol (transport_proto_t transport_proto, |
| 270 | const transport_proto_vft_t * vft, |
| 271 | fib_protocol_t fib_proto, u32 output_node) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 272 | { |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 273 | u8 is_ip4 = fib_proto == FIB_PROTOCOL_IP4; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 274 | |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 275 | vec_validate (tp_vfts, transport_proto); |
| 276 | tp_vfts[transport_proto] = *vft; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 277 | |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 278 | session_register_transport (transport_proto, vft, is_ip4, output_node); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 279 | } |
| 280 | |
Florin Coras | 07063b8 | 2020-03-13 04:44:51 +0000 | [diff] [blame] | 281 | transport_proto_t |
| 282 | transport_register_new_protocol (const transport_proto_vft_t * vft, |
| 283 | fib_protocol_t fib_proto, u32 output_node) |
| 284 | { |
| 285 | transport_proto_t transport_proto; |
| 286 | u8 is_ip4; |
| 287 | |
| 288 | transport_proto = session_add_transport_proto (); |
| 289 | is_ip4 = fib_proto == FIB_PROTOCOL_IP4; |
| 290 | |
| 291 | vec_validate (tp_vfts, transport_proto); |
| 292 | tp_vfts[transport_proto] = *vft; |
| 293 | |
| 294 | session_register_transport (transport_proto, vft, is_ip4, output_node); |
| 295 | |
| 296 | return transport_proto; |
| 297 | } |
| 298 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 299 | /** |
| 300 | * Get transport virtual function table |
| 301 | * |
| 302 | * @param type - session type (not protocol type) |
| 303 | */ |
| 304 | transport_proto_vft_t * |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 305 | transport_protocol_get_vft (transport_proto_t transport_proto) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 306 | { |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 307 | if (transport_proto >= vec_len (tp_vfts)) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 308 | return 0; |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 309 | return &tp_vfts[transport_proto]; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 310 | } |
| 311 | |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 312 | transport_service_type_t |
| 313 | transport_protocol_service_type (transport_proto_t tp) |
| 314 | { |
Nathan Skrzypczak | e971bc9 | 2019-06-19 13:42:37 +0200 | [diff] [blame] | 315 | return tp_vfts[tp].transport_options.service_type; |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 316 | } |
| 317 | |
Florin Coras | f08f26d | 2018-05-10 13:20:47 -0700 | [diff] [blame] | 318 | transport_tx_fn_type_t |
| 319 | transport_protocol_tx_fn_type (transport_proto_t tp) |
| 320 | { |
Nathan Skrzypczak | e971bc9 | 2019-06-19 13:42:37 +0200 | [diff] [blame] | 321 | return tp_vfts[tp].transport_options.tx_type; |
Florin Coras | f08f26d | 2018-05-10 13:20:47 -0700 | [diff] [blame] | 322 | } |
| 323 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 324 | void |
| 325 | transport_cleanup (transport_proto_t tp, u32 conn_index, u8 thread_index) |
Florin Coras | 4edc37e | 2019-02-04 23:01:34 -0800 | [diff] [blame] | 326 | { |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 327 | tp_vfts[tp].cleanup (conn_index, thread_index); |
Florin Coras | 4edc37e | 2019-02-04 23:01:34 -0800 | [diff] [blame] | 328 | } |
| 329 | |
Florin Coras | d50ff7f | 2020-04-16 04:30:22 +0000 | [diff] [blame] | 330 | void |
| 331 | transport_cleanup_half_open (transport_proto_t tp, u32 conn_index) |
| 332 | { |
Florin Coras | 05bc33c | 2021-05-19 19:33:19 -0700 | [diff] [blame] | 333 | if (tp_vfts[tp].cleanup_ho) |
Florin Coras | d50ff7f | 2020-04-16 04:30:22 +0000 | [diff] [blame] | 334 | tp_vfts[tp].cleanup_ho (conn_index); |
| 335 | } |
| 336 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 337 | int |
| 338 | transport_connect (transport_proto_t tp, transport_endpoint_cfg_t * tep) |
Florin Coras | 4edc37e | 2019-02-04 23:01:34 -0800 | [diff] [blame] | 339 | { |
Filip Tehlar | 92d2965 | 2022-07-28 08:39:13 +0000 | [diff] [blame] | 340 | if (PREDICT_FALSE (!tp_vfts[tp].connect)) |
| 341 | return SESSION_E_TRANSPORT_NO_REG; |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 342 | return tp_vfts[tp].connect (tep); |
| 343 | } |
| 344 | |
| 345 | void |
liuyacan | 534468e | 2021-05-09 03:50:40 +0000 | [diff] [blame] | 346 | transport_half_close (transport_proto_t tp, u32 conn_index, u8 thread_index) |
| 347 | { |
| 348 | if (tp_vfts[tp].half_close) |
| 349 | tp_vfts[tp].half_close (conn_index, thread_index); |
| 350 | } |
| 351 | |
| 352 | void |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 353 | transport_close (transport_proto_t tp, u32 conn_index, u8 thread_index) |
| 354 | { |
| 355 | tp_vfts[tp].close (conn_index, thread_index); |
| 356 | } |
| 357 | |
Florin Coras | dfb3b87 | 2019-08-16 17:48:44 -0700 | [diff] [blame] | 358 | void |
| 359 | transport_reset (transport_proto_t tp, u32 conn_index, u8 thread_index) |
| 360 | { |
| 361 | if (tp_vfts[tp].reset) |
| 362 | tp_vfts[tp].reset (conn_index, thread_index); |
| 363 | else |
| 364 | tp_vfts[tp].close (conn_index, thread_index); |
| 365 | } |
| 366 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 367 | u32 |
| 368 | transport_start_listen (transport_proto_t tp, u32 session_index, |
Florin Coras | 0bce71e | 2022-02-10 11:57:06 -0800 | [diff] [blame] | 369 | transport_endpoint_cfg_t *tep) |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 370 | { |
Filip Tehlar | 92d2965 | 2022-07-28 08:39:13 +0000 | [diff] [blame] | 371 | if (PREDICT_FALSE (!tp_vfts[tp].start_listen)) |
| 372 | return SESSION_E_TRANSPORT_NO_REG; |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 373 | return tp_vfts[tp].start_listen (session_index, tep); |
| 374 | } |
| 375 | |
| 376 | u32 |
| 377 | transport_stop_listen (transport_proto_t tp, u32 conn_index) |
| 378 | { |
| 379 | return tp_vfts[tp].stop_listen (conn_index); |
Florin Coras | 4edc37e | 2019-02-04 23:01:34 -0800 | [diff] [blame] | 380 | } |
| 381 | |
Florin Coras | 40903ac | 2018-06-10 14:41:23 -0700 | [diff] [blame] | 382 | u8 |
| 383 | transport_protocol_is_cl (transport_proto_t tp) |
| 384 | { |
Nathan Skrzypczak | e971bc9 | 2019-06-19 13:42:37 +0200 | [diff] [blame] | 385 | return (tp_vfts[tp].transport_options.service_type == TRANSPORT_SERVICE_CL); |
Florin Coras | 40903ac | 2018-06-10 14:41:23 -0700 | [diff] [blame] | 386 | } |
| 387 | |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 388 | always_inline void |
| 389 | default_get_transport_endpoint (transport_connection_t * tc, |
Florin Coras | 09d18c2 | 2019-04-24 11:10:02 -0700 | [diff] [blame] | 390 | transport_endpoint_t * tep, u8 is_lcl) |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 391 | { |
| 392 | if (is_lcl) |
| 393 | { |
Florin Coras | 09d18c2 | 2019-04-24 11:10:02 -0700 | [diff] [blame] | 394 | tep->port = tc->lcl_port; |
| 395 | tep->is_ip4 = tc->is_ip4; |
| 396 | clib_memcpy_fast (&tep->ip, &tc->lcl_ip, sizeof (tc->lcl_ip)); |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 397 | } |
| 398 | else |
| 399 | { |
Florin Coras | 09d18c2 | 2019-04-24 11:10:02 -0700 | [diff] [blame] | 400 | tep->port = tc->rmt_port; |
| 401 | tep->is_ip4 = tc->is_ip4; |
| 402 | clib_memcpy_fast (&tep->ip, &tc->rmt_ip, sizeof (tc->rmt_ip)); |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 403 | } |
| 404 | } |
| 405 | |
| 406 | void |
| 407 | transport_get_endpoint (transport_proto_t tp, u32 conn_index, |
Florin Coras | 09d18c2 | 2019-04-24 11:10:02 -0700 | [diff] [blame] | 408 | u32 thread_index, transport_endpoint_t * tep, |
| 409 | u8 is_lcl) |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 410 | { |
| 411 | if (tp_vfts[tp].get_transport_endpoint) |
Florin Coras | 09d18c2 | 2019-04-24 11:10:02 -0700 | [diff] [blame] | 412 | tp_vfts[tp].get_transport_endpoint (conn_index, thread_index, tep, |
| 413 | is_lcl); |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 414 | else |
| 415 | { |
| 416 | transport_connection_t *tc; |
| 417 | tc = transport_get_connection (tp, conn_index, thread_index); |
Florin Coras | 09d18c2 | 2019-04-24 11:10:02 -0700 | [diff] [blame] | 418 | default_get_transport_endpoint (tc, tep, is_lcl); |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 419 | } |
| 420 | } |
| 421 | |
| 422 | void |
| 423 | transport_get_listener_endpoint (transport_proto_t tp, u32 conn_index, |
Florin Coras | 09d18c2 | 2019-04-24 11:10:02 -0700 | [diff] [blame] | 424 | transport_endpoint_t * tep, u8 is_lcl) |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 425 | { |
| 426 | if (tp_vfts[tp].get_transport_listener_endpoint) |
Florin Coras | 09d18c2 | 2019-04-24 11:10:02 -0700 | [diff] [blame] | 427 | tp_vfts[tp].get_transport_listener_endpoint (conn_index, tep, is_lcl); |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 428 | else |
| 429 | { |
| 430 | transport_connection_t *tc; |
| 431 | tc = transport_get_listener (tp, conn_index); |
Florin Coras | 09d18c2 | 2019-04-24 11:10:02 -0700 | [diff] [blame] | 432 | default_get_transport_endpoint (tc, tep, is_lcl); |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 433 | } |
| 434 | } |
| 435 | |
Florin Coras | 04ae827 | 2021-04-12 19:55:37 -0700 | [diff] [blame] | 436 | int |
| 437 | transport_connection_attribute (transport_proto_t tp, u32 conn_index, |
| 438 | u8 thread_index, u8 is_get, |
| 439 | transport_endpt_attr_t *attr) |
| 440 | { |
| 441 | if (!tp_vfts[tp].attribute) |
| 442 | return -1; |
| 443 | |
| 444 | return tp_vfts[tp].attribute (conn_index, thread_index, is_get, attr); |
| 445 | } |
| 446 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 447 | #define PORT_MASK ((1 << 16)- 1) |
| 448 | |
| 449 | void |
Florin Coras | 05ead78 | 2022-03-23 16:35:05 -0700 | [diff] [blame] | 450 | transport_endpoint_free (u32 tepi) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 451 | { |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 452 | transport_main_t *tm = &tp_main; |
| 453 | pool_put_index (tm->local_endpoints, tepi); |
Florin Coras | 05ead78 | 2022-03-23 16:35:05 -0700 | [diff] [blame] | 454 | } |
| 455 | |
Florin Coras | 57660d9 | 2020-04-04 22:45:34 +0000 | [diff] [blame] | 456 | always_inline local_endpoint_t * |
Florin Coras | 05ead78 | 2022-03-23 16:35:05 -0700 | [diff] [blame] | 457 | transport_endpoint_alloc (void) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 458 | { |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 459 | transport_main_t *tm = &tp_main; |
Florin Coras | 57660d9 | 2020-04-04 22:45:34 +0000 | [diff] [blame] | 460 | local_endpoint_t *lep; |
Florin Coras | 05ead78 | 2022-03-23 16:35:05 -0700 | [diff] [blame] | 461 | |
| 462 | ASSERT (vlib_get_thread_index () <= transport_cl_thread ()); |
Florin Coras | bf27ca8 | 2022-11-09 15:54:39 -0800 | [diff] [blame] | 463 | |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 464 | pool_get_aligned_safe (tm->local_endpoints, lep, 0); |
Florin Coras | 57660d9 | 2020-04-04 22:45:34 +0000 | [diff] [blame] | 465 | return lep; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 466 | } |
| 467 | |
Florin Coras | bf27ca8 | 2022-11-09 15:54:39 -0800 | [diff] [blame] | 468 | static void |
| 469 | transport_cleanup_freelist (void) |
| 470 | { |
| 471 | transport_main_t *tm = &tp_main; |
| 472 | local_endpoint_t *lep; |
| 473 | u32 *lep_indexp; |
| 474 | |
| 475 | clib_spinlock_lock (&tm->local_endpoints_lock); |
| 476 | |
| 477 | vec_foreach (lep_indexp, tm->lcl_endpts_freelist) |
| 478 | { |
| 479 | lep = pool_elt_at_index (tm->local_endpoints, *lep_indexp); |
| 480 | |
| 481 | /* Port re-shared after attempt to cleanup */ |
| 482 | if (lep->refcnt > 0) |
| 483 | continue; |
| 484 | |
| 485 | transport_endpoint_table_del (&tm->local_endpoints_table, lep->proto, |
| 486 | &lep->ep); |
| 487 | transport_endpoint_free (*lep_indexp); |
| 488 | } |
| 489 | |
| 490 | vec_reset_length (tm->lcl_endpts_freelist); |
| 491 | |
| 492 | tm->lcl_endpts_cleanup_pending = 0; |
| 493 | |
| 494 | clib_spinlock_unlock (&tm->local_endpoints_lock); |
| 495 | } |
| 496 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 497 | void |
Florin Coras | bf27ca8 | 2022-11-09 15:54:39 -0800 | [diff] [blame] | 498 | transport_program_endpoint_cleanup (u32 lepi) |
| 499 | { |
| 500 | transport_main_t *tm = &tp_main; |
| 501 | u8 flush_fl = 0; |
| 502 | |
| 503 | /* All workers can free connections. Synchronize access to freelist */ |
| 504 | clib_spinlock_lock (&tm->local_endpoints_lock); |
| 505 | |
| 506 | vec_add1 (tm->lcl_endpts_freelist, lepi); |
| 507 | |
| 508 | /* Avoid accumulating lots of endpoints for cleanup */ |
| 509 | if (!tm->lcl_endpts_cleanup_pending && |
| 510 | vec_len (tm->lcl_endpts_freelist) > 32) |
| 511 | { |
| 512 | tm->lcl_endpts_cleanup_pending = 1; |
| 513 | flush_fl = 1; |
| 514 | } |
| 515 | |
| 516 | clib_spinlock_unlock (&tm->local_endpoints_lock); |
| 517 | |
| 518 | if (flush_fl) |
Florin Coras | 309f7aa | 2022-03-18 08:33:08 -0700 | [diff] [blame] | 519 | session_send_rpc_evt_to_thread_force (transport_cl_thread (), |
| 520 | transport_cleanup_freelist, 0); |
Florin Coras | bf27ca8 | 2022-11-09 15:54:39 -0800 | [diff] [blame] | 521 | } |
| 522 | |
| 523 | int |
| 524 | transport_release_local_endpoint (u8 proto, ip46_address_t *lcl_ip, u16 port) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 525 | { |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 526 | transport_main_t *tm = &tp_main; |
Florin Coras | 57660d9 | 2020-04-04 22:45:34 +0000 | [diff] [blame] | 527 | local_endpoint_t *lep; |
| 528 | u32 lepi; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 529 | |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 530 | lepi = transport_endpoint_lookup (&tm->local_endpoints_table, proto, lcl_ip, |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 531 | clib_net_to_host_u16 (port)); |
Florin Coras | f55183a | 2022-03-24 17:02:08 -0700 | [diff] [blame] | 532 | if (lepi == ENDPOINT_INVALID_INDEX) |
Florin Coras | bf27ca8 | 2022-11-09 15:54:39 -0800 | [diff] [blame] | 533 | return -1; |
Florin Coras | f55183a | 2022-03-24 17:02:08 -0700 | [diff] [blame] | 534 | |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 535 | lep = pool_elt_at_index (tm->local_endpoints, lepi); |
Florin Coras | bf27ca8 | 2022-11-09 15:54:39 -0800 | [diff] [blame] | 536 | |
| 537 | /* Local endpoint no longer in use, program cleanup */ |
Florin Coras | f55183a | 2022-03-24 17:02:08 -0700 | [diff] [blame] | 538 | if (!clib_atomic_sub_fetch (&lep->refcnt, 1)) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 539 | { |
Florin Coras | bf27ca8 | 2022-11-09 15:54:39 -0800 | [diff] [blame] | 540 | transport_program_endpoint_cleanup (lepi); |
| 541 | return 0; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 542 | } |
Florin Coras | bf27ca8 | 2022-11-09 15:54:39 -0800 | [diff] [blame] | 543 | |
| 544 | /* Not an error, just in idication that endpoint was not cleaned up */ |
| 545 | return -1; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 546 | } |
| 547 | |
Florin Coras | f55183a | 2022-03-24 17:02:08 -0700 | [diff] [blame] | 548 | static int |
| 549 | transport_endpoint_mark_used (u8 proto, ip46_address_t *ip, u16 port) |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 550 | { |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 551 | transport_main_t *tm = &tp_main; |
Florin Coras | 57660d9 | 2020-04-04 22:45:34 +0000 | [diff] [blame] | 552 | local_endpoint_t *lep; |
Florin Coras | f55183a | 2022-03-24 17:02:08 -0700 | [diff] [blame] | 553 | u32 tei; |
Florin Coras | 05ead78 | 2022-03-23 16:35:05 -0700 | [diff] [blame] | 554 | |
| 555 | ASSERT (vlib_get_thread_index () <= transport_cl_thread ()); |
| 556 | |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 557 | tei = |
| 558 | transport_endpoint_lookup (&tm->local_endpoints_table, proto, ip, port); |
Florin Coras | f55183a | 2022-03-24 17:02:08 -0700 | [diff] [blame] | 559 | if (tei != ENDPOINT_INVALID_INDEX) |
| 560 | return SESSION_E_PORTINUSE; |
| 561 | |
Florin Coras | 05ead78 | 2022-03-23 16:35:05 -0700 | [diff] [blame] | 562 | /* Pool reallocs with worker barrier */ |
| 563 | lep = transport_endpoint_alloc (); |
Florin Coras | 57660d9 | 2020-04-04 22:45:34 +0000 | [diff] [blame] | 564 | clib_memcpy_fast (&lep->ep.ip, ip, sizeof (*ip)); |
| 565 | lep->ep.port = port; |
Florin Coras | bf27ca8 | 2022-11-09 15:54:39 -0800 | [diff] [blame] | 566 | lep->proto = proto; |
Florin Coras | 57660d9 | 2020-04-04 22:45:34 +0000 | [diff] [blame] | 567 | lep->refcnt = 1; |
Florin Coras | f55183a | 2022-03-24 17:02:08 -0700 | [diff] [blame] | 568 | |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 569 | transport_endpoint_table_add (&tm->local_endpoints_table, proto, &lep->ep, |
| 570 | lep - tm->local_endpoints); |
Florin Coras | f55183a | 2022-03-24 17:02:08 -0700 | [diff] [blame] | 571 | |
| 572 | return 0; |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 573 | } |
| 574 | |
Florin Coras | 57660d9 | 2020-04-04 22:45:34 +0000 | [diff] [blame] | 575 | void |
| 576 | transport_share_local_endpoint (u8 proto, ip46_address_t * lcl_ip, u16 port) |
| 577 | { |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 578 | transport_main_t *tm = &tp_main; |
Florin Coras | 57660d9 | 2020-04-04 22:45:34 +0000 | [diff] [blame] | 579 | local_endpoint_t *lep; |
| 580 | u32 lepi; |
| 581 | |
Florin Coras | bf27ca8 | 2022-11-09 15:54:39 -0800 | [diff] [blame] | 582 | /* Active opens should call this only from a control thread, which are also |
| 583 | * used to allocate and free ports. So, pool has only one writer and |
| 584 | * potentially many readers. Listeners are allocated with barrier */ |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 585 | lepi = transport_endpoint_lookup (&tm->local_endpoints_table, proto, lcl_ip, |
Florin Coras | 57660d9 | 2020-04-04 22:45:34 +0000 | [diff] [blame] | 586 | clib_net_to_host_u16 (port)); |
| 587 | if (lepi != ENDPOINT_INVALID_INDEX) |
| 588 | { |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 589 | lep = pool_elt_at_index (tm->local_endpoints, lepi); |
Florin Coras | 57660d9 | 2020-04-04 22:45:34 +0000 | [diff] [blame] | 590 | clib_atomic_add_fetch (&lep->refcnt, 1); |
| 591 | } |
| 592 | } |
| 593 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 594 | /** |
| 595 | * Allocate local port and add if successful add entry to local endpoint |
| 596 | * table to mark the pair as used. |
| 597 | */ |
| 598 | int |
Florin Coras | 3d6156f | 2023-01-30 11:18:36 -0800 | [diff] [blame] | 599 | transport_alloc_local_port (u8 proto, ip46_address_t *lcl_addr, |
| 600 | transport_endpoint_cfg_t *rmt) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 601 | { |
Florin Coras | bf27ca8 | 2022-11-09 15:54:39 -0800 | [diff] [blame] | 602 | transport_main_t *tm = &tp_main; |
Nathan Skrzypczak | e111bbd | 2023-10-03 13:54:15 +0200 | [diff] [blame^] | 603 | u16 min = tm->port_allocator_min_src_port; |
| 604 | u16 max = tm->port_allocator_max_src_port; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 605 | int tries, limit; |
| 606 | |
| 607 | limit = max - min; |
| 608 | |
Florin Coras | 05ead78 | 2022-03-23 16:35:05 -0700 | [diff] [blame] | 609 | /* Only support active opens from one of ctrl threads */ |
| 610 | ASSERT (vlib_get_thread_index () <= transport_cl_thread ()); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 611 | |
| 612 | /* Search for first free slot */ |
| 613 | for (tries = 0; tries < limit; tries++) |
| 614 | { |
| 615 | u16 port = 0; |
| 616 | |
| 617 | /* Find a port in the specified range */ |
| 618 | while (1) |
| 619 | { |
Florin Coras | bf27ca8 | 2022-11-09 15:54:39 -0800 | [diff] [blame] | 620 | port = random_u32 (&tm->port_allocator_seed) & PORT_MASK; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 621 | if (PREDICT_TRUE (port >= min && port < max)) |
| 622 | break; |
| 623 | } |
| 624 | |
Florin Coras | 3d6156f | 2023-01-30 11:18:36 -0800 | [diff] [blame] | 625 | if (!transport_endpoint_mark_used (proto, lcl_addr, port)) |
Florin Coras | f55183a | 2022-03-24 17:02:08 -0700 | [diff] [blame] | 626 | return port; |
Florin Coras | 3d6156f | 2023-01-30 11:18:36 -0800 | [diff] [blame] | 627 | |
| 628 | /* IP:port pair already in use, check if 6-tuple available */ |
| 629 | if (session_lookup_connection (rmt->fib_index, lcl_addr, &rmt->ip, port, |
| 630 | rmt->port, proto, rmt->is_ip4)) |
| 631 | continue; |
| 632 | |
| 633 | /* 6-tuple is available so increment lcl endpoint refcount */ |
| 634 | transport_share_local_endpoint (proto, lcl_addr, port); |
| 635 | |
| 636 | return port; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 637 | } |
| 638 | return -1; |
| 639 | } |
| 640 | |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 641 | static session_error_t |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 642 | transport_get_interface_ip (u32 sw_if_index, u8 is_ip4, ip46_address_t * addr) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 643 | { |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 644 | if (is_ip4) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 645 | { |
| 646 | ip4_address_t *ip4; |
| 647 | ip4 = ip_interface_get_first_ip (sw_if_index, 1); |
Florin Coras | fc804d9 | 2018-01-26 01:27:01 -0800 | [diff] [blame] | 648 | if (!ip4) |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 649 | return SESSION_E_NOIP; |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 650 | addr->ip4.as_u32 = ip4->as_u32; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 651 | } |
| 652 | else |
| 653 | { |
| 654 | ip6_address_t *ip6; |
| 655 | ip6 = ip_interface_get_first_ip (sw_if_index, 0); |
| 656 | if (ip6 == 0) |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 657 | return SESSION_E_NOIP; |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 658 | clib_memcpy_fast (&addr->ip6, ip6, sizeof (*ip6)); |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 659 | } |
| 660 | return 0; |
| 661 | } |
| 662 | |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 663 | static session_error_t |
Florin Coras | 596c45b | 2021-09-09 12:04:17 -0700 | [diff] [blame] | 664 | transport_find_local_ip_for_remote (u32 *sw_if_index, |
| 665 | transport_endpoint_t *rmt, |
| 666 | ip46_address_t *lcl_addr) |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 667 | { |
| 668 | fib_node_index_t fei; |
| 669 | fib_prefix_t prefix; |
| 670 | |
Florin Coras | 596c45b | 2021-09-09 12:04:17 -0700 | [diff] [blame] | 671 | if (*sw_if_index == ENDPOINT_INVALID_INDEX) |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 672 | { |
| 673 | /* Find a FIB path to the destination */ |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 674 | clib_memcpy_fast (&prefix.fp_addr, &rmt->ip, sizeof (rmt->ip)); |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 675 | prefix.fp_proto = rmt->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6; |
| 676 | prefix.fp_len = rmt->is_ip4 ? 32 : 128; |
| 677 | |
| 678 | ASSERT (rmt->fib_index != ENDPOINT_INVALID_INDEX); |
| 679 | fei = fib_table_lookup (rmt->fib_index, &prefix); |
| 680 | |
| 681 | /* Couldn't find route to destination. Bail out. */ |
| 682 | if (fei == FIB_NODE_INDEX_INVALID) |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 683 | return SESSION_E_NOROUTE; |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 684 | |
Florin Coras | 596c45b | 2021-09-09 12:04:17 -0700 | [diff] [blame] | 685 | *sw_if_index = fib_entry_get_resolving_interface (fei); |
| 686 | if (*sw_if_index == ENDPOINT_INVALID_INDEX) |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 687 | return SESSION_E_NOINTF; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 688 | } |
| 689 | |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 690 | clib_memset (lcl_addr, 0, sizeof (*lcl_addr)); |
Florin Coras | 596c45b | 2021-09-09 12:04:17 -0700 | [diff] [blame] | 691 | return transport_get_interface_ip (*sw_if_index, rmt->is_ip4, lcl_addr); |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 692 | } |
| 693 | |
| 694 | int |
| 695 | transport_alloc_local_endpoint (u8 proto, transport_endpoint_cfg_t * rmt_cfg, |
| 696 | ip46_address_t * lcl_addr, u16 * lcl_port) |
| 697 | { |
| 698 | transport_endpoint_t *rmt = (transport_endpoint_t *) rmt_cfg; |
Florin Coras | 02aa2ca | 2023-03-13 16:31:52 -0700 | [diff] [blame] | 699 | transport_main_t *tm = &tp_main; |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 700 | session_error_t error; |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 701 | int port; |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 702 | |
| 703 | /* |
| 704 | * Find the local address |
| 705 | */ |
| 706 | if (ip_is_zero (&rmt_cfg->peer.ip, rmt_cfg->peer.is_ip4)) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 707 | { |
Florin Coras | 596c45b | 2021-09-09 12:04:17 -0700 | [diff] [blame] | 708 | error = transport_find_local_ip_for_remote (&rmt_cfg->peer.sw_if_index, |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 709 | rmt, lcl_addr); |
| 710 | if (error) |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 711 | return error; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 712 | } |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 713 | else |
| 714 | { |
| 715 | /* Assume session layer vetted this address */ |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 716 | clib_memcpy_fast (lcl_addr, &rmt_cfg->peer.ip, |
| 717 | sizeof (rmt_cfg->peer.ip)); |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 718 | } |
| 719 | |
Florin Coras | 02aa2ca | 2023-03-13 16:31:52 -0700 | [diff] [blame] | 720 | /* Cleanup freelist if need be */ |
| 721 | if (vec_len (tm->lcl_endpts_freelist)) |
| 722 | transport_cleanup_freelist (); |
| 723 | |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 724 | /* |
| 725 | * Allocate source port |
| 726 | */ |
| 727 | if (rmt_cfg->peer.port == 0) |
| 728 | { |
Florin Coras | 3d6156f | 2023-01-30 11:18:36 -0800 | [diff] [blame] | 729 | port = transport_alloc_local_port (proto, lcl_addr, rmt_cfg); |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 730 | if (port < 1) |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 731 | return SESSION_E_NOPORT; |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 732 | *lcl_port = port; |
| 733 | } |
| 734 | else |
| 735 | { |
| 736 | port = clib_net_to_host_u16 (rmt_cfg->peer.port); |
Florin Coras | 57660d9 | 2020-04-04 22:45:34 +0000 | [diff] [blame] | 737 | *lcl_port = port; |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 738 | |
Florin Coras | e541d6f | 2023-03-14 09:59:02 -0700 | [diff] [blame] | 739 | if (!transport_endpoint_mark_used (proto, lcl_addr, port)) |
| 740 | return 0; |
| 741 | |
| 742 | /* IP:port pair already in use, check if 6-tuple available */ |
| 743 | if (session_lookup_connection (rmt->fib_index, lcl_addr, &rmt->ip, port, |
| 744 | rmt->port, proto, rmt->is_ip4)) |
| 745 | return SESSION_E_PORTINUSE; |
| 746 | |
| 747 | /* 6-tuple is available so increment lcl endpoint refcount */ |
| 748 | transport_share_local_endpoint (proto, lcl_addr, port); |
| 749 | |
| 750 | return 0; |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 751 | } |
| 752 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 753 | return 0; |
| 754 | } |
| 755 | |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 756 | u8 * |
| 757 | format_clib_us_time (u8 * s, va_list * args) |
| 758 | { |
| 759 | clib_us_time_t t = va_arg (*args, clib_us_time_t); |
| 760 | if (t < 1e3) |
| 761 | s = format (s, "%u us", t); |
| 762 | else |
| 763 | s = format (s, "%.3f s", (f64) t * CLIB_US_TIME_PERIOD); |
| 764 | return s; |
| 765 | } |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 766 | |
| 767 | u8 * |
| 768 | format_transport_pacer (u8 * s, va_list * args) |
| 769 | { |
| 770 | spacer_t *pacer = va_arg (*args, spacer_t *); |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 771 | u32 thread_index = va_arg (*args, int); |
| 772 | clib_us_time_t now, diff; |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 773 | |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 774 | now = transport_us_time_now (thread_index); |
| 775 | diff = now - pacer->last_update; |
Florin Coras | a39f472 | 2020-11-12 10:20:05 -0800 | [diff] [blame] | 776 | s = format (s, "rate %lu bucket %ld t/p %.3f last_update %U burst %u", |
Florin Coras | be237bf | 2019-09-27 08:16:40 -0700 | [diff] [blame] | 777 | pacer->bytes_per_sec, pacer->bucket, pacer->tokens_per_period, |
Florin Coras | 7808df2 | 2020-11-02 18:00:32 -0800 | [diff] [blame] | 778 | format_clib_us_time, diff, pacer->max_burst); |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 779 | return s; |
| 780 | } |
| 781 | |
| 782 | static inline u32 |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 783 | spacer_max_burst (spacer_t * pacer, clib_us_time_t time_now) |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 784 | { |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 785 | u64 n_periods = (time_now - pacer->last_update); |
Florin Coras | 93dd58c | 2022-01-09 17:20:28 -0800 | [diff] [blame] | 786 | i64 inc; |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 787 | |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 788 | if ((inc = (f32) n_periods * pacer->tokens_per_period) > 10) |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 789 | { |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 790 | pacer->last_update = time_now; |
Florin Coras | 93dd58c | 2022-01-09 17:20:28 -0800 | [diff] [blame] | 791 | pacer->bucket = clib_min (pacer->bucket + inc, (i64) pacer->max_burst); |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 792 | } |
| 793 | |
Florin Coras | 2b4f74f | 2022-01-09 19:03:09 -0800 | [diff] [blame] | 794 | return pacer->bucket >= 0 ? pacer->max_burst : 0; |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 795 | } |
| 796 | |
| 797 | static inline void |
| 798 | spacer_update_bucket (spacer_t * pacer, u32 bytes) |
| 799 | { |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 800 | pacer->bucket -= bytes; |
| 801 | } |
| 802 | |
| 803 | static inline void |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 804 | spacer_set_pace_rate (spacer_t * pacer, u64 rate_bytes_per_sec, |
Florin Coras | a39f472 | 2020-11-12 10:20:05 -0800 | [diff] [blame] | 805 | clib_us_time_t rtt, clib_time_type_t sec_per_loop) |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 806 | { |
Florin Coras | 7808df2 | 2020-11-02 18:00:32 -0800 | [diff] [blame] | 807 | clib_us_time_t max_time; |
| 808 | |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 809 | ASSERT (rate_bytes_per_sec != 0); |
Florin Coras | 7c8f828 | 2019-09-15 16:28:45 -0700 | [diff] [blame] | 810 | pacer->bytes_per_sec = rate_bytes_per_sec; |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 811 | pacer->tokens_per_period = rate_bytes_per_sec * CLIB_US_TIME_PERIOD; |
Florin Coras | 7808df2 | 2020-11-02 18:00:32 -0800 | [diff] [blame] | 812 | |
| 813 | /* Allow a min number of bursts per rtt, if their size is acceptable. Goal |
| 814 | * is to spread the sending of data over the rtt but to also allow for some |
| 815 | * coalescing that can potentially |
| 816 | * 1) reduce load on session layer by reducing scheduling frequency for a |
| 817 | * session and |
| 818 | * 2) optimize sending when tso if available |
| 819 | * |
| 820 | * Max "time-length" of a burst cannot be less than 1us or more than 1ms. |
| 821 | */ |
Florin Coras | a39f472 | 2020-11-12 10:20:05 -0800 | [diff] [blame] | 822 | max_time = clib_max (rtt / TRANSPORT_PACER_BURSTS_PER_RTT, |
| 823 | (clib_us_time_t) (sec_per_loop * CLIB_US_TIME_FREQ)); |
Florin Coras | 7808df2 | 2020-11-02 18:00:32 -0800 | [diff] [blame] | 824 | max_time = clib_clamp (max_time, 1 /* 1us */ , 1000 /* 1ms */ ); |
| 825 | pacer->max_burst = (rate_bytes_per_sec * max_time) * CLIB_US_TIME_PERIOD; |
| 826 | pacer->max_burst = clib_clamp (pacer->max_burst, TRANSPORT_PACER_MIN_BURST, |
| 827 | TRANSPORT_PACER_MAX_BURST); |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 828 | } |
| 829 | |
Florin Coras | 5281473 | 2019-06-12 15:38:19 -0700 | [diff] [blame] | 830 | static inline u64 |
| 831 | spacer_pace_rate (spacer_t * pacer) |
| 832 | { |
Florin Coras | 7c8f828 | 2019-09-15 16:28:45 -0700 | [diff] [blame] | 833 | return pacer->bytes_per_sec; |
Florin Coras | 5281473 | 2019-06-12 15:38:19 -0700 | [diff] [blame] | 834 | } |
| 835 | |
Florin Coras | 36ebcff | 2019-09-12 18:36:44 -0700 | [diff] [blame] | 836 | static inline void |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 837 | spacer_reset (spacer_t * pacer, clib_us_time_t time_now, u64 bucket) |
Florin Coras | 36ebcff | 2019-09-12 18:36:44 -0700 | [diff] [blame] | 838 | { |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 839 | pacer->last_update = time_now; |
| 840 | pacer->bucket = bucket; |
Florin Coras | 36ebcff | 2019-09-12 18:36:44 -0700 | [diff] [blame] | 841 | } |
| 842 | |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 843 | void |
Florin Coras | c44a558 | 2018-11-01 16:30:54 -0700 | [diff] [blame] | 844 | transport_connection_tx_pacer_reset (transport_connection_t * tc, |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 845 | u64 rate_bytes_per_sec, u32 start_bucket, |
| 846 | clib_us_time_t rtt) |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 847 | { |
Florin Coras | a39f472 | 2020-11-12 10:20:05 -0800 | [diff] [blame] | 848 | spacer_set_pace_rate (&tc->pacer, rate_bytes_per_sec, rtt, |
| 849 | transport_seconds_per_loop (tc->thread_index)); |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 850 | spacer_reset (&tc->pacer, transport_us_time_now (tc->thread_index), |
| 851 | start_bucket); |
| 852 | } |
| 853 | |
| 854 | void |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 855 | transport_connection_tx_pacer_reset_bucket (transport_connection_t * tc, |
| 856 | u32 bucket) |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 857 | { |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 858 | spacer_reset (&tc->pacer, transport_us_time_now (tc->thread_index), bucket); |
Florin Coras | c44a558 | 2018-11-01 16:30:54 -0700 | [diff] [blame] | 859 | } |
| 860 | |
| 861 | void |
| 862 | transport_connection_tx_pacer_init (transport_connection_t * tc, |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 863 | u64 rate_bytes_per_sec, |
Florin Coras | c44a558 | 2018-11-01 16:30:54 -0700 | [diff] [blame] | 864 | u32 initial_bucket) |
| 865 | { |
Florin Coras | c44a558 | 2018-11-01 16:30:54 -0700 | [diff] [blame] | 866 | tc->flags |= TRANSPORT_CONNECTION_F_IS_TX_PACED; |
| 867 | transport_connection_tx_pacer_reset (tc, rate_bytes_per_sec, |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 868 | initial_bucket, 1e6); |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 869 | } |
| 870 | |
| 871 | void |
| 872 | transport_connection_tx_pacer_update (transport_connection_t * tc, |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 873 | u64 bytes_per_sec, clib_us_time_t rtt) |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 874 | { |
Florin Coras | a39f472 | 2020-11-12 10:20:05 -0800 | [diff] [blame] | 875 | spacer_set_pace_rate (&tc->pacer, bytes_per_sec, rtt, |
| 876 | transport_seconds_per_loop (tc->thread_index)); |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 877 | } |
| 878 | |
| 879 | u32 |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 880 | transport_connection_tx_pacer_burst (transport_connection_t * tc) |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 881 | { |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 882 | return spacer_max_burst (&tc->pacer, |
| 883 | transport_us_time_now (tc->thread_index)); |
Florin Coras | 36ebcff | 2019-09-12 18:36:44 -0700 | [diff] [blame] | 884 | } |
| 885 | |
Florin Coras | 5281473 | 2019-06-12 15:38:19 -0700 | [diff] [blame] | 886 | u64 |
| 887 | transport_connection_tx_pacer_rate (transport_connection_t * tc) |
| 888 | { |
| 889 | return spacer_pace_rate (&tc->pacer); |
| 890 | } |
| 891 | |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 892 | void |
Florin Coras | 0048223 | 2019-08-02 12:52:00 -0700 | [diff] [blame] | 893 | transport_connection_update_tx_bytes (transport_connection_t * tc, u32 bytes) |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 894 | { |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 895 | if (transport_connection_is_tx_paced (tc)) |
| 896 | spacer_update_bucket (&tc->pacer, bytes); |
| 897 | } |
| 898 | |
| 899 | void |
Florin Coras | e55a6d7 | 2018-10-31 23:09:22 -0700 | [diff] [blame] | 900 | transport_connection_tx_pacer_update_bytes (transport_connection_t * tc, |
| 901 | u32 bytes) |
| 902 | { |
| 903 | spacer_update_bucket (&tc->pacer, bytes); |
| 904 | } |
| 905 | |
| 906 | void |
Florin Coras | 8f10b90 | 2021-04-02 18:32:00 -0700 | [diff] [blame] | 907 | transport_update_pacer_time (u32 thread_index, clib_time_type_t now) |
| 908 | { |
| 909 | session_wrk_update_time (session_main_get_worker (thread_index), now); |
| 910 | } |
| 911 | |
| 912 | void |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 913 | transport_connection_reschedule (transport_connection_t * tc) |
| 914 | { |
| 915 | tc->flags &= ~TRANSPORT_CONNECTION_F_DESCHED; |
Florin Coras | 2b4f74f | 2022-01-09 19:03:09 -0800 | [diff] [blame] | 916 | transport_connection_tx_pacer_reset_bucket (tc, 0 /* bucket */); |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 917 | if (transport_max_tx_dequeue (tc)) |
| 918 | sesssion_reschedule_tx (tc); |
| 919 | else |
| 920 | { |
| 921 | session_t *s = session_get (tc->s_index, tc->thread_index); |
| 922 | svm_fifo_unset_event (s->tx_fifo); |
| 923 | if (svm_fifo_max_dequeue_cons (s->tx_fifo)) |
| 924 | if (svm_fifo_set_event (s->tx_fifo)) |
| 925 | sesssion_reschedule_tx (tc); |
| 926 | } |
| 927 | } |
| 928 | |
| 929 | void |
Florin Coras | 8c4fa01 | 2020-11-06 16:59:08 -0800 | [diff] [blame] | 930 | transport_fifos_init_ooo (transport_connection_t * tc) |
| 931 | { |
| 932 | session_t *s = session_get (tc->s_index, tc->thread_index); |
| 933 | svm_fifo_init_ooo_lookup (s->rx_fifo, 0 /* ooo enq */ ); |
| 934 | svm_fifo_init_ooo_lookup (s->tx_fifo, 1 /* ooo deq */ ); |
| 935 | } |
| 936 | |
| 937 | void |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 938 | transport_update_time (clib_time_type_t time_now, u8 thread_index) |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 939 | { |
| 940 | transport_proto_vft_t *vft; |
| 941 | vec_foreach (vft, tp_vfts) |
| 942 | { |
| 943 | if (vft->update_time) |
| 944 | (vft->update_time) (time_now, thread_index); |
| 945 | } |
| 946 | } |
| 947 | |
| 948 | void |
| 949 | transport_enable_disable (vlib_main_t * vm, u8 is_en) |
| 950 | { |
| 951 | transport_proto_vft_t *vft; |
| 952 | vec_foreach (vft, tp_vfts) |
| 953 | { |
| 954 | if (vft->enable) |
| 955 | (vft->enable) (vm, is_en); |
Florin Coras | 5384cca | 2022-01-20 18:10:26 -0800 | [diff] [blame] | 956 | |
| 957 | if (vft->update_time) |
| 958 | session_register_update_time_fn (vft->update_time, is_en); |
Florin Coras | 561af9b | 2017-12-09 10:19:43 -0800 | [diff] [blame] | 959 | } |
| 960 | } |
| 961 | |
| 962 | void |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 963 | transport_init (void) |
| 964 | { |
| 965 | vlib_thread_main_t *vtm = vlib_get_thread_main (); |
Florin Coras | 31c9955 | 2019-03-01 13:00:58 -0800 | [diff] [blame] | 966 | session_main_t *smm = vnet_get_session_main (); |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 967 | transport_main_t *tm = &tp_main; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 968 | u32 num_threads; |
| 969 | |
Florin Coras | 93e6580 | 2017-11-29 00:07:11 -0500 | [diff] [blame] | 970 | if (smm->local_endpoints_table_buckets == 0) |
| 971 | smm->local_endpoints_table_buckets = 250000; |
| 972 | if (smm->local_endpoints_table_memory == 0) |
| 973 | smm->local_endpoints_table_memory = 512 << 20; |
| 974 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 975 | /* Initialize [port-allocator] random number seed */ |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 976 | tm->port_allocator_seed = (u32) clib_cpu_time_now (); |
Nathan Skrzypczak | e111bbd | 2023-10-03 13:54:15 +0200 | [diff] [blame^] | 977 | tm->port_allocator_min_src_port = smm->port_allocator_min_src_port; |
| 978 | tm->port_allocator_max_src_port = smm->port_allocator_max_src_port; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 979 | |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 980 | clib_bihash_init_24_8 (&tm->local_endpoints_table, "local endpoints table", |
Florin Coras | 93e6580 | 2017-11-29 00:07:11 -0500 | [diff] [blame] | 981 | smm->local_endpoints_table_buckets, |
| 982 | smm->local_endpoints_table_memory); |
Florin Coras | 0b466ad | 2022-11-03 12:50:13 -0700 | [diff] [blame] | 983 | clib_spinlock_init (&tm->local_endpoints_lock); |
Florin Coras | 05ead78 | 2022-03-23 16:35:05 -0700 | [diff] [blame] | 984 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 985 | num_threads = 1 /* main thread */ + vtm->n_threads; |
| 986 | if (num_threads > 1) |
Florin Coras | fb50bc3 | 2021-05-18 00:28:59 -0700 | [diff] [blame] | 987 | { |
Florin Coras | fb50bc3 | 2021-05-18 00:28:59 -0700 | [diff] [blame] | 988 | /* Main not polled if there are workers */ |
| 989 | smm->transport_cl_thread = 1; |
| 990 | } |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 991 | } |
| 992 | |
| 993 | /* |
| 994 | * fd.io coding-style-patch-verification: ON |
| 995 | * |
| 996 | * Local Variables: |
| 997 | * eval: (c-set-style "gnu") |
| 998 | * End: |
| 999 | */ |