blob: fadb02d6710d58e5a42f1105652f35ee424dfe3e [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 Corasde9a8492018-10-24 22:18:58 -070022/*
Florin Coras1ee78302019-02-05 15:51:15 -080023 * Transport protocol virtual function table
Florin Corasde9a8492018-10-24 22:18:58 -070024 */
Florin Coras1ee78302019-02-05 15:51:15 -080025/* *INDENT-OFF* */
26typedef struct _transport_proto_vft
Dave Barach68b0fb02017-02-28 15:15:56 -050027{
Florin Coras1ee78302019-02-05 15:51:15 -080028 /*
29 * Setup
30 */
31 u32 (*start_listen) (u32 session_index, transport_endpoint_t * lcl);
32 u32 (*stop_listen) (u32 conn_index);
33 int (*connect) (transport_endpoint_cfg_t * rmt);
34 void (*close) (u32 conn_index, u32 thread_index);
35 void (*cleanup) (u32 conn_index, u32 thread_index);
36 clib_error_t *(*enable) (vlib_main_t * vm, u8 is_en);
Dave Barach68b0fb02017-02-28 15:15:56 -050037
Florin Coras1ee78302019-02-05 15:51:15 -080038 /*
39 * Transmission
40 */
Dave Barach68b0fb02017-02-28 15:15:56 -050041
Florin Coras1ee78302019-02-05 15:51:15 -080042 u32 (*push_header) (transport_connection_t * tconn, vlib_buffer_t * b);
43 u16 (*send_mss) (transport_connection_t * tc);
44 u32 (*send_space) (transport_connection_t * tc);
45 u32 (*tx_fifo_offset) (transport_connection_t * tc);
46 void (*update_time) (f64 time_now, u8 thread_index);
47 void (*flush_data) (transport_connection_t *tconn);
Florin Corasf940f8a2019-03-06 10:44:38 -080048 int (*custom_tx) (void *session);
Florin Coras317b8e02019-04-17 09:57:46 -070049 int (*app_rx_evt) (transport_connection_t *tconn);
Florin Corasf6359c82017-06-19 12:26:09 -040050
Florin Coras1ee78302019-02-05 15:51:15 -080051 /*
52 * Connection retrieval
53 */
54 transport_connection_t *(*get_connection) (u32 conn_idx, u32 thread_idx);
55 transport_connection_t *(*get_listener) (u32 conn_index);
56 transport_connection_t *(*get_half_open) (u32 conn_index);
Florin Corasd67f1122018-05-21 17:47:40 -070057
Florin Coras1ee78302019-02-05 15:51:15 -080058 /*
59 * Format
60 */
61 u8 *(*format_connection) (u8 * s, va_list * args);
62 u8 *(*format_listener) (u8 * s, va_list * args);
63 u8 *(*format_half_open) (u8 * s, va_list * args);
Florin Corase69f4952017-03-07 10:06:24 -080064
Florin Coras09d18c22019-04-24 11:10:02 -070065 /*
66 * Properties retrieval
67 */
68 void (*get_transport_endpoint) (u32 conn_index, u32 thread_index,
69 transport_endpoint_t *tep, u8 is_lcl);
70 void (*get_transport_listener_endpoint) (u32 conn_index,
71 transport_endpoint_t *tep,
72 u8 is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +020073
Florin Coras1ee78302019-02-05 15:51:15 -080074 /*
75 * Properties
76 */
77 transport_tx_fn_type_t tx_type;
78 transport_service_type_t service_type;
79} transport_proto_vft_t;
80/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -050081
Florin Coras1ee78302019-02-05 15:51:15 -080082extern transport_proto_vft_t *tp_vfts;
Florin Corasd67f1122018-05-21 17:47:40 -070083
Florin Coras1ee78302019-02-05 15:51:15 -080084#define transport_proto_foreach(VAR, BODY) \
85do { \
86 for (VAR = 0; VAR < vec_len (tp_vfts); VAR++) \
87 if (tp_vfts[VAR].push_header != 0) \
88 do { BODY; } while (0); \
89} while (0)
90
91int transport_connect (transport_proto_t tp, transport_endpoint_cfg_t * tep);
92void transport_close (transport_proto_t tp, u32 conn_index, u8 thread_index);
93u32 transport_start_listen (transport_proto_t tp, u32 session_index,
94 transport_endpoint_t * tep);
95u32 transport_stop_listen (transport_proto_t tp, u32 conn_index);
96void transport_cleanup (transport_proto_t tp, u32 conn_index,
97 u8 thread_index);
Aloys Augustincdb71702019-04-08 17:54:39 +020098void transport_get_endpoint (transport_proto_t tp, u32 conn_index,
Florin Coras09d18c22019-04-24 11:10:02 -070099 u32 thread_index, transport_endpoint_t * tep,
100 u8 is_lcl);
Aloys Augustincdb71702019-04-08 17:54:39 +0200101void transport_get_listener_endpoint (transport_proto_t tp, u32 conn_index,
Florin Coras09d18c22019-04-24 11:10:02 -0700102 transport_endpoint_t * tep, u8 is_lcl);
Florin Coras1ee78302019-02-05 15:51:15 -0800103
104static inline transport_connection_t *
105transport_get_connection (transport_proto_t tp, u32 conn_index,
106 u8 thread_index)
Dave Barach2c25a622017-06-26 11:35:07 -0400107{
Florin Coras1ee78302019-02-05 15:51:15 -0800108 return tp_vfts[tp].get_connection (conn_index, thread_index);
Florin Corascea194d2017-10-02 00:18:51 -0700109}
110
Florin Coras1ee78302019-02-05 15:51:15 -0800111static inline transport_connection_t *
112transport_get_listener (transport_proto_t tp, u32 conn_index)
Florin Coras3cbc04b2017-10-02 00:18:51 -0700113{
Florin Coras1ee78302019-02-05 15:51:15 -0800114 return tp_vfts[tp].get_listener (conn_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700115}
116
Florin Coras1ee78302019-02-05 15:51:15 -0800117static inline transport_connection_t *
118transport_get_half_open (transport_proto_t tp, u32 conn_index)
119{
120 return tp_vfts[tp].get_half_open (conn_index);
121}
122
Florin Corasf940f8a2019-03-06 10:44:38 -0800123static inline int
124transport_custom_tx (transport_proto_t tp, void *s)
125{
126 return tp_vfts[tp].custom_tx (s);
127}
128
Florin Coras317b8e02019-04-17 09:57:46 -0700129static inline int
130transport_app_rx_evt (transport_proto_t tp, u32 conn_index, u32 thread_index)
131{
132 transport_connection_t *tc;
133 if (!tp_vfts[tp].app_rx_evt)
134 return 0;
135 tc = transport_get_connection (tp, conn_index, thread_index);
136 return tp_vfts[tp].app_rx_evt (tc);
137}
138
Florin Coras1ee78302019-02-05 15:51:15 -0800139void transport_register_protocol (transport_proto_t transport_proto,
140 const transport_proto_vft_t * vft,
141 fib_protocol_t fib_proto, u32 output_node);
142transport_proto_vft_t *transport_protocol_get_vft (transport_proto_t tp);
143void transport_update_time (f64 time_now, u8 thread_index);
144
Florin Coras3cbc04b2017-10-02 00:18:51 -0700145int transport_alloc_local_port (u8 proto, ip46_address_t * ip);
Florin Coras5665ced2018-10-25 18:03:45 -0700146int transport_alloc_local_endpoint (u8 proto, transport_endpoint_cfg_t * rmt,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700147 ip46_address_t * lcl_addr,
148 u16 * lcl_port);
149void transport_endpoint_cleanup (u8 proto, ip46_address_t * lcl_ip, u16 port);
Florin Coras1ee78302019-02-05 15:51:15 -0800150void transport_enable_disable (vlib_main_t * vm, u8 is_en);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700151void transport_init (void);
152
Florin Coras1ee78302019-02-05 15:51:15 -0800153always_inline u32
154transport_elog_track_index (transport_connection_t * tc)
155{
156#if TRANSPORT_DEBUG
157 return tc->elog_track.track_index_plus_one - 1;
158#else
159 return ~0;
160#endif
161}
162
163void transport_connection_tx_pacer_reset (transport_connection_t * tc,
164 u32 rate_bytes_per_sec,
165 u32 initial_bucket, u64 time_now);
166/**
167 * Initialize tx pacer for connection
168 *
169 * @param tc transport connection
170 * @param rate_bytes_per_second initial byte rate
171 * @param burst_bytes initial burst size in bytes
172 */
173void transport_connection_tx_pacer_init (transport_connection_t * tc,
174 u32 rate_bytes_per_sec,
175 u32 initial_bucket);
176
177/**
178 * Update tx pacer pacing rate
179 *
180 * @param tc transport connection
181 * @param bytes_per_sec new pacing rate
182 */
183void transport_connection_tx_pacer_update (transport_connection_t * tc,
184 u64 bytes_per_sec);
185
186/**
187 * Get maximum tx burst allowed for transport connection
188 *
189 * @param tc transport connection
190 * @param time_now current cpu time as returned by @ref clib_cpu_time_now
191 * @param mss transport's mss
192 */
193u32 transport_connection_snd_space (transport_connection_t * tc,
194 u64 time_now, u16 mss);
195
Florin Coras52814732019-06-12 15:38:19 -0700196/**
197 * Get tx pacer max burst
198 *
199 * @param tc transport connection
200 * @param time_now current cpu time
201 * @return max burst for connection
202 */
Florin Coras1ee78302019-02-05 15:51:15 -0800203u32 transport_connection_tx_pacer_burst (transport_connection_t * tc,
204 u64 time_now);
205
206/**
Florin Coras52814732019-06-12 15:38:19 -0700207 * Get tx pacer current rate
208 *
209 * @param tc transport connection
210 * @return rate for connection in bytes/s
211 */
212u64 transport_connection_tx_pacer_rate (transport_connection_t * tc);
213
214/**
Florin Coras1ee78302019-02-05 15:51:15 -0800215 * Initialize period for tx pacers
216 *
217 * Defines a unit of time with respect to number of cpu cycles that is to
218 * be used by all tx pacers.
219 */
220void transport_init_tx_pacers_period (void);
221
222/**
223 * Check if transport connection is paced
224 */
225always_inline u8
226transport_connection_is_tx_paced (transport_connection_t * tc)
227{
228 return (tc->flags & TRANSPORT_CONNECTION_F_IS_TX_PACED);
229}
230
231u8 *format_transport_pacer (u8 * s, va_list * args);
232
233/**
234 * Update tx byte stats for transport connection
235 *
236 * If tx pacing is enabled, this also updates pacer bucket to account for the
237 * amount of bytes that have been sent.
238 *
239 * @param tc transport connection
240 * @param pkts packets recently sent
241 * @param bytes bytes recently sent
242 */
243void transport_connection_update_tx_stats (transport_connection_t * tc,
244 u32 bytes);
245
246void
247transport_connection_tx_pacer_update_bytes (transport_connection_t * tc,
248 u32 bytes);
249
250#endif /* SRC_VNET_SESSION_TRANSPORT_H_ */
Dave Barach68b0fb02017-02-28 15:15:56 -0500251
252/*
253 * fd.io coding-style-patch-verification: ON
254 *
255 * Local Variables:
256 * eval: (c-set-style "gnu")
257 * End:
258 */