blob: 440f1bb6a024280dda3c9763c1f89fc00302b6d0 [file] [log] [blame]
Florin Coras88001c62019-04-24 14:44:46 -07001/*
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 Corasf22f4e52019-12-19 16:10:58 -080019#include <svm/fifo_types.h>
Florin Corasb4624182020-12-11 13:58:12 -080020#include <svm/message_queue.h>
Florin Coras88001c62019-04-24 14:44:46 -070021#include <svm/svm_fifo.h>
22
Filip Tehlar2711ca72021-11-24 10:30:59 +000023#define FIFO_SEGMENT_ALLOC_OVERHEAD (2 * clib_mem_get_page_size ())
24
Florin Coras88001c62019-04-24 14:44:46 -070025typedef enum
26{
27 FIFO_SEGMENT_FTYPE_NONE = -1,
28 FIFO_SEGMENT_RX_FIFO = 0,
29 FIFO_SEGMENT_TX_FIFO,
30 FIFO_SEGMENT_N_FTYPES
31} fifo_segment_ftype_t;
32
Florin Coras62ddc032019-12-08 18:30:42 -080033#define FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE 12 /**< 4kB min fifo size */
34#define FIFO_SEGMENT_MIN_FIFO_SIZE 4096 /**< 4kB min fifo size */
Florin Corase2c9f232020-09-29 10:27:07 -070035#define FIFO_SEGMENT_MAX_FIFO_SIZE (2ULL << 30) /**< 2GB max fifo size */
Florin Coras88001c62019-04-24 14:44:46 -070036#define FIFO_SEGMENT_ALLOC_BATCH_SIZE 32 /* Allocation quantum */
37
38typedef enum fifo_segment_flags_
39{
40 FIFO_SEGMENT_F_IS_PREALLOCATED = 1 << 0,
41 FIFO_SEGMENT_F_WILL_DELETE = 1 << 1,
Florin Coras8122cc22019-12-18 13:06:41 -080042 FIFO_SEGMENT_F_MEM_LIMIT = 1 << 2,
Florin Corasda78c5a2021-06-09 14:55:24 -070043 FIFO_SEGMENT_F_CUSTOM_USE = 1 << 3,
Florin Coras88001c62019-04-24 14:44:46 -070044} fifo_segment_flags_t;
45
Ryujiro Shibuya234fe892019-12-25 07:40:54 +000046#define foreach_segment_mem_status \
47_(NO_PRESSURE, "No pressure") \
48_(LOW_PRESSURE, "Low pressure") \
49_(HIGH_PRESSURE, "High pressure") \
50_(NO_MEMORY, "No memory")
51
52typedef enum
53{
54#define _(sym,str) MEMORY_PRESSURE_##sym,
55 foreach_segment_mem_status
56#undef _
57 MEMORY_N_PRESSURE,
58} fifo_segment_mem_status_t;
59
60#if 0
61typedef enum fifo_segment_mem_status_
62{
63 MEMORY_PRESSURE_NO_PRESSURE,
64 MEMORY_PRESSURE_LOW_PRESSURE,
65 MEMORY_PRESSURE_HIGH_PRESSURE,
66 MEMORY_PRESSURE_NO_MEMORY,
67} fifo_segment_mem_status_t;
68#endif
69
Florin Coras88001c62019-04-24 14:44:46 -070070typedef struct
71{
72 ssvm_private_t ssvm; /**< ssvm segment data */
73 fifo_segment_header_t *h; /**< fifo segment data */
Florin Corasc547e912020-12-08 17:50:45 -080074 fifo_slice_private_t *slices; /**< private slice information */
Florin Corasb4624182020-12-11 13:58:12 -080075 svm_msg_q_t *mqs; /**< private vec of attached mqs */
Florin Corasafbb33a2021-08-10 16:56:34 -070076 uword max_byte_index; /**< max byte index for segment */
77 u8 n_slices; /**< number of fifo segment slices */
78 u8 flags; /**< private fifo segment flags */
79 u8 high_watermark; /**< memory pressure watermark high */
80 u8 low_watermark; /**< memory pressure watermark low */
Florin Coras88001c62019-04-24 14:44:46 -070081} fifo_segment_t;
82
83typedef struct
84{
85 fifo_segment_t *segments; /**< pool of fifo segments */
Florin Corasef4f3e72019-12-11 14:27:53 -080086 uword next_baseva; /**< Where to put the next one */
Florin Coras88001c62019-04-24 14:44:46 -070087 u32 timeout_in_seconds; /**< Time to wait during attach */
88} fifo_segment_main_t;
89
90typedef struct
91{
92 ssvm_segment_type_t segment_type; /**< type of segment requested */
93 u32 segment_size; /**< size of the segment */
94 int memfd_fd; /**< fd for memfd segments */
95 char *segment_name; /**< segment name */
96 u32 *new_segment_indices; /**< return vec of new seg indices */
97} fifo_segment_create_args_t;
98
Florin Corasafbb33a2021-08-10 16:56:34 -070099#define fifo_segment_flags(_fs) _fs->flags
Florin Coras88001c62019-04-24 14:44:46 -0700100
101int fifo_segment_init (fifo_segment_t * fs);
102int fifo_segment_create (fifo_segment_main_t * sm,
103 fifo_segment_create_args_t * a);
104int fifo_segment_attach (fifo_segment_main_t * sm,
105 fifo_segment_create_args_t * a);
106void fifo_segment_delete (fifo_segment_main_t * sm, fifo_segment_t * fs);
Florin Corasc547e912020-12-08 17:50:45 -0800107void fifo_segment_cleanup (fifo_segment_t *fs);
Florin Coras88001c62019-04-24 14:44:46 -0700108fifo_segment_t *fifo_segment_get_segment (fifo_segment_main_t * sm,
109 u32 fs_index);
Florin Corascbb5e822021-02-20 10:42:22 -0800110fifo_segment_t *fifo_segment_get_segment_if_valid (fifo_segment_main_t *sm,
111 u32 segment_index);
Florin Coras88001c62019-04-24 14:44:46 -0700112u32 fifo_segment_index (fifo_segment_main_t * sm, fifo_segment_t * fs);
113void fifo_segment_info (fifo_segment_t * seg, char **address, size_t * size);
114
Florin Coras14f066e2020-12-10 18:52:40 -0800115always_inline void *
116fifo_segment_ptr (fifo_segment_t *fs, uword offset)
117{
118 return (void *) ((u8 *) fs->h + offset);
119}
120
121always_inline uword
122fifo_segment_offset (fifo_segment_t *fs, void *p)
123{
124 return (uword) ((u8 *) p - (u8 *) fs->h);
125}
126
Florin Coras88001c62019-04-24 14:44:46 -0700127/**
128 * Allocate fifo in fifo segment
129 *
Florin Corasb095a3c2019-04-25 12:58:46 -0700130 * @param fs fifo segment for fifo
Florin Coras88001c62019-04-24 14:44:46 -0700131 * @param data_bytes size of default fifo chunk in bytes
132 * @param ftype fifo type @ref fifo_segment_ftype_t
133 * @return new fifo or 0 if alloc failed
134 */
Florin Coras62ddc032019-12-08 18:30:42 -0800135svm_fifo_t *fifo_segment_alloc_fifo_w_slice (fifo_segment_t * fs,
136 u32 slice_index,
137 u32 data_bytes,
138 fifo_segment_ftype_t ftype);
Florin Coras14f066e2020-12-10 18:52:40 -0800139svm_fifo_t *fifo_segment_alloc_fifo_w_offset (fifo_segment_t *fs,
140 uword offset);
Florin Coras8eb8d502021-06-16 14:46:57 -0700141svm_fifo_t *fifo_segment_duplicate_fifo (fifo_segment_t *fs, svm_fifo_t *f);
Florin Coras88001c62019-04-24 14:44:46 -0700142
143/**
144 * Free fifo allocated in fifo segment
145 *
Florin Corasb095a3c2019-04-25 12:58:46 -0700146 * @param fs fifo segment for fifo
Florin Coras88001c62019-04-24 14:44:46 -0700147 * @param f fifo to be freed
148 */
149void fifo_segment_free_fifo (fifo_segment_t * fs, svm_fifo_t * f);
150
Florin Corascbb5e822021-02-20 10:42:22 -0800151/**
152 * Free fifo allocated by external applications
153 *
154 * @params fs fifo segment for fifo
155 * @param f fifo to be freed
156 */
157void fifo_segment_free_client_fifo (fifo_segment_t *fs, svm_fifo_t *f);
158
Florin Coras0bc78d82021-01-09 14:34:01 -0800159void fifo_segment_detach_fifo (fifo_segment_t *fs, svm_fifo_t **f);
160void fifo_segment_attach_fifo (fifo_segment_t *fs, svm_fifo_t **f,
Florin Coras6d7552c2020-04-09 01:49:45 +0000161 u32 slice_index);
Florin Coras14f066e2020-12-10 18:52:40 -0800162uword fifo_segment_fifo_offset (svm_fifo_t *f);
Florin Coras6d7552c2020-04-09 01:49:45 +0000163
Florin Coras88001c62019-04-24 14:44:46 -0700164/**
Florin Corasb4624182020-12-11 13:58:12 -0800165 * Allocate message queue on segment
166 *
167 * @param fs fifo segment for mq
168 * @param mq_index index in private mqs vector to use to attach
169 * @param cfg configuration for mq
170 * @return attached message queue
171 */
172svm_msg_q_t *fifo_segment_msg_q_alloc (fifo_segment_t *fs, u32 mq_index,
173 svm_msg_q_cfg_t *cfg);
174
175/**
176 * Attach message queue at fifo segment offset
177 *
178 * @param fs fifo segment for mq
179 * @param offset offset for shared mq on the segment
180 * @param mq_index index in private mqs vector to use to attach
181 * @return attached message queue
182 */
183svm_msg_q_t *fifo_segment_msg_q_attach (fifo_segment_t *fs, uword offset,
184 u32 mq_index);
185
186/**
Florin Coras80b74252021-01-27 18:08:25 -0800187 * Discover mqs on mq only segment
188 *
189 * @param fs fifo segment for mq
190 * @param fds array of fds is mqs use eventfds
191 * @param n_fds number of fds
192 */
193void fifo_segment_msg_qs_discover (fifo_segment_t *fs, int *fds, u32 n_fds);
194
195/**
Florin Corasb4624182020-12-11 13:58:12 -0800196 * Message queue offset on segment
197 *
198 * @param fs fifo segment for mq
199 * @param mq_index index of mq in private mqs vector
200 * @return offset of the shared mq the private mq is attached to
201 */
202uword fifo_segment_msg_q_offset (fifo_segment_t *fs, u32 mq_index);
203
204/**
Florin Corasf9d4ab42019-05-11 16:55:53 -0700205 * Try to preallocate fifo headers
206 *
207 * Tries to preallocate fifo headers and adds them to freelist.
208 *
209 * @param fs fifo segment
210 * @param batch_size number of chunks to be allocated
211 * @return 0 on success, negative number otherwise
212 */
Florin Coras62ddc032019-12-08 18:30:42 -0800213int fifo_segment_prealloc_fifo_hdrs (fifo_segment_t * fs, u32 slice_index,
214 u32 batch_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700215
216/**
217 * Try to preallocate fifo chunks on segment
218 *
219 * Tries to preallocate chunks of requested size on segment and adds them
220 * to chunk freelist.
221 *
222 * @param fs fifo segment
223 * @param chunk_size size of chunks to be allocated in bytes
224 * @param batch_size number of chunks to be allocated
225 * @return 0 on success, negative number otherwise
226 */
Florin Coras62ddc032019-12-08 18:30:42 -0800227int fifo_segment_prealloc_fifo_chunks (fifo_segment_t * fs, u32 slice_index,
228 u32 chunk_size, u32 batch_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700229/**
Florin Coras88001c62019-04-24 14:44:46 -0700230 * Pre-allocates fifo pairs in fifo segment
231 *
232 * The number of fifos pre-allocated is the minimum of the requested number
233 * of pairs and the maximum number that fit within the segment. If the maximum
234 * is hit, the number of fifo pairs requested is updated by subtracting the
235 * number of fifos that have been successfully allocated.
236 *
Florin Corasb095a3c2019-04-25 12:58:46 -0700237 * @param fs fifo segment for fifo
Florin Coras88001c62019-04-24 14:44:46 -0700238 * @param rx_fifo_size data size of rx fifos
239 * @param tx_fifo_size data size of tx fifos
240 * @param n_fifo_pairs number of pairs requested. Prior to returning, this
241 * is decremented by the the number of pairs allocated.
242 */
243void fifo_segment_preallocate_fifo_pairs (fifo_segment_t * fs,
244 u32 rx_fifo_size,
245 u32 tx_fifo_size,
246 u32 * n_fifo_pairs);
Florin Coras344ce422019-05-03 11:46:55 -0700247
Florin Coras9e61d9a2020-02-05 21:13:18 +0000248/**
249 * Allocate chunks in fifo segment
250 *
251 * @param fsh fifo segment header
252 * @param slice_index slice where chunks should be alocated
253 * @param chunk_size chunk size needed
254 * @return chunk (or chunks) that cover at least chunk_size bytes
255 * on success, 0 on failure.
256 */
Florin Corasf22f4e52019-12-19 16:10:58 -0800257svm_fifo_chunk_t *fsh_alloc_chunk (fifo_segment_header_t * fsh,
258 u32 slice_index, u32 chunk_size);
259
Florin Coras9e61d9a2020-02-05 21:13:18 +0000260/**
261 * Return chunks to fifo segment
262 *
263 * @param fsh fifo segment header
264 * @param slice_index slice where chunks should be returned
265 * @param c pointer to first chunk in 0 terminated linked list
266 */
Florin Corasf22f4e52019-12-19 16:10:58 -0800267void fsh_collect_chunks (fifo_segment_header_t * fsh, u32 slice_index,
Florin Coras9e61d9a2020-02-05 21:13:18 +0000268 svm_fifo_chunk_t * c);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700269
270/**
Florin Coras213b1bb2020-12-07 14:33:58 -0800271 * Fifo segment reset mem limit flag
272 *
273 * @param fs fifo segment
274 * @param size size requested
275 * @return pointer to memory allocated or 0
276 */
277void *fifo_segment_alloc (fifo_segment_t *fs, uword size);
278/**
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000279 * Fifo segment allocated size
280 *
281 * Returns fifo segment's allocated size
282 *
283 * @param fs fifo segment
284 * @return allocated size in bytes
285 */
286uword fifo_segment_size (fifo_segment_t * fs);
287
288/**
Florin Corasf9d4ab42019-05-11 16:55:53 -0700289 * Fifo segment estimate of number of free bytes
290 *
291 * Returns fifo segment's internal estimate of the number of free bytes.
292 * To force a synchronization between the segment and the underlying
293 * memory allocator, call @ref fifo_segment_update_free_bytes
294 *
295 * @param fs fifo segment
296 * @return free bytes estimate
297 */
Florin Corasef4f3e72019-12-11 14:27:53 -0800298uword fifo_segment_free_bytes (fifo_segment_t * fs);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700299
300/**
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000301 * Fifo segment number of cached bytes
302 *
303 * Returns fifo segment's number of cached bytes.
304 *
305 * @param fs fifo segment
306 * @return cached bytes
307 */
308uword fifo_segment_cached_bytes (fifo_segment_t * fs);
309
Florin Coras75ccf7b2020-03-05 19:44:02 +0000310uword fifo_segment_available_bytes (fifo_segment_t * fs);
311
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000312/**
Florin Corasf9d4ab42019-05-11 16:55:53 -0700313 * Number of bytes on chunk free lists
314 *
315 * @param fs fifo segment
316 * @return free bytes on chunk free lists
317 */
Florin Coras62ddc032019-12-08 18:30:42 -0800318uword fifo_segment_fl_chunk_bytes (fifo_segment_t * fs);
Florin Coras88001c62019-04-24 14:44:46 -0700319u8 fifo_segment_has_fifos (fifo_segment_t * fs);
Florin Coras62ddc032019-12-08 18:30:42 -0800320svm_fifo_t *fifo_segment_get_slice_fifo_list (fifo_segment_t * fs,
321 u32 slice_index);
Florin Coras88001c62019-04-24 14:44:46 -0700322u32 fifo_segment_num_fifos (fifo_segment_t * fs);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700323u32 fifo_segment_num_free_fifos (fifo_segment_t * fs);
Florin Coras00338e02021-04-20 14:26:46 -0700324
325svm_fifo_chunk_t *fifo_segment_alloc_chunk_w_slice (fifo_segment_t *fs,
326 u32 slice_index,
327 u32 chunk_size);
328void fifo_segment_collect_chunk (fifo_segment_t *fs, u32 slice_index,
329 svm_fifo_chunk_t *c);
330uword fifo_segment_chunk_offset (fifo_segment_t *fs, svm_fifo_chunk_t *c);
331
Florin Corasb095a3c2019-04-25 12:58:46 -0700332/**
333 * Find number of free chunks of given size
334 *
335 * @param fs fifo segment
336 * @param size chunk size of interest or ~0 if all should be counted
337 * @return number of chunks of given size
338 */
339u32 fifo_segment_num_free_chunks (fifo_segment_t * fs, u32 size);
Florin Coras88001c62019-04-24 14:44:46 -0700340
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000341u8 fifo_segment_get_mem_usage (fifo_segment_t * fs);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000342fifo_segment_mem_status_t fifo_segment_get_mem_status (fifo_segment_t * fs);
343
Florin Coras88001c62019-04-24 14:44:46 -0700344void fifo_segment_main_init (fifo_segment_main_t * sm, u64 baseva,
345 u32 timeout_in_seconds);
346
347format_function_t format_fifo_segment;
348format_function_t format_fifo_segment_type;
349
350#endif /* __included_fifo_segment_h__ */
351
352/*
353 * fd.io coding-style-patch-verification: ON
354 *
355 * Local Variables:
356 * eval: (c-set-style "gnu")
357 * End:
358 */