blob: b680d27fe33bcbeffc86afd21b58f70a2569d2c8 [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 Coras473c8462020-11-16 18:11:51 -0800130static inline int
Florin Coras014dba32021-03-31 19:36:49 -0700131fss_chunk_fl_index_is_valid (fifo_segment_slice_t *fss, u32 fl_index)
Florin Coras473c8462020-11-16 18:11:51 -0800132{
Florin Coras4b8011e2020-12-07 19:38:23 -0800133 return (fl_index < FS_CHUNK_VEC_LEN);
Florin Coras473c8462020-11-16 18:11:51 -0800134}
135
Florin Coras014dba32021-03-31 19:36:49 -0700136#define FS_CL_HEAD_MASK 0xFFFFFFFFFFFF
137#define FS_CL_HEAD_TMASK 0xFFFF000000000000
138#define FS_CL_HEAD_TINC (1ULL << 48)
139
140static svm_fifo_chunk_t *
141fss_chunk_free_list_head (fifo_segment_header_t *fsh,
142 fifo_segment_slice_t *fss, u32 fl_index)
143{
144 fs_sptr_t headsp = clib_atomic_load_relax_n (&fss->free_chunks[fl_index]);
145 return fs_chunk_ptr (fsh, headsp & FS_CL_HEAD_MASK);
146}
147
Florin Coras473c8462020-11-16 18:11:51 -0800148static void
Florin Corasaf588822020-12-09 12:51:13 -0800149fss_chunk_free_list_push (fifo_segment_header_t *fsh,
150 fifo_segment_slice_t *fss, u32 fl_index,
151 svm_fifo_chunk_t *c)
Florin Coras473c8462020-11-16 18:11:51 -0800152{
Florin Coras014dba32021-03-31 19:36:49 -0700153 fs_sptr_t old_head, new_head, csp;
154
155 csp = fs_chunk_sptr (fsh, c);
156 ASSERT (csp <= FS_CL_HEAD_MASK);
Dave Wallace5c520912021-05-27 19:44:50 -0400157 old_head = clib_atomic_load_acq_n (&fss->free_chunks[fl_index]);
Florin Coras014dba32021-03-31 19:36:49 -0700158
159 do
160 {
161 c->next = old_head & FS_CL_HEAD_MASK;
162 new_head = csp + ((old_head + FS_CL_HEAD_TINC) & FS_CL_HEAD_TMASK);
163 }
Florin Coras324d1612021-06-02 11:17:29 -0700164 while (!__atomic_compare_exchange (&fss->free_chunks[fl_index], &old_head,
165 &new_head, 0 /* weak */, __ATOMIC_RELEASE,
166 __ATOMIC_ACQUIRE));
Florin Coras473c8462020-11-16 18:11:51 -0800167}
168
169static void
Florin Corasaf588822020-12-09 12:51:13 -0800170fss_chunk_free_list_push_list (fifo_segment_header_t *fsh,
171 fifo_segment_slice_t *fss, u32 fl_index,
172 svm_fifo_chunk_t *head, svm_fifo_chunk_t *tail)
Florin Coras473c8462020-11-16 18:11:51 -0800173{
Florin Coras014dba32021-03-31 19:36:49 -0700174 fs_sptr_t old_head, new_head, headsp;
175
176 headsp = fs_chunk_sptr (fsh, head);
177 ASSERT (headsp <= FS_CL_HEAD_MASK);
Dave Wallace5c520912021-05-27 19:44:50 -0400178 old_head = clib_atomic_load_acq_n (&fss->free_chunks[fl_index]);
Florin Coras014dba32021-03-31 19:36:49 -0700179
180 do
181 {
182 tail->next = old_head & FS_CL_HEAD_MASK;
183 new_head = headsp + ((old_head + FS_CL_HEAD_TINC) & FS_CL_HEAD_TMASK);
184 }
Florin Coras324d1612021-06-02 11:17:29 -0700185 while (!__atomic_compare_exchange (&fss->free_chunks[fl_index], &old_head,
186 &new_head, 0 /* weak */, __ATOMIC_RELEASE,
187 __ATOMIC_ACQUIRE));
Florin Coras473c8462020-11-16 18:11:51 -0800188}
189
190static svm_fifo_chunk_t *
Florin Corasaf588822020-12-09 12:51:13 -0800191fss_chunk_free_list_pop (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss,
192 u32 fl_index)
Florin Coras473c8462020-11-16 18:11:51 -0800193{
Florin Coras014dba32021-03-31 19:36:49 -0700194 fs_sptr_t old_head, new_head;
Florin Coras473c8462020-11-16 18:11:51 -0800195 svm_fifo_chunk_t *c;
196
197 ASSERT (fss_chunk_fl_index_is_valid (fss, fl_index));
198
Dave Wallace5c520912021-05-27 19:44:50 -0400199 old_head = clib_atomic_load_acq_n (&fss->free_chunks[fl_index]);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800200
Florin Coras014dba32021-03-31 19:36:49 -0700201 /* Lock-free stacks are affected by ABA if a side allocates a chunk and
202 * shortly thereafter frees it. To circumvent that, reuse the upper bits
203 * of the head of the list shared pointer, i.e., offset to where the chunk
204 * is, as a tag. The tag is incremented with each push/pop operation and
205 * therefore collisions can only happen if an element is popped and pushed
206 * exactly after a complete wrap of the tag (16 bits). It's unlikely either
207 * of the sides will be descheduled for that long */
208 do
Florin Corasd01d2ce2020-11-17 18:42:38 -0800209 {
Florin Coras014dba32021-03-31 19:36:49 -0700210 if (!(old_head & FS_CL_HEAD_MASK))
211 return 0;
212 c = fs_chunk_ptr (fsh, old_head & FS_CL_HEAD_MASK);
213 new_head = c->next + ((old_head + FS_CL_HEAD_TINC) & FS_CL_HEAD_TMASK);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800214 }
Florin Coras324d1612021-06-02 11:17:29 -0700215 while (!__atomic_compare_exchange (&fss->free_chunks[fl_index], &old_head,
216 &new_head, 0 /* weak */, __ATOMIC_RELEASE,
217 __ATOMIC_ACQUIRE));
Florin Corasd01d2ce2020-11-17 18:42:38 -0800218
Florin Coras473c8462020-11-16 18:11:51 -0800219 return c;
220}
221
Florin Coras17672aa2020-12-29 16:55:32 -0800222static void
223fss_fifo_free_list_push (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss,
224 svm_fifo_shared_t *sf)
225{
226 sf->next = fss->free_fifos;
227 fss->free_fifos = fs_sptr (fsh, sf);
228}
229
230static void
231fss_fifo_free_list_push_list (fifo_segment_header_t *fsh,
232 fifo_segment_slice_t *fss,
233 svm_fifo_shared_t *head, svm_fifo_shared_t *tail)
234{
235 tail->next = fss->free_fifos;
236 fss->free_fifos = fs_sptr (fsh, head);
237}
238
239svm_fifo_shared_t *
240fss_fifo_free_list_pop (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss)
241{
242 svm_fifo_shared_t *sf;
243 sf = fs_ptr (fsh, fss->free_fifos);
244 fss->free_fifos = sf->next;
245 return sf;
246}
247
Florin Coras473c8462020-11-16 18:11:51 -0800248static inline void
Florin Coras1f952d32020-12-09 19:43:21 -0800249pfss_fifo_add_active_list (fifo_slice_private_t *pfss, svm_fifo_t *f)
Florin Coras473c8462020-11-16 18:11:51 -0800250{
Florin Coras1f952d32020-12-09 19:43:21 -0800251 if (pfss->active_fifos)
Florin Coras473c8462020-11-16 18:11:51 -0800252 {
Florin Coras1f952d32020-12-09 19:43:21 -0800253 pfss->active_fifos->prev = f;
254 f->next = pfss->active_fifos;
Florin Coras473c8462020-11-16 18:11:51 -0800255 }
Florin Coras1f952d32020-12-09 19:43:21 -0800256 pfss->active_fifos = f;
Florin Coras473c8462020-11-16 18:11:51 -0800257}
258
259static inline void
Florin Coras1f952d32020-12-09 19:43:21 -0800260pfss_fifo_del_active_list (fifo_slice_private_t *pfss, svm_fifo_t *f)
Florin Coras473c8462020-11-16 18:11:51 -0800261{
262 if (f->flags & SVM_FIFO_F_LL_TRACKED)
263 {
264 if (f->prev)
265 f->prev->next = f->next;
266 else
Florin Coras1f952d32020-12-09 19:43:21 -0800267 pfss->active_fifos = f->next;
Florin Coras473c8462020-11-16 18:11:51 -0800268 if (f->next)
269 f->next->prev = f->prev;
270 }
271}
272
Florin Corasd01d2ce2020-11-17 18:42:38 -0800273static inline uword
274fss_fl_chunk_bytes (fifo_segment_slice_t * fss)
275{
276 return clib_atomic_load_relax_n (&fss->n_fl_chunk_bytes);
277}
278
279static inline void
280fss_fl_chunk_bytes_add (fifo_segment_slice_t * fss, uword size)
281{
282 clib_atomic_fetch_add_relax (&fss->n_fl_chunk_bytes, size);
283}
284
285static inline void
286fss_fl_chunk_bytes_sub (fifo_segment_slice_t * fss, uword size)
287{
288 clib_atomic_fetch_sub_relax (&fss->n_fl_chunk_bytes, size);
289}
290
Florin Corasf9d4ab42019-05-11 16:55:53 -0700291/**
Florin Coras88001c62019-04-24 14:44:46 -0700292 * Initialize fifo segment shared header
293 */
294int
295fifo_segment_init (fifo_segment_t * fs)
296{
Florin Corasc547e912020-12-08 17:50:45 -0800297 u32 align = 8, offset = 2 * 4096, slices_sz, i;
Florin Coras4b8011e2020-12-07 19:38:23 -0800298 uword max_fifo, seg_start, seg_sz;
Florin Coras88001c62019-04-24 14:44:46 -0700299 fifo_segment_header_t *fsh;
300 ssvm_shared_header_t *sh;
Florin Coras213b1bb2020-12-07 14:33:58 -0800301 void *seg_data;
Florin Coras88001c62019-04-24 14:44:46 -0700302
Florin Coras213b1bb2020-12-07 14:33:58 -0800303 /* TODO remove ssvm heap entirely */
Florin Coras88001c62019-04-24 14:44:46 -0700304 sh = fs->ssvm.sh;
Florin Coras88001c62019-04-24 14:44:46 -0700305
Florin Coras213b1bb2020-12-07 14:33:58 -0800306 seg_data = (u8 *) sh + offset;
Florin Coras4b8011e2020-12-07 19:38:23 -0800307 seg_sz = sh->ssvm_size - offset;
308
309 fs->n_slices = clib_max (fs->n_slices, 1);
310 slices_sz = sizeof (fifo_segment_slice_t) * fs->n_slices;
Florin Coras213b1bb2020-12-07 14:33:58 -0800311
312 seg_start = round_pow2_u64 (pointer_to_uword (seg_data), align);
313 fsh = uword_to_pointer (seg_start, void *);
Florin Corasee5cd4e2021-02-11 08:44:23 -0800314 CLIB_MEM_UNPOISON (fsh, seg_sz);
Florin Coras4b8011e2020-12-07 19:38:23 -0800315 memset (fsh, 0, sizeof (*fsh) + slices_sz);
Florin Coras213b1bb2020-12-07 14:33:58 -0800316
Florin Coras4b8011e2020-12-07 19:38:23 -0800317 fsh->byte_index = sizeof (*fsh) + slices_sz;
318 fsh->max_byte_index = seg_sz;
Florin Coras62ddc032019-12-08 18:30:42 -0800319 fsh->n_slices = fs->n_slices;
Florin Coras4b8011e2020-12-07 19:38:23 -0800320 max_fifo = clib_min ((seg_sz - slices_sz) / 2, FIFO_SEGMENT_MAX_FIFO_SIZE);
321 fsh->max_log2_fifo_size = min_log2 (max_fifo);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000322 fsh->n_cached_bytes = 0;
Florin Coras213b1bb2020-12-07 14:33:58 -0800323 fsh->n_reserved_bytes = fsh->byte_index;
Florin Coras80b74252021-01-27 18:08:25 -0800324 fsh->start_byte_index = fsh->byte_index;
Florin Coras4b8011e2020-12-07 19:38:23 -0800325 ASSERT (fsh->max_byte_index <= sh->ssvm_size - offset);
326
327 fs->max_byte_index = fsh->max_byte_index;
Florin Coras14f066e2020-12-10 18:52:40 -0800328 fs->h = fsh;
329 sh->opaque[0] = (void *) ((u8 *) fsh - (u8 *) fs->ssvm.sh);
330
331 /* Allow random offsets */
332 fs->ssvm.sh->ssvm_va = 0;
Florin Coras4b8011e2020-12-07 19:38:23 -0800333
Florin Corasc547e912020-12-08 17:50:45 -0800334 vec_validate (fs->slices, fs->n_slices - 1);
335 for (i = 0; i < fs->n_slices; i++)
336 fs->slices[i].fifos =
337 clib_mem_bulk_init (sizeof (svm_fifo_t), CLIB_CACHE_LINE_BYTES, 32);
338
Florin Coras88001c62019-04-24 14:44:46 -0700339 sh->ready = 1;
340 return (0);
341}
342
343/**
Florin Coras88001c62019-04-24 14:44:46 -0700344 * Create a fifo segment and initialize as master
345 */
346int
347fifo_segment_create (fifo_segment_main_t * sm, fifo_segment_create_args_t * a)
348{
Florin Corasf9d4ab42019-05-11 16:55:53 -0700349 fifo_segment_t *fs;
350 uword baseva;
Florin Coras88001c62019-04-24 14:44:46 -0700351 int rv;
352
Florin Coras88001c62019-04-24 14:44:46 -0700353 /* Allocate a fresh segment */
Florin Corasf9d4ab42019-05-11 16:55:53 -0700354 pool_get_zero (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700355
Florin Corasf9d4ab42019-05-11 16:55:53 -0700356 baseva = a->segment_type == SSVM_SEGMENT_PRIVATE ? ~0ULL : sm->next_baseva;
357 fs->ssvm.ssvm_size = a->segment_size;
Florin Coras5220a262020-09-29 18:11:24 -0700358 fs->ssvm.is_server = 1;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700359 fs->ssvm.my_pid = getpid ();
360 fs->ssvm.name = format (0, "%s%c", a->segment_name, 0);
361 fs->ssvm.requested_va = baseva;
Florin Coras88001c62019-04-24 14:44:46 -0700362
Florin Coras5220a262020-09-29 18:11:24 -0700363 if ((rv = ssvm_server_init (&fs->ssvm, a->segment_type)))
Florin Coras88001c62019-04-24 14:44:46 -0700364 {
Florin Corasf9d4ab42019-05-11 16:55:53 -0700365 pool_put (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700366 return (rv);
367 }
368
369 /* Note: requested_va updated due to seg base addr randomization */
Florin Corasf9d4ab42019-05-11 16:55:53 -0700370 sm->next_baseva = fs->ssvm.sh->ssvm_va + fs->ssvm.ssvm_size;
Florin Coras88001c62019-04-24 14:44:46 -0700371
Florin Corasf9d4ab42019-05-11 16:55:53 -0700372 fifo_segment_init (fs);
373 vec_add1 (a->new_segment_indices, fs - sm->segments);
Florin Coras88001c62019-04-24 14:44:46 -0700374 return (0);
375}
376
377/**
378 * Attach as slave to a fifo segment
379 */
380int
381fifo_segment_attach (fifo_segment_main_t * sm, fifo_segment_create_args_t * a)
382{
Florin Coras4b8011e2020-12-07 19:38:23 -0800383 fifo_segment_header_t *fsh;
Florin Coras62ddc032019-12-08 18:30:42 -0800384 fifo_segment_t *fs;
Florin Coras88001c62019-04-24 14:44:46 -0700385 int rv;
386
Florin Coras62ddc032019-12-08 18:30:42 -0800387 pool_get_zero (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700388
Florin Coras62ddc032019-12-08 18:30:42 -0800389 fs->ssvm.ssvm_size = a->segment_size;
390 fs->ssvm.my_pid = getpid ();
391 fs->ssvm.name = format (0, "%s%c", a->segment_name, 0);
Florin Coras14f066e2020-12-10 18:52:40 -0800392 fs->ssvm.requested_va = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700393 if (a->segment_type == SSVM_SEGMENT_MEMFD)
Florin Coras62ddc032019-12-08 18:30:42 -0800394 fs->ssvm.fd = a->memfd_fd;
Florin Coras88001c62019-04-24 14:44:46 -0700395 else
Florin Coras62ddc032019-12-08 18:30:42 -0800396 fs->ssvm.attach_timeout = sm->timeout_in_seconds;
Florin Coras88001c62019-04-24 14:44:46 -0700397
Florin Coras5220a262020-09-29 18:11:24 -0700398 if ((rv = ssvm_client_init (&fs->ssvm, a->segment_type)))
Florin Coras88001c62019-04-24 14:44:46 -0700399 {
Florin Coras14f066e2020-12-10 18:52:40 -0800400 pool_put (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700401 return (rv);
402 }
403
Florin Coras4b8011e2020-12-07 19:38:23 -0800404 /* Probably a segment without fifos */
Florin Coras14f066e2020-12-10 18:52:40 -0800405 if (!fs->ssvm.sh->opaque[0])
Florin Coras4b8011e2020-12-07 19:38:23 -0800406 goto done;
407
Florin Coras14f066e2020-12-10 18:52:40 -0800408 fsh = fs->h = (void *) fs->ssvm.sh + (uword) fs->ssvm.sh->opaque[0];
Florin Coras4b8011e2020-12-07 19:38:23 -0800409 fs->max_byte_index = fsh->max_byte_index;
Florin Corasc547e912020-12-08 17:50:45 -0800410 vec_validate (fs->slices, 0);
411 fs->slices[0].fifos =
412 clib_mem_bulk_init (sizeof (svm_fifo_t), CLIB_CACHE_LINE_BYTES, 32);
Florin Coras4b8011e2020-12-07 19:38:23 -0800413
414done:
Florin Coras62ddc032019-12-08 18:30:42 -0800415 vec_add1 (a->new_segment_indices, fs - sm->segments);
Florin Coras88001c62019-04-24 14:44:46 -0700416 return (0);
417}
418
419void
420fifo_segment_delete (fifo_segment_main_t * sm, fifo_segment_t * s)
421{
Florin Corasc547e912020-12-08 17:50:45 -0800422 fifo_segment_cleanup (s);
Florin Coras88001c62019-04-24 14:44:46 -0700423 ssvm_delete (&s->ssvm);
424 clib_memset (s, 0xfe, sizeof (*s));
425 pool_put (sm->segments, s);
426}
427
428u32
429fifo_segment_index (fifo_segment_main_t * sm, fifo_segment_t * s)
430{
431 return s - sm->segments;
432}
433
Florin Coras88001c62019-04-24 14:44:46 -0700434fifo_segment_t *
435fifo_segment_get_segment (fifo_segment_main_t * sm, u32 segment_index)
436{
437 return pool_elt_at_index (sm->segments, segment_index);
438}
439
Florin Corascbb5e822021-02-20 10:42:22 -0800440fifo_segment_t *
441fifo_segment_get_segment_if_valid (fifo_segment_main_t *sm, u32 segment_index)
442{
443 if (pool_is_free_index (sm->segments, segment_index))
444 return 0;
445 return pool_elt_at_index (sm->segments, segment_index);
446}
447
Florin Coras88001c62019-04-24 14:44:46 -0700448void
449fifo_segment_info (fifo_segment_t * seg, char **address, size_t * size)
450{
Florin Coras404b8a32019-05-09 12:08:06 -0700451 *address = (char *) seg->ssvm.sh->ssvm_va;
452 *size = seg->ssvm.ssvm_size;
Florin Coras88001c62019-04-24 14:44:46 -0700453}
454
455void
456fifo_segment_main_init (fifo_segment_main_t * sm, u64 baseva,
457 u32 timeout_in_seconds)
458{
459 sm->next_baseva = baseva;
460 sm->timeout_in_seconds = timeout_in_seconds;
461}
462
Florin Corasf9d4ab42019-05-11 16:55:53 -0700463static inline u32
464fs_freelist_for_size (u32 size)
Florin Coras88001c62019-04-24 14:44:46 -0700465{
Florin Corasf22f4e52019-12-19 16:10:58 -0800466 if (PREDICT_FALSE (size < FIFO_SEGMENT_MIN_FIFO_SIZE))
467 return 0;
Florin Coras4b8011e2020-12-07 19:38:23 -0800468 return clib_min (max_log2 (size) - FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE,
469 FS_CHUNK_VEC_LEN - 1);
Florin Coras88001c62019-04-24 14:44:46 -0700470}
471
Florin Corasf9d4ab42019-05-11 16:55:53 -0700472static inline u32
473fs_freelist_index_to_size (u32 fl_index)
474{
Florin Coras62ddc032019-12-08 18:30:42 -0800475 return 1 << (fl_index + FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700476}
477
Florin Coras88001c62019-04-24 14:44:46 -0700478static inline int
Florin Coras62ddc032019-12-08 18:30:42 -0800479fs_chunk_size_is_valid (fifo_segment_header_t * fsh, u32 size)
Florin Coras88001c62019-04-24 14:44:46 -0700480{
481 /*
482 * 4K minimum. It's not likely that anything good will happen
483 * with a smaller FIFO.
484 */
Florin Coras4b8011e2020-12-07 19:38:23 -0800485 return size >= FIFO_SEGMENT_MIN_FIFO_SIZE &&
486 size <= (1ULL << fsh->max_log2_fifo_size);
Florin Coras88001c62019-04-24 14:44:46 -0700487}
488
Florin Coras8e755a12020-02-06 16:59:31 +0000489svm_fifo_chunk_t *
490fs_try_alloc_multi_chunk (fifo_segment_header_t * fsh,
491 fifo_segment_slice_t * fss, u32 data_bytes)
492{
493 u32 fl_index, fl_size, n_alloc = 0, req_bytes = data_bytes;
494 svm_fifo_chunk_t *c, *first = 0, *next;
495
496 fl_index = fs_freelist_for_size (req_bytes);
497 if (fl_index > 0)
498 fl_index -= 1;
499
500 fl_size = fs_freelist_index_to_size (fl_index);
501
502 while (req_bytes)
503 {
Florin Corasaf588822020-12-09 12:51:13 -0800504 c = fss_chunk_free_list_pop (fsh, fss, fl_index);
Florin Coras8e755a12020-02-06 16:59:31 +0000505 if (c)
506 {
Florin Corasaf588822020-12-09 12:51:13 -0800507 c->next = fs_chunk_sptr (fsh, first);
Florin Coras8e755a12020-02-06 16:59:31 +0000508 first = c;
509 n_alloc += fl_size;
510 req_bytes -= clib_min (fl_size, req_bytes);
511 }
512 else
513 {
514 /* Failed to allocate with smaller chunks */
515 if (fl_index == 0)
516 {
Florin Coras473c8462020-11-16 18:11:51 -0800517 /* Free all chunks if any allocated */
Florin Coras8e755a12020-02-06 16:59:31 +0000518 c = first;
519 while (c)
520 {
521 fl_index = fs_freelist_for_size (c->length);
Florin Corasaf588822020-12-09 12:51:13 -0800522 next = fs_chunk_ptr (fsh, c->next);
523 fss_chunk_free_list_push (fsh, fss, fl_index, c);
Florin Coras8e755a12020-02-06 16:59:31 +0000524 c = next;
525 }
526 n_alloc = 0;
527 first = 0;
Florin Coras473c8462020-11-16 18:11:51 -0800528 /* As last attempt, try allocating a chunk larger than
529 * the requested size, if possible */
530 fl_index = fs_freelist_for_size (data_bytes) + 1;
531 if (!fss_chunk_fl_index_is_valid (fss, fl_index))
532 return 0;
Florin Corasaf588822020-12-09 12:51:13 -0800533 first = fss_chunk_free_list_pop (fsh, fss, fl_index);
Florin Coras473c8462020-11-16 18:11:51 -0800534 if (first)
Florin Coras8e755a12020-02-06 16:59:31 +0000535 {
Florin Coras473c8462020-11-16 18:11:51 -0800536 first->next = 0;
537 n_alloc = fs_freelist_index_to_size (fl_index);
538 goto done;
Florin Coras8e755a12020-02-06 16:59:31 +0000539 }
Florin Coras8e755a12020-02-06 16:59:31 +0000540 return 0;
541 }
542 fl_index -= 1;
543 fl_size = fl_size >> 1;
544 }
545 }
546
Florin Coras473c8462020-11-16 18:11:51 -0800547done:
Florin Corasd01d2ce2020-11-17 18:42:38 -0800548 fss_fl_chunk_bytes_sub (fss, n_alloc);
Florin Coras8e755a12020-02-06 16:59:31 +0000549 fsh_cached_bytes_sub (fsh, n_alloc);
550 return first;
551}
552
Florin Corasf9d4ab42019-05-11 16:55:53 -0700553static int
Florin Coras473c8462020-11-16 18:11:51 -0800554fsh_try_alloc_fifo_hdr_batch (fifo_segment_header_t * fsh,
555 fifo_segment_slice_t * fss, u32 batch_size)
Florin Coras8e755a12020-02-06 16:59:31 +0000556{
Florin Coras17672aa2020-12-29 16:55:32 -0800557 svm_fifo_shared_t *f, *head = 0, *tail;
Florin Coras36a0c4d2020-01-31 08:28:02 -0800558 uword size;
Florin Corascefd5d82019-05-05 13:19:57 -0700559 u8 *fmem;
560 int i;
Florin Coras88001c62019-04-24 14:44:46 -0700561
Benoît Gannef23b1512020-11-25 15:06:01 +0100562 ASSERT (batch_size != 0);
563
Florin Coras473c8462020-11-16 18:11:51 -0800564 size = (uword) sizeof (*f) * batch_size;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700565
Florin Coras213b1bb2020-12-07 14:33:58 -0800566 fmem = fsh_alloc_aligned (fsh, size, CLIB_CACHE_LINE_BYTES);
Florin Corascefd5d82019-05-05 13:19:57 -0700567 if (fmem == 0)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700568 return -1;
Florin Coras88001c62019-04-24 14:44:46 -0700569
Florin Coras635f5062020-04-28 20:40:57 +0000570 /* Carve fifo hdr space */
Florin Coras17672aa2020-12-29 16:55:32 -0800571 tail = f = (svm_fifo_shared_t *) fmem;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700572 for (i = 0; i < batch_size; i++)
Florin Coras88001c62019-04-24 14:44:46 -0700573 {
Florin Coras17672aa2020-12-29 16:55:32 -0800574 clib_memset (f, 0, sizeof (*f));
575 f->next = fs_sptr (fsh, head);
576 head = f;
Florin Coras635f5062020-04-28 20:40:57 +0000577 fmem += sizeof (*f);
Florin Coras17672aa2020-12-29 16:55:32 -0800578 f = (svm_fifo_shared_t *) fmem;
Florin Coras635f5062020-04-28 20:40:57 +0000579 }
580
Florin Coras17672aa2020-12-29 16:55:32 -0800581 fss_fifo_free_list_push_list (fsh, fss, head, tail);
582
Florin Coras473c8462020-11-16 18:11:51 -0800583 return 0;
584}
585
586static int
587fsh_try_alloc_chunk_batch (fifo_segment_header_t * fsh,
588 fifo_segment_slice_t * fss,
589 u32 fl_index, u32 batch_size)
590{
Florin Coras473c8462020-11-16 18:11:51 -0800591 svm_fifo_chunk_t *c, *head = 0, *tail;
Florin Coras79b3f8c2020-11-20 07:34:53 -0800592 uword size, total_chunk_bytes;
593 u32 rounded_data_size;
Florin Coras473c8462020-11-16 18:11:51 -0800594 u8 *cmem;
595 int i;
596
Benoît Gannef23b1512020-11-25 15:06:01 +0100597 ASSERT (batch_size != 0);
598
Florin Coras473c8462020-11-16 18:11:51 -0800599 rounded_data_size = fs_freelist_index_to_size (fl_index);
Florin Coras79b3f8c2020-11-20 07:34:53 -0800600 total_chunk_bytes = (uword) batch_size *rounded_data_size;
Florin Coras473c8462020-11-16 18:11:51 -0800601 size = (uword) (sizeof (*c) + rounded_data_size) * batch_size;
602
Florin Coras213b1bb2020-12-07 14:33:58 -0800603 cmem = fsh_alloc_aligned (fsh, size, 8 /* chunk hdr is 24B */);
Florin Coras473c8462020-11-16 18:11:51 -0800604 if (cmem == 0)
605 return -1;
606
607 /* Carve fifo + chunk space */
608 tail = c = (svm_fifo_chunk_t *) cmem;
Florin Coras635f5062020-04-28 20:40:57 +0000609 for (i = 0; i < batch_size; i++)
610 {
Florin Corascefd5d82019-05-05 13:19:57 -0700611 c->start_byte = 0;
612 c->length = rounded_data_size;
Florin Corasaf588822020-12-09 12:51:13 -0800613 c->next = fs_chunk_sptr (fsh, head);
Florin Coras473c8462020-11-16 18:11:51 -0800614 head = c;
615 cmem += sizeof (*c) + rounded_data_size;
616 c = (svm_fifo_chunk_t *) cmem;
Florin Coras88001c62019-04-24 14:44:46 -0700617 }
Florin Corascefd5d82019-05-05 13:19:57 -0700618
Florin Corasaf588822020-12-09 12:51:13 -0800619 fss_chunk_free_list_push_list (fsh, fss, fl_index, head, tail);
Ryujiro Shibuyad3588722020-03-13 12:45:06 +0000620 fss->num_chunks[fl_index] += batch_size;
Florin Coras79b3f8c2020-11-20 07:34:53 -0800621 fss_fl_chunk_bytes_add (fss, total_chunk_bytes);
622 fsh_cached_bytes_add (fsh, total_chunk_bytes);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700623
624 return 0;
625}
626
Florin Coras473c8462020-11-16 18:11:51 -0800627static int
628fs_try_alloc_fifo_batch (fifo_segment_header_t * fsh,
629 fifo_segment_slice_t * fss,
630 u32 fl_index, u32 batch_size)
631{
632 if (fsh_try_alloc_fifo_hdr_batch (fsh, fss, batch_size))
633 return 0;
634 return fsh_try_alloc_chunk_batch (fsh, fss, fl_index, batch_size);
635}
636
Florin Corasc547e912020-12-08 17:50:45 -0800637static svm_fifo_shared_t *
638fsh_try_alloc_fifo_hdr (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss)
Florin Coras473c8462020-11-16 18:11:51 -0800639{
Florin Coras17672aa2020-12-29 16:55:32 -0800640 svm_fifo_shared_t *sf;
Florin Coras473c8462020-11-16 18:11:51 -0800641
642 if (!fss->free_fifos)
643 {
644 if (fsh_try_alloc_fifo_hdr_batch (fsh, fss,
645 FIFO_SEGMENT_ALLOC_BATCH_SIZE))
646 return 0;
647 }
648
Florin Coras17672aa2020-12-29 16:55:32 -0800649 sf = fss_fifo_free_list_pop (fsh, fss);
650 clib_memset (sf, 0, sizeof (*sf));
651
652 return sf;
Florin Coras473c8462020-11-16 18:11:51 -0800653}
654
655static svm_fifo_chunk_t *
656fsh_try_alloc_chunk (fifo_segment_header_t * fsh,
657 fifo_segment_slice_t * fss, u32 data_bytes)
658{
659 svm_fifo_chunk_t *c;
660 u32 fl_index;
661
662 fl_index = fs_freelist_for_size (data_bytes);
663
664free_list:
Florin Corasaf588822020-12-09 12:51:13 -0800665 c = fss_chunk_free_list_pop (fsh, fss, fl_index);
Florin Coras473c8462020-11-16 18:11:51 -0800666 if (c)
667 {
668 c->next = 0;
Florin Corasd01d2ce2020-11-17 18:42:38 -0800669 fss_fl_chunk_bytes_sub (fss, fs_freelist_index_to_size (fl_index));
Florin Coras473c8462020-11-16 18:11:51 -0800670 fsh_cached_bytes_sub (fsh, fs_freelist_index_to_size (fl_index));
671 }
672 else
673 {
674 u32 chunk_size, batch = FIFO_SEGMENT_ALLOC_BATCH_SIZE;
675 uword n_free;
676
677 chunk_size = fs_freelist_index_to_size (fl_index);
678 n_free = fsh_n_free_bytes (fsh);
679
680 if (chunk_size <= n_free)
681 {
682 batch = chunk_size * batch <= n_free ? batch : 1;
683 if (!fsh_try_alloc_chunk_batch (fsh, fss, fl_index, batch))
684 goto free_list;
685 }
686 /* Failed to allocate larger chunk, try to allocate multi-chunk
687 * that is close to what was actually requested */
Florin Corasd01d2ce2020-11-17 18:42:38 -0800688 if (data_bytes <= fss_fl_chunk_bytes (fss))
Florin Coras473c8462020-11-16 18:11:51 -0800689 {
690 c = fs_try_alloc_multi_chunk (fsh, fss, data_bytes);
691 if (c)
692 goto done;
693 batch = n_free / FIFO_SEGMENT_MIN_FIFO_SIZE;
694 if (!batch || fsh_try_alloc_chunk_batch (fsh, fss, 0, batch))
Florin Coras213b1bb2020-12-07 14:33:58 -0800695 goto done;
Florin Coras473c8462020-11-16 18:11:51 -0800696 }
Florin Corasd01d2ce2020-11-17 18:42:38 -0800697 if (data_bytes <= fss_fl_chunk_bytes (fss) + n_free)
Florin Coras473c8462020-11-16 18:11:51 -0800698 {
699 u32 min_size = FIFO_SEGMENT_MIN_FIFO_SIZE;
Florin Coras0d31b9c2021-05-08 15:29:50 -0700700 if (n_free < min_size)
701 goto done;
Florin Corasd01d2ce2020-11-17 18:42:38 -0800702 batch = (data_bytes - fss_fl_chunk_bytes (fss)) / min_size;
Florin Coras473c8462020-11-16 18:11:51 -0800703 batch = clib_min (batch + 1, n_free / min_size);
704 if (fsh_try_alloc_chunk_batch (fsh, fss, 0, batch))
Florin Coras213b1bb2020-12-07 14:33:58 -0800705 goto done;
Florin Coras473c8462020-11-16 18:11:51 -0800706 c = fs_try_alloc_multi_chunk (fsh, fss, data_bytes);
707 }
708 }
709
710done:
711
712 return c;
713}
714
Florin Corasf9d4ab42019-05-11 16:55:53 -0700715/**
716 * Try to allocate new fifo
717 *
718 * Tries the following steps in order:
719 * - grab fifo and chunk from freelists
720 * - batch fifo and chunk allocation
721 * - single fifo allocation
722 * - grab multiple fifo chunks from freelists
723 */
Florin Corasc547e912020-12-08 17:50:45 -0800724static svm_fifo_shared_t *
725fs_try_alloc_fifo (fifo_segment_header_t *fsh, u32 slice_index, u32 data_bytes)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700726{
Florin Corasc547e912020-12-08 17:50:45 -0800727 fifo_segment_slice_t *fss;
Florin Corasd01d2ce2020-11-17 18:42:38 -0800728 u32 fl_index, min_size;
Florin Coras473c8462020-11-16 18:11:51 -0800729 svm_fifo_chunk_t *c;
Florin Corasc547e912020-12-08 17:50:45 -0800730 svm_fifo_shared_t *sf = 0;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700731
Florin Corasc547e912020-12-08 17:50:45 -0800732 fss = fsh_slice_get (fsh, slice_index);
Florin Coras2de9c0f2020-02-02 19:30:39 +0000733 min_size = clib_max ((fsh->pct_first_alloc * data_bytes) / 100, 4096);
734 fl_index = fs_freelist_for_size (min_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700735
Florin Coras473c8462020-11-16 18:11:51 -0800736 if (!fss_chunk_fl_index_is_valid (fss, fl_index))
Florin Coras0e6199d2020-04-17 20:15:22 +0000737 return 0;
738
Florin Corasc547e912020-12-08 17:50:45 -0800739 sf = fsh_try_alloc_fifo_hdr (fsh, fss);
740 if (!sf)
Florin Corasd01d2ce2020-11-17 18:42:38 -0800741 return 0;
Florin Coras8122cc22019-12-18 13:06:41 -0800742
Florin Coras473c8462020-11-16 18:11:51 -0800743 c = fsh_try_alloc_chunk (fsh, fss, min_size);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800744 if (!c)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700745 {
Florin Coras17672aa2020-12-29 16:55:32 -0800746 fss_fifo_free_list_push (fsh, fss, sf);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800747 return 0;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700748 }
Florin Corasf9d4ab42019-05-11 16:55:53 -0700749
Florin Corasaf588822020-12-09 12:51:13 -0800750 sf->start_chunk = fs_chunk_sptr (fsh, c);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800751 while (c->next)
Florin Corasaf588822020-12-09 12:51:13 -0800752 c = fs_chunk_ptr (fsh, c->next);
753 sf->end_chunk = fs_chunk_sptr (fsh, c);
Florin Corasc547e912020-12-08 17:50:45 -0800754 sf->size = data_bytes;
755 sf->slice_index = slice_index;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700756
Florin Corasc547e912020-12-08 17:50:45 -0800757 return sf;
Florin Coras88001c62019-04-24 14:44:46 -0700758}
759
Florin Corasf22f4e52019-12-19 16:10:58 -0800760svm_fifo_chunk_t *
761fsh_alloc_chunk (fifo_segment_header_t * fsh, u32 slice_index, u32 chunk_size)
762{
763 fifo_segment_slice_t *fss;
764 svm_fifo_chunk_t *c;
Florin Corasf22f4e52019-12-19 16:10:58 -0800765
Florin Corasf22f4e52019-12-19 16:10:58 -0800766 fss = fsh_slice_get (fsh, slice_index);
Florin Coras473c8462020-11-16 18:11:51 -0800767 c = fsh_try_alloc_chunk (fsh, fss, chunk_size);
Florin Corasf22f4e52019-12-19 16:10:58 -0800768
769 return c;
770}
771
772static void
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000773fsh_slice_collect_chunks (fifo_segment_header_t * fsh,
Florin Coras9e61d9a2020-02-05 21:13:18 +0000774 fifo_segment_slice_t * fss, svm_fifo_chunk_t * c)
Florin Corasf22f4e52019-12-19 16:10:58 -0800775{
Florin Coras473c8462020-11-16 18:11:51 -0800776 u32 n_collect = 0, fl_index;
Florin Corasf22f4e52019-12-19 16:10:58 -0800777 svm_fifo_chunk_t *next;
Florin Corasf22f4e52019-12-19 16:10:58 -0800778
Florin Coras9e61d9a2020-02-05 21:13:18 +0000779 while (c)
Florin Corasf22f4e52019-12-19 16:10:58 -0800780 {
Benoît Gannedf601ae2020-10-20 14:31:55 +0200781 CLIB_MEM_UNPOISON (c, sizeof (*c));
Florin Corasaf588822020-12-09 12:51:13 -0800782 next = fs_chunk_ptr (fsh, c->next);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000783 fl_index = fs_freelist_for_size (c->length);
Florin Corasaf588822020-12-09 12:51:13 -0800784 fss_chunk_free_list_push (fsh, fss, fl_index, c);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000785 n_collect += fs_freelist_index_to_size (fl_index);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000786 c = next;
Florin Corasf22f4e52019-12-19 16:10:58 -0800787 }
788
Florin Corasd01d2ce2020-11-17 18:42:38 -0800789 fss_fl_chunk_bytes_add (fss, n_collect);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000790 fsh_cached_bytes_add (fsh, n_collect);
Florin Corasf22f4e52019-12-19 16:10:58 -0800791}
792
793void
794fsh_collect_chunks (fifo_segment_header_t * fsh, u32 slice_index,
Florin Coras9e61d9a2020-02-05 21:13:18 +0000795 svm_fifo_chunk_t * c)
Florin Corasf22f4e52019-12-19 16:10:58 -0800796{
797 fifo_segment_slice_t *fss;
798 fss = fsh_slice_get (fsh, slice_index);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000799 fsh_slice_collect_chunks (fsh, fss, c);
Florin Corasf22f4e52019-12-19 16:10:58 -0800800}
801
Florin Corasc547e912020-12-08 17:50:45 -0800802svm_fifo_t *
803fs_fifo_alloc (fifo_segment_t *fs, u32 slice_index)
804{
805 fifo_slice_private_t *pfss = &fs->slices[slice_index];
806 svm_fifo_t *f;
807
808 f = clib_mem_bulk_alloc (pfss->fifos);
809 clib_memset (f, 0, sizeof (*f));
810 return f;
811}
812
813void
Florin Corascbb5e822021-02-20 10:42:22 -0800814fs_fifo_free (fifo_segment_t *fs, svm_fifo_t *f, u32 slice_index)
Florin Corasc547e912020-12-08 17:50:45 -0800815{
Florin Corasc547e912020-12-08 17:50:45 -0800816 fifo_slice_private_t *pfss;
817
Florin Coras5c01dbc2021-02-18 14:43:32 -0800818 if (CLIB_DEBUG)
819 clib_memset (f, 0xfc, sizeof (*f));
820
Florin Corasc547e912020-12-08 17:50:45 -0800821 pfss = &fs->slices[slice_index];
822 clib_mem_bulk_free (pfss->fifos, f);
823}
824
825void
826fifo_segment_cleanup (fifo_segment_t *fs)
827{
828 int slice_index;
Florin Corasb4624182020-12-11 13:58:12 -0800829 svm_msg_q_t *mq = 0;
Florin Corasc547e912020-12-08 17:50:45 -0800830
831 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
832 clib_mem_bulk_destroy (fs->slices[slice_index].fifos);
Florin Corasb4624182020-12-11 13:58:12 -0800833
Florin Corasf1af21c2021-02-26 19:19:11 -0800834 vec_free (fs->slices);
835
Florin Corasb4624182020-12-11 13:58:12 -0800836 vec_foreach (fs->mqs, mq)
Florin Coras8c517c82021-03-30 00:23:54 -0700837 svm_msg_q_cleanup (mq);
Florin Corasb4624182020-12-11 13:58:12 -0800838
839 vec_free (fs->mqs);
Florin Corasc547e912020-12-08 17:50:45 -0800840}
841
Florin Coras88001c62019-04-24 14:44:46 -0700842/**
843 * Allocate fifo in fifo segment
844 */
845svm_fifo_t *
Florin Coras62ddc032019-12-08 18:30:42 -0800846fifo_segment_alloc_fifo_w_slice (fifo_segment_t * fs, u32 slice_index,
847 u32 data_bytes, fifo_segment_ftype_t ftype)
Florin Coras88001c62019-04-24 14:44:46 -0700848{
Florin Coras62ddc032019-12-08 18:30:42 -0800849 fifo_segment_header_t *fsh = fs->h;
Florin Coras1f952d32020-12-09 19:43:21 -0800850 fifo_slice_private_t *pfss;
Florin Coras62ddc032019-12-08 18:30:42 -0800851 fifo_segment_slice_t *fss;
Florin Corasc547e912020-12-08 17:50:45 -0800852 svm_fifo_shared_t *sf;
Florin Coras88001c62019-04-24 14:44:46 -0700853 svm_fifo_t *f = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700854
Florin Coras62ddc032019-12-08 18:30:42 -0800855 ASSERT (slice_index < fs->n_slices);
Florin Coras88001c62019-04-24 14:44:46 -0700856
Florin Coras4b8011e2020-12-07 19:38:23 -0800857 if (PREDICT_FALSE (data_bytes > 1 << fsh->max_log2_fifo_size))
Florin Coras0e6199d2020-04-17 20:15:22 +0000858 return 0;
859
Florin Corasc547e912020-12-08 17:50:45 -0800860 sf = fs_try_alloc_fifo (fsh, slice_index, data_bytes);
861 if (!sf)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700862 goto done;
Florin Coras88001c62019-04-24 14:44:46 -0700863
Florin Corasc547e912020-12-08 17:50:45 -0800864 f = fs_fifo_alloc (fs, slice_index);
865 f->fs_hdr = fsh;
866 f->shr = sf;
Florin Coras62ddc032019-12-08 18:30:42 -0800867
Florin Corascefd5d82019-05-05 13:19:57 -0700868 svm_fifo_init (f, data_bytes);
Florin Coras88001c62019-04-24 14:44:46 -0700869
Florin Corasc547e912020-12-08 17:50:45 -0800870 fss = fsh_slice_get (fsh, slice_index);
Florin Coras1f952d32020-12-09 19:43:21 -0800871 pfss = fs_slice_private_get (fs, slice_index);
Florin Corasc547e912020-12-08 17:50:45 -0800872
Florin Coras88001c62019-04-24 14:44:46 -0700873 /* If rx fifo type add to active fifos list. When cleaning up segment,
874 * we need a list of active sessions that should be disconnected. Since
875 * both rx and tx fifos keep pointers to the session, it's enough to track
876 * only one. */
877 if (ftype == FIFO_SEGMENT_RX_FIFO)
878 {
Florin Coras1f952d32020-12-09 19:43:21 -0800879 pfss_fifo_add_active_list (pfss, f);
Florin Coras88001c62019-04-24 14:44:46 -0700880 f->flags |= SVM_FIFO_F_LL_TRACKED;
Florin Corasf22f4e52019-12-19 16:10:58 -0800881 }
882
Florin Coras62ddc032019-12-08 18:30:42 -0800883 fsh_active_fifos_update (fsh, 1);
Florin Coras06d47752020-03-06 02:23:58 +0000884 fss->virtual_mem += svm_fifo_size (f);
Florin Coras88001c62019-04-24 14:44:46 -0700885
886done:
Florin Coras88001c62019-04-24 14:44:46 -0700887 return (f);
888}
889
Florin Corasc547e912020-12-08 17:50:45 -0800890svm_fifo_t *
Florin Coras14f066e2020-12-10 18:52:40 -0800891fifo_segment_alloc_fifo_w_offset (fifo_segment_t *fs, uword offset)
Florin Corasc547e912020-12-08 17:50:45 -0800892{
893 svm_fifo_t *f = fs_fifo_alloc (fs, 0);
Florin Coras14f066e2020-12-10 18:52:40 -0800894 svm_fifo_shared_t *sf;
895
896 sf = (svm_fifo_shared_t *) ((u8 *) fs->h + offset);
Florin Corasc547e912020-12-08 17:50:45 -0800897 f->fs_hdr = fs->h;
898 f->shr = sf;
899
900 f->ooos_list_head = OOO_SEGMENT_INVALID_INDEX;
901 f->segment_index = SVM_FIFO_INVALID_INDEX;
902 f->refcnt = 1;
903 return f;
904}
905
Florin Coras88001c62019-04-24 14:44:46 -0700906/**
907 * Free fifo allocated in fifo segment
908 */
909void
Florin Corasb095a3c2019-04-25 12:58:46 -0700910fifo_segment_free_fifo (fifo_segment_t * fs, svm_fifo_t * f)
Florin Coras88001c62019-04-24 14:44:46 -0700911{
Florin Coras62ddc032019-12-08 18:30:42 -0800912 fifo_segment_header_t *fsh = fs->h;
Florin Coras1f952d32020-12-09 19:43:21 -0800913 fifo_slice_private_t *pfss;
Florin Coras62ddc032019-12-08 18:30:42 -0800914 fifo_segment_slice_t *fss;
Florin Corasc547e912020-12-08 17:50:45 -0800915 svm_fifo_shared_t *sf;
Florin Coras88001c62019-04-24 14:44:46 -0700916
917 ASSERT (f->refcnt > 0);
918
919 if (--f->refcnt > 0)
920 return;
921
Florin Corasc547e912020-12-08 17:50:45 -0800922 /*
923 * Cleanup shared state
924 */
925
926 sf = f->shr;
927 fss = fsh_slice_get (fsh, sf->slice_index);
Florin Coras1f952d32020-12-09 19:43:21 -0800928 pfss = fs_slice_private_get (fs, sf->slice_index);
Florin Corasc547e912020-12-08 17:50:45 -0800929
930 /* Free fifo chunks */
Florin Corasaf588822020-12-09 12:51:13 -0800931 fsh_slice_collect_chunks (fsh, fss, fs_chunk_ptr (fsh, f->shr->start_chunk));
Florin Corasc547e912020-12-08 17:50:45 -0800932
933 sf->start_chunk = sf->end_chunk = 0;
934 sf->head_chunk = sf->tail_chunk = 0;
935
936 /* Add to free list */
Florin Coras17672aa2020-12-29 16:55:32 -0800937 fss_fifo_free_list_push (fsh, fss, sf);
Florin Corasc547e912020-12-08 17:50:45 -0800938
939 fss->virtual_mem -= svm_fifo_size (f);
940
941 /*
942 * Cleanup private state
943 */
Florin Coras88001c62019-04-24 14:44:46 -0700944
945 /* Remove from active list. Only rx fifos are tracked */
946 if (f->flags & SVM_FIFO_F_LL_TRACKED)
947 {
Florin Coras1f952d32020-12-09 19:43:21 -0800948 pfss_fifo_del_active_list (pfss, f);
Florin Coras88001c62019-04-24 14:44:46 -0700949 f->flags &= ~SVM_FIFO_F_LL_TRACKED;
950 }
951
Florin Corasf22f4e52019-12-19 16:10:58 -0800952 svm_fifo_free_chunk_lookup (f);
Florin Corasb095a3c2019-04-25 12:58:46 -0700953 svm_fifo_free_ooo_data (f);
954
Florin Coras88001c62019-04-24 14:44:46 -0700955 if (CLIB_DEBUG)
956 {
Florin Corasc547e912020-12-08 17:50:45 -0800957 sf->master_session_index = ~0;
Florin Coras88001c62019-04-24 14:44:46 -0700958 f->master_thread_index = ~0;
959 }
960
Florin Corasc547e912020-12-08 17:50:45 -0800961 f->ooo_enq = f->ooo_deq = 0;
Florin Coras06d47752020-03-06 02:23:58 +0000962 f->prev = 0;
Florin Corasc547e912020-12-08 17:50:45 -0800963
Florin Corascbb5e822021-02-20 10:42:22 -0800964 fs_fifo_free (fs, f, f->shr->slice_index);
Florin Coras06d47752020-03-06 02:23:58 +0000965
Florin Coras62ddc032019-12-08 18:30:42 -0800966 fsh_active_fifos_update (fsh, -1);
Florin Coras88001c62019-04-24 14:44:46 -0700967}
968
Florin Coras6d7552c2020-04-09 01:49:45 +0000969void
Florin Corascbb5e822021-02-20 10:42:22 -0800970fifo_segment_free_client_fifo (fifo_segment_t *fs, svm_fifo_t *f)
971{
972 fs_fifo_free (fs, f, 0 /* clients attach fifos in slice 0 */);
973}
974
975void
Florin Coras0bc78d82021-01-09 14:34:01 -0800976fifo_segment_detach_fifo (fifo_segment_t *fs, svm_fifo_t **f)
Florin Coras6d7552c2020-04-09 01:49:45 +0000977{
Florin Coras1f952d32020-12-09 19:43:21 -0800978 fifo_slice_private_t *pfss;
Florin Coras6d7552c2020-04-09 01:49:45 +0000979 fifo_segment_slice_t *fss;
Florin Coras0bc78d82021-01-09 14:34:01 -0800980 svm_fifo_t *of = *f;
Florin Coras255554f2021-02-18 21:35:23 -0800981 u32 slice_index;
Florin Coras6d7552c2020-04-09 01:49:45 +0000982
Florin Coras0bc78d82021-01-09 14:34:01 -0800983 slice_index = of->master_thread_index;
984 fss = fsh_slice_get (fs->h, slice_index);
985 pfss = fs_slice_private_get (fs, slice_index);
986 fss->virtual_mem -= svm_fifo_size (of);
987 if (of->flags & SVM_FIFO_F_LL_TRACKED)
988 pfss_fifo_del_active_list (pfss, of);
Florin Coras6d7552c2020-04-09 01:49:45 +0000989
Florin Coras255554f2021-02-18 21:35:23 -0800990 /* Collect chunks that were provided in return for those detached */
991 fsh_slice_collect_chunks (fs->h, fss, of->chunks_at_attach);
992 of->chunks_at_attach = 0;
Florin Coras0bc78d82021-01-09 14:34:01 -0800993
Florin Coras9c499e32021-02-25 09:57:04 -0800994 /* Collect hdr that was provided in return for the detached */
995 fss_fifo_free_list_push (fs->h, fss, of->hdr_at_attach);
996 of->hdr_at_attach = 0;
997
Florin Coras0bc78d82021-01-09 14:34:01 -0800998 clib_mem_bulk_free (pfss->fifos, *f);
999 *f = 0;
Florin Coras6d7552c2020-04-09 01:49:45 +00001000}
1001
1002void
Florin Coras0bc78d82021-01-09 14:34:01 -08001003fifo_segment_attach_fifo (fifo_segment_t *fs, svm_fifo_t **f, u32 slice_index)
Florin Coras6d7552c2020-04-09 01:49:45 +00001004{
Florin Coras255554f2021-02-18 21:35:23 -08001005 svm_fifo_chunk_t *c, *nc, *pc = 0;
Florin Coras1f952d32020-12-09 19:43:21 -08001006 fifo_slice_private_t *pfss;
Florin Coras6d7552c2020-04-09 01:49:45 +00001007 fifo_segment_slice_t *fss;
Florin Coras0bc78d82021-01-09 14:34:01 -08001008 svm_fifo_t *nf, *of;
Florin Coras6d7552c2020-04-09 01:49:45 +00001009
Florin Coras0bc78d82021-01-09 14:34:01 -08001010 nf = fs_fifo_alloc (fs, slice_index);
1011 clib_memcpy_fast (nf, *f, sizeof (*nf));
Florin Coras6d7552c2020-04-09 01:49:45 +00001012
Florin Coras0bc78d82021-01-09 14:34:01 -08001013 fss = fsh_slice_get (fs->h, slice_index);
1014 pfss = fs_slice_private_get (fs, slice_index);
1015 fss->virtual_mem += svm_fifo_size (nf);
Florin Coras5c01dbc2021-02-18 14:43:32 -08001016 nf->next = nf->prev = 0;
Florin Coras0bc78d82021-01-09 14:34:01 -08001017 if (nf->flags & SVM_FIFO_F_LL_TRACKED)
1018 pfss_fifo_add_active_list (pfss, nf);
1019
Florin Coras9c499e32021-02-25 09:57:04 -08001020 /* Allocate shared hdr and chunks to be collected at detach in return
1021 * for those that are being attached now */
Florin Coras0bc78d82021-01-09 14:34:01 -08001022 of = *f;
Florin Coras9c499e32021-02-25 09:57:04 -08001023 of->hdr_at_attach = fsh_try_alloc_fifo_hdr (fs->h, fss);
Florin Coras0bc78d82021-01-09 14:34:01 -08001024
1025 c = fs_chunk_ptr (fs->h, nf->shr->start_chunk);
Florin Coras255554f2021-02-18 21:35:23 -08001026 of->chunks_at_attach = pc = fsh_try_alloc_chunk (fs->h, fss, c->length);
Florin Coras255554f2021-02-18 21:35:23 -08001027
Florin Coras9c499e32021-02-25 09:57:04 -08001028 while ((c = fs_chunk_ptr (fs->h, c->next)))
Florin Coras6d7552c2020-04-09 01:49:45 +00001029 {
Florin Coras255554f2021-02-18 21:35:23 -08001030 nc = fsh_try_alloc_chunk (fs->h, fss, c->length);
1031 pc->next = fs_chunk_sptr (fs->h, nc);
1032 pc = nc;
Florin Coras6d7552c2020-04-09 01:49:45 +00001033 }
Florin Coras0bc78d82021-01-09 14:34:01 -08001034
1035 nf->shr->slice_index = slice_index;
1036 *f = nf;
Florin Coras6d7552c2020-04-09 01:49:45 +00001037}
1038
Florin Coras14f066e2020-12-10 18:52:40 -08001039uword
1040fifo_segment_fifo_offset (svm_fifo_t *f)
1041{
1042 return (u8 *) f->shr - (u8 *) f->fs_hdr;
1043}
1044
Florin Coras00338e02021-04-20 14:26:46 -07001045svm_fifo_chunk_t *
1046fifo_segment_alloc_chunk_w_slice (fifo_segment_t *fs, u32 slice_index,
1047 u32 chunk_size)
1048{
1049 fifo_segment_header_t *fsh = fs->h;
1050 fifo_segment_slice_t *fss;
1051
1052 fss = fsh_slice_get (fsh, slice_index);
1053 return fsh_try_alloc_chunk (fsh, fss, chunk_size);
1054}
1055
1056void
1057fifo_segment_collect_chunk (fifo_segment_t *fs, u32 slice_index,
1058 svm_fifo_chunk_t *c)
1059{
1060 fsh_collect_chunks (fs->h, slice_index, c);
1061}
1062
1063uword
1064fifo_segment_chunk_offset (fifo_segment_t *fs, svm_fifo_chunk_t *c)
1065{
1066 return (u8 *) c - (u8 *) fs->h;
1067}
1068
Florin Corasb4624182020-12-11 13:58:12 -08001069svm_msg_q_t *
1070fifo_segment_msg_q_alloc (fifo_segment_t *fs, u32 mq_index,
1071 svm_msg_q_cfg_t *cfg)
1072{
1073 fifo_segment_header_t *fsh = fs->h;
1074 svm_msg_q_shared_t *smq;
1075 svm_msg_q_t *mq;
1076 void *base;
1077 u32 size;
1078
1079 if (!fs->mqs)
1080 {
1081 u32 n_mqs = clib_max (fs->h->n_mqs, 1);
1082 vec_validate (fs->mqs, n_mqs - 1);
1083 }
1084
1085 size = svm_msg_q_size_to_alloc (cfg);
1086 base = fsh_alloc_aligned (fsh, size, 8);
1087 fsh->n_reserved_bytes += size;
1088
1089 smq = svm_msg_q_init (base, cfg);
1090 mq = vec_elt_at_index (fs->mqs, mq_index);
1091 svm_msg_q_attach (mq, smq);
1092
1093 return mq;
1094}
1095
1096svm_msg_q_t *
1097fifo_segment_msg_q_attach (fifo_segment_t *fs, uword offset, u32 mq_index)
1098{
1099 svm_msg_q_t *mq;
1100
1101 if (!fs->mqs)
1102 {
1103 u32 n_mqs = clib_max (fs->h->n_mqs, 1);
1104 vec_validate (fs->mqs, n_mqs - 1);
1105 }
1106
1107 mq = vec_elt_at_index (fs->mqs, mq_index);
1108
Florin Coras86f12322021-01-22 15:05:14 -08001109 if (!mq->q.shr)
Florin Corasb4624182020-12-11 13:58:12 -08001110 {
1111 svm_msg_q_shared_t *smq;
1112 smq = (svm_msg_q_shared_t *) ((u8 *) fs->h + offset);
1113 svm_msg_q_attach (mq, smq);
1114 }
1115
1116 ASSERT (fifo_segment_msg_q_offset (fs, mq_index) == offset);
1117
1118 return mq;
1119}
1120
Florin Coras80b74252021-01-27 18:08:25 -08001121void
1122fifo_segment_msg_qs_discover (fifo_segment_t *fs, int *fds, u32 n_fds)
1123{
1124 svm_msg_q_shared_t *smq;
1125 u32 n_mqs, size, i;
1126 uword offset = 0, n_alloced;
1127 svm_msg_q_t *mq;
1128
1129 n_mqs = fs->h->n_mqs;
1130 if (n_fds && n_mqs != n_fds)
1131 {
1132 clib_warning ("expected %u fds got %u", n_mqs, n_fds);
1133 return;
1134 }
1135
1136 vec_validate (fs->mqs, n_mqs - 1);
1137 n_alloced = fs->h->n_reserved_bytes - fs->h->start_byte_index;
1138 ASSERT (n_alloced % n_mqs == 0);
1139 size = n_alloced / n_mqs;
1140
1141 offset = fs->h->start_byte_index;
1142 for (i = 0; i < n_mqs; i++)
1143 {
1144 mq = vec_elt_at_index (fs->mqs, i);
1145 smq = (svm_msg_q_shared_t *) ((u8 *) fs->h + offset);
1146 svm_msg_q_attach (mq, smq);
1147 if (n_fds)
1148 svm_msg_q_set_eventfd (mq, fds[i]);
1149 offset += size;
1150 }
1151}
1152
Florin Corasb4624182020-12-11 13:58:12 -08001153uword
1154fifo_segment_msg_q_offset (fifo_segment_t *fs, u32 mq_index)
1155{
1156 svm_msg_q_t *mq = vec_elt_at_index (fs->mqs, mq_index);
1157
Florin Coras86f12322021-01-22 15:05:14 -08001158 if (mq->q.shr == 0)
Florin Corasb4624182020-12-11 13:58:12 -08001159 return ~0ULL;
1160
Florin Coras86f12322021-01-22 15:05:14 -08001161 return (uword) ((u8 *) mq->q.shr - (u8 *) fs->h) -
1162 sizeof (svm_msg_q_shared_t);
Florin Corasb4624182020-12-11 13:58:12 -08001163}
1164
Florin Corasf9d4ab42019-05-11 16:55:53 -07001165int
Florin Coras62ddc032019-12-08 18:30:42 -08001166fifo_segment_prealloc_fifo_hdrs (fifo_segment_t * fs, u32 slice_index,
1167 u32 batch_size)
Florin Corasf9d4ab42019-05-11 16:55:53 -07001168{
1169 fifo_segment_header_t *fsh = fs->h;
Florin Coras62ddc032019-12-08 18:30:42 -08001170 fifo_segment_slice_t *fss;
Florin Corasf9d4ab42019-05-11 16:55:53 -07001171
Florin Coras62ddc032019-12-08 18:30:42 -08001172 fss = fsh_slice_get (fsh, slice_index);
Florin Corasfe1ab7e2020-11-26 11:34:38 -08001173 return fsh_try_alloc_fifo_hdr_batch (fsh, fss, batch_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -07001174}
1175
1176int
Florin Coras62ddc032019-12-08 18:30:42 -08001177fifo_segment_prealloc_fifo_chunks (fifo_segment_t * fs, u32 slice_index,
1178 u32 chunk_size, u32 batch_size)
Florin Corasf9d4ab42019-05-11 16:55:53 -07001179{
Florin Coras62ddc032019-12-08 18:30:42 -08001180 fifo_segment_header_t *fsh = fs->h;
1181 fifo_segment_slice_t *fss;
Florin Coras473c8462020-11-16 18:11:51 -08001182 u32 fl_index;
Florin Corasf9d4ab42019-05-11 16:55:53 -07001183
Florin Coras62ddc032019-12-08 18:30:42 -08001184 if (!fs_chunk_size_is_valid (fsh, chunk_size))
Florin Corasf9d4ab42019-05-11 16:55:53 -07001185 {
1186 clib_warning ("chunk size out of range %d", chunk_size);
1187 return -1;
1188 }
1189
1190 fl_index = fs_freelist_for_size (chunk_size);
Florin Coras62ddc032019-12-08 18:30:42 -08001191 fss = fsh_slice_get (fsh, slice_index);
1192
Florin Coras473c8462020-11-16 18:11:51 -08001193 return fsh_try_alloc_chunk_batch (fsh, fss, fl_index, batch_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -07001194}
1195
Florin Coras88001c62019-04-24 14:44:46 -07001196/**
1197 * Pre-allocates fifo pairs in fifo segment
1198 */
1199void
1200fifo_segment_preallocate_fifo_pairs (fifo_segment_t * fs,
1201 u32 rx_fifo_size, u32 tx_fifo_size,
1202 u32 * n_fifo_pairs)
1203{
Florin Corasf9d4ab42019-05-11 16:55:53 -07001204 u32 rx_rounded_data_size, tx_rounded_data_size, pair_size, pairs_to_alloc;
Florin Coras8d0149d2020-01-02 19:22:51 +00001205 u32 hdrs, pairs_per_slice, alloc_now;
Florin Coras62ddc032019-12-08 18:30:42 -08001206 fifo_segment_header_t *fsh = fs->h;
1207 int rx_fl_index, tx_fl_index, i;
1208 fifo_segment_slice_t *fss;
Florin Coras88001c62019-04-24 14:44:46 -07001209 uword space_available;
Florin Coras88001c62019-04-24 14:44:46 -07001210
1211 /* Parameter check */
1212 if (rx_fifo_size == 0 || tx_fifo_size == 0 || *n_fifo_pairs == 0)
1213 return;
1214
Florin Coras62ddc032019-12-08 18:30:42 -08001215 if (!fs_chunk_size_is_valid (fsh, rx_fifo_size))
Florin Coras88001c62019-04-24 14:44:46 -07001216 {
1217 clib_warning ("rx fifo_size out of range %d", rx_fifo_size);
1218 return;
1219 }
1220
Florin Coras62ddc032019-12-08 18:30:42 -08001221 if (!fs_chunk_size_is_valid (fsh, tx_fifo_size))
Florin Coras88001c62019-04-24 14:44:46 -07001222 {
1223 clib_warning ("tx fifo_size out of range %d", tx_fifo_size);
1224 return;
1225 }
1226
1227 rx_rounded_data_size = (1 << (max_log2 (rx_fifo_size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -07001228 rx_fl_index = fs_freelist_for_size (rx_fifo_size);
Florin Coras88001c62019-04-24 14:44:46 -07001229 tx_rounded_data_size = (1 << (max_log2 (tx_fifo_size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -07001230 tx_fl_index = fs_freelist_for_size (tx_fifo_size);
Florin Coras88001c62019-04-24 14:44:46 -07001231
Florin Corasf9d4ab42019-05-11 16:55:53 -07001232 hdrs = sizeof (svm_fifo_t) + sizeof (svm_fifo_chunk_t);
Florin Corascefd5d82019-05-05 13:19:57 -07001233
Florin Coras88001c62019-04-24 14:44:46 -07001234 /* Calculate space requirements */
Florin Corascefd5d82019-05-05 13:19:57 -07001235 pair_size = 2 * hdrs + rx_rounded_data_size + tx_rounded_data_size;
Florin Coras213b1bb2020-12-07 14:33:58 -08001236 space_available = fsh_n_free_bytes (fsh);
Florin Coraseaacce42019-07-02 13:07:37 -07001237 pairs_to_alloc = space_available / pair_size;
1238 pairs_to_alloc = clib_min (pairs_to_alloc, *n_fifo_pairs);
Florin Coras62ddc032019-12-08 18:30:42 -08001239 pairs_per_slice = pairs_to_alloc / fs->n_slices;
Florin Coras8d0149d2020-01-02 19:22:51 +00001240 pairs_per_slice += pairs_to_alloc % fs->n_slices ? 1 : 0;
Florin Coraseaacce42019-07-02 13:07:37 -07001241
Florin Coras62ddc032019-12-08 18:30:42 -08001242 if (!pairs_per_slice)
Florin Coraseaacce42019-07-02 13:07:37 -07001243 return;
Florin Coras88001c62019-04-24 14:44:46 -07001244
Florin Coras62ddc032019-12-08 18:30:42 -08001245 for (i = 0; i < fs->n_slices; i++)
1246 {
Florin Coras8d0149d2020-01-02 19:22:51 +00001247 alloc_now = clib_min (pairs_per_slice, *n_fifo_pairs);
Benoît Gannef23b1512020-11-25 15:06:01 +01001248 if (0 == alloc_now)
1249 break;
1250
1251 fss = fsh_slice_get (fsh, i);
Florin Coras8d0149d2020-01-02 19:22:51 +00001252 if (fs_try_alloc_fifo_batch (fsh, fss, rx_fl_index, alloc_now))
1253 clib_warning ("rx prealloc failed: pairs %u", alloc_now);
1254 if (fs_try_alloc_fifo_batch (fsh, fss, tx_fl_index, alloc_now))
1255 clib_warning ("tx prealloc failed: pairs %u", alloc_now);
Florin Coras88001c62019-04-24 14:44:46 -07001256
Florin Coras8d0149d2020-01-02 19:22:51 +00001257 /* Account for the pairs allocated */
1258 *n_fifo_pairs -= alloc_now;
1259 }
Florin Coras88001c62019-04-24 14:44:46 -07001260}
1261
1262/**
1263 * Get number of active fifos
1264 */
1265u32
1266fifo_segment_num_fifos (fifo_segment_t * fs)
1267{
Florin Coras7a90e502020-04-09 04:46:14 +00001268 return fsh_n_active_fifos (fs->h);
Florin Coras88001c62019-04-24 14:44:46 -07001269}
1270
Florin Coras62ddc032019-12-08 18:30:42 -08001271static u32
Florin Coras17672aa2020-12-29 16:55:32 -08001272fs_slice_num_free_fifos (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss)
Florin Coras88001c62019-04-24 14:44:46 -07001273{
Florin Corasc547e912020-12-08 17:50:45 -08001274 svm_fifo_shared_t *f;
Florin Corascefd5d82019-05-05 13:19:57 -07001275 u32 count = 0;
Florin Coras88001c62019-04-24 14:44:46 -07001276
Florin Coras17672aa2020-12-29 16:55:32 -08001277 f = fs_ptr (fsh, fss->free_fifos);
Florin Coras88001c62019-04-24 14:44:46 -07001278 if (f == 0)
1279 return 0;
1280
1281 while (f)
1282 {
Florin Coras17672aa2020-12-29 16:55:32 -08001283 f = fs_ptr (fsh, f->next);
Florin Coras88001c62019-04-24 14:44:46 -07001284 count++;
1285 }
1286 return count;
1287}
1288
Florin Corasb095a3c2019-04-25 12:58:46 -07001289u32
Florin Coras62ddc032019-12-08 18:30:42 -08001290fifo_segment_num_free_fifos (fifo_segment_t * fs)
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 Coras17672aa2020-12-29 16:55:32 -08001300 count += fs_slice_num_free_fifos (fsh, fss);
Florin Coras62ddc032019-12-08 18:30:42 -08001301 }
1302 return count;
1303}
1304
1305static u32
Florin Corasaf588822020-12-09 12:51:13 -08001306fs_slice_num_free_chunks (fifo_segment_header_t *fsh,
1307 fifo_segment_slice_t *fss, u32 size)
Florin Corasb095a3c2019-04-25 12:58:46 -07001308{
1309 u32 count = 0, rounded_size, fl_index;
Florin Corasb095a3c2019-04-25 12:58:46 -07001310 svm_fifo_chunk_t *c;
1311 int i;
1312
Florin Corasb095a3c2019-04-25 12:58:46 -07001313 /* Count all free chunks? */
1314 if (size == ~0)
1315 {
Florin Coras4b8011e2020-12-07 19:38:23 -08001316 for (i = 0; i < FS_CHUNK_VEC_LEN; i++)
Florin Corasb095a3c2019-04-25 12:58:46 -07001317 {
Florin Coras014dba32021-03-31 19:36:49 -07001318 c = fss_chunk_free_list_head (fsh, fss, i);
Florin Corasb095a3c2019-04-25 12:58:46 -07001319 if (c == 0)
1320 continue;
1321
1322 while (c)
1323 {
Florin Corasaf588822020-12-09 12:51:13 -08001324 c = fs_chunk_ptr (fsh, c->next);
Florin Corasb095a3c2019-04-25 12:58:46 -07001325 count++;
1326 }
1327 }
1328 return count;
1329 }
1330
1331 rounded_size = (1 << (max_log2 (size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -07001332 fl_index = fs_freelist_for_size (rounded_size);
Florin Corasb095a3c2019-04-25 12:58:46 -07001333
Florin Coras4b8011e2020-12-07 19:38:23 -08001334 if (fl_index >= FS_CHUNK_VEC_LEN)
Florin Corasb095a3c2019-04-25 12:58:46 -07001335 return 0;
1336
Florin Coras014dba32021-03-31 19:36:49 -07001337 c = fss_chunk_free_list_head (fsh, fss, fl_index);
Florin Corasb095a3c2019-04-25 12:58:46 -07001338 if (c == 0)
1339 return 0;
1340
1341 while (c)
1342 {
Florin Corasaf588822020-12-09 12:51:13 -08001343 c = fs_chunk_ptr (fsh, c->next);
Florin Corasb095a3c2019-04-25 12:58:46 -07001344 count++;
1345 }
1346 return count;
1347}
1348
Florin Coras62ddc032019-12-08 18:30:42 -08001349u32
1350fifo_segment_num_free_chunks (fifo_segment_t * fs, u32 size)
1351{
1352 fifo_segment_header_t *fsh = fs->h;
1353 fifo_segment_slice_t *fss;
1354 int slice_index;
1355 u32 count = 0;
1356
1357 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1358 {
1359 fss = fsh_slice_get (fsh, slice_index);
Florin Corasaf588822020-12-09 12:51:13 -08001360 count += fs_slice_num_free_chunks (fsh, fss, size);
Florin Coras62ddc032019-12-08 18:30:42 -08001361 }
1362 return count;
1363}
1364
Florin Corasef4f3e72019-12-11 14:27:53 -08001365uword
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001366fifo_segment_size (fifo_segment_t * fs)
1367{
Florin Coras213b1bb2020-12-07 14:33:58 -08001368 return fs->h->max_byte_index - fs->h->n_reserved_bytes;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001369}
1370
1371u8
1372fsh_has_reached_mem_limit (fifo_segment_header_t * fsh)
1373{
1374 return (fsh->flags & FIFO_SEGMENT_F_MEM_LIMIT) ? 1 : 0;
1375}
1376
1377void
1378fsh_reset_mem_limit (fifo_segment_header_t * fsh)
1379{
1380 fsh->flags &= ~FIFO_SEGMENT_F_MEM_LIMIT;
1381}
1382
Florin Coras213b1bb2020-12-07 14:33:58 -08001383void *
1384fifo_segment_alloc (fifo_segment_t *fs, uword size)
1385{
1386 void *rv = fsh_alloc (fs->h, size);
1387 /* Mark externally allocated bytes as reserved. This helps
1388 * @ref fifo_segment_size report bytes used only for fifos */
1389 fs->h->n_reserved_bytes += size;
1390 return rv;
1391}
1392
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001393uword
Florin Corasf9d4ab42019-05-11 16:55:53 -07001394fifo_segment_free_bytes (fifo_segment_t * fs)
1395{
Florin Coras62ddc032019-12-08 18:30:42 -08001396 return fsh_n_free_bytes (fs->h);
Florin Corasf9d4ab42019-05-11 16:55:53 -07001397}
1398
Florin Coras62ddc032019-12-08 18:30:42 -08001399uword
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001400fifo_segment_cached_bytes (fifo_segment_t * fs)
1401{
1402 return fsh_n_cached_bytes (fs->h);
1403}
1404
1405uword
Florin Coras75ccf7b2020-03-05 19:44:02 +00001406fifo_segment_available_bytes (fifo_segment_t * fs)
1407{
1408 return fsh_n_free_bytes (fs->h) + fsh_n_cached_bytes (fs->h);
1409}
1410
1411uword
Florin Coras1c91c772019-06-25 18:14:13 -07001412fifo_segment_fl_chunk_bytes (fifo_segment_t * fs)
Florin Corasf9d4ab42019-05-11 16:55:53 -07001413{
Florin Coras62ddc032019-12-08 18:30:42 -08001414 fifo_segment_header_t *fsh = fs->h;
1415 fifo_segment_slice_t *fss;
1416 uword n_bytes = 0;
1417 int slice_index;
1418
1419 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1420 {
1421 fss = fsh_slice_get (fsh, slice_index);
Florin Corasd01d2ce2020-11-17 18:42:38 -08001422 n_bytes += fss_fl_chunk_bytes (fss);
Florin Coras62ddc032019-12-08 18:30:42 -08001423 }
1424
1425 return n_bytes;
Florin Corasf9d4ab42019-05-11 16:55:53 -07001426}
1427
Florin Coras88001c62019-04-24 14:44:46 -07001428u8
1429fifo_segment_has_fifos (fifo_segment_t * fs)
1430{
Florin Coras7a90e502020-04-09 04:46:14 +00001431 return (fsh_n_active_fifos (fs->h) != 0);
Florin Coras88001c62019-04-24 14:44:46 -07001432}
1433
1434svm_fifo_t *
Florin Coras62ddc032019-12-08 18:30:42 -08001435fifo_segment_get_slice_fifo_list (fifo_segment_t * fs, u32 slice_index)
Florin Coras88001c62019-04-24 14:44:46 -07001436{
Florin Coras1f952d32020-12-09 19:43:21 -08001437 fifo_slice_private_t *pfss;
Florin Coras62ddc032019-12-08 18:30:42 -08001438
Florin Coras1f952d32020-12-09 19:43:21 -08001439 pfss = fs_slice_private_get (fs, slice_index);
1440 return pfss->active_fifos;
Florin Coras88001c62019-04-24 14:44:46 -07001441}
1442
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001443u8
1444fifo_segment_get_mem_usage (fifo_segment_t * fs)
1445{
1446 uword size, in_use;
1447
1448 size = fifo_segment_size (fs);
1449 in_use =
1450 size - fifo_segment_free_bytes (fs) - fifo_segment_cached_bytes (fs);
1451 return (in_use * 100) / size;
1452}
1453
1454fifo_segment_mem_status_t
1455fifo_segment_determine_status (fifo_segment_header_t * fsh, u8 usage)
1456{
1457 if (!fsh->high_watermark || !fsh->low_watermark)
1458 return MEMORY_PRESSURE_NO_PRESSURE;
1459
1460 /* once the no-memory is detected, the status continues
1461 * until memory usage gets below the high watermark
1462 */
1463 if (fsh_has_reached_mem_limit (fsh))
1464 {
1465 if (usage >= fsh->high_watermark)
1466 return MEMORY_PRESSURE_NO_MEMORY;
1467 else
1468 fsh_reset_mem_limit (fsh);
1469 }
1470
1471 if (usage >= fsh->high_watermark)
1472 return MEMORY_PRESSURE_HIGH_PRESSURE;
1473
1474 else if (usage >= fsh->low_watermark)
1475 return MEMORY_PRESSURE_LOW_PRESSURE;
1476
1477 return MEMORY_PRESSURE_NO_PRESSURE;
1478}
1479
1480fifo_segment_mem_status_t
1481fifo_segment_get_mem_status (fifo_segment_t * fs)
1482{
1483 fifo_segment_header_t *fsh = fs->h;
1484 u8 usage = fifo_segment_get_mem_usage (fs);
1485
1486 return fifo_segment_determine_status (fsh, usage);
1487}
1488
Florin Coras88001c62019-04-24 14:44:46 -07001489u8 *
1490format_fifo_segment_type (u8 * s, va_list * args)
1491{
1492 fifo_segment_t *sp;
1493 sp = va_arg (*args, fifo_segment_t *);
1494 ssvm_segment_type_t st = ssvm_type (&sp->ssvm);
1495
1496 if (st == SSVM_SEGMENT_PRIVATE)
Florin Coras2a7c0b62020-09-28 23:40:28 -07001497 s = format (s, "%s", "private");
Florin Coras88001c62019-04-24 14:44:46 -07001498 else if (st == SSVM_SEGMENT_MEMFD)
1499 s = format (s, "%s", "memfd");
1500 else if (st == SSVM_SEGMENT_SHM)
1501 s = format (s, "%s", "shm");
1502 else
1503 s = format (s, "%s", "unknown");
1504 return s;
1505}
1506
1507/**
1508 * Segment format function
1509 */
1510u8 *
1511format_fifo_segment (u8 * s, va_list * args)
1512{
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001513 u32 count, indent, active_fifos, free_fifos;
Florin Coras5368bb02019-06-09 09:24:33 -07001514 fifo_segment_t *fs = va_arg (*args, fifo_segment_t *);
Florin Coras88001c62019-04-24 14:44:46 -07001515 int verbose __attribute__ ((unused)) = va_arg (*args, int);
Florin Corasef4f3e72019-12-11 14:27:53 -08001516 uword est_chunk_bytes, est_free_seg_bytes, free_chunks;
1517 uword chunk_bytes = 0, free_seg_bytes, chunk_size;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001518 uword tracked_cached_bytes;
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001519 uword fifo_hdr = 0, reserved;
Florin Coras5368bb02019-06-09 09:24:33 -07001520 fifo_segment_header_t *fsh;
Florin Coras62ddc032019-12-08 18:30:42 -08001521 fifo_segment_slice_t *fss;
Florin Corascefd5d82019-05-05 13:19:57 -07001522 svm_fifo_chunk_t *c;
Florin Coras62ddc032019-12-08 18:30:42 -08001523 u32 slice_index;
Florin Coras5368bb02019-06-09 09:24:33 -07001524 char *address;
1525 size_t size;
Florin Coras88001c62019-04-24 14:44:46 -07001526 int i;
Florin Coras06d47752020-03-06 02:23:58 +00001527 uword allocated, in_use, virt;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001528 f64 usage;
1529 fifo_segment_mem_status_t mem_st;
Florin Coras88001c62019-04-24 14:44:46 -07001530
1531 indent = format_get_indent (s) + 2;
Florin Coras88001c62019-04-24 14:44:46 -07001532
Florin Coras5368bb02019-06-09 09:24:33 -07001533 if (fs == 0)
1534 {
Florin Coras2a7c0b62020-09-28 23:40:28 -07001535 s = format (s, "%-20s%10s%15s%15s%15s%15s", "Name", "Type",
Florin Coras5368bb02019-06-09 09:24:33 -07001536 "HeapSize (M)", "ActiveFifos", "FreeFifos", "Address");
1537 return s;
1538 }
1539
Florin Coras5368bb02019-06-09 09:24:33 -07001540 fifo_segment_info (fs, &address, &size);
1541 active_fifos = fifo_segment_num_fifos (fs);
1542 free_fifos = fifo_segment_num_free_fifos (fs);
1543
Florin Coras2a7c0b62020-09-28 23:40:28 -07001544 s = format (s, "%-20v%10U%15llu%15u%15u%15llx", ssvm_name (&fs->ssvm),
Florin Coras5368bb02019-06-09 09:24:33 -07001545 format_fifo_segment_type, fs, size >> 20ULL, active_fifos,
1546 free_fifos, address);
1547
1548 if (!verbose)
1549 return s;
1550
Florin Coras62ddc032019-12-08 18:30:42 -08001551 fsh = fs->h;
1552
1553 free_chunks = fifo_segment_num_free_chunks (fs, ~0);
1554 if (free_chunks)
Ryujiro Shibuyad3588722020-03-13 12:45:06 +00001555 s =
1556 format (s, "\n\n%UFree/Allocated chunks by size:\n", format_white_space,
1557 indent + 2);
Florin Corasf8461bf2019-11-07 17:00:15 -08001558 else
1559 s = format (s, "\n");
1560
Florin Coras62ddc032019-12-08 18:30:42 -08001561 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
Florin Coras88001c62019-04-24 14:44:46 -07001562 {
Florin Coras62ddc032019-12-08 18:30:42 -08001563 fss = fsh_slice_get (fsh, slice_index);
Florin Coras4b8011e2020-12-07 19:38:23 -08001564 for (i = 0; i < FS_CHUNK_VEC_LEN; i++)
Florin Coras88001c62019-04-24 14:44:46 -07001565 {
Florin Coras014dba32021-03-31 19:36:49 -07001566 c = fss_chunk_free_list_head (fsh, fss, i);
Ryujiro Shibuyad3588722020-03-13 12:45:06 +00001567 if (c == 0 && fss->num_chunks[i] == 0)
Florin Coras62ddc032019-12-08 18:30:42 -08001568 continue;
1569 count = 0;
1570 while (c)
1571 {
Florin Corasaf588822020-12-09 12:51:13 -08001572 c = fs_chunk_ptr (fsh, c->next);
Florin Coras62ddc032019-12-08 18:30:42 -08001573 count++;
1574 }
1575
1576 chunk_size = fs_freelist_index_to_size (i);
Ryujiro Shibuyad3588722020-03-13 12:45:06 +00001577 s = format (s, "%U%-5u kB: %u/%u\n", format_white_space, indent + 2,
1578 chunk_size >> 10, count, fss->num_chunks[i]);
Florin Coras62ddc032019-12-08 18:30:42 -08001579
1580 chunk_bytes += count * chunk_size;
Florin Coras88001c62019-04-24 14:44:46 -07001581 }
Florin Coras88001c62019-04-24 14:44:46 -07001582 }
Florin Corasf8461bf2019-11-07 17:00:15 -08001583
1584 fifo_hdr = free_fifos * sizeof (svm_fifo_t);
1585 est_chunk_bytes = fifo_segment_fl_chunk_bytes (fs);
Florin Coras62ddc032019-12-08 18:30:42 -08001586 est_free_seg_bytes = fifo_segment_free_bytes (fs);
Florin Coras62ddc032019-12-08 18:30:42 -08001587 free_seg_bytes = fifo_segment_free_bytes (fs);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001588 tracked_cached_bytes = fifo_segment_cached_bytes (fs);
1589 allocated = fifo_segment_size (fs);
1590 in_use = fifo_segment_size (fs) - est_free_seg_bytes - tracked_cached_bytes;
1591 usage = (100.0 * in_use) / allocated;
1592 mem_st = fifo_segment_get_mem_status (fs);
Florin Coras06d47752020-03-06 02:23:58 +00001593 virt = fsh_virtual_mem (fsh);
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001594 reserved = fsh->n_reserved_bytes;
Florin Corasf8461bf2019-11-07 17:00:15 -08001595
Florin Coras06d47752020-03-06 02:23:58 +00001596 s = format (s, "\n%Useg free bytes: %U (%lu) estimated: %U (%lu) reserved:"
1597 " %U (%lu)\n", format_white_space, indent + 2,
1598 format_memory_size, free_seg_bytes, free_seg_bytes,
1599 format_memory_size, est_free_seg_bytes, est_free_seg_bytes,
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001600 format_memory_size, reserved, reserved);
Florin Coras06d47752020-03-06 02:23:58 +00001601 s = format (s, "%Uchunk free bytes: %U (%lu) estimated: %U (%lu) tracked:"
1602 " %U (%lu)\n", format_white_space, indent + 2,
1603 format_memory_size, chunk_bytes, chunk_bytes,
1604 format_memory_size, est_chunk_bytes, est_chunk_bytes,
1605 format_memory_size, tracked_cached_bytes, tracked_cached_bytes);
Florin Coras44fadb02021-02-20 17:36:19 -08001606 s = format (s, "%Ufifo active: %u hdr free: %u bytes: %U (%u) \n",
1607 format_white_space, indent + 2, fsh->n_active_fifos, free_fifos,
Florin Coras06d47752020-03-06 02:23:58 +00001608 format_memory_size, fifo_hdr, fifo_hdr);
1609 s = format (s, "%Usegment usage: %.2f%% (%U / %U) virt: %U status: %s\n",
1610 format_white_space, indent + 2, usage, format_memory_size,
1611 in_use, format_memory_size, allocated, format_memory_size, virt,
1612 fifo_segment_mem_status_strings[mem_st]);
Florin Corasf8461bf2019-11-07 17:00:15 -08001613 s = format (s, "\n");
Florin Coras5368bb02019-06-09 09:24:33 -07001614
Florin Coras88001c62019-04-24 14:44:46 -07001615 return s;
1616}
1617
1618/*
1619 * fd.io coding-style-patch-verification: ON
1620 *
1621 * Local Variables:
1622 * eval: (c-set-style "gnu")
1623 * End:
1624 */