blob: b13370bcffd085ce070e531e07f1f2030cc20efb [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;
Florin Corasbf27ca82022-11-09 15:54:39 -080038 u8 lcl_endpts_cleanup_pending;
Florin Coras0b466ad2022-11-03 12:50:13 -070039 clib_spinlock_t local_endpoints_lock;
40} transport_main_t;
Florin Coras3cbc04b2017-10-02 00:18:51 -070041
Florin Coras0b466ad2022-11-03 12:50:13 -070042static transport_main_t tp_main;
Florin Coras3cbc04b2017-10-02 00:18:51 -070043
Florin Coras1c710452017-10-17 00:03:13 -070044u8 *
45format_transport_proto (u8 * s, va_list * args)
46{
47 u32 transport_proto = va_arg (*args, u32);
Florin Coras07063b82020-03-13 04:44:51 +000048
49 if (tp_vfts[transport_proto].transport_options.name)
50 s = format (s, "%s", tp_vfts[transport_proto].transport_options.name);
51 else
52 s = format (s, "n/a");
53
Florin Coras1c710452017-10-17 00:03:13 -070054 return s;
55}
56
Florin Coras561af9b2017-12-09 10:19:43 -080057u8 *
58format_transport_proto_short (u8 * s, va_list * args)
59{
60 u32 transport_proto = va_arg (*args, u32);
Florin Coras07063b82020-03-13 04:44:51 +000061 char *short_name;
62
63 short_name = tp_vfts[transport_proto].transport_options.short_name;
64 if (short_name)
65 s = format (s, "%s", short_name);
66 else
67 s = format (s, "NA");
68
Florin Coras561af9b2017-12-09 10:19:43 -080069 return s;
70}
71
Florin Corasde9a8492018-10-24 22:18:58 -070072u8 *
73format_transport_connection (u8 * s, va_list * args)
74{
75 u32 transport_proto = va_arg (*args, u32);
76 u32 conn_index = va_arg (*args, u32);
77 u32 thread_index = va_arg (*args, u32);
78 u32 verbose = va_arg (*args, u32);
79 transport_proto_vft_t *tp_vft;
80 transport_connection_t *tc;
81 u32 indent;
82
83 tp_vft = transport_protocol_get_vft (transport_proto);
84 if (!tp_vft)
85 return s;
86
87 s = format (s, "%U", tp_vft->format_connection, conn_index, thread_index,
88 verbose);
89 tc = tp_vft->get_connection (conn_index, thread_index);
Florin Coras36d49392020-04-24 23:00:11 +000090 if (tc && verbose > 1)
Florin Corasde9a8492018-10-24 22:18:58 -070091 {
92 indent = format_get_indent (s) + 1;
Florin Coras36d49392020-04-24 23:00:11 +000093 if (transport_connection_is_tx_paced (tc))
94 s = format (s, "%Upacer: %U\n", format_white_space, indent,
95 format_transport_pacer, &tc->pacer, tc->thread_index);
Florin Coras70f879d2020-03-13 17:54:42 +000096 s = format (s, "%Utransport: flags 0x%x\n", format_white_space, indent,
97 tc->flags);
Florin Corasde9a8492018-10-24 22:18:58 -070098 }
99 return s;
100}
101
102u8 *
103format_transport_listen_connection (u8 * s, va_list * args)
104{
105 u32 transport_proto = va_arg (*args, u32);
Florin Corasde9a8492018-10-24 22:18:58 -0700106 transport_proto_vft_t *tp_vft;
107
108 tp_vft = transport_protocol_get_vft (transport_proto);
109 if (!tp_vft)
110 return s;
111
Florin Coras3389dd22019-02-01 18:00:05 -0800112 s = (tp_vft->format_listener) (s, args);
Florin Corasde9a8492018-10-24 22:18:58 -0700113 return s;
114}
115
116u8 *
117format_transport_half_open_connection (u8 * s, va_list * args)
118{
119 u32 transport_proto = va_arg (*args, u32);
Florin Corasea727642021-05-07 19:39:43 -0700120 u32 ho_index = va_arg (*args, u32);
Florin Corasde9a8492018-10-24 22:18:58 -0700121 transport_proto_vft_t *tp_vft;
122
123 tp_vft = transport_protocol_get_vft (transport_proto);
124 if (!tp_vft)
125 return s;
126
Florin Corasea727642021-05-07 19:39:43 -0700127 s = format (s, "%U", tp_vft->format_half_open, ho_index);
Florin Corasde9a8492018-10-24 22:18:58 -0700128 return s;
129}
130
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800131static u8
132unformat_transport_str_match (unformat_input_t * input, const char *str)
133{
134 int i;
135
136 if (strlen (str) > vec_len (input->buffer) - input->index)
137 return 0;
138
139 for (i = 0; i < strlen (str); i++)
140 {
141 if (input->buffer[i + input->index] != str[i])
142 return 0;
143 }
144 return 1;
145}
146
Florin Coras1c710452017-10-17 00:03:13 -0700147uword
148unformat_transport_proto (unformat_input_t * input, va_list * args)
149{
150 u32 *proto = va_arg (*args, u32 *);
Florin Coras07063b82020-03-13 04:44:51 +0000151 transport_proto_vft_t *tp_vft;
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800152 u8 longest_match = 0, match;
Florin Coras07063b82020-03-13 04:44:51 +0000153 char *str, *str_match = 0;
154 transport_proto_t tp;
Florin Coras5bb23ec2019-08-31 09:45:13 -0700155
Florin Coras07063b82020-03-13 04:44:51 +0000156 for (tp = 0; tp < vec_len (tp_vfts); tp++)
157 {
158 tp_vft = &tp_vfts[tp];
159 str = tp_vft->transport_options.name;
160 if (!str)
161 continue;
162 if (unformat_transport_str_match (input, str))
163 {
164 match = strlen (str);
165 if (match > longest_match)
166 {
167 *proto = tp;
168 longest_match = match;
169 str_match = str;
170 }
171 }
Florin Coras5bb23ec2019-08-31 09:45:13 -0700172 }
Florin Coras07063b82020-03-13 04:44:51 +0000173 if (longest_match)
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800174 {
Dave Barach4897d772020-03-26 10:56:13 -0400175 (void) unformat (input, str_match);
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800176 return 1;
177 }
178
179 return 0;
Florin Coras1c710452017-10-17 00:03:13 -0700180}
Florin Coras3cbc04b2017-10-02 00:18:51 -0700181
Florin Coras07063b82020-03-13 04:44:51 +0000182u8 *
183format_transport_protos (u8 * s, va_list * args)
184{
185 transport_proto_vft_t *tp_vft;
186
187 vec_foreach (tp_vft, tp_vfts)
188 s = format (s, "%s\n", tp_vft->transport_options.name);
189
190 return s;
191}
192
Florin Coras3cbc04b2017-10-02 00:18:51 -0700193u32
194transport_endpoint_lookup (transport_endpoint_table_t * ht, u8 proto,
195 ip46_address_t * ip, u16 port)
196{
197 clib_bihash_kv_24_8_t kv;
198 int rv;
199
200 kv.key[0] = ip->as_u64[0];
201 kv.key[1] = ip->as_u64[1];
202 kv.key[2] = (u64) port << 8 | (u64) proto;
203
204 rv = clib_bihash_search_inline_24_8 (ht, &kv);
205 if (rv == 0)
206 return kv.value;
207
208 return ENDPOINT_INVALID_INDEX;
209}
210
211void
212transport_endpoint_table_add (transport_endpoint_table_t * ht, u8 proto,
213 transport_endpoint_t * te, u32 value)
214{
215 clib_bihash_kv_24_8_t kv;
216
217 kv.key[0] = te->ip.as_u64[0];
218 kv.key[1] = te->ip.as_u64[1];
219 kv.key[2] = (u64) te->port << 8 | (u64) proto;
220 kv.value = value;
221
222 clib_bihash_add_del_24_8 (ht, &kv, 1);
223}
224
225void
226transport_endpoint_table_del (transport_endpoint_table_t * ht, u8 proto,
227 transport_endpoint_t * te)
228{
229 clib_bihash_kv_24_8_t kv;
230
231 kv.key[0] = te->ip.as_u64[0];
232 kv.key[1] = te->ip.as_u64[1];
233 kv.key[2] = (u64) te->port << 8 | (u64) proto;
234
235 clib_bihash_add_del_24_8 (ht, &kv, 0);
236}
237
Florin Coras3cbc04b2017-10-02 00:18:51 -0700238void
Florin Coras561af9b2017-12-09 10:19:43 -0800239transport_register_protocol (transport_proto_t transport_proto,
240 const transport_proto_vft_t * vft,
241 fib_protocol_t fib_proto, u32 output_node)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700242{
Florin Coras561af9b2017-12-09 10:19:43 -0800243 u8 is_ip4 = fib_proto == FIB_PROTOCOL_IP4;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700244
Florin Coras561af9b2017-12-09 10:19:43 -0800245 vec_validate (tp_vfts, transport_proto);
246 tp_vfts[transport_proto] = *vft;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700247
Florin Coras561af9b2017-12-09 10:19:43 -0800248 session_register_transport (transport_proto, vft, is_ip4, output_node);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700249}
250
Florin Coras07063b82020-03-13 04:44:51 +0000251transport_proto_t
252transport_register_new_protocol (const transport_proto_vft_t * vft,
253 fib_protocol_t fib_proto, u32 output_node)
254{
255 transport_proto_t transport_proto;
256 u8 is_ip4;
257
258 transport_proto = session_add_transport_proto ();
259 is_ip4 = fib_proto == FIB_PROTOCOL_IP4;
260
261 vec_validate (tp_vfts, transport_proto);
262 tp_vfts[transport_proto] = *vft;
263
264 session_register_transport (transport_proto, vft, is_ip4, output_node);
265
266 return transport_proto;
267}
268
Florin Coras3cbc04b2017-10-02 00:18:51 -0700269/**
270 * Get transport virtual function table
271 *
272 * @param type - session type (not protocol type)
273 */
274transport_proto_vft_t *
Florin Coras561af9b2017-12-09 10:19:43 -0800275transport_protocol_get_vft (transport_proto_t transport_proto)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700276{
Florin Coras561af9b2017-12-09 10:19:43 -0800277 if (transport_proto >= vec_len (tp_vfts))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700278 return 0;
Florin Coras561af9b2017-12-09 10:19:43 -0800279 return &tp_vfts[transport_proto];
Florin Coras3cbc04b2017-10-02 00:18:51 -0700280}
281
Florin Coras7fb0fe12018-04-09 09:24:52 -0700282transport_service_type_t
283transport_protocol_service_type (transport_proto_t tp)
284{
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200285 return tp_vfts[tp].transport_options.service_type;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700286}
287
Florin Corasf08f26d2018-05-10 13:20:47 -0700288transport_tx_fn_type_t
289transport_protocol_tx_fn_type (transport_proto_t tp)
290{
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200291 return tp_vfts[tp].transport_options.tx_type;
Florin Corasf08f26d2018-05-10 13:20:47 -0700292}
293
Florin Coras1ee78302019-02-05 15:51:15 -0800294void
295transport_cleanup (transport_proto_t tp, u32 conn_index, u8 thread_index)
Florin Coras4edc37e2019-02-04 23:01:34 -0800296{
Florin Coras1ee78302019-02-05 15:51:15 -0800297 tp_vfts[tp].cleanup (conn_index, thread_index);
Florin Coras4edc37e2019-02-04 23:01:34 -0800298}
299
Florin Corasd50ff7f2020-04-16 04:30:22 +0000300void
301transport_cleanup_half_open (transport_proto_t tp, u32 conn_index)
302{
Florin Coras05bc33c2021-05-19 19:33:19 -0700303 if (tp_vfts[tp].cleanup_ho)
Florin Corasd50ff7f2020-04-16 04:30:22 +0000304 tp_vfts[tp].cleanup_ho (conn_index);
305}
306
Florin Coras1ee78302019-02-05 15:51:15 -0800307int
308transport_connect (transport_proto_t tp, transport_endpoint_cfg_t * tep)
Florin Coras4edc37e2019-02-04 23:01:34 -0800309{
Filip Tehlar92d29652022-07-28 08:39:13 +0000310 if (PREDICT_FALSE (!tp_vfts[tp].connect))
311 return SESSION_E_TRANSPORT_NO_REG;
Florin Coras1ee78302019-02-05 15:51:15 -0800312 return tp_vfts[tp].connect (tep);
313}
314
315void
liuyacan534468e2021-05-09 03:50:40 +0000316transport_half_close (transport_proto_t tp, u32 conn_index, u8 thread_index)
317{
318 if (tp_vfts[tp].half_close)
319 tp_vfts[tp].half_close (conn_index, thread_index);
320}
321
322void
Florin Coras1ee78302019-02-05 15:51:15 -0800323transport_close (transport_proto_t tp, u32 conn_index, u8 thread_index)
324{
325 tp_vfts[tp].close (conn_index, thread_index);
326}
327
Florin Corasdfb3b872019-08-16 17:48:44 -0700328void
329transport_reset (transport_proto_t tp, u32 conn_index, u8 thread_index)
330{
331 if (tp_vfts[tp].reset)
332 tp_vfts[tp].reset (conn_index, thread_index);
333 else
334 tp_vfts[tp].close (conn_index, thread_index);
335}
336
Florin Coras1ee78302019-02-05 15:51:15 -0800337u32
338transport_start_listen (transport_proto_t tp, u32 session_index,
Florin Coras0bce71e2022-02-10 11:57:06 -0800339 transport_endpoint_cfg_t *tep)
Florin Coras1ee78302019-02-05 15:51:15 -0800340{
Filip Tehlar92d29652022-07-28 08:39:13 +0000341 if (PREDICT_FALSE (!tp_vfts[tp].start_listen))
342 return SESSION_E_TRANSPORT_NO_REG;
Florin Coras1ee78302019-02-05 15:51:15 -0800343 return tp_vfts[tp].start_listen (session_index, tep);
344}
345
346u32
347transport_stop_listen (transport_proto_t tp, u32 conn_index)
348{
349 return tp_vfts[tp].stop_listen (conn_index);
Florin Coras4edc37e2019-02-04 23:01:34 -0800350}
351
Florin Coras40903ac2018-06-10 14:41:23 -0700352u8
353transport_protocol_is_cl (transport_proto_t tp)
354{
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200355 return (tp_vfts[tp].transport_options.service_type == TRANSPORT_SERVICE_CL);
Florin Coras40903ac2018-06-10 14:41:23 -0700356}
357
Aloys Augustincdb71702019-04-08 17:54:39 +0200358always_inline void
359default_get_transport_endpoint (transport_connection_t * tc,
Florin Coras09d18c22019-04-24 11:10:02 -0700360 transport_endpoint_t * tep, u8 is_lcl)
Aloys Augustincdb71702019-04-08 17:54:39 +0200361{
362 if (is_lcl)
363 {
Florin Coras09d18c22019-04-24 11:10:02 -0700364 tep->port = tc->lcl_port;
365 tep->is_ip4 = tc->is_ip4;
366 clib_memcpy_fast (&tep->ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
Aloys Augustincdb71702019-04-08 17:54:39 +0200367 }
368 else
369 {
Florin Coras09d18c22019-04-24 11:10:02 -0700370 tep->port = tc->rmt_port;
371 tep->is_ip4 = tc->is_ip4;
372 clib_memcpy_fast (&tep->ip, &tc->rmt_ip, sizeof (tc->rmt_ip));
Aloys Augustincdb71702019-04-08 17:54:39 +0200373 }
374}
375
376void
377transport_get_endpoint (transport_proto_t tp, u32 conn_index,
Florin Coras09d18c22019-04-24 11:10:02 -0700378 u32 thread_index, transport_endpoint_t * tep,
379 u8 is_lcl)
Aloys Augustincdb71702019-04-08 17:54:39 +0200380{
381 if (tp_vfts[tp].get_transport_endpoint)
Florin Coras09d18c22019-04-24 11:10:02 -0700382 tp_vfts[tp].get_transport_endpoint (conn_index, thread_index, tep,
383 is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200384 else
385 {
386 transport_connection_t *tc;
387 tc = transport_get_connection (tp, conn_index, thread_index);
Florin Coras09d18c22019-04-24 11:10:02 -0700388 default_get_transport_endpoint (tc, tep, is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200389 }
390}
391
392void
393transport_get_listener_endpoint (transport_proto_t tp, u32 conn_index,
Florin Coras09d18c22019-04-24 11:10:02 -0700394 transport_endpoint_t * tep, u8 is_lcl)
Aloys Augustincdb71702019-04-08 17:54:39 +0200395{
396 if (tp_vfts[tp].get_transport_listener_endpoint)
Florin Coras09d18c22019-04-24 11:10:02 -0700397 tp_vfts[tp].get_transport_listener_endpoint (conn_index, tep, is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200398 else
399 {
400 transport_connection_t *tc;
401 tc = transport_get_listener (tp, conn_index);
Florin Coras09d18c22019-04-24 11:10:02 -0700402 default_get_transport_endpoint (tc, tep, is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200403 }
404}
405
Florin Coras04ae8272021-04-12 19:55:37 -0700406int
407transport_connection_attribute (transport_proto_t tp, u32 conn_index,
408 u8 thread_index, u8 is_get,
409 transport_endpt_attr_t *attr)
410{
411 if (!tp_vfts[tp].attribute)
412 return -1;
413
414 return tp_vfts[tp].attribute (conn_index, thread_index, is_get, attr);
415}
416
Florin Coras3cbc04b2017-10-02 00:18:51 -0700417#define PORT_MASK ((1 << 16)- 1)
418
419void
Florin Coras05ead782022-03-23 16:35:05 -0700420transport_endpoint_free (u32 tepi)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700421{
Florin Coras0b466ad2022-11-03 12:50:13 -0700422 transport_main_t *tm = &tp_main;
423 pool_put_index (tm->local_endpoints, tepi);
Florin Coras05ead782022-03-23 16:35:05 -0700424}
425
Florin Coras57660d92020-04-04 22:45:34 +0000426always_inline local_endpoint_t *
Florin Coras05ead782022-03-23 16:35:05 -0700427transport_endpoint_alloc (void)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700428{
Florin Coras0b466ad2022-11-03 12:50:13 -0700429 transport_main_t *tm = &tp_main;
Florin Coras57660d92020-04-04 22:45:34 +0000430 local_endpoint_t *lep;
Florin Coras05ead782022-03-23 16:35:05 -0700431
432 ASSERT (vlib_get_thread_index () <= transport_cl_thread ());
Florin Corasbf27ca82022-11-09 15:54:39 -0800433
Florin Coras0b466ad2022-11-03 12:50:13 -0700434 pool_get_aligned_safe (tm->local_endpoints, lep, 0);
Florin Coras57660d92020-04-04 22:45:34 +0000435 return lep;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700436}
437
Florin Corasbf27ca82022-11-09 15:54:39 -0800438static void
439transport_cleanup_freelist (void)
440{
441 transport_main_t *tm = &tp_main;
442 local_endpoint_t *lep;
443 u32 *lep_indexp;
444
445 clib_spinlock_lock (&tm->local_endpoints_lock);
446
447 vec_foreach (lep_indexp, tm->lcl_endpts_freelist)
448 {
449 lep = pool_elt_at_index (tm->local_endpoints, *lep_indexp);
450
451 /* Port re-shared after attempt to cleanup */
452 if (lep->refcnt > 0)
453 continue;
454
455 transport_endpoint_table_del (&tm->local_endpoints_table, lep->proto,
456 &lep->ep);
457 transport_endpoint_free (*lep_indexp);
458 }
459
460 vec_reset_length (tm->lcl_endpts_freelist);
461
462 tm->lcl_endpts_cleanup_pending = 0;
463
464 clib_spinlock_unlock (&tm->local_endpoints_lock);
465}
466
Florin Coras3cbc04b2017-10-02 00:18:51 -0700467void
Florin Corasbf27ca82022-11-09 15:54:39 -0800468transport_program_endpoint_cleanup (u32 lepi)
469{
470 transport_main_t *tm = &tp_main;
471 u8 flush_fl = 0;
472
473 /* All workers can free connections. Synchronize access to freelist */
474 clib_spinlock_lock (&tm->local_endpoints_lock);
475
476 vec_add1 (tm->lcl_endpts_freelist, lepi);
477
478 /* Avoid accumulating lots of endpoints for cleanup */
479 if (!tm->lcl_endpts_cleanup_pending &&
480 vec_len (tm->lcl_endpts_freelist) > 32)
481 {
482 tm->lcl_endpts_cleanup_pending = 1;
483 flush_fl = 1;
484 }
485
486 clib_spinlock_unlock (&tm->local_endpoints_lock);
487
488 if (flush_fl)
489 session_send_rpc_evt_to_thread_force (0, transport_cleanup_freelist, 0);
490}
491
492int
493transport_release_local_endpoint (u8 proto, ip46_address_t *lcl_ip, u16 port)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700494{
Florin Coras0b466ad2022-11-03 12:50:13 -0700495 transport_main_t *tm = &tp_main;
Florin Coras57660d92020-04-04 22:45:34 +0000496 local_endpoint_t *lep;
497 u32 lepi;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700498
Florin Coras0b466ad2022-11-03 12:50:13 -0700499 lepi = transport_endpoint_lookup (&tm->local_endpoints_table, proto, lcl_ip,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700500 clib_net_to_host_u16 (port));
Florin Corasf55183a2022-03-24 17:02:08 -0700501 if (lepi == ENDPOINT_INVALID_INDEX)
Florin Corasbf27ca82022-11-09 15:54:39 -0800502 return -1;
Florin Corasf55183a2022-03-24 17:02:08 -0700503
Florin Coras0b466ad2022-11-03 12:50:13 -0700504 lep = pool_elt_at_index (tm->local_endpoints, lepi);
Florin Corasbf27ca82022-11-09 15:54:39 -0800505
506 /* Local endpoint no longer in use, program cleanup */
Florin Corasf55183a2022-03-24 17:02:08 -0700507 if (!clib_atomic_sub_fetch (&lep->refcnt, 1))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700508 {
Florin Corasbf27ca82022-11-09 15:54:39 -0800509 transport_program_endpoint_cleanup (lepi);
510 return 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700511 }
Florin Corasbf27ca82022-11-09 15:54:39 -0800512
513 /* Not an error, just in idication that endpoint was not cleaned up */
514 return -1;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700515}
516
Florin Corasf55183a2022-03-24 17:02:08 -0700517static int
518transport_endpoint_mark_used (u8 proto, ip46_address_t *ip, u16 port)
Florin Coras5665ced2018-10-25 18:03:45 -0700519{
Florin Coras0b466ad2022-11-03 12:50:13 -0700520 transport_main_t *tm = &tp_main;
Florin Coras57660d92020-04-04 22:45:34 +0000521 local_endpoint_t *lep;
Florin Corasf55183a2022-03-24 17:02:08 -0700522 u32 tei;
Florin Coras05ead782022-03-23 16:35:05 -0700523
524 ASSERT (vlib_get_thread_index () <= transport_cl_thread ());
525
Florin Coras0b466ad2022-11-03 12:50:13 -0700526 tei =
527 transport_endpoint_lookup (&tm->local_endpoints_table, proto, ip, port);
Florin Corasf55183a2022-03-24 17:02:08 -0700528 if (tei != ENDPOINT_INVALID_INDEX)
529 return SESSION_E_PORTINUSE;
530
Florin Coras05ead782022-03-23 16:35:05 -0700531 /* Pool reallocs with worker barrier */
532 lep = transport_endpoint_alloc ();
Florin Coras57660d92020-04-04 22:45:34 +0000533 clib_memcpy_fast (&lep->ep.ip, ip, sizeof (*ip));
534 lep->ep.port = port;
Florin Corasbf27ca82022-11-09 15:54:39 -0800535 lep->proto = proto;
Florin Coras57660d92020-04-04 22:45:34 +0000536 lep->refcnt = 1;
Florin Corasf55183a2022-03-24 17:02:08 -0700537
Florin Coras0b466ad2022-11-03 12:50:13 -0700538 transport_endpoint_table_add (&tm->local_endpoints_table, proto, &lep->ep,
539 lep - tm->local_endpoints);
Florin Corasf55183a2022-03-24 17:02:08 -0700540
541 return 0;
Florin Coras5665ced2018-10-25 18:03:45 -0700542}
543
Florin Coras57660d92020-04-04 22:45:34 +0000544void
545transport_share_local_endpoint (u8 proto, ip46_address_t * lcl_ip, u16 port)
546{
Florin Coras0b466ad2022-11-03 12:50:13 -0700547 transport_main_t *tm = &tp_main;
Florin Coras57660d92020-04-04 22:45:34 +0000548 local_endpoint_t *lep;
549 u32 lepi;
550
Florin Corasbf27ca82022-11-09 15:54:39 -0800551 /* Active opens should call this only from a control thread, which are also
552 * used to allocate and free ports. So, pool has only one writer and
553 * potentially many readers. Listeners are allocated with barrier */
Florin Coras0b466ad2022-11-03 12:50:13 -0700554 lepi = transport_endpoint_lookup (&tm->local_endpoints_table, proto, lcl_ip,
Florin Coras57660d92020-04-04 22:45:34 +0000555 clib_net_to_host_u16 (port));
556 if (lepi != ENDPOINT_INVALID_INDEX)
557 {
Florin Coras0b466ad2022-11-03 12:50:13 -0700558 lep = pool_elt_at_index (tm->local_endpoints, lepi);
Florin Coras57660d92020-04-04 22:45:34 +0000559 clib_atomic_add_fetch (&lep->refcnt, 1);
560 }
561}
562
Florin Coras3cbc04b2017-10-02 00:18:51 -0700563/**
564 * Allocate local port and add if successful add entry to local endpoint
565 * table to mark the pair as used.
566 */
567int
568transport_alloc_local_port (u8 proto, ip46_address_t * ip)
569{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700570 u16 min = 1024, max = 65535; /* XXX configurable ? */
Florin Corasbf27ca82022-11-09 15:54:39 -0800571 transport_main_t *tm = &tp_main;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700572 int tries, limit;
573
574 limit = max - min;
575
Florin Coras05ead782022-03-23 16:35:05 -0700576 /* Only support active opens from one of ctrl threads */
577 ASSERT (vlib_get_thread_index () <= transport_cl_thread ());
Florin Coras3cbc04b2017-10-02 00:18:51 -0700578
Florin Corasbf27ca82022-11-09 15:54:39 -0800579 /* Cleanup freelist if need be */
580 if (vec_len (tm->lcl_endpts_freelist))
581 transport_cleanup_freelist ();
582
Florin Coras3cbc04b2017-10-02 00:18:51 -0700583 /* Search for first free slot */
584 for (tries = 0; tries < limit; tries++)
585 {
586 u16 port = 0;
587
588 /* Find a port in the specified range */
589 while (1)
590 {
Florin Corasbf27ca82022-11-09 15:54:39 -0800591 port = random_u32 (&tm->port_allocator_seed) & PORT_MASK;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700592 if (PREDICT_TRUE (port >= min && port < max))
593 break;
594 }
595
Florin Corasf55183a2022-03-24 17:02:08 -0700596 if (!transport_endpoint_mark_used (proto, ip, port))
597 return port;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700598 }
599 return -1;
600}
601
Florin Coras00e01d32019-10-21 16:07:46 -0700602static session_error_t
Florin Coras5665ced2018-10-25 18:03:45 -0700603transport_get_interface_ip (u32 sw_if_index, u8 is_ip4, ip46_address_t * addr)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700604{
Florin Coras5665ced2018-10-25 18:03:45 -0700605 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700606 {
607 ip4_address_t *ip4;
608 ip4 = ip_interface_get_first_ip (sw_if_index, 1);
Florin Corasfc804d92018-01-26 01:27:01 -0800609 if (!ip4)
Florin Coras00e01d32019-10-21 16:07:46 -0700610 return SESSION_E_NOIP;
Florin Coras5665ced2018-10-25 18:03:45 -0700611 addr->ip4.as_u32 = ip4->as_u32;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700612 }
613 else
614 {
615 ip6_address_t *ip6;
616 ip6 = ip_interface_get_first_ip (sw_if_index, 0);
617 if (ip6 == 0)
Florin Coras00e01d32019-10-21 16:07:46 -0700618 return SESSION_E_NOIP;
Dave Barach178cf492018-11-13 16:34:13 -0500619 clib_memcpy_fast (&addr->ip6, ip6, sizeof (*ip6));
Florin Coras5665ced2018-10-25 18:03:45 -0700620 }
621 return 0;
622}
623
Florin Coras00e01d32019-10-21 16:07:46 -0700624static session_error_t
Florin Coras596c45b2021-09-09 12:04:17 -0700625transport_find_local_ip_for_remote (u32 *sw_if_index,
626 transport_endpoint_t *rmt,
627 ip46_address_t *lcl_addr)
Florin Coras5665ced2018-10-25 18:03:45 -0700628{
629 fib_node_index_t fei;
630 fib_prefix_t prefix;
631
Florin Coras596c45b2021-09-09 12:04:17 -0700632 if (*sw_if_index == ENDPOINT_INVALID_INDEX)
Florin Coras5665ced2018-10-25 18:03:45 -0700633 {
634 /* Find a FIB path to the destination */
Dave Barach178cf492018-11-13 16:34:13 -0500635 clib_memcpy_fast (&prefix.fp_addr, &rmt->ip, sizeof (rmt->ip));
Florin Coras5665ced2018-10-25 18:03:45 -0700636 prefix.fp_proto = rmt->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
637 prefix.fp_len = rmt->is_ip4 ? 32 : 128;
638
639 ASSERT (rmt->fib_index != ENDPOINT_INVALID_INDEX);
640 fei = fib_table_lookup (rmt->fib_index, &prefix);
641
642 /* Couldn't find route to destination. Bail out. */
643 if (fei == FIB_NODE_INDEX_INVALID)
Florin Coras00e01d32019-10-21 16:07:46 -0700644 return SESSION_E_NOROUTE;
Florin Coras5665ced2018-10-25 18:03:45 -0700645
Florin Coras596c45b2021-09-09 12:04:17 -0700646 *sw_if_index = fib_entry_get_resolving_interface (fei);
647 if (*sw_if_index == ENDPOINT_INVALID_INDEX)
Florin Coras00e01d32019-10-21 16:07:46 -0700648 return SESSION_E_NOINTF;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700649 }
650
Florin Coras5665ced2018-10-25 18:03:45 -0700651 clib_memset (lcl_addr, 0, sizeof (*lcl_addr));
Florin Coras596c45b2021-09-09 12:04:17 -0700652 return transport_get_interface_ip (*sw_if_index, rmt->is_ip4, lcl_addr);
Florin Coras5665ced2018-10-25 18:03:45 -0700653}
654
655int
656transport_alloc_local_endpoint (u8 proto, transport_endpoint_cfg_t * rmt_cfg,
657 ip46_address_t * lcl_addr, u16 * lcl_port)
658{
659 transport_endpoint_t *rmt = (transport_endpoint_t *) rmt_cfg;
Florin Coras00e01d32019-10-21 16:07:46 -0700660 session_error_t error;
Florin Coras5665ced2018-10-25 18:03:45 -0700661 int port;
Florin Coras5665ced2018-10-25 18:03:45 -0700662
663 /*
664 * Find the local address
665 */
666 if (ip_is_zero (&rmt_cfg->peer.ip, rmt_cfg->peer.is_ip4))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700667 {
Florin Coras596c45b2021-09-09 12:04:17 -0700668 error = transport_find_local_ip_for_remote (&rmt_cfg->peer.sw_if_index,
Florin Coras5665ced2018-10-25 18:03:45 -0700669 rmt, lcl_addr);
670 if (error)
Florin Coras00e01d32019-10-21 16:07:46 -0700671 return error;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700672 }
Florin Coras5665ced2018-10-25 18:03:45 -0700673 else
674 {
675 /* Assume session layer vetted this address */
Dave Barach178cf492018-11-13 16:34:13 -0500676 clib_memcpy_fast (lcl_addr, &rmt_cfg->peer.ip,
677 sizeof (rmt_cfg->peer.ip));
Florin Coras5665ced2018-10-25 18:03:45 -0700678 }
679
680 /*
681 * Allocate source port
682 */
683 if (rmt_cfg->peer.port == 0)
684 {
685 port = transport_alloc_local_port (proto, lcl_addr);
686 if (port < 1)
Florin Coras00e01d32019-10-21 16:07:46 -0700687 return SESSION_E_NOPORT;
Florin Coras5665ced2018-10-25 18:03:45 -0700688 *lcl_port = port;
689 }
690 else
691 {
692 port = clib_net_to_host_u16 (rmt_cfg->peer.port);
Florin Coras57660d92020-04-04 22:45:34 +0000693 *lcl_port = port;
Florin Coras5665ced2018-10-25 18:03:45 -0700694
Florin Corasf55183a2022-03-24 17:02:08 -0700695 return transport_endpoint_mark_used (proto, lcl_addr, port);
Florin Coras5665ced2018-10-25 18:03:45 -0700696 }
697
Florin Coras3cbc04b2017-10-02 00:18:51 -0700698 return 0;
699}
700
Florin Corasa8e71c82019-10-22 19:01:39 -0700701u8 *
702format_clib_us_time (u8 * s, va_list * args)
703{
704 clib_us_time_t t = va_arg (*args, clib_us_time_t);
705 if (t < 1e3)
706 s = format (s, "%u us", t);
707 else
708 s = format (s, "%.3f s", (f64) t * CLIB_US_TIME_PERIOD);
709 return s;
710}
Florin Corasd67f1122018-05-21 17:47:40 -0700711
712u8 *
713format_transport_pacer (u8 * s, va_list * args)
714{
715 spacer_t *pacer = va_arg (*args, spacer_t *);
Florin Corasa8e71c82019-10-22 19:01:39 -0700716 u32 thread_index = va_arg (*args, int);
717 clib_us_time_t now, diff;
Florin Corasd67f1122018-05-21 17:47:40 -0700718
Florin Corasa8e71c82019-10-22 19:01:39 -0700719 now = transport_us_time_now (thread_index);
720 diff = now - pacer->last_update;
Florin Corasa39f4722020-11-12 10:20:05 -0800721 s = format (s, "rate %lu bucket %ld t/p %.3f last_update %U burst %u",
Florin Corasbe237bf2019-09-27 08:16:40 -0700722 pacer->bytes_per_sec, pacer->bucket, pacer->tokens_per_period,
Florin Coras7808df22020-11-02 18:00:32 -0800723 format_clib_us_time, diff, pacer->max_burst);
Florin Corasd67f1122018-05-21 17:47:40 -0700724 return s;
725}
726
727static inline u32
Florin Corasa8e71c82019-10-22 19:01:39 -0700728spacer_max_burst (spacer_t * pacer, clib_us_time_t time_now)
Florin Corasd67f1122018-05-21 17:47:40 -0700729{
Florin Corasa8e71c82019-10-22 19:01:39 -0700730 u64 n_periods = (time_now - pacer->last_update);
Florin Coras93dd58c2022-01-09 17:20:28 -0800731 i64 inc;
Florin Corasd67f1122018-05-21 17:47:40 -0700732
Florin Coras11e9e352019-11-13 19:09:47 -0800733 if ((inc = (f32) n_periods * pacer->tokens_per_period) > 10)
Florin Corase55a6d72018-10-31 23:09:22 -0700734 {
Florin Corasa8e71c82019-10-22 19:01:39 -0700735 pacer->last_update = time_now;
Florin Coras93dd58c2022-01-09 17:20:28 -0800736 pacer->bucket = clib_min (pacer->bucket + inc, (i64) pacer->max_burst);
Florin Corase55a6d72018-10-31 23:09:22 -0700737 }
738
Florin Coras2b4f74f2022-01-09 19:03:09 -0800739 return pacer->bucket >= 0 ? pacer->max_burst : 0;
Florin Corasd67f1122018-05-21 17:47:40 -0700740}
741
742static inline void
743spacer_update_bucket (spacer_t * pacer, u32 bytes)
744{
Florin Corasd67f1122018-05-21 17:47:40 -0700745 pacer->bucket -= bytes;
746}
747
748static inline void
Florin Coras11e9e352019-11-13 19:09:47 -0800749spacer_set_pace_rate (spacer_t * pacer, u64 rate_bytes_per_sec,
Florin Corasa39f4722020-11-12 10:20:05 -0800750 clib_us_time_t rtt, clib_time_type_t sec_per_loop)
Florin Corasd67f1122018-05-21 17:47:40 -0700751{
Florin Coras7808df22020-11-02 18:00:32 -0800752 clib_us_time_t max_time;
753
Florin Corasd67f1122018-05-21 17:47:40 -0700754 ASSERT (rate_bytes_per_sec != 0);
Florin Coras7c8f8282019-09-15 16:28:45 -0700755 pacer->bytes_per_sec = rate_bytes_per_sec;
Florin Corasa8e71c82019-10-22 19:01:39 -0700756 pacer->tokens_per_period = rate_bytes_per_sec * CLIB_US_TIME_PERIOD;
Florin Coras7808df22020-11-02 18:00:32 -0800757
758 /* Allow a min number of bursts per rtt, if their size is acceptable. Goal
759 * is to spread the sending of data over the rtt but to also allow for some
760 * coalescing that can potentially
761 * 1) reduce load on session layer by reducing scheduling frequency for a
762 * session and
763 * 2) optimize sending when tso if available
764 *
765 * Max "time-length" of a burst cannot be less than 1us or more than 1ms.
766 */
Florin Corasa39f4722020-11-12 10:20:05 -0800767 max_time = clib_max (rtt / TRANSPORT_PACER_BURSTS_PER_RTT,
768 (clib_us_time_t) (sec_per_loop * CLIB_US_TIME_FREQ));
Florin Coras7808df22020-11-02 18:00:32 -0800769 max_time = clib_clamp (max_time, 1 /* 1us */ , 1000 /* 1ms */ );
770 pacer->max_burst = (rate_bytes_per_sec * max_time) * CLIB_US_TIME_PERIOD;
771 pacer->max_burst = clib_clamp (pacer->max_burst, TRANSPORT_PACER_MIN_BURST,
772 TRANSPORT_PACER_MAX_BURST);
Florin Corasd67f1122018-05-21 17:47:40 -0700773}
774
Florin Coras52814732019-06-12 15:38:19 -0700775static inline u64
776spacer_pace_rate (spacer_t * pacer)
777{
Florin Coras7c8f8282019-09-15 16:28:45 -0700778 return pacer->bytes_per_sec;
Florin Coras52814732019-06-12 15:38:19 -0700779}
780
Florin Coras36ebcff2019-09-12 18:36:44 -0700781static inline void
Florin Corasa8e71c82019-10-22 19:01:39 -0700782spacer_reset (spacer_t * pacer, clib_us_time_t time_now, u64 bucket)
Florin Coras36ebcff2019-09-12 18:36:44 -0700783{
Florin Corasa8e71c82019-10-22 19:01:39 -0700784 pacer->last_update = time_now;
785 pacer->bucket = bucket;
Florin Coras36ebcff2019-09-12 18:36:44 -0700786}
787
Florin Corasd67f1122018-05-21 17:47:40 -0700788void
Florin Corasc44a5582018-11-01 16:30:54 -0700789transport_connection_tx_pacer_reset (transport_connection_t * tc,
Florin Coras11e9e352019-11-13 19:09:47 -0800790 u64 rate_bytes_per_sec, u32 start_bucket,
791 clib_us_time_t rtt)
Florin Corasd67f1122018-05-21 17:47:40 -0700792{
Florin Corasa39f4722020-11-12 10:20:05 -0800793 spacer_set_pace_rate (&tc->pacer, rate_bytes_per_sec, rtt,
794 transport_seconds_per_loop (tc->thread_index));
Florin Corasa8e71c82019-10-22 19:01:39 -0700795 spacer_reset (&tc->pacer, transport_us_time_now (tc->thread_index),
796 start_bucket);
797}
798
799void
Florin Coras11e9e352019-11-13 19:09:47 -0800800transport_connection_tx_pacer_reset_bucket (transport_connection_t * tc,
801 u32 bucket)
Florin Corasa8e71c82019-10-22 19:01:39 -0700802{
Florin Coras11e9e352019-11-13 19:09:47 -0800803 spacer_reset (&tc->pacer, transport_us_time_now (tc->thread_index), bucket);
Florin Corasc44a5582018-11-01 16:30:54 -0700804}
805
806void
807transport_connection_tx_pacer_init (transport_connection_t * tc,
Florin Corasa8e71c82019-10-22 19:01:39 -0700808 u64 rate_bytes_per_sec,
Florin Corasc44a5582018-11-01 16:30:54 -0700809 u32 initial_bucket)
810{
Florin Corasc44a5582018-11-01 16:30:54 -0700811 tc->flags |= TRANSPORT_CONNECTION_F_IS_TX_PACED;
812 transport_connection_tx_pacer_reset (tc, rate_bytes_per_sec,
Florin Coras11e9e352019-11-13 19:09:47 -0800813 initial_bucket, 1e6);
Florin Corasd67f1122018-05-21 17:47:40 -0700814}
815
816void
817transport_connection_tx_pacer_update (transport_connection_t * tc,
Florin Coras11e9e352019-11-13 19:09:47 -0800818 u64 bytes_per_sec, clib_us_time_t rtt)
Florin Corasd67f1122018-05-21 17:47:40 -0700819{
Florin Corasa39f4722020-11-12 10:20:05 -0800820 spacer_set_pace_rate (&tc->pacer, bytes_per_sec, rtt,
821 transport_seconds_per_loop (tc->thread_index));
Florin Corasd67f1122018-05-21 17:47:40 -0700822}
823
824u32
Florin Corasa8e71c82019-10-22 19:01:39 -0700825transport_connection_tx_pacer_burst (transport_connection_t * tc)
Florin Corase55a6d72018-10-31 23:09:22 -0700826{
Florin Corasa8e71c82019-10-22 19:01:39 -0700827 return spacer_max_burst (&tc->pacer,
828 transport_us_time_now (tc->thread_index));
Florin Coras36ebcff2019-09-12 18:36:44 -0700829}
830
Florin Coras52814732019-06-12 15:38:19 -0700831u64
832transport_connection_tx_pacer_rate (transport_connection_t * tc)
833{
834 return spacer_pace_rate (&tc->pacer);
835}
836
Florin Corasd67f1122018-05-21 17:47:40 -0700837void
Florin Coras00482232019-08-02 12:52:00 -0700838transport_connection_update_tx_bytes (transport_connection_t * tc, u32 bytes)
Florin Corasd67f1122018-05-21 17:47:40 -0700839{
Florin Corasd67f1122018-05-21 17:47:40 -0700840 if (transport_connection_is_tx_paced (tc))
841 spacer_update_bucket (&tc->pacer, bytes);
842}
843
844void
Florin Corase55a6d72018-10-31 23:09:22 -0700845transport_connection_tx_pacer_update_bytes (transport_connection_t * tc,
846 u32 bytes)
847{
848 spacer_update_bucket (&tc->pacer, bytes);
849}
850
851void
Florin Coras8f10b902021-04-02 18:32:00 -0700852transport_update_pacer_time (u32 thread_index, clib_time_type_t now)
853{
854 session_wrk_update_time (session_main_get_worker (thread_index), now);
855}
856
857void
Florin Coras70f879d2020-03-13 17:54:42 +0000858transport_connection_reschedule (transport_connection_t * tc)
859{
860 tc->flags &= ~TRANSPORT_CONNECTION_F_DESCHED;
Florin Coras2b4f74f2022-01-09 19:03:09 -0800861 transport_connection_tx_pacer_reset_bucket (tc, 0 /* bucket */);
Florin Coras70f879d2020-03-13 17:54:42 +0000862 if (transport_max_tx_dequeue (tc))
863 sesssion_reschedule_tx (tc);
864 else
865 {
866 session_t *s = session_get (tc->s_index, tc->thread_index);
867 svm_fifo_unset_event (s->tx_fifo);
868 if (svm_fifo_max_dequeue_cons (s->tx_fifo))
869 if (svm_fifo_set_event (s->tx_fifo))
870 sesssion_reschedule_tx (tc);
871 }
872}
873
874void
Florin Coras8c4fa012020-11-06 16:59:08 -0800875transport_fifos_init_ooo (transport_connection_t * tc)
876{
877 session_t *s = session_get (tc->s_index, tc->thread_index);
878 svm_fifo_init_ooo_lookup (s->rx_fifo, 0 /* ooo enq */ );
879 svm_fifo_init_ooo_lookup (s->tx_fifo, 1 /* ooo deq */ );
880}
881
882void
Florin Corasa8e71c82019-10-22 19:01:39 -0700883transport_update_time (clib_time_type_t time_now, u8 thread_index)
Florin Coras561af9b2017-12-09 10:19:43 -0800884{
885 transport_proto_vft_t *vft;
886 vec_foreach (vft, tp_vfts)
887 {
888 if (vft->update_time)
889 (vft->update_time) (time_now, thread_index);
890 }
891}
892
893void
894transport_enable_disable (vlib_main_t * vm, u8 is_en)
895{
896 transport_proto_vft_t *vft;
897 vec_foreach (vft, tp_vfts)
898 {
899 if (vft->enable)
900 (vft->enable) (vm, is_en);
Florin Coras5384cca2022-01-20 18:10:26 -0800901
902 if (vft->update_time)
903 session_register_update_time_fn (vft->update_time, is_en);
Florin Coras561af9b2017-12-09 10:19:43 -0800904 }
905}
906
907void
Florin Coras3cbc04b2017-10-02 00:18:51 -0700908transport_init (void)
909{
910 vlib_thread_main_t *vtm = vlib_get_thread_main ();
Florin Coras31c99552019-03-01 13:00:58 -0800911 session_main_t *smm = vnet_get_session_main ();
Florin Coras0b466ad2022-11-03 12:50:13 -0700912 transport_main_t *tm = &tp_main;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700913 u32 num_threads;
914
Florin Coras93e65802017-11-29 00:07:11 -0500915 if (smm->local_endpoints_table_buckets == 0)
916 smm->local_endpoints_table_buckets = 250000;
917 if (smm->local_endpoints_table_memory == 0)
918 smm->local_endpoints_table_memory = 512 << 20;
919
Florin Coras3cbc04b2017-10-02 00:18:51 -0700920 /* Initialize [port-allocator] random number seed */
Florin Coras0b466ad2022-11-03 12:50:13 -0700921 tm->port_allocator_seed = (u32) clib_cpu_time_now ();
Florin Coras3cbc04b2017-10-02 00:18:51 -0700922
Florin Coras0b466ad2022-11-03 12:50:13 -0700923 clib_bihash_init_24_8 (&tm->local_endpoints_table, "local endpoints table",
Florin Coras93e65802017-11-29 00:07:11 -0500924 smm->local_endpoints_table_buckets,
925 smm->local_endpoints_table_memory);
Florin Coras0b466ad2022-11-03 12:50:13 -0700926 clib_spinlock_init (&tm->local_endpoints_lock);
Florin Coras05ead782022-03-23 16:35:05 -0700927
Florin Coras3cbc04b2017-10-02 00:18:51 -0700928 num_threads = 1 /* main thread */ + vtm->n_threads;
929 if (num_threads > 1)
Florin Corasfb50bc32021-05-18 00:28:59 -0700930 {
Florin Corasfb50bc32021-05-18 00:28:59 -0700931 /* Main not polled if there are workers */
932 smm->transport_cl_thread = 1;
933 }
Florin Coras3cbc04b2017-10-02 00:18:51 -0700934}
935
936/*
937 * fd.io coding-style-patch-verification: ON
938 *
939 * Local Variables:
940 * eval: (c-set-style "gnu")
941 * End:
942 */