blob: 3f8a4c3b11e78fbcb0f069145f9a48f410a9d79a [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
20/**
21 * Per-type vector of transport protocol virtual function tables
22 */
23transport_proto_vft_t *tp_vfts;
24
25/*
26 * Port allocator seed
27 */
28static u32 port_allocator_seed;
29
30/*
31 * Local endpoints table
32 */
33static transport_endpoint_table_t local_endpoints_table;
34
35/*
36 * Pool of local endpoints
37 */
38static transport_endpoint_t *local_endpoints;
39
40/*
41 * Local endpoints pool lock
42 */
43static clib_spinlock_t local_endpoints_lock;
44
Florin Corasd67f1122018-05-21 17:47:40 -070045/*
46 * Period used by transport pacers. Initialized by session layer
47 */
48static double transport_pacer_period;
49
Florin Coras7ac053b2018-11-05 15:57:21 -080050#define TRANSPORT_PACER_MIN_MSS 1460
51#define TRANSPORT_PACER_MIN_BURST TRANSPORT_PACER_MIN_MSS
Florin Corasd67f1122018-05-21 17:47:40 -070052
Florin Coras1c710452017-10-17 00:03:13 -070053u8 *
54format_transport_proto (u8 * s, va_list * args)
55{
56 u32 transport_proto = va_arg (*args, u32);
57 switch (transport_proto)
58 {
59 case TRANSPORT_PROTO_TCP:
60 s = format (s, "TCP");
61 break;
62 case TRANSPORT_PROTO_UDP:
63 s = format (s, "UDP");
64 break;
Marco Varlese191a5942017-10-30 18:17:21 +010065 case TRANSPORT_PROTO_SCTP:
66 s = format (s, "SCTP");
67 break;
Florin Coras7fb0fe12018-04-09 09:24:52 -070068 case TRANSPORT_PROTO_UDPC:
69 s = format (s, "UDPC");
70 break;
Florin Coras1c710452017-10-17 00:03:13 -070071 }
72 return s;
73}
74
Florin Coras561af9b2017-12-09 10:19:43 -080075u8 *
76format_transport_proto_short (u8 * s, va_list * args)
77{
78 u32 transport_proto = va_arg (*args, u32);
79 switch (transport_proto)
80 {
81 case TRANSPORT_PROTO_TCP:
82 s = format (s, "T");
83 break;
84 case TRANSPORT_PROTO_UDP:
85 s = format (s, "U");
86 break;
Florin Coras4399c2e2018-01-25 06:34:42 -080087 case TRANSPORT_PROTO_SCTP:
88 s = format (s, "S");
89 break;
Florin Coras7fb0fe12018-04-09 09:24:52 -070090 case TRANSPORT_PROTO_UDPC:
91 s = format (s, "U");
92 break;
Florin Coras561af9b2017-12-09 10:19:43 -080093 }
94 return s;
95}
96
Florin Corasde9a8492018-10-24 22:18:58 -070097u8 *
98format_transport_connection (u8 * s, va_list * args)
99{
100 u32 transport_proto = va_arg (*args, u32);
101 u32 conn_index = va_arg (*args, u32);
102 u32 thread_index = va_arg (*args, u32);
103 u32 verbose = va_arg (*args, u32);
104 transport_proto_vft_t *tp_vft;
105 transport_connection_t *tc;
106 u32 indent;
107
108 tp_vft = transport_protocol_get_vft (transport_proto);
109 if (!tp_vft)
110 return s;
111
112 s = format (s, "%U", tp_vft->format_connection, conn_index, thread_index,
113 verbose);
114 tc = tp_vft->get_connection (conn_index, thread_index);
115 if (tc && transport_connection_is_tx_paced (tc) && verbose > 1)
116 {
117 indent = format_get_indent (s) + 1;
118 s = format (s, "%Upacer: %U\n", format_white_space, indent,
119 format_transport_pacer, &tc->pacer);
120 }
121 return s;
122}
123
124u8 *
125format_transport_listen_connection (u8 * s, va_list * args)
126{
127 u32 transport_proto = va_arg (*args, u32);
Florin Corasde9a8492018-10-24 22:18:58 -0700128 transport_proto_vft_t *tp_vft;
129
130 tp_vft = transport_protocol_get_vft (transport_proto);
131 if (!tp_vft)
132 return s;
133
Florin Coras3389dd22019-02-01 18:00:05 -0800134 s = (tp_vft->format_listener) (s, args);
Florin Corasde9a8492018-10-24 22:18:58 -0700135 return s;
136}
137
138u8 *
139format_transport_half_open_connection (u8 * s, va_list * args)
140{
141 u32 transport_proto = va_arg (*args, u32);
142 u32 listen_index = va_arg (*args, u32);
143 transport_proto_vft_t *tp_vft;
144
145 tp_vft = transport_protocol_get_vft (transport_proto);
146 if (!tp_vft)
147 return s;
148
149 s = format (s, "%U", tp_vft->format_half_open, listen_index);
150 return s;
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 *);
157 if (unformat (input, "tcp"))
158 *proto = TRANSPORT_PROTO_TCP;
159 else if (unformat (input, "TCP"))
160 *proto = TRANSPORT_PROTO_TCP;
Nathan Skrzypczakef71ef02019-03-25 10:20:56 +0100161 else if (unformat (input, "udpc"))
162 *proto = TRANSPORT_PROTO_UDPC;
163 else if (unformat (input, "UDPC"))
164 *proto = TRANSPORT_PROTO_UDPC;
Florin Coras1c710452017-10-17 00:03:13 -0700165 else if (unformat (input, "udp"))
166 *proto = TRANSPORT_PROTO_UDP;
167 else if (unformat (input, "UDP"))
168 *proto = TRANSPORT_PROTO_UDP;
Florin Coras4399c2e2018-01-25 06:34:42 -0800169 else if (unformat (input, "sctp"))
Marco Varlese191a5942017-10-30 18:17:21 +0100170 *proto = TRANSPORT_PROTO_SCTP;
171 else if (unformat (input, "SCTP"))
172 *proto = TRANSPORT_PROTO_SCTP;
Florin Coras371ca502018-02-21 12:07:41 -0800173 else if (unformat (input, "tls"))
174 *proto = TRANSPORT_PROTO_TLS;
175 else if (unformat (input, "TLS"))
176 *proto = TRANSPORT_PROTO_TLS;
Florin Coras1c710452017-10-17 00:03:13 -0700177 else
178 return 0;
179 return 1;
180}
Florin Coras3cbc04b2017-10-02 00:18:51 -0700181
182u32
183transport_endpoint_lookup (transport_endpoint_table_t * ht, u8 proto,
184 ip46_address_t * ip, u16 port)
185{
186 clib_bihash_kv_24_8_t kv;
187 int rv;
188
189 kv.key[0] = ip->as_u64[0];
190 kv.key[1] = ip->as_u64[1];
191 kv.key[2] = (u64) port << 8 | (u64) proto;
192
193 rv = clib_bihash_search_inline_24_8 (ht, &kv);
194 if (rv == 0)
195 return kv.value;
196
197 return ENDPOINT_INVALID_INDEX;
198}
199
200void
201transport_endpoint_table_add (transport_endpoint_table_t * ht, u8 proto,
202 transport_endpoint_t * te, u32 value)
203{
204 clib_bihash_kv_24_8_t kv;
205
206 kv.key[0] = te->ip.as_u64[0];
207 kv.key[1] = te->ip.as_u64[1];
208 kv.key[2] = (u64) te->port << 8 | (u64) proto;
209 kv.value = value;
210
211 clib_bihash_add_del_24_8 (ht, &kv, 1);
212}
213
214void
215transport_endpoint_table_del (transport_endpoint_table_t * ht, u8 proto,
216 transport_endpoint_t * te)
217{
218 clib_bihash_kv_24_8_t kv;
219
220 kv.key[0] = te->ip.as_u64[0];
221 kv.key[1] = te->ip.as_u64[1];
222 kv.key[2] = (u64) te->port << 8 | (u64) proto;
223
224 clib_bihash_add_del_24_8 (ht, &kv, 0);
225}
226
227/**
228 * Register transport virtual function table.
229 *
Florin Coras561af9b2017-12-09 10:19:43 -0800230 * @param transport_proto - transport protocol type (i.e., TCP, UDP ..)
231 * @param vft - virtual function table for transport proto
232 * @param fib_proto - network layer protocol
233 * @param output_node - output node index that session layer will hand off
234 * buffers to, for requested fib proto
Florin Coras3cbc04b2017-10-02 00:18:51 -0700235 */
236void
Florin Coras561af9b2017-12-09 10:19:43 -0800237transport_register_protocol (transport_proto_t transport_proto,
238 const transport_proto_vft_t * vft,
239 fib_protocol_t fib_proto, u32 output_node)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700240{
Florin Coras561af9b2017-12-09 10:19:43 -0800241 u8 is_ip4 = fib_proto == FIB_PROTOCOL_IP4;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700242
Florin Coras561af9b2017-12-09 10:19:43 -0800243 vec_validate (tp_vfts, transport_proto);
244 tp_vfts[transport_proto] = *vft;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700245
Florin Coras561af9b2017-12-09 10:19:43 -0800246 session_register_transport (transport_proto, vft, is_ip4, output_node);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700247}
248
249/**
250 * Get transport virtual function table
251 *
252 * @param type - session type (not protocol type)
253 */
254transport_proto_vft_t *
Florin Coras561af9b2017-12-09 10:19:43 -0800255transport_protocol_get_vft (transport_proto_t transport_proto)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700256{
Florin Coras561af9b2017-12-09 10:19:43 -0800257 if (transport_proto >= vec_len (tp_vfts))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700258 return 0;
Florin Coras561af9b2017-12-09 10:19:43 -0800259 return &tp_vfts[transport_proto];
Florin Coras3cbc04b2017-10-02 00:18:51 -0700260}
261
Florin Coras7fb0fe12018-04-09 09:24:52 -0700262transport_service_type_t
263transport_protocol_service_type (transport_proto_t tp)
264{
265 return tp_vfts[tp].service_type;
266}
267
Florin Corasf08f26d2018-05-10 13:20:47 -0700268transport_tx_fn_type_t
269transport_protocol_tx_fn_type (transport_proto_t tp)
270{
271 return tp_vfts[tp].tx_type;
272}
273
Florin Coras1ee78302019-02-05 15:51:15 -0800274void
275transport_cleanup (transport_proto_t tp, u32 conn_index, u8 thread_index)
Florin Coras4edc37e2019-02-04 23:01:34 -0800276{
Florin Coras1ee78302019-02-05 15:51:15 -0800277 tp_vfts[tp].cleanup (conn_index, thread_index);
Florin Coras4edc37e2019-02-04 23:01:34 -0800278}
279
Florin Coras1ee78302019-02-05 15:51:15 -0800280int
281transport_connect (transport_proto_t tp, transport_endpoint_cfg_t * tep)
Florin Coras4edc37e2019-02-04 23:01:34 -0800282{
Florin Coras1ee78302019-02-05 15:51:15 -0800283 return tp_vfts[tp].connect (tep);
284}
285
286void
287transport_close (transport_proto_t tp, u32 conn_index, u8 thread_index)
288{
289 tp_vfts[tp].close (conn_index, thread_index);
290}
291
292u32
293transport_start_listen (transport_proto_t tp, u32 session_index,
294 transport_endpoint_t * tep)
295{
296 return tp_vfts[tp].start_listen (session_index, tep);
297}
298
299u32
300transport_stop_listen (transport_proto_t tp, u32 conn_index)
301{
302 return tp_vfts[tp].stop_listen (conn_index);
Florin Coras4edc37e2019-02-04 23:01:34 -0800303}
304
Florin Coras40903ac2018-06-10 14:41:23 -0700305u8
306transport_protocol_is_cl (transport_proto_t tp)
307{
308 return (tp_vfts[tp].service_type == TRANSPORT_SERVICE_CL);
309}
310
Florin Coras3cbc04b2017-10-02 00:18:51 -0700311#define PORT_MASK ((1 << 16)- 1)
312
313void
314transport_endpoint_del (u32 tepi)
315{
316 clib_spinlock_lock_if_init (&local_endpoints_lock);
317 pool_put_index (local_endpoints, tepi);
318 clib_spinlock_unlock_if_init (&local_endpoints_lock);
319}
320
321always_inline transport_endpoint_t *
322transport_endpoint_new (void)
323{
324 transport_endpoint_t *tep;
Florin Coras5665ced2018-10-25 18:03:45 -0700325 pool_get_zero (local_endpoints, tep);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700326 return tep;
327}
328
329void
330transport_endpoint_cleanup (u8 proto, ip46_address_t * lcl_ip, u16 port)
331{
332 u32 tepi;
333 transport_endpoint_t *tep;
334
335 /* Cleanup local endpoint if this was an active connect */
336 tepi = transport_endpoint_lookup (&local_endpoints_table, proto, lcl_ip,
337 clib_net_to_host_u16 (port));
338 if (tepi != ENDPOINT_INVALID_INDEX)
339 {
340 tep = pool_elt_at_index (local_endpoints, tepi);
341 transport_endpoint_table_del (&local_endpoints_table, proto, tep);
342 transport_endpoint_del (tepi);
343 }
344}
345
Florin Coras5665ced2018-10-25 18:03:45 -0700346static void
347transport_endpoint_mark_used (u8 proto, ip46_address_t * ip, u16 port)
348{
349 transport_endpoint_t *tep;
350 clib_spinlock_lock_if_init (&local_endpoints_lock);
351 tep = transport_endpoint_new ();
Dave Barach178cf492018-11-13 16:34:13 -0500352 clib_memcpy_fast (&tep->ip, ip, sizeof (*ip));
Florin Coras5665ced2018-10-25 18:03:45 -0700353 tep->port = port;
354 transport_endpoint_table_add (&local_endpoints_table, proto, tep,
355 tep - local_endpoints);
356 clib_spinlock_unlock_if_init (&local_endpoints_lock);
357}
358
Florin Coras3cbc04b2017-10-02 00:18:51 -0700359/**
360 * Allocate local port and add if successful add entry to local endpoint
361 * table to mark the pair as used.
362 */
363int
364transport_alloc_local_port (u8 proto, ip46_address_t * ip)
365{
Florin Coras3cbc04b2017-10-02 00:18:51 -0700366 u16 min = 1024, max = 65535; /* XXX configurable ? */
367 int tries, limit;
Florin Coras5665ced2018-10-25 18:03:45 -0700368 u32 tei;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700369
370 limit = max - min;
371
372 /* Only support active opens from thread 0 */
373 ASSERT (vlib_get_thread_index () == 0);
374
375 /* Search for first free slot */
376 for (tries = 0; tries < limit; tries++)
377 {
378 u16 port = 0;
379
380 /* Find a port in the specified range */
381 while (1)
382 {
383 port = random_u32 (&port_allocator_seed) & PORT_MASK;
384 if (PREDICT_TRUE (port >= min && port < max))
385 break;
386 }
387
388 /* Look it up. If not found, we're done */
389 tei = transport_endpoint_lookup (&local_endpoints_table, proto, ip,
390 port);
391 if (tei == ENDPOINT_INVALID_INDEX)
392 {
Florin Coras5665ced2018-10-25 18:03:45 -0700393 transport_endpoint_mark_used (proto, ip, port);
394 return port;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700395 }
396 }
397 return -1;
398}
399
Florin Coras5665ced2018-10-25 18:03:45 -0700400static clib_error_t *
401transport_get_interface_ip (u32 sw_if_index, u8 is_ip4, ip46_address_t * addr)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700402{
Florin Coras5665ced2018-10-25 18:03:45 -0700403 if (is_ip4)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700404 {
405 ip4_address_t *ip4;
406 ip4 = ip_interface_get_first_ip (sw_if_index, 1);
Florin Corasfc804d92018-01-26 01:27:01 -0800407 if (!ip4)
Florin Coras5665ced2018-10-25 18:03:45 -0700408 return clib_error_return (0, "no routable ip4 address on %U",
409 format_vnet_sw_if_index_name,
410 vnet_get_main (), sw_if_index);
411 addr->ip4.as_u32 = ip4->as_u32;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700412 }
413 else
414 {
415 ip6_address_t *ip6;
416 ip6 = ip_interface_get_first_ip (sw_if_index, 0);
417 if (ip6 == 0)
Florin Coras5665ced2018-10-25 18:03:45 -0700418 return clib_error_return (0, "no routable ip6 addresses on %U",
419 format_vnet_sw_if_index_name,
420 vnet_get_main (), sw_if_index);
Dave Barach178cf492018-11-13 16:34:13 -0500421 clib_memcpy_fast (&addr->ip6, ip6, sizeof (*ip6));
Florin Coras5665ced2018-10-25 18:03:45 -0700422 }
423 return 0;
424}
425
426static clib_error_t *
427transport_find_local_ip_for_remote (u32 sw_if_index,
428 transport_endpoint_t * rmt,
429 ip46_address_t * lcl_addr)
430{
431 fib_node_index_t fei;
432 fib_prefix_t prefix;
433
434 if (sw_if_index == ENDPOINT_INVALID_INDEX)
435 {
436 /* Find a FIB path to the destination */
Dave Barach178cf492018-11-13 16:34:13 -0500437 clib_memcpy_fast (&prefix.fp_addr, &rmt->ip, sizeof (rmt->ip));
Florin Coras5665ced2018-10-25 18:03:45 -0700438 prefix.fp_proto = rmt->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
439 prefix.fp_len = rmt->is_ip4 ? 32 : 128;
440
441 ASSERT (rmt->fib_index != ENDPOINT_INVALID_INDEX);
442 fei = fib_table_lookup (rmt->fib_index, &prefix);
443
444 /* Couldn't find route to destination. Bail out. */
445 if (fei == FIB_NODE_INDEX_INVALID)
446 return clib_error_return (0, "no route to %U", format_ip46_address,
447 &rmt->ip, (rmt->is_ip4 == 0) + 1);
448
449 sw_if_index = fib_entry_get_resolving_interface (fei);
450 if (sw_if_index == ENDPOINT_INVALID_INDEX)
451 return clib_error_return (0, "no resolving interface for %U",
452 format_ip46_address, &rmt->ip,
453 (rmt->is_ip4 == 0) + 1);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700454 }
455
Florin Coras5665ced2018-10-25 18:03:45 -0700456 clib_memset (lcl_addr, 0, sizeof (*lcl_addr));
457 return transport_get_interface_ip (sw_if_index, rmt->is_ip4, lcl_addr);
458}
459
460int
461transport_alloc_local_endpoint (u8 proto, transport_endpoint_cfg_t * rmt_cfg,
462 ip46_address_t * lcl_addr, u16 * lcl_port)
463{
464 transport_endpoint_t *rmt = (transport_endpoint_t *) rmt_cfg;
465 clib_error_t *error;
466 int port;
467 u32 tei;
468
469 /*
470 * Find the local address
471 */
472 if (ip_is_zero (&rmt_cfg->peer.ip, rmt_cfg->peer.is_ip4))
Florin Coras3cbc04b2017-10-02 00:18:51 -0700473 {
Florin Coras5665ced2018-10-25 18:03:45 -0700474 error = transport_find_local_ip_for_remote (rmt_cfg->peer.sw_if_index,
475 rmt, lcl_addr);
476 if (error)
Florin Corasdc2e2512018-12-03 17:47:26 -0800477 {
478 clib_error_report (error);
479 return -1;
480 }
Florin Coras3cbc04b2017-10-02 00:18:51 -0700481 }
Florin Coras5665ced2018-10-25 18:03:45 -0700482 else
483 {
484 /* Assume session layer vetted this address */
Dave Barach178cf492018-11-13 16:34:13 -0500485 clib_memcpy_fast (lcl_addr, &rmt_cfg->peer.ip,
486 sizeof (rmt_cfg->peer.ip));
Florin Coras5665ced2018-10-25 18:03:45 -0700487 }
488
489 /*
490 * Allocate source port
491 */
492 if (rmt_cfg->peer.port == 0)
493 {
494 port = transport_alloc_local_port (proto, lcl_addr);
495 if (port < 1)
496 {
497 clib_warning ("Failed to allocate src port");
498 return -1;
499 }
500 *lcl_port = port;
501 }
502 else
503 {
504 port = clib_net_to_host_u16 (rmt_cfg->peer.port);
505 tei = transport_endpoint_lookup (&local_endpoints_table, proto,
506 lcl_addr, port);
507 if (tei != ENDPOINT_INVALID_INDEX)
508 return -1;
509
510 transport_endpoint_mark_used (proto, lcl_addr, port);
511 *lcl_port = port;
512 }
513
Florin Coras3cbc04b2017-10-02 00:18:51 -0700514 return 0;
515}
516
Florin Corasd67f1122018-05-21 17:47:40 -0700517#define SPACER_CPU_TICKS_PER_PERIOD_SHIFT 10
518#define SPACER_CPU_TICKS_PER_PERIOD (1 << SPACER_CPU_TICKS_PER_PERIOD_SHIFT)
519
520u8 *
521format_transport_pacer (u8 * s, va_list * args)
522{
523 spacer_t *pacer = va_arg (*args, spacer_t *);
524
525 s = format (s, "bucket %u max_burst %u tokens/period %.3f last_update %x",
526 pacer->bucket, pacer->max_burst_size, pacer->tokens_per_period,
527 pacer->last_update);
528 return s;
529}
530
531static inline u32
532spacer_max_burst (spacer_t * pacer, u64 norm_time_now)
533{
534 u64 n_periods = norm_time_now - pacer->last_update;
Florin Corase55a6d72018-10-31 23:09:22 -0700535 u64 inc;
Florin Corasd67f1122018-05-21 17:47:40 -0700536
Florin Corase55a6d72018-10-31 23:09:22 -0700537 if (n_periods > 0 && (inc = n_periods * pacer->tokens_per_period) > 10)
538 {
539 pacer->last_update = norm_time_now;
540 pacer->bucket += inc;
541 }
542
Florin Corasd67f1122018-05-21 17:47:40 -0700543 return clib_min (pacer->bucket, pacer->max_burst_size);
544}
545
546static inline void
547spacer_update_bucket (spacer_t * pacer, u32 bytes)
548{
549 ASSERT (pacer->bucket >= bytes);
550 pacer->bucket -= bytes;
551}
552
553static inline void
554spacer_update_max_burst_size (spacer_t * pacer, u32 max_burst_bytes)
555{
Florin Coras7ac053b2018-11-05 15:57:21 -0800556 pacer->max_burst_size = clib_max (max_burst_bytes,
557 TRANSPORT_PACER_MIN_BURST);
Florin Corasd67f1122018-05-21 17:47:40 -0700558}
559
560static inline void
561spacer_set_pace_rate (spacer_t * pacer, u64 rate_bytes_per_sec)
562{
563 ASSERT (rate_bytes_per_sec != 0);
564 pacer->tokens_per_period = rate_bytes_per_sec / transport_pacer_period;
565}
566
567void
Florin Corasc44a5582018-11-01 16:30:54 -0700568transport_connection_tx_pacer_reset (transport_connection_t * tc,
569 u32 rate_bytes_per_sec,
570 u32 start_bucket, u64 time_now)
Florin Corasd67f1122018-05-21 17:47:40 -0700571{
Florin Corasd67f1122018-05-21 17:47:40 -0700572 spacer_t *pacer = &tc->pacer;
Florin Corase55a6d72018-10-31 23:09:22 -0700573 f64 dispatch_period;
574 u32 burst_size;
Florin Corasd67f1122018-05-21 17:47:40 -0700575
Florin Corase55a6d72018-10-31 23:09:22 -0700576 dispatch_period = transport_dispatch_period (tc->thread_index);
577 burst_size = rate_bytes_per_sec * dispatch_period;
578 spacer_update_max_burst_size (&tc->pacer, burst_size);
Florin Corasd67f1122018-05-21 17:47:40 -0700579 spacer_set_pace_rate (&tc->pacer, rate_bytes_per_sec);
580 pacer->last_update = time_now >> SPACER_CPU_TICKS_PER_PERIOD_SHIFT;
Florin Corasc44a5582018-11-01 16:30:54 -0700581 pacer->bucket = start_bucket;
582}
583
584void
585transport_connection_tx_pacer_init (transport_connection_t * tc,
586 u32 rate_bytes_per_sec,
587 u32 initial_bucket)
588{
589 vlib_main_t *vm = vlib_get_main ();
590 tc->flags |= TRANSPORT_CONNECTION_F_IS_TX_PACED;
591 transport_connection_tx_pacer_reset (tc, rate_bytes_per_sec,
592 initial_bucket,
593 vm->clib_time.last_cpu_time);
Florin Corasd67f1122018-05-21 17:47:40 -0700594}
595
596void
597transport_connection_tx_pacer_update (transport_connection_t * tc,
598 u64 bytes_per_sec)
599{
Florin Coras7ac053b2018-11-05 15:57:21 -0800600 f64 dispatch_period = transport_dispatch_period (tc->thread_index);
601 u32 burst_size = 1.1 * bytes_per_sec * dispatch_period;
Florin Corasd67f1122018-05-21 17:47:40 -0700602 spacer_set_pace_rate (&tc->pacer, bytes_per_sec);
603 spacer_update_max_burst_size (&tc->pacer, burst_size);
604}
605
606u32
Florin Corase55a6d72018-10-31 23:09:22 -0700607transport_connection_tx_pacer_burst (transport_connection_t * tc,
608 u64 time_now)
609{
610 time_now >>= SPACER_CPU_TICKS_PER_PERIOD_SHIFT;
611 return spacer_max_burst (&tc->pacer, time_now);
612}
613
614u32
615transport_connection_snd_space (transport_connection_t * tc, u64 time_now,
616 u16 mss)
Florin Corasd67f1122018-05-21 17:47:40 -0700617{
618 u32 snd_space, max_paced_burst;
Florin Corasd67f1122018-05-21 17:47:40 -0700619
620 snd_space = tp_vfts[tc->proto].send_space (tc);
621 if (transport_connection_is_tx_paced (tc))
622 {
623 time_now >>= SPACER_CPU_TICKS_PER_PERIOD_SHIFT;
624 max_paced_burst = spacer_max_burst (&tc->pacer, time_now);
Florin Corasd67f1122018-05-21 17:47:40 -0700625 max_paced_burst = (max_paced_burst < mss) ? 0 : max_paced_burst;
626 snd_space = clib_min (snd_space, max_paced_burst);
627 snd_space = snd_space - snd_space % mss;
628 }
629 return snd_space;
630}
631
632void
633transport_connection_update_tx_stats (transport_connection_t * tc, u32 bytes)
634{
635 tc->stats.tx_bytes += bytes;
636 if (transport_connection_is_tx_paced (tc))
637 spacer_update_bucket (&tc->pacer, bytes);
638}
639
640void
Florin Corase55a6d72018-10-31 23:09:22 -0700641transport_connection_tx_pacer_update_bytes (transport_connection_t * tc,
642 u32 bytes)
643{
644 spacer_update_bucket (&tc->pacer, bytes);
645}
646
647void
Florin Corasd67f1122018-05-21 17:47:40 -0700648transport_init_tx_pacers_period (void)
649{
650 f64 cpu_freq = os_cpu_clock_frequency ();
651 transport_pacer_period = cpu_freq / SPACER_CPU_TICKS_PER_PERIOD;
652}
653
Florin Coras3cbc04b2017-10-02 00:18:51 -0700654void
Florin Coras561af9b2017-12-09 10:19:43 -0800655transport_update_time (f64 time_now, u8 thread_index)
656{
657 transport_proto_vft_t *vft;
658 vec_foreach (vft, tp_vfts)
659 {
660 if (vft->update_time)
661 (vft->update_time) (time_now, thread_index);
662 }
663}
664
665void
666transport_enable_disable (vlib_main_t * vm, u8 is_en)
667{
668 transport_proto_vft_t *vft;
669 vec_foreach (vft, tp_vfts)
670 {
671 if (vft->enable)
672 (vft->enable) (vm, is_en);
673 }
674}
675
676void
Florin Coras3cbc04b2017-10-02 00:18:51 -0700677transport_init (void)
678{
679 vlib_thread_main_t *vtm = vlib_get_thread_main ();
Florin Coras31c99552019-03-01 13:00:58 -0800680 session_main_t *smm = vnet_get_session_main ();
Florin Coras3cbc04b2017-10-02 00:18:51 -0700681 u32 num_threads;
682
Florin Coras93e65802017-11-29 00:07:11 -0500683 if (smm->local_endpoints_table_buckets == 0)
684 smm->local_endpoints_table_buckets = 250000;
685 if (smm->local_endpoints_table_memory == 0)
686 smm->local_endpoints_table_memory = 512 << 20;
687
Florin Coras3cbc04b2017-10-02 00:18:51 -0700688 /* Initialize [port-allocator] random number seed */
689 port_allocator_seed = (u32) clib_cpu_time_now ();
690
691 clib_bihash_init_24_8 (&local_endpoints_table, "local endpoints table",
Florin Coras93e65802017-11-29 00:07:11 -0500692 smm->local_endpoints_table_buckets,
693 smm->local_endpoints_table_memory);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700694 num_threads = 1 /* main thread */ + vtm->n_threads;
695 if (num_threads > 1)
696 clib_spinlock_init (&local_endpoints_lock);
697}
698
699/*
700 * fd.io coding-style-patch-verification: ON
701 *
702 * Local Variables:
703 * eval: (c-set-style "gnu")
704 * End:
705 */