blob: df246a9b305b31cefbf8812b850bacdbb46c2d38 [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)
25
Nathan Skrzypczake971bc92019-06-19 13:42:37 +020026typedef struct _transport_options_t
27{
28 transport_tx_fn_type_t tx_type;
29 transport_service_type_t service_type;
Nathan Skrzypczaka26349d2019-06-26 13:53:08 +020030 u8 half_open_has_fifos;
Nathan Skrzypczake971bc92019-06-19 13:42:37 +020031} transport_options_t;
32
Florin Corasde9a8492018-10-24 22:18:58 -070033/*
Florin Coras1ee78302019-02-05 15:51:15 -080034 * Transport protocol virtual function table
Florin Corasde9a8492018-10-24 22:18:58 -070035 */
Florin Coras1ee78302019-02-05 15:51:15 -080036/* *INDENT-OFF* */
37typedef struct _transport_proto_vft
Dave Barach68b0fb02017-02-28 15:15:56 -050038{
Florin Coras1ee78302019-02-05 15:51:15 -080039 /*
40 * Setup
41 */
42 u32 (*start_listen) (u32 session_index, transport_endpoint_t * lcl);
43 u32 (*stop_listen) (u32 conn_index);
44 int (*connect) (transport_endpoint_cfg_t * rmt);
45 void (*close) (u32 conn_index, u32 thread_index);
Florin Corasdfb3b872019-08-16 17:48:44 -070046 void (*reset) (u32 conn_index, u32 thread_index);
Florin Coras1ee78302019-02-05 15:51:15 -080047 void (*cleanup) (u32 conn_index, u32 thread_index);
48 clib_error_t *(*enable) (vlib_main_t * vm, u8 is_en);
Dave Barach68b0fb02017-02-28 15:15:56 -050049
Florin Coras1ee78302019-02-05 15:51:15 -080050 /*
51 * Transmission
52 */
Dave Barach68b0fb02017-02-28 15:15:56 -050053
Florin Coras1ee78302019-02-05 15:51:15 -080054 u32 (*push_header) (transport_connection_t * tconn, vlib_buffer_t * b);
55 u16 (*send_mss) (transport_connection_t * tc);
56 u32 (*send_space) (transport_connection_t * tc);
57 u32 (*tx_fifo_offset) (transport_connection_t * tc);
58 void (*update_time) (f64 time_now, u8 thread_index);
59 void (*flush_data) (transport_connection_t *tconn);
Florin Coras26dd6de2019-07-23 23:54:47 -070060 int (*custom_tx) (void *session, u32 max_burst_size);
Florin Coras317b8e02019-04-17 09:57:46 -070061 int (*app_rx_evt) (transport_connection_t *tconn);
Florin Corasf6359c82017-06-19 12:26:09 -040062
Florin Coras1ee78302019-02-05 15:51:15 -080063 /*
64 * Connection retrieval
65 */
66 transport_connection_t *(*get_connection) (u32 conn_idx, u32 thread_idx);
67 transport_connection_t *(*get_listener) (u32 conn_index);
68 transport_connection_t *(*get_half_open) (u32 conn_index);
Florin Corasd67f1122018-05-21 17:47:40 -070069
Florin Coras1ee78302019-02-05 15:51:15 -080070 /*
71 * Format
72 */
73 u8 *(*format_connection) (u8 * s, va_list * args);
74 u8 *(*format_listener) (u8 * s, va_list * args);
75 u8 *(*format_half_open) (u8 * s, va_list * args);
Florin Corase69f4952017-03-07 10:06:24 -080076
Florin Coras09d18c22019-04-24 11:10:02 -070077 /*
78 * Properties retrieval
79 */
80 void (*get_transport_endpoint) (u32 conn_index, u32 thread_index,
81 transport_endpoint_t *tep, u8 is_lcl);
82 void (*get_transport_listener_endpoint) (u32 conn_index,
83 transport_endpoint_t *tep,
84 u8 is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +020085
Florin Coras1ee78302019-02-05 15:51:15 -080086 /*
87 * Properties
88 */
Nathan Skrzypczake971bc92019-06-19 13:42:37 +020089 transport_options_t transport_options;
Florin Coras1ee78302019-02-05 15:51:15 -080090} transport_proto_vft_t;
91/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -050092
Florin Coras1ee78302019-02-05 15:51:15 -080093extern transport_proto_vft_t *tp_vfts;
Florin Corasd67f1122018-05-21 17:47:40 -070094
Florin Coras1ee78302019-02-05 15:51:15 -080095#define transport_proto_foreach(VAR, BODY) \
96do { \
97 for (VAR = 0; VAR < vec_len (tp_vfts); VAR++) \
98 if (tp_vfts[VAR].push_header != 0) \
99 do { BODY; } while (0); \
100} while (0)
101
102int transport_connect (transport_proto_t tp, transport_endpoint_cfg_t * tep);
103void transport_close (transport_proto_t tp, u32 conn_index, u8 thread_index);
Florin Corasdfb3b872019-08-16 17:48:44 -0700104void transport_reset (transport_proto_t tp, u32 conn_index, u8 thread_index);
Florin Coras1ee78302019-02-05 15:51:15 -0800105u32 transport_start_listen (transport_proto_t tp, u32 session_index,
106 transport_endpoint_t * tep);
107u32 transport_stop_listen (transport_proto_t tp, u32 conn_index);
108void transport_cleanup (transport_proto_t tp, u32 conn_index,
109 u8 thread_index);
Aloys Augustincdb71702019-04-08 17:54:39 +0200110void transport_get_endpoint (transport_proto_t tp, u32 conn_index,
Florin Coras09d18c22019-04-24 11:10:02 -0700111 u32 thread_index, transport_endpoint_t * tep,
112 u8 is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200113void transport_get_listener_endpoint (transport_proto_t tp, u32 conn_index,
Florin Coras09d18c22019-04-24 11:10:02 -0700114 transport_endpoint_t * tep, u8 is_lcl);
Florin Coras1ee78302019-02-05 15:51:15 -0800115
116static inline transport_connection_t *
117transport_get_connection (transport_proto_t tp, u32 conn_index,
118 u8 thread_index)
Dave Barach2c25a622017-06-26 11:35:07 -0400119{
Florin Coras1ee78302019-02-05 15:51:15 -0800120 return tp_vfts[tp].get_connection (conn_index, thread_index);
Florin Corascea194d2017-10-02 00:18:51 -0700121}
122
Florin Coras1ee78302019-02-05 15:51:15 -0800123static inline transport_connection_t *
124transport_get_listener (transport_proto_t tp, u32 conn_index)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700125{
Florin Coras1ee78302019-02-05 15:51:15 -0800126 return tp_vfts[tp].get_listener (conn_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700127}
128
Florin Coras1ee78302019-02-05 15:51:15 -0800129static inline transport_connection_t *
130transport_get_half_open (transport_proto_t tp, u32 conn_index)
131{
132 return tp_vfts[tp].get_half_open (conn_index);
133}
134
Florin Corasf940f8a2019-03-06 10:44:38 -0800135static inline int
Florin Coras26dd6de2019-07-23 23:54:47 -0700136transport_custom_tx (transport_proto_t tp, void *s, u32 max_burst_size)
Florin Corasf940f8a2019-03-06 10:44:38 -0800137{
Florin Coras26dd6de2019-07-23 23:54:47 -0700138 return tp_vfts[tp].custom_tx (s, max_burst_size);
Florin Corasf940f8a2019-03-06 10:44:38 -0800139}
140
Florin Coras317b8e02019-04-17 09:57:46 -0700141static inline int
142transport_app_rx_evt (transport_proto_t tp, u32 conn_index, u32 thread_index)
143{
144 transport_connection_t *tc;
145 if (!tp_vfts[tp].app_rx_evt)
146 return 0;
147 tc = transport_get_connection (tp, conn_index, thread_index);
148 return tp_vfts[tp].app_rx_evt (tc);
149}
150
Florin Coras1ee78302019-02-05 15:51:15 -0800151void transport_register_protocol (transport_proto_t transport_proto,
152 const transport_proto_vft_t * vft,
153 fib_protocol_t fib_proto, u32 output_node);
154transport_proto_vft_t *transport_protocol_get_vft (transport_proto_t tp);
Florin Corasa8e71c82019-10-22 19:01:39 -0700155void transport_update_time (clib_time_type_t time_now, u8 thread_index);
Florin Coras1ee78302019-02-05 15:51:15 -0800156
Florin Coras3cbc04b2017-10-02 00:18:51 -0700157int transport_alloc_local_port (u8 proto, ip46_address_t * ip);
Florin Coras5665ced2018-10-25 18:03:45 -0700158int transport_alloc_local_endpoint (u8 proto, transport_endpoint_cfg_t * rmt,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700159 ip46_address_t * lcl_addr,
160 u16 * lcl_port);
161void transport_endpoint_cleanup (u8 proto, ip46_address_t * lcl_ip, u16 port);
Florin Coras1ee78302019-02-05 15:51:15 -0800162void transport_enable_disable (vlib_main_t * vm, u8 is_en);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700163void transport_init (void);
164
Florin Coras1ee78302019-02-05 15:51:15 -0800165always_inline u32
166transport_elog_track_index (transport_connection_t * tc)
167{
168#if TRANSPORT_DEBUG
169 return tc->elog_track.track_index_plus_one - 1;
170#else
171 return ~0;
172#endif
173}
174
175void transport_connection_tx_pacer_reset (transport_connection_t * tc,
Florin Corasa8e71c82019-10-22 19:01:39 -0700176 u64 rate_bytes_per_sec,
177 u32 initial_bucket);
Florin Coras1ee78302019-02-05 15:51:15 -0800178/**
179 * Initialize tx pacer for connection
180 *
181 * @param tc transport connection
182 * @param rate_bytes_per_second initial byte rate
183 * @param burst_bytes initial burst size in bytes
184 */
185void transport_connection_tx_pacer_init (transport_connection_t * tc,
Florin Corasa8e71c82019-10-22 19:01:39 -0700186 u64 rate_bytes_per_sec,
Florin Coras1ee78302019-02-05 15:51:15 -0800187 u32 initial_bucket);
188
189/**
190 * Update tx pacer pacing rate
191 *
192 * @param tc transport connection
193 * @param bytes_per_sec new pacing rate
194 */
195void transport_connection_tx_pacer_update (transport_connection_t * tc,
196 u64 bytes_per_sec);
197
198/**
199 * Get maximum tx burst allowed for transport connection
200 *
201 * @param tc transport connection
202 * @param time_now current cpu time as returned by @ref clib_cpu_time_now
203 * @param mss transport's mss
204 */
Florin Corasa8e71c82019-10-22 19:01:39 -0700205u32 transport_connection_snd_space (transport_connection_t * tc, u16 mss);
Florin Coras1ee78302019-02-05 15:51:15 -0800206
Florin Coras52814732019-06-12 15:38:19 -0700207/**
208 * Get tx pacer max burst
209 *
210 * @param tc transport connection
211 * @param time_now current cpu time
212 * @return max burst for connection
213 */
Florin Corasa8e71c82019-10-22 19:01:39 -0700214u32 transport_connection_tx_pacer_burst (transport_connection_t * tc);
Florin Coras1ee78302019-02-05 15:51:15 -0800215
216/**
Florin Coras52814732019-06-12 15:38:19 -0700217 * Get tx pacer current rate
218 *
219 * @param tc transport connection
220 * @return rate for connection in bytes/s
221 */
222u64 transport_connection_tx_pacer_rate (transport_connection_t * tc);
223
224/**
Florin Coras36ebcff2019-09-12 18:36:44 -0700225 * Reset tx pacer bucket
226 *
227 * @param tc transport connection
228 * @param time_now current cpu time
229 */
Florin Corasa8e71c82019-10-22 19:01:39 -0700230void transport_connection_tx_pacer_reset_bucket (transport_connection_t * tc);
Florin Coras1ee78302019-02-05 15:51:15 -0800231
232/**
233 * Check if transport connection is paced
234 */
235always_inline u8
236transport_connection_is_tx_paced (transport_connection_t * tc)
237{
238 return (tc->flags & TRANSPORT_CONNECTION_F_IS_TX_PACED);
239}
240
241u8 *format_transport_pacer (u8 * s, va_list * args);
242
243/**
Florin Coras00482232019-08-02 12:52:00 -0700244 * Update tx bytes for paced transport connection
Florin Coras1ee78302019-02-05 15:51:15 -0800245 *
Florin Coras00482232019-08-02 12:52:00 -0700246 * If tx pacing is enabled, this update pacer bucket to account for the
Florin Coras1ee78302019-02-05 15:51:15 -0800247 * amount of bytes that have been sent.
248 *
249 * @param tc transport connection
Florin Coras1ee78302019-02-05 15:51:15 -0800250 * @param bytes bytes recently sent
251 */
Florin Coras00482232019-08-02 12:52:00 -0700252void transport_connection_update_tx_bytes (transport_connection_t * tc,
Florin Coras1ee78302019-02-05 15:51:15 -0800253 u32 bytes);
254
255void
256transport_connection_tx_pacer_update_bytes (transport_connection_t * tc,
257 u32 bytes);
258
259#endif /* SRC_VNET_SESSION_TRANSPORT_H_ */
Dave Barach68b0fb02017-02-28 15:15:56 -0500260
261/*
262 * fd.io coding-style-patch-verification: ON
263 *
264 * Local Variables:
265 * eval: (c-set-style "gnu")
266 * End:
267 */