Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016-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 | #ifndef __included_fifo_segment_h__ |
| 16 | #define __included_fifo_segment_h__ |
| 17 | |
| 18 | #include <svm/ssvm.h> |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 19 | #include <svm/fifo_types.h> |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 20 | #include <svm/message_queue.h> |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 21 | #include <svm/svm_fifo.h> |
| 22 | |
| 23 | typedef enum |
| 24 | { |
| 25 | FIFO_SEGMENT_FTYPE_NONE = -1, |
| 26 | FIFO_SEGMENT_RX_FIFO = 0, |
| 27 | FIFO_SEGMENT_TX_FIFO, |
| 28 | FIFO_SEGMENT_N_FTYPES |
| 29 | } fifo_segment_ftype_t; |
| 30 | |
Florin Coras | 62ddc03 | 2019-12-08 18:30:42 -0800 | [diff] [blame] | 31 | #define FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE 12 /**< 4kB min fifo size */ |
| 32 | #define FIFO_SEGMENT_MIN_FIFO_SIZE 4096 /**< 4kB min fifo size */ |
Florin Coras | e2c9f23 | 2020-09-29 10:27:07 -0700 | [diff] [blame] | 33 | #define FIFO_SEGMENT_MAX_FIFO_SIZE (2ULL << 30) /**< 2GB max fifo size */ |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 34 | #define FIFO_SEGMENT_ALLOC_BATCH_SIZE 32 /* Allocation quantum */ |
| 35 | |
| 36 | typedef enum fifo_segment_flags_ |
| 37 | { |
| 38 | FIFO_SEGMENT_F_IS_PREALLOCATED = 1 << 0, |
| 39 | FIFO_SEGMENT_F_WILL_DELETE = 1 << 1, |
Florin Coras | 8122cc2 | 2019-12-18 13:06:41 -0800 | [diff] [blame] | 40 | FIFO_SEGMENT_F_MEM_LIMIT = 1 << 2, |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 41 | } fifo_segment_flags_t; |
| 42 | |
Ryujiro Shibuya | 234fe89 | 2019-12-25 07:40:54 +0000 | [diff] [blame] | 43 | #define foreach_segment_mem_status \ |
| 44 | _(NO_PRESSURE, "No pressure") \ |
| 45 | _(LOW_PRESSURE, "Low pressure") \ |
| 46 | _(HIGH_PRESSURE, "High pressure") \ |
| 47 | _(NO_MEMORY, "No memory") |
| 48 | |
| 49 | typedef enum |
| 50 | { |
| 51 | #define _(sym,str) MEMORY_PRESSURE_##sym, |
| 52 | foreach_segment_mem_status |
| 53 | #undef _ |
| 54 | MEMORY_N_PRESSURE, |
| 55 | } fifo_segment_mem_status_t; |
| 56 | |
| 57 | #if 0 |
| 58 | typedef enum fifo_segment_mem_status_ |
| 59 | { |
| 60 | MEMORY_PRESSURE_NO_PRESSURE, |
| 61 | MEMORY_PRESSURE_LOW_PRESSURE, |
| 62 | MEMORY_PRESSURE_HIGH_PRESSURE, |
| 63 | MEMORY_PRESSURE_NO_MEMORY, |
| 64 | } fifo_segment_mem_status_t; |
| 65 | #endif |
| 66 | |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 67 | typedef struct |
| 68 | { |
| 69 | ssvm_private_t ssvm; /**< ssvm segment data */ |
| 70 | fifo_segment_header_t *h; /**< fifo segment data */ |
Florin Coras | 213b1bb | 2020-12-07 14:33:58 -0800 | [diff] [blame] | 71 | uword max_byte_index; |
Florin Coras | 62ddc03 | 2019-12-08 18:30:42 -0800 | [diff] [blame] | 72 | u8 n_slices; /**< number of fifo segment slices */ |
Florin Coras | c547e91 | 2020-12-08 17:50:45 -0800 | [diff] [blame] | 73 | fifo_slice_private_t *slices; /**< private slice information */ |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 74 | svm_msg_q_t *mqs; /**< private vec of attached mqs */ |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 75 | } fifo_segment_t; |
| 76 | |
| 77 | typedef struct |
| 78 | { |
| 79 | fifo_segment_t *segments; /**< pool of fifo segments */ |
Florin Coras | ef4f3e7 | 2019-12-11 14:27:53 -0800 | [diff] [blame] | 80 | uword next_baseva; /**< Where to put the next one */ |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 81 | u32 timeout_in_seconds; /**< Time to wait during attach */ |
| 82 | } fifo_segment_main_t; |
| 83 | |
| 84 | typedef struct |
| 85 | { |
| 86 | ssvm_segment_type_t segment_type; /**< type of segment requested */ |
| 87 | u32 segment_size; /**< size of the segment */ |
| 88 | int memfd_fd; /**< fd for memfd segments */ |
| 89 | char *segment_name; /**< segment name */ |
| 90 | u32 *new_segment_indices; /**< return vec of new seg indices */ |
| 91 | } fifo_segment_create_args_t; |
| 92 | |
| 93 | #define fifo_segment_flags(_fs) _fs->h->flags |
| 94 | |
| 95 | int fifo_segment_init (fifo_segment_t * fs); |
| 96 | int fifo_segment_create (fifo_segment_main_t * sm, |
| 97 | fifo_segment_create_args_t * a); |
| 98 | int fifo_segment_attach (fifo_segment_main_t * sm, |
| 99 | fifo_segment_create_args_t * a); |
| 100 | void fifo_segment_delete (fifo_segment_main_t * sm, fifo_segment_t * fs); |
Florin Coras | c547e91 | 2020-12-08 17:50:45 -0800 | [diff] [blame] | 101 | void fifo_segment_cleanup (fifo_segment_t *fs); |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 102 | fifo_segment_t *fifo_segment_get_segment (fifo_segment_main_t * sm, |
| 103 | u32 fs_index); |
| 104 | u32 fifo_segment_index (fifo_segment_main_t * sm, fifo_segment_t * fs); |
| 105 | void fifo_segment_info (fifo_segment_t * seg, char **address, size_t * size); |
| 106 | |
Florin Coras | 14f066e | 2020-12-10 18:52:40 -0800 | [diff] [blame^] | 107 | always_inline void * |
| 108 | fifo_segment_ptr (fifo_segment_t *fs, uword offset) |
| 109 | { |
| 110 | return (void *) ((u8 *) fs->h + offset); |
| 111 | } |
| 112 | |
| 113 | always_inline uword |
| 114 | fifo_segment_offset (fifo_segment_t *fs, void *p) |
| 115 | { |
| 116 | return (uword) ((u8 *) p - (u8 *) fs->h); |
| 117 | } |
| 118 | |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 119 | /** |
| 120 | * Allocate fifo in fifo segment |
| 121 | * |
Florin Coras | b095a3c | 2019-04-25 12:58:46 -0700 | [diff] [blame] | 122 | * @param fs fifo segment for fifo |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 123 | * @param data_bytes size of default fifo chunk in bytes |
| 124 | * @param ftype fifo type @ref fifo_segment_ftype_t |
| 125 | * @return new fifo or 0 if alloc failed |
| 126 | */ |
Florin Coras | 62ddc03 | 2019-12-08 18:30:42 -0800 | [diff] [blame] | 127 | svm_fifo_t *fifo_segment_alloc_fifo_w_slice (fifo_segment_t * fs, |
| 128 | u32 slice_index, |
| 129 | u32 data_bytes, |
| 130 | fifo_segment_ftype_t ftype); |
Florin Coras | 14f066e | 2020-12-10 18:52:40 -0800 | [diff] [blame^] | 131 | svm_fifo_t *fifo_segment_alloc_fifo_w_offset (fifo_segment_t *fs, |
| 132 | uword offset); |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 133 | |
| 134 | /** |
| 135 | * Free fifo allocated in fifo segment |
| 136 | * |
Florin Coras | b095a3c | 2019-04-25 12:58:46 -0700 | [diff] [blame] | 137 | * @param fs fifo segment for fifo |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 138 | * @param f fifo to be freed |
| 139 | */ |
| 140 | void fifo_segment_free_fifo (fifo_segment_t * fs, svm_fifo_t * f); |
| 141 | |
Florin Coras | 6d7552c | 2020-04-09 01:49:45 +0000 | [diff] [blame] | 142 | void fifo_segment_detach_fifo (fifo_segment_t * fs, svm_fifo_t * f); |
| 143 | void fifo_segment_attach_fifo (fifo_segment_t * fs, svm_fifo_t * f, |
| 144 | u32 slice_index); |
Florin Coras | 14f066e | 2020-12-10 18:52:40 -0800 | [diff] [blame^] | 145 | uword fifo_segment_fifo_offset (svm_fifo_t *f); |
Florin Coras | 6d7552c | 2020-04-09 01:49:45 +0000 | [diff] [blame] | 146 | |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 147 | /** |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 148 | * Allocate message queue on segment |
| 149 | * |
| 150 | * @param fs fifo segment for mq |
| 151 | * @param mq_index index in private mqs vector to use to attach |
| 152 | * @param cfg configuration for mq |
| 153 | * @return attached message queue |
| 154 | */ |
| 155 | svm_msg_q_t *fifo_segment_msg_q_alloc (fifo_segment_t *fs, u32 mq_index, |
| 156 | svm_msg_q_cfg_t *cfg); |
| 157 | |
| 158 | /** |
| 159 | * Attach message queue at fifo segment offset |
| 160 | * |
| 161 | * @param fs fifo segment for mq |
| 162 | * @param offset offset for shared mq on the segment |
| 163 | * @param mq_index index in private mqs vector to use to attach |
| 164 | * @return attached message queue |
| 165 | */ |
| 166 | svm_msg_q_t *fifo_segment_msg_q_attach (fifo_segment_t *fs, uword offset, |
| 167 | u32 mq_index); |
| 168 | |
| 169 | /** |
| 170 | * Message queue offset on segment |
| 171 | * |
| 172 | * @param fs fifo segment for mq |
| 173 | * @param mq_index index of mq in private mqs vector |
| 174 | * @return offset of the shared mq the private mq is attached to |
| 175 | */ |
| 176 | uword fifo_segment_msg_q_offset (fifo_segment_t *fs, u32 mq_index); |
| 177 | |
| 178 | /** |
Florin Coras | f9d4ab4 | 2019-05-11 16:55:53 -0700 | [diff] [blame] | 179 | * Try to preallocate fifo headers |
| 180 | * |
| 181 | * Tries to preallocate fifo headers and adds them to freelist. |
| 182 | * |
| 183 | * @param fs fifo segment |
| 184 | * @param batch_size number of chunks to be allocated |
| 185 | * @return 0 on success, negative number otherwise |
| 186 | */ |
Florin Coras | 62ddc03 | 2019-12-08 18:30:42 -0800 | [diff] [blame] | 187 | int fifo_segment_prealloc_fifo_hdrs (fifo_segment_t * fs, u32 slice_index, |
| 188 | u32 batch_size); |
Florin Coras | f9d4ab4 | 2019-05-11 16:55:53 -0700 | [diff] [blame] | 189 | |
| 190 | /** |
| 191 | * Try to preallocate fifo chunks on segment |
| 192 | * |
| 193 | * Tries to preallocate chunks of requested size on segment and adds them |
| 194 | * to chunk freelist. |
| 195 | * |
| 196 | * @param fs fifo segment |
| 197 | * @param chunk_size size of chunks to be allocated in bytes |
| 198 | * @param batch_size number of chunks to be allocated |
| 199 | * @return 0 on success, negative number otherwise |
| 200 | */ |
Florin Coras | 62ddc03 | 2019-12-08 18:30:42 -0800 | [diff] [blame] | 201 | int fifo_segment_prealloc_fifo_chunks (fifo_segment_t * fs, u32 slice_index, |
| 202 | u32 chunk_size, u32 batch_size); |
Florin Coras | f9d4ab4 | 2019-05-11 16:55:53 -0700 | [diff] [blame] | 203 | /** |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 204 | * Pre-allocates fifo pairs in fifo segment |
| 205 | * |
| 206 | * The number of fifos pre-allocated is the minimum of the requested number |
| 207 | * of pairs and the maximum number that fit within the segment. If the maximum |
| 208 | * is hit, the number of fifo pairs requested is updated by subtracting the |
| 209 | * number of fifos that have been successfully allocated. |
| 210 | * |
Florin Coras | b095a3c | 2019-04-25 12:58:46 -0700 | [diff] [blame] | 211 | * @param fs fifo segment for fifo |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 212 | * @param rx_fifo_size data size of rx fifos |
| 213 | * @param tx_fifo_size data size of tx fifos |
| 214 | * @param n_fifo_pairs number of pairs requested. Prior to returning, this |
| 215 | * is decremented by the the number of pairs allocated. |
| 216 | */ |
| 217 | void fifo_segment_preallocate_fifo_pairs (fifo_segment_t * fs, |
| 218 | u32 rx_fifo_size, |
| 219 | u32 tx_fifo_size, |
| 220 | u32 * n_fifo_pairs); |
Florin Coras | 344ce42 | 2019-05-03 11:46:55 -0700 | [diff] [blame] | 221 | |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 222 | /** |
| 223 | * Allocate chunks in fifo segment |
| 224 | * |
| 225 | * @param fsh fifo segment header |
| 226 | * @param slice_index slice where chunks should be alocated |
| 227 | * @param chunk_size chunk size needed |
| 228 | * @return chunk (or chunks) that cover at least chunk_size bytes |
| 229 | * on success, 0 on failure. |
| 230 | */ |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 231 | svm_fifo_chunk_t *fsh_alloc_chunk (fifo_segment_header_t * fsh, |
| 232 | u32 slice_index, u32 chunk_size); |
| 233 | |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 234 | /** |
| 235 | * Return chunks to fifo segment |
| 236 | * |
| 237 | * @param fsh fifo segment header |
| 238 | * @param slice_index slice where chunks should be returned |
| 239 | * @param c pointer to first chunk in 0 terminated linked list |
| 240 | */ |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 241 | void fsh_collect_chunks (fifo_segment_header_t * fsh, u32 slice_index, |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 242 | svm_fifo_chunk_t * c); |
Florin Coras | f9d4ab4 | 2019-05-11 16:55:53 -0700 | [diff] [blame] | 243 | |
| 244 | /** |
Ryujiro Shibuya | 234fe89 | 2019-12-25 07:40:54 +0000 | [diff] [blame] | 245 | * Fifo segment has reached mem limit |
| 246 | * |
| 247 | * @param fsh fifo segment header |
| 248 | * @return 1 (if reached) or 0 (otherwise) |
| 249 | */ |
| 250 | u8 fsh_has_reached_mem_limit (fifo_segment_header_t * fsh); |
| 251 | |
| 252 | /** |
| 253 | * Fifo segment reset mem limit flag |
| 254 | * |
| 255 | * @param fs fifo segment |
| 256 | */ |
| 257 | void fsh_reset_mem_limit (fifo_segment_header_t * fsh); |
| 258 | |
| 259 | /** |
Florin Coras | 213b1bb | 2020-12-07 14:33:58 -0800 | [diff] [blame] | 260 | * Fifo segment reset mem limit flag |
| 261 | * |
| 262 | * @param fs fifo segment |
| 263 | * @param size size requested |
| 264 | * @return pointer to memory allocated or 0 |
| 265 | */ |
| 266 | void *fifo_segment_alloc (fifo_segment_t *fs, uword size); |
| 267 | /** |
Ryujiro Shibuya | 234fe89 | 2019-12-25 07:40:54 +0000 | [diff] [blame] | 268 | * Fifo segment allocated size |
| 269 | * |
| 270 | * Returns fifo segment's allocated size |
| 271 | * |
| 272 | * @param fs fifo segment |
| 273 | * @return allocated size in bytes |
| 274 | */ |
| 275 | uword fifo_segment_size (fifo_segment_t * fs); |
| 276 | |
| 277 | /** |
Florin Coras | f9d4ab4 | 2019-05-11 16:55:53 -0700 | [diff] [blame] | 278 | * Fifo segment estimate of number of free bytes |
| 279 | * |
| 280 | * Returns fifo segment's internal estimate of the number of free bytes. |
| 281 | * To force a synchronization between the segment and the underlying |
| 282 | * memory allocator, call @ref fifo_segment_update_free_bytes |
| 283 | * |
| 284 | * @param fs fifo segment |
| 285 | * @return free bytes estimate |
| 286 | */ |
Florin Coras | ef4f3e7 | 2019-12-11 14:27:53 -0800 | [diff] [blame] | 287 | uword fifo_segment_free_bytes (fifo_segment_t * fs); |
Florin Coras | f9d4ab4 | 2019-05-11 16:55:53 -0700 | [diff] [blame] | 288 | |
| 289 | /** |
Ryujiro Shibuya | 234fe89 | 2019-12-25 07:40:54 +0000 | [diff] [blame] | 290 | * Fifo segment number of cached bytes |
| 291 | * |
| 292 | * Returns fifo segment's number of cached bytes. |
| 293 | * |
| 294 | * @param fs fifo segment |
| 295 | * @return cached bytes |
| 296 | */ |
| 297 | uword fifo_segment_cached_bytes (fifo_segment_t * fs); |
| 298 | |
Florin Coras | 75ccf7b | 2020-03-05 19:44:02 +0000 | [diff] [blame] | 299 | uword fifo_segment_available_bytes (fifo_segment_t * fs); |
| 300 | |
Ryujiro Shibuya | 234fe89 | 2019-12-25 07:40:54 +0000 | [diff] [blame] | 301 | /** |
Florin Coras | f9d4ab4 | 2019-05-11 16:55:53 -0700 | [diff] [blame] | 302 | * Number of bytes on chunk free lists |
| 303 | * |
| 304 | * @param fs fifo segment |
| 305 | * @return free bytes on chunk free lists |
| 306 | */ |
Florin Coras | 62ddc03 | 2019-12-08 18:30:42 -0800 | [diff] [blame] | 307 | uword fifo_segment_fl_chunk_bytes (fifo_segment_t * fs); |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 308 | u8 fifo_segment_has_fifos (fifo_segment_t * fs); |
Florin Coras | 62ddc03 | 2019-12-08 18:30:42 -0800 | [diff] [blame] | 309 | svm_fifo_t *fifo_segment_get_slice_fifo_list (fifo_segment_t * fs, |
| 310 | u32 slice_index); |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 311 | u32 fifo_segment_num_fifos (fifo_segment_t * fs); |
Florin Coras | f9d4ab4 | 2019-05-11 16:55:53 -0700 | [diff] [blame] | 312 | u32 fifo_segment_num_free_fifos (fifo_segment_t * fs); |
Florin Coras | b095a3c | 2019-04-25 12:58:46 -0700 | [diff] [blame] | 313 | /** |
| 314 | * Find number of free chunks of given size |
| 315 | * |
| 316 | * @param fs fifo segment |
| 317 | * @param size chunk size of interest or ~0 if all should be counted |
| 318 | * @return number of chunks of given size |
| 319 | */ |
| 320 | u32 fifo_segment_num_free_chunks (fifo_segment_t * fs, u32 size); |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 321 | |
Ryujiro Shibuya | 234fe89 | 2019-12-25 07:40:54 +0000 | [diff] [blame] | 322 | u8 fifo_segment_get_mem_usage (fifo_segment_t * fs); |
| 323 | fifo_segment_mem_status_t fifo_segment_determine_status |
| 324 | (fifo_segment_header_t * fsh, u8 usage); |
| 325 | fifo_segment_mem_status_t fifo_segment_get_mem_status (fifo_segment_t * fs); |
| 326 | |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 327 | void fifo_segment_main_init (fifo_segment_main_t * sm, u64 baseva, |
| 328 | u32 timeout_in_seconds); |
| 329 | |
| 330 | format_function_t format_fifo_segment; |
| 331 | format_function_t format_fifo_segment_type; |
| 332 | |
| 333 | #endif /* __included_fifo_segment_h__ */ |
| 334 | |
| 335 | /* |
| 336 | * fd.io coding-style-patch-verification: ON |
| 337 | * |
| 338 | * Local Variables: |
| 339 | * eval: (c-set-style "gnu") |
| 340 | * End: |
| 341 | */ |