blob: 8500e9d24457b5dca3d00334c5143916e463f733 [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 Corasf6359c82017-06-19 12:26:09 -040048
Florin Coras1ee78302019-02-05 15:51:15 -080049 /*
50 * Connection retrieval
51 */
52 transport_connection_t *(*get_connection) (u32 conn_idx, u32 thread_idx);
53 transport_connection_t *(*get_listener) (u32 conn_index);
54 transport_connection_t *(*get_half_open) (u32 conn_index);
Florin Corasd67f1122018-05-21 17:47:40 -070055
Florin Coras1ee78302019-02-05 15:51:15 -080056 /*
57 * Format
58 */
59 u8 *(*format_connection) (u8 * s, va_list * args);
60 u8 *(*format_listener) (u8 * s, va_list * args);
61 u8 *(*format_half_open) (u8 * s, va_list * args);
Florin Corase69f4952017-03-07 10:06:24 -080062
Florin Coras1ee78302019-02-05 15:51:15 -080063 /*
64 * Properties
65 */
66 transport_tx_fn_type_t tx_type;
67 transport_service_type_t service_type;
68} transport_proto_vft_t;
69/* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -050070
Florin Coras1ee78302019-02-05 15:51:15 -080071extern transport_proto_vft_t *tp_vfts;
Florin Corasd67f1122018-05-21 17:47:40 -070072
Florin Coras1ee78302019-02-05 15:51:15 -080073#define transport_proto_foreach(VAR, BODY) \
74do { \
75 for (VAR = 0; VAR < vec_len (tp_vfts); VAR++) \
76 if (tp_vfts[VAR].push_header != 0) \
77 do { BODY; } while (0); \
78} while (0)
79
80int transport_connect (transport_proto_t tp, transport_endpoint_cfg_t * tep);
81void transport_close (transport_proto_t tp, u32 conn_index, u8 thread_index);
82u32 transport_start_listen (transport_proto_t tp, u32 session_index,
83 transport_endpoint_t * tep);
84u32 transport_stop_listen (transport_proto_t tp, u32 conn_index);
85void transport_cleanup (transport_proto_t tp, u32 conn_index,
86 u8 thread_index);
87
88static inline transport_connection_t *
89transport_get_connection (transport_proto_t tp, u32 conn_index,
90 u8 thread_index)
Dave Barach2c25a622017-06-26 11:35:07 -040091{
Florin Coras1ee78302019-02-05 15:51:15 -080092 return tp_vfts[tp].get_connection (conn_index, thread_index);
Florin Corascea194d2017-10-02 00:18:51 -070093}
94
Florin Coras1ee78302019-02-05 15:51:15 -080095static inline transport_connection_t *
96transport_get_listener (transport_proto_t tp, u32 conn_index)
Florin Coras3cbc04b2017-10-02 00:18:51 -070097{
Florin Coras1ee78302019-02-05 15:51:15 -080098 return tp_vfts[tp].get_listener (conn_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -070099}
100
Florin Coras1ee78302019-02-05 15:51:15 -0800101static inline transport_connection_t *
102transport_get_half_open (transport_proto_t tp, u32 conn_index)
103{
104 return tp_vfts[tp].get_half_open (conn_index);
105}
106
107void transport_register_protocol (transport_proto_t transport_proto,
108 const transport_proto_vft_t * vft,
109 fib_protocol_t fib_proto, u32 output_node);
110transport_proto_vft_t *transport_protocol_get_vft (transport_proto_t tp);
111void transport_update_time (f64 time_now, u8 thread_index);
112
Florin Coras3cbc04b2017-10-02 00:18:51 -0700113int transport_alloc_local_port (u8 proto, ip46_address_t * ip);
Florin Coras5665ced2018-10-25 18:03:45 -0700114int transport_alloc_local_endpoint (u8 proto, transport_endpoint_cfg_t * rmt,
Florin Coras3cbc04b2017-10-02 00:18:51 -0700115 ip46_address_t * lcl_addr,
116 u16 * lcl_port);
117void transport_endpoint_cleanup (u8 proto, ip46_address_t * lcl_ip, u16 port);
Florin Coras1ee78302019-02-05 15:51:15 -0800118void transport_enable_disable (vlib_main_t * vm, u8 is_en);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700119void transport_init (void);
120
Florin Coras1ee78302019-02-05 15:51:15 -0800121always_inline u32
122transport_elog_track_index (transport_connection_t * tc)
123{
124#if TRANSPORT_DEBUG
125 return tc->elog_track.track_index_plus_one - 1;
126#else
127 return ~0;
128#endif
129}
130
131void transport_connection_tx_pacer_reset (transport_connection_t * tc,
132 u32 rate_bytes_per_sec,
133 u32 initial_bucket, u64 time_now);
134/**
135 * Initialize tx pacer for connection
136 *
137 * @param tc transport connection
138 * @param rate_bytes_per_second initial byte rate
139 * @param burst_bytes initial burst size in bytes
140 */
141void transport_connection_tx_pacer_init (transport_connection_t * tc,
142 u32 rate_bytes_per_sec,
143 u32 initial_bucket);
144
145/**
146 * Update tx pacer pacing rate
147 *
148 * @param tc transport connection
149 * @param bytes_per_sec new pacing rate
150 */
151void transport_connection_tx_pacer_update (transport_connection_t * tc,
152 u64 bytes_per_sec);
153
154/**
155 * Get maximum tx burst allowed for transport connection
156 *
157 * @param tc transport connection
158 * @param time_now current cpu time as returned by @ref clib_cpu_time_now
159 * @param mss transport's mss
160 */
161u32 transport_connection_snd_space (transport_connection_t * tc,
162 u64 time_now, u16 mss);
163
164u32 transport_connection_tx_pacer_burst (transport_connection_t * tc,
165 u64 time_now);
166
167/**
168 * Initialize period for tx pacers
169 *
170 * Defines a unit of time with respect to number of cpu cycles that is to
171 * be used by all tx pacers.
172 */
173void transport_init_tx_pacers_period (void);
174
175/**
176 * Check if transport connection is paced
177 */
178always_inline u8
179transport_connection_is_tx_paced (transport_connection_t * tc)
180{
181 return (tc->flags & TRANSPORT_CONNECTION_F_IS_TX_PACED);
182}
183
184u8 *format_transport_pacer (u8 * s, va_list * args);
185
186/**
187 * Update tx byte stats for transport connection
188 *
189 * If tx pacing is enabled, this also updates pacer bucket to account for the
190 * amount of bytes that have been sent.
191 *
192 * @param tc transport connection
193 * @param pkts packets recently sent
194 * @param bytes bytes recently sent
195 */
196void transport_connection_update_tx_stats (transport_connection_t * tc,
197 u32 bytes);
198
199void
200transport_connection_tx_pacer_update_bytes (transport_connection_t * tc,
201 u32 bytes);
202
203#endif /* SRC_VNET_SESSION_TRANSPORT_H_ */
Dave Barach68b0fb02017-02-28 15:15:56 -0500204
205/*
206 * fd.io coding-style-patch-verification: ON
207 *
208 * Local Variables:
209 * eval: (c-set-style "gnu")
210 * End:
211 */