blob: 10579c45c64d9943418dea50ae34de90fd413216 [file] [log] [blame]
Florin Coras04e53442017-07-16 17:12:15 -07001/*
2 * Copyright (c) 2017 Cisco and/or its affiliates.
3 * 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
16#ifndef SRC_VNET_SESSION_TRANSPORT_INTERFACE_H_
17#define SRC_VNET_SESSION_TRANSPORT_INTERFACE_H_
18
19#include <vnet/vnet.h>
20#include <vnet/session/transport.h>
21
Florin Coras371ca502018-02-21 12:07:41 -080022typedef enum transport_dequeue_type_
23{
24 TRANSPORT_TX_PEEK, /**< reliable transport protos */
25 TRANSPORT_TX_DEQUEUE, /**< unreliable transport protos */
Florin Coras7fb0fe12018-04-09 09:24:52 -070026 TRANSPORT_TX_INTERNAL, /**< apps acting as transports */
27 TRANSPORT_TX_DGRAM, /**< datagram mode */
Florin Coras371ca502018-02-21 12:07:41 -080028 TRANSPORT_TX_N_FNS
29} transport_tx_fn_type_t;
30
31typedef enum transport_service_type_
32{
33 TRANSPORT_SERVICE_VC, /**< virtual circuit service */
34 TRANSPORT_SERVICE_CL, /**< connectionless service */
Florin Coras7fb0fe12018-04-09 09:24:52 -070035 TRANSPORT_SERVICE_APP, /**< app transport service */
Florin Coras371ca502018-02-21 12:07:41 -080036 TRANSPORT_N_SERVICES
37} transport_service_type_t;
38
Florin Coras04e53442017-07-16 17:12:15 -070039/*
40 * Transport protocol virtual function table
41 */
Florin Coras371ca502018-02-21 12:07:41 -080042/* *INDENT-OFF* */
Florin Coras04e53442017-07-16 17:12:15 -070043typedef struct _transport_proto_vft
44{
45 /*
46 * Setup
47 */
48 u32 (*bind) (u32 session_index, transport_endpoint_t * lcl);
49 u32 (*unbind) (u32);
Florin Coras5665ced2018-10-25 18:03:45 -070050 int (*open) (transport_endpoint_cfg_t * rmt);
Florin Coras04e53442017-07-16 17:12:15 -070051 void (*close) (u32 conn_index, u32 thread_index);
52 void (*cleanup) (u32 conn_index, u32 thread_index);
Florin Coras561af9b2017-12-09 10:19:43 -080053 clib_error_t *(*enable) (vlib_main_t * vm, u8 is_en);
Florin Coras04e53442017-07-16 17:12:15 -070054
55 /*
56 * Transmission
57 */
Florin Coras371ca502018-02-21 12:07:41 -080058
59 u32 (*push_header) (transport_connection_t * tconn, vlib_buffer_t * b);
60 u16 (*send_mss) (transport_connection_t * tc);
61 u32 (*send_space) (transport_connection_t * tc);
62 u32 (*tx_fifo_offset) (transport_connection_t * tc);
Florin Coras561af9b2017-12-09 10:19:43 -080063 void (*update_time) (f64 time_now, u8 thread_index);
Florin Coras42ceddb2018-12-12 10:56:01 -080064 void (*flush_data) (transport_connection_t *tconn);
Florin Coras04e53442017-07-16 17:12:15 -070065
66 /*
67 * Connection retrieval
68 */
69 transport_connection_t *(*get_connection) (u32 conn_idx, u32 thread_idx);
70 transport_connection_t *(*get_listener) (u32 conn_index);
71 transport_connection_t *(*get_half_open) (u32 conn_index);
72
73 /*
74 * Format
75 */
76 u8 *(*format_connection) (u8 * s, va_list * args);
77 u8 *(*format_listener) (u8 * s, va_list * args);
78 u8 *(*format_half_open) (u8 * s, va_list * args);
Florin Coras371ca502018-02-21 12:07:41 -080079
80 /*
81 * Properties
82 */
83 transport_tx_fn_type_t tx_type;
84 transport_service_type_t service_type;
Florin Coras04e53442017-07-16 17:12:15 -070085} transport_proto_vft_t;
Florin Coras371ca502018-02-21 12:07:41 -080086/* *INDENT-ON* */
Florin Coras04e53442017-07-16 17:12:15 -070087
Florin Coras561af9b2017-12-09 10:19:43 -080088extern transport_proto_vft_t *tp_vfts;
89
Florin Coras371ca502018-02-21 12:07:41 -080090#define transport_proto_foreach(VAR, BODY) \
Florin Coras561af9b2017-12-09 10:19:43 -080091do { \
92 for (VAR = 0; VAR < vec_len (tp_vfts); VAR++) \
Florin Corasde9a8492018-10-24 22:18:58 -070093 if (tp_vfts[VAR].push_header != 0) \
Florin Coras561af9b2017-12-09 10:19:43 -080094 do { BODY; } while (0); \
95} while (0)
96
Florin Coras3cbc04b2017-10-02 00:18:51 -070097void transport_register_protocol (transport_proto_t transport_proto,
Florin Coras561af9b2017-12-09 10:19:43 -080098 const transport_proto_vft_t * vft,
99 fib_protocol_t fib_proto, u32 output_node);
100transport_proto_vft_t *transport_protocol_get_vft (transport_proto_t tp);
Florin Coras7fb0fe12018-04-09 09:24:52 -0700101transport_service_type_t transport_protocol_service_type (transport_proto_t);
Florin Corasf08f26d2018-05-10 13:20:47 -0700102transport_tx_fn_type_t transport_protocol_tx_fn_type (transport_proto_t tp);
Florin Coras561af9b2017-12-09 10:19:43 -0800103void transport_update_time (f64 time_now, u8 thread_index);
104void transport_enable_disable (vlib_main_t * vm, u8 is_en);
Florin Coras04e53442017-07-16 17:12:15 -0700105
Florin Corasc44a5582018-11-01 16:30:54 -0700106void transport_connection_tx_pacer_reset (transport_connection_t * tc,
107 u32 rate_bytes_per_sec,
108 u32 initial_bucket, u64 time_now);
Florin Corasd67f1122018-05-21 17:47:40 -0700109/**
110 * Initialize tx pacer for connection
111 *
112 * @param tc transport connection
113 * @param rate_bytes_per_second initial byte rate
114 * @param burst_bytes initial burst size in bytes
115 */
116void transport_connection_tx_pacer_init (transport_connection_t * tc,
117 u32 rate_bytes_per_sec,
Florin Corase55a6d72018-10-31 23:09:22 -0700118 u32 initial_bucket);
Florin Corasd67f1122018-05-21 17:47:40 -0700119
120/**
121 * Update tx pacer pacing rate
122 *
123 * @param tc transport connection
124 * @param bytes_per_sec new pacing rate
125 */
126void transport_connection_tx_pacer_update (transport_connection_t * tc,
127 u64 bytes_per_sec);
128
129/**
130 * Get maximum tx burst allowed for transport connection
131 *
132 * @param tc transport connection
133 * @param time_now current cpu time as returned by @ref clib_cpu_time_now
Florin Corase55a6d72018-10-31 23:09:22 -0700134 * @param mss transport's mss
Florin Corasd67f1122018-05-21 17:47:40 -0700135 */
Florin Corase55a6d72018-10-31 23:09:22 -0700136u32 transport_connection_snd_space (transport_connection_t * tc,
137 u64 time_now, u16 mss);
138
139u32 transport_connection_tx_pacer_burst (transport_connection_t * tc,
140 u64 time_now);
Florin Corasd67f1122018-05-21 17:47:40 -0700141
142/**
143 * Initialize period for tx pacers
144 *
145 * Defines a unit of time with respect to number of cpu cycles that is to
146 * be used by all tx pacers.
147 */
148void transport_init_tx_pacers_period (void);
149
150/**
151 * Check if transport connection is paced
152 */
153always_inline u8
154transport_connection_is_tx_paced (transport_connection_t * tc)
155{
156 return (tc->flags & TRANSPORT_CONNECTION_F_IS_TX_PACED);
157}
158
159u8 *format_transport_pacer (u8 * s, va_list * args);
160
161/**
162 * Update tx byte stats for transport connection
163 *
164 * If tx pacing is enabled, this also updates pacer bucket to account for the
165 * amount of bytes that have been sent.
166 *
167 * @param tc transport connection
168 * @param pkts packets recently sent
169 * @param bytes bytes recently sent
170 */
171void transport_connection_update_tx_stats (transport_connection_t * tc,
172 u32 bytes);
173
Florin Corase55a6d72018-10-31 23:09:22 -0700174void
175transport_connection_tx_pacer_update_bytes (transport_connection_t * tc,
176 u32 bytes);
177
Florin Coras04e53442017-07-16 17:12:15 -0700178#endif /* SRC_VNET_SESSION_TRANSPORT_INTERFACE_H_ */
179
180/*
181 * fd.io coding-style-patch-verification: ON
182 *
183 * Local Variables:
184 * eval: (c-set-style "gnu")
185 * End:
186 */