blob: c4f74ebe9918eed18232e71dc72fa885d77e22f8 [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
Nathan Skrzypczake971bc92019-06-19 13:42:37 +020022typedef struct _transport_options_t
23{
24 transport_tx_fn_type_t tx_type;
25 transport_service_type_t service_type;
Nathan Skrzypczaka26349d2019-06-26 13:53:08 +020026 u8 half_open_has_fifos;
Nathan Skrzypczake971bc92019-06-19 13:42:37 +020027} transport_options_t;
28
Florin Corasde9a8492018-10-24 22:18:58 -070029/*
Florin Coras1ee78302019-02-05 15:51:15 -080030 * Transport protocol virtual function table
Florin Corasde9a8492018-10-24 22:18:58 -070031 */
Florin Coras1ee78302019-02-05 15:51:15 -080032/* *INDENT-OFF* */
33typedef struct _transport_proto_vft
Dave Barach68b0fb02017-02-28 15:15:56 -050034{
Florin Coras1ee78302019-02-05 15:51:15 -080035 /*
36 * Setup
37 */
38 u32 (*start_listen) (u32 session_index, transport_endpoint_t * lcl);
39 u32 (*stop_listen) (u32 conn_index);
40 int (*connect) (transport_endpoint_cfg_t * rmt);
41 void (*close) (u32 conn_index, u32 thread_index);
42 void (*cleanup) (u32 conn_index, u32 thread_index);
43 clib_error_t *(*enable) (vlib_main_t * vm, u8 is_en);
Dave Barach68b0fb02017-02-28 15:15:56 -050044
Florin Coras1ee78302019-02-05 15:51:15 -080045 /*
46 * Transmission
47 */
Dave Barach68b0fb02017-02-28 15:15:56 -050048
Florin Coras1ee78302019-02-05 15:51:15 -080049 u32 (*push_header) (transport_connection_t * tconn, vlib_buffer_t * b);
50 u16 (*send_mss) (transport_connection_t * tc);
51 u32 (*send_space) (transport_connection_t * tc);
52 u32 (*tx_fifo_offset) (transport_connection_t * tc);
53 void (*update_time) (f64 time_now, u8 thread_index);
54 void (*flush_data) (transport_connection_t *tconn);
Florin Coras26dd6de2019-07-23 23:54:47 -070055 int (*custom_tx) (void *session, u32 max_burst_size);
Florin Coras317b8e02019-04-17 09:57:46 -070056 int (*app_rx_evt) (transport_connection_t *tconn);
Florin Corasf6359c82017-06-19 12:26:09 -040057
Florin Coras1ee78302019-02-05 15:51:15 -080058 /*
59 * Connection retrieval
60 */
61 transport_connection_t *(*get_connection) (u32 conn_idx, u32 thread_idx);
62 transport_connection_t *(*get_listener) (u32 conn_index);
63 transport_connection_t *(*get_half_open) (u32 conn_index);
Florin Corasd67f1122018-05-21 17:47:40 -070064
Florin Coras1ee78302019-02-05 15:51:15 -080065 /*
66 * Format
67 */
68 u8 *(*format_connection) (u8 * s, va_list * args);
69 u8 *(*format_listener) (u8 * s, va_list * args);
70 u8 *(*format_half_open) (u8 * s, va_list * args);
Florin Corase69f4952017-03-07 10:06:24 -080071
Florin Coras09d18c22019-04-24 11:10:02 -070072 /*
73 * Properties retrieval
74 */
75 void (*get_transport_endpoint) (u32 conn_index, u32 thread_index,
76 transport_endpoint_t *tep, u8 is_lcl);
77 void (*get_transport_listener_endpoint) (u32 conn_index,
78 transport_endpoint_t *tep,
79 u8 is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +020080
Florin Coras1ee78302019-02-05 15:51:15 -080081 /*
82 * Properties
83 */
Nathan Skrzypczake971bc92019-06-19 13:42:37 +020084 transport_options_t transport_options;
Florin Coras1ee78302019-02-05 15:51:15 -080085} transport_proto_vft_t;
86/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -050087
Florin Coras1ee78302019-02-05 15:51:15 -080088extern transport_proto_vft_t *tp_vfts;
Florin Corasd67f1122018-05-21 17:47:40 -070089
Florin Coras1ee78302019-02-05 15:51:15 -080090#define transport_proto_foreach(VAR, BODY) \
91do { \
92 for (VAR = 0; VAR < vec_len (tp_vfts); VAR++) \
93 if (tp_vfts[VAR].push_header != 0) \
94 do { BODY; } while (0); \
95} while (0)
96
97int transport_connect (transport_proto_t tp, transport_endpoint_cfg_t * tep);
98void transport_close (transport_proto_t tp, u32 conn_index, u8 thread_index);
99u32 transport_start_listen (transport_proto_t tp, u32 session_index,
100 transport_endpoint_t * tep);
101u32 transport_stop_listen (transport_proto_t tp, u32 conn_index);
102void transport_cleanup (transport_proto_t tp, u32 conn_index,
103 u8 thread_index);
Aloys Augustincdb71702019-04-08 17:54:39 +0200104void transport_get_endpoint (transport_proto_t tp, u32 conn_index,
Florin Coras09d18c22019-04-24 11:10:02 -0700105 u32 thread_index, transport_endpoint_t * tep,
106 u8 is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200107void transport_get_listener_endpoint (transport_proto_t tp, u32 conn_index,
Florin Coras09d18c22019-04-24 11:10:02 -0700108 transport_endpoint_t * tep, u8 is_lcl);
Florin Coras1ee78302019-02-05 15:51:15 -0800109
110static inline transport_connection_t *
111transport_get_connection (transport_proto_t tp, u32 conn_index,
112 u8 thread_index)
Dave Barach2c25a622017-06-26 11:35:07 -0400113{
Florin Coras1ee78302019-02-05 15:51:15 -0800114 return tp_vfts[tp].get_connection (conn_index, thread_index);
Florin Corascea194d2017-10-02 00:18:51 -0700115}
116
Florin Coras1ee78302019-02-05 15:51:15 -0800117static inline transport_connection_t *
118transport_get_listener (transport_proto_t tp, u32 conn_index)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700119{
Florin Coras1ee78302019-02-05 15:51:15 -0800120 return tp_vfts[tp].get_listener (conn_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700121}
122
Florin Coras1ee78302019-02-05 15:51:15 -0800123static inline transport_connection_t *
124transport_get_half_open (transport_proto_t tp, u32 conn_index)
125{
126 return tp_vfts[tp].get_half_open (conn_index);
127}
128
Florin Corasf940f8a2019-03-06 10:44:38 -0800129static inline int
Florin Coras26dd6de2019-07-23 23:54:47 -0700130transport_custom_tx (transport_proto_t tp, void *s, u32 max_burst_size)
Florin Corasf940f8a2019-03-06 10:44:38 -0800131{
Florin Coras26dd6de2019-07-23 23:54:47 -0700132 return tp_vfts[tp].custom_tx (s, max_burst_size);
Florin Corasf940f8a2019-03-06 10:44:38 -0800133}
134
Florin Coras317b8e02019-04-17 09:57:46 -0700135static inline int
136transport_app_rx_evt (transport_proto_t tp, u32 conn_index, u32 thread_index)
137{
138 transport_connection_t *tc;
139 if (!tp_vfts[tp].app_rx_evt)
140 return 0;
141 tc = transport_get_connection (tp, conn_index, thread_index);
142 return tp_vfts[tp].app_rx_evt (tc);
143}
144
Florin Coras1ee78302019-02-05 15:51:15 -0800145void transport_register_protocol (transport_proto_t transport_proto,
146 const transport_proto_vft_t * vft,
147 fib_protocol_t fib_proto, u32 output_node);
148transport_proto_vft_t *transport_protocol_get_vft (transport_proto_t tp);
149void transport_update_time (f64 time_now, u8 thread_index);
150
Florin Coras3cbc04b2017-10-02 00:18:51 -0700151int transport_alloc_local_port (u8 proto, ip46_address_t * ip);
Florin Coras5665ced2018-10-25 18:03:45 -0700152int transport_alloc_local_endpoint (u8 proto, transport_endpoint_cfg_t * rmt,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700153 ip46_address_t * lcl_addr,
154 u16 * lcl_port);
155void transport_endpoint_cleanup (u8 proto, ip46_address_t * lcl_ip, u16 port);
Florin Coras1ee78302019-02-05 15:51:15 -0800156void transport_enable_disable (vlib_main_t * vm, u8 is_en);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700157void transport_init (void);
158
Florin Coras1ee78302019-02-05 15:51:15 -0800159always_inline u32
160transport_elog_track_index (transport_connection_t * tc)
161{
162#if TRANSPORT_DEBUG
163 return tc->elog_track.track_index_plus_one - 1;
164#else
165 return ~0;
166#endif
167}
168
169void transport_connection_tx_pacer_reset (transport_connection_t * tc,
170 u32 rate_bytes_per_sec,
171 u32 initial_bucket, u64 time_now);
172/**
173 * Initialize tx pacer for connection
174 *
175 * @param tc transport connection
176 * @param rate_bytes_per_second initial byte rate
177 * @param burst_bytes initial burst size in bytes
178 */
179void transport_connection_tx_pacer_init (transport_connection_t * tc,
180 u32 rate_bytes_per_sec,
181 u32 initial_bucket);
182
183/**
184 * Update tx pacer pacing rate
185 *
186 * @param tc transport connection
187 * @param bytes_per_sec new pacing rate
188 */
189void transport_connection_tx_pacer_update (transport_connection_t * tc,
190 u64 bytes_per_sec);
191
192/**
193 * Get maximum tx burst allowed for transport connection
194 *
195 * @param tc transport connection
196 * @param time_now current cpu time as returned by @ref clib_cpu_time_now
197 * @param mss transport's mss
198 */
199u32 transport_connection_snd_space (transport_connection_t * tc,
200 u64 time_now, u16 mss);
201
Florin Coras52814732019-06-12 15:38:19 -0700202/**
203 * Get tx pacer max burst
204 *
205 * @param tc transport connection
206 * @param time_now current cpu time
207 * @return max burst for connection
208 */
Florin Coras1ee78302019-02-05 15:51:15 -0800209u32 transport_connection_tx_pacer_burst (transport_connection_t * tc,
210 u64 time_now);
211
212/**
Florin Coras52814732019-06-12 15:38:19 -0700213 * Get tx pacer current rate
214 *
215 * @param tc transport connection
216 * @return rate for connection in bytes/s
217 */
218u64 transport_connection_tx_pacer_rate (transport_connection_t * tc);
219
220/**
Florin Coras1ee78302019-02-05 15:51:15 -0800221 * Initialize period for tx pacers
222 *
223 * Defines a unit of time with respect to number of cpu cycles that is to
224 * be used by all tx pacers.
225 */
226void transport_init_tx_pacers_period (void);
227
228/**
229 * Check if transport connection is paced
230 */
231always_inline u8
232transport_connection_is_tx_paced (transport_connection_t * tc)
233{
234 return (tc->flags & TRANSPORT_CONNECTION_F_IS_TX_PACED);
235}
236
237u8 *format_transport_pacer (u8 * s, va_list * args);
238
239/**
Florin Coras00482232019-08-02 12:52:00 -0700240 * Update tx bytes for paced transport connection
Florin Coras1ee78302019-02-05 15:51:15 -0800241 *
Florin Coras00482232019-08-02 12:52:00 -0700242 * If tx pacing is enabled, this update pacer bucket to account for the
Florin Coras1ee78302019-02-05 15:51:15 -0800243 * amount of bytes that have been sent.
244 *
245 * @param tc transport connection
Florin Coras1ee78302019-02-05 15:51:15 -0800246 * @param bytes bytes recently sent
247 */
Florin Coras00482232019-08-02 12:52:00 -0700248void transport_connection_update_tx_bytes (transport_connection_t * tc,
Florin Coras1ee78302019-02-05 15:51:15 -0800249 u32 bytes);
250
251void
252transport_connection_tx_pacer_update_bytes (transport_connection_t * tc,
253 u32 bytes);
254
255#endif /* SRC_VNET_SESSION_TRANSPORT_H_ */
Dave Barach68b0fb02017-02-28 15:15:56 -0500256
257/*
258 * fd.io coding-style-patch-verification: ON
259 *
260 * Local Variables:
261 * eval: (c-set-style "gnu")
262 * End:
263 */