blob: ea0352f48357ac617b3b9e0cccc118f1b5c9fcae [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>
Florin Corasc547e912020-12-08 17:50:45 -080017#include <vppinfra/mem.h>
Florin Coras88001c62019-04-24 14:44:46 -070018
Florin Coras213b1bb2020-12-07 14:33:58 -080019static inline void *
20fsh_alloc_aligned (fifo_segment_header_t *fsh, uword size, uword align)
21{
22 uword cur_pos, cur_pos_align, new_pos;
23
24 cur_pos = clib_atomic_load_relax_n (&fsh->byte_index);
25 cur_pos_align = round_pow2_u64 (cur_pos, align);
26 size = round_pow2_u64 (size, align);
27 new_pos = cur_pos_align + size;
28
29 if (new_pos >= fsh->max_byte_index)
30 return 0;
31
32 while (!clib_atomic_cmp_and_swap_acq_relax (&fsh->byte_index, &cur_pos,
33 &new_pos, 1 /* weak */))
34 {
35 cur_pos_align = round_pow2_u64 (cur_pos, align);
36 new_pos = cur_pos_align + size;
37 if (new_pos >= fsh->max_byte_index)
38 return 0;
39 }
40 return uword_to_pointer ((u8 *) fsh + cur_pos_align, void *);
41}
42
43static inline void *
44fsh_alloc (fifo_segment_header_t *fsh, uword size)
45{
46 return fsh_alloc_aligned (fsh, size, 8);
47}
48
Florin Coras06d47752020-03-06 02:23:58 +000049static inline fifo_segment_slice_t *
50fsh_slice_get (fifo_segment_header_t * fsh, u32 slice_index)
51{
52 return &fsh->slices[slice_index];
53}
54
Florin Coras1f952d32020-12-09 19:43:21 -080055static inline fifo_slice_private_t *
56fs_slice_private_get (fifo_segment_t *fs, u32 slice_index)
57{
58 ASSERT (slice_index < fs->n_slices);
59 return &fs->slices[slice_index];
60}
61
Ryujiro Shibuya234fe892019-12-25 07:40:54 +000062static char *fifo_segment_mem_status_strings[] = {
63#define _(sym,str) str,
64 foreach_segment_mem_status
65#undef _
66};
67
Florin Coras62ddc032019-12-08 18:30:42 -080068static inline uword
69fsh_n_free_bytes (fifo_segment_header_t * fsh)
70{
Florin Coras213b1bb2020-12-07 14:33:58 -080071 uword cur_pos = clib_atomic_load_relax_n (&fsh->byte_index);
72 ASSERT (fsh->max_byte_index > cur_pos);
73 return fsh->max_byte_index - cur_pos;
Florin Coras8122cc22019-12-18 13:06:41 -080074}
75
Ryujiro Shibuya234fe892019-12-25 07:40:54 +000076static inline void
Florin Coras79b3f8c2020-11-20 07:34:53 -080077fsh_cached_bytes_add (fifo_segment_header_t * fsh, uword size)
Ryujiro Shibuya234fe892019-12-25 07:40:54 +000078{
79 clib_atomic_fetch_add_rel (&fsh->n_cached_bytes, size);
80}
81
82static inline void
Florin Coras79b3f8c2020-11-20 07:34:53 -080083fsh_cached_bytes_sub (fifo_segment_header_t * fsh, uword size)
Ryujiro Shibuya234fe892019-12-25 07:40:54 +000084{
85 clib_atomic_fetch_sub_rel (&fsh->n_cached_bytes, size);
86}
87
88static inline uword
89fsh_n_cached_bytes (fifo_segment_header_t * fsh)
90{
91 uword n_cached = clib_atomic_load_relax_n (&fsh->n_cached_bytes);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +000092 return n_cached;
93}
94
Florin Coras06d47752020-03-06 02:23:58 +000095static inline void
96fsh_active_fifos_update (fifo_segment_header_t * fsh, int inc)
97{
98 clib_atomic_fetch_add_rel (&fsh->n_active_fifos, inc);
99}
100
Florin Coras7a90e502020-04-09 04:46:14 +0000101static inline u32
102fsh_n_active_fifos (fifo_segment_header_t * fsh)
103{
104 return clib_atomic_load_relax_n (&fsh->n_active_fifos);
105}
106
Florin Coras06d47752020-03-06 02:23:58 +0000107static inline uword
108fsh_virtual_mem (fifo_segment_header_t * fsh)
109{
110 fifo_segment_slice_t *fss;
111 uword total_vm = 0;
112 int i;
113
114 for (i = 0; i < fsh->n_slices; i++)
115 {
116 fss = fsh_slice_get (fsh, i);
117 total_vm += clib_atomic_load_relax_n (&fss->virtual_mem);
118 }
119 return total_vm;
120}
121
122void
123fsh_virtual_mem_update (fifo_segment_header_t * fsh, u32 slice_index,
124 int n_bytes)
125{
126 fifo_segment_slice_t *fss = fsh_slice_get (fsh, slice_index);
127 fss->virtual_mem += n_bytes;
128}
129
Florin Coras213b1bb2020-12-07 14:33:58 -0800130static inline void
131fss_chunk_freelist_lock (fifo_segment_slice_t *fss)
Florin Coras8122cc22019-12-18 13:06:41 -0800132{
Florin Coras213b1bb2020-12-07 14:33:58 -0800133 u32 free = 0;
134 while (!clib_atomic_cmp_and_swap_acq_relax_n (&fss->chunk_lock, &free, 1, 0))
135 {
136 /* atomic load limits number of compare_exchange executions */
137 while (clib_atomic_load_relax_n (&fss->chunk_lock))
138 CLIB_PAUSE ();
139 /* on failure, compare_exchange writes (*p)->lock into free */
140 free = 0;
141 }
142}
Florin Coras8122cc22019-12-18 13:06:41 -0800143
Florin Coras213b1bb2020-12-07 14:33:58 -0800144static inline void
145fss_chunk_freelist_unlock (fifo_segment_slice_t *fss)
146{
147 /* Make sure all reads/writes are complete before releasing the lock */
148 clib_atomic_release (&fss->chunk_lock);
Florin Coras62ddc032019-12-08 18:30:42 -0800149}
150
Florin Coras473c8462020-11-16 18:11:51 -0800151static inline int
152fss_chunk_fl_index_is_valid (fifo_segment_slice_t * fss, u32 fl_index)
153{
Florin Coras4b8011e2020-12-07 19:38:23 -0800154 return (fl_index < FS_CHUNK_VEC_LEN);
Florin Coras473c8462020-11-16 18:11:51 -0800155}
156
157static void
Florin Corasaf588822020-12-09 12:51:13 -0800158fss_chunk_free_list_push (fifo_segment_header_t *fsh,
159 fifo_segment_slice_t *fss, u32 fl_index,
160 svm_fifo_chunk_t *c)
Florin Coras473c8462020-11-16 18:11:51 -0800161{
Florin Coras213b1bb2020-12-07 14:33:58 -0800162 fss_chunk_freelist_lock (fss);
Florin Coras473c8462020-11-16 18:11:51 -0800163 c->next = fss->free_chunks[fl_index];
Florin Corasaf588822020-12-09 12:51:13 -0800164 fss->free_chunks[fl_index] = fs_chunk_sptr (fsh, c);
Florin Coras213b1bb2020-12-07 14:33:58 -0800165 fss_chunk_freelist_unlock (fss);
Florin Coras473c8462020-11-16 18:11:51 -0800166}
167
168static void
Florin Corasaf588822020-12-09 12:51:13 -0800169fss_chunk_free_list_push_list (fifo_segment_header_t *fsh,
170 fifo_segment_slice_t *fss, u32 fl_index,
171 svm_fifo_chunk_t *head, svm_fifo_chunk_t *tail)
Florin Coras473c8462020-11-16 18:11:51 -0800172{
Florin Coras213b1bb2020-12-07 14:33:58 -0800173 fss_chunk_freelist_lock (fss);
Florin Coras473c8462020-11-16 18:11:51 -0800174 tail->next = fss->free_chunks[fl_index];
Florin Corasaf588822020-12-09 12:51:13 -0800175 fss->free_chunks[fl_index] = fs_chunk_sptr (fsh, head);
Florin Coras213b1bb2020-12-07 14:33:58 -0800176 fss_chunk_freelist_unlock (fss);
Florin Coras473c8462020-11-16 18:11:51 -0800177}
178
179static svm_fifo_chunk_t *
Florin Corasaf588822020-12-09 12:51:13 -0800180fss_chunk_free_list_pop (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss,
181 u32 fl_index)
Florin Coras473c8462020-11-16 18:11:51 -0800182{
183 svm_fifo_chunk_t *c;
184
185 ASSERT (fss_chunk_fl_index_is_valid (fss, fl_index));
186
Florin Coras213b1bb2020-12-07 14:33:58 -0800187 fss_chunk_freelist_lock (fss);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800188
Florin Coras473c8462020-11-16 18:11:51 -0800189 if (!fss->free_chunks[fl_index])
Florin Corasd01d2ce2020-11-17 18:42:38 -0800190 {
Florin Coras213b1bb2020-12-07 14:33:58 -0800191 fss_chunk_freelist_unlock (fss);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800192 return 0;
193 }
Florin Coras473c8462020-11-16 18:11:51 -0800194
Florin Corasaf588822020-12-09 12:51:13 -0800195 c = fs_chunk_ptr (fsh, fss->free_chunks[fl_index]);
Florin Coras473c8462020-11-16 18:11:51 -0800196 fss->free_chunks[fl_index] = c->next;
197
Florin Coras213b1bb2020-12-07 14:33:58 -0800198 fss_chunk_freelist_unlock (fss);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800199
Florin Coras473c8462020-11-16 18:11:51 -0800200 return c;
201}
202
Florin Coras17672aa2020-12-29 16:55:32 -0800203static void
204fss_fifo_free_list_push (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss,
205 svm_fifo_shared_t *sf)
206{
207 sf->next = fss->free_fifos;
208 fss->free_fifos = fs_sptr (fsh, sf);
209}
210
211static void
212fss_fifo_free_list_push_list (fifo_segment_header_t *fsh,
213 fifo_segment_slice_t *fss,
214 svm_fifo_shared_t *head, svm_fifo_shared_t *tail)
215{
216 tail->next = fss->free_fifos;
217 fss->free_fifos = fs_sptr (fsh, head);
218}
219
220svm_fifo_shared_t *
221fss_fifo_free_list_pop (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss)
222{
223 svm_fifo_shared_t *sf;
224 sf = fs_ptr (fsh, fss->free_fifos);
225 fss->free_fifos = sf->next;
226 return sf;
227}
228
Florin Coras473c8462020-11-16 18:11:51 -0800229static inline void
Florin Coras1f952d32020-12-09 19:43:21 -0800230pfss_fifo_add_active_list (fifo_slice_private_t *pfss, svm_fifo_t *f)
Florin Coras473c8462020-11-16 18:11:51 -0800231{
Florin Coras1f952d32020-12-09 19:43:21 -0800232 if (pfss->active_fifos)
Florin Coras473c8462020-11-16 18:11:51 -0800233 {
Florin Coras1f952d32020-12-09 19:43:21 -0800234 pfss->active_fifos->prev = f;
235 f->next = pfss->active_fifos;
Florin Coras473c8462020-11-16 18:11:51 -0800236 }
Florin Coras1f952d32020-12-09 19:43:21 -0800237 pfss->active_fifos = f;
Florin Coras473c8462020-11-16 18:11:51 -0800238}
239
240static inline void
Florin Coras1f952d32020-12-09 19:43:21 -0800241pfss_fifo_del_active_list (fifo_slice_private_t *pfss, svm_fifo_t *f)
Florin Coras473c8462020-11-16 18:11:51 -0800242{
243 if (f->flags & SVM_FIFO_F_LL_TRACKED)
244 {
245 if (f->prev)
246 f->prev->next = f->next;
247 else
Florin Coras1f952d32020-12-09 19:43:21 -0800248 pfss->active_fifos = f->next;
Florin Coras473c8462020-11-16 18:11:51 -0800249 if (f->next)
250 f->next->prev = f->prev;
251 }
252}
253
Florin Corasd01d2ce2020-11-17 18:42:38 -0800254static inline uword
255fss_fl_chunk_bytes (fifo_segment_slice_t * fss)
256{
257 return clib_atomic_load_relax_n (&fss->n_fl_chunk_bytes);
258}
259
260static inline void
261fss_fl_chunk_bytes_add (fifo_segment_slice_t * fss, uword size)
262{
263 clib_atomic_fetch_add_relax (&fss->n_fl_chunk_bytes, size);
264}
265
266static inline void
267fss_fl_chunk_bytes_sub (fifo_segment_slice_t * fss, uword size)
268{
269 clib_atomic_fetch_sub_relax (&fss->n_fl_chunk_bytes, size);
270}
271
Florin Corasf9d4ab42019-05-11 16:55:53 -0700272/**
Florin Coras88001c62019-04-24 14:44:46 -0700273 * Initialize fifo segment shared header
274 */
275int
276fifo_segment_init (fifo_segment_t * fs)
277{
Florin Corasc547e912020-12-08 17:50:45 -0800278 u32 align = 8, offset = 2 * 4096, slices_sz, i;
Florin Coras4b8011e2020-12-07 19:38:23 -0800279 uword max_fifo, seg_start, seg_sz;
Florin Coras88001c62019-04-24 14:44:46 -0700280 fifo_segment_header_t *fsh;
281 ssvm_shared_header_t *sh;
Florin Coras213b1bb2020-12-07 14:33:58 -0800282 void *seg_data;
Florin Coras88001c62019-04-24 14:44:46 -0700283
Florin Coras213b1bb2020-12-07 14:33:58 -0800284 /* TODO remove ssvm heap entirely */
Florin Coras88001c62019-04-24 14:44:46 -0700285 sh = fs->ssvm.sh;
Florin Coras88001c62019-04-24 14:44:46 -0700286
Florin Coras213b1bb2020-12-07 14:33:58 -0800287 seg_data = (u8 *) sh + offset;
Florin Coras4b8011e2020-12-07 19:38:23 -0800288 seg_sz = sh->ssvm_size - offset;
289
290 fs->n_slices = clib_max (fs->n_slices, 1);
291 slices_sz = sizeof (fifo_segment_slice_t) * fs->n_slices;
Florin Coras213b1bb2020-12-07 14:33:58 -0800292
293 seg_start = round_pow2_u64 (pointer_to_uword (seg_data), align);
294 fsh = uword_to_pointer (seg_start, void *);
Florin Corasee5cd4e2021-02-11 08:44:23 -0800295 CLIB_MEM_UNPOISON (fsh, seg_sz);
Florin Coras4b8011e2020-12-07 19:38:23 -0800296 memset (fsh, 0, sizeof (*fsh) + slices_sz);
Florin Coras213b1bb2020-12-07 14:33:58 -0800297
Florin Coras4b8011e2020-12-07 19:38:23 -0800298 fsh->byte_index = sizeof (*fsh) + slices_sz;
299 fsh->max_byte_index = seg_sz;
Florin Coras62ddc032019-12-08 18:30:42 -0800300 fsh->n_slices = fs->n_slices;
Florin Coras4b8011e2020-12-07 19:38:23 -0800301 max_fifo = clib_min ((seg_sz - slices_sz) / 2, FIFO_SEGMENT_MAX_FIFO_SIZE);
302 fsh->max_log2_fifo_size = min_log2 (max_fifo);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000303 fsh->n_cached_bytes = 0;
Florin Coras213b1bb2020-12-07 14:33:58 -0800304 fsh->n_reserved_bytes = fsh->byte_index;
Florin Coras80b74252021-01-27 18:08:25 -0800305 fsh->start_byte_index = fsh->byte_index;
Florin Coras4b8011e2020-12-07 19:38:23 -0800306 ASSERT (fsh->max_byte_index <= sh->ssvm_size - offset);
307
308 fs->max_byte_index = fsh->max_byte_index;
Florin Coras14f066e2020-12-10 18:52:40 -0800309 fs->h = fsh;
310 sh->opaque[0] = (void *) ((u8 *) fsh - (u8 *) fs->ssvm.sh);
311
312 /* Allow random offsets */
313 fs->ssvm.sh->ssvm_va = 0;
Florin Coras4b8011e2020-12-07 19:38:23 -0800314
Florin Corasc547e912020-12-08 17:50:45 -0800315 vec_validate (fs->slices, fs->n_slices - 1);
316 for (i = 0; i < fs->n_slices; i++)
317 fs->slices[i].fifos =
318 clib_mem_bulk_init (sizeof (svm_fifo_t), CLIB_CACHE_LINE_BYTES, 32);
319
Florin Coras88001c62019-04-24 14:44:46 -0700320 sh->ready = 1;
321 return (0);
322}
323
324/**
Florin Coras88001c62019-04-24 14:44:46 -0700325 * Create a fifo segment and initialize as master
326 */
327int
328fifo_segment_create (fifo_segment_main_t * sm, fifo_segment_create_args_t * a)
329{
Florin Corasf9d4ab42019-05-11 16:55:53 -0700330 fifo_segment_t *fs;
331 uword baseva;
Florin Coras88001c62019-04-24 14:44:46 -0700332 int rv;
333
Florin Coras88001c62019-04-24 14:44:46 -0700334 /* Allocate a fresh segment */
Florin Corasf9d4ab42019-05-11 16:55:53 -0700335 pool_get_zero (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700336
Florin Corasf9d4ab42019-05-11 16:55:53 -0700337 baseva = a->segment_type == SSVM_SEGMENT_PRIVATE ? ~0ULL : sm->next_baseva;
338 fs->ssvm.ssvm_size = a->segment_size;
Florin Coras5220a262020-09-29 18:11:24 -0700339 fs->ssvm.is_server = 1;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700340 fs->ssvm.my_pid = getpid ();
341 fs->ssvm.name = format (0, "%s%c", a->segment_name, 0);
342 fs->ssvm.requested_va = baseva;
Florin Coras88001c62019-04-24 14:44:46 -0700343
Florin Coras5220a262020-09-29 18:11:24 -0700344 if ((rv = ssvm_server_init (&fs->ssvm, a->segment_type)))
Florin Coras88001c62019-04-24 14:44:46 -0700345 {
Florin Corasf9d4ab42019-05-11 16:55:53 -0700346 pool_put (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700347 return (rv);
348 }
349
350 /* Note: requested_va updated due to seg base addr randomization */
Florin Corasf9d4ab42019-05-11 16:55:53 -0700351 sm->next_baseva = fs->ssvm.sh->ssvm_va + fs->ssvm.ssvm_size;
Florin Coras88001c62019-04-24 14:44:46 -0700352
Florin Corasf9d4ab42019-05-11 16:55:53 -0700353 fifo_segment_init (fs);
354 vec_add1 (a->new_segment_indices, fs - sm->segments);
Florin Coras88001c62019-04-24 14:44:46 -0700355 return (0);
356}
357
358/**
359 * Attach as slave to a fifo segment
360 */
361int
362fifo_segment_attach (fifo_segment_main_t * sm, fifo_segment_create_args_t * a)
363{
Florin Coras4b8011e2020-12-07 19:38:23 -0800364 fifo_segment_header_t *fsh;
Florin Coras62ddc032019-12-08 18:30:42 -0800365 fifo_segment_t *fs;
Florin Coras88001c62019-04-24 14:44:46 -0700366 int rv;
367
Florin Coras62ddc032019-12-08 18:30:42 -0800368 pool_get_zero (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700369
Florin Coras62ddc032019-12-08 18:30:42 -0800370 fs->ssvm.ssvm_size = a->segment_size;
371 fs->ssvm.my_pid = getpid ();
372 fs->ssvm.name = format (0, "%s%c", a->segment_name, 0);
Florin Coras14f066e2020-12-10 18:52:40 -0800373 fs->ssvm.requested_va = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700374 if (a->segment_type == SSVM_SEGMENT_MEMFD)
Florin Coras62ddc032019-12-08 18:30:42 -0800375 fs->ssvm.fd = a->memfd_fd;
Florin Coras88001c62019-04-24 14:44:46 -0700376 else
Florin Coras62ddc032019-12-08 18:30:42 -0800377 fs->ssvm.attach_timeout = sm->timeout_in_seconds;
Florin Coras88001c62019-04-24 14:44:46 -0700378
Florin Coras5220a262020-09-29 18:11:24 -0700379 if ((rv = ssvm_client_init (&fs->ssvm, a->segment_type)))
Florin Coras88001c62019-04-24 14:44:46 -0700380 {
Florin Coras14f066e2020-12-10 18:52:40 -0800381 pool_put (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700382 return (rv);
383 }
384
Florin Coras4b8011e2020-12-07 19:38:23 -0800385 /* Probably a segment without fifos */
Florin Coras14f066e2020-12-10 18:52:40 -0800386 if (!fs->ssvm.sh->opaque[0])
Florin Coras4b8011e2020-12-07 19:38:23 -0800387 goto done;
388
Florin Coras14f066e2020-12-10 18:52:40 -0800389 fsh = fs->h = (void *) fs->ssvm.sh + (uword) fs->ssvm.sh->opaque[0];
Florin Coras4b8011e2020-12-07 19:38:23 -0800390 fs->max_byte_index = fsh->max_byte_index;
Florin Corasc547e912020-12-08 17:50:45 -0800391 vec_validate (fs->slices, 0);
392 fs->slices[0].fifos =
393 clib_mem_bulk_init (sizeof (svm_fifo_t), CLIB_CACHE_LINE_BYTES, 32);
Florin Coras4b8011e2020-12-07 19:38:23 -0800394
395done:
Florin Coras62ddc032019-12-08 18:30:42 -0800396 vec_add1 (a->new_segment_indices, fs - sm->segments);
Florin Coras88001c62019-04-24 14:44:46 -0700397 return (0);
398}
399
400void
401fifo_segment_delete (fifo_segment_main_t * sm, fifo_segment_t * s)
402{
Florin Corasc547e912020-12-08 17:50:45 -0800403 fifo_segment_cleanup (s);
Florin Coras88001c62019-04-24 14:44:46 -0700404 ssvm_delete (&s->ssvm);
405 clib_memset (s, 0xfe, sizeof (*s));
406 pool_put (sm->segments, s);
407}
408
409u32
410fifo_segment_index (fifo_segment_main_t * sm, fifo_segment_t * s)
411{
412 return s - sm->segments;
413}
414
Florin Coras88001c62019-04-24 14:44:46 -0700415fifo_segment_t *
416fifo_segment_get_segment (fifo_segment_main_t * sm, u32 segment_index)
417{
418 return pool_elt_at_index (sm->segments, segment_index);
419}
420
421void
422fifo_segment_info (fifo_segment_t * seg, char **address, size_t * size)
423{
Florin Coras404b8a32019-05-09 12:08:06 -0700424 *address = (char *) seg->ssvm.sh->ssvm_va;
425 *size = seg->ssvm.ssvm_size;
Florin Coras88001c62019-04-24 14:44:46 -0700426}
427
428void
429fifo_segment_main_init (fifo_segment_main_t * sm, u64 baseva,
430 u32 timeout_in_seconds)
431{
432 sm->next_baseva = baseva;
433 sm->timeout_in_seconds = timeout_in_seconds;
434}
435
Florin Corasf9d4ab42019-05-11 16:55:53 -0700436static inline u32
437fs_freelist_for_size (u32 size)
Florin Coras88001c62019-04-24 14:44:46 -0700438{
Florin Corasf22f4e52019-12-19 16:10:58 -0800439 if (PREDICT_FALSE (size < FIFO_SEGMENT_MIN_FIFO_SIZE))
440 return 0;
Florin Coras4b8011e2020-12-07 19:38:23 -0800441 return clib_min (max_log2 (size) - FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE,
442 FS_CHUNK_VEC_LEN - 1);
Florin Coras88001c62019-04-24 14:44:46 -0700443}
444
Florin Corasf9d4ab42019-05-11 16:55:53 -0700445static inline u32
446fs_freelist_index_to_size (u32 fl_index)
447{
Florin Coras62ddc032019-12-08 18:30:42 -0800448 return 1 << (fl_index + FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700449}
450
Florin Coras88001c62019-04-24 14:44:46 -0700451static inline int
Florin Coras62ddc032019-12-08 18:30:42 -0800452fs_chunk_size_is_valid (fifo_segment_header_t * fsh, u32 size)
Florin Coras88001c62019-04-24 14:44:46 -0700453{
454 /*
455 * 4K minimum. It's not likely that anything good will happen
456 * with a smaller FIFO.
457 */
Florin Coras4b8011e2020-12-07 19:38:23 -0800458 return size >= FIFO_SEGMENT_MIN_FIFO_SIZE &&
459 size <= (1ULL << fsh->max_log2_fifo_size);
Florin Coras88001c62019-04-24 14:44:46 -0700460}
461
Florin Coras8e755a12020-02-06 16:59:31 +0000462svm_fifo_chunk_t *
463fs_try_alloc_multi_chunk (fifo_segment_header_t * fsh,
464 fifo_segment_slice_t * fss, u32 data_bytes)
465{
466 u32 fl_index, fl_size, n_alloc = 0, req_bytes = data_bytes;
467 svm_fifo_chunk_t *c, *first = 0, *next;
468
469 fl_index = fs_freelist_for_size (req_bytes);
470 if (fl_index > 0)
471 fl_index -= 1;
472
473 fl_size = fs_freelist_index_to_size (fl_index);
474
475 while (req_bytes)
476 {
Florin Corasaf588822020-12-09 12:51:13 -0800477 c = fss_chunk_free_list_pop (fsh, fss, fl_index);
Florin Coras8e755a12020-02-06 16:59:31 +0000478 if (c)
479 {
Florin Corasaf588822020-12-09 12:51:13 -0800480 c->next = fs_chunk_sptr (fsh, first);
Florin Coras8e755a12020-02-06 16:59:31 +0000481 first = c;
482 n_alloc += fl_size;
483 req_bytes -= clib_min (fl_size, req_bytes);
484 }
485 else
486 {
487 /* Failed to allocate with smaller chunks */
488 if (fl_index == 0)
489 {
Florin Coras473c8462020-11-16 18:11:51 -0800490 /* Free all chunks if any allocated */
Florin Coras8e755a12020-02-06 16:59:31 +0000491 c = first;
492 while (c)
493 {
494 fl_index = fs_freelist_for_size (c->length);
Florin Corasaf588822020-12-09 12:51:13 -0800495 next = fs_chunk_ptr (fsh, c->next);
496 fss_chunk_free_list_push (fsh, fss, fl_index, c);
Florin Coras8e755a12020-02-06 16:59:31 +0000497 c = next;
498 }
499 n_alloc = 0;
500 first = 0;
Florin Coras473c8462020-11-16 18:11:51 -0800501 /* As last attempt, try allocating a chunk larger than
502 * the requested size, if possible */
503 fl_index = fs_freelist_for_size (data_bytes) + 1;
504 if (!fss_chunk_fl_index_is_valid (fss, fl_index))
505 return 0;
Florin Corasaf588822020-12-09 12:51:13 -0800506 first = fss_chunk_free_list_pop (fsh, fss, fl_index);
Florin Coras473c8462020-11-16 18:11:51 -0800507 if (first)
Florin Coras8e755a12020-02-06 16:59:31 +0000508 {
Florin Coras473c8462020-11-16 18:11:51 -0800509 first->next = 0;
510 n_alloc = fs_freelist_index_to_size (fl_index);
511 goto done;
Florin Coras8e755a12020-02-06 16:59:31 +0000512 }
Florin Coras8e755a12020-02-06 16:59:31 +0000513 return 0;
514 }
515 fl_index -= 1;
516 fl_size = fl_size >> 1;
517 }
518 }
519
Florin Coras473c8462020-11-16 18:11:51 -0800520done:
Florin Corasd01d2ce2020-11-17 18:42:38 -0800521 fss_fl_chunk_bytes_sub (fss, n_alloc);
Florin Coras8e755a12020-02-06 16:59:31 +0000522 fsh_cached_bytes_sub (fsh, n_alloc);
523 return first;
524}
525
Florin Corasf9d4ab42019-05-11 16:55:53 -0700526static int
Florin Coras473c8462020-11-16 18:11:51 -0800527fsh_try_alloc_fifo_hdr_batch (fifo_segment_header_t * fsh,
528 fifo_segment_slice_t * fss, u32 batch_size)
Florin Coras8e755a12020-02-06 16:59:31 +0000529{
Florin Coras17672aa2020-12-29 16:55:32 -0800530 svm_fifo_shared_t *f, *head = 0, *tail;
Florin Coras36a0c4d2020-01-31 08:28:02 -0800531 uword size;
Florin Corascefd5d82019-05-05 13:19:57 -0700532 u8 *fmem;
533 int i;
Florin Coras88001c62019-04-24 14:44:46 -0700534
Benoît Gannef23b1512020-11-25 15:06:01 +0100535 ASSERT (batch_size != 0);
536
Florin Coras473c8462020-11-16 18:11:51 -0800537 size = (uword) sizeof (*f) * batch_size;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700538
Florin Coras213b1bb2020-12-07 14:33:58 -0800539 fmem = fsh_alloc_aligned (fsh, size, CLIB_CACHE_LINE_BYTES);
Florin Corascefd5d82019-05-05 13:19:57 -0700540 if (fmem == 0)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700541 return -1;
Florin Coras88001c62019-04-24 14:44:46 -0700542
Florin Coras635f5062020-04-28 20:40:57 +0000543 /* Carve fifo hdr space */
Florin Coras17672aa2020-12-29 16:55:32 -0800544 tail = f = (svm_fifo_shared_t *) fmem;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700545 for (i = 0; i < batch_size; i++)
Florin Coras88001c62019-04-24 14:44:46 -0700546 {
Florin Coras17672aa2020-12-29 16:55:32 -0800547 clib_memset (f, 0, sizeof (*f));
548 f->next = fs_sptr (fsh, head);
549 head = f;
Florin Coras635f5062020-04-28 20:40:57 +0000550 fmem += sizeof (*f);
Florin Coras17672aa2020-12-29 16:55:32 -0800551 f = (svm_fifo_shared_t *) fmem;
Florin Coras635f5062020-04-28 20:40:57 +0000552 }
553
Florin Coras17672aa2020-12-29 16:55:32 -0800554 fss_fifo_free_list_push_list (fsh, fss, head, tail);
555
Florin Coras473c8462020-11-16 18:11:51 -0800556 return 0;
557}
558
559static int
560fsh_try_alloc_chunk_batch (fifo_segment_header_t * fsh,
561 fifo_segment_slice_t * fss,
562 u32 fl_index, u32 batch_size)
563{
Florin Coras473c8462020-11-16 18:11:51 -0800564 svm_fifo_chunk_t *c, *head = 0, *tail;
Florin Coras79b3f8c2020-11-20 07:34:53 -0800565 uword size, total_chunk_bytes;
566 u32 rounded_data_size;
Florin Coras473c8462020-11-16 18:11:51 -0800567 u8 *cmem;
568 int i;
569
Benoît Gannef23b1512020-11-25 15:06:01 +0100570 ASSERT (batch_size != 0);
571
Florin Coras473c8462020-11-16 18:11:51 -0800572 rounded_data_size = fs_freelist_index_to_size (fl_index);
Florin Coras79b3f8c2020-11-20 07:34:53 -0800573 total_chunk_bytes = (uword) batch_size *rounded_data_size;
Florin Coras473c8462020-11-16 18:11:51 -0800574 size = (uword) (sizeof (*c) + rounded_data_size) * batch_size;
575
Florin Coras213b1bb2020-12-07 14:33:58 -0800576 cmem = fsh_alloc_aligned (fsh, size, 8 /* chunk hdr is 24B */);
Florin Coras473c8462020-11-16 18:11:51 -0800577 if (cmem == 0)
578 return -1;
579
580 /* Carve fifo + chunk space */
581 tail = c = (svm_fifo_chunk_t *) cmem;
Florin Coras635f5062020-04-28 20:40:57 +0000582 for (i = 0; i < batch_size; i++)
583 {
Florin Corascefd5d82019-05-05 13:19:57 -0700584 c->start_byte = 0;
585 c->length = rounded_data_size;
Florin Corasaf588822020-12-09 12:51:13 -0800586 c->next = fs_chunk_sptr (fsh, head);
Florin Coras473c8462020-11-16 18:11:51 -0800587 head = c;
588 cmem += sizeof (*c) + rounded_data_size;
589 c = (svm_fifo_chunk_t *) cmem;
Florin Coras88001c62019-04-24 14:44:46 -0700590 }
Florin Corascefd5d82019-05-05 13:19:57 -0700591
Florin Corasaf588822020-12-09 12:51:13 -0800592 fss_chunk_free_list_push_list (fsh, fss, fl_index, head, tail);
Ryujiro Shibuyad3588722020-03-13 12:45:06 +0000593 fss->num_chunks[fl_index] += batch_size;
Florin Coras79b3f8c2020-11-20 07:34:53 -0800594 fss_fl_chunk_bytes_add (fss, total_chunk_bytes);
595 fsh_cached_bytes_add (fsh, total_chunk_bytes);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700596
597 return 0;
598}
599
Florin Coras473c8462020-11-16 18:11:51 -0800600static int
601fs_try_alloc_fifo_batch (fifo_segment_header_t * fsh,
602 fifo_segment_slice_t * fss,
603 u32 fl_index, u32 batch_size)
604{
605 if (fsh_try_alloc_fifo_hdr_batch (fsh, fss, batch_size))
606 return 0;
607 return fsh_try_alloc_chunk_batch (fsh, fss, fl_index, batch_size);
608}
609
Florin Corasc547e912020-12-08 17:50:45 -0800610static svm_fifo_shared_t *
611fsh_try_alloc_fifo_hdr (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss)
Florin Coras473c8462020-11-16 18:11:51 -0800612{
Florin Coras17672aa2020-12-29 16:55:32 -0800613 svm_fifo_shared_t *sf;
Florin Coras473c8462020-11-16 18:11:51 -0800614
615 if (!fss->free_fifos)
616 {
617 if (fsh_try_alloc_fifo_hdr_batch (fsh, fss,
618 FIFO_SEGMENT_ALLOC_BATCH_SIZE))
619 return 0;
620 }
621
Florin Coras17672aa2020-12-29 16:55:32 -0800622 sf = fss_fifo_free_list_pop (fsh, fss);
623 clib_memset (sf, 0, sizeof (*sf));
624
625 return sf;
Florin Coras473c8462020-11-16 18:11:51 -0800626}
627
628static svm_fifo_chunk_t *
629fsh_try_alloc_chunk (fifo_segment_header_t * fsh,
630 fifo_segment_slice_t * fss, u32 data_bytes)
631{
632 svm_fifo_chunk_t *c;
633 u32 fl_index;
634
635 fl_index = fs_freelist_for_size (data_bytes);
636
637free_list:
Florin Corasaf588822020-12-09 12:51:13 -0800638 c = fss_chunk_free_list_pop (fsh, fss, fl_index);
Florin Coras473c8462020-11-16 18:11:51 -0800639 if (c)
640 {
641 c->next = 0;
Florin Corasd01d2ce2020-11-17 18:42:38 -0800642 fss_fl_chunk_bytes_sub (fss, fs_freelist_index_to_size (fl_index));
Florin Coras473c8462020-11-16 18:11:51 -0800643 fsh_cached_bytes_sub (fsh, fs_freelist_index_to_size (fl_index));
644 }
645 else
646 {
647 u32 chunk_size, batch = FIFO_SEGMENT_ALLOC_BATCH_SIZE;
648 uword n_free;
649
650 chunk_size = fs_freelist_index_to_size (fl_index);
651 n_free = fsh_n_free_bytes (fsh);
652
653 if (chunk_size <= n_free)
654 {
655 batch = chunk_size * batch <= n_free ? batch : 1;
656 if (!fsh_try_alloc_chunk_batch (fsh, fss, fl_index, batch))
657 goto free_list;
658 }
659 /* Failed to allocate larger chunk, try to allocate multi-chunk
660 * that is close to what was actually requested */
Florin Corasd01d2ce2020-11-17 18:42:38 -0800661 if (data_bytes <= fss_fl_chunk_bytes (fss))
Florin Coras473c8462020-11-16 18:11:51 -0800662 {
663 c = fs_try_alloc_multi_chunk (fsh, fss, data_bytes);
664 if (c)
665 goto done;
666 batch = n_free / FIFO_SEGMENT_MIN_FIFO_SIZE;
667 if (!batch || fsh_try_alloc_chunk_batch (fsh, fss, 0, batch))
Florin Coras213b1bb2020-12-07 14:33:58 -0800668 goto done;
Florin Coras473c8462020-11-16 18:11:51 -0800669 }
Florin Corasd01d2ce2020-11-17 18:42:38 -0800670 if (data_bytes <= fss_fl_chunk_bytes (fss) + n_free)
Florin Coras473c8462020-11-16 18:11:51 -0800671 {
672 u32 min_size = FIFO_SEGMENT_MIN_FIFO_SIZE;
673
Florin Corasd01d2ce2020-11-17 18:42:38 -0800674 batch = (data_bytes - fss_fl_chunk_bytes (fss)) / min_size;
Florin Coras473c8462020-11-16 18:11:51 -0800675 batch = clib_min (batch + 1, n_free / min_size);
676 if (fsh_try_alloc_chunk_batch (fsh, fss, 0, batch))
Florin Coras213b1bb2020-12-07 14:33:58 -0800677 goto done;
Florin Coras473c8462020-11-16 18:11:51 -0800678 c = fs_try_alloc_multi_chunk (fsh, fss, data_bytes);
679 }
680 }
681
682done:
683
684 return c;
685}
686
Florin Corasf9d4ab42019-05-11 16:55:53 -0700687/**
688 * Try to allocate new fifo
689 *
690 * Tries the following steps in order:
691 * - grab fifo and chunk from freelists
692 * - batch fifo and chunk allocation
693 * - single fifo allocation
694 * - grab multiple fifo chunks from freelists
695 */
Florin Corasc547e912020-12-08 17:50:45 -0800696static svm_fifo_shared_t *
697fs_try_alloc_fifo (fifo_segment_header_t *fsh, u32 slice_index, u32 data_bytes)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700698{
Florin Corasc547e912020-12-08 17:50:45 -0800699 fifo_segment_slice_t *fss;
Florin Corasd01d2ce2020-11-17 18:42:38 -0800700 u32 fl_index, min_size;
Florin Coras473c8462020-11-16 18:11:51 -0800701 svm_fifo_chunk_t *c;
Florin Corasc547e912020-12-08 17:50:45 -0800702 svm_fifo_shared_t *sf = 0;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700703
Florin Corasc547e912020-12-08 17:50:45 -0800704 fss = fsh_slice_get (fsh, slice_index);
Florin Coras2de9c0f2020-02-02 19:30:39 +0000705 min_size = clib_max ((fsh->pct_first_alloc * data_bytes) / 100, 4096);
706 fl_index = fs_freelist_for_size (min_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700707
Florin Coras473c8462020-11-16 18:11:51 -0800708 if (!fss_chunk_fl_index_is_valid (fss, fl_index))
Florin Coras0e6199d2020-04-17 20:15:22 +0000709 return 0;
710
Florin Corasc547e912020-12-08 17:50:45 -0800711 sf = fsh_try_alloc_fifo_hdr (fsh, fss);
712 if (!sf)
Florin Corasd01d2ce2020-11-17 18:42:38 -0800713 return 0;
Florin Coras8122cc22019-12-18 13:06:41 -0800714
Florin Coras473c8462020-11-16 18:11:51 -0800715 c = fsh_try_alloc_chunk (fsh, fss, min_size);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800716 if (!c)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700717 {
Florin Coras17672aa2020-12-29 16:55:32 -0800718 fss_fifo_free_list_push (fsh, fss, sf);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800719 return 0;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700720 }
Florin Corasf9d4ab42019-05-11 16:55:53 -0700721
Florin Corasaf588822020-12-09 12:51:13 -0800722 sf->start_chunk = fs_chunk_sptr (fsh, c);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800723 while (c->next)
Florin Corasaf588822020-12-09 12:51:13 -0800724 c = fs_chunk_ptr (fsh, c->next);
725 sf->end_chunk = fs_chunk_sptr (fsh, c);
Florin Corasc547e912020-12-08 17:50:45 -0800726 sf->size = data_bytes;
727 sf->slice_index = slice_index;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700728
Florin Corasc547e912020-12-08 17:50:45 -0800729 return sf;
Florin Coras88001c62019-04-24 14:44:46 -0700730}
731
Florin Corasf22f4e52019-12-19 16:10:58 -0800732svm_fifo_chunk_t *
733fsh_alloc_chunk (fifo_segment_header_t * fsh, u32 slice_index, u32 chunk_size)
734{
735 fifo_segment_slice_t *fss;
736 svm_fifo_chunk_t *c;
Florin Corasf22f4e52019-12-19 16:10:58 -0800737
Florin Corasf22f4e52019-12-19 16:10:58 -0800738 fss = fsh_slice_get (fsh, slice_index);
Florin Coras473c8462020-11-16 18:11:51 -0800739 c = fsh_try_alloc_chunk (fsh, fss, chunk_size);
Florin Corasf22f4e52019-12-19 16:10:58 -0800740
741 return c;
742}
743
744static void
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000745fsh_slice_collect_chunks (fifo_segment_header_t * fsh,
Florin Coras9e61d9a2020-02-05 21:13:18 +0000746 fifo_segment_slice_t * fss, svm_fifo_chunk_t * c)
Florin Corasf22f4e52019-12-19 16:10:58 -0800747{
Florin Coras473c8462020-11-16 18:11:51 -0800748 u32 n_collect = 0, fl_index;
Florin Corasf22f4e52019-12-19 16:10:58 -0800749 svm_fifo_chunk_t *next;
Florin Corasf22f4e52019-12-19 16:10:58 -0800750
Florin Coras9e61d9a2020-02-05 21:13:18 +0000751 while (c)
Florin Corasf22f4e52019-12-19 16:10:58 -0800752 {
Benoît Gannedf601ae2020-10-20 14:31:55 +0200753 CLIB_MEM_UNPOISON (c, sizeof (*c));
Florin Corasaf588822020-12-09 12:51:13 -0800754 next = fs_chunk_ptr (fsh, c->next);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000755 fl_index = fs_freelist_for_size (c->length);
Florin Corasaf588822020-12-09 12:51:13 -0800756 fss_chunk_free_list_push (fsh, fss, fl_index, c);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000757 n_collect += fs_freelist_index_to_size (fl_index);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000758 c = next;
Florin Corasf22f4e52019-12-19 16:10:58 -0800759 }
760
Florin Corasd01d2ce2020-11-17 18:42:38 -0800761 fss_fl_chunk_bytes_add (fss, n_collect);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000762 fsh_cached_bytes_add (fsh, n_collect);
Florin Corasf22f4e52019-12-19 16:10:58 -0800763}
764
765void
766fsh_collect_chunks (fifo_segment_header_t * fsh, u32 slice_index,
Florin Coras9e61d9a2020-02-05 21:13:18 +0000767 svm_fifo_chunk_t * c)
Florin Corasf22f4e52019-12-19 16:10:58 -0800768{
769 fifo_segment_slice_t *fss;
770 fss = fsh_slice_get (fsh, slice_index);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000771 fsh_slice_collect_chunks (fsh, fss, c);
Florin Corasf22f4e52019-12-19 16:10:58 -0800772}
773
Florin Corasc547e912020-12-08 17:50:45 -0800774svm_fifo_t *
775fs_fifo_alloc (fifo_segment_t *fs, u32 slice_index)
776{
777 fifo_slice_private_t *pfss = &fs->slices[slice_index];
778 svm_fifo_t *f;
779
780 f = clib_mem_bulk_alloc (pfss->fifos);
781 clib_memset (f, 0, sizeof (*f));
782 return f;
783}
784
785void
786fs_fifo_free (fifo_segment_t *fs, svm_fifo_t *f)
787{
788 u32 slice_index = f->shr->slice_index;
789 fifo_slice_private_t *pfss;
790
Florin Coras5c01dbc2021-02-18 14:43:32 -0800791 if (CLIB_DEBUG)
792 clib_memset (f, 0xfc, sizeof (*f));
793
Florin Corasc547e912020-12-08 17:50:45 -0800794 pfss = &fs->slices[slice_index];
795 clib_mem_bulk_free (pfss->fifos, f);
796}
797
798void
799fifo_segment_cleanup (fifo_segment_t *fs)
800{
801 int slice_index;
Florin Corasb4624182020-12-11 13:58:12 -0800802 svm_msg_q_t *mq = 0;
Florin Corasc547e912020-12-08 17:50:45 -0800803
804 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
805 clib_mem_bulk_destroy (fs->slices[slice_index].fifos);
Florin Corasb4624182020-12-11 13:58:12 -0800806
807 vec_foreach (fs->mqs, mq)
808 vec_free (mq->rings);
809
810 vec_free (fs->mqs);
Florin Corasc547e912020-12-08 17:50:45 -0800811}
812
Florin Coras88001c62019-04-24 14:44:46 -0700813/**
814 * Allocate fifo in fifo segment
815 */
816svm_fifo_t *
Florin Coras62ddc032019-12-08 18:30:42 -0800817fifo_segment_alloc_fifo_w_slice (fifo_segment_t * fs, u32 slice_index,
818 u32 data_bytes, fifo_segment_ftype_t ftype)
Florin Coras88001c62019-04-24 14:44:46 -0700819{
Florin Coras62ddc032019-12-08 18:30:42 -0800820 fifo_segment_header_t *fsh = fs->h;
Florin Coras1f952d32020-12-09 19:43:21 -0800821 fifo_slice_private_t *pfss;
Florin Coras62ddc032019-12-08 18:30:42 -0800822 fifo_segment_slice_t *fss;
Florin Corasc547e912020-12-08 17:50:45 -0800823 svm_fifo_shared_t *sf;
Florin Coras88001c62019-04-24 14:44:46 -0700824 svm_fifo_t *f = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700825
Florin Coras62ddc032019-12-08 18:30:42 -0800826 ASSERT (slice_index < fs->n_slices);
Florin Coras88001c62019-04-24 14:44:46 -0700827
Florin Coras4b8011e2020-12-07 19:38:23 -0800828 if (PREDICT_FALSE (data_bytes > 1 << fsh->max_log2_fifo_size))
Florin Coras0e6199d2020-04-17 20:15:22 +0000829 return 0;
830
Florin Corasc547e912020-12-08 17:50:45 -0800831 sf = fs_try_alloc_fifo (fsh, slice_index, data_bytes);
832 if (!sf)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700833 goto done;
Florin Coras88001c62019-04-24 14:44:46 -0700834
Florin Corasc547e912020-12-08 17:50:45 -0800835 f = fs_fifo_alloc (fs, slice_index);
836 f->fs_hdr = fsh;
837 f->shr = sf;
Florin Coras62ddc032019-12-08 18:30:42 -0800838
Florin Corascefd5d82019-05-05 13:19:57 -0700839 svm_fifo_init (f, data_bytes);
Florin Coras88001c62019-04-24 14:44:46 -0700840
Florin Corasc547e912020-12-08 17:50:45 -0800841 fss = fsh_slice_get (fsh, slice_index);
Florin Coras1f952d32020-12-09 19:43:21 -0800842 pfss = fs_slice_private_get (fs, slice_index);
Florin Corasc547e912020-12-08 17:50:45 -0800843
Florin Coras88001c62019-04-24 14:44:46 -0700844 /* If rx fifo type add to active fifos list. When cleaning up segment,
845 * we need a list of active sessions that should be disconnected. Since
846 * both rx and tx fifos keep pointers to the session, it's enough to track
847 * only one. */
848 if (ftype == FIFO_SEGMENT_RX_FIFO)
849 {
Florin Coras1f952d32020-12-09 19:43:21 -0800850 pfss_fifo_add_active_list (pfss, f);
Florin Coras88001c62019-04-24 14:44:46 -0700851 f->flags |= SVM_FIFO_F_LL_TRACKED;
Florin Corasf22f4e52019-12-19 16:10:58 -0800852 }
853
Florin Coras62ddc032019-12-08 18:30:42 -0800854 fsh_active_fifos_update (fsh, 1);
Florin Coras06d47752020-03-06 02:23:58 +0000855 fss->virtual_mem += svm_fifo_size (f);
Florin Coras88001c62019-04-24 14:44:46 -0700856
857done:
Florin Coras88001c62019-04-24 14:44:46 -0700858 return (f);
859}
860
Florin Corasc547e912020-12-08 17:50:45 -0800861svm_fifo_t *
Florin Coras14f066e2020-12-10 18:52:40 -0800862fifo_segment_alloc_fifo_w_offset (fifo_segment_t *fs, uword offset)
Florin Corasc547e912020-12-08 17:50:45 -0800863{
864 svm_fifo_t *f = fs_fifo_alloc (fs, 0);
Florin Coras14f066e2020-12-10 18:52:40 -0800865 svm_fifo_shared_t *sf;
866
867 sf = (svm_fifo_shared_t *) ((u8 *) fs->h + offset);
Florin Corasc547e912020-12-08 17:50:45 -0800868 f->fs_hdr = fs->h;
869 f->shr = sf;
870
871 f->ooos_list_head = OOO_SEGMENT_INVALID_INDEX;
872 f->segment_index = SVM_FIFO_INVALID_INDEX;
873 f->refcnt = 1;
874 return f;
875}
876
Florin Coras88001c62019-04-24 14:44:46 -0700877/**
878 * Free fifo allocated in fifo segment
879 */
880void
Florin Corasb095a3c2019-04-25 12:58:46 -0700881fifo_segment_free_fifo (fifo_segment_t * fs, svm_fifo_t * f)
Florin Coras88001c62019-04-24 14:44:46 -0700882{
Florin Coras62ddc032019-12-08 18:30:42 -0800883 fifo_segment_header_t *fsh = fs->h;
Florin Coras1f952d32020-12-09 19:43:21 -0800884 fifo_slice_private_t *pfss;
Florin Coras62ddc032019-12-08 18:30:42 -0800885 fifo_segment_slice_t *fss;
Florin Corasc547e912020-12-08 17:50:45 -0800886 svm_fifo_shared_t *sf;
Florin Coras88001c62019-04-24 14:44:46 -0700887
888 ASSERT (f->refcnt > 0);
889
890 if (--f->refcnt > 0)
891 return;
892
Florin Corasc547e912020-12-08 17:50:45 -0800893 /*
894 * Cleanup shared state
895 */
896
897 sf = f->shr;
898 fss = fsh_slice_get (fsh, sf->slice_index);
Florin Coras1f952d32020-12-09 19:43:21 -0800899 pfss = fs_slice_private_get (fs, sf->slice_index);
Florin Corasc547e912020-12-08 17:50:45 -0800900
901 /* Free fifo chunks */
Florin Corasaf588822020-12-09 12:51:13 -0800902 fsh_slice_collect_chunks (fsh, fss, fs_chunk_ptr (fsh, f->shr->start_chunk));
Florin Corasc547e912020-12-08 17:50:45 -0800903
904 sf->start_chunk = sf->end_chunk = 0;
905 sf->head_chunk = sf->tail_chunk = 0;
906
907 /* Add to free list */
Florin Coras17672aa2020-12-29 16:55:32 -0800908 fss_fifo_free_list_push (fsh, fss, sf);
Florin Corasc547e912020-12-08 17:50:45 -0800909
910 fss->virtual_mem -= svm_fifo_size (f);
911
912 /*
913 * Cleanup private state
914 */
Florin Coras88001c62019-04-24 14:44:46 -0700915
916 /* Remove from active list. Only rx fifos are tracked */
917 if (f->flags & SVM_FIFO_F_LL_TRACKED)
918 {
Florin Coras1f952d32020-12-09 19:43:21 -0800919 pfss_fifo_del_active_list (pfss, f);
Florin Coras88001c62019-04-24 14:44:46 -0700920 f->flags &= ~SVM_FIFO_F_LL_TRACKED;
921 }
922
Florin Corasf22f4e52019-12-19 16:10:58 -0800923 svm_fifo_free_chunk_lookup (f);
Florin Corasb095a3c2019-04-25 12:58:46 -0700924 svm_fifo_free_ooo_data (f);
925
Florin Coras88001c62019-04-24 14:44:46 -0700926 if (CLIB_DEBUG)
927 {
Florin Corasc547e912020-12-08 17:50:45 -0800928 sf->master_session_index = ~0;
Florin Coras88001c62019-04-24 14:44:46 -0700929 f->master_thread_index = ~0;
930 }
931
Florin Corasc547e912020-12-08 17:50:45 -0800932 f->ooo_enq = f->ooo_deq = 0;
Florin Coras06d47752020-03-06 02:23:58 +0000933 f->prev = 0;
Florin Corasc547e912020-12-08 17:50:45 -0800934
935 fs_fifo_free (fs, f);
Florin Coras06d47752020-03-06 02:23:58 +0000936
Florin Coras62ddc032019-12-08 18:30:42 -0800937 fsh_active_fifos_update (fsh, -1);
Florin Coras88001c62019-04-24 14:44:46 -0700938}
939
Florin Coras6d7552c2020-04-09 01:49:45 +0000940void
Florin Coras0bc78d82021-01-09 14:34:01 -0800941fifo_segment_detach_fifo (fifo_segment_t *fs, svm_fifo_t **f)
Florin Coras6d7552c2020-04-09 01:49:45 +0000942{
Florin Coras1f952d32020-12-09 19:43:21 -0800943 fifo_slice_private_t *pfss;
Florin Coras6d7552c2020-04-09 01:49:45 +0000944 fifo_segment_slice_t *fss;
Florin Coras0bc78d82021-01-09 14:34:01 -0800945 svm_fifo_t *of = *f;
Florin Coras255554f2021-02-18 21:35:23 -0800946 u32 slice_index;
Florin Coras6d7552c2020-04-09 01:49:45 +0000947
Florin Coras0bc78d82021-01-09 14:34:01 -0800948 slice_index = of->master_thread_index;
949 fss = fsh_slice_get (fs->h, slice_index);
950 pfss = fs_slice_private_get (fs, slice_index);
951 fss->virtual_mem -= svm_fifo_size (of);
952 if (of->flags & SVM_FIFO_F_LL_TRACKED)
953 pfss_fifo_del_active_list (pfss, of);
Florin Coras6d7552c2020-04-09 01:49:45 +0000954
Florin Coras255554f2021-02-18 21:35:23 -0800955 /* Collect chunks that were provided in return for those detached */
956 fsh_slice_collect_chunks (fs->h, fss, of->chunks_at_attach);
957 of->chunks_at_attach = 0;
Florin Coras0bc78d82021-01-09 14:34:01 -0800958
Florin Coras44fadb02021-02-20 17:36:19 -0800959 fss_fifo_free_list_push (fs->h, fss, of->shr);
Florin Coras0bc78d82021-01-09 14:34:01 -0800960 clib_mem_bulk_free (pfss->fifos, *f);
961 *f = 0;
Florin Coras6d7552c2020-04-09 01:49:45 +0000962}
963
964void
Florin Coras0bc78d82021-01-09 14:34:01 -0800965fifo_segment_attach_fifo (fifo_segment_t *fs, svm_fifo_t **f, u32 slice_index)
Florin Coras6d7552c2020-04-09 01:49:45 +0000966{
Florin Coras255554f2021-02-18 21:35:23 -0800967 svm_fifo_chunk_t *c, *nc, *pc = 0;
Florin Coras1f952d32020-12-09 19:43:21 -0800968 fifo_slice_private_t *pfss;
Florin Coras6d7552c2020-04-09 01:49:45 +0000969 fifo_segment_slice_t *fss;
Florin Coras0bc78d82021-01-09 14:34:01 -0800970 svm_fifo_t *nf, *of;
Florin Coras6d7552c2020-04-09 01:49:45 +0000971
Florin Coras0bc78d82021-01-09 14:34:01 -0800972 nf = fs_fifo_alloc (fs, slice_index);
973 clib_memcpy_fast (nf, *f, sizeof (*nf));
Florin Coras6d7552c2020-04-09 01:49:45 +0000974
Florin Coras0bc78d82021-01-09 14:34:01 -0800975 fss = fsh_slice_get (fs->h, slice_index);
976 pfss = fs_slice_private_get (fs, slice_index);
977 fss->virtual_mem += svm_fifo_size (nf);
Florin Coras5c01dbc2021-02-18 14:43:32 -0800978 nf->next = nf->prev = 0;
Florin Coras0bc78d82021-01-09 14:34:01 -0800979 if (nf->flags & SVM_FIFO_F_LL_TRACKED)
980 pfss_fifo_add_active_list (pfss, nf);
981
Florin Coras255554f2021-02-18 21:35:23 -0800982 /* Update allocated chunks for fifo segment and build list of
983 * chunks to be freed, i.e, returned to old slice at detach */
Florin Coras0bc78d82021-01-09 14:34:01 -0800984 of = *f;
Florin Coras44fadb02021-02-20 17:36:19 -0800985 of->shr = fsh_try_alloc_fifo_hdr (fs->h, fss);
Florin Coras0bc78d82021-01-09 14:34:01 -0800986
987 c = fs_chunk_ptr (fs->h, nf->shr->start_chunk);
Florin Coras255554f2021-02-18 21:35:23 -0800988 of->chunks_at_attach = pc = fsh_try_alloc_chunk (fs->h, fss, c->length);
989 c = fs_chunk_ptr (fs->h, c->next);
990
Florin Coras6d7552c2020-04-09 01:49:45 +0000991 while (c)
992 {
Florin Coras255554f2021-02-18 21:35:23 -0800993 nc = fsh_try_alloc_chunk (fs->h, fss, c->length);
994 pc->next = fs_chunk_sptr (fs->h, nc);
995 pc = nc;
Florin Corasaf588822020-12-09 12:51:13 -0800996 c = fs_chunk_ptr (fs->h, c->next);
Florin Coras6d7552c2020-04-09 01:49:45 +0000997 }
Florin Coras0bc78d82021-01-09 14:34:01 -0800998
999 nf->shr->slice_index = slice_index;
1000 *f = nf;
Florin Coras6d7552c2020-04-09 01:49:45 +00001001}
1002
Florin Coras14f066e2020-12-10 18:52:40 -08001003uword
1004fifo_segment_fifo_offset (svm_fifo_t *f)
1005{
1006 return (u8 *) f->shr - (u8 *) f->fs_hdr;
1007}
1008
Florin Corasb4624182020-12-11 13:58:12 -08001009svm_msg_q_t *
1010fifo_segment_msg_q_alloc (fifo_segment_t *fs, u32 mq_index,
1011 svm_msg_q_cfg_t *cfg)
1012{
1013 fifo_segment_header_t *fsh = fs->h;
1014 svm_msg_q_shared_t *smq;
1015 svm_msg_q_t *mq;
1016 void *base;
1017 u32 size;
1018
1019 if (!fs->mqs)
1020 {
1021 u32 n_mqs = clib_max (fs->h->n_mqs, 1);
1022 vec_validate (fs->mqs, n_mqs - 1);
1023 }
1024
1025 size = svm_msg_q_size_to_alloc (cfg);
1026 base = fsh_alloc_aligned (fsh, size, 8);
1027 fsh->n_reserved_bytes += size;
1028
1029 smq = svm_msg_q_init (base, cfg);
1030 mq = vec_elt_at_index (fs->mqs, mq_index);
1031 svm_msg_q_attach (mq, smq);
1032
1033 return mq;
1034}
1035
1036svm_msg_q_t *
1037fifo_segment_msg_q_attach (fifo_segment_t *fs, uword offset, u32 mq_index)
1038{
1039 svm_msg_q_t *mq;
1040
1041 if (!fs->mqs)
1042 {
1043 u32 n_mqs = clib_max (fs->h->n_mqs, 1);
1044 vec_validate (fs->mqs, n_mqs - 1);
1045 }
1046
1047 mq = vec_elt_at_index (fs->mqs, mq_index);
1048
Florin Coras86f12322021-01-22 15:05:14 -08001049 if (!mq->q.shr)
Florin Corasb4624182020-12-11 13:58:12 -08001050 {
1051 svm_msg_q_shared_t *smq;
1052 smq = (svm_msg_q_shared_t *) ((u8 *) fs->h + offset);
1053 svm_msg_q_attach (mq, smq);
1054 }
1055
1056 ASSERT (fifo_segment_msg_q_offset (fs, mq_index) == offset);
1057
1058 return mq;
1059}
1060
Florin Coras80b74252021-01-27 18:08:25 -08001061void
1062fifo_segment_msg_qs_discover (fifo_segment_t *fs, int *fds, u32 n_fds)
1063{
1064 svm_msg_q_shared_t *smq;
1065 u32 n_mqs, size, i;
1066 uword offset = 0, n_alloced;
1067 svm_msg_q_t *mq;
1068
1069 n_mqs = fs->h->n_mqs;
1070 if (n_fds && n_mqs != n_fds)
1071 {
1072 clib_warning ("expected %u fds got %u", n_mqs, n_fds);
1073 return;
1074 }
1075
1076 vec_validate (fs->mqs, n_mqs - 1);
1077 n_alloced = fs->h->n_reserved_bytes - fs->h->start_byte_index;
1078 ASSERT (n_alloced % n_mqs == 0);
1079 size = n_alloced / n_mqs;
1080
1081 offset = fs->h->start_byte_index;
1082 for (i = 0; i < n_mqs; i++)
1083 {
1084 mq = vec_elt_at_index (fs->mqs, i);
1085 smq = (svm_msg_q_shared_t *) ((u8 *) fs->h + offset);
1086 svm_msg_q_attach (mq, smq);
1087 if (n_fds)
1088 svm_msg_q_set_eventfd (mq, fds[i]);
1089 offset += size;
1090 }
1091}
1092
Florin Corasb4624182020-12-11 13:58:12 -08001093uword
1094fifo_segment_msg_q_offset (fifo_segment_t *fs, u32 mq_index)
1095{
1096 svm_msg_q_t *mq = vec_elt_at_index (fs->mqs, mq_index);
1097
Florin Coras86f12322021-01-22 15:05:14 -08001098 if (mq->q.shr == 0)
Florin Corasb4624182020-12-11 13:58:12 -08001099 return ~0ULL;
1100
Florin Coras86f12322021-01-22 15:05:14 -08001101 return (uword) ((u8 *) mq->q.shr - (u8 *) fs->h) -
1102 sizeof (svm_msg_q_shared_t);
Florin Corasb4624182020-12-11 13:58:12 -08001103}
1104
Florin Corasf9d4ab42019-05-11 16:55:53 -07001105int
Florin Coras62ddc032019-12-08 18:30:42 -08001106fifo_segment_prealloc_fifo_hdrs (fifo_segment_t * fs, u32 slice_index,
1107 u32 batch_size)
Florin Corasf9d4ab42019-05-11 16:55:53 -07001108{
1109 fifo_segment_header_t *fsh = fs->h;
Florin Coras62ddc032019-12-08 18:30:42 -08001110 fifo_segment_slice_t *fss;
Florin Corasf9d4ab42019-05-11 16:55:53 -07001111
Florin Coras62ddc032019-12-08 18:30:42 -08001112 fss = fsh_slice_get (fsh, slice_index);
Florin Corasfe1ab7e2020-11-26 11:34:38 -08001113 return fsh_try_alloc_fifo_hdr_batch (fsh, fss, batch_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -07001114}
1115
1116int
Florin Coras62ddc032019-12-08 18:30:42 -08001117fifo_segment_prealloc_fifo_chunks (fifo_segment_t * fs, u32 slice_index,
1118 u32 chunk_size, u32 batch_size)
Florin Corasf9d4ab42019-05-11 16:55:53 -07001119{
Florin Coras62ddc032019-12-08 18:30:42 -08001120 fifo_segment_header_t *fsh = fs->h;
1121 fifo_segment_slice_t *fss;
Florin Coras473c8462020-11-16 18:11:51 -08001122 u32 fl_index;
Florin Corasf9d4ab42019-05-11 16:55:53 -07001123
Florin Coras62ddc032019-12-08 18:30:42 -08001124 if (!fs_chunk_size_is_valid (fsh, chunk_size))
Florin Corasf9d4ab42019-05-11 16:55:53 -07001125 {
1126 clib_warning ("chunk size out of range %d", chunk_size);
1127 return -1;
1128 }
1129
1130 fl_index = fs_freelist_for_size (chunk_size);
Florin Coras62ddc032019-12-08 18:30:42 -08001131 fss = fsh_slice_get (fsh, slice_index);
1132
Florin Coras473c8462020-11-16 18:11:51 -08001133 return fsh_try_alloc_chunk_batch (fsh, fss, fl_index, batch_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -07001134}
1135
Florin Coras88001c62019-04-24 14:44:46 -07001136/**
1137 * Pre-allocates fifo pairs in fifo segment
1138 */
1139void
1140fifo_segment_preallocate_fifo_pairs (fifo_segment_t * fs,
1141 u32 rx_fifo_size, u32 tx_fifo_size,
1142 u32 * n_fifo_pairs)
1143{
Florin Corasf9d4ab42019-05-11 16:55:53 -07001144 u32 rx_rounded_data_size, tx_rounded_data_size, pair_size, pairs_to_alloc;
Florin Coras8d0149d2020-01-02 19:22:51 +00001145 u32 hdrs, pairs_per_slice, alloc_now;
Florin Coras62ddc032019-12-08 18:30:42 -08001146 fifo_segment_header_t *fsh = fs->h;
1147 int rx_fl_index, tx_fl_index, i;
1148 fifo_segment_slice_t *fss;
Florin Coras88001c62019-04-24 14:44:46 -07001149 uword space_available;
Florin Coras88001c62019-04-24 14:44:46 -07001150
1151 /* Parameter check */
1152 if (rx_fifo_size == 0 || tx_fifo_size == 0 || *n_fifo_pairs == 0)
1153 return;
1154
Florin Coras62ddc032019-12-08 18:30:42 -08001155 if (!fs_chunk_size_is_valid (fsh, rx_fifo_size))
Florin Coras88001c62019-04-24 14:44:46 -07001156 {
1157 clib_warning ("rx fifo_size out of range %d", rx_fifo_size);
1158 return;
1159 }
1160
Florin Coras62ddc032019-12-08 18:30:42 -08001161 if (!fs_chunk_size_is_valid (fsh, tx_fifo_size))
Florin Coras88001c62019-04-24 14:44:46 -07001162 {
1163 clib_warning ("tx fifo_size out of range %d", tx_fifo_size);
1164 return;
1165 }
1166
1167 rx_rounded_data_size = (1 << (max_log2 (rx_fifo_size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -07001168 rx_fl_index = fs_freelist_for_size (rx_fifo_size);
Florin Coras88001c62019-04-24 14:44:46 -07001169 tx_rounded_data_size = (1 << (max_log2 (tx_fifo_size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -07001170 tx_fl_index = fs_freelist_for_size (tx_fifo_size);
Florin Coras88001c62019-04-24 14:44:46 -07001171
Florin Corasf9d4ab42019-05-11 16:55:53 -07001172 hdrs = sizeof (svm_fifo_t) + sizeof (svm_fifo_chunk_t);
Florin Corascefd5d82019-05-05 13:19:57 -07001173
Florin Coras88001c62019-04-24 14:44:46 -07001174 /* Calculate space requirements */
Florin Corascefd5d82019-05-05 13:19:57 -07001175 pair_size = 2 * hdrs + rx_rounded_data_size + tx_rounded_data_size;
Florin Coras213b1bb2020-12-07 14:33:58 -08001176 space_available = fsh_n_free_bytes (fsh);
Florin Coraseaacce42019-07-02 13:07:37 -07001177 pairs_to_alloc = space_available / pair_size;
1178 pairs_to_alloc = clib_min (pairs_to_alloc, *n_fifo_pairs);
Florin Coras62ddc032019-12-08 18:30:42 -08001179 pairs_per_slice = pairs_to_alloc / fs->n_slices;
Florin Coras8d0149d2020-01-02 19:22:51 +00001180 pairs_per_slice += pairs_to_alloc % fs->n_slices ? 1 : 0;
Florin Coraseaacce42019-07-02 13:07:37 -07001181
Florin Coras62ddc032019-12-08 18:30:42 -08001182 if (!pairs_per_slice)
Florin Coraseaacce42019-07-02 13:07:37 -07001183 return;
Florin Coras88001c62019-04-24 14:44:46 -07001184
Florin Coras62ddc032019-12-08 18:30:42 -08001185 for (i = 0; i < fs->n_slices; i++)
1186 {
Florin Coras8d0149d2020-01-02 19:22:51 +00001187 alloc_now = clib_min (pairs_per_slice, *n_fifo_pairs);
Benoît Gannef23b1512020-11-25 15:06:01 +01001188 if (0 == alloc_now)
1189 break;
1190
1191 fss = fsh_slice_get (fsh, i);
Florin Coras8d0149d2020-01-02 19:22:51 +00001192 if (fs_try_alloc_fifo_batch (fsh, fss, rx_fl_index, alloc_now))
1193 clib_warning ("rx prealloc failed: pairs %u", alloc_now);
1194 if (fs_try_alloc_fifo_batch (fsh, fss, tx_fl_index, alloc_now))
1195 clib_warning ("tx prealloc failed: pairs %u", alloc_now);
Florin Coras88001c62019-04-24 14:44:46 -07001196
Florin Coras8d0149d2020-01-02 19:22:51 +00001197 /* Account for the pairs allocated */
1198 *n_fifo_pairs -= alloc_now;
1199 }
Florin Coras88001c62019-04-24 14:44:46 -07001200}
1201
1202/**
1203 * Get number of active fifos
1204 */
1205u32
1206fifo_segment_num_fifos (fifo_segment_t * fs)
1207{
Florin Coras7a90e502020-04-09 04:46:14 +00001208 return fsh_n_active_fifos (fs->h);
Florin Coras88001c62019-04-24 14:44:46 -07001209}
1210
Florin Coras62ddc032019-12-08 18:30:42 -08001211static u32
Florin Coras17672aa2020-12-29 16:55:32 -08001212fs_slice_num_free_fifos (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss)
Florin Coras88001c62019-04-24 14:44:46 -07001213{
Florin Corasc547e912020-12-08 17:50:45 -08001214 svm_fifo_shared_t *f;
Florin Corascefd5d82019-05-05 13:19:57 -07001215 u32 count = 0;
Florin Coras88001c62019-04-24 14:44:46 -07001216
Florin Coras17672aa2020-12-29 16:55:32 -08001217 f = fs_ptr (fsh, fss->free_fifos);
Florin Coras88001c62019-04-24 14:44:46 -07001218 if (f == 0)
1219 return 0;
1220
1221 while (f)
1222 {
Florin Coras17672aa2020-12-29 16:55:32 -08001223 f = fs_ptr (fsh, f->next);
Florin Coras88001c62019-04-24 14:44:46 -07001224 count++;
1225 }
1226 return count;
1227}
1228
Florin Corasb095a3c2019-04-25 12:58:46 -07001229u32
Florin Coras62ddc032019-12-08 18:30:42 -08001230fifo_segment_num_free_fifos (fifo_segment_t * fs)
1231{
1232 fifo_segment_header_t *fsh = fs->h;
1233 fifo_segment_slice_t *fss;
1234 int slice_index;
1235 u32 count = 0;
1236
1237 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1238 {
1239 fss = fsh_slice_get (fsh, slice_index);
Florin Coras17672aa2020-12-29 16:55:32 -08001240 count += fs_slice_num_free_fifos (fsh, fss);
Florin Coras62ddc032019-12-08 18:30:42 -08001241 }
1242 return count;
1243}
1244
1245static u32
Florin Corasaf588822020-12-09 12:51:13 -08001246fs_slice_num_free_chunks (fifo_segment_header_t *fsh,
1247 fifo_segment_slice_t *fss, u32 size)
Florin Corasb095a3c2019-04-25 12:58:46 -07001248{
1249 u32 count = 0, rounded_size, fl_index;
Florin Corasb095a3c2019-04-25 12:58:46 -07001250 svm_fifo_chunk_t *c;
1251 int i;
1252
Florin Corasb095a3c2019-04-25 12:58:46 -07001253 /* Count all free chunks? */
1254 if (size == ~0)
1255 {
Florin Coras4b8011e2020-12-07 19:38:23 -08001256 for (i = 0; i < FS_CHUNK_VEC_LEN; i++)
Florin Corasb095a3c2019-04-25 12:58:46 -07001257 {
Florin Corasaf588822020-12-09 12:51:13 -08001258 c = fs_chunk_ptr (fsh, fss->free_chunks[i]);
Florin Corasb095a3c2019-04-25 12:58:46 -07001259 if (c == 0)
1260 continue;
1261
1262 while (c)
1263 {
Florin Corasaf588822020-12-09 12:51:13 -08001264 c = fs_chunk_ptr (fsh, c->next);
Florin Corasb095a3c2019-04-25 12:58:46 -07001265 count++;
1266 }
1267 }
1268 return count;
1269 }
1270
1271 rounded_size = (1 << (max_log2 (size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -07001272 fl_index = fs_freelist_for_size (rounded_size);
Florin Corasb095a3c2019-04-25 12:58:46 -07001273
Florin Coras4b8011e2020-12-07 19:38:23 -08001274 if (fl_index >= FS_CHUNK_VEC_LEN)
Florin Corasb095a3c2019-04-25 12:58:46 -07001275 return 0;
1276
Florin Corasaf588822020-12-09 12:51:13 -08001277 c = fs_chunk_ptr (fsh, fss->free_chunks[fl_index]);
Florin Corasb095a3c2019-04-25 12:58:46 -07001278 if (c == 0)
1279 return 0;
1280
1281 while (c)
1282 {
Florin Corasaf588822020-12-09 12:51:13 -08001283 c = fs_chunk_ptr (fsh, c->next);
Florin Corasb095a3c2019-04-25 12:58:46 -07001284 count++;
1285 }
1286 return count;
1287}
1288
Florin Coras62ddc032019-12-08 18:30:42 -08001289u32
1290fifo_segment_num_free_chunks (fifo_segment_t * fs, u32 size)
1291{
1292 fifo_segment_header_t *fsh = fs->h;
1293 fifo_segment_slice_t *fss;
1294 int slice_index;
1295 u32 count = 0;
1296
1297 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1298 {
1299 fss = fsh_slice_get (fsh, slice_index);
Florin Corasaf588822020-12-09 12:51:13 -08001300 count += fs_slice_num_free_chunks (fsh, fss, size);
Florin Coras62ddc032019-12-08 18:30:42 -08001301 }
1302 return count;
1303}
1304
Florin Corasef4f3e72019-12-11 14:27:53 -08001305uword
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001306fifo_segment_size (fifo_segment_t * fs)
1307{
Florin Coras213b1bb2020-12-07 14:33:58 -08001308 return fs->h->max_byte_index - fs->h->n_reserved_bytes;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001309}
1310
1311u8
1312fsh_has_reached_mem_limit (fifo_segment_header_t * fsh)
1313{
1314 return (fsh->flags & FIFO_SEGMENT_F_MEM_LIMIT) ? 1 : 0;
1315}
1316
1317void
1318fsh_reset_mem_limit (fifo_segment_header_t * fsh)
1319{
1320 fsh->flags &= ~FIFO_SEGMENT_F_MEM_LIMIT;
1321}
1322
Florin Coras213b1bb2020-12-07 14:33:58 -08001323void *
1324fifo_segment_alloc (fifo_segment_t *fs, uword size)
1325{
1326 void *rv = fsh_alloc (fs->h, size);
1327 /* Mark externally allocated bytes as reserved. This helps
1328 * @ref fifo_segment_size report bytes used only for fifos */
1329 fs->h->n_reserved_bytes += size;
1330 return rv;
1331}
1332
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001333uword
Florin Corasf9d4ab42019-05-11 16:55:53 -07001334fifo_segment_free_bytes (fifo_segment_t * fs)
1335{
Florin Coras62ddc032019-12-08 18:30:42 -08001336 return fsh_n_free_bytes (fs->h);
Florin Corasf9d4ab42019-05-11 16:55:53 -07001337}
1338
Florin Coras62ddc032019-12-08 18:30:42 -08001339uword
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001340fifo_segment_cached_bytes (fifo_segment_t * fs)
1341{
1342 return fsh_n_cached_bytes (fs->h);
1343}
1344
1345uword
Florin Coras75ccf7b2020-03-05 19:44:02 +00001346fifo_segment_available_bytes (fifo_segment_t * fs)
1347{
1348 return fsh_n_free_bytes (fs->h) + fsh_n_cached_bytes (fs->h);
1349}
1350
1351uword
Florin Coras1c91c772019-06-25 18:14:13 -07001352fifo_segment_fl_chunk_bytes (fifo_segment_t * fs)
Florin Corasf9d4ab42019-05-11 16:55:53 -07001353{
Florin Coras62ddc032019-12-08 18:30:42 -08001354 fifo_segment_header_t *fsh = fs->h;
1355 fifo_segment_slice_t *fss;
1356 uword n_bytes = 0;
1357 int slice_index;
1358
1359 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1360 {
1361 fss = fsh_slice_get (fsh, slice_index);
Florin Corasd01d2ce2020-11-17 18:42:38 -08001362 n_bytes += fss_fl_chunk_bytes (fss);
Florin Coras62ddc032019-12-08 18:30:42 -08001363 }
1364
1365 return n_bytes;
Florin Corasf9d4ab42019-05-11 16:55:53 -07001366}
1367
Florin Coras88001c62019-04-24 14:44:46 -07001368u8
1369fifo_segment_has_fifos (fifo_segment_t * fs)
1370{
Florin Coras7a90e502020-04-09 04:46:14 +00001371 return (fsh_n_active_fifos (fs->h) != 0);
Florin Coras88001c62019-04-24 14:44:46 -07001372}
1373
1374svm_fifo_t *
Florin Coras62ddc032019-12-08 18:30:42 -08001375fifo_segment_get_slice_fifo_list (fifo_segment_t * fs, u32 slice_index)
Florin Coras88001c62019-04-24 14:44:46 -07001376{
Florin Coras1f952d32020-12-09 19:43:21 -08001377 fifo_slice_private_t *pfss;
Florin Coras62ddc032019-12-08 18:30:42 -08001378
Florin Coras1f952d32020-12-09 19:43:21 -08001379 pfss = fs_slice_private_get (fs, slice_index);
1380 return pfss->active_fifos;
Florin Coras88001c62019-04-24 14:44:46 -07001381}
1382
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001383u8
1384fifo_segment_get_mem_usage (fifo_segment_t * fs)
1385{
1386 uword size, in_use;
1387
1388 size = fifo_segment_size (fs);
1389 in_use =
1390 size - fifo_segment_free_bytes (fs) - fifo_segment_cached_bytes (fs);
1391 return (in_use * 100) / size;
1392}
1393
1394fifo_segment_mem_status_t
1395fifo_segment_determine_status (fifo_segment_header_t * fsh, u8 usage)
1396{
1397 if (!fsh->high_watermark || !fsh->low_watermark)
1398 return MEMORY_PRESSURE_NO_PRESSURE;
1399
1400 /* once the no-memory is detected, the status continues
1401 * until memory usage gets below the high watermark
1402 */
1403 if (fsh_has_reached_mem_limit (fsh))
1404 {
1405 if (usage >= fsh->high_watermark)
1406 return MEMORY_PRESSURE_NO_MEMORY;
1407 else
1408 fsh_reset_mem_limit (fsh);
1409 }
1410
1411 if (usage >= fsh->high_watermark)
1412 return MEMORY_PRESSURE_HIGH_PRESSURE;
1413
1414 else if (usage >= fsh->low_watermark)
1415 return MEMORY_PRESSURE_LOW_PRESSURE;
1416
1417 return MEMORY_PRESSURE_NO_PRESSURE;
1418}
1419
1420fifo_segment_mem_status_t
1421fifo_segment_get_mem_status (fifo_segment_t * fs)
1422{
1423 fifo_segment_header_t *fsh = fs->h;
1424 u8 usage = fifo_segment_get_mem_usage (fs);
1425
1426 return fifo_segment_determine_status (fsh, usage);
1427}
1428
Florin Coras88001c62019-04-24 14:44:46 -07001429u8 *
1430format_fifo_segment_type (u8 * s, va_list * args)
1431{
1432 fifo_segment_t *sp;
1433 sp = va_arg (*args, fifo_segment_t *);
1434 ssvm_segment_type_t st = ssvm_type (&sp->ssvm);
1435
1436 if (st == SSVM_SEGMENT_PRIVATE)
Florin Coras2a7c0b62020-09-28 23:40:28 -07001437 s = format (s, "%s", "private");
Florin Coras88001c62019-04-24 14:44:46 -07001438 else if (st == SSVM_SEGMENT_MEMFD)
1439 s = format (s, "%s", "memfd");
1440 else if (st == SSVM_SEGMENT_SHM)
1441 s = format (s, "%s", "shm");
1442 else
1443 s = format (s, "%s", "unknown");
1444 return s;
1445}
1446
1447/**
1448 * Segment format function
1449 */
1450u8 *
1451format_fifo_segment (u8 * s, va_list * args)
1452{
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001453 u32 count, indent, active_fifos, free_fifos;
Florin Coras5368bb02019-06-09 09:24:33 -07001454 fifo_segment_t *fs = va_arg (*args, fifo_segment_t *);
Florin Coras88001c62019-04-24 14:44:46 -07001455 int verbose __attribute__ ((unused)) = va_arg (*args, int);
Florin Corasef4f3e72019-12-11 14:27:53 -08001456 uword est_chunk_bytes, est_free_seg_bytes, free_chunks;
1457 uword chunk_bytes = 0, free_seg_bytes, chunk_size;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001458 uword tracked_cached_bytes;
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001459 uword fifo_hdr = 0, reserved;
Florin Coras5368bb02019-06-09 09:24:33 -07001460 fifo_segment_header_t *fsh;
Florin Coras62ddc032019-12-08 18:30:42 -08001461 fifo_segment_slice_t *fss;
Florin Corascefd5d82019-05-05 13:19:57 -07001462 svm_fifo_chunk_t *c;
Florin Coras62ddc032019-12-08 18:30:42 -08001463 u32 slice_index;
Florin Coras5368bb02019-06-09 09:24:33 -07001464 char *address;
1465 size_t size;
Florin Coras88001c62019-04-24 14:44:46 -07001466 int i;
Florin Coras06d47752020-03-06 02:23:58 +00001467 uword allocated, in_use, virt;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001468 f64 usage;
1469 fifo_segment_mem_status_t mem_st;
Florin Coras88001c62019-04-24 14:44:46 -07001470
1471 indent = format_get_indent (s) + 2;
Florin Coras88001c62019-04-24 14:44:46 -07001472
Florin Coras5368bb02019-06-09 09:24:33 -07001473 if (fs == 0)
1474 {
Florin Coras2a7c0b62020-09-28 23:40:28 -07001475 s = format (s, "%-20s%10s%15s%15s%15s%15s", "Name", "Type",
Florin Coras5368bb02019-06-09 09:24:33 -07001476 "HeapSize (M)", "ActiveFifos", "FreeFifos", "Address");
1477 return s;
1478 }
1479
Florin Coras5368bb02019-06-09 09:24:33 -07001480 fifo_segment_info (fs, &address, &size);
1481 active_fifos = fifo_segment_num_fifos (fs);
1482 free_fifos = fifo_segment_num_free_fifos (fs);
1483
Florin Coras2a7c0b62020-09-28 23:40:28 -07001484 s = format (s, "%-20v%10U%15llu%15u%15u%15llx", ssvm_name (&fs->ssvm),
Florin Coras5368bb02019-06-09 09:24:33 -07001485 format_fifo_segment_type, fs, size >> 20ULL, active_fifos,
1486 free_fifos, address);
1487
1488 if (!verbose)
1489 return s;
1490
Florin Coras62ddc032019-12-08 18:30:42 -08001491 fsh = fs->h;
1492
1493 free_chunks = fifo_segment_num_free_chunks (fs, ~0);
1494 if (free_chunks)
Ryujiro Shibuyad3588722020-03-13 12:45:06 +00001495 s =
1496 format (s, "\n\n%UFree/Allocated chunks by size:\n", format_white_space,
1497 indent + 2);
Florin Corasf8461bf2019-11-07 17:00:15 -08001498 else
1499 s = format (s, "\n");
1500
Florin Coras62ddc032019-12-08 18:30:42 -08001501 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
Florin Coras88001c62019-04-24 14:44:46 -07001502 {
Florin Coras62ddc032019-12-08 18:30:42 -08001503 fss = fsh_slice_get (fsh, slice_index);
Florin Coras4b8011e2020-12-07 19:38:23 -08001504 for (i = 0; i < FS_CHUNK_VEC_LEN; i++)
Florin Coras88001c62019-04-24 14:44:46 -07001505 {
Florin Corasaf588822020-12-09 12:51:13 -08001506 c = fs_chunk_ptr (fsh, fss->free_chunks[i]);
Ryujiro Shibuyad3588722020-03-13 12:45:06 +00001507 if (c == 0 && fss->num_chunks[i] == 0)
Florin Coras62ddc032019-12-08 18:30:42 -08001508 continue;
1509 count = 0;
1510 while (c)
1511 {
Florin Corasaf588822020-12-09 12:51:13 -08001512 c = fs_chunk_ptr (fsh, c->next);
Florin Coras62ddc032019-12-08 18:30:42 -08001513 count++;
1514 }
1515
1516 chunk_size = fs_freelist_index_to_size (i);
Ryujiro Shibuyad3588722020-03-13 12:45:06 +00001517 s = format (s, "%U%-5u kB: %u/%u\n", format_white_space, indent + 2,
1518 chunk_size >> 10, count, fss->num_chunks[i]);
Florin Coras62ddc032019-12-08 18:30:42 -08001519
1520 chunk_bytes += count * chunk_size;
Florin Coras88001c62019-04-24 14:44:46 -07001521 }
Florin Coras88001c62019-04-24 14:44:46 -07001522 }
Florin Corasf8461bf2019-11-07 17:00:15 -08001523
1524 fifo_hdr = free_fifos * sizeof (svm_fifo_t);
1525 est_chunk_bytes = fifo_segment_fl_chunk_bytes (fs);
Florin Coras62ddc032019-12-08 18:30:42 -08001526 est_free_seg_bytes = fifo_segment_free_bytes (fs);
Florin Coras62ddc032019-12-08 18:30:42 -08001527 free_seg_bytes = fifo_segment_free_bytes (fs);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001528 tracked_cached_bytes = fifo_segment_cached_bytes (fs);
1529 allocated = fifo_segment_size (fs);
1530 in_use = fifo_segment_size (fs) - est_free_seg_bytes - tracked_cached_bytes;
1531 usage = (100.0 * in_use) / allocated;
1532 mem_st = fifo_segment_get_mem_status (fs);
Florin Coras06d47752020-03-06 02:23:58 +00001533 virt = fsh_virtual_mem (fsh);
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001534 reserved = fsh->n_reserved_bytes;
Florin Corasf8461bf2019-11-07 17:00:15 -08001535
Florin Coras06d47752020-03-06 02:23:58 +00001536 s = format (s, "\n%Useg free bytes: %U (%lu) estimated: %U (%lu) reserved:"
1537 " %U (%lu)\n", format_white_space, indent + 2,
1538 format_memory_size, free_seg_bytes, free_seg_bytes,
1539 format_memory_size, est_free_seg_bytes, est_free_seg_bytes,
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001540 format_memory_size, reserved, reserved);
Florin Coras06d47752020-03-06 02:23:58 +00001541 s = format (s, "%Uchunk free bytes: %U (%lu) estimated: %U (%lu) tracked:"
1542 " %U (%lu)\n", format_white_space, indent + 2,
1543 format_memory_size, chunk_bytes, chunk_bytes,
1544 format_memory_size, est_chunk_bytes, est_chunk_bytes,
1545 format_memory_size, tracked_cached_bytes, tracked_cached_bytes);
Florin Coras44fadb02021-02-20 17:36:19 -08001546 s = format (s, "%Ufifo active: %u hdr free: %u bytes: %U (%u) \n",
1547 format_white_space, indent + 2, fsh->n_active_fifos, free_fifos,
Florin Coras06d47752020-03-06 02:23:58 +00001548 format_memory_size, fifo_hdr, fifo_hdr);
1549 s = format (s, "%Usegment usage: %.2f%% (%U / %U) virt: %U status: %s\n",
1550 format_white_space, indent + 2, usage, format_memory_size,
1551 in_use, format_memory_size, allocated, format_memory_size, virt,
1552 fifo_segment_mem_status_strings[mem_st]);
Florin Corasf8461bf2019-11-07 17:00:15 -08001553 s = format (s, "\n");
Florin Coras5368bb02019-06-09 09:24:33 -07001554
Florin Coras88001c62019-04-24 14:44:46 -07001555 return s;
1556}
1557
1558/*
1559 * fd.io coding-style-patch-verification: ON
1560 *
1561 * Local Variables:
1562 * eval: (c-set-style "gnu")
1563 * End:
1564 */