Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1 | /* |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 2 | * Copyright (c) 2017-2019 Cisco and/or its affiliates. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 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 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 16 | #ifndef SRC_VNET_SESSION_TRANSPORT_H_ |
| 17 | #define SRC_VNET_SESSION_TRANSPORT_H_ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 18 | |
| 19 | #include <vnet/vnet.h> |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 20 | #include <vnet/session/transport_types.h> |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 21 | |
Florin Coras | c31dc31 | 2019-10-06 14:06:14 -0700 | [diff] [blame] | 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) |
Florin Coras | ed8db52 | 2020-02-27 04:32:51 +0000 | [diff] [blame] | 25 | #define TRANSPORT_PACER_MAX_BURST_PKTS 43 |
Florin Coras | 7808df2 | 2020-11-02 18:00:32 -0800 | [diff] [blame] | 26 | #define TRANSPORT_PACER_BURSTS_PER_RTT 20 |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 27 | #define TRANSPORT_PACER_MIN_IDLE 100 |
| 28 | #define TRANSPORT_PACER_IDLE_FACTOR 0.05 |
Florin Coras | c31dc31 | 2019-10-06 14:06:14 -0700 | [diff] [blame] | 29 | |
Nathan Skrzypczak | e971bc9 | 2019-06-19 13:42:37 +0200 | [diff] [blame] | 30 | typedef struct _transport_options_t |
| 31 | { |
Florin Coras | 07063b8 | 2020-03-13 04:44:51 +0000 | [diff] [blame] | 32 | char *name; |
| 33 | char *short_name; |
Nathan Skrzypczak | e971bc9 | 2019-06-19 13:42:37 +0200 | [diff] [blame] | 34 | transport_tx_fn_type_t tx_type; |
| 35 | transport_service_type_t service_type; |
| 36 | } transport_options_t; |
| 37 | |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 38 | typedef enum transport_snd_flags_ |
| 39 | { |
| 40 | TRANSPORT_SND_F_DESCHED = 1 << 0, |
| 41 | TRANSPORT_SND_F_POSTPONE = 1 << 1, |
| 42 | TRANSPORT_SND_N_FLAGS |
| 43 | } __clib_packed transport_snd_flags_t; |
| 44 | |
| 45 | typedef struct transport_send_params_ |
| 46 | { |
Florin Coras | 9f86d22 | 2020-03-23 15:34:22 +0000 | [diff] [blame] | 47 | union |
| 48 | { |
| 49 | /* Used to retrieve snd params from transports */ |
| 50 | struct |
| 51 | { |
| 52 | u32 snd_space; |
| 53 | u32 tx_offset; |
| 54 | u16 snd_mss; |
| 55 | }; |
| 56 | /* Used by custom tx functions */ |
| 57 | struct |
| 58 | { |
| 59 | u32 max_burst_size; |
Florin Coras | 3e15710 | 2022-02-04 13:31:25 -0800 | [diff] [blame] | 60 | u32 bytes_dequeued; |
Florin Coras | 9f86d22 | 2020-03-23 15:34:22 +0000 | [diff] [blame] | 61 | }; |
| 62 | }; |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 63 | transport_snd_flags_t flags; |
| 64 | } transport_send_params_t; |
| 65 | |
Florin Coras | de9a849 | 2018-10-24 22:18:58 -0700 | [diff] [blame] | 66 | /* |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 67 | * Transport protocol virtual function table |
Florin Coras | de9a849 | 2018-10-24 22:18:58 -0700 | [diff] [blame] | 68 | */ |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 69 | /* *INDENT-OFF* */ |
| 70 | typedef struct _transport_proto_vft |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 71 | { |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 72 | /* |
| 73 | * Setup |
| 74 | */ |
Florin Coras | 0bce71e | 2022-02-10 11:57:06 -0800 | [diff] [blame] | 75 | u32 (*start_listen) (u32 session_index, transport_endpoint_cfg_t *lcl); |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 76 | u32 (*stop_listen) (u32 conn_index); |
| 77 | int (*connect) (transport_endpoint_cfg_t * rmt); |
liuyacan | 534468e | 2021-05-09 03:50:40 +0000 | [diff] [blame] | 78 | void (*half_close) (u32 conn_index, u32 thread_index); |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 79 | void (*close) (u32 conn_index, u32 thread_index); |
Florin Coras | dfb3b87 | 2019-08-16 17:48:44 -0700 | [diff] [blame] | 80 | void (*reset) (u32 conn_index, u32 thread_index); |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 81 | void (*cleanup) (u32 conn_index, u32 thread_index); |
Florin Coras | d50ff7f | 2020-04-16 04:30:22 +0000 | [diff] [blame] | 82 | void (*cleanup_ho) (u32 conn_index); |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 83 | clib_error_t *(*enable) (vlib_main_t * vm, u8 is_en); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 84 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 85 | /* |
| 86 | * Transmission |
| 87 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 88 | |
Florin Coras | f66cc80 | 2021-04-08 19:10:07 -0700 | [diff] [blame] | 89 | u32 (*push_header) (transport_connection_t *tconn, vlib_buffer_t **b, |
| 90 | u32 n_bufs); |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 91 | int (*send_params) (transport_connection_t * tconn, |
| 92 | transport_send_params_t *sp); |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 93 | void (*update_time) (f64 time_now, u8 thread_index); |
| 94 | void (*flush_data) (transport_connection_t *tconn); |
Florin Coras | 9f86d22 | 2020-03-23 15:34:22 +0000 | [diff] [blame] | 95 | int (*custom_tx) (void *session, transport_send_params_t *sp); |
Florin Coras | 317b8e0 | 2019-04-17 09:57:46 -0700 | [diff] [blame] | 96 | int (*app_rx_evt) (transport_connection_t *tconn); |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 97 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 98 | /* |
| 99 | * Connection retrieval |
| 100 | */ |
| 101 | transport_connection_t *(*get_connection) (u32 conn_idx, u32 thread_idx); |
| 102 | transport_connection_t *(*get_listener) (u32 conn_index); |
| 103 | transport_connection_t *(*get_half_open) (u32 conn_index); |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 104 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 105 | /* |
| 106 | * Format |
| 107 | */ |
| 108 | u8 *(*format_connection) (u8 * s, va_list * args); |
| 109 | u8 *(*format_listener) (u8 * s, va_list * args); |
| 110 | u8 *(*format_half_open) (u8 * s, va_list * args); |
Florin Coras | e69f495 | 2017-03-07 10:06:24 -0800 | [diff] [blame] | 111 | |
Florin Coras | 09d18c2 | 2019-04-24 11:10:02 -0700 | [diff] [blame] | 112 | /* |
Florin Coras | 04ae827 | 2021-04-12 19:55:37 -0700 | [diff] [blame] | 113 | * Properties retrieval/setting |
Florin Coras | 09d18c2 | 2019-04-24 11:10:02 -0700 | [diff] [blame] | 114 | */ |
| 115 | void (*get_transport_endpoint) (u32 conn_index, u32 thread_index, |
| 116 | transport_endpoint_t *tep, u8 is_lcl); |
| 117 | void (*get_transport_listener_endpoint) (u32 conn_index, |
| 118 | transport_endpoint_t *tep, |
| 119 | u8 is_lcl); |
Florin Coras | 04ae827 | 2021-04-12 19:55:37 -0700 | [diff] [blame] | 120 | int (*attribute) (u32 conn_index, u32 thread_index, u8 is_get, |
| 121 | transport_endpt_attr_t *attr); |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 122 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 123 | /* |
| 124 | * Properties |
| 125 | */ |
Nathan Skrzypczak | e971bc9 | 2019-06-19 13:42:37 +0200 | [diff] [blame] | 126 | transport_options_t transport_options; |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 127 | } transport_proto_vft_t; |
| 128 | /* *INDENT-ON* */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 129 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 130 | extern transport_proto_vft_t *tp_vfts; |
Florin Coras | d67f112 | 2018-05-21 17:47:40 -0700 | [diff] [blame] | 131 | |
Nathan Skrzypczak | b3ea73e | 2021-08-05 10:22:52 +0200 | [diff] [blame] | 132 | #define transport_proto_foreach(VAR, VAR_ALLOW_BM) \ |
| 133 | for (VAR = 0; VAR < vec_len (tp_vfts); VAR++) \ |
| 134 | if (tp_vfts[VAR].push_header != 0) \ |
| 135 | if (VAR_ALLOW_BM & (1 << VAR)) |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 136 | |
| 137 | int transport_connect (transport_proto_t tp, transport_endpoint_cfg_t * tep); |
liuyacan | 534468e | 2021-05-09 03:50:40 +0000 | [diff] [blame] | 138 | void transport_half_close (transport_proto_t tp, u32 conn_index, |
| 139 | u8 thread_index); |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 140 | void transport_close (transport_proto_t tp, u32 conn_index, u8 thread_index); |
Florin Coras | dfb3b87 | 2019-08-16 17:48:44 -0700 | [diff] [blame] | 141 | void transport_reset (transport_proto_t tp, u32 conn_index, u8 thread_index); |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 142 | u32 transport_start_listen (transport_proto_t tp, u32 session_index, |
Florin Coras | 0bce71e | 2022-02-10 11:57:06 -0800 | [diff] [blame] | 143 | transport_endpoint_cfg_t *tep); |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 144 | u32 transport_stop_listen (transport_proto_t tp, u32 conn_index); |
| 145 | void transport_cleanup (transport_proto_t tp, u32 conn_index, |
| 146 | u8 thread_index); |
Florin Coras | d50ff7f | 2020-04-16 04:30:22 +0000 | [diff] [blame] | 147 | void transport_cleanup_half_open (transport_proto_t tp, u32 conn_index); |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 148 | void transport_get_endpoint (transport_proto_t tp, u32 conn_index, |
Florin Coras | 09d18c2 | 2019-04-24 11:10:02 -0700 | [diff] [blame] | 149 | u32 thread_index, transport_endpoint_t * tep, |
| 150 | u8 is_lcl); |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 151 | void transport_get_listener_endpoint (transport_proto_t tp, u32 conn_index, |
Florin Coras | 09d18c2 | 2019-04-24 11:10:02 -0700 | [diff] [blame] | 152 | transport_endpoint_t * tep, u8 is_lcl); |
Florin Coras | 04ae827 | 2021-04-12 19:55:37 -0700 | [diff] [blame] | 153 | int transport_connection_attribute (transport_proto_t tp, u32 conn_index, |
| 154 | u8 thread_index, u8 is_get, |
| 155 | transport_endpt_attr_t *attr); |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 156 | |
| 157 | static inline transport_connection_t * |
| 158 | transport_get_connection (transport_proto_t tp, u32 conn_index, |
| 159 | u8 thread_index) |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 160 | { |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 161 | return tp_vfts[tp].get_connection (conn_index, thread_index); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 162 | } |
| 163 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 164 | static inline transport_connection_t * |
| 165 | transport_get_listener (transport_proto_t tp, u32 conn_index) |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 166 | { |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 167 | return tp_vfts[tp].get_listener (conn_index); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 168 | } |
| 169 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 170 | static inline transport_connection_t * |
| 171 | transport_get_half_open (transport_proto_t tp, u32 conn_index) |
| 172 | { |
| 173 | return tp_vfts[tp].get_half_open (conn_index); |
| 174 | } |
| 175 | |
Florin Coras | f940f8a | 2019-03-06 10:44:38 -0800 | [diff] [blame] | 176 | static inline int |
Florin Coras | 9f86d22 | 2020-03-23 15:34:22 +0000 | [diff] [blame] | 177 | transport_custom_tx (transport_proto_t tp, void *s, |
| 178 | transport_send_params_t * sp) |
Florin Coras | f940f8a | 2019-03-06 10:44:38 -0800 | [diff] [blame] | 179 | { |
Florin Coras | 9f86d22 | 2020-03-23 15:34:22 +0000 | [diff] [blame] | 180 | return tp_vfts[tp].custom_tx (s, sp); |
Florin Coras | f940f8a | 2019-03-06 10:44:38 -0800 | [diff] [blame] | 181 | } |
| 182 | |
Florin Coras | 317b8e0 | 2019-04-17 09:57:46 -0700 | [diff] [blame] | 183 | static inline int |
| 184 | transport_app_rx_evt (transport_proto_t tp, u32 conn_index, u32 thread_index) |
| 185 | { |
| 186 | transport_connection_t *tc; |
| 187 | if (!tp_vfts[tp].app_rx_evt) |
| 188 | return 0; |
| 189 | tc = transport_get_connection (tp, conn_index, thread_index); |
| 190 | return tp_vfts[tp].app_rx_evt (tc); |
| 191 | } |
| 192 | |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 193 | /** |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 194 | * Get send parameters for transport connection |
| 195 | * |
| 196 | * These include maximum tx burst, mss, tx offset and other flags |
| 197 | * transport might want to provide to sessin layer |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 198 | * |
| 199 | * @param tc transport connection |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 200 | * @param sp send paramaters |
| 201 | * |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 202 | */ |
| 203 | static inline u32 |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 204 | transport_connection_snd_params (transport_connection_t * tc, |
| 205 | transport_send_params_t * sp) |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 206 | { |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 207 | return tp_vfts[tc->proto].send_params (tc, sp); |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 208 | } |
| 209 | |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 210 | static inline u8 |
| 211 | transport_connection_is_descheduled (transport_connection_t * tc) |
| 212 | { |
Florin Coras | 6080e0d | 2020-03-13 20:39:43 +0000 | [diff] [blame] | 213 | return ((tc->flags & TRANSPORT_CONNECTION_F_DESCHED) ? 1 : 0); |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | static inline void |
| 217 | transport_connection_deschedule (transport_connection_t * tc) |
| 218 | { |
| 219 | tc->flags |= TRANSPORT_CONNECTION_F_DESCHED; |
| 220 | } |
| 221 | |
Florin Coras | 87b7e3d | 2020-03-27 15:06:07 +0000 | [diff] [blame] | 222 | static inline u8 |
| 223 | transport_connection_is_cless (transport_connection_t * tc) |
| 224 | { |
| 225 | return ((tc->flags & TRANSPORT_CONNECTION_F_CLESS) ? 1 : 0); |
| 226 | } |
| 227 | |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 228 | void transport_connection_reschedule (transport_connection_t * tc); |
Florin Coras | 8c4fa01 | 2020-11-06 16:59:08 -0800 | [diff] [blame] | 229 | void transport_fifos_init_ooo (transport_connection_t * tc); |
Florin Coras | 70f879d | 2020-03-13 17:54:42 +0000 | [diff] [blame] | 230 | |
Florin Coras | 07063b8 | 2020-03-13 04:44:51 +0000 | [diff] [blame] | 231 | /** |
| 232 | * Register transport virtual function table. |
| 233 | * |
| 234 | * @param transport_proto - transport protocol type (i.e., TCP, UDP ..) |
| 235 | * @param vft - virtual function table for transport proto |
| 236 | * @param fib_proto - network layer protocol |
| 237 | * @param output_node - output node index that session layer will hand off |
| 238 | * buffers to, for requested fib proto |
| 239 | */ |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 240 | void transport_register_protocol (transport_proto_t transport_proto, |
| 241 | const transport_proto_vft_t * vft, |
| 242 | fib_protocol_t fib_proto, u32 output_node); |
Florin Coras | 07063b8 | 2020-03-13 04:44:51 +0000 | [diff] [blame] | 243 | transport_proto_t |
| 244 | transport_register_new_protocol (const transport_proto_vft_t * vft, |
| 245 | fib_protocol_t fib_proto, u32 output_node); |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 246 | transport_proto_vft_t *transport_protocol_get_vft (transport_proto_t tp); |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 247 | void transport_update_time (clib_time_type_t time_now, u8 thread_index); |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 248 | |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 249 | int transport_alloc_local_port (u8 proto, ip46_address_t * ip); |
Florin Coras | 5665ced | 2018-10-25 18:03:45 -0700 | [diff] [blame] | 250 | int transport_alloc_local_endpoint (u8 proto, transport_endpoint_cfg_t * rmt, |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 251 | ip46_address_t * lcl_addr, |
| 252 | u16 * lcl_port); |
Florin Coras | 57660d9 | 2020-04-04 22:45:34 +0000 | [diff] [blame] | 253 | void transport_share_local_endpoint (u8 proto, ip46_address_t * lcl_ip, |
| 254 | u16 port); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 255 | void transport_endpoint_cleanup (u8 proto, ip46_address_t * lcl_ip, u16 port); |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 256 | void transport_enable_disable (vlib_main_t * vm, u8 is_en); |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 257 | void transport_init (void); |
| 258 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 259 | always_inline u32 |
| 260 | transport_elog_track_index (transport_connection_t * tc) |
| 261 | { |
| 262 | #if TRANSPORT_DEBUG |
| 263 | return tc->elog_track.track_index_plus_one - 1; |
| 264 | #else |
| 265 | return ~0; |
| 266 | #endif |
| 267 | } |
| 268 | |
| 269 | void transport_connection_tx_pacer_reset (transport_connection_t * tc, |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 270 | u64 rate_bytes_per_sec, |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 271 | u32 initial_bucket, |
| 272 | clib_us_time_t rtt); |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 273 | /** |
| 274 | * Initialize tx pacer for connection |
| 275 | * |
| 276 | * @param tc transport connection |
| 277 | * @param rate_bytes_per_second initial byte rate |
| 278 | * @param burst_bytes initial burst size in bytes |
| 279 | */ |
| 280 | void transport_connection_tx_pacer_init (transport_connection_t * tc, |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 281 | u64 rate_bytes_per_sec, |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 282 | u32 initial_bucket); |
| 283 | |
| 284 | /** |
| 285 | * Update tx pacer pacing rate |
| 286 | * |
| 287 | * @param tc transport connection |
| 288 | * @param bytes_per_sec new pacing rate |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 289 | * @param rtt connection rtt that is used to compute |
| 290 | * inactivity time after which pacer bucket is |
| 291 | * reset to 1 mtu |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 292 | */ |
| 293 | void transport_connection_tx_pacer_update (transport_connection_t * tc, |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 294 | u64 bytes_per_sec, |
| 295 | clib_us_time_t rtt); |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 296 | |
Florin Coras | 5281473 | 2019-06-12 15:38:19 -0700 | [diff] [blame] | 297 | /** |
| 298 | * Get tx pacer max burst |
| 299 | * |
| 300 | * @param tc transport connection |
| 301 | * @param time_now current cpu time |
| 302 | * @return max burst for connection |
| 303 | */ |
Florin Coras | a8e71c8 | 2019-10-22 19:01:39 -0700 | [diff] [blame] | 304 | u32 transport_connection_tx_pacer_burst (transport_connection_t * tc); |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 305 | |
| 306 | /** |
Florin Coras | 5281473 | 2019-06-12 15:38:19 -0700 | [diff] [blame] | 307 | * Get tx pacer current rate |
| 308 | * |
| 309 | * @param tc transport connection |
| 310 | * @return rate for connection in bytes/s |
| 311 | */ |
| 312 | u64 transport_connection_tx_pacer_rate (transport_connection_t * tc); |
| 313 | |
| 314 | /** |
Florin Coras | 36ebcff | 2019-09-12 18:36:44 -0700 | [diff] [blame] | 315 | * Reset tx pacer bucket |
| 316 | * |
| 317 | * @param tc transport connection |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 318 | * @param bucket value the bucket will be reset to |
Florin Coras | 36ebcff | 2019-09-12 18:36:44 -0700 | [diff] [blame] | 319 | */ |
Florin Coras | 11e9e35 | 2019-11-13 19:09:47 -0800 | [diff] [blame] | 320 | void transport_connection_tx_pacer_reset_bucket (transport_connection_t * tc, |
| 321 | u32 bucket); |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 322 | |
| 323 | /** |
| 324 | * Check if transport connection is paced |
| 325 | */ |
| 326 | always_inline u8 |
| 327 | transport_connection_is_tx_paced (transport_connection_t * tc) |
| 328 | { |
| 329 | return (tc->flags & TRANSPORT_CONNECTION_F_IS_TX_PACED); |
| 330 | } |
| 331 | |
Florin Coras | 9bd71be | 2022-01-09 18:18:10 -0800 | [diff] [blame] | 332 | /** |
| 333 | * Clear descheduled flag and update pacer if needed |
| 334 | * |
| 335 | * To add session to scheduler use @ref transport_connection_reschedule |
| 336 | */ |
| 337 | always_inline void |
| 338 | transport_connection_clear_descheduled (transport_connection_t *tc) |
| 339 | { |
| 340 | tc->flags &= ~TRANSPORT_CONNECTION_F_DESCHED; |
| 341 | if (transport_connection_is_tx_paced (tc)) |
| 342 | transport_connection_tx_pacer_reset_bucket (tc, 0 /* bucket */); |
| 343 | } |
| 344 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 345 | u8 *format_transport_pacer (u8 * s, va_list * args); |
| 346 | |
| 347 | /** |
Florin Coras | 0048223 | 2019-08-02 12:52:00 -0700 | [diff] [blame] | 348 | * Update tx bytes for paced transport connection |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 349 | * |
Florin Coras | 0048223 | 2019-08-02 12:52:00 -0700 | [diff] [blame] | 350 | * If tx pacing is enabled, this update pacer bucket to account for the |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 351 | * amount of bytes that have been sent. |
| 352 | * |
| 353 | * @param tc transport connection |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 354 | * @param bytes bytes recently sent |
| 355 | */ |
Florin Coras | 0048223 | 2019-08-02 12:52:00 -0700 | [diff] [blame] | 356 | void transport_connection_update_tx_bytes (transport_connection_t * tc, |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 357 | u32 bytes); |
| 358 | |
| 359 | void |
| 360 | transport_connection_tx_pacer_update_bytes (transport_connection_t * tc, |
| 361 | u32 bytes); |
| 362 | |
Florin Coras | 8f10b90 | 2021-04-02 18:32:00 -0700 | [diff] [blame] | 363 | /** |
| 364 | * Request pacer time update |
| 365 | * |
| 366 | * @param thread_index thread for which time is updated |
| 367 | * @param now time now |
| 368 | */ |
| 369 | void transport_update_pacer_time (u32 thread_index, clib_time_type_t now); |
| 370 | |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 371 | #endif /* SRC_VNET_SESSION_TRANSPORT_H_ */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 372 | |
| 373 | /* |
| 374 | * fd.io coding-style-patch-verification: ON |
| 375 | * |
| 376 | * Local Variables: |
| 377 | * eval: (c-set-style "gnu") |
| 378 | * End: |
| 379 | */ |