blob: 3c4e15a9a6b24181ed9d32f52eb6a8edf2798b3d [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 Coras11e9e352019-11-13 19:09:47 -080025#define TRANSPORT_PACER_MIN_IDLE 100
26#define TRANSPORT_PACER_IDLE_FACTOR 0.05
Florin Corasc31dc312019-10-06 14:06:14 -070027
Nathan Skrzypczake971bc92019-06-19 13:42:37 +020028typedef struct _transport_options_t
29{
30 transport_tx_fn_type_t tx_type;
31 transport_service_type_t service_type;
Nathan Skrzypczaka26349d2019-06-26 13:53:08 +020032 u8 half_open_has_fifos;
Nathan Skrzypczake971bc92019-06-19 13:42:37 +020033} transport_options_t;
34
Florin Coras70f879d2020-03-13 17:54:42 +000035typedef enum transport_snd_flags_
36{
37 TRANSPORT_SND_F_DESCHED = 1 << 0,
38 TRANSPORT_SND_F_POSTPONE = 1 << 1,
39 TRANSPORT_SND_N_FLAGS
40} __clib_packed transport_snd_flags_t;
41
42typedef struct transport_send_params_
43{
44 u32 snd_space;
45 u32 tx_offset;
46 u16 snd_mss;
47 transport_snd_flags_t flags;
48} transport_send_params_t;
49
Florin Corasde9a8492018-10-24 22:18:58 -070050/*
Florin Coras1ee78302019-02-05 15:51:15 -080051 * Transport protocol virtual function table
Florin Corasde9a8492018-10-24 22:18:58 -070052 */
Florin Coras1ee78302019-02-05 15:51:15 -080053/* *INDENT-OFF* */
54typedef struct _transport_proto_vft
Dave Barach68b0fb02017-02-28 15:15:56 -050055{
Florin Coras1ee78302019-02-05 15:51:15 -080056 /*
57 * Setup
58 */
59 u32 (*start_listen) (u32 session_index, transport_endpoint_t * lcl);
60 u32 (*stop_listen) (u32 conn_index);
61 int (*connect) (transport_endpoint_cfg_t * rmt);
62 void (*close) (u32 conn_index, u32 thread_index);
Florin Corasdfb3b872019-08-16 17:48:44 -070063 void (*reset) (u32 conn_index, u32 thread_index);
Florin Coras1ee78302019-02-05 15:51:15 -080064 void (*cleanup) (u32 conn_index, u32 thread_index);
65 clib_error_t *(*enable) (vlib_main_t * vm, u8 is_en);
Dave Barach68b0fb02017-02-28 15:15:56 -050066
Florin Coras1ee78302019-02-05 15:51:15 -080067 /*
68 * Transmission
69 */
Dave Barach68b0fb02017-02-28 15:15:56 -050070
Florin Coras1ee78302019-02-05 15:51:15 -080071 u32 (*push_header) (transport_connection_t * tconn, vlib_buffer_t * b);
Florin Coras70f879d2020-03-13 17:54:42 +000072 int (*send_params) (transport_connection_t * tconn,
73 transport_send_params_t *sp);
Florin Coras1ee78302019-02-05 15:51:15 -080074 void (*update_time) (f64 time_now, u8 thread_index);
75 void (*flush_data) (transport_connection_t *tconn);
Florin Coras26dd6de2019-07-23 23:54:47 -070076 int (*custom_tx) (void *session, u32 max_burst_size);
Florin Coras317b8e02019-04-17 09:57:46 -070077 int (*app_rx_evt) (transport_connection_t *tconn);
Florin Corasf6359c82017-06-19 12:26:09 -040078
Florin Coras1ee78302019-02-05 15:51:15 -080079 /*
80 * Connection retrieval
81 */
82 transport_connection_t *(*get_connection) (u32 conn_idx, u32 thread_idx);
83 transport_connection_t *(*get_listener) (u32 conn_index);
84 transport_connection_t *(*get_half_open) (u32 conn_index);
Florin Corasd67f1122018-05-21 17:47:40 -070085
Florin Coras1ee78302019-02-05 15:51:15 -080086 /*
87 * Format
88 */
89 u8 *(*format_connection) (u8 * s, va_list * args);
90 u8 *(*format_listener) (u8 * s, va_list * args);
91 u8 *(*format_half_open) (u8 * s, va_list * args);
Florin Corase69f4952017-03-07 10:06:24 -080092
Florin Coras09d18c22019-04-24 11:10:02 -070093 /*
94 * Properties retrieval
95 */
96 void (*get_transport_endpoint) (u32 conn_index, u32 thread_index,
97 transport_endpoint_t *tep, u8 is_lcl);
98 void (*get_transport_listener_endpoint) (u32 conn_index,
99 transport_endpoint_t *tep,
100 u8 is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200101
Florin Coras1ee78302019-02-05 15:51:15 -0800102 /*
103 * Properties
104 */
Nathan Skrzypczake971bc92019-06-19 13:42:37 +0200105 transport_options_t transport_options;
Florin Coras1ee78302019-02-05 15:51:15 -0800106} transport_proto_vft_t;
107/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500108
Florin Coras1ee78302019-02-05 15:51:15 -0800109extern transport_proto_vft_t *tp_vfts;
Florin Corasd67f1122018-05-21 17:47:40 -0700110
Florin Coras1ee78302019-02-05 15:51:15 -0800111#define transport_proto_foreach(VAR, BODY) \
112do { \
113 for (VAR = 0; VAR < vec_len (tp_vfts); VAR++) \
114 if (tp_vfts[VAR].push_header != 0) \
115 do { BODY; } while (0); \
116} while (0)
117
118int transport_connect (transport_proto_t tp, transport_endpoint_cfg_t * tep);
119void transport_close (transport_proto_t tp, u32 conn_index, u8 thread_index);
Florin Corasdfb3b872019-08-16 17:48:44 -0700120void transport_reset (transport_proto_t tp, u32 conn_index, u8 thread_index);
Florin Coras1ee78302019-02-05 15:51:15 -0800121u32 transport_start_listen (transport_proto_t tp, u32 session_index,
122 transport_endpoint_t * tep);
123u32 transport_stop_listen (transport_proto_t tp, u32 conn_index);
124void transport_cleanup (transport_proto_t tp, u32 conn_index,
125 u8 thread_index);
Aloys Augustincdb71702019-04-08 17:54:39 +0200126void transport_get_endpoint (transport_proto_t tp, u32 conn_index,
Florin Coras09d18c22019-04-24 11:10:02 -0700127 u32 thread_index, transport_endpoint_t * tep,
128 u8 is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200129void transport_get_listener_endpoint (transport_proto_t tp, u32 conn_index,
Florin Coras09d18c22019-04-24 11:10:02 -0700130 transport_endpoint_t * tep, u8 is_lcl);
Florin Coras1ee78302019-02-05 15:51:15 -0800131
132static inline transport_connection_t *
133transport_get_connection (transport_proto_t tp, u32 conn_index,
134 u8 thread_index)
Dave Barach2c25a622017-06-26 11:35:07 -0400135{
Florin Coras1ee78302019-02-05 15:51:15 -0800136 return tp_vfts[tp].get_connection (conn_index, thread_index);
Florin Corascea194d2017-10-02 00:18:51 -0700137}
138
Florin Coras1ee78302019-02-05 15:51:15 -0800139static inline transport_connection_t *
140transport_get_listener (transport_proto_t tp, u32 conn_index)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700141{
Florin Coras1ee78302019-02-05 15:51:15 -0800142 return tp_vfts[tp].get_listener (conn_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700143}
144
Florin Coras1ee78302019-02-05 15:51:15 -0800145static inline transport_connection_t *
146transport_get_half_open (transport_proto_t tp, u32 conn_index)
147{
148 return tp_vfts[tp].get_half_open (conn_index);
149}
150
Florin Corasf940f8a2019-03-06 10:44:38 -0800151static inline int
Florin Coras26dd6de2019-07-23 23:54:47 -0700152transport_custom_tx (transport_proto_t tp, void *s, u32 max_burst_size)
Florin Corasf940f8a2019-03-06 10:44:38 -0800153{
Florin Coras26dd6de2019-07-23 23:54:47 -0700154 return tp_vfts[tp].custom_tx (s, max_burst_size);
Florin Corasf940f8a2019-03-06 10:44:38 -0800155}
156
Florin Coras317b8e02019-04-17 09:57:46 -0700157static inline int
158transport_app_rx_evt (transport_proto_t tp, u32 conn_index, u32 thread_index)
159{
160 transport_connection_t *tc;
161 if (!tp_vfts[tp].app_rx_evt)
162 return 0;
163 tc = transport_get_connection (tp, conn_index, thread_index);
164 return tp_vfts[tp].app_rx_evt (tc);
165}
166
Florin Coras11e9e352019-11-13 19:09:47 -0800167/**
Florin Coras70f879d2020-03-13 17:54:42 +0000168 * Get send parameters for transport connection
169 *
170 * These include maximum tx burst, mss, tx offset and other flags
171 * transport might want to provide to sessin layer
Florin Coras11e9e352019-11-13 19:09:47 -0800172 *
173 * @param tc transport connection
Florin Coras70f879d2020-03-13 17:54:42 +0000174 * @param sp send paramaters
175 *
Florin Coras11e9e352019-11-13 19:09:47 -0800176 */
177static inline u32
Florin Coras70f879d2020-03-13 17:54:42 +0000178transport_connection_snd_params (transport_connection_t * tc,
179 transport_send_params_t * sp)
Florin Coras11e9e352019-11-13 19:09:47 -0800180{
Florin Coras70f879d2020-03-13 17:54:42 +0000181 return tp_vfts[tc->proto].send_params (tc, sp);
Florin Coras11e9e352019-11-13 19:09:47 -0800182}
183
Florin Coras70f879d2020-03-13 17:54:42 +0000184static inline u8
185transport_connection_is_descheduled (transport_connection_t * tc)
186{
Florin Coras6080e0d2020-03-13 20:39:43 +0000187 return ((tc->flags & TRANSPORT_CONNECTION_F_DESCHED) ? 1 : 0);
Florin Coras70f879d2020-03-13 17:54:42 +0000188}
189
190static inline void
191transport_connection_deschedule (transport_connection_t * tc)
192{
193 tc->flags |= TRANSPORT_CONNECTION_F_DESCHED;
194}
195
196void transport_connection_reschedule (transport_connection_t * tc);
197
Florin Coras1ee78302019-02-05 15:51:15 -0800198void transport_register_protocol (transport_proto_t transport_proto,
199 const transport_proto_vft_t * vft,
200 fib_protocol_t fib_proto, u32 output_node);
201transport_proto_vft_t *transport_protocol_get_vft (transport_proto_t tp);
Florin Corasa8e71c82019-10-22 19:01:39 -0700202void transport_update_time (clib_time_type_t time_now, u8 thread_index);
Florin Coras1ee78302019-02-05 15:51:15 -0800203
Florin Coras3cbc04b2017-10-02 00:18:51 -0700204int transport_alloc_local_port (u8 proto, ip46_address_t * ip);
Florin Coras5665ced2018-10-25 18:03:45 -0700205int transport_alloc_local_endpoint (u8 proto, transport_endpoint_cfg_t * rmt,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700206 ip46_address_t * lcl_addr,
207 u16 * lcl_port);
208void transport_endpoint_cleanup (u8 proto, ip46_address_t * lcl_ip, u16 port);
Florin Coras1ee78302019-02-05 15:51:15 -0800209void transport_enable_disable (vlib_main_t * vm, u8 is_en);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700210void transport_init (void);
211
Florin Coras1ee78302019-02-05 15:51:15 -0800212always_inline u32
213transport_elog_track_index (transport_connection_t * tc)
214{
215#if TRANSPORT_DEBUG
216 return tc->elog_track.track_index_plus_one - 1;
217#else
218 return ~0;
219#endif
220}
221
222void transport_connection_tx_pacer_reset (transport_connection_t * tc,
Florin Corasa8e71c82019-10-22 19:01:39 -0700223 u64 rate_bytes_per_sec,
Florin Coras11e9e352019-11-13 19:09:47 -0800224 u32 initial_bucket,
225 clib_us_time_t rtt);
Florin Coras1ee78302019-02-05 15:51:15 -0800226/**
227 * Initialize tx pacer for connection
228 *
229 * @param tc transport connection
230 * @param rate_bytes_per_second initial byte rate
231 * @param burst_bytes initial burst size in bytes
232 */
233void transport_connection_tx_pacer_init (transport_connection_t * tc,
Florin Corasa8e71c82019-10-22 19:01:39 -0700234 u64 rate_bytes_per_sec,
Florin Coras1ee78302019-02-05 15:51:15 -0800235 u32 initial_bucket);
236
237/**
238 * Update tx pacer pacing rate
239 *
240 * @param tc transport connection
241 * @param bytes_per_sec new pacing rate
Florin Coras11e9e352019-11-13 19:09:47 -0800242 * @param rtt connection rtt that is used to compute
243 * inactivity time after which pacer bucket is
244 * reset to 1 mtu
Florin Coras1ee78302019-02-05 15:51:15 -0800245 */
246void transport_connection_tx_pacer_update (transport_connection_t * tc,
Florin Coras11e9e352019-11-13 19:09:47 -0800247 u64 bytes_per_sec,
248 clib_us_time_t rtt);
Florin Coras1ee78302019-02-05 15:51:15 -0800249
Florin Coras52814732019-06-12 15:38:19 -0700250/**
251 * Get tx pacer max burst
252 *
253 * @param tc transport connection
254 * @param time_now current cpu time
255 * @return max burst for connection
256 */
Florin Corasa8e71c82019-10-22 19:01:39 -0700257u32 transport_connection_tx_pacer_burst (transport_connection_t * tc);
Florin Coras1ee78302019-02-05 15:51:15 -0800258
259/**
Florin Coras52814732019-06-12 15:38:19 -0700260 * Get tx pacer current rate
261 *
262 * @param tc transport connection
263 * @return rate for connection in bytes/s
264 */
265u64 transport_connection_tx_pacer_rate (transport_connection_t * tc);
266
267/**
Florin Coras36ebcff2019-09-12 18:36:44 -0700268 * Reset tx pacer bucket
269 *
270 * @param tc transport connection
Florin Coras11e9e352019-11-13 19:09:47 -0800271 * @param bucket value the bucket will be reset to
Florin Coras36ebcff2019-09-12 18:36:44 -0700272 */
Florin Coras11e9e352019-11-13 19:09:47 -0800273void transport_connection_tx_pacer_reset_bucket (transport_connection_t * tc,
274 u32 bucket);
Florin Coras1ee78302019-02-05 15:51:15 -0800275
276/**
277 * Check if transport connection is paced
278 */
279always_inline u8
280transport_connection_is_tx_paced (transport_connection_t * tc)
281{
282 return (tc->flags & TRANSPORT_CONNECTION_F_IS_TX_PACED);
283}
284
285u8 *format_transport_pacer (u8 * s, va_list * args);
286
287/**
Florin Coras00482232019-08-02 12:52:00 -0700288 * Update tx bytes for paced transport connection
Florin Coras1ee78302019-02-05 15:51:15 -0800289 *
Florin Coras00482232019-08-02 12:52:00 -0700290 * If tx pacing is enabled, this update pacer bucket to account for the
Florin Coras1ee78302019-02-05 15:51:15 -0800291 * amount of bytes that have been sent.
292 *
293 * @param tc transport connection
Florin Coras1ee78302019-02-05 15:51:15 -0800294 * @param bytes bytes recently sent
295 */
Florin Coras00482232019-08-02 12:52:00 -0700296void transport_connection_update_tx_bytes (transport_connection_t * tc,
Florin Coras1ee78302019-02-05 15:51:15 -0800297 u32 bytes);
298
299void
300transport_connection_tx_pacer_update_bytes (transport_connection_t * tc,
301 u32 bytes);
302
303#endif /* SRC_VNET_SESSION_TRANSPORT_H_ */
Dave Barach68b0fb02017-02-28 15:15:56 -0500304
305/*
306 * fd.io coding-style-patch-verification: ON
307 *
308 * Local Variables:
309 * eval: (c-set-style "gnu")
310 * End:
311 */