blob: 7d42f6c1e0dd58f0b26e86f4f2e96f3a4e26d23c [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 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 Copyright (c) 2001, 2002, 2003, 2004 Eliot Dresselhaus
17
18 Permission is hereby granted, free of charge, to any person obtaining
19 a copy of this software and associated documentation files (the
20 "Software"), to deal in the Software without restriction, including
21 without limitation the rights to use, copy, modify, merge, publish,
22 distribute, sublicense, and/or sell copies of the Software, and to
23 permit persons to whom the Software is furnished to do so, subject to
24 the following conditions:
25
26 The above copyright notice and this permission notice shall be
27 included in all copies or substantial portions of the Software.
28
29 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
30 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
32 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
33 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
34 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
35 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36*/
Chris Luke8e5b0412016-07-26 13:06:10 -040037/** @file
38 * @brief Fixed length block allocator.
39 Pools are built from clib vectors and bitmaps. Use pools when
40 repeatedly allocating and freeing fixed-size data. Pools are
41 fast, and avoid memory fragmentation.
42 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070043
44#ifndef included_pool_h
45#define included_pool_h
46
47#include <vppinfra/bitmap.h>
48#include <vppinfra/error.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070049
Ed Warnickecb9cada2015-12-08 15:45:58 -070050
Dave Barachc3799992016-08-15 11:12:27 -040051typedef struct
52{
Chris Luke8e5b0412016-07-26 13:06:10 -040053 /** Bitmap of indices of free objects. */
Dave Barachc3799992016-08-15 11:12:27 -040054 uword *free_bitmap;
Ed Warnickecb9cada2015-12-08 15:45:58 -070055
Chris Luke8e5b0412016-07-26 13:06:10 -040056 /** Vector of free indices. One element for each set bit in bitmap. */
Dave Barachc3799992016-08-15 11:12:27 -040057 u32 *free_indices;
Dave Barachb7f1faa2017-08-29 11:43:37 -040058
59 /* The following fields are set for fixed-size, preallocated pools */
60
61 /** Maximum size of the pool, in elements */
62 u32 max_elts;
63
Ed Warnickecb9cada2015-12-08 15:45:58 -070064} pool_header_t;
65
Chris Luke8e5b0412016-07-26 13:06:10 -040066/** Align pool header so that pointers are naturally aligned. */
Damjan Marioneb63cae2022-02-25 00:19:26 +010067#define pool_aligned_header_bytes \
68 round_pow2 (sizeof (pool_header_t), sizeof (void *))
Ed Warnickecb9cada2015-12-08 15:45:58 -070069
Chris Luke8e5b0412016-07-26 13:06:10 -040070/** Get pool header from user pool pointer */
Dave Barachc3799992016-08-15 11:12:27 -040071always_inline pool_header_t *
72pool_header (void *v)
73{
74 return vec_aligned_header (v, sizeof (pool_header_t), sizeof (void *));
75}
Ed Warnickecb9cada2015-12-08 15:45:58 -070076
Dave Barachb7f1faa2017-08-29 11:43:37 -040077extern void _pool_init_fixed (void **, u32, u32);
78extern void fpool_free (void *);
79
80/** initialize a fixed-size, preallocated pool */
81#define pool_init_fixed(pool,max_elts) \
82{ \
83 _pool_init_fixed((void **)&(pool),sizeof(pool[0]),max_elts); \
84}
85
Chris Luke8e5b0412016-07-26 13:06:10 -040086/** Validate a pool */
Dave Barachc3799992016-08-15 11:12:27 -040087always_inline void
88pool_validate (void *v)
Ed Warnickecb9cada2015-12-08 15:45:58 -070089{
Dave Barachc3799992016-08-15 11:12:27 -040090 pool_header_t *p = pool_header (v);
Ed Warnickecb9cada2015-12-08 15:45:58 -070091 uword i, n_free_bitmap;
92
Dave Barachc3799992016-08-15 11:12:27 -040093 if (!v)
Ed Warnickecb9cada2015-12-08 15:45:58 -070094 return;
95
96 n_free_bitmap = clib_bitmap_count_set_bits (p->free_bitmap);
97 ASSERT (n_free_bitmap == vec_len (p->free_indices));
98 for (i = 0; i < vec_len (p->free_indices); i++)
99 ASSERT (clib_bitmap_get (p->free_bitmap, p->free_indices[i]) == 1);
100}
101
Dave Barachc3799992016-08-15 11:12:27 -0400102always_inline void
103pool_header_validate_index (void *v, uword index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700104{
Dave Barachc3799992016-08-15 11:12:27 -0400105 pool_header_t *p = pool_header (v);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106
107 if (v)
108 vec_validate (p->free_bitmap, index / BITS (uword));
109}
110
111#define pool_validate_index(v,i) \
112do { \
113 uword __pool_validate_index = (i); \
114 vec_validate_ha ((v), __pool_validate_index, \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400115 pool_aligned_header_bytes, /* align */ 0); \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116 pool_header_validate_index ((v), __pool_validate_index); \
117} while (0)
118
Chris Luke8e5b0412016-07-26 13:06:10 -0400119/** Number of active elements in a pool.
120 * @return Number of active elements in a pool
121 */
Dave Barachc3799992016-08-15 11:12:27 -0400122always_inline uword
123pool_elts (void *v)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124{
125 uword ret = vec_len (v);
126 if (v)
127 ret -= vec_len (pool_header (v)->free_indices);
128 return ret;
129}
130
Chris Luke8e5b0412016-07-26 13:06:10 -0400131/** Number of elements in pool vector.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700132
Chris Luke8e5b0412016-07-26 13:06:10 -0400133 @note You probably want to call pool_elts() instead.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700134*/
135#define pool_len(p) vec_len(p)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136
Chris Luke8e5b0412016-07-26 13:06:10 -0400137/** Number of elements in pool vector (usable as an lvalue)
138
139 @note You probably don't want to use this macro.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700140*/
141#define _pool_len(p) _vec_len(p)
142
Chris Luke8e5b0412016-07-26 13:06:10 -0400143/** Memory usage of pool header. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700144always_inline uword
Dave Barachc3799992016-08-15 11:12:27 -0400145pool_header_bytes (void *v)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146{
Dave Barachc3799992016-08-15 11:12:27 -0400147 pool_header_t *p = pool_header (v);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148
Dave Barachc3799992016-08-15 11:12:27 -0400149 if (!v)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150 return 0;
151
152 return vec_bytes (p->free_bitmap) + vec_bytes (p->free_indices);
153}
154
Chris Luke8e5b0412016-07-26 13:06:10 -0400155/** Memory usage of pool. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156#define pool_bytes(P) (vec_bytes (P) + pool_header_bytes (P))
157
Chris Luke8e5b0412016-07-26 13:06:10 -0400158/** Local variable naming macro. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159#define _pool_var(v) _pool_##v
160
Florin Coras400d4592022-03-09 13:34:12 -0800161/** Number of elements that can fit into pool with current allocation */
Damjan Marion5c45d1c2022-03-17 15:32:56 +0100162#define pool_max_len(P) vec_max_len (P)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163
Florin Coras400d4592022-03-09 13:34:12 -0800164/** Number of free elements in pool */
165#define pool_free_elts(P) \
166 ({ \
167 pool_header_t *_pool_var (p) = pool_header (P); \
168 uword n_free = 0; \
169 if (P) \
170 { \
171 n_free += vec_len (_pool_var (p)->free_indices); \
172 /* Fixed-size pools have max_elts set non-zero */ \
173 if (_pool_var (p)->max_elts == 0) \
174 n_free += pool_max_len (P) - vec_len (P); \
175 } \
176 n_free; \
177 })
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178
Chris Luke8e5b0412016-07-26 13:06:10 -0400179/** Allocate an object E from a pool P (general version).
Ed Warnickecb9cada2015-12-08 15:45:58 -0700180
Chris Luke8e5b0412016-07-26 13:06:10 -0400181 First search free list. If nothing is free extend vector of objects.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182*/
Dave Baracha690fdb2020-01-21 12:34:55 -0500183#define _pool_get_aligned_internal_numa(P,E,A,Z,N) \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400184do { \
185 pool_header_t * _pool_var (p) = pool_header (P); \
186 uword _pool_var (l); \
187 \
Dave Baracha690fdb2020-01-21 12:34:55 -0500188 STATIC_ASSERT(A==0 || ((A % sizeof(P[0]))==0) \
189 || ((sizeof(P[0]) % A) == 0), \
Dave Baracheb987d32018-05-03 08:26:39 -0400190 "Pool aligned alloc of incorrectly sized object"); \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400191 _pool_var (l) = 0; \
192 if (P) \
193 _pool_var (l) = vec_len (_pool_var (p)->free_indices); \
194 \
195 if (_pool_var (l) > 0) \
196 { \
197 /* Return free element from free list. */ \
Dave Baracha690fdb2020-01-21 12:34:55 -0500198 uword _pool_var (i) = \
199 _pool_var (p)->free_indices[_pool_var (l) - 1]; \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400200 (E) = (P) + _pool_var (i); \
Dave Baracha690fdb2020-01-21 12:34:55 -0500201 _pool_var (p)->free_bitmap = \
202 clib_bitmap_andnoti_notrim (_pool_var (p)->free_bitmap, \
203 _pool_var (i)); \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400204 _vec_len (_pool_var (p)->free_indices) = _pool_var (l) - 1; \
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200205 CLIB_MEM_UNPOISON((E), sizeof((E)[0])); \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400206 } \
207 else \
208 { \
209 /* fixed-size, preallocated pools cannot expand */ \
210 if ((P) && _pool_var(p)->max_elts) \
211 { \
212 clib_warning ("can't expand fixed-size pool"); \
213 os_out_of_memory(); \
214 } \
215 /* Nothing on free list, make a new element and return it. */ \
Dave Baracha690fdb2020-01-21 12:34:55 -0500216 P = _vec_resize_numa (P, \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400217 /* length_increment */ 1, \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700218 /* new size */ (vec_len (P) + 1) * sizeof (P[0]), \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400219 pool_aligned_header_bytes, \
Dave Baracha690fdb2020-01-21 12:34:55 -0500220 /* align */ (A), \
221 /* numa */ (N)); \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400222 E = vec_end (P) - 1; \
Dave Baracha690fdb2020-01-21 12:34:55 -0500223 } \
Dave Barachbf3443b2018-10-18 15:37:49 -0400224 if (Z) \
Dave Baracha690fdb2020-01-21 12:34:55 -0500225 memset(E, 0, sizeof(*E)); \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226} while (0)
227
Dave Baracha690fdb2020-01-21 12:34:55 -0500228#define pool_get_aligned_zero_numa(P,E,A,Z,S) \
229 _pool_get_aligned_internal_numa(P,E,A,Z,S)
230
231#define pool_get_aligned_numa(P,E,A,S) \
232 _pool_get_aligned_internal_numa(P,E,A,0/*zero*/,S)
233
234#define pool_get_numa(P,E,S) \
235 _pool_get_aligned_internal_numa(P,E,0/*align*/,0/*zero*/,S)
236
237#define _pool_get_aligned_internal(P,E,A,Z) \
238 _pool_get_aligned_internal_numa(P,E,A,Z,VEC_NUMA_UNSPECIFIED)
239
Dave Barachbf3443b2018-10-18 15:37:49 -0400240/** Allocate an object E from a pool P with alignment A */
241#define pool_get_aligned(P,E,A) _pool_get_aligned_internal(P,E,A,0)
242
243/** Allocate an object E from a pool P with alignment A and zero it */
244#define pool_get_aligned_zero(P,E,A) _pool_get_aligned_internal(P,E,A,1)
245
Chris Luke8e5b0412016-07-26 13:06:10 -0400246/** Allocate an object E from a pool P (unspecified alignment). */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247#define pool_get(P,E) pool_get_aligned(P,E,0)
248
Dave Barachbf3443b2018-10-18 15:37:49 -0400249/** Allocate an object E from a pool P and zero it */
250#define pool_get_zero(P,E) pool_get_aligned_zero(P,E,0)
251
Dave Barach614ac5d2017-02-06 09:28:03 -0500252/** See if pool_get will expand the pool or not */
Florin Coras66b11312017-07-31 17:18:03 -0700253#define pool_get_aligned_will_expand(P,YESNO,A) \
Dave Barach614ac5d2017-02-06 09:28:03 -0500254do { \
255 pool_header_t * _pool_var (p) = pool_header (P); \
256 uword _pool_var (l); \
257 \
258 _pool_var (l) = 0; \
259 if (P) \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400260 { \
Florin Coras87bd96a2017-11-13 17:44:51 -0800261 if (_pool_var (p)->max_elts) \
262 _pool_var (l) = _pool_var (p)->max_elts; \
263 else \
264 _pool_var (l) = vec_len (_pool_var (p)->free_indices); \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400265 } \
Dave Barach614ac5d2017-02-06 09:28:03 -0500266 \
267 /* Free elements, certainly won't expand */ \
268 if (_pool_var (l) > 0) \
269 YESNO=0; \
270 else \
271 { \
272 /* Nothing on free list, make a new element and return it. */ \
273 YESNO = _vec_resize_will_expand \
274 (P, \
275 /* length_increment */ 1, \
276 /* new size */ (vec_len (P) + 1) * sizeof (P[0]), \
277 pool_aligned_header_bytes, \
278 /* align */ (A)); \
279 } \
280} while (0)
281
Stanislav Zaikin09abed62021-11-04 09:32:32 +0100282/** See if pool_put will expand free_bitmap or free_indices or not */
283#define pool_put_will_expand(P, E, YESNO) \
284 do \
285 { \
286 pool_header_t *_pool_var (p) = pool_header (P); \
287 \
288 uword _pool_var (i) = (E) - (P); \
289 /* free_bitmap or free_indices may expand. */ \
290 YESNO = \
291 clib_bitmap_will_expand (_pool_var (p)->free_bitmap, _pool_var (i)); \
292 \
293 YESNO += _vec_resize_will_expand ( \
294 _pool_var (p)->free_indices, 1, \
295 (vec_len (_pool_var (p)->free_indices) + 1) * \
296 sizeof (_pool_var (p)->free_indices[0]), \
297 0, 0); \
298 } \
299 while (0)
300
Dave Barachbf3443b2018-10-18 15:37:49 -0400301/** Tell the caller if pool get will expand the pool */
Dave Barach614ac5d2017-02-06 09:28:03 -0500302#define pool_get_will_expand(P,YESNO) pool_get_aligned_will_expand(P,YESNO,0)
303
Chris Luke8e5b0412016-07-26 13:06:10 -0400304/** Use free bitmap to query whether given element is free. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700305#define pool_is_free(P,E) \
306({ \
307 pool_header_t * _pool_var (p) = pool_header (P); \
308 uword _pool_var (i) = (E) - (P); \
Florin Corasfcd23682018-06-29 03:22:44 -0700309 (_pool_var (i) < vec_len (P)) ? clib_bitmap_get (_pool_var (p)->free_bitmap, _pool_i) : 1; \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700310})
Dave Barachc3799992016-08-15 11:12:27 -0400311
Chris Luke8e5b0412016-07-26 13:06:10 -0400312/** Use free bitmap to query whether given index is free */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700313#define pool_is_free_index(P,I) pool_is_free((P),(P)+(I))
314
Chris Luke8e5b0412016-07-26 13:06:10 -0400315/** Free an object E in pool P. */
Dave Barach4de5f9b2021-06-02 18:18:18 -0400316#define pool_put(P, E) \
317 do \
318 { \
319 typeof (P) _pool_var (p__) = (P); \
320 typeof (E) _pool_var (e__) = (E); \
321 pool_header_t *_pool_var (p) = pool_header (_pool_var (p__)); \
322 uword _pool_var (l) = _pool_var (e__) - _pool_var (p__); \
323 if (_pool_var (p)->max_elts == 0) \
324 ASSERT (vec_is_member (_pool_var (p__), _pool_var (e__))); \
325 ASSERT (!pool_is_free (_pool_var (p__), _pool_var (e__))); \
326 \
327 /* Add element to free bitmap and to free list. */ \
328 _pool_var (p)->free_bitmap = \
329 clib_bitmap_ori_notrim (_pool_var (p)->free_bitmap, _pool_var (l)); \
330 \
331 /* Preallocated pool? */ \
332 if (_pool_var (p)->max_elts) \
333 { \
334 ASSERT (_pool_var (l) < _pool_var (p)->max_elts); \
335 _pool_var (p) \
336 ->free_indices[_vec_len (_pool_var (p)->free_indices)] = \
337 _pool_var (l); \
338 _vec_len (_pool_var (p)->free_indices) += 1; \
339 } \
340 else \
341 vec_add1 (_pool_var (p)->free_indices, _pool_var (l)); \
342 \
343 CLIB_MEM_POISON (_pool_var (e__), sizeof (_pool_var (e__)[0])); \
344 } \
345 while (0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346
Chris Luke8e5b0412016-07-26 13:06:10 -0400347/** Free pool element with given index. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700348#define pool_put_index(p,i) \
349do { \
350 typeof (p) _e = (p) + (i); \
351 pool_put (p, _e); \
352} while (0)
353
Chris Luke8e5b0412016-07-26 13:06:10 -0400354/** Allocate N more free elements to pool (general version). */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700355#define pool_alloc_aligned(P,N,A) \
356do { \
357 pool_header_t * _p; \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400358 \
359 if ((P)) \
360 { \
361 _p = pool_header (P); \
362 if (_p->max_elts) \
363 { \
364 clib_warning ("Can't expand fixed-size pool"); \
365 os_out_of_memory(); \
366 } \
367 } \
368 \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700369 (P) = _vec_resize ((P), 0, (vec_len (P) + (N)) * sizeof (P[0]), \
370 pool_aligned_header_bytes, \
371 (A)); \
372 _p = pool_header (P); \
373 vec_resize (_p->free_indices, (N)); \
374 _vec_len (_p->free_indices) -= (N); \
375} while (0)
376
Chris Luke8e5b0412016-07-26 13:06:10 -0400377/** Allocate N more free elements to pool (unspecified alignment). */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700378#define pool_alloc(P,N) pool_alloc_aligned(P,N,0)
379
Florin Coras8be6c402018-11-27 17:11:37 -0800380/**
381 * Return copy of pool with alignment
382 *
383 * @param P pool to copy
384 * @param A alignment (may be zero)
385 * @return copy of pool
386 */
Benoît Ganne563ec992021-11-19 13:39:10 +0100387#define pool_dup_aligned(P, A) \
388 ({ \
389 typeof (P) _pool_var (new) = 0; \
390 pool_header_t *_pool_var (ph), *_pool_var (new_ph); \
391 u32 _pool_var (n) = pool_len (P); \
392 if ((P)) \
393 { \
394 _pool_var (new) = _vec_resize (_pool_var (new), _pool_var (n), \
395 _pool_var (n) * sizeof ((P)[0]), \
396 pool_aligned_header_bytes, (A)); \
397 CLIB_MEM_OVERFLOW_PUSH ((P), _pool_var (n) * sizeof ((P)[0])); \
398 clib_memcpy_fast (_pool_var (new), (P), \
399 _pool_var (n) * sizeof ((P)[0])); \
400 CLIB_MEM_OVERFLOW_POP (); \
401 _pool_var (ph) = pool_header (P); \
402 _pool_var (new_ph) = pool_header (_pool_var (new)); \
403 _pool_var (new_ph)->free_bitmap = \
404 clib_bitmap_dup (_pool_var (ph)->free_bitmap); \
405 _pool_var (new_ph)->free_indices = \
406 vec_dup (_pool_var (ph)->free_indices); \
407 _pool_var (new_ph)->max_elts = _pool_var (ph)->max_elts; \
408 } \
409 _pool_var (new); \
410 })
Florin Coras8be6c402018-11-27 17:11:37 -0800411
412/**
413 * Return copy of pool without alignment
414 *
415 * @param P pool to copy
416 * @return copy of pool
417 */
Florin Coras47c40e22018-11-26 17:01:36 -0800418#define pool_dup(P) pool_dup_aligned(P,0)
Florin Coras8be6c402018-11-27 17:11:37 -0800419
Chris Luke8e5b0412016-07-26 13:06:10 -0400420/** Low-level free pool operator (do not call directly). */
Dave Barachc3799992016-08-15 11:12:27 -0400421always_inline void *
422_pool_free (void *v)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700423{
Dave Barachc3799992016-08-15 11:12:27 -0400424 pool_header_t *p = pool_header (v);
425 if (!v)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700426 return v;
427 clib_bitmap_free (p->free_bitmap);
Dave Barachb7f1faa2017-08-29 11:43:37 -0400428
Damjan Marion86bbdf92022-03-18 12:28:35 +0100429 vec_free (p->free_indices);
430 vec_free_h (v, pool_aligned_header_bytes);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700431 return 0;
432}
433
Damjan Marion62c25ab2020-12-12 23:32:12 +0100434static_always_inline uword
435pool_get_first_index (void *pool)
436{
437 pool_header_t *h = pool_header (pool);
438 return clib_bitmap_first_clear (h->free_bitmap);
439}
440
441static_always_inline uword
442pool_get_next_index (void *pool, uword last)
443{
444 pool_header_t *h = pool_header (pool);
445 return clib_bitmap_next_clear (h->free_bitmap, last + 1);
446}
447
Chris Luke8e5b0412016-07-26 13:06:10 -0400448/** Free a pool. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700449#define pool_free(p) (p) = _pool_free(p)
450
Chris Luke8e5b0412016-07-26 13:06:10 -0400451/** Optimized iteration through pool.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700452
453 @param LO pointer to first element in chunk
454 @param HI pointer to last element in chunk
455 @param POOL pool to iterate across
456 @param BODY operation to perform
457
Dave Barachc3799992016-08-15 11:12:27 -0400458 Optimized version which assumes that BODY is smart enough to
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459 process multiple (LOW,HI) chunks. See also pool_foreach().
460 */
461#define pool_foreach_region(LO,HI,POOL,BODY) \
462do { \
463 uword _pool_var (i), _pool_var (lo), _pool_var (hi), _pool_var (len); \
464 uword _pool_var (bl), * _pool_var (b); \
465 pool_header_t * _pool_var (p); \
466 \
467 _pool_var (p) = pool_header (POOL); \
468 _pool_var (b) = (POOL) ? _pool_var (p)->free_bitmap : 0; \
469 _pool_var (bl) = vec_len (_pool_var (b)); \
470 _pool_var (len) = vec_len (POOL); \
471 _pool_var (lo) = 0; \
472 \
473 for (_pool_var (i) = 0; \
474 _pool_var (i) <= _pool_var (bl); \
475 _pool_var (i)++) \
476 { \
477 uword _pool_var (m), _pool_var (f); \
478 _pool_var (m) = (_pool_var (i) < _pool_var (bl) \
479 ? _pool_var (b) [_pool_var (i)] \
480 : 1); \
481 while (_pool_var (m) != 0) \
482 { \
483 _pool_var (f) = first_set (_pool_var (m)); \
484 _pool_var (hi) = (_pool_var (i) * BITS (_pool_var (b)[0]) \
485 + min_log2 (_pool_var (f))); \
486 _pool_var (hi) = (_pool_var (i) < _pool_var (bl) \
487 ? _pool_var (hi) : _pool_var (len)); \
488 _pool_var (m) ^= _pool_var (f); \
489 if (_pool_var (hi) > _pool_var (lo)) \
490 { \
491 (LO) = _pool_var (lo); \
492 (HI) = _pool_var (hi); \
493 do { BODY; } while (0); \
494 } \
495 _pool_var (lo) = _pool_var (hi) + 1; \
496 } \
497 } \
498} while (0)
499
Chris Luke8e5b0412016-07-26 13:06:10 -0400500/** Iterate through pool.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700501
Chris Luke8e5b0412016-07-26 13:06:10 -0400502 @param VAR A variable of same type as pool vector to be used as an
503 iterator.
504 @param POOL The pool to iterate across.
505 @param BODY The operation to perform, typically a code block. See
506 the example below.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700507
Chris Luke8e5b0412016-07-26 13:06:10 -0400508 This macro will call @c BODY with each active pool element.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700509
510 It is a bad idea to allocate or free pool element from within
Chris Luke8e5b0412016-07-26 13:06:10 -0400511 @c pool_foreach. Build a vector of indices and dispose of them later.
Neale Ranns87df12d2017-02-18 08:16:41 -0800512 Or call pool_flush.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700513
Chris Luke8e5b0412016-07-26 13:06:10 -0400514
515 @par Example
516 @code{.c}
517 proc_t *procs; // a pool of processes.
518 proc_t *proc; // pointer to one process; used as the iterator.
519
520 pool_foreach (proc, procs, ({
521 if (proc->state != PROC_STATE_RUNNING)
522 continue;
523
524 // check a running proc in some way
525 ...
526 }));
527 @endcode
528
529 @warning Because @c pool_foreach is a macro, syntax errors can be
530 difficult to find inside @c BODY, let alone actual code bugs. One
531 can temporarily split a complex @c pool_foreach into a trivial
532 @c pool_foreach which builds a vector of active indices, and a
533 vec_foreach() (or plain for-loop) to walk the active index vector.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700534 */
Damjan Marion62c25ab2020-12-12 23:32:12 +0100535
Damjan Marionb2c31b62020-12-13 21:47:40 +0100536#define pool_foreach(VAR,POOL) \
Damjan Marion62c25ab2020-12-12 23:32:12 +0100537 if (POOL) \
538 for (VAR = POOL + pool_get_first_index (POOL); \
539 VAR < vec_end (POOL); \
540 VAR = POOL + pool_get_next_index (POOL, VAR - POOL))
541
Chris Luke8e5b0412016-07-26 13:06:10 -0400542/** Returns pointer to element at given index.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700543
Chris Luke8e5b0412016-07-26 13:06:10 -0400544 ASSERTs that the supplied index is valid.
545 Even though one can write correct code of the form
546 @code
547 p = pool_base + index;
548 @endcode
Dave Barachc3799992016-08-15 11:12:27 -0400549 use of @c pool_elt_at_index is strongly suggested.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700550 */
551#define pool_elt_at_index(p,i) \
552({ \
553 typeof (p) _e = (p) + (i); \
554 ASSERT (! pool_is_free (p, _e)); \
555 _e; \
556})
557
Chris Luke8e5b0412016-07-26 13:06:10 -0400558/** Return next occupied pool index after @c i, useful for safe iteration. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700559#define pool_next_index(P,I) \
560({ \
561 pool_header_t * _pool_var (p) = pool_header (P); \
562 uword _pool_var (rv) = (I) + 1; \
563 \
564 _pool_var(rv) = \
565 (_pool_var (rv) < vec_len (P) ? \
566 clib_bitmap_next_clear (_pool_var (p)->free_bitmap, _pool_var(rv)) \
567 : ~0); \
John Lo7f358b32018-04-28 01:19:24 -0400568 _pool_var(rv) = \
569 (_pool_var (rv) < vec_len (P) ? \
570 _pool_var (rv) : ~0); \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700571 _pool_var(rv); \
572})
573
Damjan Marionb2c31b62020-12-13 21:47:40 +0100574#define pool_foreach_index(i,v) \
Damjan Marion62c25ab2020-12-12 23:32:12 +0100575 if (v) \
576 for (i = pool_get_first_index (v); \
577 i < vec_len (v); \
578 i = pool_get_next_index (v, i)) \
579
Neale Ranns87df12d2017-02-18 08:16:41 -0800580/**
Paul Vinciguerraec11b132018-09-24 05:25:00 -0700581 * @brief Remove all elements from a pool in a safe way
Neale Ranns87df12d2017-02-18 08:16:41 -0800582 *
583 * @param VAR each element in the pool
584 * @param POOL The pool to flush
585 * @param BODY The actions to perform on each element before it is returned to
586 * the pool. i.e. before it is 'freed'
587 */
588#define pool_flush(VAR, POOL, BODY) \
589{ \
590 uword *_pool_var(ii), *_pool_var(dv) = NULL; \
591 \
Damjan Marionb2c31b62020-12-13 21:47:40 +0100592 pool_foreach((VAR), (POOL)) \
593 { \
Neale Ranns87df12d2017-02-18 08:16:41 -0800594 vec_add1(_pool_var(dv), (VAR) - (POOL)); \
Damjan Marionb2c31b62020-12-13 21:47:40 +0100595 } \
Neale Ranns87df12d2017-02-18 08:16:41 -0800596 vec_foreach(_pool_var(ii), _pool_var(dv)) \
597 { \
598 (VAR) = pool_elt_at_index((POOL), *_pool_var(ii)); \
599 do { BODY; } while (0); \
600 pool_put((POOL), (VAR)); \
601 } \
602 vec_free(_pool_var(dv)); \
603}
604
Ed Warnickecb9cada2015-12-08 15:45:58 -0700605#endif /* included_pool_h */
Dave Barachc3799992016-08-15 11:12:27 -0400606
607/*
608 * fd.io coding-style-patch-verification: ON
609 *
610 * Local Variables:
611 * eval: (c-set-style "gnu")
612 * End:
613 */