blob: 7a679cee5cb1b969a999024eb50a01fb55d56d93 [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{
Damjan Mariona4a28f02022-03-17 15:46:25 +010074 return vec_header (v);
Dave Barachc3799992016-08-15 11:12:27 -040075}
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
Damjan Marion66d4cb52022-03-17 18:59:46 +0100252always_inline int
253_pool_get_will_expand (void *p, uword elt_size)
254{
255 pool_header_t *ph;
256 uword len;
Dave Barach614ac5d2017-02-06 09:28:03 -0500257
Damjan Marion66d4cb52022-03-17 18:59:46 +0100258 if (p == 0)
259 return 1;
Stanislav Zaikin09abed62021-11-04 09:32:32 +0100260
Damjan Marion66d4cb52022-03-17 18:59:46 +0100261 ph = pool_header (p);
262
263 if (ph->max_elts)
264 len = ph->max_elts;
265 else
266 len = vec_len (ph->free_indices);
267
268 /* Free elements, certainly won't expand */
269 if (len > 0)
270 return 0;
271
272 return _vec_resize_will_expand (p, 1, elt_size);
273}
274
275#define pool_get_will_expand(P) _pool_get_will_expand (P, sizeof ((P)[0]))
276
277always_inline int
278_pool_put_will_expand (void *p, uword index, uword elt_size)
279{
280 pool_header_t *ph = pool_header (p);
281
282 if (clib_bitmap_will_expand (ph->free_bitmap, index))
283 return 1;
284
285 if (vec_resize_will_expand (ph->free_indices, 1))
286 return 1;
287
288 return 0;
289}
290
291#define pool_put_will_expand(P, E) _pool_put_will_expand (P, (E) - (P), sizeof ((P)[0])
Dave Barach614ac5d2017-02-06 09:28:03 -0500292
Chris Luke8e5b0412016-07-26 13:06:10 -0400293/** Use free bitmap to query whether given element is free. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294#define pool_is_free(P,E) \
295({ \
296 pool_header_t * _pool_var (p) = pool_header (P); \
297 uword _pool_var (i) = (E) - (P); \
Florin Corasfcd23682018-06-29 03:22:44 -0700298 (_pool_var (i) < vec_len (P)) ? clib_bitmap_get (_pool_var (p)->free_bitmap, _pool_i) : 1; \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299})
Dave Barachc3799992016-08-15 11:12:27 -0400300
Chris Luke8e5b0412016-07-26 13:06:10 -0400301/** Use free bitmap to query whether given index is free */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700302#define pool_is_free_index(P,I) pool_is_free((P),(P)+(I))
303
Chris Luke8e5b0412016-07-26 13:06:10 -0400304/** Free an object E in pool P. */
Dave Barach4de5f9b2021-06-02 18:18:18 -0400305#define pool_put(P, E) \
306 do \
307 { \
308 typeof (P) _pool_var (p__) = (P); \
309 typeof (E) _pool_var (e__) = (E); \
310 pool_header_t *_pool_var (p) = pool_header (_pool_var (p__)); \
311 uword _pool_var (l) = _pool_var (e__) - _pool_var (p__); \
312 if (_pool_var (p)->max_elts == 0) \
313 ASSERT (vec_is_member (_pool_var (p__), _pool_var (e__))); \
314 ASSERT (!pool_is_free (_pool_var (p__), _pool_var (e__))); \
315 \
316 /* Add element to free bitmap and to free list. */ \
317 _pool_var (p)->free_bitmap = \
318 clib_bitmap_ori_notrim (_pool_var (p)->free_bitmap, _pool_var (l)); \
319 \
320 /* Preallocated pool? */ \
321 if (_pool_var (p)->max_elts) \
322 { \
323 ASSERT (_pool_var (l) < _pool_var (p)->max_elts); \
324 _pool_var (p) \
325 ->free_indices[_vec_len (_pool_var (p)->free_indices)] = \
326 _pool_var (l); \
327 _vec_len (_pool_var (p)->free_indices) += 1; \
328 } \
329 else \
330 vec_add1 (_pool_var (p)->free_indices, _pool_var (l)); \
331 \
332 CLIB_MEM_POISON (_pool_var (e__), sizeof (_pool_var (e__)[0])); \
333 } \
334 while (0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700335
Chris Luke8e5b0412016-07-26 13:06:10 -0400336/** Free pool element with given index. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700337#define pool_put_index(p,i) \
338do { \
339 typeof (p) _e = (p) + (i); \
340 pool_put (p, _e); \
341} while (0)
342
Chris Luke8e5b0412016-07-26 13:06:10 -0400343/** Allocate N more free elements to pool (general version). */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700344#define pool_alloc_aligned(P,N,A) \
345do { \
346 pool_header_t * _p; \
Dave Barachb7f1faa2017-08-29 11:43:37 -0400347 \
348 if ((P)) \
349 { \
350 _p = pool_header (P); \
351 if (_p->max_elts) \
352 { \
353 clib_warning ("Can't expand fixed-size pool"); \
354 os_out_of_memory(); \
355 } \
356 } \
357 \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700358 (P) = _vec_resize ((P), 0, (vec_len (P) + (N)) * sizeof (P[0]), \
359 pool_aligned_header_bytes, \
360 (A)); \
361 _p = pool_header (P); \
362 vec_resize (_p->free_indices, (N)); \
363 _vec_len (_p->free_indices) -= (N); \
364} while (0)
365
Chris Luke8e5b0412016-07-26 13:06:10 -0400366/** Allocate N more free elements to pool (unspecified alignment). */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700367#define pool_alloc(P,N) pool_alloc_aligned(P,N,0)
368
Florin Coras8be6c402018-11-27 17:11:37 -0800369/**
370 * Return copy of pool with alignment
371 *
372 * @param P pool to copy
373 * @param A alignment (may be zero)
374 * @return copy of pool
375 */
Benoît Ganne563ec992021-11-19 13:39:10 +0100376#define pool_dup_aligned(P, A) \
377 ({ \
378 typeof (P) _pool_var (new) = 0; \
379 pool_header_t *_pool_var (ph), *_pool_var (new_ph); \
380 u32 _pool_var (n) = pool_len (P); \
381 if ((P)) \
382 { \
383 _pool_var (new) = _vec_resize (_pool_var (new), _pool_var (n), \
384 _pool_var (n) * sizeof ((P)[0]), \
385 pool_aligned_header_bytes, (A)); \
386 CLIB_MEM_OVERFLOW_PUSH ((P), _pool_var (n) * sizeof ((P)[0])); \
387 clib_memcpy_fast (_pool_var (new), (P), \
388 _pool_var (n) * sizeof ((P)[0])); \
389 CLIB_MEM_OVERFLOW_POP (); \
390 _pool_var (ph) = pool_header (P); \
391 _pool_var (new_ph) = pool_header (_pool_var (new)); \
392 _pool_var (new_ph)->free_bitmap = \
393 clib_bitmap_dup (_pool_var (ph)->free_bitmap); \
394 _pool_var (new_ph)->free_indices = \
395 vec_dup (_pool_var (ph)->free_indices); \
396 _pool_var (new_ph)->max_elts = _pool_var (ph)->max_elts; \
397 } \
398 _pool_var (new); \
399 })
Florin Coras8be6c402018-11-27 17:11:37 -0800400
401/**
402 * Return copy of pool without alignment
403 *
404 * @param P pool to copy
405 * @return copy of pool
406 */
Florin Coras47c40e22018-11-26 17:01:36 -0800407#define pool_dup(P) pool_dup_aligned(P,0)
Florin Coras8be6c402018-11-27 17:11:37 -0800408
Chris Luke8e5b0412016-07-26 13:06:10 -0400409/** Low-level free pool operator (do not call directly). */
Dave Barachc3799992016-08-15 11:12:27 -0400410always_inline void *
411_pool_free (void *v)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700412{
Dave Barachc3799992016-08-15 11:12:27 -0400413 pool_header_t *p = pool_header (v);
414 if (!v)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700415 return v;
416 clib_bitmap_free (p->free_bitmap);
Dave Barachb7f1faa2017-08-29 11:43:37 -0400417
Damjan Marion86bbdf92022-03-18 12:28:35 +0100418 vec_free (p->free_indices);
Damjan Marion05563c92022-03-17 18:29:32 +0100419 vec_free (v);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700420 return 0;
421}
422
Damjan Marion62c25ab2020-12-12 23:32:12 +0100423static_always_inline uword
424pool_get_first_index (void *pool)
425{
426 pool_header_t *h = pool_header (pool);
427 return clib_bitmap_first_clear (h->free_bitmap);
428}
429
430static_always_inline uword
431pool_get_next_index (void *pool, uword last)
432{
433 pool_header_t *h = pool_header (pool);
434 return clib_bitmap_next_clear (h->free_bitmap, last + 1);
435}
436
Chris Luke8e5b0412016-07-26 13:06:10 -0400437/** Free a pool. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438#define pool_free(p) (p) = _pool_free(p)
439
Chris Luke8e5b0412016-07-26 13:06:10 -0400440/** Optimized iteration through pool.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700441
442 @param LO pointer to first element in chunk
443 @param HI pointer to last element in chunk
444 @param POOL pool to iterate across
445 @param BODY operation to perform
446
Dave Barachc3799992016-08-15 11:12:27 -0400447 Optimized version which assumes that BODY is smart enough to
Ed Warnickecb9cada2015-12-08 15:45:58 -0700448 process multiple (LOW,HI) chunks. See also pool_foreach().
449 */
450#define pool_foreach_region(LO,HI,POOL,BODY) \
451do { \
452 uword _pool_var (i), _pool_var (lo), _pool_var (hi), _pool_var (len); \
453 uword _pool_var (bl), * _pool_var (b); \
454 pool_header_t * _pool_var (p); \
455 \
456 _pool_var (p) = pool_header (POOL); \
457 _pool_var (b) = (POOL) ? _pool_var (p)->free_bitmap : 0; \
458 _pool_var (bl) = vec_len (_pool_var (b)); \
459 _pool_var (len) = vec_len (POOL); \
460 _pool_var (lo) = 0; \
461 \
462 for (_pool_var (i) = 0; \
463 _pool_var (i) <= _pool_var (bl); \
464 _pool_var (i)++) \
465 { \
466 uword _pool_var (m), _pool_var (f); \
467 _pool_var (m) = (_pool_var (i) < _pool_var (bl) \
468 ? _pool_var (b) [_pool_var (i)] \
469 : 1); \
470 while (_pool_var (m) != 0) \
471 { \
472 _pool_var (f) = first_set (_pool_var (m)); \
473 _pool_var (hi) = (_pool_var (i) * BITS (_pool_var (b)[0]) \
474 + min_log2 (_pool_var (f))); \
475 _pool_var (hi) = (_pool_var (i) < _pool_var (bl) \
476 ? _pool_var (hi) : _pool_var (len)); \
477 _pool_var (m) ^= _pool_var (f); \
478 if (_pool_var (hi) > _pool_var (lo)) \
479 { \
480 (LO) = _pool_var (lo); \
481 (HI) = _pool_var (hi); \
482 do { BODY; } while (0); \
483 } \
484 _pool_var (lo) = _pool_var (hi) + 1; \
485 } \
486 } \
487} while (0)
488
Chris Luke8e5b0412016-07-26 13:06:10 -0400489/** Iterate through pool.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700490
Chris Luke8e5b0412016-07-26 13:06:10 -0400491 @param VAR A variable of same type as pool vector to be used as an
492 iterator.
493 @param POOL The pool to iterate across.
494 @param BODY The operation to perform, typically a code block. See
495 the example below.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700496
Chris Luke8e5b0412016-07-26 13:06:10 -0400497 This macro will call @c BODY with each active pool element.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700498
499 It is a bad idea to allocate or free pool element from within
Chris Luke8e5b0412016-07-26 13:06:10 -0400500 @c pool_foreach. Build a vector of indices and dispose of them later.
Neale Ranns87df12d2017-02-18 08:16:41 -0800501 Or call pool_flush.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502
Chris Luke8e5b0412016-07-26 13:06:10 -0400503
504 @par Example
505 @code{.c}
506 proc_t *procs; // a pool of processes.
507 proc_t *proc; // pointer to one process; used as the iterator.
508
509 pool_foreach (proc, procs, ({
510 if (proc->state != PROC_STATE_RUNNING)
511 continue;
512
513 // check a running proc in some way
514 ...
515 }));
516 @endcode
517
518 @warning Because @c pool_foreach is a macro, syntax errors can be
519 difficult to find inside @c BODY, let alone actual code bugs. One
520 can temporarily split a complex @c pool_foreach into a trivial
521 @c pool_foreach which builds a vector of active indices, and a
522 vec_foreach() (or plain for-loop) to walk the active index vector.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700523 */
Damjan Marion62c25ab2020-12-12 23:32:12 +0100524
Damjan Marionb2c31b62020-12-13 21:47:40 +0100525#define pool_foreach(VAR,POOL) \
Damjan Marion62c25ab2020-12-12 23:32:12 +0100526 if (POOL) \
527 for (VAR = POOL + pool_get_first_index (POOL); \
528 VAR < vec_end (POOL); \
529 VAR = POOL + pool_get_next_index (POOL, VAR - POOL))
530
Chris Luke8e5b0412016-07-26 13:06:10 -0400531/** Returns pointer to element at given index.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700532
Chris Luke8e5b0412016-07-26 13:06:10 -0400533 ASSERTs that the supplied index is valid.
534 Even though one can write correct code of the form
535 @code
536 p = pool_base + index;
537 @endcode
Dave Barachc3799992016-08-15 11:12:27 -0400538 use of @c pool_elt_at_index is strongly suggested.
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539 */
540#define pool_elt_at_index(p,i) \
541({ \
542 typeof (p) _e = (p) + (i); \
543 ASSERT (! pool_is_free (p, _e)); \
544 _e; \
545})
546
Chris Luke8e5b0412016-07-26 13:06:10 -0400547/** Return next occupied pool index after @c i, useful for safe iteration. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700548#define pool_next_index(P,I) \
549({ \
550 pool_header_t * _pool_var (p) = pool_header (P); \
551 uword _pool_var (rv) = (I) + 1; \
552 \
553 _pool_var(rv) = \
554 (_pool_var (rv) < vec_len (P) ? \
555 clib_bitmap_next_clear (_pool_var (p)->free_bitmap, _pool_var(rv)) \
556 : ~0); \
John Lo7f358b32018-04-28 01:19:24 -0400557 _pool_var(rv) = \
558 (_pool_var (rv) < vec_len (P) ? \
559 _pool_var (rv) : ~0); \
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560 _pool_var(rv); \
561})
562
Damjan Marionb2c31b62020-12-13 21:47:40 +0100563#define pool_foreach_index(i,v) \
Damjan Marion62c25ab2020-12-12 23:32:12 +0100564 if (v) \
565 for (i = pool_get_first_index (v); \
566 i < vec_len (v); \
567 i = pool_get_next_index (v, i)) \
568
Neale Ranns87df12d2017-02-18 08:16:41 -0800569/**
Paul Vinciguerraec11b132018-09-24 05:25:00 -0700570 * @brief Remove all elements from a pool in a safe way
Neale Ranns87df12d2017-02-18 08:16:41 -0800571 *
572 * @param VAR each element in the pool
573 * @param POOL The pool to flush
574 * @param BODY The actions to perform on each element before it is returned to
575 * the pool. i.e. before it is 'freed'
576 */
577#define pool_flush(VAR, POOL, BODY) \
578{ \
579 uword *_pool_var(ii), *_pool_var(dv) = NULL; \
580 \
Damjan Marionb2c31b62020-12-13 21:47:40 +0100581 pool_foreach((VAR), (POOL)) \
582 { \
Neale Ranns87df12d2017-02-18 08:16:41 -0800583 vec_add1(_pool_var(dv), (VAR) - (POOL)); \
Damjan Marionb2c31b62020-12-13 21:47:40 +0100584 } \
Neale Ranns87df12d2017-02-18 08:16:41 -0800585 vec_foreach(_pool_var(ii), _pool_var(dv)) \
586 { \
587 (VAR) = pool_elt_at_index((POOL), *_pool_var(ii)); \
588 do { BODY; } while (0); \
589 pool_put((POOL), (VAR)); \
590 } \
591 vec_free(_pool_var(dv)); \
592}
593
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594#endif /* included_pool_h */
Dave Barachc3799992016-08-15 11:12:27 -0400595
596/*
597 * fd.io coding-style-patch-verification: ON
598 *
599 * Local Variables:
600 * eval: (c-set-style "gnu")
601 * End:
602 */