blob: 43efbc336dae5cd2beeab6220f68686fb481bad0 [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
16#include <svm/fifo_segment.h>
17
18/**
Florin Corasf9d4ab42019-05-11 16:55:53 -070019 * Fifo segment free space
20 *
21 * Queries the underlying memory manager, dlmalloc, for free space. Since this
22 * ends up walking the internal data structures, it should not be called
23 * indiscriminately.
24 *
25 * @param fs fifo segment
26 * @return number of free bytes
27 */
Florin Corasef4f3e72019-12-11 14:27:53 -080028static uword
Florin Coras4453c092019-12-19 10:13:15 -080029fsh_free_space (fifo_segment_header_t * fsh)
Florin Corasf9d4ab42019-05-11 16:55:53 -070030{
31 struct dlmallinfo dlminfo;
32
Florin Coras4453c092019-12-19 10:13:15 -080033 dlminfo = mspace_mallinfo (fsh->ssvm_sh->heap);
Florin Corasf9d4ab42019-05-11 16:55:53 -070034 return dlminfo.fordblks;
35}
36
Florin Coras62ddc032019-12-08 18:30:42 -080037static inline void
38fsh_free_bytes_sub (fifo_segment_header_t * fsh, int size)
39{
40 clib_atomic_fetch_sub_rel (&fsh->n_free_bytes, size);
41}
42
43static inline uword
44fsh_n_free_bytes (fifo_segment_header_t * fsh)
45{
Florin Coras8122cc22019-12-18 13:06:41 -080046 uword n_free = clib_atomic_load_relax_n (&fsh->n_free_bytes);
47 return n_free > fsh->n_reserved_bytes ? n_free - fsh->n_reserved_bytes : 0;
48}
49
50static inline void
Florin Coras4453c092019-12-19 10:13:15 -080051fsh_update_free_bytes (fifo_segment_header_t * fsh)
Florin Coras8122cc22019-12-18 13:06:41 -080052{
Florin Coras4453c092019-12-19 10:13:15 -080053 clib_atomic_store_rel_n (&fsh->n_free_bytes, fsh_free_space (fsh));
Florin Coras8122cc22019-12-18 13:06:41 -080054}
55
56static void
57fsh_check_mem (fifo_segment_header_t * fsh)
58{
59 uword thresh;
60
61 if (fsh->flags & FIFO_SEGMENT_F_MEM_LIMIT)
62 return;
63
64 thresh = clib_max (0.01 * fsh->ssvm_sh->ssvm_size,
65 2 * fsh->n_reserved_bytes);
66 if (fsh->n_free_bytes > thresh)
67 return;
68
69 fsh->flags |= FIFO_SEGMENT_F_MEM_LIMIT;
Florin Coras4453c092019-12-19 10:13:15 -080070 fsh_update_free_bytes (fsh);
Florin Coras62ddc032019-12-08 18:30:42 -080071}
72
73static inline fifo_segment_slice_t *
74fsh_slice_get (fifo_segment_header_t * fsh, u32 slice_index)
75{
76 return &fsh->slices[slice_index];
77}
78
79static inline void
80fsh_active_fifos_update (fifo_segment_header_t * fsh, int inc)
81{
82 clib_atomic_fetch_add_rel (&fsh->n_active_fifos, inc);
83}
84
Florin Corasf9d4ab42019-05-11 16:55:53 -070085/**
Florin Coras88001c62019-04-24 14:44:46 -070086 * Initialize fifo segment shared header
87 */
88int
89fifo_segment_init (fifo_segment_t * fs)
90{
91 fifo_segment_header_t *fsh;
Florin Coras62ddc032019-12-08 18:30:42 -080092 fifo_segment_slice_t *fss;
Florin Coras88001c62019-04-24 14:44:46 -070093 ssvm_shared_header_t *sh;
Florin Coras8122cc22019-12-18 13:06:41 -080094 u32 max_chunk_sz, max_chunks;
Florin Coras62ddc032019-12-08 18:30:42 -080095 uword max_fifo;
Florin Coras88001c62019-04-24 14:44:46 -070096 void *oldheap;
Florin Coras62ddc032019-12-08 18:30:42 -080097 int i;
Florin Coras88001c62019-04-24 14:44:46 -070098
99 sh = fs->ssvm.sh;
100 oldheap = ssvm_push_heap (sh);
101
Florin Coras62ddc032019-12-08 18:30:42 -0800102 /*
103 * Manually align the fifo segment header to sizeof(uword) = 8 bytes.
104 * Long story made short: the "process-private" fifo segment
105 * is allocated from the main heap, not mmapped. dlmalloc
106 * only guarantees 4-byte alignment, and on aarch64
107 * the fsh can end up 4-byte but not 8-byte aligned.
108 * That eventually causes the atomic op in fifo_segment_update_free_bytes
109 * to backfire.
110 */
111 fsh = clib_mem_alloc_aligned (sizeof (*fsh), sizeof (uword));
Florin Coras88001c62019-04-24 14:44:46 -0700112 clib_memset (fsh, 0, sizeof (*fsh));
113 fs->h = sh->opaque[0] = fsh;
Florin Coras62ddc032019-12-08 18:30:42 -0800114 fs->n_slices = clib_max (fs->n_slices, 1);
115
116 fsh->ssvm_sh = fs->ssvm.sh;
117 fsh->n_slices = fs->n_slices;
Florin Coras4453c092019-12-19 10:13:15 -0800118 max_fifo = clib_min ((fsh_free_space (fsh) - 4096) / 2,
Florin Coras62ddc032019-12-08 18:30:42 -0800119 FIFO_SEGMENT_MAX_FIFO_SIZE);
120 fsh->max_log2_chunk_size = max_log2 (max_fifo);
121
122 fsh->slices = clib_mem_alloc (sizeof (*fss) * fs->n_slices);
123 clib_memset (fsh->slices, 0, sizeof (*fss) * fs->n_slices);
124 max_chunk_sz = fsh->max_log2_chunk_size - FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE;
125
126 for (i = 0; i < fs->n_slices; i++)
127 {
128 fss = fsh_slice_get (fsh, i);
129 vec_validate_init_empty (fss->free_chunks, max_chunk_sz, 0);
130 }
Florin Coras88001c62019-04-24 14:44:46 -0700131
132 ssvm_pop_heap (oldheap);
133
Florin Coras4453c092019-12-19 10:13:15 -0800134 fsh->n_free_bytes = fsh_free_space (fsh);
Florin Coras8122cc22019-12-18 13:06:41 -0800135 max_chunks = fsh->n_free_bytes / FIFO_SEGMENT_MIN_FIFO_SIZE;
136 fsh->n_reserved_bytes = (max_chunks / 4) * sizeof (rb_node_t);
Florin Coras88001c62019-04-24 14:44:46 -0700137 sh->ready = 1;
138 return (0);
139}
140
141/**
Florin Coras88001c62019-04-24 14:44:46 -0700142 * Create a fifo segment and initialize as master
143 */
144int
145fifo_segment_create (fifo_segment_main_t * sm, fifo_segment_create_args_t * a)
146{
Florin Corasf9d4ab42019-05-11 16:55:53 -0700147 fifo_segment_t *fs;
148 uword baseva;
Florin Coras88001c62019-04-24 14:44:46 -0700149 int rv;
150
Florin Coras88001c62019-04-24 14:44:46 -0700151 /* Allocate a fresh segment */
Florin Corasf9d4ab42019-05-11 16:55:53 -0700152 pool_get_zero (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700153
Florin Corasf9d4ab42019-05-11 16:55:53 -0700154 baseva = a->segment_type == SSVM_SEGMENT_PRIVATE ? ~0ULL : sm->next_baseva;
155 fs->ssvm.ssvm_size = a->segment_size;
156 fs->ssvm.i_am_master = 1;
157 fs->ssvm.my_pid = getpid ();
158 fs->ssvm.name = format (0, "%s%c", a->segment_name, 0);
159 fs->ssvm.requested_va = baseva;
Florin Coras88001c62019-04-24 14:44:46 -0700160
Florin Corasf9d4ab42019-05-11 16:55:53 -0700161 if ((rv = ssvm_master_init (&fs->ssvm, a->segment_type)))
Florin Coras88001c62019-04-24 14:44:46 -0700162 {
Florin Corasf9d4ab42019-05-11 16:55:53 -0700163 pool_put (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700164 return (rv);
165 }
166
167 /* Note: requested_va updated due to seg base addr randomization */
Florin Corasf9d4ab42019-05-11 16:55:53 -0700168 sm->next_baseva = fs->ssvm.sh->ssvm_va + fs->ssvm.ssvm_size;
Florin Coras88001c62019-04-24 14:44:46 -0700169
Florin Corasf9d4ab42019-05-11 16:55:53 -0700170 fifo_segment_init (fs);
171 vec_add1 (a->new_segment_indices, fs - sm->segments);
Florin Coras88001c62019-04-24 14:44:46 -0700172 return (0);
173}
174
175/**
176 * Attach as slave to a fifo segment
177 */
178int
179fifo_segment_attach (fifo_segment_main_t * sm, fifo_segment_create_args_t * a)
180{
Florin Coras62ddc032019-12-08 18:30:42 -0800181 fifo_segment_t *fs;
Florin Coras88001c62019-04-24 14:44:46 -0700182 int rv;
183
Florin Coras62ddc032019-12-08 18:30:42 -0800184 pool_get_zero (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700185
Florin Coras62ddc032019-12-08 18:30:42 -0800186 fs->ssvm.ssvm_size = a->segment_size;
187 fs->ssvm.my_pid = getpid ();
188 fs->ssvm.name = format (0, "%s%c", a->segment_name, 0);
189 fs->ssvm.requested_va = sm->next_baseva;
Florin Coras88001c62019-04-24 14:44:46 -0700190 if (a->segment_type == SSVM_SEGMENT_MEMFD)
Florin Coras62ddc032019-12-08 18:30:42 -0800191 fs->ssvm.fd = a->memfd_fd;
Florin Coras88001c62019-04-24 14:44:46 -0700192 else
Florin Coras62ddc032019-12-08 18:30:42 -0800193 fs->ssvm.attach_timeout = sm->timeout_in_seconds;
Florin Coras88001c62019-04-24 14:44:46 -0700194
Florin Coras62ddc032019-12-08 18:30:42 -0800195 if ((rv = ssvm_slave_init (&fs->ssvm, a->segment_type)))
Florin Coras88001c62019-04-24 14:44:46 -0700196 {
Florin Coras62ddc032019-12-08 18:30:42 -0800197 _vec_len (fs) = vec_len (fs) - 1;
Florin Coras88001c62019-04-24 14:44:46 -0700198 return (rv);
199 }
200
201 /* Fish the segment header */
Florin Coras62ddc032019-12-08 18:30:42 -0800202 fs->h = fs->ssvm.sh->opaque[0];
Florin Coras88001c62019-04-24 14:44:46 -0700203
Florin Coras62ddc032019-12-08 18:30:42 -0800204 vec_add1 (a->new_segment_indices, fs - sm->segments);
Florin Coras88001c62019-04-24 14:44:46 -0700205 return (0);
206}
207
208void
209fifo_segment_delete (fifo_segment_main_t * sm, fifo_segment_t * s)
210{
211 ssvm_delete (&s->ssvm);
212 clib_memset (s, 0xfe, sizeof (*s));
213 pool_put (sm->segments, s);
214}
215
216u32
217fifo_segment_index (fifo_segment_main_t * sm, fifo_segment_t * s)
218{
219 return s - sm->segments;
220}
221
Florin Coras88001c62019-04-24 14:44:46 -0700222fifo_segment_t *
223fifo_segment_get_segment (fifo_segment_main_t * sm, u32 segment_index)
224{
225 return pool_elt_at_index (sm->segments, segment_index);
226}
227
228void
229fifo_segment_info (fifo_segment_t * seg, char **address, size_t * size)
230{
Florin Coras404b8a32019-05-09 12:08:06 -0700231 *address = (char *) seg->ssvm.sh->ssvm_va;
232 *size = seg->ssvm.ssvm_size;
Florin Coras88001c62019-04-24 14:44:46 -0700233}
234
235void
236fifo_segment_main_init (fifo_segment_main_t * sm, u64 baseva,
237 u32 timeout_in_seconds)
238{
239 sm->next_baseva = baseva;
240 sm->timeout_in_seconds = timeout_in_seconds;
241}
242
Florin Corasf9d4ab42019-05-11 16:55:53 -0700243static inline u32
244fs_freelist_for_size (u32 size)
Florin Coras88001c62019-04-24 14:44:46 -0700245{
Florin Coras62ddc032019-12-08 18:30:42 -0800246 return max_log2 (size) - FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE;
Florin Coras88001c62019-04-24 14:44:46 -0700247}
248
Florin Corasf9d4ab42019-05-11 16:55:53 -0700249static inline u32
250fs_freelist_index_to_size (u32 fl_index)
251{
Florin Coras62ddc032019-12-08 18:30:42 -0800252 return 1 << (fl_index + FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700253}
254
Florin Coras88001c62019-04-24 14:44:46 -0700255static inline int
Florin Coras62ddc032019-12-08 18:30:42 -0800256fs_chunk_size_is_valid (fifo_segment_header_t * fsh, u32 size)
Florin Coras88001c62019-04-24 14:44:46 -0700257{
258 /*
259 * 4K minimum. It's not likely that anything good will happen
260 * with a smaller FIFO.
261 */
262 return size >= FIFO_SEGMENT_MIN_FIFO_SIZE
Florin Coras62ddc032019-12-08 18:30:42 -0800263 && size <= (1 << fsh->max_log2_chunk_size);
Florin Coras88001c62019-04-24 14:44:46 -0700264}
265
Florin Corascefd5d82019-05-05 13:19:57 -0700266static svm_fifo_t *
Florin Coras62ddc032019-12-08 18:30:42 -0800267fs_try_alloc_fifo_freelist (fifo_segment_slice_t * fss,
268 u32 fl_index, u32 data_bytes)
Florin Corascefd5d82019-05-05 13:19:57 -0700269{
270 svm_fifo_chunk_t *c;
271 svm_fifo_t *f;
Florin Corascefd5d82019-05-05 13:19:57 -0700272
Florin Coras62ddc032019-12-08 18:30:42 -0800273 f = fss->free_fifos;
274 c = fss->free_chunks[fl_index];
Florin Corascefd5d82019-05-05 13:19:57 -0700275
276 if (!f || !c)
277 return 0;
278
Florin Coras62ddc032019-12-08 18:30:42 -0800279 fss->free_fifos = f->next;
280 fss->free_chunks[fl_index] = c->next;
Florin Corascefd5d82019-05-05 13:19:57 -0700281 c->next = c;
282 c->start_byte = 0;
283 c->length = data_bytes;
284 memset (f, 0, sizeof (*f));
285 f->start_chunk = c;
286 f->end_chunk = c;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700287
Florin Coras62ddc032019-12-08 18:30:42 -0800288 fss->n_fl_chunk_bytes -= fs_freelist_index_to_size (fl_index);
Florin Corascefd5d82019-05-05 13:19:57 -0700289 return f;
290}
291
292static svm_fifo_t *
Florin Coras62ddc032019-12-08 18:30:42 -0800293fs_try_alloc_fifo_freelist_multi_chunk (fifo_segment_header_t * fsh,
294 fifo_segment_slice_t * fss,
295 u32 data_bytes)
Florin Coras88001c62019-04-24 14:44:46 -0700296{
Florin Corasf9d4ab42019-05-11 16:55:53 -0700297 svm_fifo_chunk_t *c, *first = 0, *last = 0;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700298 u32 fl_index, fl_size, n_alloc = 0;
299 svm_fifo_t *f;
300
Florin Coras62ddc032019-12-08 18:30:42 -0800301 f = fss->free_fifos;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700302 if (!f)
303 {
Florin Coras62ddc032019-12-08 18:30:42 -0800304 void *oldheap = ssvm_push_heap (fsh->ssvm_sh);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700305 f = clib_mem_alloc_aligned (sizeof (*f), CLIB_CACHE_LINE_BYTES);
306 ssvm_pop_heap (oldheap);
307 if (!f)
308 return 0;
309 memset (f, 0, sizeof (*f));
Florin Coras62ddc032019-12-08 18:30:42 -0800310 fsh_free_bytes_sub (fsh, sizeof (*f));
Florin Corasf9d4ab42019-05-11 16:55:53 -0700311 }
Florin Coras73cad332019-08-28 17:12:32 -0700312 else
313 {
Florin Coras62ddc032019-12-08 18:30:42 -0800314 fss->free_fifos = f->next;
Florin Coras73cad332019-08-28 17:12:32 -0700315 }
Florin Corasf9d4ab42019-05-11 16:55:53 -0700316
Florin Corasd849edf2019-12-20 18:48:20 -0800317 fl_index = fs_freelist_for_size (data_bytes);
318 if (fl_index > 0)
319 fl_index -= 1;
320
Florin Corasf9d4ab42019-05-11 16:55:53 -0700321 fl_size = fs_freelist_index_to_size (fl_index);
322
323 while (data_bytes)
324 {
Florin Coras62ddc032019-12-08 18:30:42 -0800325 c = fss->free_chunks[fl_index];
Florin Corasf9d4ab42019-05-11 16:55:53 -0700326 if (c)
327 {
Florin Coras62ddc032019-12-08 18:30:42 -0800328 fss->free_chunks[fl_index] = c->next;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700329 if (!last)
330 last = c;
331 c->next = first;
332 first = c;
Florin Coras1c91c772019-06-25 18:14:13 -0700333 n_alloc += fl_size;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700334 c->length = clib_min (fl_size, data_bytes);
335 data_bytes -= c->length;
336 }
337 else
338 {
Florin Corasd849edf2019-12-20 18:48:20 -0800339 /* Failed to allocate with smaller chunks */
340 if (fl_index == 0)
341 {
342 /* free all chunks if any allocated */
343 c = first;
344 while (c)
345 {
346 fl_index = fs_freelist_for_size (c->length);
347 fl_size = fs_freelist_index_to_size (fl_index);
348 c->next = fss->free_chunks[fl_index];
349 fss->free_chunks[fl_index] = c;
350 fss->n_fl_chunk_bytes += fl_size;
351 data_bytes += fl_size;
352 }
353 first = last = 0;
354 fl_index = fs_freelist_for_size (data_bytes);
355 if (fss->free_chunks[fl_index + 1])
356 {
357 fl_index += 1;
358 fl_size = fs_freelist_index_to_size (fl_index);
359 continue;
360 }
361
362 f->next = fss->free_fifos;
363 fss->free_fifos = f;
364 return 0;
365 }
Florin Corasf9d4ab42019-05-11 16:55:53 -0700366 fl_index -= 1;
367 fl_size = fl_size >> 1;
368 }
369 }
Florin Corasd849edf2019-12-20 18:48:20 -0800370
Florin Corasf9d4ab42019-05-11 16:55:53 -0700371 f->start_chunk = first;
372 f->end_chunk = last;
373 last->next = first;
Florin Coras62ddc032019-12-08 18:30:42 -0800374 fss->n_fl_chunk_bytes -= n_alloc;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700375 return f;
376}
377
378static int
Florin Coras62ddc032019-12-08 18:30:42 -0800379fs_try_alloc_fifo_batch (fifo_segment_header_t * fsh,
380 fifo_segment_slice_t * fss,
381 u32 fl_index, u32 batch_size)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700382{
Florin Coras36a0c4d2020-01-31 08:28:02 -0800383 u32 hdrs, rounded_data_size;
Florin Corascefd5d82019-05-05 13:19:57 -0700384 svm_fifo_chunk_t *c;
Florin Coras88001c62019-04-24 14:44:46 -0700385 svm_fifo_t *f;
Florin Corascefd5d82019-05-05 13:19:57 -0700386 void *oldheap;
Florin Coras36a0c4d2020-01-31 08:28:02 -0800387 uword size;
Florin Corascefd5d82019-05-05 13:19:57 -0700388 u8 *fmem;
389 int i;
Florin Coras88001c62019-04-24 14:44:46 -0700390
Florin Corasf9d4ab42019-05-11 16:55:53 -0700391 rounded_data_size = fs_freelist_index_to_size (fl_index);
Florin Corascefd5d82019-05-05 13:19:57 -0700392 hdrs = sizeof (*f) + sizeof (*c);
Florin Coras36a0c4d2020-01-31 08:28:02 -0800393 size = (uword) (hdrs + rounded_data_size) * batch_size;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700394
Florin Coras62ddc032019-12-08 18:30:42 -0800395 oldheap = ssvm_push_heap (fsh->ssvm_sh);
Florin Corascefd5d82019-05-05 13:19:57 -0700396 fmem = clib_mem_alloc_aligned_at_offset (size, CLIB_CACHE_LINE_BYTES,
397 0 /* align_offset */ ,
398 0 /* os_out_of_memory */ );
399 ssvm_pop_heap (oldheap);
Florin Coras88001c62019-04-24 14:44:46 -0700400
401 /* Out of space.. */
Florin Corascefd5d82019-05-05 13:19:57 -0700402 if (fmem == 0)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700403 return -1;
Florin Coras88001c62019-04-24 14:44:46 -0700404
Florin Corascefd5d82019-05-05 13:19:57 -0700405 /* Carve fifo + chunk space */
Florin Corasf9d4ab42019-05-11 16:55:53 -0700406 for (i = 0; i < batch_size; i++)
Florin Coras88001c62019-04-24 14:44:46 -0700407 {
Florin Corascefd5d82019-05-05 13:19:57 -0700408 f = (svm_fifo_t *) fmem;
409 memset (f, 0, sizeof (*f));
Florin Coras62ddc032019-12-08 18:30:42 -0800410 f->next = fss->free_fifos;
411 fss->free_fifos = f;
Florin Corascefd5d82019-05-05 13:19:57 -0700412 c = (svm_fifo_chunk_t *) (fmem + sizeof (*f));
413 c->start_byte = 0;
414 c->length = rounded_data_size;
Florin Coras62ddc032019-12-08 18:30:42 -0800415 c->next = fss->free_chunks[fl_index];
416 fss->free_chunks[fl_index] = c;
Florin Corascefd5d82019-05-05 13:19:57 -0700417 fmem += hdrs + rounded_data_size;
Florin Coras88001c62019-04-24 14:44:46 -0700418 }
Florin Corascefd5d82019-05-05 13:19:57 -0700419
Florin Coras62ddc032019-12-08 18:30:42 -0800420 fss->n_fl_chunk_bytes += batch_size * rounded_data_size;
421 fsh_free_bytes_sub (fsh, size);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700422
423 return 0;
424}
425
426/**
427 * Try to allocate new fifo
428 *
429 * Tries the following steps in order:
430 * - grab fifo and chunk from freelists
431 * - batch fifo and chunk allocation
432 * - single fifo allocation
433 * - grab multiple fifo chunks from freelists
434 */
435static svm_fifo_t *
Florin Coras62ddc032019-12-08 18:30:42 -0800436fs_try_alloc_fifo (fifo_segment_header_t * fsh, fifo_segment_slice_t * fss,
437 u32 data_bytes)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700438{
Florin Corasf9d4ab42019-05-11 16:55:53 -0700439 u32 fifo_sz, fl_index;
440 svm_fifo_t *f = 0;
Florin Coras62ddc032019-12-08 18:30:42 -0800441 uword n_free_bytes;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700442
443 fl_index = fs_freelist_for_size (data_bytes);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700444 fifo_sz = sizeof (svm_fifo_t) + sizeof (svm_fifo_chunk_t);
445 fifo_sz += 1 << max_log2 (data_bytes);
446
Florin Coras62ddc032019-12-08 18:30:42 -0800447 if (fss->free_fifos && fss->free_chunks[fl_index])
Florin Corasf9d4ab42019-05-11 16:55:53 -0700448 {
Florin Coras62ddc032019-12-08 18:30:42 -0800449 f = fs_try_alloc_fifo_freelist (fss, fl_index, data_bytes);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700450 if (f)
451 goto done;
452 }
Florin Coras8122cc22019-12-18 13:06:41 -0800453
454 fsh_check_mem (fsh);
Florin Coras62ddc032019-12-08 18:30:42 -0800455 n_free_bytes = fsh_n_free_bytes (fsh);
456 if (fifo_sz * FIFO_SEGMENT_ALLOC_BATCH_SIZE < n_free_bytes)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700457 {
Florin Coras62ddc032019-12-08 18:30:42 -0800458 if (fs_try_alloc_fifo_batch (fsh, fss, fl_index,
Florin Corasf9d4ab42019-05-11 16:55:53 -0700459 FIFO_SEGMENT_ALLOC_BATCH_SIZE))
460 goto done;
461
Florin Coras62ddc032019-12-08 18:30:42 -0800462 f = fs_try_alloc_fifo_freelist (fss, fl_index, data_bytes);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700463 goto done;
464 }
Florin Coras62ddc032019-12-08 18:30:42 -0800465 if (fifo_sz <= n_free_bytes)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700466 {
Florin Coras62ddc032019-12-08 18:30:42 -0800467 void *oldheap = ssvm_push_heap (fsh->ssvm_sh);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700468 f = svm_fifo_create (data_bytes);
469 ssvm_pop_heap (oldheap);
470 if (f)
471 {
Florin Coras62ddc032019-12-08 18:30:42 -0800472 fsh_free_bytes_sub (fsh, fifo_sz);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700473 goto done;
474 }
475 }
Florin Coras62ddc032019-12-08 18:30:42 -0800476 if (data_bytes <= fss->n_fl_chunk_bytes)
477 f = fs_try_alloc_fifo_freelist_multi_chunk (fsh, fss, data_bytes);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700478
479done:
480
481 return f;
Florin Coras88001c62019-04-24 14:44:46 -0700482}
483
484/**
485 * Allocate fifo in fifo segment
486 */
487svm_fifo_t *
Florin Coras62ddc032019-12-08 18:30:42 -0800488fifo_segment_alloc_fifo_w_slice (fifo_segment_t * fs, u32 slice_index,
489 u32 data_bytes, fifo_segment_ftype_t ftype)
Florin Coras88001c62019-04-24 14:44:46 -0700490{
Florin Coras62ddc032019-12-08 18:30:42 -0800491 fifo_segment_header_t *fsh = fs->h;
492 fifo_segment_slice_t *fss;
Florin Coras88001c62019-04-24 14:44:46 -0700493 svm_fifo_t *f = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700494
Florin Coras62ddc032019-12-08 18:30:42 -0800495 ASSERT (slice_index < fs->n_slices);
Florin Coras88001c62019-04-24 14:44:46 -0700496
Florin Coras62ddc032019-12-08 18:30:42 -0800497 fss = fsh_slice_get (fsh, slice_index);
498 f = fs_try_alloc_fifo (fsh, fss, data_bytes);
Florin Corascefd5d82019-05-05 13:19:57 -0700499 if (!f)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700500 goto done;
Florin Coras88001c62019-04-24 14:44:46 -0700501
Florin Coras62ddc032019-12-08 18:30:42 -0800502 f->slice_index = slice_index;
503
Florin Corascefd5d82019-05-05 13:19:57 -0700504 /* (re)initialize the fifo, as in svm_fifo_create */
505 svm_fifo_init (f, data_bytes);
Florin Coras88001c62019-04-24 14:44:46 -0700506
Florin Coraseaacce42019-07-02 13:07:37 -0700507 /* Initialize chunks and rbtree for multi-chunk fifos */
508 if (f->start_chunk->next != f->start_chunk)
509 {
Florin Coras62ddc032019-12-08 18:30:42 -0800510 void *oldheap = ssvm_push_heap (fsh->ssvm_sh);
Florin Coraseaacce42019-07-02 13:07:37 -0700511 svm_fifo_init_chunks (f);
512 ssvm_pop_heap (oldheap);
513 }
514
Florin Coras88001c62019-04-24 14:44:46 -0700515 /* If rx fifo type add to active fifos list. When cleaning up segment,
516 * we need a list of active sessions that should be disconnected. Since
517 * both rx and tx fifos keep pointers to the session, it's enough to track
518 * only one. */
519 if (ftype == FIFO_SEGMENT_RX_FIFO)
520 {
Florin Coras62ddc032019-12-08 18:30:42 -0800521 if (fss->fifos)
Florin Coras88001c62019-04-24 14:44:46 -0700522 {
Florin Coras62ddc032019-12-08 18:30:42 -0800523 fss->fifos->prev = f;
524 f->next = fss->fifos;
Florin Coras88001c62019-04-24 14:44:46 -0700525 }
Florin Coras62ddc032019-12-08 18:30:42 -0800526 fss->fifos = f;
Florin Coras88001c62019-04-24 14:44:46 -0700527 f->flags |= SVM_FIFO_F_LL_TRACKED;
528 }
Florin Coras62ddc032019-12-08 18:30:42 -0800529 fsh_active_fifos_update (fsh, 1);
Florin Coras88001c62019-04-24 14:44:46 -0700530
531done:
Florin Coras88001c62019-04-24 14:44:46 -0700532 return (f);
533}
534
535/**
536 * Free fifo allocated in fifo segment
537 */
538void
Florin Corasb095a3c2019-04-25 12:58:46 -0700539fifo_segment_free_fifo (fifo_segment_t * fs, svm_fifo_t * f)
Florin Coras88001c62019-04-24 14:44:46 -0700540{
Florin Coras62ddc032019-12-08 18:30:42 -0800541 fifo_segment_header_t *fsh = fs->h;
Florin Corascefd5d82019-05-05 13:19:57 -0700542 svm_fifo_chunk_t *cur, *next;
Florin Coras62ddc032019-12-08 18:30:42 -0800543 fifo_segment_slice_t *fss;
Florin Corascefd5d82019-05-05 13:19:57 -0700544 void *oldheap;
Florin Coras88001c62019-04-24 14:44:46 -0700545 int fl_index;
546
547 ASSERT (f->refcnt > 0);
548
549 if (--f->refcnt > 0)
550 return;
551
Florin Coras62ddc032019-12-08 18:30:42 -0800552 fss = fsh_slice_get (fsh, f->slice_index);
Florin Coras88001c62019-04-24 14:44:46 -0700553
554 /* Remove from active list. Only rx fifos are tracked */
555 if (f->flags & SVM_FIFO_F_LL_TRACKED)
556 {
557 if (f->prev)
558 f->prev->next = f->next;
559 else
Florin Coras62ddc032019-12-08 18:30:42 -0800560 fss->fifos = f->next;
Florin Coras88001c62019-04-24 14:44:46 -0700561 if (f->next)
562 f->next->prev = f->prev;
563 f->flags &= ~SVM_FIFO_F_LL_TRACKED;
564 }
565
566 /* Add to free list */
Florin Coras62ddc032019-12-08 18:30:42 -0800567 f->next = fss->free_fifos;
Florin Coras88001c62019-04-24 14:44:46 -0700568 f->prev = 0;
Florin Coras62ddc032019-12-08 18:30:42 -0800569 fss->free_fifos = f;
Florin Coras88001c62019-04-24 14:44:46 -0700570
Florin Corascefd5d82019-05-05 13:19:57 -0700571 /* Free fifo chunks */
572 cur = f->start_chunk;
573 do
Florin Corasb095a3c2019-04-25 12:58:46 -0700574 {
Florin Corascefd5d82019-05-05 13:19:57 -0700575 next = cur->next;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700576 fl_index = fs_freelist_for_size (cur->length);
Florin Coras62ddc032019-12-08 18:30:42 -0800577 ASSERT (fl_index < vec_len (fss->free_chunks));
578 cur->next = fss->free_chunks[fl_index];
579 fss->free_chunks[fl_index] = cur;
580 fss->n_fl_chunk_bytes += fs_freelist_index_to_size (fl_index);
Florin Corascefd5d82019-05-05 13:19:57 -0700581 cur = next;
Florin Corasb095a3c2019-04-25 12:58:46 -0700582 }
Florin Corascefd5d82019-05-05 13:19:57 -0700583 while (cur != f->start_chunk);
584
Florin Coras1c91c772019-06-25 18:14:13 -0700585 f->start_chunk = f->end_chunk = f->new_chunks = 0;
586 f->head_chunk = f->tail_chunk = f->ooo_enq = f->ooo_deq = 0;
587
Florin Coras62ddc032019-12-08 18:30:42 -0800588 oldheap = ssvm_push_heap (fsh->ssvm_sh);
Florin Corascefd5d82019-05-05 13:19:57 -0700589 svm_fifo_free_chunk_lookup (f);
590 ssvm_pop_heap (oldheap);
Florin Corasb095a3c2019-04-25 12:58:46 -0700591
592 /* not allocated on segment heap */
593 svm_fifo_free_ooo_data (f);
594
Florin Coras88001c62019-04-24 14:44:46 -0700595 if (CLIB_DEBUG)
596 {
597 f->master_session_index = ~0;
598 f->master_thread_index = ~0;
599 }
600
Florin Coras62ddc032019-12-08 18:30:42 -0800601 fsh_active_fifos_update (fsh, -1);
Florin Coras88001c62019-04-24 14:44:46 -0700602}
603
Florin Corasf9d4ab42019-05-11 16:55:53 -0700604int
Florin Coras62ddc032019-12-08 18:30:42 -0800605fifo_segment_prealloc_fifo_hdrs (fifo_segment_t * fs, u32 slice_index,
606 u32 batch_size)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700607{
608 fifo_segment_header_t *fsh = fs->h;
Florin Coras62ddc032019-12-08 18:30:42 -0800609 fifo_segment_slice_t *fss;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700610 svm_fifo_t *f;
611 void *oldheap;
Florin Coras36a0c4d2020-01-31 08:28:02 -0800612 uword size;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700613 u8 *fmem;
614 int i;
615
Florin Coras62ddc032019-12-08 18:30:42 -0800616 fss = fsh_slice_get (fsh, slice_index);
Florin Coras36a0c4d2020-01-31 08:28:02 -0800617 size = (uword) (sizeof (*f)) * batch_size;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700618
Florin Coras62ddc032019-12-08 18:30:42 -0800619 oldheap = ssvm_push_heap (fsh->ssvm_sh);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700620 fmem = clib_mem_alloc_aligned_at_offset (size, CLIB_CACHE_LINE_BYTES,
621 0 /* align_offset */ ,
622 0 /* os_out_of_memory */ );
623 ssvm_pop_heap (oldheap);
624
625 /* Out of space.. */
626 if (fmem == 0)
627 return -1;
628
629 /* Carve fifo + chunk space */
630 for (i = 0; i < batch_size; i++)
631 {
632 f = (svm_fifo_t *) fmem;
633 memset (f, 0, sizeof (*f));
Florin Coras62ddc032019-12-08 18:30:42 -0800634 f->next = fss->free_fifos;
635 fss->free_fifos = f;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700636 fmem += sizeof (*f);
637 }
638
Florin Coras62ddc032019-12-08 18:30:42 -0800639 fsh_free_bytes_sub (fsh, size);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700640
641 return 0;
642}
643
644int
Florin Coras62ddc032019-12-08 18:30:42 -0800645fifo_segment_prealloc_fifo_chunks (fifo_segment_t * fs, u32 slice_index,
646 u32 chunk_size, u32 batch_size)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700647{
Florin Coras62ddc032019-12-08 18:30:42 -0800648 fifo_segment_header_t *fsh = fs->h;
Florin Coras36a0c4d2020-01-31 08:28:02 -0800649 u32 rounded_data_size, fl_index;
Florin Coras62ddc032019-12-08 18:30:42 -0800650 fifo_segment_slice_t *fss;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700651 svm_fifo_chunk_t *c;
652 void *oldheap;
Florin Coras36a0c4d2020-01-31 08:28:02 -0800653 uword size;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700654 u8 *cmem;
655 int i;
656
Florin Coras62ddc032019-12-08 18:30:42 -0800657 if (!fs_chunk_size_is_valid (fsh, chunk_size))
Florin Corasf9d4ab42019-05-11 16:55:53 -0700658 {
659 clib_warning ("chunk size out of range %d", chunk_size);
660 return -1;
661 }
662
663 fl_index = fs_freelist_for_size (chunk_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700664 rounded_data_size = fs_freelist_index_to_size (fl_index);
Florin Coras36a0c4d2020-01-31 08:28:02 -0800665 size = (uword) (sizeof (*c) + rounded_data_size) * batch_size;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700666
Florin Coras62ddc032019-12-08 18:30:42 -0800667 oldheap = ssvm_push_heap (fsh->ssvm_sh);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700668 cmem = clib_mem_alloc_aligned_at_offset (size, CLIB_CACHE_LINE_BYTES,
669 0 /* align_offset */ ,
670 0 /* os_out_of_memory */ );
671 ssvm_pop_heap (oldheap);
672
673 /* Out of space.. */
674 if (cmem == 0)
675 return -1;
676
Florin Coras62ddc032019-12-08 18:30:42 -0800677 fss = fsh_slice_get (fsh, slice_index);
678
Florin Corasf9d4ab42019-05-11 16:55:53 -0700679 /* Carve fifo + chunk space */
680 for (i = 0; i < batch_size; i++)
681 {
682 c = (svm_fifo_chunk_t *) cmem;
683 c->start_byte = 0;
684 c->length = rounded_data_size;
Florin Coras62ddc032019-12-08 18:30:42 -0800685 c->next = fss->free_chunks[fl_index];
686 fss->free_chunks[fl_index] = c;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700687 cmem += sizeof (*c) + rounded_data_size;
688 }
689
Florin Coras62ddc032019-12-08 18:30:42 -0800690 fss->n_fl_chunk_bytes += batch_size * rounded_data_size;
691 fsh_free_bytes_sub (fsh, size);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700692
693 return 0;
694}
695
Florin Coras88001c62019-04-24 14:44:46 -0700696/**
697 * Pre-allocates fifo pairs in fifo segment
698 */
699void
700fifo_segment_preallocate_fifo_pairs (fifo_segment_t * fs,
701 u32 rx_fifo_size, u32 tx_fifo_size,
702 u32 * n_fifo_pairs)
703{
Florin Corasf9d4ab42019-05-11 16:55:53 -0700704 u32 rx_rounded_data_size, tx_rounded_data_size, pair_size, pairs_to_alloc;
Florin Coras8d0149d2020-01-02 19:22:51 +0000705 u32 hdrs, pairs_per_slice, alloc_now;
Florin Coras62ddc032019-12-08 18:30:42 -0800706 fifo_segment_header_t *fsh = fs->h;
707 int rx_fl_index, tx_fl_index, i;
708 fifo_segment_slice_t *fss;
Florin Coras88001c62019-04-24 14:44:46 -0700709 uword space_available;
Florin Coras88001c62019-04-24 14:44:46 -0700710
711 /* Parameter check */
712 if (rx_fifo_size == 0 || tx_fifo_size == 0 || *n_fifo_pairs == 0)
713 return;
714
Florin Coras62ddc032019-12-08 18:30:42 -0800715 if (!fs_chunk_size_is_valid (fsh, rx_fifo_size))
Florin Coras88001c62019-04-24 14:44:46 -0700716 {
717 clib_warning ("rx fifo_size out of range %d", rx_fifo_size);
718 return;
719 }
720
Florin Coras62ddc032019-12-08 18:30:42 -0800721 if (!fs_chunk_size_is_valid (fsh, tx_fifo_size))
Florin Coras88001c62019-04-24 14:44:46 -0700722 {
723 clib_warning ("tx fifo_size out of range %d", tx_fifo_size);
724 return;
725 }
726
727 rx_rounded_data_size = (1 << (max_log2 (rx_fifo_size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -0700728 rx_fl_index = fs_freelist_for_size (rx_fifo_size);
Florin Coras88001c62019-04-24 14:44:46 -0700729 tx_rounded_data_size = (1 << (max_log2 (tx_fifo_size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -0700730 tx_fl_index = fs_freelist_for_size (tx_fifo_size);
Florin Coras88001c62019-04-24 14:44:46 -0700731
Florin Corasf9d4ab42019-05-11 16:55:53 -0700732 hdrs = sizeof (svm_fifo_t) + sizeof (svm_fifo_chunk_t);
Florin Corascefd5d82019-05-05 13:19:57 -0700733
Florin Coras88001c62019-04-24 14:44:46 -0700734 /* Calculate space requirements */
Florin Corascefd5d82019-05-05 13:19:57 -0700735 pair_size = 2 * hdrs + rx_rounded_data_size + tx_rounded_data_size;
Florin Coras4453c092019-12-19 10:13:15 -0800736 space_available = fsh_free_space (fsh);
Florin Coraseaacce42019-07-02 13:07:37 -0700737 pairs_to_alloc = space_available / pair_size;
738 pairs_to_alloc = clib_min (pairs_to_alloc, *n_fifo_pairs);
Florin Coras62ddc032019-12-08 18:30:42 -0800739 pairs_per_slice = pairs_to_alloc / fs->n_slices;
Florin Coras8d0149d2020-01-02 19:22:51 +0000740 pairs_per_slice += pairs_to_alloc % fs->n_slices ? 1 : 0;
Florin Coraseaacce42019-07-02 13:07:37 -0700741
Florin Coras62ddc032019-12-08 18:30:42 -0800742 if (!pairs_per_slice)
Florin Coraseaacce42019-07-02 13:07:37 -0700743 return;
Florin Coras88001c62019-04-24 14:44:46 -0700744
Florin Coras62ddc032019-12-08 18:30:42 -0800745 for (i = 0; i < fs->n_slices; i++)
746 {
747 fss = fsh_slice_get (fsh, i);
Florin Coras8d0149d2020-01-02 19:22:51 +0000748 alloc_now = clib_min (pairs_per_slice, *n_fifo_pairs);
749 if (fs_try_alloc_fifo_batch (fsh, fss, rx_fl_index, alloc_now))
750 clib_warning ("rx prealloc failed: pairs %u", alloc_now);
751 if (fs_try_alloc_fifo_batch (fsh, fss, tx_fl_index, alloc_now))
752 clib_warning ("tx prealloc failed: pairs %u", alloc_now);
Florin Coras88001c62019-04-24 14:44:46 -0700753
Florin Coras8d0149d2020-01-02 19:22:51 +0000754 /* Account for the pairs allocated */
755 *n_fifo_pairs -= alloc_now;
756 }
Florin Coras88001c62019-04-24 14:44:46 -0700757}
758
Florin Corasb095a3c2019-04-25 12:58:46 -0700759int
760fifo_segment_grow_fifo (fifo_segment_t * fs, svm_fifo_t * f, u32 chunk_size)
761{
Florin Coras62ddc032019-12-08 18:30:42 -0800762 fifo_segment_header_t *fsh = fs->h;
763 fifo_segment_slice_t *fss;
Florin Corasb095a3c2019-04-25 12:58:46 -0700764 svm_fifo_chunk_t *c;
765 void *oldheap;
766 int fl_index;
767
Florin Corasf9d4ab42019-05-11 16:55:53 -0700768 fl_index = fs_freelist_for_size (chunk_size);
Florin Coras62ddc032019-12-08 18:30:42 -0800769 fss = fsh_slice_get (fsh, f->slice_index);
Florin Corasb095a3c2019-04-25 12:58:46 -0700770
Florin Coras62ddc032019-12-08 18:30:42 -0800771 oldheap = ssvm_push_heap (fsh->ssvm_sh);
Florin Corasb095a3c2019-04-25 12:58:46 -0700772
Florin Coras62ddc032019-12-08 18:30:42 -0800773 c = fss->free_chunks[fl_index];
Florin Corasb095a3c2019-04-25 12:58:46 -0700774
775 if (!c)
776 {
Florin Coras8122cc22019-12-18 13:06:41 -0800777 fsh_check_mem (fsh);
778 if (fsh_n_free_bytes (fsh) < chunk_size)
779 {
780 ssvm_pop_heap (oldheap);
781 return -1;
782 }
783
Florin Corasb095a3c2019-04-25 12:58:46 -0700784 c = svm_fifo_chunk_alloc (chunk_size);
785 if (!c)
786 {
787 ssvm_pop_heap (oldheap);
788 return -1;
789 }
Florin Coras62ddc032019-12-08 18:30:42 -0800790 fsh_free_bytes_sub (fsh, chunk_size + sizeof (*c));
Florin Corasb095a3c2019-04-25 12:58:46 -0700791 }
792 else
793 {
Florin Coras62ddc032019-12-08 18:30:42 -0800794 fss->free_chunks[fl_index] = c->next;
Florin Corascefd5d82019-05-05 13:19:57 -0700795 c->next = 0;
Florin Coras62ddc032019-12-08 18:30:42 -0800796 fss->n_fl_chunk_bytes -= fs_freelist_index_to_size (fl_index);
Florin Corasb095a3c2019-04-25 12:58:46 -0700797 }
798
799 svm_fifo_add_chunk (f, c);
800
801 ssvm_pop_heap (oldheap);
Florin Corasb095a3c2019-04-25 12:58:46 -0700802 return 0;
803}
804
Florin Coras344ce422019-05-03 11:46:55 -0700805int
806fifo_segment_collect_fifo_chunks (fifo_segment_t * fs, svm_fifo_t * f)
807{
Florin Coras62ddc032019-12-08 18:30:42 -0800808 fifo_segment_header_t *fsh = fs->h;
Florin Coras344ce422019-05-03 11:46:55 -0700809 svm_fifo_chunk_t *cur, *next;
Florin Coras62ddc032019-12-08 18:30:42 -0800810 fifo_segment_slice_t *fss;
Florin Coras344ce422019-05-03 11:46:55 -0700811 void *oldheap;
812 int fl_index;
813
Florin Coras62ddc032019-12-08 18:30:42 -0800814 oldheap = ssvm_push_heap (fsh->ssvm_sh);
Florin Coras344ce422019-05-03 11:46:55 -0700815 cur = svm_fifo_collect_chunks (f);
816
Florin Coras62ddc032019-12-08 18:30:42 -0800817 fss = fsh_slice_get (fsh, f->slice_index);
818
Florin Coras344ce422019-05-03 11:46:55 -0700819 while (cur)
820 {
821 next = cur->next;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700822 fl_index = fs_freelist_for_size (cur->length);
Florin Coras62ddc032019-12-08 18:30:42 -0800823 cur->next = fss->free_chunks[fl_index];
824 fss->free_chunks[fl_index] = cur;
Florin Coras344ce422019-05-03 11:46:55 -0700825 cur = next;
826 }
827
828 ssvm_pop_heap (oldheap);
Florin Coras344ce422019-05-03 11:46:55 -0700829
830 return 0;
831}
832
Florin Coras88001c62019-04-24 14:44:46 -0700833/**
834 * Get number of active fifos
835 */
836u32
837fifo_segment_num_fifos (fifo_segment_t * fs)
838{
Florin Coras62ddc032019-12-08 18:30:42 -0800839 return clib_atomic_load_relax_n (&fs->h->n_active_fifos);
Florin Coras88001c62019-04-24 14:44:46 -0700840}
841
Florin Coras62ddc032019-12-08 18:30:42 -0800842static u32
843fs_slice_num_free_fifos (fifo_segment_slice_t * fss)
Florin Coras88001c62019-04-24 14:44:46 -0700844{
Florin Coras88001c62019-04-24 14:44:46 -0700845 svm_fifo_t *f;
Florin Corascefd5d82019-05-05 13:19:57 -0700846 u32 count = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700847
Florin Coras62ddc032019-12-08 18:30:42 -0800848 f = fss->free_fifos;
Florin Coras88001c62019-04-24 14:44:46 -0700849 if (f == 0)
850 return 0;
851
852 while (f)
853 {
854 f = f->next;
855 count++;
856 }
857 return count;
858}
859
Florin Corasb095a3c2019-04-25 12:58:46 -0700860u32
Florin Coras62ddc032019-12-08 18:30:42 -0800861fifo_segment_num_free_fifos (fifo_segment_t * fs)
862{
863 fifo_segment_header_t *fsh = fs->h;
864 fifo_segment_slice_t *fss;
865 int slice_index;
866 u32 count = 0;
867
868 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
869 {
870 fss = fsh_slice_get (fsh, slice_index);
871 count += fs_slice_num_free_fifos (fss);
872 }
873 return count;
874}
875
876static u32
877fs_slice_num_free_chunks (fifo_segment_slice_t * fss, u32 size)
Florin Corasb095a3c2019-04-25 12:58:46 -0700878{
879 u32 count = 0, rounded_size, fl_index;
Florin Corasb095a3c2019-04-25 12:58:46 -0700880 svm_fifo_chunk_t *c;
881 int i;
882
Florin Corasb095a3c2019-04-25 12:58:46 -0700883 /* Count all free chunks? */
884 if (size == ~0)
885 {
Florin Coras62ddc032019-12-08 18:30:42 -0800886 for (i = 0; i < vec_len (fss->free_chunks); i++)
Florin Corasb095a3c2019-04-25 12:58:46 -0700887 {
Florin Coras62ddc032019-12-08 18:30:42 -0800888 c = fss->free_chunks[i];
Florin Corasb095a3c2019-04-25 12:58:46 -0700889 if (c == 0)
890 continue;
891
892 while (c)
893 {
894 c = c->next;
895 count++;
896 }
897 }
898 return count;
899 }
900
901 rounded_size = (1 << (max_log2 (size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -0700902 fl_index = fs_freelist_for_size (rounded_size);
Florin Corasb095a3c2019-04-25 12:58:46 -0700903
Florin Coras62ddc032019-12-08 18:30:42 -0800904 if (fl_index >= vec_len (fss->free_chunks))
Florin Corasb095a3c2019-04-25 12:58:46 -0700905 return 0;
906
Florin Coras62ddc032019-12-08 18:30:42 -0800907 c = fss->free_chunks[fl_index];
Florin Corasb095a3c2019-04-25 12:58:46 -0700908 if (c == 0)
909 return 0;
910
911 while (c)
912 {
913 c = c->next;
914 count++;
915 }
916 return count;
917}
918
Florin Coras62ddc032019-12-08 18:30:42 -0800919u32
920fifo_segment_num_free_chunks (fifo_segment_t * fs, u32 size)
921{
922 fifo_segment_header_t *fsh = fs->h;
923 fifo_segment_slice_t *fss;
924 int slice_index;
925 u32 count = 0;
926
927 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
928 {
929 fss = fsh_slice_get (fsh, slice_index);
930 count += fs_slice_num_free_chunks (fss, size);
931 }
932 return count;
933}
934
Florin Corasf9d4ab42019-05-11 16:55:53 -0700935void
936fifo_segment_update_free_bytes (fifo_segment_t * fs)
937{
Florin Coras4453c092019-12-19 10:13:15 -0800938 fsh_update_free_bytes (fs->h);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700939}
940
Florin Corasef4f3e72019-12-11 14:27:53 -0800941uword
Florin Corasf9d4ab42019-05-11 16:55:53 -0700942fifo_segment_free_bytes (fifo_segment_t * fs)
943{
Florin Coras62ddc032019-12-08 18:30:42 -0800944 return fsh_n_free_bytes (fs->h);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700945}
946
Florin Coras62ddc032019-12-08 18:30:42 -0800947uword
Florin Coras1c91c772019-06-25 18:14:13 -0700948fifo_segment_fl_chunk_bytes (fifo_segment_t * fs)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700949{
Florin Coras62ddc032019-12-08 18:30:42 -0800950 fifo_segment_header_t *fsh = fs->h;
951 fifo_segment_slice_t *fss;
952 uword n_bytes = 0;
953 int slice_index;
954
955 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
956 {
957 fss = fsh_slice_get (fsh, slice_index);
958 n_bytes += fss->n_fl_chunk_bytes;
959 }
960
961 return n_bytes;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700962}
963
Florin Coras88001c62019-04-24 14:44:46 -0700964u8
965fifo_segment_has_fifos (fifo_segment_t * fs)
966{
Florin Coras62ddc032019-12-08 18:30:42 -0800967 fifo_segment_header_t *fsh = fs->h;
968 fifo_segment_slice_t *fss;
969 int slice_index;
970
971 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
972 {
973 fss = fsh_slice_get (fsh, slice_index);
974 if (fss->fifos)
975 return 1;
976 }
977 return 0;
Florin Coras88001c62019-04-24 14:44:46 -0700978}
979
980svm_fifo_t *
Florin Coras62ddc032019-12-08 18:30:42 -0800981fifo_segment_get_slice_fifo_list (fifo_segment_t * fs, u32 slice_index)
Florin Coras88001c62019-04-24 14:44:46 -0700982{
Florin Coras62ddc032019-12-08 18:30:42 -0800983 fifo_segment_header_t *fsh = fs->h;
984 fifo_segment_slice_t *fss;
985
986 fss = fsh_slice_get (fsh, slice_index);
987 return fss->fifos;
Florin Coras88001c62019-04-24 14:44:46 -0700988}
989
990u8 *
991format_fifo_segment_type (u8 * s, va_list * args)
992{
993 fifo_segment_t *sp;
994 sp = va_arg (*args, fifo_segment_t *);
995 ssvm_segment_type_t st = ssvm_type (&sp->ssvm);
996
997 if (st == SSVM_SEGMENT_PRIVATE)
998 s = format (s, "%s", "private-heap");
999 else if (st == SSVM_SEGMENT_MEMFD)
1000 s = format (s, "%s", "memfd");
1001 else if (st == SSVM_SEGMENT_SHM)
1002 s = format (s, "%s", "shm");
1003 else
1004 s = format (s, "%s", "unknown");
1005 return s;
1006}
1007
1008/**
1009 * Segment format function
1010 */
1011u8 *
1012format_fifo_segment (u8 * s, va_list * args)
1013{
Florin Corasef4f3e72019-12-11 14:27:53 -08001014 u32 count, indent, active_fifos, free_fifos, fifo_hdr = 0;
Florin Coras5368bb02019-06-09 09:24:33 -07001015 fifo_segment_t *fs = va_arg (*args, fifo_segment_t *);
Florin Coras88001c62019-04-24 14:44:46 -07001016 int verbose __attribute__ ((unused)) = va_arg (*args, int);
Florin Corasef4f3e72019-12-11 14:27:53 -08001017 uword est_chunk_bytes, est_free_seg_bytes, free_chunks;
1018 uword chunk_bytes = 0, free_seg_bytes, chunk_size;
Florin Coras5368bb02019-06-09 09:24:33 -07001019 fifo_segment_header_t *fsh;
Florin Coras62ddc032019-12-08 18:30:42 -08001020 fifo_segment_slice_t *fss;
Florin Corascefd5d82019-05-05 13:19:57 -07001021 svm_fifo_chunk_t *c;
Florin Coras62ddc032019-12-08 18:30:42 -08001022 u32 slice_index;
Florin Coras5368bb02019-06-09 09:24:33 -07001023 char *address;
1024 size_t size;
Florin Coras88001c62019-04-24 14:44:46 -07001025 int i;
1026
1027 indent = format_get_indent (s) + 2;
1028#if USE_DLMALLOC == 0
1029 s = format (s, "%U segment heap: %U\n", format_white_space, indent,
Florin Coras62ddc032019-12-08 18:30:42 -08001030 format_mheap, fsh->ssvm_sh->heap, verbose);
Florin Coras88001c62019-04-24 14:44:46 -07001031 s = format (s, "%U segment has %u active fifos\n",
Florin Coras62ddc032019-12-08 18:30:42 -08001032 format_white_space, indent, fifo_segment_num_fifos (fsh));
Florin Coras88001c62019-04-24 14:44:46 -07001033#endif
1034
Florin Coras5368bb02019-06-09 09:24:33 -07001035 if (fs == 0)
1036 {
1037 s = format (s, "%-15s%15s%15s%15s%15s%15s", "Name", "Type",
1038 "HeapSize (M)", "ActiveFifos", "FreeFifos", "Address");
1039 return s;
1040 }
1041
Florin Coras5368bb02019-06-09 09:24:33 -07001042 fifo_segment_info (fs, &address, &size);
1043 active_fifos = fifo_segment_num_fifos (fs);
1044 free_fifos = fifo_segment_num_free_fifos (fs);
1045
1046 s = format (s, "%-15v%15U%15llu%15u%15u%15llx", ssvm_name (&fs->ssvm),
1047 format_fifo_segment_type, fs, size >> 20ULL, active_fifos,
1048 free_fifos, address);
1049
1050 if (!verbose)
1051 return s;
1052
Florin Coras62ddc032019-12-08 18:30:42 -08001053 fsh = fs->h;
1054
1055 free_chunks = fifo_segment_num_free_chunks (fs, ~0);
1056 if (free_chunks)
Florin Corasf8461bf2019-11-07 17:00:15 -08001057 s = format (s, "\n\n%UFree chunks by size:\n", format_white_space,
1058 indent + 2);
1059 else
1060 s = format (s, "\n");
1061
Florin Coras62ddc032019-12-08 18:30:42 -08001062 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
Florin Coras88001c62019-04-24 14:44:46 -07001063 {
Florin Coras62ddc032019-12-08 18:30:42 -08001064 fss = fsh_slice_get (fsh, slice_index);
1065 for (i = 0; i < vec_len (fss->free_chunks); i++)
Florin Coras88001c62019-04-24 14:44:46 -07001066 {
Florin Coras62ddc032019-12-08 18:30:42 -08001067 c = fss->free_chunks[i];
1068 if (c == 0)
1069 continue;
1070 count = 0;
1071 while (c)
1072 {
1073 c = c->next;
1074 count++;
1075 }
1076
1077 chunk_size = fs_freelist_index_to_size (i);
1078 s = format (s, "%U%-5u kB: %u\n", format_white_space, indent + 2,
1079 chunk_size >> 10, count);
1080
1081 chunk_bytes += count * chunk_size;
Florin Coras88001c62019-04-24 14:44:46 -07001082 }
Florin Coras88001c62019-04-24 14:44:46 -07001083 }
Florin Corasf8461bf2019-11-07 17:00:15 -08001084
1085 fifo_hdr = free_fifos * sizeof (svm_fifo_t);
1086 est_chunk_bytes = fifo_segment_fl_chunk_bytes (fs);
Florin Coras62ddc032019-12-08 18:30:42 -08001087 est_free_seg_bytes = fifo_segment_free_bytes (fs);
Florin Corasf8461bf2019-11-07 17:00:15 -08001088 fifo_segment_update_free_bytes (fs);
Florin Coras62ddc032019-12-08 18:30:42 -08001089 free_seg_bytes = fifo_segment_free_bytes (fs);
Florin Corasf8461bf2019-11-07 17:00:15 -08001090
Florin Corasef4f3e72019-12-11 14:27:53 -08001091 s = format (s, "\n%Useg free bytes: %U (%lu) estimated: %U (%lu)\n",
Florin Corasf8461bf2019-11-07 17:00:15 -08001092 format_white_space, indent + 2, format_memory_size,
Florin Coras62ddc032019-12-08 18:30:42 -08001093 free_seg_bytes, free_seg_bytes, format_memory_size,
Florin Corasf8461bf2019-11-07 17:00:15 -08001094 est_free_seg_bytes, est_free_seg_bytes);
Florin Corasef4f3e72019-12-11 14:27:53 -08001095 s = format (s, "%Uchunk free bytes: %U (%lu) estimated: %U (%lu)\n",
Florin Corasf8461bf2019-11-07 17:00:15 -08001096 format_white_space, indent + 2, format_memory_size, chunk_bytes,
1097 chunk_bytes, format_memory_size, est_chunk_bytes,
1098 est_chunk_bytes);
Florin Coras8122cc22019-12-18 13:06:41 -08001099 s = format (s, "%Ufifo hdr free bytes: %U (%u) reserved %U (%lu)\n",
1100 format_white_space, indent + 2, format_memory_size, fifo_hdr,
1101 fifo_hdr, format_memory_size, fsh->n_reserved_bytes,
1102 fsh->n_reserved_bytes);
Florin Corasf8461bf2019-11-07 17:00:15 -08001103 s = format (s, "\n");
Florin Coras5368bb02019-06-09 09:24:33 -07001104
Florin Coras88001c62019-04-24 14:44:46 -07001105 return s;
1106}
1107
1108/*
1109 * fd.io coding-style-patch-verification: ON
1110 *
1111 * Local Variables:
1112 * eval: (c-set-style "gnu")
1113 * End:
1114 */