blob: 06954c04ccce7b8b3cec11398090da381383f681 [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 Coras0d712c12023-03-13 14:33:37 -070072const char *transport_flags_str[] = {
73#define _(sym, str) str,
74 foreach_transport_connection_flag
75#undef _
76};
77
78u8 *
79format_transport_flags (u8 *s, va_list *args)
80{
81 transport_connection_flags_t flags;
82 int i, last = -1;
83
84 flags = va_arg (*args, transport_connection_flags_t);
85
86 for (i = 0; i < TRANSPORT_CONNECTION_N_FLAGS; i++)
87 if (flags & (1 << i))
88 last = i;
89
90 for (i = 0; i < last; i++)
91 {
92 if (flags & (1 << i))
93 s = format (s, "%s, ", transport_flags_str[i]);
94 }
95 if (last >= 0)
96 s = format (s, "%s", transport_flags_str[last]);
97
98 return s;
99}
100
Florin Corasde9a8492018-10-24 22:18:58 -0700101u8 *
102format_transport_connection (u8 * s, va_list * args)
103{
104 u32 transport_proto = va_arg (*args, u32);
105 u32 conn_index = va_arg (*args, u32);
106 u32 thread_index = va_arg (*args, u32);
107 u32 verbose = va_arg (*args, u32);
108 transport_proto_vft_t *tp_vft;
109 transport_connection_t *tc;
110 u32 indent;
111
112 tp_vft = transport_protocol_get_vft (transport_proto);
113 if (!tp_vft)
114 return s;
115
116 s = format (s, "%U", tp_vft->format_connection, conn_index, thread_index,
117 verbose);
118 tc = tp_vft->get_connection (conn_index, thread_index);
Florin Coras36d49392020-04-24 23:00:11 +0000119 if (tc && verbose > 1)
Florin Corasde9a8492018-10-24 22:18:58 -0700120 {
121 indent = format_get_indent (s) + 1;
Florin Coras36d49392020-04-24 23:00:11 +0000122 if (transport_connection_is_tx_paced (tc))
123 s = format (s, "%Upacer: %U\n", format_white_space, indent,
124 format_transport_pacer, &tc->pacer, tc->thread_index);
Florin Coras0d712c12023-03-13 14:33:37 -0700125 s = format (s, "%Utransport: flags: %U\n", format_white_space, indent,
126 format_transport_flags, tc->flags);
Florin Corasde9a8492018-10-24 22:18:58 -0700127 }
128 return s;
129}
130
131u8 *
132format_transport_listen_connection (u8 * s, va_list * args)
133{
134 u32 transport_proto = va_arg (*args, u32);
Florin Corasde9a8492018-10-24 22:18:58 -0700135 transport_proto_vft_t *tp_vft;
136
137 tp_vft = transport_protocol_get_vft (transport_proto);
138 if (!tp_vft)
139 return s;
140
Florin Coras3389dd22019-02-01 18:00:05 -0800141 s = (tp_vft->format_listener) (s, args);
Florin Corasde9a8492018-10-24 22:18:58 -0700142 return s;
143}
144
145u8 *
146format_transport_half_open_connection (u8 * s, va_list * args)
147{
148 u32 transport_proto = va_arg (*args, u32);
Florin Corasea727642021-05-07 19:39:43 -0700149 u32 ho_index = va_arg (*args, u32);
Florin Corasde9a8492018-10-24 22:18:58 -0700150 transport_proto_vft_t *tp_vft;
151
152 tp_vft = transport_protocol_get_vft (transport_proto);
153 if (!tp_vft)
154 return s;
155
Florin Corasea727642021-05-07 19:39:43 -0700156 s = format (s, "%U", tp_vft->format_half_open, ho_index);
Florin Corasde9a8492018-10-24 22:18:58 -0700157 return s;
158}
159
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800160static u8
161unformat_transport_str_match (unformat_input_t * input, const char *str)
162{
163 int i;
164
165 if (strlen (str) > vec_len (input->buffer) - input->index)
166 return 0;
167
168 for (i = 0; i < strlen (str); i++)
169 {
170 if (input->buffer[i + input->index] != str[i])
171 return 0;
172 }
173 return 1;
174}
175
Florin Coras1c710452017-10-17 00:03:13 -0700176uword
177unformat_transport_proto (unformat_input_t * input, va_list * args)
178{
179 u32 *proto = va_arg (*args, u32 *);
Florin Coras07063b82020-03-13 04:44:51 +0000180 transport_proto_vft_t *tp_vft;
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800181 u8 longest_match = 0, match;
Florin Coras07063b82020-03-13 04:44:51 +0000182 char *str, *str_match = 0;
183 transport_proto_t tp;
Florin Coras5bb23ec2019-08-31 09:45:13 -0700184
Florin Coras07063b82020-03-13 04:44:51 +0000185 for (tp = 0; tp < vec_len (tp_vfts); tp++)
186 {
187 tp_vft = &tp_vfts[tp];
188 str = tp_vft->transport_options.name;
189 if (!str)
190 continue;
191 if (unformat_transport_str_match (input, str))
192 {
193 match = strlen (str);
194 if (match > longest_match)
195 {
196 *proto = tp;
197 longest_match = match;
198 str_match = str;
199 }
200 }
Florin Coras5bb23ec2019-08-31 09:45:13 -0700201 }
Florin Coras07063b82020-03-13 04:44:51 +0000202 if (longest_match)
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800203 {
Dave Barach4897d772020-03-26 10:56:13 -0400204 (void) unformat (input, str_match);
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800205 return 1;
206 }
207
208 return 0;
Florin Coras1c710452017-10-17 00:03:13 -0700209}
Florin Coras3cbc04b2017-10-02 00:18:51 -0700210
Florin Coras07063b82020-03-13 04:44:51 +0000211u8 *
212format_transport_protos (u8 * s, va_list * args)
213{
214 transport_proto_vft_t *tp_vft;
215
216 vec_foreach (tp_vft, tp_vfts)
217 s = format (s, "%s\n", tp_vft->transport_options.name);
218
219 return s;
220}
221
Florin Coras3cbc04b2017-10-02 00:18:51 -0700222u32
223transport_endpoint_lookup (transport_endpoint_table_t * ht, u8 proto,
224 ip46_address_t * ip, u16 port)
225{
226 clib_bihash_kv_24_8_t kv;
227 int rv;
228
229 kv.key[0] = ip->as_u64[0];
230 kv.key[1] = ip->as_u64[1];
231 kv.key[2] = (u64) port << 8 | (u64) proto;
232
233 rv = clib_bihash_search_inline_24_8 (ht, &kv);
234 if (rv == 0)
235 return kv.value;
236
237 return ENDPOINT_INVALID_INDEX;
238}
239
240void
241transport_endpoint_table_add (transport_endpoint_table_t * ht, u8 proto,
242 transport_endpoint_t * te, u32 value)
243{
244 clib_bihash_kv_24_8_t kv;
245
246 kv.key[0] = te->ip.as_u64[0];
247 kv.key[1] = te->ip.as_u64[1];
248 kv.key[2] = (u64) te->port << 8 | (u64) proto;
249 kv.value = value;
250
251 clib_bihash_add_del_24_8 (ht, &kv, 1);
252}
253
254void
255transport_endpoint_table_del (transport_endpoint_table_t * ht, u8 proto,
256 transport_endpoint_t * te)
257{
258 clib_bihash_kv_24_8_t kv;
259
260 kv.key[0] = te->ip.as_u64[0];
261 kv.key[1] = te->ip.as_u64[1];
262 kv.key[2] = (u64) te->port << 8 | (u64) proto;
263
264 clib_bihash_add_del_24_8 (ht, &kv, 0);
265}
266
Florin Coras3cbc04b2017-10-02 00:18:51 -0700267void
Florin Coras561af9b2017-12-09 10:19:43 -0800268transport_register_protocol (transport_proto_t transport_proto,
269 const transport_proto_vft_t * vft,
270 fib_protocol_t fib_proto, u32 output_node)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700271{
Florin Coras561af9b2017-12-09 10:19:43 -0800272 u8 is_ip4 = fib_proto == FIB_PROTOCOL_IP4;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700273
Florin Coras561af9b2017-12-09 10:19:43 -0800274 vec_validate (tp_vfts, transport_proto);
275 tp_vfts[transport_proto] = *vft;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700276
Florin Coras561af9b2017-12-09 10:19:43 -0800277 session_register_transport (transport_proto, vft, is_ip4, output_node);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700278}
279
Florin Coras07063b82020-03-13 04:44:51 +0000280transport_proto_t
281transport_register_new_protocol (const transport_proto_vft_t * vft,
282 fib_protocol_t fib_proto, u32 output_node)
283{
284 transport_proto_t transport_proto;
285 u8 is_ip4;
286
287 transport_proto = session_add_transport_proto ();
288 is_ip4 = fib_proto == FIB_PROTOCOL_IP4;
289
290 vec_validate (tp_vfts, transport_proto);
291 tp_vfts[transport_proto] = *vft;
292
293 session_register_transport (transport_proto, vft, is_ip4, output_node);
294
295 return transport_proto;
296}
297
Florin Coras3cbc04b2017-10-02 00:18:51 -0700298/**
299 * Get transport virtual function table
300 *
301 * @param type - session type (not protocol type)
302 */
303transport_proto_vft_t *
Florin Coras561af9b2017-12-09 10:19:43 -0800304transport_protocol_get_vft (transport_proto_t transport_proto)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700305{
Florin Coras561af9b2017-12-09 10:19:43 -0800306 if (transport_proto >= vec_len (tp_vfts))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700307 return 0;
Florin Coras561af9b2017-12-09 10:19:43 -0800308 return &tp_vfts[transport_proto];
Florin Coras3cbc04b2017-10-02 00:18:51 -0700309}
310
Florin Coras7fb0fe12018-04-09 09:24:52 -0700311transport_service_type_t
312transport_protocol_service_type (transport_proto_t tp)
313{
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200314 return tp_vfts[tp].transport_options.service_type;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700315}
316
Florin Corasf08f26d2018-05-10 13:20:47 -0700317transport_tx_fn_type_t
318transport_protocol_tx_fn_type (transport_proto_t tp)
319{
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200320 return tp_vfts[tp].transport_options.tx_type;
Florin Corasf08f26d2018-05-10 13:20:47 -0700321}
322
Florin Coras1ee78302019-02-05 15:51:15 -0800323void
324transport_cleanup (transport_proto_t tp, u32 conn_index, u8 thread_index)
Florin Coras4edc37e2019-02-04 23:01:34 -0800325{
Florin Coras1ee78302019-02-05 15:51:15 -0800326 tp_vfts[tp].cleanup (conn_index, thread_index);
Florin Coras4edc37e2019-02-04 23:01:34 -0800327}
328
Florin Corasd50ff7f2020-04-16 04:30:22 +0000329void
330transport_cleanup_half_open (transport_proto_t tp, u32 conn_index)
331{
Florin Coras05bc33c2021-05-19 19:33:19 -0700332 if (tp_vfts[tp].cleanup_ho)
Florin Corasd50ff7f2020-04-16 04:30:22 +0000333 tp_vfts[tp].cleanup_ho (conn_index);
334}
335
Florin Coras1ee78302019-02-05 15:51:15 -0800336int
337transport_connect (transport_proto_t tp, transport_endpoint_cfg_t * tep)
Florin Coras4edc37e2019-02-04 23:01:34 -0800338{
Filip Tehlar92d29652022-07-28 08:39:13 +0000339 if (PREDICT_FALSE (!tp_vfts[tp].connect))
340 return SESSION_E_TRANSPORT_NO_REG;
Florin Coras1ee78302019-02-05 15:51:15 -0800341 return tp_vfts[tp].connect (tep);
342}
343
344void
liuyacan534468e2021-05-09 03:50:40 +0000345transport_half_close (transport_proto_t tp, u32 conn_index, u8 thread_index)
346{
347 if (tp_vfts[tp].half_close)
348 tp_vfts[tp].half_close (conn_index, thread_index);
349}
350
351void
Florin Coras1ee78302019-02-05 15:51:15 -0800352transport_close (transport_proto_t tp, u32 conn_index, u8 thread_index)
353{
354 tp_vfts[tp].close (conn_index, thread_index);
355}
356
Florin Corasdfb3b872019-08-16 17:48:44 -0700357void
358transport_reset (transport_proto_t tp, u32 conn_index, u8 thread_index)
359{
360 if (tp_vfts[tp].reset)
361 tp_vfts[tp].reset (conn_index, thread_index);
362 else
363 tp_vfts[tp].close (conn_index, thread_index);
364}
365
Florin Coras1ee78302019-02-05 15:51:15 -0800366u32
367transport_start_listen (transport_proto_t tp, u32 session_index,
Florin Coras0bce71e2022-02-10 11:57:06 -0800368 transport_endpoint_cfg_t *tep)
Florin Coras1ee78302019-02-05 15:51:15 -0800369{
Filip Tehlar92d29652022-07-28 08:39:13 +0000370 if (PREDICT_FALSE (!tp_vfts[tp].start_listen))
371 return SESSION_E_TRANSPORT_NO_REG;
Florin Coras1ee78302019-02-05 15:51:15 -0800372 return tp_vfts[tp].start_listen (session_index, tep);
373}
374
375u32
376transport_stop_listen (transport_proto_t tp, u32 conn_index)
377{
378 return tp_vfts[tp].stop_listen (conn_index);
Florin Coras4edc37e2019-02-04 23:01:34 -0800379}
380
Florin Coras40903ac2018-06-10 14:41:23 -0700381u8
382transport_protocol_is_cl (transport_proto_t tp)
383{
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200384 return (tp_vfts[tp].transport_options.service_type == TRANSPORT_SERVICE_CL);
Florin Coras40903ac2018-06-10 14:41:23 -0700385}
386
Aloys Augustincdb71702019-04-08 17:54:39 +0200387always_inline void
388default_get_transport_endpoint (transport_connection_t * tc,
Florin Coras09d18c22019-04-24 11:10:02 -0700389 transport_endpoint_t * tep, u8 is_lcl)
Aloys Augustincdb71702019-04-08 17:54:39 +0200390{
391 if (is_lcl)
392 {
Florin Coras09d18c22019-04-24 11:10:02 -0700393 tep->port = tc->lcl_port;
394 tep->is_ip4 = tc->is_ip4;
395 clib_memcpy_fast (&tep->ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
Aloys Augustincdb71702019-04-08 17:54:39 +0200396 }
397 else
398 {
Florin Coras09d18c22019-04-24 11:10:02 -0700399 tep->port = tc->rmt_port;
400 tep->is_ip4 = tc->is_ip4;
401 clib_memcpy_fast (&tep->ip, &tc->rmt_ip, sizeof (tc->rmt_ip));
Aloys Augustincdb71702019-04-08 17:54:39 +0200402 }
403}
404
405void
406transport_get_endpoint (transport_proto_t tp, u32 conn_index,
Florin Coras09d18c22019-04-24 11:10:02 -0700407 u32 thread_index, transport_endpoint_t * tep,
408 u8 is_lcl)
Aloys Augustincdb71702019-04-08 17:54:39 +0200409{
410 if (tp_vfts[tp].get_transport_endpoint)
Florin Coras09d18c22019-04-24 11:10:02 -0700411 tp_vfts[tp].get_transport_endpoint (conn_index, thread_index, tep,
412 is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200413 else
414 {
415 transport_connection_t *tc;
416 tc = transport_get_connection (tp, conn_index, thread_index);
Florin Coras09d18c22019-04-24 11:10:02 -0700417 default_get_transport_endpoint (tc, tep, is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200418 }
419}
420
421void
422transport_get_listener_endpoint (transport_proto_t tp, u32 conn_index,
Florin Coras09d18c22019-04-24 11:10:02 -0700423 transport_endpoint_t * tep, u8 is_lcl)
Aloys Augustincdb71702019-04-08 17:54:39 +0200424{
425 if (tp_vfts[tp].get_transport_listener_endpoint)
Florin Coras09d18c22019-04-24 11:10:02 -0700426 tp_vfts[tp].get_transport_listener_endpoint (conn_index, tep, is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200427 else
428 {
429 transport_connection_t *tc;
430 tc = transport_get_listener (tp, conn_index);
Florin Coras09d18c22019-04-24 11:10:02 -0700431 default_get_transport_endpoint (tc, tep, is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200432 }
433}
434
Florin Coras04ae8272021-04-12 19:55:37 -0700435int
436transport_connection_attribute (transport_proto_t tp, u32 conn_index,
437 u8 thread_index, u8 is_get,
438 transport_endpt_attr_t *attr)
439{
440 if (!tp_vfts[tp].attribute)
441 return -1;
442
443 return tp_vfts[tp].attribute (conn_index, thread_index, is_get, attr);
444}
445
Florin Coras3cbc04b2017-10-02 00:18:51 -0700446#define PORT_MASK ((1 << 16)- 1)
447
448void
Florin Coras05ead782022-03-23 16:35:05 -0700449transport_endpoint_free (u32 tepi)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700450{
Florin Coras0b466ad2022-11-03 12:50:13 -0700451 transport_main_t *tm = &tp_main;
452 pool_put_index (tm->local_endpoints, tepi);
Florin Coras05ead782022-03-23 16:35:05 -0700453}
454
Florin Coras57660d92020-04-04 22:45:34 +0000455always_inline local_endpoint_t *
Florin Coras05ead782022-03-23 16:35:05 -0700456transport_endpoint_alloc (void)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700457{
Florin Coras0b466ad2022-11-03 12:50:13 -0700458 transport_main_t *tm = &tp_main;
Florin Coras57660d92020-04-04 22:45:34 +0000459 local_endpoint_t *lep;
Florin Coras05ead782022-03-23 16:35:05 -0700460
461 ASSERT (vlib_get_thread_index () <= transport_cl_thread ());
Florin Corasbf27ca82022-11-09 15:54:39 -0800462
Florin Coras0b466ad2022-11-03 12:50:13 -0700463 pool_get_aligned_safe (tm->local_endpoints, lep, 0);
Florin Coras57660d92020-04-04 22:45:34 +0000464 return lep;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700465}
466
Florin Corasbf27ca82022-11-09 15:54:39 -0800467static void
468transport_cleanup_freelist (void)
469{
470 transport_main_t *tm = &tp_main;
471 local_endpoint_t *lep;
472 u32 *lep_indexp;
473
474 clib_spinlock_lock (&tm->local_endpoints_lock);
475
476 vec_foreach (lep_indexp, tm->lcl_endpts_freelist)
477 {
478 lep = pool_elt_at_index (tm->local_endpoints, *lep_indexp);
479
480 /* Port re-shared after attempt to cleanup */
481 if (lep->refcnt > 0)
482 continue;
483
484 transport_endpoint_table_del (&tm->local_endpoints_table, lep->proto,
485 &lep->ep);
486 transport_endpoint_free (*lep_indexp);
487 }
488
489 vec_reset_length (tm->lcl_endpts_freelist);
490
491 tm->lcl_endpts_cleanup_pending = 0;
492
493 clib_spinlock_unlock (&tm->local_endpoints_lock);
494}
495
Florin Coras3cbc04b2017-10-02 00:18:51 -0700496void
Florin Corasbf27ca82022-11-09 15:54:39 -0800497transport_program_endpoint_cleanup (u32 lepi)
498{
499 transport_main_t *tm = &tp_main;
500 u8 flush_fl = 0;
501
502 /* All workers can free connections. Synchronize access to freelist */
503 clib_spinlock_lock (&tm->local_endpoints_lock);
504
505 vec_add1 (tm->lcl_endpts_freelist, lepi);
506
507 /* Avoid accumulating lots of endpoints for cleanup */
508 if (!tm->lcl_endpts_cleanup_pending &&
509 vec_len (tm->lcl_endpts_freelist) > 32)
510 {
511 tm->lcl_endpts_cleanup_pending = 1;
512 flush_fl = 1;
513 }
514
515 clib_spinlock_unlock (&tm->local_endpoints_lock);
516
517 if (flush_fl)
Florin Coras309f7aa2022-03-18 08:33:08 -0700518 session_send_rpc_evt_to_thread_force (transport_cl_thread (),
519 transport_cleanup_freelist, 0);
Florin Corasbf27ca82022-11-09 15:54:39 -0800520}
521
522int
523transport_release_local_endpoint (u8 proto, ip46_address_t *lcl_ip, u16 port)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700524{
Florin Coras0b466ad2022-11-03 12:50:13 -0700525 transport_main_t *tm = &tp_main;
Florin Coras57660d92020-04-04 22:45:34 +0000526 local_endpoint_t *lep;
527 u32 lepi;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700528
Florin Coras0b466ad2022-11-03 12:50:13 -0700529 lepi = transport_endpoint_lookup (&tm->local_endpoints_table, proto, lcl_ip,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700530 clib_net_to_host_u16 (port));
Florin Corasf55183a2022-03-24 17:02:08 -0700531 if (lepi == ENDPOINT_INVALID_INDEX)
Florin Corasbf27ca82022-11-09 15:54:39 -0800532 return -1;
Florin Corasf55183a2022-03-24 17:02:08 -0700533
Florin Coras0b466ad2022-11-03 12:50:13 -0700534 lep = pool_elt_at_index (tm->local_endpoints, lepi);
Florin Corasbf27ca82022-11-09 15:54:39 -0800535
536 /* Local endpoint no longer in use, program cleanup */
Florin Corasf55183a2022-03-24 17:02:08 -0700537 if (!clib_atomic_sub_fetch (&lep->refcnt, 1))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700538 {
Florin Corasbf27ca82022-11-09 15:54:39 -0800539 transport_program_endpoint_cleanup (lepi);
540 return 0;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700541 }
Florin Corasbf27ca82022-11-09 15:54:39 -0800542
543 /* Not an error, just in idication that endpoint was not cleaned up */
544 return -1;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700545}
546
Florin Corasf55183a2022-03-24 17:02:08 -0700547static int
548transport_endpoint_mark_used (u8 proto, ip46_address_t *ip, u16 port)
Florin Coras5665ced2018-10-25 18:03:45 -0700549{
Florin Coras0b466ad2022-11-03 12:50:13 -0700550 transport_main_t *tm = &tp_main;
Florin Coras57660d92020-04-04 22:45:34 +0000551 local_endpoint_t *lep;
Florin Corasf55183a2022-03-24 17:02:08 -0700552 u32 tei;
Florin Coras05ead782022-03-23 16:35:05 -0700553
554 ASSERT (vlib_get_thread_index () <= transport_cl_thread ());
555
Florin Coras0b466ad2022-11-03 12:50:13 -0700556 tei =
557 transport_endpoint_lookup (&tm->local_endpoints_table, proto, ip, port);
Florin Corasf55183a2022-03-24 17:02:08 -0700558 if (tei != ENDPOINT_INVALID_INDEX)
559 return SESSION_E_PORTINUSE;
560
Florin Coras05ead782022-03-23 16:35:05 -0700561 /* Pool reallocs with worker barrier */
562 lep = transport_endpoint_alloc ();
Florin Coras57660d92020-04-04 22:45:34 +0000563 clib_memcpy_fast (&lep->ep.ip, ip, sizeof (*ip));
564 lep->ep.port = port;
Florin Corasbf27ca82022-11-09 15:54:39 -0800565 lep->proto = proto;
Florin Coras57660d92020-04-04 22:45:34 +0000566 lep->refcnt = 1;
Florin Corasf55183a2022-03-24 17:02:08 -0700567
Florin Coras0b466ad2022-11-03 12:50:13 -0700568 transport_endpoint_table_add (&tm->local_endpoints_table, proto, &lep->ep,
569 lep - tm->local_endpoints);
Florin Corasf55183a2022-03-24 17:02:08 -0700570
571 return 0;
Florin Coras5665ced2018-10-25 18:03:45 -0700572}
573
Florin Coras57660d92020-04-04 22:45:34 +0000574void
575transport_share_local_endpoint (u8 proto, ip46_address_t * lcl_ip, u16 port)
576{
Florin Coras0b466ad2022-11-03 12:50:13 -0700577 transport_main_t *tm = &tp_main;
Florin Coras57660d92020-04-04 22:45:34 +0000578 local_endpoint_t *lep;
579 u32 lepi;
580
Florin Corasbf27ca82022-11-09 15:54:39 -0800581 /* Active opens should call this only from a control thread, which are also
582 * used to allocate and free ports. So, pool has only one writer and
583 * potentially many readers. Listeners are allocated with barrier */
Florin Coras0b466ad2022-11-03 12:50:13 -0700584 lepi = transport_endpoint_lookup (&tm->local_endpoints_table, proto, lcl_ip,
Florin Coras57660d92020-04-04 22:45:34 +0000585 clib_net_to_host_u16 (port));
586 if (lepi != ENDPOINT_INVALID_INDEX)
587 {
Florin Coras0b466ad2022-11-03 12:50:13 -0700588 lep = pool_elt_at_index (tm->local_endpoints, lepi);
Florin Coras57660d92020-04-04 22:45:34 +0000589 clib_atomic_add_fetch (&lep->refcnt, 1);
590 }
591}
592
Florin Coras3cbc04b2017-10-02 00:18:51 -0700593/**
594 * Allocate local port and add if successful add entry to local endpoint
595 * table to mark the pair as used.
596 */
597int
Florin Coras3d6156f2023-01-30 11:18:36 -0800598transport_alloc_local_port (u8 proto, ip46_address_t *lcl_addr,
599 transport_endpoint_cfg_t *rmt)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700600{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700601 u16 min = 1024, max = 65535; /* XXX configurable ? */
Florin Corasbf27ca82022-11-09 15:54:39 -0800602 transport_main_t *tm = &tp_main;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700603 int tries, limit;
604
605 limit = max - min;
606
Florin Coras05ead782022-03-23 16:35:05 -0700607 /* Only support active opens from one of ctrl threads */
608 ASSERT (vlib_get_thread_index () <= transport_cl_thread ());
Florin Coras3cbc04b2017-10-02 00:18:51 -0700609
610 /* Search for first free slot */
611 for (tries = 0; tries < limit; tries++)
612 {
613 u16 port = 0;
614
615 /* Find a port in the specified range */
616 while (1)
617 {
Florin Corasbf27ca82022-11-09 15:54:39 -0800618 port = random_u32 (&tm->port_allocator_seed) & PORT_MASK;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700619 if (PREDICT_TRUE (port >= min && port < max))
620 break;
621 }
622
Florin Coras3d6156f2023-01-30 11:18:36 -0800623 if (!transport_endpoint_mark_used (proto, lcl_addr, port))
Florin Corasf55183a2022-03-24 17:02:08 -0700624 return port;
Florin Coras3d6156f2023-01-30 11:18:36 -0800625
626 /* IP:port pair already in use, check if 6-tuple available */
627 if (session_lookup_connection (rmt->fib_index, lcl_addr, &rmt->ip, port,
628 rmt->port, proto, rmt->is_ip4))
629 continue;
630
631 /* 6-tuple is available so increment lcl endpoint refcount */
632 transport_share_local_endpoint (proto, lcl_addr, port);
633
634 return port;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700635 }
636 return -1;
637}
638
Florin Coras00e01d32019-10-21 16:07:46 -0700639static session_error_t
Florin Coras5665ced2018-10-25 18:03:45 -0700640transport_get_interface_ip (u32 sw_if_index, u8 is_ip4, ip46_address_t * addr)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700641{
Florin Coras5665ced2018-10-25 18:03:45 -0700642 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700643 {
644 ip4_address_t *ip4;
645 ip4 = ip_interface_get_first_ip (sw_if_index, 1);
Florin Corasfc804d92018-01-26 01:27:01 -0800646 if (!ip4)
Florin Coras00e01d32019-10-21 16:07:46 -0700647 return SESSION_E_NOIP;
Florin Coras5665ced2018-10-25 18:03:45 -0700648 addr->ip4.as_u32 = ip4->as_u32;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700649 }
650 else
651 {
652 ip6_address_t *ip6;
653 ip6 = ip_interface_get_first_ip (sw_if_index, 0);
654 if (ip6 == 0)
Florin Coras00e01d32019-10-21 16:07:46 -0700655 return SESSION_E_NOIP;
Dave Barach178cf492018-11-13 16:34:13 -0500656 clib_memcpy_fast (&addr->ip6, ip6, sizeof (*ip6));
Florin Coras5665ced2018-10-25 18:03:45 -0700657 }
658 return 0;
659}
660
Florin Coras00e01d32019-10-21 16:07:46 -0700661static session_error_t
Florin Coras596c45b2021-09-09 12:04:17 -0700662transport_find_local_ip_for_remote (u32 *sw_if_index,
663 transport_endpoint_t *rmt,
664 ip46_address_t *lcl_addr)
Florin Coras5665ced2018-10-25 18:03:45 -0700665{
666 fib_node_index_t fei;
667 fib_prefix_t prefix;
668
Florin Coras596c45b2021-09-09 12:04:17 -0700669 if (*sw_if_index == ENDPOINT_INVALID_INDEX)
Florin Coras5665ced2018-10-25 18:03:45 -0700670 {
671 /* Find a FIB path to the destination */
Dave Barach178cf492018-11-13 16:34:13 -0500672 clib_memcpy_fast (&prefix.fp_addr, &rmt->ip, sizeof (rmt->ip));
Florin Coras5665ced2018-10-25 18:03:45 -0700673 prefix.fp_proto = rmt->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
674 prefix.fp_len = rmt->is_ip4 ? 32 : 128;
675
676 ASSERT (rmt->fib_index != ENDPOINT_INVALID_INDEX);
677 fei = fib_table_lookup (rmt->fib_index, &prefix);
678
679 /* Couldn't find route to destination. Bail out. */
680 if (fei == FIB_NODE_INDEX_INVALID)
Florin Coras00e01d32019-10-21 16:07:46 -0700681 return SESSION_E_NOROUTE;
Florin Coras5665ced2018-10-25 18:03:45 -0700682
Florin Coras596c45b2021-09-09 12:04:17 -0700683 *sw_if_index = fib_entry_get_resolving_interface (fei);
684 if (*sw_if_index == ENDPOINT_INVALID_INDEX)
Florin Coras00e01d32019-10-21 16:07:46 -0700685 return SESSION_E_NOINTF;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700686 }
687
Florin Coras5665ced2018-10-25 18:03:45 -0700688 clib_memset (lcl_addr, 0, sizeof (*lcl_addr));
Florin Coras596c45b2021-09-09 12:04:17 -0700689 return transport_get_interface_ip (*sw_if_index, rmt->is_ip4, lcl_addr);
Florin Coras5665ced2018-10-25 18:03:45 -0700690}
691
692int
693transport_alloc_local_endpoint (u8 proto, transport_endpoint_cfg_t * rmt_cfg,
694 ip46_address_t * lcl_addr, u16 * lcl_port)
695{
696 transport_endpoint_t *rmt = (transport_endpoint_t *) rmt_cfg;
Florin Coras02aa2ca2023-03-13 16:31:52 -0700697 transport_main_t *tm = &tp_main;
Florin Coras00e01d32019-10-21 16:07:46 -0700698 session_error_t error;
Florin Coras5665ced2018-10-25 18:03:45 -0700699 int port;
Florin Coras5665ced2018-10-25 18:03:45 -0700700
701 /*
702 * Find the local address
703 */
704 if (ip_is_zero (&rmt_cfg->peer.ip, rmt_cfg->peer.is_ip4))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700705 {
Florin Coras596c45b2021-09-09 12:04:17 -0700706 error = transport_find_local_ip_for_remote (&rmt_cfg->peer.sw_if_index,
Florin Coras5665ced2018-10-25 18:03:45 -0700707 rmt, lcl_addr);
708 if (error)
Florin Coras00e01d32019-10-21 16:07:46 -0700709 return error;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700710 }
Florin Coras5665ced2018-10-25 18:03:45 -0700711 else
712 {
713 /* Assume session layer vetted this address */
Dave Barach178cf492018-11-13 16:34:13 -0500714 clib_memcpy_fast (lcl_addr, &rmt_cfg->peer.ip,
715 sizeof (rmt_cfg->peer.ip));
Florin Coras5665ced2018-10-25 18:03:45 -0700716 }
717
Florin Coras02aa2ca2023-03-13 16:31:52 -0700718 /* Cleanup freelist if need be */
719 if (vec_len (tm->lcl_endpts_freelist))
720 transport_cleanup_freelist ();
721
Florin Coras5665ced2018-10-25 18:03:45 -0700722 /*
723 * Allocate source port
724 */
725 if (rmt_cfg->peer.port == 0)
726 {
Florin Coras3d6156f2023-01-30 11:18:36 -0800727 port = transport_alloc_local_port (proto, lcl_addr, rmt_cfg);
Florin Coras5665ced2018-10-25 18:03:45 -0700728 if (port < 1)
Florin Coras00e01d32019-10-21 16:07:46 -0700729 return SESSION_E_NOPORT;
Florin Coras5665ced2018-10-25 18:03:45 -0700730 *lcl_port = port;
731 }
732 else
733 {
734 port = clib_net_to_host_u16 (rmt_cfg->peer.port);
Florin Coras57660d92020-04-04 22:45:34 +0000735 *lcl_port = port;
Florin Coras5665ced2018-10-25 18:03:45 -0700736
Florin Corasf55183a2022-03-24 17:02:08 -0700737 return transport_endpoint_mark_used (proto, lcl_addr, port);
Florin Coras5665ced2018-10-25 18:03:45 -0700738 }
739
Florin Coras3cbc04b2017-10-02 00:18:51 -0700740 return 0;
741}
742
Florin Corasa8e71c82019-10-22 19:01:39 -0700743u8 *
744format_clib_us_time (u8 * s, va_list * args)
745{
746 clib_us_time_t t = va_arg (*args, clib_us_time_t);
747 if (t < 1e3)
748 s = format (s, "%u us", t);
749 else
750 s = format (s, "%.3f s", (f64) t * CLIB_US_TIME_PERIOD);
751 return s;
752}
Florin Corasd67f1122018-05-21 17:47:40 -0700753
754u8 *
755format_transport_pacer (u8 * s, va_list * args)
756{
757 spacer_t *pacer = va_arg (*args, spacer_t *);
Florin Corasa8e71c82019-10-22 19:01:39 -0700758 u32 thread_index = va_arg (*args, int);
759 clib_us_time_t now, diff;
Florin Corasd67f1122018-05-21 17:47:40 -0700760
Florin Corasa8e71c82019-10-22 19:01:39 -0700761 now = transport_us_time_now (thread_index);
762 diff = now - pacer->last_update;
Florin Corasa39f4722020-11-12 10:20:05 -0800763 s = format (s, "rate %lu bucket %ld t/p %.3f last_update %U burst %u",
Florin Corasbe237bf2019-09-27 08:16:40 -0700764 pacer->bytes_per_sec, pacer->bucket, pacer->tokens_per_period,
Florin Coras7808df22020-11-02 18:00:32 -0800765 format_clib_us_time, diff, pacer->max_burst);
Florin Corasd67f1122018-05-21 17:47:40 -0700766 return s;
767}
768
769static inline u32
Florin Corasa8e71c82019-10-22 19:01:39 -0700770spacer_max_burst (spacer_t * pacer, clib_us_time_t time_now)
Florin Corasd67f1122018-05-21 17:47:40 -0700771{
Florin Corasa8e71c82019-10-22 19:01:39 -0700772 u64 n_periods = (time_now - pacer->last_update);
Florin Coras93dd58c2022-01-09 17:20:28 -0800773 i64 inc;
Florin Corasd67f1122018-05-21 17:47:40 -0700774
Florin Coras11e9e352019-11-13 19:09:47 -0800775 if ((inc = (f32) n_periods * pacer->tokens_per_period) > 10)
Florin Corase55a6d72018-10-31 23:09:22 -0700776 {
Florin Corasa8e71c82019-10-22 19:01:39 -0700777 pacer->last_update = time_now;
Florin Coras93dd58c2022-01-09 17:20:28 -0800778 pacer->bucket = clib_min (pacer->bucket + inc, (i64) pacer->max_burst);
Florin Corase55a6d72018-10-31 23:09:22 -0700779 }
780
Florin Coras2b4f74f2022-01-09 19:03:09 -0800781 return pacer->bucket >= 0 ? pacer->max_burst : 0;
Florin Corasd67f1122018-05-21 17:47:40 -0700782}
783
784static inline void
785spacer_update_bucket (spacer_t * pacer, u32 bytes)
786{
Florin Corasd67f1122018-05-21 17:47:40 -0700787 pacer->bucket -= bytes;
788}
789
790static inline void
Florin Coras11e9e352019-11-13 19:09:47 -0800791spacer_set_pace_rate (spacer_t * pacer, u64 rate_bytes_per_sec,
Florin Corasa39f4722020-11-12 10:20:05 -0800792 clib_us_time_t rtt, clib_time_type_t sec_per_loop)
Florin Corasd67f1122018-05-21 17:47:40 -0700793{
Florin Coras7808df22020-11-02 18:00:32 -0800794 clib_us_time_t max_time;
795
Florin Corasd67f1122018-05-21 17:47:40 -0700796 ASSERT (rate_bytes_per_sec != 0);
Florin Coras7c8f8282019-09-15 16:28:45 -0700797 pacer->bytes_per_sec = rate_bytes_per_sec;
Florin Corasa8e71c82019-10-22 19:01:39 -0700798 pacer->tokens_per_period = rate_bytes_per_sec * CLIB_US_TIME_PERIOD;
Florin Coras7808df22020-11-02 18:00:32 -0800799
800 /* Allow a min number of bursts per rtt, if their size is acceptable. Goal
801 * is to spread the sending of data over the rtt but to also allow for some
802 * coalescing that can potentially
803 * 1) reduce load on session layer by reducing scheduling frequency for a
804 * session and
805 * 2) optimize sending when tso if available
806 *
807 * Max "time-length" of a burst cannot be less than 1us or more than 1ms.
808 */
Florin Corasa39f4722020-11-12 10:20:05 -0800809 max_time = clib_max (rtt / TRANSPORT_PACER_BURSTS_PER_RTT,
810 (clib_us_time_t) (sec_per_loop * CLIB_US_TIME_FREQ));
Florin Coras7808df22020-11-02 18:00:32 -0800811 max_time = clib_clamp (max_time, 1 /* 1us */ , 1000 /* 1ms */ );
812 pacer->max_burst = (rate_bytes_per_sec * max_time) * CLIB_US_TIME_PERIOD;
813 pacer->max_burst = clib_clamp (pacer->max_burst, TRANSPORT_PACER_MIN_BURST,
814 TRANSPORT_PACER_MAX_BURST);
Florin Corasd67f1122018-05-21 17:47:40 -0700815}
816
Florin Coras52814732019-06-12 15:38:19 -0700817static inline u64
818spacer_pace_rate (spacer_t * pacer)
819{
Florin Coras7c8f8282019-09-15 16:28:45 -0700820 return pacer->bytes_per_sec;
Florin Coras52814732019-06-12 15:38:19 -0700821}
822
Florin Coras36ebcff2019-09-12 18:36:44 -0700823static inline void
Florin Corasa8e71c82019-10-22 19:01:39 -0700824spacer_reset (spacer_t * pacer, clib_us_time_t time_now, u64 bucket)
Florin Coras36ebcff2019-09-12 18:36:44 -0700825{
Florin Corasa8e71c82019-10-22 19:01:39 -0700826 pacer->last_update = time_now;
827 pacer->bucket = bucket;
Florin Coras36ebcff2019-09-12 18:36:44 -0700828}
829
Florin Corasd67f1122018-05-21 17:47:40 -0700830void
Florin Corasc44a5582018-11-01 16:30:54 -0700831transport_connection_tx_pacer_reset (transport_connection_t * tc,
Florin Coras11e9e352019-11-13 19:09:47 -0800832 u64 rate_bytes_per_sec, u32 start_bucket,
833 clib_us_time_t rtt)
Florin Corasd67f1122018-05-21 17:47:40 -0700834{
Florin Corasa39f4722020-11-12 10:20:05 -0800835 spacer_set_pace_rate (&tc->pacer, rate_bytes_per_sec, rtt,
836 transport_seconds_per_loop (tc->thread_index));
Florin Corasa8e71c82019-10-22 19:01:39 -0700837 spacer_reset (&tc->pacer, transport_us_time_now (tc->thread_index),
838 start_bucket);
839}
840
841void
Florin Coras11e9e352019-11-13 19:09:47 -0800842transport_connection_tx_pacer_reset_bucket (transport_connection_t * tc,
843 u32 bucket)
Florin Corasa8e71c82019-10-22 19:01:39 -0700844{
Florin Coras11e9e352019-11-13 19:09:47 -0800845 spacer_reset (&tc->pacer, transport_us_time_now (tc->thread_index), bucket);
Florin Corasc44a5582018-11-01 16:30:54 -0700846}
847
848void
849transport_connection_tx_pacer_init (transport_connection_t * tc,
Florin Corasa8e71c82019-10-22 19:01:39 -0700850 u64 rate_bytes_per_sec,
Florin Corasc44a5582018-11-01 16:30:54 -0700851 u32 initial_bucket)
852{
Florin Corasc44a5582018-11-01 16:30:54 -0700853 tc->flags |= TRANSPORT_CONNECTION_F_IS_TX_PACED;
854 transport_connection_tx_pacer_reset (tc, rate_bytes_per_sec,
Florin Coras11e9e352019-11-13 19:09:47 -0800855 initial_bucket, 1e6);
Florin Corasd67f1122018-05-21 17:47:40 -0700856}
857
858void
859transport_connection_tx_pacer_update (transport_connection_t * tc,
Florin Coras11e9e352019-11-13 19:09:47 -0800860 u64 bytes_per_sec, clib_us_time_t rtt)
Florin Corasd67f1122018-05-21 17:47:40 -0700861{
Florin Corasa39f4722020-11-12 10:20:05 -0800862 spacer_set_pace_rate (&tc->pacer, bytes_per_sec, rtt,
863 transport_seconds_per_loop (tc->thread_index));
Florin Corasd67f1122018-05-21 17:47:40 -0700864}
865
866u32
Florin Corasa8e71c82019-10-22 19:01:39 -0700867transport_connection_tx_pacer_burst (transport_connection_t * tc)
Florin Corase55a6d72018-10-31 23:09:22 -0700868{
Florin Corasa8e71c82019-10-22 19:01:39 -0700869 return spacer_max_burst (&tc->pacer,
870 transport_us_time_now (tc->thread_index));
Florin Coras36ebcff2019-09-12 18:36:44 -0700871}
872
Florin Coras52814732019-06-12 15:38:19 -0700873u64
874transport_connection_tx_pacer_rate (transport_connection_t * tc)
875{
876 return spacer_pace_rate (&tc->pacer);
877}
878
Florin Corasd67f1122018-05-21 17:47:40 -0700879void
Florin Coras00482232019-08-02 12:52:00 -0700880transport_connection_update_tx_bytes (transport_connection_t * tc, u32 bytes)
Florin Corasd67f1122018-05-21 17:47:40 -0700881{
Florin Corasd67f1122018-05-21 17:47:40 -0700882 if (transport_connection_is_tx_paced (tc))
883 spacer_update_bucket (&tc->pacer, bytes);
884}
885
886void
Florin Corase55a6d72018-10-31 23:09:22 -0700887transport_connection_tx_pacer_update_bytes (transport_connection_t * tc,
888 u32 bytes)
889{
890 spacer_update_bucket (&tc->pacer, bytes);
891}
892
893void
Florin Coras8f10b902021-04-02 18:32:00 -0700894transport_update_pacer_time (u32 thread_index, clib_time_type_t now)
895{
896 session_wrk_update_time (session_main_get_worker (thread_index), now);
897}
898
899void
Florin Coras70f879d2020-03-13 17:54:42 +0000900transport_connection_reschedule (transport_connection_t * tc)
901{
902 tc->flags &= ~TRANSPORT_CONNECTION_F_DESCHED;
Florin Coras2b4f74f2022-01-09 19:03:09 -0800903 transport_connection_tx_pacer_reset_bucket (tc, 0 /* bucket */);
Florin Coras70f879d2020-03-13 17:54:42 +0000904 if (transport_max_tx_dequeue (tc))
905 sesssion_reschedule_tx (tc);
906 else
907 {
908 session_t *s = session_get (tc->s_index, tc->thread_index);
909 svm_fifo_unset_event (s->tx_fifo);
910 if (svm_fifo_max_dequeue_cons (s->tx_fifo))
911 if (svm_fifo_set_event (s->tx_fifo))
912 sesssion_reschedule_tx (tc);
913 }
914}
915
916void
Florin Coras8c4fa012020-11-06 16:59:08 -0800917transport_fifos_init_ooo (transport_connection_t * tc)
918{
919 session_t *s = session_get (tc->s_index, tc->thread_index);
920 svm_fifo_init_ooo_lookup (s->rx_fifo, 0 /* ooo enq */ );
921 svm_fifo_init_ooo_lookup (s->tx_fifo, 1 /* ooo deq */ );
922}
923
924void
Florin Corasa8e71c82019-10-22 19:01:39 -0700925transport_update_time (clib_time_type_t time_now, u8 thread_index)
Florin Coras561af9b2017-12-09 10:19:43 -0800926{
927 transport_proto_vft_t *vft;
928 vec_foreach (vft, tp_vfts)
929 {
930 if (vft->update_time)
931 (vft->update_time) (time_now, thread_index);
932 }
933}
934
935void
936transport_enable_disable (vlib_main_t * vm, u8 is_en)
937{
938 transport_proto_vft_t *vft;
939 vec_foreach (vft, tp_vfts)
940 {
941 if (vft->enable)
942 (vft->enable) (vm, is_en);
Florin Coras5384cca2022-01-20 18:10:26 -0800943
944 if (vft->update_time)
945 session_register_update_time_fn (vft->update_time, is_en);
Florin Coras561af9b2017-12-09 10:19:43 -0800946 }
947}
948
949void
Florin Coras3cbc04b2017-10-02 00:18:51 -0700950transport_init (void)
951{
952 vlib_thread_main_t *vtm = vlib_get_thread_main ();
Florin Coras31c99552019-03-01 13:00:58 -0800953 session_main_t *smm = vnet_get_session_main ();
Florin Coras0b466ad2022-11-03 12:50:13 -0700954 transport_main_t *tm = &tp_main;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700955 u32 num_threads;
956
Florin Coras93e65802017-11-29 00:07:11 -0500957 if (smm->local_endpoints_table_buckets == 0)
958 smm->local_endpoints_table_buckets = 250000;
959 if (smm->local_endpoints_table_memory == 0)
960 smm->local_endpoints_table_memory = 512 << 20;
961
Florin Coras3cbc04b2017-10-02 00:18:51 -0700962 /* Initialize [port-allocator] random number seed */
Florin Coras0b466ad2022-11-03 12:50:13 -0700963 tm->port_allocator_seed = (u32) clib_cpu_time_now ();
Florin Coras3cbc04b2017-10-02 00:18:51 -0700964
Florin Coras0b466ad2022-11-03 12:50:13 -0700965 clib_bihash_init_24_8 (&tm->local_endpoints_table, "local endpoints table",
Florin Coras93e65802017-11-29 00:07:11 -0500966 smm->local_endpoints_table_buckets,
967 smm->local_endpoints_table_memory);
Florin Coras0b466ad2022-11-03 12:50:13 -0700968 clib_spinlock_init (&tm->local_endpoints_lock);
Florin Coras05ead782022-03-23 16:35:05 -0700969
Florin Coras3cbc04b2017-10-02 00:18:51 -0700970 num_threads = 1 /* main thread */ + vtm->n_threads;
971 if (num_threads > 1)
Florin Corasfb50bc32021-05-18 00:28:59 -0700972 {
Florin Corasfb50bc32021-05-18 00:28:59 -0700973 /* Main not polled if there are workers */
974 smm->transport_cl_thread = 1;
975 }
Florin Coras3cbc04b2017-10-02 00:18:51 -0700976}
977
978/*
979 * fd.io coding-style-patch-verification: ON
980 *
981 * Local Variables:
982 * eval: (c-set-style "gnu")
983 * End:
984 */