blob: a420dcdee93aa4abded8384803ffbb91273f8f87 [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);
Florin Coras36d49392020-04-24 23:00:11 +000097 if (tc && verbose > 1)
Florin Corasde9a8492018-10-24 22:18:58 -070098 {
99 indent = format_get_indent (s) + 1;
Florin Coras36d49392020-04-24 23:00:11 +0000100 if (transport_connection_is_tx_paced (tc))
101 s = format (s, "%Upacer: %U\n", format_white_space, indent,
102 format_transport_pacer, &tc->pacer, tc->thread_index);
Florin Coras70f879d2020-03-13 17:54:42 +0000103 s = format (s, "%Utransport: flags 0x%x\n", format_white_space, indent,
104 tc->flags);
Florin Corasde9a8492018-10-24 22:18:58 -0700105 }
106 return s;
107}
108
109u8 *
110format_transport_listen_connection (u8 * s, va_list * args)
111{
112 u32 transport_proto = va_arg (*args, u32);
Florin Corasde9a8492018-10-24 22:18:58 -0700113 transport_proto_vft_t *tp_vft;
114
115 tp_vft = transport_protocol_get_vft (transport_proto);
116 if (!tp_vft)
117 return s;
118
Florin Coras3389dd22019-02-01 18:00:05 -0800119 s = (tp_vft->format_listener) (s, args);
Florin Corasde9a8492018-10-24 22:18:58 -0700120 return s;
121}
122
123u8 *
124format_transport_half_open_connection (u8 * s, va_list * args)
125{
126 u32 transport_proto = va_arg (*args, u32);
127 u32 listen_index = va_arg (*args, u32);
128 transport_proto_vft_t *tp_vft;
129
130 tp_vft = transport_protocol_get_vft (transport_proto);
131 if (!tp_vft)
132 return s;
133
134 s = format (s, "%U", tp_vft->format_half_open, listen_index);
135 return s;
136}
137
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800138static u8
139unformat_transport_str_match (unformat_input_t * input, const char *str)
140{
141 int i;
142
143 if (strlen (str) > vec_len (input->buffer) - input->index)
144 return 0;
145
146 for (i = 0; i < strlen (str); i++)
147 {
148 if (input->buffer[i + input->index] != str[i])
149 return 0;
150 }
151 return 1;
152}
153
Florin Coras1c710452017-10-17 00:03:13 -0700154uword
155unformat_transport_proto (unformat_input_t * input, va_list * args)
156{
157 u32 *proto = va_arg (*args, u32 *);
Florin Coras07063b82020-03-13 04:44:51 +0000158 transport_proto_vft_t *tp_vft;
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800159 u8 longest_match = 0, match;
Florin Coras07063b82020-03-13 04:44:51 +0000160 char *str, *str_match = 0;
161 transport_proto_t tp;
Florin Coras5bb23ec2019-08-31 09:45:13 -0700162
Florin Coras07063b82020-03-13 04:44:51 +0000163 for (tp = 0; tp < vec_len (tp_vfts); tp++)
164 {
165 tp_vft = &tp_vfts[tp];
166 str = tp_vft->transport_options.name;
167 if (!str)
168 continue;
169 if (unformat_transport_str_match (input, str))
170 {
171 match = strlen (str);
172 if (match > longest_match)
173 {
174 *proto = tp;
175 longest_match = match;
176 str_match = str;
177 }
178 }
Florin Coras5bb23ec2019-08-31 09:45:13 -0700179 }
Florin Coras07063b82020-03-13 04:44:51 +0000180 if (longest_match)
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800181 {
Dave Barach4897d772020-03-26 10:56:13 -0400182 (void) unformat (input, str_match);
Florin Coras3bbbf0d2019-11-19 17:23:22 -0800183 return 1;
184 }
185
186 return 0;
Florin Coras1c710452017-10-17 00:03:13 -0700187}
Florin Coras3cbc04b2017-10-02 00:18:51 -0700188
Florin Coras07063b82020-03-13 04:44:51 +0000189u8 *
190format_transport_protos (u8 * s, va_list * args)
191{
192 transport_proto_vft_t *tp_vft;
193
194 vec_foreach (tp_vft, tp_vfts)
195 s = format (s, "%s\n", tp_vft->transport_options.name);
196
197 return s;
198}
199
Florin Coras3cbc04b2017-10-02 00:18:51 -0700200u32
201transport_endpoint_lookup (transport_endpoint_table_t * ht, u8 proto,
202 ip46_address_t * ip, u16 port)
203{
204 clib_bihash_kv_24_8_t kv;
205 int rv;
206
207 kv.key[0] = ip->as_u64[0];
208 kv.key[1] = ip->as_u64[1];
209 kv.key[2] = (u64) port << 8 | (u64) proto;
210
211 rv = clib_bihash_search_inline_24_8 (ht, &kv);
212 if (rv == 0)
213 return kv.value;
214
215 return ENDPOINT_INVALID_INDEX;
216}
217
218void
219transport_endpoint_table_add (transport_endpoint_table_t * ht, u8 proto,
220 transport_endpoint_t * te, u32 value)
221{
222 clib_bihash_kv_24_8_t kv;
223
224 kv.key[0] = te->ip.as_u64[0];
225 kv.key[1] = te->ip.as_u64[1];
226 kv.key[2] = (u64) te->port << 8 | (u64) proto;
227 kv.value = value;
228
229 clib_bihash_add_del_24_8 (ht, &kv, 1);
230}
231
232void
233transport_endpoint_table_del (transport_endpoint_table_t * ht, u8 proto,
234 transport_endpoint_t * te)
235{
236 clib_bihash_kv_24_8_t kv;
237
238 kv.key[0] = te->ip.as_u64[0];
239 kv.key[1] = te->ip.as_u64[1];
240 kv.key[2] = (u64) te->port << 8 | (u64) proto;
241
242 clib_bihash_add_del_24_8 (ht, &kv, 0);
243}
244
Florin Coras3cbc04b2017-10-02 00:18:51 -0700245void
Florin Coras561af9b2017-12-09 10:19:43 -0800246transport_register_protocol (transport_proto_t transport_proto,
247 const transport_proto_vft_t * vft,
248 fib_protocol_t fib_proto, u32 output_node)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700249{
Florin Coras561af9b2017-12-09 10:19:43 -0800250 u8 is_ip4 = fib_proto == FIB_PROTOCOL_IP4;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700251
Florin Coras561af9b2017-12-09 10:19:43 -0800252 vec_validate (tp_vfts, transport_proto);
253 tp_vfts[transport_proto] = *vft;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700254
Florin Coras561af9b2017-12-09 10:19:43 -0800255 session_register_transport (transport_proto, vft, is_ip4, output_node);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700256}
257
Florin Coras07063b82020-03-13 04:44:51 +0000258transport_proto_t
259transport_register_new_protocol (const transport_proto_vft_t * vft,
260 fib_protocol_t fib_proto, u32 output_node)
261{
262 transport_proto_t transport_proto;
263 u8 is_ip4;
264
265 transport_proto = session_add_transport_proto ();
266 is_ip4 = fib_proto == FIB_PROTOCOL_IP4;
267
268 vec_validate (tp_vfts, transport_proto);
269 tp_vfts[transport_proto] = *vft;
270
271 session_register_transport (transport_proto, vft, is_ip4, output_node);
272
273 return transport_proto;
274}
275
Florin Coras3cbc04b2017-10-02 00:18:51 -0700276/**
277 * Get transport virtual function table
278 *
279 * @param type - session type (not protocol type)
280 */
281transport_proto_vft_t *
Florin Coras561af9b2017-12-09 10:19:43 -0800282transport_protocol_get_vft (transport_proto_t transport_proto)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700283{
Florin Coras561af9b2017-12-09 10:19:43 -0800284 if (transport_proto >= vec_len (tp_vfts))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700285 return 0;
Florin Coras561af9b2017-12-09 10:19:43 -0800286 return &tp_vfts[transport_proto];
Florin Coras3cbc04b2017-10-02 00:18:51 -0700287}
288
Florin Coras7fb0fe12018-04-09 09:24:52 -0700289transport_service_type_t
290transport_protocol_service_type (transport_proto_t tp)
291{
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200292 return tp_vfts[tp].transport_options.service_type;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700293}
294
Florin Corasf08f26d2018-05-10 13:20:47 -0700295transport_tx_fn_type_t
296transport_protocol_tx_fn_type (transport_proto_t tp)
297{
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200298 return tp_vfts[tp].transport_options.tx_type;
Florin Corasf08f26d2018-05-10 13:20:47 -0700299}
300
Florin Coras1ee78302019-02-05 15:51:15 -0800301void
302transport_cleanup (transport_proto_t tp, u32 conn_index, u8 thread_index)
Florin Coras4edc37e2019-02-04 23:01:34 -0800303{
Florin Coras1ee78302019-02-05 15:51:15 -0800304 tp_vfts[tp].cleanup (conn_index, thread_index);
Florin Coras4edc37e2019-02-04 23:01:34 -0800305}
306
Florin Corasd50ff7f2020-04-16 04:30:22 +0000307void
308transport_cleanup_half_open (transport_proto_t tp, u32 conn_index)
309{
310 if (tp_vfts[tp].cleanup)
311 tp_vfts[tp].cleanup_ho (conn_index);
312}
313
Florin Coras1ee78302019-02-05 15:51:15 -0800314int
315transport_connect (transport_proto_t tp, transport_endpoint_cfg_t * tep)
Florin Coras4edc37e2019-02-04 23:01:34 -0800316{
Florin Coras1ee78302019-02-05 15:51:15 -0800317 return tp_vfts[tp].connect (tep);
318}
319
320void
321transport_close (transport_proto_t tp, u32 conn_index, u8 thread_index)
322{
323 tp_vfts[tp].close (conn_index, thread_index);
324}
325
Florin Corasdfb3b872019-08-16 17:48:44 -0700326void
327transport_reset (transport_proto_t tp, u32 conn_index, u8 thread_index)
328{
329 if (tp_vfts[tp].reset)
330 tp_vfts[tp].reset (conn_index, thread_index);
331 else
332 tp_vfts[tp].close (conn_index, thread_index);
333}
334
Florin Coras1ee78302019-02-05 15:51:15 -0800335u32
336transport_start_listen (transport_proto_t tp, u32 session_index,
337 transport_endpoint_t * tep)
338{
339 return tp_vfts[tp].start_listen (session_index, tep);
340}
341
342u32
343transport_stop_listen (transport_proto_t tp, u32 conn_index)
344{
345 return tp_vfts[tp].stop_listen (conn_index);
Florin Coras4edc37e2019-02-04 23:01:34 -0800346}
347
Florin Coras40903ac2018-06-10 14:41:23 -0700348u8
349transport_protocol_is_cl (transport_proto_t tp)
350{
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200351 return (tp_vfts[tp].transport_options.service_type == TRANSPORT_SERVICE_CL);
Florin Coras40903ac2018-06-10 14:41:23 -0700352}
353
Aloys Augustincdb71702019-04-08 17:54:39 +0200354always_inline void
355default_get_transport_endpoint (transport_connection_t * tc,
Florin Coras09d18c22019-04-24 11:10:02 -0700356 transport_endpoint_t * tep, u8 is_lcl)
Aloys Augustincdb71702019-04-08 17:54:39 +0200357{
358 if (is_lcl)
359 {
Florin Coras09d18c22019-04-24 11:10:02 -0700360 tep->port = tc->lcl_port;
361 tep->is_ip4 = tc->is_ip4;
362 clib_memcpy_fast (&tep->ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
Aloys Augustincdb71702019-04-08 17:54:39 +0200363 }
364 else
365 {
Florin Coras09d18c22019-04-24 11:10:02 -0700366 tep->port = tc->rmt_port;
367 tep->is_ip4 = tc->is_ip4;
368 clib_memcpy_fast (&tep->ip, &tc->rmt_ip, sizeof (tc->rmt_ip));
Aloys Augustincdb71702019-04-08 17:54:39 +0200369 }
370}
371
372void
373transport_get_endpoint (transport_proto_t tp, u32 conn_index,
Florin Coras09d18c22019-04-24 11:10:02 -0700374 u32 thread_index, transport_endpoint_t * tep,
375 u8 is_lcl)
Aloys Augustincdb71702019-04-08 17:54:39 +0200376{
377 if (tp_vfts[tp].get_transport_endpoint)
Florin Coras09d18c22019-04-24 11:10:02 -0700378 tp_vfts[tp].get_transport_endpoint (conn_index, thread_index, tep,
379 is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200380 else
381 {
382 transport_connection_t *tc;
383 tc = transport_get_connection (tp, conn_index, thread_index);
Florin Coras09d18c22019-04-24 11:10:02 -0700384 default_get_transport_endpoint (tc, tep, is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200385 }
386}
387
388void
389transport_get_listener_endpoint (transport_proto_t tp, u32 conn_index,
Florin Coras09d18c22019-04-24 11:10:02 -0700390 transport_endpoint_t * tep, u8 is_lcl)
Aloys Augustincdb71702019-04-08 17:54:39 +0200391{
392 if (tp_vfts[tp].get_transport_listener_endpoint)
Florin Coras09d18c22019-04-24 11:10:02 -0700393 tp_vfts[tp].get_transport_listener_endpoint (conn_index, tep, is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200394 else
395 {
396 transport_connection_t *tc;
397 tc = transport_get_listener (tp, conn_index);
Florin Coras09d18c22019-04-24 11:10:02 -0700398 default_get_transport_endpoint (tc, tep, is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200399 }
400}
401
Florin Coras04ae8272021-04-12 19:55:37 -0700402int
403transport_connection_attribute (transport_proto_t tp, u32 conn_index,
404 u8 thread_index, u8 is_get,
405 transport_endpt_attr_t *attr)
406{
407 if (!tp_vfts[tp].attribute)
408 return -1;
409
410 return tp_vfts[tp].attribute (conn_index, thread_index, is_get, attr);
411}
412
Florin Coras3cbc04b2017-10-02 00:18:51 -0700413#define PORT_MASK ((1 << 16)- 1)
414
415void
416transport_endpoint_del (u32 tepi)
417{
418 clib_spinlock_lock_if_init (&local_endpoints_lock);
419 pool_put_index (local_endpoints, tepi);
420 clib_spinlock_unlock_if_init (&local_endpoints_lock);
421}
422
Florin Coras57660d92020-04-04 22:45:34 +0000423always_inline local_endpoint_t *
Florin Coras3cbc04b2017-10-02 00:18:51 -0700424transport_endpoint_new (void)
425{
Florin Coras57660d92020-04-04 22:45:34 +0000426 local_endpoint_t *lep;
427 pool_get_zero (local_endpoints, lep);
428 return lep;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700429}
430
431void
432transport_endpoint_cleanup (u8 proto, ip46_address_t * lcl_ip, u16 port)
433{
Florin Coras57660d92020-04-04 22:45:34 +0000434 local_endpoint_t *lep;
435 u32 lepi;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700436
437 /* Cleanup local endpoint if this was an active connect */
Florin Coras57660d92020-04-04 22:45:34 +0000438 lepi = transport_endpoint_lookup (&local_endpoints_table, proto, lcl_ip,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700439 clib_net_to_host_u16 (port));
Florin Coras57660d92020-04-04 22:45:34 +0000440 if (lepi != ENDPOINT_INVALID_INDEX)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700441 {
Florin Coras57660d92020-04-04 22:45:34 +0000442 lep = pool_elt_at_index (local_endpoints, lepi);
443 if (!clib_atomic_sub_fetch (&lep->refcnt, 1))
444 {
445 transport_endpoint_table_del (&local_endpoints_table, proto,
446 &lep->ep);
447 transport_endpoint_del (lepi);
448 }
Florin Coras3cbc04b2017-10-02 00:18:51 -0700449 }
450}
451
Florin Coras5665ced2018-10-25 18:03:45 -0700452static void
453transport_endpoint_mark_used (u8 proto, ip46_address_t * ip, u16 port)
454{
Florin Coras57660d92020-04-04 22:45:34 +0000455 local_endpoint_t *lep;
Florin Coras5665ced2018-10-25 18:03:45 -0700456 clib_spinlock_lock_if_init (&local_endpoints_lock);
Florin Coras57660d92020-04-04 22:45:34 +0000457 lep = transport_endpoint_new ();
458 clib_memcpy_fast (&lep->ep.ip, ip, sizeof (*ip));
459 lep->ep.port = port;
460 lep->refcnt = 1;
461 transport_endpoint_table_add (&local_endpoints_table, proto, &lep->ep,
462 lep - local_endpoints);
Florin Coras5665ced2018-10-25 18:03:45 -0700463 clib_spinlock_unlock_if_init (&local_endpoints_lock);
464}
465
Florin Coras57660d92020-04-04 22:45:34 +0000466void
467transport_share_local_endpoint (u8 proto, ip46_address_t * lcl_ip, u16 port)
468{
469 local_endpoint_t *lep;
470 u32 lepi;
471
472 lepi = transport_endpoint_lookup (&local_endpoints_table, proto, lcl_ip,
473 clib_net_to_host_u16 (port));
474 if (lepi != ENDPOINT_INVALID_INDEX)
475 {
476 lep = pool_elt_at_index (local_endpoints, lepi);
477 clib_atomic_add_fetch (&lep->refcnt, 1);
478 }
479}
480
Florin Coras3cbc04b2017-10-02 00:18:51 -0700481/**
482 * Allocate local port and add if successful add entry to local endpoint
483 * table to mark the pair as used.
484 */
485int
486transport_alloc_local_port (u8 proto, ip46_address_t * ip)
487{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700488 u16 min = 1024, max = 65535; /* XXX configurable ? */
489 int tries, limit;
Florin Coras5665ced2018-10-25 18:03:45 -0700490 u32 tei;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700491
492 limit = max - min;
493
494 /* Only support active opens from thread 0 */
495 ASSERT (vlib_get_thread_index () == 0);
496
497 /* Search for first free slot */
498 for (tries = 0; tries < limit; tries++)
499 {
500 u16 port = 0;
501
502 /* Find a port in the specified range */
503 while (1)
504 {
505 port = random_u32 (&port_allocator_seed) & PORT_MASK;
506 if (PREDICT_TRUE (port >= min && port < max))
507 break;
508 }
509
510 /* Look it up. If not found, we're done */
511 tei = transport_endpoint_lookup (&local_endpoints_table, proto, ip,
512 port);
513 if (tei == ENDPOINT_INVALID_INDEX)
514 {
Florin Coras5665ced2018-10-25 18:03:45 -0700515 transport_endpoint_mark_used (proto, ip, port);
516 return port;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700517 }
518 }
519 return -1;
520}
521
Florin Coras00e01d32019-10-21 16:07:46 -0700522static session_error_t
Florin Coras5665ced2018-10-25 18:03:45 -0700523transport_get_interface_ip (u32 sw_if_index, u8 is_ip4, ip46_address_t * addr)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700524{
Florin Coras5665ced2018-10-25 18:03:45 -0700525 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700526 {
527 ip4_address_t *ip4;
528 ip4 = ip_interface_get_first_ip (sw_if_index, 1);
Florin Corasfc804d92018-01-26 01:27:01 -0800529 if (!ip4)
Florin Coras00e01d32019-10-21 16:07:46 -0700530 return SESSION_E_NOIP;
Florin Coras5665ced2018-10-25 18:03:45 -0700531 addr->ip4.as_u32 = ip4->as_u32;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700532 }
533 else
534 {
535 ip6_address_t *ip6;
536 ip6 = ip_interface_get_first_ip (sw_if_index, 0);
537 if (ip6 == 0)
Florin Coras00e01d32019-10-21 16:07:46 -0700538 return SESSION_E_NOIP;
Dave Barach178cf492018-11-13 16:34:13 -0500539 clib_memcpy_fast (&addr->ip6, ip6, sizeof (*ip6));
Florin Coras5665ced2018-10-25 18:03:45 -0700540 }
541 return 0;
542}
543
Florin Coras00e01d32019-10-21 16:07:46 -0700544static session_error_t
Florin Coras5665ced2018-10-25 18:03:45 -0700545transport_find_local_ip_for_remote (u32 sw_if_index,
546 transport_endpoint_t * rmt,
547 ip46_address_t * lcl_addr)
548{
549 fib_node_index_t fei;
550 fib_prefix_t prefix;
551
552 if (sw_if_index == ENDPOINT_INVALID_INDEX)
553 {
554 /* Find a FIB path to the destination */
Dave Barach178cf492018-11-13 16:34:13 -0500555 clib_memcpy_fast (&prefix.fp_addr, &rmt->ip, sizeof (rmt->ip));
Florin Coras5665ced2018-10-25 18:03:45 -0700556 prefix.fp_proto = rmt->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
557 prefix.fp_len = rmt->is_ip4 ? 32 : 128;
558
559 ASSERT (rmt->fib_index != ENDPOINT_INVALID_INDEX);
560 fei = fib_table_lookup (rmt->fib_index, &prefix);
561
562 /* Couldn't find route to destination. Bail out. */
563 if (fei == FIB_NODE_INDEX_INVALID)
Florin Coras00e01d32019-10-21 16:07:46 -0700564 return SESSION_E_NOROUTE;
Florin Coras5665ced2018-10-25 18:03:45 -0700565
566 sw_if_index = fib_entry_get_resolving_interface (fei);
567 if (sw_if_index == ENDPOINT_INVALID_INDEX)
Florin Coras00e01d32019-10-21 16:07:46 -0700568 return SESSION_E_NOINTF;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700569 }
570
Florin Coras5665ced2018-10-25 18:03:45 -0700571 clib_memset (lcl_addr, 0, sizeof (*lcl_addr));
572 return transport_get_interface_ip (sw_if_index, rmt->is_ip4, lcl_addr);
573}
574
575int
576transport_alloc_local_endpoint (u8 proto, transport_endpoint_cfg_t * rmt_cfg,
577 ip46_address_t * lcl_addr, u16 * lcl_port)
578{
579 transport_endpoint_t *rmt = (transport_endpoint_t *) rmt_cfg;
Florin Coras00e01d32019-10-21 16:07:46 -0700580 session_error_t error;
Florin Coras5665ced2018-10-25 18:03:45 -0700581 int port;
582 u32 tei;
583
584 /*
585 * Find the local address
586 */
587 if (ip_is_zero (&rmt_cfg->peer.ip, rmt_cfg->peer.is_ip4))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700588 {
Florin Coras5665ced2018-10-25 18:03:45 -0700589 error = transport_find_local_ip_for_remote (rmt_cfg->peer.sw_if_index,
590 rmt, lcl_addr);
591 if (error)
Florin Coras00e01d32019-10-21 16:07:46 -0700592 return error;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700593 }
Florin Coras5665ced2018-10-25 18:03:45 -0700594 else
595 {
596 /* Assume session layer vetted this address */
Dave Barach178cf492018-11-13 16:34:13 -0500597 clib_memcpy_fast (lcl_addr, &rmt_cfg->peer.ip,
598 sizeof (rmt_cfg->peer.ip));
Florin Coras5665ced2018-10-25 18:03:45 -0700599 }
600
601 /*
602 * Allocate source port
603 */
604 if (rmt_cfg->peer.port == 0)
605 {
606 port = transport_alloc_local_port (proto, lcl_addr);
607 if (port < 1)
Florin Coras00e01d32019-10-21 16:07:46 -0700608 return SESSION_E_NOPORT;
Florin Coras5665ced2018-10-25 18:03:45 -0700609 *lcl_port = port;
610 }
611 else
612 {
613 port = clib_net_to_host_u16 (rmt_cfg->peer.port);
Florin Coras57660d92020-04-04 22:45:34 +0000614 *lcl_port = port;
Florin Coras5665ced2018-10-25 18:03:45 -0700615 tei = transport_endpoint_lookup (&local_endpoints_table, proto,
616 lcl_addr, port);
617 if (tei != ENDPOINT_INVALID_INDEX)
Florin Coras00e01d32019-10-21 16:07:46 -0700618 return SESSION_E_PORTINUSE;
Florin Coras5665ced2018-10-25 18:03:45 -0700619
620 transport_endpoint_mark_used (proto, lcl_addr, port);
Florin Coras5665ced2018-10-25 18:03:45 -0700621 }
622
Florin Coras3cbc04b2017-10-02 00:18:51 -0700623 return 0;
624}
625
Florin Corasa8e71c82019-10-22 19:01:39 -0700626u8 *
627format_clib_us_time (u8 * s, va_list * args)
628{
629 clib_us_time_t t = va_arg (*args, clib_us_time_t);
630 if (t < 1e3)
631 s = format (s, "%u us", t);
632 else
633 s = format (s, "%.3f s", (f64) t * CLIB_US_TIME_PERIOD);
634 return s;
635}
Florin Corasd67f1122018-05-21 17:47:40 -0700636
637u8 *
638format_transport_pacer (u8 * s, va_list * args)
639{
640 spacer_t *pacer = va_arg (*args, spacer_t *);
Florin Corasa8e71c82019-10-22 19:01:39 -0700641 u32 thread_index = va_arg (*args, int);
642 clib_us_time_t now, diff;
Florin Corasd67f1122018-05-21 17:47:40 -0700643
Florin Corasa8e71c82019-10-22 19:01:39 -0700644 now = transport_us_time_now (thread_index);
645 diff = now - pacer->last_update;
Florin Corasa39f4722020-11-12 10:20:05 -0800646 s = format (s, "rate %lu bucket %ld t/p %.3f last_update %U burst %u",
Florin Corasbe237bf2019-09-27 08:16:40 -0700647 pacer->bytes_per_sec, pacer->bucket, pacer->tokens_per_period,
Florin Coras7808df22020-11-02 18:00:32 -0800648 format_clib_us_time, diff, pacer->max_burst);
Florin Corasd67f1122018-05-21 17:47:40 -0700649 return s;
650}
651
652static inline u32
Florin Corasa8e71c82019-10-22 19:01:39 -0700653spacer_max_burst (spacer_t * pacer, clib_us_time_t time_now)
Florin Corasd67f1122018-05-21 17:47:40 -0700654{
Florin Corasa8e71c82019-10-22 19:01:39 -0700655 u64 n_periods = (time_now - pacer->last_update);
Florin Corase55a6d72018-10-31 23:09:22 -0700656 u64 inc;
Florin Corasd67f1122018-05-21 17:47:40 -0700657
Florin Coras11e9e352019-11-13 19:09:47 -0800658 if ((inc = (f32) n_periods * pacer->tokens_per_period) > 10)
Florin Corase55a6d72018-10-31 23:09:22 -0700659 {
Florin Corasa8e71c82019-10-22 19:01:39 -0700660 pacer->last_update = time_now;
Florin Coras7808df22020-11-02 18:00:32 -0800661 pacer->bucket = clib_min (pacer->bucket + inc, pacer->max_burst);
Florin Corase55a6d72018-10-31 23:09:22 -0700662 }
663
Florin Coras7808df22020-11-02 18:00:32 -0800664 return pacer->bucket > 0 ? pacer->max_burst : 0;
Florin Corasd67f1122018-05-21 17:47:40 -0700665}
666
667static inline void
668spacer_update_bucket (spacer_t * pacer, u32 bytes)
669{
Florin Corasd67f1122018-05-21 17:47:40 -0700670 pacer->bucket -= bytes;
671}
672
673static inline void
Florin Coras11e9e352019-11-13 19:09:47 -0800674spacer_set_pace_rate (spacer_t * pacer, u64 rate_bytes_per_sec,
Florin Corasa39f4722020-11-12 10:20:05 -0800675 clib_us_time_t rtt, clib_time_type_t sec_per_loop)
Florin Corasd67f1122018-05-21 17:47:40 -0700676{
Florin Coras7808df22020-11-02 18:00:32 -0800677 clib_us_time_t max_time;
678
Florin Corasd67f1122018-05-21 17:47:40 -0700679 ASSERT (rate_bytes_per_sec != 0);
Florin Coras7c8f8282019-09-15 16:28:45 -0700680 pacer->bytes_per_sec = rate_bytes_per_sec;
Florin Corasa8e71c82019-10-22 19:01:39 -0700681 pacer->tokens_per_period = rate_bytes_per_sec * CLIB_US_TIME_PERIOD;
Florin Coras7808df22020-11-02 18:00:32 -0800682
683 /* Allow a min number of bursts per rtt, if their size is acceptable. Goal
684 * is to spread the sending of data over the rtt but to also allow for some
685 * coalescing that can potentially
686 * 1) reduce load on session layer by reducing scheduling frequency for a
687 * session and
688 * 2) optimize sending when tso if available
689 *
690 * Max "time-length" of a burst cannot be less than 1us or more than 1ms.
691 */
Florin Corasa39f4722020-11-12 10:20:05 -0800692 max_time = clib_max (rtt / TRANSPORT_PACER_BURSTS_PER_RTT,
693 (clib_us_time_t) (sec_per_loop * CLIB_US_TIME_FREQ));
Florin Coras7808df22020-11-02 18:00:32 -0800694 max_time = clib_clamp (max_time, 1 /* 1us */ , 1000 /* 1ms */ );
695 pacer->max_burst = (rate_bytes_per_sec * max_time) * CLIB_US_TIME_PERIOD;
696 pacer->max_burst = clib_clamp (pacer->max_burst, TRANSPORT_PACER_MIN_BURST,
697 TRANSPORT_PACER_MAX_BURST);
Florin Corasd67f1122018-05-21 17:47:40 -0700698}
699
Florin Coras52814732019-06-12 15:38:19 -0700700static inline u64
701spacer_pace_rate (spacer_t * pacer)
702{
Florin Coras7c8f8282019-09-15 16:28:45 -0700703 return pacer->bytes_per_sec;
Florin Coras52814732019-06-12 15:38:19 -0700704}
705
Florin Coras36ebcff2019-09-12 18:36:44 -0700706static inline void
Florin Corasa8e71c82019-10-22 19:01:39 -0700707spacer_reset (spacer_t * pacer, clib_us_time_t time_now, u64 bucket)
Florin Coras36ebcff2019-09-12 18:36:44 -0700708{
Florin Corasa8e71c82019-10-22 19:01:39 -0700709 pacer->last_update = time_now;
710 pacer->bucket = bucket;
Florin Coras36ebcff2019-09-12 18:36:44 -0700711}
712
Florin Corasd67f1122018-05-21 17:47:40 -0700713void
Florin Corasc44a5582018-11-01 16:30:54 -0700714transport_connection_tx_pacer_reset (transport_connection_t * tc,
Florin Coras11e9e352019-11-13 19:09:47 -0800715 u64 rate_bytes_per_sec, u32 start_bucket,
716 clib_us_time_t rtt)
Florin Corasd67f1122018-05-21 17:47:40 -0700717{
Florin Corasa39f4722020-11-12 10:20:05 -0800718 spacer_set_pace_rate (&tc->pacer, rate_bytes_per_sec, rtt,
719 transport_seconds_per_loop (tc->thread_index));
Florin Corasa8e71c82019-10-22 19:01:39 -0700720 spacer_reset (&tc->pacer, transport_us_time_now (tc->thread_index),
721 start_bucket);
722}
723
724void
Florin Coras11e9e352019-11-13 19:09:47 -0800725transport_connection_tx_pacer_reset_bucket (transport_connection_t * tc,
726 u32 bucket)
Florin Corasa8e71c82019-10-22 19:01:39 -0700727{
Florin Coras11e9e352019-11-13 19:09:47 -0800728 spacer_reset (&tc->pacer, transport_us_time_now (tc->thread_index), bucket);
Florin Corasc44a5582018-11-01 16:30:54 -0700729}
730
731void
732transport_connection_tx_pacer_init (transport_connection_t * tc,
Florin Corasa8e71c82019-10-22 19:01:39 -0700733 u64 rate_bytes_per_sec,
Florin Corasc44a5582018-11-01 16:30:54 -0700734 u32 initial_bucket)
735{
Florin Corasc44a5582018-11-01 16:30:54 -0700736 tc->flags |= TRANSPORT_CONNECTION_F_IS_TX_PACED;
737 transport_connection_tx_pacer_reset (tc, rate_bytes_per_sec,
Florin Coras11e9e352019-11-13 19:09:47 -0800738 initial_bucket, 1e6);
Florin Corasd67f1122018-05-21 17:47:40 -0700739}
740
741void
742transport_connection_tx_pacer_update (transport_connection_t * tc,
Florin Coras11e9e352019-11-13 19:09:47 -0800743 u64 bytes_per_sec, clib_us_time_t rtt)
Florin Corasd67f1122018-05-21 17:47:40 -0700744{
Florin Corasa39f4722020-11-12 10:20:05 -0800745 spacer_set_pace_rate (&tc->pacer, bytes_per_sec, rtt,
746 transport_seconds_per_loop (tc->thread_index));
Florin Corasd67f1122018-05-21 17:47:40 -0700747}
748
749u32
Florin Corasa8e71c82019-10-22 19:01:39 -0700750transport_connection_tx_pacer_burst (transport_connection_t * tc)
Florin Corase55a6d72018-10-31 23:09:22 -0700751{
Florin Corasa8e71c82019-10-22 19:01:39 -0700752 return spacer_max_burst (&tc->pacer,
753 transport_us_time_now (tc->thread_index));
Florin Coras36ebcff2019-09-12 18:36:44 -0700754}
755
Florin Coras52814732019-06-12 15:38:19 -0700756u64
757transport_connection_tx_pacer_rate (transport_connection_t * tc)
758{
759 return spacer_pace_rate (&tc->pacer);
760}
761
Florin Corasd67f1122018-05-21 17:47:40 -0700762void
Florin Coras00482232019-08-02 12:52:00 -0700763transport_connection_update_tx_bytes (transport_connection_t * tc, u32 bytes)
Florin Corasd67f1122018-05-21 17:47:40 -0700764{
Florin Corasd67f1122018-05-21 17:47:40 -0700765 if (transport_connection_is_tx_paced (tc))
766 spacer_update_bucket (&tc->pacer, bytes);
767}
768
769void
Florin Corase55a6d72018-10-31 23:09:22 -0700770transport_connection_tx_pacer_update_bytes (transport_connection_t * tc,
771 u32 bytes)
772{
773 spacer_update_bucket (&tc->pacer, bytes);
774}
775
776void
Florin Coras8f10b902021-04-02 18:32:00 -0700777transport_update_pacer_time (u32 thread_index, clib_time_type_t now)
778{
779 session_wrk_update_time (session_main_get_worker (thread_index), now);
780}
781
782void
Florin Coras70f879d2020-03-13 17:54:42 +0000783transport_connection_reschedule (transport_connection_t * tc)
784{
785 tc->flags &= ~TRANSPORT_CONNECTION_F_DESCHED;
Florin Coras6080e0d2020-03-13 20:39:43 +0000786 transport_connection_tx_pacer_reset_bucket (tc, TRANSPORT_PACER_MIN_BURST);
Florin Coras70f879d2020-03-13 17:54:42 +0000787 if (transport_max_tx_dequeue (tc))
788 sesssion_reschedule_tx (tc);
789 else
790 {
791 session_t *s = session_get (tc->s_index, tc->thread_index);
792 svm_fifo_unset_event (s->tx_fifo);
793 if (svm_fifo_max_dequeue_cons (s->tx_fifo))
794 if (svm_fifo_set_event (s->tx_fifo))
795 sesssion_reschedule_tx (tc);
796 }
797}
798
799void
Florin Coras8c4fa012020-11-06 16:59:08 -0800800transport_fifos_init_ooo (transport_connection_t * tc)
801{
802 session_t *s = session_get (tc->s_index, tc->thread_index);
803 svm_fifo_init_ooo_lookup (s->rx_fifo, 0 /* ooo enq */ );
804 svm_fifo_init_ooo_lookup (s->tx_fifo, 1 /* ooo deq */ );
805}
806
807void
Florin Corasa8e71c82019-10-22 19:01:39 -0700808transport_update_time (clib_time_type_t time_now, u8 thread_index)
Florin Coras561af9b2017-12-09 10:19:43 -0800809{
810 transport_proto_vft_t *vft;
811 vec_foreach (vft, tp_vfts)
812 {
813 if (vft->update_time)
814 (vft->update_time) (time_now, thread_index);
815 }
816}
817
818void
819transport_enable_disable (vlib_main_t * vm, u8 is_en)
820{
821 transport_proto_vft_t *vft;
822 vec_foreach (vft, tp_vfts)
823 {
824 if (vft->enable)
825 (vft->enable) (vm, is_en);
826 }
827}
828
829void
Florin Coras3cbc04b2017-10-02 00:18:51 -0700830transport_init (void)
831{
832 vlib_thread_main_t *vtm = vlib_get_thread_main ();
Florin Coras31c99552019-03-01 13:00:58 -0800833 session_main_t *smm = vnet_get_session_main ();
Florin Coras3cbc04b2017-10-02 00:18:51 -0700834 u32 num_threads;
835
Florin Coras93e65802017-11-29 00:07:11 -0500836 if (smm->local_endpoints_table_buckets == 0)
837 smm->local_endpoints_table_buckets = 250000;
838 if (smm->local_endpoints_table_memory == 0)
839 smm->local_endpoints_table_memory = 512 << 20;
840
Florin Coras3cbc04b2017-10-02 00:18:51 -0700841 /* Initialize [port-allocator] random number seed */
842 port_allocator_seed = (u32) clib_cpu_time_now ();
843
844 clib_bihash_init_24_8 (&local_endpoints_table, "local endpoints table",
Florin Coras93e65802017-11-29 00:07:11 -0500845 smm->local_endpoints_table_buckets,
846 smm->local_endpoints_table_memory);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700847 num_threads = 1 /* main thread */ + vtm->n_threads;
848 if (num_threads > 1)
849 clib_spinlock_init (&local_endpoints_lock);
850}
851
852/*
853 * fd.io coding-style-patch-verification: ON
854 *
855 * Local Variables:
856 * eval: (c-set-style "gnu")
857 * End:
858 */