FD.io VPP  v21.10.1-2-g0a485f517
Vector Packet Processing
transport.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017-2019 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_H_
17 #define SRC_VNET_SESSION_TRANSPORT_H_
18 
19 #include <vnet/vnet.h>
21 
22 #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 #define TRANSPORT_PACER_MAX_BURST_PKTS 43
26 #define TRANSPORT_PACER_BURSTS_PER_RTT 20
27 #define TRANSPORT_PACER_MIN_IDLE 100
28 #define TRANSPORT_PACER_IDLE_FACTOR 0.05
29 
30 typedef struct _transport_options_t
31 {
32  char *name;
33  char *short_name;
34  transport_tx_fn_type_t tx_type;
35  transport_service_type_t service_type;
37 
39 {
43 } __clib_packed transport_snd_flags_t;
44 
45 typedef struct transport_send_params_
46 {
47  union
48  {
49  /* Used to retrieve snd params from transports */
50  struct
51  {
55  };
56  /* Used by custom tx functions */
57  struct
58  {
60  };
61  };
64 
65 /*
66  * Transport protocol virtual function table
67  */
68 /* *INDENT-OFF* */
69 typedef struct _transport_proto_vft
70 {
71  /*
72  * Setup
73  */
74  u32 (*start_listen) (u32 session_index, transport_endpoint_t * lcl);
75  u32 (*stop_listen) (u32 conn_index);
76  int (*connect) (transport_endpoint_cfg_t * rmt);
77  void (*half_close) (u32 conn_index, u32 thread_index);
78  void (*close) (u32 conn_index, u32 thread_index);
79  void (*reset) (u32 conn_index, u32 thread_index);
80  void (*cleanup) (u32 conn_index, u32 thread_index);
81  void (*cleanup_ho) (u32 conn_index);
82  clib_error_t *(*enable) (vlib_main_t * vm, u8 is_en);
83 
84  /*
85  * Transmission
86  */
87 
88  u32 (*push_header) (transport_connection_t * tconn, vlib_buffer_t * b);
89  int (*send_params) (transport_connection_t * tconn,
91  void (*update_time) (f64 time_now, u8 thread_index);
92  void (*flush_data) (transport_connection_t *tconn);
93  int (*custom_tx) (void *session, transport_send_params_t *sp);
94  int (*app_rx_evt) (transport_connection_t *tconn);
95 
96  /*
97  * Connection retrieval
98  */
99  transport_connection_t *(*get_connection) (u32 conn_idx, u32 thread_idx);
100  transport_connection_t *(*get_listener) (u32 conn_index);
101  transport_connection_t *(*get_half_open) (u32 conn_index);
102 
103  /*
104  * Format
105  */
106  u8 *(*format_connection) (u8 * s, va_list * args);
107  u8 *(*format_listener) (u8 * s, va_list * args);
108  u8 *(*format_half_open) (u8 * s, va_list * args);
109 
110  /*
111  * Properties retrieval/setting
112  */
113  void (*get_transport_endpoint) (u32 conn_index, u32 thread_index,
114  transport_endpoint_t *tep, u8 is_lcl);
115  void (*get_transport_listener_endpoint) (u32 conn_index,
117  u8 is_lcl);
118  int (*attribute) (u32 conn_index, u32 thread_index, u8 is_get,
119  transport_endpt_attr_t *attr);
120 
121  /*
122  * Properties
123  */
124  transport_options_t transport_options;
126 /* *INDENT-ON* */
127 
129 
130 #define transport_proto_foreach(VAR, VAR_ALLOW_BM) \
131  for (VAR = 0; VAR < vec_len (tp_vfts); VAR++) \
132  if (tp_vfts[VAR].push_header != 0) \
133  if (VAR_ALLOW_BM & (1 << VAR))
134 
136 void transport_half_close (transport_proto_t tp, u32 conn_index,
137  u8 thread_index);
138 void transport_close (transport_proto_t tp, u32 conn_index, u8 thread_index);
139 void transport_reset (transport_proto_t tp, u32 conn_index, u8 thread_index);
141  transport_endpoint_t * tep);
143 void transport_cleanup (transport_proto_t tp, u32 conn_index,
144  u8 thread_index);
146 void transport_get_endpoint (transport_proto_t tp, u32 conn_index,
148  u8 is_lcl);
150  transport_endpoint_t * tep, u8 is_lcl);
152  u8 thread_index, u8 is_get,
153  transport_endpt_attr_t *attr);
154 
155 static inline transport_connection_t *
158 {
159  return tp_vfts[tp].get_connection (conn_index, thread_index);
160 }
161 
162 static inline transport_connection_t *
164 {
165  return tp_vfts[tp].get_listener (conn_index);
166 }
167 
168 static inline transport_connection_t *
170 {
171  return tp_vfts[tp].get_half_open (conn_index);
172 }
173 
174 static inline int
177 {
178  return tp_vfts[tp].custom_tx (s, sp);
179 }
180 
181 static inline int
183 {
185  if (!tp_vfts[tp].app_rx_evt)
186  return 0;
187  tc = transport_get_connection (tp, conn_index, thread_index);
188  return tp_vfts[tp].app_rx_evt (tc);
189 }
190 
191 /**
192  * Get send parameters for transport connection
193  *
194  * These include maximum tx burst, mss, tx offset and other flags
195  * transport might want to provide to sessin layer
196  *
197  * @param tc transport connection
198  * @param sp send paramaters
199  *
200  */
201 static inline u32
204 {
205  return tp_vfts[tc->proto].send_params (tc, sp);
206 }
207 
208 static inline u8
210 {
211  return ((tc->flags & TRANSPORT_CONNECTION_F_DESCHED) ? 1 : 0);
212 }
213 
214 static inline void
216 {
217  tc->flags |= TRANSPORT_CONNECTION_F_DESCHED;
218 }
219 
220 static inline u8
222 {
223  return ((tc->flags & TRANSPORT_CONNECTION_F_CLESS) ? 1 : 0);
224 }
225 
228 
229 /**
230  * Register transport virtual function table.
231  *
232  * @param transport_proto - transport protocol type (i.e., TCP, UDP ..)
233  * @param vft - virtual function table for transport proto
234  * @param fib_proto - network layer protocol
235  * @param output_node - output node index that session layer will hand off
236  * buffers to, for requested fib proto
237  */
239  const transport_proto_vft_t * vft,
240  fib_protocol_t fib_proto, u32 output_node);
243  fib_protocol_t fib_proto, u32 output_node);
246 
247 int transport_alloc_local_port (u8 proto, ip46_address_t * ip);
249  ip46_address_t * lcl_addr,
250  u16 * lcl_port);
251 void transport_share_local_endpoint (u8 proto, ip46_address_t * lcl_ip,
252  u16 port);
253 void transport_endpoint_cleanup (u8 proto, ip46_address_t * lcl_ip, u16 port);
254 void transport_enable_disable (vlib_main_t * vm, u8 is_en);
255 void transport_init (void);
256 
259 {
260 #if TRANSPORT_DEBUG
261  return tc->elog_track.track_index_plus_one - 1;
262 #else
263  return ~0;
264 #endif
265 }
266 
268  u64 rate_bytes_per_sec,
269  u32 initial_bucket,
270  clib_us_time_t rtt);
271 /**
272  * Initialize tx pacer for connection
273  *
274  * @param tc transport connection
275  * @param rate_bytes_per_second initial byte rate
276  * @param burst_bytes initial burst size in bytes
277  */
279  u64 rate_bytes_per_sec,
280  u32 initial_bucket);
281 
282 /**
283  * Update tx pacer pacing rate
284  *
285  * @param tc transport connection
286  * @param bytes_per_sec new pacing rate
287  * @param rtt connection rtt that is used to compute
288  * inactivity time after which pacer bucket is
289  * reset to 1 mtu
290  */
292  u64 bytes_per_sec,
293  clib_us_time_t rtt);
294 
295 /**
296  * Get tx pacer max burst
297  *
298  * @param tc transport connection
299  * @param time_now current cpu time
300  * @return max burst for connection
301  */
303 
304 /**
305  * Get tx pacer current rate
306  *
307  * @param tc transport connection
308  * @return rate for connection in bytes/s
309  */
311 
312 /**
313  * Reset tx pacer bucket
314  *
315  * @param tc transport connection
316  * @param bucket value the bucket will be reset to
317  */
319  u32 bucket);
320 
321 /**
322  * Check if transport connection is paced
323  */
326 {
327  return (tc->flags & TRANSPORT_CONNECTION_F_IS_TX_PACED);
328 }
329 
330 u8 *format_transport_pacer (u8 * s, va_list * args);
331 
332 /**
333  * Update tx bytes for paced transport connection
334  *
335  * If tx pacing is enabled, this update pacer bucket to account for the
336  * amount of bytes that have been sent.
337  *
338  * @param tc transport connection
339  * @param bytes bytes recently sent
340  */
342  u32 bytes);
343 
344 void
346  u32 bytes);
347 
348 /**
349  * Request pacer time update
350  *
351  * @param thread_index thread for which time is updated
352  * @param now time now
353  */
355 
356 #endif /* SRC_VNET_SESSION_TRANSPORT_H_ */
357 
358 /*
359  * fd.io coding-style-patch-verification: ON
360  *
361  * Local Variables:
362  * eval: (c-set-style "gnu")
363  * End:
364  */
TRANSPORT_SND_F_POSTPONE
@ TRANSPORT_SND_F_POSTPONE
Definition: transport.h:41
transport_register_protocol
void transport_register_protocol(transport_proto_t transport_proto, const transport_proto_vft_t *vft, fib_protocol_t fib_proto, u32 output_node)
Register transport virtual function table.
Definition: transport.c:246
thread_index
u32 thread_index
Definition: nat44_ei_hairpinning.c:495
transport_half_close
void transport_half_close(transport_proto_t tp, u32 conn_index, u8 thread_index)
Definition: transport.c:321
transport_get_endpoint
void transport_get_endpoint(transport_proto_t tp, u32 conn_index, u32 thread_index, transport_endpoint_t *tep, u8 is_lcl)
Definition: transport.c:380
transport_update_time
void transport_update_time(clib_time_type_t time_now, u8 thread_index)
Definition: transport.c:815
transport_alloc_local_port
int transport_alloc_local_port(u8 proto, ip46_address_t *ip)
Allocate local port and add if successful add entry to local endpoint table to mark the pair as used.
Definition: transport.c:493
transport_snd_flags_
transport_snd_flags_
Definition: transport.h:38
name
string name[64]
Definition: fib.api:25
transport_connection_is_tx_paced
static u8 transport_connection_is_tx_paced(transport_connection_t *tc)
Check if transport connection is paced.
Definition: transport.h:325
transport_service_type_t
enum transport_service_type_ transport_service_type_t
transport_proto_vft_t
struct _transport_proto_vft transport_proto_vft_t
transport_reset
void transport_reset(transport_proto_t tp, u32 conn_index, u8 thread_index)
Definition: transport.c:334
u16
unsigned short u16
Definition: types.h:57
transport_register_new_protocol
transport_proto_t transport_register_new_protocol(const transport_proto_vft_t *vft, fib_protocol_t fib_proto, u32 output_node)
Definition: transport.c:259
format_transport_pacer
u8 * format_transport_pacer(u8 *s, va_list *args)
Definition: transport.c:645
vm
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
port
u16 port
Definition: lb_types.api:73
transport_send_params_::snd_mss
u16 snd_mss
Definition: transport.h:54
transport_connection_t
struct _transport_connection transport_connection_t
transport_enable_disable
void transport_enable_disable(vlib_main_t *vm, u8 is_en)
Definition: transport.c:826
transport_endpoint_pair_
Definition: transport_types.h:216
clib_time_type_t
f64 clib_time_type_t
Definition: time.h:203
tp_vfts
transport_proto_vft_t * tp_vfts
Per-type vector of transport protocol virtual function tables.
Definition: transport.c:29
TRANSPORT_SND_N_FLAGS
@ TRANSPORT_SND_N_FLAGS
Definition: transport.h:42
transport_connection_update_tx_bytes
void transport_connection_update_tx_bytes(transport_connection_t *tc, u32 bytes)
Update tx bytes for paced transport connection.
Definition: transport.c:770
transport_connection_tx_pacer_rate
u64 transport_connection_tx_pacer_rate(transport_connection_t *tc)
Get tx pacer current rate.
Definition: transport.c:764
transport_tx_fn_type_t
enum transport_dequeue_type_ transport_tx_fn_type_t
TRANSPORT_SND_F_DESCHED
@ TRANSPORT_SND_F_DESCHED
Definition: transport.h:40
TRANSPORT_CONNECTION_F_CLESS
@ TRANSPORT_CONNECTION_F_CLESS
Connection is "connection less".
Definition: transport_types.h:62
transport_types.h
transport_connect
int transport_connect(transport_proto_t tp, transport_endpoint_cfg_t *tep)
Definition: transport.c:315
transport_connection_tx_pacer_update_bytes
void transport_connection_tx_pacer_update_bytes(transport_connection_t *tc, u32 bytes)
Definition: transport.c:777
transport_send_params_::tx_offset
u32 tx_offset
Definition: transport.h:53
transport_connection_snd_params
static u32 transport_connection_snd_params(transport_connection_t *tc, transport_send_params_t *sp)
Get send parameters for transport connection.
Definition: transport.h:202
transport_endpt_attr_
Definition: transport_types.h:256
TRANSPORT_CONNECTION_F_IS_TX_PACED
@ TRANSPORT_CONNECTION_F_IS_TX_PACED
Definition: transport_types.h:47
transport_fifos_init_ooo
void transport_fifos_init_ooo(transport_connection_t *tc)
Definition: transport.c:807
f64
double f64
Definition: types.h:142
transport_connection_tx_pacer_reset_bucket
void transport_connection_tx_pacer_reset_bucket(transport_connection_t *tc, u32 bucket)
Reset tx pacer bucket.
Definition: transport.c:732
transport_custom_tx
static int transport_custom_tx(transport_proto_t tp, void *s, transport_send_params_t *sp)
Definition: transport.h:175
transport_cleanup_half_open
void transport_cleanup_half_open(transport_proto_t tp, u32 conn_index)
Definition: transport.c:308
transport_update_pacer_time
void transport_update_pacer_time(u32 thread_index, clib_time_type_t now)
Request pacer time update.
Definition: transport.c:784
transport_app_rx_evt
static int transport_app_rx_evt(transport_proto_t tp, u32 conn_index, u32 thread_index)
Definition: transport.h:182
transport_snd_flags_t
enum transport_snd_flags_ transport_snd_flags_t
fib_protocol_t
enum fib_protocol_t_ fib_protocol_t
Protocol Type.
transport_start_listen
u32 transport_start_listen(transport_proto_t tp, u32 session_index, transport_endpoint_t *tep)
Definition: transport.c:343
transport_send_params_::snd_space
u32 snd_space
Definition: transport.h:52
transport_connection_tx_pacer_reset
void transport_connection_tx_pacer_reset(transport_connection_t *tc, u64 rate_bytes_per_sec, u32 initial_bucket, clib_us_time_t rtt)
Definition: transport.c:721
transport_send_params_t
struct transport_send_params_ transport_send_params_t
transport_send_params_
Definition: transport.h:45
always_inline
#define always_inline
Definition: rdma_mlx5dv.h:23
u64
unsigned long u64
Definition: types.h:89
transport_stop_listen
u32 transport_stop_listen(transport_proto_t tp, u32 conn_index)
Definition: transport.c:350
u32
unsigned int u32
Definition: types.h:88
transport_endpoint_
Definition: transport_types.h:193
transport_proto_t
enum _transport_proto transport_proto_t
transport_alloc_local_endpoint
int transport_alloc_local_endpoint(u8 proto, transport_endpoint_cfg_t *rmt, ip46_address_t *lcl_addr, u16 *lcl_port)
Definition: transport.c:583
transport_connection_reschedule
void transport_connection_reschedule(transport_connection_t *tc)
Definition: transport.c:790
transport_protocol_get_vft
transport_proto_vft_t * transport_protocol_get_vft(transport_proto_t tp)
Get transport virtual function table.
Definition: transport.c:282
transport_connection_is_descheduled
static u8 transport_connection_is_descheduled(transport_connection_t *tc)
Definition: transport.h:209
now
f64 now
Definition: nat44_ei_out2in.c:710
transport_connection_is_cless
static u8 transport_connection_is_cless(transport_connection_t *tc)
Definition: transport.h:221
clib_us_time_t
u64 clib_us_time_t
Definition: time.h:204
vlib_main_t
Definition: main.h:102
transport_options_t
struct _transport_options_t transport_options_t
transport_connection_tx_pacer_burst
u32 transport_connection_tx_pacer_burst(transport_connection_t *tc)
Get tx pacer max burst.
Definition: transport.c:757
transport_get_connection
static transport_connection_t * transport_get_connection(transport_proto_t tp, u32 conn_index, u8 thread_index)
Definition: transport.h:156
transport_send_params_::max_burst_size
u32 max_burst_size
Definition: transport.h:59
b
vlib_buffer_t ** b
Definition: nat44_ei_out2in.c:717
u8
unsigned char u8
Definition: types.h:56
clib_error_t
Definition: clib_error.h:21
ip
vl_api_address_t ip
Definition: l2.api:558
transport_endpoint_cleanup
void transport_endpoint_cleanup(u8 proto, ip46_address_t *lcl_ip, u16 port)
Definition: transport.c:439
transport_connection_attribute
int transport_connection_attribute(transport_proto_t tp, u32 conn_index, u8 thread_index, u8 is_get, transport_endpt_attr_t *attr)
Definition: transport.c:410
transport_get_half_open
static transport_connection_t * transport_get_half_open(transport_proto_t tp, u32 conn_index)
Definition: transport.h:169
transport_close
void transport_close(transport_proto_t tp, u32 conn_index, u8 thread_index)
Definition: transport.c:328
transport_elog_track_index
static u32 transport_elog_track_index(transport_connection_t *tc)
Definition: transport.h:258
transport_connection_tx_pacer_init
void transport_connection_tx_pacer_init(transport_connection_t *tc, u64 rate_bytes_per_sec, u32 initial_bucket)
Initialize tx pacer for connection.
Definition: transport.c:739
transport_send_params_::flags
transport_snd_flags_t flags
Definition: transport.h:62
cleanup
static void cleanup(void)
Definition: client.c:98
transport_proto
transport_proto
Definition: session.api:22
transport_cleanup
void transport_cleanup(transport_proto_t tp, u32 conn_index, u8 thread_index)
Definition: transport.c:302
vnet.h
transport_get_listener
static transport_connection_t * transport_get_listener(transport_proto_t tp, u32 conn_index)
Definition: transport.h:163
transport_get_listener_endpoint
void transport_get_listener_endpoint(transport_proto_t tp, u32 conn_index, transport_endpoint_t *tep, u8 is_lcl)
Definition: transport.c:396
proto
vl_api_ip_proto_t proto
Definition: acl_types.api:51
thread_idx
#define thread_idx
Definition: tls_async.c:40
transport_init
void transport_init(void)
Definition: transport.c:837
transport_share_local_endpoint
void transport_share_local_endpoint(u8 proto, ip46_address_t *lcl_ip, u16 port)
Definition: transport.c:474
start_listen
static int start_listen(u16 port)
Definition: vpp_prometheus_export.c:188
TRANSPORT_CONNECTION_F_DESCHED
@ TRANSPORT_CONNECTION_F_DESCHED
Connection descheduled by the session layer.
Definition: transport_types.h:56
transport_connection_tx_pacer_update
void transport_connection_tx_pacer_update(transport_connection_t *tc, u64 bytes_per_sec, clib_us_time_t rtt)
Update tx pacer pacing rate.
Definition: transport.c:749
vlib_buffer_t
VLIB buffer representation.
Definition: buffer.h:111
transport_connection_deschedule
static void transport_connection_deschedule(transport_connection_t *tc)
Definition: transport.h:215