blob: 9dd495c7d6112766bbc6ecb7f246e6131cb74940 [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 Coras57660d92020-04-04 22:45:34 +000020typedef struct local_endpoint_
21{
22 transport_endpoint_t ep;
23 int refcnt;
24} local_endpoint_t;
25
Florin Coras3cbc04b2017-10-02 00:18:51 -070026/**
27 * Per-type vector of transport protocol virtual function tables
28 */
29transport_proto_vft_t *tp_vfts;
30
31/*
32 * Port allocator seed
33 */
34static u32 port_allocator_seed;
35
36/*
37 * Local endpoints table
38 */
39static transport_endpoint_table_t local_endpoints_table;
40
41/*
42 * Pool of local endpoints
43 */
Florin Coras57660d92020-04-04 22:45:34 +000044static local_endpoint_t *local_endpoints;
Florin Coras3cbc04b2017-10-02 00:18:51 -070045
46/*
47 * Local endpoints pool lock
48 */
49static clib_spinlock_t local_endpoints_lock;
50
Florin Coras1c710452017-10-17 00:03:13 -070051u8 *
52format_transport_proto (u8 * s, va_list * args)
53{
54 u32 transport_proto = va_arg (*args, u32);
Florin Coras07063b82020-03-13 04:44:51 +000055
56 if (tp_vfts[transport_proto].transport_options.name)
57 s = format (s, "%s", tp_vfts[transport_proto].transport_options.name);
58 else
59 s = format (s, "n/a");
60
Florin Coras1c710452017-10-17 00:03:13 -070061 return s;
62}
63
Florin Coras561af9b2017-12-09 10:19:43 -080064u8 *
65format_transport_proto_short (u8 * s, va_list * args)
66{
67 u32 transport_proto = va_arg (*args, u32);
Florin Coras07063b82020-03-13 04:44:51 +000068 char *short_name;
69
70 short_name = tp_vfts[transport_proto].transport_options.short_name;
71 if (short_name)
72 s = format (s, "%s", short_name);
73 else
74 s = format (s, "NA");
75
Florin Coras561af9b2017-12-09 10:19:43 -080076 return s;
77}
78
Florin Corasde9a8492018-10-24 22:18:58 -070079u8 *
80format_transport_connection (u8 * s, va_list * args)
81{
82 u32 transport_proto = va_arg (*args, u32);
83 u32 conn_index = va_arg (*args, u32);
84 u32 thread_index = va_arg (*args, u32);
85 u32 verbose = va_arg (*args, u32);
86 transport_proto_vft_t *tp_vft;
87 transport_connection_t *tc;
88 u32 indent;
89
90 tp_vft = transport_protocol_get_vft (transport_proto);
91 if (!tp_vft)
92 return s;
93
94 s = format (s, "%U", tp_vft->format_connection, conn_index, thread_index,
95 verbose);
96 tc = tp_vft->get_connection (conn_index, thread_index);
97 if (tc && transport_connection_is_tx_paced (tc) && verbose > 1)
98 {
99 indent = format_get_indent (s) + 1;
100 s = format (s, "%Upacer: %U\n", format_white_space, indent,
Florin Corasa8e71c82019-10-22 19:01:39 -0700101 format_transport_pacer, &tc->pacer, tc->thread_index);
Florin Coras70f879d2020-03-13 17:54:42 +0000102 s = format (s, "%Utransport: flags 0x%x\n", format_white_space, indent,
103 tc->flags);
Florin Corasde9a8492018-10-24 22:18:58 -0700104 }
105 return s;
106}
107
108u8 *
109format_transport_listen_connection (u8 * s, va_list * args)
110{
111 u32 transport_proto = va_arg (*args, u32);
Florin Corasde9a8492018-10-24 22:18:58 -0700112 transport_proto_vft_t *tp_vft;
113
114 tp_vft = transport_protocol_get_vft (transport_proto);
115 if (!tp_vft)
116 return s;
117
Florin Coras3389dd22019-02-01 18:00:05 -0800118 s = (tp_vft->format_listener) (s, args);
Florin Corasde9a8492018-10-24 22:18:58 -0700119 return s;
120}
121
122u8 *
123format_transport_half_open_connection (u8 * s, va_list * args)
124{
125 u32 transport_proto = va_arg (*args, u32);
126 u32 listen_index = va_arg (*args, u32);
127 transport_proto_vft_t *tp_vft;
128
129 tp_vft = transport_protocol_get_vft (transport_proto);
130 if (!tp_vft)
131 return s;
132
133 s = format (s, "%U", tp_vft->format_half_open, listen_index);
134 return s;
135}
136
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800137static u8
138unformat_transport_str_match (unformat_input_t * input, const char *str)
139{
140 int i;
141
142 if (strlen (str) > vec_len (input->buffer) - input->index)
143 return 0;
144
145 for (i = 0; i < strlen (str); i++)
146 {
147 if (input->buffer[i + input->index] != str[i])
148 return 0;
149 }
150 return 1;
151}
152
Florin Coras1c710452017-10-17 00:03:13 -0700153uword
154unformat_transport_proto (unformat_input_t * input, va_list * args)
155{
156 u32 *proto = va_arg (*args, u32 *);
Florin Coras07063b82020-03-13 04:44:51 +0000157 transport_proto_vft_t *tp_vft;
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800158 u8 longest_match = 0, match;
Florin Coras07063b82020-03-13 04:44:51 +0000159 char *str, *str_match = 0;
160 transport_proto_t tp;
Florin Coras5bb23ec2019-08-31 09:45:13 -0700161
Florin Coras07063b82020-03-13 04:44:51 +0000162 for (tp = 0; tp < vec_len (tp_vfts); tp++)
163 {
164 tp_vft = &tp_vfts[tp];
165 str = tp_vft->transport_options.name;
166 if (!str)
167 continue;
168 if (unformat_transport_str_match (input, str))
169 {
170 match = strlen (str);
171 if (match > longest_match)
172 {
173 *proto = tp;
174 longest_match = match;
175 str_match = str;
176 }
177 }
Florin Coras5bb23ec2019-08-31 09:45:13 -0700178 }
Florin Coras07063b82020-03-13 04:44:51 +0000179 if (longest_match)
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800180 {
Dave Barach4897d772020-03-26 10:56:13 -0400181 (void) unformat (input, str_match);
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800182 return 1;
183 }
184
185 return 0;
Florin Coras1c710452017-10-17 00:03:13 -0700186}
Florin Coras3cbc04b2017-10-02 00:18:51 -0700187
Florin Coras07063b82020-03-13 04:44:51 +0000188u8 *
189format_transport_protos (u8 * s, va_list * args)
190{
191 transport_proto_vft_t *tp_vft;
192
193 vec_foreach (tp_vft, tp_vfts)
194 s = format (s, "%s\n", tp_vft->transport_options.name);
195
196 return s;
197}
198
Florin Coras3cbc04b2017-10-02 00:18:51 -0700199u32
200transport_endpoint_lookup (transport_endpoint_table_t * ht, u8 proto,
201 ip46_address_t * ip, u16 port)
202{
203 clib_bihash_kv_24_8_t kv;
204 int rv;
205
206 kv.key[0] = ip->as_u64[0];
207 kv.key[1] = ip->as_u64[1];
208 kv.key[2] = (u64) port << 8 | (u64) proto;
209
210 rv = clib_bihash_search_inline_24_8 (ht, &kv);
211 if (rv == 0)
212 return kv.value;
213
214 return ENDPOINT_INVALID_INDEX;
215}
216
217void
218transport_endpoint_table_add (transport_endpoint_table_t * ht, u8 proto,
219 transport_endpoint_t * te, u32 value)
220{
221 clib_bihash_kv_24_8_t kv;
222
223 kv.key[0] = te->ip.as_u64[0];
224 kv.key[1] = te->ip.as_u64[1];
225 kv.key[2] = (u64) te->port << 8 | (u64) proto;
226 kv.value = value;
227
228 clib_bihash_add_del_24_8 (ht, &kv, 1);
229}
230
231void
232transport_endpoint_table_del (transport_endpoint_table_t * ht, u8 proto,
233 transport_endpoint_t * te)
234{
235 clib_bihash_kv_24_8_t kv;
236
237 kv.key[0] = te->ip.as_u64[0];
238 kv.key[1] = te->ip.as_u64[1];
239 kv.key[2] = (u64) te->port << 8 | (u64) proto;
240
241 clib_bihash_add_del_24_8 (ht, &kv, 0);
242}
243
Florin Coras3cbc04b2017-10-02 00:18:51 -0700244void
Florin Coras561af9b2017-12-09 10:19:43 -0800245transport_register_protocol (transport_proto_t transport_proto,
246 const transport_proto_vft_t * vft,
247 fib_protocol_t fib_proto, u32 output_node)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700248{
Florin Coras561af9b2017-12-09 10:19:43 -0800249 u8 is_ip4 = fib_proto == FIB_PROTOCOL_IP4;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700250
Florin Coras561af9b2017-12-09 10:19:43 -0800251 vec_validate (tp_vfts, transport_proto);
252 tp_vfts[transport_proto] = *vft;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700253
Florin Coras561af9b2017-12-09 10:19:43 -0800254 session_register_transport (transport_proto, vft, is_ip4, output_node);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700255}
256
Florin Coras07063b82020-03-13 04:44:51 +0000257transport_proto_t
258transport_register_new_protocol (const transport_proto_vft_t * vft,
259 fib_protocol_t fib_proto, u32 output_node)
260{
261 transport_proto_t transport_proto;
262 u8 is_ip4;
263
264 transport_proto = session_add_transport_proto ();
265 is_ip4 = fib_proto == FIB_PROTOCOL_IP4;
266
267 vec_validate (tp_vfts, transport_proto);
268 tp_vfts[transport_proto] = *vft;
269
270 session_register_transport (transport_proto, vft, is_ip4, output_node);
271
272 return transport_proto;
273}
274
Florin Coras3cbc04b2017-10-02 00:18:51 -0700275/**
276 * Get transport virtual function table
277 *
278 * @param type - session type (not protocol type)
279 */
280transport_proto_vft_t *
Florin Coras561af9b2017-12-09 10:19:43 -0800281transport_protocol_get_vft (transport_proto_t transport_proto)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700282{
Florin Coras561af9b2017-12-09 10:19:43 -0800283 if (transport_proto >= vec_len (tp_vfts))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700284 return 0;
Florin Coras561af9b2017-12-09 10:19:43 -0800285 return &tp_vfts[transport_proto];
Florin Coras3cbc04b2017-10-02 00:18:51 -0700286}
287
Florin Coras7fb0fe12018-04-09 09:24:52 -0700288transport_service_type_t
289transport_protocol_service_type (transport_proto_t tp)
290{
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200291 return tp_vfts[tp].transport_options.service_type;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700292}
293
Florin Corasf08f26d2018-05-10 13:20:47 -0700294transport_tx_fn_type_t
295transport_protocol_tx_fn_type (transport_proto_t tp)
296{
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200297 return tp_vfts[tp].transport_options.tx_type;
Florin Corasf08f26d2018-05-10 13:20:47 -0700298}
299
Florin Coras1ee78302019-02-05 15:51:15 -0800300void
301transport_cleanup (transport_proto_t tp, u32 conn_index, u8 thread_index)
Florin Coras4edc37e2019-02-04 23:01:34 -0800302{
Florin Coras1ee78302019-02-05 15:51:15 -0800303 tp_vfts[tp].cleanup (conn_index, thread_index);
Florin Coras4edc37e2019-02-04 23:01:34 -0800304}
305
Florin Corasd50ff7f2020-04-16 04:30:22 +0000306void
307transport_cleanup_half_open (transport_proto_t tp, u32 conn_index)
308{
309 if (tp_vfts[tp].cleanup)
310 tp_vfts[tp].cleanup_ho (conn_index);
311}
312
Florin Coras1ee78302019-02-05 15:51:15 -0800313int
314transport_connect (transport_proto_t tp, transport_endpoint_cfg_t * tep)
Florin Coras4edc37e2019-02-04 23:01:34 -0800315{
Florin Coras1ee78302019-02-05 15:51:15 -0800316 return tp_vfts[tp].connect (tep);
317}
318
319void
320transport_close (transport_proto_t tp, u32 conn_index, u8 thread_index)
321{
322 tp_vfts[tp].close (conn_index, thread_index);
323}
324
Florin Corasdfb3b872019-08-16 17:48:44 -0700325void
326transport_reset (transport_proto_t tp, u32 conn_index, u8 thread_index)
327{
328 if (tp_vfts[tp].reset)
329 tp_vfts[tp].reset (conn_index, thread_index);
330 else
331 tp_vfts[tp].close (conn_index, thread_index);
332}
333
Florin Coras1ee78302019-02-05 15:51:15 -0800334u32
335transport_start_listen (transport_proto_t tp, u32 session_index,
336 transport_endpoint_t * tep)
337{
338 return tp_vfts[tp].start_listen (session_index, tep);
339}
340
341u32
342transport_stop_listen (transport_proto_t tp, u32 conn_index)
343{
344 return tp_vfts[tp].stop_listen (conn_index);
Florin Coras4edc37e2019-02-04 23:01:34 -0800345}
346
Florin Coras40903ac2018-06-10 14:41:23 -0700347u8
348transport_protocol_is_cl (transport_proto_t tp)
349{
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200350 return (tp_vfts[tp].transport_options.service_type == TRANSPORT_SERVICE_CL);
Florin Coras40903ac2018-06-10 14:41:23 -0700351}
352
Aloys Augustincdb71702019-04-08 17:54:39 +0200353always_inline void
354default_get_transport_endpoint (transport_connection_t * tc,
Florin Coras09d18c22019-04-24 11:10:02 -0700355 transport_endpoint_t * tep, u8 is_lcl)
Aloys Augustincdb71702019-04-08 17:54:39 +0200356{
357 if (is_lcl)
358 {
Florin Coras09d18c22019-04-24 11:10:02 -0700359 tep->port = tc->lcl_port;
360 tep->is_ip4 = tc->is_ip4;
361 clib_memcpy_fast (&tep->ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
Aloys Augustincdb71702019-04-08 17:54:39 +0200362 }
363 else
364 {
Florin Coras09d18c22019-04-24 11:10:02 -0700365 tep->port = tc->rmt_port;
366 tep->is_ip4 = tc->is_ip4;
367 clib_memcpy_fast (&tep->ip, &tc->rmt_ip, sizeof (tc->rmt_ip));
Aloys Augustincdb71702019-04-08 17:54:39 +0200368 }
369}
370
371void
372transport_get_endpoint (transport_proto_t tp, u32 conn_index,
Florin Coras09d18c22019-04-24 11:10:02 -0700373 u32 thread_index, transport_endpoint_t * tep,
374 u8 is_lcl)
Aloys Augustincdb71702019-04-08 17:54:39 +0200375{
376 if (tp_vfts[tp].get_transport_endpoint)
Florin Coras09d18c22019-04-24 11:10:02 -0700377 tp_vfts[tp].get_transport_endpoint (conn_index, thread_index, tep,
378 is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200379 else
380 {
381 transport_connection_t *tc;
382 tc = transport_get_connection (tp, conn_index, thread_index);
Florin Coras09d18c22019-04-24 11:10:02 -0700383 default_get_transport_endpoint (tc, tep, is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200384 }
385}
386
387void
388transport_get_listener_endpoint (transport_proto_t tp, u32 conn_index,
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 (tp_vfts[tp].get_transport_listener_endpoint)
Florin Coras09d18c22019-04-24 11:10:02 -0700392 tp_vfts[tp].get_transport_listener_endpoint (conn_index, tep, is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200393 else
394 {
395 transport_connection_t *tc;
396 tc = transport_get_listener (tp, conn_index);
Florin Coras09d18c22019-04-24 11:10:02 -0700397 default_get_transport_endpoint (tc, tep, is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200398 }
399}
400
Florin Coras3cbc04b2017-10-02 00:18:51 -0700401#define PORT_MASK ((1 << 16)- 1)
402
403void
404transport_endpoint_del (u32 tepi)
405{
406 clib_spinlock_lock_if_init (&local_endpoints_lock);
407 pool_put_index (local_endpoints, tepi);
408 clib_spinlock_unlock_if_init (&local_endpoints_lock);
409}
410
Florin Coras57660d92020-04-04 22:45:34 +0000411always_inline local_endpoint_t *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700412transport_endpoint_new (void)
413{
Florin Coras57660d92020-04-04 22:45:34 +0000414 local_endpoint_t *lep;
415 pool_get_zero (local_endpoints, lep);
416 return lep;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700417}
418
419void
420transport_endpoint_cleanup (u8 proto, ip46_address_t * lcl_ip, u16 port)
421{
Florin Coras57660d92020-04-04 22:45:34 +0000422 local_endpoint_t *lep;
423 u32 lepi;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700424
425 /* Cleanup local endpoint if this was an active connect */
Florin Coras57660d92020-04-04 22:45:34 +0000426 lepi = transport_endpoint_lookup (&local_endpoints_table, proto, lcl_ip,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700427 clib_net_to_host_u16 (port));
Florin Coras57660d92020-04-04 22:45:34 +0000428 if (lepi != ENDPOINT_INVALID_INDEX)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700429 {
Florin Coras57660d92020-04-04 22:45:34 +0000430 lep = pool_elt_at_index (local_endpoints, lepi);
431 if (!clib_atomic_sub_fetch (&lep->refcnt, 1))
432 {
433 transport_endpoint_table_del (&local_endpoints_table, proto,
434 &lep->ep);
435 transport_endpoint_del (lepi);
436 }
Florin Coras3cbc04b2017-10-02 00:18:51 -0700437 }
438}
439
Florin Coras5665ced2018-10-25 18:03:45 -0700440static void
441transport_endpoint_mark_used (u8 proto, ip46_address_t * ip, u16 port)
442{
Florin Coras57660d92020-04-04 22:45:34 +0000443 local_endpoint_t *lep;
Florin Coras5665ced2018-10-25 18:03:45 -0700444 clib_spinlock_lock_if_init (&local_endpoints_lock);
Florin Coras57660d92020-04-04 22:45:34 +0000445 lep = transport_endpoint_new ();
446 clib_memcpy_fast (&lep->ep.ip, ip, sizeof (*ip));
447 lep->ep.port = port;
448 lep->refcnt = 1;
449 transport_endpoint_table_add (&local_endpoints_table, proto, &lep->ep,
450 lep - local_endpoints);
Florin Coras5665ced2018-10-25 18:03:45 -0700451 clib_spinlock_unlock_if_init (&local_endpoints_lock);
452}
453
Florin Coras57660d92020-04-04 22:45:34 +0000454void
455transport_share_local_endpoint (u8 proto, ip46_address_t * lcl_ip, u16 port)
456{
457 local_endpoint_t *lep;
458 u32 lepi;
459
460 lepi = transport_endpoint_lookup (&local_endpoints_table, proto, lcl_ip,
461 clib_net_to_host_u16 (port));
462 if (lepi != ENDPOINT_INVALID_INDEX)
463 {
464 lep = pool_elt_at_index (local_endpoints, lepi);
465 clib_atomic_add_fetch (&lep->refcnt, 1);
466 }
467}
468
Florin Coras3cbc04b2017-10-02 00:18:51 -0700469/**
470 * Allocate local port and add if successful add entry to local endpoint
471 * table to mark the pair as used.
472 */
473int
474transport_alloc_local_port (u8 proto, ip46_address_t * ip)
475{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700476 u16 min = 1024, max = 65535; /* XXX configurable ? */
477 int tries, limit;
Florin Coras5665ced2018-10-25 18:03:45 -0700478 u32 tei;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700479
480 limit = max - min;
481
482 /* Only support active opens from thread 0 */
483 ASSERT (vlib_get_thread_index () == 0);
484
485 /* Search for first free slot */
486 for (tries = 0; tries < limit; tries++)
487 {
488 u16 port = 0;
489
490 /* Find a port in the specified range */
491 while (1)
492 {
493 port = random_u32 (&port_allocator_seed) & PORT_MASK;
494 if (PREDICT_TRUE (port >= min && port < max))
495 break;
496 }
497
498 /* Look it up. If not found, we're done */
499 tei = transport_endpoint_lookup (&local_endpoints_table, proto, ip,
500 port);
501 if (tei == ENDPOINT_INVALID_INDEX)
502 {
Florin Coras5665ced2018-10-25 18:03:45 -0700503 transport_endpoint_mark_used (proto, ip, port);
504 return port;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700505 }
506 }
507 return -1;
508}
509
Florin Coras00e01d32019-10-21 16:07:46 -0700510static session_error_t
Florin Coras5665ced2018-10-25 18:03:45 -0700511transport_get_interface_ip (u32 sw_if_index, u8 is_ip4, ip46_address_t * addr)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700512{
Florin Coras5665ced2018-10-25 18:03:45 -0700513 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700514 {
515 ip4_address_t *ip4;
516 ip4 = ip_interface_get_first_ip (sw_if_index, 1);
Florin Corasfc804d92018-01-26 01:27:01 -0800517 if (!ip4)
Florin Coras00e01d32019-10-21 16:07:46 -0700518 return SESSION_E_NOIP;
Florin Coras5665ced2018-10-25 18:03:45 -0700519 addr->ip4.as_u32 = ip4->as_u32;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700520 }
521 else
522 {
523 ip6_address_t *ip6;
524 ip6 = ip_interface_get_first_ip (sw_if_index, 0);
525 if (ip6 == 0)
Florin Coras00e01d32019-10-21 16:07:46 -0700526 return SESSION_E_NOIP;
Dave Barach178cf492018-11-13 16:34:13 -0500527 clib_memcpy_fast (&addr->ip6, ip6, sizeof (*ip6));
Florin Coras5665ced2018-10-25 18:03:45 -0700528 }
529 return 0;
530}
531
Florin Coras00e01d32019-10-21 16:07:46 -0700532static session_error_t
Florin Coras5665ced2018-10-25 18:03:45 -0700533transport_find_local_ip_for_remote (u32 sw_if_index,
534 transport_endpoint_t * rmt,
535 ip46_address_t * lcl_addr)
536{
537 fib_node_index_t fei;
538 fib_prefix_t prefix;
539
540 if (sw_if_index == ENDPOINT_INVALID_INDEX)
541 {
542 /* Find a FIB path to the destination */
Dave Barach178cf492018-11-13 16:34:13 -0500543 clib_memcpy_fast (&prefix.fp_addr, &rmt->ip, sizeof (rmt->ip));
Florin Coras5665ced2018-10-25 18:03:45 -0700544 prefix.fp_proto = rmt->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
545 prefix.fp_len = rmt->is_ip4 ? 32 : 128;
546
547 ASSERT (rmt->fib_index != ENDPOINT_INVALID_INDEX);
548 fei = fib_table_lookup (rmt->fib_index, &prefix);
549
550 /* Couldn't find route to destination. Bail out. */
551 if (fei == FIB_NODE_INDEX_INVALID)
Florin Coras00e01d32019-10-21 16:07:46 -0700552 return SESSION_E_NOROUTE;
Florin Coras5665ced2018-10-25 18:03:45 -0700553
554 sw_if_index = fib_entry_get_resolving_interface (fei);
555 if (sw_if_index == ENDPOINT_INVALID_INDEX)
Florin Coras00e01d32019-10-21 16:07:46 -0700556 return SESSION_E_NOINTF;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700557 }
558
Florin Coras5665ced2018-10-25 18:03:45 -0700559 clib_memset (lcl_addr, 0, sizeof (*lcl_addr));
560 return transport_get_interface_ip (sw_if_index, rmt->is_ip4, lcl_addr);
561}
562
563int
564transport_alloc_local_endpoint (u8 proto, transport_endpoint_cfg_t * rmt_cfg,
565 ip46_address_t * lcl_addr, u16 * lcl_port)
566{
567 transport_endpoint_t *rmt = (transport_endpoint_t *) rmt_cfg;
Florin Coras00e01d32019-10-21 16:07:46 -0700568 session_error_t error;
Florin Coras5665ced2018-10-25 18:03:45 -0700569 int port;
570 u32 tei;
571
572 /*
573 * Find the local address
574 */
575 if (ip_is_zero (&rmt_cfg->peer.ip, rmt_cfg->peer.is_ip4))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700576 {
Florin Coras5665ced2018-10-25 18:03:45 -0700577 error = transport_find_local_ip_for_remote (rmt_cfg->peer.sw_if_index,
578 rmt, lcl_addr);
579 if (error)
Florin Coras00e01d32019-10-21 16:07:46 -0700580 return error;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700581 }
Florin Coras5665ced2018-10-25 18:03:45 -0700582 else
583 {
584 /* Assume session layer vetted this address */
Dave Barach178cf492018-11-13 16:34:13 -0500585 clib_memcpy_fast (lcl_addr, &rmt_cfg->peer.ip,
586 sizeof (rmt_cfg->peer.ip));
Florin Coras5665ced2018-10-25 18:03:45 -0700587 }
588
589 /*
590 * Allocate source port
591 */
592 if (rmt_cfg->peer.port == 0)
593 {
594 port = transport_alloc_local_port (proto, lcl_addr);
595 if (port < 1)
Florin Coras00e01d32019-10-21 16:07:46 -0700596 return SESSION_E_NOPORT;
Florin Coras5665ced2018-10-25 18:03:45 -0700597 *lcl_port = port;
598 }
599 else
600 {
601 port = clib_net_to_host_u16 (rmt_cfg->peer.port);
Florin Coras57660d92020-04-04 22:45:34 +0000602 *lcl_port = port;
Florin Coras5665ced2018-10-25 18:03:45 -0700603 tei = transport_endpoint_lookup (&local_endpoints_table, proto,
604 lcl_addr, port);
605 if (tei != ENDPOINT_INVALID_INDEX)
Florin Coras00e01d32019-10-21 16:07:46 -0700606 return SESSION_E_PORTINUSE;
Florin Coras5665ced2018-10-25 18:03:45 -0700607
608 transport_endpoint_mark_used (proto, lcl_addr, port);
Florin Coras5665ced2018-10-25 18:03:45 -0700609 }
610
Florin Coras3cbc04b2017-10-02 00:18:51 -0700611 return 0;
612}
613
Florin Corasa8e71c82019-10-22 19:01:39 -0700614u8 *
615format_clib_us_time (u8 * s, va_list * args)
616{
617 clib_us_time_t t = va_arg (*args, clib_us_time_t);
618 if (t < 1e3)
619 s = format (s, "%u us", t);
620 else
621 s = format (s, "%.3f s", (f64) t * CLIB_US_TIME_PERIOD);
622 return s;
623}
Florin Corasd67f1122018-05-21 17:47:40 -0700624
625u8 *
626format_transport_pacer (u8 * s, va_list * args)
627{
628 spacer_t *pacer = va_arg (*args, spacer_t *);
Florin Corasa8e71c82019-10-22 19:01:39 -0700629 u32 thread_index = va_arg (*args, int);
630 clib_us_time_t now, diff;
Florin Corasd67f1122018-05-21 17:47:40 -0700631
Florin Corasa8e71c82019-10-22 19:01:39 -0700632 now = transport_us_time_now (thread_index);
633 diff = now - pacer->last_update;
Florin Coras11e9e352019-11-13 19:09:47 -0800634 s = format (s, "rate %lu bucket %lu t/p %.3f last_update %U idle %u",
Florin Corasbe237bf2019-09-27 08:16:40 -0700635 pacer->bytes_per_sec, pacer->bucket, pacer->tokens_per_period,
Florin Coras11e9e352019-11-13 19:09:47 -0800636 format_clib_us_time, diff, pacer->idle_timeout_us);
Florin Corasd67f1122018-05-21 17:47:40 -0700637 return s;
638}
639
640static inline u32
Florin Corasa8e71c82019-10-22 19:01:39 -0700641spacer_max_burst (spacer_t * pacer, clib_us_time_t time_now)
Florin Corasd67f1122018-05-21 17:47:40 -0700642{
Florin Corasa8e71c82019-10-22 19:01:39 -0700643 u64 n_periods = (time_now - pacer->last_update);
Florin Corase55a6d72018-10-31 23:09:22 -0700644 u64 inc;
Florin Corasd67f1122018-05-21 17:47:40 -0700645
Florin Coras11e9e352019-11-13 19:09:47 -0800646 if (PREDICT_FALSE (n_periods > pacer->idle_timeout_us))
Florin Corasc31dc312019-10-06 14:06:14 -0700647 {
Florin Corasa8e71c82019-10-22 19:01:39 -0700648 pacer->last_update = time_now;
Florin Corasc31dc312019-10-06 14:06:14 -0700649 pacer->bucket = TRANSPORT_PACER_MIN_BURST;
650 return TRANSPORT_PACER_MIN_BURST;
651 }
652
Florin Coras11e9e352019-11-13 19:09:47 -0800653 if ((inc = (f32) n_periods * pacer->tokens_per_period) > 10)
Florin Corase55a6d72018-10-31 23:09:22 -0700654 {
Florin Corasa8e71c82019-10-22 19:01:39 -0700655 pacer->last_update = time_now;
Florin Coras7c8f8282019-09-15 16:28:45 -0700656 pacer->bucket = clib_min (pacer->bucket + inc, pacer->bytes_per_sec);
Florin Corase55a6d72018-10-31 23:09:22 -0700657 }
658
Florin Coras6bc6fd02019-03-27 18:55:11 -0700659 return clib_min (pacer->bucket, TRANSPORT_PACER_MAX_BURST);
Florin Corasd67f1122018-05-21 17:47:40 -0700660}
661
662static inline void
663spacer_update_bucket (spacer_t * pacer, u32 bytes)
664{
665 ASSERT (pacer->bucket >= bytes);
666 pacer->bucket -= bytes;
667}
668
669static inline void
Florin Coras11e9e352019-11-13 19:09:47 -0800670spacer_set_pace_rate (spacer_t * pacer, u64 rate_bytes_per_sec,
671 clib_us_time_t rtt)
Florin Corasd67f1122018-05-21 17:47:40 -0700672{
673 ASSERT (rate_bytes_per_sec != 0);
Florin Coras7c8f8282019-09-15 16:28:45 -0700674 pacer->bytes_per_sec = rate_bytes_per_sec;
Florin Corasa8e71c82019-10-22 19:01:39 -0700675 pacer->tokens_per_period = rate_bytes_per_sec * CLIB_US_TIME_PERIOD;
Florin Coras11e9e352019-11-13 19:09:47 -0800676 pacer->idle_timeout_us = clib_max (rtt * TRANSPORT_PACER_IDLE_FACTOR,
677 TRANSPORT_PACER_MIN_IDLE);
Florin Corasd67f1122018-05-21 17:47:40 -0700678}
679
Florin Coras52814732019-06-12 15:38:19 -0700680static inline u64
681spacer_pace_rate (spacer_t * pacer)
682{
Florin Coras7c8f8282019-09-15 16:28:45 -0700683 return pacer->bytes_per_sec;
Florin Coras52814732019-06-12 15:38:19 -0700684}
685
Florin Coras36ebcff2019-09-12 18:36:44 -0700686static inline void
Florin Corasa8e71c82019-10-22 19:01:39 -0700687spacer_reset (spacer_t * pacer, clib_us_time_t time_now, u64 bucket)
Florin Coras36ebcff2019-09-12 18:36:44 -0700688{
Florin Corasa8e71c82019-10-22 19:01:39 -0700689 pacer->last_update = time_now;
690 pacer->bucket = bucket;
Florin Coras36ebcff2019-09-12 18:36:44 -0700691}
692
Florin Corasd67f1122018-05-21 17:47:40 -0700693void
Florin Corasc44a5582018-11-01 16:30:54 -0700694transport_connection_tx_pacer_reset (transport_connection_t * tc,
Florin Coras11e9e352019-11-13 19:09:47 -0800695 u64 rate_bytes_per_sec, u32 start_bucket,
696 clib_us_time_t rtt)
Florin Corasd67f1122018-05-21 17:47:40 -0700697{
Florin Coras11e9e352019-11-13 19:09:47 -0800698 spacer_set_pace_rate (&tc->pacer, rate_bytes_per_sec, rtt);
Florin Corasa8e71c82019-10-22 19:01:39 -0700699 spacer_reset (&tc->pacer, transport_us_time_now (tc->thread_index),
700 start_bucket);
701}
702
703void
Florin Coras11e9e352019-11-13 19:09:47 -0800704transport_connection_tx_pacer_reset_bucket (transport_connection_t * tc,
705 u32 bucket)
Florin Corasa8e71c82019-10-22 19:01:39 -0700706{
Florin Coras11e9e352019-11-13 19:09:47 -0800707 spacer_reset (&tc->pacer, transport_us_time_now (tc->thread_index), bucket);
Florin Corasc44a5582018-11-01 16:30:54 -0700708}
709
710void
711transport_connection_tx_pacer_init (transport_connection_t * tc,
Florin Corasa8e71c82019-10-22 19:01:39 -0700712 u64 rate_bytes_per_sec,
Florin Corasc44a5582018-11-01 16:30:54 -0700713 u32 initial_bucket)
714{
Florin Corasc44a5582018-11-01 16:30:54 -0700715 tc->flags |= TRANSPORT_CONNECTION_F_IS_TX_PACED;
716 transport_connection_tx_pacer_reset (tc, rate_bytes_per_sec,
Florin Coras11e9e352019-11-13 19:09:47 -0800717 initial_bucket, 1e6);
Florin Corasd67f1122018-05-21 17:47:40 -0700718}
719
720void
721transport_connection_tx_pacer_update (transport_connection_t * tc,
Florin Coras11e9e352019-11-13 19:09:47 -0800722 u64 bytes_per_sec, clib_us_time_t rtt)
Florin Corasd67f1122018-05-21 17:47:40 -0700723{
Florin Coras11e9e352019-11-13 19:09:47 -0800724 spacer_set_pace_rate (&tc->pacer, bytes_per_sec, rtt);
Florin Corasd67f1122018-05-21 17:47:40 -0700725}
726
727u32
Florin Corasa8e71c82019-10-22 19:01:39 -0700728transport_connection_tx_pacer_burst (transport_connection_t * tc)
Florin Corase55a6d72018-10-31 23:09:22 -0700729{
Florin Corasa8e71c82019-10-22 19:01:39 -0700730 return spacer_max_burst (&tc->pacer,
731 transport_us_time_now (tc->thread_index));
Florin Coras36ebcff2019-09-12 18:36:44 -0700732}
733
Florin Coras52814732019-06-12 15:38:19 -0700734u64
735transport_connection_tx_pacer_rate (transport_connection_t * tc)
736{
737 return spacer_pace_rate (&tc->pacer);
738}
739
Florin Corasd67f1122018-05-21 17:47:40 -0700740void
Florin Coras00482232019-08-02 12:52:00 -0700741transport_connection_update_tx_bytes (transport_connection_t * tc, u32 bytes)
Florin Corasd67f1122018-05-21 17:47:40 -0700742{
Florin Corasd67f1122018-05-21 17:47:40 -0700743 if (transport_connection_is_tx_paced (tc))
744 spacer_update_bucket (&tc->pacer, bytes);
745}
746
747void
Florin Corase55a6d72018-10-31 23:09:22 -0700748transport_connection_tx_pacer_update_bytes (transport_connection_t * tc,
749 u32 bytes)
750{
751 spacer_update_bucket (&tc->pacer, bytes);
752}
753
754void
Florin Coras70f879d2020-03-13 17:54:42 +0000755transport_connection_reschedule (transport_connection_t * tc)
756{
757 tc->flags &= ~TRANSPORT_CONNECTION_F_DESCHED;
Florin Coras6080e0d2020-03-13 20:39:43 +0000758 transport_connection_tx_pacer_reset_bucket (tc, TRANSPORT_PACER_MIN_BURST);
Florin Coras70f879d2020-03-13 17:54:42 +0000759 if (transport_max_tx_dequeue (tc))
760 sesssion_reschedule_tx (tc);
761 else
762 {
763 session_t *s = session_get (tc->s_index, tc->thread_index);
764 svm_fifo_unset_event (s->tx_fifo);
765 if (svm_fifo_max_dequeue_cons (s->tx_fifo))
766 if (svm_fifo_set_event (s->tx_fifo))
767 sesssion_reschedule_tx (tc);
768 }
769}
770
771void
Florin Corasa8e71c82019-10-22 19:01:39 -0700772transport_update_time (clib_time_type_t time_now, u8 thread_index)
Florin Coras561af9b2017-12-09 10:19:43 -0800773{
774 transport_proto_vft_t *vft;
775 vec_foreach (vft, tp_vfts)
776 {
777 if (vft->update_time)
778 (vft->update_time) (time_now, thread_index);
779 }
780}
781
782void
783transport_enable_disable (vlib_main_t * vm, u8 is_en)
784{
785 transport_proto_vft_t *vft;
786 vec_foreach (vft, tp_vfts)
787 {
788 if (vft->enable)
789 (vft->enable) (vm, is_en);
790 }
791}
792
793void
Florin Coras3cbc04b2017-10-02 00:18:51 -0700794transport_init (void)
795{
796 vlib_thread_main_t *vtm = vlib_get_thread_main ();
Florin Coras31c99552019-03-01 13:00:58 -0800797 session_main_t *smm = vnet_get_session_main ();
Florin Coras3cbc04b2017-10-02 00:18:51 -0700798 u32 num_threads;
799
Florin Coras93e65802017-11-29 00:07:11 -0500800 if (smm->local_endpoints_table_buckets == 0)
801 smm->local_endpoints_table_buckets = 250000;
802 if (smm->local_endpoints_table_memory == 0)
803 smm->local_endpoints_table_memory = 512 << 20;
804
Florin Coras3cbc04b2017-10-02 00:18:51 -0700805 /* Initialize [port-allocator] random number seed */
806 port_allocator_seed = (u32) clib_cpu_time_now ();
807
808 clib_bihash_init_24_8 (&local_endpoints_table, "local endpoints table",
Florin Coras93e65802017-11-29 00:07:11 -0500809 smm->local_endpoints_table_buckets,
810 smm->local_endpoints_table_memory);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700811 num_threads = 1 /* main thread */ + vtm->n_threads;
812 if (num_threads > 1)
813 clib_spinlock_init (&local_endpoints_lock);
814}
815
816/*
817 * fd.io coding-style-patch-verification: ON
818 *
819 * Local Variables:
820 * eval: (c-set-style "gnu")
821 * End:
822 */