blob: 9f1e46c9df690b5fd33c7625975bf71017ff6f8e [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
Florin Corascbb5e822021-02-20 10:42:22 -0800421fifo_segment_t *
422fifo_segment_get_segment_if_valid (fifo_segment_main_t *sm, u32 segment_index)
423{
424 if (pool_is_free_index (sm->segments, segment_index))
425 return 0;
426 return pool_elt_at_index (sm->segments, segment_index);
427}
428
Florin Coras88001c62019-04-24 14:44:46 -0700429void
430fifo_segment_info (fifo_segment_t * seg, char **address, size_t * size)
431{
Florin Coras404b8a32019-05-09 12:08:06 -0700432 *address = (char *) seg->ssvm.sh->ssvm_va;
433 *size = seg->ssvm.ssvm_size;
Florin Coras88001c62019-04-24 14:44:46 -0700434}
435
436void
437fifo_segment_main_init (fifo_segment_main_t * sm, u64 baseva,
438 u32 timeout_in_seconds)
439{
440 sm->next_baseva = baseva;
441 sm->timeout_in_seconds = timeout_in_seconds;
442}
443
Florin Corasf9d4ab42019-05-11 16:55:53 -0700444static inline u32
445fs_freelist_for_size (u32 size)
Florin Coras88001c62019-04-24 14:44:46 -0700446{
Florin Corasf22f4e52019-12-19 16:10:58 -0800447 if (PREDICT_FALSE (size < FIFO_SEGMENT_MIN_FIFO_SIZE))
448 return 0;
Florin Coras4b8011e2020-12-07 19:38:23 -0800449 return clib_min (max_log2 (size) - FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE,
450 FS_CHUNK_VEC_LEN - 1);
Florin Coras88001c62019-04-24 14:44:46 -0700451}
452
Florin Corasf9d4ab42019-05-11 16:55:53 -0700453static inline u32
454fs_freelist_index_to_size (u32 fl_index)
455{
Florin Coras62ddc032019-12-08 18:30:42 -0800456 return 1 << (fl_index + FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700457}
458
Florin Coras88001c62019-04-24 14:44:46 -0700459static inline int
Florin Coras62ddc032019-12-08 18:30:42 -0800460fs_chunk_size_is_valid (fifo_segment_header_t * fsh, u32 size)
Florin Coras88001c62019-04-24 14:44:46 -0700461{
462 /*
463 * 4K minimum. It's not likely that anything good will happen
464 * with a smaller FIFO.
465 */
Florin Coras4b8011e2020-12-07 19:38:23 -0800466 return size >= FIFO_SEGMENT_MIN_FIFO_SIZE &&
467 size <= (1ULL << fsh->max_log2_fifo_size);
Florin Coras88001c62019-04-24 14:44:46 -0700468}
469
Florin Coras8e755a12020-02-06 16:59:31 +0000470svm_fifo_chunk_t *
471fs_try_alloc_multi_chunk (fifo_segment_header_t * fsh,
472 fifo_segment_slice_t * fss, u32 data_bytes)
473{
474 u32 fl_index, fl_size, n_alloc = 0, req_bytes = data_bytes;
475 svm_fifo_chunk_t *c, *first = 0, *next;
476
477 fl_index = fs_freelist_for_size (req_bytes);
478 if (fl_index > 0)
479 fl_index -= 1;
480
481 fl_size = fs_freelist_index_to_size (fl_index);
482
483 while (req_bytes)
484 {
Florin Corasaf588822020-12-09 12:51:13 -0800485 c = fss_chunk_free_list_pop (fsh, fss, fl_index);
Florin Coras8e755a12020-02-06 16:59:31 +0000486 if (c)
487 {
Florin Corasaf588822020-12-09 12:51:13 -0800488 c->next = fs_chunk_sptr (fsh, first);
Florin Coras8e755a12020-02-06 16:59:31 +0000489 first = c;
490 n_alloc += fl_size;
491 req_bytes -= clib_min (fl_size, req_bytes);
492 }
493 else
494 {
495 /* Failed to allocate with smaller chunks */
496 if (fl_index == 0)
497 {
Florin Coras473c8462020-11-16 18:11:51 -0800498 /* Free all chunks if any allocated */
Florin Coras8e755a12020-02-06 16:59:31 +0000499 c = first;
500 while (c)
501 {
502 fl_index = fs_freelist_for_size (c->length);
Florin Corasaf588822020-12-09 12:51:13 -0800503 next = fs_chunk_ptr (fsh, c->next);
504 fss_chunk_free_list_push (fsh, fss, fl_index, c);
Florin Coras8e755a12020-02-06 16:59:31 +0000505 c = next;
506 }
507 n_alloc = 0;
508 first = 0;
Florin Coras473c8462020-11-16 18:11:51 -0800509 /* As last attempt, try allocating a chunk larger than
510 * the requested size, if possible */
511 fl_index = fs_freelist_for_size (data_bytes) + 1;
512 if (!fss_chunk_fl_index_is_valid (fss, fl_index))
513 return 0;
Florin Corasaf588822020-12-09 12:51:13 -0800514 first = fss_chunk_free_list_pop (fsh, fss, fl_index);
Florin Coras473c8462020-11-16 18:11:51 -0800515 if (first)
Florin Coras8e755a12020-02-06 16:59:31 +0000516 {
Florin Coras473c8462020-11-16 18:11:51 -0800517 first->next = 0;
518 n_alloc = fs_freelist_index_to_size (fl_index);
519 goto done;
Florin Coras8e755a12020-02-06 16:59:31 +0000520 }
Florin Coras8e755a12020-02-06 16:59:31 +0000521 return 0;
522 }
523 fl_index -= 1;
524 fl_size = fl_size >> 1;
525 }
526 }
527
Florin Coras473c8462020-11-16 18:11:51 -0800528done:
Florin Corasd01d2ce2020-11-17 18:42:38 -0800529 fss_fl_chunk_bytes_sub (fss, n_alloc);
Florin Coras8e755a12020-02-06 16:59:31 +0000530 fsh_cached_bytes_sub (fsh, n_alloc);
531 return first;
532}
533
Florin Corasf9d4ab42019-05-11 16:55:53 -0700534static int
Florin Coras473c8462020-11-16 18:11:51 -0800535fsh_try_alloc_fifo_hdr_batch (fifo_segment_header_t * fsh,
536 fifo_segment_slice_t * fss, u32 batch_size)
Florin Coras8e755a12020-02-06 16:59:31 +0000537{
Florin Coras17672aa2020-12-29 16:55:32 -0800538 svm_fifo_shared_t *f, *head = 0, *tail;
Florin Coras36a0c4d2020-01-31 08:28:02 -0800539 uword size;
Florin Corascefd5d82019-05-05 13:19:57 -0700540 u8 *fmem;
541 int i;
Florin Coras88001c62019-04-24 14:44:46 -0700542
Benoît Gannef23b1512020-11-25 15:06:01 +0100543 ASSERT (batch_size != 0);
544
Florin Coras473c8462020-11-16 18:11:51 -0800545 size = (uword) sizeof (*f) * batch_size;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700546
Florin Coras213b1bb2020-12-07 14:33:58 -0800547 fmem = fsh_alloc_aligned (fsh, size, CLIB_CACHE_LINE_BYTES);
Florin Corascefd5d82019-05-05 13:19:57 -0700548 if (fmem == 0)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700549 return -1;
Florin Coras88001c62019-04-24 14:44:46 -0700550
Florin Coras635f5062020-04-28 20:40:57 +0000551 /* Carve fifo hdr space */
Florin Coras17672aa2020-12-29 16:55:32 -0800552 tail = f = (svm_fifo_shared_t *) fmem;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700553 for (i = 0; i < batch_size; i++)
Florin Coras88001c62019-04-24 14:44:46 -0700554 {
Florin Coras17672aa2020-12-29 16:55:32 -0800555 clib_memset (f, 0, sizeof (*f));
556 f->next = fs_sptr (fsh, head);
557 head = f;
Florin Coras635f5062020-04-28 20:40:57 +0000558 fmem += sizeof (*f);
Florin Coras17672aa2020-12-29 16:55:32 -0800559 f = (svm_fifo_shared_t *) fmem;
Florin Coras635f5062020-04-28 20:40:57 +0000560 }
561
Florin Coras17672aa2020-12-29 16:55:32 -0800562 fss_fifo_free_list_push_list (fsh, fss, head, tail);
563
Florin Coras473c8462020-11-16 18:11:51 -0800564 return 0;
565}
566
567static int
568fsh_try_alloc_chunk_batch (fifo_segment_header_t * fsh,
569 fifo_segment_slice_t * fss,
570 u32 fl_index, u32 batch_size)
571{
Florin Coras473c8462020-11-16 18:11:51 -0800572 svm_fifo_chunk_t *c, *head = 0, *tail;
Florin Coras79b3f8c2020-11-20 07:34:53 -0800573 uword size, total_chunk_bytes;
574 u32 rounded_data_size;
Florin Coras473c8462020-11-16 18:11:51 -0800575 u8 *cmem;
576 int i;
577
Benoît Gannef23b1512020-11-25 15:06:01 +0100578 ASSERT (batch_size != 0);
579
Florin Coras473c8462020-11-16 18:11:51 -0800580 rounded_data_size = fs_freelist_index_to_size (fl_index);
Florin Coras79b3f8c2020-11-20 07:34:53 -0800581 total_chunk_bytes = (uword) batch_size *rounded_data_size;
Florin Coras473c8462020-11-16 18:11:51 -0800582 size = (uword) (sizeof (*c) + rounded_data_size) * batch_size;
583
Florin Coras213b1bb2020-12-07 14:33:58 -0800584 cmem = fsh_alloc_aligned (fsh, size, 8 /* chunk hdr is 24B */);
Florin Coras473c8462020-11-16 18:11:51 -0800585 if (cmem == 0)
586 return -1;
587
588 /* Carve fifo + chunk space */
589 tail = c = (svm_fifo_chunk_t *) cmem;
Florin Coras635f5062020-04-28 20:40:57 +0000590 for (i = 0; i < batch_size; i++)
591 {
Florin Corascefd5d82019-05-05 13:19:57 -0700592 c->start_byte = 0;
593 c->length = rounded_data_size;
Florin Corasaf588822020-12-09 12:51:13 -0800594 c->next = fs_chunk_sptr (fsh, head);
Florin Coras473c8462020-11-16 18:11:51 -0800595 head = c;
596 cmem += sizeof (*c) + rounded_data_size;
597 c = (svm_fifo_chunk_t *) cmem;
Florin Coras88001c62019-04-24 14:44:46 -0700598 }
Florin Corascefd5d82019-05-05 13:19:57 -0700599
Florin Corasaf588822020-12-09 12:51:13 -0800600 fss_chunk_free_list_push_list (fsh, fss, fl_index, head, tail);
Ryujiro Shibuyad3588722020-03-13 12:45:06 +0000601 fss->num_chunks[fl_index] += batch_size;
Florin Coras79b3f8c2020-11-20 07:34:53 -0800602 fss_fl_chunk_bytes_add (fss, total_chunk_bytes);
603 fsh_cached_bytes_add (fsh, total_chunk_bytes);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700604
605 return 0;
606}
607
Florin Coras473c8462020-11-16 18:11:51 -0800608static int
609fs_try_alloc_fifo_batch (fifo_segment_header_t * fsh,
610 fifo_segment_slice_t * fss,
611 u32 fl_index, u32 batch_size)
612{
613 if (fsh_try_alloc_fifo_hdr_batch (fsh, fss, batch_size))
614 return 0;
615 return fsh_try_alloc_chunk_batch (fsh, fss, fl_index, batch_size);
616}
617
Florin Corasc547e912020-12-08 17:50:45 -0800618static svm_fifo_shared_t *
619fsh_try_alloc_fifo_hdr (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss)
Florin Coras473c8462020-11-16 18:11:51 -0800620{
Florin Coras17672aa2020-12-29 16:55:32 -0800621 svm_fifo_shared_t *sf;
Florin Coras473c8462020-11-16 18:11:51 -0800622
623 if (!fss->free_fifos)
624 {
625 if (fsh_try_alloc_fifo_hdr_batch (fsh, fss,
626 FIFO_SEGMENT_ALLOC_BATCH_SIZE))
627 return 0;
628 }
629
Florin Coras17672aa2020-12-29 16:55:32 -0800630 sf = fss_fifo_free_list_pop (fsh, fss);
631 clib_memset (sf, 0, sizeof (*sf));
632
633 return sf;
Florin Coras473c8462020-11-16 18:11:51 -0800634}
635
636static svm_fifo_chunk_t *
637fsh_try_alloc_chunk (fifo_segment_header_t * fsh,
638 fifo_segment_slice_t * fss, u32 data_bytes)
639{
640 svm_fifo_chunk_t *c;
641 u32 fl_index;
642
643 fl_index = fs_freelist_for_size (data_bytes);
644
645free_list:
Florin Corasaf588822020-12-09 12:51:13 -0800646 c = fss_chunk_free_list_pop (fsh, fss, fl_index);
Florin Coras473c8462020-11-16 18:11:51 -0800647 if (c)
648 {
649 c->next = 0;
Florin Corasd01d2ce2020-11-17 18:42:38 -0800650 fss_fl_chunk_bytes_sub (fss, fs_freelist_index_to_size (fl_index));
Florin Coras473c8462020-11-16 18:11:51 -0800651 fsh_cached_bytes_sub (fsh, fs_freelist_index_to_size (fl_index));
652 }
653 else
654 {
655 u32 chunk_size, batch = FIFO_SEGMENT_ALLOC_BATCH_SIZE;
656 uword n_free;
657
658 chunk_size = fs_freelist_index_to_size (fl_index);
659 n_free = fsh_n_free_bytes (fsh);
660
661 if (chunk_size <= n_free)
662 {
663 batch = chunk_size * batch <= n_free ? batch : 1;
664 if (!fsh_try_alloc_chunk_batch (fsh, fss, fl_index, batch))
665 goto free_list;
666 }
667 /* Failed to allocate larger chunk, try to allocate multi-chunk
668 * that is close to what was actually requested */
Florin Corasd01d2ce2020-11-17 18:42:38 -0800669 if (data_bytes <= fss_fl_chunk_bytes (fss))
Florin Coras473c8462020-11-16 18:11:51 -0800670 {
671 c = fs_try_alloc_multi_chunk (fsh, fss, data_bytes);
672 if (c)
673 goto done;
674 batch = n_free / FIFO_SEGMENT_MIN_FIFO_SIZE;
675 if (!batch || fsh_try_alloc_chunk_batch (fsh, fss, 0, batch))
Florin Coras213b1bb2020-12-07 14:33:58 -0800676 goto done;
Florin Coras473c8462020-11-16 18:11:51 -0800677 }
Florin Corasd01d2ce2020-11-17 18:42:38 -0800678 if (data_bytes <= fss_fl_chunk_bytes (fss) + n_free)
Florin Coras473c8462020-11-16 18:11:51 -0800679 {
680 u32 min_size = FIFO_SEGMENT_MIN_FIFO_SIZE;
681
Florin Corasd01d2ce2020-11-17 18:42:38 -0800682 batch = (data_bytes - fss_fl_chunk_bytes (fss)) / min_size;
Florin Coras473c8462020-11-16 18:11:51 -0800683 batch = clib_min (batch + 1, n_free / min_size);
684 if (fsh_try_alloc_chunk_batch (fsh, fss, 0, batch))
Florin Coras213b1bb2020-12-07 14:33:58 -0800685 goto done;
Florin Coras473c8462020-11-16 18:11:51 -0800686 c = fs_try_alloc_multi_chunk (fsh, fss, data_bytes);
687 }
688 }
689
690done:
691
692 return c;
693}
694
Florin Corasf9d4ab42019-05-11 16:55:53 -0700695/**
696 * Try to allocate new fifo
697 *
698 * Tries the following steps in order:
699 * - grab fifo and chunk from freelists
700 * - batch fifo and chunk allocation
701 * - single fifo allocation
702 * - grab multiple fifo chunks from freelists
703 */
Florin Corasc547e912020-12-08 17:50:45 -0800704static svm_fifo_shared_t *
705fs_try_alloc_fifo (fifo_segment_header_t *fsh, u32 slice_index, u32 data_bytes)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700706{
Florin Corasc547e912020-12-08 17:50:45 -0800707 fifo_segment_slice_t *fss;
Florin Corasd01d2ce2020-11-17 18:42:38 -0800708 u32 fl_index, min_size;
Florin Coras473c8462020-11-16 18:11:51 -0800709 svm_fifo_chunk_t *c;
Florin Corasc547e912020-12-08 17:50:45 -0800710 svm_fifo_shared_t *sf = 0;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700711
Florin Corasc547e912020-12-08 17:50:45 -0800712 fss = fsh_slice_get (fsh, slice_index);
Florin Coras2de9c0f2020-02-02 19:30:39 +0000713 min_size = clib_max ((fsh->pct_first_alloc * data_bytes) / 100, 4096);
714 fl_index = fs_freelist_for_size (min_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700715
Florin Coras473c8462020-11-16 18:11:51 -0800716 if (!fss_chunk_fl_index_is_valid (fss, fl_index))
Florin Coras0e6199d2020-04-17 20:15:22 +0000717 return 0;
718
Florin Corasc547e912020-12-08 17:50:45 -0800719 sf = fsh_try_alloc_fifo_hdr (fsh, fss);
720 if (!sf)
Florin Corasd01d2ce2020-11-17 18:42:38 -0800721 return 0;
Florin Coras8122cc22019-12-18 13:06:41 -0800722
Florin Coras473c8462020-11-16 18:11:51 -0800723 c = fsh_try_alloc_chunk (fsh, fss, min_size);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800724 if (!c)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700725 {
Florin Coras17672aa2020-12-29 16:55:32 -0800726 fss_fifo_free_list_push (fsh, fss, sf);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800727 return 0;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700728 }
Florin Corasf9d4ab42019-05-11 16:55:53 -0700729
Florin Corasaf588822020-12-09 12:51:13 -0800730 sf->start_chunk = fs_chunk_sptr (fsh, c);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800731 while (c->next)
Florin Corasaf588822020-12-09 12:51:13 -0800732 c = fs_chunk_ptr (fsh, c->next);
733 sf->end_chunk = fs_chunk_sptr (fsh, c);
Florin Corasc547e912020-12-08 17:50:45 -0800734 sf->size = data_bytes;
735 sf->slice_index = slice_index;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700736
Florin Corasc547e912020-12-08 17:50:45 -0800737 return sf;
Florin Coras88001c62019-04-24 14:44:46 -0700738}
739
Florin Corasf22f4e52019-12-19 16:10:58 -0800740svm_fifo_chunk_t *
741fsh_alloc_chunk (fifo_segment_header_t * fsh, u32 slice_index, u32 chunk_size)
742{
743 fifo_segment_slice_t *fss;
744 svm_fifo_chunk_t *c;
Florin Corasf22f4e52019-12-19 16:10:58 -0800745
Florin Corasf22f4e52019-12-19 16:10:58 -0800746 fss = fsh_slice_get (fsh, slice_index);
Florin Coras473c8462020-11-16 18:11:51 -0800747 c = fsh_try_alloc_chunk (fsh, fss, chunk_size);
Florin Corasf22f4e52019-12-19 16:10:58 -0800748
749 return c;
750}
751
752static void
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000753fsh_slice_collect_chunks (fifo_segment_header_t * fsh,
Florin Coras9e61d9a2020-02-05 21:13:18 +0000754 fifo_segment_slice_t * fss, svm_fifo_chunk_t * c)
Florin Corasf22f4e52019-12-19 16:10:58 -0800755{
Florin Coras473c8462020-11-16 18:11:51 -0800756 u32 n_collect = 0, fl_index;
Florin Corasf22f4e52019-12-19 16:10:58 -0800757 svm_fifo_chunk_t *next;
Florin Corasf22f4e52019-12-19 16:10:58 -0800758
Florin Coras9e61d9a2020-02-05 21:13:18 +0000759 while (c)
Florin Corasf22f4e52019-12-19 16:10:58 -0800760 {
Benoît Gannedf601ae2020-10-20 14:31:55 +0200761 CLIB_MEM_UNPOISON (c, sizeof (*c));
Florin Corasaf588822020-12-09 12:51:13 -0800762 next = fs_chunk_ptr (fsh, c->next);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000763 fl_index = fs_freelist_for_size (c->length);
Florin Corasaf588822020-12-09 12:51:13 -0800764 fss_chunk_free_list_push (fsh, fss, fl_index, c);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000765 n_collect += fs_freelist_index_to_size (fl_index);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000766 c = next;
Florin Corasf22f4e52019-12-19 16:10:58 -0800767 }
768
Florin Corasd01d2ce2020-11-17 18:42:38 -0800769 fss_fl_chunk_bytes_add (fss, n_collect);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000770 fsh_cached_bytes_add (fsh, n_collect);
Florin Corasf22f4e52019-12-19 16:10:58 -0800771}
772
773void
774fsh_collect_chunks (fifo_segment_header_t * fsh, u32 slice_index,
Florin Coras9e61d9a2020-02-05 21:13:18 +0000775 svm_fifo_chunk_t * c)
Florin Corasf22f4e52019-12-19 16:10:58 -0800776{
777 fifo_segment_slice_t *fss;
778 fss = fsh_slice_get (fsh, slice_index);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000779 fsh_slice_collect_chunks (fsh, fss, c);
Florin Corasf22f4e52019-12-19 16:10:58 -0800780}
781
Florin Corasc547e912020-12-08 17:50:45 -0800782svm_fifo_t *
783fs_fifo_alloc (fifo_segment_t *fs, u32 slice_index)
784{
785 fifo_slice_private_t *pfss = &fs->slices[slice_index];
786 svm_fifo_t *f;
787
788 f = clib_mem_bulk_alloc (pfss->fifos);
789 clib_memset (f, 0, sizeof (*f));
790 return f;
791}
792
793void
Florin Corascbb5e822021-02-20 10:42:22 -0800794fs_fifo_free (fifo_segment_t *fs, svm_fifo_t *f, u32 slice_index)
Florin Corasc547e912020-12-08 17:50:45 -0800795{
Florin Corasc547e912020-12-08 17:50:45 -0800796 fifo_slice_private_t *pfss;
797
Florin Coras5c01dbc2021-02-18 14:43:32 -0800798 if (CLIB_DEBUG)
799 clib_memset (f, 0xfc, sizeof (*f));
800
Florin Corasc547e912020-12-08 17:50:45 -0800801 pfss = &fs->slices[slice_index];
802 clib_mem_bulk_free (pfss->fifos, f);
803}
804
805void
806fifo_segment_cleanup (fifo_segment_t *fs)
807{
808 int slice_index;
Florin Corasb4624182020-12-11 13:58:12 -0800809 svm_msg_q_t *mq = 0;
Florin Corasc547e912020-12-08 17:50:45 -0800810
811 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
812 clib_mem_bulk_destroy (fs->slices[slice_index].fifos);
Florin Corasb4624182020-12-11 13:58:12 -0800813
814 vec_foreach (fs->mqs, mq)
815 vec_free (mq->rings);
816
817 vec_free (fs->mqs);
Florin Corasc547e912020-12-08 17:50:45 -0800818}
819
Florin Coras88001c62019-04-24 14:44:46 -0700820/**
821 * Allocate fifo in fifo segment
822 */
823svm_fifo_t *
Florin Coras62ddc032019-12-08 18:30:42 -0800824fifo_segment_alloc_fifo_w_slice (fifo_segment_t * fs, u32 slice_index,
825 u32 data_bytes, fifo_segment_ftype_t ftype)
Florin Coras88001c62019-04-24 14:44:46 -0700826{
Florin Coras62ddc032019-12-08 18:30:42 -0800827 fifo_segment_header_t *fsh = fs->h;
Florin Coras1f952d32020-12-09 19:43:21 -0800828 fifo_slice_private_t *pfss;
Florin Coras62ddc032019-12-08 18:30:42 -0800829 fifo_segment_slice_t *fss;
Florin Corasc547e912020-12-08 17:50:45 -0800830 svm_fifo_shared_t *sf;
Florin Coras88001c62019-04-24 14:44:46 -0700831 svm_fifo_t *f = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700832
Florin Coras62ddc032019-12-08 18:30:42 -0800833 ASSERT (slice_index < fs->n_slices);
Florin Coras88001c62019-04-24 14:44:46 -0700834
Florin Coras4b8011e2020-12-07 19:38:23 -0800835 if (PREDICT_FALSE (data_bytes > 1 << fsh->max_log2_fifo_size))
Florin Coras0e6199d2020-04-17 20:15:22 +0000836 return 0;
837
Florin Corasc547e912020-12-08 17:50:45 -0800838 sf = fs_try_alloc_fifo (fsh, slice_index, data_bytes);
839 if (!sf)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700840 goto done;
Florin Coras88001c62019-04-24 14:44:46 -0700841
Florin Corasc547e912020-12-08 17:50:45 -0800842 f = fs_fifo_alloc (fs, slice_index);
843 f->fs_hdr = fsh;
844 f->shr = sf;
Florin Coras62ddc032019-12-08 18:30:42 -0800845
Florin Corascefd5d82019-05-05 13:19:57 -0700846 svm_fifo_init (f, data_bytes);
Florin Coras88001c62019-04-24 14:44:46 -0700847
Florin Corasc547e912020-12-08 17:50:45 -0800848 fss = fsh_slice_get (fsh, slice_index);
Florin Coras1f952d32020-12-09 19:43:21 -0800849 pfss = fs_slice_private_get (fs, slice_index);
Florin Corasc547e912020-12-08 17:50:45 -0800850
Florin Coras88001c62019-04-24 14:44:46 -0700851 /* If rx fifo type add to active fifos list. When cleaning up segment,
852 * we need a list of active sessions that should be disconnected. Since
853 * both rx and tx fifos keep pointers to the session, it's enough to track
854 * only one. */
855 if (ftype == FIFO_SEGMENT_RX_FIFO)
856 {
Florin Coras1f952d32020-12-09 19:43:21 -0800857 pfss_fifo_add_active_list (pfss, f);
Florin Coras88001c62019-04-24 14:44:46 -0700858 f->flags |= SVM_FIFO_F_LL_TRACKED;
Florin Corasf22f4e52019-12-19 16:10:58 -0800859 }
860
Florin Coras62ddc032019-12-08 18:30:42 -0800861 fsh_active_fifos_update (fsh, 1);
Florin Coras06d47752020-03-06 02:23:58 +0000862 fss->virtual_mem += svm_fifo_size (f);
Florin Coras88001c62019-04-24 14:44:46 -0700863
864done:
Florin Coras88001c62019-04-24 14:44:46 -0700865 return (f);
866}
867
Florin Corasc547e912020-12-08 17:50:45 -0800868svm_fifo_t *
Florin Coras14f066e2020-12-10 18:52:40 -0800869fifo_segment_alloc_fifo_w_offset (fifo_segment_t *fs, uword offset)
Florin Corasc547e912020-12-08 17:50:45 -0800870{
871 svm_fifo_t *f = fs_fifo_alloc (fs, 0);
Florin Coras14f066e2020-12-10 18:52:40 -0800872 svm_fifo_shared_t *sf;
873
874 sf = (svm_fifo_shared_t *) ((u8 *) fs->h + offset);
Florin Corasc547e912020-12-08 17:50:45 -0800875 f->fs_hdr = fs->h;
876 f->shr = sf;
877
878 f->ooos_list_head = OOO_SEGMENT_INVALID_INDEX;
879 f->segment_index = SVM_FIFO_INVALID_INDEX;
880 f->refcnt = 1;
881 return f;
882}
883
Florin Coras88001c62019-04-24 14:44:46 -0700884/**
885 * Free fifo allocated in fifo segment
886 */
887void
Florin Corasb095a3c2019-04-25 12:58:46 -0700888fifo_segment_free_fifo (fifo_segment_t * fs, svm_fifo_t * f)
Florin Coras88001c62019-04-24 14:44:46 -0700889{
Florin Coras62ddc032019-12-08 18:30:42 -0800890 fifo_segment_header_t *fsh = fs->h;
Florin Coras1f952d32020-12-09 19:43:21 -0800891 fifo_slice_private_t *pfss;
Florin Coras62ddc032019-12-08 18:30:42 -0800892 fifo_segment_slice_t *fss;
Florin Corasc547e912020-12-08 17:50:45 -0800893 svm_fifo_shared_t *sf;
Florin Coras88001c62019-04-24 14:44:46 -0700894
895 ASSERT (f->refcnt > 0);
896
897 if (--f->refcnt > 0)
898 return;
899
Florin Corasc547e912020-12-08 17:50:45 -0800900 /*
901 * Cleanup shared state
902 */
903
904 sf = f->shr;
905 fss = fsh_slice_get (fsh, sf->slice_index);
Florin Coras1f952d32020-12-09 19:43:21 -0800906 pfss = fs_slice_private_get (fs, sf->slice_index);
Florin Corasc547e912020-12-08 17:50:45 -0800907
908 /* Free fifo chunks */
Florin Corasaf588822020-12-09 12:51:13 -0800909 fsh_slice_collect_chunks (fsh, fss, fs_chunk_ptr (fsh, f->shr->start_chunk));
Florin Corasc547e912020-12-08 17:50:45 -0800910
911 sf->start_chunk = sf->end_chunk = 0;
912 sf->head_chunk = sf->tail_chunk = 0;
913
914 /* Add to free list */
Florin Coras17672aa2020-12-29 16:55:32 -0800915 fss_fifo_free_list_push (fsh, fss, sf);
Florin Corasc547e912020-12-08 17:50:45 -0800916
917 fss->virtual_mem -= svm_fifo_size (f);
918
919 /*
920 * Cleanup private state
921 */
Florin Coras88001c62019-04-24 14:44:46 -0700922
923 /* Remove from active list. Only rx fifos are tracked */
924 if (f->flags & SVM_FIFO_F_LL_TRACKED)
925 {
Florin Coras1f952d32020-12-09 19:43:21 -0800926 pfss_fifo_del_active_list (pfss, f);
Florin Coras88001c62019-04-24 14:44:46 -0700927 f->flags &= ~SVM_FIFO_F_LL_TRACKED;
928 }
929
Florin Corasf22f4e52019-12-19 16:10:58 -0800930 svm_fifo_free_chunk_lookup (f);
Florin Corasb095a3c2019-04-25 12:58:46 -0700931 svm_fifo_free_ooo_data (f);
932
Florin Coras88001c62019-04-24 14:44:46 -0700933 if (CLIB_DEBUG)
934 {
Florin Corasc547e912020-12-08 17:50:45 -0800935 sf->master_session_index = ~0;
Florin Coras88001c62019-04-24 14:44:46 -0700936 f->master_thread_index = ~0;
937 }
938
Florin Corasc547e912020-12-08 17:50:45 -0800939 f->ooo_enq = f->ooo_deq = 0;
Florin Coras06d47752020-03-06 02:23:58 +0000940 f->prev = 0;
Florin Corasc547e912020-12-08 17:50:45 -0800941
Florin Corascbb5e822021-02-20 10:42:22 -0800942 fs_fifo_free (fs, f, f->shr->slice_index);
Florin Coras06d47752020-03-06 02:23:58 +0000943
Florin Coras62ddc032019-12-08 18:30:42 -0800944 fsh_active_fifos_update (fsh, -1);
Florin Coras88001c62019-04-24 14:44:46 -0700945}
946
Florin Coras6d7552c2020-04-09 01:49:45 +0000947void
Florin Corascbb5e822021-02-20 10:42:22 -0800948fifo_segment_free_client_fifo (fifo_segment_t *fs, svm_fifo_t *f)
949{
950 fs_fifo_free (fs, f, 0 /* clients attach fifos in slice 0 */);
951}
952
953void
Florin Coras0bc78d82021-01-09 14:34:01 -0800954fifo_segment_detach_fifo (fifo_segment_t *fs, svm_fifo_t **f)
Florin Coras6d7552c2020-04-09 01:49:45 +0000955{
Florin Coras1f952d32020-12-09 19:43:21 -0800956 fifo_slice_private_t *pfss;
Florin Coras6d7552c2020-04-09 01:49:45 +0000957 fifo_segment_slice_t *fss;
Florin Coras0bc78d82021-01-09 14:34:01 -0800958 svm_fifo_t *of = *f;
Florin Coras255554f2021-02-18 21:35:23 -0800959 u32 slice_index;
Florin Coras6d7552c2020-04-09 01:49:45 +0000960
Florin Coras0bc78d82021-01-09 14:34:01 -0800961 slice_index = of->master_thread_index;
962 fss = fsh_slice_get (fs->h, slice_index);
963 pfss = fs_slice_private_get (fs, slice_index);
964 fss->virtual_mem -= svm_fifo_size (of);
965 if (of->flags & SVM_FIFO_F_LL_TRACKED)
966 pfss_fifo_del_active_list (pfss, of);
Florin Coras6d7552c2020-04-09 01:49:45 +0000967
Florin Coras255554f2021-02-18 21:35:23 -0800968 /* Collect chunks that were provided in return for those detached */
969 fsh_slice_collect_chunks (fs->h, fss, of->chunks_at_attach);
970 of->chunks_at_attach = 0;
Florin Coras0bc78d82021-01-09 14:34:01 -0800971
Florin Coras44fadb02021-02-20 17:36:19 -0800972 fss_fifo_free_list_push (fs->h, fss, of->shr);
Florin Coras0bc78d82021-01-09 14:34:01 -0800973 clib_mem_bulk_free (pfss->fifos, *f);
974 *f = 0;
Florin Coras6d7552c2020-04-09 01:49:45 +0000975}
976
977void
Florin Coras0bc78d82021-01-09 14:34:01 -0800978fifo_segment_attach_fifo (fifo_segment_t *fs, svm_fifo_t **f, u32 slice_index)
Florin Coras6d7552c2020-04-09 01:49:45 +0000979{
Florin Coras255554f2021-02-18 21:35:23 -0800980 svm_fifo_chunk_t *c, *nc, *pc = 0;
Florin Coras1f952d32020-12-09 19:43:21 -0800981 fifo_slice_private_t *pfss;
Florin Coras6d7552c2020-04-09 01:49:45 +0000982 fifo_segment_slice_t *fss;
Florin Coras0bc78d82021-01-09 14:34:01 -0800983 svm_fifo_t *nf, *of;
Florin Coras6d7552c2020-04-09 01:49:45 +0000984
Florin Coras0bc78d82021-01-09 14:34:01 -0800985 nf = fs_fifo_alloc (fs, slice_index);
986 clib_memcpy_fast (nf, *f, sizeof (*nf));
Florin Coras6d7552c2020-04-09 01:49:45 +0000987
Florin Coras0bc78d82021-01-09 14:34:01 -0800988 fss = fsh_slice_get (fs->h, slice_index);
989 pfss = fs_slice_private_get (fs, slice_index);
990 fss->virtual_mem += svm_fifo_size (nf);
Florin Coras5c01dbc2021-02-18 14:43:32 -0800991 nf->next = nf->prev = 0;
Florin Coras0bc78d82021-01-09 14:34:01 -0800992 if (nf->flags & SVM_FIFO_F_LL_TRACKED)
993 pfss_fifo_add_active_list (pfss, nf);
994
Florin Coras255554f2021-02-18 21:35:23 -0800995 /* Update allocated chunks for fifo segment and build list of
996 * chunks to be freed, i.e, returned to old slice at detach */
Florin Coras0bc78d82021-01-09 14:34:01 -0800997 of = *f;
Florin Coras44fadb02021-02-20 17:36:19 -0800998 of->shr = fsh_try_alloc_fifo_hdr (fs->h, fss);
Florin Coras0bc78d82021-01-09 14:34:01 -0800999
1000 c = fs_chunk_ptr (fs->h, nf->shr->start_chunk);
Florin Coras255554f2021-02-18 21:35:23 -08001001 of->chunks_at_attach = pc = fsh_try_alloc_chunk (fs->h, fss, c->length);
1002 c = fs_chunk_ptr (fs->h, c->next);
1003
Florin Coras6d7552c2020-04-09 01:49:45 +00001004 while (c)
1005 {
Florin Coras255554f2021-02-18 21:35:23 -08001006 nc = fsh_try_alloc_chunk (fs->h, fss, c->length);
1007 pc->next = fs_chunk_sptr (fs->h, nc);
1008 pc = nc;
Florin Corasaf588822020-12-09 12:51:13 -08001009 c = fs_chunk_ptr (fs->h, c->next);
Florin Coras6d7552c2020-04-09 01:49:45 +00001010 }
Florin Coras0bc78d82021-01-09 14:34:01 -08001011
1012 nf->shr->slice_index = slice_index;
1013 *f = nf;
Florin Coras6d7552c2020-04-09 01:49:45 +00001014}
1015
Florin Coras14f066e2020-12-10 18:52:40 -08001016uword
1017fifo_segment_fifo_offset (svm_fifo_t *f)
1018{
1019 return (u8 *) f->shr - (u8 *) f->fs_hdr;
1020}
1021
Florin Corasb4624182020-12-11 13:58:12 -08001022svm_msg_q_t *
1023fifo_segment_msg_q_alloc (fifo_segment_t *fs, u32 mq_index,
1024 svm_msg_q_cfg_t *cfg)
1025{
1026 fifo_segment_header_t *fsh = fs->h;
1027 svm_msg_q_shared_t *smq;
1028 svm_msg_q_t *mq;
1029 void *base;
1030 u32 size;
1031
1032 if (!fs->mqs)
1033 {
1034 u32 n_mqs = clib_max (fs->h->n_mqs, 1);
1035 vec_validate (fs->mqs, n_mqs - 1);
1036 }
1037
1038 size = svm_msg_q_size_to_alloc (cfg);
1039 base = fsh_alloc_aligned (fsh, size, 8);
1040 fsh->n_reserved_bytes += size;
1041
1042 smq = svm_msg_q_init (base, cfg);
1043 mq = vec_elt_at_index (fs->mqs, mq_index);
1044 svm_msg_q_attach (mq, smq);
1045
1046 return mq;
1047}
1048
1049svm_msg_q_t *
1050fifo_segment_msg_q_attach (fifo_segment_t *fs, uword offset, u32 mq_index)
1051{
1052 svm_msg_q_t *mq;
1053
1054 if (!fs->mqs)
1055 {
1056 u32 n_mqs = clib_max (fs->h->n_mqs, 1);
1057 vec_validate (fs->mqs, n_mqs - 1);
1058 }
1059
1060 mq = vec_elt_at_index (fs->mqs, mq_index);
1061
Florin Coras86f12322021-01-22 15:05:14 -08001062 if (!mq->q.shr)
Florin Corasb4624182020-12-11 13:58:12 -08001063 {
1064 svm_msg_q_shared_t *smq;
1065 smq = (svm_msg_q_shared_t *) ((u8 *) fs->h + offset);
1066 svm_msg_q_attach (mq, smq);
1067 }
1068
1069 ASSERT (fifo_segment_msg_q_offset (fs, mq_index) == offset);
1070
1071 return mq;
1072}
1073
Florin Coras80b74252021-01-27 18:08:25 -08001074void
1075fifo_segment_msg_qs_discover (fifo_segment_t *fs, int *fds, u32 n_fds)
1076{
1077 svm_msg_q_shared_t *smq;
1078 u32 n_mqs, size, i;
1079 uword offset = 0, n_alloced;
1080 svm_msg_q_t *mq;
1081
1082 n_mqs = fs->h->n_mqs;
1083 if (n_fds && n_mqs != n_fds)
1084 {
1085 clib_warning ("expected %u fds got %u", n_mqs, n_fds);
1086 return;
1087 }
1088
1089 vec_validate (fs->mqs, n_mqs - 1);
1090 n_alloced = fs->h->n_reserved_bytes - fs->h->start_byte_index;
1091 ASSERT (n_alloced % n_mqs == 0);
1092 size = n_alloced / n_mqs;
1093
1094 offset = fs->h->start_byte_index;
1095 for (i = 0; i < n_mqs; i++)
1096 {
1097 mq = vec_elt_at_index (fs->mqs, i);
1098 smq = (svm_msg_q_shared_t *) ((u8 *) fs->h + offset);
1099 svm_msg_q_attach (mq, smq);
1100 if (n_fds)
1101 svm_msg_q_set_eventfd (mq, fds[i]);
1102 offset += size;
1103 }
1104}
1105
Florin Corasb4624182020-12-11 13:58:12 -08001106uword
1107fifo_segment_msg_q_offset (fifo_segment_t *fs, u32 mq_index)
1108{
1109 svm_msg_q_t *mq = vec_elt_at_index (fs->mqs, mq_index);
1110
Florin Coras86f12322021-01-22 15:05:14 -08001111 if (mq->q.shr == 0)
Florin Corasb4624182020-12-11 13:58:12 -08001112 return ~0ULL;
1113
Florin Coras86f12322021-01-22 15:05:14 -08001114 return (uword) ((u8 *) mq->q.shr - (u8 *) fs->h) -
1115 sizeof (svm_msg_q_shared_t);
Florin Corasb4624182020-12-11 13:58:12 -08001116}
1117
Florin Corasf9d4ab42019-05-11 16:55:53 -07001118int
Florin Coras62ddc032019-12-08 18:30:42 -08001119fifo_segment_prealloc_fifo_hdrs (fifo_segment_t * fs, u32 slice_index,
1120 u32 batch_size)
Florin Corasf9d4ab42019-05-11 16:55:53 -07001121{
1122 fifo_segment_header_t *fsh = fs->h;
Florin Coras62ddc032019-12-08 18:30:42 -08001123 fifo_segment_slice_t *fss;
Florin Corasf9d4ab42019-05-11 16:55:53 -07001124
Florin Coras62ddc032019-12-08 18:30:42 -08001125 fss = fsh_slice_get (fsh, slice_index);
Florin Corasfe1ab7e2020-11-26 11:34:38 -08001126 return fsh_try_alloc_fifo_hdr_batch (fsh, fss, batch_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -07001127}
1128
1129int
Florin Coras62ddc032019-12-08 18:30:42 -08001130fifo_segment_prealloc_fifo_chunks (fifo_segment_t * fs, u32 slice_index,
1131 u32 chunk_size, u32 batch_size)
Florin Corasf9d4ab42019-05-11 16:55:53 -07001132{
Florin Coras62ddc032019-12-08 18:30:42 -08001133 fifo_segment_header_t *fsh = fs->h;
1134 fifo_segment_slice_t *fss;
Florin Coras473c8462020-11-16 18:11:51 -08001135 u32 fl_index;
Florin Corasf9d4ab42019-05-11 16:55:53 -07001136
Florin Coras62ddc032019-12-08 18:30:42 -08001137 if (!fs_chunk_size_is_valid (fsh, chunk_size))
Florin Corasf9d4ab42019-05-11 16:55:53 -07001138 {
1139 clib_warning ("chunk size out of range %d", chunk_size);
1140 return -1;
1141 }
1142
1143 fl_index = fs_freelist_for_size (chunk_size);
Florin Coras62ddc032019-12-08 18:30:42 -08001144 fss = fsh_slice_get (fsh, slice_index);
1145
Florin Coras473c8462020-11-16 18:11:51 -08001146 return fsh_try_alloc_chunk_batch (fsh, fss, fl_index, batch_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -07001147}
1148
Florin Coras88001c62019-04-24 14:44:46 -07001149/**
1150 * Pre-allocates fifo pairs in fifo segment
1151 */
1152void
1153fifo_segment_preallocate_fifo_pairs (fifo_segment_t * fs,
1154 u32 rx_fifo_size, u32 tx_fifo_size,
1155 u32 * n_fifo_pairs)
1156{
Florin Corasf9d4ab42019-05-11 16:55:53 -07001157 u32 rx_rounded_data_size, tx_rounded_data_size, pair_size, pairs_to_alloc;
Florin Coras8d0149d2020-01-02 19:22:51 +00001158 u32 hdrs, pairs_per_slice, alloc_now;
Florin Coras62ddc032019-12-08 18:30:42 -08001159 fifo_segment_header_t *fsh = fs->h;
1160 int rx_fl_index, tx_fl_index, i;
1161 fifo_segment_slice_t *fss;
Florin Coras88001c62019-04-24 14:44:46 -07001162 uword space_available;
Florin Coras88001c62019-04-24 14:44:46 -07001163
1164 /* Parameter check */
1165 if (rx_fifo_size == 0 || tx_fifo_size == 0 || *n_fifo_pairs == 0)
1166 return;
1167
Florin Coras62ddc032019-12-08 18:30:42 -08001168 if (!fs_chunk_size_is_valid (fsh, rx_fifo_size))
Florin Coras88001c62019-04-24 14:44:46 -07001169 {
1170 clib_warning ("rx fifo_size out of range %d", rx_fifo_size);
1171 return;
1172 }
1173
Florin Coras62ddc032019-12-08 18:30:42 -08001174 if (!fs_chunk_size_is_valid (fsh, tx_fifo_size))
Florin Coras88001c62019-04-24 14:44:46 -07001175 {
1176 clib_warning ("tx fifo_size out of range %d", tx_fifo_size);
1177 return;
1178 }
1179
1180 rx_rounded_data_size = (1 << (max_log2 (rx_fifo_size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -07001181 rx_fl_index = fs_freelist_for_size (rx_fifo_size);
Florin Coras88001c62019-04-24 14:44:46 -07001182 tx_rounded_data_size = (1 << (max_log2 (tx_fifo_size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -07001183 tx_fl_index = fs_freelist_for_size (tx_fifo_size);
Florin Coras88001c62019-04-24 14:44:46 -07001184
Florin Corasf9d4ab42019-05-11 16:55:53 -07001185 hdrs = sizeof (svm_fifo_t) + sizeof (svm_fifo_chunk_t);
Florin Corascefd5d82019-05-05 13:19:57 -07001186
Florin Coras88001c62019-04-24 14:44:46 -07001187 /* Calculate space requirements */
Florin Corascefd5d82019-05-05 13:19:57 -07001188 pair_size = 2 * hdrs + rx_rounded_data_size + tx_rounded_data_size;
Florin Coras213b1bb2020-12-07 14:33:58 -08001189 space_available = fsh_n_free_bytes (fsh);
Florin Coraseaacce42019-07-02 13:07:37 -07001190 pairs_to_alloc = space_available / pair_size;
1191 pairs_to_alloc = clib_min (pairs_to_alloc, *n_fifo_pairs);
Florin Coras62ddc032019-12-08 18:30:42 -08001192 pairs_per_slice = pairs_to_alloc / fs->n_slices;
Florin Coras8d0149d2020-01-02 19:22:51 +00001193 pairs_per_slice += pairs_to_alloc % fs->n_slices ? 1 : 0;
Florin Coraseaacce42019-07-02 13:07:37 -07001194
Florin Coras62ddc032019-12-08 18:30:42 -08001195 if (!pairs_per_slice)
Florin Coraseaacce42019-07-02 13:07:37 -07001196 return;
Florin Coras88001c62019-04-24 14:44:46 -07001197
Florin Coras62ddc032019-12-08 18:30:42 -08001198 for (i = 0; i < fs->n_slices; i++)
1199 {
Florin Coras8d0149d2020-01-02 19:22:51 +00001200 alloc_now = clib_min (pairs_per_slice, *n_fifo_pairs);
Benoît Gannef23b1512020-11-25 15:06:01 +01001201 if (0 == alloc_now)
1202 break;
1203
1204 fss = fsh_slice_get (fsh, i);
Florin Coras8d0149d2020-01-02 19:22:51 +00001205 if (fs_try_alloc_fifo_batch (fsh, fss, rx_fl_index, alloc_now))
1206 clib_warning ("rx prealloc failed: pairs %u", alloc_now);
1207 if (fs_try_alloc_fifo_batch (fsh, fss, tx_fl_index, alloc_now))
1208 clib_warning ("tx prealloc failed: pairs %u", alloc_now);
Florin Coras88001c62019-04-24 14:44:46 -07001209
Florin Coras8d0149d2020-01-02 19:22:51 +00001210 /* Account for the pairs allocated */
1211 *n_fifo_pairs -= alloc_now;
1212 }
Florin Coras88001c62019-04-24 14:44:46 -07001213}
1214
1215/**
1216 * Get number of active fifos
1217 */
1218u32
1219fifo_segment_num_fifos (fifo_segment_t * fs)
1220{
Florin Coras7a90e502020-04-09 04:46:14 +00001221 return fsh_n_active_fifos (fs->h);
Florin Coras88001c62019-04-24 14:44:46 -07001222}
1223
Florin Coras62ddc032019-12-08 18:30:42 -08001224static u32
Florin Coras17672aa2020-12-29 16:55:32 -08001225fs_slice_num_free_fifos (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss)
Florin Coras88001c62019-04-24 14:44:46 -07001226{
Florin Corasc547e912020-12-08 17:50:45 -08001227 svm_fifo_shared_t *f;
Florin Corascefd5d82019-05-05 13:19:57 -07001228 u32 count = 0;
Florin Coras88001c62019-04-24 14:44:46 -07001229
Florin Coras17672aa2020-12-29 16:55:32 -08001230 f = fs_ptr (fsh, fss->free_fifos);
Florin Coras88001c62019-04-24 14:44:46 -07001231 if (f == 0)
1232 return 0;
1233
1234 while (f)
1235 {
Florin Coras17672aa2020-12-29 16:55:32 -08001236 f = fs_ptr (fsh, f->next);
Florin Coras88001c62019-04-24 14:44:46 -07001237 count++;
1238 }
1239 return count;
1240}
1241
Florin Corasb095a3c2019-04-25 12:58:46 -07001242u32
Florin Coras62ddc032019-12-08 18:30:42 -08001243fifo_segment_num_free_fifos (fifo_segment_t * fs)
1244{
1245 fifo_segment_header_t *fsh = fs->h;
1246 fifo_segment_slice_t *fss;
1247 int slice_index;
1248 u32 count = 0;
1249
1250 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1251 {
1252 fss = fsh_slice_get (fsh, slice_index);
Florin Coras17672aa2020-12-29 16:55:32 -08001253 count += fs_slice_num_free_fifos (fsh, fss);
Florin Coras62ddc032019-12-08 18:30:42 -08001254 }
1255 return count;
1256}
1257
1258static u32
Florin Corasaf588822020-12-09 12:51:13 -08001259fs_slice_num_free_chunks (fifo_segment_header_t *fsh,
1260 fifo_segment_slice_t *fss, u32 size)
Florin Corasb095a3c2019-04-25 12:58:46 -07001261{
1262 u32 count = 0, rounded_size, fl_index;
Florin Corasb095a3c2019-04-25 12:58:46 -07001263 svm_fifo_chunk_t *c;
1264 int i;
1265
Florin Corasb095a3c2019-04-25 12:58:46 -07001266 /* Count all free chunks? */
1267 if (size == ~0)
1268 {
Florin Coras4b8011e2020-12-07 19:38:23 -08001269 for (i = 0; i < FS_CHUNK_VEC_LEN; i++)
Florin Corasb095a3c2019-04-25 12:58:46 -07001270 {
Florin Corasaf588822020-12-09 12:51:13 -08001271 c = fs_chunk_ptr (fsh, fss->free_chunks[i]);
Florin Corasb095a3c2019-04-25 12:58:46 -07001272 if (c == 0)
1273 continue;
1274
1275 while (c)
1276 {
Florin Corasaf588822020-12-09 12:51:13 -08001277 c = fs_chunk_ptr (fsh, c->next);
Florin Corasb095a3c2019-04-25 12:58:46 -07001278 count++;
1279 }
1280 }
1281 return count;
1282 }
1283
1284 rounded_size = (1 << (max_log2 (size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -07001285 fl_index = fs_freelist_for_size (rounded_size);
Florin Corasb095a3c2019-04-25 12:58:46 -07001286
Florin Coras4b8011e2020-12-07 19:38:23 -08001287 if (fl_index >= FS_CHUNK_VEC_LEN)
Florin Corasb095a3c2019-04-25 12:58:46 -07001288 return 0;
1289
Florin Corasaf588822020-12-09 12:51:13 -08001290 c = fs_chunk_ptr (fsh, fss->free_chunks[fl_index]);
Florin Corasb095a3c2019-04-25 12:58:46 -07001291 if (c == 0)
1292 return 0;
1293
1294 while (c)
1295 {
Florin Corasaf588822020-12-09 12:51:13 -08001296 c = fs_chunk_ptr (fsh, c->next);
Florin Corasb095a3c2019-04-25 12:58:46 -07001297 count++;
1298 }
1299 return count;
1300}
1301
Florin Coras62ddc032019-12-08 18:30:42 -08001302u32
1303fifo_segment_num_free_chunks (fifo_segment_t * fs, u32 size)
1304{
1305 fifo_segment_header_t *fsh = fs->h;
1306 fifo_segment_slice_t *fss;
1307 int slice_index;
1308 u32 count = 0;
1309
1310 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1311 {
1312 fss = fsh_slice_get (fsh, slice_index);
Florin Corasaf588822020-12-09 12:51:13 -08001313 count += fs_slice_num_free_chunks (fsh, fss, size);
Florin Coras62ddc032019-12-08 18:30:42 -08001314 }
1315 return count;
1316}
1317
Florin Corasef4f3e72019-12-11 14:27:53 -08001318uword
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001319fifo_segment_size (fifo_segment_t * fs)
1320{
Florin Coras213b1bb2020-12-07 14:33:58 -08001321 return fs->h->max_byte_index - fs->h->n_reserved_bytes;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001322}
1323
1324u8
1325fsh_has_reached_mem_limit (fifo_segment_header_t * fsh)
1326{
1327 return (fsh->flags & FIFO_SEGMENT_F_MEM_LIMIT) ? 1 : 0;
1328}
1329
1330void
1331fsh_reset_mem_limit (fifo_segment_header_t * fsh)
1332{
1333 fsh->flags &= ~FIFO_SEGMENT_F_MEM_LIMIT;
1334}
1335
Florin Coras213b1bb2020-12-07 14:33:58 -08001336void *
1337fifo_segment_alloc (fifo_segment_t *fs, uword size)
1338{
1339 void *rv = fsh_alloc (fs->h, size);
1340 /* Mark externally allocated bytes as reserved. This helps
1341 * @ref fifo_segment_size report bytes used only for fifos */
1342 fs->h->n_reserved_bytes += size;
1343 return rv;
1344}
1345
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001346uword
Florin Corasf9d4ab42019-05-11 16:55:53 -07001347fifo_segment_free_bytes (fifo_segment_t * fs)
1348{
Florin Coras62ddc032019-12-08 18:30:42 -08001349 return fsh_n_free_bytes (fs->h);
Florin Corasf9d4ab42019-05-11 16:55:53 -07001350}
1351
Florin Coras62ddc032019-12-08 18:30:42 -08001352uword
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001353fifo_segment_cached_bytes (fifo_segment_t * fs)
1354{
1355 return fsh_n_cached_bytes (fs->h);
1356}
1357
1358uword
Florin Coras75ccf7b2020-03-05 19:44:02 +00001359fifo_segment_available_bytes (fifo_segment_t * fs)
1360{
1361 return fsh_n_free_bytes (fs->h) + fsh_n_cached_bytes (fs->h);
1362}
1363
1364uword
Florin Coras1c91c772019-06-25 18:14:13 -07001365fifo_segment_fl_chunk_bytes (fifo_segment_t * fs)
Florin Corasf9d4ab42019-05-11 16:55:53 -07001366{
Florin Coras62ddc032019-12-08 18:30:42 -08001367 fifo_segment_header_t *fsh = fs->h;
1368 fifo_segment_slice_t *fss;
1369 uword n_bytes = 0;
1370 int slice_index;
1371
1372 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1373 {
1374 fss = fsh_slice_get (fsh, slice_index);
Florin Corasd01d2ce2020-11-17 18:42:38 -08001375 n_bytes += fss_fl_chunk_bytes (fss);
Florin Coras62ddc032019-12-08 18:30:42 -08001376 }
1377
1378 return n_bytes;
Florin Corasf9d4ab42019-05-11 16:55:53 -07001379}
1380
Florin Coras88001c62019-04-24 14:44:46 -07001381u8
1382fifo_segment_has_fifos (fifo_segment_t * fs)
1383{
Florin Coras7a90e502020-04-09 04:46:14 +00001384 return (fsh_n_active_fifos (fs->h) != 0);
Florin Coras88001c62019-04-24 14:44:46 -07001385}
1386
1387svm_fifo_t *
Florin Coras62ddc032019-12-08 18:30:42 -08001388fifo_segment_get_slice_fifo_list (fifo_segment_t * fs, u32 slice_index)
Florin Coras88001c62019-04-24 14:44:46 -07001389{
Florin Coras1f952d32020-12-09 19:43:21 -08001390 fifo_slice_private_t *pfss;
Florin Coras62ddc032019-12-08 18:30:42 -08001391
Florin Coras1f952d32020-12-09 19:43:21 -08001392 pfss = fs_slice_private_get (fs, slice_index);
1393 return pfss->active_fifos;
Florin Coras88001c62019-04-24 14:44:46 -07001394}
1395
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001396u8
1397fifo_segment_get_mem_usage (fifo_segment_t * fs)
1398{
1399 uword size, in_use;
1400
1401 size = fifo_segment_size (fs);
1402 in_use =
1403 size - fifo_segment_free_bytes (fs) - fifo_segment_cached_bytes (fs);
1404 return (in_use * 100) / size;
1405}
1406
1407fifo_segment_mem_status_t
1408fifo_segment_determine_status (fifo_segment_header_t * fsh, u8 usage)
1409{
1410 if (!fsh->high_watermark || !fsh->low_watermark)
1411 return MEMORY_PRESSURE_NO_PRESSURE;
1412
1413 /* once the no-memory is detected, the status continues
1414 * until memory usage gets below the high watermark
1415 */
1416 if (fsh_has_reached_mem_limit (fsh))
1417 {
1418 if (usage >= fsh->high_watermark)
1419 return MEMORY_PRESSURE_NO_MEMORY;
1420 else
1421 fsh_reset_mem_limit (fsh);
1422 }
1423
1424 if (usage >= fsh->high_watermark)
1425 return MEMORY_PRESSURE_HIGH_PRESSURE;
1426
1427 else if (usage >= fsh->low_watermark)
1428 return MEMORY_PRESSURE_LOW_PRESSURE;
1429
1430 return MEMORY_PRESSURE_NO_PRESSURE;
1431}
1432
1433fifo_segment_mem_status_t
1434fifo_segment_get_mem_status (fifo_segment_t * fs)
1435{
1436 fifo_segment_header_t *fsh = fs->h;
1437 u8 usage = fifo_segment_get_mem_usage (fs);
1438
1439 return fifo_segment_determine_status (fsh, usage);
1440}
1441
Florin Coras88001c62019-04-24 14:44:46 -07001442u8 *
1443format_fifo_segment_type (u8 * s, va_list * args)
1444{
1445 fifo_segment_t *sp;
1446 sp = va_arg (*args, fifo_segment_t *);
1447 ssvm_segment_type_t st = ssvm_type (&sp->ssvm);
1448
1449 if (st == SSVM_SEGMENT_PRIVATE)
Florin Coras2a7c0b62020-09-28 23:40:28 -07001450 s = format (s, "%s", "private");
Florin Coras88001c62019-04-24 14:44:46 -07001451 else if (st == SSVM_SEGMENT_MEMFD)
1452 s = format (s, "%s", "memfd");
1453 else if (st == SSVM_SEGMENT_SHM)
1454 s = format (s, "%s", "shm");
1455 else
1456 s = format (s, "%s", "unknown");
1457 return s;
1458}
1459
1460/**
1461 * Segment format function
1462 */
1463u8 *
1464format_fifo_segment (u8 * s, va_list * args)
1465{
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001466 u32 count, indent, active_fifos, free_fifos;
Florin Coras5368bb02019-06-09 09:24:33 -07001467 fifo_segment_t *fs = va_arg (*args, fifo_segment_t *);
Florin Coras88001c62019-04-24 14:44:46 -07001468 int verbose __attribute__ ((unused)) = va_arg (*args, int);
Florin Corasef4f3e72019-12-11 14:27:53 -08001469 uword est_chunk_bytes, est_free_seg_bytes, free_chunks;
1470 uword chunk_bytes = 0, free_seg_bytes, chunk_size;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001471 uword tracked_cached_bytes;
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001472 uword fifo_hdr = 0, reserved;
Florin Coras5368bb02019-06-09 09:24:33 -07001473 fifo_segment_header_t *fsh;
Florin Coras62ddc032019-12-08 18:30:42 -08001474 fifo_segment_slice_t *fss;
Florin Corascefd5d82019-05-05 13:19:57 -07001475 svm_fifo_chunk_t *c;
Florin Coras62ddc032019-12-08 18:30:42 -08001476 u32 slice_index;
Florin Coras5368bb02019-06-09 09:24:33 -07001477 char *address;
1478 size_t size;
Florin Coras88001c62019-04-24 14:44:46 -07001479 int i;
Florin Coras06d47752020-03-06 02:23:58 +00001480 uword allocated, in_use, virt;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001481 f64 usage;
1482 fifo_segment_mem_status_t mem_st;
Florin Coras88001c62019-04-24 14:44:46 -07001483
1484 indent = format_get_indent (s) + 2;
Florin Coras88001c62019-04-24 14:44:46 -07001485
Florin Coras5368bb02019-06-09 09:24:33 -07001486 if (fs == 0)
1487 {
Florin Coras2a7c0b62020-09-28 23:40:28 -07001488 s = format (s, "%-20s%10s%15s%15s%15s%15s", "Name", "Type",
Florin Coras5368bb02019-06-09 09:24:33 -07001489 "HeapSize (M)", "ActiveFifos", "FreeFifos", "Address");
1490 return s;
1491 }
1492
Florin Coras5368bb02019-06-09 09:24:33 -07001493 fifo_segment_info (fs, &address, &size);
1494 active_fifos = fifo_segment_num_fifos (fs);
1495 free_fifos = fifo_segment_num_free_fifos (fs);
1496
Florin Coras2a7c0b62020-09-28 23:40:28 -07001497 s = format (s, "%-20v%10U%15llu%15u%15u%15llx", ssvm_name (&fs->ssvm),
Florin Coras5368bb02019-06-09 09:24:33 -07001498 format_fifo_segment_type, fs, size >> 20ULL, active_fifos,
1499 free_fifos, address);
1500
1501 if (!verbose)
1502 return s;
1503
Florin Coras62ddc032019-12-08 18:30:42 -08001504 fsh = fs->h;
1505
1506 free_chunks = fifo_segment_num_free_chunks (fs, ~0);
1507 if (free_chunks)
Ryujiro Shibuyad3588722020-03-13 12:45:06 +00001508 s =
1509 format (s, "\n\n%UFree/Allocated chunks by size:\n", format_white_space,
1510 indent + 2);
Florin Corasf8461bf2019-11-07 17:00:15 -08001511 else
1512 s = format (s, "\n");
1513
Florin Coras62ddc032019-12-08 18:30:42 -08001514 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
Florin Coras88001c62019-04-24 14:44:46 -07001515 {
Florin Coras62ddc032019-12-08 18:30:42 -08001516 fss = fsh_slice_get (fsh, slice_index);
Florin Coras4b8011e2020-12-07 19:38:23 -08001517 for (i = 0; i < FS_CHUNK_VEC_LEN; i++)
Florin Coras88001c62019-04-24 14:44:46 -07001518 {
Florin Corasaf588822020-12-09 12:51:13 -08001519 c = fs_chunk_ptr (fsh, fss->free_chunks[i]);
Ryujiro Shibuyad3588722020-03-13 12:45:06 +00001520 if (c == 0 && fss->num_chunks[i] == 0)
Florin Coras62ddc032019-12-08 18:30:42 -08001521 continue;
1522 count = 0;
1523 while (c)
1524 {
Florin Corasaf588822020-12-09 12:51:13 -08001525 c = fs_chunk_ptr (fsh, c->next);
Florin Coras62ddc032019-12-08 18:30:42 -08001526 count++;
1527 }
1528
1529 chunk_size = fs_freelist_index_to_size (i);
Ryujiro Shibuyad3588722020-03-13 12:45:06 +00001530 s = format (s, "%U%-5u kB: %u/%u\n", format_white_space, indent + 2,
1531 chunk_size >> 10, count, fss->num_chunks[i]);
Florin Coras62ddc032019-12-08 18:30:42 -08001532
1533 chunk_bytes += count * chunk_size;
Florin Coras88001c62019-04-24 14:44:46 -07001534 }
Florin Coras88001c62019-04-24 14:44:46 -07001535 }
Florin Corasf8461bf2019-11-07 17:00:15 -08001536
1537 fifo_hdr = free_fifos * sizeof (svm_fifo_t);
1538 est_chunk_bytes = fifo_segment_fl_chunk_bytes (fs);
Florin Coras62ddc032019-12-08 18:30:42 -08001539 est_free_seg_bytes = fifo_segment_free_bytes (fs);
Florin Coras62ddc032019-12-08 18:30:42 -08001540 free_seg_bytes = fifo_segment_free_bytes (fs);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001541 tracked_cached_bytes = fifo_segment_cached_bytes (fs);
1542 allocated = fifo_segment_size (fs);
1543 in_use = fifo_segment_size (fs) - est_free_seg_bytes - tracked_cached_bytes;
1544 usage = (100.0 * in_use) / allocated;
1545 mem_st = fifo_segment_get_mem_status (fs);
Florin Coras06d47752020-03-06 02:23:58 +00001546 virt = fsh_virtual_mem (fsh);
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001547 reserved = fsh->n_reserved_bytes;
Florin Corasf8461bf2019-11-07 17:00:15 -08001548
Florin Coras06d47752020-03-06 02:23:58 +00001549 s = format (s, "\n%Useg free bytes: %U (%lu) estimated: %U (%lu) reserved:"
1550 " %U (%lu)\n", format_white_space, indent + 2,
1551 format_memory_size, free_seg_bytes, free_seg_bytes,
1552 format_memory_size, est_free_seg_bytes, est_free_seg_bytes,
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001553 format_memory_size, reserved, reserved);
Florin Coras06d47752020-03-06 02:23:58 +00001554 s = format (s, "%Uchunk free bytes: %U (%lu) estimated: %U (%lu) tracked:"
1555 " %U (%lu)\n", format_white_space, indent + 2,
1556 format_memory_size, chunk_bytes, chunk_bytes,
1557 format_memory_size, est_chunk_bytes, est_chunk_bytes,
1558 format_memory_size, tracked_cached_bytes, tracked_cached_bytes);
Florin Coras44fadb02021-02-20 17:36:19 -08001559 s = format (s, "%Ufifo active: %u hdr free: %u bytes: %U (%u) \n",
1560 format_white_space, indent + 2, fsh->n_active_fifos, free_fifos,
Florin Coras06d47752020-03-06 02:23:58 +00001561 format_memory_size, fifo_hdr, fifo_hdr);
1562 s = format (s, "%Usegment usage: %.2f%% (%U / %U) virt: %U status: %s\n",
1563 format_white_space, indent + 2, usage, format_memory_size,
1564 in_use, format_memory_size, allocated, format_memory_size, virt,
1565 fifo_segment_mem_status_strings[mem_st]);
Florin Corasf8461bf2019-11-07 17:00:15 -08001566 s = format (s, "\n");
Florin Coras5368bb02019-06-09 09:24:33 -07001567
Florin Coras88001c62019-04-24 14:44:46 -07001568 return s;
1569}
1570
1571/*
1572 * fd.io coding-style-patch-verification: ON
1573 *
1574 * Local Variables:
1575 * eval: (c-set-style "gnu")
1576 * End:
1577 */