blob: d8b3b259038202d75452b6fa9144b52be89a6c53 [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);
157 old_head = clib_atomic_load_relax_n (&fss->free_chunks[fl_index]);
158
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 }
164 while (!clib_atomic_cmp_and_swap_acq_relax (
165 &fss->free_chunks[fl_index], &old_head, &new_head, 1 /* weak */));
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 Coras014dba32021-03-31 19:36:49 -0700173 fs_sptr_t old_head, new_head, headsp;
174
175 headsp = fs_chunk_sptr (fsh, head);
176 ASSERT (headsp <= FS_CL_HEAD_MASK);
177 old_head = clib_atomic_load_relax_n (&fss->free_chunks[fl_index]);
178
179 do
180 {
181 tail->next = old_head & FS_CL_HEAD_MASK;
182 new_head = headsp + ((old_head + FS_CL_HEAD_TINC) & FS_CL_HEAD_TMASK);
183 }
184 while (!clib_atomic_cmp_and_swap_acq_relax (
185 &fss->free_chunks[fl_index], &old_head, &new_head, 1 /* weak */));
Florin Coras473c8462020-11-16 18:11:51 -0800186}
187
188static svm_fifo_chunk_t *
Florin Corasaf588822020-12-09 12:51:13 -0800189fss_chunk_free_list_pop (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss,
190 u32 fl_index)
Florin Coras473c8462020-11-16 18:11:51 -0800191{
Florin Coras014dba32021-03-31 19:36:49 -0700192 fs_sptr_t old_head, new_head;
Florin Coras473c8462020-11-16 18:11:51 -0800193 svm_fifo_chunk_t *c;
194
195 ASSERT (fss_chunk_fl_index_is_valid (fss, fl_index));
196
Florin Coras014dba32021-03-31 19:36:49 -0700197 old_head = clib_atomic_load_relax_n (&fss->free_chunks[fl_index]);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800198
Florin Coras014dba32021-03-31 19:36:49 -0700199 /* Lock-free stacks are affected by ABA if a side allocates a chunk and
200 * shortly thereafter frees it. To circumvent that, reuse the upper bits
201 * of the head of the list shared pointer, i.e., offset to where the chunk
202 * is, as a tag. The tag is incremented with each push/pop operation and
203 * therefore collisions can only happen if an element is popped and pushed
204 * exactly after a complete wrap of the tag (16 bits). It's unlikely either
205 * of the sides will be descheduled for that long */
206 do
Florin Corasd01d2ce2020-11-17 18:42:38 -0800207 {
Florin Coras014dba32021-03-31 19:36:49 -0700208 if (!(old_head & FS_CL_HEAD_MASK))
209 return 0;
210 c = fs_chunk_ptr (fsh, old_head & FS_CL_HEAD_MASK);
211 new_head = c->next + ((old_head + FS_CL_HEAD_TINC) & FS_CL_HEAD_TMASK);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800212 }
Florin Coras014dba32021-03-31 19:36:49 -0700213 while (!clib_atomic_cmp_and_swap_acq_relax (
214 &fss->free_chunks[fl_index], &old_head, &new_head, 1 /* weak */));
Florin Corasd01d2ce2020-11-17 18:42:38 -0800215
Florin Coras473c8462020-11-16 18:11:51 -0800216 return c;
217}
218
Florin Coras17672aa2020-12-29 16:55:32 -0800219static void
220fss_fifo_free_list_push (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss,
221 svm_fifo_shared_t *sf)
222{
223 sf->next = fss->free_fifos;
224 fss->free_fifos = fs_sptr (fsh, sf);
225}
226
227static void
228fss_fifo_free_list_push_list (fifo_segment_header_t *fsh,
229 fifo_segment_slice_t *fss,
230 svm_fifo_shared_t *head, svm_fifo_shared_t *tail)
231{
232 tail->next = fss->free_fifos;
233 fss->free_fifos = fs_sptr (fsh, head);
234}
235
236svm_fifo_shared_t *
237fss_fifo_free_list_pop (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss)
238{
239 svm_fifo_shared_t *sf;
240 sf = fs_ptr (fsh, fss->free_fifos);
241 fss->free_fifos = sf->next;
242 return sf;
243}
244
Florin Coras473c8462020-11-16 18:11:51 -0800245static inline void
Florin Coras1f952d32020-12-09 19:43:21 -0800246pfss_fifo_add_active_list (fifo_slice_private_t *pfss, svm_fifo_t *f)
Florin Coras473c8462020-11-16 18:11:51 -0800247{
Florin Coras1f952d32020-12-09 19:43:21 -0800248 if (pfss->active_fifos)
Florin Coras473c8462020-11-16 18:11:51 -0800249 {
Florin Coras1f952d32020-12-09 19:43:21 -0800250 pfss->active_fifos->prev = f;
251 f->next = pfss->active_fifos;
Florin Coras473c8462020-11-16 18:11:51 -0800252 }
Florin Coras1f952d32020-12-09 19:43:21 -0800253 pfss->active_fifos = f;
Florin Coras473c8462020-11-16 18:11:51 -0800254}
255
256static inline void
Florin Coras1f952d32020-12-09 19:43:21 -0800257pfss_fifo_del_active_list (fifo_slice_private_t *pfss, svm_fifo_t *f)
Florin Coras473c8462020-11-16 18:11:51 -0800258{
259 if (f->flags & SVM_FIFO_F_LL_TRACKED)
260 {
261 if (f->prev)
262 f->prev->next = f->next;
263 else
Florin Coras1f952d32020-12-09 19:43:21 -0800264 pfss->active_fifos = f->next;
Florin Coras473c8462020-11-16 18:11:51 -0800265 if (f->next)
266 f->next->prev = f->prev;
267 }
268}
269
Florin Corasd01d2ce2020-11-17 18:42:38 -0800270static inline uword
271fss_fl_chunk_bytes (fifo_segment_slice_t * fss)
272{
273 return clib_atomic_load_relax_n (&fss->n_fl_chunk_bytes);
274}
275
276static inline void
277fss_fl_chunk_bytes_add (fifo_segment_slice_t * fss, uword size)
278{
279 clib_atomic_fetch_add_relax (&fss->n_fl_chunk_bytes, size);
280}
281
282static inline void
283fss_fl_chunk_bytes_sub (fifo_segment_slice_t * fss, uword size)
284{
285 clib_atomic_fetch_sub_relax (&fss->n_fl_chunk_bytes, size);
286}
287
Florin Corasf9d4ab42019-05-11 16:55:53 -0700288/**
Florin Coras88001c62019-04-24 14:44:46 -0700289 * Initialize fifo segment shared header
290 */
291int
292fifo_segment_init (fifo_segment_t * fs)
293{
Florin Corasc547e912020-12-08 17:50:45 -0800294 u32 align = 8, offset = 2 * 4096, slices_sz, i;
Florin Coras4b8011e2020-12-07 19:38:23 -0800295 uword max_fifo, seg_start, seg_sz;
Florin Coras88001c62019-04-24 14:44:46 -0700296 fifo_segment_header_t *fsh;
297 ssvm_shared_header_t *sh;
Florin Coras213b1bb2020-12-07 14:33:58 -0800298 void *seg_data;
Florin Coras88001c62019-04-24 14:44:46 -0700299
Florin Coras213b1bb2020-12-07 14:33:58 -0800300 /* TODO remove ssvm heap entirely */
Florin Coras88001c62019-04-24 14:44:46 -0700301 sh = fs->ssvm.sh;
Florin Coras88001c62019-04-24 14:44:46 -0700302
Florin Coras213b1bb2020-12-07 14:33:58 -0800303 seg_data = (u8 *) sh + offset;
Florin Coras4b8011e2020-12-07 19:38:23 -0800304 seg_sz = sh->ssvm_size - offset;
305
306 fs->n_slices = clib_max (fs->n_slices, 1);
307 slices_sz = sizeof (fifo_segment_slice_t) * fs->n_slices;
Florin Coras213b1bb2020-12-07 14:33:58 -0800308
309 seg_start = round_pow2_u64 (pointer_to_uword (seg_data), align);
310 fsh = uword_to_pointer (seg_start, void *);
Florin Corasee5cd4e2021-02-11 08:44:23 -0800311 CLIB_MEM_UNPOISON (fsh, seg_sz);
Florin Coras4b8011e2020-12-07 19:38:23 -0800312 memset (fsh, 0, sizeof (*fsh) + slices_sz);
Florin Coras213b1bb2020-12-07 14:33:58 -0800313
Florin Coras4b8011e2020-12-07 19:38:23 -0800314 fsh->byte_index = sizeof (*fsh) + slices_sz;
315 fsh->max_byte_index = seg_sz;
Florin Coras62ddc032019-12-08 18:30:42 -0800316 fsh->n_slices = fs->n_slices;
Florin Coras4b8011e2020-12-07 19:38:23 -0800317 max_fifo = clib_min ((seg_sz - slices_sz) / 2, FIFO_SEGMENT_MAX_FIFO_SIZE);
318 fsh->max_log2_fifo_size = min_log2 (max_fifo);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000319 fsh->n_cached_bytes = 0;
Florin Coras213b1bb2020-12-07 14:33:58 -0800320 fsh->n_reserved_bytes = fsh->byte_index;
Florin Coras80b74252021-01-27 18:08:25 -0800321 fsh->start_byte_index = fsh->byte_index;
Florin Coras4b8011e2020-12-07 19:38:23 -0800322 ASSERT (fsh->max_byte_index <= sh->ssvm_size - offset);
323
324 fs->max_byte_index = fsh->max_byte_index;
Florin Coras14f066e2020-12-10 18:52:40 -0800325 fs->h = fsh;
326 sh->opaque[0] = (void *) ((u8 *) fsh - (u8 *) fs->ssvm.sh);
327
328 /* Allow random offsets */
329 fs->ssvm.sh->ssvm_va = 0;
Florin Coras4b8011e2020-12-07 19:38:23 -0800330
Florin Corasc547e912020-12-08 17:50:45 -0800331 vec_validate (fs->slices, fs->n_slices - 1);
332 for (i = 0; i < fs->n_slices; i++)
333 fs->slices[i].fifos =
334 clib_mem_bulk_init (sizeof (svm_fifo_t), CLIB_CACHE_LINE_BYTES, 32);
335
Florin Coras88001c62019-04-24 14:44:46 -0700336 sh->ready = 1;
337 return (0);
338}
339
340/**
Florin Coras88001c62019-04-24 14:44:46 -0700341 * Create a fifo segment and initialize as master
342 */
343int
344fifo_segment_create (fifo_segment_main_t * sm, fifo_segment_create_args_t * a)
345{
Florin Corasf9d4ab42019-05-11 16:55:53 -0700346 fifo_segment_t *fs;
347 uword baseva;
Florin Coras88001c62019-04-24 14:44:46 -0700348 int rv;
349
Florin Coras88001c62019-04-24 14:44:46 -0700350 /* Allocate a fresh segment */
Florin Corasf9d4ab42019-05-11 16:55:53 -0700351 pool_get_zero (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700352
Florin Corasf9d4ab42019-05-11 16:55:53 -0700353 baseva = a->segment_type == SSVM_SEGMENT_PRIVATE ? ~0ULL : sm->next_baseva;
354 fs->ssvm.ssvm_size = a->segment_size;
Florin Coras5220a262020-09-29 18:11:24 -0700355 fs->ssvm.is_server = 1;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700356 fs->ssvm.my_pid = getpid ();
357 fs->ssvm.name = format (0, "%s%c", a->segment_name, 0);
358 fs->ssvm.requested_va = baseva;
Florin Coras88001c62019-04-24 14:44:46 -0700359
Florin Coras5220a262020-09-29 18:11:24 -0700360 if ((rv = ssvm_server_init (&fs->ssvm, a->segment_type)))
Florin Coras88001c62019-04-24 14:44:46 -0700361 {
Florin Corasf9d4ab42019-05-11 16:55:53 -0700362 pool_put (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700363 return (rv);
364 }
365
366 /* Note: requested_va updated due to seg base addr randomization */
Florin Corasf9d4ab42019-05-11 16:55:53 -0700367 sm->next_baseva = fs->ssvm.sh->ssvm_va + fs->ssvm.ssvm_size;
Florin Coras88001c62019-04-24 14:44:46 -0700368
Florin Corasf9d4ab42019-05-11 16:55:53 -0700369 fifo_segment_init (fs);
370 vec_add1 (a->new_segment_indices, fs - sm->segments);
Florin Coras88001c62019-04-24 14:44:46 -0700371 return (0);
372}
373
374/**
375 * Attach as slave to a fifo segment
376 */
377int
378fifo_segment_attach (fifo_segment_main_t * sm, fifo_segment_create_args_t * a)
379{
Florin Coras4b8011e2020-12-07 19:38:23 -0800380 fifo_segment_header_t *fsh;
Florin Coras62ddc032019-12-08 18:30:42 -0800381 fifo_segment_t *fs;
Florin Coras88001c62019-04-24 14:44:46 -0700382 int rv;
383
Florin Coras62ddc032019-12-08 18:30:42 -0800384 pool_get_zero (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700385
Florin Coras62ddc032019-12-08 18:30:42 -0800386 fs->ssvm.ssvm_size = a->segment_size;
387 fs->ssvm.my_pid = getpid ();
388 fs->ssvm.name = format (0, "%s%c", a->segment_name, 0);
Florin Coras14f066e2020-12-10 18:52:40 -0800389 fs->ssvm.requested_va = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700390 if (a->segment_type == SSVM_SEGMENT_MEMFD)
Florin Coras62ddc032019-12-08 18:30:42 -0800391 fs->ssvm.fd = a->memfd_fd;
Florin Coras88001c62019-04-24 14:44:46 -0700392 else
Florin Coras62ddc032019-12-08 18:30:42 -0800393 fs->ssvm.attach_timeout = sm->timeout_in_seconds;
Florin Coras88001c62019-04-24 14:44:46 -0700394
Florin Coras5220a262020-09-29 18:11:24 -0700395 if ((rv = ssvm_client_init (&fs->ssvm, a->segment_type)))
Florin Coras88001c62019-04-24 14:44:46 -0700396 {
Florin Coras14f066e2020-12-10 18:52:40 -0800397 pool_put (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700398 return (rv);
399 }
400
Florin Coras4b8011e2020-12-07 19:38:23 -0800401 /* Probably a segment without fifos */
Florin Coras14f066e2020-12-10 18:52:40 -0800402 if (!fs->ssvm.sh->opaque[0])
Florin Coras4b8011e2020-12-07 19:38:23 -0800403 goto done;
404
Florin Coras14f066e2020-12-10 18:52:40 -0800405 fsh = fs->h = (void *) fs->ssvm.sh + (uword) fs->ssvm.sh->opaque[0];
Florin Coras4b8011e2020-12-07 19:38:23 -0800406 fs->max_byte_index = fsh->max_byte_index;
Florin Corasc547e912020-12-08 17:50:45 -0800407 vec_validate (fs->slices, 0);
408 fs->slices[0].fifos =
409 clib_mem_bulk_init (sizeof (svm_fifo_t), CLIB_CACHE_LINE_BYTES, 32);
Florin Coras4b8011e2020-12-07 19:38:23 -0800410
411done:
Florin Coras62ddc032019-12-08 18:30:42 -0800412 vec_add1 (a->new_segment_indices, fs - sm->segments);
Florin Coras88001c62019-04-24 14:44:46 -0700413 return (0);
414}
415
416void
417fifo_segment_delete (fifo_segment_main_t * sm, fifo_segment_t * s)
418{
Florin Corasc547e912020-12-08 17:50:45 -0800419 fifo_segment_cleanup (s);
Florin Coras88001c62019-04-24 14:44:46 -0700420 ssvm_delete (&s->ssvm);
421 clib_memset (s, 0xfe, sizeof (*s));
422 pool_put (sm->segments, s);
423}
424
425u32
426fifo_segment_index (fifo_segment_main_t * sm, fifo_segment_t * s)
427{
428 return s - sm->segments;
429}
430
Florin Coras88001c62019-04-24 14:44:46 -0700431fifo_segment_t *
432fifo_segment_get_segment (fifo_segment_main_t * sm, u32 segment_index)
433{
434 return pool_elt_at_index (sm->segments, segment_index);
435}
436
Florin Corascbb5e822021-02-20 10:42:22 -0800437fifo_segment_t *
438fifo_segment_get_segment_if_valid (fifo_segment_main_t *sm, u32 segment_index)
439{
440 if (pool_is_free_index (sm->segments, segment_index))
441 return 0;
442 return pool_elt_at_index (sm->segments, segment_index);
443}
444
Florin Coras88001c62019-04-24 14:44:46 -0700445void
446fifo_segment_info (fifo_segment_t * seg, char **address, size_t * size)
447{
Florin Coras404b8a32019-05-09 12:08:06 -0700448 *address = (char *) seg->ssvm.sh->ssvm_va;
449 *size = seg->ssvm.ssvm_size;
Florin Coras88001c62019-04-24 14:44:46 -0700450}
451
452void
453fifo_segment_main_init (fifo_segment_main_t * sm, u64 baseva,
454 u32 timeout_in_seconds)
455{
456 sm->next_baseva = baseva;
457 sm->timeout_in_seconds = timeout_in_seconds;
458}
459
Florin Corasf9d4ab42019-05-11 16:55:53 -0700460static inline u32
461fs_freelist_for_size (u32 size)
Florin Coras88001c62019-04-24 14:44:46 -0700462{
Florin Corasf22f4e52019-12-19 16:10:58 -0800463 if (PREDICT_FALSE (size < FIFO_SEGMENT_MIN_FIFO_SIZE))
464 return 0;
Florin Coras4b8011e2020-12-07 19:38:23 -0800465 return clib_min (max_log2 (size) - FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE,
466 FS_CHUNK_VEC_LEN - 1);
Florin Coras88001c62019-04-24 14:44:46 -0700467}
468
Florin Corasf9d4ab42019-05-11 16:55:53 -0700469static inline u32
470fs_freelist_index_to_size (u32 fl_index)
471{
Florin Coras62ddc032019-12-08 18:30:42 -0800472 return 1 << (fl_index + FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700473}
474
Florin Coras88001c62019-04-24 14:44:46 -0700475static inline int
Florin Coras62ddc032019-12-08 18:30:42 -0800476fs_chunk_size_is_valid (fifo_segment_header_t * fsh, u32 size)
Florin Coras88001c62019-04-24 14:44:46 -0700477{
478 /*
479 * 4K minimum. It's not likely that anything good will happen
480 * with a smaller FIFO.
481 */
Florin Coras4b8011e2020-12-07 19:38:23 -0800482 return size >= FIFO_SEGMENT_MIN_FIFO_SIZE &&
483 size <= (1ULL << fsh->max_log2_fifo_size);
Florin Coras88001c62019-04-24 14:44:46 -0700484}
485
Florin Coras8e755a12020-02-06 16:59:31 +0000486svm_fifo_chunk_t *
487fs_try_alloc_multi_chunk (fifo_segment_header_t * fsh,
488 fifo_segment_slice_t * fss, u32 data_bytes)
489{
490 u32 fl_index, fl_size, n_alloc = 0, req_bytes = data_bytes;
491 svm_fifo_chunk_t *c, *first = 0, *next;
492
493 fl_index = fs_freelist_for_size (req_bytes);
494 if (fl_index > 0)
495 fl_index -= 1;
496
497 fl_size = fs_freelist_index_to_size (fl_index);
498
499 while (req_bytes)
500 {
Florin Corasaf588822020-12-09 12:51:13 -0800501 c = fss_chunk_free_list_pop (fsh, fss, fl_index);
Florin Coras8e755a12020-02-06 16:59:31 +0000502 if (c)
503 {
Florin Corasaf588822020-12-09 12:51:13 -0800504 c->next = fs_chunk_sptr (fsh, first);
Florin Coras8e755a12020-02-06 16:59:31 +0000505 first = c;
506 n_alloc += fl_size;
507 req_bytes -= clib_min (fl_size, req_bytes);
508 }
509 else
510 {
511 /* Failed to allocate with smaller chunks */
512 if (fl_index == 0)
513 {
Florin Coras473c8462020-11-16 18:11:51 -0800514 /* Free all chunks if any allocated */
Florin Coras8e755a12020-02-06 16:59:31 +0000515 c = first;
516 while (c)
517 {
518 fl_index = fs_freelist_for_size (c->length);
Florin Corasaf588822020-12-09 12:51:13 -0800519 next = fs_chunk_ptr (fsh, c->next);
520 fss_chunk_free_list_push (fsh, fss, fl_index, c);
Florin Coras8e755a12020-02-06 16:59:31 +0000521 c = next;
522 }
523 n_alloc = 0;
524 first = 0;
Florin Coras473c8462020-11-16 18:11:51 -0800525 /* As last attempt, try allocating a chunk larger than
526 * the requested size, if possible */
527 fl_index = fs_freelist_for_size (data_bytes) + 1;
528 if (!fss_chunk_fl_index_is_valid (fss, fl_index))
529 return 0;
Florin Corasaf588822020-12-09 12:51:13 -0800530 first = fss_chunk_free_list_pop (fsh, fss, fl_index);
Florin Coras473c8462020-11-16 18:11:51 -0800531 if (first)
Florin Coras8e755a12020-02-06 16:59:31 +0000532 {
Florin Coras473c8462020-11-16 18:11:51 -0800533 first->next = 0;
534 n_alloc = fs_freelist_index_to_size (fl_index);
535 goto done;
Florin Coras8e755a12020-02-06 16:59:31 +0000536 }
Florin Coras8e755a12020-02-06 16:59:31 +0000537 return 0;
538 }
539 fl_index -= 1;
540 fl_size = fl_size >> 1;
541 }
542 }
543
Florin Coras473c8462020-11-16 18:11:51 -0800544done:
Florin Corasd01d2ce2020-11-17 18:42:38 -0800545 fss_fl_chunk_bytes_sub (fss, n_alloc);
Florin Coras8e755a12020-02-06 16:59:31 +0000546 fsh_cached_bytes_sub (fsh, n_alloc);
547 return first;
548}
549
Florin Corasf9d4ab42019-05-11 16:55:53 -0700550static int
Florin Coras473c8462020-11-16 18:11:51 -0800551fsh_try_alloc_fifo_hdr_batch (fifo_segment_header_t * fsh,
552 fifo_segment_slice_t * fss, u32 batch_size)
Florin Coras8e755a12020-02-06 16:59:31 +0000553{
Florin Coras17672aa2020-12-29 16:55:32 -0800554 svm_fifo_shared_t *f, *head = 0, *tail;
Florin Coras36a0c4d2020-01-31 08:28:02 -0800555 uword size;
Florin Corascefd5d82019-05-05 13:19:57 -0700556 u8 *fmem;
557 int i;
Florin Coras88001c62019-04-24 14:44:46 -0700558
Benoît Gannef23b1512020-11-25 15:06:01 +0100559 ASSERT (batch_size != 0);
560
Florin Coras473c8462020-11-16 18:11:51 -0800561 size = (uword) sizeof (*f) * batch_size;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700562
Florin Coras213b1bb2020-12-07 14:33:58 -0800563 fmem = fsh_alloc_aligned (fsh, size, CLIB_CACHE_LINE_BYTES);
Florin Corascefd5d82019-05-05 13:19:57 -0700564 if (fmem == 0)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700565 return -1;
Florin Coras88001c62019-04-24 14:44:46 -0700566
Florin Coras635f5062020-04-28 20:40:57 +0000567 /* Carve fifo hdr space */
Florin Coras17672aa2020-12-29 16:55:32 -0800568 tail = f = (svm_fifo_shared_t *) fmem;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700569 for (i = 0; i < batch_size; i++)
Florin Coras88001c62019-04-24 14:44:46 -0700570 {
Florin Coras17672aa2020-12-29 16:55:32 -0800571 clib_memset (f, 0, sizeof (*f));
572 f->next = fs_sptr (fsh, head);
573 head = f;
Florin Coras635f5062020-04-28 20:40:57 +0000574 fmem += sizeof (*f);
Florin Coras17672aa2020-12-29 16:55:32 -0800575 f = (svm_fifo_shared_t *) fmem;
Florin Coras635f5062020-04-28 20:40:57 +0000576 }
577
Florin Coras17672aa2020-12-29 16:55:32 -0800578 fss_fifo_free_list_push_list (fsh, fss, head, tail);
579
Florin Coras473c8462020-11-16 18:11:51 -0800580 return 0;
581}
582
583static int
584fsh_try_alloc_chunk_batch (fifo_segment_header_t * fsh,
585 fifo_segment_slice_t * fss,
586 u32 fl_index, u32 batch_size)
587{
Florin Coras473c8462020-11-16 18:11:51 -0800588 svm_fifo_chunk_t *c, *head = 0, *tail;
Florin Coras79b3f8c2020-11-20 07:34:53 -0800589 uword size, total_chunk_bytes;
590 u32 rounded_data_size;
Florin Coras473c8462020-11-16 18:11:51 -0800591 u8 *cmem;
592 int i;
593
Benoît Gannef23b1512020-11-25 15:06:01 +0100594 ASSERT (batch_size != 0);
595
Florin Coras473c8462020-11-16 18:11:51 -0800596 rounded_data_size = fs_freelist_index_to_size (fl_index);
Florin Coras79b3f8c2020-11-20 07:34:53 -0800597 total_chunk_bytes = (uword) batch_size *rounded_data_size;
Florin Coras473c8462020-11-16 18:11:51 -0800598 size = (uword) (sizeof (*c) + rounded_data_size) * batch_size;
599
Florin Coras213b1bb2020-12-07 14:33:58 -0800600 cmem = fsh_alloc_aligned (fsh, size, 8 /* chunk hdr is 24B */);
Florin Coras473c8462020-11-16 18:11:51 -0800601 if (cmem == 0)
602 return -1;
603
604 /* Carve fifo + chunk space */
605 tail = c = (svm_fifo_chunk_t *) cmem;
Florin Coras635f5062020-04-28 20:40:57 +0000606 for (i = 0; i < batch_size; i++)
607 {
Florin Corascefd5d82019-05-05 13:19:57 -0700608 c->start_byte = 0;
609 c->length = rounded_data_size;
Florin Corasaf588822020-12-09 12:51:13 -0800610 c->next = fs_chunk_sptr (fsh, head);
Florin Coras473c8462020-11-16 18:11:51 -0800611 head = c;
612 cmem += sizeof (*c) + rounded_data_size;
613 c = (svm_fifo_chunk_t *) cmem;
Florin Coras88001c62019-04-24 14:44:46 -0700614 }
Florin Corascefd5d82019-05-05 13:19:57 -0700615
Florin Corasaf588822020-12-09 12:51:13 -0800616 fss_chunk_free_list_push_list (fsh, fss, fl_index, head, tail);
Ryujiro Shibuyad3588722020-03-13 12:45:06 +0000617 fss->num_chunks[fl_index] += batch_size;
Florin Coras79b3f8c2020-11-20 07:34:53 -0800618 fss_fl_chunk_bytes_add (fss, total_chunk_bytes);
619 fsh_cached_bytes_add (fsh, total_chunk_bytes);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700620
621 return 0;
622}
623
Florin Coras473c8462020-11-16 18:11:51 -0800624static int
625fs_try_alloc_fifo_batch (fifo_segment_header_t * fsh,
626 fifo_segment_slice_t * fss,
627 u32 fl_index, u32 batch_size)
628{
629 if (fsh_try_alloc_fifo_hdr_batch (fsh, fss, batch_size))
630 return 0;
631 return fsh_try_alloc_chunk_batch (fsh, fss, fl_index, batch_size);
632}
633
Florin Corasc547e912020-12-08 17:50:45 -0800634static svm_fifo_shared_t *
635fsh_try_alloc_fifo_hdr (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss)
Florin Coras473c8462020-11-16 18:11:51 -0800636{
Florin Coras17672aa2020-12-29 16:55:32 -0800637 svm_fifo_shared_t *sf;
Florin Coras473c8462020-11-16 18:11:51 -0800638
639 if (!fss->free_fifos)
640 {
641 if (fsh_try_alloc_fifo_hdr_batch (fsh, fss,
642 FIFO_SEGMENT_ALLOC_BATCH_SIZE))
643 return 0;
644 }
645
Florin Coras17672aa2020-12-29 16:55:32 -0800646 sf = fss_fifo_free_list_pop (fsh, fss);
647 clib_memset (sf, 0, sizeof (*sf));
648
649 return sf;
Florin Coras473c8462020-11-16 18:11:51 -0800650}
651
652static svm_fifo_chunk_t *
653fsh_try_alloc_chunk (fifo_segment_header_t * fsh,
654 fifo_segment_slice_t * fss, u32 data_bytes)
655{
656 svm_fifo_chunk_t *c;
657 u32 fl_index;
658
659 fl_index = fs_freelist_for_size (data_bytes);
660
661free_list:
Florin Corasaf588822020-12-09 12:51:13 -0800662 c = fss_chunk_free_list_pop (fsh, fss, fl_index);
Florin Coras473c8462020-11-16 18:11:51 -0800663 if (c)
664 {
665 c->next = 0;
Florin Corasd01d2ce2020-11-17 18:42:38 -0800666 fss_fl_chunk_bytes_sub (fss, fs_freelist_index_to_size (fl_index));
Florin Coras473c8462020-11-16 18:11:51 -0800667 fsh_cached_bytes_sub (fsh, fs_freelist_index_to_size (fl_index));
668 }
669 else
670 {
671 u32 chunk_size, batch = FIFO_SEGMENT_ALLOC_BATCH_SIZE;
672 uword n_free;
673
674 chunk_size = fs_freelist_index_to_size (fl_index);
675 n_free = fsh_n_free_bytes (fsh);
676
677 if (chunk_size <= n_free)
678 {
679 batch = chunk_size * batch <= n_free ? batch : 1;
680 if (!fsh_try_alloc_chunk_batch (fsh, fss, fl_index, batch))
681 goto free_list;
682 }
683 /* Failed to allocate larger chunk, try to allocate multi-chunk
684 * that is close to what was actually requested */
Florin Corasd01d2ce2020-11-17 18:42:38 -0800685 if (data_bytes <= fss_fl_chunk_bytes (fss))
Florin Coras473c8462020-11-16 18:11:51 -0800686 {
687 c = fs_try_alloc_multi_chunk (fsh, fss, data_bytes);
688 if (c)
689 goto done;
690 batch = n_free / FIFO_SEGMENT_MIN_FIFO_SIZE;
691 if (!batch || fsh_try_alloc_chunk_batch (fsh, fss, 0, batch))
Florin Coras213b1bb2020-12-07 14:33:58 -0800692 goto done;
Florin Coras473c8462020-11-16 18:11:51 -0800693 }
Florin Corasd01d2ce2020-11-17 18:42:38 -0800694 if (data_bytes <= fss_fl_chunk_bytes (fss) + n_free)
Florin Coras473c8462020-11-16 18:11:51 -0800695 {
696 u32 min_size = FIFO_SEGMENT_MIN_FIFO_SIZE;
Florin Coras0d31b9c2021-05-08 15:29:50 -0700697 if (n_free < min_size)
698 goto done;
Florin Corasd01d2ce2020-11-17 18:42:38 -0800699 batch = (data_bytes - fss_fl_chunk_bytes (fss)) / min_size;
Florin Coras473c8462020-11-16 18:11:51 -0800700 batch = clib_min (batch + 1, n_free / min_size);
701 if (fsh_try_alloc_chunk_batch (fsh, fss, 0, batch))
Florin Coras213b1bb2020-12-07 14:33:58 -0800702 goto done;
Florin Coras473c8462020-11-16 18:11:51 -0800703 c = fs_try_alloc_multi_chunk (fsh, fss, data_bytes);
704 }
705 }
706
707done:
708
709 return c;
710}
711
Florin Corasf9d4ab42019-05-11 16:55:53 -0700712/**
713 * Try to allocate new fifo
714 *
715 * Tries the following steps in order:
716 * - grab fifo and chunk from freelists
717 * - batch fifo and chunk allocation
718 * - single fifo allocation
719 * - grab multiple fifo chunks from freelists
720 */
Florin Corasc547e912020-12-08 17:50:45 -0800721static svm_fifo_shared_t *
722fs_try_alloc_fifo (fifo_segment_header_t *fsh, u32 slice_index, u32 data_bytes)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700723{
Florin Corasc547e912020-12-08 17:50:45 -0800724 fifo_segment_slice_t *fss;
Florin Corasd01d2ce2020-11-17 18:42:38 -0800725 u32 fl_index, min_size;
Florin Coras473c8462020-11-16 18:11:51 -0800726 svm_fifo_chunk_t *c;
Florin Corasc547e912020-12-08 17:50:45 -0800727 svm_fifo_shared_t *sf = 0;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700728
Florin Corasc547e912020-12-08 17:50:45 -0800729 fss = fsh_slice_get (fsh, slice_index);
Florin Coras2de9c0f2020-02-02 19:30:39 +0000730 min_size = clib_max ((fsh->pct_first_alloc * data_bytes) / 100, 4096);
731 fl_index = fs_freelist_for_size (min_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700732
Florin Coras473c8462020-11-16 18:11:51 -0800733 if (!fss_chunk_fl_index_is_valid (fss, fl_index))
Florin Coras0e6199d2020-04-17 20:15:22 +0000734 return 0;
735
Florin Corasc547e912020-12-08 17:50:45 -0800736 sf = fsh_try_alloc_fifo_hdr (fsh, fss);
737 if (!sf)
Florin Corasd01d2ce2020-11-17 18:42:38 -0800738 return 0;
Florin Coras8122cc22019-12-18 13:06:41 -0800739
Florin Coras473c8462020-11-16 18:11:51 -0800740 c = fsh_try_alloc_chunk (fsh, fss, min_size);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800741 if (!c)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700742 {
Florin Coras17672aa2020-12-29 16:55:32 -0800743 fss_fifo_free_list_push (fsh, fss, sf);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800744 return 0;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700745 }
Florin Corasf9d4ab42019-05-11 16:55:53 -0700746
Florin Corasaf588822020-12-09 12:51:13 -0800747 sf->start_chunk = fs_chunk_sptr (fsh, c);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800748 while (c->next)
Florin Corasaf588822020-12-09 12:51:13 -0800749 c = fs_chunk_ptr (fsh, c->next);
750 sf->end_chunk = fs_chunk_sptr (fsh, c);
Florin Corasc547e912020-12-08 17:50:45 -0800751 sf->size = data_bytes;
752 sf->slice_index = slice_index;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700753
Florin Corasc547e912020-12-08 17:50:45 -0800754 return sf;
Florin Coras88001c62019-04-24 14:44:46 -0700755}
756
Florin Corasf22f4e52019-12-19 16:10:58 -0800757svm_fifo_chunk_t *
758fsh_alloc_chunk (fifo_segment_header_t * fsh, u32 slice_index, u32 chunk_size)
759{
760 fifo_segment_slice_t *fss;
761 svm_fifo_chunk_t *c;
Florin Corasf22f4e52019-12-19 16:10:58 -0800762
Florin Corasf22f4e52019-12-19 16:10:58 -0800763 fss = fsh_slice_get (fsh, slice_index);
Florin Coras473c8462020-11-16 18:11:51 -0800764 c = fsh_try_alloc_chunk (fsh, fss, chunk_size);
Florin Corasf22f4e52019-12-19 16:10:58 -0800765
766 return c;
767}
768
769static void
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000770fsh_slice_collect_chunks (fifo_segment_header_t * fsh,
Florin Coras9e61d9a2020-02-05 21:13:18 +0000771 fifo_segment_slice_t * fss, svm_fifo_chunk_t * c)
Florin Corasf22f4e52019-12-19 16:10:58 -0800772{
Florin Coras473c8462020-11-16 18:11:51 -0800773 u32 n_collect = 0, fl_index;
Florin Corasf22f4e52019-12-19 16:10:58 -0800774 svm_fifo_chunk_t *next;
Florin Corasf22f4e52019-12-19 16:10:58 -0800775
Florin Coras9e61d9a2020-02-05 21:13:18 +0000776 while (c)
Florin Corasf22f4e52019-12-19 16:10:58 -0800777 {
Benoît Gannedf601ae2020-10-20 14:31:55 +0200778 CLIB_MEM_UNPOISON (c, sizeof (*c));
Florin Corasaf588822020-12-09 12:51:13 -0800779 next = fs_chunk_ptr (fsh, c->next);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000780 fl_index = fs_freelist_for_size (c->length);
Florin Corasaf588822020-12-09 12:51:13 -0800781 fss_chunk_free_list_push (fsh, fss, fl_index, c);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000782 n_collect += fs_freelist_index_to_size (fl_index);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000783 c = next;
Florin Corasf22f4e52019-12-19 16:10:58 -0800784 }
785
Florin Corasd01d2ce2020-11-17 18:42:38 -0800786 fss_fl_chunk_bytes_add (fss, n_collect);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000787 fsh_cached_bytes_add (fsh, n_collect);
Florin Corasf22f4e52019-12-19 16:10:58 -0800788}
789
790void
791fsh_collect_chunks (fifo_segment_header_t * fsh, u32 slice_index,
Florin Coras9e61d9a2020-02-05 21:13:18 +0000792 svm_fifo_chunk_t * c)
Florin Corasf22f4e52019-12-19 16:10:58 -0800793{
794 fifo_segment_slice_t *fss;
795 fss = fsh_slice_get (fsh, slice_index);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000796 fsh_slice_collect_chunks (fsh, fss, c);
Florin Corasf22f4e52019-12-19 16:10:58 -0800797}
798
Florin Corasc547e912020-12-08 17:50:45 -0800799svm_fifo_t *
800fs_fifo_alloc (fifo_segment_t *fs, u32 slice_index)
801{
802 fifo_slice_private_t *pfss = &fs->slices[slice_index];
803 svm_fifo_t *f;
804
805 f = clib_mem_bulk_alloc (pfss->fifos);
806 clib_memset (f, 0, sizeof (*f));
807 return f;
808}
809
810void
Florin Corascbb5e822021-02-20 10:42:22 -0800811fs_fifo_free (fifo_segment_t *fs, svm_fifo_t *f, u32 slice_index)
Florin Corasc547e912020-12-08 17:50:45 -0800812{
Florin Corasc547e912020-12-08 17:50:45 -0800813 fifo_slice_private_t *pfss;
814
Florin Coras5c01dbc2021-02-18 14:43:32 -0800815 if (CLIB_DEBUG)
816 clib_memset (f, 0xfc, sizeof (*f));
817
Florin Corasc547e912020-12-08 17:50:45 -0800818 pfss = &fs->slices[slice_index];
819 clib_mem_bulk_free (pfss->fifos, f);
820}
821
822void
823fifo_segment_cleanup (fifo_segment_t *fs)
824{
825 int slice_index;
Florin Corasb4624182020-12-11 13:58:12 -0800826 svm_msg_q_t *mq = 0;
Florin Corasc547e912020-12-08 17:50:45 -0800827
828 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
829 clib_mem_bulk_destroy (fs->slices[slice_index].fifos);
Florin Corasb4624182020-12-11 13:58:12 -0800830
Florin Corasf1af21c2021-02-26 19:19:11 -0800831 vec_free (fs->slices);
832
Florin Corasb4624182020-12-11 13:58:12 -0800833 vec_foreach (fs->mqs, mq)
Florin Coras8c517c82021-03-30 00:23:54 -0700834 svm_msg_q_cleanup (mq);
Florin Corasb4624182020-12-11 13:58:12 -0800835
836 vec_free (fs->mqs);
Florin Corasc547e912020-12-08 17:50:45 -0800837}
838
Florin Coras88001c62019-04-24 14:44:46 -0700839/**
840 * Allocate fifo in fifo segment
841 */
842svm_fifo_t *
Florin Coras62ddc032019-12-08 18:30:42 -0800843fifo_segment_alloc_fifo_w_slice (fifo_segment_t * fs, u32 slice_index,
844 u32 data_bytes, fifo_segment_ftype_t ftype)
Florin Coras88001c62019-04-24 14:44:46 -0700845{
Florin Coras62ddc032019-12-08 18:30:42 -0800846 fifo_segment_header_t *fsh = fs->h;
Florin Coras1f952d32020-12-09 19:43:21 -0800847 fifo_slice_private_t *pfss;
Florin Coras62ddc032019-12-08 18:30:42 -0800848 fifo_segment_slice_t *fss;
Florin Corasc547e912020-12-08 17:50:45 -0800849 svm_fifo_shared_t *sf;
Florin Coras88001c62019-04-24 14:44:46 -0700850 svm_fifo_t *f = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700851
Florin Coras62ddc032019-12-08 18:30:42 -0800852 ASSERT (slice_index < fs->n_slices);
Florin Coras88001c62019-04-24 14:44:46 -0700853
Florin Coras4b8011e2020-12-07 19:38:23 -0800854 if (PREDICT_FALSE (data_bytes > 1 << fsh->max_log2_fifo_size))
Florin Coras0e6199d2020-04-17 20:15:22 +0000855 return 0;
856
Florin Corasc547e912020-12-08 17:50:45 -0800857 sf = fs_try_alloc_fifo (fsh, slice_index, data_bytes);
858 if (!sf)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700859 goto done;
Florin Coras88001c62019-04-24 14:44:46 -0700860
Florin Corasc547e912020-12-08 17:50:45 -0800861 f = fs_fifo_alloc (fs, slice_index);
862 f->fs_hdr = fsh;
863 f->shr = sf;
Florin Coras62ddc032019-12-08 18:30:42 -0800864
Florin Corascefd5d82019-05-05 13:19:57 -0700865 svm_fifo_init (f, data_bytes);
Florin Coras88001c62019-04-24 14:44:46 -0700866
Florin Corasc547e912020-12-08 17:50:45 -0800867 fss = fsh_slice_get (fsh, slice_index);
Florin Coras1f952d32020-12-09 19:43:21 -0800868 pfss = fs_slice_private_get (fs, slice_index);
Florin Corasc547e912020-12-08 17:50:45 -0800869
Florin Coras88001c62019-04-24 14:44:46 -0700870 /* If rx fifo type add to active fifos list. When cleaning up segment,
871 * we need a list of active sessions that should be disconnected. Since
872 * both rx and tx fifos keep pointers to the session, it's enough to track
873 * only one. */
874 if (ftype == FIFO_SEGMENT_RX_FIFO)
875 {
Florin Coras1f952d32020-12-09 19:43:21 -0800876 pfss_fifo_add_active_list (pfss, f);
Florin Coras88001c62019-04-24 14:44:46 -0700877 f->flags |= SVM_FIFO_F_LL_TRACKED;
Florin Corasf22f4e52019-12-19 16:10:58 -0800878 }
879
Florin Coras62ddc032019-12-08 18:30:42 -0800880 fsh_active_fifos_update (fsh, 1);
Florin Coras06d47752020-03-06 02:23:58 +0000881 fss->virtual_mem += svm_fifo_size (f);
Florin Coras88001c62019-04-24 14:44:46 -0700882
883done:
Florin Coras88001c62019-04-24 14:44:46 -0700884 return (f);
885}
886
Florin Corasc547e912020-12-08 17:50:45 -0800887svm_fifo_t *
Florin Coras14f066e2020-12-10 18:52:40 -0800888fifo_segment_alloc_fifo_w_offset (fifo_segment_t *fs, uword offset)
Florin Corasc547e912020-12-08 17:50:45 -0800889{
890 svm_fifo_t *f = fs_fifo_alloc (fs, 0);
Florin Coras14f066e2020-12-10 18:52:40 -0800891 svm_fifo_shared_t *sf;
892
893 sf = (svm_fifo_shared_t *) ((u8 *) fs->h + offset);
Florin Corasc547e912020-12-08 17:50:45 -0800894 f->fs_hdr = fs->h;
895 f->shr = sf;
896
897 f->ooos_list_head = OOO_SEGMENT_INVALID_INDEX;
898 f->segment_index = SVM_FIFO_INVALID_INDEX;
899 f->refcnt = 1;
900 return f;
901}
902
Florin Coras88001c62019-04-24 14:44:46 -0700903/**
904 * Free fifo allocated in fifo segment
905 */
906void
Florin Corasb095a3c2019-04-25 12:58:46 -0700907fifo_segment_free_fifo (fifo_segment_t * fs, svm_fifo_t * f)
Florin Coras88001c62019-04-24 14:44:46 -0700908{
Florin Coras62ddc032019-12-08 18:30:42 -0800909 fifo_segment_header_t *fsh = fs->h;
Florin Coras1f952d32020-12-09 19:43:21 -0800910 fifo_slice_private_t *pfss;
Florin Coras62ddc032019-12-08 18:30:42 -0800911 fifo_segment_slice_t *fss;
Florin Corasc547e912020-12-08 17:50:45 -0800912 svm_fifo_shared_t *sf;
Florin Coras88001c62019-04-24 14:44:46 -0700913
914 ASSERT (f->refcnt > 0);
915
916 if (--f->refcnt > 0)
917 return;
918
Florin Corasc547e912020-12-08 17:50:45 -0800919 /*
920 * Cleanup shared state
921 */
922
923 sf = f->shr;
924 fss = fsh_slice_get (fsh, sf->slice_index);
Florin Coras1f952d32020-12-09 19:43:21 -0800925 pfss = fs_slice_private_get (fs, sf->slice_index);
Florin Corasc547e912020-12-08 17:50:45 -0800926
927 /* Free fifo chunks */
Florin Corasaf588822020-12-09 12:51:13 -0800928 fsh_slice_collect_chunks (fsh, fss, fs_chunk_ptr (fsh, f->shr->start_chunk));
Florin Corasc547e912020-12-08 17:50:45 -0800929
930 sf->start_chunk = sf->end_chunk = 0;
931 sf->head_chunk = sf->tail_chunk = 0;
932
933 /* Add to free list */
Florin Coras17672aa2020-12-29 16:55:32 -0800934 fss_fifo_free_list_push (fsh, fss, sf);
Florin Corasc547e912020-12-08 17:50:45 -0800935
936 fss->virtual_mem -= svm_fifo_size (f);
937
938 /*
939 * Cleanup private state
940 */
Florin Coras88001c62019-04-24 14:44:46 -0700941
942 /* Remove from active list. Only rx fifos are tracked */
943 if (f->flags & SVM_FIFO_F_LL_TRACKED)
944 {
Florin Coras1f952d32020-12-09 19:43:21 -0800945 pfss_fifo_del_active_list (pfss, f);
Florin Coras88001c62019-04-24 14:44:46 -0700946 f->flags &= ~SVM_FIFO_F_LL_TRACKED;
947 }
948
Florin Corasf22f4e52019-12-19 16:10:58 -0800949 svm_fifo_free_chunk_lookup (f);
Florin Corasb095a3c2019-04-25 12:58:46 -0700950 svm_fifo_free_ooo_data (f);
951
Florin Coras88001c62019-04-24 14:44:46 -0700952 if (CLIB_DEBUG)
953 {
Florin Corasc547e912020-12-08 17:50:45 -0800954 sf->master_session_index = ~0;
Florin Coras88001c62019-04-24 14:44:46 -0700955 f->master_thread_index = ~0;
956 }
957
Florin Corasc547e912020-12-08 17:50:45 -0800958 f->ooo_enq = f->ooo_deq = 0;
Florin Coras06d47752020-03-06 02:23:58 +0000959 f->prev = 0;
Florin Corasc547e912020-12-08 17:50:45 -0800960
Florin Corascbb5e822021-02-20 10:42:22 -0800961 fs_fifo_free (fs, f, f->shr->slice_index);
Florin Coras06d47752020-03-06 02:23:58 +0000962
Florin Coras62ddc032019-12-08 18:30:42 -0800963 fsh_active_fifos_update (fsh, -1);
Florin Coras88001c62019-04-24 14:44:46 -0700964}
965
Florin Coras6d7552c2020-04-09 01:49:45 +0000966void
Florin Corascbb5e822021-02-20 10:42:22 -0800967fifo_segment_free_client_fifo (fifo_segment_t *fs, svm_fifo_t *f)
968{
969 fs_fifo_free (fs, f, 0 /* clients attach fifos in slice 0 */);
970}
971
972void
Florin Coras0bc78d82021-01-09 14:34:01 -0800973fifo_segment_detach_fifo (fifo_segment_t *fs, svm_fifo_t **f)
Florin Coras6d7552c2020-04-09 01:49:45 +0000974{
Florin Coras1f952d32020-12-09 19:43:21 -0800975 fifo_slice_private_t *pfss;
Florin Coras6d7552c2020-04-09 01:49:45 +0000976 fifo_segment_slice_t *fss;
Florin Coras0bc78d82021-01-09 14:34:01 -0800977 svm_fifo_t *of = *f;
Florin Coras255554f2021-02-18 21:35:23 -0800978 u32 slice_index;
Florin Coras6d7552c2020-04-09 01:49:45 +0000979
Florin Coras0bc78d82021-01-09 14:34:01 -0800980 slice_index = of->master_thread_index;
981 fss = fsh_slice_get (fs->h, slice_index);
982 pfss = fs_slice_private_get (fs, slice_index);
983 fss->virtual_mem -= svm_fifo_size (of);
984 if (of->flags & SVM_FIFO_F_LL_TRACKED)
985 pfss_fifo_del_active_list (pfss, of);
Florin Coras6d7552c2020-04-09 01:49:45 +0000986
Florin Coras255554f2021-02-18 21:35:23 -0800987 /* Collect chunks that were provided in return for those detached */
988 fsh_slice_collect_chunks (fs->h, fss, of->chunks_at_attach);
989 of->chunks_at_attach = 0;
Florin Coras0bc78d82021-01-09 14:34:01 -0800990
Florin Coras9c499e32021-02-25 09:57:04 -0800991 /* Collect hdr that was provided in return for the detached */
992 fss_fifo_free_list_push (fs->h, fss, of->hdr_at_attach);
993 of->hdr_at_attach = 0;
994
Florin Coras0bc78d82021-01-09 14:34:01 -0800995 clib_mem_bulk_free (pfss->fifos, *f);
996 *f = 0;
Florin Coras6d7552c2020-04-09 01:49:45 +0000997}
998
999void
Florin Coras0bc78d82021-01-09 14:34:01 -08001000fifo_segment_attach_fifo (fifo_segment_t *fs, svm_fifo_t **f, u32 slice_index)
Florin Coras6d7552c2020-04-09 01:49:45 +00001001{
Florin Coras255554f2021-02-18 21:35:23 -08001002 svm_fifo_chunk_t *c, *nc, *pc = 0;
Florin Coras1f952d32020-12-09 19:43:21 -08001003 fifo_slice_private_t *pfss;
Florin Coras6d7552c2020-04-09 01:49:45 +00001004 fifo_segment_slice_t *fss;
Florin Coras0bc78d82021-01-09 14:34:01 -08001005 svm_fifo_t *nf, *of;
Florin Coras6d7552c2020-04-09 01:49:45 +00001006
Florin Coras0bc78d82021-01-09 14:34:01 -08001007 nf = fs_fifo_alloc (fs, slice_index);
1008 clib_memcpy_fast (nf, *f, sizeof (*nf));
Florin Coras6d7552c2020-04-09 01:49:45 +00001009
Florin Coras0bc78d82021-01-09 14:34:01 -08001010 fss = fsh_slice_get (fs->h, slice_index);
1011 pfss = fs_slice_private_get (fs, slice_index);
1012 fss->virtual_mem += svm_fifo_size (nf);
Florin Coras5c01dbc2021-02-18 14:43:32 -08001013 nf->next = nf->prev = 0;
Florin Coras0bc78d82021-01-09 14:34:01 -08001014 if (nf->flags & SVM_FIFO_F_LL_TRACKED)
1015 pfss_fifo_add_active_list (pfss, nf);
1016
Florin Coras9c499e32021-02-25 09:57:04 -08001017 /* Allocate shared hdr and chunks to be collected at detach in return
1018 * for those that are being attached now */
Florin Coras0bc78d82021-01-09 14:34:01 -08001019 of = *f;
Florin Coras9c499e32021-02-25 09:57:04 -08001020 of->hdr_at_attach = fsh_try_alloc_fifo_hdr (fs->h, fss);
Florin Coras0bc78d82021-01-09 14:34:01 -08001021
1022 c = fs_chunk_ptr (fs->h, nf->shr->start_chunk);
Florin Coras255554f2021-02-18 21:35:23 -08001023 of->chunks_at_attach = pc = fsh_try_alloc_chunk (fs->h, fss, c->length);
Florin Coras255554f2021-02-18 21:35:23 -08001024
Florin Coras9c499e32021-02-25 09:57:04 -08001025 while ((c = fs_chunk_ptr (fs->h, c->next)))
Florin Coras6d7552c2020-04-09 01:49:45 +00001026 {
Florin Coras255554f2021-02-18 21:35:23 -08001027 nc = fsh_try_alloc_chunk (fs->h, fss, c->length);
1028 pc->next = fs_chunk_sptr (fs->h, nc);
1029 pc = nc;
Florin Coras6d7552c2020-04-09 01:49:45 +00001030 }
Florin Coras0bc78d82021-01-09 14:34:01 -08001031
1032 nf->shr->slice_index = slice_index;
1033 *f = nf;
Florin Coras6d7552c2020-04-09 01:49:45 +00001034}
1035
Florin Coras14f066e2020-12-10 18:52:40 -08001036uword
1037fifo_segment_fifo_offset (svm_fifo_t *f)
1038{
1039 return (u8 *) f->shr - (u8 *) f->fs_hdr;
1040}
1041
Florin Coras00338e02021-04-20 14:26:46 -07001042svm_fifo_chunk_t *
1043fifo_segment_alloc_chunk_w_slice (fifo_segment_t *fs, u32 slice_index,
1044 u32 chunk_size)
1045{
1046 fifo_segment_header_t *fsh = fs->h;
1047 fifo_segment_slice_t *fss;
1048
1049 fss = fsh_slice_get (fsh, slice_index);
1050 return fsh_try_alloc_chunk (fsh, fss, chunk_size);
1051}
1052
1053void
1054fifo_segment_collect_chunk (fifo_segment_t *fs, u32 slice_index,
1055 svm_fifo_chunk_t *c)
1056{
1057 fsh_collect_chunks (fs->h, slice_index, c);
1058}
1059
1060uword
1061fifo_segment_chunk_offset (fifo_segment_t *fs, svm_fifo_chunk_t *c)
1062{
1063 return (u8 *) c - (u8 *) fs->h;
1064}
1065
Florin Corasb4624182020-12-11 13:58:12 -08001066svm_msg_q_t *
1067fifo_segment_msg_q_alloc (fifo_segment_t *fs, u32 mq_index,
1068 svm_msg_q_cfg_t *cfg)
1069{
1070 fifo_segment_header_t *fsh = fs->h;
1071 svm_msg_q_shared_t *smq;
1072 svm_msg_q_t *mq;
1073 void *base;
1074 u32 size;
1075
1076 if (!fs->mqs)
1077 {
1078 u32 n_mqs = clib_max (fs->h->n_mqs, 1);
1079 vec_validate (fs->mqs, n_mqs - 1);
1080 }
1081
1082 size = svm_msg_q_size_to_alloc (cfg);
1083 base = fsh_alloc_aligned (fsh, size, 8);
1084 fsh->n_reserved_bytes += size;
1085
1086 smq = svm_msg_q_init (base, cfg);
1087 mq = vec_elt_at_index (fs->mqs, mq_index);
1088 svm_msg_q_attach (mq, smq);
1089
1090 return mq;
1091}
1092
1093svm_msg_q_t *
1094fifo_segment_msg_q_attach (fifo_segment_t *fs, uword offset, u32 mq_index)
1095{
1096 svm_msg_q_t *mq;
1097
1098 if (!fs->mqs)
1099 {
1100 u32 n_mqs = clib_max (fs->h->n_mqs, 1);
1101 vec_validate (fs->mqs, n_mqs - 1);
1102 }
1103
1104 mq = vec_elt_at_index (fs->mqs, mq_index);
1105
Florin Coras86f12322021-01-22 15:05:14 -08001106 if (!mq->q.shr)
Florin Corasb4624182020-12-11 13:58:12 -08001107 {
1108 svm_msg_q_shared_t *smq;
1109 smq = (svm_msg_q_shared_t *) ((u8 *) fs->h + offset);
1110 svm_msg_q_attach (mq, smq);
1111 }
1112
1113 ASSERT (fifo_segment_msg_q_offset (fs, mq_index) == offset);
1114
1115 return mq;
1116}
1117
Florin Coras80b74252021-01-27 18:08:25 -08001118void
1119fifo_segment_msg_qs_discover (fifo_segment_t *fs, int *fds, u32 n_fds)
1120{
1121 svm_msg_q_shared_t *smq;
1122 u32 n_mqs, size, i;
1123 uword offset = 0, n_alloced;
1124 svm_msg_q_t *mq;
1125
1126 n_mqs = fs->h->n_mqs;
1127 if (n_fds && n_mqs != n_fds)
1128 {
1129 clib_warning ("expected %u fds got %u", n_mqs, n_fds);
1130 return;
1131 }
1132
1133 vec_validate (fs->mqs, n_mqs - 1);
1134 n_alloced = fs->h->n_reserved_bytes - fs->h->start_byte_index;
1135 ASSERT (n_alloced % n_mqs == 0);
1136 size = n_alloced / n_mqs;
1137
1138 offset = fs->h->start_byte_index;
1139 for (i = 0; i < n_mqs; i++)
1140 {
1141 mq = vec_elt_at_index (fs->mqs, i);
1142 smq = (svm_msg_q_shared_t *) ((u8 *) fs->h + offset);
1143 svm_msg_q_attach (mq, smq);
1144 if (n_fds)
1145 svm_msg_q_set_eventfd (mq, fds[i]);
1146 offset += size;
1147 }
1148}
1149
Florin Corasb4624182020-12-11 13:58:12 -08001150uword
1151fifo_segment_msg_q_offset (fifo_segment_t *fs, u32 mq_index)
1152{
1153 svm_msg_q_t *mq = vec_elt_at_index (fs->mqs, mq_index);
1154
Florin Coras86f12322021-01-22 15:05:14 -08001155 if (mq->q.shr == 0)
Florin Corasb4624182020-12-11 13:58:12 -08001156 return ~0ULL;
1157
Florin Coras86f12322021-01-22 15:05:14 -08001158 return (uword) ((u8 *) mq->q.shr - (u8 *) fs->h) -
1159 sizeof (svm_msg_q_shared_t);
Florin Corasb4624182020-12-11 13:58:12 -08001160}
1161
Florin Corasf9d4ab42019-05-11 16:55:53 -07001162int
Florin Coras62ddc032019-12-08 18:30:42 -08001163fifo_segment_prealloc_fifo_hdrs (fifo_segment_t * fs, u32 slice_index,
1164 u32 batch_size)
Florin Corasf9d4ab42019-05-11 16:55:53 -07001165{
1166 fifo_segment_header_t *fsh = fs->h;
Florin Coras62ddc032019-12-08 18:30:42 -08001167 fifo_segment_slice_t *fss;
Florin Corasf9d4ab42019-05-11 16:55:53 -07001168
Florin Coras62ddc032019-12-08 18:30:42 -08001169 fss = fsh_slice_get (fsh, slice_index);
Florin Corasfe1ab7e2020-11-26 11:34:38 -08001170 return fsh_try_alloc_fifo_hdr_batch (fsh, fss, batch_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -07001171}
1172
1173int
Florin Coras62ddc032019-12-08 18:30:42 -08001174fifo_segment_prealloc_fifo_chunks (fifo_segment_t * fs, u32 slice_index,
1175 u32 chunk_size, u32 batch_size)
Florin Corasf9d4ab42019-05-11 16:55:53 -07001176{
Florin Coras62ddc032019-12-08 18:30:42 -08001177 fifo_segment_header_t *fsh = fs->h;
1178 fifo_segment_slice_t *fss;
Florin Coras473c8462020-11-16 18:11:51 -08001179 u32 fl_index;
Florin Corasf9d4ab42019-05-11 16:55:53 -07001180
Florin Coras62ddc032019-12-08 18:30:42 -08001181 if (!fs_chunk_size_is_valid (fsh, chunk_size))
Florin Corasf9d4ab42019-05-11 16:55:53 -07001182 {
1183 clib_warning ("chunk size out of range %d", chunk_size);
1184 return -1;
1185 }
1186
1187 fl_index = fs_freelist_for_size (chunk_size);
Florin Coras62ddc032019-12-08 18:30:42 -08001188 fss = fsh_slice_get (fsh, slice_index);
1189
Florin Coras473c8462020-11-16 18:11:51 -08001190 return fsh_try_alloc_chunk_batch (fsh, fss, fl_index, batch_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -07001191}
1192
Florin Coras88001c62019-04-24 14:44:46 -07001193/**
1194 * Pre-allocates fifo pairs in fifo segment
1195 */
1196void
1197fifo_segment_preallocate_fifo_pairs (fifo_segment_t * fs,
1198 u32 rx_fifo_size, u32 tx_fifo_size,
1199 u32 * n_fifo_pairs)
1200{
Florin Corasf9d4ab42019-05-11 16:55:53 -07001201 u32 rx_rounded_data_size, tx_rounded_data_size, pair_size, pairs_to_alloc;
Florin Coras8d0149d2020-01-02 19:22:51 +00001202 u32 hdrs, pairs_per_slice, alloc_now;
Florin Coras62ddc032019-12-08 18:30:42 -08001203 fifo_segment_header_t *fsh = fs->h;
1204 int rx_fl_index, tx_fl_index, i;
1205 fifo_segment_slice_t *fss;
Florin Coras88001c62019-04-24 14:44:46 -07001206 uword space_available;
Florin Coras88001c62019-04-24 14:44:46 -07001207
1208 /* Parameter check */
1209 if (rx_fifo_size == 0 || tx_fifo_size == 0 || *n_fifo_pairs == 0)
1210 return;
1211
Florin Coras62ddc032019-12-08 18:30:42 -08001212 if (!fs_chunk_size_is_valid (fsh, rx_fifo_size))
Florin Coras88001c62019-04-24 14:44:46 -07001213 {
1214 clib_warning ("rx fifo_size out of range %d", rx_fifo_size);
1215 return;
1216 }
1217
Florin Coras62ddc032019-12-08 18:30:42 -08001218 if (!fs_chunk_size_is_valid (fsh, tx_fifo_size))
Florin Coras88001c62019-04-24 14:44:46 -07001219 {
1220 clib_warning ("tx fifo_size out of range %d", tx_fifo_size);
1221 return;
1222 }
1223
1224 rx_rounded_data_size = (1 << (max_log2 (rx_fifo_size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -07001225 rx_fl_index = fs_freelist_for_size (rx_fifo_size);
Florin Coras88001c62019-04-24 14:44:46 -07001226 tx_rounded_data_size = (1 << (max_log2 (tx_fifo_size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -07001227 tx_fl_index = fs_freelist_for_size (tx_fifo_size);
Florin Coras88001c62019-04-24 14:44:46 -07001228
Florin Corasf9d4ab42019-05-11 16:55:53 -07001229 hdrs = sizeof (svm_fifo_t) + sizeof (svm_fifo_chunk_t);
Florin Corascefd5d82019-05-05 13:19:57 -07001230
Florin Coras88001c62019-04-24 14:44:46 -07001231 /* Calculate space requirements */
Florin Corascefd5d82019-05-05 13:19:57 -07001232 pair_size = 2 * hdrs + rx_rounded_data_size + tx_rounded_data_size;
Florin Coras213b1bb2020-12-07 14:33:58 -08001233 space_available = fsh_n_free_bytes (fsh);
Florin Coraseaacce42019-07-02 13:07:37 -07001234 pairs_to_alloc = space_available / pair_size;
1235 pairs_to_alloc = clib_min (pairs_to_alloc, *n_fifo_pairs);
Florin Coras62ddc032019-12-08 18:30:42 -08001236 pairs_per_slice = pairs_to_alloc / fs->n_slices;
Florin Coras8d0149d2020-01-02 19:22:51 +00001237 pairs_per_slice += pairs_to_alloc % fs->n_slices ? 1 : 0;
Florin Coraseaacce42019-07-02 13:07:37 -07001238
Florin Coras62ddc032019-12-08 18:30:42 -08001239 if (!pairs_per_slice)
Florin Coraseaacce42019-07-02 13:07:37 -07001240 return;
Florin Coras88001c62019-04-24 14:44:46 -07001241
Florin Coras62ddc032019-12-08 18:30:42 -08001242 for (i = 0; i < fs->n_slices; i++)
1243 {
Florin Coras8d0149d2020-01-02 19:22:51 +00001244 alloc_now = clib_min (pairs_per_slice, *n_fifo_pairs);
Benoît Gannef23b1512020-11-25 15:06:01 +01001245 if (0 == alloc_now)
1246 break;
1247
1248 fss = fsh_slice_get (fsh, i);
Florin Coras8d0149d2020-01-02 19:22:51 +00001249 if (fs_try_alloc_fifo_batch (fsh, fss, rx_fl_index, alloc_now))
1250 clib_warning ("rx prealloc failed: pairs %u", alloc_now);
1251 if (fs_try_alloc_fifo_batch (fsh, fss, tx_fl_index, alloc_now))
1252 clib_warning ("tx prealloc failed: pairs %u", alloc_now);
Florin Coras88001c62019-04-24 14:44:46 -07001253
Florin Coras8d0149d2020-01-02 19:22:51 +00001254 /* Account for the pairs allocated */
1255 *n_fifo_pairs -= alloc_now;
1256 }
Florin Coras88001c62019-04-24 14:44:46 -07001257}
1258
1259/**
1260 * Get number of active fifos
1261 */
1262u32
1263fifo_segment_num_fifos (fifo_segment_t * fs)
1264{
Florin Coras7a90e502020-04-09 04:46:14 +00001265 return fsh_n_active_fifos (fs->h);
Florin Coras88001c62019-04-24 14:44:46 -07001266}
1267
Florin Coras62ddc032019-12-08 18:30:42 -08001268static u32
Florin Coras17672aa2020-12-29 16:55:32 -08001269fs_slice_num_free_fifos (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss)
Florin Coras88001c62019-04-24 14:44:46 -07001270{
Florin Corasc547e912020-12-08 17:50:45 -08001271 svm_fifo_shared_t *f;
Florin Corascefd5d82019-05-05 13:19:57 -07001272 u32 count = 0;
Florin Coras88001c62019-04-24 14:44:46 -07001273
Florin Coras17672aa2020-12-29 16:55:32 -08001274 f = fs_ptr (fsh, fss->free_fifos);
Florin Coras88001c62019-04-24 14:44:46 -07001275 if (f == 0)
1276 return 0;
1277
1278 while (f)
1279 {
Florin Coras17672aa2020-12-29 16:55:32 -08001280 f = fs_ptr (fsh, f->next);
Florin Coras88001c62019-04-24 14:44:46 -07001281 count++;
1282 }
1283 return count;
1284}
1285
Florin Corasb095a3c2019-04-25 12:58:46 -07001286u32
Florin Coras62ddc032019-12-08 18:30:42 -08001287fifo_segment_num_free_fifos (fifo_segment_t * fs)
1288{
1289 fifo_segment_header_t *fsh = fs->h;
1290 fifo_segment_slice_t *fss;
1291 int slice_index;
1292 u32 count = 0;
1293
1294 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1295 {
1296 fss = fsh_slice_get (fsh, slice_index);
Florin Coras17672aa2020-12-29 16:55:32 -08001297 count += fs_slice_num_free_fifos (fsh, fss);
Florin Coras62ddc032019-12-08 18:30:42 -08001298 }
1299 return count;
1300}
1301
1302static u32
Florin Corasaf588822020-12-09 12:51:13 -08001303fs_slice_num_free_chunks (fifo_segment_header_t *fsh,
1304 fifo_segment_slice_t *fss, u32 size)
Florin Corasb095a3c2019-04-25 12:58:46 -07001305{
1306 u32 count = 0, rounded_size, fl_index;
Florin Corasb095a3c2019-04-25 12:58:46 -07001307 svm_fifo_chunk_t *c;
1308 int i;
1309
Florin Corasb095a3c2019-04-25 12:58:46 -07001310 /* Count all free chunks? */
1311 if (size == ~0)
1312 {
Florin Coras4b8011e2020-12-07 19:38:23 -08001313 for (i = 0; i < FS_CHUNK_VEC_LEN; i++)
Florin Corasb095a3c2019-04-25 12:58:46 -07001314 {
Florin Coras014dba32021-03-31 19:36:49 -07001315 c = fss_chunk_free_list_head (fsh, fss, i);
Florin Corasb095a3c2019-04-25 12:58:46 -07001316 if (c == 0)
1317 continue;
1318
1319 while (c)
1320 {
Florin Corasaf588822020-12-09 12:51:13 -08001321 c = fs_chunk_ptr (fsh, c->next);
Florin Corasb095a3c2019-04-25 12:58:46 -07001322 count++;
1323 }
1324 }
1325 return count;
1326 }
1327
1328 rounded_size = (1 << (max_log2 (size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -07001329 fl_index = fs_freelist_for_size (rounded_size);
Florin Corasb095a3c2019-04-25 12:58:46 -07001330
Florin Coras4b8011e2020-12-07 19:38:23 -08001331 if (fl_index >= FS_CHUNK_VEC_LEN)
Florin Corasb095a3c2019-04-25 12:58:46 -07001332 return 0;
1333
Florin Coras014dba32021-03-31 19:36:49 -07001334 c = fss_chunk_free_list_head (fsh, fss, fl_index);
Florin Corasb095a3c2019-04-25 12:58:46 -07001335 if (c == 0)
1336 return 0;
1337
1338 while (c)
1339 {
Florin Corasaf588822020-12-09 12:51:13 -08001340 c = fs_chunk_ptr (fsh, c->next);
Florin Corasb095a3c2019-04-25 12:58:46 -07001341 count++;
1342 }
1343 return count;
1344}
1345
Florin Coras62ddc032019-12-08 18:30:42 -08001346u32
1347fifo_segment_num_free_chunks (fifo_segment_t * fs, u32 size)
1348{
1349 fifo_segment_header_t *fsh = fs->h;
1350 fifo_segment_slice_t *fss;
1351 int slice_index;
1352 u32 count = 0;
1353
1354 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1355 {
1356 fss = fsh_slice_get (fsh, slice_index);
Florin Corasaf588822020-12-09 12:51:13 -08001357 count += fs_slice_num_free_chunks (fsh, fss, size);
Florin Coras62ddc032019-12-08 18:30:42 -08001358 }
1359 return count;
1360}
1361
Florin Corasef4f3e72019-12-11 14:27:53 -08001362uword
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001363fifo_segment_size (fifo_segment_t * fs)
1364{
Florin Coras213b1bb2020-12-07 14:33:58 -08001365 return fs->h->max_byte_index - fs->h->n_reserved_bytes;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001366}
1367
1368u8
1369fsh_has_reached_mem_limit (fifo_segment_header_t * fsh)
1370{
1371 return (fsh->flags & FIFO_SEGMENT_F_MEM_LIMIT) ? 1 : 0;
1372}
1373
1374void
1375fsh_reset_mem_limit (fifo_segment_header_t * fsh)
1376{
1377 fsh->flags &= ~FIFO_SEGMENT_F_MEM_LIMIT;
1378}
1379
Florin Coras213b1bb2020-12-07 14:33:58 -08001380void *
1381fifo_segment_alloc (fifo_segment_t *fs, uword size)
1382{
1383 void *rv = fsh_alloc (fs->h, size);
1384 /* Mark externally allocated bytes as reserved. This helps
1385 * @ref fifo_segment_size report bytes used only for fifos */
1386 fs->h->n_reserved_bytes += size;
1387 return rv;
1388}
1389
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001390uword
Florin Corasf9d4ab42019-05-11 16:55:53 -07001391fifo_segment_free_bytes (fifo_segment_t * fs)
1392{
Florin Coras62ddc032019-12-08 18:30:42 -08001393 return fsh_n_free_bytes (fs->h);
Florin Corasf9d4ab42019-05-11 16:55:53 -07001394}
1395
Florin Coras62ddc032019-12-08 18:30:42 -08001396uword
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001397fifo_segment_cached_bytes (fifo_segment_t * fs)
1398{
1399 return fsh_n_cached_bytes (fs->h);
1400}
1401
1402uword
Florin Coras75ccf7b2020-03-05 19:44:02 +00001403fifo_segment_available_bytes (fifo_segment_t * fs)
1404{
1405 return fsh_n_free_bytes (fs->h) + fsh_n_cached_bytes (fs->h);
1406}
1407
1408uword
Florin Coras1c91c772019-06-25 18:14:13 -07001409fifo_segment_fl_chunk_bytes (fifo_segment_t * fs)
Florin Corasf9d4ab42019-05-11 16:55:53 -07001410{
Florin Coras62ddc032019-12-08 18:30:42 -08001411 fifo_segment_header_t *fsh = fs->h;
1412 fifo_segment_slice_t *fss;
1413 uword n_bytes = 0;
1414 int slice_index;
1415
1416 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1417 {
1418 fss = fsh_slice_get (fsh, slice_index);
Florin Corasd01d2ce2020-11-17 18:42:38 -08001419 n_bytes += fss_fl_chunk_bytes (fss);
Florin Coras62ddc032019-12-08 18:30:42 -08001420 }
1421
1422 return n_bytes;
Florin Corasf9d4ab42019-05-11 16:55:53 -07001423}
1424
Florin Coras88001c62019-04-24 14:44:46 -07001425u8
1426fifo_segment_has_fifos (fifo_segment_t * fs)
1427{
Florin Coras7a90e502020-04-09 04:46:14 +00001428 return (fsh_n_active_fifos (fs->h) != 0);
Florin Coras88001c62019-04-24 14:44:46 -07001429}
1430
1431svm_fifo_t *
Florin Coras62ddc032019-12-08 18:30:42 -08001432fifo_segment_get_slice_fifo_list (fifo_segment_t * fs, u32 slice_index)
Florin Coras88001c62019-04-24 14:44:46 -07001433{
Florin Coras1f952d32020-12-09 19:43:21 -08001434 fifo_slice_private_t *pfss;
Florin Coras62ddc032019-12-08 18:30:42 -08001435
Florin Coras1f952d32020-12-09 19:43:21 -08001436 pfss = fs_slice_private_get (fs, slice_index);
1437 return pfss->active_fifos;
Florin Coras88001c62019-04-24 14:44:46 -07001438}
1439
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001440u8
1441fifo_segment_get_mem_usage (fifo_segment_t * fs)
1442{
1443 uword size, in_use;
1444
1445 size = fifo_segment_size (fs);
1446 in_use =
1447 size - fifo_segment_free_bytes (fs) - fifo_segment_cached_bytes (fs);
1448 return (in_use * 100) / size;
1449}
1450
1451fifo_segment_mem_status_t
1452fifo_segment_determine_status (fifo_segment_header_t * fsh, u8 usage)
1453{
1454 if (!fsh->high_watermark || !fsh->low_watermark)
1455 return MEMORY_PRESSURE_NO_PRESSURE;
1456
1457 /* once the no-memory is detected, the status continues
1458 * until memory usage gets below the high watermark
1459 */
1460 if (fsh_has_reached_mem_limit (fsh))
1461 {
1462 if (usage >= fsh->high_watermark)
1463 return MEMORY_PRESSURE_NO_MEMORY;
1464 else
1465 fsh_reset_mem_limit (fsh);
1466 }
1467
1468 if (usage >= fsh->high_watermark)
1469 return MEMORY_PRESSURE_HIGH_PRESSURE;
1470
1471 else if (usage >= fsh->low_watermark)
1472 return MEMORY_PRESSURE_LOW_PRESSURE;
1473
1474 return MEMORY_PRESSURE_NO_PRESSURE;
1475}
1476
1477fifo_segment_mem_status_t
1478fifo_segment_get_mem_status (fifo_segment_t * fs)
1479{
1480 fifo_segment_header_t *fsh = fs->h;
1481 u8 usage = fifo_segment_get_mem_usage (fs);
1482
1483 return fifo_segment_determine_status (fsh, usage);
1484}
1485
Florin Coras88001c62019-04-24 14:44:46 -07001486u8 *
1487format_fifo_segment_type (u8 * s, va_list * args)
1488{
1489 fifo_segment_t *sp;
1490 sp = va_arg (*args, fifo_segment_t *);
1491 ssvm_segment_type_t st = ssvm_type (&sp->ssvm);
1492
1493 if (st == SSVM_SEGMENT_PRIVATE)
Florin Coras2a7c0b62020-09-28 23:40:28 -07001494 s = format (s, "%s", "private");
Florin Coras88001c62019-04-24 14:44:46 -07001495 else if (st == SSVM_SEGMENT_MEMFD)
1496 s = format (s, "%s", "memfd");
1497 else if (st == SSVM_SEGMENT_SHM)
1498 s = format (s, "%s", "shm");
1499 else
1500 s = format (s, "%s", "unknown");
1501 return s;
1502}
1503
1504/**
1505 * Segment format function
1506 */
1507u8 *
1508format_fifo_segment (u8 * s, va_list * args)
1509{
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001510 u32 count, indent, active_fifos, free_fifos;
Florin Coras5368bb02019-06-09 09:24:33 -07001511 fifo_segment_t *fs = va_arg (*args, fifo_segment_t *);
Florin Coras88001c62019-04-24 14:44:46 -07001512 int verbose __attribute__ ((unused)) = va_arg (*args, int);
Florin Corasef4f3e72019-12-11 14:27:53 -08001513 uword est_chunk_bytes, est_free_seg_bytes, free_chunks;
1514 uword chunk_bytes = 0, free_seg_bytes, chunk_size;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001515 uword tracked_cached_bytes;
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001516 uword fifo_hdr = 0, reserved;
Florin Coras5368bb02019-06-09 09:24:33 -07001517 fifo_segment_header_t *fsh;
Florin Coras62ddc032019-12-08 18:30:42 -08001518 fifo_segment_slice_t *fss;
Florin Corascefd5d82019-05-05 13:19:57 -07001519 svm_fifo_chunk_t *c;
Florin Coras62ddc032019-12-08 18:30:42 -08001520 u32 slice_index;
Florin Coras5368bb02019-06-09 09:24:33 -07001521 char *address;
1522 size_t size;
Florin Coras88001c62019-04-24 14:44:46 -07001523 int i;
Florin Coras06d47752020-03-06 02:23:58 +00001524 uword allocated, in_use, virt;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001525 f64 usage;
1526 fifo_segment_mem_status_t mem_st;
Florin Coras88001c62019-04-24 14:44:46 -07001527
1528 indent = format_get_indent (s) + 2;
Florin Coras88001c62019-04-24 14:44:46 -07001529
Florin Coras5368bb02019-06-09 09:24:33 -07001530 if (fs == 0)
1531 {
Florin Coras2a7c0b62020-09-28 23:40:28 -07001532 s = format (s, "%-20s%10s%15s%15s%15s%15s", "Name", "Type",
Florin Coras5368bb02019-06-09 09:24:33 -07001533 "HeapSize (M)", "ActiveFifos", "FreeFifos", "Address");
1534 return s;
1535 }
1536
Florin Coras5368bb02019-06-09 09:24:33 -07001537 fifo_segment_info (fs, &address, &size);
1538 active_fifos = fifo_segment_num_fifos (fs);
1539 free_fifos = fifo_segment_num_free_fifos (fs);
1540
Florin Coras2a7c0b62020-09-28 23:40:28 -07001541 s = format (s, "%-20v%10U%15llu%15u%15u%15llx", ssvm_name (&fs->ssvm),
Florin Coras5368bb02019-06-09 09:24:33 -07001542 format_fifo_segment_type, fs, size >> 20ULL, active_fifos,
1543 free_fifos, address);
1544
1545 if (!verbose)
1546 return s;
1547
Florin Coras62ddc032019-12-08 18:30:42 -08001548 fsh = fs->h;
1549
1550 free_chunks = fifo_segment_num_free_chunks (fs, ~0);
1551 if (free_chunks)
Ryujiro Shibuyad3588722020-03-13 12:45:06 +00001552 s =
1553 format (s, "\n\n%UFree/Allocated chunks by size:\n", format_white_space,
1554 indent + 2);
Florin Corasf8461bf2019-11-07 17:00:15 -08001555 else
1556 s = format (s, "\n");
1557
Florin Coras62ddc032019-12-08 18:30:42 -08001558 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
Florin Coras88001c62019-04-24 14:44:46 -07001559 {
Florin Coras62ddc032019-12-08 18:30:42 -08001560 fss = fsh_slice_get (fsh, slice_index);
Florin Coras4b8011e2020-12-07 19:38:23 -08001561 for (i = 0; i < FS_CHUNK_VEC_LEN; i++)
Florin Coras88001c62019-04-24 14:44:46 -07001562 {
Florin Coras014dba32021-03-31 19:36:49 -07001563 c = fss_chunk_free_list_head (fsh, fss, i);
Ryujiro Shibuyad3588722020-03-13 12:45:06 +00001564 if (c == 0 && fss->num_chunks[i] == 0)
Florin Coras62ddc032019-12-08 18:30:42 -08001565 continue;
1566 count = 0;
1567 while (c)
1568 {
Florin Corasaf588822020-12-09 12:51:13 -08001569 c = fs_chunk_ptr (fsh, c->next);
Florin Coras62ddc032019-12-08 18:30:42 -08001570 count++;
1571 }
1572
1573 chunk_size = fs_freelist_index_to_size (i);
Ryujiro Shibuyad3588722020-03-13 12:45:06 +00001574 s = format (s, "%U%-5u kB: %u/%u\n", format_white_space, indent + 2,
1575 chunk_size >> 10, count, fss->num_chunks[i]);
Florin Coras62ddc032019-12-08 18:30:42 -08001576
1577 chunk_bytes += count * chunk_size;
Florin Coras88001c62019-04-24 14:44:46 -07001578 }
Florin Coras88001c62019-04-24 14:44:46 -07001579 }
Florin Corasf8461bf2019-11-07 17:00:15 -08001580
1581 fifo_hdr = free_fifos * sizeof (svm_fifo_t);
1582 est_chunk_bytes = fifo_segment_fl_chunk_bytes (fs);
Florin Coras62ddc032019-12-08 18:30:42 -08001583 est_free_seg_bytes = fifo_segment_free_bytes (fs);
Florin Coras62ddc032019-12-08 18:30:42 -08001584 free_seg_bytes = fifo_segment_free_bytes (fs);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001585 tracked_cached_bytes = fifo_segment_cached_bytes (fs);
1586 allocated = fifo_segment_size (fs);
1587 in_use = fifo_segment_size (fs) - est_free_seg_bytes - tracked_cached_bytes;
1588 usage = (100.0 * in_use) / allocated;
1589 mem_st = fifo_segment_get_mem_status (fs);
Florin Coras06d47752020-03-06 02:23:58 +00001590 virt = fsh_virtual_mem (fsh);
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001591 reserved = fsh->n_reserved_bytes;
Florin Corasf8461bf2019-11-07 17:00:15 -08001592
Florin Coras06d47752020-03-06 02:23:58 +00001593 s = format (s, "\n%Useg free bytes: %U (%lu) estimated: %U (%lu) reserved:"
1594 " %U (%lu)\n", format_white_space, indent + 2,
1595 format_memory_size, free_seg_bytes, free_seg_bytes,
1596 format_memory_size, est_free_seg_bytes, est_free_seg_bytes,
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001597 format_memory_size, reserved, reserved);
Florin Coras06d47752020-03-06 02:23:58 +00001598 s = format (s, "%Uchunk free bytes: %U (%lu) estimated: %U (%lu) tracked:"
1599 " %U (%lu)\n", format_white_space, indent + 2,
1600 format_memory_size, chunk_bytes, chunk_bytes,
1601 format_memory_size, est_chunk_bytes, est_chunk_bytes,
1602 format_memory_size, tracked_cached_bytes, tracked_cached_bytes);
Florin Coras44fadb02021-02-20 17:36:19 -08001603 s = format (s, "%Ufifo active: %u hdr free: %u bytes: %U (%u) \n",
1604 format_white_space, indent + 2, fsh->n_active_fifos, free_fifos,
Florin Coras06d47752020-03-06 02:23:58 +00001605 format_memory_size, fifo_hdr, fifo_hdr);
1606 s = format (s, "%Usegment usage: %.2f%% (%U / %U) virt: %U status: %s\n",
1607 format_white_space, indent + 2, usage, format_memory_size,
1608 in_use, format_memory_size, allocated, format_memory_size, virt,
1609 fifo_segment_mem_status_strings[mem_st]);
Florin Corasf8461bf2019-11-07 17:00:15 -08001610 s = format (s, "\n");
Florin Coras5368bb02019-06-09 09:24:33 -07001611
Florin Coras88001c62019-04-24 14:44:46 -07001612 return s;
1613}
1614
1615/*
1616 * fd.io coding-style-patch-verification: ON
1617 *
1618 * Local Variables:
1619 * eval: (c-set-style "gnu")
1620 * End:
1621 */