blob: 5592601983de834dcf5a3881d32846dd57ea1f3f [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Coras1ee78302019-02-05 15:51:15 -08002 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * 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#ifndef SRC_VNET_SESSION_TRANSPORT_H_
17#define SRC_VNET_SESSION_TRANSPORT_H_
Dave Barach68b0fb02017-02-28 15:15:56 -050018
19#include <vnet/vnet.h>
Florin Coras1ee78302019-02-05 15:51:15 -080020#include <vnet/session/transport_types.h>
Florin Corasd67f1122018-05-21 17:47:40 -070021
Florin Corasc31dc312019-10-06 14:06:14 -070022#define TRANSPORT_PACER_MIN_MSS 1460
23#define TRANSPORT_PACER_MIN_BURST TRANSPORT_PACER_MIN_MSS
24#define TRANSPORT_PACER_MAX_BURST (43 * TRANSPORT_PACER_MIN_MSS)
Florin Corased8db522020-02-27 04:32:51 +000025#define TRANSPORT_PACER_MAX_BURST_PKTS 43
Florin Coras11e9e352019-11-13 19:09:47 -080026#define TRANSPORT_PACER_MIN_IDLE 100
27#define TRANSPORT_PACER_IDLE_FACTOR 0.05
Florin Corasc31dc312019-10-06 14:06:14 -070028
Nathan Skrzypczake971bc92019-06-19 13:42:37 +020029typedef struct _transport_options_t
30{
Florin Coras07063b82020-03-13 04:44:51 +000031 char *name;
32 char *short_name;
Nathan Skrzypczake971bc92019-06-19 13:42:37 +020033 transport_tx_fn_type_t tx_type;
34 transport_service_type_t service_type;
Nathan Skrzypczaka26349d2019-06-26 13:53:08 +020035 u8 half_open_has_fifos;
Nathan Skrzypczake971bc92019-06-19 13:42:37 +020036} transport_options_t;
37
Florin Coras70f879d2020-03-13 17:54:42 +000038typedef enum transport_snd_flags_
39{
40 TRANSPORT_SND_F_DESCHED = 1 << 0,
41 TRANSPORT_SND_F_POSTPONE = 1 << 1,
42 TRANSPORT_SND_N_FLAGS
43} __clib_packed transport_snd_flags_t;
44
45typedef struct transport_send_params_
46{
Florin Coras9f86d222020-03-23 15:34:22 +000047 union
48 {
49 /* Used to retrieve snd params from transports */
50 struct
51 {
52 u32 snd_space;
53 u32 tx_offset;
54 u16 snd_mss;
55 };
56 /* Used by custom tx functions */
57 struct
58 {
59 u32 max_burst_size;
60 };
61 };
Florin Coras70f879d2020-03-13 17:54:42 +000062 transport_snd_flags_t flags;
63} transport_send_params_t;
64
Florin Corasde9a8492018-10-24 22:18:58 -070065/*
Florin Coras1ee78302019-02-05 15:51:15 -080066 * Transport protocol virtual function table
Florin Corasde9a8492018-10-24 22:18:58 -070067 */
Florin Coras1ee78302019-02-05 15:51:15 -080068/* *INDENT-OFF* */
69typedef struct _transport_proto_vft
Dave Barach68b0fb02017-02-28 15:15:56 -050070{
Florin Coras1ee78302019-02-05 15:51:15 -080071 /*
72 * Setup
73 */
74 u32 (*start_listen) (u32 session_index, transport_endpoint_t * lcl);
75 u32 (*stop_listen) (u32 conn_index);
76 int (*connect) (transport_endpoint_cfg_t * rmt);
77 void (*close) (u32 conn_index, u32 thread_index);
Florin Corasdfb3b872019-08-16 17:48:44 -070078 void (*reset) (u32 conn_index, u32 thread_index);
Florin Coras1ee78302019-02-05 15:51:15 -080079 void (*cleanup) (u32 conn_index, u32 thread_index);
80 clib_error_t *(*enable) (vlib_main_t * vm, u8 is_en);
Dave Barach68b0fb02017-02-28 15:15:56 -050081
Florin Coras1ee78302019-02-05 15:51:15 -080082 /*
83 * Transmission
84 */
Dave Barach68b0fb02017-02-28 15:15:56 -050085
Florin Coras1ee78302019-02-05 15:51:15 -080086 u32 (*push_header) (transport_connection_t * tconn, vlib_buffer_t * b);
Florin Coras70f879d2020-03-13 17:54:42 +000087 int (*send_params) (transport_connection_t * tconn,
88 transport_send_params_t *sp);
Florin Coras1ee78302019-02-05 15:51:15 -080089 void (*update_time) (f64 time_now, u8 thread_index);
90 void (*flush_data) (transport_connection_t *tconn);
Florin Coras9f86d222020-03-23 15:34:22 +000091 int (*custom_tx) (void *session, transport_send_params_t *sp);
Florin Coras317b8e02019-04-17 09:57:46 -070092 int (*app_rx_evt) (transport_connection_t *tconn);
Florin Corasf6359c82017-06-19 12:26:09 -040093
Florin Coras1ee78302019-02-05 15:51:15 -080094 /*
95 * Connection retrieval
96 */
97 transport_connection_t *(*get_connection) (u32 conn_idx, u32 thread_idx);
98 transport_connection_t *(*get_listener) (u32 conn_index);
99 transport_connection_t *(*get_half_open) (u32 conn_index);
Florin Corasd67f1122018-05-21 17:47:40 -0700100
Florin Coras1ee78302019-02-05 15:51:15 -0800101 /*
102 * Format
103 */
104 u8 *(*format_connection) (u8 * s, va_list * args);
105 u8 *(*format_listener) (u8 * s, va_list * args);
106 u8 *(*format_half_open) (u8 * s, va_list * args);
Florin Corase69f4952017-03-07 10:06:24 -0800107
Florin Coras09d18c22019-04-24 11:10:02 -0700108 /*
109 * Properties retrieval
110 */
111 void (*get_transport_endpoint) (u32 conn_index, u32 thread_index,
112 transport_endpoint_t *tep, u8 is_lcl);
113 void (*get_transport_listener_endpoint) (u32 conn_index,
114 transport_endpoint_t *tep,
115 u8 is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200116
Florin Coras1ee78302019-02-05 15:51:15 -0800117 /*
118 * Properties
119 */
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200120 transport_options_t transport_options;
Florin Coras1ee78302019-02-05 15:51:15 -0800121} transport_proto_vft_t;
122/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500123
Florin Coras1ee78302019-02-05 15:51:15 -0800124extern transport_proto_vft_t *tp_vfts;
Florin Corasd67f1122018-05-21 17:47:40 -0700125
Florin Coras1ee78302019-02-05 15:51:15 -0800126#define transport_proto_foreach(VAR, BODY) \
127do { \
128 for (VAR = 0; VAR < vec_len (tp_vfts); VAR++) \
129 if (tp_vfts[VAR].push_header != 0) \
130 do { BODY; } while (0); \
131} while (0)
132
133int transport_connect (transport_proto_t tp, transport_endpoint_cfg_t * tep);
134void transport_close (transport_proto_t tp, u32 conn_index, u8 thread_index);
Florin Corasdfb3b872019-08-16 17:48:44 -0700135void transport_reset (transport_proto_t tp, u32 conn_index, u8 thread_index);
Florin Coras1ee78302019-02-05 15:51:15 -0800136u32 transport_start_listen (transport_proto_t tp, u32 session_index,
137 transport_endpoint_t * tep);
138u32 transport_stop_listen (transport_proto_t tp, u32 conn_index);
139void transport_cleanup (transport_proto_t tp, u32 conn_index,
140 u8 thread_index);
Aloys Augustincdb71702019-04-08 17:54:39 +0200141void transport_get_endpoint (transport_proto_t tp, u32 conn_index,
Florin Coras09d18c22019-04-24 11:10:02 -0700142 u32 thread_index, transport_endpoint_t * tep,
143 u8 is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200144void transport_get_listener_endpoint (transport_proto_t tp, u32 conn_index,
Florin Coras09d18c22019-04-24 11:10:02 -0700145 transport_endpoint_t * tep, u8 is_lcl);
Florin Coras1ee78302019-02-05 15:51:15 -0800146
147static inline transport_connection_t *
148transport_get_connection (transport_proto_t tp, u32 conn_index,
149 u8 thread_index)
Dave Barach2c25a622017-06-26 11:35:07 -0400150{
Florin Coras1ee78302019-02-05 15:51:15 -0800151 return tp_vfts[tp].get_connection (conn_index, thread_index);
Florin Corascea194d2017-10-02 00:18:51 -0700152}
153
Florin Coras1ee78302019-02-05 15:51:15 -0800154static inline transport_connection_t *
155transport_get_listener (transport_proto_t tp, u32 conn_index)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700156{
Florin Coras1ee78302019-02-05 15:51:15 -0800157 return tp_vfts[tp].get_listener (conn_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700158}
159
Florin Coras1ee78302019-02-05 15:51:15 -0800160static inline transport_connection_t *
161transport_get_half_open (transport_proto_t tp, u32 conn_index)
162{
163 return tp_vfts[tp].get_half_open (conn_index);
164}
165
Florin Corasf940f8a2019-03-06 10:44:38 -0800166static inline int
Florin Coras9f86d222020-03-23 15:34:22 +0000167transport_custom_tx (transport_proto_t tp, void *s,
168 transport_send_params_t * sp)
Florin Corasf940f8a2019-03-06 10:44:38 -0800169{
Florin Coras9f86d222020-03-23 15:34:22 +0000170 return tp_vfts[tp].custom_tx (s, sp);
Florin Corasf940f8a2019-03-06 10:44:38 -0800171}
172
Florin Coras317b8e02019-04-17 09:57:46 -0700173static inline int
174transport_app_rx_evt (transport_proto_t tp, u32 conn_index, u32 thread_index)
175{
176 transport_connection_t *tc;
177 if (!tp_vfts[tp].app_rx_evt)
178 return 0;
179 tc = transport_get_connection (tp, conn_index, thread_index);
180 return tp_vfts[tp].app_rx_evt (tc);
181}
182
Florin Coras11e9e352019-11-13 19:09:47 -0800183/**
Florin Coras70f879d2020-03-13 17:54:42 +0000184 * Get send parameters for transport connection
185 *
186 * These include maximum tx burst, mss, tx offset and other flags
187 * transport might want to provide to sessin layer
Florin Coras11e9e352019-11-13 19:09:47 -0800188 *
189 * @param tc transport connection
Florin Coras70f879d2020-03-13 17:54:42 +0000190 * @param sp send paramaters
191 *
Florin Coras11e9e352019-11-13 19:09:47 -0800192 */
193static inline u32
Florin Coras70f879d2020-03-13 17:54:42 +0000194transport_connection_snd_params (transport_connection_t * tc,
195 transport_send_params_t * sp)
Florin Coras11e9e352019-11-13 19:09:47 -0800196{
Florin Coras70f879d2020-03-13 17:54:42 +0000197 return tp_vfts[tc->proto].send_params (tc, sp);
Florin Coras11e9e352019-11-13 19:09:47 -0800198}
199
Florin Coras70f879d2020-03-13 17:54:42 +0000200static inline u8
201transport_connection_is_descheduled (transport_connection_t * tc)
202{
Florin Coras6080e0d2020-03-13 20:39:43 +0000203 return ((tc->flags & TRANSPORT_CONNECTION_F_DESCHED) ? 1 : 0);
Florin Coras70f879d2020-03-13 17:54:42 +0000204}
205
206static inline void
207transport_connection_deschedule (transport_connection_t * tc)
208{
209 tc->flags |= TRANSPORT_CONNECTION_F_DESCHED;
210}
211
Florin Coras87b7e3d2020-03-27 15:06:07 +0000212static inline u8
213transport_connection_is_cless (transport_connection_t * tc)
214{
215 return ((tc->flags & TRANSPORT_CONNECTION_F_CLESS) ? 1 : 0);
216}
217
Florin Coras70f879d2020-03-13 17:54:42 +0000218void transport_connection_reschedule (transport_connection_t * tc);
219
Florin Coras07063b82020-03-13 04:44:51 +0000220/**
221 * Register transport virtual function table.
222 *
223 * @param transport_proto - transport protocol type (i.e., TCP, UDP ..)
224 * @param vft - virtual function table for transport proto
225 * @param fib_proto - network layer protocol
226 * @param output_node - output node index that session layer will hand off
227 * buffers to, for requested fib proto
228 */
Florin Coras1ee78302019-02-05 15:51:15 -0800229void transport_register_protocol (transport_proto_t transport_proto,
230 const transport_proto_vft_t * vft,
231 fib_protocol_t fib_proto, u32 output_node);
Florin Coras07063b82020-03-13 04:44:51 +0000232transport_proto_t
233transport_register_new_protocol (const transport_proto_vft_t * vft,
234 fib_protocol_t fib_proto, u32 output_node);
Florin Coras1ee78302019-02-05 15:51:15 -0800235transport_proto_vft_t *transport_protocol_get_vft (transport_proto_t tp);
Florin Corasa8e71c82019-10-22 19:01:39 -0700236void transport_update_time (clib_time_type_t time_now, u8 thread_index);
Florin Coras1ee78302019-02-05 15:51:15 -0800237
Florin Coras3cbc04b2017-10-02 00:18:51 -0700238int transport_alloc_local_port (u8 proto, ip46_address_t * ip);
Florin Coras5665ced2018-10-25 18:03:45 -0700239int transport_alloc_local_endpoint (u8 proto, transport_endpoint_cfg_t * rmt,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700240 ip46_address_t * lcl_addr,
241 u16 * lcl_port);
Florin Coras57660d92020-04-04 22:45:34 +0000242void transport_share_local_endpoint (u8 proto, ip46_address_t * lcl_ip,
243 u16 port);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700244void transport_endpoint_cleanup (u8 proto, ip46_address_t * lcl_ip, u16 port);
Florin Coras1ee78302019-02-05 15:51:15 -0800245void transport_enable_disable (vlib_main_t * vm, u8 is_en);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700246void transport_init (void);
247
Florin Coras1ee78302019-02-05 15:51:15 -0800248always_inline u32
249transport_elog_track_index (transport_connection_t * tc)
250{
251#if TRANSPORT_DEBUG
252 return tc->elog_track.track_index_plus_one - 1;
253#else
254 return ~0;
255#endif
256}
257
258void transport_connection_tx_pacer_reset (transport_connection_t * tc,
Florin Corasa8e71c82019-10-22 19:01:39 -0700259 u64 rate_bytes_per_sec,
Florin Coras11e9e352019-11-13 19:09:47 -0800260 u32 initial_bucket,
261 clib_us_time_t rtt);
Florin Coras1ee78302019-02-05 15:51:15 -0800262/**
263 * Initialize tx pacer for connection
264 *
265 * @param tc transport connection
266 * @param rate_bytes_per_second initial byte rate
267 * @param burst_bytes initial burst size in bytes
268 */
269void transport_connection_tx_pacer_init (transport_connection_t * tc,
Florin Corasa8e71c82019-10-22 19:01:39 -0700270 u64 rate_bytes_per_sec,
Florin Coras1ee78302019-02-05 15:51:15 -0800271 u32 initial_bucket);
272
273/**
274 * Update tx pacer pacing rate
275 *
276 * @param tc transport connection
277 * @param bytes_per_sec new pacing rate
Florin Coras11e9e352019-11-13 19:09:47 -0800278 * @param rtt connection rtt that is used to compute
279 * inactivity time after which pacer bucket is
280 * reset to 1 mtu
Florin Coras1ee78302019-02-05 15:51:15 -0800281 */
282void transport_connection_tx_pacer_update (transport_connection_t * tc,
Florin Coras11e9e352019-11-13 19:09:47 -0800283 u64 bytes_per_sec,
284 clib_us_time_t rtt);
Florin Coras1ee78302019-02-05 15:51:15 -0800285
Florin Coras52814732019-06-12 15:38:19 -0700286/**
287 * Get tx pacer max burst
288 *
289 * @param tc transport connection
290 * @param time_now current cpu time
291 * @return max burst for connection
292 */
Florin Corasa8e71c82019-10-22 19:01:39 -0700293u32 transport_connection_tx_pacer_burst (transport_connection_t * tc);
Florin Coras1ee78302019-02-05 15:51:15 -0800294
295/**
Florin Coras52814732019-06-12 15:38:19 -0700296 * Get tx pacer current rate
297 *
298 * @param tc transport connection
299 * @return rate for connection in bytes/s
300 */
301u64 transport_connection_tx_pacer_rate (transport_connection_t * tc);
302
303/**
Florin Coras36ebcff2019-09-12 18:36:44 -0700304 * Reset tx pacer bucket
305 *
306 * @param tc transport connection
Florin Coras11e9e352019-11-13 19:09:47 -0800307 * @param bucket value the bucket will be reset to
Florin Coras36ebcff2019-09-12 18:36:44 -0700308 */
Florin Coras11e9e352019-11-13 19:09:47 -0800309void transport_connection_tx_pacer_reset_bucket (transport_connection_t * tc,
310 u32 bucket);
Florin Coras1ee78302019-02-05 15:51:15 -0800311
312/**
313 * Check if transport connection is paced
314 */
315always_inline u8
316transport_connection_is_tx_paced (transport_connection_t * tc)
317{
318 return (tc->flags & TRANSPORT_CONNECTION_F_IS_TX_PACED);
319}
320
321u8 *format_transport_pacer (u8 * s, va_list * args);
322
323/**
Florin Coras00482232019-08-02 12:52:00 -0700324 * Update tx bytes for paced transport connection
Florin Coras1ee78302019-02-05 15:51:15 -0800325 *
Florin Coras00482232019-08-02 12:52:00 -0700326 * If tx pacing is enabled, this update pacer bucket to account for the
Florin Coras1ee78302019-02-05 15:51:15 -0800327 * amount of bytes that have been sent.
328 *
329 * @param tc transport connection
Florin Coras1ee78302019-02-05 15:51:15 -0800330 * @param bytes bytes recently sent
331 */
Florin Coras00482232019-08-02 12:52:00 -0700332void transport_connection_update_tx_bytes (transport_connection_t * tc,
Florin Coras1ee78302019-02-05 15:51:15 -0800333 u32 bytes);
334
335void
336transport_connection_tx_pacer_update_bytes (transport_connection_t * tc,
337 u32 bytes);
338
339#endif /* SRC_VNET_SESSION_TRANSPORT_H_ */
Dave Barach68b0fb02017-02-28 15:15:56 -0500340
341/*
342 * fd.io coding-style-patch-verification: ON
343 *
344 * Local Variables:
345 * eval: (c-set-style "gnu")
346 * End:
347 */