blob: 1c2a9261d3caf370eb1bc6c76529c2ae1245cd68 [file] [log] [blame]
Florin Coras3cbc04b2017-10-02 00:18:51 -07001/*
Florin Coras288eaab2019-02-03 15:26:14 -08002 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
Florin Coras3cbc04b2017-10-02 00:18:51 -07003 * 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 Coras1ee78302019-02-05 15:51:15 -080016#include <vnet/session/transport.h>
Florin Coras3cbc04b2017-10-02 00:18:51 -070017#include <vnet/session/session.h>
18#include <vnet/fib/fib.h>
19
Florin Coras0b466ad2022-11-03 12:50:13 -070020/**
21 * Per-type vector of transport protocol virtual function tables
22 */
23transport_proto_vft_t *tp_vfts;
24
Florin Coras57660d92020-04-04 22:45:34 +000025typedef struct local_endpoint_
26{
27 transport_endpoint_t ep;
Florin Corasbf27ca82022-11-09 15:54:39 -080028 transport_proto_t proto;
Florin Coras57660d92020-04-04 22:45:34 +000029 int refcnt;
30} local_endpoint_t;
31
Florin Coras0b466ad2022-11-03 12:50:13 -070032typedef struct transport_main_
33{
34 transport_endpoint_table_t local_endpoints_table;
35 local_endpoint_t *local_endpoints;
Florin Corasbf27ca82022-11-09 15:54:39 -080036 u32 *lcl_endpts_freelist;
Florin Coras0b466ad2022-11-03 12:50:13 -070037 u32 port_allocator_seed;
Nathan Skrzypczake111bbd2023-10-03 13:54:15 +020038 u16 port_allocator_min_src_port;
39 u16 port_allocator_max_src_port;
Florin Corasbf27ca82022-11-09 15:54:39 -080040 u8 lcl_endpts_cleanup_pending;
Florin Coras0b466ad2022-11-03 12:50:13 -070041 clib_spinlock_t local_endpoints_lock;
42} transport_main_t;
Florin Coras3cbc04b2017-10-02 00:18:51 -070043
Florin Coras0b466ad2022-11-03 12:50:13 -070044static transport_main_t tp_main;
Florin Coras3cbc04b2017-10-02 00:18:51 -070045
Florin Coras1c710452017-10-17 00:03:13 -070046u8 *
47format_transport_proto (u8 * s, va_list * args)
48{
49 u32 transport_proto = va_arg (*args, u32);
Florin Coras07063b82020-03-13 04:44:51 +000050
51 if (tp_vfts[transport_proto].transport_options.name)
52 s = format (s, "%s", tp_vfts[transport_proto].transport_options.name);
53 else
54 s = format (s, "n/a");
55
Florin Coras1c710452017-10-17 00:03:13 -070056 return s;
57}
58
Florin Coras561af9b2017-12-09 10:19:43 -080059u8 *
60format_transport_proto_short (u8 * s, va_list * args)
61{
62 u32 transport_proto = va_arg (*args, u32);
Florin Coras07063b82020-03-13 04:44:51 +000063 char *short_name;
64
65 short_name = tp_vfts[transport_proto].transport_options.short_name;
66 if (short_name)
67 s = format (s, "%s", short_name);
68 else
69 s = format (s, "NA");
70
Florin Coras561af9b2017-12-09 10:19:43 -080071 return s;
72}
73
Florin Coras0d712c12023-03-13 14:33:37 -070074const char *transport_flags_str[] = {
75#define _(sym, str) str,
76 foreach_transport_connection_flag
77#undef _
78};
79
80u8 *
81format_transport_flags (u8 *s, va_list *args)
82{
83 transport_connection_flags_t flags;
84 int i, last = -1;
85
86 flags = va_arg (*args, transport_connection_flags_t);
87
88 for (i = 0; i < TRANSPORT_CONNECTION_N_FLAGS; i++)
89 if (flags & (1 << i))
90 last = i;
91
92 for (i = 0; i < last; i++)
93 {
94 if (flags & (1 << i))
95 s = format (s, "%s, ", transport_flags_str[i]);
96 }
97 if (last >= 0)
98 s = format (s, "%s", transport_flags_str[last]);
99
100 return s;
101}
102
Florin Corasde9a8492018-10-24 22:18:58 -0700103u8 *
104format_transport_connection (u8 * s, va_list * args)
105{
106 u32 transport_proto = va_arg (*args, u32);
107 u32 conn_index = va_arg (*args, u32);
108 u32 thread_index = va_arg (*args, u32);
109 u32 verbose = va_arg (*args, u32);
110 transport_proto_vft_t *tp_vft;
111 transport_connection_t *tc;
112 u32 indent;
113
114 tp_vft = transport_protocol_get_vft (transport_proto);
115 if (!tp_vft)
116 return s;
117
118 s = format (s, "%U", tp_vft->format_connection, conn_index, thread_index,
119 verbose);
120 tc = tp_vft->get_connection (conn_index, thread_index);
Florin Coras36d49392020-04-24 23:00:11 +0000121 if (tc && verbose > 1)
Florin Corasde9a8492018-10-24 22:18:58 -0700122 {
123 indent = format_get_indent (s) + 1;
Florin Coras36d49392020-04-24 23:00:11 +0000124 if (transport_connection_is_tx_paced (tc))
125 s = format (s, "%Upacer: %U\n", format_white_space, indent,
126 format_transport_pacer, &tc->pacer, tc->thread_index);
Florin Coras0d712c12023-03-13 14:33:37 -0700127 s = format (s, "%Utransport: flags: %U\n", format_white_space, indent,
128 format_transport_flags, tc->flags);
Florin Corasde9a8492018-10-24 22:18:58 -0700129 }
130 return s;
131}
132
133u8 *
134format_transport_listen_connection (u8 * s, va_list * args)
135{
136 u32 transport_proto = va_arg (*args, u32);
Florin Corasde9a8492018-10-24 22:18:58 -0700137 transport_proto_vft_t *tp_vft;
138
139 tp_vft = transport_protocol_get_vft (transport_proto);
140 if (!tp_vft)
141 return s;
142
Florin Coras3389dd22019-02-01 18:00:05 -0800143 s = (tp_vft->format_listener) (s, args);
Florin Corasde9a8492018-10-24 22:18:58 -0700144 return s;
145}
146
147u8 *
148format_transport_half_open_connection (u8 * s, va_list * args)
149{
150 u32 transport_proto = va_arg (*args, u32);
Florin Corasde9a8492018-10-24 22:18:58 -0700151 transport_proto_vft_t *tp_vft;
152
153 tp_vft = transport_protocol_get_vft (transport_proto);
154 if (!tp_vft)
155 return s;
156
Florin Coras49a10322023-03-22 19:07:35 -0700157 s = (tp_vft->format_half_open) (s, args);
Florin Corasde9a8492018-10-24 22:18:58 -0700158 return s;
159}
160
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800161static u8
162unformat_transport_str_match (unformat_input_t * input, const char *str)
163{
164 int i;
165
166 if (strlen (str) > vec_len (input->buffer) - input->index)
167 return 0;
168
169 for (i = 0; i < strlen (str); i++)
170 {
171 if (input->buffer[i + input->index] != str[i])
172 return 0;
173 }
174 return 1;
175}
176
Florin Coras1c710452017-10-17 00:03:13 -0700177uword
178unformat_transport_proto (unformat_input_t * input, va_list * args)
179{
180 u32 *proto = va_arg (*args, u32 *);
Florin Coras07063b82020-03-13 04:44:51 +0000181 transport_proto_vft_t *tp_vft;
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800182 u8 longest_match = 0, match;
Florin Coras07063b82020-03-13 04:44:51 +0000183 char *str, *str_match = 0;
184 transport_proto_t tp;
Florin Coras5bb23ec2019-08-31 09:45:13 -0700185
Florin Coras07063b82020-03-13 04:44:51 +0000186 for (tp = 0; tp < vec_len (tp_vfts); tp++)
187 {
188 tp_vft = &tp_vfts[tp];
189 str = tp_vft->transport_options.name;
190 if (!str)
191 continue;
192 if (unformat_transport_str_match (input, str))
193 {
194 match = strlen (str);
195 if (match > longest_match)
196 {
197 *proto = tp;
198 longest_match = match;
199 str_match = str;
200 }
201 }
Florin Coras5bb23ec2019-08-31 09:45:13 -0700202 }
Florin Coras07063b82020-03-13 04:44:51 +0000203 if (longest_match)
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800204 {
Dave Barach4897d772020-03-26 10:56:13 -0400205 (void) unformat (input, str_match);
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800206 return 1;
207 }
208
209 return 0;
Florin Coras1c710452017-10-17 00:03:13 -0700210}
Florin Coras3cbc04b2017-10-02 00:18:51 -0700211
Florin Coras07063b82020-03-13 04:44:51 +0000212u8 *
213format_transport_protos (u8 * s, va_list * args)
214{
215 transport_proto_vft_t *tp_vft;
216
217 vec_foreach (tp_vft, tp_vfts)
218 s = format (s, "%s\n", tp_vft->transport_options.name);
219
220 return s;
221}
222
Florin Coras3cbc04b2017-10-02 00:18:51 -0700223u32
224transport_endpoint_lookup (transport_endpoint_table_t * ht, u8 proto,
225 ip46_address_t * ip, u16 port)
226{
227 clib_bihash_kv_24_8_t kv;
228 int rv;
229
230 kv.key[0] = ip->as_u64[0];
231 kv.key[1] = ip->as_u64[1];
232 kv.key[2] = (u64) port << 8 | (u64) proto;
233
234 rv = clib_bihash_search_inline_24_8 (ht, &kv);
235 if (rv == 0)
236 return kv.value;
237
238 return ENDPOINT_INVALID_INDEX;
239}
240
241void
242transport_endpoint_table_add (transport_endpoint_table_t * ht, u8 proto,
243 transport_endpoint_t * te, u32 value)
244{
245 clib_bihash_kv_24_8_t kv;
246
247 kv.key[0] = te->ip.as_u64[0];
248 kv.key[1] = te->ip.as_u64[1];
249 kv.key[2] = (u64) te->port << 8 | (u64) proto;
250 kv.value = value;
251
252 clib_bihash_add_del_24_8 (ht, &kv, 1);
253}
254
255void
256transport_endpoint_table_del (transport_endpoint_table_t * ht, u8 proto,
257 transport_endpoint_t * te)
258{
259 clib_bihash_kv_24_8_t kv;
260
261 kv.key[0] = te->ip.as_u64[0];
262 kv.key[1] = te->ip.as_u64[1];
263 kv.key[2] = (u64) te->port << 8 | (u64) proto;
264
265 clib_bihash_add_del_24_8 (ht, &kv, 0);
266}
267
Florin Coras3cbc04b2017-10-02 00:18:51 -0700268void
Florin Coras561af9b2017-12-09 10:19:43 -0800269transport_register_protocol (transport_proto_t transport_proto,
270 const transport_proto_vft_t * vft,
271 fib_protocol_t fib_proto, u32 output_node)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700272{
Florin Coras561af9b2017-12-09 10:19:43 -0800273 u8 is_ip4 = fib_proto == FIB_PROTOCOL_IP4;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700274
Florin Coras561af9b2017-12-09 10:19:43 -0800275 vec_validate (tp_vfts, transport_proto);
276 tp_vfts[transport_proto] = *vft;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700277
Florin Coras561af9b2017-12-09 10:19:43 -0800278 session_register_transport (transport_proto, vft, is_ip4, output_node);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700279}
280
Florin Coras07063b82020-03-13 04:44:51 +0000281transport_proto_t
282transport_register_new_protocol (const transport_proto_vft_t * vft,
283 fib_protocol_t fib_proto, u32 output_node)
284{
285 transport_proto_t transport_proto;
286 u8 is_ip4;
287
288 transport_proto = session_add_transport_proto ();
289 is_ip4 = fib_proto == FIB_PROTOCOL_IP4;
290
291 vec_validate (tp_vfts, transport_proto);
292 tp_vfts[transport_proto] = *vft;
293
294 session_register_transport (transport_proto, vft, is_ip4, output_node);
295
296 return transport_proto;
297}
298
Florin Coras3cbc04b2017-10-02 00:18:51 -0700299/**
300 * Get transport virtual function table
301 *
302 * @param type - session type (not protocol type)
303 */
304transport_proto_vft_t *
Florin Coras561af9b2017-12-09 10:19:43 -0800305transport_protocol_get_vft (transport_proto_t transport_proto)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700306{
Florin Coras561af9b2017-12-09 10:19:43 -0800307 if (transport_proto >= vec_len (tp_vfts))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700308 return 0;
Florin Coras561af9b2017-12-09 10:19:43 -0800309 return &tp_vfts[transport_proto];
Florin Coras3cbc04b2017-10-02 00:18:51 -0700310}
311
Florin Coras7fb0fe12018-04-09 09:24:52 -0700312transport_service_type_t
313transport_protocol_service_type (transport_proto_t tp)
314{
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200315 return tp_vfts[tp].transport_options.service_type;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700316}
317
Florin Corasf08f26d2018-05-10 13:20:47 -0700318transport_tx_fn_type_t
319transport_protocol_tx_fn_type (transport_proto_t tp)
320{
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200321 return tp_vfts[tp].transport_options.tx_type;
Florin Corasf08f26d2018-05-10 13:20:47 -0700322}
323
Florin Coras1ee78302019-02-05 15:51:15 -0800324void
325transport_cleanup (transport_proto_t tp, u32 conn_index, u8 thread_index)
Florin Coras4edc37e2019-02-04 23:01:34 -0800326{
Florin Coras1ee78302019-02-05 15:51:15 -0800327 tp_vfts[tp].cleanup (conn_index, thread_index);
Florin Coras4edc37e2019-02-04 23:01:34 -0800328}
329
Florin Corasd50ff7f2020-04-16 04:30:22 +0000330void
331transport_cleanup_half_open (transport_proto_t tp, u32 conn_index)
332{
Florin Coras05bc33c2021-05-19 19:33:19 -0700333 if (tp_vfts[tp].cleanup_ho)
Florin Corasd50ff7f2020-04-16 04:30:22 +0000334 tp_vfts[tp].cleanup_ho (conn_index);
335}
336
Florin Coras1ee78302019-02-05 15:51:15 -0800337int
338transport_connect (transport_proto_t tp, transport_endpoint_cfg_t * tep)
Florin Coras4edc37e2019-02-04 23:01:34 -0800339{
Filip Tehlar92d29652022-07-28 08:39:13 +0000340 if (PREDICT_FALSE (!tp_vfts[tp].connect))
341 return SESSION_E_TRANSPORT_NO_REG;
Florin Coras1ee78302019-02-05 15:51:15 -0800342 return tp_vfts[tp].connect (tep);
343}
344
345void
liuyacan534468e2021-05-09 03:50:40 +0000346transport_half_close (transport_proto_t tp, u32 conn_index, u8 thread_index)
347{
348 if (tp_vfts[tp].half_close)
349 tp_vfts[tp].half_close (conn_index, thread_index);
350}
351
352void
Florin Coras1ee78302019-02-05 15:51:15 -0800353transport_close (transport_proto_t tp, u32 conn_index, u8 thread_index)
354{
355 tp_vfts[tp].close (conn_index, thread_index);
356}
357
Florin Corasdfb3b872019-08-16 17:48:44 -0700358void
359transport_reset (transport_proto_t tp, u32 conn_index, u8 thread_index)
360{
361 if (tp_vfts[tp].reset)
362 tp_vfts[tp].reset (conn_index, thread_index);
363 else
364 tp_vfts[tp].close (conn_index, thread_index);
365}
366
Florin Coras1ee78302019-02-05 15:51:15 -0800367u32
368transport_start_listen (transport_proto_t tp, u32 session_index,
Florin Coras0bce71e2022-02-10 11:57:06 -0800369 transport_endpoint_cfg_t *tep)
Florin Coras1ee78302019-02-05 15:51:15 -0800370{
Filip Tehlar92d29652022-07-28 08:39:13 +0000371 if (PREDICT_FALSE (!tp_vfts[tp].start_listen))
372 return SESSION_E_TRANSPORT_NO_REG;
Florin Coras1ee78302019-02-05 15:51:15 -0800373 return tp_vfts[tp].start_listen (session_index, tep);
374}
375
376u32
377transport_stop_listen (transport_proto_t tp, u32 conn_index)
378{
379 return tp_vfts[tp].stop_listen (conn_index);
Florin Coras4edc37e2019-02-04 23:01:34 -0800380}
381
Florin Coras40903ac2018-06-10 14:41:23 -0700382u8
383transport_protocol_is_cl (transport_proto_t tp)
384{
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200385 return (tp_vfts[tp].transport_options.service_type == TRANSPORT_SERVICE_CL);
Florin Coras40903ac2018-06-10 14:41:23 -0700386}
387
Aloys Augustincdb71702019-04-08 17:54:39 +0200388always_inline void
389default_get_transport_endpoint (transport_connection_t * tc,
Florin Coras09d18c22019-04-24 11:10:02 -0700390 transport_endpoint_t * tep, u8 is_lcl)
Aloys Augustincdb71702019-04-08 17:54:39 +0200391{
392 if (is_lcl)
393 {
Florin Coras09d18c22019-04-24 11:10:02 -0700394 tep->port = tc->lcl_port;
395 tep->is_ip4 = tc->is_ip4;
396 clib_memcpy_fast (&tep->ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
Aloys Augustincdb71702019-04-08 17:54:39 +0200397 }
398 else
399 {
Florin Coras09d18c22019-04-24 11:10:02 -0700400 tep->port = tc->rmt_port;
401 tep->is_ip4 = tc->is_ip4;
402 clib_memcpy_fast (&tep->ip, &tc->rmt_ip, sizeof (tc->rmt_ip));
Aloys Augustincdb71702019-04-08 17:54:39 +0200403 }
404}
405
406void
407transport_get_endpoint (transport_proto_t tp, u32 conn_index,
Florin Coras09d18c22019-04-24 11:10:02 -0700408 u32 thread_index, transport_endpoint_t * tep,
409 u8 is_lcl)
Aloys Augustincdb71702019-04-08 17:54:39 +0200410{
411 if (tp_vfts[tp].get_transport_endpoint)
Florin Coras09d18c22019-04-24 11:10:02 -0700412 tp_vfts[tp].get_transport_endpoint (conn_index, thread_index, tep,
413 is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200414 else
415 {
416 transport_connection_t *tc;
417 tc = transport_get_connection (tp, conn_index, thread_index);
Florin Coras09d18c22019-04-24 11:10:02 -0700418 default_get_transport_endpoint (tc, tep, is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200419 }
420}
421
422void
423transport_get_listener_endpoint (transport_proto_t tp, u32 conn_index,
Florin Coras09d18c22019-04-24 11:10:02 -0700424 transport_endpoint_t * tep, u8 is_lcl)
Aloys Augustincdb71702019-04-08 17:54:39 +0200425{
426 if (tp_vfts[tp].get_transport_listener_endpoint)
Florin Coras09d18c22019-04-24 11:10:02 -0700427 tp_vfts[tp].get_transport_listener_endpoint (conn_index, tep, is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200428 else
429 {
430 transport_connection_t *tc;
431 tc = transport_get_listener (tp, conn_index);
Florin Coras09d18c22019-04-24 11:10:02 -0700432 default_get_transport_endpoint (tc, tep, is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200433 }
434}
435
Florin Coras04ae8272021-04-12 19:55:37 -0700436int
437transport_connection_attribute (transport_proto_t tp, u32 conn_index,
438 u8 thread_index, u8 is_get,
439 transport_endpt_attr_t *attr)
440{
441 if (!tp_vfts[tp].attribute)
442 return -1;
443
444 return tp_vfts[tp].attribute (conn_index, thread_index, is_get, attr);
445}
446
Florin Coras3cbc04b2017-10-02 00:18:51 -0700447#define PORT_MASK ((1 << 16)- 1)
448
449void
Florin Coras05ead782022-03-23 16:35:05 -0700450transport_endpoint_free (u32 tepi)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700451{
Florin Coras0b466ad2022-11-03 12:50:13 -0700452 transport_main_t *tm = &tp_main;
453 pool_put_index (tm->local_endpoints, tepi);
Florin Coras05ead782022-03-23 16:35:05 -0700454}
455
Florin Coras57660d92020-04-04 22:45:34 +0000456always_inline local_endpoint_t *
Florin Coras05ead782022-03-23 16:35:05 -0700457transport_endpoint_alloc (void)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700458{
Florin Coras0b466ad2022-11-03 12:50:13 -0700459 transport_main_t *tm = &tp_main;
Florin Coras57660d92020-04-04 22:45:34 +0000460 local_endpoint_t *lep;
Florin Coras05ead782022-03-23 16:35:05 -0700461
462 ASSERT (vlib_get_thread_index () <= transport_cl_thread ());
Florin Corasbf27ca82022-11-09 15:54:39 -0800463
Florin Coras0b466ad2022-11-03 12:50:13 -0700464 pool_get_aligned_safe (tm->local_endpoints, lep, 0);
Florin Coras57660d92020-04-04 22:45:34 +0000465 return lep;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700466}
467
Florin Corasbf27ca82022-11-09 15:54:39 -0800468static void
469transport_cleanup_freelist (void)
470{
471 transport_main_t *tm = &tp_main;
472 local_endpoint_t *lep;
473 u32 *lep_indexp;
474
475 clib_spinlock_lock (&tm->local_endpoints_lock);
476
477 vec_foreach (lep_indexp, tm->lcl_endpts_freelist)
478 {
479 lep = pool_elt_at_index (tm->local_endpoints, *lep_indexp);
480
481 /* Port re-shared after attempt to cleanup */
482 if (lep->refcnt > 0)
483 continue;
484
485 transport_endpoint_table_del (&tm->local_endpoints_table, lep->proto,
486 &lep->ep);
487 transport_endpoint_free (*lep_indexp);
488 }
489
490 vec_reset_length (tm->lcl_endpts_freelist);
491
492 tm->lcl_endpts_cleanup_pending = 0;
493
494 clib_spinlock_unlock (&tm->local_endpoints_lock);
495}
496
Florin Coras3cbc04b2017-10-02 00:18:51 -0700497void
Florin Corasbf27ca82022-11-09 15:54:39 -0800498transport_program_endpoint_cleanup (u32 lepi)
499{
500 transport_main_t *tm = &tp_main;
501 u8 flush_fl = 0;
502
503 /* All workers can free connections. Synchronize access to freelist */
504 clib_spinlock_lock (&tm->local_endpoints_lock);
505
506 vec_add1 (tm->lcl_endpts_freelist, lepi);
507
508 /* Avoid accumulating lots of endpoints for cleanup */
509 if (!tm->lcl_endpts_cleanup_pending &&
510 vec_len (tm->lcl_endpts_freelist) > 32)
511 {
512 tm->lcl_endpts_cleanup_pending = 1;
513 flush_fl = 1;
514 }
515
516 clib_spinlock_unlock (&tm->local_endpoints_lock);
517
518 if (flush_fl)
Florin Coras309f7aa2022-03-18 08:33:08 -0700519 session_send_rpc_evt_to_thread_force (transport_cl_thread (),
520 transport_cleanup_freelist, 0);
Florin Corasbf27ca82022-11-09 15:54:39 -0800521}
522
523int
524transport_release_local_endpoint (u8 proto, ip46_address_t *lcl_ip, u16 port)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700525{
Florin Coras0b466ad2022-11-03 12:50:13 -0700526 transport_main_t *tm = &tp_main;
Florin Coras57660d92020-04-04 22:45:34 +0000527 local_endpoint_t *lep;
528 u32 lepi;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700529
Florin Coras0b466ad2022-11-03 12:50:13 -0700530 lepi = transport_endpoint_lookup (&tm->local_endpoints_table, proto, lcl_ip,
Florin Coras23653412024-03-09 15:51:50 -0800531 port);
Florin Corasf55183a2022-03-24 17:02:08 -0700532 if (lepi == ENDPOINT_INVALID_INDEX)
Florin Corasbf27ca82022-11-09 15:54:39 -0800533 return -1;
Florin Corasf55183a2022-03-24 17:02:08 -0700534
Florin Coras23653412024-03-09 15:51:50 -0800535 /* First worker may be cleaning up ports so avoid touching free bitmap */
536 lep = &tm->local_endpoints[lepi];
537 ASSERT (lep->refcnt >= 1);
Florin Corasbf27ca82022-11-09 15:54:39 -0800538
539 /* Local endpoint no longer in use, program cleanup */
Florin Corasf55183a2022-03-24 17:02:08 -0700540 if (!clib_atomic_sub_fetch (&lep->refcnt, 1))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700541 {
Florin Corasbf27ca82022-11-09 15:54:39 -0800542 transport_program_endpoint_cleanup (lepi);
543 return 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700544 }
Florin Corasbf27ca82022-11-09 15:54:39 -0800545
546 /* Not an error, just in idication that endpoint was not cleaned up */
547 return -1;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700548}
549
Florin Corasf55183a2022-03-24 17:02:08 -0700550static int
551transport_endpoint_mark_used (u8 proto, ip46_address_t *ip, u16 port)
Florin Coras5665ced2018-10-25 18:03:45 -0700552{
Florin Coras0b466ad2022-11-03 12:50:13 -0700553 transport_main_t *tm = &tp_main;
Florin Coras57660d92020-04-04 22:45:34 +0000554 local_endpoint_t *lep;
Florin Corasf55183a2022-03-24 17:02:08 -0700555 u32 tei;
Florin Coras05ead782022-03-23 16:35:05 -0700556
557 ASSERT (vlib_get_thread_index () <= transport_cl_thread ());
558
Florin Coras0b466ad2022-11-03 12:50:13 -0700559 tei =
560 transport_endpoint_lookup (&tm->local_endpoints_table, proto, ip, port);
Florin Corasf55183a2022-03-24 17:02:08 -0700561 if (tei != ENDPOINT_INVALID_INDEX)
562 return SESSION_E_PORTINUSE;
563
Florin Coras05ead782022-03-23 16:35:05 -0700564 /* Pool reallocs with worker barrier */
565 lep = transport_endpoint_alloc ();
Florin Coras57660d92020-04-04 22:45:34 +0000566 clib_memcpy_fast (&lep->ep.ip, ip, sizeof (*ip));
567 lep->ep.port = port;
Florin Corasbf27ca82022-11-09 15:54:39 -0800568 lep->proto = proto;
Florin Coras57660d92020-04-04 22:45:34 +0000569 lep->refcnt = 1;
Florin Corasf55183a2022-03-24 17:02:08 -0700570
Florin Coras0b466ad2022-11-03 12:50:13 -0700571 transport_endpoint_table_add (&tm->local_endpoints_table, proto, &lep->ep,
572 lep - tm->local_endpoints);
Florin Corasf55183a2022-03-24 17:02:08 -0700573
574 return 0;
Florin Coras5665ced2018-10-25 18:03:45 -0700575}
576
Florin Coras57660d92020-04-04 22:45:34 +0000577void
578transport_share_local_endpoint (u8 proto, ip46_address_t * lcl_ip, u16 port)
579{
Florin Coras0b466ad2022-11-03 12:50:13 -0700580 transport_main_t *tm = &tp_main;
Florin Coras57660d92020-04-04 22:45:34 +0000581 local_endpoint_t *lep;
582 u32 lepi;
583
Florin Corasbf27ca82022-11-09 15:54:39 -0800584 /* Active opens should call this only from a control thread, which are also
585 * used to allocate and free ports. So, pool has only one writer and
586 * potentially many readers. Listeners are allocated with barrier */
Florin Coras0b466ad2022-11-03 12:50:13 -0700587 lepi = transport_endpoint_lookup (&tm->local_endpoints_table, proto, lcl_ip,
Florin Coras23653412024-03-09 15:51:50 -0800588 port);
Florin Coras57660d92020-04-04 22:45:34 +0000589 if (lepi != ENDPOINT_INVALID_INDEX)
590 {
Florin Coras0b466ad2022-11-03 12:50:13 -0700591 lep = pool_elt_at_index (tm->local_endpoints, lepi);
Florin Coras57660d92020-04-04 22:45:34 +0000592 clib_atomic_add_fetch (&lep->refcnt, 1);
593 }
594}
595
Florin Coras3cbc04b2017-10-02 00:18:51 -0700596/**
597 * Allocate local port and add if successful add entry to local endpoint
598 * table to mark the pair as used.
Florin Coras23653412024-03-09 15:51:50 -0800599 *
600 * @return port in net order or -1 if port cannot be allocated
Florin Coras3cbc04b2017-10-02 00:18:51 -0700601 */
602int
Florin Coras3d6156f2023-01-30 11:18:36 -0800603transport_alloc_local_port (u8 proto, ip46_address_t *lcl_addr,
604 transport_endpoint_cfg_t *rmt)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700605{
Florin Corasbf27ca82022-11-09 15:54:39 -0800606 transport_main_t *tm = &tp_main;
Nathan Skrzypczake111bbd2023-10-03 13:54:15 +0200607 u16 min = tm->port_allocator_min_src_port;
608 u16 max = tm->port_allocator_max_src_port;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700609 int tries, limit;
610
611 limit = max - min;
612
Florin Coras05ead782022-03-23 16:35:05 -0700613 /* Only support active opens from one of ctrl threads */
614 ASSERT (vlib_get_thread_index () <= transport_cl_thread ());
Florin Coras3cbc04b2017-10-02 00:18:51 -0700615
616 /* Search for first free slot */
617 for (tries = 0; tries < limit; tries++)
618 {
619 u16 port = 0;
620
621 /* Find a port in the specified range */
622 while (1)
623 {
Florin Corasbf27ca82022-11-09 15:54:39 -0800624 port = random_u32 (&tm->port_allocator_seed) & PORT_MASK;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700625 if (PREDICT_TRUE (port >= min && port < max))
Florin Coras23653412024-03-09 15:51:50 -0800626 {
627 port = clib_host_to_net_u16 (port);
628 break;
629 }
Florin Coras3cbc04b2017-10-02 00:18:51 -0700630 }
631
Florin Coras3d6156f2023-01-30 11:18:36 -0800632 if (!transport_endpoint_mark_used (proto, lcl_addr, port))
Florin Corasf55183a2022-03-24 17:02:08 -0700633 return port;
Florin Coras3d6156f2023-01-30 11:18:36 -0800634
635 /* IP:port pair already in use, check if 6-tuple available */
636 if (session_lookup_connection (rmt->fib_index, lcl_addr, &rmt->ip, port,
637 rmt->port, proto, rmt->is_ip4))
638 continue;
639
640 /* 6-tuple is available so increment lcl endpoint refcount */
641 transport_share_local_endpoint (proto, lcl_addr, port);
642
643 return port;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700644 }
645 return -1;
646}
647
Florin Coras00e01d32019-10-21 16:07:46 -0700648static session_error_t
Florin Coras5665ced2018-10-25 18:03:45 -0700649transport_get_interface_ip (u32 sw_if_index, u8 is_ip4, ip46_address_t * addr)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700650{
Florin Coras5665ced2018-10-25 18:03:45 -0700651 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700652 {
653 ip4_address_t *ip4;
654 ip4 = ip_interface_get_first_ip (sw_if_index, 1);
Florin Corasfc804d92018-01-26 01:27:01 -0800655 if (!ip4)
Florin Coras00e01d32019-10-21 16:07:46 -0700656 return SESSION_E_NOIP;
Florin Coras5665ced2018-10-25 18:03:45 -0700657 addr->ip4.as_u32 = ip4->as_u32;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700658 }
659 else
660 {
661 ip6_address_t *ip6;
662 ip6 = ip_interface_get_first_ip (sw_if_index, 0);
663 if (ip6 == 0)
Florin Coras00e01d32019-10-21 16:07:46 -0700664 return SESSION_E_NOIP;
Dave Barach178cf492018-11-13 16:34:13 -0500665 clib_memcpy_fast (&addr->ip6, ip6, sizeof (*ip6));
Florin Coras5665ced2018-10-25 18:03:45 -0700666 }
667 return 0;
668}
669
Florin Coras00e01d32019-10-21 16:07:46 -0700670static session_error_t
Florin Coras596c45b2021-09-09 12:04:17 -0700671transport_find_local_ip_for_remote (u32 *sw_if_index,
672 transport_endpoint_t *rmt,
673 ip46_address_t *lcl_addr)
Florin Coras5665ced2018-10-25 18:03:45 -0700674{
675 fib_node_index_t fei;
676 fib_prefix_t prefix;
677
Florin Coras596c45b2021-09-09 12:04:17 -0700678 if (*sw_if_index == ENDPOINT_INVALID_INDEX)
Florin Coras5665ced2018-10-25 18:03:45 -0700679 {
680 /* Find a FIB path to the destination */
Dave Barach178cf492018-11-13 16:34:13 -0500681 clib_memcpy_fast (&prefix.fp_addr, &rmt->ip, sizeof (rmt->ip));
Florin Coras5665ced2018-10-25 18:03:45 -0700682 prefix.fp_proto = rmt->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
683 prefix.fp_len = rmt->is_ip4 ? 32 : 128;
684
685 ASSERT (rmt->fib_index != ENDPOINT_INVALID_INDEX);
686 fei = fib_table_lookup (rmt->fib_index, &prefix);
687
688 /* Couldn't find route to destination. Bail out. */
689 if (fei == FIB_NODE_INDEX_INVALID)
Florin Coras00e01d32019-10-21 16:07:46 -0700690 return SESSION_E_NOROUTE;
Florin Coras5665ced2018-10-25 18:03:45 -0700691
Florin Coras596c45b2021-09-09 12:04:17 -0700692 *sw_if_index = fib_entry_get_resolving_interface (fei);
693 if (*sw_if_index == ENDPOINT_INVALID_INDEX)
Florin Coras00e01d32019-10-21 16:07:46 -0700694 return SESSION_E_NOINTF;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700695 }
696
Florin Coras5665ced2018-10-25 18:03:45 -0700697 clib_memset (lcl_addr, 0, sizeof (*lcl_addr));
Florin Coras596c45b2021-09-09 12:04:17 -0700698 return transport_get_interface_ip (*sw_if_index, rmt->is_ip4, lcl_addr);
Florin Coras5665ced2018-10-25 18:03:45 -0700699}
700
701int
702transport_alloc_local_endpoint (u8 proto, transport_endpoint_cfg_t * rmt_cfg,
703 ip46_address_t * lcl_addr, u16 * lcl_port)
704{
705 transport_endpoint_t *rmt = (transport_endpoint_t *) rmt_cfg;
Florin Coras02aa2ca2023-03-13 16:31:52 -0700706 transport_main_t *tm = &tp_main;
Florin Coras00e01d32019-10-21 16:07:46 -0700707 session_error_t error;
Florin Coras5665ced2018-10-25 18:03:45 -0700708 int port;
Florin Coras5665ced2018-10-25 18:03:45 -0700709
710 /*
711 * Find the local address
712 */
713 if (ip_is_zero (&rmt_cfg->peer.ip, rmt_cfg->peer.is_ip4))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700714 {
Florin Coras596c45b2021-09-09 12:04:17 -0700715 error = transport_find_local_ip_for_remote (&rmt_cfg->peer.sw_if_index,
Florin Coras5665ced2018-10-25 18:03:45 -0700716 rmt, lcl_addr);
717 if (error)
Florin Coras00e01d32019-10-21 16:07:46 -0700718 return error;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700719 }
Florin Coras5665ced2018-10-25 18:03:45 -0700720 else
721 {
722 /* Assume session layer vetted this address */
Dave Barach178cf492018-11-13 16:34:13 -0500723 clib_memcpy_fast (lcl_addr, &rmt_cfg->peer.ip,
724 sizeof (rmt_cfg->peer.ip));
Florin Coras5665ced2018-10-25 18:03:45 -0700725 }
726
Florin Coras02aa2ca2023-03-13 16:31:52 -0700727 /* Cleanup freelist if need be */
728 if (vec_len (tm->lcl_endpts_freelist))
729 transport_cleanup_freelist ();
730
Florin Coras5665ced2018-10-25 18:03:45 -0700731 /*
732 * Allocate source port
733 */
734 if (rmt_cfg->peer.port == 0)
735 {
Florin Coras3d6156f2023-01-30 11:18:36 -0800736 port = transport_alloc_local_port (proto, lcl_addr, rmt_cfg);
Florin Coras5665ced2018-10-25 18:03:45 -0700737 if (port < 1)
Florin Coras00e01d32019-10-21 16:07:46 -0700738 return SESSION_E_NOPORT;
Florin Coras5665ced2018-10-25 18:03:45 -0700739 *lcl_port = port;
740 }
741 else
742 {
Florin Coras23653412024-03-09 15:51:50 -0800743 *lcl_port = rmt_cfg->peer.port;
Florin Coras5665ced2018-10-25 18:03:45 -0700744
Florin Coras23653412024-03-09 15:51:50 -0800745 if (!transport_endpoint_mark_used (proto, lcl_addr, rmt_cfg->peer.port))
Florin Corase541d6f2023-03-14 09:59:02 -0700746 return 0;
747
748 /* IP:port pair already in use, check if 6-tuple available */
Florin Coras91bfe5b2024-03-08 19:25:42 -0800749 if (session_lookup_connection (rmt->fib_index, lcl_addr, &rmt->ip,
750 rmt_cfg->peer.port, rmt->port, proto,
751 rmt->is_ip4))
Florin Corase541d6f2023-03-14 09:59:02 -0700752 return SESSION_E_PORTINUSE;
753
754 /* 6-tuple is available so increment lcl endpoint refcount */
Florin Coras23653412024-03-09 15:51:50 -0800755 transport_share_local_endpoint (proto, lcl_addr, rmt_cfg->peer.port);
Florin Corase541d6f2023-03-14 09:59:02 -0700756
757 return 0;
Florin Coras5665ced2018-10-25 18:03:45 -0700758 }
759
Florin Coras3cbc04b2017-10-02 00:18:51 -0700760 return 0;
761}
762
Florin Corasa8e71c82019-10-22 19:01:39 -0700763u8 *
764format_clib_us_time (u8 * s, va_list * args)
765{
766 clib_us_time_t t = va_arg (*args, clib_us_time_t);
767 if (t < 1e3)
768 s = format (s, "%u us", t);
769 else
770 s = format (s, "%.3f s", (f64) t * CLIB_US_TIME_PERIOD);
771 return s;
772}
Florin Corasd67f1122018-05-21 17:47:40 -0700773
774u8 *
775format_transport_pacer (u8 * s, va_list * args)
776{
777 spacer_t *pacer = va_arg (*args, spacer_t *);
Florin Corasa8e71c82019-10-22 19:01:39 -0700778 u32 thread_index = va_arg (*args, int);
779 clib_us_time_t now, diff;
Florin Corasd67f1122018-05-21 17:47:40 -0700780
Florin Corasa8e71c82019-10-22 19:01:39 -0700781 now = transport_us_time_now (thread_index);
782 diff = now - pacer->last_update;
Florin Corasa39f4722020-11-12 10:20:05 -0800783 s = format (s, "rate %lu bucket %ld t/p %.3f last_update %U burst %u",
Florin Corasbe237bf2019-09-27 08:16:40 -0700784 pacer->bytes_per_sec, pacer->bucket, pacer->tokens_per_period,
Florin Coras7808df22020-11-02 18:00:32 -0800785 format_clib_us_time, diff, pacer->max_burst);
Florin Corasd67f1122018-05-21 17:47:40 -0700786 return s;
787}
788
789static inline u32
Florin Corasa8e71c82019-10-22 19:01:39 -0700790spacer_max_burst (spacer_t * pacer, clib_us_time_t time_now)
Florin Corasd67f1122018-05-21 17:47:40 -0700791{
Florin Corasa8e71c82019-10-22 19:01:39 -0700792 u64 n_periods = (time_now - pacer->last_update);
Florin Coras93dd58c2022-01-09 17:20:28 -0800793 i64 inc;
Florin Corasd67f1122018-05-21 17:47:40 -0700794
Florin Coras11e9e352019-11-13 19:09:47 -0800795 if ((inc = (f32) n_periods * pacer->tokens_per_period) > 10)
Florin Corase55a6d72018-10-31 23:09:22 -0700796 {
Florin Corasa8e71c82019-10-22 19:01:39 -0700797 pacer->last_update = time_now;
Florin Coras93dd58c2022-01-09 17:20:28 -0800798 pacer->bucket = clib_min (pacer->bucket + inc, (i64) pacer->max_burst);
Florin Corase55a6d72018-10-31 23:09:22 -0700799 }
800
Florin Coras2b4f74f2022-01-09 19:03:09 -0800801 return pacer->bucket >= 0 ? pacer->max_burst : 0;
Florin Corasd67f1122018-05-21 17:47:40 -0700802}
803
804static inline void
805spacer_update_bucket (spacer_t * pacer, u32 bytes)
806{
Florin Corasd67f1122018-05-21 17:47:40 -0700807 pacer->bucket -= bytes;
808}
809
810static inline void
Florin Coras11e9e352019-11-13 19:09:47 -0800811spacer_set_pace_rate (spacer_t * pacer, u64 rate_bytes_per_sec,
Florin Corasa39f4722020-11-12 10:20:05 -0800812 clib_us_time_t rtt, clib_time_type_t sec_per_loop)
Florin Corasd67f1122018-05-21 17:47:40 -0700813{
Florin Coras7808df22020-11-02 18:00:32 -0800814 clib_us_time_t max_time;
815
Florin Corasd67f1122018-05-21 17:47:40 -0700816 ASSERT (rate_bytes_per_sec != 0);
Florin Coras7c8f8282019-09-15 16:28:45 -0700817 pacer->bytes_per_sec = rate_bytes_per_sec;
Florin Corasa8e71c82019-10-22 19:01:39 -0700818 pacer->tokens_per_period = rate_bytes_per_sec * CLIB_US_TIME_PERIOD;
Florin Coras7808df22020-11-02 18:00:32 -0800819
820 /* Allow a min number of bursts per rtt, if their size is acceptable. Goal
821 * is to spread the sending of data over the rtt but to also allow for some
822 * coalescing that can potentially
823 * 1) reduce load on session layer by reducing scheduling frequency for a
824 * session and
825 * 2) optimize sending when tso if available
826 *
827 * Max "time-length" of a burst cannot be less than 1us or more than 1ms.
828 */
Florin Corasa39f4722020-11-12 10:20:05 -0800829 max_time = clib_max (rtt / TRANSPORT_PACER_BURSTS_PER_RTT,
830 (clib_us_time_t) (sec_per_loop * CLIB_US_TIME_FREQ));
Florin Coras7808df22020-11-02 18:00:32 -0800831 max_time = clib_clamp (max_time, 1 /* 1us */ , 1000 /* 1ms */ );
832 pacer->max_burst = (rate_bytes_per_sec * max_time) * CLIB_US_TIME_PERIOD;
833 pacer->max_burst = clib_clamp (pacer->max_burst, TRANSPORT_PACER_MIN_BURST,
834 TRANSPORT_PACER_MAX_BURST);
Florin Corasd67f1122018-05-21 17:47:40 -0700835}
836
Florin Coras52814732019-06-12 15:38:19 -0700837static inline u64
838spacer_pace_rate (spacer_t * pacer)
839{
Florin Coras7c8f8282019-09-15 16:28:45 -0700840 return pacer->bytes_per_sec;
Florin Coras52814732019-06-12 15:38:19 -0700841}
842
Florin Coras36ebcff2019-09-12 18:36:44 -0700843static inline void
Florin Corasa8e71c82019-10-22 19:01:39 -0700844spacer_reset (spacer_t * pacer, clib_us_time_t time_now, u64 bucket)
Florin Coras36ebcff2019-09-12 18:36:44 -0700845{
Florin Corasa8e71c82019-10-22 19:01:39 -0700846 pacer->last_update = time_now;
847 pacer->bucket = bucket;
Florin Coras36ebcff2019-09-12 18:36:44 -0700848}
849
Florin Corasd67f1122018-05-21 17:47:40 -0700850void
Florin Corasc44a5582018-11-01 16:30:54 -0700851transport_connection_tx_pacer_reset (transport_connection_t * tc,
Florin Coras11e9e352019-11-13 19:09:47 -0800852 u64 rate_bytes_per_sec, u32 start_bucket,
853 clib_us_time_t rtt)
Florin Corasd67f1122018-05-21 17:47:40 -0700854{
Florin Corasa39f4722020-11-12 10:20:05 -0800855 spacer_set_pace_rate (&tc->pacer, rate_bytes_per_sec, rtt,
856 transport_seconds_per_loop (tc->thread_index));
Florin Corasa8e71c82019-10-22 19:01:39 -0700857 spacer_reset (&tc->pacer, transport_us_time_now (tc->thread_index),
858 start_bucket);
859}
860
861void
Florin Coras11e9e352019-11-13 19:09:47 -0800862transport_connection_tx_pacer_reset_bucket (transport_connection_t * tc,
863 u32 bucket)
Florin Corasa8e71c82019-10-22 19:01:39 -0700864{
Florin Coras11e9e352019-11-13 19:09:47 -0800865 spacer_reset (&tc->pacer, transport_us_time_now (tc->thread_index), bucket);
Florin Corasc44a5582018-11-01 16:30:54 -0700866}
867
868void
869transport_connection_tx_pacer_init (transport_connection_t * tc,
Florin Corasa8e71c82019-10-22 19:01:39 -0700870 u64 rate_bytes_per_sec,
Florin Corasc44a5582018-11-01 16:30:54 -0700871 u32 initial_bucket)
872{
Florin Corasc44a5582018-11-01 16:30:54 -0700873 tc->flags |= TRANSPORT_CONNECTION_F_IS_TX_PACED;
874 transport_connection_tx_pacer_reset (tc, rate_bytes_per_sec,
Florin Coras11e9e352019-11-13 19:09:47 -0800875 initial_bucket, 1e6);
Florin Corasd67f1122018-05-21 17:47:40 -0700876}
877
878void
879transport_connection_tx_pacer_update (transport_connection_t * tc,
Florin Coras11e9e352019-11-13 19:09:47 -0800880 u64 bytes_per_sec, clib_us_time_t rtt)
Florin Corasd67f1122018-05-21 17:47:40 -0700881{
Florin Corasa39f4722020-11-12 10:20:05 -0800882 spacer_set_pace_rate (&tc->pacer, bytes_per_sec, rtt,
883 transport_seconds_per_loop (tc->thread_index));
Florin Corasd67f1122018-05-21 17:47:40 -0700884}
885
886u32
Florin Corasa8e71c82019-10-22 19:01:39 -0700887transport_connection_tx_pacer_burst (transport_connection_t * tc)
Florin Corase55a6d72018-10-31 23:09:22 -0700888{
Florin Corasa8e71c82019-10-22 19:01:39 -0700889 return spacer_max_burst (&tc->pacer,
890 transport_us_time_now (tc->thread_index));
Florin Coras36ebcff2019-09-12 18:36:44 -0700891}
892
Florin Coras52814732019-06-12 15:38:19 -0700893u64
894transport_connection_tx_pacer_rate (transport_connection_t * tc)
895{
896 return spacer_pace_rate (&tc->pacer);
897}
898
Florin Corasd67f1122018-05-21 17:47:40 -0700899void
Florin Coras00482232019-08-02 12:52:00 -0700900transport_connection_update_tx_bytes (transport_connection_t * tc, u32 bytes)
Florin Corasd67f1122018-05-21 17:47:40 -0700901{
Florin Corasd67f1122018-05-21 17:47:40 -0700902 if (transport_connection_is_tx_paced (tc))
903 spacer_update_bucket (&tc->pacer, bytes);
904}
905
906void
Florin Corase55a6d72018-10-31 23:09:22 -0700907transport_connection_tx_pacer_update_bytes (transport_connection_t * tc,
908 u32 bytes)
909{
910 spacer_update_bucket (&tc->pacer, bytes);
911}
912
913void
Florin Coras8f10b902021-04-02 18:32:00 -0700914transport_update_pacer_time (u32 thread_index, clib_time_type_t now)
915{
916 session_wrk_update_time (session_main_get_worker (thread_index), now);
917}
918
919void
Florin Coras70f879d2020-03-13 17:54:42 +0000920transport_connection_reschedule (transport_connection_t * tc)
921{
922 tc->flags &= ~TRANSPORT_CONNECTION_F_DESCHED;
Florin Coras2b4f74f2022-01-09 19:03:09 -0800923 transport_connection_tx_pacer_reset_bucket (tc, 0 /* bucket */);
Florin Coras70f879d2020-03-13 17:54:42 +0000924 if (transport_max_tx_dequeue (tc))
925 sesssion_reschedule_tx (tc);
926 else
927 {
928 session_t *s = session_get (tc->s_index, tc->thread_index);
929 svm_fifo_unset_event (s->tx_fifo);
930 if (svm_fifo_max_dequeue_cons (s->tx_fifo))
931 if (svm_fifo_set_event (s->tx_fifo))
932 sesssion_reschedule_tx (tc);
933 }
934}
935
936void
Florin Coras8c4fa012020-11-06 16:59:08 -0800937transport_fifos_init_ooo (transport_connection_t * tc)
938{
939 session_t *s = session_get (tc->s_index, tc->thread_index);
940 svm_fifo_init_ooo_lookup (s->rx_fifo, 0 /* ooo enq */ );
941 svm_fifo_init_ooo_lookup (s->tx_fifo, 1 /* ooo deq */ );
942}
943
944void
Florin Corasa8e71c82019-10-22 19:01:39 -0700945transport_update_time (clib_time_type_t time_now, u8 thread_index)
Florin Coras561af9b2017-12-09 10:19:43 -0800946{
947 transport_proto_vft_t *vft;
948 vec_foreach (vft, tp_vfts)
949 {
950 if (vft->update_time)
951 (vft->update_time) (time_now, thread_index);
952 }
953}
954
955void
956transport_enable_disable (vlib_main_t * vm, u8 is_en)
957{
958 transport_proto_vft_t *vft;
959 vec_foreach (vft, tp_vfts)
960 {
961 if (vft->enable)
962 (vft->enable) (vm, is_en);
Florin Coras5384cca2022-01-20 18:10:26 -0800963
964 if (vft->update_time)
965 session_register_update_time_fn (vft->update_time, is_en);
Florin Coras561af9b2017-12-09 10:19:43 -0800966 }
967}
968
969void
Florin Coras3cbc04b2017-10-02 00:18:51 -0700970transport_init (void)
971{
972 vlib_thread_main_t *vtm = vlib_get_thread_main ();
Florin Coras31c99552019-03-01 13:00:58 -0800973 session_main_t *smm = vnet_get_session_main ();
Florin Coras0b466ad2022-11-03 12:50:13 -0700974 transport_main_t *tm = &tp_main;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700975 u32 num_threads;
976
Florin Coras93e65802017-11-29 00:07:11 -0500977 if (smm->local_endpoints_table_buckets == 0)
978 smm->local_endpoints_table_buckets = 250000;
979 if (smm->local_endpoints_table_memory == 0)
980 smm->local_endpoints_table_memory = 512 << 20;
981
Florin Coras3cbc04b2017-10-02 00:18:51 -0700982 /* Initialize [port-allocator] random number seed */
Florin Coras0b466ad2022-11-03 12:50:13 -0700983 tm->port_allocator_seed = (u32) clib_cpu_time_now ();
Nathan Skrzypczake111bbd2023-10-03 13:54:15 +0200984 tm->port_allocator_min_src_port = smm->port_allocator_min_src_port;
985 tm->port_allocator_max_src_port = smm->port_allocator_max_src_port;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700986
Florin Coras0b466ad2022-11-03 12:50:13 -0700987 clib_bihash_init_24_8 (&tm->local_endpoints_table, "local endpoints table",
Florin Coras93e65802017-11-29 00:07:11 -0500988 smm->local_endpoints_table_buckets,
989 smm->local_endpoints_table_memory);
Florin Coras0b466ad2022-11-03 12:50:13 -0700990 clib_spinlock_init (&tm->local_endpoints_lock);
Florin Coras05ead782022-03-23 16:35:05 -0700991
Florin Coras3cbc04b2017-10-02 00:18:51 -0700992 num_threads = 1 /* main thread */ + vtm->n_threads;
993 if (num_threads > 1)
Florin Corasfb50bc32021-05-18 00:28:59 -0700994 {
Florin Corasfb50bc32021-05-18 00:28:59 -0700995 /* Main not polled if there are workers */
996 smm->transport_cl_thread = 1;
997 }
Florin Coras3cbc04b2017-10-02 00:18:51 -0700998}
999
1000/*
1001 * fd.io coding-style-patch-verification: ON
1002 *
1003 * Local Variables:
1004 * eval: (c-set-style "gnu")
1005 * End:
1006 */