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