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