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