blob: ce1d5a0eab149bc1cbda27730955282506d4472d [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2016 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/svm_fifo_segment.h>
17
18svm_fifo_segment_main_t svm_fifo_segment_main;
19
Dave Barach10d8cc62017-05-30 09:30:07 -040020static void
Dave Barach818eb542017-08-02 13:56:13 -040021allocate_new_fifo_chunk (svm_fifo_segment_header_t * fsh,
22 u32 data_size_in_bytes, int chunk_size)
23{
24 int freelist_index;
25 u32 size;
26 u8 *fifo_space;
27 u32 rounded_data_size;
28 svm_fifo_t *f;
29 int i;
30
31 rounded_data_size = (1 << (max_log2 (data_size_in_bytes)));
32 freelist_index = max_log2 (rounded_data_size)
33 - max_log2 (FIFO_SEGMENT_MIN_FIFO_SIZE);
34
35 /* Calculate space requirement $$$ round-up data_size_in_bytes */
36 size = (sizeof (*f) + rounded_data_size) * chunk_size;
37
38 /* Allocate fifo space. May fail. */
39 fifo_space = clib_mem_alloc_aligned_at_offset
40 (size, CLIB_CACHE_LINE_BYTES, 0 /* align_offset */ ,
41 0 /* os_out_of_memory */ );
42
43 /* Out of space.. */
44 if (fifo_space == 0)
45 return;
46
47 /* Carve fifo space */
48 f = (svm_fifo_t *) fifo_space;
49 for (i = 0; i < chunk_size; i++)
50 {
51 f->freelist_index = freelist_index;
52 f->next = fsh->free_fifos[freelist_index];
53 fsh->free_fifos[freelist_index] = f;
54 fifo_space += sizeof (*f) + rounded_data_size;
55 f = (svm_fifo_t *) fifo_space;
56 }
57}
58
Florin Corasa332c462018-01-31 06:52:17 -080059/**
60 * Pre-allocates fifo pairs in fifo segment
61 *
62 * The number of fifos pre-allocated is the minimum of the requested number
63 * of pairs and the maximum number that fit within the segment. If the maximum
64 * is hit, the number of fifo pairs requested is updated by subtracting the
65 * number of fifos that have been successfully allocated.
66 */
67void
68svm_fifo_segment_preallocate_fifo_pairs (svm_fifo_segment_private_t * s,
69 u32 rx_fifo_size, u32 tx_fifo_size,
70 u32 * n_fifo_pairs)
Dave Barach10d8cc62017-05-30 09:30:07 -040071{
Florin Coras9d063042017-09-14 03:08:00 -040072 u32 rx_rounded_data_size, tx_rounded_data_size, pair_size;
Florin Corasa332c462018-01-31 06:52:17 -080073 u32 rx_fifos_size, tx_fifos_size, pairs_to_allocate;
Dave Barach818eb542017-08-02 13:56:13 -040074 int rx_freelist_index, tx_freelist_index;
Florin Corasa332c462018-01-31 06:52:17 -080075 ssvm_shared_header_t *sh = s->ssvm.sh;
76 svm_fifo_segment_header_t *fsh = s->h;
77 u8 *rx_fifo_space, *tx_fifo_space;
78 uword space_available;
79 void *oldheap;
80 svm_fifo_t *f;
Dave Barach10d8cc62017-05-30 09:30:07 -040081 int i;
82
83 /* Parameter check */
Florin Corasa332c462018-01-31 06:52:17 -080084 if (rx_fifo_size == 0 || tx_fifo_size == 0 || *n_fifo_pairs == 0)
Dave Barach10d8cc62017-05-30 09:30:07 -040085 return;
86
Florin Corasa332c462018-01-31 06:52:17 -080087 if (rx_fifo_size < FIFO_SEGMENT_MIN_FIFO_SIZE ||
88 rx_fifo_size > FIFO_SEGMENT_MAX_FIFO_SIZE)
Dave Barach818eb542017-08-02 13:56:13 -040089 {
Florin Corasa332c462018-01-31 06:52:17 -080090 clib_warning ("rx fifo_size out of range %d", rx_fifo_size);
Dave Barach818eb542017-08-02 13:56:13 -040091 return;
92 }
Dave Barach10d8cc62017-05-30 09:30:07 -040093
Florin Corasa332c462018-01-31 06:52:17 -080094 if (tx_fifo_size < FIFO_SEGMENT_MIN_FIFO_SIZE ||
95 tx_fifo_size > FIFO_SEGMENT_MAX_FIFO_SIZE)
Dave Barach818eb542017-08-02 13:56:13 -040096 {
Florin Corasa332c462018-01-31 06:52:17 -080097 clib_warning ("tx fifo_size out of range %d", rx_fifo_size);
Dave Barach818eb542017-08-02 13:56:13 -040098 return;
99 }
100
Florin Corasa332c462018-01-31 06:52:17 -0800101 rx_rounded_data_size = (1 << (max_log2 (rx_fifo_size)));
102 rx_freelist_index = max_log2 (rx_fifo_size)
Dave Barach818eb542017-08-02 13:56:13 -0400103 - max_log2 (FIFO_SEGMENT_MIN_FIFO_SIZE);
Florin Corasa332c462018-01-31 06:52:17 -0800104 tx_rounded_data_size = (1 << (max_log2 (tx_fifo_size)));
105 tx_freelist_index = max_log2 (tx_fifo_size)
Dave Barach818eb542017-08-02 13:56:13 -0400106 - max_log2 (FIFO_SEGMENT_MIN_FIFO_SIZE);
107
108 /* Calculate space requirements */
Florin Coras9d063042017-09-14 03:08:00 -0400109 pair_size = 2 * sizeof (*f) + rx_rounded_data_size + tx_rounded_data_size;
Dave Barach6a5adc32018-07-04 10:56:23 -0400110#if USE_DLMALLOC == 0
Florin Corasa332c462018-01-31 06:52:17 -0800111 space_available = s->ssvm.ssvm_size - mheap_bytes (sh->heap);
Dave Barach6a5adc32018-07-04 10:56:23 -0400112#else
113 space_available = s->ssvm.ssvm_size - mspace_usable_size (sh->heap);
114#endif
115
Florin Corasa332c462018-01-31 06:52:17 -0800116 pairs_to_allocate = clib_min (space_available / pair_size, *n_fifo_pairs);
117 rx_fifos_size = (sizeof (*f) + rx_rounded_data_size) * pairs_to_allocate;
118 tx_fifos_size = (sizeof (*f) + tx_rounded_data_size) * pairs_to_allocate;
Dave Barach818eb542017-08-02 13:56:13 -0400119
120 vec_validate_init_empty (fsh->free_fifos,
121 clib_max (rx_freelist_index, tx_freelist_index),
122 0);
Dave Barach2c25a622017-06-26 11:35:07 -0400123
Florin Corasa332c462018-01-31 06:52:17 -0800124 oldheap = ssvm_push_heap (sh);
Dave Barach10d8cc62017-05-30 09:30:07 -0400125 /* Allocate rx fifo space. May fail. */
126 rx_fifo_space = clib_mem_alloc_aligned_at_offset
Florin Corasa332c462018-01-31 06:52:17 -0800127 (rx_fifos_size, CLIB_CACHE_LINE_BYTES, 0 /* align_offset */ ,
Dave Barach10d8cc62017-05-30 09:30:07 -0400128 0 /* os_out_of_memory */ );
129
130 /* Same for TX */
131 tx_fifo_space = clib_mem_alloc_aligned_at_offset
Florin Corasa332c462018-01-31 06:52:17 -0800132 (tx_fifos_size, CLIB_CACHE_LINE_BYTES, 0 /* align_offset */ ,
Dave Barach10d8cc62017-05-30 09:30:07 -0400133 0 /* os_out_of_memory */ );
134
135 /* Make sure it worked. Clean up if it didn't... */
136 if (rx_fifo_space == 0 || tx_fifo_space == 0)
137 {
138 if (rx_fifo_space)
139 clib_mem_free (rx_fifo_space);
140 else
141 clib_warning ("rx fifo preallocation failure: size %d npairs %d",
Florin Corasa332c462018-01-31 06:52:17 -0800142 rx_fifo_size, *n_fifo_pairs);
Dave Barach10d8cc62017-05-30 09:30:07 -0400143
144 if (tx_fifo_space)
145 clib_mem_free (tx_fifo_space);
146 else
147 clib_warning ("tx fifo preallocation failure: size %d nfifos %d",
Florin Corasa332c462018-01-31 06:52:17 -0800148 tx_fifo_size, *n_fifo_pairs);
149 ssvm_pop_heap (oldheap);
Dave Barach10d8cc62017-05-30 09:30:07 -0400150 return;
151 }
152
153 /* Carve rx fifo space */
154 f = (svm_fifo_t *) rx_fifo_space;
Florin Coras9d063042017-09-14 03:08:00 -0400155 for (i = 0; i < pairs_to_allocate; i++)
Dave Barach10d8cc62017-05-30 09:30:07 -0400156 {
Dave Barach818eb542017-08-02 13:56:13 -0400157 f->freelist_index = rx_freelist_index;
158 f->next = fsh->free_fifos[rx_freelist_index];
159 fsh->free_fifos[rx_freelist_index] = f;
160 rx_fifo_space += sizeof (*f) + rx_rounded_data_size;
Dave Barach10d8cc62017-05-30 09:30:07 -0400161 f = (svm_fifo_t *) rx_fifo_space;
162 }
163 /* Carve tx fifo space */
164 f = (svm_fifo_t *) tx_fifo_space;
Florin Coras9d063042017-09-14 03:08:00 -0400165 for (i = 0; i < pairs_to_allocate; i++)
Dave Barach10d8cc62017-05-30 09:30:07 -0400166 {
Dave Barach818eb542017-08-02 13:56:13 -0400167 f->freelist_index = tx_freelist_index;
168 f->next = fsh->free_fifos[tx_freelist_index];
169 fsh->free_fifos[tx_freelist_index] = f;
170 tx_fifo_space += sizeof (*f) + tx_rounded_data_size;
Dave Barach10d8cc62017-05-30 09:30:07 -0400171 f = (svm_fifo_t *) tx_fifo_space;
172 }
Florin Coras9d063042017-09-14 03:08:00 -0400173
174 /* Account for the pairs allocated */
Florin Corasa332c462018-01-31 06:52:17 -0800175 *n_fifo_pairs -= pairs_to_allocate;
176 ssvm_pop_heap (oldheap);
177}
178
179/**
180 * Initialize svm fifo segment shared header
181 */
182int
183svm_fifo_segment_init (svm_fifo_segment_private_t * s)
184{
185 svm_fifo_segment_header_t *fsh;
186 ssvm_shared_header_t *sh;
187 void *oldheap;
188
189 sh = s->ssvm.sh;
190 oldheap = ssvm_push_heap (sh);
191
192 fsh = clib_mem_alloc (sizeof (*fsh));
193 memset (fsh, 0, sizeof (*fsh));
194 s->h = sh->opaque[0] = fsh;
195
196 ssvm_pop_heap (oldheap);
197
198 sh->ready = 1;
199 return (0);
Dave Barach10d8cc62017-05-30 09:30:07 -0400200}
201
Florin Corasb384b542018-01-15 01:08:33 -0800202/**
203 * Create an svm fifo segment and initialize as master
204 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500205int
206svm_fifo_segment_create (svm_fifo_segment_create_args_t * a)
207{
Dave Barach68b0fb02017-02-28 15:15:56 -0500208 svm_fifo_segment_main_t *sm = &svm_fifo_segment_main;
Florin Corasb384b542018-01-15 01:08:33 -0800209 svm_fifo_segment_private_t *s;
Florin Corasb384b542018-01-15 01:08:33 -0800210 int rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500211
212 /* Allocate a fresh segment */
213 pool_get (sm->segments, s);
214 memset (s, 0, sizeof (*s));
215
216 s->ssvm.ssvm_size = a->segment_size;
217 s->ssvm.i_am_master = 1;
218 s->ssvm.my_pid = getpid ();
Dave Wallaceb8856642017-07-31 13:33:11 -0400219 s->ssvm.name = format (0, "%s%c", a->segment_name, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500220 s->ssvm.requested_va = sm->next_baseva;
221
Florin Corasb384b542018-01-15 01:08:33 -0800222 if ((rv = ssvm_master_init (&s->ssvm, a->segment_type)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500223 {
Florin Corasb384b542018-01-15 01:08:33 -0800224 pool_put (sm->segments, s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500225 return (rv);
226 }
227
Florin Corasc87c91d2017-08-16 19:55:49 -0700228 /* Note: requested_va updated due to seg base addr randomization */
Florin Corasb384b542018-01-15 01:08:33 -0800229 sm->next_baseva = s->ssvm.sh->ssvm_va + a->segment_size;
Dave Barach68b0fb02017-02-28 15:15:56 -0500230
Florin Corasa332c462018-01-31 06:52:17 -0800231 svm_fifo_segment_init (s);
Dave Barach2c25a622017-06-26 11:35:07 -0400232 vec_add1 (a->new_segment_indices, s - sm->segments);
Dave Barach68b0fb02017-02-28 15:15:56 -0500233 return (0);
234}
235
Florin Corasb384b542018-01-15 01:08:33 -0800236/**
237 * Create an svm fifo segment in process-private memory
238 */
Florin Corasa5464812017-04-19 13:00:05 -0700239int
240svm_fifo_segment_create_process_private (svm_fifo_segment_create_args_t * a)
241{
Florin Corasa5464812017-04-19 13:00:05 -0700242 svm_fifo_segment_main_t *sm = &svm_fifo_segment_main;
Florin Corasa332c462018-01-31 06:52:17 -0800243 svm_fifo_segment_private_t *s;
Florin Corasa5464812017-04-19 13:00:05 -0700244 ssvm_shared_header_t *sh;
Dave Barach91f3e742017-09-01 19:12:11 -0400245 u32 rnd_size = 0;
Florin Corasa332c462018-01-31 06:52:17 -0800246 u8 *heap;
247 u32 pagesize = clib_mem_get_page_size ();
Florin Corasa5464812017-04-19 13:00:05 -0700248
Florin Corasa332c462018-01-31 06:52:17 -0800249 pool_get (sm->segments, s);
250 memset (s, 0, sizeof (*s));
251
252 rnd_size = (a->segment_size + (pagesize - 1)) & ~pagesize;
253
Dave Barach6a5adc32018-07-04 10:56:23 -0400254#if USE_DLMALLOC == 0
Florin Corasa332c462018-01-31 06:52:17 -0800255 heap = mheap_alloc (0, rnd_size);
256 if (heap == 0)
Dave Barach2c25a622017-06-26 11:35:07 -0400257 {
Florin Corasa332c462018-01-31 06:52:17 -0800258 clib_unix_warning ("mheap alloc");
259 pool_put (sm->segments, s);
260 return -1;
Dave Barach2c25a622017-06-26 11:35:07 -0400261 }
Dave Barach6a5adc32018-07-04 10:56:23 -0400262 {
263 mheap_t *heap_header;
264 heap_header = mheap_header (heap);
265 heap_header->flags |= MHEAP_FLAG_THREAD_SAFE;
266 }
267#else
268 heap = create_mspace (rnd_size, 1 /* locked */ );
269#endif
Florin Corasa5464812017-04-19 13:00:05 -0700270
Florin Corasa332c462018-01-31 06:52:17 -0800271 s->ssvm.ssvm_size = rnd_size;
272 s->ssvm.i_am_master = 1;
273 s->ssvm.my_pid = getpid ();
274 s->ssvm.name = format (0, "%s%c", a->segment_name, 0);
275 s->ssvm.requested_va = ~0;
Dave Barach10d8cc62017-05-30 09:30:07 -0400276
Florin Corasa332c462018-01-31 06:52:17 -0800277 /* Allocate a [sic] shared memory header, in process memory... */
278 sh = clib_mem_alloc_aligned (sizeof (*sh), CLIB_CACHE_LINE_BYTES);
279 s->ssvm.sh = sh;
Dave Barach2c25a622017-06-26 11:35:07 -0400280
Florin Corasa332c462018-01-31 06:52:17 -0800281 memset (sh, 0, sizeof (*sh));
282 sh->heap = heap;
Dave Barach2c25a622017-06-26 11:35:07 -0400283
Florin Corasa332c462018-01-31 06:52:17 -0800284 svm_fifo_segment_init (s);
285 vec_add1 (a->new_segment_indices, s - sm->segments);
Dave Barach2c25a622017-06-26 11:35:07 -0400286
Florin Corasa5464812017-04-19 13:00:05 -0700287 return (0);
288}
289
Florin Corasb384b542018-01-15 01:08:33 -0800290/**
291 * Attach as slave to an svm fifo segment
292 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500293int
294svm_fifo_segment_attach (svm_fifo_segment_create_args_t * a)
295{
Dave Barach68b0fb02017-02-28 15:15:56 -0500296 svm_fifo_segment_main_t *sm = &svm_fifo_segment_main;
Florin Corasb384b542018-01-15 01:08:33 -0800297 svm_fifo_segment_private_t *s;
298 int rv;
Dave Barach68b0fb02017-02-28 15:15:56 -0500299
300 /* Allocate a fresh segment */
301 pool_get (sm->segments, s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500302 memset (s, 0, sizeof (*s));
303
304 s->ssvm.ssvm_size = a->segment_size;
305 s->ssvm.my_pid = getpid ();
Dave Wallaceb8856642017-07-31 13:33:11 -0400306 s->ssvm.name = format (0, "%s%c", a->segment_name, 0);
Dave Barach68b0fb02017-02-28 15:15:56 -0500307 s->ssvm.requested_va = sm->next_baseva;
Florin Corasb384b542018-01-15 01:08:33 -0800308 if (a->segment_type == SSVM_SEGMENT_MEMFD)
309 s->ssvm.fd = a->memfd_fd;
310 else
311 s->ssvm.attach_timeout = sm->timeout_in_seconds;
Dave Barach68b0fb02017-02-28 15:15:56 -0500312
Florin Corasb384b542018-01-15 01:08:33 -0800313 if ((rv = ssvm_slave_init (&s->ssvm, a->segment_type)))
Dave Barach68b0fb02017-02-28 15:15:56 -0500314 {
315 _vec_len (s) = vec_len (s) - 1;
316 return (rv);
317 }
318
319 /* Fish the segment header */
Florin Corasb384b542018-01-15 01:08:33 -0800320 s->h = s->ssvm.sh->opaque[0];
Dave Barach68b0fb02017-02-28 15:15:56 -0500321
Dave Barach2c25a622017-06-26 11:35:07 -0400322 vec_add1 (a->new_segment_indices, s - sm->segments);
Dave Barach68b0fb02017-02-28 15:15:56 -0500323 return (0);
324}
325
326void
327svm_fifo_segment_delete (svm_fifo_segment_private_t * s)
328{
329 svm_fifo_segment_main_t *sm = &svm_fifo_segment_main;
Florin Corasb384b542018-01-15 01:08:33 -0800330
Florin Corasa332c462018-01-31 06:52:17 -0800331 ssvm_delete (&s->ssvm);
Florin Corasb384b542018-01-15 01:08:33 -0800332 memset (s, 0xfe, sizeof (*s));
333 pool_put (sm->segments, s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500334}
335
Florin Corasb384b542018-01-15 01:08:33 -0800336/**
337 * Allocate fifo in svm segment
338 */
Dave Barach68b0fb02017-02-28 15:15:56 -0500339svm_fifo_t *
340svm_fifo_segment_alloc_fifo (svm_fifo_segment_private_t * s,
Dave Barach10d8cc62017-05-30 09:30:07 -0400341 u32 data_size_in_bytes,
342 svm_fifo_segment_freelist_t list_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500343{
344 ssvm_shared_header_t *sh;
345 svm_fifo_segment_header_t *fsh;
Florin Corasb0823242018-04-27 09:46:46 -0700346 svm_fifo_t *f = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500347 void *oldheap;
Dave Barach818eb542017-08-02 13:56:13 -0400348 int freelist_index;
349
350 /*
Florin Corasc87c91d2017-08-16 19:55:49 -0700351 * 4K minimum. It's not likely that anything good will happen
352 * with a smaller FIFO.
Dave Barach818eb542017-08-02 13:56:13 -0400353 */
354 if (data_size_in_bytes < FIFO_SEGMENT_MIN_FIFO_SIZE ||
355 data_size_in_bytes > FIFO_SEGMENT_MAX_FIFO_SIZE)
356 {
357 clib_warning ("fifo size out of range %d", data_size_in_bytes);
358 return 0;
359 }
360
361 freelist_index = max_log2 (data_size_in_bytes)
362 - max_log2 (FIFO_SEGMENT_MIN_FIFO_SIZE);
Dave Barach68b0fb02017-02-28 15:15:56 -0500363
364 sh = s->ssvm.sh;
Dave Barach2c25a622017-06-26 11:35:07 -0400365 ssvm_lock_non_recursive (sh, 1);
Florin Corasa332c462018-01-31 06:52:17 -0800366 fsh = (svm_fifo_segment_header_t *) sh->opaque[0];
Dave Barach68b0fb02017-02-28 15:15:56 -0500367
Dave Barach10d8cc62017-05-30 09:30:07 -0400368 switch (list_index)
369 {
370 case FIFO_SEGMENT_RX_FREELIST:
371 case FIFO_SEGMENT_TX_FREELIST:
Dave Barach818eb542017-08-02 13:56:13 -0400372 vec_validate_init_empty (fsh->free_fifos, freelist_index, 0);
Dave Barach818eb542017-08-02 13:56:13 -0400373 f = fsh->free_fifos[freelist_index];
Florin Corasb0823242018-04-27 09:46:46 -0700374 if (PREDICT_FALSE (!f))
Dave Barach10d8cc62017-05-30 09:30:07 -0400375 {
Florin Corasb0823242018-04-27 09:46:46 -0700376 /* Preallocated and no fifo left. Don't even try */
377 if (fsh->flags & FIFO_SEGMENT_F_IS_PREALLOCATED)
378 goto done;
379
380 oldheap = ssvm_push_heap (sh);
Dave Barach818eb542017-08-02 13:56:13 -0400381 allocate_new_fifo_chunk (fsh, data_size_in_bytes,
382 FIFO_SEGMENT_ALLOC_CHUNK_SIZE);
Florin Corasb0823242018-04-27 09:46:46 -0700383 ssvm_pop_heap (oldheap);
Dave Barach818eb542017-08-02 13:56:13 -0400384 f = fsh->free_fifos[freelist_index];
385 }
386 if (PREDICT_TRUE (f != 0))
387 {
388 fsh->free_fifos[freelist_index] = f->next;
Dave Barach10d8cc62017-05-30 09:30:07 -0400389 /* (re)initialize the fifo, as in svm_fifo_create */
390 memset (f, 0, sizeof (*f));
391 f->nitems = data_size_in_bytes;
392 f->ooos_list_head = OOO_SEGMENT_INVALID_INDEX;
Dave Barach52851e62017-08-07 09:35:25 -0400393 f->refcnt = 1;
Dave Barach818eb542017-08-02 13:56:13 -0400394 f->freelist_index = freelist_index;
Dave Barach10d8cc62017-05-30 09:30:07 -0400395 goto found;
396 }
Florin Corasb0823242018-04-27 09:46:46 -0700397 break;
Dave Barach10d8cc62017-05-30 09:30:07 -0400398 case FIFO_SEGMENT_FREELIST_NONE:
399 break;
400
401 default:
402 clib_warning ("ignore bogus freelist %d", list_index);
403 break;
404 }
405
Florin Corasb0823242018-04-27 09:46:46 -0700406 /* Catch all that allocates just one fifo. Note: this can fail,
407 * in which case: create another segment */
408 oldheap = ssvm_push_heap (sh);
Dave Barach68b0fb02017-02-28 15:15:56 -0500409 f = svm_fifo_create (data_size_in_bytes);
Florin Corasb0823242018-04-27 09:46:46 -0700410 ssvm_pop_heap (oldheap);
Florin Corasa5464812017-04-19 13:00:05 -0700411 if (PREDICT_FALSE (f == 0))
Florin Corasb0823242018-04-27 09:46:46 -0700412 goto done;
Dave Barach818eb542017-08-02 13:56:13 -0400413 f->freelist_index = freelist_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500414
Dave Barach10d8cc62017-05-30 09:30:07 -0400415found:
416 /* If rx_freelist add to active fifos list. When cleaning up segment,
417 * we need a list of active sessions that should be disconnected. Since
418 * both rx and tx fifos keep pointers to the session, it's enough to track
419 * only one. */
420 if (list_index == FIFO_SEGMENT_RX_FREELIST)
421 {
422 if (fsh->fifos)
423 {
424 fsh->fifos->prev = f;
425 f->next = fsh->fifos;
426 }
427 fsh->fifos = f;
428 }
Florin Corasc87c91d2017-08-16 19:55:49 -0700429 fsh->n_active_fifos++;
Dave Barach10d8cc62017-05-30 09:30:07 -0400430
Florin Corasb0823242018-04-27 09:46:46 -0700431done:
Dave Barach2c25a622017-06-26 11:35:07 -0400432 ssvm_unlock_non_recursive (sh);
Dave Barach68b0fb02017-02-28 15:15:56 -0500433 return (f);
434}
435
436void
Dave Barach10d8cc62017-05-30 09:30:07 -0400437svm_fifo_segment_free_fifo (svm_fifo_segment_private_t * s, svm_fifo_t * f,
438 svm_fifo_segment_freelist_t list_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500439{
440 ssvm_shared_header_t *sh;
441 svm_fifo_segment_header_t *fsh;
442 void *oldheap;
Dave Barach818eb542017-08-02 13:56:13 -0400443 int freelist_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500444
Dave Barach52851e62017-08-07 09:35:25 -0400445 ASSERT (f->refcnt > 0);
446
447 if (--f->refcnt > 0)
448 return;
Dave Barach2c25a622017-06-26 11:35:07 -0400449
Dave Barach68b0fb02017-02-28 15:15:56 -0500450 sh = s->ssvm.sh;
451 fsh = (svm_fifo_segment_header_t *) sh->opaque[0];
Dave Barach68b0fb02017-02-28 15:15:56 -0500452
Dave Barach818eb542017-08-02 13:56:13 -0400453 freelist_index = f->freelist_index;
454
Dave Barachb7f1faa2017-08-29 11:43:37 -0400455 ASSERT (freelist_index < vec_len (fsh->free_fifos));
Dave Barach818eb542017-08-02 13:56:13 -0400456
Dave Barach2c25a622017-06-26 11:35:07 -0400457 ssvm_lock_non_recursive (sh, 2);
Florin Corasa5464812017-04-19 13:00:05 -0700458 oldheap = ssvm_push_heap (sh);
Dave Barach68b0fb02017-02-28 15:15:56 -0500459
Dave Barach10d8cc62017-05-30 09:30:07 -0400460 switch (list_index)
461 {
462 case FIFO_SEGMENT_RX_FREELIST:
463 /* Remove from active list */
464 if (f->prev)
465 f->prev->next = f->next;
Florin Corasf03a59a2017-06-09 21:07:32 -0700466 else
467 fsh->fifos = f->next;
Dave Barach10d8cc62017-05-30 09:30:07 -0400468 if (f->next)
469 f->next->prev = f->prev;
Florin Corasf03a59a2017-06-09 21:07:32 -0700470 /* Fall through: we add only rx fifos to active pool */
Dave Barach10d8cc62017-05-30 09:30:07 -0400471 case FIFO_SEGMENT_TX_FREELIST:
472 /* Add to free list */
Dave Barach818eb542017-08-02 13:56:13 -0400473 f->next = fsh->free_fifos[freelist_index];
Florin Corasf03a59a2017-06-09 21:07:32 -0700474 f->prev = 0;
Dave Barach818eb542017-08-02 13:56:13 -0400475 fsh->free_fifos[freelist_index] = f;
Florin Corasf03a59a2017-06-09 21:07:32 -0700476 break;
Dave Barach10d8cc62017-05-30 09:30:07 -0400477 case FIFO_SEGMENT_FREELIST_NONE:
478 break;
479
480 default:
481 clib_warning ("ignore bogus freelist %d", list_index);
482 break;
483 }
484
Florin Coras68810622017-07-24 17:40:28 -0700485 if (CLIB_DEBUG)
486 {
487 f->master_session_index = ~0;
488 f->master_thread_index = ~0;
489 }
490
Florin Corasc87c91d2017-08-16 19:55:49 -0700491 fsh->n_active_fifos--;
Dave Barach68b0fb02017-02-28 15:15:56 -0500492 ssvm_pop_heap (oldheap);
Dave Barach2c25a622017-06-26 11:35:07 -0400493 ssvm_unlock_non_recursive (sh);
Dave Barach68b0fb02017-02-28 15:15:56 -0500494}
495
496void
Florin Corasa332c462018-01-31 06:52:17 -0800497svm_fifo_segment_main_init (u64 baseva, u32 timeout_in_seconds)
Dave Barach68b0fb02017-02-28 15:15:56 -0500498{
499 svm_fifo_segment_main_t *sm = &svm_fifo_segment_main;
500
501 sm->next_baseva = baseva;
502 sm->timeout_in_seconds = timeout_in_seconds;
503}
504
505u32
506svm_fifo_segment_index (svm_fifo_segment_private_t * s)
507{
508 return s - svm_fifo_segment_main.segments;
509}
510
Florin Corasc87c91d2017-08-16 19:55:49 -0700511/**
512 * Retrieve svm segments pool. Used only for debug purposes.
513 */
514svm_fifo_segment_private_t *
515svm_fifo_segment_segments_pool (void)
516{
517 svm_fifo_segment_main_t *sm = &svm_fifo_segment_main;
518 return sm->segments;
519}
520
521/**
522 * Get number of active fifos
523 */
524u32
525svm_fifo_segment_num_fifos (svm_fifo_segment_private_t * fifo_segment)
526{
527 return fifo_segment->h->n_active_fifos;
528}
529
Dave Barach91f3e742017-09-01 19:12:11 -0400530u32
531svm_fifo_segment_num_free_fifos (svm_fifo_segment_private_t * fifo_segment,
532 u32 fifo_size_in_bytes)
533{
534 ssvm_shared_header_t *sh;
535 svm_fifo_segment_header_t *fsh;
536 svm_fifo_t *f;
537 int i;
538 u32 count = 0, rounded_data_size, freelist_index;
539
540 sh = fifo_segment->ssvm.sh;
541 fsh = (svm_fifo_segment_header_t *) sh->opaque[0];
542
543 /* Count all free fifos? */
544 if (fifo_size_in_bytes == ~0)
545 {
546 for (i = 0; i < vec_len (fsh->free_fifos); i++)
547 {
548 f = fsh->free_fifos[i];
549 if (f == 0)
550 continue;
551
552 while (f)
553 {
554 f = f->next;
555 count++;
556 }
557 }
558 return count;
559 }
560
561 rounded_data_size = (1 << (max_log2 (fifo_size_in_bytes)));
562 freelist_index = max_log2 (rounded_data_size)
563 - max_log2 (FIFO_SEGMENT_MIN_FIFO_SIZE);
564
565 if (freelist_index > vec_len (fsh->free_fifos))
566 return 0;
567
568 f = fsh->free_fifos[freelist_index];
569 if (f == 0)
570 return 0;
571
572 while (f)
573 {
574 f = f->next;
575 count++;
576 }
577 return count;
578}
579
Florin Corasb384b542018-01-15 01:08:33 -0800580void
581svm_fifo_segment_info (svm_fifo_segment_private_t * seg, uword * address,
582 u64 * size)
583{
Florin Corasa332c462018-01-31 06:52:17 -0800584 if (ssvm_type (&seg->ssvm) == SSVM_SEGMENT_PRIVATE)
Florin Corasb384b542018-01-15 01:08:33 -0800585 {
Dave Barach6a5adc32018-07-04 10:56:23 -0400586#if USE_DLMALLOC == 0
Florin Corasb384b542018-01-15 01:08:33 -0800587 mheap_t *heap_header;
588
589 *address = pointer_to_uword (seg->ssvm.sh->heap);
590 heap_header = mheap_header (seg->ssvm.sh->heap);
591 *size = heap_header->max_size;
Dave Barach6a5adc32018-07-04 10:56:23 -0400592#else
593 mspace_get_address_and_size (seg->ssvm.sh->heap,
594 (unsigned long long *) address,
595 (unsigned long long *) size);
596#endif
Florin Corasb384b542018-01-15 01:08:33 -0800597 }
598 else
599 {
600 *address = seg->ssvm.sh->ssvm_va;
601 *size = seg->ssvm.ssvm_size;
602 }
603}
604
Dave Barach6a5adc32018-07-04 10:56:23 -0400605void *
Florin Corasb384b542018-01-15 01:08:33 -0800606svm_fifo_segment_heap (svm_fifo_segment_private_t * seg)
607{
608 return seg->ssvm.sh->heap;
609}
610
611u8 *
612format_svm_fifo_segment_type (u8 * s, va_list * args)
613{
614 svm_fifo_segment_private_t *sp;
615 sp = va_arg (*args, svm_fifo_segment_private_t *);
616 ssvm_segment_type_t st = ssvm_type (&sp->ssvm);
617
Florin Corasa332c462018-01-31 06:52:17 -0800618 if (st == SSVM_SEGMENT_PRIVATE)
Florin Corasb384b542018-01-15 01:08:33 -0800619 s = format (s, "%s", "private-heap");
Florin Corasb384b542018-01-15 01:08:33 -0800620 else if (st == SSVM_SEGMENT_MEMFD)
621 s = format (s, "%s", "memfd");
622 else if (st == SSVM_SEGMENT_SHM)
623 s = format (s, "%s", "shm");
624 else
625 s = format (s, "%s", "unknown");
626 return s;
627}
628
Dave Barach91f3e742017-09-01 19:12:11 -0400629/**
630 * Segment format function
631 */
632u8 *
633format_svm_fifo_segment (u8 * s, va_list * args)
634{
635 svm_fifo_segment_private_t *sp
636 = va_arg (*args, svm_fifo_segment_private_t *);
Dave Barach6a5adc32018-07-04 10:56:23 -0400637 int verbose __attribute__ ((unused)) = va_arg (*args, int);
Florin Corasb384b542018-01-15 01:08:33 -0800638 svm_fifo_segment_header_t *fsh = sp->h;
639 u32 count, indent;
Dave Barach91f3e742017-09-01 19:12:11 -0400640 svm_fifo_t *f;
641 int i;
Dave Barach91f3e742017-09-01 19:12:11 -0400642
Florin Corasb384b542018-01-15 01:08:33 -0800643 indent = format_get_indent (s) + 2;
Dave Barach6a5adc32018-07-04 10:56:23 -0400644#if USE_DLMALLOC == 0
Florin Corasb384b542018-01-15 01:08:33 -0800645 s = format (s, "%U segment heap: %U\n", format_white_space, indent,
646 format_mheap, svm_fifo_segment_heap (sp), verbose);
Dave Barach91f3e742017-09-01 19:12:11 -0400647 s = format (s, "%U segment has %u active fifos\n",
648 format_white_space, indent, svm_fifo_segment_num_fifos (sp));
Dave Barach6a5adc32018-07-04 10:56:23 -0400649#endif
Dave Barach91f3e742017-09-01 19:12:11 -0400650
651 for (i = 0; i < vec_len (fsh->free_fifos); i++)
652 {
653 f = fsh->free_fifos[i];
654 if (f == 0)
655 continue;
656 count = 0;
657 while (f)
658 {
659 f = f->next;
660 count++;
661 }
662
663 s = format (s, "%U%-5u Kb: %u free",
664 format_white_space, indent + 2,
665 1 << (i + max_log2 (FIFO_SEGMENT_MIN_FIFO_SIZE) - 10),
666 count);
667 }
668 return s;
669}
670
Dave Barach68b0fb02017-02-28 15:15:56 -0500671/*
672 * fd.io coding-style-patch-verification: ON
673 *
674 * Local Variables:
675 * eval: (c-set-style "gnu")
676 * End:
677 */